From 110b05060f97c0dda3d5dd33ae03ae0055523985 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 6 Nov 2024 09:32:15 +0000 Subject: [PATCH 001/157] First version of compactData for custom datatype in export arm --- include/aidge/utils/CompactData.hpp | 105 +++++++++++++++ python_binding/utils/pybind_CompactData.cpp | 23 ++++ unit_tests/utils/Test_CompactData.cpp | 137 ++++++++++++++++++++ 3 files changed, 265 insertions(+) create mode 100644 include/aidge/utils/CompactData.hpp create mode 100644 python_binding/utils/pybind_CompactData.cpp create mode 100644 unit_tests/utils/Test_CompactData.cpp diff --git a/include/aidge/utils/CompactData.hpp b/include/aidge/utils/CompactData.hpp new file mode 100644 index 000000000..092102824 --- /dev/null +++ b/include/aidge/utils/CompactData.hpp @@ -0,0 +1,105 @@ + +#ifndef __CONVERT_CUSTOM_DATA_H__ +#define __CONVERT_CUSTOM_DATA_H__ + +#include <cassert> +#include <cstddef> +#include <cstdint> +#include <limits> +#include <cmath> + +#include "aidge/utils/ErrorHandling.hpp" + + +namespace Aidge { + + /** + * @brief Calculates the required size for the 8-bits`compactData` vector. + * + * This function determines the minimum number of bytes needed in `compactData` + * to store `dataSize` elements compacted to `nb_bits` bits each. + * + * @param dataSize The total number of elements in the input data array. + * @param nb_bits The number of bits to use for each compacted element (from 1 to 7). + * @return std::size_t The required size in bytes for `compactData`. + */ + std::size_t compactDataSize(std::size_t dataSize, std::uint8_t nb_bits) { + AIDGE_ASSERT(nb_bits > 0 && nb_bits < 8, "nb_bits must be between 1 and 4"); // Ensure valid bit width + + // Calculate the number of `nb_bits` segments that can fit in an 8-bit byte. + const unsigned int nbSlot = 8 / nb_bits; + + // Calculate the number of compacted bytes needed to store all data elements. + // The formula (dataSize + nbSlot - 1) / nbSlot effectively rounds up the division, ensuring that any remaining elements that don't fully fill a byte are accounted for. + std::size_t requiredSize = (dataSize + nbSlot - 1) / nbSlot; + + return requiredSize; + } + + /** + * @brief Compacts 8-bit data into a smaller bit-width representation. + * + * This function takes an array of 8-bit data and compacts it into smaller chunks + * based on the specified bit-width `nb_bits`. Each element in `compactData` will + * store multiple packed `nb_bits` segments extracted from `data`. + * + * @param data The input array of 8-bit values to be compacted. + * @param dataSize The size of the input `data` array. + * @param compactData The output array storing the compacted data. + * @param nb_bits The number of bits to extract from each `data` element (must be less than 8). + */ + void compact_data(const std::int8_t* data, std::size_t dataSize, std::int8_t* compactData, std::uint8_t nb_bits) { + AIDGE_ASSERT(nb_bits > 0 && nb_bits < 5, "Cannot compact with the given nb_bits"); // Ensure valid bit width + + // Mask to extract `nb_bits` from each data element + const unsigned int mask = (1U << nb_bits) - 1; + + // Calculate the number of `nb_bits` segments that fit into an 8-bit compacted value + const unsigned int nbSlot = 8 / nb_bits; + + // Case nb_bits=3 or 4, then shift is 4 + // Case nb_bits=2, then shift is 2 + // Case nb_bits=1, then shift is 1 + std::uint8_t shift = 8 / nbSlot; + + const unsigned int nbFullCompactbytes = dataSize / nbSlot; + + // Main loop to process data in groups of `nbSlot` + for (std::size_t i = 0; i < nbFullCompactbytes; ++i) { + std::int8_t compact = 0; + + for (unsigned int j = 0; j < nbSlot; ++j) { + compact |= (data[i * nbSlot + j] & mask); // Apply mask to keep `nb_bits` only + + // Shift only if not on the last slot to make room for the next `nb_bits` + if (j < nbSlot - 1) { + compact <<= shift; + } + } + // Store the compacted value in the output array + compactData[i] = compact; + } + + + // Handle any remaining data elements (if dataSize is not a multiple of nbSlot). + std::size_t remaining = dataSize % nbSlot; + if (remaining != 0) { + std::int8_t compact = 0; + for (std::size_t j = 0; j < remaining; ++j) { + compact |= (data[nbFullCompactbytes*nbSlot + j] & mask); + + if (j < remaining - 1) { + compact <<= shift; + } + } + compact <<= (shift*(nbSlot - remaining)); + // Store the last compacted value + compactData[dataSize / nbSlot] = compact; + } + } + + + +} + +#endif \ No newline at end of file diff --git a/python_binding/utils/pybind_CompactData.cpp b/python_binding/utils/pybind_CompactData.cpp new file mode 100644 index 000000000..aad35d572 --- /dev/null +++ b/python_binding/utils/pybind_CompactData.cpp @@ -0,0 +1,23 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <pybind11/pybind11.h> +#include "aidge/utils/CompactData.hpp" + +namespace py = pybind11; + +namespace Aidge { + +void init_CompactData(py::module &m) { + m.def("compact_data", &compact_data, py::arg("data"), py::arg("data_size"), py::arg("compact_data"), py::arg("nb_bits"), + "Compacts 8-bit data into smaller bit-width representation."); +} +} // namespace Aidge diff --git a/unit_tests/utils/Test_CompactData.cpp b/unit_tests/utils/Test_CompactData.cpp new file mode 100644 index 000000000..7971046a8 --- /dev/null +++ b/unit_tests/utils/Test_CompactData.cpp @@ -0,0 +1,137 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <catch2/catch_test_macros.hpp> +#include <vector> +#include <cstdint> +#include <iostream> + +#include "aidge/data/Tensor.hpp" +#include "aidge/utils/CompactData.hpp" + +using namespace Aidge; + +TEST_CASE("compactDataSize - Basic Tests", "[core][required_size]") { + SECTION("Single element cases") { + REQUIRE(Aidge::compactDataSize(1, 1) == 1); // 1 bit, needs 1 byte + REQUIRE(Aidge::compactDataSize(1, 7) == 1); // 7 bits, needs 1 byte + } + + SECTION("Boundary cases for different nb_bits values") { + REQUIRE(Aidge::compactDataSize(8, 1) == 1); // 8 elements at 1 bit each, fits in 1 byte + REQUIRE(Aidge::compactDataSize(8, 2) == 2); // 8 elements at 2 bits each, needs 2 bytes + REQUIRE(Aidge::compactDataSize(8, 3) == 4); // 8 elements at 3 bits each, needs 4 bytes + REQUIRE(Aidge::compactDataSize(8, 4) == 4); // 8 elements at 4 bits each, needs 4 bytes + } + + SECTION("Larger dataSize values") { + REQUIRE(Aidge::compactDataSize(16, 1) == 2); // 16 elements at 1 bit each, fits in 2 bytes + REQUIRE(Aidge::compactDataSize(16, 2) == 4); // 16 elements at 2 bits each, needs 4 bytes + REQUIRE(Aidge::compactDataSize(16, 3) == 8); // 16 elements at 3 bits each, needs 6 bytes + REQUIRE(Aidge::compactDataSize(16, 4) == 8); // 16 elements at 4 bits each, needs 8 bytes + } + + SECTION("Odd dataSize values with varying nb_bits") { + REQUIRE(Aidge::compactDataSize(7, 1) == 1); // 7 elements at 1 bit each, fits in 1 byte + REQUIRE(Aidge::compactDataSize(7, 2) == 2); // 7 elements at 2 bits each, needs 2 bytes + REQUIRE(Aidge::compactDataSize(7, 3) == 4); // 7 elements at 3 bits each, needs 4 bytes + REQUIRE(Aidge::compactDataSize(7, 4) == 4); // 7 elements at 4 bits each, needs 4 bytes + } + + SECTION("Minimum and maximum values for nb_bits") { + REQUIRE(Aidge::compactDataSize(5, 1) == 1); // 5 elements at 1 bit each, fits in 1 byte + } + + SECTION("Edge Case - dataSize of 0 should result in 0 required size") { + REQUIRE(Aidge::compactDataSize(0, 1) == 0); // No data elements + } +} + + +TEST_CASE("Compact Data", "[core][compactdata]") { + SECTION("Basic Tests - 4-bit compaction") { + + Tensor data = Array1D<std::int8_t, 4>{{static_cast<std::int8_t>(0x0F), static_cast<std::int8_t>(0xF5), static_cast<std::int8_t>(0xB3), static_cast<std::int8_t>(0x9C)}}; + uint8_t nb_bits = 4; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + // std::size_t required_size = (data.size() + (8 / nb_bits) - 1) / (8 / nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected result: each int8_t in compactData holds two 4-bit values. + std::vector<int8_t> expected = {{static_cast<int8_t>(0xF5), static_cast<int8_t>(0x3C)}}; + REQUIRE(compactData == expected); + } + + SECTION("Basic Tests - 2-bit compaction") { + Tensor data = Array1D<std::int8_t, 4>{{static_cast<std::int8_t>(0x03), static_cast<std::int8_t>(0x02), static_cast<std::int8_t>(0x01), static_cast<std::int8_t>(0x00)}}; + uint8_t nb_bits = 2; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected result: each int8_t in compactData holds four 2-bit values. + std::vector<int8_t> expected = {static_cast<int8_t>(0xE4)}; + REQUIRE(compactData == expected); + } + + SECTION("Edge Cases - Single element data") { + Tensor data = Array1D<std::int8_t, 1>{{static_cast<int8_t>(0x0F)}}; + uint8_t nb_bits = 4; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected result: should be a single 4-bit compacted value in one int8_t. + std::vector<int8_t> expected = {static_cast<int8_t>(0xF0)}; + REQUIRE(compactData == expected); + } + + SECTION("Edge Cases - Non-divisible dataSize for nbSlot") { + + Tensor data = Array1D<std::int8_t, 3>{{static_cast<int8_t>(0x0F), static_cast<int8_t>(0xA5), static_cast<int8_t>(0x34)}}; + uint8_t nb_bits = 4; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected: last value padded (only three 4-bit values to fit in two int8_t). + std::vector<int8_t> expected = {static_cast<int8_t>(0xF5), static_cast<int8_t>(0x40)}; + REQUIRE(compactData == expected); + + } + + SECTION("Edge Cases - Non-divisible dataSize for nbSlot") { + + Tensor data = Array1D<std::int8_t, 3>{{static_cast<int8_t>(0x0F), static_cast<int8_t>(0x05), static_cast<int8_t>(0x04)}}; + uint8_t nb_bits = 3; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected: last value padded (only three 4-bit values to fit in two int8_t). + std::vector<int8_t> expected = {static_cast<int8_t>(0x75), static_cast<int8_t>(0x40)}; + REQUIRE(compactData == expected); + + } + +} + -- GitLab From 577eeb50284832d7b1732d0432ab231df8309af8 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 6 Nov 2024 09:34:19 +0000 Subject: [PATCH 002/157] Update pybind_core with compact data binding --- python_binding/pybind_core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index 02f4b732c..006b1fe9f 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -17,6 +17,7 @@ namespace py = pybind11; namespace Aidge { void init_Random(py::module&); +void init_CompactData(py::module&); void init_Data(py::module&); void init_Database(py::module&); void init_DataProvider(py::module&); @@ -99,6 +100,7 @@ void init_Filler(py::module&); void init_Aidge(py::module& m) { init_Random(m); + init_CompactData(m); init_Data(m); init_Database(m); -- GitLab From 0b474a55a2a1dc123c721db3e934af72e585a2ad Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 6 Nov 2024 12:56:52 +0000 Subject: [PATCH 003/157] Add type aidge::int4 with tensor implementation int8_t --- include/aidge/backend/cpu/data/TensorImpl.hpp | 1 + include/aidge/data/Data.hpp | 11 +++++++++++ python_binding/data/pybind_Tensor.cpp | 5 +++++ src/data/Tensor.cpp | 2 ++ 4 files changed, 19 insertions(+) diff --git a/include/aidge/backend/cpu/data/TensorImpl.hpp b/include/aidge/backend/cpu/data/TensorImpl.hpp index 9390fe586..5f4e25772 100644 --- a/include/aidge/backend/cpu/data/TensorImpl.hpp +++ b/include/aidge/backend/cpu/data/TensorImpl.hpp @@ -126,6 +126,7 @@ REGISTRAR(Tensor, {"cpu", DataType::Int64}, Aidge::TensorImpl_cpu<int64_t>::crea REGISTRAR(Tensor, {"cpu", DataType::Int32}, Aidge::TensorImpl_cpu<int32_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int16}, Aidge::TensorImpl_cpu<int16_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int8}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Int4}, Aidge::TensorImpl_cpu<int8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt64}, Aidge::TensorImpl_cpu<uint64_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt32}, Aidge::TensorImpl_cpu<uint32_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt16}, Aidge::TensorImpl_cpu<uint16_t>::create); diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index 23221e653..d4d206409 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -101,10 +101,17 @@ private: } namespace { + +// Define a distinct type alias for Int4 +struct Int4Type { + std::int8_t value; +}; + template <typename T> struct NativeType { static const Aidge::DataType type; }; template <> const Aidge::DataType NativeType<double>::type = Aidge::DataType::Float64; template <> const Aidge::DataType NativeType<float>::type = Aidge::DataType::Float32; template <> const Aidge::DataType NativeType<half_float::half>::type = Aidge::DataType::Float16; +template <> const Aidge::DataType NativeType<Int4Type>::type = Aidge::DataType::Int4; template <> const Aidge::DataType NativeType<std::int8_t>::type = Aidge::DataType::Int8; template <> const Aidge::DataType NativeType<std::int16_t>::type = Aidge::DataType::Int16; template <> const Aidge::DataType NativeType<std::int32_t>::type = Aidge::DataType::Int32; @@ -131,6 +138,7 @@ template <Aidge::DataType D> struct cpptype { template <> struct cpptype<Aidge::DataType::Float16> { using type = half_float::half; }; template <> struct cpptype<Aidge::DataType::Float32> { using type = float; }; template <> struct cpptype<Aidge::DataType::Float64> { using type = double; }; +template <> struct cpptype<Aidge::DataType::Int4> { using type = Int4Type; }; template <> struct cpptype<Aidge::DataType::Int8> { using type = std::int8_t; }; template <> struct cpptype<Aidge::DataType::Int16> { using type = std::int16_t; }; template <> struct cpptype<Aidge::DataType::Int32> { using type = std::int32_t; }; @@ -141,6 +149,9 @@ template <> struct cpptype<Aidge::DataType::UInt32> { using type = std::uint32_t template <> struct cpptype<Aidge::DataType::UInt64> { using type = std::uint64_t; }; template <Aidge::DataType D> using cpptype_t = typename cpptype<D>::type; + + + } diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index fe606cfb5..7e910be57 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -226,6 +226,8 @@ static T castToNativeType(const py::object val_obj) { DataType dtype; getConservativeNativeVal(val_obj, &val, &dtype); switch (dtype) { + case DataType::Int4: + return (T)val.i8; case DataType::Int8: return (T)val.i8; case DataType::Int16: @@ -500,6 +502,9 @@ void init_Tensor(py::module& m){ case DataType::Float32: dataFormatDescriptor = py::format_descriptor<float>::format(); break;; + case DataType::Int4: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; case DataType::Int8: dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); break; diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index 6f60d2f15..2ba19a749 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -249,6 +249,8 @@ std::string Aidge::Tensor::toString() const { return std::to_string(static_cast<float*>(ptr)[idx]); case DataType::Float16: return std::to_string(static_cast<half_float::half*>(ptr)[idx]); + case DataType::Int4: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); case DataType::Int8: return std::to_string(static_cast<int8_t*>(ptr)[idx]); case DataType::Int16: -- GitLab From a924297cf6badff3e4b0cdbfad16a36c5e3ac2cb Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 14:03:43 +0000 Subject: [PATCH 004/157] Remove Compact data from utils - functions are integrated into WeightInterleaving Operator --- include/aidge/utils/CompactData.hpp | 105 --------------- python_binding/pybind_core.cpp | 2 - python_binding/utils/pybind_CompactData.cpp | 23 ---- unit_tests/utils/Test_CompactData.cpp | 137 -------------------- 4 files changed, 267 deletions(-) delete mode 100644 include/aidge/utils/CompactData.hpp delete mode 100644 python_binding/utils/pybind_CompactData.cpp delete mode 100644 unit_tests/utils/Test_CompactData.cpp diff --git a/include/aidge/utils/CompactData.hpp b/include/aidge/utils/CompactData.hpp deleted file mode 100644 index 092102824..000000000 --- a/include/aidge/utils/CompactData.hpp +++ /dev/null @@ -1,105 +0,0 @@ - -#ifndef __CONVERT_CUSTOM_DATA_H__ -#define __CONVERT_CUSTOM_DATA_H__ - -#include <cassert> -#include <cstddef> -#include <cstdint> -#include <limits> -#include <cmath> - -#include "aidge/utils/ErrorHandling.hpp" - - -namespace Aidge { - - /** - * @brief Calculates the required size for the 8-bits`compactData` vector. - * - * This function determines the minimum number of bytes needed in `compactData` - * to store `dataSize` elements compacted to `nb_bits` bits each. - * - * @param dataSize The total number of elements in the input data array. - * @param nb_bits The number of bits to use for each compacted element (from 1 to 7). - * @return std::size_t The required size in bytes for `compactData`. - */ - std::size_t compactDataSize(std::size_t dataSize, std::uint8_t nb_bits) { - AIDGE_ASSERT(nb_bits > 0 && nb_bits < 8, "nb_bits must be between 1 and 4"); // Ensure valid bit width - - // Calculate the number of `nb_bits` segments that can fit in an 8-bit byte. - const unsigned int nbSlot = 8 / nb_bits; - - // Calculate the number of compacted bytes needed to store all data elements. - // The formula (dataSize + nbSlot - 1) / nbSlot effectively rounds up the division, ensuring that any remaining elements that don't fully fill a byte are accounted for. - std::size_t requiredSize = (dataSize + nbSlot - 1) / nbSlot; - - return requiredSize; - } - - /** - * @brief Compacts 8-bit data into a smaller bit-width representation. - * - * This function takes an array of 8-bit data and compacts it into smaller chunks - * based on the specified bit-width `nb_bits`. Each element in `compactData` will - * store multiple packed `nb_bits` segments extracted from `data`. - * - * @param data The input array of 8-bit values to be compacted. - * @param dataSize The size of the input `data` array. - * @param compactData The output array storing the compacted data. - * @param nb_bits The number of bits to extract from each `data` element (must be less than 8). - */ - void compact_data(const std::int8_t* data, std::size_t dataSize, std::int8_t* compactData, std::uint8_t nb_bits) { - AIDGE_ASSERT(nb_bits > 0 && nb_bits < 5, "Cannot compact with the given nb_bits"); // Ensure valid bit width - - // Mask to extract `nb_bits` from each data element - const unsigned int mask = (1U << nb_bits) - 1; - - // Calculate the number of `nb_bits` segments that fit into an 8-bit compacted value - const unsigned int nbSlot = 8 / nb_bits; - - // Case nb_bits=3 or 4, then shift is 4 - // Case nb_bits=2, then shift is 2 - // Case nb_bits=1, then shift is 1 - std::uint8_t shift = 8 / nbSlot; - - const unsigned int nbFullCompactbytes = dataSize / nbSlot; - - // Main loop to process data in groups of `nbSlot` - for (std::size_t i = 0; i < nbFullCompactbytes; ++i) { - std::int8_t compact = 0; - - for (unsigned int j = 0; j < nbSlot; ++j) { - compact |= (data[i * nbSlot + j] & mask); // Apply mask to keep `nb_bits` only - - // Shift only if not on the last slot to make room for the next `nb_bits` - if (j < nbSlot - 1) { - compact <<= shift; - } - } - // Store the compacted value in the output array - compactData[i] = compact; - } - - - // Handle any remaining data elements (if dataSize is not a multiple of nbSlot). - std::size_t remaining = dataSize % nbSlot; - if (remaining != 0) { - std::int8_t compact = 0; - for (std::size_t j = 0; j < remaining; ++j) { - compact |= (data[nbFullCompactbytes*nbSlot + j] & mask); - - if (j < remaining - 1) { - compact <<= shift; - } - } - compact <<= (shift*(nbSlot - remaining)); - // Store the last compacted value - compactData[dataSize / nbSlot] = compact; - } - } - - - -} - -#endif \ No newline at end of file diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index 006b1fe9f..02f4b732c 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -17,7 +17,6 @@ namespace py = pybind11; namespace Aidge { void init_Random(py::module&); -void init_CompactData(py::module&); void init_Data(py::module&); void init_Database(py::module&); void init_DataProvider(py::module&); @@ -100,7 +99,6 @@ void init_Filler(py::module&); void init_Aidge(py::module& m) { init_Random(m); - init_CompactData(m); init_Data(m); init_Database(m); diff --git a/python_binding/utils/pybind_CompactData.cpp b/python_binding/utils/pybind_CompactData.cpp deleted file mode 100644 index aad35d572..000000000 --- a/python_binding/utils/pybind_CompactData.cpp +++ /dev/null @@ -1,23 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <pybind11/pybind11.h> -#include "aidge/utils/CompactData.hpp" - -namespace py = pybind11; - -namespace Aidge { - -void init_CompactData(py::module &m) { - m.def("compact_data", &compact_data, py::arg("data"), py::arg("data_size"), py::arg("compact_data"), py::arg("nb_bits"), - "Compacts 8-bit data into smaller bit-width representation."); -} -} // namespace Aidge diff --git a/unit_tests/utils/Test_CompactData.cpp b/unit_tests/utils/Test_CompactData.cpp deleted file mode 100644 index 7971046a8..000000000 --- a/unit_tests/utils/Test_CompactData.cpp +++ /dev/null @@ -1,137 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <catch2/catch_test_macros.hpp> -#include <vector> -#include <cstdint> -#include <iostream> - -#include "aidge/data/Tensor.hpp" -#include "aidge/utils/CompactData.hpp" - -using namespace Aidge; - -TEST_CASE("compactDataSize - Basic Tests", "[core][required_size]") { - SECTION("Single element cases") { - REQUIRE(Aidge::compactDataSize(1, 1) == 1); // 1 bit, needs 1 byte - REQUIRE(Aidge::compactDataSize(1, 7) == 1); // 7 bits, needs 1 byte - } - - SECTION("Boundary cases for different nb_bits values") { - REQUIRE(Aidge::compactDataSize(8, 1) == 1); // 8 elements at 1 bit each, fits in 1 byte - REQUIRE(Aidge::compactDataSize(8, 2) == 2); // 8 elements at 2 bits each, needs 2 bytes - REQUIRE(Aidge::compactDataSize(8, 3) == 4); // 8 elements at 3 bits each, needs 4 bytes - REQUIRE(Aidge::compactDataSize(8, 4) == 4); // 8 elements at 4 bits each, needs 4 bytes - } - - SECTION("Larger dataSize values") { - REQUIRE(Aidge::compactDataSize(16, 1) == 2); // 16 elements at 1 bit each, fits in 2 bytes - REQUIRE(Aidge::compactDataSize(16, 2) == 4); // 16 elements at 2 bits each, needs 4 bytes - REQUIRE(Aidge::compactDataSize(16, 3) == 8); // 16 elements at 3 bits each, needs 6 bytes - REQUIRE(Aidge::compactDataSize(16, 4) == 8); // 16 elements at 4 bits each, needs 8 bytes - } - - SECTION("Odd dataSize values with varying nb_bits") { - REQUIRE(Aidge::compactDataSize(7, 1) == 1); // 7 elements at 1 bit each, fits in 1 byte - REQUIRE(Aidge::compactDataSize(7, 2) == 2); // 7 elements at 2 bits each, needs 2 bytes - REQUIRE(Aidge::compactDataSize(7, 3) == 4); // 7 elements at 3 bits each, needs 4 bytes - REQUIRE(Aidge::compactDataSize(7, 4) == 4); // 7 elements at 4 bits each, needs 4 bytes - } - - SECTION("Minimum and maximum values for nb_bits") { - REQUIRE(Aidge::compactDataSize(5, 1) == 1); // 5 elements at 1 bit each, fits in 1 byte - } - - SECTION("Edge Case - dataSize of 0 should result in 0 required size") { - REQUIRE(Aidge::compactDataSize(0, 1) == 0); // No data elements - } -} - - -TEST_CASE("Compact Data", "[core][compactdata]") { - SECTION("Basic Tests - 4-bit compaction") { - - Tensor data = Array1D<std::int8_t, 4>{{static_cast<std::int8_t>(0x0F), static_cast<std::int8_t>(0xF5), static_cast<std::int8_t>(0xB3), static_cast<std::int8_t>(0x9C)}}; - uint8_t nb_bits = 4; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - // std::size_t required_size = (data.size() + (8 / nb_bits) - 1) / (8 / nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected result: each int8_t in compactData holds two 4-bit values. - std::vector<int8_t> expected = {{static_cast<int8_t>(0xF5), static_cast<int8_t>(0x3C)}}; - REQUIRE(compactData == expected); - } - - SECTION("Basic Tests - 2-bit compaction") { - Tensor data = Array1D<std::int8_t, 4>{{static_cast<std::int8_t>(0x03), static_cast<std::int8_t>(0x02), static_cast<std::int8_t>(0x01), static_cast<std::int8_t>(0x00)}}; - uint8_t nb_bits = 2; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected result: each int8_t in compactData holds four 2-bit values. - std::vector<int8_t> expected = {static_cast<int8_t>(0xE4)}; - REQUIRE(compactData == expected); - } - - SECTION("Edge Cases - Single element data") { - Tensor data = Array1D<std::int8_t, 1>{{static_cast<int8_t>(0x0F)}}; - uint8_t nb_bits = 4; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected result: should be a single 4-bit compacted value in one int8_t. - std::vector<int8_t> expected = {static_cast<int8_t>(0xF0)}; - REQUIRE(compactData == expected); - } - - SECTION("Edge Cases - Non-divisible dataSize for nbSlot") { - - Tensor data = Array1D<std::int8_t, 3>{{static_cast<int8_t>(0x0F), static_cast<int8_t>(0xA5), static_cast<int8_t>(0x34)}}; - uint8_t nb_bits = 4; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected: last value padded (only three 4-bit values to fit in two int8_t). - std::vector<int8_t> expected = {static_cast<int8_t>(0xF5), static_cast<int8_t>(0x40)}; - REQUIRE(compactData == expected); - - } - - SECTION("Edge Cases - Non-divisible dataSize for nbSlot") { - - Tensor data = Array1D<std::int8_t, 3>{{static_cast<int8_t>(0x0F), static_cast<int8_t>(0x05), static_cast<int8_t>(0x04)}}; - uint8_t nb_bits = 3; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected: last value padded (only three 4-bit values to fit in two int8_t). - std::vector<int8_t> expected = {static_cast<int8_t>(0x75), static_cast<int8_t>(0x40)}; - REQUIRE(compactData == expected); - - } - -} - -- GitLab From c5f707cb600389069ab94b4e62a29389b163e230 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 14:05:43 +0000 Subject: [PATCH 005/157] Add WeightInterleaving Operator --- include/aidge/operator/WeightInterleaving.hpp | 83 ++++++++++++ src/operator/WeightInterleaving.cpp | 121 ++++++++++++++++++ 2 files changed, 204 insertions(+) create mode 100644 include/aidge/operator/WeightInterleaving.hpp create mode 100644 src/operator/WeightInterleaving.cpp diff --git a/include/aidge/operator/WeightInterleaving.hpp b/include/aidge/operator/WeightInterleaving.hpp new file mode 100644 index 000000000..e9e51441a --- /dev/null +++ b/include/aidge/operator/WeightInterleaving.hpp @@ -0,0 +1,83 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#ifndef AIDGE_CORE_OPERATOR_WEIGHTINTERLEAVING_H_ +#define AIDGE_CORE_OPERATOR_WEIGHTINTERLEAVING_H_ + +#include <cassert> +#include <memory> +#include <vector> + +#include "aidge/backend/OperatorImpl.hpp" +#include "aidge/graph/Node.hpp" +#include "aidge/operator/OperatorTensor.hpp" +#include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/Registrar.hpp" +#include "aidge/utils/Types.h" + + +namespace Aidge { + +class WeightInterleaving_Op : + public OperatorTensor, + public Registrable<WeightInterleaving_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::shared_ptr<OperatorImpl>(const WeightInterleaving_Op&)>> +{ +public: + static const std::string Type; + + WeightInterleaving_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} + + /** + * @brief Copy-constructor. + * @param op WeightInterleaving_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. + */ + WeightInterleaving_Op(const WeightInterleaving_Op& op); + + /** + * @brief Clone the operator using its copy-constructor. + * @see Operator::WeightInterleaving_Op + */ + std::shared_ptr<Operator> clone() const override; + + bool forwardDims(bool allowDataDependency = false) override final; + + void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + std::set<std::string> getAvailableBackends() const override; + + static const std::vector<std::string> getInputsName(){ + return {"data_input"}; + } + static const std::vector<std::string> getOutputsName(){ + return {"data_output"}; + } + + /** + * @brief Calculates the required size for the 8-bits`compactData` vector. + * + * This function determines the minimum number of bytes needed in `compactData` + * to store `dataSize` elements compacted to `nb_bits` bits each. + * + * @param dataSize The total number of elements in the input data array. + * @param nb_bits The number of bits to use for each compacted element (from 1 to 7). + * @return std::size_t The required size in bytes for `compactData`. + */ + std::size_t compactDataSize(std::size_t dataSize, std::uint8_t nb_bits); + +}; + +std::shared_ptr<Node> WeightInterleaving(const std::string& name = ""); +} + +#endif /* AIDGE_CORE_OPERATOR_RELU_H_ */ diff --git a/src/operator/WeightInterleaving.cpp b/src/operator/WeightInterleaving.cpp new file mode 100644 index 000000000..66af1d51f --- /dev/null +++ b/src/operator/WeightInterleaving.cpp @@ -0,0 +1,121 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include "aidge/operator/WeightInterleaving.hpp" + +#include <memory> +#include <string> +#include <vector> + +#include "aidge/data/Data.hpp" +#include "aidge/data/Tensor.hpp" +#include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/StaticAttributes.hpp" +#include "aidge/utils/Types.h" + +const std::string Aidge::WeightInterleaving_Op::Type = "WeightInterleaving"; + +/** + * @brief Copy-constructor. + * @param op WeightInterleaving_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. + */ +Aidge::WeightInterleaving_Op::WeightInterleaving_Op(const WeightInterleaving_Op& op) + : OperatorTensor(op) +{ + if (op.mImpl) { + SET_IMPL_MACRO(WeightInterleaving_Op, *this, op.backend()); + } else { + mImpl = nullptr; + } +} + + +std::shared_ptr<Aidge::Operator> Aidge::WeightInterleaving_Op::clone() const { + return std::make_shared<WeightInterleaving_Op>(*this); +} + + +bool Aidge::WeightInterleaving_Op::forwardDims(bool /*allowDataDependency*/) { + + if (inputsAssociated()) { + + // check input data format is NHWC + AIDGE_ASSERT((getInput(0)->dataFormat() == DataFormat::NHWC), + "Wrong Input tensor Data Format : {} for WeightInterleaving operator (should be DataFormat::NHWC for STM32).", getInput(0)->dataFormat()); + + // Take the last dimension of the tensor : It is the Channel dimension in format NHWC + // The weights will be compacted along side the channel dimension only + const DimSize_t& lastDim = getInput(0)->dims().back(); + + // Compute the last dimension size of the tensor after the weight interleaving compression + // TO DO : implement a mechanism to get the number of bits of the DataType + const DataType& dt = getInput(0)->dataType(); + + std::uint8_t nbBits = 0; + + switch (dt) { + case DataType::Int4: + nbBits=4; + break; + case DataType::Int3: + nbBits=3; + break; + case DataType::Int2: + nbBits=2; + break; + default: + AIDGE_ASSERT(true, "Unsupport type for WeightInterleaving {}", dt); + } + + + const auto lastDimCompression = compactDataSize(lastDim, nbBits); + + std::vector<DimSize_t> outputDims = getInput(0)->dims(); + outputDims.back() = lastDimCompression; + + // <batch, OutChannels> + mOutputs[0]->resize(outputDims); + + return true; + } + + return false; +} + + +void Aidge::WeightInterleaving_Op::setBackend(const std::string& name, DeviceIdx_t device) { + SET_IMPL_MACRO(WeightInterleaving_Op, *this, name); + mOutputs[0]->setBackend(name, device); +} + +std::set<std::string> Aidge::WeightInterleaving_Op::getAvailableBackends() const { + return Registrar<WeightInterleaving_Op>::getKeys(); +} + +std::shared_ptr<Aidge::Node> Aidge::WeightInterleaving(const std::string& name) { + return std::make_shared<Node>(std::make_shared<WeightInterleaving_Op>(), name); +} + + +std::size_t Aidge::WeightInterleaving_Op::compactDataSize(std::size_t dataSize, std::uint8_t nbBits) { + AIDGE_ASSERT(nbBits > 0 && nbBits < 8, "nbBits must be between 1 and 4"); // Ensure valid bit width + + // Calculate the number of `nbBits` segments that can fit in an 8-bit byte. + const unsigned int nbSlot = 8 / nbBits; + + // Calculate the number of compacted bytes needed to store all data elements. + // The formula (dataSize + nbSlot - 1) / nbSlot effectively rounds up the division, ensuring that any remaining elements that don't fully fill a byte are accounted for. + std::size_t requiredSize = (dataSize + nbSlot - 1) / nbSlot; + + return requiredSize; +} \ No newline at end of file -- GitLab From b43080da831066bf171b52e296550b55bf541161 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 14:07:01 +0000 Subject: [PATCH 006/157] Add support of UInt4, Int3, UInt3, Int2, UInt2 --- include/aidge/backend/cpu/data/TensorImpl.hpp | 5 ++++ include/aidge/data/Data.hpp | 29 +++++++++++++++++++ python_binding/data/pybind_Tensor.cpp | 15 ++++++++++ src/data/Tensor.cpp | 10 +++++++ 4 files changed, 59 insertions(+) diff --git a/include/aidge/backend/cpu/data/TensorImpl.hpp b/include/aidge/backend/cpu/data/TensorImpl.hpp index 5f4e25772..770a37b07 100644 --- a/include/aidge/backend/cpu/data/TensorImpl.hpp +++ b/include/aidge/backend/cpu/data/TensorImpl.hpp @@ -127,6 +127,11 @@ REGISTRAR(Tensor, {"cpu", DataType::Int32}, Aidge::TensorImpl_cpu<int32_t>::crea REGISTRAR(Tensor, {"cpu", DataType::Int16}, Aidge::TensorImpl_cpu<int16_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int8}, Aidge::TensorImpl_cpu<int8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int4}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::UInt4}, Aidge::TensorImpl_cpu<uint8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Int3}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::UInt3}, Aidge::TensorImpl_cpu<uint8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Int2}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::UInt2}, Aidge::TensorImpl_cpu<uint8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt64}, Aidge::TensorImpl_cpu<uint64_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt32}, Aidge::TensorImpl_cpu<uint32_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt16}, Aidge::TensorImpl_cpu<uint16_t>::create); diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index d4d206409..acf5b950e 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -106,12 +106,36 @@ namespace { struct Int4Type { std::int8_t value; }; +struct UInt4Type { + std::uint8_t value; +}; +struct Int3Type { + std::int8_t value; +}; +struct UInt3Type { + std::uint8_t value; +}; +struct Int2Type { + std::int8_t value; +}; +struct UInt2Type { + std::uint8_t value; +}; + +template <Aidge::DataType D> struct AidgeNbBits { static const int nbBits; }; +template <> const int AidgeNbBits<Aidge::DataType::Int4>::nbBits = 4; + template <typename T> struct NativeType { static const Aidge::DataType type; }; template <> const Aidge::DataType NativeType<double>::type = Aidge::DataType::Float64; template <> const Aidge::DataType NativeType<float>::type = Aidge::DataType::Float32; template <> const Aidge::DataType NativeType<half_float::half>::type = Aidge::DataType::Float16; template <> const Aidge::DataType NativeType<Int4Type>::type = Aidge::DataType::Int4; +template <> const Aidge::DataType NativeType<UInt4Type>::type = Aidge::DataType::UInt4; +template <> const Aidge::DataType NativeType<Int3Type>::type = Aidge::DataType::Int3; +template <> const Aidge::DataType NativeType<UInt3Type>::type = Aidge::DataType::UInt3; +template <> const Aidge::DataType NativeType<Int2Type>::type = Aidge::DataType::Int2; +template <> const Aidge::DataType NativeType<UInt2Type>::type = Aidge::DataType::UInt2; template <> const Aidge::DataType NativeType<std::int8_t>::type = Aidge::DataType::Int8; template <> const Aidge::DataType NativeType<std::int16_t>::type = Aidge::DataType::Int16; template <> const Aidge::DataType NativeType<std::int32_t>::type = Aidge::DataType::Int32; @@ -139,6 +163,11 @@ template <> struct cpptype<Aidge::DataType::Float16> { using type = half_float:: template <> struct cpptype<Aidge::DataType::Float32> { using type = float; }; template <> struct cpptype<Aidge::DataType::Float64> { using type = double; }; template <> struct cpptype<Aidge::DataType::Int4> { using type = Int4Type; }; +template <> struct cpptype<Aidge::DataType::UInt4> { using type = UInt4Type; }; +template <> struct cpptype<Aidge::DataType::Int3> { using type = Int3Type; }; +template <> struct cpptype<Aidge::DataType::UInt3> { using type = UInt3Type; }; +template <> struct cpptype<Aidge::DataType::Int2> { using type = Int2Type; }; +template <> struct cpptype<Aidge::DataType::UInt2> { using type = UInt2Type; }; template <> struct cpptype<Aidge::DataType::Int8> { using type = std::int8_t; }; template <> struct cpptype<Aidge::DataType::Int16> { using type = std::int16_t; }; template <> struct cpptype<Aidge::DataType::Int32> { using type = std::int32_t; }; diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index 7e910be57..d94acaa81 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -505,6 +505,21 @@ void init_Tensor(py::module& m){ case DataType::Int4: dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); break; + case DataType::UInt4: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; + case DataType::Int3: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; + case DataType::UInt3: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; + case DataType::Int2: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; + case DataType::UInt2: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; case DataType::Int8: dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); break; diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index 2ba19a749..2a06aacbe 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -251,6 +251,16 @@ std::string Aidge::Tensor::toString() const { return std::to_string(static_cast<half_float::half*>(ptr)[idx]); case DataType::Int4: return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::UInt4: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); + case DataType::Int3: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::UInt3: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); + case DataType::Int2: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::UInt2: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); case DataType::Int8: return std::to_string(static_cast<int8_t*>(ptr)[idx]); case DataType::Int16: -- GitLab From 9f24fe6e7940085f66e2426cda30eab750fcfb54 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 16:30:13 +0000 Subject: [PATCH 007/157] Export when Aidge Datatype isn't convertible into cpp type then set cpp export type to None --- aidge_core/export_utils/data_conversion.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aidge_core/export_utils/data_conversion.py b/aidge_core/export_utils/data_conversion.py index 401fc39f2..5333c6a3b 100644 --- a/aidge_core/export_utils/data_conversion.py +++ b/aidge_core/export_utils/data_conversion.py @@ -19,6 +19,8 @@ datatype_converter_aide2c = { def aidge2c(datatype): """Convert a aidge datatype to C type + If the type is not convertible to a C type (e.g. int4), return None and raise a warning. + :param datatype: Aidge datatype to convert :type datatype: :py:object:`aidge_core.DataType` :return: A string representing the C type @@ -27,4 +29,6 @@ def aidge2c(datatype): if datatype in datatype_converter_aide2c: return datatype_converter_aide2c[datatype] else: - raise ValueError(f"Unsupported {datatype} aidge datatype") + # raise ValueError(f"Unsupported {datatype} aidge datatype") + aidge_core.Log.warn(f"Unsupported conversion of {datatype} (aidge datatype) to a C type.") + return None -- GitLab From cfcf64fe6ed600c40b9805defb1caa6a681ba253 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 16:31:05 +0000 Subject: [PATCH 008/157] Add ImplecSpec constructor binding for export ARM --- python_binding/backend/pybind_OperatorImpl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/python_binding/backend/pybind_OperatorImpl.cpp b/python_binding/backend/pybind_OperatorImpl.cpp index 49e45ed7e..cd94997cf 100644 --- a/python_binding/backend/pybind_OperatorImpl.cpp +++ b/python_binding/backend/pybind_OperatorImpl.cpp @@ -81,6 +81,7 @@ void init_OperatorImpl(py::module& m){ .def(py::init<const DynamicAttributes&>(), py::arg("attr") = DynamicAttributes()) .def(py::init<const ImplSpec::IOSpec&, const DynamicAttributes&>(), py::arg("io"), py::arg("attr") = DynamicAttributes()) .def(py::init<const ImplSpec::IOSpec&, const ImplSpec::IOSpec&, const DynamicAttributes&>(), py::arg("i"), py::arg("o"), py::arg("attr") = DynamicAttributes()) + .def(py::init<const std::vector<ImplSpec::IOSpec>&, const std::vector<ImplSpec::IOSpec>&, const DynamicAttributes&>(), py::arg("i"), py::arg("o"), py::arg("attr") = DynamicAttributes()) .def("__eq__", static_cast<bool(*)(const ImplSpec&, const ImplSpec&)>(&operator==)) .def("__repr__", [](ImplSpec self){ return fmt::format("{}\n", self); -- GitLab From f4d3d101bf85b163e088f955d2c81487763c7f97 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 6 Nov 2024 09:32:15 +0000 Subject: [PATCH 009/157] First version of compactData for custom datatype in export arm --- include/aidge/utils/CompactData.hpp | 105 +++++++++++++++ python_binding/utils/pybind_CompactData.cpp | 23 ++++ unit_tests/utils/Test_CompactData.cpp | 137 ++++++++++++++++++++ 3 files changed, 265 insertions(+) create mode 100644 include/aidge/utils/CompactData.hpp create mode 100644 python_binding/utils/pybind_CompactData.cpp create mode 100644 unit_tests/utils/Test_CompactData.cpp diff --git a/include/aidge/utils/CompactData.hpp b/include/aidge/utils/CompactData.hpp new file mode 100644 index 000000000..092102824 --- /dev/null +++ b/include/aidge/utils/CompactData.hpp @@ -0,0 +1,105 @@ + +#ifndef __CONVERT_CUSTOM_DATA_H__ +#define __CONVERT_CUSTOM_DATA_H__ + +#include <cassert> +#include <cstddef> +#include <cstdint> +#include <limits> +#include <cmath> + +#include "aidge/utils/ErrorHandling.hpp" + + +namespace Aidge { + + /** + * @brief Calculates the required size for the 8-bits`compactData` vector. + * + * This function determines the minimum number of bytes needed in `compactData` + * to store `dataSize` elements compacted to `nb_bits` bits each. + * + * @param dataSize The total number of elements in the input data array. + * @param nb_bits The number of bits to use for each compacted element (from 1 to 7). + * @return std::size_t The required size in bytes for `compactData`. + */ + std::size_t compactDataSize(std::size_t dataSize, std::uint8_t nb_bits) { + AIDGE_ASSERT(nb_bits > 0 && nb_bits < 8, "nb_bits must be between 1 and 4"); // Ensure valid bit width + + // Calculate the number of `nb_bits` segments that can fit in an 8-bit byte. + const unsigned int nbSlot = 8 / nb_bits; + + // Calculate the number of compacted bytes needed to store all data elements. + // The formula (dataSize + nbSlot - 1) / nbSlot effectively rounds up the division, ensuring that any remaining elements that don't fully fill a byte are accounted for. + std::size_t requiredSize = (dataSize + nbSlot - 1) / nbSlot; + + return requiredSize; + } + + /** + * @brief Compacts 8-bit data into a smaller bit-width representation. + * + * This function takes an array of 8-bit data and compacts it into smaller chunks + * based on the specified bit-width `nb_bits`. Each element in `compactData` will + * store multiple packed `nb_bits` segments extracted from `data`. + * + * @param data The input array of 8-bit values to be compacted. + * @param dataSize The size of the input `data` array. + * @param compactData The output array storing the compacted data. + * @param nb_bits The number of bits to extract from each `data` element (must be less than 8). + */ + void compact_data(const std::int8_t* data, std::size_t dataSize, std::int8_t* compactData, std::uint8_t nb_bits) { + AIDGE_ASSERT(nb_bits > 0 && nb_bits < 5, "Cannot compact with the given nb_bits"); // Ensure valid bit width + + // Mask to extract `nb_bits` from each data element + const unsigned int mask = (1U << nb_bits) - 1; + + // Calculate the number of `nb_bits` segments that fit into an 8-bit compacted value + const unsigned int nbSlot = 8 / nb_bits; + + // Case nb_bits=3 or 4, then shift is 4 + // Case nb_bits=2, then shift is 2 + // Case nb_bits=1, then shift is 1 + std::uint8_t shift = 8 / nbSlot; + + const unsigned int nbFullCompactbytes = dataSize / nbSlot; + + // Main loop to process data in groups of `nbSlot` + for (std::size_t i = 0; i < nbFullCompactbytes; ++i) { + std::int8_t compact = 0; + + for (unsigned int j = 0; j < nbSlot; ++j) { + compact |= (data[i * nbSlot + j] & mask); // Apply mask to keep `nb_bits` only + + // Shift only if not on the last slot to make room for the next `nb_bits` + if (j < nbSlot - 1) { + compact <<= shift; + } + } + // Store the compacted value in the output array + compactData[i] = compact; + } + + + // Handle any remaining data elements (if dataSize is not a multiple of nbSlot). + std::size_t remaining = dataSize % nbSlot; + if (remaining != 0) { + std::int8_t compact = 0; + for (std::size_t j = 0; j < remaining; ++j) { + compact |= (data[nbFullCompactbytes*nbSlot + j] & mask); + + if (j < remaining - 1) { + compact <<= shift; + } + } + compact <<= (shift*(nbSlot - remaining)); + // Store the last compacted value + compactData[dataSize / nbSlot] = compact; + } + } + + + +} + +#endif \ No newline at end of file diff --git a/python_binding/utils/pybind_CompactData.cpp b/python_binding/utils/pybind_CompactData.cpp new file mode 100644 index 000000000..aad35d572 --- /dev/null +++ b/python_binding/utils/pybind_CompactData.cpp @@ -0,0 +1,23 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <pybind11/pybind11.h> +#include "aidge/utils/CompactData.hpp" + +namespace py = pybind11; + +namespace Aidge { + +void init_CompactData(py::module &m) { + m.def("compact_data", &compact_data, py::arg("data"), py::arg("data_size"), py::arg("compact_data"), py::arg("nb_bits"), + "Compacts 8-bit data into smaller bit-width representation."); +} +} // namespace Aidge diff --git a/unit_tests/utils/Test_CompactData.cpp b/unit_tests/utils/Test_CompactData.cpp new file mode 100644 index 000000000..7971046a8 --- /dev/null +++ b/unit_tests/utils/Test_CompactData.cpp @@ -0,0 +1,137 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <catch2/catch_test_macros.hpp> +#include <vector> +#include <cstdint> +#include <iostream> + +#include "aidge/data/Tensor.hpp" +#include "aidge/utils/CompactData.hpp" + +using namespace Aidge; + +TEST_CASE("compactDataSize - Basic Tests", "[core][required_size]") { + SECTION("Single element cases") { + REQUIRE(Aidge::compactDataSize(1, 1) == 1); // 1 bit, needs 1 byte + REQUIRE(Aidge::compactDataSize(1, 7) == 1); // 7 bits, needs 1 byte + } + + SECTION("Boundary cases for different nb_bits values") { + REQUIRE(Aidge::compactDataSize(8, 1) == 1); // 8 elements at 1 bit each, fits in 1 byte + REQUIRE(Aidge::compactDataSize(8, 2) == 2); // 8 elements at 2 bits each, needs 2 bytes + REQUIRE(Aidge::compactDataSize(8, 3) == 4); // 8 elements at 3 bits each, needs 4 bytes + REQUIRE(Aidge::compactDataSize(8, 4) == 4); // 8 elements at 4 bits each, needs 4 bytes + } + + SECTION("Larger dataSize values") { + REQUIRE(Aidge::compactDataSize(16, 1) == 2); // 16 elements at 1 bit each, fits in 2 bytes + REQUIRE(Aidge::compactDataSize(16, 2) == 4); // 16 elements at 2 bits each, needs 4 bytes + REQUIRE(Aidge::compactDataSize(16, 3) == 8); // 16 elements at 3 bits each, needs 6 bytes + REQUIRE(Aidge::compactDataSize(16, 4) == 8); // 16 elements at 4 bits each, needs 8 bytes + } + + SECTION("Odd dataSize values with varying nb_bits") { + REQUIRE(Aidge::compactDataSize(7, 1) == 1); // 7 elements at 1 bit each, fits in 1 byte + REQUIRE(Aidge::compactDataSize(7, 2) == 2); // 7 elements at 2 bits each, needs 2 bytes + REQUIRE(Aidge::compactDataSize(7, 3) == 4); // 7 elements at 3 bits each, needs 4 bytes + REQUIRE(Aidge::compactDataSize(7, 4) == 4); // 7 elements at 4 bits each, needs 4 bytes + } + + SECTION("Minimum and maximum values for nb_bits") { + REQUIRE(Aidge::compactDataSize(5, 1) == 1); // 5 elements at 1 bit each, fits in 1 byte + } + + SECTION("Edge Case - dataSize of 0 should result in 0 required size") { + REQUIRE(Aidge::compactDataSize(0, 1) == 0); // No data elements + } +} + + +TEST_CASE("Compact Data", "[core][compactdata]") { + SECTION("Basic Tests - 4-bit compaction") { + + Tensor data = Array1D<std::int8_t, 4>{{static_cast<std::int8_t>(0x0F), static_cast<std::int8_t>(0xF5), static_cast<std::int8_t>(0xB3), static_cast<std::int8_t>(0x9C)}}; + uint8_t nb_bits = 4; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + // std::size_t required_size = (data.size() + (8 / nb_bits) - 1) / (8 / nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected result: each int8_t in compactData holds two 4-bit values. + std::vector<int8_t> expected = {{static_cast<int8_t>(0xF5), static_cast<int8_t>(0x3C)}}; + REQUIRE(compactData == expected); + } + + SECTION("Basic Tests - 2-bit compaction") { + Tensor data = Array1D<std::int8_t, 4>{{static_cast<std::int8_t>(0x03), static_cast<std::int8_t>(0x02), static_cast<std::int8_t>(0x01), static_cast<std::int8_t>(0x00)}}; + uint8_t nb_bits = 2; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected result: each int8_t in compactData holds four 2-bit values. + std::vector<int8_t> expected = {static_cast<int8_t>(0xE4)}; + REQUIRE(compactData == expected); + } + + SECTION("Edge Cases - Single element data") { + Tensor data = Array1D<std::int8_t, 1>{{static_cast<int8_t>(0x0F)}}; + uint8_t nb_bits = 4; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected result: should be a single 4-bit compacted value in one int8_t. + std::vector<int8_t> expected = {static_cast<int8_t>(0xF0)}; + REQUIRE(compactData == expected); + } + + SECTION("Edge Cases - Non-divisible dataSize for nbSlot") { + + Tensor data = Array1D<std::int8_t, 3>{{static_cast<int8_t>(0x0F), static_cast<int8_t>(0xA5), static_cast<int8_t>(0x34)}}; + uint8_t nb_bits = 4; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected: last value padded (only three 4-bit values to fit in two int8_t). + std::vector<int8_t> expected = {static_cast<int8_t>(0xF5), static_cast<int8_t>(0x40)}; + REQUIRE(compactData == expected); + + } + + SECTION("Edge Cases - Non-divisible dataSize for nbSlot") { + + Tensor data = Array1D<std::int8_t, 3>{{static_cast<int8_t>(0x0F), static_cast<int8_t>(0x05), static_cast<int8_t>(0x04)}}; + uint8_t nb_bits = 3; + + std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); + std::vector<int8_t> compactData(required_size); + + Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); + + // Expected: last value padded (only three 4-bit values to fit in two int8_t). + std::vector<int8_t> expected = {static_cast<int8_t>(0x75), static_cast<int8_t>(0x40)}; + REQUIRE(compactData == expected); + + } + +} + -- GitLab From b60ad289e247b4ce0d7dba01debeb44de4b10cbe Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 6 Nov 2024 09:34:19 +0000 Subject: [PATCH 010/157] Update pybind_core with compact data binding --- python_binding/pybind_core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index 2602108ad..ef41a3b1d 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -17,6 +17,7 @@ namespace py = pybind11; namespace Aidge { void init_Random(py::module&); +void init_CompactData(py::module&); void init_Data(py::module&); void init_Database(py::module&); void init_DataProvider(py::module&); @@ -101,6 +102,7 @@ void init_Filler(py::module&); void init_Aidge(py::module& m) { init_Random(m); + init_CompactData(m); init_Data(m); init_Database(m); -- GitLab From e5fa197b59fa203048566bfd1df2d533608c41c0 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 6 Nov 2024 12:56:52 +0000 Subject: [PATCH 011/157] Add type aidge::int4 with tensor implementation int8_t --- include/aidge/backend/cpu/data/TensorImpl.hpp | 1 + include/aidge/data/Data.hpp | 11 +++++++++++ python_binding/data/pybind_Tensor.cpp | 5 +++++ src/data/Tensor.cpp | 2 ++ 4 files changed, 19 insertions(+) diff --git a/include/aidge/backend/cpu/data/TensorImpl.hpp b/include/aidge/backend/cpu/data/TensorImpl.hpp index 9390fe586..5f4e25772 100644 --- a/include/aidge/backend/cpu/data/TensorImpl.hpp +++ b/include/aidge/backend/cpu/data/TensorImpl.hpp @@ -126,6 +126,7 @@ REGISTRAR(Tensor, {"cpu", DataType::Int64}, Aidge::TensorImpl_cpu<int64_t>::crea REGISTRAR(Tensor, {"cpu", DataType::Int32}, Aidge::TensorImpl_cpu<int32_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int16}, Aidge::TensorImpl_cpu<int16_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int8}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Int4}, Aidge::TensorImpl_cpu<int8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt64}, Aidge::TensorImpl_cpu<uint64_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt32}, Aidge::TensorImpl_cpu<uint32_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt16}, Aidge::TensorImpl_cpu<uint16_t>::create); diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index 6f8771942..c69305d84 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -104,10 +104,17 @@ private: } namespace { + +// Define a distinct type alias for Int4 +struct Int4Type { + std::int8_t value; +}; + template <typename T> struct NativeType { static const Aidge::DataType type; }; template <> const Aidge::DataType NativeType<double>::type = Aidge::DataType::Float64; template <> const Aidge::DataType NativeType<float>::type = Aidge::DataType::Float32; template <> const Aidge::DataType NativeType<half_float::half>::type = Aidge::DataType::Float16; +template <> const Aidge::DataType NativeType<Int4Type>::type = Aidge::DataType::Int4; template <> const Aidge::DataType NativeType<std::int8_t>::type = Aidge::DataType::Int8; template <> const Aidge::DataType NativeType<std::int16_t>::type = Aidge::DataType::Int16; template <> const Aidge::DataType NativeType<std::int32_t>::type = Aidge::DataType::Int32; @@ -134,6 +141,7 @@ template <Aidge::DataType D> struct cpptype { template <> struct cpptype<Aidge::DataType::Float16> { using type = half_float::half; }; template <> struct cpptype<Aidge::DataType::Float32> { using type = float; }; template <> struct cpptype<Aidge::DataType::Float64> { using type = double; }; +template <> struct cpptype<Aidge::DataType::Int4> { using type = Int4Type; }; template <> struct cpptype<Aidge::DataType::Int8> { using type = std::int8_t; }; template <> struct cpptype<Aidge::DataType::Int16> { using type = std::int16_t; }; template <> struct cpptype<Aidge::DataType::Int32> { using type = std::int32_t; }; @@ -144,6 +152,9 @@ template <> struct cpptype<Aidge::DataType::UInt32> { using type = std::uint32_t template <> struct cpptype<Aidge::DataType::UInt64> { using type = std::uint64_t; }; template <Aidge::DataType D> using cpptype_t = typename cpptype<D>::type; + + + } diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index b972c87dc..52b8021a3 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -226,6 +226,8 @@ static T castToNativeType(const py::object val_obj) { DataType dtype; getConservativeNativeVal(val_obj, &val, &dtype); switch (dtype) { + case DataType::Int4: + return (T)val.i8; case DataType::Int8: return (T)val.i8; case DataType::Int16: @@ -497,6 +499,9 @@ void init_Tensor(py::module& m){ case DataType::Float32: dataFormatDescriptor = py::format_descriptor<float>::format(); break;; + case DataType::Int4: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; case DataType::Int8: dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); break; diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index 3dcdcc65d..bc1de946a 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -250,6 +250,8 @@ std::string Aidge::Tensor::toString() const { return std::to_string(static_cast<float*>(ptr)[idx]); case DataType::Float16: return std::to_string(static_cast<half_float::half*>(ptr)[idx]); + case DataType::Int4: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); case DataType::Int8: return std::to_string(static_cast<int8_t*>(ptr)[idx]); case DataType::Int16: -- GitLab From 57592ed74e89a166733951ca69a941051b8b424e Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 14:03:43 +0000 Subject: [PATCH 012/157] Remove Compact data from utils - functions are integrated into WeightInterleaving Operator --- include/aidge/utils/CompactData.hpp | 105 --------------- python_binding/pybind_core.cpp | 2 - python_binding/utils/pybind_CompactData.cpp | 23 ---- unit_tests/utils/Test_CompactData.cpp | 137 -------------------- 4 files changed, 267 deletions(-) delete mode 100644 include/aidge/utils/CompactData.hpp delete mode 100644 python_binding/utils/pybind_CompactData.cpp delete mode 100644 unit_tests/utils/Test_CompactData.cpp diff --git a/include/aidge/utils/CompactData.hpp b/include/aidge/utils/CompactData.hpp deleted file mode 100644 index 092102824..000000000 --- a/include/aidge/utils/CompactData.hpp +++ /dev/null @@ -1,105 +0,0 @@ - -#ifndef __CONVERT_CUSTOM_DATA_H__ -#define __CONVERT_CUSTOM_DATA_H__ - -#include <cassert> -#include <cstddef> -#include <cstdint> -#include <limits> -#include <cmath> - -#include "aidge/utils/ErrorHandling.hpp" - - -namespace Aidge { - - /** - * @brief Calculates the required size for the 8-bits`compactData` vector. - * - * This function determines the minimum number of bytes needed in `compactData` - * to store `dataSize` elements compacted to `nb_bits` bits each. - * - * @param dataSize The total number of elements in the input data array. - * @param nb_bits The number of bits to use for each compacted element (from 1 to 7). - * @return std::size_t The required size in bytes for `compactData`. - */ - std::size_t compactDataSize(std::size_t dataSize, std::uint8_t nb_bits) { - AIDGE_ASSERT(nb_bits > 0 && nb_bits < 8, "nb_bits must be between 1 and 4"); // Ensure valid bit width - - // Calculate the number of `nb_bits` segments that can fit in an 8-bit byte. - const unsigned int nbSlot = 8 / nb_bits; - - // Calculate the number of compacted bytes needed to store all data elements. - // The formula (dataSize + nbSlot - 1) / nbSlot effectively rounds up the division, ensuring that any remaining elements that don't fully fill a byte are accounted for. - std::size_t requiredSize = (dataSize + nbSlot - 1) / nbSlot; - - return requiredSize; - } - - /** - * @brief Compacts 8-bit data into a smaller bit-width representation. - * - * This function takes an array of 8-bit data and compacts it into smaller chunks - * based on the specified bit-width `nb_bits`. Each element in `compactData` will - * store multiple packed `nb_bits` segments extracted from `data`. - * - * @param data The input array of 8-bit values to be compacted. - * @param dataSize The size of the input `data` array. - * @param compactData The output array storing the compacted data. - * @param nb_bits The number of bits to extract from each `data` element (must be less than 8). - */ - void compact_data(const std::int8_t* data, std::size_t dataSize, std::int8_t* compactData, std::uint8_t nb_bits) { - AIDGE_ASSERT(nb_bits > 0 && nb_bits < 5, "Cannot compact with the given nb_bits"); // Ensure valid bit width - - // Mask to extract `nb_bits` from each data element - const unsigned int mask = (1U << nb_bits) - 1; - - // Calculate the number of `nb_bits` segments that fit into an 8-bit compacted value - const unsigned int nbSlot = 8 / nb_bits; - - // Case nb_bits=3 or 4, then shift is 4 - // Case nb_bits=2, then shift is 2 - // Case nb_bits=1, then shift is 1 - std::uint8_t shift = 8 / nbSlot; - - const unsigned int nbFullCompactbytes = dataSize / nbSlot; - - // Main loop to process data in groups of `nbSlot` - for (std::size_t i = 0; i < nbFullCompactbytes; ++i) { - std::int8_t compact = 0; - - for (unsigned int j = 0; j < nbSlot; ++j) { - compact |= (data[i * nbSlot + j] & mask); // Apply mask to keep `nb_bits` only - - // Shift only if not on the last slot to make room for the next `nb_bits` - if (j < nbSlot - 1) { - compact <<= shift; - } - } - // Store the compacted value in the output array - compactData[i] = compact; - } - - - // Handle any remaining data elements (if dataSize is not a multiple of nbSlot). - std::size_t remaining = dataSize % nbSlot; - if (remaining != 0) { - std::int8_t compact = 0; - for (std::size_t j = 0; j < remaining; ++j) { - compact |= (data[nbFullCompactbytes*nbSlot + j] & mask); - - if (j < remaining - 1) { - compact <<= shift; - } - } - compact <<= (shift*(nbSlot - remaining)); - // Store the last compacted value - compactData[dataSize / nbSlot] = compact; - } - } - - - -} - -#endif \ No newline at end of file diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index ef41a3b1d..2602108ad 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -17,7 +17,6 @@ namespace py = pybind11; namespace Aidge { void init_Random(py::module&); -void init_CompactData(py::module&); void init_Data(py::module&); void init_Database(py::module&); void init_DataProvider(py::module&); @@ -102,7 +101,6 @@ void init_Filler(py::module&); void init_Aidge(py::module& m) { init_Random(m); - init_CompactData(m); init_Data(m); init_Database(m); diff --git a/python_binding/utils/pybind_CompactData.cpp b/python_binding/utils/pybind_CompactData.cpp deleted file mode 100644 index aad35d572..000000000 --- a/python_binding/utils/pybind_CompactData.cpp +++ /dev/null @@ -1,23 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <pybind11/pybind11.h> -#include "aidge/utils/CompactData.hpp" - -namespace py = pybind11; - -namespace Aidge { - -void init_CompactData(py::module &m) { - m.def("compact_data", &compact_data, py::arg("data"), py::arg("data_size"), py::arg("compact_data"), py::arg("nb_bits"), - "Compacts 8-bit data into smaller bit-width representation."); -} -} // namespace Aidge diff --git a/unit_tests/utils/Test_CompactData.cpp b/unit_tests/utils/Test_CompactData.cpp deleted file mode 100644 index 7971046a8..000000000 --- a/unit_tests/utils/Test_CompactData.cpp +++ /dev/null @@ -1,137 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <catch2/catch_test_macros.hpp> -#include <vector> -#include <cstdint> -#include <iostream> - -#include "aidge/data/Tensor.hpp" -#include "aidge/utils/CompactData.hpp" - -using namespace Aidge; - -TEST_CASE("compactDataSize - Basic Tests", "[core][required_size]") { - SECTION("Single element cases") { - REQUIRE(Aidge::compactDataSize(1, 1) == 1); // 1 bit, needs 1 byte - REQUIRE(Aidge::compactDataSize(1, 7) == 1); // 7 bits, needs 1 byte - } - - SECTION("Boundary cases for different nb_bits values") { - REQUIRE(Aidge::compactDataSize(8, 1) == 1); // 8 elements at 1 bit each, fits in 1 byte - REQUIRE(Aidge::compactDataSize(8, 2) == 2); // 8 elements at 2 bits each, needs 2 bytes - REQUIRE(Aidge::compactDataSize(8, 3) == 4); // 8 elements at 3 bits each, needs 4 bytes - REQUIRE(Aidge::compactDataSize(8, 4) == 4); // 8 elements at 4 bits each, needs 4 bytes - } - - SECTION("Larger dataSize values") { - REQUIRE(Aidge::compactDataSize(16, 1) == 2); // 16 elements at 1 bit each, fits in 2 bytes - REQUIRE(Aidge::compactDataSize(16, 2) == 4); // 16 elements at 2 bits each, needs 4 bytes - REQUIRE(Aidge::compactDataSize(16, 3) == 8); // 16 elements at 3 bits each, needs 6 bytes - REQUIRE(Aidge::compactDataSize(16, 4) == 8); // 16 elements at 4 bits each, needs 8 bytes - } - - SECTION("Odd dataSize values with varying nb_bits") { - REQUIRE(Aidge::compactDataSize(7, 1) == 1); // 7 elements at 1 bit each, fits in 1 byte - REQUIRE(Aidge::compactDataSize(7, 2) == 2); // 7 elements at 2 bits each, needs 2 bytes - REQUIRE(Aidge::compactDataSize(7, 3) == 4); // 7 elements at 3 bits each, needs 4 bytes - REQUIRE(Aidge::compactDataSize(7, 4) == 4); // 7 elements at 4 bits each, needs 4 bytes - } - - SECTION("Minimum and maximum values for nb_bits") { - REQUIRE(Aidge::compactDataSize(5, 1) == 1); // 5 elements at 1 bit each, fits in 1 byte - } - - SECTION("Edge Case - dataSize of 0 should result in 0 required size") { - REQUIRE(Aidge::compactDataSize(0, 1) == 0); // No data elements - } -} - - -TEST_CASE("Compact Data", "[core][compactdata]") { - SECTION("Basic Tests - 4-bit compaction") { - - Tensor data = Array1D<std::int8_t, 4>{{static_cast<std::int8_t>(0x0F), static_cast<std::int8_t>(0xF5), static_cast<std::int8_t>(0xB3), static_cast<std::int8_t>(0x9C)}}; - uint8_t nb_bits = 4; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - // std::size_t required_size = (data.size() + (8 / nb_bits) - 1) / (8 / nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected result: each int8_t in compactData holds two 4-bit values. - std::vector<int8_t> expected = {{static_cast<int8_t>(0xF5), static_cast<int8_t>(0x3C)}}; - REQUIRE(compactData == expected); - } - - SECTION("Basic Tests - 2-bit compaction") { - Tensor data = Array1D<std::int8_t, 4>{{static_cast<std::int8_t>(0x03), static_cast<std::int8_t>(0x02), static_cast<std::int8_t>(0x01), static_cast<std::int8_t>(0x00)}}; - uint8_t nb_bits = 2; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected result: each int8_t in compactData holds four 2-bit values. - std::vector<int8_t> expected = {static_cast<int8_t>(0xE4)}; - REQUIRE(compactData == expected); - } - - SECTION("Edge Cases - Single element data") { - Tensor data = Array1D<std::int8_t, 1>{{static_cast<int8_t>(0x0F)}}; - uint8_t nb_bits = 4; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected result: should be a single 4-bit compacted value in one int8_t. - std::vector<int8_t> expected = {static_cast<int8_t>(0xF0)}; - REQUIRE(compactData == expected); - } - - SECTION("Edge Cases - Non-divisible dataSize for nbSlot") { - - Tensor data = Array1D<std::int8_t, 3>{{static_cast<int8_t>(0x0F), static_cast<int8_t>(0xA5), static_cast<int8_t>(0x34)}}; - uint8_t nb_bits = 4; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected: last value padded (only three 4-bit values to fit in two int8_t). - std::vector<int8_t> expected = {static_cast<int8_t>(0xF5), static_cast<int8_t>(0x40)}; - REQUIRE(compactData == expected); - - } - - SECTION("Edge Cases - Non-divisible dataSize for nbSlot") { - - Tensor data = Array1D<std::int8_t, 3>{{static_cast<int8_t>(0x0F), static_cast<int8_t>(0x05), static_cast<int8_t>(0x04)}}; - uint8_t nb_bits = 3; - - std::size_t required_size = Aidge::compactDataSize(data.size(), nb_bits); - std::vector<int8_t> compactData(required_size); - - Aidge::compact_data(static_cast<int8_t*>(data.getImpl()->rawPtr()), data.size(), static_cast<int8_t*>(compactData.data()), nb_bits); - - // Expected: last value padded (only three 4-bit values to fit in two int8_t). - std::vector<int8_t> expected = {static_cast<int8_t>(0x75), static_cast<int8_t>(0x40)}; - REQUIRE(compactData == expected); - - } - -} - -- GitLab From b0cff912999a28052d30110a7c2136af2468c8bc Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 14:05:43 +0000 Subject: [PATCH 013/157] Add WeightInterleaving Operator --- include/aidge/operator/WeightInterleaving.hpp | 83 ++++++++++++ src/operator/WeightInterleaving.cpp | 121 ++++++++++++++++++ 2 files changed, 204 insertions(+) create mode 100644 include/aidge/operator/WeightInterleaving.hpp create mode 100644 src/operator/WeightInterleaving.cpp diff --git a/include/aidge/operator/WeightInterleaving.hpp b/include/aidge/operator/WeightInterleaving.hpp new file mode 100644 index 000000000..e9e51441a --- /dev/null +++ b/include/aidge/operator/WeightInterleaving.hpp @@ -0,0 +1,83 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#ifndef AIDGE_CORE_OPERATOR_WEIGHTINTERLEAVING_H_ +#define AIDGE_CORE_OPERATOR_WEIGHTINTERLEAVING_H_ + +#include <cassert> +#include <memory> +#include <vector> + +#include "aidge/backend/OperatorImpl.hpp" +#include "aidge/graph/Node.hpp" +#include "aidge/operator/OperatorTensor.hpp" +#include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/Registrar.hpp" +#include "aidge/utils/Types.h" + + +namespace Aidge { + +class WeightInterleaving_Op : + public OperatorTensor, + public Registrable<WeightInterleaving_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::shared_ptr<OperatorImpl>(const WeightInterleaving_Op&)>> +{ +public: + static const std::string Type; + + WeightInterleaving_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} + + /** + * @brief Copy-constructor. + * @param op WeightInterleaving_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. + */ + WeightInterleaving_Op(const WeightInterleaving_Op& op); + + /** + * @brief Clone the operator using its copy-constructor. + * @see Operator::WeightInterleaving_Op + */ + std::shared_ptr<Operator> clone() const override; + + bool forwardDims(bool allowDataDependency = false) override final; + + void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + std::set<std::string> getAvailableBackends() const override; + + static const std::vector<std::string> getInputsName(){ + return {"data_input"}; + } + static const std::vector<std::string> getOutputsName(){ + return {"data_output"}; + } + + /** + * @brief Calculates the required size for the 8-bits`compactData` vector. + * + * This function determines the minimum number of bytes needed in `compactData` + * to store `dataSize` elements compacted to `nb_bits` bits each. + * + * @param dataSize The total number of elements in the input data array. + * @param nb_bits The number of bits to use for each compacted element (from 1 to 7). + * @return std::size_t The required size in bytes for `compactData`. + */ + std::size_t compactDataSize(std::size_t dataSize, std::uint8_t nb_bits); + +}; + +std::shared_ptr<Node> WeightInterleaving(const std::string& name = ""); +} + +#endif /* AIDGE_CORE_OPERATOR_RELU_H_ */ diff --git a/src/operator/WeightInterleaving.cpp b/src/operator/WeightInterleaving.cpp new file mode 100644 index 000000000..66af1d51f --- /dev/null +++ b/src/operator/WeightInterleaving.cpp @@ -0,0 +1,121 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include "aidge/operator/WeightInterleaving.hpp" + +#include <memory> +#include <string> +#include <vector> + +#include "aidge/data/Data.hpp" +#include "aidge/data/Tensor.hpp" +#include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/StaticAttributes.hpp" +#include "aidge/utils/Types.h" + +const std::string Aidge::WeightInterleaving_Op::Type = "WeightInterleaving"; + +/** + * @brief Copy-constructor. + * @param op WeightInterleaving_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. + */ +Aidge::WeightInterleaving_Op::WeightInterleaving_Op(const WeightInterleaving_Op& op) + : OperatorTensor(op) +{ + if (op.mImpl) { + SET_IMPL_MACRO(WeightInterleaving_Op, *this, op.backend()); + } else { + mImpl = nullptr; + } +} + + +std::shared_ptr<Aidge::Operator> Aidge::WeightInterleaving_Op::clone() const { + return std::make_shared<WeightInterleaving_Op>(*this); +} + + +bool Aidge::WeightInterleaving_Op::forwardDims(bool /*allowDataDependency*/) { + + if (inputsAssociated()) { + + // check input data format is NHWC + AIDGE_ASSERT((getInput(0)->dataFormat() == DataFormat::NHWC), + "Wrong Input tensor Data Format : {} for WeightInterleaving operator (should be DataFormat::NHWC for STM32).", getInput(0)->dataFormat()); + + // Take the last dimension of the tensor : It is the Channel dimension in format NHWC + // The weights will be compacted along side the channel dimension only + const DimSize_t& lastDim = getInput(0)->dims().back(); + + // Compute the last dimension size of the tensor after the weight interleaving compression + // TO DO : implement a mechanism to get the number of bits of the DataType + const DataType& dt = getInput(0)->dataType(); + + std::uint8_t nbBits = 0; + + switch (dt) { + case DataType::Int4: + nbBits=4; + break; + case DataType::Int3: + nbBits=3; + break; + case DataType::Int2: + nbBits=2; + break; + default: + AIDGE_ASSERT(true, "Unsupport type for WeightInterleaving {}", dt); + } + + + const auto lastDimCompression = compactDataSize(lastDim, nbBits); + + std::vector<DimSize_t> outputDims = getInput(0)->dims(); + outputDims.back() = lastDimCompression; + + // <batch, OutChannels> + mOutputs[0]->resize(outputDims); + + return true; + } + + return false; +} + + +void Aidge::WeightInterleaving_Op::setBackend(const std::string& name, DeviceIdx_t device) { + SET_IMPL_MACRO(WeightInterleaving_Op, *this, name); + mOutputs[0]->setBackend(name, device); +} + +std::set<std::string> Aidge::WeightInterleaving_Op::getAvailableBackends() const { + return Registrar<WeightInterleaving_Op>::getKeys(); +} + +std::shared_ptr<Aidge::Node> Aidge::WeightInterleaving(const std::string& name) { + return std::make_shared<Node>(std::make_shared<WeightInterleaving_Op>(), name); +} + + +std::size_t Aidge::WeightInterleaving_Op::compactDataSize(std::size_t dataSize, std::uint8_t nbBits) { + AIDGE_ASSERT(nbBits > 0 && nbBits < 8, "nbBits must be between 1 and 4"); // Ensure valid bit width + + // Calculate the number of `nbBits` segments that can fit in an 8-bit byte. + const unsigned int nbSlot = 8 / nbBits; + + // Calculate the number of compacted bytes needed to store all data elements. + // The formula (dataSize + nbSlot - 1) / nbSlot effectively rounds up the division, ensuring that any remaining elements that don't fully fill a byte are accounted for. + std::size_t requiredSize = (dataSize + nbSlot - 1) / nbSlot; + + return requiredSize; +} \ No newline at end of file -- GitLab From 61b9a632e989a84692604d010ec7a4fe8fbae78b Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 14:07:01 +0000 Subject: [PATCH 014/157] Add support of UInt4, Int3, UInt3, Int2, UInt2 --- include/aidge/backend/cpu/data/TensorImpl.hpp | 5 ++++ include/aidge/data/Data.hpp | 29 +++++++++++++++++++ python_binding/data/pybind_Tensor.cpp | 15 ++++++++++ src/data/Tensor.cpp | 10 +++++++ 4 files changed, 59 insertions(+) diff --git a/include/aidge/backend/cpu/data/TensorImpl.hpp b/include/aidge/backend/cpu/data/TensorImpl.hpp index 5f4e25772..770a37b07 100644 --- a/include/aidge/backend/cpu/data/TensorImpl.hpp +++ b/include/aidge/backend/cpu/data/TensorImpl.hpp @@ -127,6 +127,11 @@ REGISTRAR(Tensor, {"cpu", DataType::Int32}, Aidge::TensorImpl_cpu<int32_t>::crea REGISTRAR(Tensor, {"cpu", DataType::Int16}, Aidge::TensorImpl_cpu<int16_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int8}, Aidge::TensorImpl_cpu<int8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int4}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::UInt4}, Aidge::TensorImpl_cpu<uint8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Int3}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::UInt3}, Aidge::TensorImpl_cpu<uint8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Int2}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::UInt2}, Aidge::TensorImpl_cpu<uint8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt64}, Aidge::TensorImpl_cpu<uint64_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt32}, Aidge::TensorImpl_cpu<uint32_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt16}, Aidge::TensorImpl_cpu<uint16_t>::create); diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index c69305d84..623a520f9 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -109,12 +109,36 @@ namespace { struct Int4Type { std::int8_t value; }; +struct UInt4Type { + std::uint8_t value; +}; +struct Int3Type { + std::int8_t value; +}; +struct UInt3Type { + std::uint8_t value; +}; +struct Int2Type { + std::int8_t value; +}; +struct UInt2Type { + std::uint8_t value; +}; + +template <Aidge::DataType D> struct AidgeNbBits { static const int nbBits; }; +template <> const int AidgeNbBits<Aidge::DataType::Int4>::nbBits = 4; + template <typename T> struct NativeType { static const Aidge::DataType type; }; template <> const Aidge::DataType NativeType<double>::type = Aidge::DataType::Float64; template <> const Aidge::DataType NativeType<float>::type = Aidge::DataType::Float32; template <> const Aidge::DataType NativeType<half_float::half>::type = Aidge::DataType::Float16; template <> const Aidge::DataType NativeType<Int4Type>::type = Aidge::DataType::Int4; +template <> const Aidge::DataType NativeType<UInt4Type>::type = Aidge::DataType::UInt4; +template <> const Aidge::DataType NativeType<Int3Type>::type = Aidge::DataType::Int3; +template <> const Aidge::DataType NativeType<UInt3Type>::type = Aidge::DataType::UInt3; +template <> const Aidge::DataType NativeType<Int2Type>::type = Aidge::DataType::Int2; +template <> const Aidge::DataType NativeType<UInt2Type>::type = Aidge::DataType::UInt2; template <> const Aidge::DataType NativeType<std::int8_t>::type = Aidge::DataType::Int8; template <> const Aidge::DataType NativeType<std::int16_t>::type = Aidge::DataType::Int16; template <> const Aidge::DataType NativeType<std::int32_t>::type = Aidge::DataType::Int32; @@ -142,6 +166,11 @@ template <> struct cpptype<Aidge::DataType::Float16> { using type = half_float:: template <> struct cpptype<Aidge::DataType::Float32> { using type = float; }; template <> struct cpptype<Aidge::DataType::Float64> { using type = double; }; template <> struct cpptype<Aidge::DataType::Int4> { using type = Int4Type; }; +template <> struct cpptype<Aidge::DataType::UInt4> { using type = UInt4Type; }; +template <> struct cpptype<Aidge::DataType::Int3> { using type = Int3Type; }; +template <> struct cpptype<Aidge::DataType::UInt3> { using type = UInt3Type; }; +template <> struct cpptype<Aidge::DataType::Int2> { using type = Int2Type; }; +template <> struct cpptype<Aidge::DataType::UInt2> { using type = UInt2Type; }; template <> struct cpptype<Aidge::DataType::Int8> { using type = std::int8_t; }; template <> struct cpptype<Aidge::DataType::Int16> { using type = std::int16_t; }; template <> struct cpptype<Aidge::DataType::Int32> { using type = std::int32_t; }; diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index 52b8021a3..f8ecb5a37 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -502,6 +502,21 @@ void init_Tensor(py::module& m){ case DataType::Int4: dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); break; + case DataType::UInt4: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; + case DataType::Int3: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; + case DataType::UInt3: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; + case DataType::Int2: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; + case DataType::UInt2: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; case DataType::Int8: dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); break; diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index bc1de946a..2b1593521 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -252,6 +252,16 @@ std::string Aidge::Tensor::toString() const { return std::to_string(static_cast<half_float::half*>(ptr)[idx]); case DataType::Int4: return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::UInt4: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); + case DataType::Int3: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::UInt3: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); + case DataType::Int2: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::UInt2: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); case DataType::Int8: return std::to_string(static_cast<int8_t*>(ptr)[idx]); case DataType::Int16: -- GitLab From f5c02edf2feb80e70a4c8932e7af782f546ea55c Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 16:30:13 +0000 Subject: [PATCH 015/157] Export when Aidge Datatype isn't convertible into cpp type then set cpp export type to None --- aidge_core/export_utils/data_conversion.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aidge_core/export_utils/data_conversion.py b/aidge_core/export_utils/data_conversion.py index 401fc39f2..5333c6a3b 100644 --- a/aidge_core/export_utils/data_conversion.py +++ b/aidge_core/export_utils/data_conversion.py @@ -19,6 +19,8 @@ datatype_converter_aide2c = { def aidge2c(datatype): """Convert a aidge datatype to C type + If the type is not convertible to a C type (e.g. int4), return None and raise a warning. + :param datatype: Aidge datatype to convert :type datatype: :py:object:`aidge_core.DataType` :return: A string representing the C type @@ -27,4 +29,6 @@ def aidge2c(datatype): if datatype in datatype_converter_aide2c: return datatype_converter_aide2c[datatype] else: - raise ValueError(f"Unsupported {datatype} aidge datatype") + # raise ValueError(f"Unsupported {datatype} aidge datatype") + aidge_core.Log.warn(f"Unsupported conversion of {datatype} (aidge datatype) to a C type.") + return None -- GitLab From 8dba3c09a267cce6673bf18011a0693eec0ff21e Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 21 Nov 2024 16:31:05 +0000 Subject: [PATCH 016/157] Add ImplecSpec constructor binding for export ARM --- python_binding/backend/pybind_OperatorImpl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/python_binding/backend/pybind_OperatorImpl.cpp b/python_binding/backend/pybind_OperatorImpl.cpp index 49e45ed7e..cd94997cf 100644 --- a/python_binding/backend/pybind_OperatorImpl.cpp +++ b/python_binding/backend/pybind_OperatorImpl.cpp @@ -81,6 +81,7 @@ void init_OperatorImpl(py::module& m){ .def(py::init<const DynamicAttributes&>(), py::arg("attr") = DynamicAttributes()) .def(py::init<const ImplSpec::IOSpec&, const DynamicAttributes&>(), py::arg("io"), py::arg("attr") = DynamicAttributes()) .def(py::init<const ImplSpec::IOSpec&, const ImplSpec::IOSpec&, const DynamicAttributes&>(), py::arg("i"), py::arg("o"), py::arg("attr") = DynamicAttributes()) + .def(py::init<const std::vector<ImplSpec::IOSpec>&, const std::vector<ImplSpec::IOSpec>&, const DynamicAttributes&>(), py::arg("i"), py::arg("o"), py::arg("attr") = DynamicAttributes()) .def("__eq__", static_cast<bool(*)(const ImplSpec&, const ImplSpec&)>(&operator==)) .def("__repr__", [](ImplSpec self){ return fmt::format("{}\n", self); -- GitLab From 170c5a23c8a18ef220ceb3140bd4b76416b3950d Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Mon, 2 Dec 2024 15:45:28 +0100 Subject: [PATCH 017/157] Added possibility to create a GenericOp from any Operator --- include/aidge/operator/GenericOperator.hpp | 24 +++++++++-- include/aidge/operator/Operator.hpp | 4 ++ include/aidge/utils/DynamicAttributes.hpp | 4 ++ .../operator/pybind_GenericOperator.cpp | 26 ++++++++++++ python_binding/operator/pybind_Operator.cpp | 9 ++++- src/operator/GenericOperator.cpp | 40 ++++++++++++++++++- 6 files changed, 101 insertions(+), 6 deletions(-) diff --git a/include/aidge/operator/GenericOperator.hpp b/include/aidge/operator/GenericOperator.hpp index 327f4f7c3..f2e4722aa 100644 --- a/include/aidge/operator/GenericOperator.hpp +++ b/include/aidge/operator/GenericOperator.hpp @@ -75,6 +75,10 @@ public: inline void addAttr(const std::string& name, const T& value) const { mAttributes -> template addAttr<T>(name, value); } + inline void setAttrs(const std::map<std::string, future_std::any>& attrs) { + *mAttributes = attrs; + } + // Helper functions that can be used with setForwardDims(): static const ComputeDimsFunc Identity; static const ComputeDimsFunc InputIdentity(IOIndex_t inputIdx, IOIndex_t nbOutputs); @@ -84,9 +88,9 @@ public: }; /** - * @brief Fictive custom operator not associated with any implementation. + * @brief Generic operator not associated with any implementation. * Allows to import unknown operators and simulate new ones. - * @param type Type of the fictive operator. + * @param type Type of the generic operator. * @param inputCategory List inputs with their category * @param nbOut Number of output data. * @param name (optional) name of the Operator. @@ -96,9 +100,9 @@ std::shared_ptr<Node> GenericOperator(const std::string& type, const std::vector const std::string& name = ""); /** - * @brief Fictive custom operator not associated with any implementation. + * @brief Generic operator not associated with any implementation. * Allows to import unknown operators and simulate new ones. - * @param type Type of the fictive operator. + * @param type Type of the generic operator. * @param nbData Number of input data. * @param nbParam Number of parameters. * @param nbOut Number of output data. @@ -107,6 +111,18 @@ std::shared_ptr<Node> GenericOperator(const std::string& type, const std::vector */ std::shared_ptr<Node> GenericOperator(const std::string& type, IOIndex_t nbData, IOIndex_t nbParam, IOIndex_t nbOut, const std::string& name = ""); + +/** + * @brief Generic operator not associated with any implementation. + * Create a generic operator from another existing operator. + * @param type Type of the generic operator. + * @param op Original operator from witch one wants to derive a generic operator. + * @param name (optional) name of the Operator. + * @return std::shared_ptr<Node> Node associated with the Generic Operator. + */ +std::shared_ptr<Aidge::Node> GenericOperator(const std::string& type, + std::shared_ptr<OperatorTensor> op, + const std::string& name = ""); } // namespace Aidge #endif /* AIDGE_CORE_OPERATOR_GENERICOPERATOR_H_ */ diff --git a/include/aidge/operator/Operator.hpp b/include/aidge/operator/Operator.hpp index e9988b442..95698b751 100644 --- a/include/aidge/operator/Operator.hpp +++ b/include/aidge/operator/Operator.hpp @@ -196,6 +196,10 @@ public: return mOperatorType; } + inline std::vector<InputCategory> inputCategory() const { + return mInputsCategory; + } + inline InputCategory inputCategory(IOIndex_t idx) const { // AIDGE_ASSERT(idx < mInputsCategory.size(), "Input #{} out of range (number of inputs is {})", idx, mInputsCategory.size()); return mInputsCategory.at(idx); diff --git a/include/aidge/utils/DynamicAttributes.hpp b/include/aidge/utils/DynamicAttributes.hpp index 3ecd4da39..16d5d94a1 100644 --- a/include/aidge/utils/DynamicAttributes.hpp +++ b/include/aidge/utils/DynamicAttributes.hpp @@ -41,6 +41,10 @@ class DynamicAttributes : public Attributes { public: DynamicAttributes() = default; DynamicAttributes(const std::map<std::string, future_std::any>& attrs): mAttrs(attrs) {} + DynamicAttributes& operator=(const std::map<std::string, future_std::any>& attrs) { + mAttrs = attrs; + return *this; + } /** * \brief Returning an Attribute identified by its name diff --git a/python_binding/operator/pybind_GenericOperator.cpp b/python_binding/operator/pybind_GenericOperator.cpp index f125291fa..f5ab29c67 100644 --- a/python_binding/operator/pybind_GenericOperator.cpp +++ b/python_binding/operator/pybind_GenericOperator.cpp @@ -39,6 +39,30 @@ void init_GenericOperator(py::module& m) { .def("set_forward_dims", &GenericOperator_Op::setForwardDims, py::arg("computation_function")); // &GenericOperator + m.def("GenericOperator", + []( const std::string& type, + const std::vector<Aidge::InputCategory>& inputCategory, + IOIndex_t nbOut, + const std::string& name, + const py::kwargs kwargs){ + std::shared_ptr<Node> genericNode = GenericOperator( + type, + inputCategory, + nbOut, + name + ); + if (kwargs){ + std::shared_ptr<GenericOperator_Op> gop = std::static_pointer_cast<GenericOperator_Op>(genericNode->getOperator()); + std::shared_ptr<DynamicAttributes> attr = std::dynamic_pointer_cast<DynamicAttributes>(gop->attributes()); + for (auto item : kwargs) { + std::string key = py::cast<std::string>(item.first); + py::object value = py::reinterpret_borrow<py::object>(item.second); + attr->setAttrPy(key, std::move(value)); + } + } + return genericNode; + }, py::arg("type"), py::arg("input_category"), py::arg("nb_out"), py::arg("name") = ""); + m.def("GenericOperator", []( const std::string& type, IOIndex_t nbData, @@ -65,6 +89,8 @@ void init_GenericOperator(py::module& m) { return genericNode; }, py::arg("type"), py::arg("nb_data"), py::arg("nb_param"), py::arg("nb_out"), py::arg("name") = ""); + m.def("GenericOperator", py::overload_cast<const std::string&, std::shared_ptr<OperatorTensor>, const std::string&>(&GenericOperator), py::arg("type"), py::arg("op"), py::arg("name") = ""); + declare_registrable<GenericOperator_Op>(m, "GenericOperatorOp"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_Operator.cpp b/python_binding/operator/pybind_Operator.cpp index a1d1889c9..ce70a4d7a 100644 --- a/python_binding/operator/pybind_Operator.cpp +++ b/python_binding/operator/pybind_Operator.cpp @@ -44,7 +44,14 @@ void init_Operator(py::module& m){ .def("get_raw_input", &Operator::getRawInput, py::arg("inputIdx")) .def("nb_inputs", &Operator::nbInputs) .def("nb_outputs", &Operator::nbOutputs) - .def("input_category", &Operator::inputCategory, py::arg("idx"), + .def("input_category", static_cast<std::vector<InputCategory>(Operator::*)() const>(&Operator::inputCategory), + R"mydelimiter( + Category of the inputs (Data or Param, optional or not). + Data inputs exclude inputs expecting parameters (weights or bias). + + :rtype: list(InputCategory) + )mydelimiter") + .def("input_category", static_cast<InputCategory(Operator::*)(IOIndex_t) const>(&Operator::inputCategory), py::arg("idx"), R"mydelimiter( Category of a specific input (Data or Param, optional or not). Data inputs exclude inputs expecting parameters (weights or bias). diff --git a/src/operator/GenericOperator.cpp b/src/operator/GenericOperator.cpp index c5bca9240..b24c35352 100644 --- a/src/operator/GenericOperator.cpp +++ b/src/operator/GenericOperator.cpp @@ -73,7 +73,8 @@ bool Aidge::GenericOperator_Op::forwardDims(bool /*allowDataDependency*/) { } const auto& outputsDims = mForwardDims(inputsDims); - AIDGE_ASSERT((outputsDims.size() == nbOutputs()), "The provided ComputeDimsFunc function returns the wrong number of outputs"); + AIDGE_ASSERT(!outputsDims.empty(), "The provided ComputeDimsFunc cannot compute the output dims (an empty vector was returned)"); + AIDGE_ASSERT(outputsDims.size() == nbOutputs(), "The provided ComputeDimsFunc function returned the wrong number of outputs: {}, but {} are expected", outputsDims.size(), nbOutputs()); for (std::size_t i = 0; i < nbOutputs(); ++i) { mOutputs[i]->resize(outputsDims[i]); } @@ -117,3 +118,40 @@ std::shared_ptr<Aidge::Node> Aidge::GenericOperator(const std::string& type, const std::string& name) { return std::make_shared<Node>(std::make_shared<GenericOperator_Op>(type, nbData, nbParam, nbOut), name); } + +std::shared_ptr<Aidge::Node> Aidge::GenericOperator(const std::string& type, + std::shared_ptr<OperatorTensor> op, + const std::string& name) +{ + // Create a generic op with the same inputs/outputs + auto genericOp = std::make_shared<GenericOperator_Op>(type, op->inputCategory(), op->nbOutputs()); + + // Copy attributes + genericOp->setAttrs(op->attributes()->getAttrs()); + + // Set a default forward dims if possible + if (op->dimsForwarded()) { + auto opInputDims = std::vector<std::vector<DimSize_t>>(op->nbInputs()); + for (size_t i = 0; i < op->nbInputs(); ++i) { + opInputDims[i] = op->getInput(i)->dims(); + } + + auto opOutputDims = std::vector<std::vector<DimSize_t>>(op->nbOutputs()); + for (size_t o = 0; o < op->nbOutputs(); ++o) { + opOutputDims[o] = op->getOutput(o)->dims(); + } + + genericOp->setForwardDims([opInputDims, opOutputDims](const std::vector<std::vector<std::size_t>>& inputsDims) { + // Check input dims + for (size_t i = 0; i < opInputDims.size(); ++i) { + if (inputsDims[i] != opInputDims[i]) { + // No matching => unable to compute output dims! + return std::vector<std::vector<std::size_t>>(); + } + } + return opOutputDims; + }); + } + + return std::make_shared<Node>(genericOp, name); +} -- GitLab From ea6ac3c2f67e7b5e7575cc8c07c1b96ed20a57ad Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Tue, 3 Dec 2024 09:12:55 +0000 Subject: [PATCH 018/157] Add toGenericOp recipie + bind + test --- include/aidge/recipes/Recipes.hpp | 13 ++++ python_binding/recipes/pybind_Recipes.cpp | 7 ++ src/recipes/ToGenericOp.cpp | 23 ++++++ unit_tests/recipes/Test_ToGenericOp.cpp | 87 +++++++++++++++++++++++ 4 files changed, 130 insertions(+) create mode 100644 src/recipes/ToGenericOp.cpp create mode 100644 unit_tests/recipes/Test_ToGenericOp.cpp diff --git a/include/aidge/recipes/Recipes.hpp b/include/aidge/recipes/Recipes.hpp index 86c722b15..0fb405bfe 100644 --- a/include/aidge/recipes/Recipes.hpp +++ b/include/aidge/recipes/Recipes.hpp @@ -180,6 +180,19 @@ size_t convToMatMul(std::shared_ptr<GraphView> graph); */ void adaptToBackend(std::shared_ptr<GraphView> graph); +// /** +// * @brief The node passed contains an operator which input of index 1 is supposed be be weights of type Int4, Int3, Int2, binary. +// * This recipie only operates memory transformations on the weight tensor. +// * First, permutes the dimensions to match the dataformat NHWC +// * Second, compact the last dimension (Channel dimension) into int8_t +// * +// * @param node Node +// */ +// void applyWeightInterleaving(std::shared_ptr<Node> node); + + +void toGenericOp(std::shared_ptr<Node> node); + } // namespace Aidge #endif /* AIDGE_CORE_UTILS_RECIPES_H_ */ diff --git a/python_binding/recipes/pybind_Recipes.cpp b/python_binding/recipes/pybind_Recipes.cpp index 77f20b9d6..f656af70d 100644 --- a/python_binding/recipes/pybind_Recipes.cpp +++ b/python_binding/recipes/pybind_Recipes.cpp @@ -144,6 +144,13 @@ void init_Recipes(py::module &m) :param graph_view: Graph view on which we want to apply the recipe :type graph_view: :py:class:`aidge_core.GraphView` )mydelimiter"); + + m.def("to_generic_op", toGenericOp, py::arg("node"), R"mydelimiter( + Transform to a Generic Operator. + + :param node: Node which Operator will turn into a Generic Operator + :type graph_view: :py:class:`aidge_core.Node` + )mydelimiter"); } } // namespace Aidge diff --git a/src/recipes/ToGenericOp.cpp b/src/recipes/ToGenericOp.cpp new file mode 100644 index 000000000..5f151d890 --- /dev/null +++ b/src/recipes/ToGenericOp.cpp @@ -0,0 +1,23 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <memory> + +#include "aidge/graph/Node.hpp" +#include "aidge/graph/GraphView.hpp" +#include "aidge/operator/GenericOperator.hpp" +#include "aidge/recipes/Recipes.hpp" + +void Aidge::toGenericOp(std::shared_ptr<Node> node) { + auto newGenOp = {GenericOperator(node->type(), std::dynamic_pointer_cast<Aidge::OperatorTensor>(node->getOperator()), node->name())}; + auto OldOp = {node}; + GraphView::replace(OldOp, newGenOp); +} diff --git a/unit_tests/recipes/Test_ToGenericOp.cpp b/unit_tests/recipes/Test_ToGenericOp.cpp new file mode 100644 index 000000000..53ad86e7c --- /dev/null +++ b/unit_tests/recipes/Test_ToGenericOp.cpp @@ -0,0 +1,87 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <catch2/catch_test_macros.hpp> +#include <memory> +#include <set> +#include "aidge/graph/GraphView.hpp" +#include "aidge/graph/OpArgs.hpp" +#include "aidge/operator/Conv.hpp" +#include "aidge/operator/FC.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/GenericOperator.hpp" +#include "aidge/recipes/Recipes.hpp" + +namespace Aidge { + +TEST_CASE("[graph/convert] toGenericOp", "[toGenericOp][recipies]") { + // Create a convolution operator + std::shared_ptr<GraphView> g = + Sequential({ + Conv(1, 3, {3, 3}, "conv1"), + ReLU(), + Conv(3, 4, {1, 1}, "conv2"), + ReLU(), + Conv(4, 3, {1, 1}, "conv3"), + ReLU(), + FC(2028, 256, false, "fc1"), + ReLU(), + FC(256, 10, false, "fc2")}); + + // NCHW - MNIST DATA like + g->forwardDims({{5, 1, 28, 28}}); + + SECTION("Test Operator to Generic Operator") { + auto convOp = g->getNode("conv2"); + + // Convert to GenericOperator + toGenericOp(convOp); + + auto newGenOp = g->getNode("conv2"); + + // Ensure the conversion + REQUIRE(newGenOp->type() == "Conv2D"); + + REQUIRE(newGenOp->getOperator()->attributes() == convOp->getOperator()->attributes()); + + } + + SECTION("Test MetaOperator to Generic Operator") { + + const auto nbFused = fuseToMetaOps(g, "Conv2D->ReLU->FC", "ConvReLUFC"); + + REQUIRE(nbFused == 1); + + std::shared_ptr<Node> MetaOpNode; + + for (const auto& nodePtr : g->getNodes()) + { + if (nodePtr->type() == "ConvReLUFC") + { + nodePtr->setName("ConvReLUFC_0"); + MetaOpNode = nodePtr; + // Convert to GenericOperator + toGenericOp(nodePtr); + } + } + + auto newGenOp = g->getNode("ConvReLUFC_0"); + + // Ensure the conversion + REQUIRE(newGenOp->type() == "ConvReLUFC"); + + REQUIRE(newGenOp->getOperator()->attributes() == MetaOpNode->getOperator()->attributes()); + + } + +} + +} // namespace Aidge -- GitLab From 54630773a99b2b80bd125a2c2b82bc03a9b908b6 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Tue, 3 Dec 2024 10:09:29 +0000 Subject: [PATCH 019/157] Add datatypes for compacted low bits integers --- include/aidge/data/Data.hpp | 52 +++++++- python_binding/data/pybind_Tensor.cpp | 164 ++++++++++++++++++++++++++ src/data/Tensor.cpp | 16 +++ 3 files changed, 229 insertions(+), 3 deletions(-) diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index a710bbc62..dcc45961a 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -28,10 +28,14 @@ enum class DataType { Float16, BFloat16, Binary, + Octo_Binary, Ternary, Int2, + Quad_Int2, Int3, + Dual_Int3, Int4, + Dual_Int4, Int5, Int6, Int7, @@ -40,8 +44,11 @@ enum class DataType { Int32, Int64, UInt2, + Quad_UInt2, UInt3, + Dual_UInt3, UInt4, + Dual_UInt4, UInt5, UInt6, UInt7, @@ -124,6 +131,31 @@ struct Int2Type { struct UInt2Type { std::uint8_t value; }; +struct Dual_Int4Type { + std::int8_t value; +}; +struct Dual_UInt4Type { + std::uint8_t value; +}; +struct Dual_Int3Type { + std::int8_t value; +}; +struct Dual_UInt3Type { + std::uint8_t value; +}; +struct Quad_Int2Type { + std::int8_t value; +}; +struct Quad_UInt2Type { + std::uint8_t value; +}; +struct BinaryType { + std::int8_t value; +}; +struct Octo_BinaryType { + std::uint8_t value; +}; + template <Aidge::DataType D> struct AidgeNbBits { static const int nbBits; }; template <> const int AidgeNbBits<Aidge::DataType::Int4>::nbBits = 4; @@ -139,6 +171,12 @@ template <> const Aidge::DataType NativeType<Int3Type>::type = Aidge::DataType:: template <> const Aidge::DataType NativeType<UInt3Type>::type = Aidge::DataType::UInt3; template <> const Aidge::DataType NativeType<Int2Type>::type = Aidge::DataType::Int2; template <> const Aidge::DataType NativeType<UInt2Type>::type = Aidge::DataType::UInt2; +template <> const Aidge::DataType NativeType<Dual_Int4Type>::type = Aidge::DataType::Dual_Int4; +template <> const Aidge::DataType NativeType<Dual_UInt4Type>::type = Aidge::DataType::Dual_UInt4; +template <> const Aidge::DataType NativeType<Dual_Int3Type>::type = Aidge::DataType::Dual_Int3; +template <> const Aidge::DataType NativeType<Dual_UInt3Type>::type = Aidge::DataType::Dual_UInt3; +template <> const Aidge::DataType NativeType<Quad_Int2Type>::type = Aidge::DataType::Quad_Int2; +template <> const Aidge::DataType NativeType<Quad_UInt2Type>::type = Aidge::DataType::Quad_UInt2; template <> const Aidge::DataType NativeType<std::int8_t>::type = Aidge::DataType::Int8; template <> const Aidge::DataType NativeType<std::int16_t>::type = Aidge::DataType::Int16; template <> const Aidge::DataType NativeType<std::int32_t>::type = Aidge::DataType::Int32; @@ -150,9 +188,9 @@ template <> const Aidge::DataType NativeType<std::uint64_t>::type = Aidge::DataT template <> const char* const EnumStrings<Aidge::DataType>::data[] - = {"Float64", "Float32", "Float16", "BFloat16", "Binary", "Ternary", - "Int2", "Int3", "Int4", "Int5", "Int6", "Int7", "Int8", "Int16", - "Int32", "Int64", "UInt2", "UInt3", "UInt4", "UInt5", "UInt6", + = {"Float64", "Float32", "Float16", "BFloat16", "Binary", "Octo_Binary", "Ternary", + "Int2", "Quad_Int2", "Int3", "Dual_Int3", "Int4", "Dual_Int4", "Int5", "Int6", "Int7", "Int8", "Int16", + "Int32", "Int64", "UInt2", "Quad_UInt2", "UInt3", "Dual_UInt3", "UInt4", "Dual_UInt4", "UInt5", "UInt6", "UInt7", "UInt8", "UInt16", "UInt32", "UInt64", "Any"}; template <> @@ -171,6 +209,14 @@ template <> struct cpptype<Aidge::DataType::Int3> { using type = Int3Type; }; template <> struct cpptype<Aidge::DataType::UInt3> { using type = UInt3Type; }; template <> struct cpptype<Aidge::DataType::Int2> { using type = Int2Type; }; template <> struct cpptype<Aidge::DataType::UInt2> { using type = UInt2Type; }; +template <> struct cpptype<Aidge::DataType::Dual_Int4> { using type = Dual_Int4Type; }; +template <> struct cpptype<Aidge::DataType::Dual_UInt4> { using type = Dual_UInt4Type; }; +template <> struct cpptype<Aidge::DataType::Dual_Int3> { using type = Dual_Int3Type; }; +template <> struct cpptype<Aidge::DataType::Dual_UInt3> { using type = Dual_UInt3Type; }; +template <> struct cpptype<Aidge::DataType::Quad_Int2> { using type = Quad_Int2Type; }; +template <> struct cpptype<Aidge::DataType::Quad_UInt2> { using type = Quad_UInt2Type; }; +template <> struct cpptype<Aidge::DataType::Binary> { using type = BinaryType; }; +template <> struct cpptype<Aidge::DataType::Octo_Binary> { using type = Octo_BinaryType; }; template <> struct cpptype<Aidge::DataType::Int8> { using type = std::int8_t; }; template <> struct cpptype<Aidge::DataType::Int16> { using type = std::int16_t; }; template <> struct cpptype<Aidge::DataType::Int32> { using type = std::int32_t; }; diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index 429a218ac..d57384d42 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -355,6 +355,22 @@ void init_Tensor(py::module& m){ return py::cast(b.get<float>(idx)); case DataType::Int8: return py::cast(b.get<std::int8_t>(idx)); + case DataType::Int4: + return py::cast(b.get<std::int8_t>(idx)); + case DataType::Dual_Int4: + return py::cast(b.get<std::int8_t>(idx)); + case DataType::Int3: + return py::cast(b.get<std::int8_t>(idx)); + case DataType::Dual_Int3: + return py::cast(b.get<std::int8_t>(idx)); + case DataType::Int2: + return py::cast(b.get<std::int8_t>(idx)); + case DataType::Quad_Int2: + return py::cast(b.get<std::int8_t>(idx)); + case DataType::Binary: + return py::cast(b.get<std::int8_t>(idx)); + case DataType::Octo_Binary: + return py::cast(b.get<std::int8_t>(idx)); case DataType::Int16: return py::cast(b.get<std::int16_t>(idx)); case DataType::Int32: @@ -363,6 +379,18 @@ void init_Tensor(py::module& m){ return py::cast(b.get<std::int64_t>(idx)); case DataType::UInt8: return py::cast(b.get<std::uint8_t>(idx)); + case DataType::UInt4: + return py::cast(b.get<std::uint8_t>(idx)); + case DataType::Dual_UInt4: + return py::cast(b.get<std::uint8_t>(idx)); + case DataType::UInt3: + return py::cast(b.get<std::uint8_t>(idx)); + case DataType::Dual_UInt3: + return py::cast(b.get<std::uint8_t>(idx)); + case DataType::UInt2: + return py::cast(b.get<std::uint8_t>(idx)); + case DataType::Dual_UInt2: + return py::cast(b.get<std::uint8_t>(idx)); case DataType::UInt16: return py::cast(b.get<std::uint16_t>(idx)); case DataType::UInt32: @@ -382,6 +410,22 @@ void init_Tensor(py::module& m){ return py::cast(b.get<float>(coordIdx)); case DataType::Int8: return py::cast(b.get<std::int8_t>(coordIdx)); + case DataType::Int4: + return py::cast(b.get<std::int8_t>(coordIdx)); + case DataType::Dual_Int4: + return py::cast(b.get<std::int8_t>(coordIdx)); + case DataType::Int3: + return py::cast(b.get<std::int8_t>(coordIdx)); + case DataType::Dual_Int3: + return py::cast(b.get<std::int8_t>(coordIdx)); + case DataType::Int2: + return py::cast(b.get<std::int8_t>(coordIdx)); + case DataType::Quad_Int2: + return py::cast(b.get<std::int8_t>(coordIdx)); + case DataType::Binary: + return py::cast(b.get<std::int8_t>(coordIdx)); + case DataType::Octo_Binary: + return py::cast(b.get<std::int8_t>(coordIdx)); case DataType::Int16: return py::cast(b.get<std::int16_t>(coordIdx)); case DataType::Int32: @@ -390,6 +434,18 @@ void init_Tensor(py::module& m){ return py::cast(b.get<std::int64_t>(coordIdx)); case DataType::UInt8: return py::cast(b.get<std::uint8_t>(coordIdx)); + case DataType::UInt4: + return py::cast(b.get<std::uint8_t>(coordIdx)); + case DataType::Dual_UInt4: + return py::cast(b.get<std::uint8_t>(coordIdx)); + case DataType::UInt3: + return py::cast(b.get<std::uint8_t>(coordIdx)); + case DataType::Dual_UInt3: + return py::cast(b.get<std::uint8_t>(coordIdx)); + case DataType::UInt2: + return py::cast(b.get<std::uint8_t>(coordIdx)); + case DataType::Dual_UInt2: + return py::cast(b.get<std::uint8_t>(coordIdx)); case DataType::UInt16: return py::cast(b.get<std::uint16_t>(coordIdx)); case DataType::UInt32: @@ -412,6 +468,30 @@ void init_Tensor(py::module& m){ case DataType::Int8: b.set(idx, castToNativeType<std::int8_t>(val)); break; + case DataType::Int4: + b.set(idx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Dual_Int4: + b.set(idx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Int3: + b.set(idx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Dual_Int3: + b.set(idx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Int2: + b.set(idx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Quad_Int2: + b.set(idx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Binary: + b.set(idx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Octo_Binary: + b.set(idx, castToNativeType<std::int8_t>(val)); + break; case DataType::Int16: b.set(idx, castToNativeType<std::int16_t>(val)); break; @@ -424,6 +504,24 @@ void init_Tensor(py::module& m){ case DataType::UInt8: b.set(idx, castToNativeType<std::uint8_t>(val)); break; + case DataType::UInt4: + b.set(idx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::Dual_UInt4: + b.set(idx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::UInt3: + b.set(idx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::Dual_UInt3: + b.set(idx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::UInt2: + b.set(idx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::Dual_UInt2: + b.set(idx, castToNativeType<std::uint8_t>(val)); + break; case DataType::UInt16: b.set(idx, castToNativeType<std::uint16_t>(val)); break; @@ -450,6 +548,30 @@ void init_Tensor(py::module& m){ case DataType::Int8: b.set(coordIdx, castToNativeType<std::int8_t>(val)); break; + case DataType::Int4: + b.set(coordIdx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Dual_Int4: + b.set(coordIdx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Int3: + b.set(coordIdx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Dual_Int3: + b.set(coordIdx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Int2: + b.set(coordIdx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Quad_Int2: + b.set(coordIdx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Binary: + b.set(coordIdx, castToNativeType<std::int8_t>(val)); + break; + case DataType::Octo_Binary: + b.set(coordIdx, castToNativeType<std::int8_t>(val)); + break; case DataType::Int16: b.set(coordIdx, castToNativeType<std::int16_t>(val)); break; @@ -462,6 +584,24 @@ void init_Tensor(py::module& m){ case DataType::UInt8: b.set(coordIdx, castToNativeType<std::uint8_t>(val)); break; + case DataType::UInt4: + b.set(coordIdx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::Dual_UInt4: + b.set(coordIdx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::UInt3: + b.set(coordIdx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::Dual_UInt3: + b.set(coordIdx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::UInt2: + b.set(coordIdx, castToNativeType<std::uint8_t>(val)); + break; + case DataType::Dual_UInt2: + b.set(coordIdx, castToNativeType<std::uint8_t>(val)); + break; case DataType::UInt16: b.set(coordIdx, castToNativeType<std::uint16_t>(val)); break; @@ -517,6 +657,30 @@ void init_Tensor(py::module& m){ case DataType::UInt2: dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); break; + case DataType::Dual_Int4: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; + case DataType::Dual_UInt4: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; + case DataType::Dual_Int3: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; + case DataType::Dual_UInt3: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; + case DataType::Quad_Int2: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; + case DataType::Quad_UInt2: + dataFormatDescriptor = py::format_descriptor<std::uint8_t>::format(); + break; + case DataType::Binary: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; + case DataType::Octo_Binary: + dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); + break; case DataType::Int8: dataFormatDescriptor = py::format_descriptor<std::int8_t>::format(); break; diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index d406f8d0d..7eb09fe6d 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -251,6 +251,22 @@ std::string Tensor::toString() const { return std::to_string(static_cast<float*>(ptr)[idx]); case DataType::Float16: return std::to_string(static_cast<half_float::half*>(ptr)[idx]); + case DataType::Binary: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::Octo_Binary: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::Dual_Int4: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::Dual_UInt4: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); + case DataType::Dual_Int3: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::Dual_UInt3: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); + case DataType::Quad_Int2: + return std::to_string(static_cast<int8_t*>(ptr)[idx]); + case DataType::Quad_UInt2: + return std::to_string(static_cast<uint8_t*>(ptr)[idx]); case DataType::Int4: return std::to_string(static_cast<int8_t*>(ptr)[idx]); case DataType::UInt4: -- GitLab From a677e993271bc1f50fefbeb688060555fc8d1c4f Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Tue, 3 Dec 2024 14:54:02 +0100 Subject: [PATCH 020/157] Fixed issue --- include/aidge/utils/DynamicAttributes.hpp | 27 +++++++++++++++++++++++ include/aidge/utils/StaticAttributes.hpp | 7 +++++- src/operator/GenericOperator.cpp | 3 ++- unit_tests/recipes/Test_ToGenericOp.cpp | 13 ++++++----- 4 files changed, 43 insertions(+), 7 deletions(-) diff --git a/include/aidge/utils/DynamicAttributes.hpp b/include/aidge/utils/DynamicAttributes.hpp index 16d5d94a1..dc169fb86 100644 --- a/include/aidge/utils/DynamicAttributes.hpp +++ b/include/aidge/utils/DynamicAttributes.hpp @@ -34,6 +34,12 @@ namespace py = pybind11; namespace Aidge { +// Detection idiom to check if a type T has a less-than operator +template <typename T, typename = void> +struct has_less_than_operator : std::false_type {}; + +template <typename T> +struct has_less_than_operator<T, std::void_t<decltype(std::declval<T>() < std::declval<T>())>> : std::true_type {}; ///\todo store also a fix-sized code that indicates the type ///\todo managing complex types or excluding non-trivial, non-aggregate types @@ -344,6 +350,14 @@ public: } }; + template<typename T> + static inline typename std::enable_if<!has_less_than_operator<T>::value, void>::type makeTypeConditionallyAvailable() {} + + template<typename T> + static inline typename std::enable_if<has_less_than_operator<T>::value, void>::type makeTypeConditionallyAvailable() { + mAnyUtils.emplace(typeid(T), std::unique_ptr<AnyUtils<T>>(new AnyUtils<T>())); + } + // Stores typed utils functions for each attribute type ever used static std::map<std::type_index, std::unique_ptr<AnyUtils_>> mAnyUtils; }; @@ -407,6 +421,19 @@ namespace std { return seed; } }; + + // Special case for std::array + template <typename T, std::size_t N> + struct hash<std::array<T, N>> { + std::size_t operator()(const std::array<T, N>& iterable) const { + std::size_t seed = 0; + for (const auto& v : iterable) { + // Recursively hash the value pointed by the iterator + Aidge::hash_combine(seed, std::hash<T>()(v)); + } + return seed; + } + }; } namespace future_std { diff --git a/include/aidge/utils/StaticAttributes.hpp b/include/aidge/utils/StaticAttributes.hpp index 439d2c638..9c18d3cef 100644 --- a/include/aidge/utils/StaticAttributes.hpp +++ b/include/aidge/utils/StaticAttributes.hpp @@ -24,6 +24,7 @@ #endif #include "aidge/utils/Attributes.hpp" +#include "aidge/utils/DynamicAttributes.hpp" #include "aidge/utils/ErrorHandling.hpp" namespace Aidge { @@ -322,7 +323,11 @@ private: inline typename std::enable_if<I == sizeof...(Tp), void>::type appendAttr(const std::tuple<Tp...>& /*t*/, std::map<std::string, future_std::any>& /*attrs*/) const {} template<std::size_t I = 0, typename... Tp> - inline typename std::enable_if<I < sizeof...(Tp), void>::type appendAttr(const std::tuple<Tp...>& t, std::map<std::string, future_std::any>& attrs) const { + inline typename std::enable_if<I < sizeof...(Tp), void>::type appendAttr(const std::tuple<Tp...>& t, std::map<std::string, future_std::any>& attrs) const { + // Ensure that the type will be known to DynamicAttributes + using ElementType = typename std::tuple_element<I,std::tuple<Tp...>>::type; + DynamicAttributes::makeTypeConditionallyAvailable<ElementType>(); + attrs.insert(std::make_pair(EnumStrings<ATTRS_ENUM>::data[I], future_std::any(std::get<I>(t)))); appendAttr<I + 1, Tp...>(t, attrs); } diff --git a/src/operator/GenericOperator.cpp b/src/operator/GenericOperator.cpp index b24c35352..1e28cf289 100644 --- a/src/operator/GenericOperator.cpp +++ b/src/operator/GenericOperator.cpp @@ -22,7 +22,8 @@ Aidge::GenericOperator_Op::GenericOperator_Op(const std::string& type, const std::vector<Aidge::InputCategory>& inputsCategory, Aidge::IOIndex_t nbOut) - : OperatorTensor(type, inputsCategory, nbOut) + : OperatorTensor(type, inputsCategory, nbOut), + mAttributes(std::make_shared<DynamicAttributes>()) { mImpl = std::make_shared<OperatorImpl>(*this); } diff --git a/unit_tests/recipes/Test_ToGenericOp.cpp b/unit_tests/recipes/Test_ToGenericOp.cpp index 53ad86e7c..886e07f95 100644 --- a/unit_tests/recipes/Test_ToGenericOp.cpp +++ b/unit_tests/recipes/Test_ToGenericOp.cpp @@ -50,8 +50,9 @@ TEST_CASE("[graph/convert] toGenericOp", "[toGenericOp][recipies]") { // Ensure the conversion REQUIRE(newGenOp->type() == "Conv2D"); - REQUIRE(newGenOp->getOperator()->attributes() == convOp->getOperator()->attributes()); - + const auto convOpAttr = convOp->getOperator()->attributes()->getAttrs(); + const auto newGenOpAttr = (newGenOp->getOperator()->attributes()->getAttrs()); + REQUIRE((!(newGenOpAttr < convOpAttr) && !(convOpAttr < newGenOpAttr))); } SECTION("Test MetaOperator to Generic Operator") { @@ -60,14 +61,14 @@ TEST_CASE("[graph/convert] toGenericOp", "[toGenericOp][recipies]") { REQUIRE(nbFused == 1); - std::shared_ptr<Node> MetaOpNode; + std::shared_ptr<Node> metaOpNode; for (const auto& nodePtr : g->getNodes()) { if (nodePtr->type() == "ConvReLUFC") { nodePtr->setName("ConvReLUFC_0"); - MetaOpNode = nodePtr; + metaOpNode = nodePtr; // Convert to GenericOperator toGenericOp(nodePtr); } @@ -78,7 +79,9 @@ TEST_CASE("[graph/convert] toGenericOp", "[toGenericOp][recipies]") { // Ensure the conversion REQUIRE(newGenOp->type() == "ConvReLUFC"); - REQUIRE(newGenOp->getOperator()->attributes() == MetaOpNode->getOperator()->attributes()); + const auto metaOpAttr = *std::static_pointer_cast<DynamicAttributes>(metaOpNode->getOperator()->attributes()); + const auto newGenOpAttr = *std::static_pointer_cast<DynamicAttributes>(newGenOp->getOperator()->attributes()); + REQUIRE((!(newGenOpAttr < metaOpAttr) && !(metaOpAttr < newGenOpAttr))); } -- GitLab From b5ed3f1531fe87888a94f81e6f848e9162180119 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 4 Dec 2024 11:48:29 +0100 Subject: [PATCH 021/157] Fixed unsupported std::void_t --- include/aidge/utils/DynamicAttributes.hpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/include/aidge/utils/DynamicAttributes.hpp b/include/aidge/utils/DynamicAttributes.hpp index dc169fb86..1bd45c817 100644 --- a/include/aidge/utils/DynamicAttributes.hpp +++ b/include/aidge/utils/DynamicAttributes.hpp @@ -34,12 +34,23 @@ namespace py = pybind11; namespace Aidge { +#if __cplusplus >= 201703L || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) +#define AIDGE_DYNATTR_HAVE_CPP17 +#endif + +#if defined(AIDGE_DYNATTR_HAVE_CPP17) || defined(__cpp_lib_void_t) +using std::void_t; +#else +template <typename...> +using void_t = void; +#endif + // Detection idiom to check if a type T has a less-than operator template <typename T, typename = void> struct has_less_than_operator : std::false_type {}; template <typename T> -struct has_less_than_operator<T, std::void_t<decltype(std::declval<T>() < std::declval<T>())>> : std::true_type {}; +struct has_less_than_operator<T, void_t<decltype(std::declval<T>() < std::declval<T>())>> : std::true_type {}; ///\todo store also a fix-sized code that indicates the type ///\todo managing complex types or excluding non-trivial, non-aggregate types -- GitLab From 5fd062849750481c8037ef3dc3778391de8ef9c6 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 4 Dec 2024 14:17:06 +0100 Subject: [PATCH 022/157] Added missing hash specialization for std::pair --- include/aidge/utils/DynamicAttributes.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/aidge/utils/DynamicAttributes.hpp b/include/aidge/utils/DynamicAttributes.hpp index 1bd45c817..0fc350f1a 100644 --- a/include/aidge/utils/DynamicAttributes.hpp +++ b/include/aidge/utils/DynamicAttributes.hpp @@ -445,6 +445,17 @@ namespace std { return seed; } }; + + // Specialization of std::hash for std::pair<T1, T2> + template <typename T1, typename T2> + struct hash<std::pair<T1, T2>> { + std::size_t operator()(const std::pair<T1, T2>& p) const { + std::size_t seed = 0; + Aidge::hash_combine(seed, std::hash<T1>()(p.first)); + Aidge::hash_combine(seed, std::hash<T2>()(p.second)); + return seed; + } + }; } namespace future_std { -- GitLab From 7050788e6988db85ea06f73478e9799b472a392f Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 4 Dec 2024 13:21:47 +0000 Subject: [PATCH 023/157] Add integer datatypes for weightInterleaving --- include/aidge/backend/cpu/data/TensorImpl.hpp | 8 +++ include/aidge/data/Data.hpp | 15 +++-- python_binding/data/pybind_Tensor.cpp | 8 +-- src/backend/cpu/data/TensorImpl.cpp | 56 +++++++++++++++++++ 4 files changed, 79 insertions(+), 8 deletions(-) diff --git a/include/aidge/backend/cpu/data/TensorImpl.hpp b/include/aidge/backend/cpu/data/TensorImpl.hpp index 3cd4fd517..2115b660f 100644 --- a/include/aidge/backend/cpu/data/TensorImpl.hpp +++ b/include/aidge/backend/cpu/data/TensorImpl.hpp @@ -132,6 +132,14 @@ REGISTRAR(Tensor, {"cpu", DataType::Int3}, Aidge::TensorImpl_cpu<int8_t>::create REGISTRAR(Tensor, {"cpu", DataType::UInt3}, Aidge::TensorImpl_cpu<uint8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::Int2}, Aidge::TensorImpl_cpu<int8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt2}, Aidge::TensorImpl_cpu<uint8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Dual_Int4}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Dual_UInt4}, Aidge::TensorImpl_cpu<uint8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Dual_Int3}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Dual_UInt3}, Aidge::TensorImpl_cpu<uint8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Quad_Int2}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Quad_UInt2}, Aidge::TensorImpl_cpu<uint8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Binary}, Aidge::TensorImpl_cpu<int8_t>::create); +REGISTRAR(Tensor, {"cpu", DataType::Octo_Binary}, Aidge::TensorImpl_cpu<int8_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt64}, Aidge::TensorImpl_cpu<uint64_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt32}, Aidge::TensorImpl_cpu<uint32_t>::create); REGISTRAR(Tensor, {"cpu", DataType::UInt16}, Aidge::TensorImpl_cpu<uint16_t>::create); diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index dcc45961a..5303d61f9 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -157,8 +157,17 @@ struct Octo_BinaryType { }; -template <Aidge::DataType D> struct AidgeNbBits { static const int nbBits; }; -template <> const int AidgeNbBits<Aidge::DataType::Int4>::nbBits = 4; +// template <Aidge::DataType D> struct AidgeNbBits { static const int nbBits; }; +// template <> const int AidgeNbBits<Aidge::DataType::Int4>::nbBits = 4; + +template <Aidge::DataType D> struct WeightInterleavingType { static const Aidge::DataType type; }; +template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Int4>::type = Aidge::DataType::Dual_Int4; +template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::UInt4>::type = Aidge::DataType::Dual_UInt4; +template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Int3>::type = Aidge::DataType::Dual_Int3; +template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::UInt3>::type = Aidge::DataType::Dual_UInt3; +template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Int2>::type = Aidge::DataType::Quad_Int2; +template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::UInt2>::type = Aidge::DataType::Quad_UInt2; +template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Binary>::type = Aidge::DataType::Octo_Binary; template <typename T> struct NativeType { static const Aidge::DataType type; }; @@ -228,8 +237,6 @@ template <> struct cpptype<Aidge::DataType::UInt64> { using type = std::uint64_t template <Aidge::DataType D> using cpptype_t = typename cpptype<D>::type; - - } diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index d57384d42..35e60e158 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -389,7 +389,7 @@ void init_Tensor(py::module& m){ return py::cast(b.get<std::uint8_t>(idx)); case DataType::UInt2: return py::cast(b.get<std::uint8_t>(idx)); - case DataType::Dual_UInt2: + case DataType::Quad_UInt2: return py::cast(b.get<std::uint8_t>(idx)); case DataType::UInt16: return py::cast(b.get<std::uint16_t>(idx)); @@ -444,7 +444,7 @@ void init_Tensor(py::module& m){ return py::cast(b.get<std::uint8_t>(coordIdx)); case DataType::UInt2: return py::cast(b.get<std::uint8_t>(coordIdx)); - case DataType::Dual_UInt2: + case DataType::Quad_UInt2: return py::cast(b.get<std::uint8_t>(coordIdx)); case DataType::UInt16: return py::cast(b.get<std::uint16_t>(coordIdx)); @@ -519,7 +519,7 @@ void init_Tensor(py::module& m){ case DataType::UInt2: b.set(idx, castToNativeType<std::uint8_t>(val)); break; - case DataType::Dual_UInt2: + case DataType::Quad_UInt2: b.set(idx, castToNativeType<std::uint8_t>(val)); break; case DataType::UInt16: @@ -599,7 +599,7 @@ void init_Tensor(py::module& m){ case DataType::UInt2: b.set(coordIdx, castToNativeType<std::uint8_t>(val)); break; - case DataType::Dual_UInt2: + case DataType::Quad_UInt2: b.set(coordIdx, castToNativeType<std::uint8_t>(val)); break; case DataType::UInt16: diff --git a/src/backend/cpu/data/TensorImpl.cpp b/src/backend/cpu/data/TensorImpl.cpp index 506287a0c..236e5bb8e 100644 --- a/src/backend/cpu/data/TensorImpl.cpp +++ b/src/backend/cpu/data/TensorImpl.cpp @@ -95,6 +95,62 @@ void Aidge::TensorImpl_cpu<T>::copyCast(const void *src, const Aidge::DataType s std::copy(static_cast<const uint8_t*>(src), static_cast<const uint8_t*>(src) + length, dstT); break; + case DataType::Int4: + std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length, + dstT); + break; + case DataType::UInt4: + std::copy(static_cast<const uint8_t*>(src), static_cast<const uint8_t*>(src) + length, + dstT); + break; + case DataType::Dual_Int4: + std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length, + dstT); + break; + case DataType::Dual_UInt4: + std::copy(static_cast<const uint8_t*>(src), static_cast<const uint8_t*>(src) + length, + dstT); + break; + case DataType::Int3: + std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length, + dstT); + break; + case DataType::UInt3: + std::copy(static_cast<const uint8_t*>(src), static_cast<const uint8_t*>(src) + length, + dstT); + break; + case DataType::Dual_Int3: + std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length, + dstT); + break; + case DataType::Dual_UInt3: + std::copy(static_cast<const uint8_t*>(src), static_cast<const uint8_t*>(src) + length, + dstT); + break; + case DataType::Int2: + std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length, + dstT); + break; + case DataType::UInt2: + std::copy(static_cast<const uint8_t*>(src), static_cast<const uint8_t*>(src) + length, + dstT); + break; + case DataType::Quad_Int2: + std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length, + dstT); + break; + case DataType::Quad_UInt2: + std::copy(static_cast<const uint8_t*>(src), static_cast<const uint8_t*>(src) + length, + dstT); + break; + case DataType::Binary: + std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length, + dstT); + break; + case DataType::Octo_Binary: + std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length, + dstT); + break; default: AIDGE_THROW_OR_ABORT(std::runtime_error, "Unsupported data type."); break; -- GitLab From 15bbe6eaa7f9f9c23656714526ba122607ddaf3b Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 4 Dec 2024 13:26:30 +0000 Subject: [PATCH 024/157] Add set_dataformat binding for operator --- python_binding/operator/pybind_Operator.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/python_binding/operator/pybind_Operator.cpp b/python_binding/operator/pybind_Operator.cpp index ce70a4d7a..514a64be9 100644 --- a/python_binding/operator/pybind_Operator.cpp +++ b/python_binding/operator/pybind_Operator.cpp @@ -60,6 +60,7 @@ void init_Operator(py::module& m){ )mydelimiter") .def("associate_input", &Operator::associateInput, py::arg("inputIdx"), py::arg("data")) .def("set_datatype", &Operator::setDataType, py::arg("dataType")) + .def("set_dataformat", &Operator::setDataFormat, py::arg("dataFormat")) .def("set_backend", py::overload_cast<const std::string&, DeviceIdx_t>(&Operator::setBackend), py::arg("name"), py::arg("device") = 0) .def("set_backend", py::overload_cast<const std::vector<std::pair<std::string, DeviceIdx_t>>&>(&Operator::setBackend), py::arg("backends")) .def("forward", &Operator::forward) -- GitLab From 006e8f4bfc4a1557aae8292bd13783ff358ffbff Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 4 Dec 2024 13:27:55 +0000 Subject: [PATCH 025/157] Add python binding for WeightInterleaving Operator --- .../operator/pybind_WeightInterleaving.cpp | 39 +++++++++++++++++++ python_binding/pybind_core.cpp | 2 + 2 files changed, 41 insertions(+) create mode 100644 python_binding/operator/pybind_WeightInterleaving.cpp diff --git a/python_binding/operator/pybind_WeightInterleaving.cpp b/python_binding/operator/pybind_WeightInterleaving.cpp new file mode 100644 index 000000000..25b423bd6 --- /dev/null +++ b/python_binding/operator/pybind_WeightInterleaving.cpp @@ -0,0 +1,39 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <pybind11/pybind11.h> +#include "aidge/operator/WeightInterleaving.hpp" + +namespace py = pybind11; + +namespace Aidge { + +void declare_WeightInterleaving(py::module &m) { + py::class_<WeightInterleaving_Op, std::shared_ptr<WeightInterleaving_Op>, OperatorTensor>(m, "WeightInterleavingOp", py::multiple_inheritance()) + .def(py::init<>()) + .def_static("get_inputs_name", &WeightInterleaving_Op::getInputsName) + .def_static("get_outputs_name", &WeightInterleaving_Op::getOutputsName) + .def_readonly_static("Type", &WeightInterleaving_Op::Type) + + .def("__repr__", [](WeightInterleaving_Op& b) { + return fmt::format("Operator(type='{}')", b.Type); + }); + + declare_registrable<WeightInterleaving_Op>(m, "WeightInterleavingOp"); + + m.def("WeightInterleaving", &WeightInterleaving, py::arg("name") = ""); +} + +void init_WeightInterleaving(py::module &m) { + declare_WeightInterleaving(m); +} + +} // namespace Aidge diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index 006eeb289..f572c024d 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -83,6 +83,7 @@ void init_Sub(py::module&); void init_Tanh(py::module&); void init_Transpose(py::module&); void init_Unsqueeze(py::module&); +void init_WeightInterleaving(py::module&); void init_Node(py::module&); void init_GraphView(py::module&); @@ -177,6 +178,7 @@ void init_Aidge(py::module& m) { init_Tanh(m); init_Transpose(m); init_Unsqueeze(m); + init_WeightInterleaving(m); init_Producer(m); -- GitLab From 3ab0a780df92e09a9acf18d02d1725d90fac14f4 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 4 Dec 2024 13:29:14 +0000 Subject: [PATCH 026/157] Add recipe apply weightInterleaving --- include/aidge/recipes/Recipes.hpp | 25 ++++--- src/recipes/ApplyWeightInterleaving.cpp | 97 +++++++++++++++++++++++++ 2 files changed, 112 insertions(+), 10 deletions(-) create mode 100644 src/recipes/ApplyWeightInterleaving.cpp diff --git a/include/aidge/recipes/Recipes.hpp b/include/aidge/recipes/Recipes.hpp index 0fb405bfe..5f16c480c 100644 --- a/include/aidge/recipes/Recipes.hpp +++ b/include/aidge/recipes/Recipes.hpp @@ -180,19 +180,24 @@ size_t convToMatMul(std::shared_ptr<GraphView> graph); */ void adaptToBackend(std::shared_ptr<GraphView> graph); -// /** -// * @brief The node passed contains an operator which input of index 1 is supposed be be weights of type Int4, Int3, Int2, binary. -// * This recipie only operates memory transformations on the weight tensor. -// * First, permutes the dimensions to match the dataformat NHWC -// * Second, compact the last dimension (Channel dimension) into int8_t -// * -// * @param node Node -// */ -// void applyWeightInterleaving(std::shared_ptr<Node> node); - +/** + * @brief Create a GenericOp from an Operator and replace it + * + * @param node Node which Operator will be changed into a generic Operator + */ void toGenericOp(std::shared_ptr<Node> node); +/** + * @brief The node passed contains an operator which input of index 1 is supposed be be weights of type Int4, Int3, Int2, binary. + * This recipie only operates memory transformations on the weight tensor. + * First, permutes the dimensions to match the dataformat NHWC + * Second, compact the last dimension of the weights (Channel dimension) into 8bits + * + * @param node Node + */ +void applyWeightInterleaving(std::shared_ptr<Node> node); + } // namespace Aidge #endif /* AIDGE_CORE_UTILS_RECIPES_H_ */ diff --git a/src/recipes/ApplyWeightInterleaving.cpp b/src/recipes/ApplyWeightInterleaving.cpp new file mode 100644 index 000000000..42d65788b --- /dev/null +++ b/src/recipes/ApplyWeightInterleaving.cpp @@ -0,0 +1,97 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <memory> + +#include "aidge/data/Data.hpp" +#include "aidge/graph/Node.hpp" +#include "aidge/graph/GraphView.hpp" +#include "aidge/operator/WeightInterleaving.hpp" +#include "aidge/operator/Producer.hpp" +#include "aidge/recipes/Recipes.hpp" + + + + +void Aidge::applyWeightInterleaving(std::shared_ptr<Node> node){ + auto weightProducer = node->getParent(1); + AIDGE_ASSERT(weightProducer, "Cannot Apply Weight Interleaving on {} because it has no weights linked", node->name()) + + auto weightTensor = std::make_shared<Aidge::Tensor>(std::static_pointer_cast<Aidge::OperatorTensor>(weightProducer->getOperator())->getOutput(0)->clone()); + auto backend = node->getOperator()->backend(); + + const Aidge::DataType weightDataType = weightTensor->dataType(); + + weightTensor->print(); + + // 1 - Apply dataformat NHWC to match the custom kernel implementation for ARM cortexM + // Issue : If the dataFormat is Default then setting it to NHWC won't permute dimensions + // Fix : If the datatype is at default then set it to NCHW THEN set it to NHWC + + if (weightTensor->dataFormat() == Aidge::DataFormat::Default) { + weightTensor->setDataFormat(Aidge::DataFormat::NCHW); + } + + // Apply permutation for NHWC format + if (weightTensor->dataFormat() != Aidge::DataFormat::NHWC) { + weightTensor->setDataFormat(Aidge::DataFormat::NHWC); + } + + weightTensor->print(); + + // 2 - Apply Weight interleaving + // Instanciate weight Interleaving operator + auto WIOp = WeightInterleaving_Op(); + + + // Forward the Weight INterleaving op + WIOp.associateInput(0, weightTensor); + + switch (weightDataType) { + case Aidge::DataType::Int4: + WIOp.setDataType(Aidge::DataType::Dual_Int4); + break; + case Aidge::DataType::UInt4: + WIOp.setDataType(Aidge::DataType::Dual_UInt4); + break; + case Aidge::DataType::Int3: + WIOp.setDataType(Aidge::DataType::Dual_Int3); + break; + case Aidge::DataType::UInt3: + WIOp.setDataType(Aidge::DataType::Dual_UInt3); + break; + case Aidge::DataType::Int2: + WIOp.setDataType(Aidge::DataType::Quad_Int2); + break; + case Aidge::DataType::UInt2: + WIOp.setDataType(Aidge::DataType::Quad_UInt2); + break; + case Aidge::DataType::Binary: + WIOp.setDataType(Aidge::DataType::Octo_Binary); + break; + default: + AIDGE_THROW_OR_ABORT(std::runtime_error, "Data type {} not supported for weight interleaving.", weightDataType); + } + + WIOp.setDataFormat(Aidge::DataFormat::NHWC); + WIOp.setBackend(backend); + + WIOp.forward(); + + WIOp.getOutput(0)->print(); + + // 3 - Replace the Weight Producer + auto newProducer = {Producer(WIOp.getOutput(0), weightProducer->name())}; + auto oldProducer = {weightProducer}; + + GraphView::replace(oldProducer, newProducer); + +} \ No newline at end of file -- GitLab From 309ab5a73816879cc4ce4ee742ec40b51f2ff240 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Wed, 4 Dec 2024 13:37:07 +0000 Subject: [PATCH 027/157] Add binding for applyWeightInterleaving --- python_binding/recipes/pybind_Recipes.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/python_binding/recipes/pybind_Recipes.cpp b/python_binding/recipes/pybind_Recipes.cpp index f656af70d..21478a5b1 100644 --- a/python_binding/recipes/pybind_Recipes.cpp +++ b/python_binding/recipes/pybind_Recipes.cpp @@ -151,6 +151,14 @@ void init_Recipes(py::module &m) :param node: Node which Operator will turn into a Generic Operator :type graph_view: :py:class:`aidge_core.Node` )mydelimiter"); + + m.def("apply_weightinterleaving", applyWeightInterleaving, py::arg("node"), R"mydelimiter( + Replace weight Producer linked to the given node with a weight producer with interleaving and format NHWC. + This recipe is specific to the ARM cortex-m export for low bit integer support. + + :param node: Node which linked weights will recieve interleaving + :type graph_view: :py:class:`aidge_core.Node` + )mydelimiter"); } } // namespace Aidge -- GitLab From d7c2bda15b8f6a68685f19c16f14a7c6eefb8447 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 5 Dec 2024 14:06:53 +0100 Subject: [PATCH 028/157] Added more checks --- unit_tests/recipes/Test_ToGenericOp.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unit_tests/recipes/Test_ToGenericOp.cpp b/unit_tests/recipes/Test_ToGenericOp.cpp index 886e07f95..1cc5d144e 100644 --- a/unit_tests/recipes/Test_ToGenericOp.cpp +++ b/unit_tests/recipes/Test_ToGenericOp.cpp @@ -74,10 +74,13 @@ TEST_CASE("[graph/convert] toGenericOp", "[toGenericOp][recipies]") { } } + REQUIRE(metaOpNode); + REQUIRE(!metaOpNode->getOperator()->isAtomic()); auto newGenOp = g->getNode("ConvReLUFC_0"); // Ensure the conversion REQUIRE(newGenOp->type() == "ConvReLUFC"); + REQUIRE(std::dynamic_pointer_cast<GenericOperator_Op>(newGenOp->getOperator())); const auto metaOpAttr = *std::static_pointer_cast<DynamicAttributes>(metaOpNode->getOperator()->attributes()); const auto newGenOpAttr = *std::static_pointer_cast<DynamicAttributes>(newGenOp->getOperator()->attributes()); -- GitLab From 88558942a02bb98c8bba175ad9d7f51c718e3607 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Thu, 5 Dec 2024 16:12:54 +0000 Subject: [PATCH 029/157] Update applyWeightInterleaving recipe to handle 2D weight tensor (FC) --- src/recipes/ApplyWeightInterleaving.cpp | 54 +++++++++++++++++-------- 1 file changed, 38 insertions(+), 16 deletions(-) diff --git a/src/recipes/ApplyWeightInterleaving.cpp b/src/recipes/ApplyWeightInterleaving.cpp index 42d65788b..b9c042a53 100644 --- a/src/recipes/ApplyWeightInterleaving.cpp +++ b/src/recipes/ApplyWeightInterleaving.cpp @@ -12,10 +12,13 @@ #include <memory> #include "aidge/data/Data.hpp" +#include "aidge/data/Tensor.hpp" #include "aidge/graph/Node.hpp" #include "aidge/graph/GraphView.hpp" #include "aidge/operator/WeightInterleaving.hpp" +#include "aidge/operator/Transpose.hpp" #include "aidge/operator/Producer.hpp" +#include "aidge/operator/OperatorTensor.hpp" #include "aidge/recipes/Recipes.hpp" @@ -26,34 +29,55 @@ void Aidge::applyWeightInterleaving(std::shared_ptr<Node> node){ AIDGE_ASSERT(weightProducer, "Cannot Apply Weight Interleaving on {} because it has no weights linked", node->name()) auto weightTensor = std::make_shared<Aidge::Tensor>(std::static_pointer_cast<Aidge::OperatorTensor>(weightProducer->getOperator())->getOutput(0)->clone()); - auto backend = node->getOperator()->backend(); + // auto backend = node->getOperator()->backend(); + // Cover the case of Generic Operators + auto backend = node->getOperator()->backend().empty() ? "cpu" : node->getOperator()->backend(); const Aidge::DataType weightDataType = weightTensor->dataType(); - weightTensor->print(); - // 1 - Apply dataformat NHWC to match the custom kernel implementation for ARM cortexM // Issue : If the dataFormat is Default then setting it to NHWC won't permute dimensions // Fix : If the datatype is at default then set it to NCHW THEN set it to NHWC - if (weightTensor->dataFormat() == Aidge::DataFormat::Default) { - weightTensor->setDataFormat(Aidge::DataFormat::NCHW); + std::shared_ptr<Tensor> transposedWeightTensor; + + // Case 4D tensor (conv) + if (weightTensor->nbDims() == 4) + { + if (weightTensor->dataFormat() == Aidge::DataFormat::Default) { + weightTensor->setDataFormat(Aidge::DataFormat::NCHW); + } + + // Apply permutation for NHWC format + if (weightTensor->dataFormat() != Aidge::DataFormat::NHWC) { + weightTensor->setDataFormat(Aidge::DataFormat::NHWC); + } + + transposedWeightTensor = weightTensor; + } - - // Apply permutation for NHWC format - if (weightTensor->dataFormat() != Aidge::DataFormat::NHWC) { - weightTensor->setDataFormat(Aidge::DataFormat::NHWC); + else if (weightTensor->nbDims() == 2) + { + std::shared_ptr<Node> myTranspose = Transpose({1, 0}); + auto op = std::static_pointer_cast<OperatorTensor>(myTranspose -> getOperator()); + op->associateInput(0,weightTensor); + op->setDataType(weightDataType); + op->setBackend("cpu"); + myTranspose->forward(); + + transposedWeightTensor = op->getOutput(0); + transposedWeightTensor->setDataFormat(Aidge::DataFormat::NHWC); + + } else { + AIDGE_THROW_OR_ABORT(std::runtime_error, "Cannot transpose {} weights.", node->name()); } - - weightTensor->print(); - + // 2 - Apply Weight interleaving // Instanciate weight Interleaving operator auto WIOp = WeightInterleaving_Op(); - // Forward the Weight INterleaving op - WIOp.associateInput(0, weightTensor); + WIOp.associateInput(0, transposedWeightTensor); switch (weightDataType) { case Aidge::DataType::Int4: @@ -86,8 +110,6 @@ void Aidge::applyWeightInterleaving(std::shared_ptr<Node> node){ WIOp.forward(); - WIOp.getOutput(0)->print(); - // 3 - Replace the Weight Producer auto newProducer = {Producer(WIOp.getOutput(0), weightProducer->name())}; auto oldProducer = {weightProducer}; -- GitLab From 0da4f0a86e4bbb4bee60ca140c0a3d0921345f1c Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Tue, 10 Dec 2024 17:44:34 +0100 Subject: [PATCH 030/157] Hotfix for #214 --- src/operator/MetaOperator.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/operator/MetaOperator.cpp b/src/operator/MetaOperator.cpp index cd307c9d1..ae3c3ed6c 100644 --- a/src/operator/MetaOperator.cpp +++ b/src/operator/MetaOperator.cpp @@ -96,7 +96,9 @@ void Aidge::MetaOperator_Op::setBackend(const std::string &name, Aidge::DeviceId for(auto i: mGraph->inputNodes()){ auto op_i = std::static_pointer_cast<OperatorTensor>(i->getOperator()); for(std::size_t in_idx=0; in_idx < op_i->nbInputs(); ++in_idx){ - op_i->getInput(in_idx)->setBackend(name, device); + if (op_i->getInput(in_idx)) { + op_i->getInput(in_idx)->setBackend(name, device); + } } } for(auto o: mGraph->outputNodes()){ -- GitLab From 3c91814de5ba63d10d1c969c03411f649372112e Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 11 Dec 2024 07:54:49 +0100 Subject: [PATCH 031/157] Fixed segfault --- unit_tests/recipes/Test_ToGenericOp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unit_tests/recipes/Test_ToGenericOp.cpp b/unit_tests/recipes/Test_ToGenericOp.cpp index 1cc5d144e..cb75fdb10 100644 --- a/unit_tests/recipes/Test_ToGenericOp.cpp +++ b/unit_tests/recipes/Test_ToGenericOp.cpp @@ -63,7 +63,8 @@ TEST_CASE("[graph/convert] toGenericOp", "[toGenericOp][recipies]") { std::shared_ptr<Node> metaOpNode; - for (const auto& nodePtr : g->getNodes()) + const auto nodes = g->getNodes(); // g nodes gets modified in the loop! + for (const auto& nodePtr : nodes) { if (nodePtr->type() == "ConvReLUFC") { -- GitLab From b4b3b248bc666f27c6c17c23a630b79f06fc6c98 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Mon, 9 Dec 2024 11:32:14 +0100 Subject: [PATCH 032/157] Added flatten op --- include/aidge/operator/Flatten.hpp | 88 +++++++++++++++++++++ src/operator/Flatten.cpp | 90 ++++++++++++++++++++++ unit_tests/operator/Test_FlattenImpl.cpp | 98 ++++++++++++++++++++++++ 3 files changed, 276 insertions(+) create mode 100644 include/aidge/operator/Flatten.hpp create mode 100644 src/operator/Flatten.cpp create mode 100644 unit_tests/operator/Test_FlattenImpl.cpp diff --git a/include/aidge/operator/Flatten.hpp b/include/aidge/operator/Flatten.hpp new file mode 100644 index 000000000..9bdfc932f --- /dev/null +++ b/include/aidge/operator/Flatten.hpp @@ -0,0 +1,88 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#ifndef AIDGE_CORE_OPERATOR_FLATTEN_H_ +#define AIDGE_CORE_OPERATOR_FLATTEN_H_ + +#include <memory> +#include <vector> + +#include "aidge/backend/OperatorImpl.hpp" +#include "aidge/graph/Node.hpp" +#include "aidge/operator/OperatorTensor.hpp" +#include "aidge/utils/Registrar.hpp" +#include "aidge/utils/StaticAttributes.hpp" +#include "aidge/utils/Types.h" + +namespace Aidge { +class Flatten_OpImpl : public OperatorImpl { +public: + Flatten_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + void forward() override; +}; + +enum class FlattenAttr { Axis }; + +class Flatten_Op : public OperatorTensor, + public Registrable<Flatten_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Flatten_Op&)>> { + +public: + static const std::string Type; + +private: + using Attributes_ = StaticAttributes<FlattenAttr, + std::int64_t>; + template <FlattenAttr e> using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; + +public: + Flatten_Op() = delete; + + Flatten_Op(std::int64_t axis = 1); + + /** + * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). + * @param op Operator to copy. + */ + Flatten_Op(const Flatten_Op& op); + + /** + * @brief Clone the operator using its copy-constructor. + * @see Operator::Flatten_Op + */ + std::shared_ptr<Operator> clone() const override; + + bool forwardDims(bool allowDataDependency = false) override final; + + void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + std::set<std::string> getAvailableBackends() const override; + + std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + inline std::int64_t& axis() const { return mAttributes->template getAttr<FlattenAttr::Axis>(); } + + static const std::vector<std::string> getInputsName(){ + return {"data_input"}; + } + static const std::vector<std::string> getOutputsName(){ + return {"data_output"}; + } +}; + +std::shared_ptr<Node> Flatten(std::int64_t axis = 1, + const std::string &name = ""); +} // namespace Aidge + +namespace { +template <> +const char *const EnumStrings<Aidge::FlattenAttr>::data[] = { "axis" }; +} + +#endif /* AIDGE_CORE_OPERATOR_FLATTEN_H_ */ diff --git a/src/operator/Flatten.cpp b/src/operator/Flatten.cpp new file mode 100644 index 000000000..c77adc374 --- /dev/null +++ b/src/operator/Flatten.cpp @@ -0,0 +1,90 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include "aidge/operator/Flatten.hpp" + +#include <cstddef> // std::size_t +#include <cstdint> // std::int64_t +#include <memory> +#include <stdexcept> // std::runtime_error +#include <string> +#include <vector> + +#include "aidge/data/Tensor.hpp" +#include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/Registrar.hpp" +#include "aidge/utils/Types.h" + +void Aidge::Flatten_OpImpl::forward() { + const Flatten_Op& op = dynamic_cast<const Flatten_Op&>(mOp); + op.getOutput(0)->getImpl()->copy(op.getInput(0)->getImpl()->rawPtr(), op.getInput(0)->size()); +} + +////////////////////////////////////////////////// + +const std::string Aidge::Flatten_Op::Type = "Flatten"; + +Aidge::Flatten_Op::Flatten_Op(const std::int64_t axis) + : OperatorTensor(Type, {InputCategory::Data}, 1), + mAttributes(std::make_shared<Attributes_>( + attr<FlattenAttr::Axis>(axis))) +{ + mImpl = std::make_shared<Flatten_OpImpl>(*this); +} + +Aidge::Flatten_Op::Flatten_Op(const Aidge::Flatten_Op& op) + : OperatorTensor(op), + mAttributes(op.mAttributes) +{ + if (!op.backend().empty()) { + SET_IMPL_MACRO(Flatten_Op, *this, op.backend()); + } + else { + mImpl = std::make_shared<Flatten_OpImpl>(*this); + } +} + +std::shared_ptr<Aidge::Operator> Aidge::Flatten_Op::clone() const { + return std::make_shared<Flatten_Op>(*this); +} + +bool Aidge::Flatten_Op::forwardDims(bool /*allowDataDependency*/) { + if (inputsAssociated()) { + const auto inDims(getInput(0)->dims()); + const auto firstDim = std::accumulate(inDims.begin(), inDims.begin() + axis(), 1ULL, std::multiplies<DimSize_t>()); + mOutputs[0]->resize({firstDim, getInput(0)->size() / firstDim}); + return true; + } + + return false; +} + +void Aidge::Flatten_Op::setBackend(const std::string& name, Aidge::DeviceIdx_t device) { + if (Registrar<Flatten_Op>::exists({name})){ + SET_IMPL_MACRO(Flatten_Op, *this, name); + } + else { + mImpl = std::make_shared<Flatten_OpImpl>(*this); + } + mOutputs[0]->setBackend(name, device); +} + +std::set<std::string> Aidge::Flatten_Op::getAvailableBackends() const { + return Registrar<Flatten_Op>::getKeys(); +} + +////////////////////////////////////////////// + +std::shared_ptr<Aidge::Node> Aidge::Flatten(std::int64_t axis, + const std::string &name) +{ + return std::make_shared<Node>(std::make_shared<Flatten_Op>(axis), name); +} \ No newline at end of file diff --git a/unit_tests/operator/Test_FlattenImpl.cpp b/unit_tests/operator/Test_FlattenImpl.cpp new file mode 100644 index 000000000..1990c0b61 --- /dev/null +++ b/unit_tests/operator/Test_FlattenImpl.cpp @@ -0,0 +1,98 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <catch2/catch_test_macros.hpp> + +#include "aidge/data/Tensor.hpp" +#include "aidge/operator/Flatten.hpp" + +#include <memory> + +using namespace Aidge; + +TEST_CASE("[cpu/operator] Flatten(forward)") { + std::shared_ptr<Tensor> input = std::make_shared<Tensor>(Array4D<int32_t,1,2,3,5> { + { + { + { + { 1, 2, 3, 4, 5}, + { 6, 7, 8, 9, 10}, + {11, 12, 13, 14, 15} + }, + { + {16, 17, 18, 19, 20}, + {21, 22, 23, 24, 25}, + {26, 27, 28, 29, 30} + } + } + } + }); + + SECTION("Default (axis = 1)") { + std::shared_ptr<Node> myFlatten = Flatten(); + auto op = std::static_pointer_cast<OperatorTensor>(myFlatten -> getOperator()); + op->associateInput(0, input); + op->setDataType(DataType::Int32); + op->setBackend("cpu"); + myFlatten->forward(); + + auto expectedOutput = input->clone(); + expectedOutput.resize({1, input->size()}); + + REQUIRE(op->getOutput(0)->dims() == expectedOutput.dims()); + REQUIRE(*(op->getOutput(0)) == expectedOutput); + } + + SECTION("Axis = 0") { + std::shared_ptr<Node> myFlatten = Flatten(0); + auto op = std::static_pointer_cast<OperatorTensor>(myFlatten -> getOperator()); + op->associateInput(0, input); + op->setDataType(DataType::Int32); + op->setBackend("cpu"); + myFlatten->forward(); + + auto expectedOutput = input->clone(); + expectedOutput.resize({1, input->size()}); + + REQUIRE(op->getOutput(0)->dims() == expectedOutput.dims()); + REQUIRE(*(op->getOutput(0)) == expectedOutput); + } + + SECTION("Axis = 2") { + std::shared_ptr<Node> myFlatten = Flatten(2); + auto op = std::static_pointer_cast<OperatorTensor>(myFlatten -> getOperator()); + op->associateInput(0, input); + op->setDataType(DataType::Int32); + op->setBackend("cpu"); + myFlatten->forward(); + + auto expectedOutput = input->clone(); + expectedOutput.resize({2, input->size() / 2}); + + REQUIRE(op->getOutput(0)->dims() == expectedOutput.dims()); + REQUIRE(*(op->getOutput(0)) == expectedOutput); + } + + SECTION("Axis = 4") { + std::shared_ptr<Node> myFlatten = Flatten(4); + auto op = std::static_pointer_cast<OperatorTensor>(myFlatten -> getOperator()); + op->associateInput(0, input); + op->setDataType(DataType::Int32); + op->setBackend("cpu"); + myFlatten->forward(); + + auto expectedOutput = input->clone(); + expectedOutput.resize({input->size(), 1}); + + REQUIRE(op->getOutput(0)->dims() == expectedOutput.dims()); + REQUIRE(*(op->getOutput(0)) == expectedOutput); + } +} \ No newline at end of file -- GitLab From a1d5b011fa5fd26f3822d45d54a83ab98e7fba9f Mon Sep 17 00:00:00 2001 From: Houssem ROUIS <houssemeddine.rouis92@gmail.com> Date: Wed, 11 Dec 2024 11:48:44 +0000 Subject: [PATCH 033/157] feat: Add backend-agnostic forward kernel for Slice --- include/aidge/operator/Slice.hpp | 14 +- src/operator/Slice.cpp | 99 ++++++++- unit_tests/operator/Test_SliceImpl.cpp | 278 +++++++++++++++++++++++++ 3 files changed, 379 insertions(+), 12 deletions(-) create mode 100644 unit_tests/operator/Test_SliceImpl.cpp diff --git a/include/aidge/operator/Slice.hpp b/include/aidge/operator/Slice.hpp index 055e6fd1d..5bb07ae01 100644 --- a/include/aidge/operator/Slice.hpp +++ b/include/aidge/operator/Slice.hpp @@ -25,6 +25,12 @@ namespace Aidge { +class Slice_OpImpl : public OperatorImpl { +public: + Slice_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + void forward() override; +}; + enum class SliceAttr { Starts, Ends, Axes, Steps }; class Slice_Op @@ -32,13 +38,13 @@ class Slice_Op public Registrable<Slice_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Slice_Op &)>> { public: static const std::string Type; - -private: using Attributes_ = StaticAttributes<SliceAttr, std::vector<std::int64_t>, std::vector<std::int64_t>, std::vector<std::int8_t>, std::vector<std::int64_t>>; + +private: template <SliceAttr e> using attr = typename Attributes_::template attr<e>; const std::shared_ptr<Attributes_> mAttributes; @@ -50,7 +56,6 @@ public: const std::vector<std::int8_t>& axes, const std::vector<std::int64_t>& steps); - /** * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its * input tensors (the new operator has no input associated). @@ -58,7 +63,6 @@ public: */ Slice_Op(const Slice_Op &op); -public: /** * @brief Clone the operator using its copy-constructor. * @see Operator::Slice_Op @@ -103,4 +107,4 @@ template <> const char *const EnumStrings<Aidge::SliceAttr>::data[] = { "starts", "ends", "axes", "steps" }; } -#endif /* AIDGE_CORE_OPERATOR_RELU_H_ */ +#endif /* AIDGE_CORE_OPERATOR_SLICE_H_ */ diff --git a/src/operator/Slice.cpp b/src/operator/Slice.cpp index 3bdee8c13..02dcad58c 100644 --- a/src/operator/Slice.cpp +++ b/src/operator/Slice.cpp @@ -24,6 +24,9 @@ #include "aidge/data/Tensor.hpp" #include "aidge/utils/ErrorHandling.hpp" #include "aidge/utils/Types.h" +#include "aidge/data/Data.hpp" +#include "aidge/utils/Registrar.hpp" + const std::string Aidge::Slice_Op::Type = "Slice"; @@ -43,17 +46,18 @@ Aidge::Slice_Op::Slice_Op(const std::vector<std::int64_t>& starts, attr<SliceAttr::Ends>(ends), attr<SliceAttr::Axes>(axes), attr<SliceAttr::Steps>(steps))) -{} +{ + mImpl = std::make_shared<Slice_OpImpl>(*this); +} -Aidge::Slice_Op::Slice_Op(const Aidge::Slice_Op &op) - : OperatorTensor(op), - mAttributes(op.mAttributes) +Aidge::Slice_Op::Slice_Op(const Aidge::Slice_Op& op) + : OperatorTensor(op), mAttributes(op.mAttributes) { if (!op.backend().empty()) { SET_IMPL_MACRO(Slice_Op, *this, op.backend()); } else { - mImpl = nullptr; + mImpl = std::make_shared<Slice_OpImpl>(*this); } } @@ -61,6 +65,82 @@ std::shared_ptr<Aidge::Operator> Aidge::Slice_Op::clone() const { return std::make_shared<Slice_Op>(*this); } +// Helper function to calculate the linear index for multi-dimensional data +size_t getLinearIndex(const std::vector<size_t>& dims, const std::vector<size_t>& indices) { + size_t linearIndex = 0; + size_t stride = 1; + for (int i = dims.size() - 1; i >= 0; --i) { + linearIndex += indices[i] * stride; + stride *= dims[i]; + } + return linearIndex; +} + +void Aidge::Slice_OpImpl::forward() { + const Slice_Op& op = dynamic_cast<const Slice_Op&>(mOp); + + if (!op.getInput(0)) { + AIDGE_THROW_OR_ABORT(std::runtime_error, "{}: input #0 should be associated with a Tensor", op.Type); + } + AIDGE_ASSERT((op.axes().size() == op.ends().size()) && + (op.axes().size() == op.starts().size()), + "Starts, Ends and Axes arguments should be the same size."); + + const std::vector<size_t> inputDims = op.getInput(0)->dims(); + std::vector<size_t> indices(inputDims.size(), 0); // Initialize indices for each dimension + + // Create an array of ranges for each axis + std::vector<std::vector<int>> ranges(inputDims.size()); + + // Generate ranges dynamically for each dimension + for (size_t axisIdx = 0; axisIdx < inputDims.size(); ++axisIdx) { + if (std::find(op.axes().begin(), op.axes().end(), axisIdx) != op.axes().end()) { + // This axis is being sliced + int start = op.starts()[axisIdx]; + int end = op.ends()[axisIdx]; + int step = op.steps()[axisIdx]; + + start = start >= 0 ? start: start + inputDims[axisIdx]; + end = end >= 0 ? end: end + inputDims[axisIdx]; + + // Generate the range of indices for this axis + for (int idx = start; (step > 0) ? (idx < end) : (idx > end); idx += step) { + ranges[axisIdx].push_back(idx); + } + } else { + // This axis is not being sliced, keep its full range (just one index in the range) + ranges[axisIdx].push_back(0); + } + } + + // Use iterative stack to handle all dimensions dynamically + std::vector<size_t> currentIndex(inputDims.size(), 0); // Track current index in each dimension + std::vector<size_t> stackPointer(inputDims.size(), 0); // Pointers to ranges for each dimension + size_t dim = 0; // Start at the first dimension + size_t offset = 0; // Offset in the output tensor + + while (dim < inputDims.size()) { + if (stackPointer[dim] < ranges[dim].size()) { + // Set the current index for this dimension + currentIndex[dim] = ranges[dim][stackPointer[dim]]; + stackPointer[dim]++; + + if (dim == inputDims.size() - 1) { + // We've reached the last dimension, process this index combination + size_t linearIndex = getLinearIndex(inputDims, currentIndex); + op.getOutput(0)->getImpl()->copy(op.getInput(0)->getImpl()->rawPtr(linearIndex), 1, offset); + offset++; + } else { + // Move to the next dimension + dim++; + } + } else { + // Reset this dimension and move back to the previous one + stackPointer[dim] = 0; + dim--; + } + } +} bool Aidge::Slice_Op::dimsForwarded() const { if ((getInput(1) && !getInput(1)->undefined()) @@ -191,7 +271,7 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { } } - const std::size_t sliceLength = static_cast<std::size_t>(std::ceil((static_cast<float>(end) - static_cast<float>(start)) / static_cast<float>(step))); + const std::size_t sliceLength = static_cast<std::size_t>(std::ceil((static_cast<float>(end) - static_cast<float>(start)) / static_cast<float>((step)))); // Check if slice length is valid if (sliceLength > getInput(0)->dims()[axis]) { @@ -208,7 +288,12 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { } void Aidge::Slice_Op::setBackend(const std::string& name, Aidge::DeviceIdx_t device) { - SET_IMPL_MACRO(Slice_Op, *this, name); + if (Registrar<Slice_Op>::exists({name})){ + SET_IMPL_MACRO(Slice_Op, *this, name); + } + else { + mImpl = std::make_shared<Slice_OpImpl>(*this); + } mOutputs[0]->setBackend(name, device); } diff --git a/unit_tests/operator/Test_SliceImpl.cpp b/unit_tests/operator/Test_SliceImpl.cpp new file mode 100644 index 000000000..b856535f3 --- /dev/null +++ b/unit_tests/operator/Test_SliceImpl.cpp @@ -0,0 +1,278 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <catch2/catch_test_macros.hpp> + +#include "aidge/data/Tensor.hpp" +#include "aidge/operator/Slice.hpp" + +using namespace Aidge; + +TEST_CASE("[cpu/operator] Slice(forward)", "[Slice][CPU]") { + SECTION("1D Tensor") { + std::shared_ptr<Tensor> input0 = std::make_shared<Tensor>(Array1D<int,10> { + {0, 1, -2,-3, 4,-5,-6, 7, 8, 9} + }); + std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array1D<int,3> { + {0, 1, -2} + }); + std::shared_ptr<Tensor> starts = std::make_shared<Tensor>(Array1D<int,1>{{0}}); + std::shared_ptr<Tensor> ends = std::make_shared<Tensor>(Array1D<int,1>{{3}}); + std::shared_ptr<Tensor> axes = std::make_shared<Tensor>(Array1D<int,1>{{0}}); + + std::shared_ptr<Node> mySlice = Slice(); + auto op = std::static_pointer_cast<OperatorTensor>(mySlice -> getOperator()); + mySlice->getOperator()->associateInput(0,input0); + mySlice->getOperator()->associateInput(1,starts); + mySlice->getOperator()->associateInput(2,ends); + mySlice->getOperator()->associateInput(3,axes); + mySlice->getOperator()->setDataType(DataType::Int32); + mySlice->getOperator()->setBackend("cpu"); + mySlice->forward(); + + REQUIRE(*(op->getOutput(0)) == *expectedOutput); + REQUIRE(op->getOutput(0)->dims() == expectedOutput->dims()); + REQUIRE(op->getOutput(0)->dataType() == expectedOutput->dataType()); + } + + SECTION("2D Tensor") { + std::shared_ptr<Tensor> input0 = std::make_shared<Tensor>(Array2D<int,2,10> { + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + } + }); + std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array2D<int,2,3> { + { + {-5,-6, 7}, + {-5,-6, 7} + } + }); + std::shared_ptr<Tensor> starts = std::make_shared<Tensor>(Array1D<int,2>{{0,5}}); + std::shared_ptr<Tensor> ends = std::make_shared<Tensor>(Array1D<int,2>{{2,8}}); + std::shared_ptr<Tensor> axes = std::make_shared<Tensor>(Array1D<int,2>{{0,1}}); + + std::shared_ptr<Node> mySlice = Slice(); + auto op = std::static_pointer_cast<OperatorTensor>(mySlice -> getOperator()); + mySlice->getOperator()->associateInput(0,input0); + mySlice->getOperator()->associateInput(1,starts); + mySlice->getOperator()->associateInput(2,ends); + mySlice->getOperator()->associateInput(3,axes); + mySlice->getOperator()->setDataType(DataType::Int32); + mySlice->getOperator()->setBackend("cpu"); + mySlice->forward(); + op->getOutput(0)->print(); + REQUIRE(*(op->getOutput(0)) == *expectedOutput); + REQUIRE(op->getOutput(0)->dims() == expectedOutput->dims()); + REQUIRE(op->getOutput(0)->dataType() == expectedOutput->dataType()); + } + + SECTION("3D Tensor") { + std::shared_ptr<Tensor> input0 = std::make_shared<Tensor>(Array3D<int,2,2,10> { + { + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + }, + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + } + } + }); + std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array3D<int,1,1,3> { + { + { + { 4,-5,-6} + } + } + }); + std::shared_ptr<Tensor> starts = std::make_shared<Tensor>(Array1D<int,3>{{0,1,4}}); + std::shared_ptr<Tensor> ends = std::make_shared<Tensor>(Array1D<int,3>{{1,2,7}}); + std::shared_ptr<Tensor> axes = std::make_shared<Tensor>(Array1D<int,3>{{0,1,2}}); + + std::shared_ptr<Node> mySlice = Slice(); + auto op = std::static_pointer_cast<OperatorTensor>(mySlice -> getOperator()); + mySlice->getOperator()->associateInput(0,input0); + mySlice->getOperator()->associateInput(1,starts); + mySlice->getOperator()->associateInput(2,ends); + mySlice->getOperator()->associateInput(3,axes); + mySlice->getOperator()->setDataType(DataType::Int32); + mySlice->getOperator()->setBackend("cpu"); + mySlice->forward(); + // mySlice->getOperator()->output(0).print(); + REQUIRE(*(op->getOutput(0)) == *expectedOutput); + REQUIRE(op->getOutput(0)->dims() == expectedOutput->dims()); + REQUIRE(op->getOutput(0)->dataType() == expectedOutput->dataType()); + } + + SECTION("4D Tensor") { + std::shared_ptr<Tensor> input0 = std::make_shared<Tensor>(Array4D<int,2,2,2,10> { + { + { + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + }, + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + } + }, + { + { + { 0, 1, 2,-3, 6,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + }, + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3,11,-5,-6, 7,-1,10} + } + } + } + }); + std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array4D<int,2,2,2,10> { + { + { + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + }, + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + } + }, + { + { + { 0, 1, 2,-3, 6,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + }, + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3,11,-5,-6, 7,-1,10} + } + } + } + }); + std::shared_ptr<Tensor> starts = std::make_shared<Tensor>(Array1D<int,4>{{0,0,0,0}}); + std::shared_ptr<Tensor> ends = std::make_shared<Tensor>(Array1D<int,4>{{2,2,2,10}}); + std::shared_ptr<Tensor> axes = std::make_shared<Tensor>(Array1D<int,4>{{0,1,2,3}}); + + std::shared_ptr<Node> mySlice = Slice(); + auto op = std::static_pointer_cast<OperatorTensor>(mySlice -> getOperator()); + mySlice->getOperator()->associateInput(0,input0); + mySlice->getOperator()->associateInput(1,starts); + mySlice->getOperator()->associateInput(2,ends); + mySlice->getOperator()->associateInput(3,axes); + mySlice->getOperator()->setDataType(DataType::Int32); + mySlice->getOperator()->setBackend("cpu"); + mySlice->forward(); + // op->getOutput(0)->print(); + REQUIRE(*(op->getOutput(0)) == *expectedOutput); + REQUIRE(op->getOutput(0)->dims() == expectedOutput->dims()); + REQUIRE(op->getOutput(0)->dataType() == expectedOutput->dataType()); + } + + SECTION("Attributes instead of inputs") { + std::shared_ptr<Tensor> input0 = std::make_shared<Tensor>(Array4D<int,2,2,2,10> { + { + { + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + }, + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + } + }, + { + { + { 0, 1, 2,-3, 6,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3, 4,-5,-6, 7,-1,10} + }, + { + { 0, 1, 2,-3, 4,-5,-6, 7, 8, 9}, + {-5, 4, 2,-3,11,-5,-6, 7,-1,10} + } + } + } + }); + std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array4D<int,1,1,1,5> { + { + { + { + { 0, 1, 2,-3, 4} + } + } + } + }); + + std::shared_ptr<Node> mySlice = Slice({0,0,0,0}, {1,1,1,5}, {0,1,2,3}, {1,1,1,1}); + auto op = std::static_pointer_cast<OperatorTensor>(mySlice -> getOperator()); + mySlice->getOperator()->associateInput(0,input0); + mySlice->getOperator()->setDataType(DataType::Int32); + mySlice->getOperator()->setBackend("cpu"); + mySlice->forward(); + // op->getOutput(0)->print(); + REQUIRE(*(op->getOutput(0)) == *expectedOutput); + REQUIRE(op->getOutput(0)->dims() == expectedOutput->dims()); + REQUIRE(op->getOutput(0)->dataType() == expectedOutput->dataType()); + } + + SECTION("Different Steps") { + std::shared_ptr<Tensor> input0 = std::make_shared<Tensor>(Array3D<int,4,2,8> { + { + { + { 0, 1, 2,-3, 4,-5,-6,7}, + {-5, 4, 2,-3, 4,-5,-6,-7} + }, + { + { 10, 11, 12,-13, 14,-15,-16,17}, + {-15, 14, 12,-13, 14,-15,-16,-17} + }, + { + { 20, 21, 22,-23, 24,-25,-26,27}, + {-25, 24, 22,-23, 24,-25,-26,-27} + }, + { + { 30, 31, 32,-33, 34,-35,-36,37}, + {-35, 34, 32,-33, 34,-35,-36,-37} + } + } + }); + std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array3D<int,2,1,3> { + { + { + { 7, 4, 1} + }, + { + { 27, 24, 21} + } + } + }); + + std::shared_ptr<Node> mySlice = Slice({0,0,7}, {4,1,0}, {0,1,2}, {2,1,-3}); + // on Axis 0: from 0 to 4 by step of 2 + // on Axis 1: from 0 to 1 by step of 1 + // on Axis 2: from 7 to 0 by step of -3 (reverse the order of elements) + auto op = std::static_pointer_cast<OperatorTensor>(mySlice -> getOperator()); + mySlice->getOperator()->associateInput(0,input0); + mySlice->getOperator()->setDataType(DataType::Int32); + mySlice->getOperator()->setBackend("cpu"); + mySlice->forward(); + // op->getOutput(0)->print(); + REQUIRE(*(op->getOutput(0)) == *expectedOutput); + REQUIRE(op->getOutput(0)->dims() == expectedOutput->dims()); + REQUIRE(op->getOutput(0)->dataType() == expectedOutput->dataType()); + } +} -- GitLab From 886c16acc23012bb66269ad29358058acda6d2e6 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 11 Dec 2024 09:02:03 +0100 Subject: [PATCH 034/157] Fix issue #190 --- src/graph/Node.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/graph/Node.cpp b/src/graph/Node.cpp index da6d833f3..e8625b5b6 100644 --- a/src/graph/Node.cpp +++ b/src/graph/Node.cpp @@ -407,18 +407,18 @@ void Aidge::Node::resetConnections(bool includeLearnableParam) { /////////////////////////////////////////////////////// Aidge::NodePtr Aidge::Node::cloneSharedOperators() const { - return std::make_shared<Node>(mOperator, mAttrs); + return std::make_shared<Node>(mOperator, std::make_shared<DynamicAttribute>(*mAttrs)); } Aidge::NodePtr Aidge::Node::cloneSharedProducers() const { std::shared_ptr<Operator> op = (mOperator->type() == Producer_Op::Type) ? mOperator : mOperator->clone(); - return std::make_shared<Node>(op, mAttrs); + return std::make_shared<Node>(op, std::make_shared<DynamicAttribute>(*mAttrs)); } Aidge::NodePtr Aidge::Node::clone() const { - return std::make_shared<Node>(mOperator->clone(), mAttrs); + return std::make_shared<Node>(mOperator->clone(), std::make_shared<DynamicAttribute>(*mAttrs)); } std::set<Aidge::NodePtr> Aidge::Node::getNodeDelta(int delta, std::set<Aidge::NodePtr> nodeSee) { -- GitLab From 58d05eeeee95db190a57fe3fac4df4a3351488d3 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 11 Dec 2024 10:10:52 +0100 Subject: [PATCH 035/157] Fixed typo --- src/graph/Node.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/graph/Node.cpp b/src/graph/Node.cpp index e8625b5b6..92ae46308 100644 --- a/src/graph/Node.cpp +++ b/src/graph/Node.cpp @@ -407,18 +407,18 @@ void Aidge::Node::resetConnections(bool includeLearnableParam) { /////////////////////////////////////////////////////// Aidge::NodePtr Aidge::Node::cloneSharedOperators() const { - return std::make_shared<Node>(mOperator, std::make_shared<DynamicAttribute>(*mAttrs)); + return std::make_shared<Node>(mOperator, std::make_shared<DynamicAttributes>(*mAttrs)); } Aidge::NodePtr Aidge::Node::cloneSharedProducers() const { std::shared_ptr<Operator> op = (mOperator->type() == Producer_Op::Type) ? mOperator : mOperator->clone(); - return std::make_shared<Node>(op, std::make_shared<DynamicAttribute>(*mAttrs)); + return std::make_shared<Node>(op, std::make_shared<DynamicAttributes>(*mAttrs)); } Aidge::NodePtr Aidge::Node::clone() const { - return std::make_shared<Node>(mOperator->clone(), std::make_shared<DynamicAttribute>(*mAttrs)); + return std::make_shared<Node>(mOperator->clone(), std::make_shared<DynamicAttributes>(*mAttrs)); } std::set<Aidge::NodePtr> Aidge::Node::getNodeDelta(int delta, std::set<Aidge::NodePtr> nodeSee) { -- GitLab From 9afa948a7765b651ae99e528ed7c56a31198371e Mon Sep 17 00:00:00 2001 From: Charles Villard <charles.villard@cea.fr> Date: Fri, 13 Dec 2024 11:21:27 +0000 Subject: [PATCH 036/157] Change fmt library to system and upgrade Catch2 --- CMakeLists.txt | 5 ++++- include/aidge/data/Elts.hpp | 4 ++-- unit_tests/CMakeLists.txt | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index beec9fbb4..3a1dc22b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,9 +115,12 @@ if (PYBIND) include(PybindDependency) add_pybind_dependency(${module_name}) ## + + target_link_libraries(${pybind_module_name} PRIVATE fmt::fmt) endif() -target_link_libraries(${module_name} PUBLIC Threads::Threads fmt::fmt) +target_link_libraries(${module_name} PRIVATE fmt::fmt) +target_link_libraries(${module_name} PUBLIC Threads::Threads) target_compile_features(${module_name} PRIVATE cxx_std_14) if (DOSANITIZE STREQUAL "ON") diff --git a/include/aidge/data/Elts.hpp b/include/aidge/data/Elts.hpp index 1a5a9e10e..bc4a225fc 100644 --- a/include/aidge/data/Elts.hpp +++ b/include/aidge/data/Elts.hpp @@ -101,12 +101,12 @@ private: template<> struct fmt::formatter<Aidge::Elts_t> { template<typename ParseContext> - inline constexpr auto parse(ParseContext& ctx) { + inline constexpr auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { return ctx.begin(); } template<typename FormatContext> - inline auto format(Aidge::Elts_t const& elt, FormatContext& ctx) { + inline auto format(const Aidge::Elts_t& elt, FormatContext& ctx) const { return fmt::format_to(ctx.out(), "{}:{}", elt.data, elt.token); } }; diff --git a/unit_tests/CMakeLists.txt b/unit_tests/CMakeLists.txt index 2c0c746a4..8257a6063 100644 --- a/unit_tests/CMakeLists.txt +++ b/unit_tests/CMakeLists.txt @@ -63,6 +63,7 @@ endif() target_link_libraries(tests${module_name} PRIVATE ${module_name}) target_link_libraries(tests${module_name} PRIVATE Catch2::Catch2WithMain) +target_link_libraries(tests${module_name} PRIVATE fmt::fmt) list(APPEND CMAKE_MODULE_PATH ${catch2_SOURCE_DIR}/extras) include(CTest) -- GitLab From 651b8db055b29b71ac31d0627837403394172eeb Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Fri, 13 Dec 2024 15:01:48 +0000 Subject: [PATCH 037/157] Upgrade the data conversion to a generic function and integrate it to nodeExport class constructor --- aidge_core/export_utils/data_conversion.py | 28 +++++++++++---- aidge_core/export_utils/node_export.py | 42 +++++++++++++++++----- 2 files changed, 55 insertions(+), 15 deletions(-) diff --git a/aidge_core/export_utils/data_conversion.py b/aidge_core/export_utils/data_conversion.py index 5333c6a3b..6dba5b78c 100644 --- a/aidge_core/export_utils/data_conversion.py +++ b/aidge_core/export_utils/data_conversion.py @@ -1,8 +1,9 @@ import numpy as np import aidge_core +from typing import Dict -datatype_converter_aide2c = { +datatype_converter_aidge2c = { aidge_core.dtype.float64 : "double", aidge_core.dtype.float32 : "float", aidge_core.dtype.float16 : "half_float::half", @@ -26,9 +27,24 @@ def aidge2c(datatype): :return: A string representing the C type :rtype: string """ - if datatype in datatype_converter_aide2c: - return datatype_converter_aide2c[datatype] + if datatype in datatype_converter_aidge2c: + return datatype_converter_aidge2c[datatype] else: - # raise ValueError(f"Unsupported {datatype} aidge datatype") - aidge_core.Log.warn(f"Unsupported conversion of {datatype} (aidge datatype) to a C type.") - return None + raise ValueError(f"Unsupported {datatype} aidge datatype") + +def aidge2export_type(datatype: aidge_core.dtype, conversion_map: Dict[aidge_core.dtype, str] = datatype_converter_aidge2c) -> str: + """Convert a aidge datatype to the export type specified by the map passed in argument + + If the aidge type is not convertible, that is to say, is not specified in the map, a value Error is raised. + + :param datatype: Aidge datatype to convert + :type datatype: :py:object:`aidge_core.DataType` + :param conversion_map: Map that specify the conversion + :type conversion_map: Dict[:py:object:`aidge_core.DataType`, str] + :return: A string representing the export type + :rtype: string + """ + if datatype in conversion_map: + return conversion_map[datatype] + else: + raise ValueError(f"Unsupported type conversion {datatype} aidge datatype for export") diff --git a/aidge_core/export_utils/node_export.py b/aidge_core/export_utils/node_export.py index 5777814a0..c24727adf 100644 --- a/aidge_core/export_utils/node_export.py +++ b/aidge_core/export_utils/node_export.py @@ -3,7 +3,8 @@ from pathlib import Path from aidge_core.export_utils import data_conversion, code_generation from abc import ABC, abstractmethod -from typing import List +from typing import List, Dict + def get_chan(tensor: aidge_core.Tensor) -> int: @@ -14,12 +15,19 @@ def get_chan(tensor: aidge_core.Tensor) -> int: return dims[1] elif len(dims) == 2: # Suppose NC return dims[1] + elif len(dims) == 1: # Suppose C (for bias) + return dims[0] else: return None elif dformat == aidge_core.dformat.nchw: return dims[1] elif dformat == aidge_core.dformat.nhwc: - return dims[3] + if len(dims) == 4: # NHWC + return dims[3] + elif len(dims) == 2: # NC + return 1 + elif len(dims) == 1: # C for bias + return 1 elif dformat == aidge_core.dformat.chwn: return dims[0] elif dformat == aidge_core.dformat.ncdhw: @@ -40,12 +48,19 @@ def get_height(tensor: aidge_core.Tensor) -> int: return dims[2] elif len(dims) == 2: # Suppose NC return 1 + elif len(dims) == 1: # Suppose C for bias + return 1 else: return None elif dformat == aidge_core.dformat.nchw: return dims[2] elif dformat == aidge_core.dformat.nhwc: - return dims[1] + if len(dims) == 4: # NHWC + return dims[1] + elif len(dims) == 2: # NC + return 1 + elif len(dims) == 1: # C for bias + return 1 elif dformat == aidge_core.dformat.chwn: return dims[1] elif dformat == aidge_core.dformat.ncdhw: @@ -66,12 +81,19 @@ def get_width(tensor: aidge_core.Tensor) -> int: return dims[3] elif len(dims) == 2: # Suppose NC return 1 + elif len(dims) == 1: # Suppose C for bias + return 1 else: return None elif dformat == aidge_core.dformat.nchw: return dims[3] elif dformat == aidge_core.dformat.nhwc: - return dims[2] + if len(dims) == 4: # NHWC + return dims[2] + elif len(dims) == 2: # NC + return 1 + elif len(dims) == 1: # C for bias + return 1 elif dformat == aidge_core.dformat.chwn: return dims[2] elif dformat == aidge_core.dformat.ncdhw: @@ -162,7 +184,9 @@ class ExportNode(ABC): """ @abstractmethod - def __init__(self, aidge_node: aidge_core.Node, mem_info: List[dict]=None) -> None: + def __init__(self, aidge_node: aidge_core.Node, + mem_info: List[dict]=None, + conversion_map: Dict[aidge_core.dtype, str] = data_conversion.datatype_converter_aidge2c) -> None: """Create ExportNode and retrieve attributes from ``aidge_node``: """ @@ -231,8 +255,8 @@ class ExportNode(ABC): self.attributes["in_dformat"][idx] = tensor.dformat() self.attributes["in_format"][idx] = aidge_core.format_as(tensor.dformat()) self.attributes["in_dtype"][idx] = tensor.dtype() - self.attributes["in_cdtype"][idx] = data_conversion.aidge2c( - tensor.dtype()) + # self.attributes["in_cdtype"][idx] = data_conversion.aidge2c(tensor.dtype()) + self.attributes["in_cdtype"][idx] = data_conversion.aidge2export_type(tensor.dtype(), conversion_map) self.attributes["in_chan"][idx] = get_chan(tensor) self.attributes["in_height"][idx] = get_height(tensor) self.attributes["in_width"][idx] = get_width(tensor) @@ -254,8 +278,8 @@ class ExportNode(ABC): self.attributes["out_dformat"][idx] = tensor.dformat() self.attributes["out_format"][idx] = aidge_core.format_as(tensor.dformat()) self.attributes["out_dtype"][idx] = tensor.dtype() - self.attributes["out_cdtype"][idx] = data_conversion.aidge2c( - tensor.dtype()) + # self.attributes["out_cdtype"][idx] = data_conversion.aidge2c(tensor.dtype()) + self.attributes["out_cdtype"][idx] = data_conversion.aidge2export_type(tensor.dtype(), conversion_map) self.attributes["out_chan"][idx] = get_chan(tensor) self.attributes["out_height"][idx] = get_height(tensor) self.attributes["out_width"][idx] = get_width(tensor) -- GitLab From 037e6205eb02a92a8662201369aaed9a039526ac Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Fri, 13 Dec 2024 16:05:01 +0000 Subject: [PATCH 038/157] Update the export registry for tensor with new aidge datatypes --- aidge_core/export_utils/export_registry.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/aidge_core/export_utils/export_registry.py b/aidge_core/export_utils/export_registry.py index e5b6b2098..8927ae516 100644 --- a/aidge_core/export_utils/export_registry.py +++ b/aidge_core/export_utils/export_registry.py @@ -80,6 +80,14 @@ class ExportLib(aidge_core.OperatorImpl): aidge_core.get_key_value_Tensor(["cpu", aidge_core.dtype.uint32])) aidge_core.register_Tensor([self._name, aidge_core.dtype.uint64], aidge_core.get_key_value_Tensor(["cpu", aidge_core.dtype.uint64])) + aidge_core.register_Tensor([self._name, aidge_core.dtype.int4], + aidge_core.get_key_value_Tensor(["cpu", aidge_core.dtype.int4])) + aidge_core.register_Tensor([self._name, aidge_core.dtype.uint4], + aidge_core.get_key_value_Tensor(["cpu", aidge_core.dtype.uint4])) + aidge_core.register_Tensor([self._name, aidge_core.dtype.dual_int4], + aidge_core.get_key_value_Tensor(["cpu", aidge_core.dtype.dual_int4])) + aidge_core.register_Tensor([self._name, aidge_core.dtype.dual_uint4], + aidge_core.get_key_value_Tensor(["cpu", aidge_core.dtype.dual_uint4])) @classproperty def _export_node_registry(cls) -> Dict[str, List['ExportNode']]: -- GitLab From 7b7f376af22a10361e4e10537a54711b5cc7326e Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Mon, 16 Dec 2024 10:33:06 +0000 Subject: [PATCH 039/157] Fix the new datatypes in data.hpp --- include/aidge/data/Data.hpp | 88 ++++++------------------------------- 1 file changed, 14 insertions(+), 74 deletions(-) diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index d641df6e6..35df9c0e0 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -125,54 +125,6 @@ private: namespace { -// Define a distinct type alias for Int4 -struct Int4Type { - std::int8_t value; -}; -struct UInt4Type { - std::uint8_t value; -}; -struct Int3Type { - std::int8_t value; -}; -struct UInt3Type { - std::uint8_t value; -}; -struct Int2Type { - std::int8_t value; -}; -struct UInt2Type { - std::uint8_t value; -}; -struct Dual_Int4Type { - std::int8_t value; -}; -struct Dual_UInt4Type { - std::uint8_t value; -}; -struct Dual_Int3Type { - std::int8_t value; -}; -struct Dual_UInt3Type { - std::uint8_t value; -}; -struct Quad_Int2Type { - std::int8_t value; -}; -struct Quad_UInt2Type { - std::uint8_t value; -}; -struct BinaryType { - std::int8_t value; -}; -struct Octo_BinaryType { - std::uint8_t value; -}; - - -// template <Aidge::DataType D> struct AidgeNbBits { static const int nbBits; }; -// template <> const int AidgeNbBits<Aidge::DataType::Int4>::nbBits = 4; - template <Aidge::DataType D> struct WeightInterleavingType { static const Aidge::DataType type; }; template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Int4>::type = Aidge::DataType::Dual_Int4; template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::UInt4>::type = Aidge::DataType::Dual_UInt4; @@ -187,18 +139,6 @@ template <typename T> struct NativeType { static const Aidge::DataType type; }; template <> const Aidge::DataType NativeType<double>::type = Aidge::DataType::Float64; template <> const Aidge::DataType NativeType<float>::type = Aidge::DataType::Float32; template <> const Aidge::DataType NativeType<half_float::half>::type = Aidge::DataType::Float16; -template <> const Aidge::DataType NativeType<Int4Type>::type = Aidge::DataType::Int4; -template <> const Aidge::DataType NativeType<UInt4Type>::type = Aidge::DataType::UInt4; -template <> const Aidge::DataType NativeType<Int3Type>::type = Aidge::DataType::Int3; -template <> const Aidge::DataType NativeType<UInt3Type>::type = Aidge::DataType::UInt3; -template <> const Aidge::DataType NativeType<Int2Type>::type = Aidge::DataType::Int2; -template <> const Aidge::DataType NativeType<UInt2Type>::type = Aidge::DataType::UInt2; -template <> const Aidge::DataType NativeType<Dual_Int4Type>::type = Aidge::DataType::Dual_Int4; -template <> const Aidge::DataType NativeType<Dual_UInt4Type>::type = Aidge::DataType::Dual_UInt4; -template <> const Aidge::DataType NativeType<Dual_Int3Type>::type = Aidge::DataType::Dual_Int3; -template <> const Aidge::DataType NativeType<Dual_UInt3Type>::type = Aidge::DataType::Dual_UInt3; -template <> const Aidge::DataType NativeType<Quad_Int2Type>::type = Aidge::DataType::Quad_Int2; -template <> const Aidge::DataType NativeType<Quad_UInt2Type>::type = Aidge::DataType::Quad_UInt2; template <> const Aidge::DataType NativeType<std::int8_t>::type = Aidge::DataType::Int8; template <> const Aidge::DataType NativeType<std::int16_t>::type = Aidge::DataType::Int16; template <> const Aidge::DataType NativeType<std::int32_t>::type = Aidge::DataType::Int32; @@ -225,20 +165,20 @@ template <Aidge::DataType D> struct cpptype { template <> struct cpptype<Aidge::DataType::Float16> { using type = half_float::half; }; template <> struct cpptype<Aidge::DataType::Float32> { using type = float; }; template <> struct cpptype<Aidge::DataType::Float64> { using type = double; }; -template <> struct cpptype<Aidge::DataType::Int4> { using type = Int4Type; }; -template <> struct cpptype<Aidge::DataType::UInt4> { using type = UInt4Type; }; -template <> struct cpptype<Aidge::DataType::Int3> { using type = Int3Type; }; -template <> struct cpptype<Aidge::DataType::UInt3> { using type = UInt3Type; }; -template <> struct cpptype<Aidge::DataType::Int2> { using type = Int2Type; }; -template <> struct cpptype<Aidge::DataType::UInt2> { using type = UInt2Type; }; -template <> struct cpptype<Aidge::DataType::Dual_Int4> { using type = Dual_Int4Type; }; -template <> struct cpptype<Aidge::DataType::Dual_UInt4> { using type = Dual_UInt4Type; }; -template <> struct cpptype<Aidge::DataType::Dual_Int3> { using type = Dual_Int3Type; }; -template <> struct cpptype<Aidge::DataType::Dual_UInt3> { using type = Dual_UInt3Type; }; -template <> struct cpptype<Aidge::DataType::Quad_Int2> { using type = Quad_Int2Type; }; -template <> struct cpptype<Aidge::DataType::Quad_UInt2> { using type = Quad_UInt2Type; }; -template <> struct cpptype<Aidge::DataType::Binary> { using type = BinaryType; }; -template <> struct cpptype<Aidge::DataType::Octo_Binary> { using type = Octo_BinaryType; }; +template <> struct cpptype<Aidge::DataType::Int4> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::UInt4> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Int3> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::UInt3> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Int2> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::UInt2> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Dual_Int4> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Dual_UInt4> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Dual_Int3> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Dual_UInt3> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Quad_Int2> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Quad_UInt2> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Binary> { using type = std::int8_t; }; +template <> struct cpptype<Aidge::DataType::Octo_Binary> { using type = std::int8_t; }; template <> struct cpptype<Aidge::DataType::Int8> { using type = std::int8_t; }; template <> struct cpptype<Aidge::DataType::Int16> { using type = std::int16_t; }; template <> struct cpptype<Aidge::DataType::Int32> { using type = std::int32_t; }; -- GitLab From 84638d38da865b19cc2fb34f81bfa265b2a68e63 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 07:45:25 +0000 Subject: [PATCH 040/157] Add back use of project_name.txt in setup.py --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4f2e21711..2fb84a991 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,11 @@ from setuptools import setup, Extension from setuptools.command.build_ext import build_ext -PROJECT_NAME = "aidge_core" +def get_project_name() -> str: + return open(pathlib.Path().absolute() / "project_name.txt", "r").read().strip() + + +PROJECT_NAME = get_project_name() SETUP_DIR = pathlib.Path(__file__).parent -- GitLab From 1dc4347fc089b3047c62e0fe63a521533acd409e Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 07:52:49 +0000 Subject: [PATCH 041/157] Replace scm dependance with pbr --- pyproject.toml | 17 +++++++---------- setup.cfg | 4 ++++ 2 files changed, 11 insertions(+), 10 deletions(-) create mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index b838aca5e..92f955ddc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [project] -name = "aidge_core" +name="aidge_core" + description="Core algorithms for operators and graph of the AIDGE framework" dependencies = [ "numpy>=1.21.6", @@ -8,11 +9,11 @@ dependencies = [ requires-python = ">= 3.7" readme = "README.md" license = { file = "LICENSE" } -classifiers = [ +classifiers = [ "Development Status :: 2 - Pre-Alpha", "Programming Language :: Python :: 3" ] -dynamic = ["version"] # defined in tool.setuptools_scm +dynamic = ["version"] # defined by pbr [project.optional-dependencies] test = [ @@ -22,8 +23,8 @@ test = [ [build-system] requires = [ "setuptools>=64", - "setuptools_scm[toml]==7.1.0", - "cmake>=3.18.4.post1" + "cmake>=3.18.4.post1", + "pbr" ] build-backend = "setuptools.build_meta" @@ -40,11 +41,7 @@ exclude = [ # exclude packages matching these glob patterns (empty by default) ".unit_tests.static", ".aidge_export_aidge.__pycache__", ".aidge_export_aidge.utils.__pycache__", -] - -# SETUPTOOLS_SCM -[tool.setuptools_scm] -write_to = "aidge_core/_version.py" +] ##################################################### # CIBUILDWHEEL diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 000000000..bd90e50b2 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,4 @@ +# pbr file +[metadata] +name = file: project_name.txt +version = file: version.txt -- GitLab From 7f37a4943d9ab8c4a72e2b1ad82d27022eae70ed Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 08:31:34 +0000 Subject: [PATCH 042/157] Remove import of _version file generated by scm. --- aidge_core/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aidge_core/__init__.py b/aidge_core/__init__.py index 32042125e..0832de2c4 100644 --- a/aidge_core/__init__.py +++ b/aidge_core/__init__.py @@ -13,4 +13,3 @@ import aidge_core.utils from aidge_core.aidge_export_aidge import serialize_to_cpp from aidge_core.show_graphview import gview_to_json from aidge_core.mem_info import * -from ._version import * -- GitLab From 901ec237be0f53f7ef1ff5d789c7c3a79bd98bc1 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 13:03:02 +0000 Subject: [PATCH 043/157] Version information are generated by CMakeLists.txt (+add a function to show version information. --- CMakeLists.txt | 24 ++++++++++-- include/aidge/aidge.hpp | 1 + .../aidge/utils/sys_info/CoreVersionInfo.hpp | 37 +++++++++++++++++++ include/aidge/version.h.in | 11 ++++++ python_binding/pybind_core.cpp | 2 + .../utils/sys_info/pybind_CoreVersionInfo.cpp | 11 ++++++ 6 files changed, 82 insertions(+), 4 deletions(-) create mode 100644 include/aidge/utils/sys_info/CoreVersionInfo.hpp create mode 100644 include/aidge/version.h.in create mode 100644 python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a1dc22b4..0d308bfc0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,17 +3,29 @@ set(CXX_STANDARD 14) file(STRINGS "${CMAKE_SOURCE_DIR}/version.txt" version) +# Parse version.txt to retrieve Major, Minor and Path +string(REGEX MATCH "([0-9]+\\.[0-9]+\\.[0-9]+)" _ MATCHES ${version}) +set(PROJECT_VERSION_MAJOR ${CMAKE_MATCH_1}) +set(PROJECT_VERSION_MINOR ${CMAKE_MATCH_2}) +set(PROJECT_VERSION_PATCH ${CMAKE_MATCH_3}) + +# Retrieve latest git commit +execute_process( + COMMAND git rev-parse --short HEAD + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + OUTPUT_VARIABLE GIT_COMMIT_HASH + OUTPUT_STRIP_TRAILING_WHITESPACE + ERROR_QUIET +) + project(aidge_core VERSION ${version} DESCRIPTION "Core algorithms for operators and graph of the AIDGE framework" LANGUAGES CXX) -message(STATUS "Project name: ${CMAKE_PROJECT_NAME}") -message(STATUS "Project version: ${version}") -add_definitions(-DPROJECT_VERSION="${version}") message(STATUS "Project name: ${CMAKE_PROJECT_NAME}") message(STATUS "Project version: ${version}") - +message(STATUS "Latest git commit: ${GIT_COMMIT_HASH}") # helper for LSP users set(CMAKE_EXPORT_COMPILE_COMMANDS ON) @@ -29,6 +41,10 @@ option(TEST "Enable tests" ON) option(COVERAGE "Enable coverage" OFF) option(ENABLE_ASAN "Enable ASan (AddressSanitizer) for runtime analysis of memory use (over/underflow, memory leak, ...)" OFF) +configure_file( + "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/version.h.in" + "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/version.h" +) ############################################## # Import utils CMakeLists diff --git a/include/aidge/aidge.hpp b/include/aidge/aidge.hpp index a06202696..2756d5ac7 100644 --- a/include/aidge/aidge.hpp +++ b/include/aidge/aidge.hpp @@ -11,6 +11,7 @@ #ifndef AIDGE_IMPORTS_H_ #define AIDGE_IMPORTS_H_ +#include "version.h" #include "aidge/backend/OperatorImpl.hpp" #include "aidge/backend/TensorImpl.hpp" diff --git a/include/aidge/utils/sys_info/CoreVersionInfo.hpp b/include/aidge/utils/sys_info/CoreVersionInfo.hpp new file mode 100644 index 000000000..e19ef4965 --- /dev/null +++ b/include/aidge/utils/sys_info/CoreVersionInfo.hpp @@ -0,0 +1,37 @@ +#ifndef AIDGE_UTILS_SYS_INFO_CORE_VERSION_INFO_H +#define AIDGE_UTILS_SYS_INFO_CORE_VERSION_INFO_H + +#include "aidge/utils/Log.hpp" +#include "aidge/version.h" + +namespace Aidge { + +constexpr inline const char * getCoreProjectVersion(){ + return PROJECT_VERSION; +} + +constexpr inline const char * getCoreGitHash(){ + return PROJECT_GIT_HASH; +} + +void showCoreVersion() { + Log::info("Aidge core: {} ({}), {} {}", getCoreProjectVersion(), getCoreGitHash(), __DATE__, __TIME__); + // Compiler version + #if defined(__clang__) + /* Clang/LLVM. ---------------------------------------------- */ + Log::info("Clang/LLVM compiler version: {}.{}.{}\n", __clang_major__ , __clang_minor__, __clang_patchlevel__); + #elif defined(__ICC) || defined(__INTEL_COMPILER) + /* Intel ICC/ICPC. ------------------------------------------ */ + Log::info("Intel ICC/ICPC compiler version: {}\n", __INTEL_COMPILER); + #elif defined(__GNUC__) || defined(__GNUG__) + /* GNU GCC/G++. --------------------------------------------- */ + Log::info("GNU GCC/G++ compiler version: {}.{}.{}", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__); + #elif defined(_MSC_VER) + /* Microsoft Visual Studio. --------------------------------- */ + Log::info("Microsoft Visual Studio compiler version: {}\n", _MSC_VER); + #else + Log::info("Unknown compiler\n"); + #endif +} +} // namespace Aidge +#endif // AIDGE_UTILS_SYS_INFO_CORE_VERSION_INFO_H diff --git a/include/aidge/version.h.in b/include/aidge/version.h.in new file mode 100644 index 000000000..4b876f630 --- /dev/null +++ b/include/aidge/version.h.in @@ -0,0 +1,11 @@ +#ifndef VERSION_H +#define VERSION_H + +namespace Aidge { +static constexpr const int PROJECT_VERSION_MAJOR = @PROJECT_VERSION_MAJOR@; +static constexpr const int PROJECT_VERSION_MINOR = @PROJECT_VERSION_MINOR@; +static constexpr const int PROJECT_VERSION_PATCH = @PROJECT_VERSION_PATCH@; +static constexpr const char * PROJECT_VERSION = "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"; +static constexpr const char * PROJECT_GIT_HASH = "@GIT_COMMIT_HASH@"; +} +#endif // VERSION_H diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index f572c024d..eccbebd2f 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -16,6 +16,7 @@ namespace py = pybind11; namespace Aidge { +void init_CoreSysInfo(py::module&); void init_Random(py::module&); void init_Data(py::module&); void init_Database(py::module&); @@ -104,6 +105,7 @@ void init_TensorUtils(py::module&); void init_Filler(py::module&); void init_Aidge(py::module& m) { + init_CoreSysInfo(m); init_Random(m); init_Data(m); diff --git a/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp b/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp new file mode 100644 index 000000000..1e487aef4 --- /dev/null +++ b/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp @@ -0,0 +1,11 @@ +#include <pybind11/pybind11.h> +#include "aidge/utils/sys_info/CoreVersionInfo.hpp" + +namespace py = pybind11; +namespace Aidge { +void init_CoreSysInfo(py::module& m){ + m.def("show_core_version", &showCoreVersion); + m.def("get_core_project_version", &getCoreProjectVersion); + m.def("get_core_git_hash", &getCoreGitHash); +} +} -- GitLab From 8590eda02764479f0a661070457504f2c6a80542 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 13:15:58 +0000 Subject: [PATCH 044/157] Add project urls in pyproject.toml. --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 92f955ddc..c5c8a0600 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,13 @@ classifiers = [ ] dynamic = ["version"] # defined by pbr +[project.urls] +Homepage = "https://www.deepgreen.ai/en/platform" +Documentation = "https://eclipse-aidge.readthedocs.io/en/latest/" +Repository = "https://gitlab.eclipse.org/eclipse/aidge/aidge_core" +Issues = "https://gitlab.eclipse.org/eclipse/aidge/aidge_core/-/issues/" +Changelog = "https://gitlab.eclipse.org/eclipse/aidge/aidge_core/-/releases" + [project.optional-dependencies] test = [ "pytest" -- GitLab From 7252df0d993a4f2a08e84b89b94e0991276132e5 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 14:17:19 +0000 Subject: [PATCH 045/157] Update CMakeLists to generate version.h in install files directly. --- CMakeLists.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d308bfc0..e92bf0bb1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,11 +41,6 @@ option(TEST "Enable tests" ON) option(COVERAGE "Enable coverage" OFF) option(ENABLE_ASAN "Enable ASan (AddressSanitizer) for runtime analysis of memory use (over/underflow, memory leak, ...)" OFF) -configure_file( - "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/version.h.in" - "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/version.h" -) - ############################################## # Import utils CMakeLists set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") @@ -184,6 +179,13 @@ if(NOT $ENV{AIDGE_INSTALL} STREQUAL "") message(WARNING "CMAKE_INSTALL_PREFIX set to env variable AIDGE_INSTALL by default = ${CMAKE_INSTALL_PREFIX}") endif() +message(STATUS "Creating ${CMAKE_INSTALL_PREFIX}/include/aidge/version.h") +# Generate version.h file from config file version.h.in +configure_file( + "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/version.h.in" + "${CMAKE_INSTALL_PREFIX}/include/aidge/version.h" +) + include(GNUInstallDirs) set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/${CMAKE_PROJECT_NAME}) -- GitLab From 682eb9e1cc8c8fe1f2b9b4d81e63bf0bc1cb959c Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 14:47:45 +0000 Subject: [PATCH 046/157] Change name version.h -> core_version.h to avoid collision name when copying in install folder. --- CMakeLists.txt | 2 +- include/aidge/utils/sys_info/CoreVersionInfo.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e92bf0bb1..349d40739 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -183,7 +183,7 @@ message(STATUS "Creating ${CMAKE_INSTALL_PREFIX}/include/aidge/version.h") # Generate version.h file from config file version.h.in configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/version.h.in" - "${CMAKE_INSTALL_PREFIX}/include/aidge/version.h" + "${CMAKE_INSTALL_PREFIX}/include/aidge/core_version.h" ) include(GNUInstallDirs) diff --git a/include/aidge/utils/sys_info/CoreVersionInfo.hpp b/include/aidge/utils/sys_info/CoreVersionInfo.hpp index e19ef4965..648998ede 100644 --- a/include/aidge/utils/sys_info/CoreVersionInfo.hpp +++ b/include/aidge/utils/sys_info/CoreVersionInfo.hpp @@ -2,7 +2,7 @@ #define AIDGE_UTILS_SYS_INFO_CORE_VERSION_INFO_H #include "aidge/utils/Log.hpp" -#include "aidge/version.h" +#include "aidge/core_version.h" namespace Aidge { -- GitLab From 801d4494b20980e3d91ece8dbd8a8270579a6a10 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 14:48:35 +0000 Subject: [PATCH 047/157] Remove _core from function name following @gregkub comment https://gitlab.eclipse.org/eclipse/aidge/aidge_core/-/merge_requests/277#note_2935700 --- python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp b/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp index 1e487aef4..b498e86ed 100644 --- a/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp +++ b/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp @@ -4,8 +4,8 @@ namespace py = pybind11; namespace Aidge { void init_CoreSysInfo(py::module& m){ - m.def("show_core_version", &showCoreVersion); - m.def("get_core_project_version", &getCoreProjectVersion); - m.def("get_core_git_hash", &getCoreGitHash); + m.def("show_version", &showCoreVersion); + m.def("get_project_version", &getCoreProjectVersion); + m.def("get_git_hash", &getCoreGitHash); } } -- GitLab From 75fc4e43e5033e7f3c1de600e34b2850597ad339 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Mon, 9 Dec 2024 09:30:57 +0000 Subject: [PATCH 048/157] Update version -> core_version. --- CMakeLists.txt | 2 +- include/aidge/aidge.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 349d40739..030f362ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -179,7 +179,7 @@ if(NOT $ENV{AIDGE_INSTALL} STREQUAL "") message(WARNING "CMAKE_INSTALL_PREFIX set to env variable AIDGE_INSTALL by default = ${CMAKE_INSTALL_PREFIX}") endif() -message(STATUS "Creating ${CMAKE_INSTALL_PREFIX}/include/aidge/version.h") +message(STATUS "Creating ${CMAKE_INSTALL_PREFIX}/include/aidge/core_version.h") # Generate version.h file from config file version.h.in configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/version.h.in" diff --git a/include/aidge/aidge.hpp b/include/aidge/aidge.hpp index 2756d5ac7..f829ccf2d 100644 --- a/include/aidge/aidge.hpp +++ b/include/aidge/aidge.hpp @@ -11,7 +11,7 @@ #ifndef AIDGE_IMPORTS_H_ #define AIDGE_IMPORTS_H_ -#include "version.h" +#include "core_version.h" #include "aidge/backend/OperatorImpl.hpp" #include "aidge/backend/TensorImpl.hpp" -- GitLab From 432d65b40a03d1b06e64a555db087b37ce6e9dfb Mon Sep 17 00:00:00 2001 From: Cyril Moineau <cyril.moineau@cea.fr> Date: Fri, 6 Dec 2024 15:11:32 +0000 Subject: [PATCH 049/157] Apply 1 suggestion(s) to 1 file(s) --- include/aidge/aidge.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aidge/aidge.hpp b/include/aidge/aidge.hpp index f829ccf2d..760bf00de 100644 --- a/include/aidge/aidge.hpp +++ b/include/aidge/aidge.hpp @@ -11,7 +11,7 @@ #ifndef AIDGE_IMPORTS_H_ #define AIDGE_IMPORTS_H_ -#include "core_version.h" +#include "aidge/core_version.h" #include "aidge/backend/OperatorImpl.hpp" #include "aidge/backend/TensorImpl.hpp" -- GitLab From 46418bdd87676c1c3803c31ce2aab14057bca995 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Mon, 9 Dec 2024 15:45:37 +0000 Subject: [PATCH 050/157] Set back generation to build folders + add gitignore. --- .gitignore | 3 ++- CMakeLists.txt | 4 ++-- include/aidge/aidge.hpp | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 306c9d2f5..a14ac887e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,11 @@ -# general +# general .cache # C++ Build build*/ install*/ cppcheck-result.xml +include/aidge/core_version.h # VSCode .vscode diff --git a/CMakeLists.txt b/CMakeLists.txt index 030f362ae..62051da26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -179,11 +179,11 @@ if(NOT $ENV{AIDGE_INSTALL} STREQUAL "") message(WARNING "CMAKE_INSTALL_PREFIX set to env variable AIDGE_INSTALL by default = ${CMAKE_INSTALL_PREFIX}") endif() -message(STATUS "Creating ${CMAKE_INSTALL_PREFIX}/include/aidge/core_version.h") +message(STATUS "Creating ${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/core_version.h") # Generate version.h file from config file version.h.in configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/version.h.in" - "${CMAKE_INSTALL_PREFIX}/include/aidge/core_version.h" + "${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/core_version.h" ) include(GNUInstallDirs) diff --git a/include/aidge/aidge.hpp b/include/aidge/aidge.hpp index 760bf00de..d65a46378 100644 --- a/include/aidge/aidge.hpp +++ b/include/aidge/aidge.hpp @@ -93,5 +93,6 @@ #include "aidge/utils/Random.hpp" #include "aidge/utils/Registrar.hpp" #include "aidge/utils/Types.h" +#include "aidge/utils/sys_info/CoreVersionInfo.hpp" #endif /* AIDGE_IMPORTS_H_ */ -- GitLab From 95f7c06f314f02d2b0376643388c3769b958174b Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Fri, 20 Dec 2024 18:35:05 +0100 Subject: [PATCH 051/157] Added support for auto concatenation --- include/aidge/scheduler/Scheduler.hpp | 18 +- python_binding/scheduler/pybind_Scheduler.cpp | 9 +- src/scheduler/Scheduler.cpp | 221 +++++++++++++++++- 3 files changed, 244 insertions(+), 4 deletions(-) diff --git a/include/aidge/scheduler/Scheduler.hpp b/include/aidge/scheduler/Scheduler.hpp index 28ecde6d9..51f62ed1b 100644 --- a/include/aidge/scheduler/Scheduler.hpp +++ b/include/aidge/scheduler/Scheduler.hpp @@ -90,6 +90,12 @@ public: NotConnected }; + enum class EarlyLateSort { + Default, + AsSoonAsPossible, + AsLateAsPossible + }; + /** * @struct PriorProducersConsumers * @brief Manages producer-consumer relationships for nodes. @@ -124,9 +130,10 @@ public: /** * @brief Get the static scheduling order of nodes. * @param step The step of the static schedule to retrieve (default is 0). + * @param sorting Sorting mode. * @return Vector of shared pointers to Nodes in their scheduled order. */ - std::vector<std::shared_ptr<Node>> getStaticScheduling(std::size_t step = 0) const; + std::vector<std::shared_ptr<Node>> getStaticScheduling(std::size_t step = 0, EarlyLateSort sorting = EarlyLateSort::Default) const; /** * @brief Get the GraphView associated with this Scheduler. @@ -156,6 +163,15 @@ public: */ MemoryManager generateMemory(bool incProducers = false, bool wrapAroundBuffer = false) const; + /** + * Generate the memory layout for the current static scheduling, with auto- + * concatenation: the Concat operator is replaced by direct allocation + * when possible. + * @param incProducers If true, include the producers in the memory layout. + * @param wrapAroundBuffer If true, allow wrapping in memory planes. + */ + MemoryManager generateMemoryAutoConcat(bool incProducers = false, bool wrapAroundBuffer = false) const; + /** * @brief Connect input tensors to the data input of the GraphView. * In case of multiple data input tensors, they are mapped to producers in diff --git a/python_binding/scheduler/pybind_Scheduler.cpp b/python_binding/scheduler/pybind_Scheduler.cpp index 472af2a94..7eb0db712 100644 --- a/python_binding/scheduler/pybind_Scheduler.cpp +++ b/python_binding/scheduler/pybind_Scheduler.cpp @@ -21,6 +21,12 @@ namespace py = pybind11; namespace Aidge { void init_Scheduler(py::module& m){ + py::enum_<Scheduler::EarlyLateSort>(m, "EarlyLateSort") + .value("Default", Scheduler::EarlyLateSort::Default) + .value("AsSoonAsPossible", Scheduler::EarlyLateSort::AsSoonAsPossible) + .value("AsLateAsPossible", Scheduler::EarlyLateSort::AsLateAsPossible) + .export_values(); + py::class_<Scheduler, std::shared_ptr<Scheduler>>(m, "Scheduler") .def(py::init<std::shared_ptr<GraphView>&>(), py::arg("graph_view")) .def("graph_view", &Scheduler::graphView) @@ -28,9 +34,10 @@ void init_Scheduler(py::module& m){ .def("save_static_scheduling_diagram", &Scheduler::saveStaticSchedulingDiagram, py::arg("file_name")) .def("resetScheduling", &Scheduler::resetScheduling) .def("generate_scheduling", &Scheduler::generateScheduling) - .def("get_static_scheduling", &Scheduler::getStaticScheduling, py::arg("step") = 0) + .def("get_static_scheduling", &Scheduler::getStaticScheduling, py::arg("step") = 0, py::arg("sorting") = EarlyLateSort::Default) .def("graph_view", &Scheduler::graphView) .def("generate_memory", &Scheduler::generateMemory, py::arg("inc_producers") = false, py::arg("wrap_around_buffer") = false) + .def("generate_memory_auto_concat", &Scheduler::generateMemoryAutoConcat, py::arg("inc_producers") = false, py::arg("wrap_around_buffer") = false) ; py::class_<SequentialScheduler, std::shared_ptr<SequentialScheduler>, Scheduler>(m, "SequentialScheduler") diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index 2e9dc034e..9b655331a 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -33,6 +33,7 @@ #include "aidge/operator/MetaOperator.hpp" #include "aidge/operator/OperatorTensor.hpp" #include "aidge/operator/Producer.hpp" +#include "aidge/operator/Concat.hpp" #include "aidge/utils/Log.hpp" #include "aidge/utils/Types.h" @@ -561,6 +562,212 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemory(bool incProducers, bool wr return memManager; } +Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducers, bool wrapAroundBuffer) const { + MemoryManager memManager; + std::map<NodePtr, MemoryManager::MemoryPlane> concatMemPlane; + + for (std::size_t step = 0; step < mStaticSchedule.size(); ++step) { + // AsLateAsPossible ensures that when a node child is Concat, all the parents + // of the Concat parents have already been memory mapped! + for (const auto& node : getStaticScheduling(step, EarlyLateSort::AsLateAsPossible)) { + if (!incProducers && node->type() == Producer_Op::Type) { + memManager.releaseDependencies(node); + continue; + } + + auto itConcat = concatMemPlane.find(node); + if (itConcat != concatMemPlane.end()) { + // Skip Concat + AIDGE_INTERNAL_ASSERT(itConcat->first->type() == Concat_Op::Type); + concatMemPlane.erase(itConcat); + continue; + } + itConcat = concatMemPlane.end(); + + auto childs = node->getChildren(); + AIDGE_ASSERT(node->getOperator()->operatorType() == OperatorType::Tensor, + "Operator must be of Tensor type for node {} (of type {}).", + node->name(), node->type()); + const auto op = std::static_pointer_cast<OperatorTensor>(node->getOperator()); + + std::shared_ptr<Node> concat = nullptr; + // If the only child is a concatenation, check if we can allocate + // the concatenation result directly and skip allocation for this + // node output: + if (childs.size() == 1 && (*childs.begin())->type() == Concat_Op::Type) { + concat = *childs.begin(); + + for (const auto& concatParent : concat->getParents()) { + if (concatParent->getChildren().size() > 1) { + // not possible: at least one of the Concat parent has + // multiple children. + concat = nullptr; + break; + } + } + } + + if (concat) { + itConcat = concatMemPlane.find(concat); + } + + std::vector<const MemoryManager::MemoryPlane*> wrapAroundMemPlane; + + // Allocate a memory plane for each node's output + AIDGE_INTERNAL_ASSERT(!concat || node->nbOutputs() == 1); + for (IOIndex_t outputIdx = 0; outputIdx < node->nbOutputs(); ++outputIdx) { + auto requiredSize = op->getRequiredMemory(outputIdx, {}); + auto outputDims = (op->getOutput(outputIdx)) ? op->getOutput(outputIdx)->dims() : std::vector<DimSize_t>(); + + // If concat is not nullptr, we directly allocate the concatenation result + // Must check that we are on the right output too. + if (concat && node->getChildren(outputIdx).size() == 1) { + const auto concatOp = std::static_pointer_cast<OperatorTensor>(concat->getOperator()); + requiredSize = concatOp->getRequiredMemory(0, {}); + outputDims = (concatOp->getOutput(0)) ? concatOp->getOutput(0)->dims() : std::vector<DimSize_t>(); + } + + AIDGE_ASSERT(requiredSize.type == Elts_t::Data, + "Cannot generate memory with token-based producer-consumer model for node {} (of type {}).", + node->name(), node->type()); + + // By default, specifies a fully monolithic memory block + std::size_t size = requiredSize.data; + std::size_t stride = 0; + std::size_t length = 1; + std::size_t count = 1; + + if (outputDims.size() > 3) { + // If it is possible, assume a NCHW layout + size = op->getOutput(outputIdx)->dims().end()[-3]; + stride = outputDims.end()[-3]; + length = outputDims.end()[-1]; + count = outputDims.end()[-2]; + + AIDGE_INTERNAL_ASSERT(stride >= size); + AIDGE_INTERNAL_ASSERT(length == op->getOutput(outputIdx)->dims().end()[-1]); + AIDGE_INTERNAL_ASSERT(count == op->getOutput(outputIdx)->dims().end()[-2]); + } + + // Check if wrap around buffer is possible for this node + // (re-using previous node outputs memory for this node outputs). + // => only if this node is the only child of its parent(s) + std::size_t wrapAroundSize = 0; + std::size_t wrapAroundExtra = 0; + wrapAroundMemPlane.push_back(nullptr); // default value of wrapAroundMemPlane[outputIdx] + + // Select the best parent among all allocable nodes for + // reallocation, which is the one with most memory (in order + // to minimize the reallocation size). + const auto allocableNodes = (concat) ? concat->getParents() : std::vector<NodePtr>{node}; + for (const auto& allocableNode : allocableNodes) { + IOIndex_t inputIdx = 0; + for (const auto& parent : allocableNode->dataInputs()) { + if (parent.first && parent.first->getChildren(parent.second).size() == 1 + // there might be no existing plane if the parent was + // not yet scheduled (because it may be a recurrent connection) + && memManager.getNbPlanes(parent.first) >= parent.first->nbOutputs() + // memSpace should not be already released + && memManager.getPlanes(parent.first).end()[-parent.first->nbOutputs()+parent.second].memSpace->released == -1) + { + const auto requiredData = allocableNode->getOperator()->getNbRequiredData(inputIdx); + const auto requiredProtected = allocableNode->getOperator()->getNbRequiredProtected(inputIdx); + AIDGE_ASSERT(requiredData.type == Elts_t::Data && requiredProtected.type == Elts_t::Data, + "Cannot generate memory with token-based producer-consumer model for node {} (of type {}).", + node->name(), node->type()); + + const bool isWrappable = (requiredProtected.data < requiredData.data); + const MemoryManager::MemoryPlane& memPlane + = (concat && itConcat != concatMemPlane.end()) + ? itConcat->second + : memManager.getPlanes(parent.first).end()[-parent.first->nbOutputs()+parent.second]; + + if (isWrappable || !memManager.isWrapAround( + memPlane.memSpace, + memPlane.getFinalOffset() + - memPlane.memSpace->offset, + requiredSize.data)) + { + if (memPlane.getSize() > wrapAroundSize + requiredProtected.data + && std::find(wrapAroundMemPlane.begin(), wrapAroundMemPlane.end(), &memPlane) == wrapAroundMemPlane.end()) + { + wrapAroundSize = memPlane.getSize() - requiredProtected.data; + if (requiredSize.data > wrapAroundSize) { + wrapAroundExtra = requiredSize.data - wrapAroundSize; + } + wrapAroundMemPlane[outputIdx] = &memPlane; + } + + if (wrapAroundExtra == 0) { + break; + } + } + } + ++inputIdx; + } + } + + size_t concatOffset = 0; + + if (concat) { + // Dependencies should be concat node *childs*, not concat node + childs = concat->getChildren(); + + // Compute concatOffset + for (auto concatParent : concat->getParents()) { + if (concatParent == node) { + break; + } + else { + const auto parentOp = std::static_pointer_cast<OperatorTensor>(concatParent->getOperator()); + const auto parentRequiredSize = parentOp->getRequiredMemory(outputIdx, {}); + const auto parentOutputDims = (parentOp->getOutput(outputIdx)) ? parentOp->getOutput(outputIdx)->dims() : std::vector<DimSize_t>(); + + // By default, specifies a fully monolithic memory block + std::size_t parentSize = parentRequiredSize.data; + + if (parentOutputDims.size() > 3) { + // If it is possible, assume a NCHW layout + parentSize = parentOutputDims.end()[-3]; + } + + concatOffset += parentSize; + } + } + } + + // MemoryPlane to (re)use + const MemoryManager::MemoryPlane& memPlane + = (concat && itConcat != concatMemPlane.end()) + ? itConcat->second : + (wrapAroundBuffer && wrapAroundSize > 0) + ? (*wrapAroundMemPlane[outputIdx]) : + memManager.allocate(size, childs, stride, length, count); + + if (wrapAroundBuffer && wrapAroundSize > 0) { + memManager.reallocate(memPlane, + node, concatOffset, + size, true, wrapAroundExtra, childs, stride, length, count); + } + else { + memManager.reallocate(memPlane.memSpace, + node, memPlane.offset + concatOffset, + size, false, 0, childs, stride, length, count); + } + + if (concat && itConcat == concatMemPlane.end()) { + concatMemPlane.emplace(concat, memPlane); + } + } + + memManager.releaseDependencies(node); + memManager.tick(); + } + } + + return memManager; +} + void Aidge::Scheduler::connectInputs(const std::vector<std::shared_ptr<Aidge::Tensor>>& data){ // This version of connect inputs only connects tensor inputs in input data producers. auto inputNodes = mGraphView->getOrderedInputs(); @@ -649,11 +856,21 @@ void Aidge::Scheduler::saveStaticSchedulingDiagram(const std::string& fileName) fmt::print(fp.get(), "\n"); } -std::vector<std::shared_ptr<Aidge::Node>> Aidge::Scheduler::getStaticScheduling(std::size_t step) const { +std::vector<std::shared_ptr<Aidge::Node>> Aidge::Scheduler::getStaticScheduling(std::size_t step, EarlyLateSort sorting) const { AIDGE_ASSERT(!mStaticSchedule.empty(), "Scheduler::getStaticScheduling(): static scheduling is empty, did you generate scheduling first?"); AIDGE_ASSERT(step < mStaticSchedule.size(), "Scheduler::getStaticScheduling(): no static scheduling at step {} (available steps: {})", mStaticSchedule.size(), step); - const auto& staticSchedule = mStaticSchedule.at(step); + std::deque<StaticSchedulingElement*> staticSchedule(mStaticSchedule.at(step).begin(), mStaticSchedule.at(step).end()); + + if (sorting == EarlyLateSort::AsSoonAsPossible) { + std::stable_sort(staticSchedule.begin(), staticSchedule.end(), + [](const auto& lhs, const auto& rhs) { return ((lhs->early < rhs->early) || (lhs->early == rhs->early && lhs->late < rhs->late)); }); + } + else if (sorting == EarlyLateSort::AsLateAsPossible) { + std::stable_sort(staticSchedule.begin(), staticSchedule.end(), + [](const auto& lhs, const auto& rhs) { return ((lhs->late < rhs->late) || (lhs->late == rhs->late && lhs->early < rhs->early)); }); + } + std::vector<std::shared_ptr<Node>> schedule; std::transform(staticSchedule.begin(), staticSchedule.end(), std::back_inserter(schedule), [](const auto& v) { return v->node; }); return schedule; -- GitLab From dbddbbe7eeb758fd9c20f0b1083d72275f8718e7 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Fri, 20 Dec 2024 18:39:38 +0100 Subject: [PATCH 052/157] Fixed missing name --- python_binding/scheduler/pybind_Scheduler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_binding/scheduler/pybind_Scheduler.cpp b/python_binding/scheduler/pybind_Scheduler.cpp index 7eb0db712..d4cd7da44 100644 --- a/python_binding/scheduler/pybind_Scheduler.cpp +++ b/python_binding/scheduler/pybind_Scheduler.cpp @@ -34,7 +34,7 @@ void init_Scheduler(py::module& m){ .def("save_static_scheduling_diagram", &Scheduler::saveStaticSchedulingDiagram, py::arg("file_name")) .def("resetScheduling", &Scheduler::resetScheduling) .def("generate_scheduling", &Scheduler::generateScheduling) - .def("get_static_scheduling", &Scheduler::getStaticScheduling, py::arg("step") = 0, py::arg("sorting") = EarlyLateSort::Default) + .def("get_static_scheduling", &Scheduler::getStaticScheduling, py::arg("step") = 0, py::arg("sorting") = Scheduler::EarlyLateSort::Default) .def("graph_view", &Scheduler::graphView) .def("generate_memory", &Scheduler::generateMemory, py::arg("inc_producers") = false, py::arg("wrap_around_buffer") = false) .def("generate_memory_auto_concat", &Scheduler::generateMemoryAutoConcat, py::arg("inc_producers") = false, py::arg("wrap_around_buffer") = false) -- GitLab From 59bffdf1f1d4b47f89cfd46b303a8c07dddc80fc Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Wed, 4 Dec 2024 21:47:19 +0000 Subject: [PATCH 053/157] Rewrite memory manager log_info in Python. --- aidge_core/mem_info.py | 116 ++++++++++++++++++++++++++++++++--------- 1 file changed, 91 insertions(+), 25 deletions(-) diff --git a/aidge_core/mem_info.py b/aidge_core/mem_info.py index c7ca85bbd..53ff73cef 100644 --- a/aidge_core/mem_info.py +++ b/aidge_core/mem_info.py @@ -5,6 +5,9 @@ from pathlib import Path import aidge_core from typing import Tuple, List +import matplotlib.pyplot as plt +import aidge_core.mem_info +import numpy as np # Default memory management, which can be used for development def compute_default_mem_info(scheduler: aidge_core.Scheduler) -> Tuple[int, List]: @@ -41,20 +44,78 @@ def compute_default_mem_info(scheduler: aidge_core.Scheduler) -> Tuple[int, List mem_info[node] = [] # No meminfo for producer return mem_size, mem_info +# TODO remove +# def _gnuplot_installed(): +# try: +# # Run gnuplot with the --version flag and capture the output +# subprocess.run(["gnuplot", "--version"]) +# return True +# except FileNotFoundError: +# aidge_core.Log.warn("Gnuplot is not installed.") +# return False +# except subprocess.CalledProcessError: +# aidge_core.Log.warn("Gnuplot command found but failed to run.") +# return False + +def log_meminfo(mem_manager:aidge_core.MemoryManager, path: Path, diplay_names:bool): + """Generate a graph representing the memory allocation of each ouputs. + + Block with the smae color correspond to the same memory plane. + + :param mem_manager: Memory manager to log + :type mem_manager: aidge_core.memory_manager + :param path: Path where to save the figure + :type path: Path + :param diplay_names: If True Node names are diplayed alongside their block + :type diplay_names: bool + """ -def _gnuplot_installed(): - try: - # Run gnuplot with the --version flag and capture the output - subprocess.run(["gnuplot", "--version"]) - return True - except FileNotFoundError: - aidge_core.Log.warn("Gnuplot is not installed.") - return False - except subprocess.CalledProcessError: - aidge_core.Log.warn("Gnuplot command found but failed to run.") - return False - -def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder: Path = None, wrapping: bool = False) -> Tuple[int, List[dict]]: + max_lifetime = mem_manager.get_max_lifetime() + + # peak_usage in kwords + peak_usage = mem_manager.get_peak_usage() / 1024 + + # Set figure size 1920x1080 px + plt.figure(figsize=(19.20, 10.80)) + # Same color for each planes + colors = plt.cm.viridis(np.linspace(0, 1, len(mem_manager.get_planes()) + 1)) + color_id = 1 + for node, planes in mem_manager.get_planes().items(): + for plane in planes: + cont_offset = plane.get_contiguous_offset() + cont_size = plane.get_contiguous_size() + allocated = plane.mem_space.allocated + released = plane.mem_space.released + is_released = released >= 0 and not plane.mem_space.dependencies + x_start = allocated + y_start = cont_offset / 1024.0 + y_end = (cont_offset + cont_size) / 1024.0 + x_end = max_lifetime if not is_released else released + + plt.fill_betweenx( + [y_start, y_end], + x_start, + x_end + 1, + color=colors[color_id % len(colors)] + ) + + if diplay_names: + # Rotation for lisibility! + plt.text(x_end,y_end, node.name(), rotation=45) + color_id += 1 + + plt.axhline(y=peak_usage, color='red', linestyle='--') + plt.text(0, peak_usage, f'Peak usage = {peak_usage} KWords', color='red') + plt.xlabel("Time") + plt.ylabel("Memory usage (KWords)") + plt.title("Memory Usage Over Time") + plt.grid(True) + plt.savefig(path) + plt.close() + aidge_core.Log.notice(f"Generated memory management info at: {path}") + + +def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder: Path = None, wrapping: bool = False, display_names: bool=True) -> Tuple[int, List[dict]]: """Generates optimized memory information for a computation graph managed by a scheduler. This function analyzes the memory usage of a computation graph, determining the memory peak @@ -70,6 +131,8 @@ def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder :param wrapping: Boolean flag to enable or disable wrap-around buffer optimization. Defaults to `False`. :type wrapping: bool, optional + :param diplay_names: If True Node names are diplayed in the memory plot alongside their block, defaults to False + :type diplay_names: bool, optional :return: A tuple containing the peak memory size and a list of memory information for each scheduled node. The memory information for each node includes details such as size, offset, stride, length, count, and optional wrap-around details. @@ -88,18 +151,21 @@ def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder nodes_at_input = [n[0] for n in scheduler.graph_view().inputs()] if stats_folder is not None: - if _gnuplot_installed(): - # Use gnuplot to generate the log - os.makedirs(str(Path(stats_folder) / "graph"), exist_ok=True) - mem_manager.log("memory_info") - os.chmod("memory_info_plot.gnu", 0o777) - os.system("./memory_info_plot.gnu") - shutil.move("memory_info", str(Path(stats_folder) / "graph" / "memory_info")) - shutil.move("memory_info_plot.png", str( - Path(stats_folder) / "graph" / "memory_info_plot.png")) - os.remove("memory_info_plot.gnu") - else: - aidge_core.Log.warn("Warning: gnuplot is not installed, could not generate stat folder.") + log_meminfo(mem_manager, Path(stats_folder) / "memory_info.png", display_names) + # TODO remove + # if _gnuplot_installed(): + # # Use gnuplot to generate the log + # os.makedirs(str(Path(stats_folder) / "graph"), exist_ok=True) + # mem_manager.log("memory_info") + # os.chmod("memory_info_plot.gnu", 0o777) + # os.system("./memory_info_plot.gnu") + # shutil.move("memory_info", str(Path(stats_folder) / "graph" / "memory_info")) + # shutil.move("memory_info_plot.png", str( + # Path(stats_folder) / "graph" / "memory_info_plot.png")) + # os.remove("memory_info_plot.gnu") + # else: + # aidge_core.Log.warn("Warning: gnuplot is not installed, could not generate stat folder.") + # In the export, we currently use an unified memory buffer whose size # is determined by the memory peak usage mem_size = mem_manager.get_peak_usage() -- GitLab From 80ea57b401334a7e2d6b92f2af32b258478173a9 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Wed, 4 Dec 2024 22:18:19 +0000 Subject: [PATCH 054/157] [Min] MemManager plot, remove axis and center more the fig. --- aidge_core/mem_info.py | 51 +++++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 23 deletions(-) diff --git a/aidge_core/mem_info.py b/aidge_core/mem_info.py index 53ff73cef..dc96b49cd 100644 --- a/aidge_core/mem_info.py +++ b/aidge_core/mem_info.py @@ -45,17 +45,17 @@ def compute_default_mem_info(scheduler: aidge_core.Scheduler) -> Tuple[int, List return mem_size, mem_info # TODO remove -# def _gnuplot_installed(): -# try: -# # Run gnuplot with the --version flag and capture the output -# subprocess.run(["gnuplot", "--version"]) -# return True -# except FileNotFoundError: -# aidge_core.Log.warn("Gnuplot is not installed.") -# return False -# except subprocess.CalledProcessError: -# aidge_core.Log.warn("Gnuplot command found but failed to run.") -# return False +def _gnuplot_installed(): + try: + # Run gnuplot with the --version flag and capture the output + subprocess.run(["gnuplot", "--version"]) + return True + except FileNotFoundError: + aidge_core.Log.warn("Gnuplot is not installed.") + return False + except subprocess.CalledProcessError: + aidge_core.Log.warn("Gnuplot command found but failed to run.") + return False def log_meminfo(mem_manager:aidge_core.MemoryManager, path: Path, diplay_names:bool): """Generate a graph representing the memory allocation of each ouputs. @@ -104,12 +104,17 @@ def log_meminfo(mem_manager:aidge_core.MemoryManager, path: Path, diplay_names:b plt.text(x_end,y_end, node.name(), rotation=45) color_id += 1 + plt.xlim(0, max_lifetime + 1) + plt.ylim(0, peak_usage) plt.axhline(y=peak_usage, color='red', linestyle='--') plt.text(0, peak_usage, f'Peak usage = {peak_usage} KWords', color='red') plt.xlabel("Time") plt.ylabel("Memory usage (KWords)") plt.title("Memory Usage Over Time") plt.grid(True) + ax = plt.gca() + ax.spines['top'].set_visible(False) + ax.spines['right'].set_visible(False) plt.savefig(path) plt.close() aidge_core.Log.notice(f"Generated memory management info at: {path}") @@ -153,18 +158,18 @@ def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder if stats_folder is not None: log_meminfo(mem_manager, Path(stats_folder) / "memory_info.png", display_names) # TODO remove - # if _gnuplot_installed(): - # # Use gnuplot to generate the log - # os.makedirs(str(Path(stats_folder) / "graph"), exist_ok=True) - # mem_manager.log("memory_info") - # os.chmod("memory_info_plot.gnu", 0o777) - # os.system("./memory_info_plot.gnu") - # shutil.move("memory_info", str(Path(stats_folder) / "graph" / "memory_info")) - # shutil.move("memory_info_plot.png", str( - # Path(stats_folder) / "graph" / "memory_info_plot.png")) - # os.remove("memory_info_plot.gnu") - # else: - # aidge_core.Log.warn("Warning: gnuplot is not installed, could not generate stat folder.") + if _gnuplot_installed(): + # Use gnuplot to generate the log + os.makedirs(str(Path(stats_folder) / "graph"), exist_ok=True) + mem_manager.log("memory_info") + os.chmod("memory_info_plot.gnu", 0o777) + os.system("./memory_info_plot.gnu") + shutil.move("memory_info", str(Path(stats_folder) / "graph" / "memory_info")) + shutil.move("memory_info_plot.png", str( + Path(stats_folder) / "graph" / "memory_info_plot.png")) + os.remove("memory_info_plot.gnu") + else: + aidge_core.Log.warn("Warning: gnuplot is not installed, could not generate stat folder.") # In the export, we currently use an unified memory buffer whose size # is determined by the memory peak usage -- GitLab From 4f0ceb4d98f5bfa343786dd940dfb34267e41dcf Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Thu, 12 Dec 2024 10:44:32 +0000 Subject: [PATCH 055/157] Add matplotlib as dependance. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c5c8a0600..610b5f8c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,8 @@ name="aidge_core" description="Core algorithms for operators and graph of the AIDGE framework" dependencies = [ "numpy>=1.21.6", - "Jinja2>=3.1.2" + "Jinja2>=3.1.2", + "matplotlib" ] requires-python = ">= 3.7" readme = "README.md" -- GitLab From 28470824fa9df97fda75db3fabd020ac784a83bc Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Thu, 2 Jan 2025 09:34:56 +0000 Subject: [PATCH 056/157] Fix error with meminfo save fig. --- aidge_core/mem_info.py | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/aidge_core/mem_info.py b/aidge_core/mem_info.py index dc96b49cd..87f286bcb 100644 --- a/aidge_core/mem_info.py +++ b/aidge_core/mem_info.py @@ -44,19 +44,6 @@ def compute_default_mem_info(scheduler: aidge_core.Scheduler) -> Tuple[int, List mem_info[node] = [] # No meminfo for producer return mem_size, mem_info -# TODO remove -def _gnuplot_installed(): - try: - # Run gnuplot with the --version flag and capture the output - subprocess.run(["gnuplot", "--version"]) - return True - except FileNotFoundError: - aidge_core.Log.warn("Gnuplot is not installed.") - return False - except subprocess.CalledProcessError: - aidge_core.Log.warn("Gnuplot command found but failed to run.") - return False - def log_meminfo(mem_manager:aidge_core.MemoryManager, path: Path, diplay_names:bool): """Generate a graph representing the memory allocation of each ouputs. @@ -115,6 +102,8 @@ def log_meminfo(mem_manager:aidge_core.MemoryManager, path: Path, diplay_names:b ax = plt.gca() ax.spines['top'].set_visible(False) ax.spines['right'].set_visible(False) + folder_path = path.parent + folder_path.mkdir(parents=True, exist_ok=True) plt.savefig(path) plt.close() aidge_core.Log.notice(f"Generated memory management info at: {path}") @@ -157,19 +146,6 @@ def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder if stats_folder is not None: log_meminfo(mem_manager, Path(stats_folder) / "memory_info.png", display_names) - # TODO remove - if _gnuplot_installed(): - # Use gnuplot to generate the log - os.makedirs(str(Path(stats_folder) / "graph"), exist_ok=True) - mem_manager.log("memory_info") - os.chmod("memory_info_plot.gnu", 0o777) - os.system("./memory_info_plot.gnu") - shutil.move("memory_info", str(Path(stats_folder) / "graph" / "memory_info")) - shutil.move("memory_info_plot.png", str( - Path(stats_folder) / "graph" / "memory_info_plot.png")) - os.remove("memory_info_plot.gnu") - else: - aidge_core.Log.warn("Warning: gnuplot is not installed, could not generate stat folder.") # In the export, we currently use an unified memory buffer whose size # is determined by the memory peak usage -- GitLab From 61e9bf2abb6c60fd91bd124f48a93eb927fd2ae7 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Thu, 2 Jan 2025 09:35:42 +0000 Subject: [PATCH 057/157] Remove MemoryManager.log() method. --- .../scheduler/pybind_MemoryManager.cpp | 5 +- src/scheduler/MemoryManager.cpp | 146 ------------------ 2 files changed, 2 insertions(+), 149 deletions(-) diff --git a/python_binding/scheduler/pybind_MemoryManager.cpp b/python_binding/scheduler/pybind_MemoryManager.cpp index 0f18db405..3fce92349 100644 --- a/python_binding/scheduler/pybind_MemoryManager.cpp +++ b/python_binding/scheduler/pybind_MemoryManager.cpp @@ -36,10 +36,10 @@ void init_MemoryManager(py::module& m) .def_readwrite("released", &MemoryManager::MemorySpace::released); py::class_<MemoryManager::MemoryPlane, std::shared_ptr<MemoryManager::MemoryPlane>>(m, "MemoryPlane") - .def(py::init<std::shared_ptr<MemoryManager::MemorySpace>, + .def(py::init<std::shared_ptr<MemoryManager::MemorySpace>, MemoryManager::Clock_T, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int>(), - py::arg("mem_space"), py::arg("clock"), py::arg("offset"), + py::arg("mem_space"), py::arg("clock"), py::arg("offset"), py::arg("size"), py::arg("stride"), py::arg("length"), py::arg("count")) .def_readwrite("mem_space", &MemoryManager::MemoryPlane::memSpace) .def_readwrite("allocated", &MemoryManager::MemoryPlane::allocated) @@ -101,7 +101,6 @@ void init_MemoryManager(py::module& m) .def("get_nb_planes", (unsigned int (MemoryManager::*)(std::shared_ptr<MemoryManager::MemorySpace>) const) &MemoryManager::getNbPlanes, py::arg("mem_space")) .def("get_current_tick", &MemoryManager::getCurrentTick) .def("tick", &MemoryManager::tick) - .def("log", &MemoryManager::log, py::arg("file_name")) ; } diff --git a/src/scheduler/MemoryManager.cpp b/src/scheduler/MemoryManager.cpp index ba805f919..05f461b82 100644 --- a/src/scheduler/MemoryManager.cpp +++ b/src/scheduler/MemoryManager.cpp @@ -634,152 +634,6 @@ void Aidge::MemoryManager::tick() ++mClock; } -void Aidge::MemoryManager::log(const std::string& fileName) const -{ - auto memData = std::unique_ptr<FILE, decltype(&std::fclose)>(std::fopen(fileName.c_str(), "w"), &std::fclose); - - if (!memData) { - AIDGE_THROW_OR_ABORT(std::runtime_error, - "Could not create memory layout log file: {}", fileName); - } - - auto gnuplot = std::unique_ptr<FILE, decltype(&std::fclose)>(std::fopen((fileName + "_plot.gnu").c_str(), "w"), &std::fclose); - - if (!gnuplot) { - AIDGE_THROW_OR_ABORT(std::runtime_error, - "Could not create memory layout log file: {}", (fileName + "_plot.gnu")); - } - - const Clock_T maxLifetime = getMaxLifetime(); - const unsigned int peakUsage = getPeakUsage(); - - fmt::print(gnuplot.get(), "#!/usr/bin/gnuplot\n"); - fmt::print(gnuplot.get(), "set term pngcairo size 1280,768 noenhanced\n"); - fmt::print(gnuplot.get(), "set output \"{}\"\n", fileName + "_plot.png"); - fmt::print(gnuplot.get(), "set xrange [{}:{}]\n", 0, maxLifetime + 1); - fmt::print(gnuplot.get(), "set yrange [{}:{}]\n", 0, 1.05 * (peakUsage / 1024.0)); - fmt::print(gnuplot.get(), "set xlabel \"Time\"\n"); - fmt::print(gnuplot.get(), "set ylabel \"Memory usage (KWords)\"\n"); - fmt::print(gnuplot.get(), "set grid\n"); - fmt::print(gnuplot.get(), "set xtics 1\n"); - fmt::print(gnuplot.get(), "unset key\n"); - fmt::print(gnuplot.get(), "set palette rgbformulae 30,31,32\n"); - fmt::print(gnuplot.get(), "unset colorbox\n"); - fmt::print(gnuplot.get(), "N={}\n", mMemPlanes.size() + 1); - - unsigned int objectId = 1; - unsigned int labelId = 1; - - for (std::map<std::shared_ptr<Node>, std::vector<MemoryPlane> > - ::const_iterator it = mMemPlanes.begin(), itEnd = mMemPlanes.end(); - it != itEnd; ++it) - { - const std::string name = (*it).first->name(); - fmt::print(memData.get(), "{}\n", name); - - double minX = -1; - unsigned int maxY = 0; - - for (std::vector<MemoryPlane>::const_iterator itPlanes - = (*it).second.begin(), itPlanesBegin = (*it).second.begin(), - itPlanesEnd = (*it).second.end(); itPlanes != itPlanesEnd; - ++itPlanes) - { - const unsigned int contiguousOffset - = (*itPlanes).getContiguousOffset(); - const unsigned int contiguousSize = (*itPlanes).getContiguousSize(); - const unsigned int wrappedOffset = (*itPlanes).getWrappedOffset(); - const unsigned int wrappedSize = (*itPlanes).getWrappedSize(); - - const Clock_T allocated = (*itPlanes).allocated; - const Clock_T released = (*itPlanes).memSpace->released; - const bool isReleased = (released >= 0 - && (*itPlanes).memSpace->dependencies.empty()); - - fmt::print(memData.get(), " {} {} ({:#08x}U) -> {} ({:#08x}U)", - (itPlanes - itPlanesBegin), contiguousOffset, contiguousOffset, - (contiguousOffset + contiguousSize), (contiguousOffset + contiguousSize)); - - if (wrappedSize > 0) { - fmt::print(memData.get(), " + {} ({:#08x}U) -> {} ({:#08x}U)", - wrappedOffset, wrappedOffset, - (wrappedOffset + wrappedSize), (wrappedOffset + wrappedSize)); - } - - fmt::print(memData.get(), " [{}] @ {}", (*itPlanes).getSize(), allocated); - - if (isReleased) { - fmt::print(memData.get(), " to {}", released); - } - - fmt::print(memData.get(), "\n"); - - // Gnuplot - const double startX = allocated; - - if (startX < minX || minX < 0) { - minX = startX; - maxY = contiguousOffset + contiguousSize; - } - - if ((*itPlanes).size != (*itPlanes).stride) { - for (unsigned int offset = contiguousOffset; - offset < contiguousOffset + contiguousSize; - offset += (*itPlanes).stride) - { - fmt::print(gnuplot.get(), "set object {} rectangle from {},{} to {},{} fc palette frac ({} * 1./N)\n", - (allocated * 100 + objectId), startX, (offset / 1024.0), - (((isReleased) ? released : maxLifetime) + 1), - (std::min((offset + (*itPlanes).size), - contiguousOffset + contiguousSize) / 1024.0), - labelId); - ++objectId; - } - } - else { - fmt::print(gnuplot.get(), "set object {} rectangle from {},{} to {},{} fc palette frac ({} * 1./N)\n", - (allocated * 100 + objectId), startX, (contiguousOffset / 1024.0), - (((isReleased) ? released : maxLifetime) + 1), - ((contiguousOffset + contiguousSize) / 1024.0), - labelId); - ++objectId; - } - - if (wrappedSize > 0) { - fmt::print(gnuplot.get(), "set object {} rectangle from {},{} to {},{} fc palette frac ({} * 1./N)\n", - (allocated * 100 + objectId), startX, (wrappedOffset / 1024.0), - (((isReleased) ? released : maxLifetime) + 1), - ((wrappedOffset + contiguousSize) / 1024.0), - labelId); - ++objectId; - - fmt::print(gnuplot.get(), "set arrow from {},{} to {},{} nohead\n", - startX, (contiguousOffset / 1024.0), - (startX + 0.1), (contiguousOffset / 1024.0)); - - fmt::print(gnuplot.get(), "set arrow from {},{} to {},{} nohead\n", - (startX + 0.05), ((contiguousOffset + contiguousSize) / 1024.0), - (startX + 0.05), (wrappedOffset / 1024.0)); - } - } - - fmt::print(gnuplot.get(), "set label {} '{}' at {},{} rotate by 30 font \",8\" offset char 0.5,0.5\n", - labelId, name, minX, (maxY / 1024.0)); - ++labelId; - - fmt::print(memData.get(), "\n"); - } - - fmt::print(gnuplot.get(), "set arrow from 0,{} to {},{} nohead lc rgb \"red\"\n", - (peakUsage / 1024.0), (maxLifetime + 1), - (peakUsage / 1024.0)); - - fmt::print(gnuplot.get(), "set label {} 'Peak usage = {} KWords' at 0,{} textcolor rgb \"red\" offset char 0.5,0.5\n", - labelId, (peakUsage / 1024.0), (peakUsage / 1024.0)); - - fmt::print(gnuplot.get(), "plot 0\n"); -} - unsigned int Aidge::MemoryManager::onStack(unsigned int size) { unsigned int offset = 0; -- GitLab From beaff309652123264dbcb23cd4332a5895441958 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Thu, 2 Jan 2025 09:53:59 +0000 Subject: [PATCH 058/157] Remove MemoryManager.log() method from unit test. --- unit_tests/scheduler/Test_MemoryManager.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/unit_tests/scheduler/Test_MemoryManager.cpp b/unit_tests/scheduler/Test_MemoryManager.cpp index a49412036..b6cedfac4 100644 --- a/unit_tests/scheduler/Test_MemoryManager.cpp +++ b/unit_tests/scheduler/Test_MemoryManager.cpp @@ -136,7 +136,6 @@ TEST_CASE("allocate1", "[MemoryManager]") { REQUIRE(memManager.getPlanes(node4).back().memSpace->allocated == 3); REQUIRE(memManager.getPlanes(node4).back().memSpace->released == 4); - memManager.log("MemoryManager_allocate1.log"); } TEST_CASE("allocate2", "[MemoryManager]") { @@ -281,7 +280,6 @@ TEST_CASE("allocate2", "[MemoryManager]") { REQUIRE(memManager.getPlanes(node4).back().memSpace->allocated == 3); REQUIRE(memManager.getPlanes(node4).back().memSpace->released == 4); - memManager.log("MemoryManager_allocate2.log"); } TEST_CASE("allocate3", "[MemoryManager]") { @@ -438,7 +436,6 @@ TEST_CASE("allocate3", "[MemoryManager]") { REQUIRE(memManager.getPlanes(node4).back().memSpace->allocated == 0); REQUIRE(memManager.getPlanes(node4).back().memSpace->released == 4); - memManager.log("MemoryManager_allocate3.log"); } TEST_CASE("allocate3_wrapAround", "[MemoryManager]") { @@ -595,5 +592,4 @@ TEST_CASE("allocate3_wrapAround", "[MemoryManager]") { REQUIRE(memManager.getPlanes(node4).back().memSpace->allocated == 0); REQUIRE(memManager.getPlanes(node4).back().memSpace->released == 4); - memManager.log("MemoryManager_allocate3_wrapAround.log"); } -- GitLab From c830d4264b839374777d772daa28f8365a9af95d Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Tue, 7 Jan 2025 09:55:27 +0000 Subject: [PATCH 059/157] Add support for out of bound start and end attribute accordingly to ONNX standard. --- include/aidge/operator/Slice.hpp | 4 ++++ src/operator/Slice.cpp | 11 ++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/include/aidge/operator/Slice.hpp b/include/aidge/operator/Slice.hpp index 5bb07ae01..bf98736f0 100644 --- a/include/aidge/operator/Slice.hpp +++ b/include/aidge/operator/Slice.hpp @@ -31,6 +31,10 @@ public: void forward() override; }; +// Implementation note: +// If start or end are out of bound then it takes the max value for the given axe. +// Example Slice with start=1, end=1000, axes=0 for tensor [0, 1, 2, 3] +// Will return [1, 2, 3] enum class SliceAttr { Starts, Ends, Axes, Steps }; class Slice_Op diff --git a/src/operator/Slice.cpp b/src/operator/Slice.cpp index 02dcad58c..ab2d5b264 100644 --- a/src/operator/Slice.cpp +++ b/src/operator/Slice.cpp @@ -253,12 +253,17 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { const DimIdx_t axis = this->axes()[i] >= 0 ? static_cast<DimIdx_t>(this->axes()[i]) : static_cast<DimIdx_t>(this->axes()[i] + static_cast<DimIdx_t>(getInput(0)->nbDims())); - const DimSize_t start = this->starts()[i] >= 0 ? + DimSize_t start = this->starts()[i] >= 0 ? static_cast<DimSize_t>(this->starts()[i]) : static_cast<DimSize_t>(this->starts()[i] + static_cast<DimSize_t>(getInput(0)->dims()[axis])); - const DimSize_t end = this->ends()[i] >= 0 ? + // Clamp start to the range [0, axis_dim] + start = std::max(static_cast<DimSize_t>(0), std::min(start, getInput(0)->dims()[axis]-1)); + + DimSize_t end = this->ends()[i] >= 0 ? static_cast<DimSize_t>(this->ends()[i]) : static_cast<DimSize_t>(this->ends()[i] + static_cast<DimSize_t>(getInput(0)->dims()[axis])); + // Clamp end to the range [0, axis_dim] + end = std::max(static_cast<DimSize_t>(0), std::min(end, getInput(0)->dims()[axis]-1)); const std::int64_t step = this->steps()[i]; AIDGE_ASSERT(step != 0, "Slice_Op: Step ({}) must have a non-zero value on axis {}!", this->steps(), axis); @@ -309,4 +314,4 @@ std::shared_ptr<Aidge::Node> Aidge::Slice(const std::vector<std::int64_t>& start const std::vector<std::int64_t>& steps, const std::string &name) { return std::make_shared<Node>(std::make_shared<Slice_Op>(starts, ends, axes, steps), name); -} \ No newline at end of file +} -- GitLab From 698594a6f26c4ab0c4dcb5dab683931d3844cc11 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Tue, 7 Jan 2025 09:56:05 +0000 Subject: [PATCH 060/157] Add getInputs and getOuputs method for OperatorTensor. --- include/aidge/operator/OperatorTensor.hpp | 9 ++++++--- python_binding/operator/pybind_OperatorTensor.cpp | 2 ++ src/operator/OperatorTensor.cpp | 6 ++++++ src/operator/Slice.cpp | 7 ++++--- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/include/aidge/operator/OperatorTensor.hpp b/include/aidge/operator/OperatorTensor.hpp index 19e2f13e4..5a4fcb5f4 100644 --- a/include/aidge/operator/OperatorTensor.hpp +++ b/include/aidge/operator/OperatorTensor.hpp @@ -43,7 +43,7 @@ public: /** * @brief Operator tensor constructor. This function is not meant to be called directly but by a derived class constructor * every operator class derive from this class. - * + * * @param[in] type : type of operator (i.e. "Add", "AveragePool",...) * @param[in] inputsCategory : describes the type of each input. * @param[in] nbOut : Number of tensors this operator will output @@ -67,11 +67,14 @@ public: // input management void setInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) override; const std::shared_ptr<Tensor>& getInput(const IOIndex_t inputIdx) const; + virtual const std::vector<std::shared_ptr<Tensor>>& getInputs() const; std::shared_ptr<Data> getRawInput(const IOIndex_t inputIdx) const override final; // output management void setOutput(const IOIndex_t outputIdx, const std::shared_ptr<Data>& data) const override; virtual const std::shared_ptr<Tensor>& getOutput(const IOIndex_t outputIdx) const; + virtual const std::vector<std::shared_ptr<Tensor>>& getOutputs() const; + std::shared_ptr<Aidge::Data> getRawOutput(const Aidge::IOIndex_t outputIdx) const override final; /////////////////////////////////////////////////// @@ -94,7 +97,7 @@ public: * - TOKEN mode means that forwarddims will only ensure that all inputs and outputs of the graph the node is within are connected. * @param[in] allowDataDependency if set to true, this means that this operator output dimensions depends on the dimensions of optional parameter tensors. * @return true if dims have been properly forwarded. false otherwise. If set to false, then forwardDims will enter in token mode. - * + * */ virtual bool forwardDims(bool allowDataDependency = false); virtual bool dimsForwarded() const; @@ -110,4 +113,4 @@ protected: }; } // namespace Aidge -#endif // AIDGE_CORE_OPERATOR_OPERATORTENSOR_H_ \ No newline at end of file +#endif // AIDGE_CORE_OPERATOR_OPERATORTENSOR_H_ diff --git a/python_binding/operator/pybind_OperatorTensor.cpp b/python_binding/operator/pybind_OperatorTensor.cpp index 8c515e321..2602e115d 100644 --- a/python_binding/operator/pybind_OperatorTensor.cpp +++ b/python_binding/operator/pybind_OperatorTensor.cpp @@ -26,7 +26,9 @@ namespace Aidge { void init_OperatorTensor(py::module& m){ py::class_<OperatorTensor, std::shared_ptr<OperatorTensor>, Operator>(m, "OperatorTensor") .def("get_output", &OperatorTensor::getOutput, py::arg("outputIdx")) + .def("get_outputs", &OperatorTensor::getOutputs) .def("get_input", &OperatorTensor::getInput, py::arg("inputIdx")) + .def("get_inputs", &OperatorTensor::getInputs) .def("set_output", (void (OperatorTensor::*)(const IOIndex_t, const std::shared_ptr<Data>&) const) &OperatorTensor::setOutput, py::arg("outputIdx"), py::arg("data")) .def("set_input", (void (OperatorTensor::*)(const IOIndex_t, const std::shared_ptr<Data>&)) &OperatorTensor::setInput, py::arg("outputIdx"), py::arg("data")) diff --git a/src/operator/OperatorTensor.cpp b/src/operator/OperatorTensor.cpp index 3bdb4b171..873e93f32 100644 --- a/src/operator/OperatorTensor.cpp +++ b/src/operator/OperatorTensor.cpp @@ -92,6 +92,12 @@ const std::shared_ptr<Aidge::Tensor>& Aidge::OperatorTensor::getOutput(const Aid return mOutputs[outputIdx]; } +const std::vector<std::shared_ptr<Aidge::Tensor>>& Aidge::OperatorTensor::getOutputs() const{ + return mOutputs; +} +const std::vector<std::shared_ptr<Aidge::Tensor>>& Aidge::OperatorTensor::getInputs() const{ + return mInputs; +} std::vector<std::pair<std::vector<Aidge::DimSize_t>, std::vector<Aidge::DimSize_t>>> Aidge::OperatorTensor::computeReceptiveField( const std::vector<DimSize_t>& firstEltDims, diff --git a/src/operator/Slice.cpp b/src/operator/Slice.cpp index ab2d5b264..8e9f71e73 100644 --- a/src/operator/Slice.cpp +++ b/src/operator/Slice.cpp @@ -101,8 +101,9 @@ void Aidge::Slice_OpImpl::forward() { int step = op.steps()[axisIdx]; start = start >= 0 ? start: start + inputDims[axisIdx]; + start = std::max(0, std::min(start, static_cast<int>(inputDims[axisIdx]))); end = end >= 0 ? end: end + inputDims[axisIdx]; - + end = std::max(0, std::min(end, static_cast<int>(inputDims[axisIdx]))); // Generate the range of indices for this axis for (int idx = start; (step > 0) ? (idx < end) : (idx > end); idx += step) { ranges[axisIdx].push_back(idx); @@ -257,13 +258,13 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { static_cast<DimSize_t>(this->starts()[i]) : static_cast<DimSize_t>(this->starts()[i] + static_cast<DimSize_t>(getInput(0)->dims()[axis])); // Clamp start to the range [0, axis_dim] - start = std::max(static_cast<DimSize_t>(0), std::min(start, getInput(0)->dims()[axis]-1)); + start = std::max(static_cast<DimSize_t>(0), std::min(start, getInput(0)->dims()[axis])); DimSize_t end = this->ends()[i] >= 0 ? static_cast<DimSize_t>(this->ends()[i]) : static_cast<DimSize_t>(this->ends()[i] + static_cast<DimSize_t>(getInput(0)->dims()[axis])); // Clamp end to the range [0, axis_dim] - end = std::max(static_cast<DimSize_t>(0), std::min(end, getInput(0)->dims()[axis]-1)); + end = std::max(static_cast<DimSize_t>(0), std::min(end, getInput(0)->dims()[axis])); const std::int64_t step = this->steps()[i]; AIDGE_ASSERT(step != 0, "Slice_Op: Step ({}) must have a non-zero value on axis {}!", this->steps(), axis); -- GitLab From 8c69c41b51ea60c987e3b9a796a1bae814167e18 Mon Sep 17 00:00:00 2001 From: Cyril Moineau <cyril.moineau@cea.fr> Date: Wed, 8 Jan 2025 08:56:17 +0000 Subject: [PATCH 061/157] Apply 1 suggestion(s) to 1 file(s) --- src/operator/Slice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/Slice.cpp b/src/operator/Slice.cpp index 8e9f71e73..31c7c09c9 100644 --- a/src/operator/Slice.cpp +++ b/src/operator/Slice.cpp @@ -258,7 +258,7 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { static_cast<DimSize_t>(this->starts()[i]) : static_cast<DimSize_t>(this->starts()[i] + static_cast<DimSize_t>(getInput(0)->dims()[axis])); // Clamp start to the range [0, axis_dim] - start = std::max(static_cast<DimSize_t>(0), std::min(start, getInput(0)->dims()[axis])); + start = std::max(static_cast<DimSize_t>(0), std::min(start, getInput(0)->dims()[axis]-1)); DimSize_t end = this->ends()[i] >= 0 ? static_cast<DimSize_t>(this->ends()[i]) : -- GitLab From 2686e346957164cda999dc9b4aa42f0457118244 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Wed, 8 Jan 2025 10:53:27 +0000 Subject: [PATCH 062/157] upd: remove many warnings at compile time in release mode - move some inline functions from header to source - include what is used in header and source files to avoid relying on recursive includes - remove 'constexpr' from 'Tensor(Vector)' constructor that applied forced inlining - use C++ types and not C type (std::size_t instead of size_t) - move some default constructor/operators to src - explicitly delete some default class constructors for 'SingleGraphMatching', 'StaticAnalysis', 'MetaOpStats' and 'OperatorStats' - add default parameters to 'ArgMax' constructor - make Node::mAttrs available to the associated Operator instead of accessing it each time getOperator() is called - make some for loop access elements by reference in 'FuseBatchNorm' --- include/aidge/data/Tensor.hpp | 10 +- include/aidge/graph/GraphView.hpp | 16 +- include/aidge/graph/Matching.hpp | 37 ++-- include/aidge/graph/Node.hpp | 35 ++- include/aidge/graph/StaticAnalysis.hpp | 249 +++++++++++----------- include/aidge/operator/ArgMax.hpp | 36 +--- include/aidge/operator/Operator.hpp | 40 +++- include/aidge/utils/DynamicAttributes.hpp | 4 +- src/data/Tensor.cpp | 6 + src/graph/GraphView.cpp | 16 ++ src/graph/Matching.cpp | 67 ++++-- src/graph/Node.cpp | 11 + src/graph/StaticAnalysis.cpp | 82 +++++-- src/operator/ArgMax.cpp | 25 ++- src/recipes/FuseBatchNorm.cpp | 6 +- 15 files changed, 386 insertions(+), 254 deletions(-) diff --git a/include/aidge/data/Tensor.hpp b/include/aidge/data/Tensor.hpp index 627a5a478..fdeef2a8e 100644 --- a/include/aidge/data/Tensor.hpp +++ b/include/aidge/data/Tensor.hpp @@ -112,7 +112,7 @@ class Tensor : public Data, * @tparam T datatype */ template <typename T> - constexpr Tensor(Vector<T> &&arr) + Tensor(Vector<T> &&arr) : Data(Type), mDataType(NativeType<T>::type), mDims({arr.data.size()}), @@ -204,13 +204,13 @@ class Tensor : public Data, * Tensor and the initial one. * @param other */ - Tensor(const Tensor& other) = default; + Tensor(const Tensor& other); /** * @brief Move constructor. * @param other */ - Tensor(Tensor&& other) = default; + Tensor(Tensor&& other); /** * @brief Copy dimensions, datatype and data from another Tensor. @@ -219,8 +219,8 @@ class Tensor : public Data, * @param other other Tensor object. * @return Tensor& */ - Tensor &operator=(const Tensor& other) = default; - Tensor &operator=(Tensor&& other) = default; + Tensor &operator=(const Tensor& other); + Tensor &operator=(Tensor&& other); template <typename T> constexpr Tensor &operator=(Vector<T> &&arr) { diff --git a/include/aidge/graph/GraphView.hpp b/include/aidge/graph/GraphView.hpp index 76f5dcdfc..e122aa446 100644 --- a/include/aidge/graph/GraphView.hpp +++ b/include/aidge/graph/GraphView.hpp @@ -424,21 +424,7 @@ public: addChild(toOtherNode, mNodeRegistry.at(fromOutNodeName), fromTensor, toTensor); } - inline void updateNodeName(const std::shared_ptr<Node>& node, const std::string& newName){ - if (!newName.empty()) { - auto itNew = mNodeRegistry.insert(std::make_pair(newName, node)); - if (!itNew.second) { - Log::notice("Replacing existing node name in graph node name registry: {}", newName); - (itNew.first)->second = node; - } - } - - if (!node->name().empty()) { - const auto it = mNodeRegistry.find(node->name()); - AIDGE_ASSERT(it != mNodeRegistry.end(), "No node named {} in graph {}, the graph may be corrupted !", node->name(), name()); - mNodeRegistry.erase(it); - } - } + void updateNodeName(const std::shared_ptr<Node>& node, const std::string& newName); /** * @brief Include a GraphView content in the current GraphView and link diff --git a/include/aidge/graph/Matching.hpp b/include/aidge/graph/Matching.hpp index 3b0874580..c8de86e90 100644 --- a/include/aidge/graph/Matching.hpp +++ b/include/aidge/graph/Matching.hpp @@ -12,9 +12,12 @@ #ifndef AIDGE_CORE_GRAPH_MATCHING_H_ #define AIDGE_CORE_GRAPH_MATCHING_H_ +#include <functional> #include <map> #include <memory> #include <set> +#include <string> + #include "aidge/graph/Node.hpp" #include "aidge/graph/GraphView.hpp" @@ -43,10 +46,10 @@ public: bool singleOutput = true; IOIndex_t edgeLeftIdx = 0; IOIndex_t edgeRightIdx = 0; - NodePtr startNode; + std::shared_ptr<Node> startNode; // For check & debug purpose: - size_t depth = 0; + std::size_t depth = 0; std::set<std::string> anchors; }; @@ -56,8 +59,8 @@ public: // We use graph->rootNode() as the std::set key, which is guaranteed // to never change after insertion! mutable std::shared_ptr<GraphView> graph; - mutable std::map<std::string, std::map<std::string, NodePtr>> anchors; - mutable NodePtr startNode; + mutable std::map<std::string, std::map<std::string, std::shared_ptr<Node>>> anchors; + mutable std::shared_ptr<Node> startNode; MatchingResult(); @@ -66,11 +69,14 @@ public: ~MatchingResult() noexcept; }; + SinglePassGraphMatching() = delete; SinglePassGraphMatching(std::shared_ptr<GraphView> graph) : mGraph(graph) {} SinglePassGraphMatching(const SinglePassGraphMatching& other); - SinglePassGraphMatching& operator=(const SinglePassGraphMatching& other); + ~SinglePassGraphMatching() noexcept; + SinglePassGraphMatching& operator=(const SinglePassGraphMatching& other); + /** * Matches a query by direct, single pass parse and match. * The returned matches are non-ordered and therefore stored in a std::set. @@ -141,26 +147,26 @@ public: /** * @brief Same as match() but with a mandatory start node. - * + * * @param startNode Mandatory start node for the query. * @param query The query to search. * @return MatchingResult MatchingResult struct, with empty graph if query * is not found, or the graph corresponding to the query. */ - MatchingResult matchFrom(NodePtr startNode, const std::string& query); + MatchingResult matchFrom(std::shared_ptr<Node> startNode, const std::string& query); /** * Filter to keep only the longest disjoint (non-overlapping) matches. */ std::set<MatchingResult> filterLonguestDisjoint(const std::set<MatchingResult>& matches); - inline void addNodeLambda(const std::string& name, std::function<bool(const NodePtr&)> func) { + inline void addNodeLambda(const std::string& name, std::function<bool(const std::shared_ptr<Node>&)> func) { mLambda[name] = func; } private: std::shared_ptr<GraphView> mGraph; - std::map<std::string, std::function<bool(const NodePtr&)>> mLambda; + std::map<std::string, std::function<bool(const std::shared_ptr<Node>&)>> mLambda; /** * QUANTIFIER = '?' | '*' | '+' | ('{' [0-9]+ '}') @@ -205,13 +211,6 @@ private: */ bool matchNode(Context& ctx, std::set<MatchingResult>& matches); - inline void removeWhiteSpace(std::string& str) { - str.erase(str.begin(), - std::find_if(str.begin(), - str.end(), - [](char c) { return !std::isspace(c); })); - } - struct CompareMatchingResultSize { bool operator()(const MatchingResult& lhs, const MatchingResult& rhs) const { // Some matches size could be the same @@ -225,10 +224,8 @@ private: }; }; -inline bool operator<(const Aidge::SinglePassGraphMatching::MatchingResult& lhs, const Aidge::SinglePassGraphMatching::MatchingResult& rhs) { - // Matches rootNode are guaranteed to be different! - return lhs.graph->rootNode() < rhs.graph->rootNode(); -} +bool operator<(const SinglePassGraphMatching::MatchingResult& lhs, const SinglePassGraphMatching::MatchingResult& rhs); + } // namespace Aidge #endif /* AIDGE_CORE_GRAPH_MATCHING_H_ */ diff --git a/include/aidge/graph/Node.hpp b/include/aidge/graph/Node.hpp index a16bbd63e..a57ccc91f 100644 --- a/include/aidge/graph/Node.hpp +++ b/include/aidge/graph/Node.hpp @@ -12,13 +12,13 @@ #ifndef AIDGE_CORE_GRAPH_NODE_H_ #define AIDGE_CORE_GRAPH_NODE_H_ -#include <cassert> +#include <deque> +#include <functional> #include <memory> #include <set> #include <string> #include <vector> -#include <deque> -#include <utility> +#include <utility> // std::pair #ifdef PYBIND #include <pybind11/pybind11.h> @@ -27,7 +27,9 @@ #include "aidge/graph/Connector.hpp" #include "aidge/operator/Operator.hpp" +#include "aidge/utils/DynamicAttributes.hpp" #include "aidge/utils/Types.h" +#include "aidge/utils/ErrorHandling.hpp" #ifdef PYBIND namespace py = pybind11; @@ -131,7 +133,7 @@ public: * @brief Name of the Node. * @return std::string */ - inline std::string name() const noexcept { return mAttrs->getAttr<std::string>("name"); } + std::string name() const noexcept { return mAttrs->getAttr<std::string>("name"); } /** * @brief Set the Node name. @@ -175,7 +177,7 @@ public: * @brief Get the Operator object of the Node. * @return std::shared_ptr<Operator> */ - inline std::shared_ptr<Operator> getOperator() const { return (*mOperator)(mAttrs); } + inline std::shared_ptr<Operator> getOperator() const { return mOperator; } // inline std::shared_ptr<Operator> getOperator() const { return mOperator; } /////////////////////////////////////////////////////// @@ -212,7 +214,7 @@ public: * @return std::pair<std::shared_ptr<Node>, IOIndex_t> */ inline std::pair<NodePtr, IOIndex_t> input(const IOIndex_t inID) const { - assert((inID != gk_IODefaultIndex) && (inID < nbInputs()) && "Input index out of bound."); + AIDGE_ASSERT((inID != gk_IODefaultIndex) && (inID < nbInputs()), "Input index out of bound."); return std::pair<NodePtr, IOIndex_t>(mParents[inID], mIdOutParents[inID]); } @@ -261,7 +263,7 @@ public: * @details [data, data, weight, bias] => 4 * @return IOIndex_t */ - inline IOIndex_t nbInputs() const noexcept { return getOperator()->nbInputs(); } + inline IOIndex_t nbInputs() const noexcept { return mOperator->nbInputs(); } /** * @brief Category of a specific input (Data or Param, optional or not). @@ -269,7 +271,7 @@ public: * @return InputCategory */ inline InputCategory inputCategory(IOIndex_t idx) const { - return getOperator()->inputCategory(idx); + return mOperator->inputCategory(idx); } /** @@ -279,7 +281,7 @@ public: * @return true if the operator defines it as a back edge */ inline bool parentIsBackEdge(IOIndex_t idx) const { - return getOperator()->isBackEdge(idx); + return mOperator->isBackEdge(idx); } /** @@ -292,7 +294,7 @@ public: * @brief Getter for the number of Output Tensors of the Node. * @return IOIndex_t */ - inline IOIndex_t nbOutputs() const noexcept { return getOperator()->nbOutputs(); } + inline IOIndex_t nbOutputs() const noexcept { return mOperator->nbOutputs(); } IOIndex_t nbValidOutputs() const; @@ -304,15 +306,7 @@ public: * @brief Set of pointers to each GraphView containing this Node * @return std::set<GraphView> */ - inline std::set<std::shared_ptr<GraphView>> views() const noexcept { - std::set<std::shared_ptr<GraphView>> res; - for (const auto &v : mViews) { - if (auto p = v.lock()) { - res.insert(p); - } - } - return res; - } + std::set<std::shared_ptr<GraphView>> views() const noexcept; /** * @brief Add a GraphView pointer to the list of GraphView containing @@ -323,7 +317,7 @@ public: mViews.insert(std::weak_ptr<GraphView>(graphPtr)); } - inline void removeView(const std::shared_ptr<GraphView> &graphPtr) { + void removeView(const std::shared_ptr<GraphView> &graphPtr) { mViews.erase(graphPtr); } @@ -368,7 +362,6 @@ public: * @return std::shared_ptr<Node>& */ inline NodePtr &getParent(const IOIndex_t inId) { - assert(inId != gk_IODefaultIndex); return mParents.at(inId); } diff --git a/include/aidge/graph/StaticAnalysis.hpp b/include/aidge/graph/StaticAnalysis.hpp index d3fe68174..cc5532224 100644 --- a/include/aidge/graph/StaticAnalysis.hpp +++ b/include/aidge/graph/StaticAnalysis.hpp @@ -13,13 +13,12 @@ #ifndef AIDGE_CORE_GRAPH_STATICANALYSIS_H_ #define AIDGE_CORE_GRAPH_STATICANALYSIS_H_ +#include <cstddef> // std::size_t #include <memory> +#include <string> -#include "aidge/utils/Registrar.hpp" -#include "aidge/graph/GraphView.hpp" #include "aidge/data/Tensor.hpp" -#include "aidge/operator/OperatorTensor.hpp" - +#include "aidge/graph/GraphView.hpp" #include "aidge/operator/AvgPooling.hpp" #include "aidge/operator/Producer.hpp" #include "aidge/operator/Conv.hpp" @@ -27,125 +26,131 @@ #include "aidge/operator/FC.hpp" #include "aidge/operator/MatMul.hpp" #include "aidge/operator/MaxPooling.hpp" +#include "aidge/operator/Operator.hpp" +#include "aidge/operator/OperatorTensor.hpp" #include "aidge/operator/ReduceMean.hpp" #include "aidge/operator/ReduceSum.hpp" #include "aidge/operator/Softmax.hpp" #include "aidge/operator/MetaOperator.hpp" +#include "aidge/utils/Registrar.hpp" namespace Aidge { /** * @brief Base class to compute statistics from an Operator. - * + * */ class OperatorStats : public Registrable<OperatorStats, std::string, std::function<std::shared_ptr<OperatorStats>(const Operator&)>> { public: + OperatorStats() = delete; OperatorStats(const Operator& op); - const Operator& getOperator() const noexcept { return mOp; } + + virtual ~OperatorStats(); + + inline const Operator& getOperator() const noexcept { return mOp; } /** - * @brief Get the worst case total number of arithmetic operations for the + * @brief Get the worst case total number of arithmetic operations for the * operator data flow. This includes base arithmetic operations: +, -, / and *. - * Control flow operations (loop counters, index computation...) and memory + * Control flow operations (loop counters, index computation...) and memory * accesses are not included. - * A naive implementation is considered (more operations might be required + * A naive implementation is considered (more operations might be required * for numerical stability in an actual implementation). * Example of Operator with only arithmetic operations: Conv. - * - * @return size_t Number of arithmetic operations. + * + * @return std::size_t Number of arithmetic operations. */ - virtual size_t getNbArithmOps() const { return 2 * getNbMACOps(); }; + virtual std::size_t getNbArithmOps() const { return 2 * getNbMACOps(); }; /** - * @brief Get the worst case total number of logic operations for the + * @brief Get the worst case total number of logic operations for the * operator data flow. This includes operations like logical shift, or, and... - * Control flow operations (loop counters, index computation...) and memory + * Control flow operations (loop counters, index computation...) and memory * accesses are not included. - * A naive implementation is considered (more operations might be required + * A naive implementation is considered (more operations might be required * for numerical stability in an actual implementation). * Example of Operator with only logic operations: BitShift. - * - * @return size_t Number of logic operations. + * + * @return std::size_t Number of logic operations. */ - virtual size_t getNbLogicOps() const { return 0; }; + virtual std::size_t getNbLogicOps() const { return 0; }; /** - * @brief Get the worst case total number of comparison operations for the + * @brief Get the worst case total number of comparison operations for the * operator data flow. This includes operations like <, >, =... - * Control flow operations (loop counters, index computation...) and memory + * Control flow operations (loop counters, index computation...) and memory * accesses are not included. - * A naive implementation is considered (more operations might be required + * A naive implementation is considered (more operations might be required * for numerical stability in an actual implementation). * Example of Operator with only comparison operations: MaxPool. - * - * @return size_t Number of comparison operations. + * + * @return std::size_t Number of comparison operations. */ - virtual size_t getNbCompOps() const { return 0; }; + virtual std::size_t getNbCompOps() const { return 0; }; /** * @brief Get the worst case total number of non-linear (NL) operations for the * operator data flow. This includes operations like calls to tanh(), erf(), cos()... - * Control flow operations (loop counters, index computation...) and memory + * Control flow operations (loop counters, index computation...) and memory * accesses are not included. - * A naive implementation is considered (more operations might be required + * A naive implementation is considered (more operations might be required * for numerical stability in an actual implementation). * Example of Operator with only NL operations: Tanh. * Non-linear operations are necessarily of floating-point type. - * - * @return size_t Number of non-linear (NL) operations. + * + * @return std::size_t Number of non-linear (NL) operations. */ - virtual size_t getNbNLOps() const { return 0; }; + virtual std::size_t getNbNLOps() const { return 0; }; /** * @brief Get the worst case total number of operations for the operator data flow. * Total number of operations = arithmetic ops + logic ops + comp ops + NL ops. - * Control flow operations (loop counters, index computation...) and memory + * Control flow operations (loop counters, index computation...) and memory * accesses are not included. - * A naive implementation is considered (more operations might be required + * A naive implementation is considered (more operations might be required * for numerical stability in an actual implementation). - * - * @return size_t Number of operations. + * + * @return std::size_t Number of operations. */ - size_t getNbOps() const { return getNbArithmOps() + getNbLogicOps() + getNbCompOps() + getNbNLOps(); }; + std::size_t getNbOps() const { return getNbArithmOps() + getNbLogicOps() + getNbCompOps() + getNbNLOps(); }; /** * @brief Get the worst case total number of INT arithmetic operations for * the operator data flow. * Such that getNbArithmOps() = getNbArithmIntOps() + getNbArithmFpOps() - * Control flow operations (loop counters, index computation...) and memory + * Control flow operations (loop counters, index computation...) and memory * accesses are not included. - * A naive implementation is considered (more operations might be required + * A naive implementation is considered (more operations might be required * for numerical stability in an actual implementation). - * - * @return size_t Number of INT arithmetic operations. + * + * @return std::size_t Number of INT arithmetic operations. */ - virtual size_t getNbArithmIntOps() const; + virtual std::size_t getNbArithmIntOps() const; /** - * @brief Get the worst case total number of FP arithmetic operations for + * @brief Get the worst case total number of FP arithmetic operations for * the operator data flow. * Such that getNbArithmOps() = getNbArithmIntOps() + getNbArithmFpOps() - * Control flow operations (loop counters, index computation...) and memory + * Control flow operations (loop counters, index computation...) and memory * accesses are not included. - * A naive implementation is considered (more operations might be required + * A naive implementation is considered (more operations might be required * for numerical stability in an actual implementation). - * - * @return size_t Number of FP arithmetic operations. + * + * @return std::size_t Number of FP arithmetic operations. */ - size_t getNbArithmFpOps() const { return getNbArithmOps() - getNbArithmIntOps(); }; + std::size_t getNbArithmFpOps() const { return getNbArithmOps() - getNbArithmIntOps(); }; /** * @brief Get the worst case total number of MAC operations for the operator - * data flow. MAC operations are included in getNbArithmOps(), with 1 MAC + * data flow. MAC operations are included in getNbArithmOps(), with 1 MAC * operation counted as 2 arithmetic operations. MAC can be INT of FP. - * Control flow operations (loop counters, index computation...) and memory + * Control flow operations (loop counters, index computation...) and memory * accesses are not included. - * A naive implementation is considered (more operations might be required + * A naive implementation is considered (more operations might be required * for numerical stability in an actual implementation). - * - * @return size_t Number of MAC operations. + * + * @return std::size_t Number of MAC operations. */ - virtual size_t getNbMACOps() const { return 0; }; - virtual ~OperatorStats() = default; + virtual std::size_t getNbMACOps() const { return 0; }; protected: const Operator &mOp; @@ -153,16 +158,20 @@ protected: /** * @brief Base class to compute statistics from a GraphView - * + * */ class StaticAnalysis : public std::enable_shared_from_this<StaticAnalysis> { public: + StaticAnalysis() = delete; StaticAnalysis(std::shared_ptr<GraphView> graph); - const std::shared_ptr<GraphView> getGraph() const noexcept { return mGraph; } + + virtual ~StaticAnalysis(); + + inline const std::shared_ptr<GraphView> getGraph() const noexcept { return mGraph; } /** * @brief Get the Operator Stats object corresponding to the given node. - * + * * @param node Node * @return std::shared_ptr<OperatorStats> Node's Operator stats */ @@ -172,65 +181,67 @@ public: * @brief Get the number of parameters associated to a node. This includes * all Producers directly connected to the node's inputs as well as all * internal Producers (in case of a meta operator). - * + * * Note: this function does not check if parameters are shared between * several nodes or not. This means that simply adding parameters count from * several nodes may lead to a higher number of parameters than in reality * if some of them are shared. - * + * * @param node Node - * @return size_t Number of parameters + * @return std::size_t Number of parameters */ - virtual size_t getNbParams(std::shared_ptr<Node> node) const; + virtual std::size_t getNbParams(std::shared_ptr<Node> node) const; /** * @brief Get the total parameters memory size, in bits, associated to a node. - * This includes all Producers directly connected to the node's inputs as + * This includes all Producers directly connected to the node's inputs as * well as all internal Producers (in case of a meta operator). - * + * * Note: this function does not check if parameters are shared between * several nodes or not. This means that simply adding parameters size from * several nodes may lead to a higher parameter size than in reality * if some of them are shared. - * + * * @param node Node - * @return size_t Total parameters memory, in bits + * @return std::size_t Total parameters memory, in bits */ - virtual size_t getParamsSize(std::shared_ptr<Node> node) const; - - size_t getNbArithmOps() const { return accumulate(&OperatorStats::getNbArithmOps); } - size_t getNbLogicOps() const { return accumulate(&OperatorStats::getNbLogicOps); } - size_t getNbCompOps() const { return accumulate(&OperatorStats::getNbCompOps); } - size_t getNbNLOps() const { return accumulate(&OperatorStats::getNbNLOps); } - size_t getNbOps() const { return accumulate(&OperatorStats::getNbOps); } - size_t getNbArithmIntOps() const { return accumulate(&OperatorStats::getNbArithmIntOps); } - size_t getNbArithmFpOps() const { return accumulate(&OperatorStats::getNbArithmFpOps); } - size_t getNbMACOps() const { return accumulate(&OperatorStats::getNbMACOps); } + virtual std::size_t getParamsSize(std::shared_ptr<Node> node) const; + + std::size_t getNbArithmOps() const; + std::size_t getNbLogicOps() const; + std::size_t getNbCompOps() const; + std::size_t getNbNLOps() const; + std::size_t getNbOps() const; + std::size_t getNbArithmIntOps() const; + std::size_t getNbArithmFpOps() const; + std::size_t getNbMACOps() const; virtual void summary(bool incProducers = false) const; - virtual ~StaticAnalysis() = default; protected: const std::shared_ptr<GraphView> mGraph; - size_t accumulate(size_t (OperatorStats::*func)() const) const; + std::size_t accumulate(std::size_t (OperatorStats::*func)() const) const; }; //////////////////////////////////////////////////////////////////////////////// class MetaOpStats : public OperatorStats { public: + MetaOpStats() = delete; MetaOpStats(const Operator& op) : OperatorStats(op) {} + ~MetaOpStats(); + static std::unique_ptr<MetaOpStats> create(const Operator& op) { return std::make_unique<MetaOpStats>(op); } - size_t getNbArithmOps() const override { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbArithmOps(); } - size_t getNbLogicOps() const override { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbLogicOps(); } - size_t getNbCompOps() const override { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbCompOps(); } - size_t getNbNLOps() const override { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbNLOps(); } - size_t getNbArithmIntOps() const override { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbArithmIntOps(); } - size_t getNbMACOps() const override { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbMACOps(); } + std::size_t getNbArithmOps() const override; + std::size_t getNbLogicOps() const override; + std::size_t getNbCompOps() const override; + std::size_t getNbNLOps() const override; + std::size_t getNbArithmIntOps() const override; + std::size_t getNbMACOps() const override; }; template <class OP> @@ -242,7 +253,7 @@ public: return std::make_unique<ConvStats<OP>>(op); } - size_t getNbMACOps() const override { + std::size_t getNbMACOps() const override { const OP& op_ = dynamic_cast<const OP&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); const std::size_t weightsSize = op_.getInput(1)->size(); @@ -250,7 +261,7 @@ public: = std::accumulate(op_.getOutput(0)->dims().cbegin() + 2, op_.getOutput(0)->dims().cend(), 1, - std::multiplies<size_t>()); // NCHW... + std::multiplies<std::size_t>()); // NCHW... const std::size_t batchSize = op_.getInput(0)->dims()[0]; // NCHW return batchSize * (weightsSize * outputSize); } @@ -271,19 +282,19 @@ public: return std::make_unique<MaxPoolingStats<OP>>(op); } - size_t getNbCompOps() const override { + std::size_t getNbCompOps() const override { const OP& op_ = dynamic_cast<const OP&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); const std::size_t poolSize = std::accumulate(op_.kernelDims().cbegin(), op_.kernelDims().cend(), 1, - std::multiplies<size_t>()); + std::multiplies<std::size_t>()); const std::size_t outputSize = std::accumulate(op_.getOutput(0)->dims().cbegin() + 2, op_.getOutput(0)->dims().cend(), 1, - std::multiplies<size_t>()); // NCHW... + std::multiplies<std::size_t>()); // NCHW... const std::size_t batchSize = op_.getInput(0)->dims()[0]; // NCHW return batchSize * ((poolSize - 1) * outputSize); } @@ -302,19 +313,19 @@ public: return std::make_unique<AvgPoolingStats<OP>>(op); } - size_t getNbArithmOps() const override { + std::size_t getNbArithmOps() const override { const OP& op_ = dynamic_cast<const OP&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); const std::size_t poolSize = std::accumulate(op_.kernelDims().cbegin(), op_.kernelDims().cend(), 1, - std::multiplies<size_t>()); + std::multiplies<std::size_t>()); const std::size_t outputSize = std::accumulate(op_.getOutput(0)->dims().cbegin() + 2, op_.getOutput(0)->dims().cend(), 1, - std::multiplies<size_t>()); // NCHW... + std::multiplies<std::size_t>()); // NCHW... const std::size_t batchSize = op_.getInput(0)->dims()[0]; // NCHW // (poolSize - 1) additions + 1 division for each output return batchSize * (poolSize * outputSize); @@ -334,7 +345,7 @@ public: return std::make_unique<FCStats>(op); } - size_t getNbMACOps() const override { + std::size_t getNbMACOps() const override { const FC_Op& op_ = dynamic_cast<const FC_Op&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); const std::size_t weightsSize = op_.getInput(1)->size(); @@ -353,20 +364,20 @@ public: return std::make_unique<MatMulStats>(op); } - size_t getNbMACOps() const override { + std::size_t getNbMACOps() const override { const MatMul_Op& op_ = dynamic_cast<const MatMul_Op&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); - const size_t n = (op_.getInput(0)->dims().size() > 1) + const std::size_t n = (op_.getInput(0)->dims().size() > 1) ? op_.getInput(0)->dims().end()[-2] : 1; - const size_t k = op_.getInput(0)->dims().back(); - const size_t m = (op_.getInput(1)->dims().size() > 1) + const std::size_t k = op_.getInput(0)->dims().back(); + const std::size_t m = (op_.getInput(1)->dims().size() > 1) ? op_.getInput(1)->dims().back() : 1; - const size_t nb = (op_.getInput(0)->dims().size() > 2) + const std::size_t nb = (op_.getInput(0)->dims().size() > 2) ? std::accumulate(op_.getInput(0)->dims().cbegin(), op_.getInput(0)->dims().cend() - 2, 1, - std::multiplies<size_t>()) - : 1; + std::multiplies<std::size_t>()) + : 1; return nb * n * m * k; } @@ -382,7 +393,7 @@ public: return std::make_unique<ReLUStats>(op); } - size_t getNbCompOps() const override { + std::size_t getNbCompOps() const override { const OperatorTensor& op_ = dynamic_cast<const OperatorTensor&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); return op_.getOutput(0)->size(); @@ -399,14 +410,14 @@ public: return std::make_unique<AbsStats>(op); } - size_t getNbCompOps() const override { + std::size_t getNbCompOps() const override { const OperatorTensor& op_ = dynamic_cast<const OperatorTensor&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); return op_.getOutput(0)->size(); } // This is in the worst case (all values are negative) - size_t getNbArithmOps() const override { + std::size_t getNbArithmOps() const override { const OperatorTensor& op_ = dynamic_cast<const OperatorTensor&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); return op_.getOutput(0)->size(); @@ -423,12 +434,12 @@ public: return std::make_unique<ReduceMeanStats>(op); } - size_t getNbArithmOps() const override { + std::size_t getNbArithmOps() const override { const ReduceMean_Op& op_ = dynamic_cast<const ReduceMean_Op&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); - const size_t nbIn = op_.getInput(0)->size(); - const size_t nbOut = op_.getOutput(0)->size(); - const size_t nbReduce = nbIn / nbOut; + const std::size_t nbIn = op_.getInput(0)->size(); + const std::size_t nbOut = op_.getOutput(0)->size(); + const std::size_t nbReduce = nbIn / nbOut; // (nbReduce - 1) additions + 1 division for each output return nbOut * nbReduce; } @@ -444,12 +455,12 @@ public: return std::make_unique<ReduceSumStats>(op); } - size_t getNbArithmOps() const override { + std::size_t getNbArithmOps() const override { const ReduceSum_Op& op_ = dynamic_cast<const ReduceSum_Op&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); - const size_t nbIn = op_.getInput(0)->size(); - const size_t nbOut = op_.getOutput(0)->size(); - const size_t nbReduce = nbIn / nbOut; + const std::size_t nbIn = op_.getInput(0)->size(); + const std::size_t nbOut = op_.getOutput(0)->size(); + const std::size_t nbReduce = nbIn / nbOut; // (nbReduce - 1) additions for each output return nbOut * (nbReduce - 1); } @@ -465,22 +476,22 @@ public: return std::make_unique<SoftmaxStats>(op); } - size_t getNbArithmOps() const override { + std::size_t getNbArithmOps() const override { const Softmax_Op& op_ = dynamic_cast<const Softmax_Op&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); - const size_t axis = (op_.axis() >= 0) ? op_.axis() : op_.getInput(0)->nbDims() + op_.axis(); - const size_t nbReduce = op_.getInput(0)->dims()[axis]; - const size_t nbOut = op_.getOutput(0)->size(); + const std::size_t axis = (op_.axis() >= 0) ? op_.axis() : op_.getInput(0)->nbDims() + op_.axis(); + const std::size_t nbReduce = op_.getInput(0)->dims()[axis]; + const std::size_t nbOut = op_.getOutput(0)->size(); // nbOut divisions + (nbReduce - 1) additions return nbOut + (nbReduce - 1); } - size_t getNbNLOps() const override { + std::size_t getNbNLOps() const override { const Softmax_Op& op_ = dynamic_cast<const Softmax_Op&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); - const size_t axis = (op_.axis() >= 0) ? op_.axis() : op_.getInput(0)->nbDims() + op_.axis(); - const size_t nbReduce = op_.getInput(0)->dims()[axis]; - const size_t nbOut = op_.getOutput(0)->size(); + const std::size_t axis = (op_.axis() >= 0) ? op_.axis() : op_.getInput(0)->nbDims() + op_.axis(); + const std::size_t nbReduce = op_.getInput(0)->dims()[axis]; + const std::size_t nbOut = op_.getOutput(0)->size(); // nbOut exp + nbReduce exp return nbOut + nbReduce; } @@ -515,7 +526,7 @@ public: return std::make_unique<ElemWiseOpStats>(op); } - size_t getNbArithmOps() const override { + std::size_t getNbArithmOps() const override { const OperatorTensor& op_ = dynamic_cast<const OperatorTensor&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); return op_.getOutput(0)->size(); @@ -535,7 +546,7 @@ public: return std::make_unique<ElemWiseLogicOpStats>(op); } - size_t getNbArithmOps() const override { + std::size_t getNbArithmOps() const override { const OperatorTensor& op_ = dynamic_cast<const OperatorTensor&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); return op_.getOutput(0)->size(); @@ -552,7 +563,7 @@ public: return std::make_unique<ElemWiseNLOpStats>(op); } - size_t getNbNLOps() const override { + std::size_t getNbNLOps() const override { const OperatorTensor& op_ = dynamic_cast<const OperatorTensor&>(mOp); AIDGE_ASSERT(op_.dimsForwarded(), "Dims must be forwarded for static analysis"); return op_.getOutput(0)->size(); diff --git a/include/aidge/operator/ArgMax.hpp b/include/aidge/operator/ArgMax.hpp index 13f63ce98..a2d344cba 100644 --- a/include/aidge/operator/ArgMax.hpp +++ b/include/aidge/operator/ArgMax.hpp @@ -52,12 +52,12 @@ public: /** * @brief constructor for ArgMax op * @param[in] axis around which perform the operation - * @param[in] keep_dims if true we set a dimension of 1 in the place of the reduced axis and + * @param[in] keep_dims if true we set a dimension of 1 in the place of the reduced axis and * if false we remove the dimension completely - * @param[in] select_last_index in case we have many maximum, if true the last index is returned - * if false the first index is returned. + * @param[in] select_last_index in case we have many maximum, if true the last index is returned + * if false the first index is returned. */ - ArgMax_Op(std::int32_t axis, bool keep_dims, bool select_last_index) + ArgMax_Op(std::int32_t axis = 0, bool keep_dims = true, bool select_last_index = false) : OperatorTensor(Type, {InputCategory::Data}, 1), mAttributes(std::make_shared<Attributes_>( attr<ArgMaxAttr::Axis>(axis), @@ -69,24 +69,13 @@ public: * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). * @param op Operator to copy. */ - ArgMax_Op(const ArgMax_Op& op) - : OperatorTensor(op), - mAttributes(op.mAttributes) - { - if (op.mImpl){ - SET_IMPL_MACRO(ArgMax_Op, *this, op.backend()); - } else { - mImpl = nullptr; - } - } + ArgMax_Op(const ArgMax_Op& op); /** * @brief Clone the operator using its copy-constructor. * @see Operator::ArgMax_Op */ - std::shared_ptr<Operator> clone() const override { - return std::make_shared<ArgMax_Op>(*this); - } + std::shared_ptr<Operator> clone() const override; bool forwardDims(bool allowDataDependency = false) override final; @@ -114,17 +103,14 @@ public: * @param axis Dimension over which data max should be computed. * @param keep_dims Whether or not reduced dimensions are to be erased. * @param select_last_index Whether to select the last index of max elements in case there are many maximums. - * By default the first max element index is + * By default the first max element index is * @param name Name of the Operator. * @return std::shared_ptr<Node> Node containing the Operator. */ -inline std::shared_ptr<Node> ArgMax(std::int32_t axis=0, - bool keep_dims=true, - bool select_last_index=false, - const std::string& name = "") { - return std::make_shared<Node>(std::make_shared<ArgMax_Op>(axis, keep_dims, select_last_index), name); - -} +std::shared_ptr<Node> ArgMax(std::int32_t axis = 0, + bool keep_dims = true, + bool select_last_index = false, + const std::string& name = ""); } // namespace Aidge diff --git a/include/aidge/operator/Operator.hpp b/include/aidge/operator/Operator.hpp index 95698b751..5f148e126 100644 --- a/include/aidge/operator/Operator.hpp +++ b/include/aidge/operator/Operator.hpp @@ -12,11 +12,11 @@ #ifndef AIDGE_CORE_OPERATOR_OPERATOR_H_ #define AIDGE_CORE_OPERATOR_OPERATOR_H_ +#include <cstddef> #include <memory> #include <string> #include <vector> #include <utility> -#include <cstddef> #ifdef PYBIND #include <pybind11/pybind11.h> @@ -49,11 +49,19 @@ enum class InputCategory { class Operator : public std::enable_shared_from_this<Operator> { protected: - std::shared_ptr<OperatorImpl> mImpl; // implementation of the operator - std::shared_ptr<DynamicAttributes> mInheritedAttrs; + /** Implementation of the operator. */ + std::shared_ptr<OperatorImpl> mImpl; + /** Attributes of the associated Node. + * + * Default to empty vector for copy construction because two Operator cannot + * be associated to the same Node. + */ + std::vector<std::shared_ptr<DynamicAttributes>> mInheritedAttrs{}; private: + /** Type of Operator. */ std::string mType; + /** Type of data the Operator should handle. */ const OperatorType mOperatorType; const std::vector<InputCategory> mInputsCategory; const IOIndex_t mNbOut; @@ -82,18 +90,34 @@ public: // Implementation is never cloned. It is up to the non-abstract Operator copy-constructor to create a new implementation matching the copied Operator implementation. // See https://gitlab.eclipse.org/eclipse/aidge/aidge_core/-/merge_requests/8#note_1214050 for the discussion. } - std::shared_ptr<Operator> operator()(std::shared_ptr<DynamicAttributes> attrs) { - mInheritedAttrs = attrs; - return shared_from_this(); - } + // std::shared_ptr<Operator> operator()(std::shared_ptr<DynamicAttributes> attrs) { + // mInheritedAttrs = attrs; + // return shared_from_this(); + // } virtual ~Operator() noexcept; public: + void setInheritedAttrs(std::shared_ptr<DynamicAttributes>& attr) { + mInheritedAttrs.push_back(attr); + } virtual std::shared_ptr<Operator> clone() const = 0; virtual std::shared_ptr<Attributes> attributes() const { return nullptr; }; - virtual std::shared_ptr<DynamicAttributes> inheritedAttributes() const { return mInheritedAttrs; }; + + /** + * @brief Get the currently associated Node's attributes. + * @return Shared pointer to the Attributes of the associated Node. + * + * If no Node as be associated to the Operator, returns a `nullptr`. + * @note As Operators have only been tested with a single associated Node, + * only attributes of the first associated Node are returned. This should be + * updated. + */ + virtual std::shared_ptr<DynamicAttributes> inheritedAttributes() const { + return mInheritedAttrs.empty() ? nullptr : mInheritedAttrs[0]; + } + /** * @brief Set the specified input with a shallow copy. * @param inputIdx Index of the input to set. diff --git a/include/aidge/utils/DynamicAttributes.hpp b/include/aidge/utils/DynamicAttributes.hpp index 0fc350f1a..6ac76c138 100644 --- a/include/aidge/utils/DynamicAttributes.hpp +++ b/include/aidge/utils/DynamicAttributes.hpp @@ -365,7 +365,7 @@ public: static inline typename std::enable_if<!has_less_than_operator<T>::value, void>::type makeTypeConditionallyAvailable() {} template<typename T> - static inline typename std::enable_if<has_less_than_operator<T>::value, void>::type makeTypeConditionallyAvailable() { + static typename std::enable_if<has_less_than_operator<T>::value, void>::type makeTypeConditionallyAvailable() { mAnyUtils.emplace(typeid(T), std::unique_ptr<AnyUtils<T>>(new AnyUtils<T>())); } @@ -388,7 +388,7 @@ struct DynamicAttributes::AnyUtils<py::object> : public DynamicAttributes::AnyUt size_t hash(const future_std::any& attr) const override final { // Here we are mixing Python and C++ hashes... if both are - // well implemented, this should not increase the collision + // well implemented, this should not increase the collision // probability for the same number of stored hashes. return py::hash(future_std::any_cast<py::object>(attr)); } diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index ee1979609..c47f3c33e 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -28,6 +28,12 @@ namespace Aidge { +Tensor::Tensor(const Tensor& other) = default; +Tensor::Tensor(Tensor&& other) = default; + +Tensor& Tensor::operator=(const Tensor& other) = default; +Tensor& Tensor::operator=(Tensor&& other) = default; + Tensor::~Tensor() noexcept = default; diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp index 465359757..4c6f6ada8 100644 --- a/src/graph/GraphView.cpp +++ b/src/graph/GraphView.cpp @@ -940,6 +940,22 @@ void Aidge::GraphView::addChild( add(toOtherView); } +void Aidge::GraphView::updateNodeName(const std::shared_ptr<Node>& node, const std::string& newName) { + if (!newName.empty()) { + auto itNew = mNodeRegistry.insert(std::make_pair(newName, node)); + if (!itNew.second) { + Log::notice("Replacing existing node name in graph node name registry: {}", newName); + (itNew.first)->second = node; + } + } + + if (!node->name().empty()) { + const auto it = mNodeRegistry.find(node->name()); + AIDGE_ASSERT(it != mNodeRegistry.end(), "No node named {} in graph {}, the graph may be corrupted !", node->name(), name()); + mNodeRegistry.erase(it); + } +} + std::set<std::shared_ptr<Aidge::Node>> Aidge::GraphView::getParents() const { // TODO: choose if we return a set or a vector std::set<std::shared_ptr<Node>> parents; diff --git a/src/graph/Matching.cpp b/src/graph/Matching.cpp index 4a62019a7..346909ca5 100644 --- a/src/graph/Matching.cpp +++ b/src/graph/Matching.cpp @@ -1,7 +1,39 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #include "aidge/graph/Matching.hpp" +#include <algorithm> // std::find_if +#include <cctype> // std::isspace +#include <cstddef> // std::size_t +#include <memory> +#include <set> +#include <string> // std::stoi +#include <utility> // std::pair +#include <vector> + #include <fmt/color.h> +#include "aidge/graph/GraphView.hpp" +#include "aidge/graph/Node.hpp" + +static void removeLeadingWhitespace(std::string& str) { + str.erase(str.begin(), + std::find_if(str.cbegin(), + str.cend(), + [](char c) { return !std::isspace(c); })); +} + +//////////////////////////////////////////////////////////// + Aidge::SinglePassGraphMatching::Context::Context() = default; Aidge::SinglePassGraphMatching::Context::Context(const Context& other) = default; Aidge::SinglePassGraphMatching::Context& Aidge::SinglePassGraphMatching::Context::operator=(const Context& other) = default; @@ -35,7 +67,7 @@ std::set<Aidge::SinglePassGraphMatching::MatchingResult> Aidge::SinglePassGraphM std::set<MatchingResult> matches; while (matchSequence(ctx, matches) || matchNodeOrBlock(ctx, matches)) { - removeWhiteSpace(ctx.query); + removeLeadingWhitespace(ctx.query); if (!ctx.query.empty() && ctx.query[0] == ';') { ctx.query.erase(0, 1); } @@ -44,7 +76,7 @@ std::set<Aidge::SinglePassGraphMatching::MatchingResult> Aidge::SinglePassGraphM } } - removeWhiteSpace(ctx.query); + removeLeadingWhitespace(ctx.query); if (!ctx.query.empty()) { Log::warn("Syntax error, unable to parse remaining query: {}", ctx.query); } @@ -56,14 +88,14 @@ std::set<Aidge::SinglePassGraphMatching::MatchingResult> Aidge::SinglePassGraphM return matches; } -Aidge::SinglePassGraphMatching::MatchingResult Aidge::SinglePassGraphMatching::matchFrom(NodePtr startNode, const std::string& query) { +Aidge::SinglePassGraphMatching::MatchingResult Aidge::SinglePassGraphMatching::matchFrom(std::shared_ptr<Node> startNode, const std::string& query) { Context ctx; ctx.query = query; ctx.startNode = startNode; std::set<MatchingResult> matches; while (matchSequence(ctx, matches) || matchNodeOrBlock(ctx, matches)) { - removeWhiteSpace(ctx.query); + removeLeadingWhitespace(ctx.query); if (!ctx.query.empty() && ctx.query[0] == ';') { ctx.query.erase(0, 1); } @@ -72,7 +104,7 @@ Aidge::SinglePassGraphMatching::MatchingResult Aidge::SinglePassGraphMatching::m } } - removeWhiteSpace(ctx.query); + removeLeadingWhitespace(ctx.query); if (!ctx.query.empty()) { Log::warn("Syntax error, unable to parse remaining query: {}", ctx.query); } @@ -123,8 +155,8 @@ bool Aidge::SinglePassGraphMatching::matchNodeOrBlock(Context& ctx, std::set<Mat // QUANTIFIER? bool matchMore = false; - size_t matchQuantity = 0; - removeWhiteSpace(newCtx.query); + std::size_t matchQuantity = 0; + removeLeadingWhitespace(newCtx.query); if (!newCtx.query.empty() && (newCtx.query[0] == '?' || newCtx.query[0] == '*')) { AIDGE_ASSERT(!(ctx.firstSequence && ctx.firstNode), "Ill-formed query; the root node cannot be optional in query at: {}", ctx.query); @@ -155,7 +187,7 @@ bool Aidge::SinglePassGraphMatching::matchNodeOrBlock(Context& ctx, std::set<Mat else if (!newCtx.query.empty() && newCtx.query[0] == '{') { newCtx.query.erase(0, 1); - removeWhiteSpace(newCtx.query); + removeLeadingWhitespace(newCtx.query); const auto endQuantity = std::find_if(newCtx.query.begin(), newCtx.query.end(), [](char c) { return !isdigit(c); }); if (endQuantity != newCtx.query.begin()) { @@ -172,7 +204,7 @@ bool Aidge::SinglePassGraphMatching::matchNodeOrBlock(Context& ctx, std::set<Mat return false; } - removeWhiteSpace(newCtx.query); + removeLeadingWhitespace(newCtx.query); if (!newCtx.query.empty() && newCtx.query[0] == '}') { newCtx.query.erase(0, 1); } @@ -231,7 +263,7 @@ bool Aidge::SinglePassGraphMatching::matchBlock(Context& ctx, std::set<MatchingR ++newCtx.depth; // '(' - removeWhiteSpace(newCtx.query); + removeLeadingWhitespace(newCtx.query); if (!newCtx.query.empty() && newCtx.query[0] == '(') { newCtx.query.erase(0, 1); } @@ -252,7 +284,7 @@ bool Aidge::SinglePassGraphMatching::matchBlock(Context& ctx, std::set<MatchingR } // ')' - removeWhiteSpace(newCtx.query); + removeLeadingWhitespace(newCtx.query); if (!newCtx.query.empty() && newCtx.query[0] == ')') { newCtx.query.erase(0, 1); } @@ -337,7 +369,7 @@ bool Aidge::SinglePassGraphMatching::matchParallel(Context& ctx, std::set<Matchi while (true) { // ('&' NODE_OR_BLOCK)+ // '&' - removeWhiteSpace(newCtx.query); + removeLeadingWhitespace(newCtx.query); if (!newCtx.query.empty() && newCtx.query[0] == '&') { newCtx.query.erase(0, 1); found = true; @@ -402,7 +434,7 @@ bool Aidge::SinglePassGraphMatching::matchAlternative(Context& ctx, std::set<Mat while (true) { // ('|' NODE_OR_BLOCK)+ // '|' - removeWhiteSpace(newCtx.query); + removeLeadingWhitespace(newCtx.query); if (!newCtx.query.empty() && newCtx.query[0] == '|') { newCtx.query.erase(0, 1); found = true; @@ -446,7 +478,7 @@ bool Aidge::SinglePassGraphMatching::matchEdge(Context& ctx, std::set<MatchingRe Log::debug("{}edge", std::string(2*newCtx.depth, ' ')); // ('-' | '~') or '<' - removeWhiteSpace(newCtx.query); + removeLeadingWhitespace(newCtx.query); if (!newCtx.query.empty() && (newCtx.query[0] == '-' || newCtx.query[0] == '~')) { newCtx.singleOutput = (newCtx.query[0] == '-'); newCtx.query.erase(0, 1); // drop '-' @@ -550,7 +582,7 @@ bool Aidge::SinglePassGraphMatching::matchNode(Context& ctx, std::set<MatchingRe auto newMatches = matches; // (TYPE | '.' | '$') - removeWhiteSpace(newCtx.query); + removeLeadingWhitespace(newCtx.query); if (newCtx.query.empty()) { Log::debug("{}{}", std::string(2*ctx.depth, ' '), fmt::styled("×", fmt::fg(fmt::color::red))); return false; @@ -833,3 +865,8 @@ bool Aidge::SinglePassGraphMatching::matchNode(Context& ctx, std::set<MatchingRe matches = newMatches; return true; } + +bool Aidge::operator<(const Aidge::SinglePassGraphMatching::MatchingResult& lhs, const Aidge::SinglePassGraphMatching::MatchingResult& rhs) { + // Matching rootNode are guaranteed to be different! + return lhs.graph->rootNode() < rhs.graph->rootNode(); +} \ No newline at end of file diff --git a/src/graph/Node.cpp b/src/graph/Node.cpp index 92ae46308..384e946c6 100644 --- a/src/graph/Node.cpp +++ b/src/graph/Node.cpp @@ -35,6 +35,7 @@ Aidge::Node::Node(std::shared_ptr<Operator> op, std::shared_ptr<DynamicAttribute mForward.push_back([this](){ this->mOperator->forward(); return true; }); // mForward.push_back(std::bind(&Operator::forward, mOperator.get())); mBackward.push_back([this](){ this->mOperator->backward(); return true; }); + op->setInheritedAttrs(attrs); } // Aidge::Node::Node(std::shared_ptr<Operator> op, const DynamicAttributes& attrs) @@ -225,6 +226,16 @@ Aidge::IOIndex_t Aidge::Node::nbValidOutputs() const { return counter; } +std::set<std::shared_ptr<Aidge::GraphView>> Aidge::Node::views() const noexcept { + std::set<std::shared_ptr<GraphView>> res; + for (const auto &v : mViews) { + if (auto p = v.lock()) { + res.insert(p); + } + } + return res; +} + void Aidge::Node::setInputId(const IOIndex_t inId, const IOIndex_t newNodeoutId) { AIDGE_ASSERT(inId != gk_IODefaultIndex && inId < nbInputs(), "Input index ({}) is out of bound ({}) for node {} (of type {})", diff --git a/src/graph/StaticAnalysis.cpp b/src/graph/StaticAnalysis.cpp index 033e51022..4309c5c37 100644 --- a/src/graph/StaticAnalysis.cpp +++ b/src/graph/StaticAnalysis.cpp @@ -11,13 +11,31 @@ #include "aidge/graph/StaticAnalysis.hpp" +#include <cstddef> // std::size_t +#include <memory> +#include <numeric> // std::accumulate +#include <set> + +#include <fmt/core.h> // fmt::println +#include <fmt/format.h> +#include <fmt/ranges.h> + +#include "aidge/data/Data.hpp" // Aidge::isDataTypeFloatingPoint +#include "aidge/data/Tensor.hpp" +#include "aidge/graph/GraphView.hpp" +#include "aidge/graph/Node.hpp" +#include "aidge/operator/Operator.hpp" +#include "aidge/operator/OperatorTensor.hpp" + Aidge::OperatorStats::OperatorStats(const Operator& op) : mOp(op) { //ctor } -size_t Aidge::OperatorStats::getNbArithmIntOps() const { +Aidge::OperatorStats::~OperatorStats() = default; + +std::size_t Aidge::OperatorStats::getNbArithmIntOps() const { const auto opTensor = dynamic_cast<const OperatorTensor*>(&mOp); if (opTensor) { if (!isDataTypeFloatingPoint(opTensor->getOutput(0)->dataType())) { @@ -27,23 +45,27 @@ size_t Aidge::OperatorStats::getNbArithmIntOps() const { return 0; } +//////////////////////////////////////////////////////////////////////////////// + Aidge::StaticAnalysis::StaticAnalysis(std::shared_ptr<GraphView> graph) : mGraph(graph) { //ctor } +Aidge::StaticAnalysis::~StaticAnalysis() = default; + void Aidge::StaticAnalysis::summary(bool incProducers) const { fmt::println("--------------------------------------------------------------------------------"); fmt::println(" Layer (type) Output Shape Param #"); fmt::println("================================================================================"); - size_t nbParams = 0; - size_t paramsSize = 0; // Size in bits - size_t fwdBwdSize = 0; // Size in bits + std::size_t nbParams = 0; + std::size_t paramsSize = 0; // Size in bits + std::size_t fwdBwdSize = 0; // Size in bits const auto namePtrTable = mGraph->getRankedNodesName("{0} ({1}#{3})"); - for (const auto node : mGraph->getOrderedNodes()) { + for (const auto& node : mGraph->getOrderedNodes()) { if (node->type() == Producer_Op::Type && !incProducers) { continue; } @@ -53,8 +75,8 @@ void Aidge::StaticAnalysis::summary(bool incProducers) const { if (opTensor) { const auto outputDims = opTensor->getOutput(0)->dims(); outputDimsStr = fmt::format("{: >27}", fmt::format("{}", outputDims)); - - for (size_t out = 0; out < node->nbOutputs(); ++out) { + + for (std::size_t out = 0; out < node->nbOutputs(); ++out) { const auto output = opTensor->getOutput(out); if (output && node->type() != Producer_Op::Type) { fwdBwdSize += output->size() @@ -69,8 +91,8 @@ void Aidge::StaticAnalysis::summary(bool incProducers) const { namePtrTable.at(node), outputDimsStr, getNbParams(node)); } - size_t inputSize = 0; // Size in bits - for (const auto input : mGraph->getOrderedInputs()) { + std::size_t inputSize = 0; // Size in bits + for (const auto& input : mGraph->getOrderedInputs()) { if (input.first) { auto opTensor = std::dynamic_pointer_cast<OperatorTensor>(input.first->getOperator()); if (opTensor && opTensor->getInput(input.second)) { @@ -90,13 +112,13 @@ void Aidge::StaticAnalysis::summary(bool incProducers) const { fmt::println("--------------------------------------------------------------------------------"); } -size_t Aidge::StaticAnalysis::getNbParams(std::shared_ptr<Node> node) const { +std::size_t Aidge::StaticAnalysis::getNbParams(std::shared_ptr<Node> node) const { const auto opTensor = std::dynamic_pointer_cast<OperatorTensor>(node->getOperator()); - size_t nbParams = 0; + std::size_t nbParams = 0; // Look for Producers directly attached to the node's inputs. - size_t i = 0; + std::size_t i = 0; for (auto parent : node->inputs()) { if (parent.first && mGraph->inView(parent.first)) { if (parent.first->type() == Producer_Op::Type && opTensor->getInput(i)) { @@ -109,7 +131,7 @@ size_t Aidge::StaticAnalysis::getNbParams(std::shared_ptr<Node> node) const { // Look for internal Producers, in case of meta-op. if (!node->getOperator()->isAtomic()) { const auto microGraph = std::dynamic_pointer_cast<MetaOperator_Op>(node->getOperator())->getMicroGraph(); - for (const auto internalNode : microGraph->getNodes()) { + for (const auto& internalNode : microGraph->getNodes()) { if (internalNode->type() == Producer_Op::Type) { const auto internalOpTensor = std::dynamic_pointer_cast<OperatorTensor>(internalNode->getOperator()); nbParams += internalOpTensor->getOutput(0)->size(); @@ -120,14 +142,14 @@ size_t Aidge::StaticAnalysis::getNbParams(std::shared_ptr<Node> node) const { return nbParams; } -size_t Aidge::StaticAnalysis::getParamsSize(std::shared_ptr<Node> node) const { +std::size_t Aidge::StaticAnalysis::getParamsSize(std::shared_ptr<Node> node) const { const auto opTensor = std::dynamic_pointer_cast<OperatorTensor>(node->getOperator()); - size_t paramsSize = 0; + std::size_t paramsSize = 0; // Look for Producers directly attached to the node's inputs. - size_t i = 0; - for (auto parent : node->inputs()) { + std::size_t i = 0; + for (const auto& parent : node->inputs()) { if (parent.first && mGraph->inView(parent.first)) { if (parent.first->type() == Producer_Op::Type && opTensor->getInput(i)) { paramsSize += opTensor->getInput(i)->size() @@ -140,7 +162,7 @@ size_t Aidge::StaticAnalysis::getParamsSize(std::shared_ptr<Node> node) const { // Look for internal Producers, in case of meta-op. if (!node->getOperator()->isAtomic()) { const auto microGraph = std::dynamic_pointer_cast<MetaOperator_Op>(node->getOperator())->getMicroGraph(); - for (const auto internalNode : microGraph->getNodes()) { + for (const auto& internalNode : microGraph->getNodes()) { if (internalNode->type() == Producer_Op::Type) { const auto internalOpTensor = std::dynamic_pointer_cast<OperatorTensor>(internalNode->getOperator()); paramsSize += internalOpTensor->getOutput(0)->size() @@ -160,12 +182,32 @@ std::shared_ptr<Aidge::OperatorStats> Aidge::StaticAnalysis::getOpStats(std::sha : std::make_shared<MetaOpStats>(*(node->getOperator())); } -size_t Aidge::StaticAnalysis::accumulate(size_t (OperatorStats::*func)() const) const { +std::size_t Aidge::StaticAnalysis::getNbArithmOps() const { return accumulate(&OperatorStats::getNbArithmOps); } +std::size_t Aidge::StaticAnalysis::getNbLogicOps() const { return accumulate(&OperatorStats::getNbLogicOps); } +std::size_t Aidge::StaticAnalysis::getNbCompOps() const { return accumulate(&OperatorStats::getNbCompOps); } +std::size_t Aidge::StaticAnalysis::getNbNLOps() const { return accumulate(&OperatorStats::getNbNLOps); } +std::size_t Aidge::StaticAnalysis::getNbOps() const { return accumulate(&OperatorStats::getNbOps); } +std::size_t Aidge::StaticAnalysis::getNbArithmIntOps() const { return accumulate(&OperatorStats::getNbArithmIntOps); } +std::size_t Aidge::StaticAnalysis::getNbArithmFpOps() const { return accumulate(&OperatorStats::getNbArithmFpOps); } +std::size_t Aidge::StaticAnalysis::getNbMACOps() const { return accumulate(&OperatorStats::getNbMACOps); } + +std::size_t Aidge::StaticAnalysis::accumulate(std::size_t (OperatorStats::*func)() const) const { return std::accumulate( mGraph->getNodes().cbegin(), mGraph->getNodes().cend(), std::size_t(0), - [this, func](const size_t& lhs, const std::shared_ptr<Node>& rhs) { + [this, func](const std::size_t& lhs, const std::shared_ptr<Node>& rhs) { return lhs + (this->getOpStats(rhs).get()->*func)(); }); } + +//////////////////////////////////////////////////////////////////////////////// + +Aidge::MetaOpStats::~MetaOpStats() = default; + +std::size_t Aidge::MetaOpStats::getNbArithmOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbArithmOps(); } +std::size_t Aidge::MetaOpStats::getNbLogicOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbLogicOps(); } +std::size_t Aidge::MetaOpStats::getNbCompOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbCompOps(); } +std::size_t Aidge::MetaOpStats::getNbNLOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbNLOps(); } +std::size_t Aidge::MetaOpStats::getNbArithmIntOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbArithmIntOps(); } +std::size_t Aidge::MetaOpStats::getNbMACOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbMACOps(); } \ No newline at end of file diff --git a/src/operator/ArgMax.cpp b/src/operator/ArgMax.cpp index 4808b730d..531c41596 100644 --- a/src/operator/ArgMax.cpp +++ b/src/operator/ArgMax.cpp @@ -14,7 +14,6 @@ #include <cstddef> // std::size_t #include <cstdint> // std::int32_t #include <memory> -#include <stdexcept> // std::runtime_error #include <string> #include <vector> @@ -25,6 +24,21 @@ const std::string Aidge::ArgMax_Op::Type = "ArgMax"; +Aidge::ArgMax_Op::ArgMax_Op(const Aidge::ArgMax_Op& op) + : OperatorTensor(op), + mAttributes(op.mAttributes) +{ + if (op.mImpl){ + SET_IMPL_MACRO(ArgMax_Op, *this, op.backend()); + } else { + mImpl = nullptr; + } +} + +std::shared_ptr<Aidge::Operator> Aidge::ArgMax_Op::clone() const { + return std::make_shared<ArgMax_Op>(*this); +} + bool Aidge::ArgMax_Op::forwardDims(bool /*allowDataDependency*/) { if (inputsAssociated()) { // make Axis attribute positive @@ -55,3 +69,12 @@ void Aidge::ArgMax_Op::setBackend(const std::string& name, Aidge::DeviceIdx_t de std::set<std::string> Aidge::ArgMax_Op::getAvailableBackends() const { return Registrar<ArgMax_Op>::getKeys(); } + +//////////////////////////////////////////////////////////////////////////////// + +std::shared_ptr<Aidge::Node> Aidge::ArgMax(std::int32_t axis, + bool keep_dims, + bool select_last_index, + const std::string& name) { + return std::make_shared<Node>(std::make_shared<ArgMax_Op>(axis, keep_dims, select_last_index), name); +} \ No newline at end of file diff --git a/src/recipes/FuseBatchNorm.cpp b/src/recipes/FuseBatchNorm.cpp index 50c8f561c..55be9636f 100644 --- a/src/recipes/FuseBatchNorm.cpp +++ b/src/recipes/FuseBatchNorm.cpp @@ -117,7 +117,7 @@ void Aidge::fuseBatchNorm(std::shared_ptr<Aidge::Node> convNode, auto prod = addProducer(metaNode, inputIdx, {convNbOutChannels}, "b"); // Add the new bias node to the same views as the meta node - for (auto g : metaNode->views()) { + for (auto& g : metaNode->views()) { g->add(prod); } } @@ -126,12 +126,12 @@ void Aidge::fuseBatchNorm(std::shared_ptr<Aidge::Node> convNode, if (convNode->input(1).first) { // Add the new bias node to the same views as the weights node // if possible - for (auto g : convNode->input(1).first->views()) { + for (auto& g : convNode->input(1).first->views()) { g->add(prod); } } else { - for (auto g : convNode->views()) { + for (auto& g : convNode->views()) { g->add(prod); } } -- GitLab From b7ea51c46b03154331d451476da8bfa259498aad Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Wed, 8 Jan 2025 11:03:01 +0000 Subject: [PATCH 063/157] add small changes --- include/aidge/backend/cpu/data/TensorImpl.hpp | 2 +- include/aidge/graph/Connector.hpp | 6 +++--- include/aidge/utils/Log.hpp | 1 - 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/include/aidge/backend/cpu/data/TensorImpl.hpp b/include/aidge/backend/cpu/data/TensorImpl.hpp index 2115b660f..4f7079e59 100644 --- a/include/aidge/backend/cpu/data/TensorImpl.hpp +++ b/include/aidge/backend/cpu/data/TensorImpl.hpp @@ -55,7 +55,7 @@ public: T* dstT = static_cast<T *>(rawPtr(offset)); AIDGE_ASSERT(dstT < srcT || dstT >= srcT + length, "TensorImpl_cpu<{}>::copy(): overlapping copy is not supported", typeid(T).name()); - std::copy(srcT, srcT + length, dstT); + std::copy_n(srcT, length, dstT); } void copyCast(const void *src, const DataType srcDt, NbElts_t length, NbElts_t offset = 0) override final; diff --git a/include/aidge/graph/Connector.hpp b/include/aidge/graph/Connector.hpp index 599ca7d6d..ec59e1b38 100644 --- a/include/aidge/graph/Connector.hpp +++ b/include/aidge/graph/Connector.hpp @@ -11,10 +11,10 @@ #ifndef AIDGE_CORE_GRAPH_CONNECTOR_H_ #define AIDGE_CORE_GRAPH_CONNECTOR_H_ -#include <cassert> #include <memory> #include <vector> +#include "aidge/utils/ErrorHandling.hpp" #include "aidge/utils/Types.h" namespace Aidge { @@ -55,7 +55,7 @@ class Connector { public: Connector operator[](IOIndex_t index) { - assert((size() > 1) && "Cannot refer a slice of the output."); + AIDGE_ASSERT((size() > 1), "Cannot refer a slice of the output."); return Connector(mNode, index); } @@ -68,7 +68,7 @@ class Connector { private: Connector(std::shared_ptr<Node> node, IOIndex_t index) : mNode(node) { - assert((index != gk_IODefaultIndex) && (index < size()) && + AIDGE_ASSERT((index != gk_IODefaultIndex) && (index < size()), "Non-valid output index.\n"); mOutputId = index; } diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index d6851f1e4..bc99ab7c0 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -19,7 +19,6 @@ #include <fmt/ranges.h> #include "aidge/data/half_fmt.hpp" - #include "aidge/utils/Attributes.hpp" namespace Aidge { -- GitLab From 3357d08c44eb389f5830c5937df049b030d88dee Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Wed, 8 Jan 2025 11:38:26 +0000 Subject: [PATCH 064/157] add noexcept keyword to 'Context' destructor --- src/graph/Matching.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph/Matching.cpp b/src/graph/Matching.cpp index 346909ca5..ddf9bcbf9 100644 --- a/src/graph/Matching.cpp +++ b/src/graph/Matching.cpp @@ -37,7 +37,7 @@ static void removeLeadingWhitespace(std::string& str) { Aidge::SinglePassGraphMatching::Context::Context() = default; Aidge::SinglePassGraphMatching::Context::Context(const Context& other) = default; Aidge::SinglePassGraphMatching::Context& Aidge::SinglePassGraphMatching::Context::operator=(const Context& other) = default; -Aidge::SinglePassGraphMatching::Context::~Context() = default; +Aidge::SinglePassGraphMatching::Context::~Context() noexcept = default; //////////////////////////////////////////////////////////// -- GitLab From 2bba4f964f28f45b45db5cea9c09e880940d5b54 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 8 Jan 2025 18:13:34 +0100 Subject: [PATCH 065/157] Multiple fixes related to adaptToBackend() --- include/aidge/recipes/Recipes.hpp | 6 +++++ .../backend/pybind_OperatorImpl.cpp | 1 + src/backend/OperatorImpl.cpp | 27 ++++++++++++++----- src/data/Tensor.cpp | 1 + src/operator/Transpose.cpp | 11 +++++--- src/recipes/AdaptToBackend.cpp | 1 + src/recipes/ExpandMetaOps.cpp | 15 +++++++++++ 7 files changed, 53 insertions(+), 9 deletions(-) diff --git a/include/aidge/recipes/Recipes.hpp b/include/aidge/recipes/Recipes.hpp index 0fb405bfe..aa4d3ae1b 100644 --- a/include/aidge/recipes/Recipes.hpp +++ b/include/aidge/recipes/Recipes.hpp @@ -124,6 +124,12 @@ void explicitCastMove(std::shared_ptr<GraphView> graphView); */ void explicitTranspose(std::shared_ptr<GraphView> graphView); +/** + * Replace a single meta operator by its micro graph. + * @return true if node is indeed a meta operator and could be expanded. +*/ +bool expandMetaOp(std::shared_ptr<Node> node); + /** * Flatten the graph by replacing the meta operators by their micro graph. * @param recursive If true, recursively replace meta operators until there is diff --git a/python_binding/backend/pybind_OperatorImpl.cpp b/python_binding/backend/pybind_OperatorImpl.cpp index 49e45ed7e..cd94997cf 100644 --- a/python_binding/backend/pybind_OperatorImpl.cpp +++ b/python_binding/backend/pybind_OperatorImpl.cpp @@ -81,6 +81,7 @@ void init_OperatorImpl(py::module& m){ .def(py::init<const DynamicAttributes&>(), py::arg("attr") = DynamicAttributes()) .def(py::init<const ImplSpec::IOSpec&, const DynamicAttributes&>(), py::arg("io"), py::arg("attr") = DynamicAttributes()) .def(py::init<const ImplSpec::IOSpec&, const ImplSpec::IOSpec&, const DynamicAttributes&>(), py::arg("i"), py::arg("o"), py::arg("attr") = DynamicAttributes()) + .def(py::init<const std::vector<ImplSpec::IOSpec>&, const std::vector<ImplSpec::IOSpec>&, const DynamicAttributes&>(), py::arg("i"), py::arg("o"), py::arg("attr") = DynamicAttributes()) .def("__eq__", static_cast<bool(*)(const ImplSpec&, const ImplSpec&)>(&operator==)) .def("__repr__", [](ImplSpec self){ return fmt::format("{}\n", self); diff --git a/src/backend/OperatorImpl.cpp b/src/backend/OperatorImpl.cpp index c74b538a4..8a4924c0e 100644 --- a/src/backend/OperatorImpl.cpp +++ b/src/backend/OperatorImpl.cpp @@ -250,9 +250,10 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& && requiredIOSpec.type != IOSpec.type) { const auto cast = Cast(IOSpec.type); + cast->getOperator()->setBackend(node->getOperator()->backend()); cast->addChild(parent, 0, i); - op->getInput(i)->setDataType(IOSpec.type); + op->getInput(i)->setDataType(requiredIOSpec.type); } // Input format @@ -263,10 +264,11 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& const auto transpose = getDataFormatTranspose(requiredIOSpec.format, IOSpec.format); auto transposeOp = Transpose(std::vector<DimSize_t>(transpose.begin(), transpose.end())); transposeOp->getOperator()->setDataFormat(IOSpec.format); - transposeOp->getOperator()->setDataType(IOSpec.type); + transposeOp->getOperator()->setDataType(requiredIOSpec.type); + transposeOp->getOperator()->setBackend(node->getOperator()->backend()); transposeOp->addChild(parent, 0, i); - op->getInput(i)->setDataFormat(IOSpec.format); + op->getInput(i)->setDataFormat(requiredIOSpec.format); } // Input dims @@ -301,6 +303,7 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& && requiredIOSpec.type != IOSpec.type) { const auto cast = Cast(requiredIOSpec.type); + cast->getOperator()->setBackend(node->getOperator()->backend()); parent->addChild(cast, i, 0); op->getOutput(i)->setDataType(IOSpec.type); @@ -315,6 +318,7 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& auto transposeOp = Transpose(std::vector<DimSize_t>(transpose.begin(), transpose.end())); transposeOp->getOperator()->setDataFormat(requiredIOSpec.format); transposeOp->getOperator()->setDataType(requiredIOSpec.type); + transposeOp->getOperator()->setBackend(node->getOperator()->backend()); parent->addChild(transposeOp, i, 0); op->getOutput(i)->setDataFormat(IOSpec.format); @@ -340,7 +344,13 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& } } - return MetaOperator(std::string("Adapted_" + op->type()).c_str(), getConnectedGraphView(node)); + auto adaptedGraph = getConnectedGraphView(node); + if (adaptedGraph->getNodes().size() > 1) { + return MetaOperator(std::string("Adapted_" + op->type()).c_str(), adaptedGraph); + } + else { + return node; + } } std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getBestAdaptation(const ImplSpec& requiredSpecs) const { @@ -354,8 +364,13 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getBestAdaptation(const ImplSp auto adaptation = getAdaptation(availableSpec, requiredSpecs); if (adaptation) { - auto microGraph = std::dynamic_pointer_cast<MetaOperator_Op>(adaptation->getOperator())->getMicroGraph(); - adaptations.insert(std::make_pair(adaptation, microGraph->getNodes().size())); + if (adaptation->getOperator()->isAtomic()) { + adaptations.insert(std::make_pair(adaptation, 1)); + } + else { + auto microGraph = std::dynamic_pointer_cast<MetaOperator_Op>(adaptation->getOperator())->getMicroGraph(); + adaptations.insert(std::make_pair(adaptation, microGraph->getNodes().size())); + } } } diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index c834167ab..e8a0e9ede 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -538,6 +538,7 @@ void Tensor::copyTranspose(const Tensor& src, const std::vector<DimSize_t>& tran } } + AIDGE_ASSERT(mImpl, "Tensor::copyTranspose(): an implementation is required, use setBackend() first!"); std::shared_ptr<TensorImpl> newImpl = Registrar<Tensor>::create({mImpl->backend(), mDataType})(mImpl->device().second, newDims); std::vector<size_t> indices(newDims.size(), 0); diff --git a/src/operator/Transpose.cpp b/src/operator/Transpose.cpp index d24b9c909..b550db16d 100644 --- a/src/operator/Transpose.cpp +++ b/src/operator/Transpose.cpp @@ -66,12 +66,17 @@ bool Aidge::Transpose_Op::forwardDims(bool /*allowDataDependency*/) { std::iota(this->outputDimsOrder().rbegin(), this->outputDimsOrder().rend(), 0); } - AIDGE_ASSERT(outputDimsOrder().size() == getInput(0)->nbDims(), - "Permutation vector must have the same rank as input tensor."); + AIDGE_ASSERT(outputDimsOrder().size() >= getInput(0)->nbDims(), + "Permutation vector ({}) must have at least the same rank as input tensor ({}).", outputDimsOrder(), getInput(0)->dims()); std::vector<DimSize_t> outputDims; - for (std::size_t i = 0; i < outputDimsOrder().size(); ++i) { + std::size_t i = 0; + for (; i < getInput(0)->nbDims(); ++i) { outputDims.push_back(getInput(0)->dims()[outputDimsOrder()[i]]); } + for (; i < outputDimsOrder().size(); ++i) { + AIDGE_ASSERT(i == outputDimsOrder()[i], + "Permutation vector ({}) must be the identity above the input tensor rank ({}).", outputDimsOrder(), getInput(0)->dims()); + } mOutputs[0]->resize(outputDims); return true; } diff --git a/src/recipes/AdaptToBackend.cpp b/src/recipes/AdaptToBackend.cpp index e625a52f6..bb4222c49 100644 --- a/src/recipes/AdaptToBackend.cpp +++ b/src/recipes/AdaptToBackend.cpp @@ -33,6 +33,7 @@ void Aidge::adaptToBackend(std::shared_ptr<GraphView> graphView) { Log::info("Adapted node {} (of type {}) to backend {}", node->name(), node->type(), impl->backend()); AIDGE_ASSERT(GraphView::replace({node}, {adaptedNode}), "Unable to replace adapted node!"); + expandMetaOp(adaptedNode); } } } diff --git a/src/recipes/ExpandMetaOps.cpp b/src/recipes/ExpandMetaOps.cpp index 16f0b4c52..459a1ca85 100644 --- a/src/recipes/ExpandMetaOps.cpp +++ b/src/recipes/ExpandMetaOps.cpp @@ -14,6 +14,21 @@ #include "aidge/recipes/Recipes.hpp" #include "aidge/operator/MetaOperator.hpp" +bool Aidge::expandMetaOp(std::shared_ptr<Node> node) { + auto metaOp = std::dynamic_pointer_cast<MetaOperator_Op>(node->getOperator()); + + if (metaOp != nullptr) { + // Replace meta op by its micro-graph + // graph will be updated accordingly in GraphView::replace() + auto g = std::make_shared<GraphView>(); + g->add(node, false); + GraphView::replace(g, metaOp->getMicroGraph()); + return true; + } + + return false; +} + void Aidge::expandMetaOps(std::shared_ptr<GraphView> graph, bool recursive) { bool found = false; const auto nodes = graph->getNodes(); -- GitLab From 3fce297be940def96bea54a2d6c312816dff4657 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 8 Jan 2025 18:15:16 +0100 Subject: [PATCH 066/157] Correctly support dataFormat for generateMemory() --- aidge_core/mem_info.py | 38 ++++++++++++++++++++++--------------- src/scheduler/Scheduler.cpp | 8 ++++---- 2 files changed, 27 insertions(+), 19 deletions(-) diff --git a/aidge_core/mem_info.py b/aidge_core/mem_info.py index c7ca85bbd..8946c4dbd 100644 --- a/aidge_core/mem_info.py +++ b/aidge_core/mem_info.py @@ -54,7 +54,7 @@ def _gnuplot_installed(): aidge_core.Log.warn("Gnuplot command found but failed to run.") return False -def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder: Path = None, wrapping: bool = False) -> Tuple[int, List[dict]]: +def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder: Path = None, wrapping: bool = False, auto_concat: bool = False) -> Tuple[int, List[dict]]: """Generates optimized memory information for a computation graph managed by a scheduler. This function analyzes the memory usage of a computation graph, determining the memory peak @@ -70,6 +70,9 @@ def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder :param wrapping: Boolean flag to enable or disable wrap-around buffer optimization. Defaults to `False`. :type wrapping: bool, optional + :param auto_concat: Boolean flag to enable or disable auto-concatenation optimization. + Defaults to `False`. + :type auto_concat: bool, optional :return: A tuple containing the peak memory size and a list of memory information for each scheduled node. The memory information for each node includes details such as size, offset, stride, length, count, and optional wrap-around details. @@ -81,8 +84,12 @@ def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder # scheduler.generate_scheduling() # Generate the memory manager # So far, the Producers are not take in consideration in the meory manager => inc_producers=False - mem_manager = scheduler.generate_memory( - inc_producers=False, wrap_around_buffer=wrapping) + if auto_concat: + mem_manager = scheduler.generate_memory_auto_concat( + inc_producers=False, wrap_around_buffer=wrapping) + else: + mem_manager = scheduler.generate_memory( + inc_producers=False, wrap_around_buffer=wrapping) # List of nodes which are connected at the input of the graph (None if input is not connected) nodes_at_input = [n[0] for n in scheduler.graph_view().inputs()] @@ -137,18 +144,19 @@ def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder }) else: for out_id in range(node.get_nb_outputs()): - plane = mem_planes[node][out_id] - node_mem_info.append({ - "size": plane.size, - "offset": plane.get_contiguous_offset(), - "stride": plane.stride, - "length": plane.length, - "count": plane.count, - "cont_offset": plane.get_contiguous_offset(), - "cont_size": plane.get_contiguous_size(), - "wrap_offset": plane.get_wrapped_offset(), - "wrap_size": plane.get_wrapped_size() - }) + if node in mem_planes: + plane = mem_planes[node][out_id] + node_mem_info.append({ + "size": plane.size, + "offset": plane.get_contiguous_offset(), + "stride": plane.stride, + "length": plane.length, + "count": plane.count, + "cont_offset": plane.get_contiguous_offset(), + "cont_size": plane.get_contiguous_size(), + "wrap_offset": plane.get_wrapped_offset(), + "wrap_size": plane.get_wrapped_size() + }) mem_info[node] = node_mem_info return mem_size, mem_info diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index 9b655331a..242a2d0e6 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -476,8 +476,7 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemory(bool incProducers, bool wr std::size_t length = 1; std::size_t count = 1; - if (op->getOutput(outputIdx) && op->getOutput(outputIdx)->dims().size() > 3) { - // If it is possible, assume a NCHW layout + if (op->getOutput(outputIdx) && op->getOutput(outputIdx)->dataFormat() == DataFormat::NHWC) { size = op->getOutput(outputIdx)->dims().end()[-3]; stride = size; length = op->getOutput(outputIdx)->dims().end()[-1]; @@ -618,6 +617,7 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer for (IOIndex_t outputIdx = 0; outputIdx < node->nbOutputs(); ++outputIdx) { auto requiredSize = op->getRequiredMemory(outputIdx, {}); auto outputDims = (op->getOutput(outputIdx)) ? op->getOutput(outputIdx)->dims() : std::vector<DimSize_t>(); + auto outputFormat = (op->getOutput(outputIdx)) ? op->getOutput(outputIdx)->dataFormat() : DataFormat::Default; // If concat is not nullptr, we directly allocate the concatenation result // Must check that we are on the right output too. @@ -625,6 +625,7 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer const auto concatOp = std::static_pointer_cast<OperatorTensor>(concat->getOperator()); requiredSize = concatOp->getRequiredMemory(0, {}); outputDims = (concatOp->getOutput(0)) ? concatOp->getOutput(0)->dims() : std::vector<DimSize_t>(); + outputFormat = (concatOp->getOutput(0)) ? concatOp->getOutput(0)->dataFormat() : DataFormat::Default; } AIDGE_ASSERT(requiredSize.type == Elts_t::Data, @@ -637,8 +638,7 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer std::size_t length = 1; std::size_t count = 1; - if (outputDims.size() > 3) { - // If it is possible, assume a NCHW layout + if (outputFormat == DataFormat::NHWC) { size = op->getOutput(outputIdx)->dims().end()[-3]; stride = outputDims.end()[-3]; length = outputDims.end()[-1]; -- GitLab From ee16f34c0092f9403d64f0fae7f205621bc8b677 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Thu, 9 Jan 2025 08:54:20 +0000 Subject: [PATCH 067/157] Update MANIFEST.in to include export template. --- MANIFEST.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index ed911dd75..7d4d68c22 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,10 @@ include README.md LICENSE -recursive-include aidge_core *.py +recursive-include aidge_core *.py recursive-exclude aidge_core/unit_tests *.py recursive-include aidge_core/aidge_export_aidge * +recursive-include aidge_core/export_utils/templates * + recursive-include include *.hpp recursive-include src *.cpp recursive-include python_binding *.cpp -- GitLab From 664ca093f63921310207fac61e3142147fecf67d Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 9 Jan 2025 10:01:21 +0100 Subject: [PATCH 068/157] Fixed bug with format --- src/scheduler/Scheduler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index 242a2d0e6..d456c8af2 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -722,12 +722,12 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer const auto parentOp = std::static_pointer_cast<OperatorTensor>(concatParent->getOperator()); const auto parentRequiredSize = parentOp->getRequiredMemory(outputIdx, {}); const auto parentOutputDims = (parentOp->getOutput(outputIdx)) ? parentOp->getOutput(outputIdx)->dims() : std::vector<DimSize_t>(); + const auto parentOutputFormat = (parentOp->getOutput(outputIdx)) ? parentOp->getOutput(outputIdx)->dataFormat() : DataFormat::Default; // By default, specifies a fully monolithic memory block std::size_t parentSize = parentRequiredSize.data; - if (parentOutputDims.size() > 3) { - // If it is possible, assume a NCHW layout + if (parentOutputFormat == DataFormat::NHWC) { parentSize = parentOutputDims.end()[-3]; } -- GitLab From 911170b5547f2b564bb768d43ac6ff94f37e9d22 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 9 Jan 2025 10:27:39 +0100 Subject: [PATCH 069/157] Fixed concat block size for NCHW --- src/scheduler/Scheduler.cpp | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index d456c8af2..b928334f3 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -707,6 +707,7 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer } } + size_t concatSize = size; size_t concatOffset = 0; if (concat) { @@ -730,6 +731,9 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer if (parentOutputFormat == DataFormat::NHWC) { parentSize = parentOutputDims.end()[-3]; } + else { + concatSize = parentSize; + } concatOffset += parentSize; } @@ -747,16 +751,27 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer if (wrapAroundBuffer && wrapAroundSize > 0) { memManager.reallocate(memPlane, node, concatOffset, - size, true, wrapAroundExtra, childs, stride, length, count); + concatSize, true, wrapAroundExtra, childs, stride, length, count); } else { memManager.reallocate(memPlane.memSpace, node, memPlane.offset + concatOffset, - size, false, 0, childs, stride, length, count); + concatSize, false, 0, childs, stride, length, count); } if (concat && itConcat == concatMemPlane.end()) { concatMemPlane.emplace(concat, memPlane); + + if (wrapAroundBuffer && wrapAroundSize > 0) { + memManager.reallocate(memPlane, + concat, 0, + size, true, wrapAroundExtra, childs, stride, length, count); + } + else { + memManager.reallocate(memPlane.memSpace, + concat, memPlane.offset, + size, false, 0, childs, stride, length, count); + } } } -- GitLab From 60f51b7a575f1f4b61900d2c4d229562ce988465 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 9 Jan 2025 10:31:40 +0100 Subject: [PATCH 070/157] Fix of the previous fix --- src/scheduler/Scheduler.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index b928334f3..ac73b8264 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -716,24 +716,24 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer // Compute concatOffset for (auto concatParent : concat->getParents()) { + const auto parentOp = std::static_pointer_cast<OperatorTensor>(concatParent->getOperator()); + const auto parentRequiredSize = parentOp->getRequiredMemory(outputIdx, {}); + const auto parentOutputDims = (parentOp->getOutput(outputIdx)) ? parentOp->getOutput(outputIdx)->dims() : std::vector<DimSize_t>(); + const auto parentOutputFormat = (parentOp->getOutput(outputIdx)) ? parentOp->getOutput(outputIdx)->dataFormat() : DataFormat::Default; + if (concatParent == node) { + if (parentOutputFormat != DataFormat::NHWC) { + concatSize = parentRequiredSize.data; + } break; } else { - const auto parentOp = std::static_pointer_cast<OperatorTensor>(concatParent->getOperator()); - const auto parentRequiredSize = parentOp->getRequiredMemory(outputIdx, {}); - const auto parentOutputDims = (parentOp->getOutput(outputIdx)) ? parentOp->getOutput(outputIdx)->dims() : std::vector<DimSize_t>(); - const auto parentOutputFormat = (parentOp->getOutput(outputIdx)) ? parentOp->getOutput(outputIdx)->dataFormat() : DataFormat::Default; - // By default, specifies a fully monolithic memory block std::size_t parentSize = parentRequiredSize.data; if (parentOutputFormat == DataFormat::NHWC) { parentSize = parentOutputDims.end()[-3]; } - else { - concatSize = parentSize; - } concatOffset += parentSize; } -- GitLab From 1aa8defc62a579ea0ef4a31bc9f367291e93152e Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 9 Jan 2025 10:51:23 +0100 Subject: [PATCH 071/157] Planes are garanteed to exist --- aidge_core/mem_info.py | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/aidge_core/mem_info.py b/aidge_core/mem_info.py index 8946c4dbd..5e36eb3ee 100644 --- a/aidge_core/mem_info.py +++ b/aidge_core/mem_info.py @@ -144,19 +144,18 @@ def generate_optimized_memory_info(scheduler: aidge_core.Scheduler, stats_folder }) else: for out_id in range(node.get_nb_outputs()): - if node in mem_planes: - plane = mem_planes[node][out_id] - node_mem_info.append({ - "size": plane.size, - "offset": plane.get_contiguous_offset(), - "stride": plane.stride, - "length": plane.length, - "count": plane.count, - "cont_offset": plane.get_contiguous_offset(), - "cont_size": plane.get_contiguous_size(), - "wrap_offset": plane.get_wrapped_offset(), - "wrap_size": plane.get_wrapped_size() - }) + plane = mem_planes[node][out_id] + node_mem_info.append({ + "size": plane.size, + "offset": plane.get_contiguous_offset(), + "stride": plane.stride, + "length": plane.length, + "count": plane.count, + "cont_offset": plane.get_contiguous_offset(), + "cont_size": plane.get_contiguous_size(), + "wrap_offset": plane.get_wrapped_offset(), + "wrap_size": plane.get_wrapped_size() + }) mem_info[node] = node_mem_info return mem_size, mem_info -- GitLab From 642e2e467bf4a103d36c88e9aa082621e6f74373 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 10 Jan 2025 07:45:28 +0000 Subject: [PATCH 072/157] ConsoleLevel is now shared accross modules. --- include/aidge/utils/Log.hpp | 37 ++++++++++++++++++++++++++++- python_binding/utils/pybind_Log.cpp | 22 +++++++++++++---- src/utils/Log.cpp | 2 +- 3 files changed, 55 insertions(+), 6 deletions(-) diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index bc99ab7c0..ce0e0791e 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -21,7 +21,14 @@ #include "aidge/data/half_fmt.hpp" #include "aidge/utils/Attributes.hpp" +#ifdef PYBIND +#include <pybind11/pybind11.h> // get_shared_data, set_shared_data, PyIsInitialized +#endif + namespace Aidge { +#ifdef PYBIND +namespace py = pybind11; +#endif /** * Helper to define a context anywhere, hiding the scoped variable name * which has no relevance. @@ -126,8 +133,36 @@ class Log { */ static void setConsoleLevel(Level level) { mConsoleLevel = level; - } + // Note: In python each module has a compiled version of Log. + // This means each static instance is separated and does not communicate. + // To allow the communication between the different modules, we use PyCapsule. + // https://docs.python.org/3/extending/extending.html#providing-a-c-api-for-an-extension-module + #ifdef PYBIND + #define _CRT_SECURE_NO_WARNINGS + if (Py_IsInitialized()){ + // Note: Setting mConsoleLevel and not level is important + // to avoid garbage collection of the pointer. + py::set_shared_data("consoleLevel", &mConsoleLevel); + } + #endif // PYBIND + } + /** + * @brief Get the curent Console Level. + * + * @return const Level + */ + static Level getConsoleLevel(){ + #ifdef PYBIND + #define _CRT_SECURE_NO_WARNINGS + if (Py_IsInitialized()){ + auto shared_data = reinterpret_cast<Level *>(py::get_shared_data("consoleLevel")); + if (shared_data) + mConsoleLevel = *shared_data; + } + #endif // PYBIND + return mConsoleLevel; + } /** * Set or disable colors on console. * Initial value should be assumed true. diff --git a/python_binding/utils/pybind_Log.cpp b/python_binding/utils/pybind_Log.cpp index aa42c6605..bb81c10b2 100644 --- a/python_binding/utils/pybind_Log.cpp +++ b/python_binding/utils/pybind_Log.cpp @@ -78,17 +78,31 @@ void init_Log(py::module& m){ .def_static("set_console_level", &Log::setConsoleLevel, py::arg("level"), R"mydelimiter( Set the minimum log level displayed in the console. - Available `Level`s in ascending order : + Available `Level`s in ascending order: - Level.Debug - Level.Info - Level.Notice - Level.Warn - Level.Error - - Level.Fatal + - Level.Fatal :param level: Log level. :type level: Level )mydelimiter") + .def_static("get_console_level", &Log::getConsoleLevel, + R"mydelimiter( + Get the current log level. Log level is set to ``Notice`` by default. + Log level is shared across modules. + Available `Level`s in ascending order: + - Level.Debug + - Level.Info + - Level.Notice + - Level.Warn + - Level.Error + - Level.Fatal + :return level: Log level. + :rtype level: Level + )mydelimiter") .def_static("set_console_color", &Log::setConsoleColor, py::arg("enabled"), R"mydelimiter( Enables or disable color output on comsole. @@ -100,13 +114,13 @@ void init_Log(py::module& m){ .def_static("set_file_level", &Log::setFileLevel, py::arg("level"), R"mydelimiter( Set the minimum log level saved in the log file. - Available `Level`s in ascending order : + Available `Level`s in ascending order : - Level.Debug - Level.Info - Level.Notice - Level.Warn - Level.Error - - Level.Fatal + - Level.Fatal :param level: Log level. :type level: Level diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index 136fcc16f..383fdae17 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -60,7 +60,7 @@ std::unique_ptr<FILE, Aidge::Log::fcloseDeleter> Aidge::Log::mFile {nullptr, Aid std::vector<std::string> Aidge::Log::mContext; void Aidge::Log::log(Level level, const std::string& msg) { - if (level >= mConsoleLevel) { + if (level >= getConsoleLevel()) { // Apply log level style only for console. // Styles that were already applied to msg with fmt are kept also in // the log file. -- GitLab From 3672c60e676df75c0dffe40ed85c353b2b1644df Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 10 Jan 2025 16:05:28 +0000 Subject: [PATCH 073/157] Update shape so that forwardDims does not require a backend. Update test to remove unecessary Node. --- include/aidge/data/Tensor.hpp | 7 +++++++ include/aidge/operator/Shape.hpp | 4 +--- src/operator/Shape.cpp | 12 ++++++++++-- unit_tests/operator/Test_ShapeImpl.cpp | 9 ++++----- 4 files changed, 22 insertions(+), 10 deletions(-) diff --git a/include/aidge/data/Tensor.hpp b/include/aidge/data/Tensor.hpp index fdeef2a8e..3f609e54d 100644 --- a/include/aidge/data/Tensor.hpp +++ b/include/aidge/data/Tensor.hpp @@ -393,6 +393,13 @@ public: return hasImpl() ? getImpl()->backend() : ""; } + + /** + * @brief Get the device index. + * @return DeviceIdx_t + */ + DeviceIdx_t device() const noexcept { return mImpl ? mImpl->device().second : static_cast<DeviceIdx_t>(0); } + /** * @brief Set the backend of the Tensor associated implementation. If there * was no previous implementation set, data will be allocated, but it will diff --git a/include/aidge/operator/Shape.hpp b/include/aidge/operator/Shape.hpp index cfd43fa0d..d40067d29 100644 --- a/include/aidge/operator/Shape.hpp +++ b/include/aidge/operator/Shape.hpp @@ -47,9 +47,7 @@ private: const std::shared_ptr<Attributes_> mAttributes; public: - Shape_Op() = delete; - - Shape_Op(const std::int64_t start, const std::int64_t end); + Shape_Op(const std::int64_t start = 0, const std::int64_t end = -1); /** * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). diff --git a/src/operator/Shape.cpp b/src/operator/Shape.cpp index ecaa12191..c38f52d76 100644 --- a/src/operator/Shape.cpp +++ b/src/operator/Shape.cpp @@ -18,10 +18,14 @@ #include "aidge/data/Tensor.hpp" #include "aidge/utils/ErrorHandling.hpp" #include "aidge/utils/Types.h" +#include "aidge/utils/Log.hpp" void Aidge::Shape_OpImpl::forward() { - // Do nothing... // Output is already valid after forwardDims() + // But it may be with the wrong device (default cpu) + // This can happen if forwardDims is called before setBackend + const Shape_Op& op = dynamic_cast<const Shape_Op&>(mOp); + op.getOutput(0)->setBackend(op.getInput(0)->backend(), op.getInput(0)->device()); } /////////////////////////////////////////////// @@ -69,6 +73,10 @@ bool Aidge::Shape_Op::forwardDims(bool /*allowDataDependency*/) { AIDGE_ASSERT(roi> 1, "Invalid ROI for Shape"); mOutputs[0]->resize({roi}); + if (!mOutputs[0]->getImpl()){ + Log::debug("Shape::forwardDims, no implementation set for output, defaulting to CPU."); + mOutputs[0]->setBackend("cpu"); + } // Ensure the output of this operator is valid after forwardDims(): mOutputs[0]->getImpl()->copyCast(std::next(getInput(0)->dims().data(), start), @@ -98,4 +106,4 @@ std::set<std::string> Aidge::Shape_Op::getAvailableBackends() const { std::shared_ptr<Aidge::Node> Aidge::Shape(const std::int64_t start, const std::int64_t end, const std::string& name) { return std::make_shared<Node>(std::make_shared<Shape_Op>(start, end), name); -} \ No newline at end of file +} diff --git a/unit_tests/operator/Test_ShapeImpl.cpp b/unit_tests/operator/Test_ShapeImpl.cpp index 45df89df0..56ca3eaa1 100644 --- a/unit_tests/operator/Test_ShapeImpl.cpp +++ b/unit_tests/operator/Test_ShapeImpl.cpp @@ -42,12 +42,11 @@ TEST_CASE("[cpu/operator] Shape(forward)", "[Shape][CPU]") { {1, 2, 3, 5} }); - std::shared_ptr<Node> myShape = Shape(); - auto op = std::static_pointer_cast<OperatorTensor>(myShape -> getOperator()); - op->associateInput(0,input); + std::shared_ptr<Shape_Op> op = std::make_shared<Shape_Op>(); + op->associateInput(0, input); op->setDataType(DataType::Int32); op->setBackend("cpu"); - myShape->forward(); + op->forward(); REQUIRE(*(op->getOutput(0)) == *expectedOutput); @@ -83,4 +82,4 @@ TEST_CASE("[cpu/operator] Shape(forward)", "[Shape][CPU]") { REQUIRE(*(op->getOutput(0)) == *expectedOutput); } -} \ No newline at end of file +} -- GitLab From 9dcae59442dcca6bb76905d60793d321906109ed Mon Sep 17 00:00:00 2001 From: Iryna DE ALBUQUERQUE SILVA <iryna.dealbuquerquesilva@cea.fr> Date: Wed, 15 Jan 2025 10:43:28 +0000 Subject: [PATCH 074/157] Add support for non-defined inputs and outputs of nodes in show_graphview.py. --- aidge_core/show_graphview.py | 38 ++++++++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/aidge_core/show_graphview.py b/aidge_core/show_graphview.py index 14bb6c3e9..cc4d7bc72 100644 --- a/aidge_core/show_graphview.py +++ b/aidge_core/show_graphview.py @@ -58,20 +58,36 @@ def _create_dict(ordered_nodes : List[aidge_core.Node], write_trainable_params_e 'nb_outputs' : node.get_operator().nb_outputs()} inputs = [] - for input_idx in range(node.get_operator().nb_inputs()): - input_dict = {'dims' : node.get_operator().get_input(input_idx).dims(), - 'data_type' : str(node.get_operator().get_input(input_idx).dtype()), - 'data_format' : str(node.get_operator().get_input(input_idx).dformat())} - inputs.append(input_dict) + if node.get_operator().nb_inputs() > 0: + for input_idx in range(node.get_operator().nb_inputs()): + if node.get_operator().get_input(input_idx) is not None: + input_dict = {'dims' : node.get_operator().get_input(input_idx).dims(), + 'data_type' : str(node.get_operator().get_input(input_idx).dtype()), + 'data_format' : str(node.get_operator().get_input(input_idx).dformat())} + + elif node.get_operator().get_input(input_idx) is None: + input_dict = {'dims' : None, + 'data_type' : None, + 'data_format' : None} + + inputs.append(input_dict) node_dict['inputs'] = inputs outputs = [] - for output_idx in range(node.get_operator().nb_outputs()): - output_dict = {'dims' : node.get_operator().get_output(output_idx).dims(), - 'data_type' : str(node.get_operator().get_output(output_idx).dtype()), - 'data_format' : str(node.get_operator().get_output(output_idx).dformat())} - outputs.append(output_dict) + if node.get_operator().nb_outputs() > 0: + for output_idx in range(node.get_operator().nb_outputs()): + if node.get_operator().get_output(output_idx) is not None: + output_dict = {'dims' : node.get_operator().get_output(output_idx).dims(), + 'data_type' : str(node.get_operator().get_output(output_idx).dtype()), + 'data_format' : str(node.get_operator().get_output(output_idx).dformat())} + + elif node.get_operator().get_output(output_idx) is None: + output_dict = {'dims' : None, + 'data_type' : None, + 'data_format' : None} + + outputs.append(output_dict) node_dict['outputs'] = outputs @@ -199,6 +215,8 @@ def gview_to_json(gview : aidge_core.GraphView, json_path : Path, write_trainabl :type params_file_format: str, optional """ + json_path = Path(json_path) + if not json_path.suffix: if not json_path.is_dir(): json_path.mkdir(parents=True, exist_ok=True) -- GitLab From 03bcdf14bfb8a5560ab698ac7c2b6cb75cfe84d5 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 15 Jan 2025 10:13:25 +0100 Subject: [PATCH 075/157] Fix excess size --- src/scheduler/Scheduler.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index ac73b8264..0e8cba07e 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -738,6 +738,13 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemoryAutoConcat(bool incProducer concatOffset += parentSize; } } + + // Size in reallocate() is counted from the offset, not from 0, + // meaning the offset must be substracted to obtain the correct + // total size without excess. + if (concatOffset > 0) { + concatSize -= concatOffset; + } } // MemoryPlane to (re)use -- GitLab From b5210d987b1d4acd4a149667db3800dc441c4ecd Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 16 Jan 2025 09:09:48 +0100 Subject: [PATCH 076/157] Fixed identity to ensure identity, not assume it --- src/operator/Identity.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/operator/Identity.cpp b/src/operator/Identity.cpp index f0b8720bc..d01d57678 100644 --- a/src/operator/Identity.cpp +++ b/src/operator/Identity.cpp @@ -15,6 +15,9 @@ void Aidge::Identity_OpImpl::forward() { const Identity_Op& op = dynamic_cast<const Identity_Op&>(mOp); + op.getOutput(0)->setBackend(op.getInput(0)->backend(), op.getInput(0)->device()); + op.getOutput(0)->setDataType(op.getInput(0)->dataType()); + op.getOutput(0)->setDataFormat(op.getInput(0)->dataFormat()); op.getOutput(0)->getImpl()->copy(op.getInput(0)->getImpl()->rawPtr(), op.getInput(0)->size()); } -- GitLab From 9de0607ef5c1bb8bfb24b25d53b90c7d5b900847 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Thu, 9 Jan 2025 14:45:47 +0100 Subject: [PATCH 077/157] fix: Change init input of Memorize from Param to Data input category --- src/operator/Memorize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/Memorize.cpp b/src/operator/Memorize.cpp index cd4a48081..c4f0bc4bf 100644 --- a/src/operator/Memorize.cpp +++ b/src/operator/Memorize.cpp @@ -76,7 +76,7 @@ void Aidge::Memorize_OpImpl::forward() { const std::string Aidge::Memorize_Op::Type = "Memorize"; Aidge::Memorize_Op::Memorize_Op(const std::uint32_t endStep) - : OperatorTensor(Type, {InputCategory::Data, InputCategory::Param}, 2), + : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 2), mAttributes(std::make_shared<Attributes_>( attr<MemorizeAttr::ScheduleStep>(0), attr<MemorizeAttr::ForwardStep>(0), -- GitLab From 686f624cbf30e375bacf9d0e9a58a9ec47f46f01 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 4 Dec 2024 18:48:14 +0100 Subject: [PATCH 078/157] Fix scheduling with Memorize --- src/scheduler/Scheduler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index 0e8cba07e..396e90c09 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -989,7 +989,7 @@ Aidge::Scheduler::getPriorProducersConsumers(const std::shared_ptr<Node>& node) prior.requiredProducers.insert(parent.first); prior.priorConsumers.insert(node); } - else if (parent.first->type() == Memorize_Op::Type) { + else if (parent.first->type() == Memorize_Op::Type && parent.second == 1) { // Break cycles return PriorProducersConsumers(); // not scheduled } -- GitLab From 0dbad08684923bb0af9bd95cafaad5f76b0a160d Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 16 Jan 2025 15:07:27 +0100 Subject: [PATCH 079/157] Fix getAdaptation() --- src/backend/OperatorImpl.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/backend/OperatorImpl.cpp b/src/backend/OperatorImpl.cpp index 8a4924c0e..5c25ad605 100644 --- a/src/backend/OperatorImpl.cpp +++ b/src/backend/OperatorImpl.cpp @@ -235,6 +235,11 @@ bool Aidge::OperatorImpl::checkIOSpec(const ImplSpec::IOSpec& required, const Im } std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& spec, const ImplSpec& requiredSpecs) const { + // Original graph is: + // --> {required IO specs} [node] {required IO specs} --> + // Obtained meta-op is: + // --> {required IO specs} [adapt inputs] --> {IO specs} [node] {IO specs} --> [adapt outputs] {required IO specs} + auto op = std::static_pointer_cast<OperatorTensor>(mOp.clone()); auto node = std::make_shared<Node>(op); @@ -306,7 +311,7 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& cast->getOperator()->setBackend(node->getOperator()->backend()); parent->addChild(cast, i, 0); - op->getOutput(i)->setDataType(IOSpec.type); + op->getInput(i)->setDataType(IOSpec.type); } // Output format @@ -321,7 +326,7 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& transposeOp->getOperator()->setBackend(node->getOperator()->backend()); parent->addChild(transposeOp, i, 0); - op->getOutput(i)->setDataFormat(IOSpec.format); + op->getInput(i)->setDataFormat(IOSpec.format); } // Output dims -- GitLab From 3b3f7548be30cee23711123da00ce6f6d966ced6 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Wed, 27 Nov 2024 15:46:28 +0100 Subject: [PATCH 080/157] feat: Add basic leaky operator declaration --- include/aidge/operator/MetaOperatorDefs.hpp | 3 + src/operator/MetaOperatorDefs/LSTM.cpp | 2 - src/operator/MetaOperatorDefs/Leaky.cpp | 124 ++++++++++++++++++++ unit_tests/operator/Test_MetaOperator.cpp | 14 +++ 4 files changed, 141 insertions(+), 2 deletions(-) create mode 100644 src/operator/MetaOperatorDefs/Leaky.cpp diff --git a/include/aidge/operator/MetaOperatorDefs.hpp b/include/aidge/operator/MetaOperatorDefs.hpp index 481a7795e..02237d1d5 100644 --- a/include/aidge/operator/MetaOperatorDefs.hpp +++ b/include/aidge/operator/MetaOperatorDefs.hpp @@ -165,6 +165,9 @@ std::shared_ptr<Node> LSTM(DimSize_t in_channels, std::shared_ptr<MetaOperator_Op> LSTM_Op(DimSize_t seq_length); +std::shared_ptr<MetaOperator_Op> LeakyOp(); +std::shared_ptr<Node> Leaky(const std::string& name = ""); + } // namespace Aidge #endif /* AIDGE_CORE_OPERATOR_METAOPERATORDEFS_H_ */ diff --git a/src/operator/MetaOperatorDefs/LSTM.cpp b/src/operator/MetaOperatorDefs/LSTM.cpp index 2ed548805..22c0469b3 100644 --- a/src/operator/MetaOperatorDefs/LSTM.cpp +++ b/src/operator/MetaOperatorDefs/LSTM.cpp @@ -11,7 +11,6 @@ #include "aidge/operator/MetaOperatorDefs.hpp" -#include <array> #include <memory> #include <string> @@ -20,7 +19,6 @@ #include "aidge/operator/Mul.hpp" #include "aidge/operator/FC.hpp" #include "aidge/operator/Identity.hpp" -#include "aidge/operator/Concat.hpp" #include "aidge/operator/Tanh.hpp" namespace Aidge { diff --git a/src/operator/MetaOperatorDefs/Leaky.cpp b/src/operator/MetaOperatorDefs/Leaky.cpp new file mode 100644 index 000000000..98927e19b --- /dev/null +++ b/src/operator/MetaOperatorDefs/Leaky.cpp @@ -0,0 +1,124 @@ +#include "aidge/filler/Filler.hpp" +#include "aidge/operator/Add.hpp" +#include "aidge/operator/Heaviside.hpp" +#include "aidge/operator/Identity.hpp" +#include "aidge/operator/Memorize.hpp" +#include "aidge/operator/MetaOperatorDefs.hpp" +#include "aidge/operator/Mul.hpp" +#include "aidge/operator/Producer.hpp" +#include "aidge/operator/Sub.hpp" + +namespace Aidge { + +constexpr auto memorizeOpDataOutputRecIndex = 1; +constexpr auto memorizeOpDataOutputIndex = 0; + +std::shared_ptr<Node> Leaky(const std::string &name) { + + Log::warn("! Lots of parameters are hardcoded"); + const auto softReset = true; + const auto beta = 0.9; + const auto thresholdValue = 1.0; + const auto seqLength = 2; + + auto microGraph = std::make_shared<GraphView>(); + + auto inputNode = Identity((!name.empty()) ? name + "_input" : ""); + auto addNode = Add(!name.empty() ? name + "_add" : ""); + auto mulNode = Mul(!name.empty() ? name + "_mul" : ""); + auto subNode = Sub(!name.empty() ? name + "_sub" : ""); + auto hsNode = Heaviside(0, !name.empty() ? name + "_hs" : ""); + auto subNode2 = Sub(!name.empty() ? name + "_threshold" : ""); + auto reset = Mul(!name.empty() ? name + "_reset" : ""); + + // auto betaTensor = std::make_shared<Tensor>(Array2D<float, 16, 32>{}); + // FIXME: Use beta instead of a fixed value here, and put real dimensions + auto betaTensor = std::make_shared<Tensor>(Array2D<float, 3, 2>{}); + auto uthTensor = + std::make_shared<Tensor>(static_cast<float>(thresholdValue)); + uniformFiller<float>(betaTensor, beta, beta); + uniformFiller<float>(uthTensor, thresholdValue, thresholdValue); + + auto decayRate = Producer(betaTensor, "leaky_beta", true); + auto uth = Producer(uthTensor, "leaky_uth", true); + + auto potentialMem = + Memorize(seqLength, (!name.empty()) ? name + "_potential" : ""); + auto spikeMem = + Memorize(seqLength, (!name.empty()) ? name + "_spike" : ""); + + // U[t] = Input[T] + beta * U[T-1] - S[T-1] * U_th + // with S[T] = | 1, if U[T] - U_th > 0 + // | 0 otherwise + + // beta * U[T-1] + decayRate->addChild(/*otherNode=*/mulNode, /*outId=*/0, /*otherInId=*/1); + potentialMem->addChild(mulNode, 1, 0); + + // Input[T] + beta * U[T-1] + mulNode->addChild(/*otherNode=*/addNode, /*outId=*/0, /*otherInId=*/1); + inputNode->addChild(/*otherNode=*/addNode, /*outId=*/0, /*otherInId=*/0); + + // S[T-1] * Uth + spikeMem->addChild(reset, + /*outId=*/memorizeOpDataOutputRecIndex, + /*otherInId=*/0); + uth->addChild(reset, 0, 1); + if (softReset) { + uth->addChild(reset, 0, 1); + } else { + // addNode->addChild(reset, 0, 1); + AIDGE_THROW_OR_ABORT(std::runtime_error, + "Hard reset not implemented yet."); + } + + // Input[T] + beta * U[T-1] - S[T-1] * Uth + addNode->addChild(subNode, 0, 0); + reset->addChild(subNode, 0, 1); + + // U[t] = Input[T] + beta * U[T-1] - S[T-1] + subNode->addChild(potentialMem, 0, 0); + + // U[T] - U_th + subNode->addChild(subNode2, 0, 0); + uth->addChild(subNode2, 0, 1); + + // with S[T] = | 1, if U[T] - U_th > 0 + subNode2->addChild(hsNode, 0, 0); + hsNode->addChild(spikeMem, 0, 0); + + microGraph->add(inputNode); + microGraph->add({addNode, + mulNode, + potentialMem, + decayRate, + uth, + spikeMem, + hsNode, + subNode, + subNode2, + reset}, + false); + + microGraph->setOrderedInputs( + {{inputNode, 0}, {potentialMem, 1}, {spikeMem, 1}}); + + microGraph->setOrderedOutputs({//{potentialMem, memorizeOpDataOutputIndex}, + //{spikeMem, memorizeOpDataOutputIndex} + {addNode, 0}, + {hsNode, 0}}); + + auto metaOp = MetaOperator(/*type*/ "Leaky", + /*graph*/ microGraph, + /*forcedInputsCategory=*/{}, + /*name*/ "leaky"); + + // addProducer(metaOp, 1, {1,2}, "memorizeInit1"); + // addProducer(metaOp, 2, {1,2}, "memorizeInit2"); + return metaOp; +} + +std::shared_ptr<MetaOperator_Op> LeakyOp() { + AIDGE_THROW_OR_ABORT(std::runtime_error, "Not implemented yet"); +} +} // namespace Aidge diff --git a/unit_tests/operator/Test_MetaOperator.cpp b/unit_tests/operator/Test_MetaOperator.cpp index 6711e1524..97aea2414 100644 --- a/unit_tests/operator/Test_MetaOperator.cpp +++ b/unit_tests/operator/Test_MetaOperator.cpp @@ -23,6 +23,7 @@ #include "aidge/graph/GraphView.hpp" #include "aidge/graph/Testing.hpp" #include "aidge/recipes/Recipes.hpp" +#include "aidge/utils/ErrorHandling.hpp" using namespace Aidge; @@ -145,4 +146,17 @@ TEST_CASE("[core/operators] MetaOperator", "[Operator][MetaOperator]") { REQUIRE(g->getNodes().size() == 33); } + + SECTION("Leaky") { + auto myLeaky = Leaky(); + auto op = std::static_pointer_cast<OperatorTensor>(myLeaky->getOperator()); + + // 2 inputs : + // 1 for the actual input data, + // 1 for the Memorize init tensor. + auto inputs = myLeaky->inputs(); + + REQUIRE(myLeaky->nbInputs() == 3); + REQUIRE(true); + } } -- GitLab From c9cfde9670ec7002d150b81dc77e675f38f9d982 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Thu, 5 Dec 2024 17:01:55 +0100 Subject: [PATCH 081/157] chore: Improve Leaky Meta-operator --- include/aidge/operator/MetaOperatorDefs.hpp | 2 +- src/operator/MetaOperatorDefs/Leaky.cpp | 39 ++++++++------------- unit_tests/operator/Test_MetaOperator.cpp | 8 ++--- 3 files changed, 19 insertions(+), 30 deletions(-) diff --git a/include/aidge/operator/MetaOperatorDefs.hpp b/include/aidge/operator/MetaOperatorDefs.hpp index 02237d1d5..e270a78b6 100644 --- a/include/aidge/operator/MetaOperatorDefs.hpp +++ b/include/aidge/operator/MetaOperatorDefs.hpp @@ -166,7 +166,7 @@ std::shared_ptr<Node> LSTM(DimSize_t in_channels, std::shared_ptr<MetaOperator_Op> LSTM_Op(DimSize_t seq_length); std::shared_ptr<MetaOperator_Op> LeakyOp(); -std::shared_ptr<Node> Leaky(const std::string& name = ""); +std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const float beta, const std::string& name = ""); } // namespace Aidge diff --git a/src/operator/MetaOperatorDefs/Leaky.cpp b/src/operator/MetaOperatorDefs/Leaky.cpp index 98927e19b..450f2d1c3 100644 --- a/src/operator/MetaOperatorDefs/Leaky.cpp +++ b/src/operator/MetaOperatorDefs/Leaky.cpp @@ -13,13 +13,9 @@ namespace Aidge { constexpr auto memorizeOpDataOutputRecIndex = 1; constexpr auto memorizeOpDataOutputIndex = 0; -std::shared_ptr<Node> Leaky(const std::string &name) { +std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const float beta, const std::string &name) { Log::warn("! Lots of parameters are hardcoded"); - const auto softReset = true; - const auto beta = 0.9; - const auto thresholdValue = 1.0; - const auto seqLength = 2; auto microGraph = std::make_shared<GraphView>(); @@ -31,21 +27,18 @@ std::shared_ptr<Node> Leaky(const std::string &name) { auto subNode2 = Sub(!name.empty() ? name + "_threshold" : ""); auto reset = Mul(!name.empty() ? name + "_reset" : ""); - // auto betaTensor = std::make_shared<Tensor>(Array2D<float, 16, 32>{}); - // FIXME: Use beta instead of a fixed value here, and put real dimensions - auto betaTensor = std::make_shared<Tensor>(Array2D<float, 3, 2>{}); + auto betaTensor = std::make_shared<Tensor>(beta); auto uthTensor = - std::make_shared<Tensor>(static_cast<float>(thresholdValue)); - uniformFiller<float>(betaTensor, beta, beta); - uniformFiller<float>(uthTensor, thresholdValue, thresholdValue); + std::make_shared<Tensor>(static_cast<float>(threshold)); + uniformFiller<float>(uthTensor, threshold, threshold); auto decayRate = Producer(betaTensor, "leaky_beta", true); auto uth = Producer(uthTensor, "leaky_uth", true); auto potentialMem = - Memorize(seqLength, (!name.empty()) ? name + "_potential" : ""); + Memorize(nbTimeSteps, (!name.empty()) ? name + "_potential" : ""); auto spikeMem = - Memorize(seqLength, (!name.empty()) ? name + "_spike" : ""); + Memorize(nbTimeSteps, (!name.empty()) ? name + "_spike" : ""); // U[t] = Input[T] + beta * U[T-1] - S[T-1] * U_th // with S[T] = | 1, if U[T] - U_th > 0 @@ -59,20 +52,16 @@ std::shared_ptr<Node> Leaky(const std::string &name) { mulNode->addChild(/*otherNode=*/addNode, /*outId=*/0, /*otherInId=*/1); inputNode->addChild(/*otherNode=*/addNode, /*outId=*/0, /*otherInId=*/0); - // S[T-1] * Uth + // S[T-1] * U_th spikeMem->addChild(reset, /*outId=*/memorizeOpDataOutputRecIndex, /*otherInId=*/0); + + // TODO: Handle hard/soft reset uth->addChild(reset, 0, 1); - if (softReset) { - uth->addChild(reset, 0, 1); - } else { - // addNode->addChild(reset, 0, 1); - AIDGE_THROW_OR_ABORT(std::runtime_error, - "Hard reset not implemented yet."); - } - - // Input[T] + beta * U[T-1] - S[T-1] * Uth + + + // Input[T] + beta * U[T-1] - S[T-1] * U_th addNode->addChild(subNode, 0, 0); reset->addChild(subNode, 0, 1); @@ -103,6 +92,8 @@ std::shared_ptr<Node> Leaky(const std::string &name) { microGraph->setOrderedInputs( {{inputNode, 0}, {potentialMem, 1}, {spikeMem, 1}}); + // NOTE: Outputs are NOT the memory nodes (as it is done in LSTM), to avoid producing data during init + // This way, we can plug a stack operator after or node, and get correct results microGraph->setOrderedOutputs({//{potentialMem, memorizeOpDataOutputIndex}, //{spikeMem, memorizeOpDataOutputIndex} {addNode, 0}, @@ -113,8 +104,6 @@ std::shared_ptr<Node> Leaky(const std::string &name) { /*forcedInputsCategory=*/{}, /*name*/ "leaky"); - // addProducer(metaOp, 1, {1,2}, "memorizeInit1"); - // addProducer(metaOp, 2, {1,2}, "memorizeInit2"); return metaOp; } diff --git a/unit_tests/operator/Test_MetaOperator.cpp b/unit_tests/operator/Test_MetaOperator.cpp index 97aea2414..042b04f01 100644 --- a/unit_tests/operator/Test_MetaOperator.cpp +++ b/unit_tests/operator/Test_MetaOperator.cpp @@ -148,15 +148,15 @@ TEST_CASE("[core/operators] MetaOperator", "[Operator][MetaOperator]") { } SECTION("Leaky") { - auto myLeaky = Leaky(); + auto myLeaky = Leaky(10, 1.0, 0.9); auto op = std::static_pointer_cast<OperatorTensor>(myLeaky->getOperator()); - // 2 inputs : - // 1 for the actual input data, - // 1 for the Memorize init tensor. auto inputs = myLeaky->inputs(); + // Two memorize nodes + real data input REQUIRE(myLeaky->nbInputs() == 3); + // Outputs for spike and memory + 2 Memorize node + REQUIRE(myLeaky->nbOutputs() == 4); REQUIRE(true); } } -- GitLab From 3055399d7d87b05d19a16675d63803fbf6f48c25 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Thu, 5 Dec 2024 19:08:38 +0100 Subject: [PATCH 082/157] chore: fix leaky output --- src/operator/MetaOperatorDefs/Leaky.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/operator/MetaOperatorDefs/Leaky.cpp b/src/operator/MetaOperatorDefs/Leaky.cpp index 450f2d1c3..425d47a49 100644 --- a/src/operator/MetaOperatorDefs/Leaky.cpp +++ b/src/operator/MetaOperatorDefs/Leaky.cpp @@ -65,7 +65,7 @@ std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const addNode->addChild(subNode, 0, 0); reset->addChild(subNode, 0, 1); - // U[t] = Input[T] + beta * U[T-1] - S[T-1] + // U[t] = (Input[T] + beta * U[T-1]) - S[T-1] subNode->addChild(potentialMem, 0, 0); // U[T] - U_th @@ -96,7 +96,7 @@ std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const // This way, we can plug a stack operator after or node, and get correct results microGraph->setOrderedOutputs({//{potentialMem, memorizeOpDataOutputIndex}, //{spikeMem, memorizeOpDataOutputIndex} - {addNode, 0}, + {subNode, 0}, {hsNode, 0}}); auto metaOp = MetaOperator(/*type*/ "Leaky", -- GitLab From a570e3c01925626039351c264e9fb7671ab6bfb2 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Mon, 9 Dec 2024 12:30:13 +0100 Subject: [PATCH 083/157] feat: Add python bindings for Leaky MetaOperator --- python_binding/operator/pybind_MetaOperatorDefs.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/python_binding/operator/pybind_MetaOperatorDefs.cpp b/python_binding/operator/pybind_MetaOperatorDefs.cpp index 5f173068a..90edfe791 100644 --- a/python_binding/operator/pybind_MetaOperatorDefs.cpp +++ b/python_binding/operator/pybind_MetaOperatorDefs.cpp @@ -179,6 +179,14 @@ void declare_LSTMOp(py::module &m) { py::arg("seq_length")); } +void declare_LeakyOp(py::module &m) { + m.def("Leaky", &Leaky, + py::arg("nb_timesteps"), + py::arg("threshold"), + py::arg("beta"), + py::arg("name") = ""); +} + void init_MetaOperatorDefs(py::module &m) { declare_PaddedConvOp<1>(m); declare_PaddedConvOp<2>(m); @@ -193,6 +201,7 @@ void init_MetaOperatorDefs(py::module &m) { declare_PaddedMaxPoolingOp<2>(m); // declare_PaddedMaxPoolingOp<3>(m); declare_LSTMOp(m); + declare_LeakyOp(m); py::class_<MetaOperator_Op, std::shared_ptr<MetaOperator_Op>, OperatorTensor>(m, "MetaOperatorOp", py::multiple_inheritance()) .def(py::init<const char *, const std::shared_ptr<GraphView>&, const std::vector<InputCategory>&>(), -- GitLab From be66571292169d9af2883cd6d236c883f9466c47 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Mon, 9 Dec 2024 16:53:26 +0100 Subject: [PATCH 084/157] chore: Format modified files --- include/aidge/operator/MetaOperatorDefs.hpp | 247 ++++++++++++-------- src/operator/MetaOperatorDefs/Leaky.cpp | 14 +- 2 files changed, 156 insertions(+), 105 deletions(-) diff --git a/include/aidge/operator/MetaOperatorDefs.hpp b/include/aidge/operator/MetaOperatorDefs.hpp index e270a78b6..f80dd38f1 100644 --- a/include/aidge/operator/MetaOperatorDefs.hpp +++ b/include/aidge/operator/MetaOperatorDefs.hpp @@ -19,11 +19,11 @@ #include "aidge/graph/GraphView.hpp" #include "aidge/graph/Node.hpp" #include "aidge/graph/OpArgs.hpp" // Sequential -#include "aidge/operator/MetaOperator.hpp" #include "aidge/operator/AvgPooling.hpp" -#include "aidge/operator/MaxPooling.hpp" #include "aidge/operator/Conv.hpp" #include "aidge/operator/ConvDepthWise.hpp" +#include "aidge/operator/MaxPooling.hpp" +#include "aidge/operator/MetaOperator.hpp" #include "aidge/operator/Pad.hpp" #include "aidge/operator/Sigmoid.hpp" #include "aidge/utils/ArrayHelpers.hpp" @@ -31,128 +31,174 @@ namespace Aidge { - template <std::array<DimSize_t, 1>::size_type DIM> -extern std::shared_ptr<Node> PaddedConv(DimSize_t in_channels, - DimSize_t out_channels, - const std::array<DimSize_t, DIM> &kernel_dims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1), - bool no_bias = false); +extern std::shared_ptr<Node> +PaddedConv(DimSize_t in_channels, + DimSize_t out_channels, + const std::array<DimSize_t, DIM> &kernel_dims, + const std::string &name = "", + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + const std::array<DimSize_t, DIM> &dilation_dims = + create_array<DimSize_t, DIM>(1), + bool no_bias = false); template <std::array<DimSize_t, 1>::size_type DIM> -extern std::shared_ptr<MetaOperator_Op> PaddedConv_Op( - const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1)); - -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction +extern std::shared_ptr<MetaOperator_Op> +PaddedConv_Op(const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + const std::array<DimSize_t, DIM> &dilation_dims = + create_array<DimSize_t, DIM>(1)); + +// helper with C-style array instead of std::array for kernel_dims to allow +// automatic template DIM deduction template <DimSize_t DIM> -extern std::shared_ptr<Node> PaddedConv( - DimSize_t in_channels, - DimSize_t out_channels, - DimSize_t const (&kernel_dims)[DIM], - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1), - bool no_bias = false); +extern std::shared_ptr<Node> +PaddedConv(DimSize_t in_channels, + DimSize_t out_channels, + DimSize_t const (&kernel_dims)[DIM], + const std::string &name = "", + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + const std::array<DimSize_t, DIM> &dilation_dims = + create_array<DimSize_t, DIM>(1), + bool no_bias = false); //////////////////////////////////////////////////////////////////////////////// template <std::array<DimSize_t, 1>::size_type DIM> -std::shared_ptr<Node> PaddedConvDepthWise(const DimSize_t nb_channels, - const std::array<DimSize_t, DIM> &kernel_dims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1), - bool no_bias = false); +std::shared_ptr<Node> +PaddedConvDepthWise(const DimSize_t nb_channels, + const std::array<DimSize_t, DIM> &kernel_dims, + const std::string &name = "", + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + const std::array<DimSize_t, DIM> &dilation_dims = + create_array<DimSize_t, DIM>(1), + bool no_bias = false); template <std::array<DimSize_t, 1>::size_type DIM> -std::shared_ptr<MetaOperator_Op> PaddedConvDepthWise_Op( - const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1)); - -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction +std::shared_ptr<MetaOperator_Op> +PaddedConvDepthWise_Op(const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + const std::array<DimSize_t, DIM> &dilation_dims = + create_array<DimSize_t, DIM>(1)); + +// helper with C-style array instead of std::array for kernel_dims to allow +// automatic template DIM deduction template <DimSize_t DIM> -inline std::shared_ptr<Node> PaddedConvDepthWise( - const DimSize_t nb_channels, - DimSize_t const (&kernel_dims)[DIM], - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1), - bool no_bias = false); +inline std::shared_ptr<Node> +PaddedConvDepthWise(const DimSize_t nb_channels, + DimSize_t const (&kernel_dims)[DIM], + const std::string &name = "", + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + const std::array<DimSize_t, DIM> &dilation_dims = + create_array<DimSize_t, DIM>(1), + bool no_bias = false); //////////////////////////////////////////////////////////////////////////////// - template <std::array<DimSize_t, 1>::size_type DIM> -extern std::shared_ptr<Node> PaddedAvgPooling(const std::array<DimSize_t, DIM> &kernel_dims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0)); - +extern std::shared_ptr<Node> +PaddedAvgPooling(const std::array<DimSize_t, DIM> &kernel_dims, + const std::string &name = "", + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0)); template <std::array<DimSize_t, 1>::size_type DIM> -extern std::shared_ptr<MetaOperator_Op> PaddedAvgPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0)); - -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction +extern std::shared_ptr<MetaOperator_Op> +PaddedAvgPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0)); + +// helper with C-style array instead of std::array for kernel_dims to allow +// automatic template DIM deduction template <DimSize_t DIM> -extern std::shared_ptr<Node> PaddedAvgPooling(DimSize_t const (&kernel_dims)[DIM], - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0)); +extern std::shared_ptr<Node> +PaddedAvgPooling(DimSize_t const (&kernel_dims)[DIM], + const std::string &name = "", + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0)); //////////////////////////////////////////////////////////////////////////////// template <std::array<DimSize_t, 1>::size_type DIM> -inline std::shared_ptr<Node> PaddedMaxPooling(const std::array<DimSize_t, DIM> &kernel_dims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - bool ceil_mode = false) -{ - auto graph = Sequential({ - Pad<DIM>(padding_dims, (!name.empty()) ? name + "_pad" : ""), - MaxPooling(kernel_dims, (!name.empty()) ? name + "_maxpooling" : "", stride_dims, ceil_mode) - }); - - return MetaOperator(("PaddedMaxPooling" + std::to_string(DIM) + "D").c_str(), graph, {}, name); +inline std::shared_ptr<Node> +PaddedMaxPooling(const std::array<DimSize_t, DIM> &kernel_dims, + const std::string &name = "", + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + bool ceil_mode = false) { + auto graph = Sequential( + {Pad<DIM>(padding_dims, (!name.empty()) ? name + "_pad" : ""), + MaxPooling(kernel_dims, + (!name.empty()) ? name + "_maxpooling" : "", + stride_dims, + ceil_mode)}); + + return MetaOperator( + ("PaddedMaxPooling" + std::to_string(DIM) + "D").c_str(), + graph, + {}, + name); } template <std::array<DimSize_t, 1>::size_type DIM> -inline std::shared_ptr<MetaOperator_Op> PaddedMaxPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - bool ceil_mode = false) -{ - auto graph = Sequential({ - Pad<DIM>(padding_dims, ""), - MaxPooling(kernel_dims, "", stride_dims, ceil_mode) - }); - - return std::make_shared<MetaOperator_Op>(("PaddedMaxPooling" + std::to_string(DIM) + "D").c_str(), graph); +inline std::shared_ptr<MetaOperator_Op> +PaddedMaxPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + bool ceil_mode = false) { + auto graph = + Sequential({Pad<DIM>(padding_dims, ""), + MaxPooling(kernel_dims, "", stride_dims, ceil_mode)}); + + return std::make_shared<MetaOperator_Op>( + ("PaddedMaxPooling" + std::to_string(DIM) + "D").c_str(), + graph); } -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction +// helper with C-style array instead of std::array for kernel_dims to allow +// automatic template DIM deduction template <DimSize_t DIM> -inline std::shared_ptr<Node> PaddedMaxPooling( - DimSize_t const (&kernel_dims)[DIM], - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), - bool ceil_mode= false) -{ - return PaddedMaxPooling(to_array(kernel_dims), name, stride_dims, padding_dims, ceil_mode); +inline std::shared_ptr<Node> +PaddedMaxPooling(DimSize_t const (&kernel_dims)[DIM], + const std::string &name = "", + const std::array<DimSize_t, DIM> &stride_dims = + create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, 2 * DIM> &padding_dims = + create_array<DimSize_t, 2 * DIM>(0), + bool ceil_mode = false) { + return PaddedMaxPooling(to_array(kernel_dims), + name, + stride_dims, + padding_dims, + ceil_mode); } //////////////////////////////////////////////////////////////////////////////// @@ -161,13 +207,16 @@ std::shared_ptr<Node> LSTM(DimSize_t in_channels, DimSize_t hidden_channels, DimSize_t seq_length, bool noBias = false, - const std::string& name = ""); + const std::string &name = ""); std::shared_ptr<MetaOperator_Op> LSTM_Op(DimSize_t seq_length); std::shared_ptr<MetaOperator_Op> LeakyOp(); -std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const float beta, const std::string& name = ""); +std::shared_ptr<Node> Leaky(const int nbTimeSteps, + const float threshold, + const float beta, + const std::string &name = ""); -} // namespace Aidge +} // namespace Aidge #endif /* AIDGE_CORE_OPERATOR_METAOPERATORDEFS_H_ */ diff --git a/src/operator/MetaOperatorDefs/Leaky.cpp b/src/operator/MetaOperatorDefs/Leaky.cpp index 425d47a49..17296d130 100644 --- a/src/operator/MetaOperatorDefs/Leaky.cpp +++ b/src/operator/MetaOperatorDefs/Leaky.cpp @@ -13,7 +13,10 @@ namespace Aidge { constexpr auto memorizeOpDataOutputRecIndex = 1; constexpr auto memorizeOpDataOutputIndex = 0; -std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const float beta, const std::string &name) { +std::shared_ptr<Node> Leaky(const int nbTimeSteps, + const float threshold, + const float beta, + const std::string &name) { Log::warn("! Lots of parameters are hardcoded"); @@ -28,8 +31,7 @@ std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const auto reset = Mul(!name.empty() ? name + "_reset" : ""); auto betaTensor = std::make_shared<Tensor>(beta); - auto uthTensor = - std::make_shared<Tensor>(static_cast<float>(threshold)); + auto uthTensor = std::make_shared<Tensor>(static_cast<float>(threshold)); uniformFiller<float>(uthTensor, threshold, threshold); auto decayRate = Producer(betaTensor, "leaky_beta", true); @@ -59,7 +61,6 @@ std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const // TODO: Handle hard/soft reset uth->addChild(reset, 0, 1); - // Input[T] + beta * U[T-1] - S[T-1] * U_th addNode->addChild(subNode, 0, 0); @@ -92,8 +93,9 @@ std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const microGraph->setOrderedInputs( {{inputNode, 0}, {potentialMem, 1}, {spikeMem, 1}}); - // NOTE: Outputs are NOT the memory nodes (as it is done in LSTM), to avoid producing data during init - // This way, we can plug a stack operator after or node, and get correct results + // NOTE: Outputs are NOT the memory nodes (as it is done in LSTM), to avoid + // producing data during init. This way, we can plug an operator after + // our node, and get correct results. microGraph->setOrderedOutputs({//{potentialMem, memorizeOpDataOutputIndex}, //{spikeMem, memorizeOpDataOutputIndex} {subNode, 0}, -- GitLab From 222ee14fe495fb210c046c0e7f19ed91833c0b48 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Mon, 9 Dec 2024 18:43:04 +0100 Subject: [PATCH 085/157] chore: reorder parameters of Leaky constructor --- include/aidge/operator/MetaOperatorDefs.hpp | 2 +- python_binding/operator/pybind_MetaOperatorDefs.cpp | 2 +- src/operator/MetaOperatorDefs/Leaky.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/aidge/operator/MetaOperatorDefs.hpp b/include/aidge/operator/MetaOperatorDefs.hpp index f80dd38f1..c9de36b1f 100644 --- a/include/aidge/operator/MetaOperatorDefs.hpp +++ b/include/aidge/operator/MetaOperatorDefs.hpp @@ -213,8 +213,8 @@ std::shared_ptr<MetaOperator_Op> LSTM_Op(DimSize_t seq_length); std::shared_ptr<MetaOperator_Op> LeakyOp(); std::shared_ptr<Node> Leaky(const int nbTimeSteps, - const float threshold, const float beta, + const float threshold = 1.0, const std::string &name = ""); } // namespace Aidge diff --git a/python_binding/operator/pybind_MetaOperatorDefs.cpp b/python_binding/operator/pybind_MetaOperatorDefs.cpp index 90edfe791..b2811fbaa 100644 --- a/python_binding/operator/pybind_MetaOperatorDefs.cpp +++ b/python_binding/operator/pybind_MetaOperatorDefs.cpp @@ -182,8 +182,8 @@ void declare_LSTMOp(py::module &m) { void declare_LeakyOp(py::module &m) { m.def("Leaky", &Leaky, py::arg("nb_timesteps"), - py::arg("threshold"), py::arg("beta"), + py::arg("threshold") = 1.0, py::arg("name") = ""); } diff --git a/src/operator/MetaOperatorDefs/Leaky.cpp b/src/operator/MetaOperatorDefs/Leaky.cpp index 17296d130..5513323fd 100644 --- a/src/operator/MetaOperatorDefs/Leaky.cpp +++ b/src/operator/MetaOperatorDefs/Leaky.cpp @@ -14,8 +14,8 @@ constexpr auto memorizeOpDataOutputRecIndex = 1; constexpr auto memorizeOpDataOutputIndex = 0; std::shared_ptr<Node> Leaky(const int nbTimeSteps, - const float threshold, const float beta, + const float threshold, const std::string &name) { Log::warn("! Lots of parameters are hardcoded"); -- GitLab From 0d6d45302537b859e27ea5dced2e644f5af073ab Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Wed, 18 Dec 2024 15:46:41 +0100 Subject: [PATCH 086/157] chore: Remove inapropriate use of log --- src/operator/MetaOperatorDefs/Leaky.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/operator/MetaOperatorDefs/Leaky.cpp b/src/operator/MetaOperatorDefs/Leaky.cpp index 5513323fd..70093bc98 100644 --- a/src/operator/MetaOperatorDefs/Leaky.cpp +++ b/src/operator/MetaOperatorDefs/Leaky.cpp @@ -18,8 +18,6 @@ std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float threshold, const std::string &name) { - Log::warn("! Lots of parameters are hardcoded"); - auto microGraph = std::make_shared<GraphView>(); auto inputNode = Identity((!name.empty()) ? name + "_input" : ""); -- GitLab From d8b5b716f6d2487d7909aece98d14bdad0fe967d Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Wed, 18 Dec 2024 15:50:43 +0100 Subject: [PATCH 087/157] chore: Add issue number in TODO comment --- src/operator/MetaOperatorDefs/Leaky.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/MetaOperatorDefs/Leaky.cpp b/src/operator/MetaOperatorDefs/Leaky.cpp index 70093bc98..33b253532 100644 --- a/src/operator/MetaOperatorDefs/Leaky.cpp +++ b/src/operator/MetaOperatorDefs/Leaky.cpp @@ -57,7 +57,7 @@ std::shared_ptr<Node> Leaky(const int nbTimeSteps, /*outId=*/memorizeOpDataOutputRecIndex, /*otherInId=*/0); - // TODO: Handle hard/soft reset + // TODO(#219) Handle hard/soft reset uth->addChild(reset, 0, 1); // Input[T] + beta * U[T-1] - S[T-1] * U_th -- GitLab From 7f9d26ea03e9d73238378480df03caacad28e272 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Fri, 17 Jan 2025 14:13:36 +0100 Subject: [PATCH 088/157] Added binding for updateInputsOutputs() --- python_binding/graph/pybind_GraphView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/python_binding/graph/pybind_GraphView.cpp b/python_binding/graph/pybind_GraphView.cpp index 60d80e783..4a044f575 100644 --- a/python_binding/graph/pybind_GraphView.cpp +++ b/python_binding/graph/pybind_GraphView.cpp @@ -151,6 +151,7 @@ void init_GraphView(py::module& m) { .def("get_ranked_nodes", &GraphView::getRankedNodes) .def("get_ranked_nodes_name", &GraphView::getRankedNodesName, py::arg("format"), py::arg("mark_non_unicity") = true) .def("set_dataformat", &GraphView::setDataFormat, py::arg("dataformat")) + .def("update_inputs_outputs", &GraphView::updateInputsOutputs) ; m.def("get_connected_graph_view", &getConnectedGraphView); -- GitLab From dafd73de7fc0d51491f65b0945cc47a7eb1222fb Mon Sep 17 00:00:00 2001 From: bhalimi <benjamin.halimi@cea.fr> Date: Fri, 17 Jan 2025 12:22:23 +0000 Subject: [PATCH 089/157] add pybind for abs and mean --- python_binding/data/pybind_Tensor.cpp | 2 ++ python_binding/pybind_core.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index 35e60e158..487866f8a 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -317,6 +317,8 @@ void init_Tensor(py::module& m){ .def(py::self - py::self) .def(py::self * py::self) .def(py::self / py::self) + .def("zeros", &Tensor::zeros) + .def("mean", &Tensor::mean) .def("clone", &Tensor::clone) .def("sqrt", &Tensor::sqrt) .def("set_datatype", &Tensor::setDataType, py::arg("datatype"), py::arg("copyCast") = true) diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index eccbebd2f..c292a8937 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -31,6 +31,7 @@ void init_Operator(py::module&); void init_OperatorTensor(py::module&); void init_StaticAnalysis(py::module&); +void init_Abs(py::module&); void init_Add(py::module&); void init_And(py::module&); void init_ArgMax(py::module&); @@ -128,6 +129,7 @@ void init_Aidge(py::module& m) { init_OperatorTensor(m); init_StaticAnalysis(m); + init_Abs(m); init_Add(m); init_And(m); init_ArgMax(m); -- GitLab From 5d99e71ab21dc66367d0b3e20ca4811db4c43cec Mon Sep 17 00:00:00 2001 From: bhalimi <benjamin.halimi@cea.fr> Date: Fri, 17 Jan 2025 12:31:47 +0000 Subject: [PATCH 090/157] abs binding --- python_binding/data/pybind_Tensor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index 487866f8a..e235425d1 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -319,8 +319,9 @@ void init_Tensor(py::module& m){ .def(py::self / py::self) .def("zeros", &Tensor::zeros) .def("mean", &Tensor::mean) + .def("abs", &Tensor::abs) .def("clone", &Tensor::clone) - .def("sqrt", &Tensor::sqrt) + .def("sqrt", &Tensor::sqrt) .def("set_datatype", &Tensor::setDataType, py::arg("datatype"), py::arg("copyCast") = true) .def("set_data_format", &Tensor::setDataFormat, py::arg("data_format"), py::arg("copyTrans") = true) .def("set_backend", &Tensor::setBackend, py::arg("name"), py::arg("device") = 0, py::arg("copyFrom") = true) -- GitLab From 098e635e8625c6daf14ea1c883c62327ffa0e310 Mon Sep 17 00:00:00 2001 From: bhalimi <benjamin.halimi@cea.fr> Date: Fri, 17 Jan 2025 12:22:23 +0000 Subject: [PATCH 091/157] add pybind for abs and mean --- Testing/Temporary/CTestCostData.txt | 1 + Testing/Temporary/LastTest.log | 3 + Testing/Testing/Temporary/CTestCostData.txt | 1 + Testing/Testing/Temporary/LastTest.log | 3 + .../unit_tests/dummy_export/CMakeLists.txt | 155 ++++++++++++ aidge_core/unit_tests/dummy_export/README.md | 5 + .../__cache_export/CMakeLists.txt | 155 ++++++++++++ .../dummy_export/__cache_export/README.md | 5 + .../cmake/PybindModuleCreation.cmake | 22 ++ .../dummy_export-config.cmake.in | 8 + .../__cache_export/include/attributes/FC1.hpp | 7 + .../include/attributes/FC1_b.hpp | 11 + .../include/attributes/FC1_w.hpp | 44 ++++ .../__cache_export/include/attributes/FC2.hpp | 7 + .../include/attributes/FC2_b.hpp | 11 + .../include/attributes/FC2_w.hpp | 28 +++ .../include/attributes/InputNode.hpp | 7 + .../include/attributes/InputNode_b.hpp | 11 + .../include/attributes/InputNode_w.hpp | 76 ++++++ .../include/attributes/OutputNode.hpp | 7 + .../include/attributes/OutputNode_b.hpp | 11 + .../include/attributes/OutputNode_w.hpp | 22 ++ .../__cache_export/include/dnn.hpp | 17 ++ .../dummy_export/__cache_export/main.cpp | 23 ++ .../__cache_export/project_name.txt | 1 + .../__cache_export/python_binding/pybind.cpp | 14 ++ .../dummy_export/__cache_export/src/dnn.cpp | 232 ++++++++++++++++++ .../dummy_export/__cache_export/version.txt | 1 + .../cmake/PybindModuleCreation.cmake | 22 ++ .../dummy_export/dummy_export-config.cmake.in | 8 + .../dummy_export/include/attributes/FC1.hpp | 7 + .../dummy_export/include/attributes/FC1_b.hpp | 11 + .../dummy_export/include/attributes/FC1_w.hpp | 44 ++++ .../dummy_export/include/attributes/FC2.hpp | 7 + .../dummy_export/include/attributes/FC2_b.hpp | 11 + .../dummy_export/include/attributes/FC2_w.hpp | 28 +++ .../include/attributes/InputNode.hpp | 7 + .../include/attributes/InputNode_b.hpp | 11 + .../include/attributes/InputNode_w.hpp | 76 ++++++ .../include/attributes/OutputNode.hpp | 7 + .../include/attributes/OutputNode_b.hpp | 11 + .../include/attributes/OutputNode_w.hpp | 22 ++ .../unit_tests/dummy_export/include/dnn.hpp | 17 ++ aidge_core/unit_tests/dummy_export/main.cpp | 23 ++ .../unit_tests/dummy_export/project_name.txt | 1 + .../dummy_export/python_binding/pybind.cpp | 14 ++ .../unit_tests/dummy_export/src/dnn.cpp | 232 ++++++++++++++++++ .../unit_tests/dummy_export/version.txt | 1 + .../Testing/Temporary/CTestCostData.txt | 1 + unit_tests/Testing/Temporary/LastTest.log | 3 + .../Testing/Temporary/CTestCostData.txt | 1 + .../operator/Testing/Temporary/LastTest.log | 3 + 52 files changed, 1456 insertions(+) create mode 100644 Testing/Temporary/CTestCostData.txt create mode 100644 Testing/Temporary/LastTest.log create mode 100644 Testing/Testing/Temporary/CTestCostData.txt create mode 100644 Testing/Testing/Temporary/LastTest.log create mode 100644 aidge_core/unit_tests/dummy_export/CMakeLists.txt create mode 100644 aidge_core/unit_tests/dummy_export/README.md create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/CMakeLists.txt create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/README.md create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/cmake/PybindModuleCreation.cmake create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/dummy_export-config.cmake.in create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_b.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_w.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_b.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_w.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_b.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_w.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_b.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_w.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/dnn.hpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/main.cpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/project_name.txt create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/python_binding/pybind.cpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/src/dnn.cpp create mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/version.txt create mode 100644 aidge_core/unit_tests/dummy_export/cmake/PybindModuleCreation.cmake create mode 100644 aidge_core/unit_tests/dummy_export/dummy_export-config.cmake.in create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC1.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC1_b.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC1_w.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC2.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC2_b.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC2_w.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/InputNode.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/InputNode_b.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/InputNode_w.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/OutputNode.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_b.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_w.hpp create mode 100644 aidge_core/unit_tests/dummy_export/include/dnn.hpp create mode 100644 aidge_core/unit_tests/dummy_export/main.cpp create mode 100644 aidge_core/unit_tests/dummy_export/project_name.txt create mode 100644 aidge_core/unit_tests/dummy_export/python_binding/pybind.cpp create mode 100644 aidge_core/unit_tests/dummy_export/src/dnn.cpp create mode 100644 aidge_core/unit_tests/dummy_export/version.txt create mode 100644 unit_tests/Testing/Temporary/CTestCostData.txt create mode 100644 unit_tests/Testing/Temporary/LastTest.log create mode 100644 unit_tests/operator/Testing/Temporary/CTestCostData.txt create mode 100644 unit_tests/operator/Testing/Temporary/LastTest.log diff --git a/Testing/Temporary/CTestCostData.txt b/Testing/Temporary/CTestCostData.txt new file mode 100644 index 000000000..ed97d539c --- /dev/null +++ b/Testing/Temporary/CTestCostData.txt @@ -0,0 +1 @@ +--- diff --git a/Testing/Temporary/LastTest.log b/Testing/Temporary/LastTest.log new file mode 100644 index 000000000..0a73a46cc --- /dev/null +++ b/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: Nov 29 13:22 UTC +---------------------------------------------------------- +End testing: Nov 29 13:22 UTC diff --git a/Testing/Testing/Temporary/CTestCostData.txt b/Testing/Testing/Temporary/CTestCostData.txt new file mode 100644 index 000000000..ed97d539c --- /dev/null +++ b/Testing/Testing/Temporary/CTestCostData.txt @@ -0,0 +1 @@ +--- diff --git a/Testing/Testing/Temporary/LastTest.log b/Testing/Testing/Temporary/LastTest.log new file mode 100644 index 000000000..0a73a46cc --- /dev/null +++ b/Testing/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: Nov 29 13:22 UTC +---------------------------------------------------------- +End testing: Nov 29 13:22 UTC diff --git a/aidge_core/unit_tests/dummy_export/CMakeLists.txt b/aidge_core/unit_tests/dummy_export/CMakeLists.txt new file mode 100644 index 000000000..d7fe26d9c --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/CMakeLists.txt @@ -0,0 +1,155 @@ +cmake_minimum_required(VERSION 3.18) +set(CXX_STANDARD 14) + +file(STRINGS "${CMAKE_SOURCE_DIR}/project_name.txt" project_name) +file(STRINGS "${CMAKE_SOURCE_DIR}/version.txt" version) + +project(${project_name} + VERSION ${version} + DESCRIPTION "Export of aidge" + LANGUAGES CXX) + +message(STATUS "Project name: ${CMAKE_PROJECT_NAME}") +message(STATUS "Project version: ${version}") + +# Note : project name is ${CMAKE_PROJECT_NAME} and python module name is also ${CMAKE_PROJECT_NAME} +set(module_name _${CMAKE_PROJECT_NAME}) # target name + +############################################## +# Define options +option(PYBIND "python binding" ON) +option(STANDALONE "Build standalone executable" ON) +option(WERROR "Warning as error" OFF) +option(TEST "Enable tests" OFF) +option(COVERAGE "Enable coverage" OFF) +option(ENABLE_ASAN "Enable ASan (AddressSanitizer) for runtime analysis of memory use (over/underflow, memory leak, ...)" OFF) + +############################################## +# Import utils CMakeLists +set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") + +if(CMAKE_COMPILER_IS_GNUCXX AND COVERAGE) + Include(CodeCoverage) +endif() + +############################################## +# FIND Dependencies +if(NOT $ENV{AIDGE_INSTALL} STREQUAL "") + set(CMAKE_INSTALL_PREFIX $ENV{AIDGE_INSTALL}) + list(APPEND CMAKE_PREFIX_PATH $ENV{AIDGE_INSTALL}) + message(WARNING "Env var AIDGE_INSTALL detected : $ENV{AIDGE_INSTALL}. Set CMAKE_INSTALL_PREFIX to AIDGE_INSTALL & added to CMAKE_PREFIX_PATH" + "\n\tCMAKE_INSTALL_PREFIX = ${CMAKE_INSTALL_PREFIX}" + "\n\tCMAKE_PREFIX_PATH = ${CMAKE_PREFIX_PATH}") +endif() +find_package(aidge_core REQUIRED) +# find_package(aidge_backend_cpu REQUIRED) # example if you want to add aidge_backend_cpu as dependency to your export + +############################################## +# Create target and set properties +file(GLOB_RECURSE src_files "src/*.cpp") +file(GLOB_RECURSE inc_files "include/*.hpp") + +add_library(${module_name} ${src_files} ${inc_files}) + +target_link_libraries(${module_name} + PUBLIC + _aidge_core # _ is added because we link the exported target and not the project + # _aidge_backend_cpu # example if you want to add aidge_backend_cpu as dependency to your export +) + +#Set target properties +set_property(TARGET ${module_name} PROPERTY POSITION_INDEPENDENT_CODE ON) + +# PYTHON BINDING +if (PYBIND) + include(PybindModuleCreation) + generate_python_binding(${CMAKE_PROJECT_NAME} ${module_name}) +endif() + +if( ${ENABLE_ASAN} ) + message("Building ${module_name} with ASAN.") + set(SANITIZE_FLAGS -fsanitize=address -fno-omit-frame-pointer) + target_link_libraries(${module_name} + PUBLIC + -fsanitize=address + ) + target_compile_options(${module_name} + PRIVATE + ${SANITIZE_FLAGS} + ) +endif() + +target_include_directories(${module_name} + PUBLIC + $<INSTALL_INTERFACE:include> + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> + PRIVATE + ${CMAKE_CURRENT_SOURCE_DIR}/src +) + +target_compile_features(${module_name} PRIVATE cxx_std_14) + +target_compile_options(${module_name} PRIVATE + $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: + -Wall -Wextra -Wold-style-cast -Winline -pedantic -Werror=narrowing -Wshadow $<$<BOOL:${WERROR}>:-Werror>>) +target_compile_options(${module_name} PRIVATE + $<$<CXX_COMPILER_ID:MSVC>: + /W4>) + +if(CMAKE_COMPILER_IS_GNUCXX AND COVERAGE) + append_coverage_compiler_flags() +endif() + +############################################## +# Installation instructions +include(GNUInstallDirs) +set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/${CMAKE_PROJECT_NAME}) + +install(TARGETS ${module_name} EXPORT ${CMAKE_PROJECT_NAME}-targets + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) +install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) + +#Export the targets to a script +install(EXPORT ${CMAKE_PROJECT_NAME}-targets + FILE "${CMAKE_PROJECT_NAME}-targets.cmake" + DESTINATION ${INSTALL_CONFIGDIR} + COMPONENT ${module_name} +) + +#Create a ConfigVersion.cmake file +include(CMakePackageConfigHelpers) +write_basic_package_version_file( + "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config-version.cmake" + VERSION ${version} + COMPATIBILITY AnyNewerVersion +) + +configure_package_config_file("${CMAKE_PROJECT_NAME}-config.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake" + INSTALL_DESTINATION ${INSTALL_CONFIGDIR} +) + +#Install the config, configversion and custom find modules +install(FILES + "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake" + "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config-version.cmake" + DESTINATION ${INSTALL_CONFIGDIR} +) + +############################################## +## Exporting from the build tree +message(STATUS "Exporting created targets to use them in another build") +export(EXPORT ${CMAKE_PROJECT_NAME}-targets + FILE "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-targets.cmake") + +if(STANDALONE) + if(AIDGE_REQUIRES_PYTHON AND NOT AIDGE_PYTHON_HAS_EMBED) + message(WARNING "Skipping compilation of standalone executable: missing Python embedded interpreter") + else() + add_executable(main main.cpp) + target_link_libraries(main PRIVATE ${module_name}) + endif() +endif() diff --git a/aidge_core/unit_tests/dummy_export/README.md b/aidge_core/unit_tests/dummy_export/README.md new file mode 100644 index 000000000..1ce48d527 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/README.md @@ -0,0 +1,5 @@ +To compile: + +> mkdir build && cd build +> cmake -DCMAKE_INSTALL_PREFIX:PATH=/data1/is156025/cm264821/anaconda3/envs/aidge_demo/lib/libAidge .. +> make all install diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/CMakeLists.txt b/aidge_core/unit_tests/dummy_export/__cache_export/CMakeLists.txt new file mode 100644 index 000000000..d7fe26d9c --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/CMakeLists.txt @@ -0,0 +1,155 @@ +cmake_minimum_required(VERSION 3.18) +set(CXX_STANDARD 14) + +file(STRINGS "${CMAKE_SOURCE_DIR}/project_name.txt" project_name) +file(STRINGS "${CMAKE_SOURCE_DIR}/version.txt" version) + +project(${project_name} + VERSION ${version} + DESCRIPTION "Export of aidge" + LANGUAGES CXX) + +message(STATUS "Project name: ${CMAKE_PROJECT_NAME}") +message(STATUS "Project version: ${version}") + +# Note : project name is ${CMAKE_PROJECT_NAME} and python module name is also ${CMAKE_PROJECT_NAME} +set(module_name _${CMAKE_PROJECT_NAME}) # target name + +############################################## +# Define options +option(PYBIND "python binding" ON) +option(STANDALONE "Build standalone executable" ON) +option(WERROR "Warning as error" OFF) +option(TEST "Enable tests" OFF) +option(COVERAGE "Enable coverage" OFF) +option(ENABLE_ASAN "Enable ASan (AddressSanitizer) for runtime analysis of memory use (over/underflow, memory leak, ...)" OFF) + +############################################## +# Import utils CMakeLists +set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") + +if(CMAKE_COMPILER_IS_GNUCXX AND COVERAGE) + Include(CodeCoverage) +endif() + +############################################## +# FIND Dependencies +if(NOT $ENV{AIDGE_INSTALL} STREQUAL "") + set(CMAKE_INSTALL_PREFIX $ENV{AIDGE_INSTALL}) + list(APPEND CMAKE_PREFIX_PATH $ENV{AIDGE_INSTALL}) + message(WARNING "Env var AIDGE_INSTALL detected : $ENV{AIDGE_INSTALL}. Set CMAKE_INSTALL_PREFIX to AIDGE_INSTALL & added to CMAKE_PREFIX_PATH" + "\n\tCMAKE_INSTALL_PREFIX = ${CMAKE_INSTALL_PREFIX}" + "\n\tCMAKE_PREFIX_PATH = ${CMAKE_PREFIX_PATH}") +endif() +find_package(aidge_core REQUIRED) +# find_package(aidge_backend_cpu REQUIRED) # example if you want to add aidge_backend_cpu as dependency to your export + +############################################## +# Create target and set properties +file(GLOB_RECURSE src_files "src/*.cpp") +file(GLOB_RECURSE inc_files "include/*.hpp") + +add_library(${module_name} ${src_files} ${inc_files}) + +target_link_libraries(${module_name} + PUBLIC + _aidge_core # _ is added because we link the exported target and not the project + # _aidge_backend_cpu # example if you want to add aidge_backend_cpu as dependency to your export +) + +#Set target properties +set_property(TARGET ${module_name} PROPERTY POSITION_INDEPENDENT_CODE ON) + +# PYTHON BINDING +if (PYBIND) + include(PybindModuleCreation) + generate_python_binding(${CMAKE_PROJECT_NAME} ${module_name}) +endif() + +if( ${ENABLE_ASAN} ) + message("Building ${module_name} with ASAN.") + set(SANITIZE_FLAGS -fsanitize=address -fno-omit-frame-pointer) + target_link_libraries(${module_name} + PUBLIC + -fsanitize=address + ) + target_compile_options(${module_name} + PRIVATE + ${SANITIZE_FLAGS} + ) +endif() + +target_include_directories(${module_name} + PUBLIC + $<INSTALL_INTERFACE:include> + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> + PRIVATE + ${CMAKE_CURRENT_SOURCE_DIR}/src +) + +target_compile_features(${module_name} PRIVATE cxx_std_14) + +target_compile_options(${module_name} PRIVATE + $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: + -Wall -Wextra -Wold-style-cast -Winline -pedantic -Werror=narrowing -Wshadow $<$<BOOL:${WERROR}>:-Werror>>) +target_compile_options(${module_name} PRIVATE + $<$<CXX_COMPILER_ID:MSVC>: + /W4>) + +if(CMAKE_COMPILER_IS_GNUCXX AND COVERAGE) + append_coverage_compiler_flags() +endif() + +############################################## +# Installation instructions +include(GNUInstallDirs) +set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/${CMAKE_PROJECT_NAME}) + +install(TARGETS ${module_name} EXPORT ${CMAKE_PROJECT_NAME}-targets + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) +install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) + +#Export the targets to a script +install(EXPORT ${CMAKE_PROJECT_NAME}-targets + FILE "${CMAKE_PROJECT_NAME}-targets.cmake" + DESTINATION ${INSTALL_CONFIGDIR} + COMPONENT ${module_name} +) + +#Create a ConfigVersion.cmake file +include(CMakePackageConfigHelpers) +write_basic_package_version_file( + "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config-version.cmake" + VERSION ${version} + COMPATIBILITY AnyNewerVersion +) + +configure_package_config_file("${CMAKE_PROJECT_NAME}-config.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake" + INSTALL_DESTINATION ${INSTALL_CONFIGDIR} +) + +#Install the config, configversion and custom find modules +install(FILES + "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake" + "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config-version.cmake" + DESTINATION ${INSTALL_CONFIGDIR} +) + +############################################## +## Exporting from the build tree +message(STATUS "Exporting created targets to use them in another build") +export(EXPORT ${CMAKE_PROJECT_NAME}-targets + FILE "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-targets.cmake") + +if(STANDALONE) + if(AIDGE_REQUIRES_PYTHON AND NOT AIDGE_PYTHON_HAS_EMBED) + message(WARNING "Skipping compilation of standalone executable: missing Python embedded interpreter") + else() + add_executable(main main.cpp) + target_link_libraries(main PRIVATE ${module_name}) + endif() +endif() diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/README.md b/aidge_core/unit_tests/dummy_export/__cache_export/README.md new file mode 100644 index 000000000..1ce48d527 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/README.md @@ -0,0 +1,5 @@ +To compile: + +> mkdir build && cd build +> cmake -DCMAKE_INSTALL_PREFIX:PATH=/data1/is156025/cm264821/anaconda3/envs/aidge_demo/lib/libAidge .. +> make all install diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/cmake/PybindModuleCreation.cmake b/aidge_core/unit_tests/dummy_export/__cache_export/cmake/PybindModuleCreation.cmake new file mode 100644 index 000000000..217a48351 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/cmake/PybindModuleCreation.cmake @@ -0,0 +1,22 @@ +function(generate_python_binding name target_to_bind) + + find_package(Python COMPONENTS Interpreter Development.Module) + + Include(FetchContent) + FetchContent_Declare( + PyBind11 + GIT_REPOSITORY https://github.com/pybind/pybind11.git + GIT_TAG v2.10.4 # or a later release + ) + FetchContent_MakeAvailable(PyBind11) + + message(STATUS "Creating binding for module ${name}") + file(GLOB_RECURSE pybind_src_files "python_binding/*.cpp") + + pybind11_add_module(${name} MODULE ${pybind_src_files} "NO_EXTRAS") # NO EXTRA recquired for pip install + target_include_directories(${name} PRIVATE "python_binding") + + # Link target library to bind + target_link_libraries(${name} PRIVATE ${target_to_bind}) + +endfunction() diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/dummy_export-config.cmake.in b/aidge_core/unit_tests/dummy_export/__cache_export/dummy_export-config.cmake.in new file mode 100644 index 000000000..f0be5e076 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/dummy_export-config.cmake.in @@ -0,0 +1,8 @@ +@PACKAGE_INIT@ + +include(CMakeFindDependencyMacro) +find_dependency(aidge_core) + +include(${CMAKE_CURRENT_LIST_DIR}/aidge_backend_cpu-config-version.cmake) + +include(${CMAKE_CURRENT_LIST_DIR}/aidge_backend_cpu-targets.cmake) diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1.hpp new file mode 100644 index 000000000..db45424cb --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1.hpp @@ -0,0 +1,7 @@ +#ifndef EXPORT_ATTRIBUTES_FC1_H +#define EXPORT_ATTRIBUTES_FC1_H + +#define _FC1_IN_CHANNELS 64 +#define _FC1_OUT_CHANNELS 32 + +#endif /* EXPORT_ATTRIBUTES_FC1_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_b.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_b.hpp new file mode 100644 index 000000000..7bbef95ae --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_b.hpp @@ -0,0 +1,11 @@ +#ifndef EXPORT_PARAMETERS_FC1_B_H +#define EXPORT_PARAMETERS_FC1_B_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> FC1_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 32> { +{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } +}); + +#endif /* EXPORT_PARAMETERS_FC1_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_w.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_w.hpp new file mode 100644 index 000000000..ccdc12470 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_w.hpp @@ -0,0 +1,44 @@ +#ifndef EXPORT_PARAMETERS_FC1_W_H +#define EXPORT_PARAMETERS_FC1_W_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> FC1_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 32, 64> { +{ + { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164, 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, + { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245, 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, + { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219, -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365}, + { 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620, -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814}, + { -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116, -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061}, + { 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394, -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534}, + { 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535, -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270}, + { -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022, -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879}, + { -0.483628, 0.272165, -0.921403, -0.867794, 0.253838, -1.017495, -0.035984, -0.680159, -0.116601, -1.917364, -0.293144, -1.680917, 1.482456, -2.643867, -0.589814, 1.864317, 0.810974, 0.449891, -0.523071, -1.701221, 1.129147, -0.414783, 0.039269, -1.340263, 0.165569, -0.458461, -0.978111, 0.656720, 0.531054, 0.426182, 0.701776, 1.073439, -0.749516, -0.560629, -0.634230, -0.186059, -0.122258, 0.021843, 0.543000, -0.314648, -0.946935, -0.333649, 0.596433, -0.647178, 0.790704, -0.074659, -0.043766, 1.429068, -0.058342, -0.809171, 1.030495, 0.050716, -0.116684, -1.944978, -1.793352, 1.627739, -0.369663, 2.177690, 1.651580, -2.036985, -1.240169, 0.036523, -1.150051, 0.116815}, + { 1.104999, 1.341058, 0.309679, -1.755930, -0.378678, -0.806254, -1.054984, -0.320765, -0.266736, -0.225193, 0.169121, 0.865690, -0.885389, 0.095123, 0.870764, -0.091391, 1.401193, -0.193103, 0.621627, 0.369497, -0.816600, -0.202823, -0.159167, 0.872668, -0.273115, 1.938011, 0.684697, 1.704309, 1.204039, -0.959246, 1.359703, 0.799502, 0.776908, -0.756584, -0.640936, 0.990894, 0.256858, -3.137142, 0.545601, 0.109409, 0.181050, 1.120293, -0.914028, -0.097133, 0.133803, 0.496900, 1.070259, 0.223329, -0.368285, 0.345049, 1.432678, 1.382178, 0.558631, -0.126281, -1.479764, -2.136274, 0.879013, -0.931591, 0.460165, 0.663047, -0.782686, -2.017072, -1.219782, -1.615018}, + { 0.023152, -0.351595, 0.384548, -0.350487, 0.861079, -2.343885, 0.206722, 0.492284, 0.227113, -0.832889, -0.669958, -0.069160, -0.609277, -0.255370, -0.752728, -0.765413, 1.094080, 0.368862, 0.024828, -0.518220, 0.009554, -0.353964, 1.897386, -0.901690, 0.077136, -0.747170, 0.407625, -1.418082, 0.823818, -0.750032, -0.318462, -0.949275, -0.005721, -0.311060, -1.375086, 0.638032, -0.070481, 0.265967, -1.677426, -0.803207, 0.331928, -0.337461, 1.145064, 0.517522, 2.248859, -0.155701, -0.185320, -0.430223, 0.633950, 0.594881, -0.373053, -0.183769, 0.781241, -1.100458, -1.127900, 1.536747, 0.694964, -1.317671, 0.552416, 0.214635, 1.172117, 0.057319, -0.083945, -2.744316}, + { -2.083668, 1.579024, 0.846874, -0.559092, 1.025974, 0.889658, -1.337327, -2.154229, 0.283269, -0.084246, -0.448027, 1.076064, -0.171827, 0.712631, -0.291771, -1.532148, 0.525627, -0.182083, -0.584263, 0.758026, -0.011926, 0.048968, -0.683809, -0.367121, -0.808110, -0.745193, -0.025946, -0.974672, -0.667272, -1.253634, -0.933169, 1.543063, -0.558194, 0.333470, 0.300683, 0.875321, -0.650058, -0.402874, -1.479110, -1.422508, -1.490082, -1.066710, 0.818719, 1.130872, 0.726068, -0.644154, 0.015556, -1.297712, -1.807793, -0.449898, 0.678534, -0.343751, -0.438977, 1.005177, 0.789181, -0.868195, 2.963583, 0.127910, 0.762864, 2.106842, 0.059183, 1.106624, -0.173846, 0.506085}, + { -0.803235, 0.456489, 1.792648, -0.413096, 0.174623, -0.670578, 1.004736, -1.211046, -0.177172, -1.173558, 1.704121, -0.717132, -0.315196, -0.955144, -0.844640, 0.219873, 0.439474, -0.111900, 0.382651, 0.037409, -0.715340, -0.458230, -1.518173, 0.580286, -0.180067, 0.251145, 1.541854, -1.799514, 0.415876, 0.045524, -0.935430, -0.941019, 0.476378, -0.045153, -0.346679, -0.071810, 0.468796, -0.303942, 1.868755, 0.052552, -1.115326, -0.951675, 0.823079, -0.264655, -0.460295, 0.024275, 0.681858, 1.360035, -1.231762, -1.203111, -0.181563, 0.198488, -0.813774, -1.178844, 0.972454, -0.134574, 0.030472, -0.967580, 0.152757, -2.177683, -0.678582, 1.439619, 0.329668, 1.977801}, + { 0.547752, 0.150742, 0.597613, 0.320251, 0.629068, -1.048041, 1.226918, -1.397015, 0.530945, 1.934914, -0.360577, 0.601554, -1.164239, 0.144575, 0.725861, -0.442685, 0.083200, -0.289393, -1.016526, 1.067162, -0.018115, -0.224101, -0.241866, -0.064766, 2.522637, 1.326687, -0.214645, 0.652540, 0.005862, -0.888118, -1.111310, -0.301777, -0.060108, -0.383830, 0.692486, -0.268334, 0.663172, -1.008340, -1.682795, 0.617490, 0.376519, 1.881652, 1.198976, 0.919806, -0.134369, 0.542711, -0.636402, 2.075232, 0.367750, 0.078205, 1.175514, 0.312489, -0.545571, 1.806641, 0.572128, 0.969595, 2.196302, 0.144951, -0.069890, -0.024643, 0.096254, -0.913089, 0.207929, -0.024540}, + { -2.364928, 0.403653, 0.957075, 0.605313, -0.084031, -0.881650, 0.617897, -0.514700, 1.021071, -2.341326, 0.867535, 0.276200, -1.536776, 1.063557, -0.265884, -1.019689, 0.034769, 0.374245, 0.308205, 0.941602, -2.383936, 0.053763, 0.080351, 0.805516, -1.034883, 0.112969, 0.225962, 0.529344, -0.533202, 0.826293, -0.530990, -0.941042, -1.409687, -0.616595, 0.083008, 0.597792, 0.564483, -0.277788, 0.275536, -1.167859, 0.234086, 0.923334, -1.550176, -0.317221, 0.167047, 0.842336, -0.197037, -0.189047, -1.258022, 1.233136, 2.043196, -0.972316, -0.211159, -0.644789, 0.550668, 0.263230, 0.510620, -0.340782, -0.076202, -0.532805, 0.028492, -0.711909, -0.041329, -0.716095}, + { -0.438745, 1.613258, 1.203239, 0.964917, 2.008562, 2.526586, -1.076117, -1.172786, 1.202410, -1.702984, 2.141656, -0.421657, 0.506291, -1.005197, -1.210642, -1.006717, -1.024502, 0.616641, -1.584712, 0.891012, -2.477347, -0.572187, 0.864046, -1.402610, 0.412339, -0.276108, -2.752150, 0.592655, 0.632535, -0.195088, 2.281385, -1.077261, -0.790374, -1.883068, 0.079064, 0.400938, -0.359422, -0.905535, 0.275971, -0.708639, 1.268833, -1.304649, 1.220814, 0.345417, -1.035277, 1.694809, -0.453738, -0.100811, -0.711486, -2.032043, 0.247771, 0.125351, 1.414129, 1.130891, -0.594405, 0.797592, 0.053162, 0.395181, -0.421787, 0.288705, -1.071319, 0.932462, -0.609468, -0.239886}, + { 0.426226, -0.566084, -0.555236, -0.395055, -1.607937, -0.454888, 1.086999, 0.064433, -0.630807, 0.537331, -0.079178, 0.544384, -0.345341, -0.755680, 0.194209, -0.915100, 0.664959, 0.136650, 0.145284, 0.658129, 1.353991, -0.482921, -1.267343, -0.525734, 0.427054, -0.567577, -0.977804, 0.581563, 0.731378, 0.287522, 2.394391, -0.044662, -1.842992, 1.271125, -0.347839, -0.222826, -0.068077, -0.131304, -2.144952, -2.350498, -0.053892, -1.022586, 0.598608, -3.063631, -0.889890, -0.169715, -0.043919, -1.031522, -0.314142, -1.721556, -1.423945, -0.517471, -0.617123, -0.140159, -0.793929, 0.361729, 0.918396, -0.399743, -0.736005, 1.568120, -1.300957, 1.526744, -0.297900, -0.062842}, + { -1.966952, -1.071676, 1.570217, 1.112780, 0.185776, -0.637180, 1.313317, 1.172860, -0.915400, 1.177792, -1.942183, 0.390201, 1.388212, -0.477988, -1.579742, -0.683059, 1.172021, -0.980434, 0.059954, -0.457660, -0.634426, 1.500102, 0.078013, -0.986448, -0.762938, 0.195547, 1.015367, 1.245432, -0.282828, 0.081046, 0.307498, -0.669810, 0.721569, 0.057625, 0.501820, -0.104848, 1.437235, 0.117299, -0.523084, -1.118009, 1.560399, 0.104631, 0.489168, 0.760339, 1.449355, -1.377321, -0.715611, -1.029579, 0.073359, -0.825450, -0.229307, -0.421830, -0.666367, -0.440156, 0.023840, -0.751700, -0.361373, 0.986500, 0.851569, 0.123599, 0.390027, 0.277061, 0.940906, -0.103239}, + { -0.445279, -0.919782, 0.639714, -0.902529, -1.874779, -1.719761, -1.893759, 0.269624, -0.578221, -0.202651, -0.392257, 1.412725, -0.629082, 1.413975, -0.064950, -0.204246, 0.975600, -0.282429, 0.352274, 0.795323, -0.966890, 0.600321, 0.459449, 1.495051, -0.693799, -2.130963, 2.241615, 0.016742, -1.380529, -0.693764, 0.788271, -2.084727, -0.605345, -0.393199, -1.431592, -0.019263, 0.154902, 2.003049, -0.505429, -0.279594, 1.178694, 0.081671, -0.253501, -0.928567, -0.470637, -0.599760, 0.105334, -0.558767, 0.306641, -1.247424, -1.136135, 0.388699, 0.240216, -0.539604, 0.748712, 1.514203, -0.053900, 0.146477, 1.415987, 0.035719, 0.852351, -0.505780, -2.203605, 1.287532}, + { -0.138672, 0.707916, 0.732445, 0.034828, 0.916650, -0.960419, -1.104703, -1.910655, 0.738577, -1.784924, 0.377324, 0.942214, -2.147115, -0.657372, 1.937143, -0.640029, 0.813896, -1.856751, 0.293933, 0.407355, 0.828903, -0.258431, 0.651304, 1.024936, -1.113730, 0.727588, 0.244997, -1.608019, 0.678481, -0.704592, 0.512401, -0.693952, 0.200313, 0.382440, -0.155662, -1.873614, -1.368903, -0.209850, -1.454814, -0.029855, 0.192369, 1.508715, -0.212503, 1.176330, -1.738381, -0.637968, 0.576972, 0.808788, 0.434982, -0.529857, -1.056989, -0.818170, -1.858517, -1.504275, -1.812055, 1.817686, -0.827064, -0.970820, 0.661065, 0.146447, 0.291060, -0.408877, 0.068819, 0.295079}, + { 0.663102, -0.166278, 0.770570, -1.142846, -0.806847, -0.730912, -0.447671, -0.015643, 0.619293, 0.202428, 1.665242, -0.790555, 1.475059, -0.881476, 0.390759, 1.258389, 0.324598, 1.822245, -0.058715, 0.600523, 1.136708, -1.679807, 0.288505, 0.744363, -0.611639, 1.300585, 1.380471, -1.169925, -0.777400, 2.193714, -0.475082, -0.242079, -0.336258, 0.471824, -0.658170, -1.063402, 0.417935, -1.189927, -1.703003, -1.247581, 0.862522, 0.934985, 1.998402, 0.301988, -1.167236, -0.040485, -0.692792, -0.118653, -0.085074, -0.157554, -0.597173, -1.148901, 0.479436, -1.334729, 0.435822, 0.728494, -0.447077, 0.395057, -0.449488, -0.970525, 1.506991, 0.701021, 0.331930, -0.781135}, + { 0.695741, 0.447304, 0.814847, 2.051350, -0.694026, -0.032321, 0.024414, -0.642007, 1.006013, -0.816746, -1.214119, -2.295536, 0.402007, -0.404793, 0.312364, -0.727692, 0.190903, 1.319342, 2.484523, -0.751330, 0.517379, 1.607649, -1.566784, -1.809135, 1.457683, -0.908496, -2.220334, 0.243166, 0.595011, 0.379217, 1.088163, 1.147452, 0.633369, 0.346038, 0.347236, -0.325225, 1.888308, -3.072945, 1.297680, -1.506335, 0.205380, 0.664307, 0.979495, -1.097883, -0.745897, -0.303797, -0.563891, 2.451149, 0.088773, 0.480402, -0.445841, -0.637341, -0.792031, -0.643933, 0.330410, 0.895335, 1.612401, -0.050137, -0.272140, 0.770629, 0.586540, -0.882999, 2.427387, 0.907571}, + { 1.020693, -0.572768, -1.022579, -0.633937, 1.401881, -0.251258, -1.633224, -0.467908, -1.371026, -0.969493, -0.825524, 0.605472, 0.183619, -1.847969, -1.878521, 1.177194, -0.710708, 0.769348, 0.636449, 1.019374, 1.298586, -1.192946, 0.573427, 0.357284, -0.348353, 0.929739, -0.583619, -0.075304, -2.041761, -0.158822, -0.179691, -3.007082, -1.240545, 0.256757, -0.732539, 0.213922, -3.068860, -0.118184, 1.317333, 0.639406, -1.638411, -0.856709, 0.936945, -0.200855, 0.592933, 0.934265, -0.506393, -2.097188, -0.686307, -0.841321, 0.113067, -0.659559, -0.225567, 0.278005, 0.185259, 0.321431, 1.222981, -1.271038, 0.553208, -0.798184, 0.259451, 0.417953, -0.004145, -0.694951}, + { -0.227405, -0.808163, 0.415147, 0.657638, 1.917061, 1.630171, -1.438121, -0.981062, 0.436875, 1.518751, 0.353086, -0.147144, 0.741269, 1.950936, 2.739364, 0.733956, -0.655084, -0.021943, 2.113906, 1.009407, 0.544371, 0.768170, -0.927640, 0.817491, 0.744725, 0.843117, -0.691860, -0.747689, 0.265487, 0.741109, -0.117990, -0.336553, 1.219656, -0.894997, 0.185234, -0.876471, 1.620419, -0.154121, -0.562478, 0.724263, 0.392547, -0.183256, -0.952905, -0.482131, 0.056012, 1.362304, -0.669158, -1.197868, 1.035019, 0.921444, 0.293030, -0.064290, 0.039056, -1.971230, -0.748615, 1.521501, -1.063615, -1.614336, 0.859108, 0.664434, 0.582681, 0.891293, -0.682233, -1.063711}, + { 1.022504, -1.064391, -0.238194, -1.287860, -1.136086, -0.599646, 2.083999, -0.251891, 1.635609, 0.142861, 0.311812, 1.059390, -0.011250, 0.999566, -0.376215, -0.275687, 1.269079, 0.547754, -0.021728, -1.003898, 1.155573, -0.133892, -0.820203, -0.399042, 0.011735, -0.004630, -1.624290, -3.214955, -0.302276, 0.162449, -0.165589, -0.324434, -0.858639, 1.214711, -0.088071, 0.692165, -2.298264, 0.109115, -0.152067, -1.400125, -0.798508, 0.065675, 0.840315, -0.535997, 0.989161, -0.666881, 0.422332, 2.565203, -0.348443, 0.292504, 0.955866, 1.009752, 2.071980, 1.349440, 0.222731, 0.470191, -2.257708, -0.124012, 0.316573, 0.914732, -0.237629, 1.217734, -0.413807, -1.373763}, + { -0.449355, 1.434391, -0.433576, -0.174979, 0.556502, -0.430827, 1.936127, 0.067958, -0.865320, 0.760247, -0.580725, 0.018868, -0.033391, 0.721388, 0.462043, -1.425273, 0.678470, 0.302006, 0.756002, 0.167077, 0.766390, -0.043001, 0.394925, 1.800999, 0.090170, -0.554982, -0.095026, 0.112222, -1.022792, 0.053468, -0.428305, -0.314164, 1.135005, 2.346780, 0.916245, -0.659896, -0.498403, -0.046144, -0.553811, -0.108004, 0.122168, -0.002586, 0.768014, -0.692886, -1.433461, 0.473015, -0.064335, 1.647390, 0.779012, -0.843045, 1.077922, 0.382245, -1.250200, 0.643778, 0.443442, 0.904600, 1.065371, -0.027124, -0.566289, -0.665816, -0.354307, -0.877381, -1.659182, -0.191498}, + { 0.162333, 0.498699, -0.395470, 1.743060, -1.321712, -0.936546, 0.274050, -0.159812, -0.355672, -1.676516, -0.600875, 0.034010, 0.114026, -1.140778, -0.492318, -1.908774, -1.484320, 1.081611, -0.934511, 1.064218, -1.353714, -0.314849, -0.105485, 2.178031, -0.409103, 0.933178, -2.048981, -0.298461, -2.592589, -0.488420, 0.835982, -1.151600, -0.189469, 1.288512, -0.699727, -0.624615, 0.460098, -0.202874, -0.346232, 0.267220, -0.158052, 1.825733, -0.869135, 0.123580, -0.991966, 0.750955, 1.741264, -0.764096, 0.010258, -0.192117, 0.027155, -0.265093, 1.277057, 0.043134, 0.090176, 0.277584, 0.372338, 0.948639, -0.836552, -0.589544, -0.745397, 0.382427, -0.232827, -0.892618}, + { 0.882999, -0.799134, 0.054087, 0.408222, 1.345659, 0.814261, -1.389691, 0.093555, -1.494835, -1.735067, -0.009094, 1.548697, -0.411162, -0.575812, 0.405427, 0.855615, 0.896117, 0.274727, -0.114478, -0.488888, 0.450323, 0.212904, -0.196283, 0.326608, -1.224662, 0.087978, 1.183714, -0.601534, -0.298352, -0.654938, 0.161118, 1.607924, -0.909086, 0.273687, -2.044743, 0.746246, -1.040757, -0.908652, -0.731929, -0.509273, 0.037672, 0.032804, 0.348324, 0.257188, 0.500905, 0.020275, 0.119230, -0.704439, -2.530083, -1.678277, -0.676852, -2.791788, 0.164539, -0.123641, -1.377383, -0.361288, -1.299663, -1.483092, 0.434668, -1.035801, 1.730346, -0.469573, 0.417228, 0.019251}, + { -0.072003, -0.198577, -0.569901, 0.935016, 0.314889, 0.034155, 0.430543, 0.898514, -0.164523, -0.214377, -0.653906, 0.201249, -1.524915, 0.701587, -0.324459, -0.917747, 1.476484, 0.469838, -0.381519, -1.311817, 0.720365, -0.310191, 1.025053, 1.889874, -0.966916, -0.871145, -0.383549, 1.698432, -0.956719, -1.682718, 1.309966, -0.491572, -0.018925, -1.528414, -1.133854, 1.203479, -1.144830, -0.353264, -0.932797, -0.802824, -1.524664, 0.034604, 1.323310, -0.947217, 0.987849, 0.756220, -0.057331, -0.199653, -1.039496, 0.408915, 0.663561, -1.235246, -0.877334, -1.213858, -0.555124, 0.169166, 0.415630, 0.262026, 1.884413, -1.458849, -0.292172, 0.790321, 1.437780, 0.489940}, + { 1.181251, -0.222410, -0.539658, 1.178497, -0.118368, 0.197939, -0.060905, -1.908541, -1.067447, -0.342585, 2.388675, -0.280412, 1.539183, 0.566500, 0.411963, 0.188143, 1.485968, -1.613623, 0.613969, -1.523564, 0.413067, -0.666758, -0.972755, 0.970277, 0.681646, 0.277529, 1.423990, -0.392149, 0.430833, -0.371182, 1.011777, -0.384506, -1.010383, 0.828187, 1.044202, 0.477430, 0.180531, 0.352829, -0.393196, 0.816648, 0.551559, 0.998243, 0.261241, 0.620633, 0.858043, -0.634724, 1.524376, -1.243713, 1.891966, 0.661525, 0.833298, 1.810750, 0.947274, -0.728384, -1.603718, -0.813418, 1.071318, -0.801694, -0.168650, 0.474758, 0.241127, 0.903248, 0.334180, 0.991895}, + { -1.314739, 0.998850, -0.519051, -2.067554, 1.896067, 0.501201, 0.556987, 0.641588, 0.272504, -0.742982, -0.470703, 1.240292, 1.259373, 0.565328, -0.720676, 0.004026, 0.600226, 0.090100, 0.011061, 0.369402, 0.011070, 0.233415, -0.282847, -0.903427, -0.816539, -0.871172, -2.226825, -1.740848, -0.339944, 0.215897, 0.323387, -0.254469, -0.515725, 0.073948, 0.563910, -0.653186, -0.306754, -0.546975, 1.372907, -0.970252, -0.487223, -0.078836, -1.081625, 1.588108, 1.202025, -2.122401, -0.237531, -0.685333, 0.173563, -0.576237, -0.297172, -1.762223, 0.460683, -1.041090, 0.097664, 0.414681, -0.378730, -0.441698, -0.569381, 1.072555, -1.684300, 0.737147, 0.341000, 0.049181}, + { -1.632741, 0.077021, -0.530017, -0.163073, -1.158130, 2.668592, -0.433849, 0.091581, 0.232981, -0.300411, 0.835452, -0.168550, 0.713216, 0.851907, -1.087314, 0.900005, -0.786708, -0.618744, 0.001694, -3.176547, 0.126415, 0.362694, 0.369459, 0.931487, -1.290275, -0.717392, -0.335578, 0.703348, 0.756063, 0.260056, 0.778826, -0.129166, 0.101717, -0.342590, -0.295437, 0.198471, -1.717762, 0.015128, -0.576792, 0.512532, 0.672616, 1.389580, -0.476444, 0.404700, -0.532910, -1.795952, 0.241228, 1.383689, -1.515232, 0.271979, -1.543068, -0.150854, -1.174402, 0.882491, 0.149071, -0.917308, -0.689293, -0.382830, -1.111705, -1.484126, -0.148355, -0.445174, -0.362349, -2.037557} +} +}); + +#endif /* EXPORT_PARAMETERS_FC1_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2.hpp new file mode 100644 index 000000000..a2b18e037 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2.hpp @@ -0,0 +1,7 @@ +#ifndef EXPORT_ATTRIBUTES_FC2_H +#define EXPORT_ATTRIBUTES_FC2_H + +#define _FC2_IN_CHANNELS 32 +#define _FC2_OUT_CHANNELS 16 + +#endif /* EXPORT_ATTRIBUTES_FC2_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_b.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_b.hpp new file mode 100644 index 000000000..6a2087cc8 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_b.hpp @@ -0,0 +1,11 @@ +#ifndef EXPORT_PARAMETERS_FC2_B_H +#define EXPORT_PARAMETERS_FC2_B_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> FC2_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 16> { +{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } +}); + +#endif /* EXPORT_PARAMETERS_FC2_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_w.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_w.hpp new file mode 100644 index 000000000..07e90c19f --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_w.hpp @@ -0,0 +1,28 @@ +#ifndef EXPORT_PARAMETERS_FC2_W_H +#define EXPORT_PARAMETERS_FC2_W_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> FC2_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 16, 32> { +{ + { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164}, + { 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, + { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245}, + { 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, + { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219}, + { -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365}, + { 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620}, + { -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814}, + { -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116}, + { -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061}, + { 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394}, + { -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534}, + { 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535}, + { -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270}, + { -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022}, + { -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879} +} +}); + +#endif /* EXPORT_PARAMETERS_FC2_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode.hpp new file mode 100644 index 000000000..d6da9ad65 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode.hpp @@ -0,0 +1,7 @@ +#ifndef EXPORT_ATTRIBUTES_INPUTNODE_H +#define EXPORT_ATTRIBUTES_INPUTNODE_H + +#define _INPUTNODE_IN_CHANNELS 3072 +#define _INPUTNODE_OUT_CHANNELS 64 + +#endif /* EXPORT_ATTRIBUTES_INPUTNODE_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_b.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_b.hpp new file mode 100644 index 000000000..e5b492ced --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_b.hpp @@ -0,0 +1,11 @@ +#ifndef EXPORT_PARAMETERS_INPUTNODE_B_H +#define EXPORT_PARAMETERS_INPUTNODE_B_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> InputNode_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 64> { +{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } +}); + +#endif /* EXPORT_PARAMETERS_INPUTNODE_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_w.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_w.hpp new file mode 100644 index 000000000..e18c700f3 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_w.hpp @@ -0,0 +1,76 @@ +#ifndef EXPORT_PARAMETERS_INPUTNODE_W_H +#define EXPORT_PARAMETERS_INPUTNODE_W_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> InputNode_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 64, 3072> { +{ + { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164, 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088, 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245, 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640, 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219, -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365, 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620, -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814, -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116, -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061, 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394, -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534, 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535, -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270, -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022, -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879, -0.483628, 0.272165, -0.921403, -0.867794, 0.253838, -1.017495, -0.035984, -0.680159, -0.116601, -1.917364, -0.293144, -1.680917, 1.482456, -2.643867, -0.589814, 1.864317, 0.810974, 0.449891, -0.523071, -1.701221, 1.129147, -0.414783, 0.039269, -1.340263, 0.165569, -0.458461, -0.978111, 0.656720, 0.531054, 0.426182, 0.701776, 1.073439, -0.749516, -0.560629, -0.634230, -0.186059, -0.122258, 0.021843, 0.543000, -0.314648, -0.946935, -0.333649, 0.596433, -0.647178, 0.790704, -0.074659, -0.043766, 1.429068, -0.058342, -0.809171, 1.030495, 0.050716, -0.116684, -1.944978, -1.793352, 1.627739, -0.369663, 2.177690, 1.651580, -2.036985, -1.240169, 0.036523, -1.150051, 0.116815, 1.104999, 1.341058, 0.309679, -1.755930, -0.378678, -0.806254, -1.054984, -0.320765, -0.266736, -0.225193, 0.169121, 0.865690, -0.885389, 0.095123, 0.870764, -0.091391, 1.401193, -0.193103, 0.621627, 0.369497, -0.816600, -0.202823, -0.159167, 0.872668, -0.273115, 1.938011, 0.684697, 1.704309, 1.204039, -0.959246, 1.359703, 0.799502, 0.776908, -0.756584, -0.640936, 0.990894, 0.256858, -3.137142, 0.545601, 0.109409, 0.181050, 1.120293, -0.914028, -0.097133, 0.133803, 0.496900, 1.070259, 0.223329, -0.368285, 0.345049, 1.432678, 1.382178, 0.558631, -0.126281, -1.479764, -2.136274, 0.879013, -0.931591, 0.460165, 0.663047, -0.782686, -2.017072, -1.219782, -1.615018, 0.023152, -0.351595, 0.384548, -0.350487, 0.861079, -2.343885, 0.206722, 0.492284, 0.227113, -0.832889, -0.669958, -0.069160, -0.609277, -0.255370, -0.752728, -0.765413, 1.094080, 0.368862, 0.024828, -0.518220, 0.009554, -0.353964, 1.897386, -0.901690, 0.077136, -0.747170, 0.407625, -1.418082, 0.823818, -0.750032, -0.318462, -0.949275, -0.005721, -0.311060, -1.375086, 0.638032, -0.070481, 0.265967, -1.677426, -0.803207, 0.331928, -0.337461, 1.145064, 0.517522, 2.248859, -0.155701, -0.185320, -0.430223, 0.633950, 0.594881, -0.373053, -0.183769, 0.781241, -1.100458, -1.127900, 1.536747, 0.694964, -1.317671, 0.552416, 0.214635, 1.172117, 0.057319, -0.083945, -2.744316, -2.083668, 1.579024, 0.846874, -0.559092, 1.025974, 0.889658, -1.337327, -2.154229, 0.283269, -0.084246, -0.448027, 1.076064, -0.171827, 0.712631, -0.291771, -1.532148, 0.525627, -0.182083, -0.584263, 0.758026, -0.011926, 0.048968, -0.683809, -0.367121, -0.808110, -0.745193, -0.025946, -0.974672, -0.667272, -1.253634, -0.933169, 1.543063, -0.558194, 0.333470, 0.300683, 0.875321, -0.650058, -0.402874, -1.479110, -1.422508, -1.490082, -1.066710, 0.818719, 1.130872, 0.726068, -0.644154, 0.015556, -1.297712, -1.807793, -0.449898, 0.678534, -0.343751, -0.438977, 1.005177, 0.789181, -0.868195, 2.963583, 0.127910, 0.762864, 2.106842, 0.059183, 1.106624, -0.173846, 0.506085, -0.803235, 0.456489, 1.792648, -0.413096, 0.174623, -0.670578, 1.004736, -1.211046, -0.177172, -1.173558, 1.704121, -0.717132, -0.315196, -0.955144, -0.844640, 0.219873, 0.439474, -0.111900, 0.382651, 0.037409, -0.715340, -0.458230, -1.518173, 0.580286, -0.180067, 0.251145, 1.541854, -1.799514, 0.415876, 0.045524, -0.935430, -0.941019, 0.476378, -0.045153, -0.346679, -0.071810, 0.468796, -0.303942, 1.868755, 0.052552, -1.115326, -0.951675, 0.823079, -0.264655, -0.460295, 0.024275, 0.681858, 1.360035, -1.231762, -1.203111, -0.181563, 0.198488, -0.813774, -1.178844, 0.972454, -0.134574, 0.030472, -0.967580, 0.152757, -2.177683, -0.678582, 1.439619, 0.329668, 1.977801, 0.547752, 0.150742, 0.597613, 0.320251, 0.629068, -1.048041, 1.226918, -1.397015, 0.530945, 1.934914, -0.360577, 0.601554, -1.164239, 0.144575, 0.725861, -0.442685, 0.083200, -0.289393, -1.016526, 1.067162, -0.018115, -0.224101, -0.241866, -0.064766, 2.522637, 1.326687, -0.214645, 0.652540, 0.005862, -0.888118, -1.111310, -0.301777, -0.060108, -0.383830, 0.692486, -0.268334, 0.663172, -1.008340, -1.682795, 0.617490, 0.376519, 1.881652, 1.198976, 0.919806, -0.134369, 0.542711, -0.636402, 2.075232, 0.367750, 0.078205, 1.175514, 0.312489, -0.545571, 1.806641, 0.572128, 0.969595, 2.196302, 0.144951, -0.069890, -0.024643, 0.096254, -0.913089, 0.207929, -0.024540, -2.364928, 0.403653, 0.957075, 0.605313, -0.084031, -0.881650, 0.617897, -0.514700, 1.021071, -2.341326, 0.867535, 0.276200, -1.536776, 1.063557, -0.265884, -1.019689, 0.034769, 0.374245, 0.308205, 0.941602, -2.383936, 0.053763, 0.080351, 0.805516, -1.034883, 0.112969, 0.225962, 0.529344, -0.533202, 0.826293, -0.530990, -0.941042, -1.409687, -0.616595, 0.083008, 0.597792, 0.564483, -0.277788, 0.275536, -1.167859, 0.234086, 0.923334, -1.550176, -0.317221, 0.167047, 0.842336, -0.197037, -0.189047, -1.258022, 1.233136, 2.043196, -0.972316, -0.211159, -0.644789, 0.550668, 0.263230, 0.510620, -0.340782, -0.076202, -0.532805, 0.028492, -0.711909, -0.041329, -0.716095, -0.438745, 1.613258, 1.203239, 0.964917, 2.008562, 2.526586, -1.076117, -1.172786, 1.202410, -1.702984, 2.141656, -0.421657, 0.506291, -1.005197, -1.210642, -1.006717, -1.024502, 0.616641, -1.584712, 0.891012, -2.477347, -0.572187, 0.864046, -1.402610, 0.412339, -0.276108, -2.752150, 0.592655, 0.632535, -0.195088, 2.281385, -1.077261, -0.790374, -1.883068, 0.079064, 0.400938, -0.359422, -0.905535, 0.275971, -0.708639, 1.268833, -1.304649, 1.220814, 0.345417, -1.035277, 1.694809, -0.453738, -0.100811, -0.711486, -2.032043, 0.247771, 0.125351, 1.414129, 1.130891, -0.594405, 0.797592, 0.053162, 0.395181, -0.421787, 0.288705, -1.071319, 0.932462, -0.609468, -0.239886, 0.426226, -0.566084, -0.555236, -0.395055, -1.607937, -0.454888, 1.086999, 0.064433, -0.630807, 0.537331, -0.079178, 0.544384, -0.345341, -0.755680, 0.194209, -0.915100, 0.664959, 0.136650, 0.145284, 0.658129, 1.353991, -0.482921, -1.267343, -0.525734, 0.427054, -0.567577, -0.977804, 0.581563, 0.731378, 0.287522, 2.394391, -0.044662, -1.842992, 1.271125, -0.347839, -0.222826, -0.068077, -0.131304, -2.144952, -2.350498, -0.053892, -1.022586, 0.598608, -3.063631, -0.889890, -0.169715, -0.043919, -1.031522, -0.314142, -1.721556, -1.423945, -0.517471, -0.617123, -0.140159, -0.793929, 0.361729, 0.918396, -0.399743, -0.736005, 1.568120, -1.300957, 1.526744, -0.297900, -0.062842, -1.966952, -1.071676, 1.570217, 1.112780, 0.185776, -0.637180, 1.313317, 1.172860, -0.915400, 1.177792, -1.942183, 0.390201, 1.388212, -0.477988, -1.579742, -0.683059, 1.172021, -0.980434, 0.059954, -0.457660, -0.634426, 1.500102, 0.078013, -0.986448, -0.762938, 0.195547, 1.015367, 1.245432, -0.282828, 0.081046, 0.307498, -0.669810, 0.721569, 0.057625, 0.501820, -0.104848, 1.437235, 0.117299, -0.523084, -1.118009, 1.560399, 0.104631, 0.489168, 0.760339, 1.449355, -1.377321, -0.715611, -1.029579, 0.073359, -0.825450, -0.229307, -0.421830, -0.666367, -0.440156, 0.023840, -0.751700, -0.361373, 0.986500, 0.851569, 0.123599, 0.390027, 0.277061, 0.940906, -0.103239, -0.445279, -0.919782, 0.639714, -0.902529, -1.874779, -1.719761, -1.893759, 0.269624, -0.578221, -0.202651, -0.392257, 1.412725, -0.629082, 1.413975, -0.064950, -0.204246, 0.975600, -0.282429, 0.352274, 0.795323, -0.966890, 0.600321, 0.459449, 1.495051, -0.693799, -2.130963, 2.241615, 0.016742, -1.380529, -0.693764, 0.788271, -2.084727, -0.605345, -0.393199, -1.431592, -0.019263, 0.154902, 2.003049, -0.505429, -0.279594, 1.178694, 0.081671, -0.253501, -0.928567, -0.470637, -0.599760, 0.105334, -0.558767, 0.306641, -1.247424, -1.136135, 0.388699, 0.240216, -0.539604, 0.748712, 1.514203, -0.053900, 0.146477, 1.415987, 0.035719, 0.852351, -0.505780, -2.203605, 1.287532, -0.138672, 0.707916, 0.732445, 0.034828, 0.916650, -0.960419, -1.104703, -1.910655, 0.738577, -1.784924, 0.377324, 0.942214, -2.147115, -0.657372, 1.937143, -0.640029, 0.813896, -1.856751, 0.293933, 0.407355, 0.828903, -0.258431, 0.651304, 1.024936, -1.113730, 0.727588, 0.244997, -1.608019, 0.678481, -0.704592, 0.512401, -0.693952, 0.200313, 0.382440, -0.155662, -1.873614, -1.368903, -0.209850, -1.454814, -0.029855, 0.192369, 1.508715, -0.212503, 1.176330, -1.738381, -0.637968, 0.576972, 0.808788, 0.434982, -0.529857, -1.056989, -0.818170, -1.858517, -1.504275, -1.812055, 1.817686, -0.827064, -0.970820, 0.661065, 0.146447, 0.291060, -0.408877, 0.068819, 0.295079, 0.663102, -0.166278, 0.770570, -1.142846, -0.806847, -0.730912, -0.447671, -0.015643, 0.619293, 0.202428, 1.665242, -0.790555, 1.475059, -0.881476, 0.390759, 1.258389, 0.324598, 1.822245, -0.058715, 0.600523, 1.136708, -1.679807, 0.288505, 0.744363, -0.611639, 1.300585, 1.380471, -1.169925, -0.777400, 2.193714, -0.475082, -0.242079, -0.336258, 0.471824, -0.658170, -1.063402, 0.417935, -1.189927, -1.703003, -1.247581, 0.862522, 0.934985, 1.998402, 0.301988, -1.167236, -0.040485, -0.692792, -0.118653, -0.085074, -0.157554, -0.597173, -1.148901, 0.479436, -1.334729, 0.435822, 0.728494, -0.447077, 0.395057, -0.449488, -0.970525, 1.506991, 0.701021, 0.331930, -0.781135, 0.695741, 0.447304, 0.814847, 2.051350, -0.694026, -0.032321, 0.024414, -0.642007, 1.006013, -0.816746, -1.214119, -2.295536, 0.402007, -0.404793, 0.312364, -0.727692, 0.190903, 1.319342, 2.484523, -0.751330, 0.517379, 1.607649, -1.566784, -1.809135, 1.457683, -0.908496, -2.220334, 0.243166, 0.595011, 0.379217, 1.088163, 1.147452, 0.633369, 0.346038, 0.347236, -0.325225, 1.888308, -3.072945, 1.297680, -1.506335, 0.205380, 0.664307, 0.979495, -1.097883, -0.745897, -0.303797, -0.563891, 2.451149, 0.088773, 0.480402, -0.445841, -0.637341, -0.792031, -0.643933, 0.330410, 0.895335, 1.612401, -0.050137, -0.272140, 0.770629, 0.586540, -0.882999, 2.427387, 0.907571, 1.020693, -0.572768, -1.022579, -0.633937, 1.401881, -0.251258, -1.633224, -0.467908, -1.371026, -0.969493, -0.825524, 0.605472, 0.183619, -1.847969, -1.878521, 1.177194, -0.710708, 0.769348, 0.636449, 1.019374, 1.298586, -1.192946, 0.573427, 0.357284, -0.348353, 0.929739, -0.583619, -0.075304, -2.041761, -0.158822, -0.179691, -3.007082, -1.240545, 0.256757, -0.732539, 0.213922, -3.068860, -0.118184, 1.317333, 0.639406, -1.638411, -0.856709, 0.936945, -0.200855, 0.592933, 0.934265, -0.506393, -2.097188, -0.686307, -0.841321, 0.113067, -0.659559, -0.225567, 0.278005, 0.185259, 0.321431, 1.222981, -1.271038, 0.553208, -0.798184, 0.259451, 0.417953, -0.004145, -0.694951, -0.227405, -0.808163, 0.415147, 0.657638, 1.917061, 1.630171, -1.438121, -0.981062, 0.436875, 1.518751, 0.353086, -0.147144, 0.741269, 1.950936, 2.739364, 0.733956, -0.655084, -0.021943, 2.113906, 1.009407, 0.544371, 0.768170, -0.927640, 0.817491, 0.744725, 0.843117, -0.691860, -0.747689, 0.265487, 0.741109, -0.117990, -0.336553, 1.219656, -0.894997, 0.185234, -0.876471, 1.620419, -0.154121, -0.562478, 0.724263, 0.392547, -0.183256, -0.952905, -0.482131, 0.056012, 1.362304, -0.669158, -1.197868, 1.035019, 0.921444, 0.293030, -0.064290, 0.039056, -1.971230, -0.748615, 1.521501, -1.063615, -1.614336, 0.859108, 0.664434, 0.582681, 0.891293, -0.682233, -1.063711, 1.022504, -1.064391, -0.238194, -1.287860, -1.136086, -0.599646, 2.083999, -0.251891, 1.635609, 0.142861, 0.311812, 1.059390, -0.011250, 0.999566, -0.376215, -0.275687, 1.269079, 0.547754, -0.021728, -1.003898, 1.155573, -0.133892, -0.820203, -0.399042, 0.011735, -0.004630, -1.624290, -3.214955, -0.302276, 0.162449, -0.165589, -0.324434, -0.858639, 1.214711, -0.088071, 0.692165, -2.298264, 0.109115, -0.152067, -1.400125, -0.798508, 0.065675, 0.840315, -0.535997, 0.989161, -0.666881, 0.422332, 2.565203, -0.348443, 0.292504, 0.955866, 1.009752, 2.071980, 1.349440, 0.222731, 0.470191, -2.257708, -0.124012, 0.316573, 0.914732, -0.237629, 1.217734, -0.413807, -1.373763, -0.449355, 1.434391, -0.433576, -0.174979, 0.556502, -0.430827, 1.936127, 0.067958, -0.865320, 0.760247, -0.580725, 0.018868, -0.033391, 0.721388, 0.462043, -1.425273, 0.678470, 0.302006, 0.756002, 0.167077, 0.766390, -0.043001, 0.394925, 1.800999, 0.090170, -0.554982, -0.095026, 0.112222, -1.022792, 0.053468, -0.428305, -0.314164, 1.135005, 2.346780, 0.916245, -0.659896, -0.498403, -0.046144, -0.553811, -0.108004, 0.122168, -0.002586, 0.768014, -0.692886, -1.433461, 0.473015, -0.064335, 1.647390, 0.779012, -0.843045, 1.077922, 0.382245, -1.250200, 0.643778, 0.443442, 0.904600, 1.065371, -0.027124, -0.566289, -0.665816, -0.354307, -0.877381, -1.659182, -0.191498, 0.162333, 0.498699, -0.395470, 1.743060, -1.321712, -0.936546, 0.274050, -0.159812, -0.355672, -1.676516, -0.600875, 0.034010, 0.114026, -1.140778, -0.492318, -1.908774, -1.484320, 1.081611, -0.934511, 1.064218, -1.353714, -0.314849, -0.105485, 2.178031, -0.409103, 0.933178, -2.048981, -0.298461, -2.592589, -0.488420, 0.835982, -1.151600, -0.189469, 1.288512, -0.699727, -0.624615, 0.460098, -0.202874, -0.346232, 0.267220, -0.158052, 1.825733, -0.869135, 0.123580, -0.991966, 0.750955, 1.741264, -0.764096, 0.010258, -0.192117, 0.027155, -0.265093, 1.277057, 0.043134, 0.090176, 0.277584, 0.372338, 0.948639, -0.836552, -0.589544, -0.745397, 0.382427, -0.232827, -0.892618, 0.882999, -0.799134, 0.054087, 0.408222, 1.345659, 0.814261, -1.389691, 0.093555, -1.494835, -1.735067, -0.009094, 1.548697, -0.411162, -0.575812, 0.405427, 0.855615, 0.896117, 0.274727, -0.114478, -0.488888, 0.450323, 0.212904, -0.196283, 0.326608, -1.224662, 0.087978, 1.183714, -0.601534, -0.298352, -0.654938, 0.161118, 1.607924, -0.909086, 0.273687, -2.044743, 0.746246, -1.040757, -0.908652, -0.731929, -0.509273, 0.037672, 0.032804, 0.348324, 0.257188, 0.500905, 0.020275, 0.119230, -0.704439, -2.530083, -1.678277, -0.676852, -2.791788, 0.164539, -0.123641, -1.377383, -0.361288, -1.299663, -1.483092, 0.434668, -1.035801, 1.730346, -0.469573, 0.417228, 0.019251, -0.072003, -0.198577, -0.569901, 0.935016, 0.314889, 0.034155, 0.430543, 0.898514, -0.164523, -0.214377, -0.653906, 0.201249, -1.524915, 0.701587, -0.324459, -0.917747, 1.476484, 0.469838, -0.381519, -1.311817, 0.720365, -0.310191, 1.025053, 1.889874, -0.966916, -0.871145, -0.383549, 1.698432, -0.956719, -1.682718, 1.309966, -0.491572, -0.018925, -1.528414, -1.133854, 1.203479, -1.144830, -0.353264, -0.932797, -0.802824, -1.524664, 0.034604, 1.323310, -0.947217, 0.987849, 0.756220, -0.057331, -0.199653, -1.039496, 0.408915, 0.663561, -1.235246, -0.877334, -1.213858, -0.555124, 0.169166, 0.415630, 0.262026, 1.884413, -1.458849, -0.292172, 0.790321, 1.437780, 0.489940, 1.181251, -0.222410, -0.539658, 1.178497, -0.118368, 0.197939, -0.060905, -1.908541, -1.067447, -0.342585, 2.388675, -0.280412, 1.539183, 0.566500, 0.411963, 0.188143, 1.485968, -1.613623, 0.613969, -1.523564, 0.413067, -0.666758, -0.972755, 0.970277, 0.681646, 0.277529, 1.423990, -0.392149, 0.430833, -0.371182, 1.011777, -0.384506, -1.010383, 0.828187, 1.044202, 0.477430, 0.180531, 0.352829, -0.393196, 0.816648, 0.551559, 0.998243, 0.261241, 0.620633, 0.858043, -0.634724, 1.524376, -1.243713, 1.891966, 0.661525, 0.833298, 1.810750, 0.947274, -0.728384, -1.603718, -0.813418, 1.071318, -0.801694, -0.168650, 0.474758, 0.241127, 0.903248, 0.334180, 0.991895, -1.314739, 0.998850, -0.519051, -2.067554, 1.896067, 0.501201, 0.556987, 0.641588, 0.272504, -0.742982, -0.470703, 1.240292, 1.259373, 0.565328, -0.720676, 0.004026, 0.600226, 0.090100, 0.011061, 0.369402, 0.011070, 0.233415, -0.282847, -0.903427, -0.816539, -0.871172, -2.226825, -1.740848, -0.339944, 0.215897, 0.323387, -0.254469, -0.515725, 0.073948, 0.563910, -0.653186, -0.306754, -0.546975, 1.372907, -0.970252, -0.487223, -0.078836, -1.081625, 1.588108, 1.202025, -2.122401, -0.237531, -0.685333, 0.173563, -0.576237, -0.297172, -1.762223, 0.460683, -1.041090, 0.097664, 0.414681, -0.378730, -0.441698, -0.569381, 1.072555, -1.684300, 0.737147, 0.341000, 0.049181, -1.632741, 0.077021, -0.530017, -0.163073, -1.158130, 2.668592, -0.433849, 0.091581, 0.232981, -0.300411, 0.835452, -0.168550, 0.713216, 0.851907, -1.087314, 0.900005, -0.786708, -0.618744, 0.001694, -3.176547, 0.126415, 0.362694, 0.369459, 0.931487, -1.290275, -0.717392, -0.335578, 0.703348, 0.756063, 0.260056, 0.778826, -0.129166, 0.101717, -0.342590, -0.295437, 0.198471, -1.717762, 0.015128, -0.576792, 0.512532, 0.672616, 1.389580, -0.476444, 0.404700, -0.532910, -1.795952, 0.241228, 1.383689, -1.515232, 0.271979, -1.543068, -0.150854, -1.174402, 0.882491, 0.149071, -0.917308, -0.689293, -0.382830, -1.111705, -1.484126, -0.148355, -0.445174, -0.362349, -2.037557, -0.949282, -1.611513, -0.153610, 0.424405, -0.395808, 1.023179, 0.975042, -0.311931, 0.324270, 0.113626, 0.309115, -0.332104, -0.238800, -0.368156, 0.400204, 0.779575, -1.039874, -0.180268, 0.655636, 0.785250, -1.127972, 0.777665, 0.016652, 0.727648, -1.386528, 0.678570, 0.272134, -0.734405, 0.346691, 0.710352, 0.413029, 1.777285, 0.155423, -0.484363, 1.320690, -1.946193, -0.524754, -0.771088, -0.524043, 0.604248, -0.816410, 0.472590, 0.311729, 0.459517, 0.275026, 1.501116, 0.012700, 0.194177, -1.557604, 1.287073, 0.858426, -0.366481, -0.492214, 0.540634, -0.216906, 1.056813, 0.108197, 0.326910, 0.087416, -0.722098, -0.256490, 0.602468, 0.997557, -0.674882, -1.212450, 0.208286, 0.332696, -2.512025, -1.130804, 0.673082, -1.404227, -0.519971, 0.151259, 1.565283, -0.179690, 3.395982, 0.026674, -1.768538, -0.786760, -0.626921, -0.460870, 0.031497, -0.499570, 0.244112, -0.106123, 0.594928, 0.170613, 1.934060, 0.623652, 1.197117, -0.110753, -1.273471, 1.488819, -1.185202, 0.929832, -0.626908, 0.888896, -1.537817, 1.271557, -0.716535, -0.464746, 1.185983, 1.854573, 1.425654, -0.058017, -0.799256, 0.199133, -0.372743, -0.782147, -0.250217, -0.433804, 0.302341, 0.958295, 0.577269, -0.597675, 0.314995, 1.007424, -1.008409, 1.329026, 2.672855, 0.998121, 0.112067, 0.621820, 0.410118, 0.875217, -0.653587, 0.630092, 0.656486, 0.819713, 1.881184, 1.612515, 0.570351, -0.235872, 1.513090, 0.096251, 0.057704, -2.665689, 2.195297, -0.780487, -0.533711, -0.066655, -0.448292, -0.190116, 1.032401, 1.406327, -2.502980, -3.354525, 0.273516, 1.866227, 0.377479, 0.603672, 2.100813, 0.560821, -2.054955, 0.294400, -0.702300, 0.245335, -1.990072, 1.331997, 0.240215, -1.157135, -0.986040, 0.094928, 0.310835, 1.343763, 0.611746, -1.530175, 0.958943, 0.312722, 0.799592, -0.721303, 1.173564, -0.672806, -1.797724, 1.004274, -0.386549, 1.453313, -0.063464, 0.013326, 0.878770, -0.071918, -0.329081, -1.047271, 0.103185, -1.203935, 1.063529, -1.318201, 0.814826, 0.313617, -0.437196, 0.199292, -1.691726, -0.373155, -0.320716, 0.369388, 0.154613, -0.500642, -0.215388, 0.843930, -0.794182, -0.562701, 1.475003, 1.817497, 0.291827, 0.101184, 0.643614, -1.082114, -0.320927, 0.268631, -0.829719, 1.740005, -1.009110, 0.260317, -0.119149, -3.099813, -0.484698, 0.170382, 2.142591, 0.884803, -0.084357, -0.333901, 0.542875, 0.408539, 0.191847, -2.333756, -0.190223, 0.353178, -0.478883, -1.652882, -1.062859, -0.973991, 0.706297, -0.987439, -1.111054, 0.016979, -0.965271, -0.126417, 0.185341, 1.020485, 0.927526, -0.687493, 0.186440, 0.258571, 1.418577, 0.272011, 1.191018, -1.985886, -0.178206, 0.025245, 0.853979, -0.219570, -0.115001, 1.075246, 0.332232, 0.646989, 0.038275, -1.700743, 0.274573, -1.093827, -0.999136, 0.973571, -0.102699, 0.525674, 0.577398, -0.752118, 1.026548, 1.114586, 1.369077, 0.584804, -0.621655, 1.168142, 0.804781, 0.343986, 1.096203, 1.070783, 1.806614, -1.190219, -0.198395, -0.963841, -1.604436, -1.206218, -0.090030, -1.204958, 0.051241, -0.064168, -1.143898, -0.845679, 0.557284, -0.452700, 0.498488, 0.110566, -0.650531, -0.372469, -1.809649, -0.047768, 0.590213, -1.239304, 1.075142, 0.102358, 0.349711, -1.567159, 2.841117, -1.355863, -0.675081, 1.360123, -1.135762, 0.580593, 0.215153, -1.305609, -0.741612, 0.289778, 0.528629, -0.038775, 0.165159, -0.281788, -0.230657, 0.741059, -1.011146, -1.999856, -0.688773, -0.393231, 0.423286, -0.524114, -1.335793, 0.485363, -0.006235, -0.169893, 0.060844, 0.587908, 0.591803, 1.300798, 0.207293, -0.011734, 0.396885, 0.493708, 0.094967, 0.129666, -0.461424, 0.391614, -1.299748, 1.165409, -0.333323, -0.674106, 0.604386, -1.632012, -0.666379, -0.449477, 1.772636, -0.359355, 0.276887, 0.825800, -0.419506, 1.212223, 0.669444, 0.077342, 2.958738, -0.544855, 0.346167, -0.758018, 0.907585, 0.426352, -0.546804, 1.497249, 0.320760, 1.542374, -0.436480, -0.165733, 0.735464, 0.376609, 0.727380, 1.467214, -0.045451, 0.828314, 0.557330, -0.704539, 1.426054, -0.143571, 1.415633, -1.029139, -0.685039, 3.734304, -0.399661, 0.973099, 1.363623, -0.412255, -0.825430, -0.093730, -0.072947, -2.813968, -1.236721, -0.114895, -1.899929, 0.377031, 0.503660, -0.724370, 0.146165, 1.325534, -1.177018, -0.133923, 0.132714, 0.598730, 1.007868, 0.204387, 0.205703, -1.167212, -2.288567, -0.344970, -0.482560, 0.473897, 0.614909, 1.272410, -1.425560, -1.296793, 1.514753, -0.035810, 1.974070, -2.745449, 2.172904, -1.414158, 2.639008, -0.768351, -1.916167, -0.194903, -0.439431, 1.382882, -1.183044, 1.417865, -0.319718, 0.439528, 2.562625, -0.835081, 1.387452, -1.035946, -1.466946, -1.200867, -0.906393, 0.036630, -0.374630, 0.871451, 0.833122, 1.253911, 0.567000, -0.537273, 1.376860, 0.760199, 0.838544, -0.320509, 1.032247, -0.955733, 1.140584, -0.409046, 0.075324, -1.463270, 0.494432, -0.210940, -1.047624, 0.827575, 1.219817, -0.300007, 0.269813, -1.480722, -1.200738, 0.135519, -1.401633, 0.244732, -0.801174, -0.847630, 0.914612, -1.664178, -0.329912, -0.222111, 0.668047, -1.233335, -0.340507, 0.017628, -1.942019, -0.024778, 0.153863, 0.374352, -1.316392, 1.012054, 1.741003, 1.305630, 0.891019, 0.507232, 0.600619, 1.130118, 0.891952, -1.102907, -0.258095, -0.862249, -2.186176, -1.528700, -1.588713, -1.748829, 1.373339, -0.400587, -0.378748, 0.338176, -0.666251, -0.590839, -0.664750, 0.961008, -0.424795, 2.517701, 0.161817, 1.337533, 0.683717, -0.877583, 0.743000, 0.295750, 0.458967, 0.521527, 2.021405, -0.682616, 1.116257, 0.790794, -1.669943, 0.658199, -1.551574, 2.174583, -2.009853, -1.172726, 1.735298, -0.597603, 0.248709, 1.080414, -2.354634, 0.674898, 0.030266, -1.799594, -2.267624, -0.204637, 0.157424, -0.226376, 1.397952, 0.599074, 1.006063, -0.147075, -0.676597, 0.430587, -0.950560, 0.621860, -0.730571, -0.411861, 0.024380, 1.017599, 1.600327, 0.673456, -0.044896, -0.793557, -0.825355, 0.581568, 0.436996, -2.016153, 0.972259, 1.955608, -0.487107, 0.776204, 0.179620, -0.871618, -0.153258, -0.775054, 2.840904, 1.402854, -0.415008, 1.684875, -1.129291, -0.732454, 0.383098, 0.392689, -1.109019, 0.519680, 1.383790, 0.847850, -0.589012, -0.036424, 1.344046, 1.363295, 1.761992, 0.377844, -1.436695, -1.970094, -1.180632, -0.809178, 1.797209, -0.149285, 0.132401, -0.713662, -1.275082, -1.197905, -0.748634, 0.237209, -1.333120, -2.745325, 0.713881, 0.232845, 0.831090, -0.296095, -0.867552, 0.485242, -0.616120, -1.055965, 0.820971, -0.939916, 0.157495, -0.177354, -2.702216, 0.453328, 1.668784, -0.167276, 0.238334, 0.286401, 1.521507, 0.465304, 0.746890, 1.281111, 0.059721, 1.142529, -0.279406, -0.601295, -1.321091, 0.383939, -0.168319, -1.025849, -1.156128, 1.139910, -1.696016, -0.286395, -1.129498, 0.473730, -0.407834, 0.158420, -1.677758, 0.256852, 0.911341, -0.564925, -1.183455, -0.526705, 0.483374, 0.300456, 1.321482, 0.093388, 0.770189, 0.450334, 0.274731, -0.973051, -0.801585, 0.306781, -0.287825, -1.279992, -0.071329, -0.236271, -0.894338, -0.507214, -1.932352, -1.815300, -0.761447, -0.059965, -0.388040, -1.562640, -0.924461, 0.056389, -0.907379, -0.577252, -0.008059, 0.336369, 1.204455, -0.359990, 0.330235, 1.671894, 1.162308, -0.792580, 0.901545, 0.270950, 0.401148, 0.307969, -0.746227, 0.023639, -0.225019, -0.274379, -1.332720, -0.787131, -0.559917, -0.376785, 0.093683, 0.256641, -2.401024, 0.135685, 1.889152, 0.411340, -0.997004, -1.039582, -1.404646, -0.049727, 1.022393, -0.051089, 0.572572, 0.660656, -0.977950, 0.032098, 1.482607, -0.801451, -1.397866, -0.157505, 0.200904, -1.141862, 0.692075, 0.212825, -0.726461, 1.048337, 1.177044, -1.594877, 0.436792, 1.541752, -0.130615, 1.517058, 1.184071, -2.406118, 0.688700, 1.849778, -0.274477, -0.802801, 0.945356, -0.556384, -0.892448, -0.354862, -1.172656, -1.878773, -1.678301, 0.555834, -1.905515, -0.186236, -0.680109, 0.143936, 0.139477, 0.623513, 1.273880, 0.851637, 0.090370, -0.037056, 0.132823, 0.770665, 0.972567, 0.880003, -0.766449, 1.112240, -1.871778, 0.387332, -0.286746, -0.159725, 0.114820, 0.390126, -0.495996, 0.443110, 0.990618, 0.958876, 0.454360, -0.153635, 1.360347, 0.392153, 0.108345, 0.565794, 0.381280, -0.268314, 0.033666, -0.953113, -0.862205, 2.132107, 0.768619, -0.382404, -1.818438, 0.090521, 0.379119, 0.424749, -1.435447, 0.571269, -1.929907, 2.909792, 0.121825, 0.076226, -0.391732, -1.454764, 0.306095, 0.375485, 0.765917, 0.665369, 0.192011, 0.396967, 0.389895, 0.404369, 0.093362, 0.454103, -0.011704, -0.021997, -0.312407, 1.611869, 1.352119, -0.519063, 0.566702, -0.644022, -1.989684, -0.459097, -0.640570, 0.490471, 0.395119, -0.138599, 0.161169, -0.907985, 0.125904, 0.023362, -0.950623, 1.168311, -0.054330, -0.629465, -1.824191, -1.735295, 0.091745, 0.686547, -0.356245, 0.020564, 1.221096, 1.105374, -1.289991, -0.635291, 0.144271, -1.884302, -0.829538, -0.211958, 0.785631, 0.023984, -1.370053, 0.818047, 0.463937, -0.461188, -0.398834, -0.945416, 1.490969, 0.065619, 1.524260, 2.470697, -0.218250, -1.038640, 0.320372, 0.679273, -0.994275, 0.987532, -0.059098, -0.255913, -0.359327, 0.437101, -1.957016, 2.023776, -0.777541, 0.544046, -0.634359, 0.202622, -2.537697, -0.880690, 0.262395, 0.022746, 0.670331, 0.382700, -0.550049, -0.225985, -0.658639, -0.845300, -0.038983, -1.177553, -0.153436, -1.193876, -0.664998, -2.020264, -2.023222, 0.324771, 0.407006, 0.097901, 0.239137, 2.563511, 0.554227, -0.773526, 2.304720, 0.661692, -0.240537, -0.570215, -1.067428, -1.571948, -1.857316, -2.437285, 0.541499, 0.110785, -0.521269, 1.400451, 0.523955, 0.587476, -0.483776, 0.441642, 0.510013, 0.337857, -0.129384, 0.182896, 0.464079, -0.293459, -1.041778, -0.409600, 0.818222, -0.446246, -0.276326, -1.245914, 1.087373, -0.799157, 0.486454, -0.031705, -1.009549, -0.654358, 0.085969, 0.855879, 0.598715, 0.624939, 0.736916, 0.979428, 0.997864, 0.307965, 0.286235, -0.849707, 1.034841, -1.771177, 0.096200, -0.576832, -0.052888, 0.459083, 0.048119, -1.041326, 1.098587, -0.644037, 0.174581, -0.173699, 0.959956, 0.925711, 0.603697, -0.198832, -0.475749, 1.521169, 0.004493, 0.952271, -0.742357, 0.296712, -0.146022, -1.299515, -0.769878, 0.790328, -1.721681, 0.724551, 0.132630, -1.088783, 0.753908, -0.644844, -0.408361, -0.307816, -0.953280, 1.544019, 0.468724, -0.086609, 0.769120, 2.025079, 0.452213, 0.269482, -0.521790, 0.184583, 1.194644, 2.081644, -0.790718, 0.092783, -0.234092, 1.369498, -0.629570, -0.023905, 1.019000, -0.330552, -0.373826, -0.539825, 0.928078, 0.010203, -0.041057, 0.529640, -0.048649, -1.111100, 0.514363, 1.565414, 1.223987, -0.003894, 0.686597, -0.402719, -1.054044, -0.717959, 0.476371, -0.934562, 0.268760, -0.264276, -0.225479, -1.619312, 0.203887, -0.164995, 0.509049, 0.579713, 0.193660, -0.168138, 1.828611, 2.593979, -0.172799, 1.210807, 0.301616, 0.094140, 1.051921, -0.351484, 0.228479, 0.759428, -1.627644, 0.256001, -1.516263, -0.324057, -0.895028, -0.698632, 1.030831}, + { 0.498600, -0.630364, -1.934851, 1.978740, 1.297702, -0.366390, 0.396950, -0.474528, 0.365379, -0.384767, 1.053095, -0.796208, 0.118948, -0.200839, -2.280172, -0.828167, -0.266828, -0.326641, -1.628112, 0.359216, -0.532697, 0.297303, 0.886123, 0.536909, -0.502440, -0.563721, -0.318734, 0.163537, 0.738058, -0.406623, -0.650341, 1.666817, 0.316455, 0.172766, 1.239138, -1.374082, 0.306644, -2.331464, 0.929375, -1.947381, 0.708352, 2.265958, 0.512173, -0.975597, -0.143397, 0.167462, -0.501506, 0.183967, 0.549654, -0.103497, -0.466289, 0.386910, -0.752389, 0.483060, -0.773666, -0.035798, -0.975706, 0.400843, 2.763508, 0.066222, -0.512881, 1.116536, 0.748304, -0.041251, -2.250712, 0.389888, 0.192828, -0.112889, -0.606110, 0.144230, -1.006171, -0.708104, 1.159180, 0.261429, -0.346232, -0.340050, -0.492282, -0.699225, -1.828571, -1.178086, 1.848835, -1.606901, -0.689881, -1.485548, -0.396604, -0.630256, -0.016148, -0.569914, 0.029803, -0.444130, 1.975413, -0.428265, -0.836023, 0.614451, 1.597898, -0.153646, -0.392575, -0.371178, -0.781775, -0.327638, -1.684671, 0.623956, 0.449735, 0.809483, -1.333013, -1.194109, -0.457923, -0.262625, 0.170568, -0.575261, 0.531945, 0.621200, -1.347152, -1.707142, 1.850222, 0.793587, 0.046903, 0.254743, -0.243458, -1.104970, -0.124515, 1.517588, 0.520323, 0.504096, 0.464529, 1.435610, -0.901409, 0.082204, 0.269690, -2.488350, 0.983689, 2.245436, 1.562155, -0.611086, -0.915243, 0.741547, 0.733133, -0.652388, 0.156579, 0.538230, -1.072847, 0.751287, 0.137664, -1.842280, -0.748604, 0.774597, 0.224907, -0.422822, -0.004653, -0.644180, -0.597642, -0.403732, -0.211798, 1.645996, 0.501405, 0.034623, -0.313537, -0.821324, -1.109246, -0.346518, -1.183343, -0.477077, 1.565661, 2.162567, 0.463808, 0.584915, -2.479038, -0.063887, -1.344777, -0.524891, -0.443048, -0.756877, 0.548129, 0.551165, 1.415485, -0.476431, 1.599387, 0.112393, -0.604599, 0.238660, 0.342879, -0.347186, -0.811838, -0.407510, -1.161911, 0.332919, -0.143734, -0.003872, 0.331830, 1.909795, -0.461120, 1.125101, -1.160524, -0.037597, 0.021065, 1.190991, -1.867031, 0.925425, 0.230105, 1.687341, 0.911828, 0.603531, 0.733339, -0.410497, 0.691719, 1.662063, 1.328381, -1.544447, 1.470204, -1.736659, -0.725563, -0.701414, -1.063086, -0.526010, -0.033144, 0.656060, -0.941699, -1.359735, -0.808648, -0.792566, 1.688558, 1.727384, 0.639528, -0.434445, 2.609233, -1.220485, 0.760613, -0.945875, 0.891968, -0.163294, -1.261257, 0.467184, 2.259121, 1.180275, -0.049289, 0.161012, 1.137014, 0.841523, -0.345265, 1.652922, -0.083475, 0.443857, -1.080949, -0.259055, -1.338761, -1.331164, 0.116265, -0.316040, 0.037631, -1.354656, 0.116217, -1.596441, 0.507521, -1.084110, -0.822434, 0.934781, -1.503291, 0.193167, 0.148730, 0.053301, -0.273592, 0.242086, -0.105414, -0.067733, 1.200888, -1.026494, 0.946440, 1.340357, -1.607273, -1.335891, -1.691025, -0.498899, 0.138916, -0.025839, 1.236057, -1.061116, -0.029666, 0.213228, 0.652542, 0.224519, 0.965390, -1.976661, 0.302520, -0.569860, 0.034934, 1.485381, 0.853022, 0.543659, -0.429706, -1.382558, -0.678502, 1.548906, 0.590621, -0.588423, 0.277246, -0.109895, 0.531839, 1.036831, -1.907868, 0.398361, -0.013880, -0.619297, -1.700102, -0.260177, -0.638563, 1.833697, 2.153433, 0.597775, 1.823454, 0.758914, -0.704724, -1.094395, -2.033701, 1.016783, -0.847457, 1.450119, -0.051495, 0.282050, 0.481209, -0.074188, 0.320197, 0.060417, -1.101019, -0.853074, 0.831001, -0.867891, -0.808916, -0.553487, -0.305298, -1.977615, 0.700406, 1.495796, -1.270270, 0.274327, 0.235669, 1.443637, 0.530089, 0.732876, 0.456071, 0.934206, 1.806708, -1.179482, -0.987963, -0.204915, -0.890853, 0.401321, 0.194023, -0.725235, -1.076367, 0.122571, 0.584353, -2.119283, 0.784755, 0.215461, 0.896773, 1.264879, -0.379028, -1.793941, -0.031743, 0.453713, -0.357120, 0.445265, -1.947280, 1.359870, -0.340473, 1.061085, -0.864080, 0.299490, -1.367263, 0.172260, 0.229675, -0.305726, -1.734245, 2.508320, 1.056079, 0.412452, -0.107441, 0.276507, -1.801411, 1.311701, 1.064675, 0.499074, -1.454018, 0.029158, 2.093279, -0.459083, 0.082882, 0.984361, 0.286337, -0.414942, 0.170918, -0.901985, 0.471364, 1.500944, 1.241543, -0.849459, 1.275193, 1.591275, 1.182822, 2.080917, -0.049049, -2.429894, 0.586602, 0.040475, -1.208794, 0.629368, -0.096037, 0.673191, -1.795674, 1.672328, 1.348753, 1.782115, 0.196033, -0.460948, 2.572930, 1.168051, -0.940551, -0.191133, -0.872147, -0.960073, 0.379402, -1.676307, -0.233545, 1.432444, -0.985572, 2.047824, 1.958467, -0.765291, -0.104188, 0.317891, -0.529768, -1.303015, 0.985363, 0.076202, -1.467007, 0.472621, -0.443107, -0.203267, -0.894790, -0.432701, 0.778032, -0.014877, -0.351363, -0.899447, 0.871419, -0.655006, -0.335003, -0.860796, 1.174089, -0.123632, 0.230959, 0.681467, -0.615895, 1.942438, -0.086646, -0.770541, -0.955458, -1.032896, 1.415443, -1.145293, 0.653932, 0.594903, -0.094169, 0.383691, -0.727563, -2.290730, 1.054179, 1.383306, 0.859246, 0.905080, 0.974548, 0.373188, 0.079963, -0.808236, 0.233153, -0.089717, -0.241619, 0.456371, -0.361749, 1.074772, 1.292462, -0.654600, -1.401936, 0.134937, 0.385610, 0.034410, 0.999438, 1.056893, 1.428685, 0.079046, 0.746196, 0.916434, -0.443332, -2.537755, 0.990478, -0.992442, -0.757811, -0.554858, 0.599378, -0.238326, 1.822607, 1.696197, -0.246041, 0.850187, -0.526443, -0.625866, 0.908694, -0.706092, 0.420556, 0.072978, 1.682558, -0.326236, 2.142879, -1.027462, 0.207436, 0.415592, -2.821089, -1.211530, -1.119491, 1.176020, -0.545044, 0.527122, 1.075734, 0.052872, 1.039222, -0.959000, 0.132693, 0.038326, -0.742397, 0.148741, -0.293556, 0.636246, -0.122293, -0.585191, 2.393996, 0.907956, -1.273070, -0.862822, -0.945147, 0.874301, -2.142893, -0.157647, 0.664078, -0.116931, -0.924814, -1.690552, -0.489379, 0.525611, -2.022288, 0.620293, -1.005329, 0.602536, -0.618161, 0.773970, 1.153424, 0.767592, -1.490730, -0.441524, 0.378543, -0.714283, 1.795595, 1.543324, 1.474025, -0.453359, 0.606984, 0.004696, 0.441260, 0.116171, 0.520404, 0.839695, -1.738653, 0.538265, -0.051506, 0.225686, 0.823927, -0.898231, 0.277226, 0.132438, -1.014787, 0.013427, 2.744513, -1.379169, -0.159827, -1.622324, 0.312074, -0.801969, -0.132457, 1.199220, 1.762816, 2.614702, -1.251020, -0.292932, -0.650674, -0.366716, 2.432578, 0.034004, 0.364269, 0.638649, -0.951142, -1.007079, -3.639020, 3.559285, -0.202650, -0.070716, -0.588417, -0.689876, 1.259315, 0.279627, 1.322981, -0.703149, -0.320339, 0.591559, -0.248742, -0.603587, 1.447409, 0.854169, 1.176190, 0.462784, -0.163880, 1.225252, -0.188107, 0.474241, 0.722550, -1.386720, 1.805160, -0.728132, 0.744601, -0.859084, 2.809067, -1.140650, -0.280099, -1.631087, 0.347477, 0.517512, 0.981620, -1.607984, -0.064968, 0.381553, 0.119513, -0.012089, 0.725931, -0.740354, 0.990801, -0.786111, 0.942182, -0.930947, 1.047784, -0.359566, -2.470492, -0.535079, -1.882133, 1.415739, 0.755526, -0.785738, -0.422217, -2.157502, -0.075675, -1.724756, -0.214210, -0.316398, -0.448632, -2.191588, -0.337842, 0.635482, -0.869785, -0.289716, 0.008577, 0.685914, -1.767045, 0.130024, -0.699719, 0.703842, 0.266145, -0.954319, 0.998666, -0.091582, 0.173133, -0.994769, 0.673786, -1.245531, -0.436189, -0.709814, -1.404860, -1.015782, -0.020176, -2.400612, 0.095698, 0.624370, 0.329876, -1.679498, -1.694843, -0.194741, -0.363958, 0.320114, -0.474492, 1.137740, 0.791094, 0.697049, 0.721421, -1.592182, -1.344499, -0.021251, -0.570454, -0.670966, -2.020386, -1.248654, 0.660396, 0.445477, 0.421517, 0.023469, -0.303631, 0.826053, -0.583889, 2.743410, 0.896533, 0.252610, -2.119778, 2.325007, -0.394109, -0.319441, -0.154400, -0.493423, -0.245623, 0.044359, 0.674579, 0.609360, -0.289882, 0.199548, 0.082043, -0.402017, -1.526817, -0.597538, -0.454720, -0.293778, 0.607726, -0.936898, 0.293511, -0.213769, -0.439017, -0.158604, -0.962467, -0.980164, -0.100530, 0.457554, -0.137260, 0.943699, 0.436898, -0.428960, -0.784887, 0.945776, -0.051841, -0.714418, 1.290290, -0.147452, -0.588972, 0.699039, 0.053845, -0.516412, -0.414229, 0.298465, 1.241984, -0.644308, 0.237210, 0.408205, 0.790844, -0.459350, 0.922009, -0.214878, 0.720270, 0.281951, -2.078843, -0.187262, 0.484475, 0.206875, 0.408172, -0.964247, 0.770193, 1.189002, -0.875251, 1.355666, 1.606735, 0.390186, 1.775172, 1.465068, 0.050377, -0.071914, -1.097418, 0.318219, 1.179317, -0.444139, 0.402958, 0.663078, 0.466497, -1.897668, -1.576414, 0.502513, -0.882007, -0.160975, -0.042891, 1.064051, -0.627360, -0.434418, 0.095608, -0.153836, 0.218954, 0.128237, 1.235171, -0.335874, -1.734261, 0.911400, 0.350893, 0.809636, -1.171943, 0.464698, 1.175104, -1.900901, -0.025425, 0.406024, 1.093599, 0.741210, -1.074187, -0.113963, 0.054027, 0.499148, -1.934338, 0.359452, -0.330697, 0.084156, 0.548030, -1.615265, -0.516798, -0.110019, -1.258339, 0.225121, -0.029273, -0.352252, 0.038000, 2.922897, 0.860672, 0.023219, -0.371106, 1.357774, -0.929375, -0.181150, -1.519803, 0.301891, 0.209642, 0.875006, -1.522879, -1.262935, 0.885418, 0.229146, -1.094486, 1.068061, -0.284890, 0.226158, 0.591172, -0.165347, 0.466614, 0.181490, -2.115568, -0.387427, -0.865010, 1.320431, -0.496358, -0.479626, -1.233676, 0.855247, 0.364460, 1.018782, -0.329787, -1.532578, 0.806446, 0.881082, 1.401609, 1.368758, -0.063228, 0.144286, -0.853197, -1.161441, 0.393941, -0.456803, 0.331404, -1.935883, -0.576243, -0.374308, 0.500627, 1.482619, -0.650121, 0.418620, 0.829698, 0.381839, -0.416514, -0.318647, 0.401735, 0.857991, -0.925324, 0.072773, 0.432449, 2.136667, 0.591740, 0.000894, -0.989923, -0.964892, -1.002391, -0.979134, -0.312657, -1.947916, -0.433204, 0.678539, -1.548827, -0.221351, -1.182740, -0.520955, -0.108246, 0.676326, 0.642880, -0.579660, -1.172029, 0.180481, 0.145567, -0.553995, -0.123572, -1.377090, 1.649688, 1.172847, -1.009557, 1.696461, 1.489116, 0.464210, -0.386753, 0.798605, 2.423591, -1.067660, 0.428387, 1.063113, 0.068168, -1.043389, -0.152927, 1.994861, -1.278035, 0.070708, 0.546025, -0.937271, 0.077218, 0.343963, 0.646248, -1.974246, -1.533420, 0.914345, -0.263439, 0.945293, -2.819857, 0.282333, 0.325182, -0.794679, 0.574447, 0.810553, -1.356496, -1.064521, 0.038704, 0.162952, -0.293545, 0.869195, -0.049179, 1.175396, -0.663484, -0.228122, 0.460879, 1.506221, 0.619085, 0.035940, -2.057078, -0.364081, 0.341804, 0.412966, -0.827478, -1.010396, -1.733934, 0.004979, -0.055362, -0.882838, -1.690594, -0.648414, -0.823177, -1.247144, -1.409382, -0.489024, 2.222220, -1.552172, 0.138275, 0.313593, -0.085941, -1.136765, -2.510321, 0.187420, -0.367543, -1.117285, -0.870430, -2.042670, -0.820943, 0.707323, 0.499850, -0.081534, -0.323482, 1.315124, 0.636423, 1.616224, -0.166473, 0.458523, -1.577853, 2.771953, -0.939610, -0.500617, 1.134954, -0.596695, -0.884782, -2.324834, -1.523583, -0.558413, 0.308515, -0.656419, -1.630020, 0.121766, -0.321717, 0.738284, -0.150970, -0.319377, 1.694014, -0.369920, 0.957237, -0.774793, 0.683244, 0.723942, -0.984938, 0.869628, -0.407774, -0.527981, 1.419893, 0.916213, 0.359340, 0.281274, 0.532969, 1.358405, 1.112822, 1.247943, 0.736070, 0.448360, 0.064406, 1.131104, 1.018164, 0.021234, -1.008104, -0.101913, -0.098800, 0.404524, -0.653387, 0.919976, -1.151311, 0.192772, -0.900603, -0.435119, -0.195076, 1.178728, -2.195306, -1.699499, 0.689685, -0.070511, -1.645161, -0.353244, 0.920113, 0.268945, 0.010245, 0.158192, -0.397984, 0.372596, 1.122764, 0.398309, 0.355010, 0.314810, -0.362476, -0.001019, -1.118581, 2.261982, -0.829255, 1.313405, 0.419686, 0.975783, 0.077348, -0.680541, -0.646671, 1.215562, 0.298133, -0.032200, -0.822940, 1.872837, -0.091985, 1.590571, 2.189615, 0.671482, 0.959947, -0.227700, 0.121324, -0.777780, 1.105815, 1.191487, 0.564404, 1.170724, -0.678744, -0.174674, -0.791007, 0.160115, 0.617460, -1.771890, -1.014007, 0.108575, -0.094883, -0.041363, -0.698639, 1.431201, 0.055950, 0.522269, 0.782784, 0.329436, -0.081920, -0.749310, 0.721772, -0.919258, 0.228491, -0.094053, -0.151695, -1.453414, -0.111173, 0.193356, 1.298390, 1.302749, -2.400853, 0.089225, -1.948672, 0.695801, -1.082552, -1.382506, -1.364050, 1.763154, -1.346791, -2.205111, -0.487307, -0.439755, 1.296285, 1.151645, 1.061861, -0.393782, 0.699981, 0.851676, -1.661902, -1.748502, -1.270151, 0.031468, 0.688376, 0.934216, -0.642324, -0.074840, 0.002208, 0.528916, -0.477442, 1.049474, 0.637585, -0.163023, -0.965330, 0.201402, 0.884500, 1.568763, 0.682966, 1.875984, -0.008904, 0.628444, 0.096640, -1.850374, -0.765162, -1.577299, -0.594107, 0.613427, 1.222398, 0.258605, -1.217890, -0.656070, 1.179256, -0.225954, 0.805915, 0.146057, -1.989709, -0.370744, 0.803784, 1.112917, 0.684902, -0.102059, -1.119677, -0.630912, -1.063871, 0.331905, -0.199834, 0.135074, 0.223982, -0.562146, -0.459546, -0.936665, 0.336523, 2.065681, -0.994555, 0.233976, 0.044739, 0.311842, -1.869856, -0.004827, 0.181460, -1.088715, 0.775957, 0.390985, 1.644371, 0.967996, 0.634975, 0.130202, 1.647675, 0.310514, 0.016864, 0.719848, -0.460764, -0.883501, -0.720083, -1.272417, 1.220531, 0.353710, 0.078132, 2.441542, 0.122551, -1.573647, 0.147233, -0.003191, 2.267303, -0.303616, 2.241765, -1.264280, 0.491044, 0.454064, -1.194816, -0.097203, 0.561550, 0.402088, -0.519705, -0.739811, -1.837483, 0.281988, 0.527873, 0.965765, -0.110451, -0.093962, -1.316626, -0.144071, 0.366697, 0.085085, 0.463985, -1.153225, -0.807744, 0.842997, -0.155893, 0.462589, -1.204939, -0.110900, 1.867847, -1.724745, 1.217191, 0.777816, -0.665992, -0.330855, 0.103533, 1.251164, -0.899884, 0.357965, 0.641076, -0.691929, -0.427051, -0.489703, -0.173351, 0.256565, 0.358023, -0.332414, 1.024814, -1.391588, 0.254832, -0.975139, 0.621087, -0.052536, 1.105053, -0.202236, 0.178073, 0.686421, -0.238463, -0.742911, -0.916062, -0.115710, 1.721554, 1.318805, -1.935127, 0.393952, 0.371033, 0.081142, -1.242742, -0.843665, 0.526875, -0.376163, -2.277156, 0.175020, -1.010671, -0.854628, 0.479450, -1.374991, -0.960397, -0.845392, -0.423776, -0.104226, -0.938695, -1.074392, 0.681518, -0.929067, -0.325328, 0.222046, -1.217866, -1.036856, 0.134252, -0.982169, 1.443324, 0.202745, -0.980911, -1.893088, 0.058971, 1.033726, 0.915244, -0.321112, -0.526253, 2.219343, -1.490468, 0.076183, 1.302339, 0.846440, -0.347658, 1.005859, -0.027592, -0.907004, -0.753489, 0.641079, -0.223017, 0.093323, -0.393854, 0.817221, 0.271533, -0.801750, -1.095142, -0.979342, 0.813610, 1.313003, 0.146132, 1.132320, -0.089613, -0.008423, 1.188470, -0.229290, -0.660246, -1.580706, 0.005675, -0.197319, 0.592839, -0.825189, 0.299222, 0.369708, -0.550421, -0.333250, 0.923634, -0.330064, 0.660208, -0.346987, 0.420864, -0.966817, -0.290246, 0.553422, 1.117027, -0.705553, -0.998050, 0.749883, 0.896945, -0.415782, -0.023040, -0.970122, -1.378783, -0.553771, 0.500768, 0.055368, 0.575297, 0.845588, 3.163929, -0.206427, -0.645871, -1.290812, 0.951909, 0.230984, 0.640766, 0.687113, 1.130615, -0.729285, 0.064664, 1.905062, -0.534741, -0.084036, 0.064332, 0.512932, 0.559215, 0.435457, 0.112609, -2.229610, -0.363946, 2.104479, 0.269953, -1.365839, -0.194544, 0.442989, -0.916018, -1.102157, -0.432396, -1.845771, 0.250807, -1.205893, 1.555903, -0.248013, -0.390279, 0.566889, -0.430657, 0.203078, 0.051656, 0.049730, 0.752098, -0.953414, 0.888385, 0.754414, -0.226461, -1.796367, -0.436016, 1.887462, 0.086257, -2.540550, 0.460174, -0.230777, -0.238524, -0.077088, 1.097227, -0.358950, -0.852384, -0.108136, 0.089569, 0.197142, 0.191996, 0.417871, -1.934974, -0.252158, 0.012013, 1.815527, -0.797995, -0.422927, 0.163177, -0.678507, -1.223878, -0.574484, -1.077810, 0.982228, 0.942096, -1.082984, -0.315990, 0.379165, -0.675427, 0.929860, 0.985859, -1.661204, -0.533872, 0.667684, 0.482606, -0.323883, 0.934162, -1.721741, -1.165999, -0.657639, 1.436376, 2.145906, -1.250238, -0.419071, 1.441633, 1.048542, -0.410452, -0.233101, -0.196294, 0.801836, -0.776944, 0.769657, -0.408917, 0.312041, -0.815606, 1.295848, 0.283211, -0.371126, 1.828149, 0.844474, -0.477986, -0.250453, 0.339010, 0.171278, 1.247593, 0.457815, 0.861051, 0.496436, 2.031770, -1.045570, 0.690956, -0.209337, -0.130950, 0.677668, 0.726198, -0.310236, -0.052020, -0.571697, 1.354022, -0.476486, -0.123084, 1.464579, 1.342380, 1.010569, -0.075310, 0.516703, -0.255226, -0.846005, 0.250577, 0.678318, 1.250262, -0.581924, -0.837191, -0.052001, -1.609562, -0.487951, 0.220230, -0.952890, -0.828554, -1.013836, 0.519786, 1.554351, 0.063381, -0.387435, 1.151662, 0.418503, -0.473609, 0.341987, 0.095320, 0.373941, -1.509981, 0.544070, 0.867939, -0.895089, -1.476093, 0.348520, 0.876986, -0.460812, -0.455791, -0.608436, 1.968207, -0.685293, -1.311222, -0.019769, 0.027398, 0.163930, 0.004945, -0.595132, 0.627187, -1.747154, -0.340727, 1.042050, 0.548571, 0.203586, -0.531577, 0.916435, 0.674560, 0.264932, 0.795920, 0.835980, -2.293107, -0.121481, -0.199880, -1.424760, 0.269736, 0.224302, -1.276516, 0.270943, -0.044360, -0.046254, 0.296121, 1.339972, -0.001777, -2.171376, 0.843261, -1.511411, 0.211905, -0.704402, 1.254118, 1.085893, 0.096693, 0.255339, -2.751762, -0.609475, -1.233330, 0.898609, -0.404407, 0.705861, -1.037741, -1.661959, -0.173625, -0.108401, -0.145233, 0.896454, 2.550848, 0.224521, 0.608556, 0.149591, 0.311065, -0.383015, -0.437713, 0.904401, 1.137051, -0.566618, 0.905288, -2.012599, 0.773460, -1.388191, 0.036844, -0.908313, 0.827142, -0.564213, -2.279496, -0.523770, 0.406829, 1.196736, -1.000412, -0.123413, -1.063237, 0.118590, -1.730392, -0.800990, -0.295268, -1.539280, 1.074800, 0.990241, 0.938344, 0.008648, 0.270552, 1.504636, -1.992391, 0.840412, 0.114271, -0.818257, 1.016207, -0.065419, 0.719255, -0.422184, 0.967049, -1.198595, 1.379827, 0.209556, 0.899116, -0.459669, 0.305595, 0.263592, -1.081652, 1.019637, 1.788260, -1.029073, -0.774219, 0.248703, -0.282321, 1.095758, 0.188455, 1.324632, 0.014700, -1.270554, 0.446974, 1.079532, -0.687912, 0.200267, -0.074585, -0.090963, -1.538364, 1.634101, -0.862753, -1.604892, -1.786448, -0.668017, 1.077949, -0.742842, -0.908906, 0.001696, -0.204625, 0.047484, -0.755280, -0.414966, -0.126783, 0.424308, 1.520521, -1.531182, -0.197597, 1.911759, 0.258339, 0.073342, 0.252828, 0.589639, -0.292894, -0.320263, -0.142690, -0.819674, 0.607538, 0.818658, -0.848856, -0.014286, 1.060685, 0.765401, -0.151427, -0.697303, 0.359113, -0.261557, -0.120428, -1.176533, 1.626248, 0.878618, 0.634200, -0.831657, 0.003904, -0.714046, 0.723078, -0.382527, 0.981350, 1.594958, -1.187487, 0.275221, -0.455454, -2.006084, -1.692158, 0.452176, 2.030479, -0.253968, -1.625709, -0.359816, 0.296818, -0.308585, -1.835828, 0.039642, 0.548832, -1.542726, 1.216405, -0.419782, 0.793618, 0.589789, 1.527137, -0.610310, 1.612953, 1.678237, 0.769253, 0.624159, -1.450371, -0.467088, -1.247703, -1.614081, -1.038799, -1.450659, -0.579249, 0.505138, -1.520023, 0.782548, 1.715204, -0.914999, -1.236802, 2.692922, -2.258207, -1.305801, 0.302295, -0.179105, 1.138938, -0.408856, 1.093325, -0.381717, 0.724882, -0.127229, 0.199732, 1.090881, -0.243553, 1.390858, 0.480334, -0.428308, -0.233091, 1.193697, -0.832480, -0.978503, -0.105364, -2.142534, -0.211938, -0.646781, 0.112030, -0.627763, 0.012003, 2.016760, 0.063875, 0.805672, -0.588321, -0.008961, -0.461640, 0.606676, -0.622125, 1.080776, -0.714583, 0.295806, 0.062171, 0.301859, -0.488713, 0.446270, -0.703305, -0.446033, -0.064286, 1.478045, -0.590927, 1.806130, 1.675596, -1.228243, -0.039367, 1.441270, 0.725322, -0.579056, -0.786712, 1.662601, -1.004281, -0.059023, 1.017297, 2.551392, -0.541552, 0.133698, 0.470523, -0.950493, 0.925239, -0.842815, -1.016801, 0.917952, 0.244602, -1.583197, 0.068994, 1.085170, 1.278637, -0.848786, -0.409601, -1.183971, -0.127387, -0.332900, -0.955443, 0.240069, -0.230033, 1.265599, -0.921187, -1.160511, -0.643802, 0.492340, -0.178216, -0.459460, 1.385097, 0.345105, 1.424889, 0.337604, -0.873427, -1.799328, 0.994206, -0.107136, -0.390023, -0.992338, -0.043299, -1.259286, -1.526205, -1.148374, -0.462512, 0.291424, -0.344562, 1.166278, 0.705970, 0.551753, 1.148313, 0.748673, -0.193060, -0.728595, -0.079233, -0.073007, 0.315085, -1.327685, 0.096009, 1.024534, 1.037750, -0.643653, 1.089484, 0.332034, -1.921824, 0.825178, 0.281066, 0.044033, -1.029022, -0.775630, 0.812846, 0.241263, 0.438447, -1.523057, -0.390679, -1.181283, 1.435409, -0.463888, 0.820352, 0.496726, -1.506960, 0.976491, -0.026568, 0.534467, 1.358570, 1.132596, 0.431385, -0.781128, -0.497669, -0.844447, -0.432680, -1.227080, -1.693156, 1.067945, -0.235915, 0.869937, 1.374782, -1.931202, 0.041417, 0.004889, 0.596894, 0.718105, -1.105204, -1.226033, -1.544991, 1.755095, 1.399246, -0.107737, 0.251172, -1.247777, -1.792983, -2.513066, -0.981324, -2.235411, -1.497458, -0.373662, -0.816140, -0.924858, -0.401730, -0.828722, 0.251567, -1.579836, -0.954801, 1.205989, -0.674743, 2.553820, 1.274381, 2.445274, 0.169583, -0.749331, -0.361765, -2.167931, 0.116224, -1.612522, 1.437178, 0.518369, 0.925946, 1.244001, -0.287581, 1.533695, -1.254095, 0.607090, -1.852139, 0.968363, -1.566348, 0.753822, -0.212007, 1.061535, 1.432382, -0.655633, -0.512329, 0.455304, 0.808479, 0.319832, 0.550245, -1.810582, -0.038852, -0.242902, -0.396533, -0.311935, 0.871135, 1.531660, -1.758956, 0.768577, 0.947164, -0.925342, 0.392665, -0.054169, -1.051204, 0.540079, -1.371150, -0.312267, 1.528846, -1.971221, -1.083212, 0.125064, -2.283222, 0.387995, -1.171463, -0.507675, 0.789502, 0.908121, 1.597176, -0.549736, 0.645642, -1.586370, -1.211177, -0.505284, -0.197607, 1.748958, 0.618762, -1.501589, -0.506183, -1.400233, 1.660637, -1.228425, 0.114984, 1.479920, 0.515851, -0.750474, -1.709443, 0.932454, 1.151439, 2.728647, -0.591449, 0.780029, 0.807998, 1.180349, 0.362442, -1.069364, 1.860791, -0.210566, 0.137039, 0.688006, -0.826477, 0.856380, 0.035750, 0.318166, 0.076763, -2.678424, -1.146179, -0.484830, 1.078147, -0.732110, -0.876544, 0.725752, -0.229854, -0.178575, -0.401983, 0.593291, -1.134600, 0.299971, -0.080647, -1.355316, 0.075274, 0.176714, 0.041601, 0.547252, 2.035405, -1.610458, 3.304648, -0.688604, 1.342285, 0.676487, 0.635658, 1.234083, -2.906488, -0.936661, 0.646795, 0.229119, -0.338055, 1.679101, -0.275683, 1.685993, 0.289674, -0.702806, -1.067165, -0.438921, -0.167604, -0.386343, 1.515304, -0.890131, -1.560939, -0.888819, 0.180830, 0.739056, 0.385542, 0.054245, -0.247060, 0.904239, 0.914448, -0.132387, 0.240149, -0.116692, -1.323525, -1.292280, -1.146213, -0.576850, -1.234097, 0.729883, 0.931078, -1.232934, 0.291481, -0.579669, 0.584854, 0.001575, 0.165488, 0.735198, -1.034704, 2.057282, -0.356086, -0.276032, 0.835456, 0.426434, 0.864435, -0.439887, -1.931927, 0.698827, 0.612898, 0.273311, 0.222419, -0.215456, -0.390212, -0.039740, 0.264148, -1.326302, -1.669482, -0.109314, 0.275399, -1.197135, -0.737204, -0.667844, -1.696526, -1.024282, -0.838153, -0.140210, 0.257477, 0.357491, -0.774643, 0.262323, 0.840553, -0.133754, 0.006898, 0.310085, -1.470412, 0.740721, -0.497280, -0.205097, 0.936296, 0.563652, -2.475411, -0.098824, 0.302977, 0.544696, -0.702273, -0.224016, 1.488240, 0.340930, 0.770135, -0.559111, -0.799438, 0.253213, -0.483138, 0.575897, -1.438512, -1.167161, 1.028894, -0.317772, 0.367781, -0.175546, 1.144240, -0.947621, -1.261444, -0.037873, 0.405451, -1.824173, -1.013213, -1.812381, 2.083658, 0.146819, -0.548985, -0.849855, 0.075940, -0.252510, 0.799214, -0.152363, 0.591349, 1.570370, -0.816732, -0.612182, -0.773485, -1.673563, -1.008755, -1.378837, -1.820998, 0.599782, 0.855464, 1.294876, 1.170179, -0.721917, 0.473666, 0.335093, 1.213475, -0.514751, -0.312647, 0.667063, -0.955969, -0.332286, 2.051668, 0.560123, -0.872217, -1.153726, 1.150429, 0.583915, -1.059292, 0.155215, 0.066745, 1.824363, 1.725572, 0.351913, -0.255321, 0.213747, 0.544924, 1.070085, 0.967913, 1.209858, 1.285793, 0.165512, -1.205263, 1.027338, 1.200385, -0.099305, -0.359821, 0.958892, -1.164842, 2.059499, -0.293423, -1.681142, 1.485179, 1.167770, 0.259798, -0.490254, -0.173270, 1.494035, 0.865552, -1.037125, -2.299628, 0.857576, 0.664129, 0.706929, -1.808215, -0.032979, -0.025548, 0.436533, 1.800980, -0.019184, 0.273754, -1.771974, 0.192992, -1.912216, 0.678894, 0.482888, 1.946389, -0.801648, 0.652475, -0.120300, -0.613245, -0.298331, -0.278718, 0.319872, -0.538019, 0.526453, 0.355085, 1.615025, 0.010841, -0.433678, 0.074101, -0.372801, -0.996397, -0.628399, -1.600311, -0.156809, -0.296482, -0.072060, -0.922985, -1.350325, 1.570328, 0.453621, 0.249506, 0.517055, 0.839752, 1.212247, -0.355969, -0.834899, -2.256092, 1.508950, 0.958231, 0.627800, -1.119957, -0.445233, -1.314693, -1.156792, 1.222933, 0.056463, 1.139011, 1.133834, -1.954986, 0.911514, 0.284220, 0.146273, 1.283033, -0.541273, -0.206320, -1.315816, -0.724174, -1.779215, -0.726110, 0.751588, -1.242158, -0.935277, 1.231239, 1.132305, -0.978927, -0.800345, 0.592947, -0.771981, -0.289251, -1.884033, -2.330992, -0.975545, 0.685898, -0.646062, -0.795275, -0.383030, 0.000804, -0.148897, -0.712477, 0.581027, 1.094729, 2.210095, 0.216186, 1.224661, -1.028130, -1.278383, 0.169229, 0.292108, 0.877600, -1.117363, 1.673167, 0.023445, -0.452841, -2.543711, 0.470517, -0.231038, -0.193303, 0.648278, -0.477477, 0.331214, 0.755570, 0.045610, 0.533408, 0.660642, 0.596556, -0.054480, 2.405887, -1.561524, 0.735585, -0.010487, -0.642784, -0.511849, 0.872943, -1.049492, 0.366129, -0.304031, 0.400193, -0.258380, -0.672031, 1.229638, -1.581198, -2.069448, 0.399057, -0.778449, -0.407193, 0.510858, 0.525076, 1.312252, 0.735877, 0.790376, -0.319886, -0.118436, 1.215148, -0.493103, 0.478139, -1.259715, 0.936273, 0.765667, -0.930100, 1.902143, 0.371726, -1.246367, -1.849395, 1.108525, 0.478887, -0.037993, 0.073749, -1.424276, -0.618281, -0.189405, 2.227087, 0.792688, 1.111051, 0.458507, 1.006177, -0.060704, 0.029167, 0.476807, -0.072299, -0.594517, 1.224957, 1.403397, -0.681391, -0.750033, 0.641810, 1.321338, 2.481421, -0.326549, 1.089872, 0.274751, -0.140629, 0.240780, 0.470571, -0.660207, -0.972413, 0.572010, 0.540627, -0.099027, -0.424190, 0.470737, 0.958158, -2.573777, 0.944992, 1.288011, -1.236674, 0.248440, -0.276320, -0.920838, 0.925885, 0.723091, -1.035724, 1.069552, -0.325077, -0.801796, -1.388701, 0.290580, 1.181303, -0.750910, -1.579917, -0.249554, -1.615275, -0.544449, -0.022362, -0.969041, -0.384764, -0.426919, -0.122412, -0.187072, 0.354822, 0.413978, 1.759249, -0.604203, -0.529838, 1.174600, -0.167540, -0.893276, 0.745195, -0.985655, 0.837010, 0.623226, -1.297125, 0.809458, -1.255280, 0.242493, -0.228881, -1.250483, -0.658232, 0.780472, 0.321582, -0.379518, -0.160174, -0.176678, -0.623748, 1.062364, -1.170764, -0.499050, 0.613400, -1.617004, 1.092308, -0.682719, 1.044111, -0.523858, 1.079999, 1.125256, 0.782317, -0.773193, -0.615507, -1.905080, -0.372791, 0.266970, -0.232541, 0.421497, 1.106063, 2.054860, 1.944606, 0.449349, -1.150533, 0.466411, -0.369180, -1.936198, 0.353288, 0.343445, -0.206814, 0.144677, -0.779067, 0.139409, 0.726236, 0.383863, -0.166169, 0.920671, 0.842909, -0.940188, -0.708426, 1.132965, -0.567276, -1.776396, 1.000999, 0.324230, -0.286391, -0.709427, -0.506209, 2.008922, -1.408515, 1.697712, 1.427112, -0.764681, 0.503639, -0.857550, 0.137164, -0.393988, -0.645424, -0.466057, -0.263195, 0.188539, 1.348784, 1.076512, 1.817029, 0.657550, 1.261102, 0.609959, -0.740831, 0.196078, -0.743779, -1.184573, 0.650455, -1.960792, 1.084642, -0.279466, 0.145483, -0.997303, 0.080009, 0.499684, 0.062574, 0.405807, 1.946896, -0.646038, 0.874223, -0.946148, 0.076162, 0.187738, -0.289608, 0.254565, 1.167982, -0.126705, -0.758044, -2.476125, 0.623089, 1.213360, -1.738868, 0.146560, 1.000399, 0.486940, 1.993934, 1.306430, -1.001753, 0.895397, -0.800027, -0.243823, -0.517256, -0.703311, -0.749954, -1.189894, -0.313332, -0.249444, -3.232671, 0.300845, -0.092155, 0.460650, 1.927405, 0.187557, 0.940361, 0.523489, -0.762684, -0.534927, 0.320713, -0.626661, -0.532747, 0.805675, 0.527081, -0.502156, -0.318472, 0.107356, -0.880202, 0.561103, 0.118711, -0.116539, 1.601423, 0.526576, 0.658094, -1.072707, -0.604475, -0.067742, 0.201239, 1.058724, 1.070100, 1.358473, -1.740627, -0.509498, 0.196283, -0.296208, -0.237573, -2.243055, 0.380953, 0.431689, -0.335545, -0.112867, -0.422986, 0.450012, 1.100065, 0.163314, -0.653564, 0.590977, 0.019812, -0.782144, -1.281447, -0.949235, -1.068316, -0.059770, 0.111876, 0.622994, 1.885855, -1.205939, -0.143202, -0.881391, 1.709445, -1.305343, 1.705924, 0.260919, -0.212098, 0.328828, -1.038350, -0.926027, 0.663006, -0.322986, 1.267319, 0.574209, 1.779133, 0.040785, 0.587367, -1.047119, 0.063418, -1.164881, -2.262731, -0.172727, -0.516903, 1.334643, -0.228500, -0.055950, 1.088091, -0.340928, -0.416462, 0.435197, 1.259548, 1.501645, 0.076284, 1.566954, 2.186026, -0.456482, -0.215436, 0.674405, -0.181536, -0.973145, -1.401503, -1.558267, 0.219778, -0.721509, -0.837303, 0.135807, -0.316957, -1.438389, -0.485605, 2.274061, 0.057356, 0.771073, -0.524855, 0.976812, -0.721963, -0.574090, -0.139908, -0.211448, 0.897787, -2.094179, -2.007833, -0.469451, 0.262724, -0.286139, -0.211648, 1.842703, -1.731299, -0.696976, -0.563637, 1.106420, 0.191047, 0.030182, 0.116623, -0.330102, -0.949236, -1.734516, 1.071167, 0.761497, 0.946811, 0.344153, -0.932545, 0.474702, 1.261517, 0.438154, -0.312641, 2.218739, -0.636284, 0.177427, -0.891629, 0.073059, 0.432573, 1.519030, -1.342308, -1.574174, -0.776080, -0.044776, -1.306273, -2.023080, 0.622893, -0.619993, -1.069019, -0.668112, 0.062935, -0.125840, -0.766712, -1.815272, -1.599102, -1.021402, -0.171320, -0.847002, 0.602906, -1.240145, -0.651905, -1.394652, 0.188672, -1.536856, -0.607298, -0.213942, 0.415434, -0.899680, -0.679669, 0.442699, -1.006434, -0.478302, 0.370300, -0.711353, 0.037286, 0.007108, -0.066142, -0.686171, -0.503276, -0.859378, -1.450166, -2.110347, 0.560666, 1.816826, -1.325563, 0.794742, 0.449122, -0.166732, 1.159933, 0.922354, -1.629065, -1.071650, -0.473958, -0.462836, 0.771678, 1.811227, 0.667743, -0.405866, -0.446916, 0.091320, 0.307196, 0.775608, -0.596851, -0.285515, -0.122423, 0.254493, -1.624426, -1.347769, 0.013939, 0.922401, -0.519619, -0.198171, -0.989232, -1.601648, -0.030778, 0.627954, -1.264892, -0.876560, -0.416890, 0.950213, 0.262130, 0.729413, -1.816510, 0.768735, -0.922000, -0.625709, 0.346602, -1.325937, 1.182077, 0.093946, 0.289798, 0.108753, -0.873945, 0.889817, 0.512309, -0.940536, 1.293848, 0.142711, -1.416883, -0.313962, 0.060443, -1.465414, 0.889088, 0.116119, 0.671001, -0.412079, -0.284037, 0.020374, 0.502909, -1.214663, 0.263673, 0.778859, 1.570789, 0.919372, 0.109478, -1.041236, -1.134445, 0.463988, -0.933648, -0.902000, -0.674116, -0.165772, -0.136524, 0.030182, 0.512634, -1.308213, 0.408942, 0.839246, 0.495097, 0.462561, 0.192995, -1.624213, -0.618026, 1.414266, -0.878879, -0.090491, 0.492939, 0.628859, 0.525880, -0.039021, 0.617737, -1.267245, 0.956660, -1.720725, 0.385655, 1.282341, 0.084000, -0.150844, 0.866546, -1.516527, 0.851712, 0.471689, 2.531880, 0.542086, 0.100295, 1.398098, -1.109739, 0.617787, -0.284909, -1.231408, 0.406820, -1.410199, 0.329036, 0.944494, 1.259406, -1.009261, 1.611839, -0.339957, 1.574730, -1.418461, 0.378514, 1.829653, -0.790625, 0.074517, 0.881604, 1.710198, -1.543031, -0.617113, -0.434464, -1.234593, -1.610144, -0.568606, 0.755789, 1.969215, 1.434471, 0.121619, 1.816659, -1.294432, -1.519971, -0.125081, 0.103685, -0.099768, 0.272657, 0.046338, 0.803169, 1.364452, 0.089515, 0.636846, -0.435049, -1.817132, 1.656341, -1.197036, 0.520743, -1.056417, 0.150290, 1.026894, 0.536498, 0.663240, -0.645223, 1.216482, 2.042433, 0.856201, -0.703970, -1.208082, -0.091632, -0.108666, -0.098345, 1.509354, -0.230640, -1.448274, -1.886524, 0.007456, 2.477842, 0.707337, -2.054148, -0.091582, 0.153579, -0.460725, 0.198817, 0.987613, -1.813821, -1.239454, 0.204163, 0.322734, -1.487123, -0.019094, 1.265777, -0.271168, -0.951826, -0.662571, 0.189142, -0.743110, -0.982357, -0.619117, 0.957933, 2.201865, -0.159187, 1.589898, -1.510805, 0.223414, 0.481670, 1.486963, -0.445288, -0.545946, 0.282803, 2.658768, 0.453831, -0.351686, 0.658675, -1.217944, -0.229624, 1.645123, 0.558230, 1.028391, 0.734674, -0.596569, 1.089123, -0.629326, 0.777236, 2.115886, -1.612976, -0.850611, 1.502406, 1.180521, -0.393392, -0.002920, -0.450433, 0.914858, -0.239300, 1.055565, 0.939469, 2.186308, 1.500550, 0.776769, -1.219393, -0.181543, -0.077796, -0.296048, -1.050082, -1.164428, -1.626741, -2.193989, 0.945202, 0.239424, 0.338808, 2.003991, 0.485541, -0.476657, 0.608667, -1.516347}, + { 0.971813, -0.920174, 1.846539, 0.629848, 0.343860, -0.418023, 0.196509, -1.013686, -1.319651, -1.013042, -1.224583, -1.107630, 0.744378, -0.328667, -1.674248, 1.161416, 0.972131, -0.569480, 0.743796, 0.751730, 0.022005, -0.893676, 0.611287, -0.259918, -1.227763, 1.042601, 0.325731, -0.480853, 1.523066, -0.348158, -0.975072, -0.611629, 1.136848, 0.474921, 1.187678, 1.289511, 1.501528, -2.782071, 0.803552, -1.408013, 0.730737, 1.321385, 0.382434, -0.342034, -0.436544, -0.560894, -1.522092, -0.041509, -0.969737, 0.041066, 0.337097, -0.748090, -1.187868, -0.786850, -1.258359, 0.060814, 0.773434, 0.433587, 0.896879, -0.001600, -0.512817, 0.910728, -1.512975, -1.102233, -0.035423, -0.467501, -1.068874, -0.216873, 0.368641, -1.982073, -0.058476, 1.155416, 0.506792, -1.439055, -1.501287, -1.194824, -1.634018, -0.485168, -0.565400, 0.421402, -0.066977, -0.534743, 1.346970, 1.597382, -0.959063, -0.213779, 0.906425, -1.332859, 1.143031, -0.034087, 1.032573, 0.942437, 0.304260, 0.028277, -1.107901, -0.795919, 0.300141, -0.319785, 2.304236, 0.966513, 0.418149, -0.588981, -0.032505, 0.715881, -1.054713, 0.112103, 0.450980, -0.472431, -0.897862, 1.297535, 0.189193, 1.541018, 1.662518, -2.520785, -0.395973, -0.608422, 0.239942, -1.757357, 0.061939, 0.614363, 0.684749, 0.002828, 0.408846, 0.002571, 0.270919, -0.584605, 0.827381, 0.641225, 1.003051, 0.048399, 1.097997, -0.207120, 0.925233, -0.347599, -1.346167, 0.254696, -0.771559, 0.019891, 0.077092, -0.390164, -0.542696, -2.276683, -0.165124, -0.591951, -0.053938, -2.427174, 0.549246, -1.046526, 1.143240, -2.201089, 0.249985, -0.325234, -0.369794, -2.147344, 0.030667, -2.855161, 0.499867, 0.601390, -0.039920, 0.755047, -0.754678, -0.390014, 1.947499, 0.904867, 0.798818, -0.309321, 0.005252, -0.670809, -0.075017, -0.018729, -0.335959, -0.566311, 2.013777, 1.496688, -1.387787, 1.153324, 0.106980, -0.082899, 0.587804, -1.155205, 1.085579, 0.369825, 0.417089, 1.021712, -0.669302, -0.758896, 0.210923, 0.253470, -0.212504, 1.052913, -0.834339, -0.955122, -1.501965, 0.044251, -0.089116, 0.154636, -0.468314, 1.942479, 1.130711, 1.554711, 0.897517, 0.133241, 0.767225, -0.541034, 0.952236, -0.127024, -1.076128, -1.306692, 0.139515, 1.760366, -1.612195, 1.024336, 1.058249, -0.530043, -0.659581, -0.332121, -1.381470, 0.717139, -1.315567, 0.023098, -0.430636, -0.297089, 0.113438, -0.623983, -0.043908, -0.347067, 0.769097, 0.578816, -0.549213, -1.051440, 0.863544, -0.719289, 0.040030, -0.225305, 0.455594, -0.848245, -0.083824, 1.066442, -0.809301, -0.935748, -0.506573, -0.691330, 0.452970, -1.568340, 0.095337, 1.097788, 0.484391, -0.076441, 0.918378, -1.009492, -0.861432, 0.487705, -0.307148, 0.776054, 0.300242, 1.140218, 0.645286, 0.916950, -1.916275, -0.076287, 1.318896, 0.290422, -0.894996, -1.127544, -0.964298, 0.413565, 0.533709, -0.028855, 1.717943, -1.305980, 0.366002, 1.339150, -0.114969, 0.703352, 1.129595, 0.358759, -0.974376, 0.655035, 0.971618, 0.478921, 0.870140, -0.688404, 1.579125, -0.486345, 1.295197, 0.246409, 1.380043, 0.396221, -0.566857, -0.554473, -1.665938, -0.365643, -1.619207, -0.176565, 0.014242, -0.294738, 0.436808, -0.685948, -1.435917, 0.806713, 1.312199, 0.904785, -0.466605, 1.105168, -0.663831, -2.719723, 1.384892, 0.507204, -0.623716, -0.521850, -1.347116, -0.380209, -0.355050, -0.144522, -1.331080, 0.827650, -0.997355, -2.578861, -0.311889, -0.630814, -0.149935, -1.488386, 2.417150, 0.009275, 1.545489, 1.421100, -0.299038, -0.857799, -1.470489, 0.631914, 0.356574, 1.123001, 0.661686, -1.220224, -1.751932, -0.033867, -0.479748, -1.062558, -0.161204, 0.237046, -1.089888, 1.117793, -0.897274, 1.024702, 0.481106, 0.821814, 1.698008, 0.284859, -2.886798, -0.601113, 0.846343, 0.115336, 0.986459, 0.950422, 0.894066, -0.251326, 0.367570, -0.491369, 0.984153, 1.201833, 0.134712, 0.298497, 0.370454, -0.542984, 0.844034, 0.603911, -0.817840, -1.607979, -0.636919, -1.321260, -0.442724, 0.847497, -0.139469, 0.853183, 0.863377, -0.355089, 0.198343, -1.283811, -0.650588, 0.682261, 0.190765, 0.987441, -0.583438, -0.255676, -0.655559, 0.241466, -0.201111, 0.244188, 0.388859, 0.948580, -1.755311, 1.834091, -1.680032, -0.727987, 2.572913, 0.719841, -0.186008, 1.287947, -0.299030, 1.760421, -2.423195, 0.026613, -1.619953, -0.077301, 0.746800, -1.073566, -0.750002, 1.798259, 0.717453, 1.662824, -1.126805, 0.218205, 0.619591, -1.511202, -0.942170, -1.394857, -1.411789, 0.676113, 0.366643, -1.712855, 0.297478, -0.000230, 1.145733, -0.716335, -1.835205, 0.089205, 0.008892, -1.566904, -0.402140, -1.292695, 0.187779, 1.725797, 1.543179, -0.920616, 0.719518, -0.668737, -1.601129, -0.767975, -0.341658, -0.746770, -0.970000, -1.065336, 0.665581, 0.098309, 1.094631, 0.406114, 0.602856, -0.335420, 0.386918, 0.199210, 1.615882, -2.408951, -0.380376, -0.069536, 1.405371, -2.024847, -0.386590, -1.046656, 2.673621, 0.920108, 0.471663, -0.281005, -0.793354, 2.093169, -1.379986, -0.513385, -0.386928, 0.968884, -0.301650, 1.508372, -0.148648, -1.161270, -1.733997, 0.974015, -0.314582, 1.800069, -2.159910, 0.203225, -0.343901, -0.665765, 1.140197, 0.010250, 1.164854, -0.226451, -1.194389, -0.963590, 0.920885, 0.193840, -0.783899, -1.798317, -0.707328, -1.207207, -0.844507, 0.697535, 0.691267, -0.939020, 0.059549, 0.283004, -0.443326, -0.055189, -0.593534, 0.892826, 0.406508, 1.316018, -1.844848, 0.148372, -0.559569, -0.364895, -0.469858, -0.941906, -0.099158, 0.831627, 1.189852, -0.976663, 2.835562, -0.127476, -0.548714, -0.079719, -1.930110, -0.811902, -1.033335, 1.896706, 0.109211, 0.505187, 0.607807, -0.817037, -0.670715, 0.315486, 0.302596, 1.796894, 0.568534, 1.437424, 1.223598, -0.910170, -0.350935, -0.905451, 0.953954, -0.856089, -1.593141, -0.191105, 0.431107, 0.084841, -0.032016, 0.900846, -1.074397, -0.139936, -0.107714, 0.090016, -0.099433, 0.374506, -1.302671, -1.236478, 1.501433, 0.300742, 1.589936, 1.893235, -0.277069, 1.365385, -0.004377, -0.004247, -0.177179, 0.170261, 0.937936, 0.795878, -1.595454, 0.439143, 0.028638, -0.471835, 1.336467, -0.014874, 1.259495, 0.407983, 1.405498, 1.327009, -0.822830, -0.488193, 0.250268, 0.253280, 1.340945, -0.205361, 1.224654, 1.227148, 0.327843, 1.307411, -0.952049, 0.914469, 0.606254, 1.096813, -0.813158, 0.281851, 0.152936, 0.846013, 0.857708, -0.410271, 0.060223, 0.434891, -0.489143, 0.125288, 0.353961, -0.003488, -0.028117, -1.571742, -1.519079, 0.193470, 0.122562, -0.700344, -1.355346, 0.237293, -0.443501, 0.662822, -1.198535, -1.069011, 0.487202, 2.241471, -1.375819, -0.934614, -1.675911, -1.713843, 0.974879, -1.738360, 1.601777, -0.105966, -0.377980, -0.469952, 0.562329, -0.558756, -0.186445, -0.333349, -0.998854, -0.083348, -0.449209, 0.923690, 0.268688, -0.611534, 1.254464, 1.308631, 1.126693, -0.257512, 1.420009, -1.121793, 0.787145, 0.424889, -1.497740, -0.636727, -2.255743, 1.646417, -0.712464, 1.075660, 0.396806, -0.584058, -2.412119, 0.711252, 0.381605, -0.842922, 0.376938, 0.229876, -0.046180, 0.289171, 0.827664, 0.194347, -0.001255, -1.991791, -1.303784, -0.558858, 0.473175, 0.886602, 2.228929, -0.535967, -1.766033, 0.005980, -1.272594, 0.579264, 1.129129, -1.179870, -0.653437, -0.328890, -0.285420, -0.354478, 0.977197, 0.113783, 0.226503, -0.665439, -1.370713, -0.239997, 1.174984, -1.134012, -0.581365, 0.539099, 1.524967, -1.312458, -0.153321, 0.217497, 0.602811, -0.876007, -0.234869, 2.577600, 0.343239, -0.805436, 0.073816, 0.000318, -0.646728, -1.523271, 0.743044, 0.594229, -0.750330, 0.285405, 0.464418, -0.082225, 0.250548, 0.900854, -1.744746, -1.234793, -0.294216, 1.651288, 1.633520, 0.015482, 0.052410, 0.653854, 0.936157, 0.087540, 0.562775, 1.357288, -0.031579, 0.468495, 0.647439, 1.540446, 1.867660, 1.021137, -1.439585, -1.180619, 0.122432, -0.428441, -1.893297, -0.794879, 0.832536, -0.178663, -0.522226, 0.608327, -0.591676, -0.717490, 0.869065, 0.878123, 0.038759, 1.013347, 1.233262, 1.121326, -1.818453, -0.855657, -0.875917, -0.764359, 0.498708, -1.105016, 0.738071, 2.519559, 0.910957, -0.208716, -0.085094, 1.695150, 0.955911, -0.671634, -1.259013, 1.454198, -1.542137, -0.478988, 0.051290, -0.582529, -0.847671, 0.247783, -0.497812, -0.151810, -0.558376, -0.033536, 0.203148, -0.802974, -1.374078, 0.731130, 0.527886, 0.030048, 3.744859, 0.087207, -0.158493, 1.009677, 0.258204, 0.125366, -0.337034, 0.054513, 0.407245, -0.250819, 0.915709, -0.488188, 0.056892, -1.411888, -0.923479, 0.080322, -0.991549, -0.298401, -0.490447, 1.223770, 0.299586, 0.162116, -0.898755, 1.599583, 2.296298, 0.045946, -1.799554, -0.709610, 1.954485, -0.008311, 1.066191, -0.150060, -0.774191, 0.300882, 0.059664, -1.699009, 1.096290, 0.010271, -0.034781, -0.171092, 1.085680, 0.268309, -0.962462, 0.105220, -0.044777, -0.248024, 0.102901, -0.942928, 0.339519, 1.140226, 0.953310, -0.114524, -0.368990, -0.772944, -0.576804, 2.357136, -0.634191, -0.265064, 0.461750, 2.215632, 0.304108, -1.139323, 0.424672, -0.601927, -0.594569, 1.377077, 0.124884, -0.180933, 0.437936, -0.882867, -0.621552, -0.073142, 0.430129, -0.704793, 0.471346, 1.557045, 0.843472, -0.024710, 0.415605, 0.898428, 0.147821, -0.144825, 0.367620, -0.142628, 1.009105, 0.028088, -0.682879, -0.755734, 0.216086, 0.711905, 1.269009, 1.052855, -0.954055, -1.217704, -0.076662, -0.041843, 0.510446, -0.947420, -0.283176, 0.226060, -0.466057, -0.061122, 0.946984, -0.855128, 0.540702, 0.525191, 0.161850, 0.028560, -0.409095, 1.284615, 0.325593, -0.847021, 0.513871, 0.205773, 0.582434, -0.245673, -1.126008, 1.128173, -0.716222, 0.946040, -1.303834, 0.272117, -0.759836, 1.294235, -1.801852, -0.264292, 0.761123, -0.488240, 0.030704, -0.576573, -0.799884, 0.382460, -0.326242, -1.020764, 2.012962, -0.493112, 0.777578, 0.338564, -0.096767, 0.975525, 0.738551, 0.193163, 0.648066, -0.617337, -0.805184, -0.049253, 1.032000, 0.552918, 0.389483, 0.217783, 0.784359, 0.949948, -1.573999, 0.132809, -0.210008, 0.227654, -0.222163, -1.515145, 2.102382, 0.530020, -0.140866, 0.187320, -0.397628, 0.347515, 0.487305, -0.376161, -1.595558, 0.486900, -0.299084, -0.115807, 1.076742, 1.647478, -2.662083, 0.931876, -1.473537, 0.945647, -1.537945, 1.006837, 0.872007, 1.154192, -0.135422, 1.421912, -0.006298, -0.726809, 1.638857, -0.768131, 0.059250, -1.286659, 0.223529, 1.472108, -1.562910, -0.516101, -0.978386, 0.261524, 0.067219, -1.549361, 0.547936, -0.104764, -1.216422, -0.378732, 0.564135, 1.452287, 1.876404, -1.680602, -0.822061, 0.937479, 0.615516, 0.599575, 1.533458, -0.890088, 0.522776, -2.854117, 2.320244, 0.388879, -0.389888, 0.455235, 0.295684, 1.563179, -0.871747, 0.309036, 1.594712, 0.210101, -0.492190, -0.662566, -1.338976, 0.566235, -1.288773, 0.718287, -0.876564, 1.182189, 1.034080, 0.542032, -1.434643, 0.647351, 1.308984, 0.658362, 0.341634, 1.367687, -1.035447, -0.756976, -0.831769, -0.312966, -0.260625, -1.389426, -1.250990, -0.160787, 1.137220, -0.299648, -0.248941, -0.581429, -0.631343, -0.475784, 0.360374, -0.618511, -1.569376, 0.332820, 0.575447, -0.972190, -0.953109, -1.652333, -0.416522, 1.190706, -0.916058, 0.166155, -0.086494, 0.003397, -0.188485, -0.024024, 0.333510, 0.529733, 1.768549, 0.754436, -1.503722, -1.835428, 0.548523, -2.067754, -0.148840, 0.883645, 1.827315, 0.647267, 0.849674, -0.953655, -1.808820, 0.161266, 0.632572, -0.453001, 0.123088, -1.612214, 0.442415, 0.193868, -0.012294, 1.517930, 1.124382, -0.756879, 1.162058, -2.235952, -0.367381, 1.364506, -0.040604, -0.181010, 0.886222, -1.775406, -0.933216, -1.519562, 1.422214, 0.209427, -0.155873, 0.210300, 0.134160, 1.211529, -1.802308, 0.515630, 1.641126, 0.689008, 0.043007, 0.589520, 0.935665, -0.813095, -0.720976, -0.693965, 0.682387, -0.047922, -1.558724, 1.987596, 0.932124, 0.887283, 1.912086, -1.299665, -0.077051, 0.126033, -1.148273, -0.120544, 0.578289, 0.801707, -0.304225, -0.469446, -1.017890, -0.962110, 0.806902, 1.311600, 1.187824, -2.629572, -1.202088, 1.273359, 1.887361, -0.642433, 1.306468, 0.766928, -0.950644, -0.303460, 0.169253, 0.698658, -1.105081, -0.058064, -0.883515, -0.198951, 0.560059, -1.973132, -0.167510, 0.157681, 1.615469, -0.314562, -0.772741, -0.298139, 1.643603, 1.720051, 1.530203, -0.623360, 1.214878, -0.970001, 0.910209, -1.006051, -0.090853, -0.036730, -0.022288, 0.576968, -0.012129, 1.735744, -0.043744, 2.147399, 1.423504, 0.888891, -0.941176, -0.914758, -0.264422, 0.154247, -1.014878, -0.011012, -0.062793, -0.365773, 2.523519, 1.783464, 0.368886, 0.680752, 2.454685, 0.716968, 0.712061, -0.053589, 0.593336, -0.427347, 0.580925, 0.588111, -0.363578, 0.477619, -0.970110, 0.653638, -0.255987, 0.537856, -0.322035, 0.018959, 1.341503, 1.378237, -0.518096, -0.291986, -2.383266, 1.354055, 0.322570, 0.474119, -2.190690, -0.235221, 0.932107, 0.223629, -0.605306, -0.010049, 0.399634, -0.443307, 1.176211, -0.708537, 0.787653, 0.024496, 0.225631, 0.697763, -0.303147, 0.394061, -1.406711, 0.933753, -0.417042, -1.621655, -0.005629, -0.104089, -0.018177, -1.396924, 1.182165, -0.915042, -0.989190, -0.931818, 0.199863, -1.164411, 0.035943, -1.123842, -0.726692, 0.475951, -0.101742, 0.674788, 0.847375, 0.148091, 1.000266, -1.646230, -0.378429, -1.106680, 1.467531, -0.083979, -0.752996, -0.011458, 0.715144, 0.761876, 1.115057, 0.086972, 0.590307, -0.649086, -0.589264, 0.866955, -0.418955, -0.923752, 1.245276, 0.106807, 0.634579, -2.190740, 0.652071, 1.903773, 0.280164, -0.324085, -0.354360, 0.018221, -2.151176, -0.498744, 0.230777, -0.569936, -0.036628, -1.789605, -0.856402, -0.853208, 0.730745, 0.190610, -0.229136, -0.504730, -1.447500, 1.542168, 0.150378, -0.891806, 0.984614, 0.882121, 1.240062, -0.189251, -0.336081, 0.882380, -0.469770, 0.186600, -1.199768, 0.883424, -0.361033, -1.321942, -0.153831, 0.770083, -0.426436, -0.964800, -0.953939, 0.299613, -0.793931, -0.787713, 0.153326, 0.575251, 1.056142, -0.630192, 1.135133, 0.296740, -0.362268, -0.515882, -1.379330, -0.091961, -0.801024, 2.285999, -0.117616, 1.558606, -2.038399, 0.856770, -0.980715, 1.326690, 0.429703, 0.666089, -1.557004, 0.324893, 0.588794, 0.370877, -2.240965, -1.030808, -0.363712, 1.606537, 1.056159, -0.225490, 1.362141, 0.952315, -1.919861, -0.534532, -0.962749, -0.553841, -1.181948, 1.173754, -1.570500, -0.806858, 0.989303, -0.132119, 0.356266, 0.430132, -0.821426, -0.616771, 0.794070, 0.227103, 0.165308, 1.187267, -0.605798, 0.945808, -0.514199, -0.363247, -0.275213, -0.141464, -0.554355, -0.753045, -1.087246, -0.962494, -2.295231, 2.494291, 1.174601, 0.621080, 1.303096, -1.748542, 0.657429, -0.911710, -1.794990, 0.662236, -0.751830, 0.629277, 0.847901, 1.597533, -0.212010, 0.227406, 0.279594, -1.693786, 1.231303, 0.010829, 2.509286, -0.287808, 1.092718, -1.409460, -1.129427, 0.939660, -0.619020, 0.917412, -0.103279, -0.335687, -1.525955, -1.494753, 0.542674, 0.129437, 1.894534, -1.294623, -0.498218, 0.176489, -0.110692, -0.420677, 0.713729, -1.598181, -0.957914, -1.337547, 0.023698, -0.285161, 0.232140, -0.781073, -0.040973, 1.183703, -0.692324, 0.670933, -0.414949, 0.242312, -1.121752, 1.063712, 0.071522, -0.790074, -1.060368, -0.967597, 0.667568, -0.512581, 0.508028, 1.216053, 0.298135, 0.101781, -0.197221, 0.223722, -0.952113, 1.767540, -0.716713, 1.029834, 0.094344, -1.914947, -0.432848, -1.600961, 0.524762, 0.199797, 1.255647, 0.243163, 2.695452, 0.189915, -0.518012, -1.006203, 0.754227, -0.808953, 2.201628, 1.221990, -1.157120, -0.308827, -0.029266, 0.072014, 2.096768, 1.621062, 1.756547, -0.599873, -0.129024, 0.323896, -0.628606, -1.562733, -0.946005, -0.414196, -0.384258, 0.472222, -0.699227, 0.618444, -1.038929, -0.762177, -0.296663, 0.950127, -0.057706, -0.720077, 3.099193, -0.478931, 0.511509, 0.180634, 0.667542, -1.792011, -0.303764, -1.652293, -1.280203, -0.062729, 0.596576, -0.263964, -1.193720, -0.303549, 0.216534, -0.796900, 0.040397, -0.251684, 0.297526, 0.912297, -1.034247, -1.017054, -1.206869, 1.352986, 0.969517, -1.595762, 1.099380, 0.543110, -0.479170, -3.358348, -0.127788, -0.558697, -0.456841, -2.552514, 1.062199, -1.648405, -0.676737, -0.572096, -0.510583, -0.111546, -0.774599, -0.382882, -0.827536, -0.272139, -0.176061, 0.757217, 1.647794, -0.819430, -0.867901, 0.838656, -0.361105, -1.078085, 2.461106, 1.291247, 1.366076, -0.027307, 1.716192, 1.454110, -0.984450, 0.562563, -0.404285, 0.570545, -0.616408, -1.294423, -0.260217, -2.380855, -1.358480, 0.665907, 1.369127, -0.519710, 0.425237, 0.089161, -0.558228, -1.228448, 1.984715, 0.326622, 0.560814, 0.179908, 1.102964, 0.634109, 0.836891, 0.298898, -0.430326, -0.394783, 0.579352, -1.177464, -0.198226, -0.121994, 1.923454, -0.006262, -0.706024, 0.305504, 0.588560, 0.601342, -1.400091, 2.379891, -0.824755, -0.056605, 1.274209, -0.408111, -0.527862, 0.041188, 0.380470, -0.451442, 0.363334, 1.402236, -0.232648, 1.329393, 0.402984, 1.173035, -0.467945, 0.522728, -0.533722, -0.656040, 1.288262, 1.193023, -1.313586, -0.340013, 1.489951, 0.474619, 0.362209, 1.583132, -1.180411, -1.787519, 0.829754, 0.722097, 0.873255, 1.238939, -0.517981, -0.229627, -0.422582, -0.624532, -1.337405, -0.737128, -1.412669, 0.986173, 0.438277, -0.019205, 1.021370, 0.598993, -0.148298, -0.763043, 0.579651, 0.422510, -0.509580, 1.072799, -0.983634, -1.027078, 0.749448, -1.316331, -2.035858, -0.902220, -1.118457, -0.350836, -3.290744, 1.538079, 0.593238, -0.548930, 1.220102, -0.021955, 0.441516, 1.193944, -0.977958, -0.792941, 0.333881, 0.459984, -1.270217, -0.316534, -0.474043, -1.435200, -0.098169, -0.146348, 0.302231, 0.018440, 0.451915, -0.408195, -0.160546, -0.148002, 0.170020, 0.577289, -1.218128, 1.333437, -1.782829, -0.953887, 0.193308, 0.009397, -1.558472, -1.079982, 0.967111, 0.935985, 1.104000, 0.306498, 0.048959, -1.535052, 0.218331, -1.639868, 0.246992, -1.486356, 2.848007, -0.181802, -0.927040, -0.666915, -0.692319, 0.473089, -1.191594, 0.467454, 0.529816, 1.023217, -0.796036, 0.664019, -0.996616, 0.182204, 0.242223, -0.030521, 0.794364, -0.692690, 1.744260, 0.251815, 0.283903, -0.590698, -0.774000, 1.273107, 1.231728, -1.476550, 0.349324, -1.163586, 0.503046, -0.708940, -0.720347, 0.795058, 0.933600, 1.018722, -1.971080, -0.157388, -0.907509, -1.537901, -1.533309, -0.783092, 0.334103, 0.536473, 0.074305, -1.499410, 1.870492, 0.188172, 0.301038, -0.524217, -0.600346, 0.296362, 1.886847, -0.532337, -0.120864, 0.855696, 0.948470, -0.873934, 0.411673, -0.108981, 0.239930, 0.517267, -1.673661, 0.630848, -0.781659, -2.124833, -0.147121, 1.412322, 0.066195, 0.024525, 0.491079, -1.417892, 0.594024, -0.105015, -2.475106, -0.323457, -0.111461, -0.727591, 0.477356, -0.840608, 0.328171, -0.234355, -0.424616, -0.526582, 0.626653, 1.784402, 0.362903, -0.267303, -0.782190, -0.909535, 1.244296, -0.407208, -0.119454, 0.389337, 1.345816, -0.735962, -0.924169, -0.607997, -1.319383, -1.333291, 0.722979, -0.680176, 0.220947, -0.298770, 0.852112, -0.611865, 0.895760, -1.391772, 0.390544, 0.453035, 0.344289, 1.386752, -0.419754, 0.070027, 0.901925, -0.629054, -0.525925, -0.224853, -1.738995, 1.056784, 0.283250, 1.673737, -1.492004, -0.807594, 1.616719, 0.059522, -0.525472, 2.103395, 0.618304, 0.048548, 0.434617, -0.442420, 0.647397, -0.853310, -0.183788, 0.047155, 0.066744, -0.433075, -0.912800, -0.345984, 0.969438, 1.108527, -1.094352, 0.927107, 0.654865, 0.999573, -0.500909, 0.234292, 0.298394, 0.071158, -0.753990, -0.024070, 0.394929, -0.313079, -1.811564, 0.674493, -1.397763, 0.922982, -0.267128, -0.957053, 1.480111, 0.353777, -2.088970, 1.858404, -0.040560, -1.235375, 0.139376, -0.983130, 0.240955, 0.714288, 0.885126, 0.220309, -0.792366, -1.187943, 1.461065, 0.183228, 0.423110, -0.580854, -0.690032, 1.093411, 0.662932, -0.005757, 0.767360, 0.520753, -0.617891, 0.317027, -0.373111, 1.942600, 0.854538, 0.127914, -0.318061, 0.339670, 1.777531, 0.867699, 1.043440, 0.221468, 0.447914, -0.200078, 0.199318, 0.551104, -2.190970, 0.255184, -1.608382, -1.278952, 1.571371, 0.249518, 1.058376, -0.789240, 2.812099, 0.725047, 0.542104, 0.256587, 0.239273, -0.114991, -0.099124, -1.114297, 0.628005, 0.082941, 0.307606, 1.056695, -1.765013, -1.586355, 1.027566, -0.065029, -0.635301, -1.667406, -0.513803, 1.136289, 0.122947, -0.146331, -1.145963, 1.184713, 1.233809, 0.176630, -0.593536, -0.962742, 0.508538, 1.265618, -1.282028, -1.208776, 0.736253, 1.441993, 0.852333, 0.540907, 0.275650, -0.861491, 0.549781, 0.364437, 1.706620, 0.551301, 1.011261, 0.667913, -0.666879, 0.505472, -1.109132, -0.019596, 0.736578, -0.261241, -0.603579, 0.487883, -1.498205, -1.385296, 1.253567, 0.527889, 0.072070, -1.229519, 0.021725, -0.232425, -0.457872, 1.274671, 0.864985, 0.141963, -0.103384, 0.625382, 0.850684, 0.098495, -0.889554, -1.130785, 0.031865, 1.588821, 0.963561, 0.442547, 1.164780, 0.754968, -2.020823, -0.621038, -0.944792, -1.131911, -0.987944, -0.638715, -1.900232, -1.561238, -0.561367, -0.448166, -1.050050, 1.056443, 0.441451, -1.391055, -0.816149, 0.776623, 0.159550, 0.692669, 0.344331, 0.042670, 1.713334, -0.364159, -0.390255, 1.319268, 0.933050, 0.309050, -0.592574, -1.628771, -1.857893, -3.068927, 0.214256, 0.302144, 0.254882, 0.438567, -0.278715, -0.955446, -1.259480, -0.479821, 1.476324, -0.152102, -0.076762, 2.891149, 1.164605, 0.449336, 1.181607, -0.761865, -0.339467, -0.930732, 0.267239, -0.159446, 0.077732, -0.145504, 0.879262, -1.327493, 0.737494, -1.304277, -0.824024, -0.479485, -1.208102, -0.622517, -0.598328, 0.673618, -0.330795, -2.187228, 0.322942, -0.373992, 0.803198, -0.039636, 1.115615, -0.060927, -0.688936, 1.059522, 0.224974, -1.749339, 0.182948, 0.100304, 0.058683, -0.416857, -0.123788, 0.216024, 0.295013, -0.640923, 2.268791, -0.326884, 1.283744, -0.624295, -0.712606, 0.246953, 0.354621, -0.986225, 1.007678, -1.115502, 0.878721, 1.689297, -0.383738, 1.043325, 1.691676, 1.486106, 2.696296, 1.178405, 0.221530, -0.908419, 0.328012, -0.374297, -2.623704, -2.309197, -0.716143, 1.266856, 0.346911, -0.265984, 1.047110, -0.112382, 1.365114, -0.030201, 0.533709, -0.332707, -0.261632, 0.946086, 0.064392, 0.794587, 0.437872, 1.562116, 1.256813, 0.574278, 0.349693, -1.506280, 0.465180, -0.268917, -0.551112, -0.632856, -1.891182, 1.499568, -0.671930, -0.080869, -0.487188, -0.337470, -0.673157, 1.129903, 0.031568, -0.437237, -0.576593, -0.897238, -0.104980, 0.087607, 2.342418, 0.864323, -1.211711, 0.640604, 1.931100, -1.033041, 1.807031, -0.609410, 0.192863, -0.230001, -0.204107, -1.257146, 0.235375, 0.497319, -0.522283, -0.047603, 2.247055, -0.472672, -0.742728, 1.887584, 0.297853, 0.019960, -0.346045, 0.642405, 0.908946, -0.190561, -0.903710, -0.200454, -2.026911, -1.987453, 0.441738, 0.803257, 1.005574, 0.304628, -0.810955, 0.719511, -0.061451, 1.819792, -0.801520, 1.559348, -0.082772, 2.704689, -0.026683, 0.844406, -0.694418, -0.047838, -0.671424, 2.624848, 1.394493, -0.180582, 0.721058, -0.125405, -0.871509, -0.265418, -0.435092, 0.514038, 0.000100, -0.302822, -0.822031, -0.010094, 0.864020, -0.714704, -1.123714, 0.660663, 0.336561, 1.147660, -2.273621, 1.129006, -0.178031, -1.377156, 0.792094, 1.170925, -2.218573, 0.337177, -0.612150, 0.719061, -1.819574, -0.947904, -0.242153, -1.994135, 0.836154, -0.569495, 0.998790, 1.436393, 0.080266, 0.314516, 0.891994, -1.376253, 1.360397, -0.165339, 0.866988, 2.559131, 0.777232, -1.187380, 1.287731, 0.094124, -0.730634, 0.485846, 0.513444, -0.818649, -0.455261, 0.580234, -0.878480, -1.731625, -0.131472, 1.166456, 0.910154, -0.902469, 0.590506, 0.428243, 1.010460, 2.472925, 0.255461, -0.858515, 1.170253, -0.357613, -1.214351, -1.245906, 0.238280, 0.082317, 1.852567, -1.318894, -0.858178, 0.339556, -0.643254, 0.907428, -0.033898, 1.877326, 1.533348, 0.975519, -0.446442, -1.541719, -0.984386, 0.018960, -0.697507, 0.559199, 0.723013, -0.773009, 0.493163, -1.300100, -0.493068, 1.902532, 1.547151, -0.303401, -0.508648, 0.270874, 0.507754, -0.616424, 1.134995, -0.937899, 0.238074, 2.290282, -0.390994, -0.975604, -0.155326, -0.178728, 0.511132, 0.398456, 1.100996, -0.757965, 0.870789, 1.209118, 0.617684, -0.132987, 0.129870, 0.179757, -1.401115, 0.496647, 0.496407, -0.901952, -0.121360, 0.549526, -1.048672, 0.090208, 0.596081, -0.445324, -1.725782, -0.956257, 0.226075, -0.248751, -0.247744, 1.002601, -0.774292, 0.167107, 0.533074, -0.040924, -0.157621, 1.437727, 0.304615, 0.319718, -0.303391, 2.116110, -0.405676, 1.252120, -0.037453, -0.008630, -1.969046, -0.692743, 2.409692, 0.126349, 0.636677, -0.437878, -0.823856, -0.162109, 0.868169, -0.689817, 0.275756, 1.306606, -0.073079, -1.154076, 1.638784, -0.192958, -1.113801, 2.071736, 0.495999, -0.046639, 0.236917, -0.719900, -1.269621, -0.803141, -0.634999, 0.167393, 1.458770, 0.944166, 0.217359, 0.934394, -2.149999, -0.102730, 0.291910, -0.483770, 1.106285, -0.261264, -0.495627, -0.504177, 0.268520, -0.197266, 1.430473, -1.499636, -1.068286, 0.035220, 1.113044, -1.479456, 0.756326, 0.319994, 1.437050, 1.778368, 0.761751, 0.188487, -1.126828, -0.167963, 1.391164, 0.626894, 0.996698, 0.342408, 0.252847, -0.223673, 1.989495, 0.206736, -1.098589, -0.939435, -1.544804, -0.940315, -0.814343, 1.727745, -0.211864, 1.713724, 0.622814, -1.097588, -1.328360, 0.464264, -1.404117, -2.184486, 0.319263, 0.412176, 1.341600, 0.036501, -1.143893, 1.207517, -0.743986, -0.225329, 1.573940, -1.041914, 0.389225, 1.620758, -2.315213, -1.738401, 0.077456, -1.885578, 1.180387, -0.651181, 0.169728, -0.838826, -2.134971, -0.867158, 0.502595, 0.142177, 0.049358, 2.363822, -0.887378, 2.034538, 2.519930, 0.049951, -0.876273, -0.980878, 0.456311, 0.778226, -0.144836, -1.291349, -0.797972, -1.301330, -0.309712, 0.826805, 0.580028, 0.551396, 1.410279, -0.236090, 1.064316, -0.379266, 1.010815, 0.765353, 0.612462, 0.533685, -0.734670, -0.702826, 0.902122, -1.025042, -1.077872, -0.280234, 0.768349, -0.873531, 0.617642, 1.164467, -0.982887, 1.284477, 0.507335, -0.189306, 0.837987, 2.037528, 0.484350, 1.602050, 0.263021, 0.097864, 1.608288, -1.080719, -1.339452, -0.861968, -2.282254, 0.797448, -0.025785, 0.823465, -0.930541, 1.080138, -0.105426, -0.149637, 0.728237, 0.958368, -2.512169, -0.648876, 0.450217, 0.471417, 0.069004, -0.112511, -0.836981, -0.780356, -0.401388, 0.631717, -0.709272, -0.169853, -0.867400, -0.114735, -0.250278, -0.589930, 1.565497, -0.242609, 0.531088, 0.315663, 0.459644, -0.195170, -0.230764, 0.378899, -0.062841, 0.695626, 0.121692, -0.879932, -2.399155, -1.839934, -0.566015, -0.406802, -0.996987, 0.963469, 1.014006, 0.270777, 0.619836, 0.330515, -0.433092, -0.610199, -0.454567, 1.874223, -0.812274, 1.479860, 0.293079, 1.079191, -1.665428, 0.698277, 1.251763, 0.217812, 0.816184, -0.205709, -0.452428, 0.672523, -0.922743, -2.879743, 0.675595, -2.220519, -0.298541, 1.404589, -0.509544, 0.204987, 1.988579, -0.843112, -1.309876, 0.018853, -0.272084, 0.799356, 0.050541, 1.056019, -0.222319, 0.227980, 1.184379, 0.032781, -0.264699, -0.110375, -0.215949, 1.965842, 0.170879, 0.928995, -1.201973, 0.418469, 1.172599, 0.950635, -0.945837, -1.105076, 0.811742, 0.990821, 0.042311, -0.959333, -0.666812, -1.304557, 0.475595, 0.002756, -0.720316, -1.420150, -0.341490, 0.796456, 0.070078, -0.053087, -0.748564, 0.117776, -0.935660, -0.978098, 0.656585, 2.443043, 1.158344, 1.581965, 0.849176, 1.335384, -0.821780, -1.552891, 0.134091, -0.475488, -0.316487, 0.493461, -0.685609, 0.750872, 1.335694, -0.058513, 1.445563, 1.201822, -0.946800, 0.281683, -1.246872, 0.130106, -1.172482, 0.874065, 1.029111, 0.337881, -1.866338, 1.405511, -0.405088, -0.902345, -0.362323, 0.481963, 0.789111, 1.150148, 0.088632, 2.682568, -1.272945, 0.844879, -1.080114, -1.274087, -0.026501, -1.314465, -1.031805, 0.299062, 0.808069, 0.628225, -0.547387, 0.714948, -0.247041, -0.120229, 0.284313, 0.693740, 1.314882, 2.263302, 0.319014, 0.165651, 0.571691, 0.623252, 0.260181, -1.833646, 0.990031, -0.289431, -0.409693, 1.082961, 1.152201, -0.348899, -1.637911, -0.213421, -0.178989, -0.492583, -0.347373, -0.099031, 1.177058, 0.062711, -0.416057, 1.449955, -0.251558, -1.009918, -1.014540, -3.107098, -0.343748, 1.482357, -1.136439, -1.685111, -2.002580, -0.130317, -0.088109, 0.261270, -0.539753, 1.846484, 0.450707, -0.319699, 0.858138, -0.786194, -0.413516, 1.465221, 0.812131, 1.751616, -0.586267, 1.053182, -0.389006, -1.207141, -0.456188, -0.682035, -0.113984, -0.218750, -0.813892, -1.150459, 0.365009, 0.257702, -0.808845, 0.332905, 0.330440, -0.733580, -0.621455, 1.069198, 0.232972, -0.173688, 1.089804, 1.077080, -1.537364, -1.160265, -0.827133, 2.969784, -0.380828, -0.174024, 0.895129, -0.595677, 1.369341, -0.742931, 1.821479, 0.840993, -0.288871, 0.458630, 0.666277, 0.241158, 0.191612, 0.036389, -1.152994, 0.349647, 0.611416, 1.108040, -0.449885, -1.075631, -0.057494, -1.911325, 0.083033, -1.049838, -0.432355, 1.244782, 0.986063, 0.436598, -0.085157, -0.472627, -0.655530, 1.098706, 0.290803, 1.287088, -1.332629, -1.046975, -1.254226, -0.197748, 0.446187, 0.338644, -0.701213, 0.828524, 0.645492, -0.813817, -0.697010, -0.083626, 0.874070, 0.631169, 0.167962, 1.979197, 0.518246, 0.002537, -0.093608, 2.074943, -0.969589, -0.767457, -0.626315, -1.170803, 0.365757, -0.286812, 0.310755, 0.644034, 0.386650, 0.026644, 0.668145, -0.023332, -2.174154, -0.590257, 0.185610, -0.279616, 0.150596, -0.533425, 0.325675, -2.208292, 1.302406, -0.350507, 0.749857, -1.247586, -0.024519, 0.832427, -0.210042, 1.213729, -0.692158, 1.393602, 0.496035, -0.017001, -0.157795, 0.422846, -0.690903, -0.478644, 0.271725, 1.028905, 1.307697, -0.873003, 0.375732, 0.223415, 1.521141, -0.103832, 0.845385, -0.902537, -0.191197, -0.520706, 0.715710, -0.144872, -1.069634, 0.228421, 3.094215, -0.241571, -0.174412, -1.226843, 0.841745, -0.277049, 0.227562, 0.667720, -2.239697, -0.793509, -0.910455, 0.027401, -1.830518, -0.243316, 0.168970, -2.414641, -0.147897, -0.620089, 2.558652, -0.000057, 1.661484, 0.677712, 2.488127, -0.568762, -1.201332, -1.723140, 0.158921, 0.460419, -0.740550, 0.564684, 0.171478, -0.563114, -0.109429, 0.823484, -0.738401, 0.920455, 0.791381, 0.334914, -1.621531, -0.847671, -0.130315, -0.537176, -0.700846, -0.494190, -1.096820, -0.056814, -1.836258, -0.896149, 1.626858, -0.272714, -0.551725, 0.166678, 1.343282, -0.211742, 0.018142, -0.362325, 0.464796, -1.238167, -0.684141, 0.535091, -0.758839, -1.982718, -1.209737, 0.433154, 0.338704, -0.048311, 0.069631, -0.278169, 0.595718, -1.162647, 0.163905, -0.128582, -0.887832, -1.531715, -0.481626, 0.628036, -1.796754, -1.570508, -0.604021, 0.234261, 0.320008, -0.765202, 0.087421, -0.393904, 0.234731, -0.405125, 0.246564, -0.172009, 0.076080, 1.493095, -0.827760, 1.292185, 0.130032, -1.630737, -1.161111, -0.390723, 0.211540, -0.496253, 1.050335, 0.183662, -0.347180, -0.676433, -1.164106, -0.195154, -0.222503, 0.711885, -0.718925, 0.764717, 0.081814, -1.651702, 0.639418, -1.388937, 0.500354, -0.029187, -1.250546, 1.773692, -0.272374, 0.326819, -0.261313, -0.738117, 2.001954, -0.761357, 0.362197, 1.516437, 0.196018, -0.989632, -0.910374, -0.223146, 0.504880, 0.336588, 1.570307, 0.663175, -0.365961, 0.720082, 0.255691, -0.398342, -2.252949, 0.896608, 1.016340, 0.307385, -0.019093, 1.362621, 0.333366, 1.089450, -0.792678, -0.048040, 1.142190, 0.357204, -0.004240, -0.250458, -0.798590, 0.417309, -1.303907, 1.389667, 0.522712, 0.006600, 0.370091, -1.109512, -0.357632, -2.379878, 0.603968, 0.018663, 0.055206, 1.358885, -1.209405, 0.025900, 0.356927, 1.959827, -0.287294, 0.896338, -0.218103, 0.970927, 0.712794, 0.578861, 1.404701, 0.318558, 1.164792, -1.409568, 0.973918, -0.815496, -0.214010, -1.409923, -0.925293, -0.357835, -0.667657, -0.276477, 0.486161, -0.874614, 0.180940, 0.532994, 0.121336, 1.054200, 0.760681, -0.078399, 0.621015, 0.607999, 0.352320, -0.106320, 0.320432, 0.383911, 0.266024, 0.697116, 0.867710, 0.080710, 2.035456, -0.281142, 0.025039, 3.302772, -0.296941, -0.190671, -0.173798, -0.834814, -1.201109, -0.434305, 0.405013, 0.308712, -0.711574, 1.803364, -0.070834, 1.233203, 1.552413, -0.285635, -2.380870, 0.480311, -0.107579, -0.458753, -1.096381, -0.210808, -0.199755, -1.408006, -0.482792, 0.724200, -0.050026, -0.055566, 0.018171, -3.453251, -1.452587, -1.605376, 0.473555, 0.836121, 2.006517, 0.919471, -1.828668, -0.215271, 0.910352, 0.224749, 0.486680, -1.428302, -1.787159, 0.171893, -0.737114, -0.275540, 0.247846, -0.354593, -0.260594, 1.422811, 0.609530, -0.197687, 0.843860, -0.856948, 1.198039, -0.882144, -0.249322, 1.893704, 0.853703, -2.073418, 0.648907, 0.765741, -1.588450, 0.612558, -1.239891, -1.501171, 1.242420, -1.883491, 0.718154, -2.456889, 0.451654, -0.135719, 0.519739, 0.491944, 0.277727, -0.680570, -0.075004, -1.013855, 0.577856, -0.443291, -1.673644, 0.092935}, + { 0.940526, 0.887387, 0.309132, -0.937364, -1.405484, 0.042481, 0.992950, -1.340081, -0.015140, -0.574928, -0.507835, -1.142446, 0.824822, 0.993765, -1.133806, -0.390372, -1.992765, 0.898597, -0.583480, 0.876658, -0.876132, 0.407157, 1.640619, 1.006239, 1.135340, 1.241958, -0.240657, -0.799536, -0.768057, 0.199818, -1.315046, -1.600416, -0.012148, 0.130446, -0.235852, 0.205656, -1.484646, 1.288140, -0.068559, -0.228333, 0.831898, 1.768803, -1.585690, 0.652062, 0.209220, -1.771986, -0.978867, 0.586275, 0.402439, -0.043299, -0.306034, 0.159427, -0.006557, -0.690996, 2.300789, 0.587313, 0.391062, -0.940961, -0.674125, 0.700082, -0.681964, -0.615783, -0.081372, -0.896282, 0.232699, -0.255126, -0.100263, 1.214195, 0.723305, 0.152433, -0.257539, 1.419703, 0.872340, -0.987622, -0.251330, 2.327261, 0.103543, 0.931798, 1.312482, 0.138533, 0.394271, 0.695938, -0.409393, -1.399902, 0.139501, -0.231048, 0.711327, 0.608661, -0.646272, -0.920056, 0.253304, -0.339334, -2.043987, 1.514823, -0.045538, -2.004462, -0.722375, -0.989673, -1.623197, -0.410901, -0.757147, 2.119746, -0.101556, -0.050354, 0.871860, -1.343920, -0.971318, 1.069508, -0.281959, -0.156714, -0.699701, 0.676886, -0.394877, 0.124446, 0.867944, 0.155741, -2.323891, -1.117519, 0.544463, -1.448807, -1.599253, 1.022935, 0.071111, 1.069493, 0.049684, -0.485061, 0.917281, 0.970418, -0.040711, 1.045886, -1.508376, 0.866566, -0.839336, -1.175106, 0.599689, -0.208608, 0.807379, 0.724269, -1.442641, -1.123863, 0.241164, -0.353247, -0.858006, -0.582642, 1.563841, -0.825886, 1.132508, -1.809314, 0.126486, 1.387790, -0.437504, -1.401641, 0.506998, 0.522143, -0.190632, 0.141195, -0.618607, -1.077614, 0.522254, -2.197108, 0.423611, -0.505221, 0.261767, -0.512533, -1.937629, 0.620771, 0.739900, -0.349168, 2.972752, 1.011305, 1.081848, 0.267255, 0.891520, 0.242948, 0.160616, 0.571391, -0.556764, -0.416337, 0.228978, 0.847622, 0.083379, -0.288222, -0.146149, -0.190783, 0.937473, 0.374239, -0.862612, 0.063180, -0.503953, -0.821632, 0.865393, 0.061638, -0.558521, -0.667048, -0.549572, -0.348509, 0.093502, -1.038754, 0.584890, 2.492065, -0.064212, 0.784852, 0.048595, -1.606579, 2.401086, -0.642349, 0.523450, 0.266800, 1.871073, 0.260841, 0.759216, 0.263080, 0.840160, 1.298602, 0.931528, 0.902908, 2.401204, -0.315305, -0.823406, -1.437014, -0.329049, -1.381237, 0.133680, 0.798418, -0.584474, -0.225122, 1.117085, 1.080177, -0.304421, 2.512603, -1.522030, -0.388842, -0.142835, -0.931814, -0.232359, 1.911014, 2.263468, -0.272604, 1.236671, -1.331730, -1.247643, -0.540547, -1.933454, -1.061987, -0.178697, 1.992812, 0.504918, 0.111620, -0.189832, -0.631413, -0.156127, -1.206439, -0.385447, 0.463096, -0.801485, -0.162023, 0.000562, 1.128822, 0.339864, 0.416473, 0.700814, -0.223725, -0.827491, 1.097825, -1.265630, -0.727988, 0.227635, 0.912893, 0.008795, -0.074968, 0.898770, 0.161034, -2.745800, 0.992101, 0.407895, 0.598136, 0.674322, -0.398716, 1.326816, -1.694708, 1.716335, -0.180579, 0.244268, 0.209196, 1.331395, 0.434155, 1.600800, 2.192872, 0.673845, -0.221391, -0.884999, -0.659403, -1.614005, -0.136580, 0.761343, -1.303276, 0.867821, -0.380751, -1.114501, -0.185373, 0.282322, 1.141597, -0.192928, 1.257557, -2.113192, 0.346356, 0.656475, 0.366368, 0.507368, -0.192517, 2.086732, -0.568287, -1.367349, -1.128475, 0.292438, -1.225625, 1.716491, -0.203610, -1.175708, 1.574390, 0.032061, -1.078944, -1.076593, -0.907408, -0.026308, 0.037099, -0.987890, 0.539579, -0.708428, -0.743176, -1.488049, 0.649591, -0.826594, 1.874313, 1.620186, 0.145343, 0.223312, 1.592611, -1.291578, -0.008859, -0.172940, -0.723387, 0.876983, -0.499470, -0.969061, 0.200791, 1.098158, 0.281714, -1.343299, 1.843204, -1.119645, -1.434076, 0.787892, -0.889741, 2.804718, 0.338952, 1.360404, 0.316914, -1.903448, -1.491209, -0.955582, 0.313923, 1.715639, -0.388586, -0.565613, -1.265825, -0.966466, -0.326571, 0.232721, -0.688230, 1.451941, -1.432288, 1.382565, 0.718879, 0.806800, -1.294727, -0.101493, 0.836169, -0.704357, 0.345892, -1.012159, 1.463798, 0.891712, 1.576033, 0.004615, -0.091832, -0.591403, 0.890560, -0.115643, 0.182762, -0.663205, 0.150053, 1.185333, 1.123098, -0.548641, -1.125101, -0.497673, 0.857784, 0.651230, 2.220247, 0.562432, -1.319893, 0.692175, -0.998087, 1.177240, 1.077739, -2.617096, -1.158213, 0.587090, 1.622966, 0.009008, -0.932717, -0.280580, -0.215901, 0.529568, -1.321549, -1.732153, 0.427205, 0.966982, -0.143685, 0.431669, -1.479178, -0.212818, 1.526083, 0.730856, 1.036207, -0.082696, -0.319906, -1.602095, -1.370153, -0.471111, -0.554854, -1.283618, 0.594372, -0.245750, 1.083385, -0.566870, 1.287830, -0.669923, -1.949077, 0.265545, 0.965428, 0.717874, 0.039618, 0.706706, -0.038704, 0.060564, -0.059399, 0.158943, -0.804668, -2.431096, 0.658742, 1.113609, 1.388871, 1.146664, 1.961212, -0.277887, 0.351079, -0.640366, 0.244719, -0.438159, 0.469400, -0.387198, -0.510851, 0.327828, -1.195682, -0.223334, 0.429879, 0.392374, -2.173770, -0.252019, -1.467999, 0.082957, 0.865147, 0.971516, 0.376630, 1.457638, -0.690048, -0.507254, 0.225998, -0.402772, -0.926409, 0.297716, -0.083123, 0.502191, 0.628109, 0.449516, -1.853666, 0.808515, -0.244907, -0.759893, -0.693971, 0.030414, -0.686166, -0.197380, -2.518680, 1.144789, -0.573087, 0.004007, -0.735187, 1.022803, -2.045648, -0.896991, -1.840741, -0.027391, 2.213709, 0.085896, 0.996516, 0.416912, -0.576612, 1.160453, 0.390934, -0.556056, 0.419952, -1.255214, 0.141892, -0.438810, 1.275985, -1.540116, -1.836285, 0.283771, 0.102123, 0.621224, -0.709577, -1.257253, -1.274538, 2.539695, 0.545706, 0.624028, 0.353077, -1.227228, 1.218095, -0.421982, 0.415457, -1.597139, -0.495200, -0.225658, 0.396558, 0.555077, -0.616111, 0.507593, 1.899810, 0.307952, -1.633628, -0.312383, -0.309716, -0.330314, 0.755856, -0.019170, 0.114432, 0.206483, 1.082221, -0.122932, 0.136367, 1.134921, 0.458193, -0.137511, -1.534386, -0.600983, 0.620910, 0.147590, -0.536225, -0.452255, 0.079495, -1.580624, -2.265837, 0.730491, -2.283147, 2.364879, -0.472926, -1.422249, -0.442355, -0.165429, 0.826578, 1.255601, -0.117737, 0.162070, -1.660082, -2.475524, 1.087775, -0.177648, -0.475232, -0.992624, -0.760889, -1.267435, 0.688817, 1.405906, 0.341179, 0.638841, -0.601002, -0.065936, 0.254887, -0.083637, -1.078369, 0.831542, -0.238792, 1.761856, -0.076984, 1.029634, 1.175075, 0.302846, 1.139395, -0.084567, -1.104801, -0.964944, -0.815327, 1.425555, -0.513680, 0.483789, -1.008315, -0.195667, 0.860141, -0.338004, 0.290731, -0.719580, 2.240007, 0.912252, 0.089787, -0.614922, 0.531358, -0.822009, -1.720064, -1.398278, 1.162112, -1.184831, 0.265589, -0.231697, -1.234419, -0.598225, 0.766560, 2.398124, -0.191674, -1.411627, 1.602533, 0.431152, 1.507087, -2.247573, -1.700305, 0.879822, 0.853328, -0.650790, 1.225139, 0.584583, -0.052447, 0.031025, -1.371664, -1.200770, 0.363609, 1.953235, 0.642444, -2.453701, 0.010915, -0.700079, 1.076349, 1.184752, 0.131645, -0.651101, -2.714039, -0.368345, 1.243199, 0.788225, -1.401640, -1.382137, 1.285882, 1.057002, -2.120762, -0.670265, -1.731633, -0.830834, -1.144851, 2.464682, -0.333216, -0.461933, 1.221566, -0.304211, 0.834752, 0.275251, -2.751639, 0.241242, 1.261281, -2.620539, 1.753883, -0.741609, 0.584930, 0.786554, 0.035789, 2.115420, 0.575085, 0.138786, 0.472845, 0.813167, 0.651782, 0.652535, 2.741705, 0.850771, -0.229544, -0.506982, -0.861370, -0.978247, -0.681520, -0.866314, 0.492584, -0.611082, -0.869338, -0.401526, -0.708807, -0.052963, -0.815406, 0.409059, -0.269102, -0.970492, -0.285170, 1.434604, 1.360422, 1.798268, 1.158577, -0.208801, 0.419049, 0.658380, 0.300169, 1.945927, 0.779334, -0.996911, 0.857130, 0.967446, 1.727473, -0.763530, 1.001292, -1.170105, 0.247736, -0.545548, 1.099868, 0.088913, 0.930548, 1.015224, 1.341713, 1.040489, -0.443463, 0.940143, -1.202178, -1.401692, 0.956253, -1.453889, 1.138730, 0.047507, -0.408518, 0.663838, 0.477821, 0.126877, -1.521904, 0.234010, -1.152321, 1.251971, 1.355889, 1.157867, 0.074907, -0.204920, 1.165760, 0.319168, -0.636174, 0.359267, 0.354501, 1.300310, 1.321581, -0.102251, 1.723456, 0.595957, 1.505832, -0.323219, -0.602265, 0.684557, -1.479206, 0.750292, 0.257895, 1.410151, -1.613866, 1.342770, 2.885222, -0.440332, 0.736052, 0.093906, -0.988739, 0.911747, 0.937869, -1.038208, -0.096772, -0.531313, 0.022134, -0.777897, -0.554110, 0.303482, -0.256398, -1.409659, -0.781860, 0.429085, -1.503121, -0.551766, -1.060799, -1.454215, -2.513233, 1.058468, 0.651489, 1.303681, -0.607029, 1.667378, 0.523476, 1.010740, -0.002082, -1.395638, 0.614751, -0.773249, 1.464555, -1.065634, 0.571230, -0.753449, 1.132764, -0.408891, -0.528530, 0.556729, -0.209366, 1.546020, -0.102627, -0.721234, -1.034548, 0.653230, 1.218829, 0.153500, 0.241851, 0.231240, 1.742368, -1.082954, 1.578017, -0.916967, -0.206152, 0.294879, -1.667612, -1.546908, 0.720675, 1.068973, -1.147804, 0.784052, 0.056616, -0.536692, 0.089015, -2.053860, 0.359396, -0.017881, -0.279121, 1.298982, -0.874506, -0.569842, 0.520096, -1.149758, -0.607831, -1.190130, 0.031831, -1.082223, -0.532112, -0.640784, -0.854931, -1.395686, 0.769793, -0.129004, 0.708788, 0.695424, -0.126532, -1.364286, 0.817777, -2.114746, -0.435771, 1.179339, -3.188931, -0.872089, -0.097222, -1.413917, 0.715516, 0.038682, -0.862494, 0.061328, -0.753394, -1.080710, -2.193052, 1.655002, 0.707736, 1.727937, -0.569483, -0.365498, -0.805186, -0.586932, -1.201593, 1.585724, 0.853430, -2.148236, 0.788765, 0.970394, -0.506235, 1.191214, -1.078663, -1.103025, -0.325589, 0.311707, 1.580385, 0.044905, 1.724720, 0.692422, -1.084512, 0.336065, -1.489352, 0.717867, 2.175291, 0.165281, 2.174848, 1.463336, 0.320850, -0.326204, -0.547052, -0.793737, -0.501631, -0.520167, 0.369639, 0.533181, 1.126470, 0.210579, 0.400558, 0.229428, -0.729577, 0.038107, 0.058491, 0.004158, 0.127478, -0.713990, 0.763348, 0.566215, -1.552309, -0.559973, -1.568112, 1.126845, 1.074668, -0.048499, 2.022139, -0.255659, 0.088336, 1.320908, -1.341480, 1.842938, 0.172599, 0.999700, -1.349347, 0.780501, 0.182180, -0.699305, 1.141438, -1.015053, 0.741596, 0.424962, -2.789942, 1.388358, 0.111885, 0.728245, 1.062062, -0.416011, -1.476984, -0.577584, -0.484234, -1.281961, -0.058160, -2.860554, -0.265195, -1.655357, 1.810852, 0.686490, -0.129861, -1.023600, 2.480591, -1.204899, -0.842177, -0.596075, -0.580947, -0.383060, -1.889659, -0.077926, 1.122478, 0.233547, 0.023356, 0.656460, -1.625884, -0.998433, -1.348194, 0.455943, 1.586826, -0.249676, 0.611781, 1.694345, 0.938767, 0.934505, -1.139524, -0.535455, -1.371842, -1.531794, -1.655446, 0.664407, -0.360252, 1.356037, 1.292781, 1.694829, -0.694999, -0.289380, -0.611472, 0.014235, 0.786110, -0.210534, 0.160611, -0.986672, 0.828771, -1.060977, -0.437840, 1.073428, 0.686817, 0.507301, 0.945078, 0.563399, 0.587414, -0.919150, -0.492664, -0.249485, -1.309486, -0.942244, 0.103900, 0.242000, -0.140187, 0.678244, 1.038158, 1.591696, -0.498914, -0.713459, 1.011112, -0.418695, 0.179414, -0.744385, -1.061182, -0.639207, -0.309561, -1.107782, 0.442813, 0.733172, -0.312097, -0.008863, 0.217318, -0.309280, 0.703689, 2.082483, -0.025158, -0.217275, 1.111380, -0.312404, -0.501761, -1.319379, 0.843017, -0.491185, -0.328615, -2.157022, -0.982700, -1.233174, 0.275016, 0.237246, 0.543454, 0.147259, -1.825428, -0.831559, -2.241464, 0.317358, -0.254904, -1.063616, -0.528527, 0.381869, -0.717303, -1.327763, 0.202781, 2.040626, 0.940327, -0.417828, 0.111837, -1.937566, -1.524740, 1.079186, -0.812008, 2.728725, -0.401091, -1.100778, 0.968973, 0.780684, 0.753094, -1.602348, -0.769126, -0.668304, 0.515670, -0.835429, 0.621628, -1.149018, 0.488431, 0.411247, -0.569995, 0.243786, -1.822899, 2.100520, 0.463380, -1.167050, -0.340112, -0.076574, 0.460609, 1.245818, 1.144194, -1.073804, -1.336356, 1.926519, 0.732360, -1.477801, -1.316168, 0.047259, -0.627070, -0.229594, -0.805999, 0.600884, 0.990705, -0.609192, -0.798750, 0.872692, 0.937063, -0.323447, 2.871616, -0.531921, 0.827662, -0.006886, 0.049655, -0.063115, -1.192432, -1.169224, 1.762000, -0.044798, -0.534325, -0.298343, -0.077906, -1.000037, -0.274247, -1.775476, 0.674259, -0.760887, -0.306521, 1.018695, -0.761243, 0.398712, -0.323686, 0.615993, 1.630701, 0.619615, 1.300986, 0.462491, 0.108679, 0.301135, -1.545958, 0.753607, 0.398092, 0.490709, -0.738653, 0.147129, 1.026423, 0.620080, -2.907449, -0.490195, -0.025168, -0.651507, -0.951932, -1.363866, 0.599453, 1.740867, 0.934134, 0.227936, 2.163285, -0.721143, -1.596901, 1.157426, -1.317045, -0.511804, -0.484685, -1.596244, 0.088449, -0.062781, -1.180691, 1.495677, 0.861199, -0.980752, -0.087046, 1.043560, 0.374902, 0.310324, 0.837729, -0.975785, -2.076079, 0.569342, -0.530965, -2.392098, 0.015678, -0.966770, 0.621173, 0.651022, -0.252235, 0.785422, -1.648217, -1.193201, 0.743098, -0.149356, -0.229308, -0.339430, -2.255997, 2.705487, -0.961928, 0.382274, 0.251098, -1.162365, -0.830047, 0.612514, 1.117482, 0.709976, 0.887568, 0.255098, -0.210429, 0.879077, 1.887006, -2.056711, -0.046913, 1.394084, -1.040551, 1.216761, 0.513911, -0.009769, 0.054156, 0.669614, -0.875619, -0.879960, -0.315495, -2.181774, 1.323698, 1.235317, 0.906991, 0.692222, -0.232224, 0.711802, -1.121761, -0.319626, -1.265987, -0.285759, -0.503947, 0.959616, -0.522615, -0.227509, -0.612520, 0.474007, -2.526826, 0.278075, -1.205121, 0.771113, 0.149123, -0.809881, -0.247451, 0.233745, 0.069097, -0.290915, 1.488276, 0.040352, -0.858144, 1.932050, -0.433662, -1.524598, -0.171841, 0.673445, 1.157464, -2.525804, -0.234460, -0.590567, -1.880041, -1.514791, -0.621075, 0.174272, -0.346065, -0.907222, -0.426922, -0.906698, -0.003719, -0.750335, 0.567493, -0.691667, -0.332419, -0.410227, 1.144540, 0.294669, -0.479069, 0.076921, -1.068625, -0.000040, -1.271460, 0.453549, -0.811271, 0.396292, 1.337204, -0.505309, 0.504452, -0.056127, -0.049573, -0.224637, -0.924415, -0.226021, 2.767811, -0.499822, 0.238916, 1.455410, 2.409404, 0.765089, 1.027142, -0.732396, 0.438889, 0.540349, 1.687249, 0.592111, -0.569481, -0.204368, -0.561730, -0.118713, -0.005295, 0.645404, 0.395124, -0.067770, -0.917294, -1.681609, 0.033654, -1.418023, 0.019211, -0.194692, -1.008386, -1.202643, -0.645315, -1.046724, 0.728620, -0.643703, 1.528484, -0.717905, -0.357343, -0.665428, 0.735647, 1.848674, 1.453481, -1.512419, 0.185966, -1.806614, -1.814222, 0.590736, -0.556669, -1.859202, -1.599929, 0.457145, 0.593688, 0.925193, 1.006301, 1.100023, -0.180675, -0.089713, 0.405569, 0.696484, 0.818583, 0.079157, -0.571366, 0.137363, 1.651717, -0.977439, 0.925075, 0.012146, -0.643164, -1.013904, -0.086907, -0.138112, -1.602633, -1.814572, -0.466615, -0.923824, 2.305109, -0.626958, 0.013557, -0.768376, 0.344966, -0.114292, -1.708193, 0.729413, 1.646970, -0.284462, 1.268415, 0.023695, 1.447427, -0.678493, 0.487337, -1.429773, 1.420931, 1.029969, -0.108640, -0.249168, -0.124584, 0.516319, -1.761558, 0.054916, 0.309581, 0.074176, -0.313250, 0.265805, -1.171613, 2.206824, -1.806538, 0.357016, 0.689345, 1.089329, -1.147482, 0.168832, 0.650902, -0.314960, 0.979762, -0.631349, -0.366186, -0.747488, -0.112594, 0.184929, 0.702753, -0.322038, -0.882463, -0.379425, -0.336891, 0.731327, -1.013576, 0.553206, -0.687139, 0.077979, -0.440938, 0.741133, 1.535822, -0.505320, -0.755037, -0.767538, -2.991638, -1.325684, -1.547404, 1.603531, -1.495010, -0.232593, 0.713062, -0.440391, 1.802875, 0.115387, 0.165683, -2.459484, -0.248380, -0.233782, -1.236610, -1.616550, -0.686213, 1.212663, 0.352518, -1.867745, 0.391217, 0.295719, 0.507461, 0.714676, 0.154403, 0.840564, -0.761439, -0.263041, -0.239408, -2.464345, -0.595947, 0.198922, 1.846304, 0.012942, 0.000918, 0.393114, 1.918203, 1.096173, -0.188537, -1.477900, 1.120755, -0.486376, 1.604251, 0.076044, 0.711321, 0.509937, 0.745275, 0.012120, 0.571369, -0.099875, -0.121695, 0.001356, 0.291662, 0.644422, -0.873065, 0.149963, -0.248319, -0.937181, 1.812800, 1.000859, 1.604721, -0.694614, 1.166088, -0.891790, -0.245980, -1.044806, 0.291431, 1.229583, 0.437321, 0.662905, 1.269442, -1.843804, 1.120986, -0.550116, -0.139720, -0.644274, 0.290627, 0.456884, -1.493160, 0.888222, -1.902829, 0.103934, -0.755085, 0.559701, 0.973925, 0.382425, -1.846877, -0.056663, 0.794203, 0.969839, 0.148291, 0.661202, -0.645339, 0.004266, 0.238014, -0.179047, -0.372602, 0.524936, -0.394560, 1.274504, 1.534236, 1.634632, 0.243235, -0.119428, -1.256966, 2.107261, 0.426591, -1.705651, 0.221400, -1.060943, -0.740140, 1.469806, 0.721159, 0.454433, -0.387493, 0.063305, 0.793529, -1.926678, -0.745509, 1.547774, -0.415599, 0.679532, 0.742551, -0.262276, 0.483877, -0.552918, -0.007194, 0.532652, 0.406929, -0.372980, -1.602074, -0.636809, 1.777902, -0.188021, 0.667559, -0.293030, -0.878388, 0.270273, -0.320048, 1.608794, 0.198568, 0.616044, -1.253145, 1.057194, -1.034038, 1.543244, 1.063046, 1.340640, -1.009972, 0.001709, 0.012912, -0.706588, -1.131786, 0.235221, 0.991750, -1.701807, -0.482821, 0.983203, -0.923239, 1.311897, 0.282940, 1.035744, -0.070229, 0.462706, 0.982819, -1.089813, -0.245042, -0.648462, -0.964822, -0.644799, -0.447359, 1.037254, 1.664551, -0.396625, -0.434554, 0.786647, -0.067926, 1.339954, 1.791237, -1.683401, 0.035166, 0.289901, 1.443648, -0.257986, -1.787606, 0.865624, 0.159365, 2.366563, 1.300579, 0.149055, -0.927566, -0.495982, -0.556095, -0.307571, 0.188555, 1.559767, 0.203126, 0.414107, 2.202690, -0.296530, 1.277944, 1.397699, 0.416067, -0.870662, -1.643675, 2.525369, 0.669229, -0.997304, 0.460952, -0.320531, 0.513951, 0.102732, 0.368117, 0.152434, -1.486880, 0.713778, 0.577108, 0.633847, -0.061359, 0.127291, -0.227663, -0.565365, 0.533232, 0.570740, 1.041588, 0.940619, 1.167342, -0.002836, 0.164584, 0.537048, -0.629868, 0.654777, 0.943004, -1.230325, 0.809898, 0.329693, 0.175072, 0.685910, -2.340250, 0.181857, 0.520950, -0.826398, 0.505053, -0.253696, -0.019515, 0.364053, 0.180645, -0.918615, 0.763246, 1.551783, -1.093729, -0.425336, -0.013297, -0.499103, 0.052858, -1.049092, 0.668183, -1.476376, -0.276600, -1.240288, 1.358208, -0.468263, 0.132595, -0.782875, -1.053637, -0.289345, 0.168417, -0.167430, -0.335913, 1.761245, 1.757716, -0.560587, -0.760889, 0.470775, -1.170096, 1.260187, -1.879163, -2.770560, 1.029848, -1.214506, 0.843518, -1.180444, -0.005717, -0.301006, 1.740381, 0.074337, -0.305847, -0.738706, 0.338764, -1.078533, -0.664572, -0.102138, 0.120747, -0.403462, -0.533463, -0.119733, -0.664668, -2.002666, 0.247811, 0.502806, -1.313671, 0.370975, 0.232601, 0.132243, -0.598320, -0.664703, -0.552567, 0.130383, -0.383350, 0.576975, 0.518866, -0.330835, -0.722144, 0.037399, 1.227627, 0.657799, 0.651969, 1.623170, -0.809349, 0.651820, -3.065103, 1.507050, -0.707046, 0.383874, -0.297895, -0.030726, -1.551289, 0.815146, 0.436793, 0.843672, -1.413977, -0.707373, -0.966325, -1.009925, 0.726912, 0.368701, -0.074487, -0.952476, -2.084474, 2.028796, -0.164717, 0.052187, -1.718413, -0.667007, -0.222215, 1.319468, 0.404146, -0.725416, -0.775996, -1.765674, -0.304063, -0.442627, 0.070624, 0.168125, -1.103981, 0.369296, -1.896372, -1.317223, 0.217692, 1.546734, -0.681958, 0.720146, -0.680538, 0.208336, -0.012354, -0.376611, 0.355713, -0.429052, -0.827290, -0.314084, 0.597497, 1.839279, -2.118891, -0.941276, -0.047448, 0.017547, 2.282560, 0.942305, 0.099224, -0.211880, 1.282972, 0.562168, -1.003576, 0.122679, -0.137638, 0.852672, -1.207618, -0.291122, -0.674193, 2.067981, 0.387535, -0.598566, 0.492513, 1.566337, 0.316197, 0.803851, -0.910228, -2.760594, 1.022515, -0.902013, 0.990269, -0.650464, -0.033795, 0.260880, 1.231654, 0.916473, 0.115825, 1.058442, 0.302749, -1.317326, 0.055116, -0.646666, 1.149097, -0.291527, 0.431140, -0.063607, 0.216260, -0.350655, -2.117795, 0.242829, -0.050827, 1.230035, -0.566987, 0.076513, -1.326295, 1.032293, -0.259736, -0.620771, 0.954626, 0.766084, -1.069348, 0.112920, -0.822272, 1.267524, 0.971574, -0.133473, -1.507629, 0.569266, 0.060907, 0.008979, 0.381692, 1.056639, -0.028541, 0.050194, -0.647694, 0.176354, 0.007581, -1.848455, -0.158585, -1.281686, -1.067409, 0.444980, 1.513490, 0.931571, -0.274106, 2.300519, 0.887455, -0.386968, -1.207925, 0.822575, -0.913211, -0.445866, 1.593749, 0.320163, -0.428290, 1.162631, 0.158736, -0.179814, -1.145749, 0.105351, -0.467657, 1.769470, -0.652457, -1.808436, -1.667299, 0.897776, 0.414695, 0.842697, -0.233000, 1.119390, 0.225108, 0.709879, -0.869811, -1.369341, -1.636471, -0.822347, -1.080083, -0.830137, 0.329208, 0.350142, -0.821055, -0.531446, 0.198401, -0.352964, 0.966670, -0.108505, 0.120679, -0.487222, -0.713007, 1.284985, -0.128009, 0.218244, 0.883929, -0.866034, 0.694990, -0.408727, 0.712352, -0.794204, -0.221023, -0.659065, -0.001451, -0.051257, 0.966171, 1.533197, -2.153540, 0.957859, 1.683044, 1.548128, -0.469343, -0.912069, 0.623761, 0.459791, 2.378263, 1.379164, -2.479560, -1.381770, 0.223994, 0.581903, 2.462769, 0.357460, 0.580593, -0.679694, 0.302157, 0.993067, 0.885331, -0.006423, 0.497747, -0.177228, -0.369860, -0.564683, -0.638989, -0.881432, -1.665654, -0.130389, 0.585423, -0.753778, -0.932322, 1.898966, 0.756286, -0.284318, -0.895073, -0.636077, -0.395144, 0.622954, -1.594219, -0.855068, 0.547991, 0.138027, 0.083437, -0.793249, -1.639088, 0.706620, 1.457656, -0.699871, -0.224520, -1.793717, -0.726605, 0.382871, -0.692738, -0.288011, -0.794972, 1.579095, 0.253690, 0.997295, 1.925212, -0.220757, -0.360908, -0.055112, -0.153784, -0.233199, -1.201126, -0.545576, -0.439421, -0.971251, 0.605837, 0.776413, 0.394598, 1.656441, -1.544852, -2.957562, 0.228542, -0.983380, -1.292152, 0.459452, -0.197741, 0.998687, 0.308993, 0.655450, -0.493743, -1.486049, 0.382888, 0.631073, -0.371239, 0.514159, -0.097317, 1.225145, -0.638378, 0.342363, -1.580652, -2.446595, 0.769604, -1.444124, -0.657230, -0.113286, 0.577576, 0.238484, 2.364442, -1.381381, -1.207125, -0.899980, 0.419608, 0.689530, 0.208504, -0.266494, 1.227303, 1.123001, 1.237160, 0.056717, 0.654519, -1.299933, -0.400978, -0.623902, 0.525421, 1.187168, 0.031041, 1.871590, -1.473323, -1.173467, 0.694392, 0.310131, 0.998769, -0.093835, -0.361254, -0.128190, 0.630134, 0.327430, 0.517911, -0.355291, 0.844662, 0.960411, 0.386081, 1.041679, -0.091655, -0.027101, 1.410294, 0.411787, -1.332057, -0.459408, -1.070325, -0.614363, -0.825695, -0.928216, 0.604325, -1.460609, -0.192262, -0.004410, -0.524866, -0.179887, -0.309788, -0.139984, 0.717091, 0.223635, 0.128181, 1.414812, 0.219963, 0.256240, -0.190217, -0.388563, 1.462272, 0.875212, -0.481109, -0.684982, -0.994921, 0.517506, -0.950163, -0.492670, 0.475388, 1.314657, 1.750620, -1.213376, 1.648163, -0.195402, 0.664914, -0.094891, 0.973404, 0.454690, 0.188792, -0.737362, -1.051652, 0.193673, 0.706130, -0.814144, -1.296558, -0.068961, 0.239795, -0.205138, -1.516257, -0.930584, -0.772402, 0.242668, 2.736581, -0.333195, -0.351602, 1.468608, 0.715578, 1.155788, -0.091197, 1.564632, 1.249670, -0.126512, 0.786249, -1.518057, 1.600814, -1.204734, 0.009395, 1.148951, 0.589218, 0.032962, 0.491163, -0.600983, 1.023351, 0.581409, 1.100210, 1.244052, 0.901803, 0.265863, 0.707759, -0.485055, -0.043618, 0.857998, 0.006887, -0.425407, 1.041564, 2.396044, -0.339230, 1.347777, 0.112678, 0.341312, -1.573165, 0.904727, -0.439225, -0.704625, -1.605155, -0.132223, -0.414968, 1.809788, 1.380576, -0.445033, 0.962185, -0.690909, 0.627085, -0.819576, -1.038175, -1.797299, 1.142296, -2.796450, -0.397238, -0.548388, 1.001740, -1.052414, -0.471114, 0.105292, -0.391651, 0.233797, 0.917240, -1.001446, 0.532974, -0.490091, -1.097559, 0.659390, -0.942814, 1.192824, -0.376587, -2.398330, -0.522802, 0.104258, -2.075186, -2.474453, 0.375520, 0.852840, 0.286258, 0.437765, -0.125125, -0.427362, 0.757399, -1.009901, 0.703712, 0.349340, 0.068894, 2.156740, 0.232376, -0.222264, -0.385089, -0.251131, 0.048317, -1.095175, -2.171664, 0.480706, 0.051593, -0.311058, -0.422785, -0.399902, 1.382518, -2.428111, 0.259279, 0.195612, 1.250679, 0.476466, -1.284679, 0.859136, 0.165677, -0.075955, -0.795367, 0.011942, 0.044537, 1.854053, -1.176886, -0.249800, 0.568523, 1.325002, -1.483092, -0.199339, 1.658340, -0.645532, 1.746280, -1.907639, -0.081327, -0.491918, -0.079938, 0.165468, -1.028362, -0.282269, -1.389076, 1.354632, -0.646270, 0.400435, -0.700321, -2.046731, -1.270018, 2.537819, -0.195418, 1.616142, -1.002783, 1.938049, -0.231846, -1.275888, 0.975771, 1.867821, -2.517521, -1.055571, -0.979233, 2.479350, 0.423528, -2.692297, -2.634333, 0.075809, -1.943608, 0.091067, -0.511079, 0.211322, -0.560384, 0.531533, -0.711254, -0.992869, 0.377976, 0.663449, -0.207054, -0.161622, 0.783406, -0.054875, 1.458825, 1.144048, -1.265718, 0.020294, 0.323040, -0.845896, 1.813638, 2.005624, -0.434095, -0.109263, 0.161651, -0.624304, -1.716682, -0.819730, 2.222390, 0.926520, 0.196876, 1.408468, -1.334636, -0.137650, -0.019383, 1.261439, 0.618483, 1.216183, 0.582504, -1.212431, 1.625142, -0.990585, -1.418532, 0.977245, 2.328674, -0.887481, -2.217097, -1.159147, -1.240270, 0.308745, -0.818975, 1.308973, 0.506362, 0.159078, 0.110513, -0.680036, -0.120664, 0.097619, 0.149916, 0.342207, -0.487246, 2.650337, -0.390253, -1.253697, 0.671902, 1.799849, 0.673474, -0.277662, 0.847310, -1.149167, 1.045030, -0.450937, 1.099226, -1.101415, 1.581423, 1.290898, -0.945054, 0.699864, -0.449924, -1.330844, -1.199549, -1.037826, -0.261741, 0.322473, 1.208010, -0.108038, 1.853039, 0.263362, 1.242270, -0.269046, 1.301799, -0.140519, 0.375859, -0.459513, -1.946383, -1.168694, -0.387385, 1.079513, 0.224769, 0.464253, 1.877396, -1.981441, -0.395818, -0.614816, 0.584426, 0.024514, 2.307854, -0.367066, 0.074375, 0.109017, -1.159713, 0.498944, -0.986801, -0.619723, -0.286456, 0.079653, -0.129912, -0.075097, 0.535491, 2.374083, -0.480849, 0.906860, -0.145243, -0.429104, 0.535679, -0.106580, 1.272346, -0.395097, -0.587267, 0.153514, 0.003306, 0.275903, -2.010791, 0.369468, 2.565899, 0.658069, 0.625572, -0.292657, 0.426859, -0.039537, 0.466782, -0.213646, -0.998102, -0.432814, -0.096134, -0.400232, 0.118353, -0.250267, 0.347886, 1.054453, 1.375482, -0.749868, -0.200890, -0.533132, 1.440839, 0.078127, 1.293177, -0.800576, -0.372939, -0.823248, 1.142839, 0.779238, -1.025555, -0.528999, -0.489301, 0.002016, 1.384675, -0.063106, 1.580018, -0.511192, 0.515575, -0.242889, 1.597541, -0.449379, -2.313836, 0.433332, -0.328102, -0.348891, 0.049113, 1.143714, -0.606944, -1.021334, 1.020627, 0.463043, 0.211384, -0.167821, -1.121984, -0.741784, 0.682838, -0.582474, 0.085909, 2.029262, 1.135633, -1.250152, -1.223211, 0.007997, -1.245446, -0.435278, -1.105139, 0.616406, 0.753225, 0.854637, 0.823325, -0.422497, 0.593634, -0.593916, 0.304636, 0.280708, 1.694358, 1.329585, 0.247179, -0.279895, 0.651856, -0.102773, 0.913088, -0.440420, 0.123232, -0.863050, -0.171629, 0.400619, -1.512546, 0.062961, 1.398601, 0.088090, 0.279573, 1.282322, -0.080128, -0.004702, -0.976383, -1.642297, -0.616974, -1.043240, 0.229035, 1.730206, -0.600759, -0.164065, 0.716513, 0.730629, 1.054250, 0.866217, -0.216470, 0.993549, 1.460599, 0.591707, 0.314538, 0.796852, -0.332350, 1.264228, 1.797137, -0.195246, 0.113306, -0.728226, -1.068509, 1.119313, 0.174270, 1.602209, -1.230554, -2.169655, 1.684373, 0.943918, 0.861171, 2.066307, -0.161146, 0.467258, 0.210221, -0.902464, -1.913673, 0.977871, 0.298279, -0.112413, -0.010105, 0.669705, 0.935085, 1.659433, 1.734217, -0.008280, -0.437842, 0.058607, 0.304021, 2.458997, 0.169586, -0.968576, -0.972189, -0.327630, -0.573669, -0.846364, -0.359719, 1.043108, 1.911941, -0.662465, -1.018908, -0.816293, -0.568155, -0.420614, 1.480624, 0.229438, -0.493321, -0.645297, -0.603714, 0.961630, 1.163723, 0.556973, 0.403312, -0.282806, 0.806484, -0.551240, -0.499907, -0.639638, 1.585647, -1.076977, -0.494800, 0.345501, -0.081872, -2.397432, 0.169326, 0.149086, -1.075565, -1.189096, -0.578485, 0.052927, -1.336818, 0.820895, -1.699156, 0.161837, 0.128269, -0.682065, -0.511034, -0.302649, -0.297757, -1.770633, -1.402995, -1.574083, -0.802078, -0.808154, 0.853138, 0.929639, 1.234076, 1.021366, -0.612301, 0.939807, 1.422796, -0.055038, -0.376734, 1.556973, 0.607052, 1.083412, 0.130041, 0.255501, -1.094005, 0.352081, -0.584930, 0.159433, 0.296823, -0.740273, 0.008519, 0.141079, -0.384061, 0.442857, -0.865421, 0.474803, 1.979470, -1.906425, -0.224100, -1.591969, 0.741749, 2.277313, -0.934287, -0.549533, 0.762357, -0.000739, 0.719938, -0.831228, 1.335212, 0.000618, 0.084169, 0.634156, -0.037498, 0.061090, -0.708419, -1.107336, 0.218445, -0.798154, -0.077214, -0.041986, -0.365435, 1.920474, -1.003709, -0.575926, -0.896164, -0.977762, 0.950663, 0.385647, 0.026513, 0.007574, -0.604650, 0.076311, -0.566295, 1.767049, 3.196131, 0.000131, 0.377919, 1.602773, -1.779870, -1.514597, 1.440958, 0.117473, 1.601819, 0.558959, -0.792584, -1.261061, 0.562293, -0.410142, -1.819307, 2.783495, 0.003900, 0.673560, -0.801667, -2.213346, 1.375020, -0.761294, -0.158954, -0.151664, 1.487704, -1.573357, 0.171300, -0.873633, -0.510119, -1.462343, -0.283168, 0.697521, 1.124460, 0.945671, 1.712378, 1.721964, 0.230917, 0.194659, -1.396264, -0.576336, 1.537436, 0.237531, -0.597759, -0.738369, -0.601753, 0.230585, -0.543026, -1.382452, -0.767581, 0.539591, 0.658891, 0.370795, -1.123319, -1.128508, 0.431978, 0.390993, 1.178774, 0.410019, -1.303392, 0.942956, 1.327732, 0.186054, 0.021305, -0.880841, -0.017911, 1.762350, 1.378189, 0.279522, -0.326773, 0.180000, -1.097935, 1.209249, 0.694255, 0.680515, -1.146881, 0.528379, 0.655943, -1.664021, -0.675777, 1.142683, -0.055859, -0.378568, -0.579741, -0.408200, 0.269103, -1.362701, 0.873458, -1.072699, 0.108220, -1.072228, 0.052957, 0.972322, -0.670796, 0.771325, 0.698519, 1.662428, -0.955793, 1.267732, -0.884990, 1.103815, 0.349899, 0.689126, -0.697367, -0.279191, 0.159953, 0.278799, -0.830304, -2.486086, -0.809876, -0.907824, 3.074993, -0.528381, 0.608962, 0.808748, 0.064482, 0.459938, -0.666045, 1.579249, 0.464766, -1.973515, -0.097804, 1.183425, -0.403961, 0.463900, -0.902652, 1.469840, -0.164329, 1.171188, -0.075618, -0.079109, 0.857114, 0.537591, 0.135858, 1.139763, 1.885059, 0.848467, 0.975857, -0.187125, 0.493947, 2.722894, -0.259751, -0.103315, 0.634920, -0.185781, -0.055063, -0.477004, 0.268640, -0.061299, 0.722828, -0.000579, -0.363334, -0.006565, 0.831911, -0.347205, 0.652493, 0.303242, -1.390029, -0.324232, -2.590419, -0.347550, -0.520888, 0.712762, 1.347832, 0.712340, 0.749463, -1.300805, -0.239872, 1.426470, 0.879974, -0.317680, 1.114858, 0.177073, -0.842019, 0.071504, -1.036478, -0.425654, 0.409760, 2.089564, -1.131355, -0.224425, 0.176514, 0.003063, -1.022606, -0.607528, -0.184959, 0.140400, -0.029518, -0.184174, 1.240667, 1.911520, 0.093550, -1.106623, -0.234596, -1.186179, -0.143543, -1.053546, -0.259176, 0.310255, 0.031607, -1.377744, 1.302794, -1.220217, 1.900659, 0.008092, -1.108560, -1.359943, -2.354624, -0.107920, 0.966216, 0.408460, -0.676664, 0.640905, -1.063868, -1.801584, -0.803397, 0.999650, -1.071502, -0.228426, -0.557674, 0.424089, -0.020392, 1.626072, 0.518945, -0.644892, 1.410088, -1.076187, -0.183477, -1.476076, 1.066781, 0.045591, -0.708241, -1.061886, -0.069735, 0.268439, 0.996012, 1.577090, 0.652477, -1.169383, -1.877606, 0.241385, -0.716275, 1.076989, -0.004071, -0.144108, -0.737553, 1.776167, 0.247408, 1.470623, -0.401614, 0.798566, 0.999228, 0.117658, -1.185933, -0.383031, -0.383739, -0.988735, 0.924957, 0.884045, 1.678148, -2.295000, 0.313245, -0.216504, 0.230821, -0.622617, 0.251752, 0.110113, 0.717413, -0.804830, 0.851634, 0.558755, 0.247025, -1.310933, -1.333926, -0.185024, -0.328081, -2.074067, -0.726968, -1.285351, -0.159432, 0.630274, -0.164899, 0.601325, -0.641290, -1.510466, 0.923575, 0.155575, -0.893360, -0.445703, -0.851990, 0.099344, -0.922377, 0.313641, 0.205622, -0.349394, 0.608267, 0.285746, -0.392929, 1.175276, 1.965447, 0.558696, 0.150607, -0.748425, -1.521350, 0.488068, 0.093578, 0.510095, -0.073489, 0.137762, -0.180477, -1.113647, 0.757016, -0.357791, -0.407108, -0.507146, 1.248808, 1.846160, -1.376829, -0.176339, 0.661752, -0.797810, 1.703219, -0.303573, -1.071365, 0.953577, 1.271903, 2.462126, -0.535654, 1.303970, 2.613081, -0.456449, 1.181750, -1.107752, -0.163638, -1.374968, 0.879616, 0.322532, -0.224062, 0.194928, 1.504785, 0.020028, -2.529463, 0.324772, 0.003576, 0.012668, 1.084877, 0.289536, 0.448849, 0.605379, -0.097210, 0.098546, -1.305508, 1.396452, 1.264388, 0.792639, 0.323461, 0.638596, -0.358651, 0.956730, 1.160253, 1.653206, -0.309618, 0.080314, 0.671156, -1.409953, -0.235518}, + { 0.382059, -0.756124, -0.268898, 0.670647, -0.722895, 1.233612, 0.019898, -0.227095, -1.047232, -0.102094, 0.262718, -0.056508, 0.047468, 0.031591, -1.147398, -1.131913, 0.837965, 2.021922, 0.763104, -2.425157, -0.823654, -0.121762, -0.793927, -0.604823, 0.498514, 1.295028, 2.282117, -0.730465, -0.112153, -0.351011, 2.763001, -0.115223, 2.129663, -0.188060, 1.015183, -0.469658, -1.064144, 1.883169, -1.472189, -0.583824, -0.351299, 1.601087, -0.158024, 1.030751, 3.135841, -1.037427, -0.452121, 2.110509, 1.046477, -0.982384, 1.466126, 1.351951, -0.949733, 0.354520, -1.524563, 0.065414, 0.497113, -0.734463, -0.492778, 1.666764, 0.200520, -2.004752, -1.030668, -0.323292, -1.114985, 0.788598, 1.704072, 0.513804, -0.234502, -0.427492, 1.331277, 1.338116, 1.600348, -0.896026, -0.305012, 1.462368, -1.064661, -1.037984, -0.448500, -0.467702, 1.689152, 1.115221, 0.822431, -0.364413, 0.233804, -0.574877, 0.631714, 0.503844, -1.209398, -0.035902, 0.519446, 2.187777, 1.488170, 1.956980, -0.775304, 0.054704, -1.033544, 1.270657, 0.650151, 0.066474, -0.165130, 0.741537, -1.244502, 0.193526, -0.345141, 0.291083, 0.470458, 0.798296, 0.374880, -0.304612, 0.416809, -2.090556, 0.086823, 0.934948, -0.457083, -0.809578, 1.342113, -0.041538, 0.398531, -0.472814, 0.200100, 0.036538, -0.440097, -2.455165, -0.916274, -2.536629, 0.406445, 0.006890, -1.014239, 0.500616, 2.705946, -0.022637, 0.538087, -2.044204, -0.353036, -1.296478, -1.523036, -0.196764, -1.287256, -0.577633, 0.544843, 1.022733, -0.013695, -0.347855, -0.550234, 0.084698, -1.354719, 1.720470, 0.342556, 0.599860, -2.525371, 0.469707, 0.371450, -1.794418, -0.027776, -0.228502, 0.049353, 1.204295, 0.049864, 0.437735, 0.222994, 1.888575, 0.998941, 0.282273, 1.345065, 0.513661, -1.163260, 1.623799, -1.164773, -1.830389, -1.062759, -1.548091, 0.132407, 0.071544, -0.536221, -2.505579, -0.189660, -0.498596, 0.814257, -0.289688, 0.113668, -0.128814, -0.085521, -0.494300, -1.048639, 0.675048, -0.048130, -0.416781, 0.697961, -0.118799, 0.308944, -0.957638, 0.682217, -0.083334, 0.345109, -2.258950, 1.311002, 0.742619, 1.338444, 1.137395, -0.247233, 2.207792, 0.034036, 1.122454, 0.001738, -0.477747, -0.664504, 0.034436, -2.298915, -0.688178, 0.485656, -0.155005, 0.699738, -0.182813, -0.277011, 0.269205, 0.277718, 2.345576, -0.119955, -0.212371, 0.079055, -0.675778, -1.075429, 0.082380, 1.528678, -1.655458, -0.668242, 1.481890, -0.733430, 2.166434, 0.178931, 1.212819, -1.575392, 0.445340, 0.367124, 0.454937, 1.617629, -1.830756, 1.902955, 0.325177, 0.015093, -0.829517, 1.900083, -0.315760, -0.705444, -0.337590, 0.347599, 0.562739, -0.551997, 0.711850, 0.552669, -1.563068, -1.330176, -1.040038, 1.064567, 1.614874, 0.934245, -1.642661, 0.717998, -0.610720, -0.983824, 0.859206, -0.964966, -0.320549, -0.388639, 1.195694, 0.817436, 0.664509, 1.687307, 1.669409, -0.014416, -0.914878, 0.045907, 0.197022, 1.022861, 0.055055, -0.066334, -1.712152, -1.004981, 0.279715, 0.674143, 1.665503, 2.384454, -0.790930, -1.360469, 0.899800, -0.093856, -0.120326, -0.282830, 0.955345, 0.289944, 1.986020, 0.486134, 1.398686, -0.266424, -0.888304, -1.435087, 0.093107, 0.759727, 0.396672, -2.664654, 0.911650, 1.075412, 2.049538, 0.621762, 0.665132, 0.008100, 0.143697, 1.156016, 0.227429, 0.108149, -1.560778, -0.660750, -0.143933, 0.024302, -0.978624, 0.993727, -0.227724, -0.162943, 1.215951, 1.270337, -0.470716, 1.143346, 0.728295, -0.709416, 0.355111, 0.605511, -1.026261, -0.385031, 0.340678, 0.862034, -0.613504, -0.750120, 0.097246, -0.962190, -0.602672, 0.453841, 1.866659, -1.427991, -1.492646, -0.692929, 1.255367, -2.168110, -0.237477, -0.608745, 0.199082, -2.008715, -1.333466, -0.210509, 3.017457, 0.697097, 0.351825, -0.019699, -1.488519, 0.090121, 0.795999, 0.102292, 0.204322, -0.630613, 0.929686, 1.323448, 0.162824, 0.465104, 0.562041, 1.001537, -0.109705, 1.105437, -1.957387, -0.924382, 1.440254, -0.616247, -1.104835, -0.361146, -0.126514, -0.364270, -0.641116, 0.389182, 0.487654, -0.632764, 0.258316, -0.065638, -0.232363, 0.934742, 3.004745, -0.466283, -0.856876, -1.719915, 0.081078, -0.733059, 0.745355, 0.922169, -0.205358, -1.573404, 0.700384, 2.055251, 1.944711, -1.240147, 0.297236, 1.653817, -3.043529, 0.369082, -0.376191, -0.793096, -1.058544, 0.202065, 1.702075, 0.980632, -1.538775, -0.087307, 0.224487, 1.661905, -0.435689, 0.944074, 2.596069, 0.586904, 0.357412, -0.029610, -0.701129, -0.596044, 0.049660, 1.366184, 0.236003, -0.385317, -1.325649, 0.525150, 1.503238, -0.034382, 0.393256, -1.117113, -1.050756, -0.430850, -1.681886, 0.913539, 0.075520, -0.858186, 1.138578, 0.592154, -1.308793, 0.060918, -1.914763, -1.781331, -0.494782, 0.879823, 0.009281, 0.705704, 0.662487, -0.562745, 1.685661, 1.204443, 0.261912, -1.174259, -0.820031, 0.179824, -0.362322, 0.878144, -0.908297, 0.331722, -1.319254, -0.717314, -1.085246, -1.958957, -1.296220, -1.099202, -0.391190, 1.254537, -0.964507, 0.348543, 0.766253, -0.495980, -0.439942, -0.261941, -1.351386, 1.509463, 0.418022, 1.429536, -1.450138, 0.902776, 0.124037, -0.610596, 0.203545, -0.498523, 0.776397, 1.514069, 0.039039, 1.017294, -0.563437, 0.679385, 0.169064, 0.269506, 1.080527, -0.465674, 0.874369, -0.219138, -1.489180, -2.615988, -0.367151, -0.055648, 1.501447, -0.619220, -2.449960, 0.464516, -0.000535, -0.326176, -0.110683, 0.811327, -1.274049, 0.881897, -0.248487, 0.325582, -1.875550, 0.062114, -1.237213, 0.087808, 0.173102, 1.246930, -0.271178, 0.651691, 0.212459, 1.478099, 0.398686, -0.281847, -0.963581, 0.734263, 0.990676, -0.841449, -0.198852, 1.382271, 0.178462, -1.368272, -0.349254, -0.378986, -0.271455, 0.736766, 1.163576, 0.563409, 0.368660, 1.346949, 0.981946, -2.272106, -1.379623, 2.029833, -0.428224, -1.055603, -0.931259, 0.782737, -0.577287, 0.360062, 0.964592, 0.327885, 0.167229, 0.213906, -2.060635, 0.223158, 0.437575, 0.559332, -0.398564, -1.245556, -0.964019, 0.780927, 1.239923, 0.089169, -0.149114, -0.919069, 0.634949, 0.909422, 0.462337, 0.659830, -1.744606, 0.495139, 1.736703, -0.263927, 0.747554, 1.943027, 0.180411, -0.330468, -0.943574, 0.058006, 0.979571, 0.387951, -0.008286, -1.581976, -0.657403, -1.084765, 0.140902, -0.449816, -0.357501, -1.147356, -1.487937, 0.348165, 0.195799, -1.942437, 0.807144, 0.785277, 1.015885, 0.826304, 0.899044, 0.347857, -0.413957, 0.224523, 2.176913, 2.646751, -0.710003, 0.081168, -0.705328, -0.196207, 1.229838, 0.258339, -1.479319, -0.109133, -0.681406, 0.153488, 0.663806, -0.324739, -0.363910, 1.700875, 0.141772, -1.249241, -1.696840, -0.119858, -0.497950, 1.025684, -1.448539, -0.192165, -0.060901, -1.692251, -0.045484, 0.630726, 0.335616, 2.048478, 0.221174, -0.103263, 0.652923, -1.804758, 0.228436, 1.222847, 0.358293, 0.421496, -0.791960, 1.947306, 1.248854, -0.867100, -0.666459, -1.531495, -0.390254, -1.437477, 1.594514, 1.038594, -0.745096, -0.080827, -0.299325, 0.066211, -1.634254, -2.234896, -1.152932, 1.052401, 0.329964, 1.335873, 0.432223, -2.088759, -1.020118, 0.948494, -0.485056, -1.492027, -0.113937, -1.343985, -0.829372, -0.268781, 0.662770, 0.599540, 0.833252, -1.501010, 0.533089, -1.754615, 1.959507, -0.498201, -0.002809, -0.110131, -0.902340, -0.876667, 0.481718, -0.998151, -0.347933, 0.936260, 0.865499, -0.200296, -1.041223, 0.610695, 1.061170, 0.375502, -0.219200, 1.789266, 1.308462, 1.543149, 2.161704, 0.119549, -1.309706, 2.051585, -1.100319, -0.434722, -0.603976, -1.127354, 1.992013, -0.191003, 0.032470, 1.004440, 0.549231, 0.705583, 2.208463, 0.717833, 0.167186, 0.275973, -0.776252, -0.781164, -0.903851, -0.887587, -0.078421, 1.166423, -1.426779, 0.595513, 0.527694, -0.052090, 0.019514, -1.108611, -0.882998, 0.141618, 0.453112, 0.749485, 0.269211, -0.308234, 1.104774, 0.553994, -1.128259, -1.135981, -0.345478, -0.729224, 0.149570, 1.639662, 0.110621, -1.922511, -0.746145, 0.187155, -1.725436, 1.352881, -0.396462, 0.665984, 2.734129, -0.786993, 0.650727, -1.645926, -0.365741, -0.928118, -0.162804, 1.215651, -0.105507, 0.215606, 1.080293, 1.194821, -0.554374, -0.255487, 0.349845, 0.853962, -0.972678, -0.285763, 0.480039, 0.166039, 0.335910, 0.671465, -0.829052, -0.160457, -0.111635, 0.820356, 0.863077, -0.267192, -0.078685, 0.631299, -0.669211, -0.204799, -0.136229, -0.202992, -0.087659, 0.128671, 1.260443, -1.249178, -2.798633, 0.340411, -0.473649, -1.299904, -0.622390, 0.506174, -0.208705, -0.346622, 1.211028, -1.634334, -0.447706, -1.037892, 0.841851, -1.264424, -0.969955, 0.168473, 0.612454, -1.405871, 0.003603, 2.402675, -0.561010, 0.485877, -0.151942, -0.061614, -2.191525, 0.458814, -0.276728, 0.530174, -0.751052, -0.846799, -1.531303, 0.041635, -0.243618, 0.740602, -0.027810, 0.034180, 0.096023, -0.979097, -1.048058, 0.381958, 2.025718, -0.117946, 0.235742, 0.237039, 0.239039, 0.058563, -0.835180, 1.450489, -1.070995, 0.833846, 0.740038, 1.778937, 0.490873, 0.439209, -3.230690, -0.610515, -0.118432, 0.229473, 0.061777, 0.217299, 0.704839, 1.528250, -0.485037, -1.411039, -0.631554, -0.582107, -0.186172, -0.522741, -0.490199, -0.416542, 1.086767, -2.098762, 0.936904, 0.065106, -0.229315, -1.983214, 0.037280, 1.661507, -0.906222, 0.156427, -0.715053, -0.573588, 0.783703, -1.645982, -1.512202, 1.449465, -0.897894, 0.982410, 1.627641, -1.316233, -0.236404, 1.291026, -1.694265, -1.829128, 1.919201, 0.906396, -0.339507, 0.503020, 0.346296, 0.815150, 1.020208, -0.261457, 1.428235, 1.713231, 0.324184, -0.311596, 0.280373, 0.167352, -1.741678, 0.142945, 0.224572, 0.790027, -0.187601, 1.810110, 0.254688, -0.511187, -0.879314, 0.136074, -0.201431, 0.487789, 1.411333, -1.584449, -0.569379, 1.030299, 0.312562, 0.464376, -0.750697, 0.151506, 0.147195, 0.819245, 0.249036, 0.490367, -2.129723, 0.197688, 0.209628, -0.522797, 0.270370, -1.839541, -1.225898, 1.291117, -0.680506, 0.530471, -0.653734, 0.539361, -0.056638, -1.450216, -1.272983, -0.170609, -1.956840, -2.456795, -0.531451, 0.451671, -1.162901, 0.138955, -0.130039, -0.200198, 1.309971, -1.170939, 2.640239, 0.961979, 0.007073, -1.018755, -0.139291, 1.483178, 0.267623, -0.341609, -0.531584, 0.086517, -0.751275, -0.554852, -0.333852, -2.284164, 1.769114, 0.231000, 0.598336, 0.526093, -1.110846, 0.600715, 2.275986, -0.018750, -0.080620, 0.217101, 0.538192, -0.194818, -0.916838, -0.157432, -0.596418, 0.353062, -1.293293, 0.925400, 0.268169, 1.704831, -0.148937, -1.045687, 0.097606, -2.001956, -0.772268, 1.257815, 0.137249, 0.891564, -1.183802, -1.063159, 1.238094, 0.973459, 0.757664, -0.192597, 0.008110, -0.692726, 1.954843, 0.305383, -0.004067, 0.347564, 1.098256, -1.411022, 0.428267, 0.288067, 1.355488, -0.122372, -0.536689, -0.545794, 0.485193, 1.661622, -1.237771, 0.380034, 1.757733, -0.966951, 0.446081, 0.826341, 0.034387, -0.344282, 0.122601, -0.133951, -2.647708, 0.240524, -0.244076, 1.557510, -0.505505, -1.457286, -0.112656, -1.023001, 0.599384, 0.884535, -0.626787, -1.346594, 0.935042, -0.775457, -0.930951, 0.590213, 0.452432, -0.938790, 0.805782, -0.350595, -0.592970, 1.680689, 0.843593, 0.132452, -0.841636, -0.930182, -0.427818, -0.022887, -0.397914, 2.337185, 0.066307, 0.029618, -1.055913, -1.327883, 1.010142, 0.423029, 0.818162, 1.112986, -1.100333, 1.129665, -0.521119, -1.009762, -0.176153, 0.954177, -0.238755, 0.163068, 0.721406, -0.406305, -0.371310, -2.167452, -0.383150, -2.178418, -0.211284, 0.632274, 0.428763, -0.549847, -0.077475, 0.358896, 0.935344, -0.116820, 0.042490, 0.632999, -1.496621, 0.294719, 0.251196, 0.211936, -0.272773, 0.505324, 0.468646, -0.416746, 0.517494, -1.180855, -0.334057, 1.065670, 1.088631, 0.071595, 0.451374, -0.556994, -0.640171, 0.358023, -0.127145, -0.316040, -1.022120, 2.401750, 1.335340, 1.412372, 0.557954, 0.337608, 0.535724, 1.725849, 0.556922, 0.272821, 0.385750, -0.413290, -0.131951, -0.150539, -0.113936, 2.031130, 0.307317, -1.013190, 0.082152, 0.260691, 0.508713, -0.268346, 0.295205, -0.475464, 2.412240, -0.018501, 0.716163, -0.862697, 0.939820, -1.338693, -1.532533, 0.870847, 2.036955, -1.457022, -1.033978, -0.226362, 0.612688, 0.019719, -0.394044, 1.351239, 0.240877, 2.110411, 0.094527, -0.445468, -0.412644, -1.391369, -0.344252, -0.623643, -0.322644, 1.117232, 0.687389, 0.755359, 0.641025, 0.632983, 1.263062, -1.549328, -1.566109, 0.508483, -0.499566, 0.934570, -1.388095, -1.972671, 0.383109, -1.554389, 1.282048, -0.314249, 0.244176, -0.929808, 0.750151, 0.538923, -0.903286, -0.702035, 0.512179, -0.291152, -0.419729, -1.037791, 0.706775, 0.235843, -0.323291, -0.307070, 1.163700, -1.123638, 1.339157, 0.422202, 0.211622, -1.802166, -0.102486, -0.482759, 0.110254, 1.695480, -0.573106, -1.885119, 1.681647, -0.317307, 1.407837, -0.340345, -1.341479, -0.127103, 1.046783, 0.876001, -0.507508, 0.063203, -1.178663, -1.428701, 1.024696, -0.896592, 0.053648, 0.580304, -1.716423, -0.604713, 0.178515, 0.226823, 1.818136, -0.396441, -0.216096, 0.241328, -0.935681, -2.599711, 0.298774, 0.142816, -2.043109, -2.757879, -0.226371, -0.856734, 0.685580, 0.032610, -0.314795, -1.044021, -0.059882, -0.347866, -0.517393, -0.738436, -0.167800, 0.061006, -0.612486, -1.202937, -0.586060, 0.263318, 1.325335, 1.538581, 0.464627, 0.250619, 1.180136, -0.062583, -1.311607, -1.173635, 1.181178, 0.739139, 1.322723, -1.272996, -1.303412, 0.873488, 1.008013, -1.498082, 0.113426, -0.553117, -0.036235, 0.374515, 1.103926, 3.328024, -1.022932, -0.421770, 0.262564, -0.503790, -1.633372, -0.007215, -1.793562, -0.599036, -0.574131, 0.307367, -0.578097, -0.603297, 1.036978, 0.525538, 0.255428, -0.734761, -0.206187, -0.929634, 0.815794, -0.976295, -0.084094, -1.288993, -0.045804, -2.553293, 1.341587, 0.834528, -0.658100, -0.330164, -1.596242, 1.379503, -0.051641, 1.338710, 0.003061, -0.975803, -0.772650, 0.789224, 0.155685, -0.470558, 1.422664, 0.922696, 0.539045, 0.334621, -0.382806, 0.986372, 0.403048, 1.097702, -0.343614, -2.157048, -2.003753, -0.301641, 1.385413, 0.345771, 0.541487, 0.982265, 0.973675, 0.545239, 1.334835, 0.145104, 0.694036, -1.940873, -0.155251, 0.952639, -0.828553, 1.449055, -0.963560, -1.566589, -0.452516, 1.144256, -1.138718, 1.058887, -1.227144, 1.352370, 0.893869, 0.553074, 0.590197, 0.919767, 0.739209, -1.018547, 0.619404, 0.222069, -1.122920, -0.389960, -0.872692, 0.329413, 0.535901, -0.037393, -0.184809, -0.768187, 1.777426, 0.580693, 1.055400, 0.585909, 0.327382, -0.704963, 0.240446, -1.395908, -2.819053, -0.384524, 2.115703, 1.038788, -0.386047, 0.394414, 0.014153, -1.083468, -1.268366, 0.536117, -0.926263, -1.745804, -0.126100, -0.330795, -0.002477, 0.006076, -1.751601, -0.414086, 0.342491, -1.246699, 0.227819, 0.104210, 1.963027, -0.973180, -0.072700, 1.289908, -0.525466, -0.194186, -1.123758, -0.028480, 0.140284, -0.449811, 0.249794, -1.954564, -0.501909, 3.107896, -0.537157, -0.615363, 0.833358, 0.130818, -0.470886, -0.598067, 0.485613, -1.002959, 1.054358, 0.922946, 0.493656, -1.295034, 0.178383, -1.298867, -0.902897, -0.186459, 0.297287, -2.278912, -2.306244, -0.553346, -0.810070, -0.692834, -1.223441, 0.102538, 1.072940, 1.420007, -1.079470, 0.556298, -0.017055, 1.374812, 0.117503, -0.497939, 0.429562, -0.742376, 0.205753, 0.201880, -0.481039, 1.490959, -0.947261, 0.971029, -0.108493, 0.720250, 0.440317, -0.416947, 1.383560, 0.471141, 0.100752, 0.262796, 0.253040, 0.246668, -1.583514, -0.908608, -0.432621, 0.734936, -0.704864, 0.372885, 0.865412, 0.654514, -0.335699, 0.875965, 0.966441, 0.043451, 1.130952, -1.448211, 0.084560, 1.562433, 0.897327, -0.478653, -1.555636, -0.342984, 0.141601, -1.480922, 0.727107, 0.155291, 0.729729, -0.341500, 0.277332, 0.986748, -0.353078, -2.394480, -0.337447, 1.226549, -0.903471, 1.040266, 0.818542, 0.224118, 1.912971, -0.540235, -0.104006, -0.276808, -0.636575, -0.188062, -0.769401, 1.244844, 1.113535, -0.103677, -0.230933, -0.026137, -0.319776, -0.008241, -0.280197, 0.163175, 0.409097, -1.531480, -0.212707, 0.993851, 2.238241, -0.430772, -0.664651, 2.236682, -0.194209, -2.817317, 1.369213, 0.691955, -0.065841, -1.836263, 1.580153, 0.463895, -0.451494, -0.019339, 0.793518, -0.698635, 0.743865, -1.935537, 0.746649, -0.273229, 1.496653, -0.932133, 2.122871, 0.348416, -0.715187, 0.284995, -0.826647, 1.210554, 0.192236, 1.027849, 0.741061, -0.105768, 0.676569, 1.511936, 0.625080, -0.573357, 0.089922, -0.754655, 0.933946, -0.907716, -0.902172, -0.382202, -0.279071, 1.007410, 1.360056, -0.338614, -0.656702, -2.972382, -0.343269, -0.068953, -1.184716, -1.570419, 1.230470, -0.034472, 0.413933, 0.421515, -0.829905, 0.430061, 0.842059, 0.522409, -2.363926, 0.270115, -0.462297, 0.609779, 0.810664, -0.397330, -0.301961, 1.102627, 0.336136, -0.949634, -0.075748, 0.942352, 1.969863, 1.222832, -0.315211, -0.182519, -0.541826, -0.394947, -0.434682, -0.212007, 0.315701, -0.988780, -0.032872, -0.346798, -1.302104, -0.794423, -0.408617, -0.107816, -0.783035, -1.310212, 1.584678, -0.236133, 0.548946, -1.954693, 1.183554, 1.385798, 1.144646, -0.662593, -0.360306, 0.667431, 1.659822, -0.131879, -0.379783, 0.656328, -1.123773, 0.082908, 0.712996, -0.554024, 0.563332, -0.199654, -0.591824, -0.561203, -0.426122, 1.403884, -0.903585, 0.605969, -0.267066, 0.394250, -1.134614, -0.140413, -1.815379, -0.376101, -1.036198, 0.119113, 1.289139, -1.048372, 0.056461, 0.210852, -1.502173, 0.430627, 0.942377, 0.948156, -0.288107, -0.331095, 0.346218, 1.452065, 1.446460, 0.310730, -0.599100, 1.074394, -0.277119, -0.100676, -0.755747, -0.604814, -0.135194, -0.147059, -0.320600, 0.565933, -0.601891, 2.256898, -0.966677, 1.544399, 1.176373, 0.523012, -1.033173, 0.019421, -0.847849, 0.383928, 0.668527, 1.245495, 0.262286, -0.543192, 1.228638, -0.524260, -0.818620, 1.324099, 0.864988, -0.441179, 1.662709, -0.438737, 0.214887, -0.483506, -0.834040, 0.807325, -0.454915, -1.349250, 0.223666, 0.062603, -0.182985, -0.822051, 1.002139, -0.292325, -0.025453, -0.661704, 0.985902, -0.182107, 0.287878, -1.975922, 1.205834, -0.228720, 0.679974, -1.008461, -0.223986, -0.548418, 1.051901, 0.692890, 0.719782, -0.303480, 0.153221, -1.393792, -0.441942, -1.498185, -0.169126, 0.742102, -0.474701, 0.888013, 0.472060, 0.637395, -1.894348, 0.084049, 1.787478, -1.303280, -0.771379, 1.150421, -1.216579, -1.432280, -1.126357, -0.680823, 0.239725, 0.110651, 1.101968, 1.195594, 0.492082, 0.003649, -1.672103, 0.973431, 0.208777, 1.851184, 0.745595, -1.197848, -0.554000, -0.700665, 0.582748, 0.519406, 0.948609, -0.406675, -0.375352, 0.068398, 0.035967, 0.229828, 0.328180, -0.659148, 1.003073, 0.138572, -0.698168, -0.617026, -0.445099, -0.157105, 1.164395, -0.938300, 0.675986, 0.603065, 0.266605, -0.626078, -0.078041, -1.407729, 0.369928, 0.626755, -0.414400, 0.729216, 0.155342, 1.095113, 0.825624, 1.569832, -1.084364, 0.102525, -1.174111, -0.105123, 0.633358, -0.028924, 0.228623, 0.130390, -0.236850, -0.144029, -0.573546, -1.032795, -0.417168, -1.504977, -1.354221, -0.403611, -1.461983, -1.129268, 0.892131, -0.335983, -0.676187, 1.446193, 1.193494, 0.306674, -1.055063, 0.704590, -0.435023, -1.763519, -0.550816, 2.047600, 0.822127, 0.040306, -0.033598, -0.242002, 0.147377, 0.250908, 2.251618, -0.041361, -0.358791, -0.181501, -0.591130, 0.254489, -0.714953, -0.740986, -1.279546, 0.949467, -0.873217, -0.467208, 0.190946, -1.008175, 1.801631, -0.126082, 1.067338, 0.288161, 0.249066, -0.617229, 0.593719, 1.530435, 1.884994, -0.081046, -0.968992, 0.160153, 1.969566, -1.053953, -0.836548, 0.139843, 1.494685, 0.352406, -0.926121, 1.569402, 1.523643, -0.278746, 0.898174, 0.658881, -1.684113, -0.701539, -1.447959, 0.663772, 1.112158, 0.061477, -0.059743, -1.103660, -0.182346, -1.185428, -1.876082, 0.655456, 0.558117, -2.022881, -1.520818, 0.347973, -1.594027, -1.155989, -0.045850, 0.731735, -1.289687, -1.541892, 0.210944, -0.625924, 0.199930, -0.080277, 0.903839, 1.231986, 1.067262, -0.068049, -0.699953, 0.822718, -0.296499, -0.221543, -0.278970, 0.513237, 0.827613, 1.713596, 2.597856, -0.140316, 0.362628, -0.821054, 0.157040, 0.118295, 0.553996, -1.485809, 0.258481, 0.355334, -1.177092, 0.103126, 0.398919, 0.190596, -0.803824, -0.397641, -0.372418, -0.009174, 0.162730, 0.611300, 1.236188, 1.789484, -0.232265, -1.521689, -1.170176, -0.831056, -1.337540, 0.137027, -0.417757, 1.164534, -0.801658, -0.389173, -1.443340, -0.920076, 0.441733, -0.040641, -0.035823, -2.645470, -1.232161, 0.147755, -0.421072, 0.532214, -0.856269, -0.634907, -0.403554, -0.346834, 0.839574, -0.087193, 0.441669, 0.738109, -1.393023, 0.478111, -1.067152, -2.588732, 1.711142, 1.215224, -0.728539, 1.647228, -0.973777, -0.713173, -0.077688, -1.157092, -0.827909, -0.856171, 1.090561, 1.046554, -0.058885, -0.559543, 1.384331, 1.161126, 1.337533, 0.097788, 0.670159, 0.911006, 0.529475, -1.536989, 0.349344, -0.096134, -1.219789, 0.046755, 0.823575, -0.009236, 0.107935, -0.477113, 0.648281, -0.213923, -0.803146, -0.329485, -0.572589, 0.652331, -0.207981, 0.727378, 0.381030, 0.022028, 1.303343, -0.468149, -0.477167, 0.456223, 0.125330, 0.478265, -0.628370, -0.159488, -0.967702, 2.533384, -1.029571, 0.114859, 1.126299, -0.223379, 0.059862, -1.161115, 1.011638, -1.229890, -2.005553, -0.727579, -1.437629, -1.777161, -1.213175, 0.875985, 0.028471, 0.050240, -0.783120, -0.064472, -0.759533, 0.589579, 0.430470, 0.649749, 0.209732, 0.040350, 0.941712, -0.323346, 1.486470, -0.150771, 0.344093, -0.475365, -0.936564, -0.502017, 0.144467, -0.759579, -0.750176, 1.734031, 0.114979, -0.829583, -0.024601, -0.897302, 0.670654, -0.412803, 0.400521, 0.668734, -0.957613, -1.484817, -0.345223, 1.250503, -0.535899, -0.009035, -0.528449, 1.986513, 2.060075, -0.130140, 1.040218, 1.052733, -1.392318, -0.435285, 1.826712, 0.505820, -1.051085, -0.080287, -0.617848, 0.883152, -0.647066, -0.396832, 0.743422, 0.887783, -0.697282, -0.544166, -0.702491, -0.623455, 0.374829, -0.785628, 0.003286, 1.263164, -2.329807, -0.614077, -1.238433, 0.891699, 1.553901, 0.704964, -0.671187, 1.504610, -2.033374, 1.953688, -0.124666, -1.080682, 0.884962, -1.197730, -0.583376, -0.131424, 0.280526, 0.926353, -1.122543, -0.911031, -0.265768, -0.019021, 1.521266, 0.602850, 0.893976, -0.913951, 0.292408, -0.037936, 1.372991, 0.969045, 0.231774, -1.618405, 1.453707, 0.110059, -0.115255, -0.276925, 0.413341, -0.438483, -0.553558, -2.901073, 0.260692, 1.145421, -1.203136, 0.948973, -1.298123, -1.958885, 2.066862, 0.112493, 1.208171, 1.674916, -0.020802, -0.838846, -0.305266, -2.597898, -2.074761, -0.180108, 0.895331, 0.244444, -0.338277, 2.188682, 1.884206, -0.598579, -0.558468, -0.410476, -1.159934, 0.309216, 0.381153, 1.448310, -0.998552, -0.910545, -2.139353, 0.663926, 2.045503, 1.095219, 1.955748, 1.028688, -0.651780, 1.632300, -0.943432, 0.911641, -0.684423, -0.327019, -0.505193, 0.135176, -0.888351, -1.751179, -0.208985, -0.932757, 2.598347, -0.609779, 0.307194, -0.886524, 0.034716, -1.398090, -0.614924, 0.288838, -0.632283, -0.272610, -0.929351, -0.378669, -0.077282, -0.006521, -0.058322, 0.491247, 0.351092, -0.072483, 0.992031, -0.283934, 0.642206, -1.271951, 0.840728, -0.348995, -0.172767, 0.194900, -0.274372, 1.686866, 0.365430, -0.762178, -1.689258, 0.396351, -1.103336, -0.433077, -0.610659, -0.476620, 0.920566, -2.285129, -0.080145, 0.183470, -0.357605, 0.029375, -1.174137, 2.090874, -0.468729, -0.646514, -0.704356, 0.751061, 2.093110, 1.365408, -0.647215, -0.607229, 0.553309, 1.028274, 0.500955, 0.044174, 0.391770, -0.964070, -0.389583, -1.040431, -0.149200, -1.870575, -1.083602, 0.407257, -1.515209, 0.945394, -0.877288, 1.202483, 0.329300, -0.414634, 1.363362, 0.701967, 0.021943, -0.336957, 0.563201, 0.362663, -0.096563, -0.352436, -0.313084, 0.774509, -0.292444, 0.235398, -1.047354, -0.217255, 1.224749, 1.198082, 0.243714, 0.413656, -1.563167, 0.009253, 1.336108, 2.276343, -0.816204, -0.609763, -0.106606, -0.211859, -0.419947, -1.252650, 0.678270, 0.364397, -0.303829, -0.496633, 2.521461, 0.444512, -0.690825, -1.091630, -0.674005, 0.256683, -0.522537, -1.058666, 0.717487, 0.029575, 0.583096, -0.262566, 0.638153, -0.294252, 0.399917, -1.033148, 0.216968, 0.547010, -0.973192, -0.242378, -3.080508, 0.707494, 0.985695, 2.193674, -0.246119, -0.737012, 1.426696, 0.295096, 0.250086, -0.610012, 0.053014, -0.253414, 0.018542, -1.049275, -1.513752, -0.445451, -1.492897, -0.601685, 1.208795, 0.409892, -0.361743, -0.293387, -0.145330, 1.127861, -1.852282, -1.495407, 1.223743, 1.118501, -0.598514, 1.016503, -0.598052, -0.816620, -0.111217, -2.164274, -1.506453, 0.848012, -1.684716, 0.397399, -0.025137, -0.082389, -1.592093, -0.931004, -0.053304, 1.186109, 0.241978, 0.001271, 1.244314, 0.253956, 1.508187, 0.336085, -1.638505, 0.342083, -0.468752, -1.653105, -0.983859, 0.236307, 1.104780, 0.414965, -0.465309, 0.983627, -0.832675, 1.590554, 0.267019, 0.442295, 0.089077, 2.132010, 0.776167, 0.638996, -0.450323, 0.347643, -0.923947, 0.255782, 0.168298, 0.509174, 0.443585, 0.944438, 0.087974, -0.828370, 0.002427, 2.078786, 0.805401, -1.471338, 0.357937, 0.164135, 0.867548, -0.882660, 0.310870, 1.745017, 0.497361, 1.018385, -0.306170, 0.729058, -0.505483, -0.030711, -0.949488, -2.127658, 0.498005, 0.361026, -0.372618, 0.036155, -1.172335, 0.421863, 0.232184, -0.246218, 0.118726, 1.610804, -1.378174, 0.283408, -0.947898, 0.004621, 0.352545, -0.418786, -0.284877, 1.156360, -1.784031, 0.586838, -1.190856, -1.825560, 0.391753, 0.204176, 0.679014, 1.117311, -0.053043, -0.381388, 0.225296, 1.156356, -0.565207, 0.946840, -0.772552, -0.281142, -0.716169, 1.183331, -0.462058, -0.133600, 2.386313, -0.954903, 1.617639, -1.990874, -0.503741, 0.805940, -1.798753, 1.018242, -0.069681, 0.768632, 0.829163, 0.248769, 0.473693, 2.759011, -0.175960, -1.088549, 0.090859, 0.868354, 1.221065, 0.098714, 0.504231, -0.488036, 2.065358, 0.424258, 0.932790, 1.445589, -0.535498, 0.323761, -1.241941, 0.770135, 1.600767, 0.377585, -1.561460, -0.315027, 0.809735, 0.208054, -0.680719, 0.951335, -0.057570, 1.001270, -0.167095, -0.205945, 1.083783, -0.006386, 0.507432, -0.509077, -1.529743, 1.234340, -1.826191, 0.331366, 0.708026, 0.112583, 0.828184, 0.093870, -1.045377, -0.439622, -0.689164, -1.625109, -1.033484, 1.300538, -1.205164, 0.735395, 1.848574, -0.412589, -0.460112, -0.654017, 0.824179, 1.737731, 1.692008, 0.217702, -0.920894, 0.289846, 0.489996, -2.763100, -1.476797, -1.584765, 1.324330, 0.241056, -1.376677, 0.798251, 0.989410, 0.486622, 0.432964, -0.127954, 0.255011, 0.235208, 0.324400, 0.242507, 0.850728, 1.853686, -0.769172, -0.676401, 0.981819, -0.665699, -0.436257, -0.746578, 0.719598, 0.670031, -1.617423, -0.765698, -0.130638, 1.339001, -0.250610, -0.233239, 1.887988, 0.395393, 0.443265, -0.357346, -0.932440, -0.041591, 1.545087, -0.827120, -0.328962, -0.258529, 0.272733, 0.755365, 0.316440, 0.583357, 0.307030, 1.749242, 0.128056, 0.731642, 2.486978, 0.222047, -1.213414, -1.748090, -0.666311, -0.726829, -0.102644, -1.158301, 1.226055, 0.189799, 0.249707, 0.297159, 1.648256, 0.602773, -0.078200, 2.368379, -1.029276, -0.031718, -0.060050, -0.106025, 0.208640, -0.297482, -0.594718, -0.536860, -1.618080, -0.012819, 0.665794, -1.306326, 0.329952, -0.384732, 0.471170, -0.692423, 0.352658, -0.353765, -0.624031, 1.618181, -0.117278, -0.160651, 0.133729, 0.416183, 1.741488, -0.132032, -0.096393, -0.667343, -0.126846, -1.023001, 0.756026, -0.216776, 0.307320, 0.185616, 0.765330, 2.698803, 0.155681, -0.284734, -0.049457, 1.226896, 1.321137, 2.105102, -0.024803, -2.351218, 0.955395, 1.623109, -2.593519, 0.880723, 1.366364, -0.453704, -0.169199, 0.101298, -0.339878, 0.669135, 0.084879, 0.898043, -0.671916, -0.210344, 1.651739, -0.314424, 1.108827, -1.167360, -0.458726, -0.480828, -1.032212, -0.385593, 0.958898, -0.979084, -1.761650, -0.311020, -0.663789, 3.002856, 0.500758, 1.869690, -0.009320, 0.976446, -1.649059, -0.016867, 1.788669, -0.281528, -0.820604, -0.935893, -1.498471, -0.762326, -0.425157, 0.495993, 1.540421, -0.284625, 0.385401, 1.375196, -0.032166, -1.812318, 0.580485, -0.579971, 0.569041, -0.324428, 0.429991, 0.747618, 1.127255, 0.482443, -1.583986, 0.003698, -0.794320, -0.131490, -1.469137, -0.287240, 2.368807, 1.997617, 1.975032, 1.281578, 0.030255, -0.206150, -0.613783, 0.652650, -0.132643, 0.566216, 0.201846, -0.410452, -1.550183, 1.027754, 1.109950, 1.231980, 0.117048, 0.026106, -1.141737, 0.522628, 0.560496, 1.075405, -1.829545, -0.032200, 0.580612, -0.329021, -0.479999, -2.144433, 0.689593, -0.942547, 1.524227, 1.470467, -0.180339, -0.560179, -0.947481, -1.483103, -2.078937, 0.546303, -1.200161, 0.443168, 1.246248, 0.467015, 0.041833, 1.185161, -0.327042, -0.262802, -1.070756, 0.465227, 0.014188, -1.044144, 0.186583, -1.184165, 1.554506, 1.030036, 0.886680, 0.014195, -0.589994, -0.918017, -0.297715, -0.964505, -0.339930, -0.349669, -0.342444, 1.181813, -1.065601, -0.118944, -0.326901, -1.334548, -0.159863, 0.837796, 0.027617, 2.080922, -0.133526, -0.319612, 1.616086, -0.166965, 0.420309, 0.407471, -0.707876, 0.146836, -0.485669, -2.241846, 0.058797, 1.638197, -0.281664, 0.363624, 0.224746, 0.347689, 1.504757, 0.867705, -1.058335, -0.757657, -0.233610, -0.605775, 0.103034, -0.782511, 0.484143, -0.614415, -0.849009, 0.009519, 0.851913, 0.783826, -0.705088, 1.500142, -0.516031, -0.475369, -1.390907, -1.310930, 1.388639, 1.468088, -0.862605, 0.641629, -1.331897, -0.420069, 0.996633, 2.415989, -0.690723, -0.248493, -0.120515, -0.383829, 0.621671, 1.196772, -0.290069, -0.656415, -0.050779, 0.442847, -1.222851, -0.512616, 0.694622, 2.135243, 1.632016, 0.463504, 0.163877, -0.432316, -0.074746, -0.036560, -0.136754, -0.902811, -1.496528, -0.072025, -0.228463, 1.702090, -0.363793, 0.074235, 1.243025, -1.659096, -0.603901, 0.414347, -1.563740, 0.905980, -2.441795, 0.378857, 0.365431, -2.931975, -0.640035, 0.491280, -1.182243, -0.057325, -0.705213, -0.623949, 0.589179, -0.011464, -0.339350, 1.278987, -0.350046, -2.259562, 1.156975, 0.431198, -0.448226, 0.181641, 0.884539, 1.563273, -1.797369, 0.938881, 0.276529, 0.733857, 2.082041, 1.287495, -0.493925, 1.098816, 0.598159, -0.414070, -0.519057, 0.482735, 0.509668, -1.662336, 0.028147, -1.365872, -0.233200, -0.490152, 0.327856, -2.546453, -1.171195, 0.957049, 2.172434, -1.613645, -0.725649, -0.333343, 0.723008, -1.046704, 0.184869, 0.302755, 0.632297, -0.213238, 0.131648, 1.907775, 0.501460, 1.272059, 1.344904, 0.474290, -0.362896, 0.230117, 0.467075, 0.454175, 1.339638, -0.595783, -1.008737, -0.238725, 0.480643, -1.216938, -0.362692, 0.718953, -0.532518, -0.293144, 0.455388, -1.204346, -0.509517, -0.672102, -0.347790, -0.355769, 0.668932, 0.450684, -0.464111, 0.428428, 1.070328, -0.769980, -0.040134, 0.211202, -0.117045, -1.614071, 0.612755, -0.749004, -1.503798, 2.681678, 0.526501, 1.302395, 1.850410, -1.570418, 0.552783, 0.555774, 0.647278, -1.540283, 1.126552, 0.716625, -0.805623, -0.784180, -0.457727, -1.494954, -1.800645, -0.247513, 0.770136, -1.755537, -0.064888, 0.334915, -0.438589, 1.378984, 0.304287, -0.828168, -0.082067, 0.025025, -0.641677, -0.957067, 0.192324, 1.713293, -0.198615, -0.430762, -0.307394, 0.108820, 2.067800, 1.753175, -0.175777, 0.380387, 0.287044, 0.822855, 1.312685, -0.011331, -1.184620, -0.706590, -0.960235, -0.371950, 0.484617, -0.307238, -0.415538, -0.450592, -1.798892, -1.024896, -1.962870, 0.383872, -0.945319, -0.546227, 0.143008, 0.885236, -1.415447, -0.607128, -0.073790, 0.839108, 0.095335, -0.612102, 0.131944, 1.497239, 0.703147, -0.762010, -2.455624, -0.550255, -0.527730, -1.200463, -1.335213, 0.198714, -0.853133, -0.108890, 0.778238, 0.519175, -1.099018, 1.044160, 0.064686, -0.248143, -1.123017, -0.104113, 0.593299, -0.328193, 1.238760, 0.289982, -0.120638, 0.543488, 1.481058, -1.728156, 0.557878, -0.564819, -1.294336, -0.365197, -0.903325, -0.736969, -0.593731, 0.231700, 2.312100, 0.044761, 0.605234, -0.402889, 0.293846, -0.238520, 0.792277, 0.399851, -1.271464, -0.143157, 0.817546, -0.414382, -0.584692, -1.231259, -0.610151, -1.301072, -0.960832, 0.844918, -0.394307, 0.091667, 0.049415, -0.228930, 1.193390, 1.165965, 0.239050, -2.000160, 0.563655, 0.524789, -0.323701, -0.288131, 0.586101, -1.919066, 0.788416, 1.076393, -0.267581, -2.066545, 1.361658, 0.192215, -0.268293, 0.685415, -1.066501, -0.890900, -0.753302, -0.943416, 0.136978, -2.134350, -0.177144, -2.083099, 1.529065, -1.324988, -0.713418, -1.698089, -0.951384, -0.528493, -0.824585, -2.350519, -0.055867, -1.488417, -0.436066, 0.015655, 0.713698, -0.390350, -0.624259, 1.473821, 1.544823, 0.261959, -0.437874, 0.531292, 1.669885, 0.309119, -0.113530, 1.824166, 0.706350, 0.716046, -1.927026, 0.799317, -1.153619, 0.480715, 1.901056, -0.734579, -0.028224, -2.146215, 1.224755, 0.135683, 0.707858, 0.074689, 0.815132, 0.006397, -0.226859}, + { -1.775708, 1.577773, -1.357120, -1.948466, 2.379937, 0.974103, -0.075040, 2.195132, 0.891181, -0.713695, -0.795392, 0.952692, 0.562669, 0.395196, -1.223407, 0.087385, -0.574228, -0.018478, -0.592905, 1.485322, 0.147479, 1.544212, -0.067118, -0.527288, -1.324014, -0.092526, 0.218096, 1.054857, -0.207179, -1.471871, -0.072510, 0.128589, 0.313770, 0.527617, 0.781455, -0.560813, -0.497827, 0.763926, -0.081313, 1.627997, 0.422461, -0.470420, 0.163412, -0.515582, 1.152705, 1.348188, -1.169136, 0.777720, -0.124728, 0.823216, -0.321754, -1.199779, -1.373755, 0.059612, 0.408166, -1.728657, -0.574989, 0.558442, 1.049780, -0.651828, 0.478471, -1.564489, 1.136657, 1.178832, 0.361032, 0.250224, -1.324271, 0.368622, 0.609381, 0.041441, 1.023976, -0.317153, 0.008926, 1.497955, 1.331776, -1.366921, 1.694042, 0.319073, 1.243736, -0.275788, -1.386266, -0.239738, -1.453370, -3.428048, 0.438705, -0.963804, -0.878525, -0.583121, -1.116015, 0.049740, -0.222268, -0.115479, 0.255961, 0.240079, 1.159971, -0.515537, -0.405841, 0.556940, 1.876047, 1.499914, 0.318520, -0.357236, 0.616091, 0.319665, -0.036077, -0.409389, 2.053128, -0.509843, -0.178014, 0.089493, 0.768478, 0.241166, 0.286690, 0.398833, 0.478272, 0.465642, -1.566303, 0.228673, 0.268823, -0.600708, 0.250576, -1.016163, 0.510160, 1.088357, -1.432796, -1.336184, -1.323552, 1.956550, 0.650685, -0.353928, -0.315436, 0.735578, 0.247915, 0.539326, -0.048299, 0.596354, -0.172272, 0.679505, 1.323684, 2.440036, -0.953941, 2.264165, -0.857901, -0.282070, 1.451947, 1.021027, 1.484610, -0.326566, 1.162769, -1.563729, -0.125484, 0.731224, 1.693233, 0.546951, 1.626992, -0.224999, -0.349068, -1.081630, -1.393522, 0.187838, 2.066783, -0.542921, 0.555104, 2.261391, 0.445907, 0.630637, -1.327879, -1.552196, 0.495191, -0.901314, -2.284741, 0.505776, -0.772807, -0.435042, 1.676813, -0.687331, -2.071118, -1.328349, 0.025718, 0.102198, -1.748192, -1.294535, 1.859533, 0.864871, 0.344695, 0.195630, 0.000184, -1.547332, -0.790501, -0.568389, 0.756407, 0.561980, -0.585830, 0.653992, -1.078229, -1.255563, -1.558588, -1.028194, 0.143493, -2.542594, -0.032492, 0.019688, -0.150061, -0.345382, -1.687949, 0.772111, 0.063768, 0.599223, 0.593575, 0.103457, -0.040748, -0.232488, 0.090344, 0.048193, -0.810328, 1.002816, 0.856849, 1.381180, -0.230105, -0.805479, -2.013278, 0.432458, 2.037941, 0.659237, -0.259172, 0.392761, -1.393723, -0.267069, -1.790866, 0.528086, 2.181783, 1.148085, -1.356451, 0.083570, 0.046276, 0.663066, 0.199981, 0.755376, -0.627783, -0.792499, 0.361999, 0.498776, -0.480737, -0.203732, -2.370168, 0.786610, -0.194616, -0.831342, -3.450214, -0.093845, 0.401587, 0.471217, -1.019708, -0.591133, -0.353336, 0.370283, -1.552086, 1.005746, 1.153766, -0.595319, 1.459991, 2.573270, 0.350138, -1.293580, -0.739786, -0.737980, -0.458690, 0.994674, -0.650658, 0.809190, 0.253029, 0.273181, -2.272073, -0.374725, 0.861526, 0.381432, 0.638572, -0.059434, -0.392367, -1.576198, -1.080680, 1.085267, 0.581584, 1.250279, -0.270705, 0.907434, 0.204817, -1.132815, -0.312156, 0.325631, -0.068137, 1.716925, -0.569874, 1.850344, 0.140704, -1.427467, 0.519566, 2.054110, 0.238838, -0.338579, 0.426959, 0.788494, 0.231708, -0.179429, 1.521585, -0.346507, -0.639987, 0.708528, 0.055052, -0.138056, 1.218998, -0.040668, -1.703094, 2.910345, 0.515357, 0.775643, 0.537399, 2.486140, -0.158430, -0.652643, -1.694820, -0.671851, -0.432173, 0.155075, -1.529571, -0.912793, -0.039052, 0.300161, 2.178182, 0.957360, -1.162344, -0.119158, 1.773908, -0.912277, -1.059169, 0.230747, 1.762620, -0.648301, 0.746444, -0.210026, -2.037598, -0.063281, -0.662760, 0.634799, -0.725785, 0.010431, -0.767840, -0.923967, 0.006651, 0.660096, -0.345080, 0.551504, 0.236843, -0.259468, 0.400491, -1.287899, -1.383754, 0.323031, 0.167118, 0.666256, 1.135421, 0.207733, -0.476413, -1.314378, -0.184729, -1.721126, -0.643044, 1.427276, 1.711674, 1.453249, -0.969912, -1.113708, 0.534715, -0.571263, -1.024817, 1.747044, 0.565119, -0.441453, 0.132921, -1.238919, -0.862933, 1.144910, -0.989436, 0.832204, 0.206228, 0.601980, 0.735158, -0.530706, 0.454795, 0.087421, -0.110428, -1.532028, -2.125558, -0.732246, -0.095187, 0.314524, 2.072491, 0.141578, -2.154202, -0.996405, 0.154052, 0.386981, -1.527894, 0.662735, -0.728092, -1.277087, 1.947863, 0.176360, -1.577321, 0.470118, -1.595076, 0.330754, -1.172099, -0.333187, -0.295277, -1.073788, -0.182389, 1.065091, -0.422886, -0.648396, 0.001978, -0.573041, -0.319242, 0.563175, 0.190408, -1.009268, -1.572550, -0.229680, -1.521161, -1.606081, -0.186338, 1.084512, 0.767137, 1.324980, 0.294943, -1.189233, 0.840304, -1.238156, -0.515402, 0.684759, -0.514806, -0.035721, 0.423411, -0.939540, -0.027619, -0.170692, 0.607354, -1.620211, -0.028658, 0.451254, 0.062468, -0.687237, -0.712231, 1.869627, -0.853865, -1.928953, -0.855752, -0.092192, 0.251865, -1.488517, 1.201767, -0.762946, 1.061949, -1.292997, -0.980431, 0.764382, -0.321076, 0.423421, 1.114901, -0.291273, -1.751577, 0.198999, -0.393977, 1.105855, -0.220299, -0.149601, -0.976882, -2.059405, -0.264161, 1.898186, -0.281793, 1.114171, 1.217944, -0.076797, -0.038639, 1.210367, 1.624460, 0.317270, -0.168522, 0.248750, 1.351528, -1.778224, -0.007352, 1.591936, -1.030857, 0.068813, -0.931847, 1.498091, 0.340230, -0.715672, -0.810611, -1.280811, 0.904199, 0.994395, 2.076841, 1.768701, 1.654172, -1.064972, -0.471928, 0.319467, -0.027157, -0.431668, 0.541589, 0.588718, -0.657105, 1.404547, 1.463650, -1.647953, 0.033319, -0.228811, -1.716704, -0.084922, 1.160699, -1.855660, 0.486622, -0.448874, -0.534979, 0.538831, 0.398621, 1.816244, 0.617336, 0.509768, 0.278272, -0.407466, -1.102746, -0.640729, 2.204052, -1.090603, 0.428259, 1.131038, 0.484830, -0.219091, -1.273546, 2.582221, 0.129235, 0.225636, -0.446631, -0.947427, 1.641930, 0.001540, -0.222013, 0.516219, -0.217888, 1.285172, -1.654165, -0.400398, -0.263518, -0.577081, -0.614662, -0.034810, 1.151575, 1.481600, 1.029548, -1.324441, -0.033114, -0.464003, 0.746416, -1.513239, -0.557277, 0.613971, 0.323732, 1.050647, 0.454061, -1.844451, 0.506889, 1.338220, 0.263406, 0.014499, -0.399012, -0.244619, -0.058918, -0.545773, -0.612247, 0.460900, 0.033688, -2.438305, 0.830354, -1.647037, -1.478666, -0.471272, 0.275862, 0.658311, 1.516656, -0.435511, 0.083734, 1.399203, 0.297462, -1.815983, -0.623867, -1.854946, 0.668973, -2.180854, -0.364391, 0.081705, 0.823075, 1.776006, 0.067504, 0.224016, -1.491039, 0.748698, 1.074837, 0.131548, -1.422208, -1.920705, 1.442040, 0.222505, 0.046959, -0.564873, -0.932313, -0.873606, -0.200770, -0.425828, -1.369458, 2.656986, -0.879825, -1.926587, -1.297984, -0.591694, 0.624829, 1.122620, 0.371118, -1.125153, -0.211166, -0.105891, -2.217010, -0.442485, -0.340532, -0.656841, -1.088273, -0.361514, -0.770818, -0.421875, 0.334398, -1.338224, -0.958271, 0.872752, -0.808662, 0.255063, -1.515681, 0.493300, -2.064736, -0.552958, 0.626030, -0.549370, -1.835676, -0.196684, -0.050138, 0.269438, 1.094259, 0.135782, -1.033487, -1.065508, 1.876711, 1.126448, 1.844628, 0.980747, -2.225693, 1.555722, -0.480570, -0.482708, 1.575417, 2.144323, 0.720656, 0.341507, -0.451255, -0.423274, -1.030605, -0.895396, -0.963350, -1.078762, -0.261076, 0.218953, 0.991210, -0.844975, 0.154304, -0.726847, 0.198680, -0.486901, -1.515643, -0.716145, -0.628174, -0.907404, -0.451294, -0.314370, -0.051817, -1.352604, -1.062598, -1.005519, 3.518583, 1.019941, 0.668420, 0.945828, 0.293143, -0.273200, 0.386627, 1.298502, -0.742222, 0.434938, 0.206664, 0.817568, -1.004614, -0.172594, 0.959674, 1.426990, -0.500679, -0.283698, -0.720258, -0.188524, -0.504126, 0.778705, 0.545453, -0.376503, 0.294048, 1.174140, -0.089970, 0.642154, -0.150266, 1.027822, 1.254247, -0.507758, 1.931679, 0.434283, -0.349654, 1.071715, 0.989825, 0.959410, 0.691310, 0.179832, 0.795462, -0.460646, 0.271950, -0.210593, 0.990797, -0.306692, 0.789792, 0.609754, -0.840308, -0.719276, -0.467790, 0.607719, 0.210216, 0.737544, 1.578652, -0.332656, -0.369550, -1.562057, 0.406025, -0.072135, 0.705253, 2.786014, -0.782209, 0.144101, 0.027090, 0.411446, -0.103862, -0.794118, -2.550025, -0.794052, 1.197102, -0.070774, -2.141302, 1.142176, 0.571104, -0.106905, 1.215271, 0.411307, 0.322397, -0.143596, -1.489449, -0.012869, -0.030781, 0.289805, 2.102154, -0.468891, 1.575945, -0.154692, 1.109218, 1.013330, -0.850630, -0.691914, 1.364860, -0.484503, 1.456156, 1.014713, 0.734903, 0.449798, 0.716608, 0.162605, 0.186169, 0.215676, -1.057875, 1.186841, -1.372339, 0.688239, 1.331015, -0.296080, -0.676232, -1.943690, 0.173155, -2.314358, -0.320911, -0.085317, 1.200871, 0.103588, 0.201949, -0.215095, 0.357064, 0.688957, 1.057573, 1.973270, 1.274735, -0.571417, 0.226696, 1.014030, -1.502967, 0.707380, 1.203169, -0.515187, 1.283324, -0.620082, -0.051055, -0.089619, -0.117189, -2.145127, 0.826318, 0.567406, 1.020097, -1.139863, 1.425147, 2.643832, -0.201424, 1.463312, 0.842408, 0.771046, -0.658888, -0.638513, 1.154166, 0.506405, -0.269198, -1.747310, 0.748471, -1.039160, -1.183894, -1.773082, 1.734395, -0.218093, -1.189979, -0.639931, -0.287645, 0.479232, 0.375571, -0.884342, -0.646296, -0.627006, -0.175362, -0.523969, 0.968641, 1.286379, -1.329833, 0.122692, -2.351994, -2.193979, -0.104421, 0.457688, -0.122849, 0.118144, 0.721333, 1.005934, -0.030132, -1.142573, -0.811456, 1.625021, 0.472148, -1.774473, 1.366981, -0.061792, 1.655075, 0.823839, -0.406401, -0.709887, 0.263895, -0.582684, -1.147522, -0.243877, -1.173104, 0.715198, -0.135716, 0.970815, -0.506302, 1.256250, -0.304273, -0.622631, 0.774186, -0.098001, 0.511715, -0.653205, 0.405905, -1.144706, -0.762377, 0.104969, -1.191963, 0.436752, -0.486578, -0.738273, -0.218448, 0.677714, -0.140663, -0.176665, -0.231104, 0.824045, -1.405195, -1.396788, -0.678873, 0.932869, 1.584708, -0.859148, -0.525673, 1.603462, 0.185084, 1.146181, -1.679175, 2.919252, -0.378511, -0.078541, -1.639030, -1.181860, 1.001962, -0.226263, 0.300445, 0.952903, 0.349240, -0.018386, 1.339089, -0.852537, 1.293326, -1.234429, -1.259413, -0.574849, 0.341944, 0.635390, 1.248488, -0.518246, -0.009616, -0.395374, 0.335589, -0.391057, 0.967579, -0.431392, -0.244620, -1.216109, -0.676797, -1.929863, -1.927927, -0.145844, 0.203886, -1.372941, 0.613168, -1.291676, -1.549550, -1.404324, 0.543865, 0.743535, 1.588470, -0.780898, -0.366438, 1.637097, 2.270249, 0.516151, -0.650590, 1.958283, 0.533614, -0.362792, -0.280270, -0.472363, 1.033453, 1.194234, -1.257510, 0.269215, -0.458214, 0.383964, -1.431215, -0.533049, 0.633671, -1.486081, -0.395552, 0.883551, -1.189532, 0.229135, -1.089706, -0.079819, -0.131758, -0.042324, -1.633988, -1.674003, -0.630605, -1.468850, 0.382644, -0.553704, 1.748937, 1.870357, 0.231930, 0.566580, 1.053156, 0.482045, 1.192855, 0.770437, -0.205162, 0.221310, 0.384379, 1.852206, -1.237267, -1.810564, -0.175734, -1.025309, -0.719673, 0.014981, -1.054880, 0.129170, 1.155245, 1.084922, -0.131768, -0.778565, -0.683912, 1.632237, -0.270281, -0.515743, 0.554145, -1.552635, 0.728398, -0.513917, 1.028731, 0.946778, 0.101074, -0.222134, -0.453484, -0.157685, 0.686110, -2.657552, 0.213809, -0.570501, 0.398271, -0.034616, 2.299735, 0.617206, -0.009037, 0.489672, 0.259026, 0.982366, -0.916636, -0.835163, 0.452656, -0.636508, -0.837199, 2.029793, -1.028072, 0.241387, 0.490390, -1.198617, 0.827183, -0.101270, 1.271432, 0.647919, -0.252802, 0.025678, 1.099627, -0.192586, 0.382749, -0.229662, 0.425308, -1.479770, -0.144008, 0.926339, -0.078180, -0.442595, -0.084503, -1.174988, 2.062048, 0.220858, 1.023074, 0.629293, -0.758778, -0.161750, -0.801879, -0.903283, 0.944132, -0.906454, -0.522810, 2.106923, -0.956492, 0.746447, -0.041929, 0.477438, 0.883054, 0.558895, -1.335454, -0.346808, 0.259823, -0.158528, 2.285153, 1.922114, -0.490711, 1.660747, -0.132825, -0.163069, -0.080119, -0.153927, -0.650564, -1.200334, 1.385344, -0.390135, -0.207605, 2.078298, 1.237065, 0.141470, 1.033145, -0.540462, -0.494870, -0.071068, -1.664295, -0.274671, -1.468852, -0.578119, -0.396694, -0.442577, 1.973585, -0.069533, -1.006045, -0.315918, -0.726714, 0.706754, 0.468841, 0.083514, 1.290425, 0.190972, -0.139193, -0.506232, 0.982724, 0.544418, -1.815975, 1.874176, 0.871083, 0.033521, 0.629592, 1.304928, -0.700882, 0.789623, -0.586080, -0.848986, 1.135839, 0.634214, 1.201540, -0.870741, 1.944623, -0.496977, 1.444003, -0.405687, 0.822867, 1.676593, -0.520585, 0.578250, -1.194576, 1.823117, -0.996548, 2.402521, -1.021042, -0.027274, -0.354823, -1.500319, 0.931279, -0.417669, -1.397350, -0.182041, -0.048365, 0.996540, -1.742504, 1.150031, 1.341433, 1.367734, -0.822363, -2.223567, 1.100254, 0.653989, -0.807970, -0.189016, -0.804092, 0.213814, -1.485453, 2.800562, 0.110801, -1.951356, 0.363166, -0.586134, 1.883338, 1.420361, 0.034059, -0.056076, -0.755489, -0.082437, -0.258651, 0.796638, 1.511878, 0.495026, -0.059032, 0.371131, -0.809234, 1.961914, -0.189696, 0.467770, 0.473456, -0.160251, 1.425941, 0.161275, 0.331375, 1.081585, 1.100084, -1.512353, -0.023201, -0.144617, 0.521923, -2.516715, -0.221022, -0.908016, -0.541444, 1.576889, 0.516303, -0.896864, 1.080233, 1.054607, -1.323635, -0.506084, 0.737874, 0.682534, -1.312657, 1.105786, -1.857938, -1.067394, -0.134948, -0.358176, -0.440916, -0.085567, 0.083360, -0.361560, -1.121371, -0.293974, 0.835560, 0.161648, -0.763389, 0.137067, -0.369772, -0.363351, -0.014890, 0.637033, -0.383004, -1.248646, -0.349934, -0.491336, -0.234832, -2.255174, -1.491752, -0.360289, 2.037044, 0.770860, 0.579947, 1.045691, -0.754107, 0.800637, -0.685494, -0.155525, 0.324770, -0.844874, -0.242755, 1.075303, -0.881917, -1.878024, 0.241259, 1.222231, 0.224661, 0.574867, 0.216944, 0.264035, 0.650297, 0.722769, -0.080460, -0.660219, 0.617302, 0.885114, 1.609503, 0.535712, -0.732011, 1.418941, 2.063185, 1.824984, 1.660638, 0.896825, -0.029203, 1.372220, -0.952185, -1.322015, 0.556037, 0.580473, -0.104982, 0.046964, -0.117813, -0.705521, -0.646329, -0.173694, -0.131886, -0.087059, 1.104625, -0.242121, -0.307542, 0.093469, -0.619114, -0.004495, -0.096606, 0.822098, -1.272659, 0.418360, 1.847186, 1.086269, -0.424036, 0.467723, -0.494768, 0.950519, 0.387744, -0.350703, -0.700662, -0.125557, 0.555294, 0.678339, -0.080568, 1.735546, 0.174262, 1.191062, 0.136239, -0.154005, -1.542194, -2.308535, -0.596132, 0.315933, 0.819645, 1.340121, -0.660858, 0.370789, 1.327930, -1.018899, -1.055663, -0.815302, -1.597600, -0.958477, 0.813381, -0.443054, 1.867535, -0.765669, -0.894600, 1.424273, -0.097083, -0.098563, -1.085633, -0.058550, 0.554588, -0.377396, 0.119660, 0.711123, -0.026442, -1.025043, -0.376491, 0.119248, -1.533973, 0.095374, 0.617827, 0.987291, -2.183068, 0.027208, 0.221829, -3.005217, 1.090522, -0.993239, -0.445808, 2.030088, 0.922485, -1.083660, -1.347993, -0.880972, -0.724366, -0.340507, -1.374918, 0.967600, -0.512508, -0.616746, 0.766628, 1.796489, -0.300281, -0.428366, -0.245438, 2.327469, -0.597833, 0.103056, 0.595945, -0.848635, -0.154962, 1.697285, 0.553511, -0.408970, 0.226626, 0.156645, 0.170564, 0.553376, -0.706542, 0.822720, 1.343730, -1.500968, -1.947354, 0.107539, -0.651983, 2.212274, 0.544837, -0.326758, -0.064990, 1.426269, 0.385979, -2.018229, 0.389803, -0.614532, 0.857144, 1.853422, 0.333639, -1.681254, -0.127935, 1.169867, 0.743258, 0.812147, -0.013091, -1.023290, 1.279952, 0.218842, -0.052876, 0.494333, 0.518687, 0.655237, 0.224787, 1.017037, -0.862203, -0.755503, 0.874073, 0.676425, -1.137551, -1.548401, -0.509317, 0.612588, -0.290280, -0.496163, 1.142411, 1.085601, 0.784212, 2.014164, 0.055325, -1.718364, 0.263004, 0.073543, 0.055354, 0.879918, -0.334428, 0.081678, 0.578851, -0.897087, 0.412534, -1.877735, -1.256565, -0.733116, -1.046757, 0.679224, -1.610478, 0.024093, 1.440681, -0.838338, 0.126584, -0.343775, 0.547078, 0.375123, 1.018756, -0.730928, 0.328524, -1.705947, -1.048713, 1.091643, -0.028292, -1.224218, -0.089561, 1.217982, -1.989449, 1.088431, 0.252731, -0.162801, 0.768207, -1.699195, 1.247580, -0.220136, 2.589546, 0.660711, -0.565806, -0.054828, -0.553599, 0.884829, 0.188387, -0.076428, -0.506129, -0.551856, -1.062665, 0.738606, -0.427905, -0.987469, 0.245128, -1.223548, 0.091279, -1.566992, -0.265303, -0.134684, -0.682425, -0.756457, -1.467724, 0.660941, 2.109020, 0.143626, 0.428602, 0.143336, 1.300321, 0.748056, 0.432438, 0.847719, 0.947533, 0.139024, -1.571151, -1.071211, -0.468524, 0.384259, -1.189497, 0.406632, 0.681126, -0.440703, -0.773902, -0.838168, -1.208226, -0.988567, 0.150959, -0.643446, 0.856990, 0.980113, 1.162811, 1.596140, -0.724479, 0.105303, -0.186950, 0.283084, -0.064893, 1.990701, -1.785999, -0.864643, -1.870263, 1.107410, 0.504602, -0.732027, -0.570880, -1.302793, 1.154628, -0.054597, 0.399226, -0.225317, -0.212890, -0.855952, 2.569160, 0.545390, -0.824547, 1.599204, 0.058183, -0.919645, -0.917455, 0.832989, -0.170566, 1.908245, 0.001603, 0.627770, -1.670792, -0.301800, 0.935163, -1.255118, 1.568303, 0.005433, 0.449391, -0.077267, -0.647444, -0.168594, -0.784819, 0.187211, 0.134343, -1.045220, 0.826532, -0.677676, -1.064600, -1.007895, 0.002193, -0.934753, 0.455572, 1.054577, 0.325151, -0.727604, 0.948810, -0.040443, 1.009822, -1.099845, -0.685704, -0.577473, 1.042355, 1.585365, 0.508017, 1.250269, 0.834853, -0.187163, -0.974382, -0.558890, 0.751242, 0.520268, 0.563874, -1.592970, 0.392170, 0.749258, -0.909995, -0.609332, 0.145706, -0.495422, 2.282540, -0.553180, 1.030593, -1.251119, -2.292460, -0.680006, -1.029058, -1.053776, -1.431870, 0.712730, -0.193627, 0.298942, -1.077898, -1.324547, 0.561727, 1.385163, 1.295232, -0.768190, -0.172363, 1.791400, -0.230682, -0.779946, -0.612985, -1.317359, 0.680402, -0.902588, -1.318383, 0.624819, -0.360594, -1.340570, -0.789035, -0.505029, 0.517947, -1.639783, -0.098554, 0.615573, 0.362778, 1.149147, 0.900741, -0.108052, 1.909900, -0.094781, 1.451123, -1.404963, 0.405052, -3.160711, -0.217405, -0.236148, 0.559246, -0.330710, 0.530316, -0.571844, 0.323980, 0.478754, -0.385131, 1.908600, -0.399630, -0.617568, -0.445279, -0.065905, -1.197955, -1.117299, 0.422909, 0.249833, -2.023288, -0.905316, 1.100531, -0.474970, 0.398178, -0.009706, -0.923664, -1.106093, -2.069996, 0.094279, 0.199192, -1.646251, 0.115020, -1.870811, -0.610377, -0.101928, -1.591876, 1.248467, -0.967401, -0.958078, -0.983985, -0.525775, -0.238477, 0.073324, 0.690220, -1.192351, 0.706804, -1.027691, 0.445164, 0.445526, 0.507654, 0.458278, 1.214694, -0.991027, 1.694324, -1.962804, 1.587605, 0.267685, 0.597028, 1.384048, -1.207393, 1.402665, -1.002188, 0.542966, 0.205386, 0.161106, -0.490303, 1.384367, -1.525820, -0.147554, -0.579420, 0.132134, 0.437392, 1.344328, -1.230314, -0.423900, -1.136409, -0.975552, 1.292045, 0.059140, 0.513426, 0.204706, 0.137762, 0.752766, -0.074565, -0.323963, 0.981965, -1.418644, -1.048476, 1.083746, 1.441313, 1.109894, 0.686279, 1.962865, -0.585661, 0.404725, 0.501347, -0.741332, -1.222185, 0.062794, -0.990662, -1.739711, -0.393303, 0.218227, 0.775324, -0.120361, -0.379616, -0.023608, -0.567983, 1.541468, -1.188268, -0.009361, 1.022319, 0.100692, -0.764004, -1.399661, -0.101892, -1.273206, 0.306998, -0.100859, 0.968483, 1.012353, -1.814927, 1.443665, 0.329604, 0.226099, 0.420079, 2.182723, -0.706210, -1.743484, -0.223990, -0.981296, -1.344207, 0.026827, 1.165722, 0.080950, -1.436192, -0.727950, -0.335521, 0.016692, -1.943586, 1.010619, 0.863864, 0.555188, -1.724232, 1.179763, -0.652402, -1.187410, -1.128296, 0.034642, -0.470956, 0.579688, 1.028719, -0.029948, -2.009375, 0.160249, 0.183795, 1.233182, 1.465205, -0.782515, -1.590237, -0.384087, -0.240510, 0.091320, -2.005267, 0.477657, 0.151191, 0.108872, 1.003721, 0.339393, 1.325678, 0.393562, 0.088816, -0.309190, 1.301266, -1.186674, -0.019479, -0.799372, -0.677829, -0.390775, -0.247341, 0.382879, 0.638548, -0.637109, 0.594272, 1.228869, 1.298967, -1.971720, 0.344073, -0.096511, -0.454820, 0.920726, -0.285646, -0.051787, 0.050206, 0.262606, -0.152623, -1.407591, 0.733645, -0.491175, -1.989340, 1.805234, -0.303618, -0.425677, -0.078338, -0.177448, 1.035850, -0.380796, -0.909890, -0.026420, 0.506166, -0.346338, -0.110518, -0.353320, -0.851201, 1.400690, 1.005261, -1.665477, 0.541884, -0.815251, -1.433695, -0.054924, -1.830152, 0.618322, -0.024651, 0.556516, -0.083552, -0.099854, -0.531426, -0.592710, -0.924229, 1.361632, -1.784960, 0.541107, 1.805802, -1.070639, 0.324827, -0.538632, 1.372235, 0.399999, -2.064262, -1.449957, -0.770128, 0.344969, 0.359928, -0.164216, -1.695213, -1.053622, -0.406078, -1.306273, 0.862667, 0.016658, -0.522787, 0.670778, 2.279625, -0.249720, 0.159726, 0.094341, 1.340139, 0.734755, 0.019777, 0.170436, -0.502489, -0.723570, 0.899053, -1.660418, 0.618812, 0.026541, -1.285614, 1.535885, -0.316763, -2.671963, -1.499371, -2.017975, -0.054807, 0.063276, 1.133049, 0.382705, 0.581800, -0.365803, -1.150293, -0.891006, 0.575040, -0.572197, 0.694885, -0.471478, -1.217547, 1.155872, 0.807433, 0.283096, 0.465342, -0.278141, 1.816866, 0.345605, 0.411659, 0.593769, -0.324959, -1.703209, 0.036549, -0.434589, -0.863085, -0.645012, 0.020649, -0.402335, 0.328794, -0.854237, -1.490313, 0.519622, 0.260884, -0.622462, 2.225539, -1.734284, -0.708441, 0.891565, -0.320693, -1.241685, 0.922951, -0.616811, 1.213397, 0.883570, -0.577842, -0.254065, -0.660441, 0.416066, 1.458002, 0.262960, 1.419493, -0.733050, -1.214074, 0.471576, 0.604537, -0.610646, -0.568204, 0.895381, -0.224940, 1.307829, -1.066282, -0.278069, -1.010297, -0.085463, -1.070483, -2.524631, -1.657709, -0.328665, 0.196075, -1.536689, -0.269993, -1.468156, 1.200014, 1.317859, 0.496922, -0.821136, -0.750105, 0.734596, 1.882009, 0.258236, -0.506153, 0.805853, -1.016002, 0.072952, 1.331897, 0.914816, -0.782357, 1.472884, 0.090339, -0.145303, -0.811489, 0.532729, -0.032703, 0.450639, 1.463354, -1.675764, 0.561146, 1.615618, -1.071429, -0.794066, 0.541196, -1.009295, -0.953484, -0.319365, 1.330206, -0.263253, -0.106828, -0.085058, -0.342887, 0.204592, -0.961015, -1.119459, -0.403068, -0.781531, 0.350601, -0.563330, -0.333154, -1.629797, -1.377713, -2.357569, 0.616803, -0.863318, -0.279692, -0.138355, 0.489389, -2.114235, -0.566127, -1.161819, -1.795574, 0.332270, -1.024892, 0.190045, -0.714724, 0.981877, -1.083411, 1.132376, 0.779131, -0.701695, -0.457713, -0.580509, -0.257548, 0.752325, 0.356168, 0.341560, -0.915911, -0.025256, 0.119849, -1.390833, 1.626216, -1.821793, -0.610723, 0.219096, 0.846793, -0.442989, -0.173498, -1.037215, -1.003763, 0.815575, 0.990365, -1.440434, -1.308487, -0.299982, 0.146772, 1.355022, 0.459104, 0.650038, 0.437847, -1.841343, 0.806706, 0.404297, 1.577582, -1.052571, -0.204794, -1.621402, -0.039549, 0.528580, 1.951219, 0.582628, 0.328794, 0.096244, -0.978636, -0.490978, -0.655558, 0.902283, -0.156434, -1.272759, -1.105615, 0.541369, -0.494170, 0.661613, -1.141477, -0.250881, 0.775980, 0.377850, -1.538527, 0.568645, 0.422027, 0.142389, -1.120289, -0.949990, -0.975085, 0.012336, 0.080454, -0.798149, -0.140873, -1.567917, -1.678914, -1.199589, -0.240739, -1.167511, 0.474352, -0.615202, 0.432346, -0.431418, -0.973709, 0.128807, -2.114420, -0.752288, 1.514651, 1.201147, 1.381283, 1.833200, -0.684496, -0.644019, -0.032498, -1.739330, 0.604950, -0.668583, 0.731599, 0.935346, 2.529008, -0.080260, -1.535189, -1.623080, 0.472362, 0.112937, 0.034706, 0.108317, 1.351220, 0.384778, 0.270590, 0.004455, -0.060803, 0.962521, 1.806219, -0.382347, 1.010272, 0.610690, 0.321843, 1.995162, -0.925456, -1.426959, -0.503160, -0.859878, 0.997869, 0.180420, 0.022802, -0.543608, -0.395936, 0.384772, 0.731211, 0.643875, -1.024770, 1.055487, -0.209147, 0.483721, -1.921153, -0.330497, 1.164398, 0.841495, 1.261328, 0.811130, 0.465430, -0.060005, -0.599450, 0.396830, -0.042464, 1.646814, -0.393928, -0.663650, -0.203225, 1.342105, -1.615342, -0.955749, 0.132427, 0.349548, -0.172642, -0.381730, -0.674794, 0.004365, 0.885937, -0.744909, -1.050710, 0.114999, -0.017450, -0.140872, 0.368162, -1.381751, 2.223168, -1.247892, 1.309157, -0.992121, -0.406124, 0.600386, -0.523733, -1.714635, 0.957007, -0.521903, -0.381957, -1.151117, -1.468466, 1.366095, 1.416929, -0.569795, -0.189906, -0.528922, 0.140109, 0.104641, -1.388965, -0.374247, -1.695187, 1.141310, -0.354672, 0.367612, -0.681574, 0.742611, 2.481385, 0.117414, 0.639853, -1.632688, -0.802826, -1.183616, 0.162699, 1.067759, -0.219933, -0.467832, 1.759198, 1.095757, 1.927000, -0.106438, -2.846754, -0.373539, -1.139454, -0.983262, -0.404448, 0.405138, 0.488139, -0.594759, -0.794701, 0.825140, -1.023294, 0.586792, 0.533998, 1.212344, -0.001632, 0.077263, 0.811187, 0.409740, -1.464570, 0.079236, 0.672090, 1.719249, 0.727476, 1.228663, -1.702258, -0.287894, -0.626606, -0.522534, 0.097011, -1.508073, 0.061058, -0.259103, 0.417731, 1.522940, 0.910828, -1.885467, -0.016602, 1.623869, -0.295934, -0.371918, 1.205788, 1.157457, 0.007835, -0.599605, 1.144053, 0.316588, 0.369770, 1.872153, -0.509227, 1.261109, 0.572774, -2.557551, 0.638096, -0.217323, 0.145953, -1.567689, 0.119539, 1.160691, 1.642228, -2.761168, 0.829417, 0.250574, -0.284405, -1.078680, -0.087639, -1.283276, -0.880838, -1.095592, 0.292243, -0.113082, -0.120326, 0.152604, 1.391578, 1.480961, 0.689682, 0.384452, -0.976138, -1.013940, -2.097892, -0.689014, 1.334035, 0.802433, -0.775227, -0.331985, -0.134870, 0.386745, 0.926449, 1.966517, 0.002414, 0.225337, 1.830822, 0.087287, -0.191044, -1.228650, -1.103200, 0.535576, 0.448832, -0.882940, -1.389402, -0.474648, -2.912386, -0.321580, 1.491610, -0.027717, 0.322831, -0.197970, 1.970081, 0.647669, -2.086119, -0.719397, -2.231312, 0.280339, -0.064404, 1.711110, -0.193742, 0.236382, 0.896318, 1.831130, -1.704295, 1.253539, 1.391618, 0.713065, -0.850322, 1.207138, 0.981926, 0.464186, 1.251897, 1.556553, 0.524986, 1.014675, 0.055805, -0.235241, 0.076670, 0.538526, 1.730335, -0.587256, -0.473110, -0.247164, -1.197966, -0.035639, 0.155089, 0.593809, -0.185745, 0.323978, 0.018321, 1.346498, 0.707829, -1.064135, -0.775178, -1.528107, 0.203195, 0.183634, -0.930529, 0.398016, 0.015713, 0.017203, 1.094427, 0.154613, 0.986109, -0.668638, 0.045320, 0.624950, 1.218392, -0.590207, 0.039290, -0.939700, 0.347518, -1.080879, 1.109423, 0.459649, 0.808434, 0.860789, -0.147751, -0.549967, -1.264631, -0.115886, -1.017183, 0.071367, -1.792004, -0.873864, 0.356028, -0.335641, -1.232728, -1.179856, 0.662938, -0.380446, 0.972452, -1.985803, 0.596918, -1.288895, -2.476754, 0.367720, 1.158958, -0.287308, 1.612499, -0.639899, -0.992828, -1.023186, -1.277189, 0.228138, 0.430396, 0.708025, 0.857596, 0.401366, 0.385236, 1.049906, -0.728567, 0.602123, 1.514122, 1.434843, -0.691096, 0.505747, 0.700124, -1.047528, -1.404575, -1.183536, -2.092552, 1.644240, -1.167867, -0.720097, 1.379291, 0.192405, 0.245716, 0.701627, -1.780863, 0.176897, 1.108580, 0.837794, -0.717489, 0.014237, 1.514900, 0.832846, -0.058489, -0.006861, -0.957518, 0.630517, -0.896191, 0.183444, -0.537597, -0.048099, -0.163294, 0.353119, -0.480711, -0.476088, 0.077457, -0.921198, 1.196173, -0.161084, -1.282600, -0.011753, -0.202328, 0.111695, 0.334534, 0.529977, -0.176867, 0.296759, -0.031366, 0.867123, -1.197649, -0.797153, 1.227730, -1.936863, -0.475364, 1.146740, 1.550781, -0.188952, -0.118396, -0.117279, -0.568768, -0.056729, 1.434670, -1.344079, -0.012801, -0.864768, 0.263012, -2.174557, -0.079170, 0.198756, 1.080901, 0.213995, -0.138920, -0.184450, 0.736849, -1.015848, 0.591306, -0.868033, 0.175184, -1.353097, -1.088848, -0.391434, -0.238016, -0.762331, 0.096874, 0.618679, 0.615525, 0.474266, -1.956552, -0.886348, 0.065288, -1.279955, -0.396800, -0.054905, -2.140511, 0.720317, 0.111989, -0.188230, -0.904910, -0.699197, -0.753609, -1.370695, 0.522442, -1.144708, -0.824139, 0.578492, 0.032596, 1.234211, -0.140526, -1.204944, 0.414282, 0.672143, 1.386806, -1.174552, 0.260907, -0.101144, -0.688084, 0.334148, 0.658840, 1.339427, 0.866108, 0.251280, 0.849447, -0.296863, 0.813822, 0.592182, 0.666626, -0.417604, -0.704341, 1.805481, -1.085395, -1.471843, -0.526046, -0.798585, 0.461616, 0.455374, 0.198808, 0.643054, 0.848528, -1.025526, 0.251955, -0.684070, 0.987381, 0.010578, -0.552161, 0.433957, -0.049865, -0.379219, -1.249383, 1.708083, 0.379515, -0.785636, -0.829067, 0.712277, -1.557817, -0.938206, 0.702534, 0.575845, 1.052007, 0.765936, -2.690529, -1.018806, 0.973163, 3.894614, -0.141342, -0.212867, -0.998326, 0.434509, -1.221487, 1.642527, 0.505829, 0.527765, -0.139643, -0.485151, 0.571778, -0.990793, -0.776317, 1.889388, -1.816237, 0.467499, -1.211371, -2.260401, 0.889239, -0.600719, 1.246642, -1.670895, 1.030508, -0.120777, -0.910964, 0.101612, -0.078331, -1.618454, 0.660884, -0.001900, 0.029511, -1.436794, -0.871114, 0.107618, 1.334153, -0.084568, 0.108842, -0.409169, -1.805117, 0.198104, 0.001397, -0.151294, 0.652565, -1.538362, -0.244384, 0.518996, -1.674269, -1.726131, 1.548832, -0.212926, -0.494182, -2.498331, -0.789039, 0.615790, -1.651339, -0.992343, -1.785200, 0.087360, 0.932293, 0.696440, -2.408025, 0.947396, 0.075647, 0.333008, 0.124958, 0.141207, -1.117673, -1.637799, -1.466103, -1.280784, 0.944840, 1.777779, -1.163379, -2.880063, -0.994002, 0.141081, 0.020690, 0.484998, -0.466470, 0.095529, -1.180752, 1.111776, -0.517998, -1.325843, 1.735500, 1.548226, 0.734140, 0.983640, 0.709410, -1.586697, -0.354250, -0.886171, 0.968904, -0.064094, 0.926899, 0.880921, 1.188696, -0.207731, 0.049663, 0.001441, -1.286147, -0.098486, -1.176948, -1.014778, 0.787811, 0.806721, 1.149112, -0.071881, 1.469494, -0.535219, -1.081428, 1.659162, 0.475277, -0.088917, -0.190097, -0.213815, -2.845499, -1.058624, -0.097921, -0.076876, 1.143328, -0.266844, -0.438507, -0.237990, 1.942492, -0.883034, 0.129053, 0.948352, 0.028201, -0.830583, 0.816437, 2.073250, -0.101159, 0.851635, -0.541708, -1.613257, 0.287060, -0.805527, 0.541621, -2.505954, 2.066478, -0.667170, -0.183563, -1.245635, 1.305435, -0.893380, 1.530889, -0.682172, -0.610702, -0.313108, 1.001325, -1.068051, -0.658278, -0.119745, 0.785136, -0.169412, -2.839016, 0.780181, 0.098738, 0.045568, 0.198376, -0.309532, -0.135328, -1.202397, 0.030464, -0.922725, -0.047256, -0.486867, -0.472834, 0.520375, -0.608999, 1.027450, 0.056838, -0.386279, 1.171524, -1.253464, 0.357801, 2.306967, 0.046679, -1.295139, -0.111503, -0.720255, -0.486340, -0.702307, 0.826913, 0.317037, 1.154962, 0.479846, -0.901476, -1.106205, 1.195696, -0.304677, 1.885280, -0.197662, 0.184613, 0.755152, 1.122081, 0.763658, 1.124159, -0.798773, 0.714035, 1.183381, 1.764612, -0.484801, 1.711390, 0.852786, -0.798011, 1.922672, -0.174849, -2.038882, 1.979155, 0.006627, 0.284280, -0.488100, 0.211718, 0.213431, -0.075562, 0.602582, -0.076912, 1.226605, 0.102534, -1.087868, 0.622465, 0.362372, -0.594104, 0.752425, -0.316477, 0.256494, -1.782364, -0.602093, 1.136649, -0.009733, 1.606517, -0.463423, 2.587354, 0.294361, 0.586736, 0.822519, 0.262047, 0.314503, 0.007418, -0.351994, -0.505615, 0.196448, 1.035212, 0.369256, -1.052827, 2.105798, 0.590610, 1.458264, -0.889388, 0.788536, 0.300303, -0.490584, 0.777276, 0.469276, 1.157301, -1.181388, 0.537685, -1.172405, 0.048209, -0.203005, -0.366984, 0.869575, -2.246902, 1.876398, 0.729724, 0.518105, -0.711057, -0.877547, 0.374919, -0.744996, -0.385429, -1.044250, -0.603253, -0.397732, -1.148584, -0.559165, 0.630078, -0.083826, 0.101190, 1.158692, 0.884957, 1.146484, 0.305474, 0.672290, 1.127642, -1.219168, -0.732483, 0.583748, -0.594153, 0.557610, 1.322005, -0.759000, -1.780601, 0.195723, -1.692121, -0.291109, -0.694366, 0.205620, 0.773941, 0.543874, 0.232398, 0.722553, -0.320214, 0.055977, -1.867450, 0.440543, 0.545316, -0.360690, 0.939106, 1.926783, -0.458366, 0.258509, -0.718722, 0.262705, 0.160377, -0.503539, -0.469412, -1.173705, -0.644112, -0.482584, -1.015266, 0.536556, -0.749363, -1.061847, 0.516571, -0.823574, 0.581866, -1.664287, -1.022961, -0.521343, 0.776000, -0.501781, 0.828502, 1.419262, 1.959566, 0.963908, -0.116325, -0.939014, 0.029349, 2.198124, 0.877653, 1.002720, 2.497785, -0.268468, 0.287738, -0.329702, 0.580366, -0.803510, -0.988516, 0.131645, -0.897182, -0.275945, 0.680384, 0.735429, 1.126706, 0.176773, 0.055237, 1.057445, -0.178276, 0.073145, 0.472411, -0.685040, -0.087068, -0.118235, -0.782402, 0.283651, -2.162942, 0.551814, 0.803555, 0.609387, 1.664766, 0.387063, 0.518703, -0.298149, 0.135753, 1.455144, -0.764563, 1.029194, -0.840962, -0.164008, 0.191356, 0.648072, 0.812507, 1.492637, 1.504805, 0.661302, 0.865894, -0.309037, -0.112874, -0.073699, -0.562879, 0.251284, -0.223203, 0.344566, -0.567345, -0.128516, 0.264010, -0.740563}, + { 0.686786, -0.412827, -0.954384, -0.250036, -1.279124, -0.388454, 0.772480, 0.265782, 0.239731, -0.320993, -0.236322, -0.213086, 0.483063, -0.963978, -0.512312, -1.003315, -0.715501, -0.460491, -1.350278, 0.292528, 0.761338, -2.479331, -0.365349, 1.054416, 0.636595, -1.082940, 0.138221, 0.633486, 0.956523, -0.367531, 0.190268, 0.227681, 1.191601, 0.235072, 0.462468, 0.577388, -0.374628, -1.099212, -0.855962, -0.272587, 0.200696, 0.546901, -0.517906, -0.684247, -0.410653, -1.310561, 0.013227, -1.526165, -0.188351, -1.117439, -0.434290, -0.651184, -0.507773, -0.091448, 1.411584, -1.198217, 0.795058, -1.118065, 0.069142, 0.909652, -1.140848, 0.282164, -1.091999, -1.669020, 0.019183, 0.874124, 0.223936, -1.417213, 0.303794, 0.084386, 0.944091, -1.135258, -0.156557, -1.306080, -1.545901, 0.760520, -2.129505, -0.680492, -0.379109, -1.060158, -1.884403, 0.970512, 1.085505, 1.550855, -1.069825, 0.829637, -0.848534, -0.885269, -2.420554, 0.418745, -1.232314, -0.856177, -0.500907, -0.020048, 1.892329, 0.868363, 1.321794, 0.129578, 0.770199, -0.730568, -2.257548, -0.293321, 1.740305, -0.370603, 0.350315, 0.161306, 0.204819, 1.780152, -2.041967, 0.321083, 2.138391, -0.504547, 0.171929, -0.001936, 1.164255, 1.210264, -0.418027, 1.150411, 0.259347, 2.006141, 0.276597, -0.079845, 1.802190, -0.177237, 1.440719, -0.165683, -0.115821, 0.360355, -1.609864, -0.428472, 0.256303, 0.567704, 0.089992, 0.876491, 0.809326, 0.707831, 0.635360, -0.986334, -1.337440, -0.331593, 1.338936, 1.320294, 0.865981, -0.872283, -0.162961, -1.218794, 1.324572, -0.073147, 1.053123, 2.220264, 0.567374, 0.193227, 1.079667, 0.349257, 0.894225, -1.426330, -0.763945, -1.976367, 1.339014, -0.582789, -0.626101, -1.051183, -0.666207, -0.801345, -1.051876, -0.116021, -0.329459, -0.442221, -0.089336, -0.984451, 0.993044, 0.013954, -0.035889, -0.626623, -1.307395, -0.431291, -0.843793, 1.016768, 1.678853, -0.000837, -0.335257, -0.390500, 0.705424, 0.566030, -0.302734, -0.327476, 0.848161, -0.945110, 0.808173, 0.427212, 0.883622, -1.986534, -0.787966, -0.063913, 1.011009, 0.156580, 0.846975, -0.210390, 0.441976, -1.721662, -1.546866, 0.290919, 0.445625, -0.313846, -1.069270, -1.714673, -1.980601, 0.009956, 0.789273, 0.483036, -0.823980, 1.208253, -0.964687, -0.072437, 1.668113, 0.743317, -0.271165, 0.168597, -0.007601, 0.740105, -0.504425, 1.276407, 1.038000, -0.704446, -0.144954, -1.012597, 0.087733, -0.230432, 1.409416, -1.760558, 0.283564, 0.158769, -1.019383, -0.129060, -0.239653, 1.723891, -3.909227, -1.239985, 0.014286, -0.342466, 0.376859, 0.798029, -0.993885, 0.271538, -0.394079, 1.854243, -0.610577, 0.298628, 0.162271, -0.791895, 1.019610, -1.524958, -1.039182, -0.845453, 0.453652, 0.561561, 0.640124, -0.052841, 0.374167, -0.241185, 1.117634, -0.173280, -0.137072, 0.552920, -0.552898, -1.432745, 0.511922, 1.363761, 0.550298, -0.763824, -1.243657, 0.656262, -0.740492, -0.851194, 0.657613, 1.222592, 2.190613, 0.753660, -0.142028, 0.950250, 0.311732, -0.544070, -0.454233, -0.426882, 1.224790, -1.297737, 0.788370, 0.454713, -0.357497, -0.467719, 0.203628, -0.255674, 1.075629, 0.008185, -1.093055, -0.272300, -0.416621, -0.422433, 0.222307, 2.056519, 0.674456, -0.130661, 0.712831, 1.779856, 0.709882, -2.260879, 1.420516, 0.373098, 0.540918, 1.067045, -0.526540, 2.264968, -0.834754, -2.032719, -1.506854, -1.534465, -0.483309, 0.456616, -0.105632, -1.294574, 1.209211, 0.528366, 0.564573, 1.516921, -0.336675, 0.384380, 0.755788, 0.885710, -1.328422, -0.347906, -0.373588, 1.385492, -0.997038, -0.753151, -0.101377, 0.754270, -0.157166, 1.728030, -1.003422, -0.242540, -2.582107, 0.281566, 1.718961, 0.105754, 0.567749, -0.458978, 0.441752, -2.504363, 0.747901, 0.443635, -0.986823, 0.543094, 0.758128, 0.276799, -0.838422, -0.254628, 0.154302, 0.023075, -0.620657, -0.531672, -1.173659, 1.179663, -0.183430, -0.446886, -0.061832, 0.705365, -0.773264, 0.088834, 0.509560, 0.919250, 0.962761, 0.049566, -0.535423, -0.072359, 0.533825, -0.355980, 0.166492, -0.550328, -0.832446, 0.678626, -1.229817, -1.259421, 0.421155, 0.630249, -0.800549, -0.808628, -0.966701, 0.202434, 0.271819, -0.332733, -0.414194, -0.663516, -1.349441, 1.137386, -0.742321, -0.914946, 0.413743, 0.269309, -0.139922, -0.115573, -1.027439, 0.016030, -0.590604, 0.311563, -0.476149, 0.020791, -1.659814, 0.400162, 1.366274, 0.521312, 1.199674, 0.272051, -0.244506, -1.702876, 0.519922, -0.251876, -3.415838, -0.123890, 0.490404, -1.402815, 0.919506, 0.289372, -0.532127, -0.258929, -0.070306, 0.943063, -0.808710, -2.718118, 0.153334, 0.564909, 1.000353, -0.227652, 0.631858, -0.947609, 0.895864, -1.980478, 0.184859, 1.177037, 0.235448, -2.432657, 0.619778, 0.698334, -0.212454, -0.515430, -0.172867, 1.027052, 0.977117, -0.205310, 0.507572, -0.201579, 1.140437, 0.317274, 0.370059, -0.119170, -0.959528, 0.390766, 0.539213, 1.710125, 1.329072, -0.370380, -0.468552, -1.006907, -0.696435, 0.410752, 1.709874, -1.336538, -0.737561, -0.657240, 0.606588, -0.705513, 0.507796, -0.916452, 1.412139, -1.740738, -0.970704, -0.169924, -0.599638, 0.771926, 0.790928, 0.790850, 0.113795, -0.283163, -1.028869, 0.430322, 0.019492, 0.504161, -0.621251, -1.716833, 1.359194, 0.559757, -1.119485, -0.154378, 1.299095, 2.195402, 1.545555, 0.369028, 0.903856, 1.088053, -0.970528, -0.542894, 0.663104, -0.101616, 1.339739, 0.354353, 0.880610, -0.713797, -1.697795, -0.097082, 0.743069, 0.465664, 0.278032, -0.799819, 0.890183, 1.288068, -1.110344, 1.255000, -1.001724, 1.127172, -0.716119, -0.992804, -0.162644, 1.304924, -0.710251, -0.582232, 1.376230, 0.431043, -1.098114, 0.037602, -1.773925, 0.785106, -1.060948, -0.320657, -0.724032, -1.467829, 2.076141, -0.536129, -0.415248, -0.627632, 1.345590, 0.610116, 0.515450, 0.051921, 1.018772, 1.585701, -1.408608, 1.159209, 0.175208, 0.318945, -1.725426, 0.125371, 0.318990, 0.462319, -0.208388, -0.988782, 0.930157, 0.919493, 0.292909, -0.389948, -0.102549, -0.390623, -2.126758, -1.574990, -0.235185, -0.208250, -0.942776, 0.869169, 2.481962, -0.035201, -0.304398, 1.126150, 0.141366, 0.315819, 0.704915, 0.104685, 0.105298, 0.098470, 0.955901, -0.320000, 0.620367, -0.000443, 0.616779, -0.264065, -0.451803, 0.714067, 1.659721, 0.822508, 0.562821, -0.090356, -1.948032, 1.066526, 0.129443, -0.544590, -0.320278, 0.809754, -2.441317, -0.719177, -0.919938, -1.384614, 0.241870, -0.694270, -0.170047, 0.206789, 0.905787, 1.251660, -0.624036, 0.964863, 0.224957, -0.307109, -0.161758, 1.728824, -0.764930, 1.011986, 0.400483, 0.263698, -0.485156, 0.540260, 0.098768, -0.846968, -0.475801, 0.503877, -1.005066, -1.509396, 0.439936, -1.346023, 0.193136, -0.151591, 1.484433, -0.008946, 0.499975, 1.317144, 1.196448, 0.652226, 0.597085, 0.481827, -0.925874, 1.096406, -1.180965, -0.314917, -0.270137, -0.934176, -0.782880, -0.231976, -1.231468, -1.270191, 0.863512, 0.065505, -0.842318, 0.226728, 0.205516, -0.260108, 0.714896, 0.649742, 1.094028, 0.023332, -1.544193, 0.562718, -0.275914, -1.453496, 1.526585, -2.339322, -0.254268, -0.386339, 0.627062, 0.388599, -0.563492, -1.261876, 0.520191, -0.162895, 0.674523, -1.395587, -0.452683, 0.865333, 2.106666, 0.462597, -0.640847, -0.678950, -0.698807, 0.135454, 0.619530, -0.975410, 0.799226, 0.862220, -0.065348, -0.095913, 0.316879, 0.518147, -0.366385, 0.850906, 0.088455, 0.417005, 1.256919, -0.877705, -0.145089, 0.186268, 0.212057, -0.549067, 0.376268, -0.965200, 0.832861, -0.117663, -0.336138, -1.705418, 1.285777, 2.040204, 0.217795, -1.043740, -1.497164, -0.616132, -0.217728, -0.868704, -1.033684, 0.482896, 0.441117, 1.330352, 1.082108, -0.076171, -0.038633, -0.743616, -0.774865, 0.212039, -0.695159, -0.575788, -1.359800, -0.630690, -0.521749, -1.137597, 0.800093, 0.285926, -0.512262, 1.054841, -0.722327, 1.090069, 1.612239, 0.299381, -1.331767, 0.238730, 0.021873, -1.443125, 0.041261, -0.204166, 1.149507, 0.194036, 0.698985, 0.363813, -1.576851, -0.807296, 0.696471, 0.241355, 1.124999, -0.743816, -1.344677, -1.230981, 0.941631, -0.305382, -0.443746, -0.374589, -0.053789, 0.488511, -0.409527, -0.241075, -1.027440, -0.024958, -0.410471, -1.608270, 1.693856, -0.158322, -1.077427, -0.309164, 0.922232, -0.308500, 0.997683, -1.328948, -1.737507, -0.384962, 0.653399, -1.463339, 0.592553, -0.740229, 0.418823, -0.487712, -0.191475, 0.038117, -0.799629, -1.302999, -0.175122, -1.704433, -0.012633, 0.212992, -1.363732, 1.203866, 1.435550, -0.318578, -1.213288, 0.912331, -1.773704, 1.330481, 0.314178, -0.894960, -0.815668, 0.859242, -0.799324, -0.913832, 0.605599, 1.674654, 0.366161, 0.000371, 1.778550, -0.667728, -0.480150, 0.413115, 0.942118, -2.385074, -0.332675, 0.139496, -0.053274, -0.398646, -2.203224, 1.022387, 0.707606, 0.461915, 1.584127, -0.536401, 0.309274, -0.685028, -1.776032, -0.213263, -1.847616, 1.542393, -1.295443, -1.393740, -1.276267, -0.046056, 0.296055, -0.946070, 0.143859, -0.134447, 0.557150, -0.851634, 0.987143, 3.034742, 1.179105, -0.840504, 0.758509, -0.853593, -1.303635, -1.527710, -0.425551, -0.518229, -0.408586, 0.657220, -1.793430, -0.155493, 0.340596, -1.117213, 0.766365, -0.615975, -0.308872, 0.904717, -0.708467, 0.496372, 0.232802, -0.555202, -1.007697, 0.336694, -0.839170, -1.200312, 0.355497, -1.055986, -0.367983, -1.803417, -0.885488, 1.251403, -0.270784, 2.308097, 1.079320, -0.760809, 0.078073, -1.058863, -1.019223, 0.312140, 1.264329, -0.094438, -0.669735, -2.188102, 1.082121, -0.019285, -0.686093, -0.461736, -0.340094, 0.877557, -1.095224, 1.099599, 0.561499, -0.102243, 0.125279, 0.798579, 0.335828, 0.041117, -0.443373, 1.078746, 0.938751, 0.227797, -0.614971, 1.235823, -0.057603, -0.137368, 0.473112, 1.191525, -0.308574, 0.162644, 1.329305, 2.044406, -0.247064, 0.584813, -0.590792, -0.139225, 0.918273, 0.766051, 0.722334, -0.524138, -1.700157, 1.659801, -1.543023, -0.358191, -0.628182, -0.511199, 0.862120, 1.053664, -0.755867, 0.376711, 0.183212, -0.765554, 0.961003, -0.870851, 1.764497, -0.290330, -0.047319, 0.007996, 0.486137, 1.393689, 0.324664, 0.374559, -2.226274, 0.561006, -0.450550, -0.375078, 1.095775, 1.105933, 0.156463, 0.393381, -0.125902, -0.508615, -1.187574, 1.635680, -0.931458, 1.939179, 0.527625, -0.098392, -1.436941, 0.855899, 1.395831, -0.593924, -2.774503, -1.404459, 0.511385, 0.998486, 0.180451, 0.362988, 0.454479, 1.598041, -1.196180, 1.071723, 0.299573, 1.856691, -0.196294, -0.228442, 0.538361, -1.626858, 1.200136, -0.148306, -1.102481, -0.235780, -0.297007, -1.166779, -1.179737, -0.967552, -0.993188, 0.920322, -0.155835, -0.425178, -1.199717, 0.539237, -0.222480, -2.277026, 0.656393, -0.362945, 0.087165, 0.387593, -0.492040, -0.410881, 0.213712, 0.309292, 0.685655, -0.333987, -1.880259, -0.604153, 1.240811, -0.249888, 1.905823, 0.103252, -0.147296, -0.390929, 0.082614, 0.409527, 1.635633, -1.906732, 0.310449, 1.177089, 0.098295, -1.950454, 0.176045, -1.834756, -1.159774, 0.366167, 0.715917, 1.104433, -1.160204, -1.352480, 0.651027, 1.491238, -0.317499, -0.621631, 0.203636, -0.424024, 0.190574, -0.803283, 0.983866, -0.953901, 1.660653, 0.143466, 1.063439, -0.939690, 0.723419, -0.387405, 0.562349, 0.003468, -0.040658, -0.580987, -0.527315, 0.767364, 0.096242, 2.815122, -0.998191, -1.139517, 0.498806, -1.421889, -0.387422, 0.828329, 0.813944, 1.146248, -3.228796, -2.094913, -1.050164, -0.102330, -0.224840, 1.780088, -0.896367, -0.887257, -0.770723, -1.796928, 0.631518, 0.178172, -0.662787, 1.282492, 1.930620, 0.344506, -1.731976, 0.944697, -0.477242, 1.441443, -0.694415, 0.392576, 0.199819, -0.060354, 0.720098, 0.729184, -0.361049, 0.722444, -1.086976, 1.490175, -0.662072, -0.095159, -1.506942, 0.277037, -0.747569, -0.881556, -0.551217, -0.931725, -0.009303, 0.673059, -1.078026, 1.703707, -1.050703, -1.027260, -0.107057, -1.340918, -0.973599, 0.285315, -1.935603, 0.198716, 1.192959, -0.945462, 0.416709, -0.421329, 1.464060, -0.692199, -0.277998, 1.180237, -2.403859, 0.665797, -2.041831, -0.879629, -0.745589, -0.279683, -0.786548, 0.594801, 0.459740, -1.148127, 1.332565, 0.799983, 0.154175, -0.594357, 0.927541, 0.817094, 0.012064, 1.550141, 0.338382, -0.928847, -0.809447, 1.201927, -0.218417, 0.389575, -1.073272, 1.782594, 0.790329, 2.690952, -0.854106, 0.605478, 0.397799, -0.292042, -0.545598, -1.796967, -0.033556, 1.271666, -1.494714, 0.516119, 0.215435, 0.283051, -0.026076, -0.845024, -0.529101, -0.719377, 0.533285, 0.513572, -1.270989, 1.749668, -0.610834, -0.521547, -1.498350, -2.216109, -1.674349, 0.602783, 0.085579, 1.919086, -1.049912, -1.840025, 0.742700, -2.070721, 1.616043, -1.205884, -0.499156, -0.680976, -0.078202, -0.552070, 0.760756, 2.213746, -1.204720, -0.139873, -0.454880, -1.731420, -1.926642, -0.568161, 0.216731, -0.340966, -1.555043, -1.333619, -1.227993, 0.479945, -2.477036, -0.039328, 0.155679, -1.630847, 0.747141, -2.849936, -0.282815, -1.446722, 0.270661, 0.539898, -0.145862, 0.699798, -0.626077, 0.437131, 1.885929, -0.658615, 0.459139, 1.084074, 1.658282, 0.753585, -0.990620, -0.613555, -0.061971, -0.397148, -0.197585, 0.245847, -1.653196, 0.816565, -1.008766, -0.760112, -0.917557, 2.789919, -0.195072, 1.892358, -1.432319, 1.541289, -0.079494, 0.985417, 1.910793, -1.697142, -0.180906, -0.352929, -2.099798, -0.367024, -0.908286, -0.272068, -1.437038, 0.258898, 0.636025, -0.269686, 0.056963, -1.607519, 0.041652, -2.093534, 0.905654, -1.398328, -0.715254, 1.272977, 0.710819, 0.687911, 0.001742, -0.221029, 0.209738, 1.141345, 1.988818, -0.668183, 0.193601, -0.849359, -1.522522, 1.050579, -1.128853, -0.800873, 0.600003, 0.665269, -0.365811, -0.369379, -0.117044, 1.544924, -0.812353, -1.177569, -1.005114, -1.080506, -0.229261, 1.664228, -0.827576, 0.741223, 0.678941, -0.847511, 0.229853, -0.740431, 0.542731, 1.688227, -0.239932, 0.114038, -1.296318, 1.800347, -1.497541, -1.353060, 1.242992, 1.041044, 1.524270, 0.823733, -0.508059, -1.218891, 0.922841, -0.551410, -0.342022, 0.865529, -1.248247, -1.209369, 0.598614, 0.324598, 0.235621, -1.418816, -0.621824, -0.505364, -0.411728, -0.019689, 0.105613, 0.935643, 0.646233, -2.496740, 1.380557, -1.091092, -1.940543, -0.512763, -0.790937, -0.644819, 1.347443, 0.213199, 1.282681, -0.271331, 2.417922, 0.571479, 0.749029, 1.067326, -0.632802, 0.539238, -0.633065, 1.522586, 0.554098, -1.174882, 0.211887, -1.244379, -0.026399, -0.231448, -0.645496, 1.363875, -0.660919, -0.859490, 1.550215, -0.391130, 0.256604, -0.714977, 2.365872, 1.091650, 1.455415, -0.512348, -0.236868, -0.123357, -0.451179, -1.887984, 0.299722, 2.047120, 0.057376, 0.523066, 0.120305, 1.919198, -0.983197, 1.497362, 0.893917, 0.365696, -1.749394, -1.047617, 0.572081, -1.369414, 0.124660, 0.434574, 1.350827, 0.958559, 1.471701, -0.901075, 0.710243, -0.768128, 1.631744, 0.255488, 0.194679, -0.149011, 0.928359, 1.968508, 1.017136, 0.464226, 0.780892, 0.940171, 2.191196, 0.396962, 2.175486, 2.812886, 0.186325, 1.145789, -0.248121, -0.314955, 0.297093, -1.034387, -0.399280, -0.707100, 0.271872, 0.075209, 0.039129, 2.262311, -0.929207, -0.277004, 1.315781, -0.271506, -0.858215, 0.035157, 1.715799, -0.168779, -1.442646, 0.950059, -0.370277, -0.256212, -0.226615, 2.825429, -0.758130, 0.111143, 0.558345, -0.399092, 0.675165, -0.942873, 1.110861, 0.090156, -1.076805, -0.371468, -0.391298, -1.827450, 0.101201, -0.580944, 0.365027, 1.258143, -2.037072, 1.875970, 0.800073, -1.105441, -0.754599, 0.167846, 1.134017, 0.310822, 0.567510, -0.493330, -1.017928, -0.252374, 0.163640, -1.008037, -0.437007, -0.870018, -1.429713, 0.914931, -0.877254, -0.470576, -1.016514, -1.321604, 1.130046, 0.333676, 0.520429, -0.350936, 0.045528, -0.240283, -0.756092, -1.684721, 0.108907, -0.085249, 0.283357, 0.105023, 3.114342, -0.614636, 1.369744, 1.002582, 1.532972, 0.807571, 0.776130, 0.766981, 0.223366, 0.380151, -0.421675, -0.185594, -1.240574, -0.607701, 0.443978, 0.893475, 0.516036, -0.041775, 0.784014, 0.888409, 1.795471, 1.333600, -1.716295, 0.444112, 0.531101, 0.438343, 0.488325, -0.123772, -1.777215, -0.429330, -0.805608, -1.365521, 0.294407, -1.637442, -1.508557, 0.294235, 1.154034, 1.373750, -1.216943, 0.117971, -0.207947, 2.667760, 1.193870, 0.170425, -2.861491, -0.920327, -0.401834, 0.051076, -0.763792, -0.419237, -0.253164, 0.548181, -0.260666, 1.114218, -0.472359, 0.000777, 0.942669, 0.274244, -0.804280, -0.920966, -0.479232, -0.896244, -1.296808, -0.485839, 0.256575, 0.472418, -1.099501, 1.083782, 0.175227, 1.739817, 0.086799, 1.452611, 1.473743, 0.236520, 0.894751, 0.539812, 0.228592, 1.260415, -0.235119, -1.538888, 1.089239, -0.557788, 0.434740, 1.238091, 0.699313, -2.177261, -0.346899, 2.130578, 0.534032, 0.606903, 0.342108, 1.473813, -0.673447, 0.163659, 0.198401, 0.669836, -1.735455, -0.613109, -0.497421, 0.373850, -0.666279, 0.539778, -0.012893, 2.137125, -0.172673, -0.203354, 1.786115, 1.621231, 0.153345, -0.687931, 0.042081, -0.240865, -1.153801, 2.108947, -0.088081, -0.627526, 0.220326, 0.520893, -0.197772, 0.859140, -0.030755, 2.204912, -0.088261, -0.322531, 1.113869, 0.192430, -0.091217, -0.799817, 0.356725, -0.570216, -1.129366, 0.090061, -0.492572, 0.070809, -0.721441, 1.008628, 0.002018, 1.507723, 1.058046, -1.074672, -1.881438, -1.998306, 1.115537, 0.026094, -0.220509, 0.273241, -0.548247, -0.002409, 1.650509, 0.601163, 0.106623, -1.572271, 0.718868, 1.036136, -0.067851, -2.264058, -1.075715, 0.733057, 1.856139, 0.139983, -0.464700, 0.619518, -0.595357, 3.258187, 0.330511, 0.351369, 0.822868, -0.378564, -1.044285, -1.769115, -1.022173, 1.098753, -0.365373, 0.158807, 1.058372, -0.762679, -0.268012, -0.988236, -0.376957, -1.499588, -0.650633, -0.195035, 1.215868, -1.784685, 2.135588, -1.465462, 0.204122, -0.401013, 1.004250, -0.366283, -0.796044, -0.268670, 0.175652, -0.995022, -1.143925, 1.574796, 0.731559, 0.384915, -0.840597, 0.482574, 1.150213, -0.167820, 0.398102, -0.093998, 0.105793, 0.677898, 1.613358, 0.815593, 0.827124, -1.223293, 0.683526, -1.235659, -1.675279, 0.077846, 0.101757, 0.669349, -0.619003, 0.834292, 0.246638, 0.387830, -0.205522, -0.997976, 1.503187, -0.620129, -0.506207, -0.591371, 0.114501, -0.730490, 1.271365, 0.745807, 1.632571, 0.220765, 0.357309, 0.672587, -0.469215, -0.881775, -0.814130, -1.942472, -1.011197, 0.224068, 0.097396, -0.817933, -0.194047, 0.919817, -1.466467, 0.195265, -0.072863, 0.063559, -0.859960, -0.017212, 0.960897, -2.295446, 1.322414, 0.105254, 0.815768, 0.617768, -1.321106, -0.252745, -0.671972, 0.339428, -1.348388, 0.737005, -0.237628, -0.465819, -1.030587, -0.530554, 0.087951, -0.199632, -0.318314, -1.073532, -1.698142, -1.671828, 1.344701, 0.003553, -0.559478, 0.811507, -0.555669, 1.308364, -0.620497, -0.000049, -0.415008, -0.181747, 2.221251, -1.662945, -0.519566, 0.136829, 0.079531, 0.033857, -0.620097, 0.423572, 1.017152, -0.024860, -1.670799, -0.497549, -0.621389, 1.408771, 1.131663, -0.504252, 0.018398, -0.678687, -0.154862, 1.336222, 1.276668, 0.838400, 1.464020, -0.208965, 1.182976, 1.161914, 0.684418, -0.248047, -2.366961, 1.694174, -0.274180, 0.206851, -0.105770, 1.171527, 1.552044, 0.610508, -0.196718, -0.371139, -0.746466, -0.227213, 0.494243, -0.182971, 0.233854, -1.703848, -0.128566, -0.505413, 1.051162, -0.095104, -0.446183, -0.998096, 1.572434, -0.435290, 0.304048, -0.238648, 1.034630, 0.199094, 0.498759, 0.308008, 0.567423, 0.535799, 1.247896, 1.101454, -0.512195, 1.708025, -1.160282, 0.399715, 0.342799, 0.860835, -0.981930, 0.966950, 0.176748, 0.114596, -0.465750, -0.720403, 0.912818, -0.634569, -0.015950, 1.681451, 0.796052, 0.161531, 0.115802, -0.037630, 0.506112, 1.203614, -0.722811, -0.321431, -0.292871, 0.021080, -0.267876, 0.649199, -0.087122, 0.238224, 0.117405, -0.796072, 0.043822, 0.106367, -0.858445, -1.923243, 0.001214, -0.383780, -0.793290, -0.298617, 0.711272, 0.673491, 0.314610, -0.888251, -0.679692, -1.327119, 0.275225, -0.920021, -0.496445, 0.875245, 0.535981, 0.114400, -0.299781, 0.403232, 0.294880, -0.923130, 0.825482, 1.730328, 1.532264, 2.092793, -0.391504, 1.081222, -0.524529, -0.022091, -0.328772, -1.802426, -3.191733, 0.810919, -1.148615, -0.073164, 1.119239, 1.209517, -0.137190, 0.591770, 1.159989, -0.503019, 1.082312, 0.211661, -1.352652, -0.939927, -1.410106, 0.278397, 0.204997, 0.343849, 0.527669, -0.209864, -0.159209, 0.667135, -0.663653, 0.568100, -0.943844, 0.968383, -0.584700, 1.035199, -1.330756, 0.185383, -0.287200, -1.398206, 0.987634, -0.948540, -0.761210, -0.476222, 1.679815, 0.190751, -1.774180, -1.118783, -2.163490, -0.681097, 0.886447, -0.393574, -0.156353, 0.806331, 1.445205, 1.760609, 0.775289, 0.476010, 1.406761, 0.448653, -0.668189, -1.231927, -0.653629, 0.500012, 1.325792, -1.548845, -0.483784, 0.831622, -1.314894, -1.561311, 1.811731, -0.912836, 0.630485, -1.403108, -0.391168, 1.268278, 0.168812, 0.088604, 0.130069, -1.499388, -0.849860, 0.208970, -1.548968, 2.431698, 1.501798, 1.145675, 0.511107, -0.294855, -0.445006, -0.125896, 0.834638, 0.352165, -0.801772, -1.507155, 0.771091, -0.598979, 2.869002, -2.871846, 0.155109, -0.123399, -0.539084, 1.917127, 0.622973, 1.223195, -0.088143, 0.041642, 0.925027, 1.111906, 0.792184, 2.656297, -0.209163, 1.669466, 0.717435, 0.243146, -0.051716, 0.683014, 0.899531, 0.134089, 1.159671, 1.415220, 0.827601, -0.047416, -1.872233, 0.506747, 0.800150, 1.101284, -0.003516, 0.047211, 1.433037, 0.230170, -1.622533, -0.698518, 0.122633, -1.203151, -0.474861, 0.508189, 0.346365, 0.240614, 0.322376, 0.639400, 0.626123, 1.446888, -1.370581, 0.497816, -0.946326, -1.198888, -0.194216, 0.220833, 0.813054, 0.750587, 2.132821, 0.410698, 0.202643, -0.262041, -0.029299, 0.835202, 0.721498, -0.739723, -0.103559, 0.746257, 0.012022, 0.637422, 0.180977, 0.425005, 0.810973, 0.094005, -0.425275, -1.144537, 1.509941, 1.235870, 2.426218, 0.950339, -1.697245, -2.842267, 0.088028, -0.943818, 0.118406, 1.056480, 0.873825, 0.694412, -0.380172, 0.728019, 1.598631, -1.262186, 0.456457, 2.355905, -1.225146, -0.073613, -0.029739, 0.348293, 1.389075, -0.585340, -0.531548, 1.049350, -1.524120, 0.565031, -0.878409, -0.475034, 1.708689, -0.821485, 0.091255, 1.589056, -1.197163, 1.336935, 0.235905, -0.938052, -0.624809, 0.531845, 2.105759, -0.549775, -0.960220, -1.652345, -1.301098, -0.605823, 0.361772, -0.868646, -1.089649, -1.282840, 0.854270, -0.087551, -2.123483, 0.386107, 0.028299, 0.206407, -0.835850, 0.057705, 1.393362, -1.547544, 1.418833, -0.726110, -1.609997, 0.284366, 0.133282, -0.113803, -0.246302, 0.385716, -1.342819, 0.802481, -0.747192, -0.168460, -0.410725, -0.676639, 0.501431, 0.701874, -1.112610, -2.127012, 0.844464, 0.120311, 0.335041, -1.169146, -0.486243, 1.991832, -0.725771, 0.414585, -0.013879, 1.460312, -1.775961, -1.494349, 1.276276, -1.334565, 1.342523, -1.006457, 0.451700, 0.538312, -0.642308, 0.988902, 0.344799, -0.993196, -0.566174, 0.839782, 2.086088, 2.044614, -0.435779, 1.037257, -0.408007, -0.928194, -0.576962, -0.507459, -1.375975, 0.077665, -0.321384, -0.037849, -0.523371, -0.321993, -0.764563, -0.491723, 0.738228, 0.704627, 1.607469, -0.927576, -0.394017, 0.249020, 0.479376, -0.730120, -0.214330, 1.451152, 0.789474, -0.656674, -0.436832, 1.409303, -0.169377, 0.031340, -0.195310, 0.072180, 1.309401, 0.438797, -1.208211, -1.192136, -0.115447, 0.850717, 1.463341, -0.321036, -0.198649, 0.141033, 1.239271, -0.785351, 0.832252, -0.552908, -1.609960, 0.197240, -1.632666, -0.047350, 1.204379, 1.903071, 1.023687, -0.402241, 1.194819, -1.232732, -0.171118, -0.218171, -1.127609, 0.001241, 1.623563, -0.833868, 1.034040, -0.272128, 1.444232, -0.414683, -0.794986, 0.457525, 2.211998, -1.412703, -0.882442, -1.041413, -0.894098, -0.015035, -2.559808, -1.231526, -0.334869, -0.409786, 0.502894, 0.563420, -1.208762, -0.756070, -0.564320, 1.080210, 1.122943, -1.392264, 2.110693, 1.787055, 0.262440, 1.456286, -1.393583, -0.105681, -0.820904, -0.504632, -0.052866, 1.159623, 0.032887, -0.250310, -1.119535, 0.247586, -0.605135, 0.511148, 0.005030, -1.153227, 0.147900, 0.797783, -1.144099, 0.571842, -1.287317, -0.639211, -0.143556, -0.862830, -0.170144, 0.563183, 0.230548, -0.112485, 0.517635, -0.557753, -1.331880, 2.015481, -1.005509, -0.845512, -1.196353, 1.349394, -0.672747, 0.168585, 1.240524, -2.042310, 1.634272, 0.277167, 2.580223, 1.310991, -0.113471, -0.213667, 0.546703, -0.659731, 1.408466, 0.215727, -0.125880, -0.415096, 0.589020, 0.963551, 1.390151, -0.568232, 0.010769, -1.282196, 0.731194, 0.691128, -0.168497, 0.636977, 0.169990, -0.554185, 0.509476, -0.018903, -1.392492, -0.390973, 0.039503, 0.540164, -1.239303, -0.195522, -0.710986, 0.407797, 1.338748, -1.045769, -0.547504, -0.618966, 1.000677, 0.641639, 1.665834, -2.476673, 1.194500, 0.244884, -0.612303, 0.963516, 0.822845, -1.977967, 2.666875, -0.240559, -1.600907, 0.041680, 0.145598, -0.276400, 1.129459, 1.092059, 1.278152, -0.221769, 1.133793, 2.168534, -0.069488, 1.005401, -0.874005, -1.124220, -0.741599, 1.837862, 2.094641, 1.319952, -1.770013, 0.332870, 0.012995, 0.736634, 1.339620, -0.820453, -0.105114, -0.732068, -1.169210, -0.668723, -0.017110, -0.141183, 0.310239, 0.283326, 0.031051, 0.226616, 0.591523, 0.896183, -0.592901, 0.576669, -0.948299, 0.386607, -1.387453, 0.362097, 1.726283, 0.560772, 0.975516, -0.245287, 0.839740, 0.340040, 0.745198, -0.750384, -0.718762, -0.001350, 1.366076, -0.972330, 1.569860, -0.466808, -0.709081, 2.652749, 0.874044, -1.134175, -0.071458, -1.567075, 0.088887, 1.004075, 0.550873, 0.350425, 0.015071, -1.363464, 0.341334, 1.126974, 1.112274, -0.022050, 0.358191, 1.264031, 0.338957, 0.185863, -1.360988, -0.836657, -1.608280, 1.500583, -0.971778, 0.257653, -0.227526, 0.465699, 0.188826, -0.849953, 0.491701, 0.676032, -1.168220, -0.381367, -0.022353, -1.842891, -0.171064, -1.284449, -0.072340, -0.876003, -0.720632, -1.405663, -0.620966, -0.076243, 0.982724, 1.181013, -0.562688, -1.019681, 0.669343, -0.161448, -0.552471, 0.340967, -0.536234, 0.679144, 0.232275, -0.178437, -1.231996, -0.985292, 0.866831, -0.297292, -0.984240, -1.611099, -0.713850, 0.090579, -0.859244, 0.522835, 1.511846, -0.287760, 0.003001, -0.091751, 0.879735, 1.096157, 0.522097, -1.202111, 1.220460, 1.514596, -0.214418, 0.293782, 1.305268, -2.114405, 0.372568, -1.816376, -0.872256, 0.696825, -0.960278, 0.419332, -1.002015, -1.223839, -0.103561, -1.248187, 0.313550, -1.053969, -1.706059, 0.881536, -0.310815, -0.925452, 0.566417, -1.073520, -1.011073, -1.163271, 0.915884, -0.233023, 0.860841, 0.493819, -0.174333, 0.106531, -0.472695, 0.132618, 1.326250, 0.086093, -0.179486, -0.582379, -0.303287, -0.027709, 0.339106, 0.334272, 0.888361, -0.586072, 1.521095, -0.621835, -0.163574, -0.544514, -1.551514, -0.491152, 0.876617, 0.339755, -1.271527, -0.011788, -0.285099, 1.249713, 0.961025, -0.261550, -0.046599, 0.644335, -0.462460, 1.060666, 0.056946, 1.487455, 0.331886, -0.360921, -0.131251, -1.610050, 0.929308, -1.871521, -0.400929, -1.189950, 0.067779, -0.792719, 1.218581, -2.228314, -0.004547, -0.560896, -0.115964, -1.301079, -1.561295, -0.008356, -0.172635, -0.908535, -0.341397, 0.685877, -0.158706, -0.130564, 2.384541, -0.098827, 0.449443, 0.950520, 0.761160, 1.653470, -0.202540, -0.390809, -0.329936, 0.055520, 0.231570, 1.532906, -1.252980, -1.216625, 0.262683, 0.058548, 0.093706, -0.035446, -0.202067, -1.954899, 1.235684, -1.118334, 0.987205, 1.836035, -0.827753, 0.245321, -0.236708, 0.432973, -0.434754, 0.427317, -1.766231, 0.804420, -1.451646, 0.729757, -1.556782, 0.313522, 1.132205, 0.790076, 1.132085, -0.244644, -0.048008, 0.520618, 0.507019, -0.517541, 0.349050, -1.029242, 1.620831, 0.704765, -0.257112, -0.996632, -0.348176, 0.293673, 0.463793, 0.599818, 1.126504, 0.629891, 0.003862, -2.478686, -0.876447, 0.937444, -1.476415, -1.158235, 0.922548, 1.686318, 1.073159, 0.838935, 0.868073, -0.268444, 0.074560, -0.494903, -0.974432, -0.043104, 1.536741, -0.984721, -0.019144, 0.337097, 1.113034, 1.128949, -0.688006, -0.971811, 0.663827, 1.976121, -0.612086, -0.830535, 0.801822, 0.976767, -0.073481, -0.413936, -1.723152, -0.708928, 0.553123, -0.268435, -0.458164, 0.337600, -0.015853, -0.430938, 0.482120, 0.632976, 0.855297, 0.369161, -0.350407, 0.119413, -0.654142, 0.283021, -0.249341, 1.927499, -0.089492, 0.805017, -1.127186, -0.993823, 0.694021, -0.099729, 1.335679, 1.833143, -0.536073, -0.002318, 1.607860, -0.431108, 0.624783, 0.760140, 2.909349, 0.479077, 0.739320, 0.523408, 0.036420, 1.204480, 1.006408, -0.668286, -0.100322, 0.780936, 1.131848, -0.248103, 0.865610, -0.439550, 0.668874, 2.303895, 0.428077, -0.798268, -0.240835, 0.712137, 0.539072, 0.477924, -0.319070, -0.455309, -0.359487, 0.795799, 1.450555, 0.935734, -0.115616, 0.076071, -1.013090, 0.661341, -0.035756, -0.839959, 0.697285, 1.181995, -0.957671, 1.467023, -0.415440, 0.670669, 0.050084, 1.101031, -1.796386, -0.383964, -0.506647, 1.700881, -1.474094, -0.887938, 1.086542, -0.236236, 1.501965, 0.661134, 1.084216, -0.529496, -0.599299, -0.167001, -0.627688, -0.971668, -0.613478, -0.057687, 0.140727, -0.671385, -0.280310, -0.329909, 0.144409, -0.048162, 0.719904, 1.569735, 1.270838, -0.551058, -0.316185, -0.026704, -2.606563, -1.123548, -1.389630, 1.857853, 0.453112, -0.537148, -0.119366, -0.188593, -0.133040, 0.570386, -0.689890, 1.261455, -1.203871, 0.118285, 0.673056, 0.314670, -0.467185, 0.890509, -0.640167, 1.316349, 1.760802, 0.381836, 3.156204, -0.548873, 0.309878, -1.721900, -1.461609, 0.323998, -1.449580, 0.419490, -1.025768, -2.196789, -0.427061, -2.127100, 0.495228, -1.407256, -0.768990, 2.156069, -0.253221, -0.436109, 1.126936, -0.981917, -0.607818, -0.136395, -0.233681, -0.758238, -1.968764, 0.513559, 0.650059, 0.363139, 0.297366, 0.645142, -0.177422, 0.951003, 1.610096, -1.260217, -1.041405, 0.349460, -0.053213, -0.879416, 0.704586, -0.495656, -1.164474, 0.749899, -0.358014, -0.684477, -0.233709, -2.041568, -0.401728, -1.567360, 0.744014, 0.657171, 0.049838, -0.093999, -0.701229, 1.605713, -1.157617, -0.276461, -1.111061, 0.588042, -0.509359, -1.521079, 0.715904, 0.424626, -1.572558, 0.863950, -0.847231, -0.819362, -0.234975, -0.205080, 0.244306, 2.532727, -0.282346, 0.813899, 1.237427, 1.316864, -0.595758, -0.438923, -0.192364, 0.651349, -1.155411, 1.332552, 0.365111, 0.287079, 1.388856, 0.784964, 0.962629, -0.067794, 1.554280, 0.133279, 0.045459, 0.076014, -0.041055, 0.392661, -0.229723, 0.226269, 0.170076, -2.228773, 1.195458, 0.160948, -0.448022, -0.306435, -0.433887, 0.647301, 1.566533, 1.025537, -1.856659, 1.369221, -0.332818, -0.416411, -0.685193, 0.142815, -2.053967, 0.479696, 1.388820, 0.072373, -0.165684, -0.723197, -1.120170, 0.721519, 0.694942, -1.327925, 0.852870, -1.270574, -1.671023, 2.365201, -0.429087, -0.264616, 1.305838, 0.051837, -1.489186, -1.379524, -0.267827, -1.513242, 0.206231, -1.226853, 0.262906, 0.804098, -0.662063, -0.737027, 0.006400, -0.097888, 1.409563, -0.005622, -0.265703, 0.430784, -0.374082, -0.353639, 0.498409, 0.634408, 0.423830, 0.794608, 0.230726, 1.496160, -1.248603, -1.345097, -0.461340, -0.594938, 1.276330, 0.049087, 2.877397, -0.155074, -0.402770, 0.395112, 2.750214, -1.599486, 1.171930, -0.626030, -0.359968, -0.526952, 1.355983, -1.127950, 0.562453, 0.803102, -1.026099, -1.751319, 0.910812, -0.138222, 0.039850, -0.588132, -1.006941, 1.155574, 1.700764, 0.533998, -0.594966, -0.045537, 0.042856, 0.142323, -0.689567, 1.367362, 0.793721, -0.318274, -1.230443, -0.804394, -1.556826, 1.295637, -0.410950, -1.001370, -0.142660, 0.011917, -2.000602, 1.701693, -0.204075, 2.126241, 0.571278, 0.213523, 0.273277, 0.711628, -0.644814, 2.377962, 0.067837, -0.203787, -0.492727, 0.825123, 1.750371, -0.056338, 0.152948, 2.230357, -0.698760, 0.077599, -0.029802, -0.571621, -0.258995, 0.154825, -0.607714, 0.042422, 1.871377, -0.459544, 0.204277, 0.902499, -0.681999, 1.033516, 0.134362, 1.066330, 0.626885, -1.045229, 1.773388, -0.070718, 0.272405, -2.291435, 1.153380, -0.936707, -0.686482, -1.712940, -0.250838, -1.797788, 1.208108, 2.012615, 1.753916, 0.404781, -0.871592, -0.479848, 1.139744, -0.567713, -0.342623, -0.658585, -1.999230, 1.718585, -0.937630, 0.722913, 0.748836, -0.649737, -2.078196, -0.152699, 0.548236, -0.728365, 0.325118, 0.566414, -0.077661, -1.900146, -0.146621, 1.614005, 1.609826, 0.110968, -1.507258, 1.761579, 1.040985, 1.095699, 0.164434, -1.315387, 1.237369, 0.115449, 0.342713, -0.205608, 0.290848, -0.450209, -0.384163, 0.453791, 0.773005, -0.344453, 0.751582, 1.051541, 0.773914, 0.514508, -0.866921, 2.373794, 1.549060, 0.868504, 0.940303, 0.037269, 1.596310, -1.622590, -1.321213, 0.422387, -1.556589, 0.278207, -0.715823, 0.442452, 0.611006, -1.406512, -0.400933, -0.036381, 0.682282, 0.440410, 0.337547, 1.054140, -2.370662, 0.500439}, + { -1.557117, 1.354714, -0.507189, -1.677046, 2.251007, -1.236535, -2.730527, -0.135517, 0.426629, -0.840740, -0.484746, -1.135077, -0.431187, 1.055289, 0.722851, -0.033690, -0.104293, 0.511147, -1.845357, 1.101776, -1.811933, 0.339437, 0.540583, -0.475171, 0.639632, -0.340200, 2.074263, 0.891054, -0.257403, 1.878608, 0.436490, -0.221761, 0.107039, -0.395112, 0.723690, 2.195958, 1.373352, 0.191767, 0.965378, 0.134876, -0.511638, -1.963900, -0.601847, 0.888348, 1.360059, -1.005337, -1.352559, 0.275802, -0.996586, 3.429792, -0.089151, 0.671209, -1.229815, 2.154351, -1.125775, 1.665587, 1.796281, -1.711791, -0.930979, 1.180638, -2.721949, 0.367663, -1.339680, 1.915345, 0.653384, 0.853967, -1.278708, 0.210739, 0.496017, 1.707879, -0.676035, 1.144740, 0.241170, -0.088847, 0.894312, -0.015625, 1.366835, 0.855726, 0.146110, 0.439883, 0.526952, 0.463049, 1.613597, 0.931085, -0.005703, 0.176923, 0.200233, 1.221886, -2.212358, 0.244618, -1.479742, 0.157874, -1.162725, -0.935696, 0.654720, 0.802513, -0.598277, -0.626279, -0.992366, -0.009777, -1.218925, 1.364486, -0.350957, 0.921134, 1.114492, 0.866894, -0.703489, -0.684720, -1.438787, -1.062744, 0.357847, -1.529508, -2.131406, -2.031877, 0.099589, -0.392503, 1.824714, -0.434718, 0.283077, -0.821671, 1.593158, 0.891252, 0.344510, 0.950365, 0.122338, 0.235416, 0.070577, -0.591245, -0.544214, 0.048842, 0.493935, 1.145389, 1.823551, -0.779781, 0.339646, -0.679694, -2.653334, 2.521782, 2.455108, 0.610537, -1.119245, -0.202094, -0.355687, -0.778566, 0.002674, -0.544540, -0.318923, -0.780856, 0.707767, 0.345975, -0.617952, -0.596359, 2.635500, 1.579006, 0.259500, 0.323165, 2.359543, -0.594938, 0.068492, 0.549249, -0.512844, -0.190790, 0.595400, -0.590486, -1.031470, -0.524377, 3.203436, -0.281427, 1.053369, 0.065607, -0.721295, 0.919299, 1.060299, -0.661467, -0.107674, -0.576129, -1.235150, 1.660981, 1.133712, 0.287339, 0.287246, -1.554665, -0.787339, -1.351613, -1.062265, -0.455838, 0.038943, 1.090834, -0.414549, 0.426604, 0.106733, -1.156028, 0.792491, 0.414883, 0.984235, 0.527139, 0.293199, 0.899923, -1.988108, -0.444575, -1.584547, 0.422906, 0.194498, 1.025737, 0.828271, -1.456154, 0.117757, 0.066355, -0.211340, -0.518127, -1.217674, -0.178295, 0.704854, 0.483708, 0.294321, 0.526501, -1.291551, -1.874611, 1.592156, -1.805152, 0.266123, -2.492696, -0.868882, 0.479426, -0.023887, -0.316269, 2.259561, 1.800243, -0.758295, -0.150794, 0.780820, -1.185125, -1.673051, -0.047029, -0.266093, 0.890193, 1.160271, 0.772067, 0.528865, -2.118247, -0.731128, 1.012658, -0.319670, 0.551970, 1.067810, -1.249290, -1.229468, 2.821555, -1.244210, 0.298691, -0.381823, -0.315208, 1.066915, 0.879789, 0.276744, 1.559746, -0.424278, -0.031569, -0.061117, 1.112057, -0.164522, -0.667368, -0.406287, 0.502148, 1.479977, -0.718784, 1.329454, 0.365968, 2.085443, 0.904310, -0.472464, 0.304797, -0.022248, -0.718791, -0.443014, 0.357514, 1.831675, -1.094502, -1.025506, -0.365520, 1.171117, 0.328614, -0.655944, -0.755994, 0.373699, 0.845346, 0.283553, -0.768500, 0.031940, 1.364133, -1.017221, 0.676596, 0.187238, 0.099184, -0.763140, -0.222902, -0.219223, 1.826233, 1.093794, -1.138860, -0.418974, 0.317812, -0.395524, -0.838842, -0.399299, 0.882260, 1.344751, -0.557243, -0.890126, -0.708344, -0.170535, 1.518636, -0.398429, -0.349143, 0.182937, 0.644080, 0.293535, 1.330478, 0.042729, 0.713383, 0.670294, -1.489232, -1.952641, 1.089116, 0.766679, 0.260208, -0.092512, 0.722679, 0.971277, 2.077432, 0.688735, -1.332670, -1.730159, -0.281100, 1.178166, -1.937678, 0.121702, -0.959751, 0.380197, -0.126586, 0.660441, 0.096211, 1.854894, -0.148417, -0.486456, -0.668114, -0.692463, -1.034927, -0.111797, 0.648791, -0.568638, -1.028907, -0.716304, 0.046795, -0.030656, 0.504981, 0.063141, 1.611272, 0.801220, 1.375850, -1.128715, -0.191421, -0.477263, -0.473041, -0.558201, -1.297186, -0.522119, -0.257538, -0.114766, -0.259126, -1.069742, 0.269224, 0.245706, 0.948744, -0.731799, 1.502836, -0.898101, 0.093258, -0.898092, -1.043162, 1.211760, 0.724990, 0.967940, 1.255183, -0.689236, -0.829589, 0.429128, 1.443109, 1.570252, -0.740298, -0.316961, 0.536463, 0.199828, 0.121909, 2.004791, 0.756453, -0.507309, -0.730538, 1.615830, 0.445823, 0.877933, 0.155118, 1.033334, -1.077395, 1.656990, 1.328022, 0.191761, -1.031495, -0.584851, 0.797350, -0.634260, 0.835749, -0.358748, 2.032304, -0.591092, 0.223780, -1.314651, -1.699066, -0.239608, 0.020907, 0.160940, -2.688284, 0.658536, 1.486791, 1.620062, -2.104166, 1.188102, 0.370384, 0.059716, -0.252538, 0.579343, 0.462017, 0.295460, -0.229596, 0.256024, -0.244064, -1.136943, 0.187441, 1.188502, 0.057767, -1.243613, 0.071384, 1.709040, 1.539935, 0.934083, 0.649864, -0.236786, -2.584575, -1.431453, -0.517931, 0.321816, -2.963837, -0.718307, 0.924068, -0.789880, 0.751059, -0.214046, -1.650300, -0.094235, -0.208179, 0.887398, 0.425317, 0.836094, 1.120878, 0.777292, -1.955840, -2.196150, -0.366979, -0.323786, 0.098094, -1.240425, -0.153496, -0.368574, 0.323803, 0.422725, -0.383971, 0.486266, 1.912627, 1.069989, -0.835923, -0.688125, 1.032788, 1.070619, -0.608596, 1.254905, 0.085726, 0.105570, -1.843710, 1.407650, -1.347667, 2.621028, 1.587248, -1.376651, -0.653023, 0.707422, 1.455100, -0.831775, -1.663748, -1.495220, 0.571127, -2.077593, 1.572516, 1.161790, -0.313553, 1.834049, 0.544914, -1.143451, -0.702849, 0.885798, -1.707950, 0.410130, -1.565802, 0.165077, -0.549966, -1.959193, 1.167866, 1.802445, 0.431422, 0.885983, 0.600516, -1.363368, 0.510890, -0.554945, 0.048845, 0.737844, 0.663687, -1.842748, 0.811965, 0.853685, 1.683111, 0.482860, -0.208920, -0.515260, -1.023627, 1.893778, 0.929339, 0.550755, 0.818082, 0.502538, 0.725463, -0.246349, -0.238920, 0.952603, 0.569799, -1.001931, 1.969856, 0.716774, -1.137192, -0.798399, -0.965910, -1.612037, 0.749674, 0.280505, -0.516543, -0.854051, -0.574175, -0.813508, 0.360200, 0.170275, -0.329160, -0.876415, 1.163529, 1.020010, 0.275865, 1.429493, 0.206745, 0.669694, 0.988536, -0.111673, -1.064488, -1.381906, 0.054743, 0.094889, -0.177771, 0.803945, 0.576841, 1.221266, 0.325914, -0.372008, 2.111483, 1.932752, -0.565688, 1.122114, -1.310081, -1.008726, -0.338272, 0.277182, 0.642604, -1.775700, 0.739044, -0.906823, 2.325243, 1.046948, -0.423112, -2.036797, -1.761800, -0.975541, 1.134551, 1.344011, -0.117449, 0.172826, -0.823505, -0.143463, 0.863610, -0.210688, -0.619058, 1.870949, 0.063990, -0.651090, 0.195268, 0.501306, -0.607498, -0.710503, -1.635040, 1.027606, -3.069799, -0.638853, 0.540163, 1.745569, 0.567150, -0.134887, 0.158715, 0.410833, -0.526851, 0.454765, 0.716343, -0.623224, 0.695090, -0.598681, 1.241086, 0.683083, -0.041679, 1.525075, -0.962389, -1.307760, 0.675192, -0.578039, 0.245004, -1.231397, -0.829305, 0.115689, -2.717426, 0.144028, 1.032865, 0.148114, -0.952908, -1.504366, -2.247828, 0.406948, 2.433513, -0.463547, -0.020855, 1.089980, 1.915876, -0.780706, 1.175394, 0.066952, -0.950170, 0.834358, -0.846286, 0.016857, 1.175339, 0.215610, -0.584048, -0.401780, -0.832289, -0.202046, 0.711954, -1.264368, -2.883734, -0.423156, 0.936798, -0.289677, 0.709213, 0.479675, -1.788116, 0.398553, -0.343703, -1.613222, -0.507234, -0.480106, -0.091324, -0.299687, -2.786705, 1.600875, -0.662804, 1.011639, 0.092112, -0.066656, 1.343879, -1.046727, -0.410463, -1.168224, -1.704453, 1.066022, -2.321124, -0.224048, -2.070347, 0.694574, -1.826250, -1.852257, -1.834839, 0.343259, 0.656732, -2.709880, 1.514210, 1.956066, -1.795674, -1.797701, 0.592806, -0.607482, -1.512448, -0.090299, -0.638567, 0.687265, 0.252648, -0.057771, 0.418299, 0.324606, 0.880168, -0.114430, 1.441478, -1.031433, 1.357451, 1.081684, 0.073322, 0.385400, 1.574116, -0.838686, -0.562279, 2.803296, -0.062337, -0.715824, -1.483479, 0.697064, -1.511971, 0.622425, 1.685541, -0.185731, 0.977569, -2.076476, 0.372813, 0.019008, -0.659924, 0.837051, -0.646133, -0.279275, -0.313328, -0.301571, -0.288674, 0.040925, 0.691603, -0.455363, 0.381743, 1.438290, -0.958760, -0.402769, -0.331764, 0.213186, 0.493733, 0.604938, 0.149029, -0.182319, 0.764589, -0.690511, 0.395842, 0.433151, -1.657155, 0.999666, -1.443099, 1.285412, -0.236826, 0.579664, -0.935998, -0.233323, -1.267898, 0.026270, -0.775491, 0.257070, -1.378352, -0.907157, -2.086672, 0.873207, 1.008371, -0.623795, 2.244254, -1.394387, -0.493002, -1.006927, 0.900087, 0.526529, -0.408201, -0.909291, -0.412598, -1.666606, 0.336379, 1.937729, -0.072592, 0.678691, -0.614418, 0.250235, 1.045207, -0.581390, 0.755579, -1.646924, -1.423800, 0.230081, 1.003887, -0.725993, 2.114760, 0.806880, 0.096856, 0.559407, 0.107620, -1.821931, 0.121767, -0.515205, 0.172496, -1.398159, -0.312484, -0.835134, -0.092868, -0.714001, -1.111573, 1.999733, 0.130829, 0.798623, -0.440334, 1.082063, -1.787091, 0.127145, -0.937345, 0.413789, 2.730453, -0.905496, -0.800846, 0.027002, 1.017213, -1.605840, -2.170621, 0.333026, 0.989201, 0.322813, -0.144388, 0.788195, 1.910774, -0.027260, 0.648311, 0.398361, 0.110731, -0.267675, -0.614838, 1.994243, 0.494190, 0.428123, 0.933699, 1.799689, -0.682839, 0.278480, -0.196905, 0.478146, -0.801117, 0.827211, -0.208584, 1.749742, -0.309020, 0.550399, 0.029851, -1.455646, 0.604909, -0.079668, -2.667139, 0.087649, -0.460940, 0.762463, -2.313522, 0.324131, -0.051233, 1.416637, -1.459987, 0.823470, 1.385938, -0.935317, 0.286730, 1.344583, -0.171006, -1.096904, 1.473253, 0.965604, -1.496269, -0.178862, 1.717303, -0.583761, 0.113950, -0.018208, -0.327182, 1.401059, 1.389596, -0.796274, 0.020972, 1.471807, -0.812743, 0.257384, 0.751148, 0.047724, 0.700667, 0.265306, -2.105040, 1.943851, 0.336538, 0.061315, -0.880601, 2.034990, 0.390806, -0.251553, 0.949620, 0.569913, -1.127480, -0.133491, -0.360130, 0.507190, -0.120065, 0.239050, -0.186229, -0.451519, -1.754476, 0.374530, 0.611022, 0.789310, -0.348057, 1.140915, 0.085280, -2.326496, 0.418783, 0.016176, 0.686528, -0.627661, -2.044782, 0.762335, -2.777923, -0.539664, 0.490943, 1.338368, 0.666821, -0.109984, -0.242139, 0.338926, 0.599906, -0.988994, 0.075134, 0.612756, -0.137218, -0.329234, 0.209015, -2.814755, -1.220983, 1.693280, 0.505602, -1.028624, -1.108691, -0.708004, 0.897789, 0.116973, 0.676235, 1.243742, 0.574093, 0.568279, 0.204379, 0.320489, 3.624524, -0.107981, -1.071918, 0.476256, 0.647188, -0.725657, -0.683423, -0.150823, -1.443447, 1.602178, 0.200285, 0.649823, -1.720011, 1.414100, -0.197545, 0.515355, -0.374684, 0.283812, -0.470898, -1.063043, -1.816326, 0.250095, 0.935557, -1.139354, -0.466160, 0.405362, -0.622125, 1.001775, 1.485674, 1.143600, -2.325331, -0.168706, 0.076381, -0.256243, 0.727384, -0.405000, -0.397265, 2.091771, 0.961732, -0.555531, 1.535828, -0.058543, 0.309129, -0.454639, -0.373124, -0.027610, -0.002329, -1.562552, 0.450250, 1.854350, 0.136018, -1.061123, 0.668776, -1.319662, 0.071643, 0.671723, -1.192360, -0.847854, -0.117530, 0.658111, -1.046560, -1.172832, -1.027798, 0.205758, 1.142023, 1.912734, -0.143382, -0.007215, -0.348592, -0.052300, 0.602616, 0.149774, 0.986381, 1.471414, 0.300240, 1.089306, 1.396079, 1.683783, -0.992930, -1.046782, -1.896329, 0.023814, -0.529550, 0.032748, 0.078279, -2.043210, -0.488937, -1.731646, 0.052488, 0.245970, -0.086917, -0.119635, 0.661894, 2.422866, 0.264647, 1.130475, 0.825577, -0.210446, 0.789719, 0.806348, 0.487728, 1.400573, -0.602437, 0.084405, -0.589990, 0.158884, -0.442584, 0.780902, 0.867537, 0.161949, 0.543853, 0.588014, 0.573093, 2.175162, -1.271450, 1.267353, -0.965747, -0.371463, -1.254071, 0.676379, 0.064895, -1.493244, -0.402029, 0.549497, 1.876008, 0.531956, 0.855622, -0.113579, -0.856276, 0.550516, -1.477120, 0.125452, -0.081384, 0.451109, -0.396976, -0.067359, -0.695863, 0.102945, -0.662459, -0.344884, -0.912358, 1.044545, -0.038694, -0.989957, -0.876553, -0.233115, 1.001486, -0.033651, -0.073757, -0.031075, -0.008064, -1.806170, 0.047935, 0.193671, 1.413952, 0.040483, 1.190362, -0.462616, 2.006792, -0.942195, -0.404081, -0.688151, -1.438415, 0.360901, 0.442568, -1.319612, 0.296704, -1.096544, 1.121205, -1.854651, -1.497170, 1.133617, 0.176775, -0.322742, 0.632726, 2.031226, -0.141536, -1.193344, -0.719150, -0.907301, -0.302887, 1.501997, 0.222989, 0.607424, 0.715540, 0.135347, -0.180373, 0.872393, 0.302123, 0.621171, 0.565502, -0.865762, 1.556385, -0.639774, 0.770244, -0.289162, 0.909540, 0.198509, -0.406314, 1.114900, 1.965350, 0.376352, -0.487214, 0.252000, -1.466713, -1.148095, -0.376994, 0.142340, -0.733264, -0.264959, 0.718959, -1.021395, -0.760192, 0.573613, -0.240009, 0.920737, -2.227340, 1.754826, -0.455740, -0.071718, 0.527629, -0.288560, -1.655325, -0.214926, -1.059318, -0.110169, 1.234615, -1.071158, -1.332628, 1.193424, -0.052697, -3.007507, -0.231441, -0.501489, -0.097044, 1.156758, 1.010388, -0.699723, 0.011532, -0.366105, -0.354938, 0.706469, 1.324823, -0.723851, -0.765305, 0.104078, -0.152778, -1.760532, 0.108150, 0.417053, -0.240973, -0.631443, -0.842603, 0.085735, -0.642529, 1.114929, -1.277776, 0.069594, -1.270295, -0.762618, -0.099499, 1.846426, 0.813036, 0.018230, -0.703635, -1.385186, 0.787865, 0.149337, 0.922254, 1.058334, -1.488605, 0.733014, -1.218047, 0.062609, -0.080778, 0.922523, -0.317111, 1.008965, 1.554433, 0.315259, -0.477063, 0.615799, 0.560589, 1.504575, -0.779535, -0.156815, -1.290895, 1.693081, -0.978720, 0.512226, -0.009672, -0.435017, -0.708193, -0.773288, -0.470815, -0.014696, -0.098243, 0.889275, 0.518527, 1.333418, 2.264540, -0.357673, 1.677651, -0.796292, -0.421162, -1.647305, 0.941487, -0.896379, 0.661574, 0.953356, 1.050237, 1.914091, 0.551282, 0.489249, -0.597443, 1.130541, -0.318466, 0.830834, -0.953340, 0.086149, 1.435785, 0.604072, 1.209609, 0.774671, -0.592657, 1.467651, -0.351216, -1.484281, 1.343407, -1.611825, -0.332055, 0.723110, -1.139692, -1.001073, -0.325930, 1.749366, -0.148873, -0.610217, -0.543498, 0.691570, 0.888235, -1.561314, 1.459599, -0.535249, 0.541400, 0.009179, -1.395937, -1.128175, -0.649366, -2.114625, -0.065877, 0.312541, 0.018073, -0.647090, -1.427603, -0.124610, -0.474331, 0.632228, 1.363993, -1.584020, 0.068125, 0.103750, 0.936805, -1.948344, -1.349068, -0.072204, -0.331641, -0.963022, 1.867544, -0.187147, -0.352917, -0.375159, -0.799938, -1.031288, 0.619725, -1.233922, 0.823035, 1.129496, -1.508481, 0.391089, 0.034143, -1.486469, -1.511410, 1.540567, -0.317665, -0.751800, -0.848927, 2.832581, -0.103704, -0.566887, 0.323637, -0.135427, 0.105963, 0.002972, -0.731210, 1.706718, 0.280686, -0.847416, -0.587071, 0.208485, -1.240083, -0.850757, -1.066710, -1.459347, -1.611627, -0.793716, -0.393560, 1.027389, -0.439485, 0.268820, -0.862088, -1.119811, 0.318000, -0.260147, 0.325984, -0.622883, -0.669476, 0.408702, -1.056129, -0.584641, 0.000201, -0.752587, -0.787775, -1.164250, -0.723832, -0.746187, -1.927120, -0.840254, 1.385708, -0.078547, -1.140047, 0.166102, -1.191008, 1.178601, 0.959276, 0.618510, 0.405589, 0.196847, 1.581025, 0.967423, -0.514203, -1.092266, 2.248667, -0.973327, 1.737345, -1.705929, 1.422695, 1.555662, 1.207116, -0.733619, -0.009778, 1.435663, 0.167343, -0.979807, -1.046875, -0.735424, 0.845894, 0.153676, -1.047022, 0.701910, 1.023052, 1.084728, 0.371670, 2.275627, -0.458659, 1.762021, -0.151062, -0.459453, -0.346671, -0.439336, 0.138806, -0.071424, 1.075717, -0.707650, -1.222287, -0.326649, -0.365195, -0.631663, -0.452039, 0.076999, -0.453122, -0.758912, -0.603327, -0.946270, -0.568353, 0.655457, 0.228447, -1.157819, -0.140629, -0.815454, -0.364001, -0.907113, -0.252045, -1.557672, 1.351852, -0.024363, -0.142018, -0.672413, -1.739248, -1.996266, 0.644202, 0.169764, 0.561553, -0.785866, -0.596929, 0.816867, -0.039996, -0.239989, -0.885165, -0.459998, 0.368302, -0.012020, 1.504429, 1.469093, 1.607059, 0.214752, 0.528592, 1.533930, -0.534178, -0.160462, 0.810724, -0.253174, -0.118833, 0.692363, -0.085343, 0.265335, 2.406784, 0.634014, -0.260212, -0.024009, 0.971677, 0.807658, -1.138677, 0.453462, -0.757718, -0.680201, -0.436209, 0.276405, -1.000322, 0.249727, -1.897274, -1.480437, 0.476978, -0.360568, -0.847952, 0.348301, 0.162966, 1.566202, -0.367893, 0.860830, 1.780864, -0.369717, -0.078052, -0.871633, 0.089699, 0.194816, -1.254903, -0.435643, 1.155469, 0.630962, 1.598219, 0.578034, -1.298599, 0.152819, -1.568090, -0.751830, -0.978385, -0.454237, -0.846124, -0.385268, 0.042639, 0.610340, -0.833527, -1.874566, -0.595565, 0.412910, -0.488504, -1.235172, 2.326921, -0.177846, -0.577322, 0.351844, 0.326709, -1.063931, -0.535155, 0.011826, -0.945323, 2.371784, -0.027007, 2.269670, 0.383736, -1.519508, 0.935869, 0.732636, 1.390427, -0.078902, -0.449151, -0.488681, 1.094915, -0.202084, -0.287595, 0.142216, -0.898288, 2.426931, 0.845492, -0.003604, -0.077900, -0.072413, 0.543166, 1.372370, -0.550238, -0.903998, 1.768091, -1.157348, -0.973716, -2.085474, 1.285981, 0.297159, -0.563190, -0.990179, -0.928343, 0.036833, -0.132404, -2.793431, 0.140091, -0.561387, -0.766239, -0.463243, 0.720224, 2.433175, 0.577626, -0.102106, 0.453248, 1.149690, 0.060122, 0.184904, -0.086450, 0.222498, -0.269881, -1.756782, -0.212303, 0.348684, 0.063343, 0.479133, -0.627331, -1.242213, -0.885179, -1.534372, -1.079785, -1.334267, -0.946222, 1.621160, 0.765204, -1.648988, 0.154881, 0.588840, 0.001410, -0.856360, -0.693779, -0.593685, 0.636250, 0.527808, 0.391954, 0.056132, -0.915853, -0.785997, 0.354604, 0.048352, 0.482858, -1.549876, 1.140285, -0.729221, -1.000013, -0.238574, 0.009340, -0.850482, -0.096991, -1.063285, -0.254214, -0.269767, -0.314655, 0.538193, 0.731428, -0.129746, -1.956473, 0.700639, 0.620613, 0.330232, -0.752340, -0.109973, 0.342319, 1.606716, 0.399675, 0.540330, -1.416298, 0.053976, 1.417298, -1.874458, 1.070427, -0.199754, -1.608628, 1.103573, 1.588237, -0.520360, 2.218319, 0.946560, 0.782908, 1.249461, 1.181448, -1.122672, -0.953556, -0.140751, 1.528455, 0.497748, -1.076518, 1.041024, 0.312284, -0.210207, -0.169994, -1.827092, 1.115518, -0.652308, -1.621547, 1.297407, 0.709014, -2.372253, -0.410997, 0.167149, 1.097231, -1.976804, 1.373858, -0.905328, -0.057656, -1.195878, 1.042341, -1.602360, 0.462578, -0.849047, -0.932067, -0.823945, 1.781272, 0.363393, 0.286439, -1.312072, 0.100421, 0.864303, -1.370142, 0.512092, -2.117177, 2.141616, -0.741381, -0.326326, -0.652323, 0.911839, -0.490780, -0.167039, -0.325924, -1.554214, -0.287802, -0.376901, -1.526887, 1.817247, 0.668049, -0.201002, 1.068239, 0.614162, -0.688809, 0.617680, -2.282654, -0.369808, -0.868731, 1.832154, -0.112420, 2.153309, -0.472138, 1.746971, -0.158361, -1.330890, -1.004652, -1.304650, 1.164770, 0.598732, -0.678409, -0.649571, 0.374289, -0.366423, -0.830665, 1.085109, -0.147578, -1.173575, 1.365459, -0.240607, 0.585568, 1.074867, -1.771816, 0.350242, 0.542322, -0.903360, 0.779767, -0.455828, -1.087029, 1.143988, -1.087878, -0.338279, -0.006980, 0.206698, 0.573161, 0.405787, -0.170474, -0.435998, -0.853423, 0.626173, 0.954629, -0.851737, -1.767429, 1.012765, -1.027125, 0.084180, 1.653846, -0.017657, -2.041177, 0.478052, 0.301108, 0.794047, 0.326979, -1.696737, 1.239793, 0.817544, -0.544289, -1.079586, 0.480169, 0.697885, 0.029189, -0.157003, 0.244460, 1.471116, -0.058096, -0.335356, 0.846185, -0.706565, 0.893403, 0.064045, 0.599305, 0.777811, -0.327337, -1.161725, 2.090903, -1.326161, -0.725093, 0.899056, -0.310031, 0.595842, -1.982696, -0.449979, 0.321119, 0.298156, 0.428420, 1.595750, -0.426936, -0.019715, 0.544453, 0.529716, 0.950191, 0.161947, 0.216113, 0.021033, -0.859725, -0.311713, -0.044644, 1.123937, -0.388754, -0.457174, -1.975546, 0.253457, -0.143959, -1.257514, 1.608866, 0.903306, -1.594638, -1.004951, -0.747047, -0.465666, -1.048783, -0.784695, -1.166549, -0.079232, 2.567748, -1.117581, 0.466456, 1.777307, -0.754517, 1.052868, 0.842280, 0.407805, -0.438280, 2.096974, 1.599941, -1.144482, 0.706852, -1.079994, 0.446117, -1.588874, 0.153943, 0.146844, -1.031799, 0.044539, -0.077193, 0.546758, -0.220017, -0.961376, -0.194828, -0.623218, -0.677772, 0.770816, -1.187404, -0.468903, -0.558702, 0.077340, -0.589303, -3.303533, -1.043170, -0.552415, 1.136450, -0.528130, 2.127850, -1.585950, -1.345437, -0.114537, -4.300495, 0.925318, -0.632387, -0.778907, 0.161790, 1.695711, -0.044800, 0.293022, 0.606354, -1.381420, -1.688716, -0.366741, 0.739439, -0.851905, 0.077586, -0.817667, -0.648724, -0.079391, 0.092442, -1.654611, -0.380085, -2.359384, 1.422481, 0.341910, -0.367495, 0.139648, 0.648311, 0.002428, -0.543509, 0.638240, -0.719029, -0.973774, -0.585278, 0.887388, 0.623954, 0.637385, 1.235658, 0.536885, 0.840931, 1.843361, 0.016616, 0.186860, 0.748575, 2.052685, 0.946707, 0.714075, -0.867320, -0.349556, -0.232103, -0.788715, -0.059042, -1.367973, -0.816085, 0.363620, 1.263519, -1.900187, 1.133963, -0.170226, 0.395506, -0.050084, 1.661634, 0.187009, -0.275987, 0.532311, -0.792247, -2.209967, -0.174388, -0.503377, 1.043901, 0.377315, 0.878469, 1.666189, 0.166155, 0.959415, 0.293677, -0.547424, -1.362808, -0.224272, -0.881520, -0.981233, -0.608290, -1.230971, -1.684822, -0.285943, 1.015244, -0.462072, -0.906668, 1.921854, 0.834137, 1.904203, 1.734076, -2.155846, 0.447119, 0.113841, -0.105290, 1.140077, -0.635905, 1.161924, -2.251748, 0.265711, -0.485624, -0.335880, -1.445401, -0.090981, 0.506388, -1.738436, 1.396771, -1.923806, 0.108555, -0.403277, -0.952693, -1.975905, -0.589969, 1.068580, 0.474613, -0.207443, -0.941785, 0.313337, -0.338199, -0.504333, -1.717215, -1.175869, 0.506519, -1.085890, -0.807780, -1.406470, 0.812941, 0.715761, -0.760918, -1.890742, -1.925585, -2.049034, -0.331508, -1.221669, -0.160516, -0.069893, 0.004622, 0.969929, -2.446832, 1.740517, -0.695053, 0.477487, 0.505786, -0.566565, 0.045836, 0.561914, 0.082420, 1.275409, -0.079680, 1.554209, 0.297980, 1.545889, 0.056693, 0.929750, -0.800087, 0.174759, -2.121391, -0.425979, 0.494141, 0.410757, 0.484254, -1.115728, 0.595760, -0.141025, 0.215541, 0.069802, 0.710761, -1.362658, -0.911008, -0.997132, -0.309394, -1.834935, -1.014773, 0.265875, 0.023405, -0.946596, -1.590703, -1.228491, 0.870008, -0.340985, -0.070390, -0.818430, 0.343354, 0.487150, -1.982794, 1.011562, -0.285269, -0.328664, 0.065852, 0.708075, -0.077594, 0.242811, -0.212249, -2.497117, 0.048809, 0.660148, -1.865733, -0.975017, 0.949623, 0.690463, 0.848092, 0.969258, 1.463848, -0.822141, -1.599392, 0.067922, -0.156459, 0.479083, 1.138052, -1.001565, 0.013482, -0.712189, -0.382242, -0.509447, 0.208836, 0.049709, -0.843975, 0.715524, 0.547512, 1.015411, -0.172784, -1.112108, -0.776726, 0.966446, -0.159367, -0.589542, -0.596102, 0.307302, -0.255558, -0.316782, -1.974549, 0.160857, 0.911458, 0.035802, -0.674841, -1.071291, -0.951451, -0.506916, -0.336920, -1.328063, 1.967865, 0.092645, -1.456744, 0.276830, -1.130429, 1.217138, -1.679936, -0.630305, 0.825974, -1.209480, 1.591581, -1.723964, -0.816020, -1.048776, 0.490735, -0.475880, -0.437219, 0.188528, 0.137812, -0.544941, -0.067159, -0.739706, -0.552998, -1.000327, 0.402042, 0.407939, 0.525162, 0.731016, -1.266692, -1.411585, -0.306509, -1.058082, 0.033268, -0.255101, 1.359707, 1.967774, 1.511500, 0.762854, 0.118548, 1.599814, -0.615524, -0.048723, 0.488591, 0.375427, -0.038320, 0.288628, -0.103925, 0.464141, 1.240456, 0.272748, -0.596565, 0.223885, -0.735085, -0.188305, -0.797489, -1.422948, 0.304770, 0.208513, -1.319620, -1.178728, 0.792189, -0.454396, 0.621427, 0.750056, 0.046164, -0.571839, -2.198831, -0.557676, 0.504787, -0.340769, 1.155886, -0.602151, -1.350994, 0.183326, 0.093178, 0.139263, -0.499876, -0.481268, -0.954176, 0.126912, 0.116863, 0.765332, 0.205981, 1.341605, -0.257970, 0.183472, -1.824464, 1.337553, 0.334509, -0.061754, -0.234325, -0.100152, 0.330343, -0.424811, -1.439790, 1.195658, -0.595843, -0.259344, -2.044168, 0.064204, -1.652589, -0.321069, -0.553556, -0.832698, 0.446229, -0.861846, -1.806791, -0.617371, -0.742199, -2.485753, 1.249662, 1.421692, -0.797433, -0.802611, -0.225920, -0.261215, 1.820470, -1.821068, 0.966022, -1.272230, -0.142168, 0.865661, 0.848400, 0.611056, 1.000821, -1.189157, -0.380715, -0.641966, -0.008629, 0.268261, 0.722904, -0.659296, -0.685737, 1.440202, -0.573664, -2.913980, 0.933113, -1.917645, 1.351861, -0.616408, -0.477297, 0.862531, -0.572179, 0.874445, 0.260035, -1.265886, -1.105464, 0.865375, 1.365638, -0.292919, -1.419697, 1.938201, 2.356994, -0.044798, -0.973055, -0.167109, 0.351039, 0.340722, -1.461834, 1.426527, -0.185248, 0.773286, 0.484805, 0.819893, 0.211411, -0.651001, -0.355170, 1.774631, -0.358988, -1.109809, 1.330151, -0.355999, -1.124707, 1.063322, 0.345758, -1.876200, -1.120688, -0.767086, -2.450008, -0.501714, -0.528775, -0.575405, -0.828807, 0.855159, -1.767087, 2.053926, 0.211529, -1.357369, 0.573687, 0.828535, 1.517782, -0.308071, 1.303685, -1.689624, -1.065987, -1.741522, -0.897759, -1.484677, 0.306969, 0.512068, 0.467876, -1.774692, 1.742781, -0.482540, -0.769283, -0.361696, -0.446929, -0.018232, -0.818328, -0.384064, 0.238841, 1.017175, 0.797651, 0.862126, -2.394478, -0.685041, 1.141945, -1.219869, 0.749380, 1.208255, -2.420062, 0.082417, -0.605711, -1.090430, -0.634442, 0.291487, 0.551130, 0.146109, 0.966412, -0.377455, 1.150829, -0.249140, 0.102413, -1.299381, 0.847570, -1.151470, -1.402707, -0.280173, -0.329089, -0.632742, 0.609246, 1.443998, -1.252176, -0.142825, -0.991600, 1.400027, 0.861248, -0.296644, 0.744214, -0.754783, -0.625774, -0.463525, -1.249192, 0.158552, 1.489001, 0.334800, -0.329807, -0.135256, 1.075552, -1.358308, 0.929805, -0.376771, 0.826095, -0.954144, 0.478493, 0.585142, 0.269756, 0.157139, -0.620211, 0.310792, -0.256908, 1.776156, 1.336898, -2.289882, -0.446814, 1.089413, 1.598865, -1.099717, -0.899428, -0.107001, -0.314352, -1.160159, -0.378809, 0.466047, -0.309189, 0.615682, -2.061841, 0.157211, 0.341351, -0.894049, -0.513637, 0.988657, -1.150672, -0.489670, -1.102414, 0.056941, 0.766576, 0.763492, -0.840921, -1.135290, -0.262023, 0.935517, 0.589387, 0.312873, 1.666263, -1.146234, -2.163281, -0.942766, 0.158120, 0.307408, 0.262979, 0.047560, -0.015414, -0.118879, 0.557691, -0.383128, -0.575649, -0.123407, -1.248606, 0.351627, -1.961615, -0.475022, -0.082092, 0.756998, 0.481618, -0.933765, -0.387378, -1.044283, 0.444688, -2.110740, 0.882128, -0.192984, 1.581900, -1.505186, 0.938435, 0.799770, 1.165289, 3.024083, -0.206379, -0.100118, 0.782040, -0.444366, 0.636295, -0.461406, -0.136020, -0.479741, 0.048873, 1.005753, -1.541248, 0.492095, -1.258456, -0.883361, -0.198476, 0.733936, 1.512280, 1.325008, -0.690003, 0.674963, 0.021092, 0.464440, 1.246704, 1.231883, 0.238418, -0.820233, 0.393607, -1.380600, 1.094744, -0.556734, 1.299303, 1.089489, -1.127183, 0.193055, -1.021661, -2.162528, -0.238160, 1.853278, -0.535029, 1.064245, -1.025247, 0.030453, -0.970250, -0.726249, 0.522500, 0.625467, -1.975249, 1.210737, 0.727929, 0.852778, 1.331287, -0.025068, -0.089720, 1.173838, 0.356005, 0.021698, 1.572658, -0.701724, 0.001808, 0.326351, -1.064895, 0.335627, 1.420564, -1.447721, 0.048674, 0.120460, 0.192077, -0.159222, 0.620979, -1.132691, 0.885596, -0.672108, 2.108951, 0.590129, 0.004810, 0.551644, -1.410655, -0.591229, -1.774089, -0.472742, 2.436532, 0.016593, 0.762421, -0.294313, 0.128433, 0.176181, -1.316388, 0.476815, -2.096947, -0.504716, -0.338564, -0.966901, 1.216820, 0.153871, 1.074961, 0.282674, -1.091407, 2.347421, -1.042338, -0.022819, 0.318516, 0.057826, -0.165713, 0.266254, 0.697009, -0.816301, 0.192424, 0.605237, 0.893806, -0.442881, -1.431923, 2.216052, -0.541955, 0.140457, 0.630794, 0.658994, 0.063157, 0.007512, 0.287694, 1.829861, 0.775708, -0.179263, -1.828487, 2.307510, 0.584948, -1.051735, -0.635638, 0.529219, -0.275500, -0.477878, 0.151203, 0.033712, 0.784343, 0.564970, -0.387843, -1.125990, -1.917728, 1.454181, -1.629448, 0.192831, 0.745016, 1.751915, -0.179042, -0.819542, -0.095948, -2.742397, 0.653421, 0.982961, 1.460629, -1.362661, 1.510778, 0.824519, -0.275595, 0.354997, 0.488819, 2.258819, 0.359619, -1.283820, 0.897959, -1.922831, -1.211657, -0.786508, -0.335672, -0.066206, -1.885398, 0.106196, -1.075324, -0.130771, 0.936019, 1.199241, 0.818597, -1.295691, -0.252380, -0.580393, 0.718272, -0.219422, -0.083880, 0.817375, -0.477985, 0.342383, 0.880923, -1.288045, -0.107524, -0.291669, -0.782096, 0.243727, 0.085524, -0.525933, 0.431572, -0.983014, -0.880919, -0.301686, 0.111170, -0.353627, 0.147223, 0.644625, -0.010997, 1.672121, -0.647457, 0.854281, 0.129677, 1.886402, -1.613103, 1.083120, 1.666750, -1.137492, -0.193517, 0.481021, -0.777120, -0.636568, 1.088941, 0.169902, 0.514698, 1.019902, 0.618131, -1.584765, 0.950636, 0.091505, 1.036228, 0.804537, -0.568730, 0.419557, 0.424344, 0.613427, -0.565812, -0.561972, -0.450024, -0.150461, -2.487002, -0.772121, -0.789989, -0.601415, 1.164385, -0.989414, 0.172397, -1.331528, -0.946586, 0.646704, 0.481265, -1.474057, 1.019306, -0.378230, 0.152290, 1.763388, -1.424848, 1.907498, -3.040169, 1.664067, 0.629568, 0.703467, -0.895947, 0.097275, -0.199917, -0.108095, -0.778527, -1.699217, 1.018501, 0.375550, 1.372404, -1.116008, -1.420740, -0.423042, 0.221206, -0.534473, 1.665612, 0.037007, -1.744174, -0.168484, -1.889772, -0.253912, -0.865062, 1.123276, -0.171041, -0.557752, -0.544259, 2.175464, -0.924443, -0.868644, -0.204754, -0.421062, 0.173582, 0.311574, -0.250844, -1.658209, -1.277540, -1.286674, 0.520298, 1.740611, -0.238448, -1.193111, 0.238622, 1.807017, 0.273297, -1.451350, 0.320300, 0.034210, 0.409694, -0.019713, -0.729223, 1.203844, -1.094943, -0.065545, 0.478520, -1.504856, 0.309317, 1.420546, -0.193712, 0.880712, 1.616937, -0.234721, -0.619091, 1.839139, 1.640983, -0.153224, 0.299766, -0.196582, 0.604506, -1.481387, -1.129494, 1.480800, 0.483069, -0.181322, 0.633865, 0.468024, -1.259344, -0.772260, -0.090819, 0.045058, 1.221004, 0.309356, -0.795301, -0.322054, -0.747134, 0.942645, -0.855732, 0.571040, 0.418151, -0.311619, 1.451395, -1.253479, -0.816530, -0.844545, 0.465934, 0.142660, -1.574321, -0.607416, -0.865954, -1.985933, -0.357751, -2.003364, -0.165155, 2.120625, 0.424884, 1.625462, -0.635548, -0.828839, 0.962227, -0.458569, -0.263883, -0.003447, -0.811828, 1.466801, -0.861442, 1.817312, 0.763435, -0.077283, 1.171337, 1.852980, -0.825663, 0.380816, -0.763107, -1.273469, 0.050053, 1.128880, -0.529200, -0.491573, 0.518026, -3.078030, 1.453127, 0.168322, -1.354980, 0.054666, -0.483361, 0.086041, -1.201428, 0.910132, 1.136404, -0.822585, 0.583446, -1.146909, 1.098380, 0.492739, -1.194805, -1.016227, -0.906808, -0.923640, 0.064073, -0.993246, 0.267169, -2.204418, 0.137569, -0.545028, -0.088738, 1.513250, 0.174449, 0.795486, 0.742522, -0.746636, 0.508116, -0.132021, 1.098349, -0.252487, -0.686360, 0.895944, -2.132263, -0.394777, 0.741522, -1.430188, -0.150352, -0.534067, -1.836780, -0.145386, -1.950096, 0.612955, -0.126225, -1.251469, 0.652834, -2.065746, 0.217627, -1.366868, -1.038746, 0.078324, 0.008992, -0.592714, 0.004255, -0.615789, -0.054335, 1.936118, -1.043879, -0.680675, -1.986930, 0.177496, -0.491806, -1.685774, 1.324623, 2.353280, -0.011818, -2.221364, -0.197860, 0.934152, 1.032305, -1.041719, 1.736700, -0.724483, 0.039847, -1.148865, 0.377469, 0.367587, -1.228222, 0.845540, -0.122739, 0.534080, 0.826322, -1.324016, -0.306079, -0.528325, -0.233354, 1.066766, 0.501423, 1.135994, 0.214983, 1.068522, 0.537713, -0.859421, -0.100945, 0.367885, 0.100765, -0.446465, 0.467550, 0.195550, -0.795318, 0.723142, 1.315103, 0.113011, -0.803484, -1.844653, 1.593148, -0.679890, 0.633723, -0.651584, 2.387120, -0.559977, 1.153716, -0.117818, -1.709053, 0.537448, 1.140011, 0.388794, -0.586205, -0.652244, 0.582954, 0.572474, -0.486873, 0.469235, -0.835635, 1.059082, 1.087970, -0.869034, 0.550068, -1.201545, 1.172184, -1.311114, -1.168822, -0.854887, -0.988639, 0.652909, -2.012884, 2.881532, 0.385573, 1.328973, -0.406575, 0.357078, 1.203155, 2.004030, 0.168714, -0.185673, -0.900449, 0.198355, -0.666205, 0.589277, 0.590101, 1.282242, -0.965786, 1.271261, -1.952521, 1.558415, -1.673966, -0.533179, 0.121260, -2.861208, 0.223961, 0.209302, -1.273812, -2.248562, -1.150613, 0.657367, 3.058783, -1.890622, 1.149055, -0.726599, 2.517329, -0.804355, -1.732042, -0.665235, -1.699141, -0.006095, -1.908328, 0.113505, -0.279544, -0.390446, -1.757928, 0.572983, 1.184147, -0.133289, 0.097485, -0.538614, 0.174600, 0.167428, 0.201676, -0.526435, -2.325884, -1.249860, 1.076213, 0.046791, 1.713099, 2.231667, 0.122428, -0.492444, 0.103533, 1.546822, -0.242880, 1.092226, -0.194675, -0.230519, -0.396828, 0.395040, -2.256280, 2.101752, -1.612372, -1.471967, 0.567622, -0.362724, -0.822732, 0.051362, 0.232761, -1.345580, -1.438230}, + { -0.310151, -1.641493, -1.683665, -1.581617, -1.556019, -0.116435, -1.287109, -0.966370, -0.089292, -0.211547, 1.763310, 0.579855, -1.045628, 0.436643, 0.261845, 0.733646, -0.396500, -0.378268, 0.603173, -0.280098, 0.924935, -4.027768, 0.153613, -1.119465, -2.695040, 0.877621, -0.015011, 0.379179, -0.697479, 2.227116, 0.843324, -2.411422, 1.100514, -0.646175, -0.407407, 0.774470, -0.059263, 0.068859, 0.807068, -1.031870, -2.000034, -0.105345, -0.559362, -0.083196, -0.427561, -0.935833, -1.558999, -0.303375, -1.066436, -0.134515, 0.720490, -0.393071, -0.245085, 1.327125, -0.220163, 1.293344, 0.650545, 0.319051, -0.240703, -0.727662, -0.031034, 0.061075, -0.110715, -1.196082, 0.593898, 0.346634, 0.876513, -0.117547, -2.411158, 0.597994, 1.512122, -0.912695, 1.315173, -0.781762, 0.978962, 0.268485, -0.372545, 0.076102, -0.866315, 0.589567, 0.888052, 1.358490, -1.514236, 0.230478, 1.034699, 0.546458, 0.358096, -2.007857, -1.543755, -0.772075, 0.052994, -0.933745, 1.866748, -0.558237, -1.004363, -1.252712, 0.315357, -0.203742, 0.345551, -0.349825, 1.221299, 0.301064, 0.390154, 0.019005, 1.667327, -0.377088, -0.297350, -0.162071, -0.491520, -0.870485, 0.703710, -0.439612, 1.075361, -0.748508, 0.315140, -2.672870, -0.294738, -0.310354, 1.946445, 0.253400, -0.375124, 1.511451, 0.686464, 0.911366, 0.194062, -0.458325, -0.196889, -1.567737, -1.187004, -0.275806, 1.240922, -0.791952, 0.950935, -0.873036, 0.328712, 0.308279, -0.582859, -0.854740, 0.950263, -0.151132, -1.356655, 1.183778, 0.756249, -0.154072, 0.190848, -0.870682, 1.205910, -0.332975, -0.005420, 0.610894, 1.967734, -0.371011, -0.502420, 0.905882, -0.475590, 0.275417, 1.430607, 1.296125, -0.067216, 1.404206, -0.383606, -0.569027, 0.193384, -0.510845, 0.203063, 0.571223, -1.494977, -0.609065, -0.087508, 0.493762, -0.042944, 0.731347, -0.927992, -1.050806, -0.152273, -0.121183, 1.115768, -0.292373, -0.725986, 0.748516, -0.569663, -0.390570, -0.300701, 1.460526, 0.147317, -0.035903, 0.984443, -0.143064, 0.380947, 0.498990, 1.140561, 0.255050, -1.428924, -0.580013, -1.232750, 0.225186, -1.279091, -1.844107, 0.519803, -0.271412, -0.793659, 1.333586, 0.676960, -0.887825, -0.287264, -0.407759, 0.565029, 0.834353, 0.070054, -0.105081, 2.022605, -1.062835, -0.273014, -0.825507, 0.485221, -0.128918, 0.569196, -0.073302, -0.614044, -0.231966, 1.473376, 1.065993, 0.120870, 0.340169, 0.551432, -1.128610, 1.066085, 1.443780, -0.081021, 0.627802, 0.627782, 0.698831, 0.410732, 0.737487, 1.662959, -0.625680, 0.769234, -0.871365, 0.155800, 0.334328, 1.124731, -1.542722, -1.143543, 0.054246, 0.932913, 0.838537, -0.614754, 1.241706, -0.848885, -1.055196, 1.483312, -1.149844, -1.305572, 0.203506, 1.807135, -0.227899, -1.209714, -0.097224, -1.331722, -0.123500, -0.204608, -1.271745, -0.573085, -0.325283, -1.784665, 1.137962, 1.286999, -0.635914, 0.011226, 1.555348, 1.911332, -0.388874, -0.789669, 0.344745, 1.082035, -0.172750, -1.410603, -1.313485, -1.390669, 0.511204, -0.260211, -0.386496, 0.206977, -0.975190, 0.584153, -0.695019, 0.594575, -0.596553, -0.136340, -0.153377, -0.994783, 0.907626, -0.642956, -2.737844, -0.656160, 1.322876, 0.403209, 0.367092, -0.727361, -0.079238, 0.616475, 0.482636, -0.492358, -0.670880, -1.324560, 1.606926, -0.481022, -0.234074, -0.603051, -1.673742, 0.896434, -2.246106, -1.000184, -0.468452, -0.965423, -0.821975, -1.904006, -0.878640, 2.397516, -0.990474, 0.514271, 0.091049, 0.446070, -0.521314, 1.093349, -1.001414, -0.954734, 0.370627, 1.362720, -0.669483, 0.300900, 1.034795, -0.198767, 1.066936, -1.675233, -0.109229, -0.685550, 1.011421, -1.617687, 0.572178, 0.140233, -0.134989, -1.772660, 0.681099, -1.634689, -1.012262, -1.148095, 0.529883, -0.407684, 1.062071, -0.113872, 1.945737, -0.575557, -0.264226, -0.020241, -0.602449, 1.246558, -1.544465, -0.512249, -1.066577, 0.093703, 1.682195, -1.705918, 0.580953, 0.196687, -0.540479, 0.122659, -1.501659, 1.405684, -0.613692, -1.392747, -0.131502, 0.691649, 0.472306, 1.002877, -1.098071, 2.402353, 1.660777, -2.961617, -0.357633, -1.701014, -0.183279, -0.408472, 0.051728, 0.533615, 0.009234, -0.010222, -1.194633, 0.321439, -0.278805, -0.181466, 0.744299, 0.351215, -1.382850, -0.161837, -1.342715, -0.574785, 0.010487, -0.449983, 0.385413, 0.600294, 1.524382, -0.397665, -0.597690, 0.940345, 1.160229, -1.168342, 0.253787, 0.030955, -0.611624, -0.120345, 1.550938, -1.101529, 0.081941, 0.441206, -1.908851, 0.581606, -0.956610, 0.397061, 0.554236, 0.633761, 0.602822, -0.515505, 0.028329, -1.087766, -1.004993, 0.332241, -0.362820, -0.880724, 1.039595, 0.694672, -0.564924, -1.217957, -0.491260, 0.291386, -0.519124, -0.206957, 0.570894, -0.550539, 0.325174, -0.116496, 1.018754, -0.119980, -0.422186, -0.911080, -1.127013, 0.557183, -0.741349, 0.417320, -1.845168, -0.476819, -0.428370, 0.908760, 0.309934, -0.175018, -2.417913, -0.181377, -0.118255, -0.828087, 0.033081, -0.891520, -0.734479, -0.881171, 0.197650, -1.576140, -0.103693, -0.046928, -0.889378, 1.213214, -2.124298, 1.053849, 2.803650, -1.182848, 2.114977, -0.897833, 0.737297, 1.267197, 1.323833, 1.463259, -0.261870, 0.221097, 1.595391, -0.131520, 0.568046, -0.790963, -0.822192, -0.835176, 1.614148, 1.067247, 1.303380, 2.334189, -1.938402, -0.778444, -1.239119, 0.720032, -1.162438, -1.092555, -0.763218, 0.525978, -1.553559, -1.526637, -0.095601, 1.053814, 0.441394, -1.123411, -0.164210, -0.486548, 1.166285, 0.288927, 0.407736, -0.051392, 1.205685, -0.443430, -2.251801, 0.139248, -1.504257, -0.583445, -1.534388, -0.230572, -0.196783, -3.209231, 0.612040, -0.200021, 0.677319, -0.774423, -1.594781, 0.500904, 1.427571, -0.002244, -1.288796, 1.020730, -1.391180, 0.816931, -0.563466, -0.890417, 0.087841, -1.058150, -0.094071, -1.714016, 0.705109, -1.059075, -0.520994, 0.684637, -0.679719, 0.969776, -1.003722, -0.196672, 0.472371, -0.340139, -0.212567, 1.521100, -0.479488, -2.244764, 1.353559, 0.211539, -0.911525, -0.291194, -1.369187, -0.255942, 0.014644, 0.206609, -0.447558, 0.179153, -0.600172, 1.487605, -0.046165, 0.633974, 0.741361, -1.266746, 0.669063, -0.465436, 0.950921, -1.228601, -0.463809, -0.464304, 0.499068, -0.201404, -0.748462, 1.770598, -0.281201, -1.431788, 0.258918, 1.616739, -0.327229, -1.762581, 0.756684, -1.270479, -0.703220, -1.431333, 0.156219, 0.233116, -0.581765, 1.769609, 0.135386, -0.524163, -1.748615, 0.760809, -0.687220, -1.236011, -1.140508, 0.511009, -0.152677, 0.681075, 0.221346, -0.565020, -0.662267, 1.448199, 0.579600, -0.859085, 0.641966, -0.329431, -0.033679, 0.855319, 1.574513, -1.373427, -0.222315, 0.279325, 0.810730, -0.596319, 1.562196, 1.070140, -0.071247, -1.385282, -0.776424, -0.929720, -0.240324, 0.572532, 0.566468, 1.043381, -0.766918, -0.433388, -0.824041, 0.105005, -0.426479, -0.476288, -1.379433, 0.328408, 1.025340, 0.545463, -0.760219, -1.181240, 0.977242, 0.409170, -0.423137, -0.059377, -2.025424, 1.280215, 1.248784, 1.458418, -0.662637, 1.229671, 0.638619, 0.098351, -0.059211, 0.464381, 0.865670, 0.388890, 3.230340, 0.875133, -0.109925, -0.147007, 0.396882, 0.413388, -0.135330, 0.067621, -0.748232, 1.022368, -0.002326, 0.176242, 0.983975, 0.444501, 1.375921, -0.176766, -1.201070, 0.002097, 2.248635, 0.647923, -0.196902, -0.902357, -0.887038, 2.005423, 1.208699, 2.898546, 1.236021, -0.581685, 0.278169, -0.581965, 0.241766, -1.703681, 0.929086, -0.256205, -0.402781, -0.078960, -1.494719, -0.304907, 0.689507, -0.104299, -0.444205, -0.519252, 1.121699, -0.574500, -0.247439, -0.355541, -0.130872, -1.393619, 0.165875, 1.164973, 0.252271, -1.702936, -1.327904, -0.471345, 0.094060, -0.379685, -0.119167, 1.536727, 0.232353, 1.401327, -0.345654, -0.551768, 0.286880, 0.977198, -1.085671, -0.335262, 1.388834, 0.309359, 1.463658, 1.031883, -0.103777, 0.957895, 1.358527, -0.307526, 1.054264, -1.478447, -0.711435, 0.451137, -2.019896, -0.811723, -0.208723, 0.734780, -1.706889, 0.079485, -0.111662, -0.434619, -2.141463, -0.024723, -0.239503, -0.872730, -0.017037, -0.112162, 0.268361, -1.524560, -0.170977, -0.917587, 0.645516, 0.984182, -0.223178, 0.524829, 0.299534, 0.217136, -0.910675, 0.668189, -0.803499, -0.349058, -0.367616, -2.212027, -1.494074, 0.202834, 1.204517, 0.505635, 0.453109, 0.371346, 1.300557, -0.529976, 0.190081, 0.938478, -1.940067, -1.391734, -1.617529, 0.928458, 0.054658, 0.335628, 0.001279, -0.244629, -0.038825, 0.448149, 0.269513, -2.270245, 0.082001, -0.426183, 1.473616, 1.191829, -0.364693, 0.973891, -0.233262, -0.507476, 0.299866, -0.863028, -0.660551, -0.239455, -1.072409, -1.834458, -0.497106, -0.513471, -0.566059, -0.792595, -0.508657, -1.449835, 0.116803, -0.717022, 0.890431, 0.889788, -0.350094, 0.986653, 0.015442, -0.956295, 0.226685, -0.740512, 0.413079, 0.860112, 1.236905, -0.630845, -0.931731, -0.147487, -1.422998, 0.402559, 0.579921, 1.271513, -0.963529, -1.024402, -1.439640, -0.393807, 0.467550, 0.797238, 0.108384, -0.390986, -0.262875, 0.654479, 0.856139, 0.232487, 0.767878, 0.924483, -0.531363, -0.740987, 1.066798, -0.561043, 0.740392, -0.566895, -0.363379, 0.247682, 0.644484, -0.344641, -0.804242, 2.148025, 0.217033, -0.153000, 0.950998, 0.551147, -0.610186, -0.177180, 0.909568, -0.343768, -0.670508, 0.718671, 0.490303, 0.170217, -1.490391, 0.593561, 0.436733, 0.499217, -0.836626, -1.197528, -0.588773, -0.597544, -1.802702, -0.029295, 1.081923, 1.588356, -1.588753, 0.240571, -0.445431, -0.046116, 0.271433, -0.131587, 0.806012, -1.463762, -1.134691, -1.386343, 0.810560, 1.020875, 0.007190, -1.056850, -1.568949, -0.059256, -2.179584, -0.483692, -0.217182, 0.328203, -0.684399, -1.970007, -0.324724, 1.307183, -0.140845, 0.203176, -0.111262, -0.023455, -0.020441, 0.917440, -2.455155, -0.914688, 0.817847, 0.435525, 0.174985, 0.438944, 0.485137, -0.186118, 0.160377, 0.081294, 0.406003, -1.665644, 0.999643, 0.631962, 0.812076, 0.630455, -0.253524, 0.227897, -0.598656, -2.095248, -0.657193, 1.101583, 1.349289, -1.815911, -1.092206, -1.926853, -1.295744, -0.099835, 0.048909, -0.184993, -1.185609, -0.301085, 0.379236, -0.124415, 0.555805, -0.304434, 0.109467, -0.333628, -0.686461, 0.869904, -0.703766, -0.489518, -0.139309, 0.016252, 1.215338, 1.332435, -0.714926, -0.623521, 2.100325, 0.958336, 0.597919, 0.285964, -0.302350, 1.134882, 1.264198, 0.058059, -2.245315, -0.982188, 1.426329, -0.930261, 0.427298, 1.099799, 1.612976, -0.998279, -0.119997, 1.255413, -0.428746, -1.137348, -0.043879, 0.215420, 1.824946, 0.303328, 2.110681, 0.408459, 0.002890, 0.439512, 0.879812, -0.590043, 0.799313, -2.001028, -0.679687, 0.110229, 0.030804, -0.598085, 0.963913, -0.205722, -0.528403, 2.269712, -0.631607, 0.389748, -0.046796, 0.974459, 0.153934, -0.382556, 0.152428, -0.859834, -2.198076, 0.212276, -0.108004, 0.895122, -0.748592, -1.785119, -1.272737, 1.385509, -1.542201, -0.282588, 1.646902, 0.394683, -0.345625, 1.255681, -1.489733, 1.278147, 1.789601, -0.116686, 0.276218, -0.576014, 0.480398, 0.564563, 0.090023, 0.342563, -0.659904, 0.646081, -1.617043, -0.127928, -0.179244, -1.258273, -0.339893, 1.884799, -0.314919, -0.647343, -0.675543, -1.846914, -0.205921, -1.041431, -1.602912, -1.013722, 0.202905, -0.427558, 0.480325, -0.265356, 0.691178, -0.841844, 0.595422, 0.257490, -0.211061, 0.443674, 2.164342, -0.964128, -0.610492, -0.394115, -1.044007, -0.702231, 0.163212, -1.083503, -1.427791, -0.544006, 1.351743, 0.023961, -0.858073, 0.405021, 0.203585, 0.399556, 1.308953, 0.370530, 0.778679, -2.003744, -0.490781, -1.137240, -1.093967, -2.007708, 1.014723, -0.303606, -0.950006, 0.086146, -0.619831, 0.055449, -0.339410, 1.257595, 0.448026, 1.419038, 0.202594, 0.487320, 0.948779, 1.788145, 0.305789, -0.121315, -0.575190, -2.008777, 2.231899, 1.415720, -0.520328, 0.408420, -0.876427, -0.047159, -0.251633, -2.315549, 0.443662, 0.022653, -0.051200, -1.455249, -0.305578, 0.704665, 0.218667, 0.036960, 0.606606, 2.255737, -1.572563, -0.415935, 1.001221, 0.188568, -0.723376, 0.173396, -0.801289, -0.139955, 0.606574, 0.606333, -0.918415, 0.084749, -0.771950, 0.878474, -0.113157, -0.679438, 1.498421, -1.075501, 1.023144, -1.234719, 0.980799, 0.164045, 0.414859, 0.551970, 0.128727, 0.115802, -1.212982, 0.473085, 1.188062, -0.302362, 1.039614, -0.717064, 2.174548, -0.139021, -0.889077, 0.364911, -1.019333, -2.179367, -0.236315, -0.606734, -0.880041, -0.038874, 0.246082, -0.049309, -0.309367, 0.353062, -0.950315, 0.832331, -0.796088, -1.044570, 0.893077, 0.854818, 0.134419, -0.399943, -0.396154, 1.005236, -0.042738, 0.848694, -0.055694, 0.132425, -0.350843, 0.821841, 0.610316, -0.282661, -0.292886, 1.793833, -0.577801, -1.402546, 0.994330, -0.449941, 1.533199, 2.157122, -0.170263, 1.691110, 0.809207, 0.837475, 0.404157, 1.172644, -0.856839, -1.302981, 0.553534, 0.435473, 0.555584, 0.251128, 0.363303, 0.183690, 2.546469, -1.365064, -0.993427, 0.446809, -0.209524, 0.027349, -0.677232, 1.718123, 0.093526, 1.223074, 0.003940, 1.341304, 0.256256, 0.453635, -0.477263, -0.257878, -1.252648, 0.124172, -0.648575, -2.087541, -1.018370, -0.079769, -1.798382, -0.206057, -0.289375, -0.256719, -0.677412, 0.144033, -0.336674, 0.246354, 0.450361, -0.417430, -0.420206, -0.502874, -0.308524, 0.887787, -1.253018, 0.705646, 2.798658, 0.810133, 0.615424, -0.945940, -0.108846, 0.602770, -0.242829, 0.494183, -0.723774, 2.298913, -2.140609, 0.167969, 1.731453, 0.798705, 0.833450, -1.081802, 0.896913, -0.553075, 1.281635, -0.463550, 0.603082, 1.334096, -1.198750, -0.549820, 0.260556, -0.860542, -0.797400, -0.277765, -1.915504, 0.825628, 0.337622, -0.351585, 2.237904, -0.241973, 0.053173, 1.222113, 1.083499, -0.415134, -0.947996, -0.465939, -1.502165, -0.053548, 1.496980, -0.656529, -0.149603, 0.605857, -1.023077, -0.573270, -1.280582, -0.557406, -0.146291, -0.038841, -0.216691, -1.577769, -0.196704, -0.904112, 0.584148, 0.649687, 1.968806, 0.288819, -0.525708, -2.805209, 0.901529, -0.523971, -0.051543, -0.480624, 0.665921, -0.524600, 0.417170, 1.019296, 1.705064, 0.449199, 1.202385, 0.200063, 0.587563, 0.707577, -0.194253, 0.411877, 0.459522, -0.976448, -0.492446, -0.119110, 0.999352, -1.018420, 1.033762, -1.123915, 0.072348, -1.551234, 0.032980, 0.013613, 0.279831, 0.575874, -0.552735, 0.992108, -0.338639, 1.669724, -0.205140, -1.432228, -0.213240, -0.203441, 1.256557, 0.381836, 1.317111, -1.252723, 0.605235, -2.336290, 0.450344, 2.135969, 1.632366, -0.703203, -0.103031, -1.083230, 0.324939, 1.380566, 1.518380, -1.286865, -0.396283, -0.686912, 0.043801, -0.171330, -2.167181, 0.106603, -0.073512, -0.709928, 0.496409, -1.606301, -0.082459, -0.522890, -0.258991, -1.465826, 0.285836, -1.252133, 1.644876, 0.458423, -1.120672, 0.495272, 0.860859, -0.862916, 0.493858, 0.231052, 0.333055, 1.078423, -0.430531, -0.426262, 0.739665, -0.051367, -1.536554, -2.138158, 1.224571, -0.416434, 1.642096, -0.306261, 0.854513, 1.630692, 1.299029, 0.785019, -0.128641, 0.878071, -0.430557, -0.661864, -0.463054, 1.450376, -0.778230, -1.100004, -0.691200, 0.060367, 0.433526, -0.314556, -0.895461, 0.902982, 0.694510, 1.841522, -1.441770, 2.002311, -0.209057, -2.192071, -0.295782, -1.235335, -0.570194, -0.187680, -0.538743, -0.314282, -0.969063, -1.213279, -0.702292, -0.595821, 1.987409, 1.436946, -0.236897, -0.621210, -1.929375, 2.243590, -0.180490, 0.905122, -0.272006, 0.724476, 0.881353, -0.497596, -1.092774, 2.150041, -0.723889, 0.332220, -0.146065, 0.921359, -0.250293, -2.020249, 1.197382, 0.100955, -0.347675, -0.356890, 0.779672, 0.722382, -0.478699, -0.109197, -0.533204, -0.881675, 0.214805, 0.433422, 1.055058, -0.148328, 0.662964, -0.307062, 0.303768, 0.113056, -0.678854, 0.960057, -0.684778, -0.601479, 0.642987, -1.016820, 0.919149, 0.027752, 0.040127, -0.400100, -1.700941, 0.327812, -0.960601, 0.066818, -0.868953, -1.226377, 0.813049, -0.125870, 2.407048, 1.660116, 0.307024, -2.974072, 0.016078, -0.598350, 1.093386, -0.557983, -0.474581, -0.268793, -0.941962, -0.546879, 0.344974, -0.937501, 1.950975, -0.916045, 1.245198, 1.504125, -0.189757, 0.745054, 0.063587, -0.765522, -0.779060, -0.765481, 0.371388, -0.232414, 0.734661, 0.484605, 0.923389, 0.946756, 0.767741, -1.552785, 0.247190, -0.942871, -1.426758, 0.105174, 0.583194, 0.342345, -1.668015, 1.322648, -0.543859, -0.592447, 0.177456, -0.965898, -0.375638, 0.884468, 0.064959, 2.742650, 1.124398, -1.718729, -1.031690, 1.620995, 0.535332, -1.034079, -0.745892, -1.957268, 0.361841, 0.504717, -0.255257, -0.819853, 0.548913, -0.088541, -0.107280, 1.124136, -0.366217, 0.764901, -0.439781, -1.687703, -0.359027, 0.056989, -0.652481, -2.371082, -2.023236, -1.138334, 1.095922, -1.061795, -0.077270, 1.112138, -1.757375, 1.879672, 1.005198, -0.003898, -0.302811, -0.362128, -2.424897, -0.204675, 0.369157, 2.291474, 0.279842, -2.648222, 0.281477, -0.292614, -0.609326, -1.584215, -0.577252, -1.414526, 0.234824, -2.030697, -0.261067, -0.611428, 0.965207, -0.134344, 0.678341, 0.343700, 0.483760, 2.277985, 0.248091, 0.068842, 0.847192, -0.021343, 0.010816, -1.063793, -0.157371, 0.213674, -0.644417, -0.411241, 0.025639, 0.384020, -0.868608, -0.505267, -0.448896, 1.591835, 0.448985, 0.122964, 1.176225, 0.308975, -0.051793, -2.101740, -0.041024, -0.466685, -1.528628, -0.939093, -2.123558, -0.087205, 0.301431, 0.302289, 0.648901, -0.455770, 1.454976, -0.026293, -0.110300, -1.185548, 0.162560, 0.340710, 1.294543, -0.749508, 1.169249, 0.424025, 0.271612, -0.059737, -0.589331, -0.020771, 0.730268, -0.882745, -0.287966, 0.154120, 1.157551, 0.922601, 0.579842, 0.089463, 1.590788, -1.666092, 0.727716, 0.414143, -1.515764, -0.551236, -1.228522, -0.151851, -1.213655, -0.435873, 0.242595, 0.088702, -0.689951, -1.055395, 1.238220, 0.127997, 0.965761, -0.283036, 0.147813, 1.754206, 0.405498, -1.992561, 1.762365, -1.084132, -1.073596, -1.878363, -0.839287, -1.099495, 2.436202, -1.300402, -0.064908, 0.098924, -0.151576, -0.415735, -0.261413, -0.575746, 0.343917, -0.979946, 1.461867, 0.279795, -0.053731, -0.700137, 1.116902, 0.445720, 0.519343, 1.301252, -0.824556, 0.290675, 0.471464, -1.664197, -0.587274, 1.773432, 0.076869, -0.478612, -0.997378, -0.608230, -1.146604, 0.612330, 0.587869, -0.467863, -0.830914, -0.434591, 0.823486, -0.307968, 0.803833, 0.356400, 0.119798, 0.994389, 1.646933, -0.319657, -1.143077, 0.238084, 0.073254, 0.290750, -0.496784, 0.127839, -1.134333, -0.475590, 0.342793, 0.561700, 1.083739, -0.621562, 2.007190, -0.749681, 0.306245, 1.410570, -1.027610, -0.607160, 0.526426, -1.053345, -0.662391, 0.999669, -0.267399, -2.100553, -0.107248, 0.428875, 2.392276, -1.260995, 0.838607, -1.438173, -1.543364, -0.173887, 1.161157, -1.656016, 0.768624, -0.503136, 0.242731, -0.797137, 1.457012, 1.194033, -0.219754, 0.787140, -1.074659, 1.075281, 1.488120, -1.631383, -0.880727, 0.903084, 1.710677, -1.608465, -2.258219, -0.760839, -1.488068, -1.009893, 0.316453, 0.247425, -0.436649, 0.594081, 1.520355, 0.365858, 0.479449, 0.396479, -0.317011, -1.829359, -0.861024, 0.389624, -2.236999, -0.998257, -0.436500, -0.646010, 0.255605, -0.108665, -2.391119, -0.715518, -0.306217, -0.129100, -0.773214, 0.124885, 0.053684, -1.027598, -0.439747, 0.971525, -0.586588, -0.654349, -0.224725, 0.881898, -0.926858, 0.036545, 0.577139, 0.646965, -0.760576, 1.764605, 1.315793, -1.383656, -1.295657, 0.567028, 1.313968, 2.156826, 0.622794, -0.577323, 0.966672, -0.162567, -0.166342, 1.071267, 1.346142, 0.631020, -0.446261, -1.328898, 0.313343, -0.147901, -0.841389, 0.222595, -1.015563, -0.361185, -0.544159, -0.780957, -0.306144, 1.295227, -0.198116, 0.595291, 2.193578, 1.139577, -0.948389, 0.779828, -0.104870, 1.307266, -1.220165, 1.471168, 0.529367, 0.376907, 0.104109, -0.652195, 0.989544, -0.643177, -0.699260, 0.071478, -1.316203, -0.715383, 0.034564, -0.225686, -0.417212, -0.932655, -1.355596, -0.543498, 0.549977, 0.665187, -1.051346, -0.024952, -1.021750, 0.908657, 0.396883, -0.666521, -0.919344, -0.933225, -1.349254, 1.280828, 0.300822, 1.487108, 0.073654, 0.798379, 1.840953, 0.096050, 0.251136, 0.426554, 0.075867, 0.818025, -0.702888, -1.547570, -0.297522, -1.040091, -0.622535, -0.548506, -1.736907, 0.281682, 1.684424, 0.412191, 0.257385, -0.985927, 1.380737, -0.621087, 1.157389, -0.921362, -0.752636, -0.214531, 1.910784, -1.778952, 0.945402, -0.432019, 0.984830, -0.943382, 1.006706, 1.012294, 0.261448, -0.510279, 0.201624, -1.683555, 0.890802, -0.211688, 1.077732, -0.639263, -1.678163, 1.711292, -0.100516, 1.304589, 0.604852, -0.365599, -0.010730, -0.952301, 0.107426, -0.070798, -1.157372, 1.055539, -0.391167, 0.345501, -0.060577, -0.913950, -1.936471, -1.686686, -1.226831, -0.343731, 0.042320, -0.698214, -0.471303, -0.060837, -0.004004, -0.807956, -0.639474, -1.626745, -0.777022, -0.167135, -0.716723, 0.211603, 0.701444, -0.079420, 0.765703, 0.172018, 0.487554, 2.338663, 0.204641, -0.628556, -0.908164, -1.524089, 0.895699, -3.181342, 1.838353, 0.941070, -0.181201, -0.077085, -0.037133, -0.745765, -0.341597, 0.358737, -0.607055, -0.960976, 0.341276, -1.718026, 0.507012, -0.185008, 0.496628, -0.115866, 0.254557, 0.858412, 0.452447, 0.068163, -0.948059, -0.867992, -0.294745, -0.171641, 1.307509, -0.536352, 1.572355, -1.285495, -1.583022, 0.609885, -0.545417, -0.567351, 0.017278, -0.472687, -0.539322, -0.738005, -0.040125, 0.238187, 0.225476, 0.195657, -1.121244, 0.524517, 0.867339, -1.223749, 1.100164, 0.192512, -0.424814, 0.213192, -0.726144, 0.057377, -2.277452, 1.454617, -0.431642, 0.968204, 0.286864, -0.864763, -1.835117, 1.137366, 0.855414, -0.805245, -0.415130, -1.920147, 0.101846, 0.071377, -0.995996, 0.113731, 1.397568, -0.154424, -0.559770, 0.017713, 1.083274, -0.217913, -1.286497, -2.510026, 0.198235, 0.440841, -0.588075, 0.286140, -0.129562, -0.532723, -1.131228, -1.967916, -0.562502, -0.595027, 0.692927, 1.506119, 0.927660, -1.429361, -0.352394, 0.063303, 1.241069, 0.821308, 0.580679, 0.342259, 2.192977, -0.061027, -1.330248, 0.371904, -0.709655, 0.258159, 0.435750, 0.059419, -1.496021, -1.258572, -0.884779, -1.229493, 1.417518, 0.922647, -1.193793, -0.556581, -2.006065, -0.915661, -0.080225, -1.148947, -0.587301, -0.902605, 0.946050, 0.233480, -0.090540, 0.440161, 2.058893, 0.516855, 0.627407, 0.361430, 0.745026, -0.914920, 1.360206, 0.516031, -1.467430, 1.161816, 1.197780, -2.351098, -0.139326, 1.524526, 0.923400, 0.489121, -0.993048, -1.734001, 0.945297, 1.220334, 0.331749, 1.684402, -0.353123, 0.175850, 0.168414, -0.172173, -0.998616, -0.875388, -1.447039, -0.846360, -1.000666, 0.415238, 0.615538, -0.618100, 1.020172, 0.565845, -0.592145, -1.146130, -1.457018, 1.207882, 1.496605, -0.849828, 0.508080, 0.003622, 0.328261, -0.701423, -2.800366, -0.183583, 0.355335, 0.481280, 0.507019, -0.085662, -0.721476, 0.699493, -0.177184, 0.195426, 1.372931, 0.829205, -1.648045, -0.080820, 0.233745, 1.047875, 1.427457, -0.909939, 0.744946, 0.475579, 0.333252, -0.263291, 1.990240, -1.365667, 0.917134, 0.441225, 0.673682, -0.916110, 0.405118, -0.474774, 1.917762, -0.697735, -0.036623, -0.980998, 0.263049, 1.467996, -0.034055, 0.349727, 0.678725, 0.158301, 0.803709, -0.507814, -0.038403, 0.307919, 0.857095, -0.097496, 0.924752, 0.025445, -1.237824, -0.214348, -0.027085, -1.736331, -1.239600, 0.248293, 0.509233, -0.386509, -1.181276, -0.152069, 1.553040, 0.696582, 0.525683, 1.597154, 1.901917, 0.805370, -0.698043, 0.649477, 0.602392, -0.016678, 1.092806, -1.774571, -1.435562, 1.890936, 0.086065, -0.924814, -0.591353, -1.121881, 0.197200, 0.238419, 0.279097, -0.100666, 0.264216, -1.421075, -0.454308, -1.724634, 0.282924, 1.083129, -0.838754, 0.225976, 1.307797, 1.058809, -0.031642, 0.645758, 0.317284, 0.724163, -0.198597, -0.906990, 0.213882, -1.088142, 1.040360, 0.821178, -1.045283, 2.308885, -2.524420, 1.119177, 0.076171, 1.262248, -0.446808, -1.195896, 0.075890, -0.900165, -1.757358, -0.718774, 2.174259, -1.032000, 0.096615, 0.157903, 0.791328, 1.081137, -0.885764, -1.850947, -1.183055, -1.507301, 0.712992, 1.732668, 0.901277, 0.016435, -0.280354, 0.840882, -0.210382, 0.142032, -1.124885, 0.127261, 0.672604, -0.363000, -2.047144, -0.855219, 2.181710, 1.751058, 0.153848, 0.438194, 0.697085, 0.420518, 0.038862, -0.221947, 0.122238, 1.160154, -2.507385, 0.933318, 0.083480, -0.243918, -0.462833, -1.409920, 0.273440, -1.463539, -0.835774, 0.111227, 0.909224, 0.835322, 2.172103, -0.918187, -1.175444, 1.129680, 1.078784, -0.153537, -1.893563, -0.960224, 0.538696, -0.871992, -0.067772, 0.758162, -0.883632, -0.842116, -1.591063, 0.083256, -0.171992, -0.981999, -1.731926, -0.688443, 0.998944, 0.501271, 0.958474, -0.555670, -1.501655, -0.075017, -0.461104, 0.255650, 0.704346, -1.337912, -0.823977, -0.244628, -0.687529, -0.098329, 0.074311, -0.598204, -0.076985, -0.120871, -0.990464, 0.770631, 0.611492, 0.268503, 1.004112, -0.033537, -0.533634, -0.190868, 0.246541, 0.721708, -0.159107, 0.971243, -0.508424, 0.050478, -0.373519, -0.608556, -0.462618, 0.352636, 0.034063, -1.038757, 0.112267, 0.508388, -0.985115, -0.906600, 0.477189, 0.114287, -0.497110, 1.734062, -0.070026, 1.023882, -0.248691, 0.300448, -1.759610, 1.276085, 0.857557, -0.072614, 1.019292, 0.237518, -0.888582, 0.097059, -1.039182, 0.076510, -0.590849, -2.305364, 1.030212, 0.864798, -0.430117, -0.408832, -0.242595, -1.267063, 0.795501, -1.928859, 0.376409, 1.295978, -1.117510, 0.280895, -0.876879, 0.091945, -1.255657, 3.164684, -0.845828, -1.349402, 0.988130, -1.029804, -0.195219, 0.075179, -0.632267, 0.017759, -1.341069, 0.822836, -0.283893, -0.406789, -1.505872, 0.927258, -0.622945, -1.971337, 0.077713, -0.038158, 1.411234, -0.694144, 2.075378, -1.479411, -0.003131, 0.868766, 1.517291, 0.307990, 0.541939, 0.453360, -0.144542, -1.692116, 1.079328, -1.769774, -0.618976, 0.555567, -0.791216, -0.428293, -0.256351, 0.653905, 0.386770, 0.817421, -0.549590, 1.713343, 0.201976, -0.434063, 0.225663, -0.269358, 1.769395, 0.956612, 0.420838, -0.443193, -0.257455, -0.426874, 0.050375, -0.423207, 1.757968, 0.799518, -0.000807, -0.056956, 0.896834, 0.719281, 0.561073, -0.191542, 0.415154, -1.456944, 2.303187, 0.217195, -0.493105, -0.334977, 0.566781, 0.521812, -1.376313, 0.278076, 0.030406, 0.015732, -0.661941, 0.298692, -0.880820, 0.914317, -0.399431, 0.626608, 0.038130, 0.152455, 0.445241, -0.365663, 0.076561, 0.717730, 0.161654, -1.670412, 1.087152, -0.023482, 0.950588, -0.775232, -0.612186, -1.959710, 0.313728, 1.046517, -0.985566, -0.193551, -1.296268, 0.925013, 1.223331, -0.776702, 0.575320, -0.083190, 0.072640, 0.769301, -0.923038, -1.320054, 0.082854, -1.710474, -0.372311, -1.412019, 1.723844, 1.000924, -0.467507, -0.484589, 0.036566, 0.313383, 1.179591, 0.020684, -1.160053, 1.247307, -0.807505, 0.020688, 1.742298, 2.024711, 1.184497, -0.008964, 0.609727, 0.490184, -0.202058, 0.258400, 1.085185, 0.833418, -2.779565, 0.555570, -2.094595, -0.186561, 1.142307, -0.918973, -0.149209, 2.213779, -0.920077, -0.025114, -0.520302, -0.393919, -1.789394, 0.880283, 0.356621, -0.221776, 0.586213, 0.904796, 0.838269, -0.760575, 0.743000, -0.919198, -0.184044, 0.415012, -0.271382, -0.646863, -1.523698, 1.051963, -1.069894, -1.012604, -0.236637, 0.915695, 0.138098, -0.053403, 0.523349, -1.830911, -0.696539, -0.001436, -0.920409, 1.509446, 0.024678, 0.310692, -0.042820, -1.470886, -0.340588, 0.680679, 1.090556, -0.748067, 0.626648, -1.431427, -1.539084, -0.003610, -0.619504, 1.573656, -0.173368, -0.424501, -1.383728, -0.566086, 0.335188, -1.185907, 0.049138, -0.005151, 0.837219, 0.624121, 0.006286, 0.429383, 0.712850, 0.089235, 0.698854, 0.525458, 0.760112, 0.688253, 0.205123, 0.837281, -0.446258, -1.340193, 0.380758, 0.035583, -0.819312, -1.087095, 0.556273, 0.011733, 0.139557, -0.317590, -0.611950, -0.571309, -0.264010, 0.440053, 0.727609, -0.344671, 0.909651, -0.884586, -0.578869, -0.234492, 1.454889, 1.430487, 1.378302, 1.598956, -1.083427, -0.310009, -0.155737, 0.374251, -1.429693, 0.430718, 0.081822, 0.190631, -1.557784, 2.139986, 0.704301, -0.080527, -0.488847, -0.180615, -0.825121, 0.797745, 0.070422, -1.379337, 0.770112, -0.201300, 1.257681, -1.559767, 0.954702, 0.262251, -0.390231, -0.453681, -0.534720, -1.245797, -0.808851, -1.323062, 1.197518, -0.367002, -0.404558, -1.260693, 0.498798, -2.126786, 0.699288, 0.844992, -1.062545, 0.554952, 1.029685, 1.534529, -1.016991, 0.796071, 0.322459, -1.053258, 0.172888, 1.664207, -1.116758, 0.820305, 0.537864, -0.358862, -0.167093, 0.234392, -1.219927, 0.799502, 0.155219, -1.551043, -0.470551, 0.215138, 0.726536, 0.755432, 1.197583, 0.000180, 0.270339, 0.559760, 0.091093, -0.958068, 0.497680, 1.529384, -0.919723, -1.789068, 0.821277, 1.786879, 0.830937, 0.365744, -1.024045, 0.396144, 1.451209, -0.177993, 1.148332, -0.754967, -1.498588, 0.878133, 0.255672, -0.929071, -0.174194, -0.241098, 0.216625, -1.421072, 0.258611, -0.006258, 0.001316, -1.967351, -0.911126, 1.642749, -0.194109, 0.446810, -0.511681, -0.366206, -0.894649, -2.520897, -1.271178, -0.061469, 0.525111, -1.054646, -0.477613, -0.037780, 0.264983, -0.670012, 0.193640, 2.239022, 0.782237, 0.093453, 1.217922, -1.125239, 0.186524, -1.217536, 0.387808, 0.651438, 0.228257, 0.493827, -0.857188, -0.422560, -1.046046, 1.994965, 0.955670, 0.277036, -1.562797, 0.263950, 0.649883, -0.358410, 0.036053, -0.464641, -1.852338, -0.067981, -0.286028, -1.326705, 1.640515, -0.624299, -0.191637, -2.227155, 0.815211, -0.207173, -1.084288, 0.814027, 0.043674, -0.340180, -0.587977, -1.414120, 0.365860, 2.202248, -1.857453, 0.345494, -1.445607, 0.042674, 0.928611, -0.789138, -0.041123, -0.806838, 0.408333, 0.711270, -1.676877, 1.006731, -0.741377, 1.658223, 0.589143, -1.066477, 0.018940, -0.587039, -0.708912, 0.363412, -0.062402, -0.180554, 0.908121, -0.222007, 0.698433, -1.838004, 2.588210, -0.701208, -3.094547, 0.113705, 0.340981, 0.351077, -1.757313, 0.042251, -0.747120, -0.598821, -0.767167, -0.981324, -0.265951, -1.473342, -0.744741, 1.115091, 1.427784, 1.449736, -0.561037, 0.856597, -1.670493, 0.383029, -0.470917, 0.260866, 0.738071, 1.077008, -0.441587, -0.558199, -0.738047, 0.844971, 0.085258, 0.286147, 0.000820, -0.986124, 0.186742, -0.669454, -0.438728, 0.791371, 0.523009, 0.797874, -0.641454, -0.438565, 2.624934, -0.907067, 0.218986, 0.752567, 0.201835, -0.356921, -1.209756, -2.072974, -0.269782, -0.906181, -0.723429, -0.913182, 1.081401, 0.366046, -0.514189, 0.866532, -0.002830, -0.438531, 0.114696, 0.534298, -0.514706, 0.073194, 1.388721, -0.035413, 0.719548, 0.579709, 1.387984, -2.423218, -1.576603, -0.732477, 2.100616, 0.570651, 0.738533, -0.543864, -1.255042, -0.655080, 1.399053, 1.169010, -0.504083, 1.312875, 0.408026, -0.409128, 1.085221, 0.851448, -1.116794, 0.983143, -0.560507, -0.303669, 1.019848, 0.018468, -0.780123, -0.954622, -0.399165, -0.048510, 0.355284, 1.066423, -0.664636, -0.814613, -0.955034, -0.086364, 0.584881, -0.723788, -1.248137, 0.296047, -1.910484, -0.965900, 1.701747, 1.668487, -0.118189, 0.422676, -0.846454, -1.045484, 0.343870, -0.447060, 0.292989, -3.203964, -0.327839, -0.434155, 0.874992, 1.161777, -1.142981, -0.792215, 0.152357, -1.935103, -0.573060, -0.429037, -0.155364, -0.638707, -0.349531, 0.166698, -2.132177, 1.008922, 0.327766, -0.561583, -1.204961, -0.112316, -0.738355, -1.066753, 1.036466, 0.970635, -0.270422, -1.670643, 1.391918, 0.317374, 0.375373, -0.015045, 1.008280, 0.670953, -1.171077, -0.595101, -1.363801, 0.356327, 0.073796, 0.544178, -0.537264, 0.712877, -0.976084, 0.080749, 0.174769, -1.004800, -0.152914, -0.740234, 0.239566, 0.462955, -0.133066, 0.491680, 0.348344, 0.686421, -0.072592, -2.053041, 0.307036, -0.035607, -0.246717, 0.801397, 1.787263, 0.131559, 0.658268, -0.457083, 2.907004, 1.559669, -1.232428, 1.958302, -1.127388, -0.366609, 1.465390, -0.153982, 1.393130, 0.120811, -0.454076, -0.333829, 0.216967, 0.459765, 1.119988, 0.727001, 0.473132, 1.994609, -0.910677, -1.239176, 0.857230, -0.747760, -1.601133, 1.279362, 0.014875, -0.179844, -2.320856, 0.956510, -0.352767, -0.206347, -0.872153, 1.218439, -0.017155, 0.025791, -1.473008, 2.048477, 1.054912, -1.111531, -1.165017, -1.164368, 0.932443, -0.044897, 1.022811, -1.594181, 0.989384, 0.501250, -0.589144, -1.352458, -0.268539, 0.049744, 1.325826, -0.062814, 0.336177, 0.055328, 1.848644, -0.833365, 1.594352, 0.027282, 0.289210, 0.047497, 2.022735, 0.717957, 1.995398, -0.195936, 0.707879, 0.633227, 0.706728, -0.231926, 0.156454, -1.090426, 1.174006, 0.361361, 1.231607, 0.316276, -1.048609, 1.149534, -1.185685, -1.035447, 0.027341, -0.932903, -1.118645, 0.230071, -1.587508, 0.320556, 0.262587, -0.539882, 1.216443, 0.208325, 0.845333, 1.121565, 0.192880, -3.140594, -0.418211, 0.417657, 0.604396, -1.241822, -0.710761, -0.536584, 0.075336, -0.186761, 0.511881, -0.177559, -0.480942, 0.169375, -0.371069, -0.627916, -0.362166}, + { 0.143918, 1.209518, 1.415510, -0.205715, -0.936060, -1.237411, -0.550202, 0.353154, -1.200365, 1.122263, 0.051693, -0.242302, -0.423628, 0.457544, -1.246581, 0.056824, -0.501337, -1.175486, -1.992990, 1.536908, -1.326588, 0.369966, 0.888753, -0.370986, -2.471787, 1.719236, 0.214642, 1.686835, -0.614896, -0.971546, 0.843978, -1.383184, 1.441207, 0.613419, -1.833871, 1.638187, -0.534332, -1.698133, -0.572502, -0.189408, -1.674664, 0.625750, 0.734396, -0.836157, 1.706086, 0.513340, -0.701658, -1.403919, 0.266223, -0.062718, 1.810517, 0.228098, 1.830545, -1.476762, 1.306687, 1.103031, 0.535736, -0.657251, 1.088705, -0.459884, -1.079125, 0.280869, -0.242346, -0.240299, 0.698342, 0.648797, -1.159735, -0.234159, 0.979236, 0.506642, 1.702918, 0.677144, 0.560954, 1.171368, -0.347971, -0.902574, 1.580047, 1.084753, -0.054096, 0.806028, -0.511310, -0.799868, -1.636023, 1.932105, 0.223907, -0.891992, 0.042282, -0.392356, -0.768495, 0.126914, -1.136937, 0.882718, 2.173886, -1.358792, 0.968487, -0.341842, -0.539973, 1.378629, 0.365335, 0.271343, -0.068264, 1.730835, 0.478729, -0.465711, -0.027898, -0.203940, -0.003608, 0.280007, -0.189025, 0.476227, 0.834066, 0.038117, -0.070393, -1.541939, -1.693667, 0.973008, 0.464555, -0.318185, -0.404033, -0.063626, -2.232232, 0.114086, 0.356333, 1.004483, -1.832418, 0.465320, 1.570264, -0.366883, -0.463609, -0.788944, 0.015914, -2.478295, 0.570409, 1.439167, 1.545094, -0.722282, -0.104137, 1.477334, 0.776044, -0.401765, 1.417226, -0.054772, -2.109218, 0.498766, -0.746104, -0.754237, 0.523962, -0.534865, -0.711868, 1.287099, -2.812712, -0.388172, -0.958290, -0.049340, 0.039339, 0.069759, 0.270166, 0.481200, -0.216221, -1.089272, 2.103500, -0.105479, 1.080820, -0.010104, 0.752620, 0.629320, 1.407724, 2.823805, -0.083349, 0.390308, 2.006799, 1.829215, -0.620298, -0.285180, -0.496323, -2.107688, -0.781278, 0.420345, 0.128184, -0.248174, 0.246796, -0.489934, 0.502627, -0.047097, -0.467564, -1.481424, 1.808712, 0.401177, 1.625860, 1.393245, -1.362942, 1.661454, 1.332333, -0.696751, -0.196716, 0.096774, 0.024129, -0.138905, -0.645495, 0.497227, 0.259457, 1.249452, -0.478036, 0.997549, 0.261659, 0.195590, 0.570529, 1.352992, 0.418749, -2.513577, -0.062813, 1.950935, -0.285982, 1.124080, -0.297805, -0.366265, 0.617152, -0.680090, -0.791329, 0.353119, 1.280112, -0.272498, 0.772698, 0.545199, -0.262263, -0.511896, 0.043836, 0.760013, 1.099155, -0.894746, -0.402218, -0.303505, -1.390923, 0.582289, -0.262984, -0.352570, 0.206513, -0.715337, -0.119958, 0.734848, 0.252623, -0.907771, -0.270547, -1.466006, -1.062064, -0.000257, -1.590410, 0.534492, 0.354389, -1.255308, 0.141845, 0.411606, 0.042744, 0.438899, 0.432145, -0.393618, 1.632343, -0.119138, -0.462697, -1.693901, 0.214942, 0.013048, 0.677745, -0.059431, 2.389953, -0.518742, -0.332149, 0.905615, -0.032889, -0.809388, 0.362643, 2.089731, 0.518698, -0.933710, 0.980651, 1.069113, -0.621232, 0.762645, 0.861475, 0.193316, 2.363846, -0.181789, 2.246472, 0.036937, 0.715949, 0.216091, 0.303439, 0.542813, 1.152276, -0.204929, 0.151618, -1.560658, -0.853676, 0.442658, -0.333495, 0.329665, 0.134486, -1.939936, 1.357361, 0.603543, -0.221472, 2.120132, 0.164142, -0.095962, 0.993437, 0.693298, -0.962013, -0.654571, 2.396662, -0.384940, -0.336034, -0.728558, -2.115731, -0.109374, 0.254983, -0.104400, -0.512464, 0.212592, -0.774205, 1.446622, 0.863379, 1.015948, -1.241960, -0.311417, 1.105041, 0.607457, 1.796587, 0.968534, -0.728675, 0.879589, -1.026476, 0.681945, -0.893970, -0.846563, -1.386097, 0.481104, -0.298373, 1.235945, -0.714278, 0.057681, -1.265714, 1.026161, -0.258595, 0.215059, 0.433780, 0.030152, 1.322083, -0.313523, 0.661436, 0.574634, 0.062002, 0.448030, -1.351823, -0.342904, -0.899390, -0.833402, -0.862040, 0.286503, -1.596009, 0.185339, -1.228744, -0.152450, -1.264958, -0.438211, -1.699029, 0.611233, -0.207356, -0.153936, -0.971623, 1.650841, -0.663815, -0.001463, 1.006120, -0.724176, 1.397104, -0.385031, -0.873603, 0.211383, -0.235104, 0.929222, -1.606893, 1.195198, 1.390564, 1.376394, 2.098204, -0.906723, 0.976047, -0.690193, -1.349634, -0.111960, -0.838166, 1.232577, 0.919637, -0.303729, -0.397418, 0.429518, 0.729866, -1.931267, -0.145646, 1.260670, -0.208229, 2.540711, 0.491056, 0.784049, 0.716853, 0.918358, -0.600872, 0.501814, 0.820461, 0.524352, 0.976756, 2.045748, -2.222711, -1.123774, -2.081546, 0.974690, 0.518746, 0.383969, 1.239864, -1.661525, 0.022700, 1.527257, -0.353291, -0.567537, -0.017469, 0.944910, 2.294375, 0.633391, 1.017232, -0.228991, 0.192200, 1.263752, 1.009429, 0.028072, -0.481217, -0.472747, -1.361700, 1.005212, -0.706737, -0.513133, -0.284827, 0.251549, -0.011069, -1.922108, 1.862506, 1.080771, -0.777661, -0.772122, 0.657934, 0.862764, -0.397629, 0.713396, -2.084646, 0.597535, -0.234314, 0.174427, -1.272333, 0.121910, 0.144938, 0.720131, -0.576369, 1.027848, -0.150313, -0.415464, -1.326369, 0.423022, -1.877166, -1.212137, -0.937541, 0.182630, 1.056029, 0.356087, -0.505843, 0.115067, -0.961201, 1.755523, 0.101426, -0.425238, 2.520553, 0.587572, 0.349178, 0.500825, -0.588090, -1.049082, 1.396782, -0.335828, -2.316049, 1.318304, -1.005887, -0.254008, 0.683383, 1.599672, 0.034560, -0.430784, -1.242570, -0.456116, 0.469624, -0.639228, 0.649453, -0.586729, 0.969864, -0.222494, -0.271476, 0.551550, -0.183159, -0.980633, -0.098881, 0.108335, -0.560834, 0.054874, -0.838989, 0.361214, -0.330196, 0.580019, -0.027323, -2.657912, 1.404254, -0.693355, -0.489336, 2.060231, 0.887965, 1.127442, -0.693249, -1.873725, -0.056001, 1.895301, -0.727537, -0.908226, 0.386019, 0.186846, -1.116179, -0.406045, -0.433380, 0.844938, 0.581732, -1.597412, 0.004275, 0.343639, -0.872025, -1.765925, -0.013071, -0.963240, -0.142272, -1.763152, 0.071830, 0.695810, -0.613795, 0.846098, -0.586315, 2.437475, -0.998368, 0.217887, 0.361830, -1.314214, -0.895564, 0.023789, -1.806738, -0.878966, -0.280102, -0.358086, -0.751641, -0.372304, -1.919498, -0.068374, -0.641328, -0.093263, 0.443248, -2.281028, 0.372234, 0.047600, -0.300436, 0.409499, -0.154587, 1.105725, 0.213204, -1.581790, 0.202304, 0.022584, 0.430704, 0.315257, 1.327084, -0.676229, -0.660351, 0.572701, -1.569216, -1.618231, 1.628285, 0.345966, 0.599971, -0.323887, 0.595413, 0.092189, -0.426243, -1.522186, 0.215856, 0.683957, -1.714237, -0.507090, -0.180805, -0.003548, -0.284993, 0.030777, 0.218056, 0.870802, -0.341984, 0.893762, 0.659915, -0.063454, -0.384196, -1.008250, 1.221139, 0.185160, -1.581144, 1.307092, 1.238129, -1.433739, 0.433266, -0.071964, 0.508833, 0.081763, -0.827419, 1.452268, -0.190060, -0.557385, 0.034104, -0.108170, -0.461960, -0.232610, -2.454894, 1.049523, 1.396392, 0.372988, 1.789103, 0.695052, 0.673884, -0.010802, 0.489616, -0.521052, 0.523827, 0.682258, 0.582782, 1.253322, -0.417443, 1.110823, -0.416431, 1.098492, -0.867697, -0.045616, 0.076892, -0.805973, -0.785036, 0.368724, -0.379459, 0.939626, -0.462018, 0.821758, -0.693737, -0.448729, 1.220697, -1.297246, -2.077047, -1.337539, 1.464895, -0.607275, -0.982364, 0.070545, 2.344499, 0.520427, 0.207627, -1.502672, 1.238815, 1.813022, 2.026497, -0.704383, 2.309919, -1.071715, 0.147977, 0.340072, -0.082867, 1.210100, 0.283416, 0.903177, -0.111705, 1.187372, 2.902369, 0.160699, 1.492474, 0.935065, 0.256235, -0.875925, 0.416311, 0.427472, -0.016680, -0.190924, 0.336898, -1.218016, -0.293958, 1.242140, -0.684970, 0.298323, 0.353376, -2.102941, -0.668866, 0.077764, 0.376080, -0.542232, -0.353828, 0.433790, -1.662959, -1.770191, -0.762407, 0.348892, 1.327524, 1.224735, 0.787652, 0.325507, -0.950806, 1.652738, 0.150331, -1.022907, -1.179663, 1.667096, 0.503125, -0.054708, 0.577142, 0.049615, 0.078269, 1.179773, 0.278827, -1.584616, 1.104613, -0.726730, 0.822010, 0.846132, 0.682486, -2.378982, 1.412871, 1.371286, -1.503497, -0.621429, 0.343486, 0.869514, -0.763580, 0.063196, -1.331506, -0.872145, -0.589685, 0.869377, -0.627132, -0.096647, 1.075544, -1.148070, 1.280006, -0.090411, -0.076110, 0.872075, 0.021528, -0.713879, -1.633595, 1.551635, -0.580211, -0.222397, -0.774978, -1.497328, 0.668740, 0.183756, -0.979620, -0.250338, 1.108617, -1.055104, -0.198191, 0.393876, -0.964888, 0.990976, 2.007022, -0.790667, 1.565048, -0.027922, 0.311114, 0.454034, 1.232266, 1.681190, -1.048765, 0.863171, -0.141154, -0.120735, 0.086368, 0.164663, -0.032055, 1.088944, -0.817960, 0.551714, -1.044344, -1.529323, -0.657256, 1.413873, 0.011763, 0.618154, 1.725017, 1.397573, -1.000053, 0.227320, -0.662110, 0.918212, -1.637119, -1.068358, 1.723664, -1.057421, -0.020259, 0.254529, -0.465879, -2.277395, -0.014294, -1.506582, 0.055501, 0.334060, 1.220469, 0.168996, -1.874954, 1.555025, -0.776264, -0.841947, 1.214907, -1.277503, -0.229906, -0.325316, 0.047284, -1.065174, 1.422059, 1.370473, 0.161496, 1.117566, -0.516433, -0.823126, 0.720307, -2.176265, -1.456730, 0.399478, 0.153443, -0.231652, -0.889814, 1.125761, 3.337486, -0.812580, 1.513475, 0.347073, -0.517041, 0.457599, 2.543773, -0.676577, -0.661725, 0.519489, -0.125325, -0.461115, -0.028126, 1.710458, 0.863779, 0.053281, -1.373120, 0.046816, -0.052169, -0.170530, 1.939812, 0.843303, 1.586381, 1.687643, -1.155204, -1.093468, -0.125768, -0.679091, -0.746591, 1.520703, -0.441585, 0.630180, 0.560079, -0.604709, 0.889147, -0.697132, 0.214768, -1.058395, 0.629487, -0.134298, -0.614105, 0.688999, -0.937614, -0.049793, -0.472484, -1.140216, -1.491043, 0.660714, -0.011643, -0.794925, -0.785080, 0.460955, 0.583837, -0.362863, 0.762094, -0.410582, 0.967799, -0.789362, -0.816914, 0.847880, 0.242090, 0.526234, 0.299295, -0.783677, -0.383676, -1.031198, 1.446156, -1.050907, -0.738330, -0.452281, 1.029508, 0.098506, 0.294438, -0.519765, 1.167788, 0.583584, 0.047951, 0.388703, 0.474761, 1.140131, -0.305717, -0.732303, 0.303618, -0.053867, -1.327068, -0.986698, 0.725678, -0.493701, 0.755276, -0.186091, -0.026841, -1.437410, 1.191415, 1.280375, -0.263418, 0.046663, 0.589329, 2.056455, 0.176193, 0.020132, -0.264343, -1.067982, 0.442591, -2.012205, 0.212100, -0.715966, 1.622531, 0.891194, -0.430566, 1.575854, -0.681447, 0.975758, 1.461304, 0.471763, -1.521512, -0.747590, -0.113143, -0.962984, -0.454598, 0.469894, -0.816372, 2.305019, 1.109768, 0.499653, 0.507731, 0.797073, -0.670619, -2.103842, -0.378361, 0.096315, -0.186113, 0.353704, 0.731541, 0.912456, -0.226365, 2.475935, -0.947046, -1.215867, 0.944136, -1.263590, -0.325788, 0.212705, -1.481161, 0.425147, -0.240799, -0.894787, -1.315372, 0.588340, 1.164927, -0.137595, -0.635644, 1.273758, -0.697351, -0.342219, 3.102881, 1.345796, 0.134191, 0.248090, 1.791207, 0.789727, -2.943933, 1.219192, 0.858836, -1.307881, -0.049507, -1.782492, -0.272808, 1.634433, 1.078393, 0.191553, 0.959971, 0.148198, 1.350678, 1.034535, -0.796547, -1.385673, 0.637981, 0.145088, 0.308295, -0.865624, 0.212762, -0.868204, -0.998864, 0.170664, 1.130297, -0.723851, -0.347515, 2.647883, 0.362370, -1.870187, 0.332791, 1.916221, 1.634928, 0.280556, -1.200652, 0.364559, 0.825790, -0.924397, 0.392393, 1.486134, 0.562158, -0.724153, 0.383157, 1.402983, -0.449497, 0.250040, 0.491233, 0.978817, -0.614823, -1.266325, 0.275805, 0.110052, 0.009780, -1.369228, 0.862445, 0.002470, 0.319805, -0.381020, 0.196468, -1.267349, -0.388345, 1.337526, -0.380834, 1.679628, 0.825904, 0.435964, -0.430529, 0.368636, -1.526051, -0.133137, 0.316569, 1.188769, -1.034041, 0.442261, -0.833932, 0.726919, 0.444092, 0.021020, -0.180114, 0.691879, -1.276975, 0.779742, 0.560705, 1.497143, 0.820534, -1.050074, 0.976326, 0.829330, -0.749170, 0.440191, 0.052696, -1.297568, 0.389543, -0.305468, -0.475802, 1.882753, 0.690292, -0.829858, -0.793177, 1.153632, -0.606419, 0.738836, 0.138331, -1.588802, 0.596538, 0.576173, 0.721506, -1.873809, 0.620846, 1.030279, 1.397279, 1.467184, -1.979299, 0.206453, 2.100982, 1.052231, -1.041611, 1.370476, 0.119844, -1.215214, -0.362735, 1.641905, -0.235563, 0.335580, 0.008142, 0.506156, -0.102518, 1.561611, -1.659342, -0.470413, -0.953792, 0.621376, -0.357466, 1.727999, 1.385200, -0.988300, -0.771211, 1.932962, -0.001637, 1.854878, -0.434222, -1.308446, 2.165843, 0.759218, -0.186683, 1.168201, 1.201224, 0.808716, -0.228364, 0.686502, 0.749201, -1.014981, 0.693725, -1.151095, 0.791120, 0.841981, -1.314296, 0.223916, -0.485333, -0.776303, 0.845748, -1.570707, 1.229241, -0.320438, 1.503051, 1.582160, 0.018349, -1.270061, -1.105981, -1.095752, 0.638423, 1.095289, 0.915528, -0.993148, -0.247416, 1.440400, -1.027800, 0.379999, 0.768198, -0.609642, -1.873906, 0.847325, 0.781594, 0.439981, 1.410181, -0.228625, -0.682470, 0.341436, 0.962507, -1.456151, 0.515019, -0.974384, 0.057340, -0.847645, -0.253236, -0.571886, -0.669795, -0.705352, -0.341011, 0.672880, 0.461658, 0.104177, 0.246889, -2.279662, -1.214561, 0.038690, 0.623432, -0.758409, 2.829443, 0.043046, 0.925939, -0.619343, -0.080817, 1.717057, 0.426861, 0.377949, 0.524727, -0.363203, -0.190493, -1.111771, -0.570682, -0.804020, 1.652374, 0.646142, 0.360384, 0.606764, -2.267877, -1.578426, 0.634695, -0.039773, -0.675857, -0.408203, 0.790941, -0.414555, -0.791152, -1.447742, -0.101123, 0.694835, -0.235019, -2.014651, -0.544846, 1.644013, -0.579032, -0.376821, -0.792559, -0.534888, -0.528000, 0.485593, 0.726400, 0.219275, -1.606865, -0.637418, -0.194022, 1.938055, -0.230561, -0.392530, -0.029433, -0.079863, 0.030547, -1.690866, 1.021236, 0.330774, -0.849816, -1.200827, 0.018342, 0.952855, -1.847905, -1.157915, 0.385315, 1.523961, 0.189226, 0.284901, -0.236001, -1.128477, -0.257783, 0.733517, 0.906165, -0.186465, 0.330822, -0.100674, 0.227714, 1.047101, 0.402691, 0.178935, -0.479966, -0.972547, 0.085684, 0.280473, -0.680743, -0.956101, -0.067043, -0.043444, -0.423860, -1.431487, 1.785578, -0.403868, 0.135247, 0.177338, 1.266297, -1.419286, -0.019987, -0.600000, 0.376572, 0.395711, 0.547185, -0.851191, -0.810450, 1.620857, 0.198021, -1.340421, -0.169411, -0.181947, 0.829641, 0.347308, -0.139790, 1.043162, 0.414267, -0.185098, -1.125200, 0.767852, 0.486725, 1.362585, 0.075763, 0.591354, 0.410808, -2.174905, 0.546123, 1.098918, -1.846365, 1.125447, -0.394972, 1.009875, 0.493997, -0.034090, -0.358880, -0.164017, 0.497917, -0.836251, 0.274598, 0.892336, 0.292421, -0.523671, -0.476477, 0.366224, 0.297864, -1.293940, 1.572629, 0.218977, -1.208299, -1.468921, -1.005271, -1.315076, 0.050478, 0.000118, 1.472276, -1.779780, -0.487180, -1.989578, -0.175389, -0.114721, -0.340563, -0.786085, 0.229292, -0.389049, 0.231493, 0.460837, 0.280056, -0.805843, -0.578639, -1.268060, 0.870908, 1.022897, 1.444145, -0.611573, -1.557369, 0.000382, -0.685728, 1.060017, 0.324899, 0.666328, 0.608093, -0.640875, -0.431135, 1.740098, 0.213174, 0.311500, -0.648503, -0.411613, 0.814678, 1.005494, 2.068207, -1.827732, -0.214563, -0.387490, 1.629509, -1.224637, 1.646266, 0.218674, 2.009914, 1.692994, 1.331669, -0.635512, 1.679007, -1.288978, -0.777167, 1.117640, 0.772795, 2.818392, -1.129921, 0.012129, 0.359697, -1.113243, 0.187010, -1.637286, -0.985339, -0.231506, 1.687171, 0.632401, -0.187848, 2.037420, -1.028750, 0.879615, -0.820166, -1.137429, 0.709749, -1.735245, -0.364049, 0.081651, 0.434274, -1.594779, -0.090954, -0.520978, 0.414483, 0.847307, -0.179835, -1.248063, 0.523093, -1.133471, -0.052280, -0.572817, -1.477456, -1.484785, 0.765020, 0.198138, -1.604406, 0.105591, 1.091369, 0.985142, -0.489852, 0.641059, 0.278474, 0.783888, 0.264552, -0.516150, -0.404999, 1.012161, -0.052900, 1.064197, -0.234965, -0.703951, -0.616026, -2.164735, -0.826753, 1.519988, 0.264698, -1.721244, -0.782308, -0.744139, 0.903597, -0.642493, 0.965614, -1.225115, -0.935501, -1.780527, 0.156984, -1.093822, 2.617778, -0.456001, 0.256682, -1.975094, -0.351159, -0.945742, -0.756613, -2.432863, 1.322113, 0.796331, 1.773006, -0.321627, 0.221067, 0.930219, 1.083945, -0.831533, 0.772991, 0.111766, 0.238352, -0.416830, 0.104399, 1.332182, -0.403450, -0.040660, -0.151557, -0.738574, 1.098338, -0.077803, 0.170047, -0.023169, -1.855730, -1.286719, -0.671617, 0.276023, 0.258835, 0.450115, 0.348014, 0.138224, 0.678333, -1.175952, -0.118125, -1.281212, 0.219560, -1.396473, -2.031704, 0.169597, -1.558197, -0.507837, -0.341647, -0.411748, -2.353515, -0.823815, 0.547196, 0.152572, 0.941773, -0.132502, 0.353957, -0.374074, 1.933327, -0.693691, 0.097224, 0.384921, 0.614135, 0.836104, 1.748898, -0.556862, 0.541714, 0.539119, 2.504559, -2.247921, -0.144833, 0.715338, 0.244103, -1.194156, 0.315205, -0.195992, -1.109842, -0.681922, 1.305083, 1.632660, 0.174473, 1.081053, -0.697581, -1.249751, 0.064262, -0.079740, -0.641816, 0.423762, 2.282303, 0.504471, 0.481696, -0.143376, 1.618654, -1.241618, -0.821932, -1.071982, -1.552989, -0.430421, 0.053239, -0.150558, 0.357365, -0.941143, 0.324645, -0.219965, -0.320421, -0.306399, -0.162997, -0.043216, -0.299875, -0.190169, -0.175823, 1.598249, 0.302305, 0.531722, 0.529184, -1.227818, -1.263368, 0.910903, -1.352136, 0.414417, -0.691839, 0.184465, -0.709986, -0.817126, -0.850985, -1.500053, 0.064047, 0.552074, -0.493353, 0.334505, 0.476269, -0.839961, -0.324028, -0.504277, -0.341015, 0.280118, -0.217858, 0.011077, 0.053562, -0.829168, 0.944967, -0.945398, -0.370070, -0.793656, -1.054477, 0.072705, -1.163156, 0.096346, 1.211309, 0.372250, -0.013209, -1.186569, -1.223648, -0.069903, 0.143383, -1.102027, 0.174251, 0.185013, 0.444361, 1.877374, 0.124881, 0.265931, 0.313493, -0.380179, 0.528459, -0.294885, 0.020683, 0.268312, 0.686996, -0.822764, 0.356774, -0.104993, -0.147408, -1.873306, -1.028076, 1.286824, 0.752496, -0.374466, 0.579663, -1.304120, -0.392455, -0.526908, 0.394459, -0.613859, -0.091887, 0.903183, -1.109726, 0.675838, -0.085295, 1.051192, -0.016866, 0.326990, 1.263379, -1.585195, -0.661578, 0.620993, 1.378048, 0.475401, 0.177983, -0.971243, 1.099195, -0.763719, -0.048398, 0.487208, 1.164095, -0.527009, -0.600236, 0.266523, -1.329845, -0.185820, -0.587015, 1.197968, 0.483367, 1.180162, 1.000607, -1.666219, 3.592965, 0.005810, 0.103460, -0.379997, -0.804158, -0.762023, 0.487444, 0.012350, -0.381975, 0.854549, 1.102220, -0.791890, 1.011859, 1.422311, -0.201551, 0.430874, 0.706137, -0.621989, -1.431359, -0.541830, -0.109603, -1.803321, 0.599062, 1.082363, -1.727323, 0.581667, -0.388399, -0.387510, -0.268347, 0.230137, -0.211202, 0.728521, 1.242526, -1.079046, 1.062484, 0.359966, -1.226313, 0.739156, 0.030655, -1.765626, -0.149636, 1.459785, 0.762530, -0.492712, 0.218338, -0.135339, 0.563411, -2.098810, 1.348681, 0.722642, -0.685129, 0.189547, -0.143518, 0.698839, -0.304914, 0.224611, -1.772923, 1.202020, 2.585183, -1.160130, 1.122913, -0.426645, -0.959485, 0.223545, 0.251159, -0.225319, -0.424503, -0.476923, -1.237562, 2.097269, 0.966247, 0.458852, 1.176988, -0.595764, 1.428310, 1.377048, 1.064520, 0.944863, -0.471240, -0.127947, -1.572854, 1.865792, 2.083482, 0.670633, 0.104540, -0.397667, 1.997226, -0.106271, -0.608268, -0.870572, 0.072127, 0.986973, -0.416156, -0.653851, 0.074068, -0.019042, -0.986571, -0.018002, -0.983321, -0.613986, 0.560652, 1.261426, -1.042631, -1.747539, 0.745243, -0.133538, -0.379869, 0.216768, 1.195644, 0.405613, 2.045917, 0.365249, -1.354414, -0.376270, -0.006553, 0.362668, -0.904080, 0.747589, 0.198446, -0.538016, 0.881561, -0.310994, -0.343918, 1.244070, 2.000613, -1.600150, 0.647509, -1.256487, 0.701125, 0.246671, 0.108562, 0.922212, -0.804351, -0.850594, 1.013685, 0.900552, 1.270867, 1.563839, 0.907486, -2.005560, 0.442177, -2.103153, -0.044940, -1.520954, -1.306385, -0.792545, 0.958612, 1.956637, 0.949954, -0.245294, 0.129125, 2.445799, 1.646368, 1.013799, -1.098808, -1.164370, 1.533652, 0.686235, 0.792318, -1.574291, 0.198587, 1.505112, -0.704153, 1.539799, -0.786237, 0.742085, 0.436683, 0.952655, -0.080700, 1.385913, 1.776141, 0.391914, -0.014451, -0.578049, 2.047994, 0.561269, -0.209200, -0.783461, -0.469990, -1.229856, -0.210625, 0.115914, 0.830101, 0.725687, -0.299943, 0.116684, -0.784304, -0.806670, -1.978712, -1.180928, 1.131475, 0.542189, 0.256547, 1.075608, -0.195630, -0.542400, -0.789014, -0.324209, -0.859475, 0.649801, -0.767602, -0.998245, 3.291083, -0.527494, -0.194860, -0.520921, -1.045487, 0.578567, 0.303074, 0.681786, -0.293648, 0.594617, -0.808306, 1.320991, 2.622552, 0.048417, -1.228960, -0.263984, -0.414892, 0.007103, -1.335975, 0.422645, -0.267703, -1.172696, -0.158137, 0.394125, -0.697199, -0.335698, -0.193902, 0.383253, 1.800366, 1.100667, -0.642460, 0.154940, -0.475391, 0.409989, -0.232179, 1.574244, 0.375923, 1.598368, 0.781955, 0.104189, -0.937510, 0.304039, -0.513409, 1.284597, -0.048314, -0.997324, -0.424721, 0.696322, -0.595087, -0.249153, -1.799990, 0.073800, -0.644472, 1.315935, -0.818653, -1.500680, -0.083754, -0.280041, 1.310595, 0.254121, 0.209215, -0.619412, 0.337245, 0.014890, 0.228921, 0.478691, -0.438901, -1.667995, -1.456345, 0.409701, 0.424796, 1.148928, -0.062927, 0.970516, -0.227197, 1.446486, -1.698990, -0.483551, -0.950690, -0.506982, -0.560694, -0.677606, -0.956363, 0.242048, -0.935352, 0.847280, 0.736683, -0.501086, 0.445259, -1.219422, -1.543004, -0.060447, -0.742367, -1.057063, 0.902699, -0.905459, -0.559891, -1.946507, 0.207084, -0.074622, -0.042401, -0.658913, -0.519988, -0.076985, 0.081014, 1.171612, -0.979588, 0.023708, -0.252099, 0.461627, 0.960544, -0.503724, -1.777104, 0.280910, 1.165504, -0.506259, -0.172485, -1.143889, 0.913221, -2.011524, -0.512824, -1.680265, -0.525892, 0.094003, 0.815813, -1.150683, -1.011090, 0.178379, -1.070876, 1.490121, -0.552821, -1.201117, 0.882974, -2.115034, -1.575595, -0.387130, 0.439784, 0.539421, -0.055772, 1.364372, 0.861246, 0.344243, 0.259153, -1.255549, 0.400312, -0.616561, -0.979032, 0.412833, -0.004636, -0.343319, -0.716839, -1.208622, 0.475568, 0.527625, -0.047370, 1.400738, -1.619014, -1.203610, -0.555936, 0.103826, 0.440331, -0.136716, -0.610684, 0.802815, 0.894211, -0.471609, 1.063656, 0.543890, 1.560269, 0.597948, 0.538398, 0.291025, 0.607748, -1.218361, -1.394040, 0.880483, -0.743415, -0.494944, -0.763028, 1.347232, 0.202154, -0.503577, 1.650189, 0.619100, 0.679815, 0.017464, -0.379545, 1.285849, -0.634801, 0.586431, 1.363330, -0.465049, -2.353583, -1.368040, -0.110282, -0.763812, -0.534703, -0.080556, -1.277511, -0.192667, 0.773091, 1.558537, -0.072994, 1.244117, -0.292472, -0.099457, -0.572902, 1.330516, 0.284130, 1.109900, -0.011437, -1.822190, 0.696207, 0.287361, 0.134555, 0.730946, 0.693094, 1.278310, 0.603130, -0.502733, -0.298057, -2.120405, -1.252650, -0.585504, -1.697913, -0.153409, -1.381612, -0.355373, -0.419217, -2.147746, 0.437598, 0.071903, -1.250967, 0.888995, -1.279496, -0.524999, 0.847654, 0.540934, 0.988537, 0.220426, -0.248349, 0.702039, -0.373690, -0.292794, 1.251551, -0.136726, -1.349951, -2.006402, 1.952456, -0.426821, 1.660869, -1.662619, -0.426596, 0.329979, -0.925119, 1.086507, 1.247635, 0.759971, 2.748834, -0.230738, -1.384721, -1.122254, -0.456420, 0.376815, 0.136528, 1.334217, -1.259515, -0.380063, 0.847187, -0.507247, 1.168831, -0.899540, 0.364901, -0.565273, -0.762716, -0.390254, -0.313475, -0.480110, -0.124875, 1.051658, -0.815459, 0.616314, -0.816195, -0.149589, -0.196263, -1.823787, -0.747584, 0.604710, -0.635718, 0.838170, 1.318557, 1.380034, 0.030648, 0.189420, 0.103005, -0.202615, 2.178581, 0.144942, 0.288130, 0.428349, -1.358391, 0.895738, 0.288058, -0.148462, -0.762656, -1.249119, -0.999641, -0.825954, -0.045740, -0.876863, 0.081127, 0.180492, -1.070712, 0.069462, 2.499226, 1.208066, -1.089126, -1.153212, -0.633523, 1.041080, 0.179309, -0.044136, -1.243529, 1.406187, -1.471448, -0.501115, 0.395088, 0.172486, 0.509783, 0.077203, 1.388737, 2.525844, -0.136487, -1.234559, 1.299042, -0.846108, 0.774194, 0.968037, 0.215330, -0.469177, 0.401849, -0.263293, -1.531249, -1.588852, 2.390583, -0.819375, -0.286632, -1.405893, 0.265913, 1.948279, -1.763698, -1.313349, -0.196341, 0.746557, -0.197265, 0.385748, -1.354313, 0.445977, 0.218553, -2.012631, -0.414542, 1.017698, -1.847814, 0.242002, -0.195827, 0.482920, -1.964476, 1.842669, -0.301600, -1.450880, -1.458653, 0.743479, -1.936708, 0.315710, -0.631097, 0.434831, 0.012618, 0.566895, 0.888040, -0.426595, -2.086709, -0.582593, 0.331953, 0.191696, 0.202003, -1.453614, -0.118366, -0.988162, 0.655168, -0.067755, -0.601428, 0.210343, -0.526311, 0.093570, 1.624383, 0.533583, -1.011251, -2.975027, -0.197862, 1.731261, -1.455112, -1.351827, -1.005466, 0.775502, -0.274310, -0.834313, 0.026578, -0.923564, -1.162562, -0.438935, 1.310981, -0.844952, -0.639270, -1.005501, -1.157427, 0.799392, 1.471006, 0.587484, 0.762854, 1.430742, 0.190146, 1.277148, 2.050369, 0.392673, -0.155007, 0.168144, -0.552254, -0.926370, -0.612983, -0.457701, 0.578693, 1.110674, 0.425022, 0.229803, 2.166550, -0.245349, 0.044718, 2.327867, -0.755978, 0.735073, 0.691000, -0.372918, 0.559897, -0.227446, 0.126589, 0.138772, 0.441423, 1.871359, -0.049067, 1.158514, 0.573930, 0.132841, 0.210897, -1.937643, 0.819365, -1.493229, 0.140068, 0.358949, 2.188984, -0.014209, 0.028942, -0.271618, -2.212539, -1.036573, 0.832698, 1.260570, 0.243328, -1.764464, -1.089780, -0.308576, -0.940177, -0.517370, -0.356109, 0.271797, -0.370817, 1.200888, -0.961231, 1.697590, 1.183354, 0.966891, 0.447719, -0.575066, -0.140690, 1.753668, -1.293170, -0.835097, 0.519911, -0.871805, -0.818254, -1.142053, -1.029756, -0.453165, 0.744701, 0.428048, 0.517613, 0.413268, -0.412662, -0.416161, 0.077534, -1.844502, -0.210068, 0.960682, 0.722467, 0.722120, 0.356762, 0.579144, 0.844782, -2.218417, 0.292815, 1.243716, 0.190755, 0.296549, 1.637157, 0.489667, 0.492616, 1.724824, -0.446847, 0.040712, 0.703715, 0.807092, 1.300552, 0.101970, -0.082710, -1.083100, -2.629662, 1.190288, 0.248348, -0.408591, 0.569903, -1.923930, -2.354898, -0.460324, -1.052738, -2.032039, 0.284669, 0.221328, -2.382770, 0.412199, -0.057338, 0.932570, 1.713927, 0.616716, 0.678924, -1.007089, -1.855047, 2.245682, -0.797435, 0.366729, -0.537063, -0.278747, 1.156163, -0.211522, 0.030367, 1.655177, -1.306086, 0.293756, -0.001744, 0.283854, -0.159195, 0.688433, -0.859293, 1.593975, -0.914517, 0.430648, 0.605256, -0.041184, 0.861674, -0.042582, 0.363541, 0.902050, -0.289410, 0.194056, -0.653735, 1.456413, -1.652748, 0.524409, 0.774439, -0.507796, -0.218706, 0.783481, 0.239214, -1.056154, -0.843452, -1.439239, 1.113900, 0.882122, -0.924865, 0.627621, -2.506988, -0.658403, 1.062265, -1.683057, 0.442730, 0.274948, 2.348994, -0.765417, 0.776610, 0.241322, 1.128288, 1.515094, -2.085134, 1.049170, -0.605473, -0.140245, -1.321326, -0.045581, 0.855986, -0.443743, -1.354501, 0.388817, 0.095488, 0.261038, 1.011495, -0.314717, 0.029782, -0.038697, 2.136642, 0.014697, -3.011778, 0.173705, 0.146129, -0.845379, -1.288893, 0.848944, 0.605097, 0.152458, 0.974621, 0.765603, 0.771062, -1.775870, -0.678981, -0.176923, -0.686449, 1.898232, -1.020612, -1.354837, -0.043068, -0.300015, 0.154585, 1.755027, -0.426490, -1.267349, -0.268653, -0.287218, -0.186931, 0.547677, 0.648549, 0.466099, 0.503078, 0.317238, 0.244550, 0.796795, 0.902169, 0.387778, 0.662838, 0.099500, -2.226891, 0.597740, 0.715034, -0.633031, -1.679369, 0.543111, -0.257643, -0.828987, 0.312307, 0.596694, -1.297439, -0.802969, -1.838572, 0.200758, 1.614324, 0.775535, 0.505559, 0.778013, -0.509092, -1.135050, -1.178565, 1.338580, 0.237240, 1.010507, 0.570691, 1.146659, -1.472037, 0.828128, 1.012029, -0.465989, 0.402074, -0.416875, -0.131153, -0.679788, 1.259486, 2.123017, 0.080991, -0.609785, -0.022760, 0.680924, -0.799098, -1.604908, -0.864820, -0.567600, 0.097648, 0.827421, 0.196851, 1.194387, -1.823332, 1.136009, -1.352971, 0.931056, 1.025733, 0.996780, -0.300885, 0.749047, 1.874420, -0.216025, 2.865738, -2.151413, -1.571273, -0.657617, 0.502213, -0.324155, 0.821925, -0.090171, 0.288615, 0.513541, 0.168332, -0.484436, -0.030806, -0.323216, 2.515737, -0.768082, -0.584409, 0.118621, -0.963008, -0.133828, -1.249792, -0.131978, -0.531103, 1.225566, 0.918561, 0.668808, -0.101127, 1.508622, 0.606976, -1.378289, -0.452788, 0.041343, 1.316459, 0.160414, 1.701994, 0.551498, -0.483048, 1.251926, -1.526237, -0.736546, 0.754953, -0.817343, 1.015382, -0.031105, 0.370372, -1.199750, 1.627179, -1.657286, -1.168224, -0.244165, 0.160987, -0.112550, 1.019035, 2.280782, -1.871327, -0.524802, 1.821679, -0.685914, 0.062724, 0.257558, -0.676704, 1.419979, 0.651204, -1.068474, -0.052351, 1.203416, -0.652589, 2.327816, -0.660048, 0.692844, 0.793130, 0.158290, -0.585633, -0.087601, 1.173301, -0.290935, 0.040166, 0.542299, -0.582586, 0.271306, 0.122196, 0.665061, -0.779517, -0.718081, -1.877276, -1.252328, 0.360431, -0.955324, -1.978227, 0.803410, -0.178430, -0.959295, 0.630731, -1.279081, 0.192315, -1.903189, -0.675285, 0.309240, -0.541594, -0.056293, 1.776019, -0.894201, 0.056392, 1.404103, 0.113519, 1.104897, -0.443649, 1.219918, 0.353797, -0.501165, 1.113912, 1.278034, -0.871461, 1.172982, 0.596697, -1.548223, 0.313286, -1.333420, -0.430893, 1.573169, -0.253580, 0.267122, -0.075675, -1.109400, -0.277010, -1.027555, -0.433901, 0.033297, -1.141899, 0.648755, 1.568496, 1.162342, -0.543404, 0.400204, -1.257169, -0.629579, -0.571377, 0.805252, -1.225040, 0.934275, -0.578302, -0.638888, -0.206949, 0.495699, 1.793069, 0.501017, 0.776776, 0.585656, 0.573843, 0.149676, -0.200380, -1.574862, 0.346256, 0.339128, -0.278733, -0.165454, 1.829574, 0.196033, 1.282044, 0.130789, 1.727596, 1.790129, 0.659798, 0.716811, 0.683067, -0.346571, 0.242042, 0.860938, 0.485511, 1.276565, -0.919079, -0.862969, 0.183405, 0.152476, 0.260639, -0.173565, 0.512594, 1.375960, -0.396851, -0.363907, -1.641055, -1.822389, 0.039212, 0.164753, 0.116395, -1.774030, -0.323417, -2.230603, -1.179728, 0.202419, 0.876117, 0.793657, 0.788611, -0.763736, 0.385331, -1.549563, -0.499845, -1.011770, -1.517638, 0.468193, -0.087922, -1.224269, -1.178208, 0.620655, 1.900572, -0.532846, 0.170689, 0.848457, -1.394555, 0.201337, 1.128630, 0.196815, -0.035499, -0.033795, -1.607241, 0.260005, 1.942873, 0.747811, 0.431182, -0.930874, -2.030816, -1.885500, -0.883294, -1.315229, -0.025818, -0.418902, -0.132735, 1.010110, 1.156663, 0.072571, -1.051639, -2.090901, -0.328538, 0.114635, 0.008651, -1.125049, 2.466474, -2.917685, 0.142033, 0.624541, -0.703083, -0.477289, 0.011147, -0.192426, -0.526601, -1.148287, -1.278181, -0.204467, 0.548412, 0.015905, 0.571718, 1.646519, 1.344547, -0.624031, -1.397568, -0.246429, 0.510796, 2.391095, -1.335905, 0.536445, 0.380635, 0.770062, 0.257350, 0.433161, 0.568259, 0.424748, -0.897766, -1.044633, 0.239560, -0.902328, 0.781752, -0.465627, 2.061125, 0.820822, -0.518875, -1.257676, 0.012471, -0.245483, -0.865950, 1.924137, -2.220682, 0.438959, -0.703392, -0.032280, -0.619949, -0.591307, -0.358743, -1.207613, -0.569484, 0.006838, 1.575664, -1.596865, 1.020027, 3.073270, 0.222619, -0.458251, 1.803644, -1.981149, -0.206486, 0.611732, -0.247545, 0.020892, -1.118521, 1.372310, -1.083308, 1.166251, -1.587290, 0.532322, 0.046277, 1.646540, 1.197983, 1.695619, 0.730179, -1.827557, 0.878910, 0.644323, -0.346873, 0.053954, -0.504006, -0.331597, -1.512858, -1.540880, -1.150630, 1.236867, -2.611885, 0.733829, 1.598033, -0.823751, -0.150936, -0.162573, 0.682289, 0.457879, 1.494980, 0.572642, 0.551503, -0.000152, 0.327813, -0.229658, 1.122496, 1.376082, -0.616302, 0.546517, 1.918280, 1.781606, 0.034718, -1.993492, -0.692250, -0.241492, 0.530820, 0.235702, 0.481145, -1.984227, 0.364654, 0.135874, 0.292133, -0.104011, 0.679996, 0.751805, 0.040565, -0.487294, -0.065285, -1.540447, -0.336744, -0.748744, -1.238833, -1.685375, -1.168528, 0.276482, 1.191660, 0.892987, -0.786405, 0.062498, 0.351929, 1.982254, -0.168346, -0.130996, 0.485008, -0.156850, 0.420248, -0.239325, 0.566120, 0.467160, -0.382663, 0.212102, -0.343557, -0.672544, -0.869294, 0.816820, -0.178021, 0.344465, 0.092975, -0.417941, -0.180374, 0.703312, 0.181560, 0.257753, 1.029101, 0.158804, 0.233925, -0.968973, -1.988769, -0.099716, 1.106740, 0.135644, 0.181653, -0.957438, 0.608039, -0.096022, -0.800750, -2.378509, 0.404807, -0.566938, -0.750786, -0.464362, -1.428267, 1.457952, -0.079389, -0.700990, -1.147858, -0.091208, 1.321306, -1.806182, -0.080394, 1.529596, 1.466066, -0.605815, -0.769387, -1.386900, -0.769394, 0.555541, -1.459008, 0.859010, 0.736189, 1.352214, -0.072282, 0.552458, 1.679355, 0.220488, 0.680177, -0.557058, -1.079371, 1.756279, -0.337515, 0.858185, 0.347230, 1.037756, 0.868605, 0.893179, 1.515999, -0.350862, 0.109698, -1.271031, -1.546041, -1.970385, 0.463732, 0.494671, -1.669773, 0.236069, -0.271946, 0.498189, 0.246775, 0.922381}, + { 0.913403, -0.295290, 0.086092, 1.005054, 1.725580, -0.133652, 0.342107, 0.357993, -1.589066, -1.048333, 0.238940, -1.376018, 0.188080, -1.612856, -1.934624, -0.467801, 1.277703, -0.948792, 0.674268, 0.123088, 0.316576, 0.237434, 0.979154, -0.574009, -0.795337, -0.240708, -0.113751, 0.081421, 0.008718, -0.347913, -1.123316, 1.777761, 0.883286, 0.590090, 0.171913, -1.182438, 1.350497, -0.361385, 0.017211, 1.504698, 0.313551, -0.844819, -0.618732, -1.577376, 0.061875, 1.193806, 1.537125, -1.725651, -0.242986, -1.837148, 0.931901, -0.073035, 1.073268, 0.077756, -0.756300, -0.829790, -0.974044, -1.524843, 0.713368, 1.474400, 0.910172, 0.446263, 1.585931, 0.679202, -0.658093, 1.826162, -0.009757, -0.232815, 1.243577, 0.091568, -0.167431, -1.431377, 0.030063, -1.932114, 0.316663, -0.944830, 1.162451, -1.131858, 1.491109, 1.691544, -1.329376, 0.139726, -0.804626, -0.022518, -1.044561, 0.420332, -0.743144, -1.822255, -0.437006, 0.400183, -0.317712, 0.693633, -0.564303, -0.098094, 0.760899, -0.110091, 0.403445, -0.315074, 0.066276, 1.978001, 0.437739, 0.995208, 0.282942, -0.233445, 0.073684, 0.410945, 0.387493, -0.173382, -0.985331, 0.575592, 0.679394, -1.915635, -0.500575, 0.799922, -0.200503, -0.149439, 0.762506, 0.649875, 0.194384, -0.425565, 1.513602, -0.583543, -1.442096, 0.553279, 0.256465, -0.683770, 0.798597, 0.662315, -1.552708, -1.651697, -0.261657, 0.028729, -1.660404, 1.625884, -0.622325, 0.314700, 0.095353, 0.081231, 0.293623, -0.206468, 1.204259, 0.358432, -2.016816, -0.265700, 0.478025, -1.895010, -1.461382, 0.785414, -1.590029, -0.082857, -1.039708, 0.250805, 0.874629, -0.080413, 2.482724, 0.172107, 0.792439, 0.187465, -1.579936, -0.794222, -0.636311, -0.889284, -1.921318, -0.657590, 1.778675, -1.843720, 0.325486, 0.043203, -0.713850, -0.728758, -0.968976, 0.727232, -1.064471, 0.878060, -0.008737, 1.160822, -4.114590, -2.042076, -0.611600, 0.127878, -1.159296, -1.170815, 0.117916, -0.272055, 1.234184, -1.810103, -1.356371, -0.376263, -2.450144, 1.233387, -1.217582, -1.679335, 0.457814, 1.050618, -0.544435, -0.368644, -0.232821, 0.043874, 0.935485, 0.454126, -0.906432, -0.304290, -0.159284, 1.410072, -0.236534, -2.195936, 0.789080, -0.632066, 0.486165, 1.460808, -1.166771, -0.242664, 0.770249, 0.891180, 0.852778, 0.752358, 0.833951, 1.350073, 0.604933, -1.119053, -0.316285, 2.170391, -1.073226, -1.425531, 0.811938, 0.054409, -0.976320, 0.114019, 0.460297, 0.913301, -2.035406, -0.970896, 0.731869, 1.361570, -0.797868, 0.169634, 0.462445, 0.358620, -1.109236, -0.403613, 0.209397, -1.120581, 0.164944, 0.411159, -2.269710, -1.255673, -0.666517, 0.536336, 0.995050, 1.141749, 0.019619, -1.227143, 0.278797, 1.348266, -1.650656, -0.183376, 0.281023, -0.662262, -0.604583, 0.302586, -1.789549, -1.043313, 1.654594, -0.282964, 0.249613, -1.353860, 0.972507, 0.514998, -0.460577, 0.081415, 1.438501, 1.162506, 2.461328, -0.342899, -0.099116, 1.703849, -0.799054, 2.250685, 1.002557, 1.032787, 0.366252, -0.088449, 0.578996, 0.309805, 0.080233, 0.034031, -1.366195, -0.889938, -0.942371, -0.715408, -0.073784, -0.614486, -1.335649, 1.281016, 1.416838, -0.793418, -0.183820, 2.226790, -1.275784, -1.301143, 1.175273, -0.645667, -0.094837, -1.158250, -0.176231, -0.563877, -1.035846, -0.530539, 0.461159, 0.791217, 0.132766, -2.418760, 0.059318, 0.267904, 0.566350, 1.005936, -0.034073, 0.214185, 0.054725, -0.173895, -1.022204, 0.593985, -2.160395, -0.791361, -0.835063, -0.063793, 1.239700, 0.004030, 2.958032, 0.050634, -0.426058, -2.227523, -0.748648, 0.845190, 0.981113, -1.794394, -0.652911, 2.441202, -0.200283, -0.847372, 0.230857, -0.958025, 0.390691, -0.494975, 0.606822, 0.236227, 1.278609, 0.504989, -0.348713, -0.768320, -1.662945, 0.738913, -1.376755, -0.720088, 1.546482, 1.591030, 0.769729, 0.568637, 0.230630, 1.194979, 1.088164, -1.099574, 0.892180, -0.036292, -1.117458, -0.308925, 1.214907, 0.240722, -0.204111, -0.333902, -0.299545, 0.202653, -0.827144, -1.210344, -0.584223, -0.527318, -0.713438, 0.553275, -0.154885, 0.821249, -0.650773, 0.268670, -0.610320, 0.917912, 1.157194, 0.768376, 0.161635, -0.141360, -0.893721, -1.227267, 0.715565, -0.738901, -0.359867, 0.205392, -0.916198, -0.206067, 0.791689, -1.651486, -1.188522, 0.612037, -0.572621, 1.337013, 1.317472, -0.536303, -1.465946, 0.732252, -0.775071, -1.521306, -0.707566, 0.200054, -0.926414, -0.193990, 0.938176, 0.753778, 0.133653, -1.589309, -0.230409, -0.818231, 2.010239, -0.541675, 0.645513, -0.577786, 0.219515, 0.316971, 1.299165, 1.183105, 0.476046, 1.353827, -0.547525, -1.224698, 0.179259, 0.737115, -1.128772, -2.165439, -1.049073, 1.585385, 1.247090, -0.453924, 1.617306, -0.702724, -0.171480, 0.062967, 0.106036, 1.561527, 0.251820, -1.065674, -0.309443, 0.452167, 0.307494, 1.753611, 1.577688, -0.735904, -1.224096, -0.611819, -0.387908, -0.739698, -0.704023, 0.006210, -0.727352, 0.742725, -0.705610, -0.237533, 0.670380, -1.012794, -0.690726, 1.418735, -0.466697, 0.052781, -0.175423, -0.421615, 0.346860, 0.023260, 1.570746, -1.280639, -0.467799, 0.225527, 0.704658, -1.811950, 0.252413, 1.139279, -0.461804, 1.275409, 1.531644, 0.795347, 0.580419, 0.745464, 0.858649, 0.676112, 0.131382, -0.684164, -0.191336, 0.379843, -0.087554, 0.820696, 1.686524, -0.113226, -0.008035, 0.548109, -0.147544, -0.631111, 0.597068, -0.065515, 0.349485, 0.842227, -1.377857, -1.018725, 1.181294, -0.497171, 0.902685, 1.457999, -1.685141, -1.146413, 0.237137, -0.471157, 2.239570, -0.841215, 0.537012, 0.105813, 0.419670, 1.262526, -0.825573, -0.319996, 0.514645, 1.022644, -0.245500, 1.401732, 0.137622, 1.096113, -0.386344, 0.135761, 0.515783, -0.303785, 0.042243, 0.648488, 0.231282, -0.385912, -1.805604, 0.169719, -0.084000, 1.922627, 0.880066, 1.794085, -0.012218, -0.369052, 0.169733, 1.229249, 0.546774, -1.153349, -0.162112, -0.395439, -0.799835, -0.934362, 0.379754, 1.143776, -0.854335, -0.465476, -0.129304, 0.194105, -0.479547, -0.172307, 0.570265, 0.144661, 0.897203, 1.067333, -0.171449, 1.230701, -0.521839, -0.529737, 0.148736, -0.717064, 0.291837, -2.632122, 2.647436, 0.708961, 0.428708, -1.842660, -2.135876, 0.965447, -1.783203, 0.710079, 1.166904, -0.408116, 0.488993, 0.106535, 0.763684, -0.171735, 0.221046, -1.703968, -0.563011, -1.429563, -0.650974, -0.876201, 0.635325, 1.594456, 1.123131, -0.734087, -0.333893, 0.165535, -1.229982, 0.088228, -1.286999, -1.878592, -0.665636, 0.949814, 2.002466, 1.301372, -1.208860, 1.186290, -0.315561, -0.784986, -0.783045, -0.160142, 1.492897, -0.139057, -0.220124, 0.086398, -3.372561, 1.073421, 0.171393, 1.089487, 1.343760, 0.672042, 1.825138, -0.476072, 3.042275, -0.315788, 0.815354, 0.595959, -1.188119, -0.762317, -0.880267, 1.719976, 1.014601, 0.659368, 0.335869, -0.243646, 0.610776, -0.996865, -0.471263, 1.047923, 1.439167, 0.520818, 1.570329, -0.068086, -0.646972, 0.401265, -0.225824, -1.905432, 0.372691, 1.056847, 0.362449, -0.395691, 0.290200, 1.286069, 0.419890, -0.215639, -0.948611, 1.051324, -1.628543, -0.178035, -0.641380, 1.323620, -2.443933, 1.262372, -1.519546, -0.798928, -0.805421, -0.123867, 0.872316, -1.505693, 0.574153, 0.017660, -0.349287, -0.639374, -0.200385, -2.029329, -2.302649, -0.783666, 0.654354, -2.658243, 1.251016, -0.106872, -2.195074, 0.155139, -1.320805, -0.207960, -0.989584, 1.087116, -0.688379, 0.405956, -0.359556, -0.555725, 0.420931, -1.102275, -1.355091, 0.153878, -0.316535, -0.095558, -0.299016, 0.775489, 0.141287, -0.204345, -0.118941, 0.039299, -0.485611, -0.592696, -0.994134, 0.094326, -1.561734, 0.167129, 1.455357, 0.639588, 0.663504, 0.356364, -0.145230, 1.663015, -0.951385, -0.645525, 1.364940, -0.239877, 0.756187, -0.262879, 1.380013, 1.571304, 1.042977, -0.316306, -0.016299, -0.584617, 0.130968, 0.769290, -1.686567, -0.884075, 0.127944, 0.804433, 0.297289, 1.242926, 0.949061, 1.883114, -0.112831, 0.105122, 0.102241, 1.948179, 0.021827, 0.589759, 0.136672, -1.136392, -1.032745, 0.051008, -0.380643, -2.210566, -0.699576, 0.380231, 1.438732, -0.270174, -0.383435, -1.272785, 2.043159, -0.870828, -2.338278, -1.844778, 0.746975, -1.230290, -1.002257, -2.078463, 1.853119, -0.910829, -0.270036, -1.715081, -0.338202, -0.614883, -0.425491, -0.735518, 0.633470, 0.297810, -0.360796, -0.122611, -0.608419, -1.504582, 0.355186, -0.399242, -0.590992, -0.652033, -0.552218, 2.013478, -0.698620, -0.189950, -0.818127, -0.764823, 1.078019, 2.396269, -0.299505, 0.696984, -0.808472, 0.190950, -1.212633, 1.043719, 0.602868, -0.089388, 0.061692, 0.824064, -0.348082, -1.172253, 0.142974, 1.221284, -0.318246, -0.069737, -0.451380, 0.493433, 0.311425, -0.827212, 0.315756, 1.180425, -0.589397, 1.388996, -0.732194, 0.942442, 1.578300, -0.379549, 1.172463, 2.034979, -0.405942, -1.561896, 0.784890, 0.548668, -0.220109, -0.243668, -0.079107, -0.645614, -1.801148, 0.620777, 0.017744, 1.159341, -0.184901, -0.670137, 0.551791, -2.393059, 0.317979, 1.178799, 0.422720, 1.431991, 0.638591, -1.123644, 0.832713, -1.074586, 0.449156, 0.129873, 0.795875, -0.964696, 0.728549, -0.286222, 0.714366, 0.837298, 0.498846, 0.128404, -1.170166, -0.420597, 0.472304, -1.232533, 1.454803, 0.230409, 0.082428, 0.624540, -0.464645, -0.000915, 0.218237, 1.222162, -1.074255, 0.687082, 1.180105, -0.132165, -0.095443, 0.203219, 0.781170, 1.306183, -0.226083, 0.682511, 0.620491, -0.813432, -0.302646, 0.946222, 2.840906, 0.028700, 1.533162, -0.037276, -0.239754, 0.400961, 0.624923, -1.481543, 0.647345, -1.516621, -1.841342, -0.542951, 0.599887, -0.890403, -0.630342, 1.803004, -1.111105, 0.753599, -0.379072, -0.848904, -0.882156, -0.887099, -0.494679, 0.189248, 0.890949, 0.498730, -0.412214, 0.441821, -0.456395, 1.671962, -0.077532, -0.549207, 1.112935, 0.418469, 0.547161, 0.467275, 0.060746, 1.100012, 0.376833, 0.577460, 0.343832, -1.308718, 0.732842, -1.251363, -1.595083, 1.503064, 1.999101, -0.382579, -0.304532, -0.091495, 0.475582, -0.381950, 0.187116, 1.152055, -0.748732, 0.188938, 0.488012, 0.225913, 0.129863, 1.541680, 2.369422, -0.637973, 0.055969, 0.411817, -0.667355, -3.527637, -0.984312, -1.048900, 0.202127, 0.819740, -1.334814, -0.070994, -2.014429, 0.361486, 1.130946, -1.602990, 0.000375, -1.476401, -0.935506, -0.353213, 1.010574, -0.942318, 0.950611, 0.764468, 0.695908, -0.623897, -0.458631, 1.035566, -1.608659, -1.857964, 0.698215, -0.010384, 0.651333, 1.090681, 1.635870, -2.248759, 2.289357, 1.205925, 1.089136, 0.065225, -1.380599, -0.387291, -0.513308, -1.740715, -0.773301, -1.163052, -0.939172, 0.082578, -1.920769, -0.092279, 0.460818, -2.234457, 0.375061, 0.277873, 1.579771, -0.894758, 0.176911, 0.798657, -1.262394, -0.318567, -1.264222, 1.332434, -1.653745, 1.659940, -1.865237, -2.056912, 0.077004, -0.578130, -2.308095, -0.302860, 0.624086, 1.000560, 1.467000, -0.104386, -1.291158, -2.436184, 0.490167, -0.329805, -1.290207, 0.136893, -0.151299, 1.218869, 0.778693, 0.088672, -0.370493, -0.177106, 0.175202, -0.231248, 0.515380, -1.190236, -0.334552, 0.021026, -0.995821, -1.295010, -1.116324, 0.811160, -0.870292, -1.672778, -0.593456, 1.443441, 0.446948, 0.452867, 1.664361, -1.341895, 0.240986, -0.436342, 1.704268, -1.324615, 0.945221, -2.050392, 2.912199, 0.494053, 1.687847, -0.013021, 0.127526, 1.051579, 1.388188, 1.653286, 0.440886, 0.346153, -0.194893, -1.179121, 0.080471, -1.478681, -0.124384, 0.185349, 0.042733, 0.608128, 1.920044, -0.333860, -0.033559, 1.288794, 0.568745, -0.601229, -1.724765, -0.158642, -0.753548, 0.411068, 1.313829, -0.555419, 0.642677, -1.193577, 0.321132, -0.413717, 0.821574, -1.962753, -2.132265, -0.524618, -0.433854, 0.165799, 0.927373, 1.492068, 0.537762, 0.649336, 0.569878, -0.321524, 0.967405, 0.338689, -0.238759, 0.496493, -2.441943, 1.996752, 0.991112, 0.039014, -1.018100, -2.082364, -1.607005, -0.071409, -0.580939, 1.907665, -0.776569, 2.208256, 0.017919, 1.100528, 0.517153, -0.090844, 1.060116, 0.569297, -0.304519, -0.067431, -0.889586, 0.614484, -0.205404, 0.189071, 1.549247, 1.650078, -1.481414, 0.481248, 0.282041, -0.191443, 0.505036, -0.090998, -2.091541, -1.710783, 0.663430, 0.355174, 0.762291, -0.143409, 1.294493, 0.015476, 0.759706, 0.367099, 0.018843, -0.728650, 0.670583, -1.792846, 1.239986, 1.203303, -0.531529, -0.255791, -0.000355, -0.248994, -0.679766, -0.087303, -0.690944, 2.031164, -0.139140, 1.190683, 0.300215, 0.467673, 0.691671, -1.315433, 0.189585, -2.325052, 0.156303, -1.952984, 0.537005, -0.923529, -0.775256, -0.539709, 1.403758, 0.260577, 0.661433, 0.145085, -0.384894, -1.017240, -1.627399, -1.203338, -1.201718, 1.885988, -2.356426, 0.494031, -0.420237, 0.051255, 0.092339, 1.825015, 1.059425, -1.181145, 0.569534, -0.023212, 0.204816, -0.298683, -0.974444, -0.688290, 0.131769, 0.659427, -0.830690, 0.460499, 1.831640, -1.254516, 1.366628, 0.113751, 0.077125, 0.213675, 0.830589, 2.167343, -0.330955, -3.130218, 0.898353, 0.787544, -0.905263, 0.298872, -0.001970, 0.610958, 0.342370, 1.357600, -0.695130, -1.377497, -0.888876, 0.208488, 0.177307, 0.531810, 0.133495, -0.944870, 1.062205, -0.090498, -1.051363, 1.793358, 1.033854, -0.542087, 0.731653, 0.571691, -0.330579, -1.357541, -0.478325, 0.933061, 1.731145, 2.090360, -1.411629, 1.028173, 0.493643, -1.119598, 0.216493, -0.073794, -0.309202, -0.424162, -1.916224, 0.228828, -0.258099, -1.626322, 0.916342, 0.847263, -0.955396, 0.028673, -1.430828, -0.202529, -0.238464, 1.353451, 0.943183, -0.178260, 1.037155, -1.494147, 0.800795, 1.586948, -0.692738, -1.992311, -0.014793, 0.378782, 0.298682, 0.681722, 1.348960, -1.024274, 0.803142, 1.416649, 1.359811, 0.275028, 0.949459, -1.038998, -0.352822, -0.162785, -0.111768, -2.208667, -0.120801, 0.785123, -1.899193, 0.742753, -0.435845, 0.503526, -0.850572, -0.920864, -0.937710, 0.115942, -0.065955, -1.682792, -1.768431, -0.286779, 0.189624, 1.275929, -0.183378, -0.987214, -1.360563, 1.742706, 2.509756, -0.027711, 0.573839, 0.787127, -1.858311, 1.299002, -0.128850, -0.610663, 0.843929, -0.062417, 0.863325, -0.085206, -0.351954, 1.739607, -2.504574, -0.896298, 1.701456, -0.050931, -1.881217, 1.616482, -0.482369, -1.394796, -0.041055, -0.859732, 0.325654, 0.524310, -1.166517, 0.432988, 0.207665, -2.117461, -1.600686, 0.613088, -0.332504, 1.597860, -0.365008, 0.175404, -0.417082, 0.982976, 0.675928, -0.171601, -0.481248, 0.560674, -1.444848, 0.788258, -0.402086, 0.011922, -1.333007, 0.326771, 0.249193, 0.574481, -0.352502, 1.395494, -0.461596, 0.822688, -1.617339, 0.058780, 0.652375, -0.360354, -2.080351, 0.952601, -0.837369, -1.335315, -0.582457, -0.725704, -0.736837, -0.891244, 0.576048, 1.019237, -1.325011, 0.508911, 0.730365, 0.043901, -1.410119, -0.079602, -0.143578, -0.217001, 1.783046, -0.833245, 0.684810, -0.460381, 0.605139, 0.303966, 0.920487, 0.865388, 0.871592, 0.868629, 2.036801, 1.348196, 0.713841, 0.456392, 1.632854, -0.644074, -1.069048, 0.181974, 0.374629, -0.405599, -0.316621, -1.517407, 0.046311, -0.522704, 0.146426, -0.819076, 0.534937, -0.681408, -1.548025, 1.521171, -1.032147, 0.120204, -0.157576, -0.330034, -1.335280, 1.551339, 1.018876, -1.583021, 0.728387, -2.541262, 0.760436, 0.788721, -0.114877, -0.337016, -0.531941, 1.012118, 1.881705, -0.392592, 0.260281, -1.752325, -1.128482, 0.148766, -0.099091, 0.353457, -0.996570, -0.161375, 0.528342, -0.303480, 1.929400, 0.799600, 0.573743, -1.254646, 1.702658, -0.134820, 1.186657, -1.662686, -1.583298, -0.874662, -0.209792, -0.291872, 1.698716, 2.325266, 0.521890, -1.472887, 1.142520, -1.312554, -1.397017, 0.260880, 0.705056, 0.134479, 1.996535, -1.591174, 0.374104, -0.885840, -0.385429, -0.964313, 0.489072, -0.065803, -1.330338, -0.914240, -0.857496, -0.109447, -0.927463, 1.819203, -0.155816, 0.454896, 0.712746, -0.417292, 0.311138, 0.197462, 1.205566, 0.648917, -0.755831, -2.616862, -0.163157, 1.237701, -1.230158, -0.016490, -0.637669, 0.465496, 0.001832, -0.143131, 0.705141, -1.023242, -1.268311, 0.381315, 0.841478, 0.293367, -0.782445, -0.756819, 0.592478, 0.364340, 0.918993, -1.262358, 0.664348, 0.304306, -0.560838, 0.027819, -0.366784, 1.045292, 1.412022, 0.708641, 2.108564, 1.287159, 0.591160, -0.302547, -0.585347, -0.585575, 0.006980, -0.903736, -1.349664, -0.700131, 1.001958, -2.518805, 0.167720, 0.657626, 0.312682, -1.384503, -1.132080, 0.485172, -1.407931, -0.835635, -1.141446, 0.963320, -1.220829, 1.045625, -1.488148, -0.229424, -1.416775, 0.733098, -1.353227, 1.484108, -1.001539, 0.399988, -2.312788, 0.141654, 0.279016, 0.359828, 0.291394, 0.436174, 0.740175, 0.788727, 0.075608, 0.218465, 0.818498, 0.410584, -0.552661, 0.464544, 1.005693, -1.013873, 1.999746, -0.424312, -0.732459, 1.196663, -1.775183, -1.129266, -0.998833, -0.431410, -0.776909, 0.006672, 0.562266, 0.140724, -0.197857, 0.331699, 0.422590, 0.568836, 0.671404, -0.136716, 1.271331, 0.079040, 1.413950, 0.556110, -0.669662, -0.350413, -0.076738, -1.461412, 1.384252, -0.121194, 0.574469, 0.639011, 1.118204, 0.995114, 0.641265, 0.132009, 0.411010, 1.086222, -0.787708, 0.313102, 1.534390, -1.489901, -2.595364, 0.374673, -1.182831, 1.544350, -0.136823, -0.698017, -0.607790, -0.563755, 0.230661, -0.114301, -0.618625, 0.049853, 0.206117, 0.702277, 0.671852, 1.904894, -0.743612, 1.052593, 0.355758, 0.996889, -0.787670, -0.141536, -1.666204, 1.784780, -0.360527, -0.111677, -1.495615, 1.082809, 0.239898, -0.442906, -0.235109, 1.110178, -0.822740, -0.133057, 0.435325, 0.472139, 0.638112, -0.340802, 0.829507, 0.482909, -0.061095, -1.193948, -0.046133, -0.298780, -0.203912, 1.019176, -0.566364, -1.467158, 1.190117, 0.443801, -0.460225, 0.907993, 0.467284, -1.487065, 2.425051, 0.981015, -1.344281, 0.481750, 0.065548, -1.250557, -0.678110, 0.384018, 0.040002, 1.665672, 1.390966, 0.847474, -0.019644, -0.443412, -0.284247, 0.408083, 0.861682, 0.143609, 0.200291, -0.091713, -0.220923, -0.438046, -0.060802, 1.797990, 0.516717, 0.216150, 1.730818, 0.534644, -0.813614, 2.036968, -1.081348, 0.101518, 0.595408, 1.428694, -0.681440, -0.633095, -0.067956, 0.637223, 0.314772, -1.136123, -1.453235, -0.999856, -0.636267, -0.154853, -0.132758, -0.524910, -0.413373, -0.533090, -0.009956, 0.585465, -0.025168, 0.372844, -0.852343, -0.710855, -0.161087, -0.106839, 1.096798, -0.139601, 0.519056, 0.296049, 0.392487, -0.405439, 0.147789, 0.193749, 1.401156, -0.734772, -0.107948, 1.605380, 0.104968, -0.422602, -0.777041, 0.097238, -0.786663, 0.257706, -1.290495, 1.498422, -1.034299, 0.637373, -1.815397, -2.048041, 1.175819, -1.321941, 0.003204, 0.571317, -0.020497, 0.647902, 1.045323, -0.633302, -0.303898, -0.756791, -0.535225, 0.257244, -1.160991, -1.097740, 0.821813, -1.143465, 0.367682, 0.736349, -0.594280, -0.104580, 1.026055, 0.917265, -0.204418, 0.307431, 1.100862, -1.032685, 0.513092, -0.127439, -1.795178, 0.110245, -0.171046, -1.159945, 0.138175, 1.005968, 0.451161, -0.365544, -0.237846, -1.096985, 1.616921, -0.057506, 0.480996, 0.073631, -1.042372, 0.257152, -1.713247, -0.451949, -1.209089, 0.080691, -1.942874, 2.342692, 2.698232, -0.873547, -0.849517, 0.041467, 0.769473, 0.882044, -0.388577, 1.141990, -0.269912, -0.659595, 0.952904, 1.648635, -1.364752, -0.389308, -0.998666, -1.255390, -0.910889, -1.814911, -1.248577, 0.409798, 0.430065, 0.204084, -0.257947, -0.882907, -0.606953, -0.364158, -0.116928, -1.727485, 1.094589, -1.583883, 0.275217, 1.427145, -0.785385, -0.479235, -1.862024, -0.665783, 0.583499, 0.571398, -0.418106, -2.161863, -1.477446, 0.530406, -0.969047, -1.540887, 1.313533, 0.393603, 0.739096, 0.122418, -1.559744, 1.223960, 0.458846, 1.578485, 0.517954, -0.684393, -0.125996, -0.763663, -0.327630, -0.473866, -0.816504, -0.202052, -0.295117, 0.518002, -0.557734, 0.457844, 0.830280, -0.635566, 1.040560, -0.777955, -0.173942, 1.855183, -1.757794, 0.421589, -0.055937, 0.884173, -1.334001, 0.421763, 0.273419, -0.168015, 0.605136, 1.488071, -0.275083, 0.379397, 0.403700, -0.061764, 0.339857, 0.504642, 1.650509, -0.345053, -0.261294, 0.597117, -0.351792, 0.304133, -0.279741, 0.102362, -1.167461, 0.766256, 0.764644, 0.433666, -0.345296, -0.624376, 1.427717, 2.154486, -0.143827, 1.928755, 0.031296, 0.182007, 1.531425, 0.252431, -1.038667, -1.353779, -0.404474, -1.818243, 0.484782, 1.430379, -1.886377, 2.537169, 0.064042, -0.699539, 2.435627, 0.790189, -0.551094, 0.598359, -0.559784, 0.011286, -0.724970, 0.774402, 0.064860, 0.331265, -0.131036, -1.218105, 0.321921, 0.302713, 0.000870, 0.414696, 0.762788, 0.205052, 0.701044, 0.153276, 0.286723, 1.738822, -1.576476, 0.825534, -0.356657, -0.320160, 0.306882, -1.225395, 0.791589, 0.308400, 0.903629, 1.263457, -0.329563, -0.560733, -0.568888, 0.500984, 0.324989, 1.538370, 0.302471, 0.056957, 0.788040, -2.308721, 0.352296, -0.180490, 0.558103, 1.132525, 0.872064, -1.893678, -0.395341, -0.418926, 0.379508, 1.203501, -1.386672, 0.040549, -0.624092, 0.842019, -1.006843, -1.550552, -2.426134, -0.378154, -0.098406, -0.035565, 1.493141, 0.644917, -1.433892, 1.209951, 2.090833, 1.332629, 0.070709, 0.290186, -0.118776, 0.518135, -0.726204, -1.063034, 2.350941, 0.692363, -1.412961, 0.764082, -0.046269, 0.905475, -0.187353, 1.153199, -0.069834, 0.254013, -0.922581, -1.785706, -0.561326, -0.226021, 1.481277, 0.056705, -0.792192, -0.787747, -0.310655, -0.487953, -0.266872, -1.206300, -0.309148, 0.171846, -0.270655, 1.219158, -1.363111, 0.166464, 0.114144, 0.478354, 1.160402, 0.469235, -0.653176, 0.808511, 0.285775, -0.212631, 0.293289, 1.425705, 0.576202, -1.441844, 0.426328, 0.543491, 1.350556, -0.158943, 1.055269, -0.198036, -0.351125, -1.079552, -1.893802, 0.432161, -0.133249, 0.302658, -0.351570, -1.234667, -0.626159, -0.664196, 1.037593, 1.155569, -0.522709, -1.077202, 1.002297, 0.585420, -0.217901, 0.198175, 0.318026, 1.768833, -1.058664, 1.492809, -0.302124, -0.421800, -0.678741, 1.878892, -0.774489, 0.755585, -0.106241, 0.904974, -0.504471, -0.829184, 0.555512, 0.585367, -0.191608, 1.262370, -0.277712, 1.431052, -0.508953, -1.756781, -0.001432, 0.495361, 0.342478, -0.805958, 0.946354, 0.186571, 1.636587, -0.219186, -0.406737, -1.108580, 0.139791, -0.493492, 0.347928, -1.138091, 0.741415, -0.353863, -1.019975, 0.595426, -0.611289, 1.147716, -1.071537, 0.350685, -0.640571, 1.872764, 0.735030, 1.654490, 0.034209, 0.850442, 0.765857, -0.620457, -0.015989, 2.013378, -0.022775, 0.099577, -0.697340, -2.879510, 0.372183, 0.243963, -0.043717, -1.029111, 0.336166, 0.127513, 0.019005, -1.102317, 0.491639, 1.571659, 2.176620, -0.012573, 2.280913, 1.064391, -0.324564, 0.832812, 0.078775, 0.020725, -0.159046, -0.028331, 0.715936, -0.096145, 0.579009, 0.053481, -0.164582, 2.100804, 0.972980, 1.361413, 2.197529, -0.816555, -0.157454, -0.318873, 1.079657, -0.314151, 0.054441, 0.222260, 1.165442, -0.298025, 0.144725, 0.784585, 0.199756, -1.003200, 0.888169, 0.654144, 0.934175, 0.103473, -0.640708, 1.178961, -0.304657, 0.887440, 2.279331, 0.453346, 0.603411, -0.531799, 0.130137, -0.565762, -0.134563, 1.156452, -0.288235, -0.852428, -0.194860, 0.777655, 0.334638, -0.437264, 1.376237, -0.992949, -1.716769, -1.366388, -0.315270, -0.490887, -0.127992, 0.841555, -0.251131, 0.671576, 0.302325, 1.012264, 0.123762, -0.127324, -0.968504, -1.480337, -0.746352, -0.531919, 1.302861, 0.831615, -0.182994, 1.218896, -0.080928, 0.723429, -1.217126, -1.356633, 1.432953, -1.152604, 0.106947, 1.471100, -0.181404, -3.568440, -0.316173, 0.435846, -1.916468, -1.512657, 0.009091, 0.426266, 2.402625, 1.567715, 1.496022, -1.168769, 1.047770, 0.179737, -0.348029, -1.098742, -2.063512, 1.027799, 1.780596, 0.612523, -1.574373, 2.524835, -1.374561, -0.778436, -0.957637, -2.054949, 0.145749, 0.175394, 0.505519, 0.977582, 0.345112, -2.037111, -0.927995, -1.212412, 0.223951, -0.989434, -1.294394, 0.242332, -1.101422, 0.008829, 2.642361, 0.601457, 0.511484, 1.104965, -0.740049, 1.032274, 1.521340, 0.418595, 0.186579, -0.254883, 1.787646, -1.254245, 2.032933, 1.517695, -3.545144, 1.183899, -0.270412, 0.487055, 1.166276, -0.438415, -1.514135, -0.554513, -0.617940, -1.687389, -0.227842, 0.106053, 2.023804, -0.363783, -0.996351, 1.135031, 0.936972, 0.565574, -0.095137, 1.578855, 0.446448, -1.758693, -0.473102, 0.426665, 0.593770, 0.236990, -0.408046, 0.421205, 1.228682, 0.012840, -0.083265, 0.476912, 0.923252, -0.467840, 1.300762, -0.556500, -1.642052, 1.630240, -0.708485, -0.633587, -0.762091, -0.508881, 0.398978, 0.447225, -0.830081, 2.413004, -0.451778, 0.526217, 0.909779, 1.075033, 0.831975, 0.446355, 0.287110, -0.845184, -1.169920, 1.174785, -2.768360, 0.957603, 0.324926, -1.586653, -0.290031, -0.083768, 0.382290, 1.231667, 0.136754, 0.297569, 0.574737, -1.223524, 0.300898, -1.867978, 0.650859, -0.201653, 0.144520, 0.749572, -0.326839, 0.139823, 0.148926, -0.838488, -0.730101, -0.449120, -2.092322, -1.563825, 1.270334, -0.294818, 0.328440, 2.064492, 0.804310, -0.095004, -0.131517, -0.188995, -0.716594, -0.249630, -0.399271, 0.062273, 0.197774, 1.688540, 0.560332, 1.966268, 1.862716, 1.274138, 0.853900, -0.409317, 1.301466, -1.221812, 0.588668, 0.512362, 1.194384, 0.354985, -1.861071, 0.853644, -1.465980, 0.553109, -0.618291, 0.463894, -0.929551, -1.479010, 1.760136, -0.877305, 0.483413, -0.574642, 1.050095, -0.762708, -0.920617, 1.307727, -0.324027, 0.306300, -0.430994, -0.632565, -0.319898, -1.390639, 0.527508, 1.719242, 0.060705, 0.347969, 0.894917, -0.202357, -0.230826, -0.811858, 2.757146, -0.234030, 0.955649, -0.304265, 1.015319, -1.160955, 0.469541, 0.508901, 0.670137, -0.957369, 1.033738, -0.481820, 0.869655, 0.535868, -0.018482, -1.741288, 0.293051, -1.637447, 0.388526, -0.228709, 0.372566, 2.362631, -2.146944, -0.713169, 0.592027, 0.787872, -0.162650, 1.708984, 1.409063, -1.025890, 0.841282, 0.405074, 0.801964, -0.327892, -1.275438, 0.926400, 1.357385, -0.073323, -0.485023, 0.021156, 0.243930, 0.091909, -0.068057, 1.403117, 0.467883, 1.400371, 0.805564, 1.889632, -0.118338, 1.764054, -0.736752, -1.122008, -0.377373, 0.009527, -1.623898, 0.836203, -0.363454, -0.640454, -1.875459, -1.092256, -1.441671, 1.558256, -0.750560, -0.373675, 0.865361, 1.234995, 1.125266, 0.395811, -0.022773, 0.197167, 0.007381, 0.923891, -0.831439, 0.226626, -1.099458, -0.926198, -1.339785, -1.544265, 0.580473, -0.285662, 2.265238, -0.139878, 0.789782, 0.579527, 0.168491, 0.422958, 0.186334, 0.372643, -0.812192, -2.483223, -0.916413, 0.259543, -0.433709, 0.727875, -0.208566, 0.240940, -1.575465, -1.074365, -0.254755, 0.045610, 0.746528, 0.374914, 1.528220, -0.341982, -2.043488, 1.321139, -2.265050, 1.655388, 0.682077, 0.991440, -0.027207, 1.412758, 0.151436, 0.369345, -0.590194, -1.095364, -4.028951, 0.159493, -0.166382, -0.298497, -0.057245, -0.620391, 0.338155, 0.659787, -0.863450, -0.429374, -0.414803, -0.156152, -0.683025, -1.155642, 0.950042, -1.293040, -1.672338, 0.717449, -2.059910, 1.487892, -1.812863, 0.278829, -0.120026, -0.717550, -0.731674, 0.433853, -1.116572, -0.840175, 2.280801, 0.609194, -0.992410, 1.731396, -0.473380, 0.932571, -1.212812, -0.081151, 1.184658, 0.611622, -0.938133, 0.275685, -0.481444, 0.541503, -0.432204, -0.232005, 0.614604, -1.562121, -1.478809, 0.076820, -0.402272, -0.762268, -0.013962, -0.380914, -1.118065, -0.343008, -1.202855, -0.710815, 0.398142, 1.036885, 0.041031, -2.082236, 1.602139, 0.876305, -1.633099, -0.288876, 0.916554, -1.215253, 1.698726, -1.858373, -1.112238, -0.450475, 1.107043, 0.388873, -1.135089, -0.927723, 0.999405, 0.014627, 1.744954, -0.238647, -0.972019, 0.559564, 1.442079, -0.196181, 0.891297, -1.127344, -0.902923, 1.016003, -2.524766, -1.043598, 1.100892, 0.217631, 1.653156, -0.422902, -0.076812, 1.116328, -0.349129, 0.877345, -0.715883, 0.722114, -1.184385, -0.439747, 0.143207, -0.267721, -0.091531, -1.265011, -1.159084, -0.788831, -0.468603, -0.421225, 1.402885, 1.165097, 0.864080, -1.194031, -0.895374, -0.461266, 0.254826, 0.973134, 0.038159, -0.167948, -1.066567, 0.435731, 0.768859, 1.089454, -0.147396, -1.752767, 0.413201, 0.120852, -0.228817, -0.547546, 1.313816, 0.883920, 0.198701, -0.954609, 0.892256, 1.188296, -0.127875, 0.281723, -0.730584, -0.515162, -0.576808, -0.669400, 0.747251, 0.922279, -0.451017, -1.312547, 0.488410, -0.015164, -0.630987, 0.244804, -0.023600, -0.110172, -1.688636, -1.099755, -1.264311, 0.605284, -1.047630, -2.270113, -1.160437, 0.188070, 0.929694, 1.638460, -0.407882, 0.553695, -0.133639, -0.752260, 0.000383, 0.027980, 0.374554, -0.805770, 0.326732, -0.811344, -1.801671, -0.882372, -0.308596, -0.745292, 0.369921, -0.389137, -0.139044, -0.982609, 0.673312, 0.709306, 0.836314, 2.148085, -0.919646, 0.987193, -0.713852, 1.128606, 1.217113, -0.448392, -2.102051, -0.990894, -0.444901, 0.141034, -1.249807, -1.233114, 1.871157, 0.213236, -1.498692, 0.977776, 1.237016, 0.619078, -0.648968, -0.534807, 1.062609, -0.941795, 0.570307, 2.201882, -0.750764, 1.029423, 0.593815, -0.183899, -0.391740, 0.691329, -2.525548, 0.075094, -0.541265, 0.199680, -0.548531, 0.365055, 0.991206, 0.809004, 0.578658, 0.060022, -0.096914, 0.296141, -0.135291, 0.710508, 0.197356, 0.245742, -1.228728, -1.098207, -2.686509, -1.169829, 0.597920, -0.632502, -0.139874, -0.400868, -0.011230, 0.599821, 0.382221, 0.048743, -0.525958, 1.026595, 0.601787, 1.415860, 0.129519, 0.708026, 0.435735, -2.330690, -0.389387, 0.776127, 0.584931, 2.257942, -1.515005, -0.511448, 0.303596, 0.595484, 1.656856, -0.771827, -0.994817, 1.422932, 1.332034, -0.149090, -0.265294, -0.397469, 0.379033, 1.694423, 0.447997, -1.570153, -0.089158, -0.086017, -0.967446, 0.067988, 1.695774, 0.701273, 2.164411, 0.463189, 0.903775, 0.511064, -0.401185, 1.571891, -2.644824, 0.016108, -1.617177, 0.322496, 0.000156, -1.160804, -0.139238, 0.773385, -0.098137, 0.260448, -0.053990, 0.698565, 0.577274, -0.294196, -0.941537, -1.247872, -1.111137, -1.100471, 0.323913, 1.138807, 0.514017, -0.239844, 1.716664, 0.955563, 0.086412, 0.091778, 1.886840, -0.134974, -0.412190, -1.321164, -0.014370, 0.441097, -0.275041, 0.776471, 1.532128, 0.009101, 1.068483, -0.324029, 0.726338, -0.363590, -1.251564, -0.151983, -1.621185, 0.603166, 0.472064, -1.021529, -1.300062, 0.117378, -0.221013, 0.826730, 0.258223, -1.540108, -0.299465, 0.389069, 1.826519, 1.375158, -0.610503, -0.640270, -2.128700, -1.361019, 0.304397, 1.268630, 1.982280, 2.374999, -1.582392, -0.859749, 0.202352, -0.311795, -0.123896, 0.191879, 0.058069, 0.558738, 0.520384, 0.004194, -0.602771, 0.142611, -0.054142, -0.357365, 0.969687, 0.361977, -0.196208, 1.106786, -0.627201, -1.801704, -0.782003, 0.155789, 0.041914, 1.272822, -0.090475, -1.188388, -0.233435, -1.427323, 2.346176, -0.142670, -0.266223, 0.008481, 0.723429, -1.186255, -0.008313, -1.798804, 0.570339, 1.121206, -0.364187, 0.054683, 0.422579, -2.383863, 0.265590, 0.846815, 1.370411, 1.080774, -0.085602, -0.474165, 0.257208, 0.617063, -0.582138, 1.476125, 0.650199, -0.733512, -0.556780, 0.028073, 0.408167, -1.229586, 0.676080, -0.981668, -0.143881, -1.260435, -0.672088, -0.400708, -0.762909, 0.841157, 0.584557, 0.514956, 1.394566, 0.871759, 0.435483, 1.880680, 1.308004, -0.430115, 0.690599, 0.741397, 0.758247, 2.519149, 0.634506, -0.317702, -0.560100, 0.300683, 0.412415, -0.188594, 0.221788, 0.763854, 0.138656, -0.309080, -0.223011, -1.008753, 1.995117, -1.077216, 1.147962, -0.118815, -1.661076, 1.628467, 0.283830, -0.556320, 0.478977, 0.191957, 1.100823, 0.210399, 1.011432, -0.092414, 0.659339, -0.723105, -0.415904, -0.033294, -0.897675, -1.369242, -0.355525, -1.128827, -0.753842, -0.125666, 1.182246, -0.477374, 0.802720, -0.339999, 0.507273, -2.108042, 1.246653, -1.355852, -0.072143, 1.443943, 0.960883, 2.195333, 0.602771, -0.970382, 0.647908, 0.128111, 1.487054, 1.909764, 1.827573, -0.343491, -0.326354, 1.239794, -1.149675, -0.388032, 0.474306, 0.931638, -0.165641, 0.302087, -0.050422, -1.193716, -0.732192, 0.660223, -0.639095, -0.872254, 0.949212, 0.575310, 0.867402, 0.522579, 0.407141, -1.567226, -0.792121, 1.232461, -0.077620, -0.046321, 0.421619, 1.094008, 0.829440, 0.212569, 0.523233, 0.873317, -0.599018, -0.787512, 0.913969, -1.591831, 0.360243, 0.088424, -0.626259, -0.550966, -0.004342, 0.285390, -2.558359, -0.298232, -0.596415, -0.584835, -0.399839, 0.145515, 0.553095, -0.391628, -0.534985, 0.407951, 1.708183, 0.883380, 0.049504, -0.461170, -1.496085, 2.129611, 1.130048, -0.381561, 0.184587, -0.020660, -0.257374, 0.792080, -1.234028, 0.520797, 0.656905, 0.857286, 0.021623, 0.608729, 1.949707, -0.081103, -0.291643, -2.045269, 1.410216, -0.762949, -0.374732, 1.181215, 0.858358, -0.084233, -2.348849, 0.000924, 0.376552, -0.658585, -0.636248, -0.728522, 0.990217, -2.061188, -1.423783, -1.120863, 0.137497, 1.061472, 2.002100, 0.309031, 0.922598, -0.642286, 1.010850, 1.215770}, + { 0.506871, -1.028086, 0.333454, -1.819913, -0.932727, -0.734647, 0.436107, -2.435479, -0.102241, -1.142667, 0.344360, 0.493277, 1.356089, -0.638260, 0.525237, 0.191718, -0.384910, -0.100187, -1.245053, 0.817766, 0.073222, -0.900262, -0.809003, 1.168447, -0.341697, 0.110161, 1.084642, -0.207496, 1.277462, -0.495653, 0.506607, -1.644226, 0.101372, 0.951081, 0.714621, -0.213582, 0.416974, 0.267479, -0.558939, 1.162816, 0.595401, 2.163417, 0.128427, -0.988476, -0.779671, 0.651281, 1.248581, 1.208375, 0.783666, -0.518446, 0.918311, -0.837449, 0.817109, -0.848641, -1.517951, -0.653286, 0.857924, -0.550692, 1.739208, 0.525253, 0.876505, 0.053974, 1.003027, -0.348235, 0.432844, 0.330946, -0.872178, 0.193459, 0.873235, -1.114055, -0.474327, -0.350354, 0.564311, 0.702254, 1.388021, -1.034526, -2.131092, -0.179557, -1.019807, -0.863690, 1.087397, -1.333162, 1.035943, 0.232971, 0.235359, 2.487620, -2.392188, -0.491525, 0.057287, 0.111865, 1.159882, -0.291180, -0.610021, -0.926663, -1.293061, 0.457060, -0.210178, 0.146676, 0.055559, -2.348365, -1.118778, -0.561984, 1.968548, -0.924064, -0.277752, 1.962906, -1.413839, -1.280119, 0.365970, 1.126217, -0.818652, 0.293583, -0.429567, -0.800594, -0.613970, -0.435983, -0.518738, 1.398532, 1.074233, 1.203743, 1.224673, -0.073099, 0.472020, 0.866863, 1.174188, -0.365996, -0.328835, -0.838208, 1.231001, -0.977838, -0.924533, 1.105622, 0.119830, 2.386402, 0.014295, 0.259958, 0.578555, -1.384730, 1.941279, 1.256005, -0.582506, 0.528746, 1.083225, 0.345880, 1.191796, -1.093438, 0.416329, -1.044629, 1.157839, 0.190983, -0.535723, 0.315568, 2.768559, 0.229484, 0.530878, -0.070951, -0.472648, -1.314054, 1.251120, 0.065611, -1.787489, 1.533268, -0.143985, -0.083775, 1.695184, 0.781711, 1.401290, -1.462094, -1.498528, 0.818587, 0.232110, -2.752134, 1.074952, -0.265990, 0.027901, -0.326848, -0.266229, 0.394909, 1.286935, 1.903423, 0.856421, -2.996159, 1.053779, -0.133058, -0.417529, 1.325012, 0.829651, -0.157210, 0.483997, 1.605611, -0.363794, 1.154716, 0.907180, 0.689966, 1.813809, 1.167121, -0.880650, -0.829636, -0.610522, 0.666763, -1.207582, -0.502017, -0.035137, -0.252211, 1.918513, -0.735611, -1.137445, -0.018183, -0.072106, 1.910286, -2.254370, -1.206579, -0.390499, 2.195765, -2.016397, 1.479767, 0.373619, -0.207920, -0.121880, 0.800550, 0.960348, 1.111823, -0.144936, -0.561242, -1.075166, 0.575082, 1.688228, -0.554783, 0.056927, -0.242473, 0.998442, 0.757760, -0.598126, 0.219568, 0.291908, -1.253682, -0.315116, -1.430570, -1.295462, 0.981643, -0.911552, 2.184510, 1.388381, 0.680599, -0.128096, 1.229210, -0.296642, 1.051676, -0.737744, 1.661701, -0.158732, 0.233756, 0.642761, -0.014594, -0.125602, -0.113192, -0.259449, -0.128961, 0.041865, -1.263608, -0.275140, -1.805762, -0.974947, 0.689844, -0.093764, 1.393099, 0.139042, -2.776862, 1.327671, -0.891649, -0.306699, -0.056004, 0.371399, 2.118679, 0.756505, 0.530864, 1.945587, -1.016823, -2.678065, 0.886110, 1.478257, -0.021938, 0.670166, 1.511554, 0.257807, 1.080266, 0.085661, 0.475338, 0.619186, -0.784234, 0.244970, -0.633055, -2.021925, -0.157997, 1.498005, 1.403562, -0.525906, -1.365122, 0.090063, -0.523221, 0.406834, -0.196108, 2.293954, 1.449968, 1.096979, 0.221007, -1.271333, -0.299820, -0.156128, -1.472537, 1.473026, 0.429491, 0.361121, -0.837088, 0.827901, 1.341356, -0.269251, 0.523660, -0.229372, -0.742076, -0.908911, 0.166586, -0.635219, -0.251923, 0.621899, -0.033928, 1.182387, 1.154744, -0.155309, 1.106757, -2.055408, 1.394407, 0.949440, -0.802971, 0.922736, 1.729809, -0.354811, 0.069899, -0.206281, -0.291407, 0.229849, -0.760588, -0.617826, -0.919752, -0.052122, -1.800281, 1.319551, 0.099214, 0.530939, 0.406997, -0.507261, 0.650796, -0.846924, 0.672875, 0.776650, 2.675063, -0.376680, -0.388394, 0.350965, 0.933035, 1.701591, 1.521972, 0.895261, 1.050842, 1.440968, -0.574800, -1.059955, 0.975209, 0.989358, -0.342347, -1.632231, 0.677422, -0.553473, 1.199497, -1.325147, -0.592882, 2.101669, -0.454906, -0.908048, 0.248221, -0.159892, -1.605081, 0.325971, 0.324244, 0.084135, -1.540794, -1.990782, 1.635770, 1.414592, -2.063030, -0.327807, 0.347032, 1.708667, -1.981109, -0.820924, 1.699660, -0.257613, 0.418403, 0.583817, 0.591380, 0.369215, -0.062806, -0.486724, 0.112751, -0.210611, 2.228692, -1.228723, 1.476886, 0.394358, -0.494808, 0.179041, -1.474099, -0.265910, -0.107076, 0.634432, 0.116593, 2.213573, 0.133815, 0.198002, -0.228198, -2.432275, 1.383376, 0.584339, 1.779321, 0.515977, -1.095016, -1.850108, 1.844631, 0.886836, 0.043783, -0.809067, 0.340003, 0.760413, 1.594715, 1.620687, -0.382691, -0.692038, 0.153532, 0.306218, -0.175919, 0.594845, -0.098605, 0.362574, 0.457859, 0.079462, 0.611952, -1.281256, -0.281107, -1.356612, 0.209347, -1.704631, -0.444404, 0.149201, 0.185288, 1.238491, 0.644852, 1.037144, 1.294864, 1.172776, 0.236729, -1.648224, 0.121968, 0.464514, 1.458154, -0.361933, -1.028064, -0.584922, 0.681206, 1.354488, 0.330542, 0.371674, 1.762697, -0.392456, -0.351427, 1.375817, 0.229419, 0.401568, 0.607066, -0.147476, -2.140150, 0.940149, 0.180005, -0.204660, -0.061595, 0.853025, -2.095792, 0.374727, -0.670594, -0.586398, -0.352146, -1.959643, -0.130573, 0.188901, -0.050050, -0.245464, -0.100226, -0.336154, 1.337047, -0.022380, -0.206537, -2.316825, 1.811419, -1.213860, -0.086513, 0.907867, 0.504951, 1.552537, 0.731573, 0.359746, -0.295048, -0.319915, -0.956043, 0.231407, -1.471618, 0.879083, -0.517082, 0.989525, -2.106552, -2.004617, 0.579055, -1.063423, -0.687609, -0.487427, 1.725849, 0.215699, 0.331319, 1.364488, 0.023214, 0.939430, 0.313982, -0.172831, 0.551678, -1.424885, 1.575445, 0.611882, -0.573376, 0.021266, -1.169879, -0.910127, -0.116495, -0.836225, -0.886003, -1.668261, 0.232375, 2.032125, -0.784490, -0.185926, 0.415972, 1.294493, -0.842082, 0.493804, 1.545032, 0.017830, -1.348155, 0.019232, -1.079451, -0.432134, 0.337105, 0.069256, 0.795754, -0.913074, 0.800524, -0.690408, -0.932996, 0.439641, -1.472380, -0.830286, 1.298978, -0.143003, 0.394168, -0.027879, -0.594239, -0.554857, -0.489994, 1.941572, -0.843086, 0.317650, 2.585401, -0.616249, -0.323175, 0.143159, -1.212935, -0.945922, 0.702520, 0.129841, -0.157044, -0.278909, 0.774934, -1.450155, 0.500172, 0.919218, -0.918897, 1.549385, -0.876927, -0.522283, 0.621508, -0.950915, 0.498941, 2.595968, -0.439244, 0.792227, 0.563457, 0.974904, 0.630945, 0.231264, -0.316774, -1.000644, -0.165804, 2.867201, -0.038242, 0.198213, -0.137874, 1.900393, 0.581758, -0.416139, 0.042761, -1.273061, 0.320319, -1.478072, -1.566672, 1.625317, 0.921591, -0.442340, -0.594859, 1.362286, -0.595977, 0.842920, -0.838669, -0.030282, 0.682832, 1.626037, -0.571340, -0.072957, -0.143661, 0.424387, -0.954722, -1.810794, 0.852989, 0.453505, 0.494626, -0.293041, 0.106772, 0.367856, 0.659164, 0.049241, 2.415543, 1.293567, -0.259524, 1.171583, 0.963811, -0.538546, 0.582951, 0.080358, 1.011190, 0.234570, -0.906878, -0.385064, 0.284654, -0.563148, 0.841669, 0.052451, -0.471298, 0.625580, 0.413415, 0.639706, -1.003508, -0.841501, -2.666129, -2.569904, -0.054244, 1.332208, -1.322868, -1.716580, 0.480922, -0.346452, 1.401289, 0.168639, -1.664780, 0.097196, 1.241899, -1.171405, 0.307442, -0.046475, -0.200474, 1.518368, 1.661219, 0.709184, 0.076947, 0.309252, -0.112947, 0.857385, -0.773066, 0.251622, -0.293660, -0.150191, 1.066686, -1.313290, -0.380943, 1.175184, -1.119341, -2.330105, 0.091631, 1.811531, 1.816462, 1.323631, -0.248926, 0.519820, -1.497895, -1.427420, -0.894503, 3.141955, -0.782951, 0.720175, 0.297401, -1.202899, 0.403146, 0.268448, -0.440790, 1.277633, -0.404780, -0.922715, -0.315402, 1.040566, 0.284810, -1.648353, 0.310636, -0.515322, 1.432741, -0.203496, 2.212134, 0.541273, 0.799907, -0.881617, 0.498619, -0.852932, -0.606683, -0.412065, -0.174265, 0.525445, 0.735102, 1.053567, 0.856562, -0.699227, -1.290829, 1.154974, 0.098077, -0.317221, -0.044988, -0.478438, -1.559106, 0.478874, 0.842738, 0.990144, 0.204637, 0.069872, -1.196687, -0.336675, -1.453377, 0.959646, -0.453675, -0.953995, -0.792530, 0.179286, 0.456367, -1.993210, 1.252418, 0.996201, 1.040510, 0.256077, 0.048956, -0.061825, -0.508976, 0.110576, -1.091321, 0.366939, -1.964138, 0.288748, -0.010288, -0.052438, -0.657884, -0.591872, -1.722020, 0.106935, 1.274984, -0.731850, -0.977478, 0.834308, -0.218229, -1.657773, 0.391947, 1.512284, 1.293613, 1.391057, -0.229947, -2.463298, -0.697818, 1.620220, -1.891001, -1.342276, -0.916236, -0.287045, 2.447347, -1.608303, -0.632753, -0.701817, -1.046284, 0.835508, 1.410092, -0.806470, -0.654273, -0.312000, 0.018473, 1.503586, -1.450711, -1.484290, -1.073414, 1.732454, 0.057267, -0.586281, -1.847580, -0.792489, 0.167536, -1.171918, 0.846681, 0.773065, 0.157679, -0.092978, -1.494971, 1.379326, -0.940499, 1.205699, -1.481086, 0.506050, 0.971329, -0.124867, -2.097896, 0.931591, 1.240504, 0.373941, -1.255740, -1.290441, -0.503910, -1.802223, 1.098247, -1.060801, 0.490538, 0.666955, -0.550195, -0.652218, -0.416328, 0.873299, -0.155807, -1.088966, -1.060395, -0.813621, -0.890119, 1.854597, 0.201048, -1.145748, -0.842745, -0.754172, 0.280163, 0.670149, -1.529600, 0.845964, 0.776126, 1.751540, 0.929870, -0.916049, 1.418379, -0.711054, 1.211871, 0.820014, -0.275866, 0.529241, -0.499945, 0.889727, 0.330485, -1.385394, -0.624781, 1.727812, 3.236132, 1.263788, 0.821377, 0.517941, -0.747952, -1.103399, 0.149550, -0.411932, -1.044878, 0.896470, -0.982389, -0.235136, -0.076455, 1.380224, 1.285976, -0.677620, -1.571596, 1.031534, -0.920591, 0.670592, -1.957642, 1.024900, -0.227494, -0.360212, 0.587193, -0.668121, -0.419393, 0.383979, -0.056639, 0.308851, -1.047747, 1.170383, -0.520963, 0.553909, 0.582051, -1.079941, 2.551904, -1.720110, 2.643331, -0.247719, 1.161635, -0.216542, 1.761458, -0.034812, -0.536079, 0.237921, -1.414752, -1.301362, 0.417568, 2.041728, 0.660027, 0.545726, -1.126332, 0.560860, 0.585227, 0.801462, -0.431444, 0.118115, -1.832895, -1.315447, -0.575500, 1.294888, 0.409696, 0.459431, 1.627473, -0.705610, 0.918548, 1.310587, 1.117737, 0.876004, -1.538982, -0.005994, 0.611343, -1.045217, -0.046796, -0.083676, 0.059462, -1.695141, -0.462115, -1.011114, 0.053949, 0.818080, 0.086923, -0.357674, 1.588792, 1.154733, 0.354007, -0.482375, -1.001638, 0.347242, -0.820048, -0.995227, -0.365395, 0.028502, 0.741760, -0.500802, 1.051582, 1.328797, -0.409088, 0.250948, -0.241273, -0.058813, 1.290199, 1.573330, -0.307897, 0.593547, 1.267628, 0.479333, 0.345604, 0.158933, 0.480968, -0.131331, 0.819696, -0.724365, 0.271693, 0.740934, 0.201645, 0.422690, 0.549102, -0.194907, 1.745630, 0.481871, -0.068105, 0.640891, -1.529325, -0.582696, -0.199383, -1.016337, -0.795540, -0.889001, -0.159208, -0.568989, -1.718636, -0.676042, -0.738582, -1.321692, 0.361849, -1.310735, -0.208890, 0.410868, -0.887178, 0.099447, -0.764170, 0.039897, -1.117652, -0.800166, 0.655029, -0.930351, 0.168240, -0.106752, -1.621915, 0.817746, -0.248909, 0.386667, -2.155398, 2.413433, -1.077559, -0.980679, -0.980901, -0.220881, 1.029266, -0.053464, 0.278127, -1.489136, 0.085160, 1.144071, -0.040595, 1.110302, 0.306260, 1.092719, -0.904907, 0.425772, 1.542143, 1.568737, 1.742242, 0.236294, -2.103586, 1.186467, -1.336452, -1.704430, -0.264710, 0.956143, -1.277454, 0.909651, -0.709555, 0.441285, -2.492730, 0.578628, -0.039776, 0.932590, 0.342762, 1.017311, -1.949276, 0.902927, 0.806446, -0.767128, 1.004084, 0.523543, 1.647147, 0.481824, -0.513073, 0.197556, -0.799432, 0.778539, -0.598990, 1.147692, -0.676291, -1.341436, -1.129938, 0.149855, -0.500207, -1.425462, -0.915792, -0.997488, 1.412546, -1.360756, 0.420496, 0.531553, 0.579871, 1.475505, -0.647488, 1.249395, -0.113180, 1.187444, 0.718361, -1.315768, -0.642989, 1.813761, 0.252616, 0.703685, -0.096955, 1.039348, 0.280344, -0.055094, 1.657718, -0.938784, 0.172565, 0.067420, 0.789561, -0.633658, 0.509149, 0.281715, 0.089393, 0.855006, -0.724415, 0.879228, -0.787023, -0.184318, -0.109537, 0.358242, -0.286756, -0.050717, 1.765066, 1.884827, 0.101998, 0.224162, -1.903940, -0.986853, 1.109637, 0.398010, 1.863332, -0.787027, 2.025484, 2.446731, 0.319619, 1.063879, -0.947871, 0.849518, -1.517322, -1.093576, 1.846027, 0.387379, -0.733536, 0.482120, -1.820065, -0.074766, 0.099638, 0.431822, -0.588051, -0.059725, -1.470170, 0.542445, -2.095173, -0.412288, -0.490622, -0.020717, 0.754266, -1.085695, -0.027239, -0.000256, -0.141635, 0.051191, -1.285789, -0.026179, 0.930485, 0.342043, -0.500810, -0.397122, -0.123563, 0.369116, 0.358340, 0.400340, 1.155835, 2.169096, -1.972283, -0.305014, -1.458149, -0.428184, -1.232554, -0.204267, 2.251776, 1.058856, -0.007572, 2.085565, 1.271874, 0.395161, 0.545344, -0.272638, 0.502239, -0.465174, -2.652681, 1.612404, 2.123525, 2.777124, -0.455072, 0.673251, -1.416709, 0.618070, -0.437798, -0.926230, -0.746872, 1.535608, 2.212188, 0.331347, 2.924891, -0.192770, 0.603248, -0.256141, -0.187339, -1.137936, 0.948356, -0.330431, 2.454799, -0.510886, -0.497687, 0.322173, 0.287284, -0.079310, 0.750227, -0.084722, -2.814213, 0.164766, 0.678554, 1.249843, 0.186978, 0.405097, 0.446662, 1.532967, 1.719244, -0.415792, 0.552896, 0.499597, -1.112121, 0.296269, -1.678740, 0.177937, 1.875700, 0.460890, 0.274979, 0.237006, 1.640100, 0.250203, -0.925616, -0.308156, -0.133147, 0.179228, -0.407543, -0.548646, 1.004794, -0.183196, -0.013951, 0.000581, -0.284944, -1.678542, -0.703226, -1.326370, -2.487555, 0.394824, 0.910227, 2.095461, -0.701369, -0.641264, 0.882170, 0.751649, -0.176613, 0.232415, -0.512985, -0.137294, -2.181886, -0.191429, -0.500312, 0.480463, -0.406384, 0.784873, 0.790667, -0.790792, -1.044979, -1.223992, -1.360119, 0.770312, 0.133672, -0.598479, -1.481717, -0.302640, 1.508606, -0.960015, 1.860304, 0.588767, 0.261833, 0.127649, -1.229028, 0.062990, -0.669371, 0.254091, 0.597324, -0.521907, -0.210969, -0.213732, -0.302381, -1.999495, 2.120083, -0.143616, -0.549552, -0.336638, -0.007274, -0.404452, 0.372276, 0.783185, 0.754677, -1.840979, -0.145493, -0.374200, 0.601742, -0.878945, 0.528481, -0.199148, 0.390582, 1.160950, 1.456968, -0.143279, 1.509058, 2.154591, 0.910885, 0.151467, -0.953222, 1.432171, -0.068581, 1.677911, 0.201722, 0.225224, -0.025024, 0.004803, 0.414296, -0.224015, -1.830733, 0.703402, -0.521498, -1.002795, -0.137668, -2.482194, 0.496311, 0.619543, -1.870157, -0.178087, 0.770708, 0.156051, 0.308312, -1.246587, -1.880291, 1.272365, 0.455820, 1.347884, 0.372269, -1.626357, 1.395024, -0.059604, 1.363501, -0.380455, -0.109333, -0.093111, 0.837738, 0.572406, -0.691148, -0.913825, 0.180630, 1.637246, 0.854042, 0.070308, -0.400941, 0.569554, -0.022394, 1.708702, 1.163423, -0.926487, -0.548629, 1.106915, 0.126070, -1.102774, 0.735142, -0.090377, 1.252778, 0.583071, 0.430026, 0.712146, 0.898740, 0.934713, -0.761003, 0.827986, -0.403717, 1.472393, 1.115206, -0.431013, -1.113927, 0.207012, 0.793702, -0.112140, 1.782927, 0.083311, -0.674532, 0.836910, 0.893381, 2.285878, 0.407556, 2.638236, 0.133887, 1.704314, 0.631884, -0.436137, 1.009384, -0.220273, 0.428627, -1.281090, 0.258248, -1.312715, 1.677697, -0.003655, -0.077159, 1.091310, 0.218095, 1.335132, 2.203062, 0.031074, 0.219608, -0.406351, -0.138634, -0.894790, 1.217463, -2.464502, -0.449169, 0.765943, 1.738895, 0.503656, 0.806471, 0.947300, 0.751978, -0.947777, -0.779963, -0.042770, 0.153708, 0.263995, 0.574917, 0.240454, 0.048193, -0.153488, 0.995589, -0.473756, -0.891060, 0.324455, -1.332687, 0.796229, -0.649612, -0.560629, 0.439378, -0.454064, -0.305545, 0.972624, 0.976789, -0.169617, 1.229982, 0.296208, -1.374517, 1.927219, 0.536131, -0.437695, 0.505251, 1.491130, 1.868266, 0.460997, -0.420729, -0.336885, 0.628547, 0.329609, 0.853064, -1.465502, 0.641196, 1.004532, -0.398041, 0.725100, 0.921336, 0.724147, -0.449764, 0.547855, 0.994646, 0.181740, -1.043676, 1.128018, 1.018493, -0.814496, 0.535093, -0.973439, -1.348941, 0.784595, -0.850829, 0.165486, 0.701197, 1.171839, 0.322300, -0.513352, 1.180496, -0.256156, 0.146038, 0.287136, 1.320017, 0.209384, 0.459464, -0.514783, -0.061917, -0.165566, -0.337388, -0.488494, -0.323833, -0.498187, -1.132023, 0.630765, -1.375017, -1.528158, -0.631622, 0.353248, 0.278390, -1.728644, 0.967450, 1.915133, 0.008400, 1.120531, 1.148627, 0.283694, -1.218961, 1.191173, 0.313243, 2.628294, 0.014973, -1.578803, 0.510189, -0.459030, 0.417873, 1.328510, 1.001685, 0.435731, 2.473753, 0.342514, -0.196086, 0.075623, -2.500268, 0.869280, -0.308600, -0.850861, 0.496634, -0.803739, 1.857542, -0.715025, -0.460637, -0.145001, 0.260115, -0.536407, -0.110595, -0.336350, 0.714081, -1.563972, 0.607812, -0.225697, -0.862958, -0.800225, 0.533645, -0.972355, 0.837920, 0.966941, 0.370413, 0.885577, -0.974826, -1.263638, 1.061987, -0.552872, -0.619585, 0.648594, 1.505130, -1.654396, 0.686558, -1.649517, 0.311883, -0.501729, -1.694383, -2.224716, 1.287914, -1.110329, 0.400074, -1.341282, 1.511002, 0.302405, -0.203600, -0.247756, -0.541213, -0.478103, 0.763005, 0.571285, 0.348176, 0.190957, -0.609966, 1.132619, -0.056162, -0.629209, -0.665975, -1.649907, -0.019061, -0.804076, -0.740870, -1.081288, -0.581413, 0.146947, -1.049989, 0.851972, -0.684561, 0.309312, 1.450863, 0.534242, -1.257457, 0.163640, -1.321139, 1.871381, 0.204001, 0.225022, -0.006182, -0.871379, -1.544991, 0.345622, -1.048773, 0.332245, 0.709824, 1.047056, -1.737401, 1.776759, 0.686156, 0.452645, -1.342992, -0.653955, -1.555712, 2.745269, -0.672848, 1.377458, -0.581897, 0.767704, -2.187953, -1.319155, 0.263353, -0.938119, 0.671757, -0.070144, -0.265803, 1.457119, -1.071312, -0.250789, 0.885817, -0.010378, 0.295291, -0.266068, -0.077381, 0.935330, 0.406207, 0.974234, -0.241043, 1.084916, -0.653807, 1.761725, -0.885310, -0.344039, -0.633939, -1.319513, -1.490815, 0.854836, 0.108802, 1.546312, 0.975535, -0.937013, -0.794646, -0.600795, 0.801212, 0.592837, 0.283805, 1.205427, 0.754122, -0.563656, -0.293502, 0.155604, -1.031581, 0.154729, -1.222623, -0.103622, -0.625553, 1.045250, -1.131021, 2.464154, 0.937471, -1.266288, -0.188779, -0.275916, -0.497747, -0.127946, -0.709713, -0.599648, 1.025313, 1.191717, -0.613292, -0.334053, 0.689072, 0.021405, -0.426098, -1.287400, -1.174470, -0.955824, -2.391423, -1.559399, 0.986952, 1.247572, -0.582415, 0.457641, 0.403906, 0.564281, -1.600985, -0.247129, 1.996557, 1.701653, 0.111502, -0.687072, -1.600166, 0.846035, -1.001467, 1.884078, 0.227117, 0.535211, 1.351557, -1.621079, 0.597410, 1.692688, 0.285438, -1.731304, -0.564751, -0.458676, -1.435193, -0.423758, -0.507657, -1.468365, -0.090999, -0.767928, -0.333034, -1.404603, -0.445295, 1.214692, -0.663413, -1.544612, 0.476879, -0.713801, 0.787993, 1.315051, 1.674923, -0.696790, 0.653380, 1.209520, 1.809957, 0.145681, 0.866202, -1.198370, -0.738158, 0.197560, 0.564865, 0.829181, -1.157142, 1.475927, 0.122292, -1.119002, -0.549447, 0.362558, 1.420274, -0.315410, -0.413908, 0.089396, 1.315787, 2.040618, -0.570274, -0.995665, -1.415478, 0.149018, 0.812447, -0.451894, 0.088294, 1.773157, 0.506789, -0.768359, -0.539299, 0.918118, 2.742515, 0.246748, -0.319611, 1.392044, -2.421969, -0.800373, 1.661154, 0.276272, -0.980296, -1.387524, 0.505219, -0.066690, -0.265554, 2.174703, 0.184386, -1.066870, -0.477847, -1.485337, -1.160334, 2.134926, -1.108147, -0.375237, 0.675928, -1.354667, 0.333366, 0.499028, -0.264162, 0.071411, 0.895376, 0.109540, -0.587700, 0.424386, -0.485216, 0.339988, 1.186576, -0.710255, 0.268619, 0.069845, 0.257942, 1.135555, -0.025192, 1.194465, -0.771367, -1.110150, 0.524895, -1.592030, 0.319311, -0.801286, 0.856355, -0.378300, -0.909329, -0.279168, -0.224338, 0.643724, -0.746465, -1.286630, 0.331874, 1.984558, -1.038907, 0.240234, 1.425839, 0.336086, 0.702880, -1.689978, -1.613898, -0.185241, -0.091918, 0.355665, 2.165458, 0.030535, 0.260799, 1.165721, 0.802152, -0.179855, 1.475334, -0.753776, -1.268127, -2.253018, -0.014508, 0.231118, -1.091745, 1.708748, 0.356360, 1.737976, -1.762605, -0.727196, 0.464652, -0.712995, 0.756724, 1.541533, -0.625384, -0.701337, -0.589535, -0.879455, 0.457790, 1.933675, 1.397282, 1.279628, 1.300772, 1.314083, -0.613075, 0.931141, 0.309561, -1.774472, 0.318761, 1.524575, -0.626034, -0.492233, -1.701324, 0.875026, 0.342994, -0.236374, 2.670813, 1.826012, 1.016830, -0.000991, 1.344566, -0.794488, 0.702906, -0.022783, 2.516826, -0.179120, -0.689675, -0.195425, 1.208217, 0.888653, -0.924768, 0.527770, 0.325938, 0.029111, 0.155565, -0.010599, 1.916196, -2.021047, 1.168798, -0.543831, 0.575642, 0.583487, -0.779686, -0.006324, 0.280509, 0.910827, 1.495097, 0.155135, -0.710840, 0.643256, -0.733887, -1.491193, -2.241921, -0.657447, 0.471319, 0.622343, -0.301092, -0.365548, -0.111016, -1.228983, 0.768110, 0.079455, -0.428603, -1.494595, -1.007126, -0.695683, -0.629224, -0.483811, 1.317885, -0.667013, -2.072384, -0.789599, -0.289670, 0.539358, -0.276089, -0.245423, -0.797629, -0.748536, 1.538998, 0.456474, 0.109480, 0.700305, 0.209454, -1.753698, -0.199737, 0.366180, -0.141180, -2.086135, 0.409999, 0.092900, 0.577046, 0.080824, 0.447036, 0.181249, 0.275332, 0.732036, 0.331610, -0.085078, -0.902146, 0.011851, 0.537836, -0.713226, 0.105185, -0.499172, 0.994670, -0.615682, -1.233502, -0.808508, -1.370478, 0.946874, 0.237686, -0.347345, -0.751645, 0.218581, 0.476560, -0.802249, 0.334654, -0.358024, -0.122794, -0.084316, 1.728971, -0.263379, 1.042413, -1.412475, 0.458972, 0.332932, 0.274856, 0.483925, -0.633042, -0.724539, 0.219797, 1.277416, -1.470168, 0.874251, -1.556984, 0.218211, -1.117856, 0.366932, 0.597500, 0.794865, 1.719607, -0.867824, 0.431786, -1.498545, 0.635509, 1.030200, -0.342009, -0.736825, -2.026460, -0.855395, -0.620872, -1.208344, -1.456857, -0.530180, 0.273012, 1.059494, -0.019405, -0.816723, 1.057766, -0.089720, -0.892084, 0.480461, -0.001814, -1.169565, -1.996294, 0.051384, -0.269828, 0.400033, -1.093477, 0.844433, -0.317918, 0.872635, 0.624898, 1.334590, 0.883614, -1.644275, 0.997656, 2.814571, -0.139504, 0.249623, -0.642635, -2.105332, 0.742291, -0.229777, 0.235703, 0.183855, -1.449033, 0.537369, 0.890137, 1.986003, 1.635879, 1.533882, -1.177689, 0.306512, -0.172724, -2.235410, 0.258579, 1.515709, 0.480840, -0.518566, -0.997434, 0.449247, 1.774214, 0.033595, 0.113604, -0.787320, 1.067512, 0.534114, 0.391503, 1.377359, 1.533713, 0.237806, -0.580997, 0.262743, -2.688823, -1.181593, 0.317966, 1.056735, -0.265381, -0.845975, 0.705788, -1.476477, 0.104007, -0.061571, 0.132525, 1.172665, -0.403183, -0.676646, 0.961702, -0.504385, -1.199482, 0.293052, -0.596697, -1.245085, 1.474648, -0.764356, 0.640714, -0.150225, -0.493172, 0.582959, 0.331081, 1.338902, 1.647818, 0.130065, 0.460612, 1.262606, 1.728806, -2.861237, -2.247664, 0.148536, -0.232905, -0.051161, -0.610389, -0.539013, 0.051441, 0.604580, -0.371963, -2.230177, 0.563327, -0.625428, 0.604905, 1.205526, -0.422607, 0.116579, 0.220437, -0.406820, -1.209645, 0.217361, 0.172896, -0.446617, -1.318840, 0.891240, -0.333473, -0.160212, 0.867340, -1.056876, 0.264609, -0.260226, -0.964260, -0.347383, -1.520069, 0.267511, -0.101279, -2.250854, 0.503038, -1.270890, 2.420293, -0.269200, 1.013116, -0.385248, 0.716852, -1.288336, 0.049615, 0.549253, 0.204417, 1.523709, 1.415952, -1.213428, 0.046334, 0.498685, 1.607935, -0.107502, -0.012489, 1.113093, -1.262372, 0.635310, 1.079105, -1.272005, -0.390408, -1.666804, 0.459862, 1.971103, -1.087889, -0.921188, -2.152943, 1.172582, -1.627422, 1.494756, -0.466420, -0.919285, -0.012257, 1.503815, 1.129391, 0.366269, 0.097845, 1.788218, 0.024079, 0.533088, -0.253594, 0.691081, -0.403347, -0.241545, -1.386020, 1.119385, 2.332255, 0.026364, -0.694972, -0.534860, 0.557126, 1.070677, 0.143742, 1.162118, -0.373626, 0.675855, 1.296753, 1.222787, -0.417039, 1.794739, -1.131771, 0.251165, -0.153850, 0.679615, -0.592602, 0.967419, -0.825761, 1.026805, 1.314102, -0.147767, 0.933058, -0.750476, -0.607121, 0.158971, 0.819274, 0.886966, -0.489672, -0.762964, -0.556662, 0.249269, -1.189935, 0.149237, 0.794543, 1.539583, 1.117802, 1.493570, 0.081249, -0.688845, 1.236806, -0.136323, -0.642509, 0.791909, -0.316187, -1.486396, -0.286044, 0.601812, 1.020883, 0.483257, -0.498491, 1.510354, -0.846811, 1.463543, 0.816403, -0.128102, 1.293291, -0.892125, 0.065162, 0.800300, -0.230737, -0.843545, 1.281737, -1.595139, -0.252319, -0.777570, 1.140861, -0.984396, -0.267249, 2.108263, -1.003959, -0.513135, 1.075903, 0.091835, -2.677899, -1.111084, 1.194312, 1.320407, -0.328568, -0.667354, 0.376435, -1.547423, -0.539298, -0.371540, -1.739619, 0.206203, -1.633796, 0.340958, -0.144559, 1.320986, -0.504530, 0.131376, -0.045478, -0.016382, -0.656809, 0.399018, -0.673054, 1.411125, 0.066629, 1.119156, 1.223984, -1.243670, 0.624111, 0.162919, 1.506701, 0.369993, -0.651917, -0.536100, 0.122017, 0.315836, 0.223999, -0.441284, 0.702756, 3.399359, -0.937984, -1.277279, -0.320646, 1.110265, 1.352486, 0.392803, -0.217718, 0.592121, -2.828296, -1.273913, 1.010857, 0.803452, 0.362336, 0.744039, 1.513910, -0.123968, -0.478849, 1.216170, -0.834086, -0.520943, 0.476857, -1.432903, -0.264333, 0.174768, -0.130957, -2.319249, 0.018810, -0.472043, -0.714302, 0.483415, 0.948798, -1.954869, 1.905223, -0.789518, -0.756109, 0.944602, 0.015665, 2.361336, 0.824000, 0.235085, 2.874695, 1.586301, -0.351636, 0.008695, 0.187248, -0.778460, 0.367337, -0.801179, -0.846551, 0.192538, 0.475482, -1.701226, 0.024326, -1.082116, 0.599711, -1.787788, 0.474537, -0.176982, -1.006472, 2.020376, -0.565137, 0.181229, 0.233631, -1.479626, -0.121306, 0.485107, -2.170983, -0.936832, 1.271556, 0.824126, 1.162649, -0.526079, 0.397148, 0.041766, 0.058662, 0.841343, 0.150001, 0.412063, -0.437563, -0.290072, 0.534768, -0.293810, 1.005391, 0.820057, 0.205259, 1.501838, 0.402394, -0.902669, -1.947405, 1.195238, -0.691564, -0.583608, 0.292778, 1.341641, 0.307124, -1.195522, 0.928294, 0.110196, -1.008178, -1.924284, 0.571656, 0.931630, -0.609255, 0.409721, 0.062547, -0.719543, -1.481461, -0.142414, -0.189412, -0.292694, -0.349087, -1.150324, 0.239773, -0.818704, 0.143214, 0.797478, -0.667021, -0.827515, -1.675469, 1.087868, -1.474185, 0.067507, -0.537100, -1.716275, -0.812033, 1.563121, -0.580177, 1.211277, -0.024871, -0.319198, -1.714087, 0.175352, -1.221683, 2.118346, -0.705239, -0.404739, -1.947605, -1.148222, -0.461689, -0.607428, -1.339699, -1.007118, -0.750962, -0.454246, -0.112804, 1.257235, 1.102586, -0.644324, 2.078511, -0.003431, 0.365301, 1.759221, 1.043148, -0.073328, -1.107175, 0.328991, -1.366089, 0.045647, 0.382893, 0.785101, -0.356169, -0.765107, -0.312606, 0.625214, 0.040221, -1.520915, 0.296356, 0.448759, -0.630433, 1.359117, -0.246462, -0.028595, -1.366253, 0.938096, -0.311617, 0.684739, 0.038732, -0.011837, 2.324516, 0.082977, 0.442350, -0.240775, -0.859987, -0.319721, -0.588970, -0.483831, -0.263322, -0.336983, 0.124937, 0.052341, 1.341358, -1.459795, -2.099358, -0.610480, 0.809997, 1.111102, 0.125458, 0.185947, 1.712147, 0.946655, 0.195306, 1.663208, -0.812384, 1.375934, -0.135452, -0.008247, -0.434778, -0.350705, -0.268835, -1.639927, -1.125024, -1.417332, -0.585967, -0.314052, -0.923774, 0.318371, 0.386757, -0.352994, 0.717880, -0.523875, 0.766112, -1.422297, -1.619022, 0.069192, -1.315972, -0.617964, -1.323193, 2.456321, -0.972811, -0.273706, -1.839287, -0.231148, 0.269941, -0.324045, -0.452531, 0.878415, 0.161730, 0.956676, -1.621601, 0.201484, -0.973074, -0.727023, -0.917278, -1.511942, 1.427847, 0.478701, 1.241028, -1.418374, 1.776652, 1.233867, -0.164416, -2.178570, -0.195001, 0.697629, -1.774063, -1.836039, 0.457045, 1.326695, 0.011643, -0.354881, -0.411363, -0.163280, 1.450767, -0.431097, 1.132592, 0.343753, 1.120846, 0.077151, -1.794622, -0.619901, 1.281413, -0.418432, 0.201495, 0.633136, 2.338012, 0.591667, 2.086289, -0.824611, -0.339316, 0.584931, -1.341490, -0.081706, 1.083835, 0.554222, -1.156499, 1.427610, 0.082780, -0.915099, -0.745243, -0.032628, -0.677012, -1.078401, -1.678155, 1.131563, 0.161781, -0.432355, 0.363152, -0.060627, 1.408744, 0.150847, -0.600754, 0.743023, 0.635570, -0.001342, 0.329122, -0.173368, -0.292805, 0.245684, -0.680523, 1.851528, 0.029777, -1.657625, -1.398327, 0.180173, -0.077970, -0.241042, -2.196875, 0.029724, -0.326221, -0.210451, 0.360744, -0.106676, 1.697662, -0.808074, -0.982597, 2.129099, -0.547203, 0.383010, -0.659713, 0.285108, -0.322815, -1.110508, 0.838579, -0.169701, -0.026920, -0.642277, 2.522694, -1.711465, -0.343259, 0.651668, -0.497310, 1.260940, 0.374315, -0.760889, -0.711834, -0.567988, -0.992907, -0.559066, 1.697468, 0.332616, 1.024768, 0.550566, 1.224745, -0.654200, 2.032773, 0.082563, -1.295397, -1.051432, 0.567468, -2.107276, -1.400129, -1.008241, -0.105041, 0.733549, -0.317511, -0.321361, -0.107378, 1.738176, -0.415773, -0.235396, 0.276437, -0.401816, -0.484924, 1.966882, 0.317909, -0.529905, 0.267830, -0.458091, 0.483079, -0.192916, 1.227695, -1.093794, 0.906393, -0.865770, -1.496917, 0.956625, -1.373152, -0.215082, 0.231005, 0.709967, -1.166990, 0.855483, 0.534399, 0.172511, -0.036255, 0.609297, -0.912030, 0.657148, 0.980654, 0.018551, 0.557849, 0.550249, 0.042714, 1.107041, 0.664145, -0.691010, 0.059476, 0.687923, -0.605355, 0.129882, 1.175040, -0.190449, 1.057329, -0.379636, -1.658650, -2.028174, -1.327957, -0.030442, -0.385998, -2.905207, -1.043786, -0.387258, -1.424118, 0.741109, 0.689532, -0.656806, 1.157464, 1.537871, 0.623958, -0.592050, 0.230121, -1.103302, 0.089339, 0.432980, 2.284280, 1.034716, -0.076819, 0.744677, 0.326310, 0.202031, 1.039770, 0.512596, -0.523637, -0.109553, -0.768347, 1.166721, 0.262571, -0.078743, 0.469324, 0.925129, -1.099557, 1.230837, -0.414925, 1.048999, -1.785126, -0.073170, -1.055125, -1.277047, -0.744703, -0.535291, 0.433479, 0.717865, 0.264718, 2.387341, 1.607247, -1.267971, -0.921362, -1.426878, 0.066004, 0.187551, -0.766656, -0.593011, -0.747655, 1.040539, -0.592087, 2.084353, 1.174902, -0.705021, 0.532277, -1.003524, 0.191509, -0.847932, -0.346876, 0.561315, -0.429310, 0.993986, 0.769355, -1.023120, -0.952315, 1.878818, -0.020951, -0.476551, -0.067435, 0.398025, -0.616951, 0.932660, 0.746036, -1.728409, -0.388349, 0.061211, -0.171022, 1.860426, -1.147508, 1.432770, 1.151326, 0.449021, 0.129542, 1.078047, 0.985745, -1.006536, -0.709188, -0.006087, -0.069743, -0.654086, -0.101824, -0.527980, 0.236388, -0.545744, -0.278505, 1.732982, 0.654190, -0.548465, -1.169641, -0.909830, -1.139532, -1.294405, 0.410543, 0.978736, -1.443742, 0.379763, -0.006065, -0.577878, 0.368109, -1.466094, 0.610852, 0.470614, -0.147005, 3.206289, -0.405871, 2.097315, -0.060147, -1.276298, -0.560039, 0.256024, 0.152755, -0.340687, -0.325523, 0.132116, -0.499273, -0.576767, 0.890889, -2.108584, -0.088569, -0.674214, 0.927033, -0.245145, 0.995695, -0.023889, -0.139383, -1.062445, -1.211801, 0.870238, 0.028575, 0.063234, 1.353849, 0.022134, 1.651862, 0.213931, 0.062244, -0.759874, -0.966781, 1.090717, -0.621585, 0.528606, 1.942844, -0.819251, 0.065602, -0.532211, -0.387889, 0.449216, 0.096665, -0.501901, 0.131407, 0.240525, -1.033219, -0.055638, 0.869617, -0.187925, 2.207625, 0.306278, 0.847202, 0.206908, 1.009583, 0.084580, -0.012668, -1.033329, -0.148545, 0.618870, 0.399428, -0.924602, -0.559469, 1.652509, -0.783998, -1.375497, -0.155683, 0.228549, 0.488797, -1.157642, -0.763601, -1.153309, 0.353518, -1.743940, 2.141547, 1.027402, -2.250444, -0.762393, -0.172657, 0.256640, 0.251934, -1.478273, -0.556554, 1.185991, -1.174300, 1.121918, 0.362458, 0.205066, -1.068521, -0.153926, -1.456109, 0.027802, 0.027177, 1.813897, 1.802821, -0.009907, 1.011838, 0.308289, 2.702428, 1.196861, -1.238380, 0.320980, -0.157653, -0.421377, 0.082636, -0.273268, -1.626294, 1.041722, 0.068328, 0.396877, -1.190137, 0.875380, -0.307799, -1.115998, -0.977425, 0.182764, -0.202348, 1.528468, 1.751493, -2.430546, -0.241253, 0.038598, -0.467628, 0.551568, -1.215156, -0.677621, -0.721341, 1.425326, 0.749313, -1.626045, 0.374403, 0.681429, 1.033166, -2.205969, -0.190492, -0.141536, 1.628953, -0.321825, 1.530588, 0.462488, -1.938315, 0.933523, 0.986000, 1.365227, -0.758421, 0.256652, -1.623406, -0.185373, 1.156479, 0.061563, 0.127256, 1.275467, -0.010870, 0.530133, -0.219159, -0.688762, 0.012882, -0.710524, -0.273936, 1.142749, 0.633708, -0.739569, -1.094733, -0.207656, 0.735874, -0.143747, -0.553577, -1.494831, -0.721280, 1.377119, 1.355121, 0.540618, -0.667525, 1.260628, 0.724238, -0.912280, 1.434365, 0.411682, 2.308520, 1.800172, 0.093727, -0.475210, -1.738169, 0.491769, -0.167128, 1.664286, -0.779238, 3.895680, 2.018933}, + { 0.369689, -1.453203, -0.084053, -1.002592, 0.326842, -0.440155, 0.567610, -1.035517, -0.302129, -1.156545, 0.710368, 0.572679, 0.885492, -1.743570, 0.795580, -1.307853, 1.321114, -0.786144, 0.537529, -0.516815, 0.538087, 0.602819, -0.975910, 0.228100, -0.969746, -0.928184, -1.092438, 0.875759, 0.501662, -1.771648, 0.055292, -0.512473, -2.446271, 0.530254, 0.227196, 0.151845, -0.449478, -0.177817, 0.214641, 1.499790, 0.340742, 0.684597, -1.554874, 0.240645, -0.102351, 2.457285, 1.096147, -0.856053, 1.101331, 0.716102, 0.094902, -0.477282, -0.395248, -1.171082, -2.174341, -0.737518, -1.428781, 0.333930, -0.695825, 0.521078, -1.043650, 0.956063, 0.254790, -0.402749, -1.005517, 0.288685, -0.275279, 0.724000, 1.223699, 0.716951, 0.656162, -1.087510, 0.393052, -1.563124, 0.818448, 0.390672, 0.534776, 0.405630, 1.792928, -0.096517, 0.710342, 0.911791, 0.115740, -1.416866, 0.037790, 0.042211, -1.457783, 0.651088, -0.906669, -0.334106, 1.045581, 1.064233, -1.034228, 0.649035, 0.651082, -1.155782, 2.747354, 1.452138, 1.761604, -0.510621, 1.129589, -0.585258, 0.332348, 0.874178, -0.065626, 2.074037, -0.188338, 0.267385, 0.446834, -0.390049, 1.293800, 0.744112, 0.553123, 0.065390, -0.501732, -0.329394, 0.848650, -1.109138, 1.143934, -0.516926, 0.497432, 0.616393, -0.642400, 1.392112, 1.192614, 0.863733, -1.111371, 2.384692, 0.183054, 0.674574, -0.724793, -0.749809, 0.455305, 1.035621, -0.777965, 0.897956, -0.493177, 1.170380, 1.035612, -1.126469, 0.035366, 0.407703, 1.058143, -0.465718, 0.163207, -0.208828, 1.162260, -0.148163, -0.805230, 0.200731, -0.753959, 0.771479, 0.874691, 0.051820, -0.709412, 0.914033, 0.140355, -1.430717, 0.339664, -0.111629, 0.308109, 0.592078, -2.115375, 0.000744, -1.145634, -1.039584, -0.045592, 0.596309, -0.537589, -0.780524, 0.431188, -0.567912, 0.342105, -0.628612, 2.060537, 0.016569, -1.505612, 0.945865, 1.807107, 0.217729, -0.644192, 1.000326, -0.125984, -0.157555, -0.505954, -2.400203, -1.221491, 0.288849, 0.697424, 0.423409, 0.013814, -1.543810, -0.268002, -0.664635, 0.619712, 1.110208, -0.993203, -1.761034, 0.560374, -0.683994, -0.088302, 0.919979, -2.354632, -0.697850, 1.519281, -0.557671, -2.558178, 0.054532, -1.284076, 0.478767, 0.992271, -0.955872, 0.631003, -1.427651, -0.268507, -1.414831, -0.677730, 0.022256, 0.192281, 0.761786, 0.092861, -0.740192, -0.588563, 1.363043, 0.401617, 1.379578, -0.109945, 2.016294, 0.527714, -0.602640, 1.241739, -0.812055, 0.726616, 1.081297, 0.515926, 1.523206, -0.189192, 0.571368, 0.768785, 1.261674, -0.034119, -2.127709, -0.487732, -0.350357, 0.775456, 0.320789, -0.674258, 0.047525, 0.742857, 1.614325, -0.353965, -1.353718, 0.777219, -0.031324, 0.070399, 0.268705, 0.075449, -1.261787, 0.973170, 1.088630, 0.421289, -0.350645, 1.061954, 0.510234, 0.621404, 0.932031, -0.641082, 0.120774, 0.371778, 1.158704, 1.550140, -1.215098, 1.148910, 0.395027, -1.140883, -0.913957, 0.785054, -0.017105, -0.058446, 0.261973, -2.248816, 0.487702, 1.356698, -0.058001, -1.663495, -0.332430, -0.359360, 0.139886, -1.463473, -0.526742, 1.175166, -1.473695, -0.380607, 0.732220, -0.431963, 0.291989, 0.527473, 2.854968, 1.150628, 0.422467, -1.975060, 1.717803, -0.237129, -0.831081, -2.234257, 0.778262, -0.297309, -0.215805, 0.384649, 1.561229, -0.088332, -0.354620, 0.215478, 0.208409, 0.038895, -2.122936, -1.292107, 0.947442, -0.857196, -2.921377, -1.244198, 0.293632, -0.651422, -1.018784, 0.459424, -0.591164, -1.016176, -0.152256, 0.546038, -0.989675, -0.912033, -0.264038, 0.400981, -1.121412, 0.472131, -0.219662, 1.155358, -0.024484, 0.372769, -0.114488, 1.655474, 0.528671, 0.086342, -0.781975, -0.455583, -0.123450, -0.396102, -1.506722, 2.484445, -1.636081, -0.531117, -1.927067, 0.342912, -0.293332, -0.581212, -0.850019, 0.861472, 0.250241, -0.332538, -0.594993, -1.560828, -1.727583, 0.839703, 0.301217, 0.240456, 0.069477, -0.257552, -0.284075, -1.083013, -0.279790, 1.222841, -0.512705, -0.006829, -0.853864, 1.189641, 0.354379, -0.909794, -0.507967, 0.574376, -1.091098, -0.458638, 0.383160, 0.863653, -1.296254, 0.973990, 0.882776, 0.541169, -0.293698, 1.621275, 0.367914, -0.498681, -1.000963, 0.991296, -2.331301, 0.835760, -1.083304, -1.718730, -0.168252, -2.017599, -0.213571, 0.827002, 0.218285, 0.233484, 0.765916, 0.789751, -0.636025, 1.087739, 0.065238, -0.696152, -1.524986, 0.794677, 1.975290, 0.937155, -0.079810, 1.483511, -0.819275, 0.229394, -0.360053, -0.313955, -1.227792, -0.156955, -2.156920, -0.259614, -1.165592, -0.248625, 0.922018, -0.606049, -0.517682, 0.471080, 0.879359, 0.785953, 0.643077, 0.029058, 1.029680, 0.226352, -1.837588, 0.842358, -0.188321, 0.135403, 0.376958, 0.722064, 1.456808, 0.489466, -0.187465, 2.473450, 1.244644, 0.970772, 0.370720, -0.172166, 1.910470, 0.493223, 1.390667, 0.248679, 0.137445, -0.106974, 0.552990, -0.230598, 0.419236, -0.228156, 0.464455, 0.976817, 1.362111, 0.387325, -1.610563, -0.746007, -0.525078, -1.092137, -0.648174, 0.884429, 2.360616, 0.821417, -0.785905, -1.561717, -1.872034, 0.926875, 0.255245, 0.513380, 0.409484, 0.293854, 1.215249, 1.229824, -0.634025, -1.116084, -1.047516, -0.688904, 1.566175, -0.463718, -1.161816, -0.061057, 0.232937, -0.129579, -0.701311, 0.096780, -0.134332, 0.705358, 0.535672, 0.678041, 0.791912, -0.842546, 0.562181, -0.196512, -0.262346, -0.472723, 0.817032, 1.041303, 0.941651, 0.728860, -0.711400, 0.253174, 0.827447, -0.823291, -1.206290, 0.120566, -0.799829, 0.442896, -1.101857, -0.660444, -0.251467, -1.663550, -1.417972, 1.453454, 0.052903, 1.315999, 0.675551, -0.789463, -0.514772, -0.831269, -2.765714, -0.133113, -0.948486, 0.609700, -0.034798, -0.016230, 0.114713, 0.155087, -0.922049, 0.454080, -1.631591, 0.897473, 0.589649, -0.747470, 0.036998, 1.470163, -0.088558, -0.294550, 0.631283, 1.234150, 0.718360, -1.683148, -0.039850, -1.046863, -0.232456, -0.058628, 0.865256, -1.650519, -0.419546, -2.025628, -0.357157, -0.595798, 0.232194, -0.754949, -0.247473, 2.242571, -1.137297, 2.155089, 0.379669, -0.320925, 0.380617, -2.125954, 0.708342, 0.443547, -0.573545, -1.398831, 0.882674, -0.535715, -0.377176, 1.228115, 0.223747, -0.239107, -0.724356, -0.042103, -0.127807, -0.821020, 0.049000, -2.140369, 0.090695, -1.261153, -0.352746, 1.598261, -0.699843, -1.375553, -0.841864, 1.771109, 0.533353, -1.364781, 0.137542, -0.312220, 1.471829, 0.993276, -0.827561, 0.218342, 0.500259, -1.013958, -0.532696, 1.884176, -1.321814, 0.216314, 1.655990, 1.626722, 0.746489, -1.364250, 0.557495, -0.460634, -1.216966, -2.173369, 0.996067, -0.996231, -0.429574, 0.018420, 0.910546, 0.318917, -1.408834, 1.934830, 0.779283, -2.334530, 0.164922, -0.397106, -0.309615, -1.370774, 0.144893, 0.577256, 1.341239, -0.217499, -0.408152, -0.025371, 1.929946, 1.550775, -1.020726, 0.211927, 0.892306, -1.474161, 1.173576, -0.568810, 2.267454, 0.597750, 1.029649, -0.368160, 0.042378, 0.386285, 1.410877, 1.063391, -0.848895, 0.708512, 1.241466, 0.465842, 2.189624, -0.467179, 0.828411, 0.554927, -0.804239, 0.119211, -2.023518, -0.781659, 0.847321, 1.018253, 0.636135, -0.628185, -0.830827, -2.747293, 1.192954, -1.463552, 1.768067, -1.150370, 0.518232, 2.337300, 0.929799, 0.209229, -2.126120, -1.720864, 0.360394, -1.192737, 1.091630, 0.324888, 1.090668, 0.632533, 1.164260, -1.782221, -0.375809, -0.635192, -0.110880, -0.821958, 0.856985, -2.019447, 0.140317, 0.109698, -0.523703, 0.552862, 0.457601, 0.807561, -0.176591, -0.176117, -1.953221, -0.712108, -1.130132, -0.207610, -1.210260, 0.743578, -2.072756, -0.317122, 0.113129, 1.186310, 0.417103, -0.512384, -1.529987, -0.948777, -0.004296, 0.306080, -0.212301, -1.632694, -0.312521, 1.621936, 1.300571, 0.118023, -0.551320, -0.606357, -1.596477, -0.778995, 0.221404, 0.518199, -0.284117, 1.595672, -0.033958, -0.071420, -0.764661, -0.230472, 0.678405, -0.305870, -0.667839, 0.889213, -0.188320, 1.298133, 0.126381, -1.557205, 0.130069, 1.207199, -0.087984, 0.111300, 0.418719, 0.188591, -0.115041, 0.660011, 1.822436, 1.389691, -1.272622, 0.995286, -0.719182, 1.142639, -3.092916, 1.772221, -0.518963, 0.783928, -1.039579, -1.171307, -1.247914, 0.403026, -0.211691, 0.258523, -0.247828, 0.143368, 0.566572, -0.576677, 0.059365, -0.288350, 0.100396, 1.180954, 0.519914, -0.149029, 0.367727, -0.524921, -1.528320, 0.178626, -0.217439, -2.139006, -1.557480, -1.343548, 1.402936, 0.101325, 0.621454, 0.499847, 0.990730, -0.467496, -0.777940, 0.096640, 0.287830, -1.330762, 0.152709, -1.408787, -1.934963, 0.895951, -0.086200, 0.023863, -0.516398, 0.750345, -0.829315, -0.406156, -0.000638, 0.464036, -0.225698, 1.260206, 1.484522, 0.562975, -0.690382, -0.865064, -0.700290, 0.346072, -1.015117, -0.524614, -0.409801, 0.178105, 1.662082, 0.245050, 0.347665, -0.796964, 0.633326, 1.212025, 1.381881, 0.402262, -0.054441, 0.205107, 0.459338, 1.292623, -1.203604, -0.664533, -0.919210, -0.003714, -0.964518, 2.054479, 0.387152, 0.791512, -0.923715, -1.564013, 0.605946, -1.075409, -0.158372, 0.066748, 1.545785, 0.510247, 1.272004, -0.607648, 0.403179, 1.146457, -1.219555, -0.833820, 1.379713, 1.346889, -0.856198, 1.831080, 0.352397, 0.688834, 1.052052, -0.326348, -0.703215, -0.677543, 0.587165, -0.315590, -0.919319, 0.137460, 1.328630, 0.597373, 0.825097, 0.247880, 0.513533, 0.012934, -0.712791, 1.027502, 0.599187, -0.149577, -0.173370, 0.734984, 1.201526, 0.736430, -0.725606, -0.118309, -0.579155, 0.790588, -0.147930, 0.262254, 0.980089, 0.021544, 0.147380, 0.121886, -0.186734, 0.313215, -0.261702, 0.190823, 1.429472, 0.073399, -1.515437, -1.734010, -2.191942, 1.859195, -0.725058, 0.328375, -1.534722, 0.877910, 1.584877, -0.363275, -0.330748, 2.467584, 0.575761, 0.091246, 1.482049, 2.058556, -0.715661, -0.839751, 0.168422, 0.125029, -1.080540, -0.482786, 0.504113, -0.451936, 0.119925, -0.844221, 0.777926, 0.593844, 0.004039, -1.019550, 2.652729, -1.378957, -0.570600, -0.821353, 0.454466, 0.325693, -0.190419, -1.854241, 0.326960, 2.373198, -0.798869, -0.334264, -0.494334, -2.656583, 0.534943, -0.924612, -0.343005, 0.729580, -1.925721, -0.585522, 0.350715, 1.727118, 2.076452, -0.382337, 0.388629, -1.030397, 0.075613, 0.327214, -0.171853, 0.563928, 1.466995, -1.367164, -0.609201, -1.196493, -0.978365, -1.155945, -1.099621, -1.396894, -1.201453, -1.820136, -0.310980, 0.071132, -0.493406, -1.507086, -0.809904, 1.475229, 1.411258, 0.815289, 0.246215, -0.187638, 0.050374, 0.065441, 0.950469, 0.094546, -0.298355, 0.949661, -0.164806, 0.640183, 1.393049, -1.420712, -1.135173, -0.629025, 0.446102, 0.409624, -0.752536, 1.054140, 0.912412, 0.438262, -0.337505, -0.885521, 0.396660, 0.882099, 1.244400, 0.583222, 0.541942, 0.046336, -0.375729, 1.259741, 0.694516, 0.822852, 1.150303, 1.813050, 1.196570, 1.532458, -0.112561, 0.765254, 0.734017, -0.200022, 0.495340, -0.179774, 0.193926, -0.365785, 0.251324, -0.628043, -0.491628, -1.613178, -1.098310, 0.819850, 1.621907, 1.731538, -0.531335, 0.830041, 0.873087, 0.418166, 0.613090, -1.081968, 0.334713, -1.092727, 0.924228, -0.168361, -0.219248, -1.515555, 1.613762, 0.196898, -0.320409, -0.020910, -0.414135, 0.293997, 0.313748, -0.948665, 0.595197, 0.985700, 1.884190, 0.953941, 1.559382, -0.845496, -0.541110, -1.037165, 1.355440, -0.240251, -2.945162, -1.690170, -0.583808, 0.565909, 0.324842, -1.581359, 1.335000, 0.540263, 0.821007, -0.811234, 0.640032, -0.517974, 0.905773, -0.212125, -0.811519, 1.160139, 0.248193, -0.337304, -0.311801, 1.309863, -0.655936, 0.578354, 0.230677, -1.260614, -0.206843, -0.129614, -0.319422, -0.063451, 0.410484, 1.054411, -0.507901, 0.621336, -0.094623, 1.689099, 2.085285, 0.949036, -1.062983, 1.475254, -0.133039, 0.796293, -0.541350, -1.175893, -0.309451, 0.467444, 0.322762, -0.637914, -0.174805, -0.526288, -1.071649, 0.182267, 0.291260, 0.391122, 1.824953, 0.807077, -0.554600, -2.606520, -0.543214, 0.708949, 2.355566, 1.211389, -1.691016, -0.236906, -0.064956, 1.235964, 0.311686, 1.345693, -0.423804, -0.176127, 0.487110, -0.320497, -0.262928, -1.055427, 0.952468, -0.291215, 0.235028, -0.701469, 0.471249, -0.241191, -0.312293, -0.231193, -0.596198, 0.303463, 0.593136, 1.235870, 0.248424, -0.101594, -1.645068, -2.480258, -0.587485, 1.231571, -2.174002, 1.286151, -0.076383, -0.951833, -0.103295, 1.017001, 0.129254, 0.126655, -2.584477, 1.033152, -1.816085, 1.082703, 1.941277, 0.142964, 0.381827, -0.485206, -0.474895, -1.376646, -0.864314, 0.586723, 0.388182, 0.883993, 0.180967, 0.910626, 0.533516, 0.177026, -0.256922, 3.074898, 0.472876, 0.594846, -1.658655, -0.037229, -1.298519, 1.702570, 0.574459, -0.229606, 0.628596, 0.237106, 0.835682, 0.422320, 1.230000, -0.903944, 1.288396, 0.349564, 0.735781, -0.098097, -0.364939, 0.522232, -0.883011, -0.485902, -0.881221, -1.338988, 0.479825, -0.836477, 0.083343, -0.148984, 0.324212, 0.591756, 0.147278, 1.276035, -0.361051, 0.940623, -2.598221, 2.397041, -0.191901, 1.962914, -0.038508, -0.382499, -0.887144, 1.162506, -0.012613, -0.504076, 1.165283, 0.234544, -0.384904, -0.222327, 1.167807, -0.870831, -0.369651, 0.955762, -1.401175, -1.504423, -0.020265, -0.679867, -0.935231, -0.056145, 1.868584, -0.594031, -0.527776, -0.554549, -0.514957, 1.516269, 0.116693, 0.473745, -0.102826, 0.513894, 0.932561, 0.027228, 0.623840, 1.032128, 0.104418, 0.741575, -1.679415, -1.192255, 0.321627, -0.828913, -1.349335, 0.632935, 0.890292, 0.437688, -0.227034, 0.335418, 0.049459, 0.724373, -1.671488, 0.176020, -0.374343, 0.254090, -2.075548, -0.484902, 0.296412, 0.523166, 0.768178, 0.087610, 0.926462, -2.186858, -1.198580, 1.643683, 0.234801, -0.486080, -2.117910, 0.603340, -1.004678, 1.682788, -0.961916, 1.797310, 1.884647, 1.475095, 0.584586, 0.165867, 0.272881, 1.133891, 0.556460, 0.742031, -0.275031, 1.235634, 0.932589, -1.053908, -0.257892, 0.332026, -1.056460, -0.145212, 1.533126, -0.120149, -0.113588, 0.050304, 1.456181, 0.407513, 0.237643, -1.416271, 1.533071, -0.165018, 0.336539, -0.661115, 0.800157, -0.398622, -0.868135, 0.267367, -1.306977, -0.879139, 0.079973, -1.219551, 1.697130, 0.373199, 0.858831, 0.652219, -0.565992, 0.338268, -0.154019, -1.419849, 0.738985, -1.254001, 1.941751, -0.593920, 0.675499, 0.004605, -0.289304, -0.512924, 0.632265, 1.450813, 1.609672, 1.046503, -0.909683, 1.554108, -0.235379, 1.712608, 0.795843, 0.401878, -2.291585, 0.743067, 1.316745, -0.024247, -0.817712, -0.372298, -0.379659, -0.217670, 1.053197, 0.204553, 0.684404, -0.375207, -0.039076, -1.894295, 0.605904, -1.081617, 1.279664, -0.292974, -0.052085, -0.705365, 1.019907, 0.763236, 0.044657, 0.424004, 0.987251, 1.066817, 1.515459, 0.836232, 1.188274, -1.554347, -0.177143, -0.519960, -0.198786, -0.855771, -2.644951, 0.025266, 0.772202, 1.190315, 0.108014, 1.866243, 0.029881, 0.387912, 0.907149, -1.359823, -0.669153, 0.259995, -1.987492, 0.193020, 1.035968, 0.501884, -0.938998, 0.691270, 0.969736, -0.139169, 0.159928, 0.542495, 0.417110, -2.229785, -0.378399, 0.205535, 0.379204, 0.248025, -0.284299, -1.812779, -0.624310, -0.696426, 1.225554, 1.653222, -1.563704, -0.070534, -0.643461, -1.572547, -0.442934, 0.146049, 1.130921, 0.361494, 1.430582, 1.323829, 0.438721, -1.404530, -0.647201, 1.195281, -1.732942, 0.106817, -0.627603, -0.502232, -1.020040, 0.090695, 1.215738, 1.850232, 2.119719, 0.336909, -0.866658, 0.884403, 1.424762, -0.658921, -0.200636, -0.105434, 0.525333, -0.651487, 0.444109, 0.936841, 0.200815, 0.300288, 1.481389, 0.636704, 1.063698, -0.446502, -0.481675, 1.295370, 0.195739, 0.571653, 0.803317, 1.365239, -1.033470, 0.273164, -0.603607, 1.246939, 0.397400, -0.111385, 0.149312, -1.333105, 1.599795, -1.049144, 1.605232, 0.480585, 0.019586, -0.170216, -0.539797, -0.611482, 1.022604, -1.543115, 1.575168, 0.900111, 0.619460, -0.379933, 0.812058, 0.716127, -1.386156, -0.285592, 1.645362, -0.122247, -0.984852, 0.181130, -0.897139, 0.577652, -1.846773, -0.792216, -0.459891, 1.237503, 1.218345, 0.507659, 0.401161, -1.580426, -0.645551, 0.431850, 0.272556, -0.640024, 1.501328, 0.097618, -0.226089, 1.357681, 0.642397, -0.301296, 0.238793, -2.028144, 1.237056, -2.047739, -0.003138, 1.279416, -0.013295, -0.040423, 1.273679, 0.095526, -1.510416, 0.338575, -0.897153, -1.574995, 0.667604, -0.647126, 1.297509, -0.189834, -1.735131, 0.346467, -0.387383, 0.334408, -0.731959, 1.659167, 0.328247, 2.043740, -0.727637, -0.471995, 0.107684, 0.451542, -0.212427, 1.032818, -0.396457, 0.967522, 0.026766, 1.060822, -0.410064, -0.651738, -0.635912, -1.324542, 0.042411, -1.248637, 0.632750, 1.088512, -0.955982, 0.060488, 0.205236, -0.236711, 1.644439, 1.388496, -1.038161, 2.250437, 0.582821, 0.243450, -0.330602, -0.126818, 1.711435, -0.306606, 0.562323, 0.758824, 0.332204, 0.564271, 1.549712, -0.077883, -1.043365, 0.874691, 0.419816, 0.472237, -1.799613, 0.582136, 1.221781, -2.275681, 0.210618, 0.161319, 1.805974, 0.618748, -1.602444, -0.202080, 0.308053, 0.912782, -0.831882, -0.519299, -0.479760, 0.647252, -0.447211, -0.330485, 0.549397, 0.636230, -0.175237, 0.647608, -1.060936, -0.834699, 1.573222, -0.771146, -1.445732, 1.544112, 0.989244, -0.222379, -0.980293, -0.358746, 0.631122, 0.024881, 0.493351, -0.980924, -1.496515, -1.476285, 2.123760, 0.448699, 0.324939, 0.889897, 0.827959, 1.053775, -1.215044, -0.028244, -0.414609, -1.750615, 0.418347, 0.122679, 0.500184, -2.390927, -0.272080, 1.344650, -0.025173, -0.100997, -0.338371, 0.323430, -0.920693, -0.305362, -0.621262, -1.168995, 0.169776, 2.018693, -1.086431, -0.039656, -0.189374, 0.718889, 2.486898, 0.609052, 0.520889, -0.706367, 0.130882, 1.321332, 1.355950, -0.275612, 0.417053, 0.157980, 0.870940, 0.811623, -0.284646, 1.687041, 0.128169, 0.466296, 0.021437, -0.492624, -1.213931, 2.175844, 0.577146, 0.821402, -0.549181, -0.638525, -1.552969, -0.270153, 1.053716, 0.069494, 0.161928, 0.727706, 1.820071, 1.300635, -1.880401, -1.011756, -0.704841, 0.444285, 0.700306, 0.153119, 0.063772, 0.341860, -1.218569, -1.562679, -0.092077, -1.086208, 0.230478, -2.428952, 0.433562, 0.615468, -1.023752, -0.019248, -2.004397, 0.858222, 0.131786, 1.063129, 1.460445, 0.640818, -1.843242, -0.161401, -0.609158, -1.728559, -0.291499, -0.586932, 1.159234, -1.059424, -1.761687, -0.620608, -0.757412, -0.666260, -0.644637, 1.136447, 0.977482, 0.100492, 0.496077, -0.873040, 2.891653, 0.533914, 0.813691, 0.377243, 1.158747, -0.384126, -0.305206, -0.062554, 3.634307, -0.449640, -1.742369, -0.722342, 1.064901, 0.370198, 1.479394, 0.087976, -1.801567, 1.414482, -1.734688, -0.119935, 0.789686, 0.800417, -1.191572, 0.481645, 0.921589, -0.697429, 0.481370, -0.332025, 0.239390, 1.008940, 0.717251, -0.358650, 0.973406, -0.046911, -1.341880, -1.490852, 0.799696, -0.166077, 0.018684, -1.533417, 0.313054, -0.209294, -0.525398, 0.600222, 0.453679, 0.332193, 0.277139, 1.375135, -0.792214, 0.922301, 0.334927, 0.368115, -0.952988, 1.288529, 0.046073, -0.049559, 1.533648, -0.769050, 0.124602, 1.396857, 0.131933, -1.433377, 1.153672, -1.283796, -0.743035, -0.736097, 0.819984, 0.188190, 0.238723, 0.777744, 0.715049, -1.457234, -0.149734, -0.871964, -1.722914, -2.343277, 0.756449, -0.469095, -0.105168, -0.102212, 0.519162, -0.949081, 0.317942, -0.008905, 0.880694, 0.768018, 0.102661, -1.424841, -0.067067, -0.293462, 0.962291, 0.212433, 1.118502, 1.148754, -0.412285, -1.022446, -0.700458, 0.979952, 1.919874, 0.398266, 0.490786, -1.626828, 0.648067, 1.135415, 0.311954, -0.292344, -0.652591, 1.160436, -1.128722, -0.738498, -2.548654, 0.439208, -0.123548, 0.806428, -0.385683, -0.381651, 0.492031, 0.554466, 0.306599, -0.317037, -0.657626, 0.276241, -0.799675, -1.135994, 0.025576, 1.524356, 1.779939, 0.075114, -0.698642, -0.285887, 1.285481, 0.215047, -1.027201, -0.284533, 0.380795, 0.706966, 0.366309, -1.011600, 0.631539, -0.282359, 2.982848, -1.153484, -0.189096, -1.137280, 0.818690, -0.171569, 1.042511, -0.632542, -1.102181, 0.689640, 0.422844, -0.547450, -1.131301, 0.312503, 0.637665, -0.751289, 0.155013, -0.328764, -0.792004, 1.417963, -0.160974, -1.402231, -0.932805, -0.685808, 2.398775, -0.471940, -0.547215, 0.908190, -0.265153, 2.262488, 1.384673, -0.840720, -0.701540, -0.172422, 0.850958, -0.153448, -0.278825, -0.757067, -1.187760, -0.043663, -0.570766, 0.154946, 0.594962, -1.070082, -1.765571, -0.712869, -1.771842, 0.046882, 1.024883, -0.347007, 0.098460, -0.061667, 0.656342, -1.433418, -2.280200, -1.835229, 0.225144, -0.485068, -0.486958, 1.327062, 1.548246, -1.496099, -0.968958, -0.224064, 0.028635, -1.441095, 1.091844, -0.795990, -1.443695, -1.037121, 0.192777, 0.233803, -0.780962, -1.293411, 0.707099, -1.497790, -0.846497, -0.494631, 1.074160, -0.013830, 0.174071, -0.201901, -0.486750, -0.362127, -0.267790, -0.270937, 1.111896, -0.046425, 0.310211, 0.538690, 0.246840, 1.603209, -1.006151, 1.399642, 0.516344, -1.119212, 0.011564, 1.032392, -2.137830, -0.458846, 1.076548, -0.421424, -0.030632, -0.934729, -0.518425, 0.651381, 1.247126, 0.972164, -0.214589, 0.053051, -0.642297, -0.753393, 0.697890, 1.972582, -0.065124, 0.659279, 0.207376, -0.546509, -1.274967, -0.065927, -0.419302, -0.251757, -0.638892, 1.805074, -1.801460, -0.108050, -1.346863, -1.705499, 1.452543, 0.755774, 1.092339, -1.012060, 1.814085, 0.545268, -2.122539, -0.280203, -0.426116, -0.256643, 1.048114, 0.155350, 1.364737, 0.395107, -0.022182, -0.653808, -1.266924, -0.426717, -0.359394, -0.179963, -0.773853, 0.089784, -0.740791, 0.367406, 0.407117, -0.689775, -0.731657, -1.155499, 0.893848, 1.235849, 0.320152, 0.059431, -0.604499, -1.350062, 0.125098, -0.814026, -0.506056, 2.164879, -1.353691, -1.011465, -0.685051, 1.104228, -1.157439, -0.485205, -2.497320, 0.604647, -1.420419, 0.602604, 0.278328, 0.150027, -0.138131, -0.050711, -0.841844, -0.070716, -0.595316, 0.010523, -0.203920, -0.225158, -1.402896, -0.126184, -0.593979, -0.145913, 0.167566, -0.596005, 2.164720, 0.217478, 0.742733, 1.029717, 0.628989, 0.806181, -0.248373, 1.520913, -0.438485, -0.566362, 0.652311, 0.866376, -0.269359, -0.113015, 1.266411, 0.594742, 2.423619, 0.543786, -0.115658, 0.857222, -0.940680, -0.214410, -1.496817, 0.500499, 0.141213, -0.806804, -0.237316, 0.447476, 0.168397, -0.172755, 1.882573, 0.240807, -0.297934, 0.611999, 0.966728, -0.078697, 0.168583, 0.205307, -0.952354, -0.320256, 0.832322, 1.666139, 0.631517, -0.506827, -0.551355, -0.657646, 0.575448, -1.135399, 2.069389, -0.841543, 1.787026, 1.482088, -1.690799, 0.524223, -0.594750, -0.077839, 1.278702, -1.026274, -0.978542, -0.393522, 0.004852, -1.052877, 1.080055, 0.734276, -1.044457, -1.639061, -0.755365, 0.800940, -0.184771, -0.412833, -0.531526, -1.402736, 0.940678, 0.166610, 0.144127, -2.324184, -1.375890, 0.537638, -2.428773, 0.509257, 1.208723, 0.928230, 2.237816, -0.288016, -0.211706, 0.966168, 0.021801, -0.601339, 0.686722, 0.120243, -0.109425, 0.983141, 1.350210, 0.351095, -0.580328, -0.471648, 0.837873, -0.419865, 1.950191, -1.676164, -1.986370, 0.535044, -1.917312, 0.519233, 1.278150, -2.637649, -0.931096, 0.118603, 0.208989, 0.886885, -0.091652, 0.377726, 1.055290, -0.649825, 0.433201, 0.086600, -0.017669, -0.332059, -0.156662, -0.450940, -1.142937, -1.463332, -0.243229, 1.614473, -0.170515, -1.079244, -0.849102, 1.475989, -0.930568, -0.487682, -0.630463, 1.860586, -0.264389, 0.156278, 0.447009, 0.016093, 1.353387, 0.646973, -0.220601, 0.994193, -0.775016, 0.351284, 2.529540, -0.645325, 0.582984, -1.466871, 0.789530, -0.782410, -0.199359, 1.063133, -1.527282, 0.697280, -0.916191, -0.797119, -0.148378, -1.099864, -0.918967, 1.772733, -0.293160, -0.175819, -2.873878, 0.210562, 0.133415, -0.447022, -0.369241, 1.551989, -0.777479, 1.698630, 0.308076, 0.278889, -1.220540, -0.180882, -1.663167, -0.552691, 0.126772, 0.002524, 1.350661, -0.513274, -0.644278, -0.488755, 0.066758, -0.210896, -0.287152, 0.636588, 1.123429, 2.485032, 0.986254, 1.648961, -0.075521, -0.548075, 1.986850, 1.357698, 2.300064, -0.284665, 0.543455, 1.592470, -0.184173, -0.111129, -0.580227, 0.220468, -0.208687, 0.448734, 0.032736, -0.966882, 0.317363, -0.481474, 0.684299, 1.336560, 0.027664, -0.437053, 0.020271, 1.879279, 0.982406, -0.496204, -0.909334, 0.454811, 1.069827, -1.622297, 1.827473, -0.816461, 2.020078, 0.805258, -1.092625, 0.198462, -0.714587, 1.197768, 0.916227, 0.396992, 0.253684, 1.290877, 1.118490, 0.079442, 1.900216, -0.119153, -0.384979, 0.524162, -0.592564, -0.999366, 0.199682, 1.003846, 0.474500, 0.327132, -1.394262, 0.752885, 0.283028, -0.360385, 0.428653, 0.014572, 2.063022, 1.644953, -0.036233, -0.295001, 0.869577, 0.983596, 1.707063, 2.156869, 1.711904, -0.502335, 0.147112, -0.873209, -0.035239, 0.523164, -0.462570, 0.900196, -1.329216, 0.601497, -2.313992, -0.413853, 0.438713, 1.284026, -0.428070, 1.461834, 0.398688, 1.465784, -1.900860, -0.729031, -0.142893, 0.168145, 1.704455, 0.512674, -0.244008, 2.288321, -1.461442, 0.456502, 0.660286, 1.396450, -0.079329, 1.148720, -0.483842, 0.477136, -0.125468, -1.041603, 1.084591, 1.639639, 0.376313, -0.469184, -0.598421, 0.442313, -0.119095, -0.946090, 0.831479, -0.121850, 0.701710, -0.260115, 0.230561, 1.623636, -0.190297, 0.415193, -0.057653, -1.480215, 0.053738, 1.113153, 0.218547, -0.671041, -1.507383, 0.717438, 1.844223, 0.630939, 1.625890, 0.127088, -0.071475, -1.260457, -1.249726, -0.959038, 2.164299, 0.507268, 0.194375, -0.568231, -0.606358, -0.074386, 1.034043, 1.147497, 0.100215, -0.636835, 0.568724, -0.068536, -1.281750, 1.593863, 1.938854, 1.019770, 0.663070, -0.956689, 0.100639, -0.398490, -0.916473, -1.039211, 0.554584, -0.261504, -0.073555, -0.130241, -0.882494, -1.379310, 1.844366, 0.617660, 1.127325, -1.575470, -0.154042, -1.422882, -1.155640, -0.707396, 1.282934, 0.003124, -0.224813, 0.284165, 0.232662, 0.929362, -1.390440, -1.287308, 1.866545, -1.010280, 1.712442, -1.134542, -0.303493, -0.868544, -0.916382, -1.447089, -1.748556, 0.324426, 1.156134, -0.435936, 0.033932, 0.515855, -0.717973, 0.027965, 1.252700, 0.997011, -1.459125, 0.939454, 1.253726, -1.565335, -0.006108, -1.643310, 0.873896, 1.374321, 1.225836, 0.564169, 2.153342, 0.162568, 0.651912, -0.418130, 2.703199, -0.767437, -0.534123, -0.294185, 0.285560, -1.023888, -0.096266, 1.327629, -0.547232, -1.165852, 0.056561, -0.068240, -0.574851, 2.475833, 0.610420, -0.604346, -1.104933, -0.095885, -0.108639, 1.184208, 0.000399, 2.368381, 0.941614, -0.641642, 0.324708, -0.957477, -1.203021, 0.813082, -0.150098, -0.296032, -0.135761, 0.870696, -0.107229, 0.634188, 0.866151, -0.081902, 0.325302, 0.842824, 0.390093, 0.025223, -0.203878, -0.570896, 0.164745, -1.844790, 0.520028, -0.023327, -1.829439, -0.456234, 1.800588, -0.199132, 0.992753, -1.584012, 1.606374, 0.349932, 0.682876, 1.050901, 0.870898, 1.312261, -2.837859, 0.733290, -1.073519, -0.025142, 0.738580, -0.574779, 0.580421, -1.445295, 0.138911, -0.580722, -1.430385, -0.628842, -0.905252, -1.387759, -1.177275, 1.764368, -0.966234, -0.530609, 1.081259, 0.225107, -1.078352, -2.185733, 1.035257, -0.793806, -1.409346, -0.784551, -1.106549, -0.126562, -0.905708, 0.269379, -1.128022, -0.242388, -0.423059, 0.105344, -1.024157, 0.202763, -0.063013, -0.088429, 0.655410, -1.110098, 2.428923, -0.502188, -1.386327, 0.226384, 0.604643, 1.620373, -0.364794, 0.778856, 1.857160, -2.043384, -0.325213, 0.132761, -0.545914, -0.417377, 0.042706, 0.209212, -0.701293, -0.149360, 1.221534, 0.417134, 1.092080, 1.184439, 1.789684, -0.040896, -0.480061, 0.916486, 2.427948, -0.111680, -0.231581, -0.041493, -0.379683, -0.015162, -0.145177, 0.646470, -1.081743, -0.558725, 0.075091, -0.658205, -1.520468, -1.368554, -0.435683, 0.404889, 0.623453, -1.698661, -0.045201, 2.583282, 1.622723, 0.515381, -2.472880, -0.349608, 0.761993, -0.425938, -0.247565, -0.165860, 0.578170, 0.214630, -1.104797, 0.237689, 0.099863, -0.344605, -0.584362, 2.300824, 1.934830, 0.870265, -1.091693, 1.200358, -1.127811, -0.624323, 0.413726, 0.279315, 0.453928, -0.681680, -0.627302, 0.258638, 0.344921, -0.623981, 0.562794, -0.215639, -0.856844, -0.794088, 1.259898, 0.237298, -0.622015, -0.548554, -0.502306, -0.174810, 1.027696, 0.806162, -0.467659, -0.239836, -1.998171, 1.063450, -0.718953, -0.139901, 0.545427, -0.714572, -1.050039, -0.315258, 0.345020, 1.039544, -0.948866, 0.298364, -1.238915, -1.511428, -0.610218, -0.938979, 0.377812, -1.114161, -0.372858, 1.207247, 1.328421, -0.238980, 0.268872, 0.167597, -0.487284, 0.463517, -0.361816, 3.039635, 2.437635, -0.044734, -0.258641, 1.838695, 0.080889, -1.251838, 2.388910, -0.033314, 0.069068, -1.440609, 0.259411, 0.343637, 1.518689, 1.273710, 1.182842, -0.750187, 1.290238, 0.002208, -0.352721, 0.390876, -1.150684, 0.119555, 0.282951, 0.501361, -0.069848, 0.949723, -1.317181, -0.989062, -0.088267, 0.520365, -1.843896, 0.089088, -0.195586, -0.311254, 0.659937, 1.233026, 1.125150, -2.106544, -0.356165, -0.779234, -0.691224, 0.484419, -0.931746, 0.809339, 1.002660, 0.370814, 0.853346, -0.548096, 1.514438, -1.187621, -0.662147, 1.479093, 1.327541, 1.307220, -0.234879, 0.403882, 1.447610, 0.589404, 0.694251, 1.343502, 0.272674, 0.695819, -1.971697, -0.448987, -0.082878, -1.171790, 0.567854, 0.177039, -0.769617, -0.249011, 0.916148, -0.773082, -0.621623, 0.152847, -1.794625, -1.364801, 0.501819, 1.037467, -2.247378, 0.861127, -0.657073, -1.112528, 1.174116, 0.983575, 1.945536, -0.734273, 0.342169, -0.452515, -0.989329, -1.565692, 0.567737, -2.375162, 1.539514, 0.180613, -0.231800, -0.754102, 1.981379, 3.051359, -1.317772, 1.254228, -0.000224, 0.684869, -0.271161, 0.132324, 0.312634, -0.484563, -1.966262, -0.647917, -1.647337, -0.648669, -1.341726, 0.174658, -0.761759, -0.014404, 1.944759, 0.014563, 1.354151, 0.974332, 0.585895, 1.500535, -0.562382, -0.906372, -0.462941, -0.996713, -1.512921, -0.180466, 1.329657, -0.379760, 0.280724, 1.320967, -0.749961, 2.008527, -1.209985, -0.731997, 0.308620, -1.720397, 3.468847, 1.166597, 0.364208, -0.477032, 0.365462, -1.407846, -0.146539, -0.430565, 0.746793, -0.504040, 1.846322, 0.308604, -0.199607, 0.464713, 0.967399, 1.176451, -0.954085, -0.310357, -0.312332, 0.376844, -0.141200, 0.626920, 0.526404, 0.487815, 1.620388, 1.133050, 0.610087, 0.787252, -1.111351, 0.080964, -0.643370, -0.551468, 1.412445, 0.110894, 0.437612, -0.533933, 0.197843, 0.660002, -1.448300, 0.303212, 0.222153, -0.010663, -0.377082, -1.287343, -1.244848, 0.992829, 1.138175, 0.372370, 0.172019, 0.384046, 0.685067, 0.370009, 0.150763, 0.040075, 0.499127, 0.037870, -1.727757, -1.036404, -1.291844, -0.674590, 0.435098, 1.315524, -0.050060, 0.092492, 0.867327, -0.280056, -0.815012, 0.058775, 0.279875, 0.304464, 0.336304, -0.606496, 0.249897, 0.147141, 0.326585, 1.065376, -0.200741, -0.024578, 1.711345, -1.081244, 0.254302, -0.493614, -0.766170, 1.137178, -2.513116, 0.477851, 1.114748, 0.535397, -0.476511, -0.349666, 0.930684, 1.363176, 0.299322, -0.473799, 0.240119, -0.145147, 1.566139, -1.574533, 0.856187, 0.557551, -1.186705, 1.320359, 0.925068, -0.289164, -0.113207, -0.469041, 1.077772, -0.092773, -1.313327, 0.292556, -1.077790, -1.116142, -1.835961, 1.567392, -0.789563, -1.157259, -0.066608, -0.020266, 0.295775, -3.064260, -1.619626, -1.247574, -0.333937, 0.639552, -0.738649, -0.343526, 0.413276, 1.288495, -1.008308, -0.294123, -0.610943, -0.259599, -0.501844, -0.520179, 1.200212, -0.934556, 0.989451, 0.180485, 1.793080, -2.066965, 1.462470, -0.795857, -0.960574, -0.416713, 0.013765, 0.915275, -0.294831, -0.220237, -1.689309, -0.923329, -0.069512, 0.005182, 0.564783, -1.919777, 1.912786, 0.417144, -0.031081, 1.462456, -0.391718, -0.624316, 0.173232, 0.252350, 0.016398, 0.595127, 2.154663, -0.027733, -0.755305, 0.187097, -0.971865, 0.063590, -1.592528, -0.266684, -0.138495, -2.285557, -0.799050, 1.624028, 0.547817, 1.956761, 0.141741, 0.388984, -1.128071, 0.169306, 0.129080, 2.300993, -1.876662, 0.113277, -0.157561, -0.498305, -2.280520, -0.410952, 0.207234, -1.054393, 0.599088, 0.355501, 0.107757, 0.097653, -1.604631, -0.844321, 0.464462, 0.658170, -0.357475, 1.042900, 0.223686, -0.420273, -0.090101, -1.214755, -1.180588, -1.094236, -1.393801, -0.637307, -1.002002, -0.755302, 0.072168, 1.117273, 0.103632, -0.369438, 2.210273, 0.170898, -1.366383, 1.044325, -0.513313, 0.389067, 1.236725, -0.929034, 0.783262, -0.005786, -0.271203, 1.839131, 1.016765, 1.187792, 0.323238, -0.113888, -2.164189, -1.405855, -0.274058, -1.355127, -1.506934, -1.182847, -0.370296, -1.614776, 0.297431, 0.052085, 2.701141, -0.926264, -0.659334, -1.514827, -1.096203, 1.766446, -1.792354, -0.516676, -0.970751, -0.610784, 0.214726, -0.105453, -0.081795, -1.493617, -0.187128, -0.801699, -0.350642, -0.525621, -2.161659, 0.584065, -1.357938, -0.521444, 0.499180, 1.660716, -0.291489, -1.528784, 2.352291}, + { -1.032016, 1.854591, -0.215522, -1.387603, 0.004889, 0.449155, 0.104728, 0.020874, 1.222272, 1.480285, -1.191374, 0.947607, 0.888379, -1.506574, -0.559701, -0.055621, 0.291745, 0.597127, 2.152806, -0.869542, 0.017395, 0.930051, -0.744311, -1.700843, 0.436947, -1.766412, 0.529422, -1.023080, -0.772948, -0.697452, -1.501460, 0.432844, 0.322991, 0.389627, -0.792569, -0.314687, 1.667322, -0.355861, 0.120736, -0.273842, -0.784053, 0.184458, 0.210351, -1.140201, 2.409621, 1.449104, -0.002138, 1.021659, -0.911501, -0.843906, 0.111113, 1.964941, 1.542510, 1.406612, 0.517131, 0.368924, 0.024763, -0.337369, -0.031090, 1.290943, 0.087439, -1.344030, -1.033239, -0.346714, 0.852564, 0.677325, -0.901013, 0.418104, -0.480731, -1.097337, -1.691154, -0.532958, 0.617703, 0.877878, -0.645001, -1.062746, -0.380974, -0.614441, 1.092631, -0.866036, -0.931524, -0.626952, 1.226366, 0.168713, 0.950177, -0.557153, -0.267041, 0.042744, -0.072765, -0.571458, 0.371207, -0.181331, -1.174651, 0.100353, 1.152169, -0.245983, 0.276579, 0.630689, 0.645390, -1.542664, 0.287892, -1.966227, 2.895799, 0.473836, 1.288372, 0.148612, 2.475049, 0.527445, 0.937163, 2.688011, 1.219828, 0.277092, -0.749727, 1.249389, 0.387824, 0.423623, 0.037290, 0.043830, 0.360338, -2.508510, 0.465263, 0.561708, 0.609726, 0.690628, -1.026875, -1.010403, 2.002129, -1.971392, 0.112570, -1.539712, 0.553410, 0.028059, -0.004749, -2.133714, -1.014866, 1.476596, 0.280019, 1.398513, 1.157147, -0.290232, -1.981096, 0.674028, -1.511503, 0.483117, 1.363053, -0.514163, -0.776454, -0.158192, -0.253181, -0.428754, -0.288293, -0.172351, -0.911873, -1.360609, 0.307155, 1.873235, -0.963907, -0.135169, 0.562139, 0.774167, -0.882563, -0.615164, 0.180195, 0.077910, 1.179424, -0.874645, 0.056420, 0.331574, -0.023752, 0.944618, 1.629864, -0.829140, -0.198809, 0.936105, 0.310516, -0.208277, -0.423705, -1.217533, -0.213382, -0.126103, -0.052538, -0.506724, 1.581277, -0.358663, 1.089691, 0.531895, -0.027278, 0.703215, -0.882655, 1.394934, 0.099182, -0.450208, -0.920682, 0.480102, -1.393848, 0.554102, 1.890914, -0.238349, -0.189114, 1.912245, -0.986157, -0.889509, 0.745610, -0.605612, -1.891715, 0.032407, 0.659069, 0.421151, 0.084908, 0.125713, -0.180533, 1.662164, -0.622092, 1.279968, -0.944012, -0.838864, 1.417750, 0.707576, -0.980073, 1.642846, -0.071000, 0.053094, 1.109880, 0.708380, 0.488305, -0.069913, -0.599691, -1.161746, 0.700080, 1.521088, 1.792642, 1.218995, 1.926570, -0.364577, -1.702465, 1.949011, 0.908122, 0.130924, 1.668756, 1.884508, 1.399567, 0.008585, 0.936778, 0.240411, -0.407272, -0.708686, -0.546560, 2.050210, -0.026404, 0.231036, -0.869428, -1.228726, -0.153557, -0.346251, 1.184444, -0.400680, 1.094365, -0.002089, -0.941457, 1.553974, -0.433057, 0.789555, 1.313542, 0.020200, 1.500007, -0.669353, -0.302262, 1.709308, 0.432081, 0.398792, -0.536806, -0.653943, -0.196166, 0.832619, -0.867496, -0.153895, -0.252974, -0.741366, 0.639479, -1.318888, -0.038313, -0.693417, -0.927080, 0.932684, 0.803425, -1.728262, 1.682792, -0.857272, 0.657629, 0.849434, 0.296028, 0.144598, 0.062429, 0.801032, -0.897822, -0.890341, 1.054406, -0.498566, 0.090428, -1.076260, -1.598137, -0.581367, -1.173660, 1.061905, 0.356659, 1.304267, -0.801799, 1.246165, 0.667837, -0.820372, -1.309478, 0.459676, 0.541285, -0.618476, -0.739771, 0.330440, 1.564528, 1.084407, 1.471269, -0.526647, 1.086766, -0.206993, -0.920489, 1.210893, 0.645602, 0.103009, 0.930268, -0.095701, 0.229570, 0.513355, 0.115237, -0.324102, 0.812715, 0.602063, -0.215722, 1.318895, 1.701331, -1.467334, 0.958047, 0.194303, 0.194073, -1.831349, 1.143847, 0.775388, -0.707565, -0.774336, 0.262818, -2.312440, 0.591929, -0.148091, -0.065918, 0.584594, 0.481410, -1.359851, 1.005084, 0.144354, -0.367480, 0.664287, 2.416342, -0.296834, 0.749579, 1.132690, 0.002088, 0.825948, 2.032626, -1.084534, -0.283351, 0.682833, 0.014223, 1.041453, 1.116392, -1.086432, 0.125484, -0.321226, -0.203686, 0.296916, 1.481791, -0.622020, 0.474773, 0.132598, -0.975393, -0.026756, -0.700388, 0.646137, 0.185499, 1.233930, 1.029603, -0.135610, -1.317337, 1.330919, 0.274546, 0.261772, 1.215554, 0.114212, 1.033923, 0.616942, 1.403023, -0.722602, 0.327544, 1.391384, -1.382234, -1.821349, -0.125506, -0.706927, 0.199987, 0.351954, 1.134098, 0.870109, -0.078746, -0.857906, 0.717979, 1.274832, -0.765643, 0.232387, -0.521633, 1.727670, -0.260526, -0.987254, -0.742446, -1.446580, 0.181792, 0.888987, 0.472363, 0.634425, -0.716143, 0.079465, 1.374539, 0.493535, 1.927585, 2.140982, 0.401549, 0.890757, 0.774744, 0.199304, -0.420552, -0.874384, 0.143213, -0.470475, -0.834608, -0.113475, -0.040145, 0.985630, 1.303231, 0.270954, -2.334831, 0.751316, -0.360642, 0.429777, -0.561546, 0.001370, 0.500387, -0.685473, -1.119624, 2.591336, 1.973171, -1.495251, 1.147286, -1.476510, -0.750757, 1.819601, -1.387690, -1.674675, -0.820915, -0.841003, -1.054115, -0.878545, 0.450059, 0.302665, -0.304095, -0.657107, -1.373809, 0.683586, 0.513120, -0.153538, 0.587214, -0.178789, -0.771145, 0.981733, -2.678084, -0.360978, 0.579160, -0.979916, 1.180557, 0.906121, -0.988775, 0.429118, -0.243366, -2.479257, 0.148848, 0.418409, -1.841728, 0.005940, 0.478099, 1.772866, -1.233891, -2.564396, -0.056156, 2.089041, 1.088386, -0.353672, 0.668447, 0.149646, -0.553954, -0.566497, 0.442340, -0.011381, 0.471670, 0.602019, -1.436193, -1.254965, 1.780027, 0.052386, 0.989152, -0.421028, 1.482023, 1.574207, -1.785544, -0.611356, 1.006527, -1.607428, 1.321297, -0.296010, -0.895521, 1.118481, -0.601377, -0.067650, -0.281833, 1.592834, -0.043791, 0.239481, 0.117711, -1.326522, -1.173818, -0.889782, 0.499607, -1.229618, 1.352457, -0.375628, -2.688049, 0.484384, -0.675598, -2.851353, 0.418927, -0.531147, -2.178747, -0.620355, -0.687873, -0.452168, 0.078381, -0.788451, -0.126407, -1.430971, 0.301005, -0.420261, -1.044814, 0.721834, -0.224389, 1.269181, -0.673290, 0.610022, 0.322914, 0.288976, 2.962226, 1.555213, 0.670430, -2.914404, 0.775814, 1.530241, 0.044895, -0.413111, -0.450824, 0.535644, -1.102416, 0.855280, 0.046259, -0.269084, 1.433368, -1.204725, -0.032151, 0.867805, 1.311642, 1.228350, -1.213409, -0.469054, -0.711696, 2.192108, 0.172786, 0.015074, 0.886867, -1.970909, 0.222367, -0.839810, -1.680780, -1.506236, 0.595583, -0.460526, 1.304477, -0.301202, -0.942746, 0.799834, -1.234622, 0.997966, -0.343350, 0.125635, -0.249554, -1.039301, 1.197757, -0.589366, -0.758682, -0.623128, -0.513029, 1.001507, 1.726441, 0.384944, -0.077365, -0.946518, -1.145625, -0.468252, -0.785403, -0.589111, -0.590267, 0.253627, 0.345603, -0.551738, -0.487664, -1.393245, -0.251796, -0.112630, -0.761932, 0.513099, -0.722046, -1.397475, -0.062571, -0.006208, -0.344936, 0.898064, -0.406844, -1.058608, -1.038658, -0.707946, 1.597920, -0.832562, -0.419433, 0.073509, 1.006773, -1.736862, 0.820719, 0.019082, 0.353860, 0.408105, -0.055810, -1.098349, -0.817160, -0.311048, 0.405275, -0.629797, 0.755819, -0.238527, -1.026413, -1.139971, -0.280944, -1.043725, 0.112288, 0.062357, -0.387122, -0.676964, -2.498029, -2.384445, 0.339674, 0.715561, -0.850102, 0.794963, 1.235157, -1.154691, -0.911378, -1.116083, 1.677790, -0.586472, -1.897209, 0.254429, 0.190187, -0.011855, -1.017788, 1.839750, -1.371098, 1.144897, -1.102128, -0.237888, -0.471465, 0.802670, 1.046923, -0.476656, 0.760300, 1.681519, -1.869753, -0.557502, 0.121166, -0.169569, -0.759741, -0.747529, -1.215231, -0.652986, -1.626459, -0.341549, 0.504136, 0.896154, -0.831009, -0.882100, -1.043559, -0.576469, -0.036531, 1.900556, 0.272033, -0.473085, -0.882971, 1.533360, 0.438491, 0.201686, 1.772072, 1.311067, 0.290760, 0.721544, 0.680458, 0.309648, -1.778819, 1.091028, 1.652424, -0.703120, -0.368153, -0.064626, -0.516528, 0.088144, 0.755239, 0.446299, 2.049288, 0.853415, 0.410563, -0.441081, 1.941374, 0.318625, -0.929125, 0.888702, -0.217404, -2.055099, -0.298698, 0.433219, -0.851539, 0.028616, -3.073194, 0.197669, -0.214431, 1.393304, 0.457332, 0.282850, 0.748774, -0.370778, 0.512766, -0.869590, 1.775725, -0.381640, 2.064993, -0.150312, -2.011588, -1.000874, -0.619422, 0.759872, 1.527296, 0.246786, 0.102310, 0.121937, -0.123196, -1.073119, 0.353966, 0.538203, -0.672015, -0.445545, 0.472643, -0.278015, -0.274855, 0.201580, -0.291376, 0.979554, 1.285204, -0.079972, 1.845073, 0.018455, -0.332106, 0.538070, 2.261812, -3.153538, -0.900794, 1.344540, 1.438202, 0.378637, 0.743369, 2.143876, 1.284867, -0.180881, -0.405424, -0.591861, 1.657997, -0.371613, 0.616362, 0.244465, 1.690240, 0.469006, 0.312795, -0.107786, -1.433827, 1.043196, 0.540520, 0.625573, -0.632253, 0.054265, 0.009328, 0.440699, 0.096355, 0.482888, 0.013599, 0.721417, 0.758791, -0.674839, -1.084236, 0.194385, -1.488305, -1.531361, -1.141776, -0.333379, -0.044094, -0.332861, 0.170944, -0.919710, 1.492268, -0.138132, -1.301799, 0.090258, 1.217156, 0.747416, 0.275898, -1.078026, -1.568503, -1.258780, -0.401220, -0.797802, 0.888903, 1.191863, -0.857255, -1.323898, -2.001235, 0.192529, -1.139978, -1.305345, 1.444400, 0.820702, 0.086833, 0.972912, -0.738201, 1.272847, 0.435851, -0.581540, -0.068129, -0.577289, 2.224838, 0.014232, -1.024243, 0.219190, 0.413199, 1.241418, -1.174235, 0.017577, 0.019241, 0.784325, 0.914175, -0.453461, 0.667504, -0.809297, -1.750080, -0.141297, -0.831413, -0.125206, -0.465609, 1.580447, -1.012284, -0.849111, 0.306523, -0.320722, 1.377635, 1.430311, 1.658944, 0.309130, -1.601476, -0.300309, 0.356393, -0.100079, 1.858357, 0.734674, -1.489920, -0.702290, -0.577557, 0.845826, 0.925556, -0.133251, -0.250079, -0.270773, -0.440477, -0.419883, -0.364977, -0.275343, -1.290047, -1.257682, -0.580341, -0.808149, -0.677219, 1.351719, -0.465671, -1.343446, 1.863603, 0.059346, 1.143813, 0.467443, 2.004931, -0.065551, -0.069550, 2.081304, -1.088374, -1.724354, 0.986678, 1.349470, -0.287666, 0.636318, -0.831416, -0.276590, 0.096441, 0.400207, 1.761069, 0.033869, -0.239444, 1.927289, 0.326985, 1.861964, -1.027518, -0.252546, -0.914581, -1.493719, 0.687954, 0.431235, 1.293586, 1.036075, 0.309026, 0.008513, -0.431012, 1.367234, 1.897807, 2.296672, 0.948918, 0.600105, 0.522261, -0.368362, 0.892143, 0.249466, 0.482641, 1.448118, 1.727586, 0.565913, -0.290096, 1.535042, -0.757973, -0.086502, -0.669223, 0.620891, 1.306139, 0.836862, -0.059012, 0.161054, -0.110510, 0.248580, 0.423718, 0.776868, 1.771792, 0.019362, -0.314416, 0.230599, 0.292728, -0.568906, -0.411275, -0.858015, -1.882231, -0.529734, 0.197664, -1.177380, -0.626984, 0.442823, 0.330114, -0.523000, 0.152460, 1.968234, -0.743490, 0.672194, 1.995935, -1.006615, -1.737551, -1.133825, 1.569160, -0.550759, 0.260316, 0.061030, -0.299893, -1.398609, 0.464938, -0.578189, -0.674429, -0.892877, -1.309711, 0.967669, -0.016976, 0.074026, 1.035867, 0.579666, 0.139395, -1.750185, -0.507347, -0.542170, 0.013362, 0.964037, 0.991608, -0.373843, -0.694114, 1.507900, -0.593654, -1.487798, -1.497645, 1.669663, -0.458306, -0.706962, 1.662581, -1.918587, 0.084422, 0.421538, 0.496799, -1.673889, 0.555501, -1.068548, 0.731318, 1.562805, -1.740687, -0.297419, 0.128330, -2.583031, 0.075735, -0.311489, -0.097381, -1.189062, -0.663472, 0.639390, 3.145621, -0.405558, 0.410006, 1.408620, 0.725816, 0.656646, -1.805473, -0.804754, 0.005580, 0.015301, 1.217217, -1.187022, -1.129431, -0.802469, -0.073172, -1.370412, 1.145019, 0.297423, -0.303112, -0.154936, -0.087705, -0.487541, 0.076855, 0.900322, 1.459603, -1.114173, -0.560727, 0.828400, 0.568284, 0.247648, 0.069986, 2.343649, 0.483855, -0.491534, 1.264371, -0.386331, 2.186863, 0.176023, -0.320987, 0.538502, 1.360584, 0.091475, 0.728556, -0.024649, 1.377089, -0.621904, 0.375754, 0.889572, 0.147274, 0.287843, -0.257625, -0.354862, 0.236499, -0.057406, -0.076215, 0.582610, 1.831080, -1.549489, 0.369506, -0.231272, -0.555946, 1.105228, 1.310853, -0.381417, -0.592675, 0.445043, 1.412374, 0.509445, 0.499025, -0.202159, -0.301325, -1.021279, -0.213811, -0.307318, 1.265393, 0.518794, -1.086239, -1.037994, -0.553106, 1.546336, -1.005629, -0.566092, 0.461581, 0.757976, -1.161483, 0.208647, -0.514475, -0.415844, 0.292909, -1.012986, 1.179868, -0.008937, -0.065337, -0.647396, 0.424811, -1.308007, -0.544268, 0.065002, 0.618984, -0.507736, -1.052013, 0.093192, -0.221534, -1.012366, -0.000609, -0.712374, -0.525488, -2.226508, 0.986113, 1.093016, 0.599521, 0.482077, -0.396838, 0.220787, 1.014042, -0.481698, -1.213871, 0.538134, 0.482876, 1.040492, -0.636604, -0.822290, -0.387025, -0.250082, 1.851348, -0.984867, -0.305903, 0.132120, 1.211872, -1.638612, 0.857618, 0.275511, 0.711673, -2.569485, -0.712061, 2.313772, 0.018603, 0.436174, 0.594517, 1.579452, 0.709101, 1.343971, -2.581629, 0.880758, 0.037315, 0.769113, -0.181262, -0.486842, 2.206519, 1.570604, -0.700580, -0.985305, 0.209329, -0.590215, -0.184059, 0.727232, -2.210170, -0.798697, -2.763262, -1.204549, -0.898423, -1.647859, -1.284928, 0.076998, 0.020094, -0.140689, -1.921330, 0.104324, 2.374990, 0.842787, 0.546089, 0.317766, -0.498612, -0.458068, -0.226340, 1.538769, -0.114176, -0.142312, -0.408754, 0.919678, 0.478961, -0.374630, 0.883696, -1.454080, 2.120202, -0.769070, 0.368273, -1.414514, 0.071525, 0.066694, -0.893816, 1.744107, -1.628857, -1.190436, 1.830014, 0.798957, 1.285507, 0.414290, -0.365950, 0.212305, 0.541625, 0.519255, 0.206425, 0.083886, 1.522180, 0.597596, 0.972386, -1.417210, -0.419069, -1.046872, -1.408441, 0.460918, 0.604269, -0.003579, 0.915099, 0.020660, 1.913400, 0.595366, -0.925062, 0.470077, -1.667605, -0.947630, -0.550432, -0.127000, 1.520927, -0.075824, 0.408459, 1.006025, -1.145472, -0.549303, 2.061292, 0.645890, -0.500019, -1.351231, -0.283737, 0.694273, 0.044929, 1.779419, -1.637010, 2.111714, 0.767379, -2.375297, 1.179533, -0.101051, -0.066479, -0.008702, -0.694684, 0.393051, 0.873756, -2.176816, -1.770323, 1.470756, -0.029126, 1.166746, 1.217988, 0.559861, -0.695957, -0.065061, -0.070542, 0.546533, 0.898012, 0.266859, -1.274410, 0.678097, 0.061996, -0.400796, -2.607193, -0.851315, -0.406411, -0.547298, 0.054909, 1.414761, 1.246948, 0.467590, 1.095844, 0.482120, 0.437341, 0.263228, 1.033184, 0.252267, 0.093054, 0.805185, 0.315904, -0.520940, -1.022251, 0.019651, 0.586666, -0.070927, 1.777155, 0.191013, 0.488259, 0.874730, -1.575678, 1.953128, -0.075579, 0.412057, -0.045897, -0.595760, -0.876899, -0.166518, 0.121110, -1.338137, -0.408745, -0.581085, 1.783476, 0.292805, 0.504644, -0.766789, -0.717569, 0.747268, 0.881905, -1.250172, 0.419696, -0.937994, -0.229856, -0.333113, -0.387024, -0.166988, 1.472329, -1.239947, 0.218135, -0.170028, 0.168799, 1.355003, -1.128460, 1.150250, -0.598744, 1.887246, -1.435522, 0.053824, -0.097469, -0.247719, -0.908708, 0.957033, 2.029927, -0.265685, 1.980939, -0.295662, -1.032470, -0.312848, 1.586759, 2.132348, -1.538381, 0.228691, -0.049835, -1.399582, -0.073877, -1.006920, -1.325234, -0.726887, 0.771350, 0.892443, -1.405279, -0.136513, 0.428208, 0.050376, -2.476303, 0.707187, 0.569651, 1.378333, -1.367301, -0.792259, 1.247573, 1.154033, -1.178072, 0.121984, -1.333111, 0.552416, 1.027333, -0.239504, 0.696476, -0.128553, -0.095029, -0.103731, -0.420336, -0.136789, -0.732562, 0.643649, -0.304384, 1.173717, 0.441279, 0.148747, 0.905687, -0.431355, -0.803931, 1.021063, -0.909395, 0.628105, -1.691992, 0.841441, 1.819508, -0.221426, -0.430381, -0.019026, -1.349211, 2.117701, -2.244253, -0.940768, 0.943783, -0.492540, 1.163696, 0.055375, 0.587787, -0.819144, 0.328868, 1.232107, -1.007656, -1.393181, -1.672471, 0.536193, -0.228995, -0.965492, 0.785634, 0.710431, 0.079519, 0.316411, -0.182454, 0.490831, -0.513063, 0.476037, 1.466525, 0.220559, -1.405481, -0.026434, 2.269587, -0.058644, 0.952468, 1.499490, 0.831637, 0.490270, 0.111448, -0.682964, 0.391554, 0.579796, 0.197869, -0.920101, 0.163704, 1.364783, 0.604521, 0.460194, -0.268582, -0.199590, -1.166637, 0.442435, -0.103673, -0.431949, 1.355813, -0.615516, 0.813909, 1.960588, -0.043940, -0.643737, 0.494287, -1.988429, 0.144331, 0.190850, -0.403714, 1.187951, -1.695865, -0.276980, 1.428582, 0.346514, 0.886400, -0.464825, 1.083113, 0.701988, -0.590220, 0.005318, 1.247763, -0.209317, 1.099862, 0.921660, 1.456642, -0.456111, 0.595674, 0.212764, -0.328237, -0.214248, -0.707355, -1.580833, -0.168709, 0.146383, 3.446459, -0.122041, -0.734542, 1.032795, 0.831277, -0.047282, -0.412163, 1.512903, 1.538750, 1.471705, 0.094461, 0.075108, -0.136330, 0.658774, 1.018835, 0.050999, 1.389396, -1.198546, 1.702388, -1.481226, 1.578812, -0.298361, -0.263696, 0.188468, -0.175714, 0.700729, 0.594524, 1.296757, -0.191567, 1.559525, 0.866800, 2.456388, -1.235216, 0.037084, -0.677195, -2.670623, 0.046851, 0.322372, -0.572669, 0.897736, 2.094399, 1.085917, 0.906435, -0.155260, -0.659601, 1.238277, 1.040122, 0.812068, -0.832285, -0.283456, 0.582074, 0.515003, -1.281442, 0.631931, 0.596915, -1.637752, -0.443029, 0.236002, -1.155528, 0.613431, -0.523756, 0.323791, 1.396541, -0.571049, 1.104737, 0.736704, 0.557855, 0.285693, 0.189533, 0.930596, -0.210904, -0.920275, 0.052844, 0.074781, 1.949393, -2.412667, 1.003973, -0.589588, -0.003506, -0.902035, 1.377478, -0.778610, -0.407606, 0.117293, -0.651661, 0.054945, -1.211458, 0.462582, 1.873424, 0.722806, -2.770347, -0.119273, -0.503750, 1.473681, 0.975476, -1.010413, 1.042296, 1.238433, -0.938008, -0.728560, 0.376925, -0.956081, 0.011466, 0.725805, 0.520027, 0.024736, 0.395166, 0.276382, -0.758967, 0.371791, -0.277016, -0.482217, 1.516854, 1.238215, 0.357917, 0.753775, -0.044133, 0.383709, 0.499183, 0.163549, -1.717057, -2.024710, -0.611703, 1.943177, 0.701638, 0.592317, -0.267938, 0.321441, -0.256890, 1.579996, 0.203618, 1.526209, 0.179004, -0.660084, -0.069916, -0.014608, 1.471248, -0.897747, -0.235631, 0.112548, -0.346779, -0.728746, 0.624949, -1.149650, 0.757305, -0.896338, 2.843814, -1.371808, -0.448464, 0.954617, -0.962784, -0.036211, 0.610669, -0.092109, 1.645823, -1.188056, -2.315273, -0.528662, -0.717103, -1.277390, 1.336446, -0.147532, 0.654006, 0.463884, -0.552874, 1.955063, -1.285863, 0.992872, -1.916208, -2.395226, -0.408732, -1.977409, 0.917685, 0.383861, -0.142092, -1.318711, 0.124619, 1.056977, 0.413814, 0.336144, 1.533921, 0.223313, 1.060642, -1.283249, -0.631323, -0.175790, 0.651299, -0.630352, -0.704957, 1.356616, -0.880676, -0.030906, 0.542885, 0.846886, 0.586080, 0.093319, -0.157209, 1.112800, 1.229595, 0.005031, -0.391875, 0.533880, -1.191926, -0.791639, 1.051172, 1.205914, 0.558227, 1.948544, 2.067349, 2.409107, 0.266498, 0.328651, 0.865006, 1.353431, -1.515322, -2.389339, 0.145200, -0.671403, -1.114850, -0.061807, -1.386645, 0.393648, -1.953225, -0.282228, -1.394624, -0.523367, 0.237623, -0.684228, -1.456224, -1.633033, 1.499257, -0.893801, -0.464386, -0.877572, -0.206085, -0.447041, 0.758949, 1.617575, 0.753378, -0.250988, 1.006753, -1.099142, 0.881237, -1.572938, -1.160119, 0.644720, 0.225622, -1.069600, -2.109837, -1.390318, -1.611650, -0.714760, 1.134972, 0.643940, 1.706788, 0.115340, -0.530326, -1.246605, 0.487469, -0.132878, 0.409373, -0.859713, 0.799765, -0.413604, 1.000953, 0.798361, -1.259677, 0.428005, -0.923447, 0.631390, -0.500858, 0.557168, -0.275840, 0.438324, -1.572771, 0.445342, 1.004666, -1.209943, -0.357591, 0.068273, 2.305620, 0.597706, -1.054057, -1.814628, -0.788999, -0.588640, 0.206967, -0.103477, 1.809712, 1.267682, -1.026873, 2.027195, -1.285425, -0.972916, 1.352830, -0.526871, 0.544960, 0.541204, 1.308058, 0.834290, -1.286143, -0.154372, 1.407742, -0.246564, 0.830907, -0.967135, 1.820153, -0.549792, -1.070620, -0.534266, -0.919116, -0.185253, 0.731539, 0.212810, -0.332154, -0.510626, -1.454790, -0.080025, -0.351333, 0.157283, -0.549266, -1.615344, 1.730455, -0.649297, 0.190744, -0.831886, -0.936667, 0.015948, 0.720576, -1.876699, -0.682965, -0.453794, -1.414689, 1.736050, 0.008561, 0.312144, 1.296210, -1.280944, -0.704392, 0.290724, 1.565238, -0.202578, 0.191801, -0.968651, 1.514850, -1.114058, -1.096789, -0.820385, 0.845176, 0.413650, 1.021525, 1.222043, 0.154778, 0.454504, 1.096233, 1.266801, 1.635947, -0.113073, 1.154464, -1.577966, -0.794192, 0.220213, 0.399331, -1.302455, -0.416022, -1.026614, -0.097876, 0.951085, -0.519640, 1.567650, -0.060696, 0.663175, -0.077574, -0.192225, -0.149003, -1.062935, -1.037653, 0.408102, 0.479170, 1.558305, 0.678527, -0.581692, 2.430110, 1.163041, -0.680079, 0.396466, -0.705365, 1.590397, -0.740765, 0.867322, 0.040142, -1.303725, -0.684827, 0.131530, -1.807243, 1.528909, -1.010846, 1.640436, -0.908713, 0.787411, 0.231352, -0.745874, 0.160292, -0.279531, 0.961012, -0.797647, 1.366180, -0.901171, -1.337296, -1.238572, -0.402956, 0.460458, 0.380735, -0.154166, 2.192153, 2.028020, 0.337790, -0.527919, 0.713404, 1.199757, -0.055861, 0.851719, 1.414778, -1.763312, -0.001033, -0.542141, 1.378675, 2.086765, 2.305128, 0.547403, -0.851679, -0.333418, 0.070833, 0.965707, 1.560105, 1.510050, 2.643993, -0.706800, 1.003849, 1.358109, 0.846680, 0.901954, 0.112089, -0.836486, -0.064886, 0.430954, 0.607838, 0.375196, 0.289134, 0.330539, -0.097550, 1.617773, 0.903045, 0.742820, 1.826865, 0.926677, -0.718733, -1.047407, -0.886977, 0.369895, -0.606141, -0.572282, -0.479812, -0.218184, -1.774815, -0.805873, -0.730471, 0.823628, 1.142655, -1.514761, 1.791532, -0.234077, 0.955067, -1.358827, 0.616646, -1.283117, 0.877659, -1.940242, -1.246764, 0.640437, 1.130462, 1.001348, -1.680912, 0.409822, -1.666909, -0.030885, -0.516816, -1.856195, 1.018544, -1.724585, 0.522068, 0.700098, -1.143859, 0.572873, -0.961349, 0.820750, -0.010485, -0.116311, 0.203981, 0.590563, -1.003838, -0.787620, 0.344983, 1.350685, 1.458603, 0.420328, -0.033227, 1.323458, -1.059601, -1.720771, 0.709019, 0.913253, -0.470768, 1.742693, -1.082031, -1.177111, -1.998001, -0.563768, 0.971397, 0.067253, -0.101241, -0.186177, -0.508653, 1.322866, -0.055172, 0.618867, -0.008830, 0.975024, 0.869386, 1.234461, -1.351817, -0.236427, -1.868688, 0.786276, -0.265823, -1.178222, -0.578450, 0.256279, 1.031529, -2.289628, 0.553063, -0.661698, -0.990158, 0.396663, -1.957404, 0.999205, -0.109836, -0.985665, 0.083380, -0.534359, 0.222067, 1.084438, -0.862686, 1.312481, 0.760783, -0.581048, 0.268677, -1.480391, -0.107075, -1.184436, -0.048022, -0.344521, 1.393321, 0.044444, -0.383481, 1.147731, 0.360637, 1.734339, 1.802311, -0.726881, 0.249944, -0.373506, 0.898014, -0.964003, 0.876672, 0.426642, -0.194719, 0.564961, -0.697050, -0.312073, 1.120262, 0.044470, 0.470137, -0.122352, -0.604833, -0.349258, 0.833419, 0.169384, 1.268513, 1.729769, -0.236001, -0.233723, -0.580897, -1.161469, -0.365901, 0.312669, 0.887875, 1.546978, -0.890675, 0.862030, -1.636754, -1.424074, 1.165398, -0.158082, 0.288339, -0.451497, 0.285630, -0.240152, 1.615812, 0.680265, 1.595659, -0.756025, -1.018565, 2.034748, -0.485651, 0.994230, -0.604563, 1.064825, 1.926302, 0.336396, 1.088176, 1.708239, 0.502367, 0.116351, 0.103977, 0.588522, 0.063292, 1.254127, 0.304198, 1.096845, 2.508130, 1.049502, -1.006886, -1.027467, 0.397627, -0.794067, 0.662102, 0.864420, -0.024122, 0.505713, -1.151320, 0.891628, 0.202978, 1.682321, 0.795602, 0.633982, -1.115798, -1.693797, 0.127936, -0.077949, 3.344180, 0.242363, 1.002810, -0.503455, -0.550001, -0.147092, 1.216906, -0.316945, -0.260383, -1.388100, -1.169067, -1.270534, -0.625484, 1.227430, 0.935123, 0.037409, 0.372030, -0.154392, -0.684856, -0.208470, -0.657843, 0.125208, -0.582134, 0.382061, 0.860177, 0.611998, -0.317250, 1.057534, -0.342993, 1.550719, -0.594171, 0.035464, -0.591165, 1.047574, 0.960892, -1.699322, 1.535361, -0.667340, -0.900123, 0.201211, 0.033034, 0.346498, -1.110052, 0.407570, -0.038033, 0.250053, -2.031626, 0.315210, 0.641723, 0.562864, -0.090892, -1.308061, 1.533030, 1.242754, 0.098800, -0.646152, -0.523367, 1.535242, 1.043365, -0.850727, -0.521824, -1.078189, 0.648358, -1.514060, 0.725995, 0.384459, -1.331182, -0.760957, 1.403442, 0.563748, -1.040899, -0.193141, -1.567497, -1.193108, 0.190353, 0.552560, -1.074500, 0.653699, 0.819858, 1.906865, -0.750278, 0.314379, -0.029354, 0.286899, -0.536086, 0.059802, 0.380686, 1.620046, -0.571762, 1.314672, -1.293426, 0.307908, 0.419348, 0.371080, -0.928048, 0.122027, -2.604293, 1.059884, 0.027451, 0.903947, -0.272890, 1.052297, -0.386181, -0.983350, -1.723490, -1.499208, -0.251930, -1.946835, -0.064450, -0.491760, 1.573286, 0.032768, 0.013694, -1.061894, -0.974271, -1.146702, -0.716149, -0.752461, 0.653892, 1.547198, 0.103832, 0.698579, 0.671568, 0.478396, 1.627655, 0.271561, 1.359593, -0.324283, 1.696703, -0.258062, -0.728895, 0.863040, -0.091661, -3.772455, 0.230892, 0.292104, 2.534233, -0.102419, -0.913761, 0.931531, -0.155057, 1.769632, -0.535695, 0.382460, 0.152282, -0.467083, -0.668859, 0.105002, -0.660106, 1.467721, -2.155798, -1.704149, 0.336524, 0.662871, -0.103230, 0.879865, 0.516020, 0.295518, -0.013646, 1.164235, -1.102249, -0.198510, -0.366394, -0.628972, 1.193508, -0.151948, -0.271104, -0.145160, 1.066895, -0.149989, -1.064653, -0.525015, 0.144321, -2.076643, 1.067538, 0.170173, -0.818574, -1.257330, -0.471032, -0.086021, -1.968988, -0.577781, 2.044721, 0.206383, 0.607284, 1.592395, -0.679272, 2.263664, -2.147050, 1.049730, -0.600864, -1.215987, -0.982422, -1.701561, 0.923156, 0.597927, 0.614331, 1.865459, -1.263711, -0.680304, -0.845397, 0.711188, -1.246963, -0.683299, -1.446251, 0.976431, 0.345499, 0.951938, -1.102222, -1.069594, 0.055713, -0.192610, 2.048524, 0.161287, -0.153846, 0.644674, 0.279740, 0.610724, -0.395827, -1.502689, 1.101688, 1.885468, -0.833984, -1.900289, 0.050612, -1.994453, -0.851452, -0.404429, -0.258913, -0.406011, -0.073366, -0.044755, -1.064263, 0.507616, 0.948567, 1.255216, -0.455703, 1.300927, 0.413346, -0.719824, 1.005476, -0.324980, -0.180993, -0.995937, 0.297535, -1.116001, -0.872563, -0.451288, -0.347697, 1.236664, -1.293019, -1.524871, 0.372686, 0.408280, 0.442732, 0.212313, 0.551812, -0.306874, 0.456919, 0.395687, -0.775057, 0.045567, 1.546288, 0.759643, 2.396427, -0.557435, -1.166623, 0.799720, 0.351509, 1.172748, -1.392950, 0.735341, 1.069346, 0.229549, -0.953077, 1.005276, 0.663233, 0.132659, -0.214504, -2.755625, 0.994023, -0.486711, -0.309840, -0.861233, 1.559172, 0.136010, 0.334843, 1.440723, -0.000989, 1.111148, 0.120530, -0.331084, -0.365218, -0.824321, -0.869514, -0.083013, -1.126565, 0.672072, -0.459549, -0.767582, 1.208314, -0.446348, 1.161726, -1.721873, -0.679274, 0.028978, 1.341399, -1.245065, 0.317287, 0.321357, 0.079317, -0.716698, 1.170179, 0.237163, 0.675552, -0.166115, 0.407111, 0.399885, -0.968576, 0.681371, 0.598661, -1.752539, -0.173853, -0.020455, -0.382180, -1.068781, -1.096903, -0.225546, -1.855226, -0.748854, -0.070013, 1.912014, 0.588166, 0.074576, 0.592623, -0.314434, -1.202972, 0.241658, 0.100086, -1.498520, -0.707393, -0.846801, -0.742180, 0.590103, -0.524420, 0.919087, -0.822203, -1.158576, -0.899081, 0.648302, -0.917771, 0.299502, -0.398934, -0.573695, 0.978786, 0.304536, 0.903239, 0.655523, -1.492181, 0.154611, -0.171831, 0.740646, -0.143299, -0.483662, 1.385643, -1.079088, 0.177135, -1.194415, 0.830433, -1.193854, 1.845001, -0.396713, 0.032579, 0.471722, -1.786436, 0.890630, 1.617960, 1.248826, 1.158249, -0.032984, -0.356479, -0.821236, 1.848518, 0.505010, 0.113255, -0.600625, -1.074236, 0.526376, 0.223529, -0.064476, -0.152476, -1.299967, 0.121514, 0.633766, -1.049633, -0.465552, -1.145384, 0.276140, 0.259913, -0.046988, -0.515279, -0.310216, -0.142159, -1.217004, -0.804346, 0.823779, 0.673845, 1.646384, 0.531953, -1.010857, 0.896076, -1.067919, 1.282693, 0.461994, -1.065891, -1.117791, 0.369392, -0.782354, -0.158739, 1.103918, -0.254131, 1.109031, -1.705459, -1.135567, 1.165624, -2.075440, -0.058033, 1.362951, -0.755137, 0.971397, -0.016074, 1.099171, -0.710694, 0.461655, 1.444956, -0.747823, -2.926803, 0.770790, -0.063315, -0.539705, -1.823800, 0.689401, 0.735259, 0.319308, 1.269656, -0.682643, -1.140455, 0.623030, -0.749413, -0.874429, 0.118068, 0.048593, -0.680377, -0.645648, -1.434522, -0.360171, -1.977347, -1.589783, -0.201440, 0.626622, 0.223287, -1.358728, -0.351137, 0.609879, 0.723918, 0.848012, -1.229136, 0.509654, -0.234734, 1.237493, 1.174296, 1.377581, -0.630168, 0.851766, -0.958202, 0.514781, -0.729680, 0.817819, -1.662856, -0.595757, 0.462144, 0.613390, 1.107780, -0.658617, 0.498097, 0.549595, 1.972459, -1.004603, -1.881727, -0.726333, 0.791114, -0.202812, 0.055109, 0.761539, 1.179312, -0.531588, -0.748678, 1.684076, 1.143644, 0.161425, -0.932355, -0.394319, -0.289218, 1.400532, -1.612496, 0.241063, -0.201612, 0.827243, -0.108612, -0.114052, 1.354226, 1.432404, -1.608047, 0.473381, 1.027832, -0.709460, 0.365425, 0.070829, -0.665322, -1.205278, 1.123336, -0.735939, 0.226728, 1.492900, -0.933165, -2.980941, -0.732041, 0.192348, 2.012847, 0.270914, -0.280728, -1.110859, -0.704557, -1.215169, -0.044518, -0.222197, -0.713530, 0.023918, -0.027181, 0.708304, -0.549459, 0.492234, -0.338531, -2.626127, -0.720413, -2.854406, 0.786457, -1.835711, 1.135623, -1.766952, 1.192702, -0.183353, -0.697780, -0.404982, -0.209856, 0.747576, -0.179077, -0.826658, 0.211499, -0.949399, -1.093148, 0.763003, 0.368006, 0.616929, 1.799301, -0.248912, 0.815946, -2.082269, -0.233851, 0.480418, 0.433150, 1.435929, 0.674256, -0.821936, -1.744937, 1.349838, -1.143740, -0.042019, -1.068779, -0.036604, -0.826578, -1.269788, -0.163324, 0.980576, 0.145160, -0.168131, -0.299735, -1.432980, 2.077291, -0.623178, -0.946511, 0.013062, -1.109483, 0.853656, -2.031153, -0.035052, 1.027674, -1.615746, 3.277532, -1.530270, 1.090109, -0.919569, 0.758519, 2.209165, 0.194935, 0.533125, 0.905261, -0.647402, 0.093282, -1.119283, 1.824330, -0.971285, -0.928625, -0.855520, -0.140929, 0.151129, 0.639285, 0.727474, 0.934177, 0.163255, -0.077864, 0.140581, -0.190447, 0.106935, 2.394971, 1.526551, -0.111116, -0.327693, 0.531850, -0.906037, 0.309561, -0.716739, 0.578917, 0.355348, -2.203720, 0.195933, 0.660357, -1.340626, 0.395982, 0.019702, -0.258033, 1.631359, 0.232673, 1.084207, -0.524542, -2.116215, 1.392312, -0.102300, 0.781665, 1.136476, -0.213952, 0.728676, 0.621558, -0.023629, -2.278256, 2.337897, -0.810747, 1.760615, -0.853349, -0.594865, -1.097098, -0.030849, 1.177287, -0.568098, -1.555266, -0.547187, -0.466962, -0.304102, -1.745990, 0.457723, -2.220311, -0.004086, -0.285437, 1.551086, -0.453740, -1.330529, 2.456252, 0.326602, 0.895571, 0.666339, -0.732530, -2.124988, 0.915875, 1.982891, 0.257027, -0.239658, -0.522056, 1.463049, 0.467841, -0.402214, 0.055518, -0.324530, 1.333185, -0.318277, 0.146713, 1.087032, -0.330806, 0.764165, -0.577693, 0.693955, -0.448005, 0.900752, -0.427641, -0.877528, 0.264105, 0.729760, -0.714564, -1.728755, -1.856451, -0.684253, 0.446021, 1.480096, 0.986339, -1.027836, 0.502443, 0.835218, 1.092301, -0.705589, 1.796223, 1.050501, 0.100831, -0.395559, -1.775399, 0.691389, -0.214155, 0.736650, -0.632579, -0.085798, 0.167135, -0.374284, 0.087788, -1.962084, 1.509764, -0.910973, 0.496838, -0.505171, 0.626436, 0.276608, 0.033155, 0.548369, -0.355129, 0.724806, -0.938911, 0.730872, -0.139884, -0.352924, 1.209760, -2.784087, 1.582661, -1.541018, 0.120211, -0.319449, 0.290768, -0.453909, -0.719737, -1.028474, -1.322815, 1.617754, 1.243056, 1.668473, 0.719025, -0.790461, 0.213352, -1.156175, -0.240148, -1.699316, -0.465595, -2.036089, 2.570208, 0.524211, -2.019296, 0.675555, 0.294202, 0.627027, 0.029701, 0.209171, 2.119109, -0.837285, -1.555292, -1.214675, -0.778165, -0.730934, -0.220054, -0.572724, -1.244467, 0.899617, -1.774891, -0.501535, 1.232534, 0.249357, 0.724067, 0.299136, 1.117942, 1.226046, 0.409235, -0.231697, -0.592938, 0.226446, -1.561394, 0.228419, 1.810575, -0.327771, 0.819889, 0.158609, 0.342542, 1.094945, 0.343868, -0.858801, -0.777628, -0.887488, -0.096936, -0.793064, -0.305448, -0.716926, -0.696180, -0.129663, 0.246629, -1.211957, -0.055691, -1.139108, -0.274116, -0.996722, 0.128087, -0.160157, -0.741477, 0.078587, -0.221049, -0.480052, -1.808400, -1.180372, -1.117711, -0.595097, 0.741232, 0.311395, 0.490400, -0.083445, 0.234577, -0.503631, 0.461917, 0.099144, 1.048437, 0.564109, 1.520398, 0.015736, -0.709918, -1.858296, 0.443715, -1.230118, 1.172389, 1.223183, -1.077773, 1.593823, -1.943502, 1.225823, 0.026566, -0.199898, -0.059304, 3.115885, -0.439566, -1.177517, -0.211195, 0.608833, -0.922508, 0.283197, 1.771180, -0.554386, 0.073628, 1.094411, 1.877895, 1.245303, -0.636822, -1.386112, 1.222266, -0.743528, -0.318297, -0.295041, 1.103942, -1.514988, 0.791654, 1.226119, 0.879487, -0.461865, 1.663185, 0.104435, -0.101085, -0.766770}, + { 0.689951, 0.097325, -0.842049, -0.408984, 0.681186, 0.431712, -0.574087, 0.153478, 1.313640, -0.851003, -0.033713, 0.634940, 0.363657, 0.784135, 0.926034, -1.200096, 0.831650, 0.371080, -1.426944, 1.458924, -0.105939, -0.756442, -2.004988, 0.770335, 1.108040, -2.033500, 0.312406, -0.534367, -0.031998, 0.559736, -0.961870, 0.932116, 0.687371, -0.400492, 0.507023, -0.341746, 0.965531, -0.048065, 0.375511, 1.402407, 1.079850, 0.406902, 1.444163, -0.033590, 0.275076, 0.263476, 0.054831, -0.794711, -1.773072, 0.029096, -0.901910, -1.457686, 1.229610, 0.042231, 1.098095, 0.186009, 1.943123, -1.130041, 0.269797, 0.755049, 0.417993, 0.333036, -0.329134, -0.693672, 0.511281, 0.268551, -1.040382, -1.149143, 0.502747, 0.067995, -1.342633, 0.436317, -0.314542, 0.488527, 0.920689, -2.299440, -1.353595, 0.015131, -0.671603, -0.018836, -1.529278, 1.005406, 1.503572, -1.575159, 0.413875, -0.287277, 2.131307, 0.870388, -1.705459, -1.411482, 1.323493, 0.869190, 1.635208, 0.637823, 0.630954, 0.578550, -1.111362, 1.848269, -0.947274, 1.111124, 1.254176, 0.210646, -0.164543, -0.523212, 0.671140, -1.610833, -1.249851, 0.533944, 0.196678, -0.734848, -0.156679, -1.202376, 1.310191, 1.402138, -1.031699, 0.438359, -0.126641, -1.756959, -0.898102, 0.084334, -0.126336, 1.198977, -1.002284, 0.889119, 0.139882, 1.493109, 0.537658, -0.732972, 2.012621, -0.502716, -1.080049, 0.457279, 0.674679, 0.076529, -0.745520, -0.158427, 0.375695, -0.601720, 2.490990, -0.445907, 1.225331, -0.961198, -1.169462, 0.154979, -1.580261, -0.734533, 0.294848, 0.850115, 0.247139, -0.294829, -2.265285, -1.089797, -0.588404, 0.475075, 0.647060, 0.169229, 0.249568, -0.208935, -1.153369, -0.845720, -0.371088, -0.662505, 0.123438, -1.839646, 0.699477, -1.214284, -1.246900, 2.034276, -1.397566, 1.146364, -0.028732, 0.512021, -0.888734, -0.122492, -1.622697, -0.834302, -1.547315, 1.126431, -1.158501, -1.691902, -0.650445, -1.907658, -0.027434, 1.058581, -1.730337, 1.705516, -0.687672, -2.149556, 1.591849, -0.293423, 1.101824, -0.625354, -0.186441, -1.600639, 0.429803, 0.868616, -1.646954, 1.413395, 1.753749, 1.716950, 0.101521, 0.937510, 0.457540, 0.202797, 2.227267, 0.334415, -1.323006, 1.549792, 0.196139, -1.021303, -2.404240, -0.785139, -1.401868, -1.681349, -0.091364, 0.031759, -2.506438, 1.650650, 0.292867, -1.181819, -1.076227, -1.223304, 0.246239, 0.646191, -1.189787, 0.294281, 1.147983, 0.413658, -0.235058, 0.414948, -0.837366, 1.328595, 0.388871, 0.532362, -0.004196, -0.971951, 0.406416, 0.208283, -0.517296, -1.595229, 1.520931, 2.184674, 0.283389, -1.169685, 0.856360, 0.690161, 1.157026, -1.294999, 2.405818, -1.000748, 0.547409, -0.779746, 0.297089, -0.357001, -0.585580, 0.549026, 0.171888, 0.298578, -0.350796, 0.310001, -0.497194, 0.098578, -1.898388, 0.975992, -2.216721, 0.995036, 0.364646, -0.974152, -0.316486, -0.955412, -1.513883, -1.036198, 0.313992, -0.639762, 0.794014, -0.212252, -0.767540, 0.520552, -0.982692, -0.920780, -0.048713, 1.626255, 0.282115, -0.777698, -0.835181, -0.418324, -1.680892, -0.934136, -1.537712, -0.113042, -0.060567, 2.078120, 0.544885, -0.647449, 0.950259, -0.272968, -0.078856, -0.524596, 0.843698, -0.075209, 1.782109, 0.564126, 2.029315, 0.111872, 0.599726, 1.980710, 0.662641, 0.566985, -0.355790, 0.326389, 1.348127, 0.985709, 0.230372, -0.374585, 0.889464, 1.538096, -0.545130, -0.357992, 1.251312, 0.631189, 1.612237, -2.079338, 0.015839, -0.134100, 1.345410, 0.490089, -0.424754, 0.760101, -0.493129, -1.728163, -0.579848, 1.294129, -1.945330, -0.149489, 0.054411, -0.164451, 0.393074, -0.835098, 1.108992, 0.424708, 0.006197, 0.540134, 0.073163, -0.270356, -0.866458, -0.806532, 0.701126, -0.125671, 0.992588, 0.676596, 1.043440, -1.011311, 0.075780, 0.453422, 2.106599, -0.241383, -0.619887, 0.623556, -0.498441, 1.641868, -0.887002, 0.218399, -0.210046, 2.037644, 1.125943, -0.249855, 0.684336, -0.159822, -2.276832, -0.780667, -1.900090, 1.240956, 1.778817, 0.888939, -0.852585, -0.751947, -0.045643, -0.484234, 0.675671, 0.444654, -1.022348, -1.149806, -1.031918, -0.324696, 0.656732, -0.258560, 0.986993, -0.772448, -0.217280, 1.702929, -0.201151, 0.452720, -1.056508, 1.474309, 1.341681, -0.958542, 0.635343, -0.555497, 2.146910, 0.826012, -0.544909, 1.457129, -2.649341, -0.169285, -1.786415, -0.786847, -1.254448, 1.459025, -0.254798, -0.366311, -0.742762, -2.138465, -1.182953, -0.184985, -3.140683, 0.375086, -0.189853, 0.684027, -0.744228, 0.826484, 0.455434, -1.718065, 1.518439, 1.249987, -0.523672, 0.211889, 0.684187, 0.355597, -0.027999, -1.737903, 0.849408, 0.461129, 1.120344, 0.424578, 0.528711, -0.055951, 0.291723, -0.779995, 0.151308, -0.634254, -1.199173, 0.108834, 0.550735, 0.381578, 1.151941, 2.402412, -0.177042, -0.228641, -0.339709, 0.766508, 0.767482, 1.088771, 0.052341, -0.169850, 0.856926, 0.346416, 0.623490, 0.867838, -1.582609, 1.580532, 1.158016, 1.064035, 0.987111, -0.544885, 1.192940, 0.394496, -0.212381, 0.191806, -0.255303, 0.491913, 0.494330, 0.767965, 0.836769, -0.740160, 0.041891, -1.748031, 0.422618, -1.368583, 0.201665, 1.486212, -0.336275, -0.562319, 1.679778, -1.023449, 1.101054, 0.108002, 0.365185, -0.200283, -0.775822, 0.247592, -0.800007, -1.416423, -0.280428, -0.196346, -0.617912, 0.740562, -0.076115, 0.662654, -0.968496, 1.273145, 0.082485, 2.339176, 0.672833, -0.376356, -0.170802, 1.277735, -2.182541, -1.006511, -0.561782, 0.439777, 0.106182, -2.161812, -0.548316, -0.208754, -0.135248, -1.427445, 0.149820, -1.952311, 0.522910, 1.175716, -0.470227, 0.620100, -1.549889, 0.354314, 0.733683, 0.121963, 0.961040, 0.121256, 0.216021, 1.257174, -0.037237, -1.156936, 0.251176, 0.395304, -1.017317, -0.744162, -1.268397, 0.614057, -0.699220, 0.012200, 1.765265, 1.458704, -1.509709, 0.406552, 0.716127, 0.851425, -1.653791, 0.699570, 1.925062, -1.628428, 1.492858, 0.441321, 0.219389, 0.091819, 0.612288, -0.361136, 0.142359, -0.515524, -1.096450, -0.260036, 0.466881, -0.531250, 2.186645, 0.087140, -0.575417, -0.879779, -0.794964, 0.693024, -0.075257, -1.420365, 0.218337, 0.059935, -1.002202, 1.266697, -0.341917, 0.187407, -0.205643, 1.535496, 0.018877, -0.603322, -1.064602, -0.515364, 0.793993, 0.322875, 1.075979, 2.021308, 0.864498, 0.572107, 0.838082, 1.576862, 0.979788, 1.207642, -0.382269, -1.507238, 1.256837, -0.535220, 1.090951, -0.761628, 0.814542, 1.118759, 0.785260, -1.302554, -1.003707, 1.032231, -1.104005, 0.563237, 0.801158, 0.402821, 0.572866, -1.589107, -1.475629, 1.309771, -1.013358, -0.359048, -1.917231, 1.301166, 0.304311, 0.134104, 0.693582, 0.226595, -1.053878, 0.374178, -1.396904, 1.537522, -0.722396, 1.115089, 0.192487, 0.591805, 0.297311, 0.495835, -0.059763, 0.710920, 0.688616, -1.242882, 1.064096, 1.164572, -0.381910, 0.333554, -0.165045, 1.385929, 0.118782, 2.058575, 0.752836, 1.546412, 0.421473, 0.388646, 1.197587, -1.006244, 0.061473, -0.052546, 1.931221, -1.155875, 1.083126, -0.481900, -0.173046, 0.266837, 0.538307, 1.738582, 0.138797, 0.302340, -0.208745, 1.494761, 1.121132, 0.676848, 0.799758, 0.091338, -0.121311, 1.291842, 1.227370, 0.100644, 1.029869, -0.356102, -2.536334, 0.017960, 0.747882, 0.820157, 1.579158, -0.239047, 0.625578, 0.287629, 1.486529, -0.897932, 1.621744, 1.505213, -2.509670, 1.147579, -0.531808, -0.303608, -0.027603, -0.229468, 0.769872, 0.127854, -0.570592, 0.020179, 0.220692, -1.323555, -0.059471, 0.879047, -0.278977, -0.780658, 2.081504, -0.644623, 0.702622, 2.190915, 1.435745, 0.251836, -0.189986, -0.513796, -0.645874, -1.168766, -0.004392, -0.363151, 0.763016, -1.795154, -0.731690, -0.755075, 2.421360, 0.829916, -0.135463, -0.607727, -1.120921, 0.315364, -1.230479, 1.653468, 0.319027, 0.204565, 1.467268, 0.456773, -0.851812, 0.213705, 1.676578, -0.285764, 0.301515, 1.332813, 0.600311, -0.476211, -0.137864, -0.823748, -2.163814, 0.450754, -0.239860, 0.503297, -1.392177, -0.549346, -0.320510, -1.252463, -1.234705, 0.296886, 0.001639, 0.974450, 0.811300, -1.426436, -0.296600, -1.480214, -1.838463, 1.361903, 0.378138, 0.683977, -1.236287, 0.972597, 0.883192, -0.817253, 0.349986, 2.450875, -2.369201, -2.049398, -0.804404, -0.242203, 0.236606, 1.158959, -0.073065, 1.111717, -0.238728, 1.079087, 0.028575, 0.594414, 0.649470, 0.648669, 0.684385, 0.067773, 0.427567, -0.716782, 1.404021, -0.115824, -1.273082, -2.014765, 1.929856, -0.255229, 0.759660, 0.263310, -1.848238, 1.487085, -0.567849, 0.780816, -0.866246, -0.295951, 1.953309, -0.274259, -1.010306, 1.530594, 0.620051, -0.096109, -0.168808, 0.150951, -0.627841, -0.589723, -0.356848, -2.310044, 1.103195, 2.360602, 0.062967, 2.556126, -1.037190, -1.382720, 0.606276, 1.624485, 0.484098, 1.379322, -2.310276, -0.236863, 0.602291, 1.895646, -1.477609, 1.495901, 0.504772, -0.444953, 0.048502, 1.356260, 0.725614, 1.486398, -1.264815, -0.473068, -0.371919, -0.589942, 0.128515, -1.200270, 0.517064, 0.676906, -0.657623, 0.820499, -0.711324, 0.635742, -0.639673, 1.414845, 0.047139, -0.017878, -1.020773, -2.526667, 1.287521, 0.717717, 0.959860, -1.130456, 0.946305, 0.704199, -0.281039, 0.137291, -1.262645, -2.493693, -0.062852, -0.705149, -1.149192, 1.416286, -0.480593, -1.014492, -1.023887, 0.822643, 0.644911, -0.211240, -0.926601, 0.774906, -0.123407, 0.141567, -0.892026, -0.396529, -0.881941, -0.203568, 0.110894, 3.105673, 0.003495, -0.922527, 0.633054, -0.586052, 0.179168, -0.146498, 0.591064, 0.480728, -0.457135, 0.440798, -0.411088, -0.523075, -0.934501, 1.007854, -0.212754, -0.204960, -0.657488, 1.611085, 0.705908, 1.407740, 1.056035, -0.865148, -0.143939, 0.106342, 0.055493, -0.383948, 0.984916, -0.150570, 0.470642, 0.691638, -2.718007, -1.176383, -0.891762, -0.525282, 1.187093, 0.429278, 1.726022, 0.012820, -0.625768, -1.200608, 1.957109, -0.941112, 1.144450, -1.827447, -1.078862, 2.438508, -0.642301, 0.007786, 0.530299, 1.263526, 0.418815, 0.948315, -0.227298, -0.793847, 0.691715, 0.041646, 0.681119, 1.270043, -1.327954, -0.484842, 1.424195, -1.109722, -0.159692, 0.874995, 0.130359, -0.935802, 0.028840, 0.575948, -0.032305, 0.568211, 0.742064, -1.990100, 0.840136, -1.255754, -1.452344, -0.147453, 0.506626, 0.041868, 1.424585, -0.722389, 0.041051, -0.666766, -1.011511, 1.511575, -0.787040, -0.790681, -0.956542, 0.626786, 1.726152, 0.510006, 0.923796, 1.032875, 0.513635, -2.553805, 0.364535, 1.132312, -1.804569, 0.399767, 0.054799, -1.521679, -0.401453, 0.044042, -1.831755, 0.155594, -0.748367, 0.001518, 1.972288, -0.053589, -0.501293, -1.346921, -0.129338, -0.562946, -0.918586, 0.702406, 1.186264, -1.062100, 0.809271, -0.918817, 0.202526, 0.702233, -0.536687, -0.584059, -0.398902, 0.765598, -0.658668, -0.306280, 1.355754, -0.529804, -0.341567, 0.307767, 0.677244, 0.613362, -0.833459, -0.740232, 0.538345, -0.613070, -0.978365, -0.297489, 0.180805, -0.181251, -1.378169, 0.055562, -0.160816, 1.337232, -0.687753, -2.501628, 0.493473, -1.618955, 1.936835, 0.967083, -0.466566, 0.766623, 0.662131, 1.018864, 1.967128, -0.460887, 1.665411, 1.033160, -0.145536, 1.289797, -1.046282, -1.369588, 1.851337, 0.128872, -0.188017, -0.525318, 0.055145, 1.856867, 0.166017, -0.706766, -2.313396, -0.946809, -0.162566, 0.148104, -1.655266, -0.480423, -0.186119, -1.706330, 2.677828, 0.671232, 0.676647, -0.270442, 0.061081, -0.224509, 0.528219, 1.092839, 1.327743, 0.451997, -0.569849, 0.254065, -0.221835, -0.159471, 0.534886, -1.036622, -0.934938, -0.403508, 0.947760, -2.413657, -0.529632, -3.518771, -0.614162, 0.796558, -0.012038, 0.319317, -0.663647, 0.967605, -0.143816, 0.319052, 0.084799, -0.587701, 1.410346, -0.264971, -2.232334, 0.135336, 0.963922, -0.809729, 1.572595, -0.407254, -0.122816, -0.245609, 0.859615, -0.629885, -0.893999, -0.615149, -1.866086, -0.211278, 1.048110, -0.899428, 0.653544, 0.223033, 1.338657, 0.975614, 0.848968, -0.903068, -0.895025, -1.147771, 0.979434, 1.089331, -0.134982, -1.813801, -0.203818, -0.431249, -1.030787, 0.363526, 0.336111, 1.125790, 0.511567, -2.156148, -0.022344, 0.511465, -2.458836, -0.561654, 0.685231, 0.890424, 0.326576, -0.915420, -1.477009, 0.049069, -2.777364, -1.107728, 0.473764, -0.356226, -0.209892, -1.305071, 2.297559, 0.007586, -0.477850, -1.209193, 2.437358, 0.673404, -0.313004, -0.629245, -0.008791, -0.201551, -1.665222, -0.117304, -0.017763, 1.321082, -0.607701, 0.361099, -0.407215, -1.353533, -0.404353, -1.718252, -0.563913, 1.225477, -1.522315, -0.431783, -0.793643, 0.195019, -0.229563, 1.363223, -2.131078, -0.142930, -0.559743, 0.331740, 0.096874, 0.846838, 2.282031, -1.967080, -0.412563, -1.370682, 0.426974, -0.164373, -0.172370, 0.173863, 0.659006, -0.106026, -0.780781, -1.142493, -0.780159, -1.046248, 2.660763, 0.198689, -1.165937, 1.556963, 0.136510, -0.482644, -0.249452, -0.828123, 0.898070, -0.600479, -0.054621, 0.882806, 0.324823, -1.185672, 1.566899, 0.165478, -0.279222, 0.024702, -0.115087, -0.302168, -1.511801, -0.315636, -0.066304, -0.946190, 0.938942, 1.837181, -0.422219, 0.057165, 0.549397, 1.205996, -0.957544, -1.536323, -0.483584, -1.170062, -0.926848, -0.430654, 1.581395, -0.518038, 0.935770, 1.254127, 0.178089, 0.203655, 0.261586, 0.062107, -2.089841, -0.714563, -0.605176, -1.277198, 0.902273, -0.002155, -0.692019, -0.391753, 0.925146, 0.634683, -0.370590, -0.620713, -1.964169, -0.143595, 0.657318, -0.526561, -0.833524, -0.217829, -1.072824, -0.220489, -1.422366, -0.308954, -0.148304, -0.280740, 0.802444, 0.829230, 0.519280, 0.922508, 0.306362, 0.697459, -1.468117, -0.012703, 0.212841, -0.377306, -2.176012, -1.094402, 2.020101, 1.120107, 0.918825, -0.167031, -0.647291, -0.759218, 0.344466, 0.786638, -0.241205, -0.355834, 0.069892, 0.606373, 0.697831, 1.725827, 1.032838, -1.722355, -0.671316, 0.999247, -0.962374, 1.379095, 1.612645, 1.459141, 1.556968, 1.585498, -3.151633, -0.114706, -0.185889, -0.728116, 2.369860, 0.712221, -0.246149, -0.442294, 0.745291, 0.615263, -0.671254, -0.630518, 1.009828, -0.709764, -1.163608, 0.481831, -1.160363, 2.209230, -0.365026, 0.420480, 0.350655, 0.476352, 2.650240, 0.475697, -0.125365, 0.018619, -1.398115, 0.303437, 1.336541, -0.423916, -0.783772, 0.544236, 0.244661, -1.407908, 1.927236, -0.119040, -0.044053, -0.156227, 0.618746, 0.658073, 0.896918, -1.494020, -0.645091, 0.070294, 0.104391, -0.529914, 1.384208, 1.843973, 1.561845, -0.370182, -0.195020, -1.277415, 0.299448, 0.620786, 0.577719, -1.003523, -1.381766, -0.258438, -0.257932, 0.434490, -0.320915, -0.705110, -0.811845, 0.405571, 1.544974, -0.619623, -0.527351, -0.147414, -1.136473, 0.285752, -0.259591, -1.401924, -0.217241, -0.008307, -1.197842, 0.365585, 0.029320, 0.280738, 0.755116, -0.949056, 1.016546, -0.782295, -0.173897, -1.507983, 0.700204, 1.636836, -1.015340, 1.655845, 0.756329, 0.937876, -0.421995, -1.837983, -1.179858, 1.532997, 1.784707, -0.295226, 0.620657, 0.392981, -0.374932, 0.551260, 1.432416, -0.978373, 0.646885, -0.180465, 1.124926, -1.300982, -0.623740, -1.019707, -0.045381, 1.889375, -0.473028, 0.640459, 0.662821, -1.809385, 0.163778, -0.617824, 0.042024, 0.086220, -0.474637, 0.803472, -0.416286, 0.296489, 0.824755, 0.624393, -0.311561, 1.394036, -1.291485, 0.225611, -2.085091, -0.481727, 1.666851, 0.807123, 1.517455, 1.078587, -0.310616, -0.414556, -0.323790, 0.676409, -0.633905, 1.680565, -1.117972, 1.486107, 0.345268, -0.431747, -0.352119, 1.991086, 0.542998, -0.555641, 0.986888, 0.363573, -0.269045, 0.518710, -0.017023, 0.156984, 2.848249, -0.870059, 0.971870, -0.095933, 1.733612, 1.204900, 1.162228, 1.587313, -0.957012, -0.584765, 1.356757, 1.539821, -0.329039, 1.113182, -0.349085, -0.414514, -0.156979, -0.792844, -0.911605, 0.066953, -1.407517, -1.014863, 1.556662, 0.606896, -3.144268, -1.199586, -0.251315, -0.828759, -1.633119, 1.911084, 0.459197, 0.483186, -0.715589, 0.238635, 1.184666, -2.090992, 0.799604, 0.390985, 1.881968, 1.116412, -0.993002, -0.093208, 0.837373, -0.048322, -2.225270, 0.566448, -1.836706, 0.044398, -0.379642, -0.268883, 0.382874, -0.358089, -0.993963, -0.473572, -0.068528, 0.301505, 0.549659, 0.042897, -0.911584, 1.309377, -1.215561, 0.646133, 0.232844, -1.036913, -0.045538, 1.467173, -1.858081, -0.595858, 0.998807, 0.226299, -3.177863, -0.510722, 0.552987, -0.761040, -0.864725, -1.621404, -0.300462, -0.901508, -2.554041, 1.624015, -0.526292, 1.161477, -0.821660, 0.759873, -1.390754, -0.058209, 0.330061, -0.559312, 1.406890, 1.227153, -0.792305, 0.073252, -1.438588, -0.342459, 2.938545, 0.542821, 0.001294, -1.261566, 0.028344, -1.068127, -1.072300, 0.112531, -0.199821, -0.210584, -1.354290, 0.702377, -0.130634, 2.363247, -0.666392, -1.546358, 0.032210, -0.809096, 0.170851, -0.406261, 0.384160, -0.562774, 0.129590, 1.274760, -0.482624, 0.424922, -1.824954, 0.680147, -0.398809, 0.936751, 0.785594, -0.940701, -0.410107, 0.953090, -1.661574, -1.745428, 0.120935, -0.388712, 1.169878, -0.816516, 0.748471, -0.021897, -0.522100, -0.820570, -0.063556, -1.127231, 0.514458, -0.449865, -0.635535, 0.522894, 2.497557, -0.250279, 0.487238, 0.228305, -0.585258, -0.336766, -0.232703, 0.115284, -0.337079, 1.522525, 0.737065, -0.444942, -1.397517, 0.768168, 0.055502, -1.169985, 1.449758, 0.753520, 0.924678, 0.918896, -0.299539, -0.900524, 0.592958, -0.518402, -2.105719, -0.878156, -1.889809, 0.661141, -0.848325, -2.232933, -0.553246, 2.054680, 1.349866, -0.076245, -0.319977, 0.007274, -0.149635, -0.877156, -0.463378, 0.992310, 0.427740, -1.385775, 0.577726, 1.186789, 1.481043, 1.057210, 0.202869, 0.383348, 0.699782, 0.123751, 1.495927, -0.071317, -0.955680, 0.396725, 1.279496, -0.625692, -1.375270, 0.433448, -0.088306, 0.214709, 1.825950, -0.963132, -1.618750, -0.089555, -0.385440, 0.651028, -0.142174, -0.003333, -1.358945, 2.038163, -1.844265, 1.127256, 1.312969, 0.005573, -1.026542, 1.435329, -0.864539, 0.458897, -0.596632, 0.004456, 1.714298, 1.571266, 0.355165, -0.492291, -0.359605, 0.956705, -0.219066, 0.838829, 1.262553, -0.893147, 2.071190, -0.819357, 0.144827, -1.180013, -2.675898, -1.801138, -0.271235, 0.091470, 1.578775, -1.810200, 2.211401, 0.341638, 2.131899, 0.226534, 0.574974, -0.134434, -0.901934, 0.802280, -0.630921, 0.385228, -0.528319, 0.623985, 0.226264, 0.045753, -0.609097, -0.266002, 0.923718, -1.537924, 0.443569, 0.326099, 1.380187, -2.034181, 0.129372, 0.575436, -1.013484, 0.018747, 0.574896, -1.858508, 0.240098, -1.518029, 2.389091, 0.300058, 0.487881, 0.651746, -0.861572, 0.237501, 0.961166, -0.477314, -0.634790, -0.073697, -0.983401, 0.798057, 0.441296, 1.441929, 1.120153, -0.003484, 0.646387, 0.164941, -1.334906, 1.703917, -0.677255, -2.028932, 0.115060, -2.429360, 0.158223, -1.164888, -0.553035, -2.236114, -0.369689, -1.362703, -1.044752, 1.059387, -0.765227, -1.785291, 2.649995, 0.544274, 0.272920, -1.149533, 1.052560, 1.285578, -0.623496, 0.632952, 0.918364, -1.832775, -0.173056, -0.934890, 0.611699, -0.289570, 0.472510, -2.247237, 0.401005, 0.832871, -0.532777, 1.305856, -1.178315, -0.445150, 0.185634, -1.907742, -0.237095, 0.907344, 1.133945, 0.400838, -0.118532, -1.553778, 0.708180, 0.034324, 0.185476, -0.035903, -0.362920, -0.124697, -0.215565, 0.918645, -1.223034, 0.649649, -0.413386, -1.055784, 1.002770, 0.347673, -1.149993, -0.591752, -0.047227, 1.150191, 0.680954, 0.754580, -0.362268, -0.046219, 1.320621, 0.358015, -0.425496, -0.948636, -0.515211, 0.488664, 2.220851, 0.152475, -0.322572, 1.507703, -2.554930, 1.702484, -1.232286, -1.689592, 0.452119, 0.114869, -0.806358, -0.966084, 0.665500, -0.064516, 0.283972, -0.591314, -0.984988, 0.035453, 0.807580, -0.241146, -0.003432, -0.669793, -1.684809, 0.931758, 0.339282, 0.001183, -0.548606, -0.242845, 2.112411, 0.613434, -0.868501, -0.630718, -0.985912, -0.040889, -0.559499, -0.549284, 0.262270, 1.482466, -0.779960, -1.958737, 0.679269, 1.513424, -0.230433, -1.309387, 0.440715, 0.022414, -0.457279, -1.279781, -1.294270, -1.067273, -0.328560, 1.370852, 0.280138, 0.122968, 0.083914, -0.603845, 0.383693, 0.272936, -1.075067, -0.216858, 0.460976, 1.051391, 0.145911, -0.483209, -1.644570, -0.477524, 0.450814, 0.014885, 0.377842, 2.794503, 1.442519, 0.365051, 0.009436, -0.497912, 0.943976, -0.007877, 1.186802, 0.567637, -1.015810, -1.237468, 0.872254, 0.268269, 2.360038, -0.118789, 1.185400, 0.078120, -1.349240, -0.452304, 1.073710, 0.239071, 0.118497, 0.422855, -0.637594, 0.825759, 0.816487, 0.752923, -0.237677, -0.321493, -0.588262, -0.801402, -0.193311, 0.753435, 0.951404, 0.445178, 0.449208, 0.068602, 0.068707, -1.773906, -1.241951, -0.567524, -0.412615, -1.361336, 1.106563, 0.524876, 0.735194, -0.041026, -1.473043, 0.456746, 0.169889, -0.343237, -0.823120, 1.665329, 0.011515, -2.577429, 0.441031, -2.770078, -0.341169, 0.571461, -0.499455, 0.275399, -0.655399, 0.824817, -1.152406, 0.884240, 0.724289, 1.334040, 1.169334, 0.732458, 0.959342, -0.114453, 1.314417, -0.515421, -0.894781, 0.193774, -1.490651, -0.561932, -1.739149, 0.257442, 0.160792, -1.424366, 1.032708, 0.587867, 0.434294, -0.357654, -0.575172, 1.507984, 2.734978, 0.082878, -0.624155, -0.326743, -0.852063, -0.232097, -0.248054, -0.700945, -0.077735, 1.555807, -1.781611, 0.649070, 0.404625, 0.686619, 0.945486, 0.801426, -0.170022, -0.568949, -0.464811, 1.400599, 0.950386, -0.339802, 1.250202, -0.386284, 0.520567, -0.032774, 0.587078, 1.241796, -0.004177, 2.710072, 1.444975, -0.206976, 1.840633, 0.363532, -1.494168, -0.030833, -0.282444, -0.601110, -0.776506, 1.584413, -1.534149, 0.204492, -0.344900, 0.837779, -0.308939, 0.566983, -0.664053, 0.270641, -0.465199, 0.337096, -0.272767, 0.746510, 0.444334, -0.691783, 0.749312, -0.069301, -0.798368, -2.546450, -0.363543, -0.163682, 0.264635, -0.279781, -0.663371, -1.244567, 3.110087, -0.139270, -0.361728, 1.099998, -0.234408, 0.008094, -1.763912, 0.047577, -0.378853, -0.478202, 0.566272, 0.534376, -0.201511, -0.375988, 0.670718, -0.160961, 0.640467, 0.162820, 0.545340, 0.197701, 0.785218, -0.022056, 0.792162, -0.445726, 0.567696, -0.846011, 0.015103, -0.264506, -0.365400, 0.953287, -1.125247, -0.958488, -0.771544, 0.060966, 0.102147, -0.881208, 0.401661, 1.216240, -0.669951, -0.518098, -0.683614, -0.817399, -0.612922, 1.249587, 0.307398, 0.264048, 0.503022, -0.853762, -1.377160, 0.223325, -0.038358, -0.681615, 0.085604, 0.660566, 0.236031, -1.199727, -0.670853, 0.783312, 1.498755, 0.788163, -0.605429, -0.386896, -1.421776, -0.150687, -1.219539, 0.349966, 0.408757, -0.032311, -1.265151, -2.531996, 0.133071, -0.910598, 1.658162, -1.244183, 1.776458, 0.165311, -0.791087, -0.082474, 0.658419, -1.115934, -0.868666, 1.047547, 1.602957, 0.057903, -0.268394, 0.757399, -0.376680, 1.852453, 0.320095, 0.044151, 1.871976, -2.021899, 0.103878, -0.180849, -0.972977, -0.118703, -1.323707, 1.255112, 1.085167, -1.054004, -0.560121, -0.445981, 0.628089, -0.053967, -2.152822, 1.367440, 1.422836, -0.484046, -1.330399, -0.374115, 0.016599, -0.904930, -0.567050, -1.219723, -0.315913, -1.724965, 0.028067, -1.198853, -1.035153, -0.372658, -0.474694, -0.729823, 0.665056, 0.958688, 0.412038, 0.207809, -0.467525, -0.119375, 0.285823, -0.651859, 0.009197, -1.533368, -0.684782, 0.740215, 1.365385, -0.345835, 0.749870, -0.118998, -1.814807, -1.650023, 0.664261, 1.546283, 1.710806, 1.337344, -0.386794, 0.831154, 0.548415, 1.182900, 1.234695, -0.394526, -0.175544, 0.086942, -0.933525, 0.771633, -0.619899, 1.017690, -0.904702, -0.687981, 2.384723, -1.210470, 0.183095, -1.678221, 0.551925, -0.016682, -1.395844, -1.084251, -0.846659, 0.739384, -1.225799, 0.174492, 1.699094, -1.427296, -0.275089, 0.058298, 0.622816, -0.584472, 1.262084, -1.181654, -0.136373, -1.233015, 2.687593, 0.608488, 0.500834, -0.527371, 1.103202, -0.099323, 0.387246, 0.120024, -0.580303, -0.370761, -0.371187, -0.416018, -0.882484, -0.154651, -0.859116, -0.231416, 0.824197, -2.102131, 0.615009, 1.071167, -0.911007, -1.963166, 0.849541, -1.177846, 0.065931, 0.320462, 0.868366, -0.089241, 0.982755, 0.322218, -0.909825, 0.013015, -1.921611, 0.111185, 0.964889, -1.733390, -1.655811, 0.486229, -0.824584, -1.668262, 0.253930, 0.327927, 0.426296, 0.748701, 0.220388, -1.759823, 0.550759, 0.824168, -0.551185, -1.091939, -1.426232, -0.617009, 1.231535, -0.846114, 1.745201, 0.549594, -0.411470, 0.074375, 1.105149, -1.036461, -1.134496, 0.984107, 0.284496, 1.538397, 0.327994, 0.024905, 0.509709, 1.778015, -1.385756, 0.355541, -1.329181, -0.379967, -0.242900, 0.356713, 0.585702, 1.434050, -0.794927, -0.686445, -0.112819, -0.393019, -0.019249, -0.463003, -1.827535, 0.137492, -1.410532, -0.470562, -1.694991, -0.349440, 0.280145, -0.141225, -0.510468, 0.600104, 0.991855, 0.339032, -0.084664, 1.306915, -0.394277, 0.965358, -0.703340, -0.572282, -1.652121, 1.804445, -0.239519, -0.394140, -0.708797, -1.359255, 0.429076, -0.515791, -1.702558, -0.294286, -0.541623, 2.477447, -0.057299, -1.470669, 0.923536, -0.490483, 0.195253, -0.624888, 0.685188, 0.028561, 0.190944, 2.229516, -0.860915, 2.602502, -0.306506, 0.534472, 0.008106, -0.843431, 1.349477, 0.676840, 0.128719, -1.345515, -0.956253, 1.838857, -1.022696, 0.093328, 0.282279, -0.503747, -0.273130, -0.622884, -1.087304, 0.287185, 0.745202, -0.464979, -0.697113, 0.310591, 0.490624, 0.755517, 0.542252, 0.619584, 1.020937, -0.910798, -1.786292, 0.190994, 1.826668, 0.317975, 1.002769, -0.323183, -1.529315, 0.175847, -1.264847, -1.109033, 0.589359, -0.388068, 0.571923, 1.426574, 0.532142, 1.347649, 1.333089, 0.855593, -1.258241, -0.799740, 1.098480, -0.600058, -0.245217, 0.429308, -0.615835, -0.636877, -1.949426, 1.431403, -0.654288, -0.657554, -1.772552, -0.593896, 0.822839, -1.210681, -0.389798, 0.490135, -1.151668, 0.279475, -0.615684, 0.540278, 0.047094, 0.641617, -2.142809, 0.065758, -0.029447, 0.290168, 1.181075, -1.233810, -0.114679, -0.635931, 0.533989, -0.338375, 0.139303, -0.660744, 0.207312, 0.399703, -0.232142, -1.156039, 1.081304, 0.464406, -0.225901, -0.111770, 0.335748, -1.823993, -1.073698, 0.129325, -0.797490, -1.016337, 0.160893, 0.933567, 1.084396, 0.541481, -0.339006, 1.983097, -0.518898, 0.026699, 0.656000, 0.411235, -0.668627, -0.310930, -0.791654, -0.688810, 1.431014, -0.277610, -2.575974, 1.433862, 0.803749, -0.614599, 0.413957, -1.207011, 0.247740, 2.347045, 1.125360, -0.936704, -0.183356, -0.103509, 0.947096, -0.995407, -0.281098, 0.970853, 0.985308, 1.059436, -2.079844, 1.233139, -1.118749, 1.872540, 0.293127, -2.942135, -1.317322, -0.548362, -2.202464, 2.041263, 1.225500, 1.013580, 0.344977, -0.919268, 0.185573, 0.382029, 1.421248, 1.135969, -0.056160, -0.841260, 1.705358, 0.602895, -0.122235, 0.914267, 0.476182, -0.148793, 0.332019, 1.452618, 0.298480, -0.818239, -1.029908, -0.706829, -1.726506, 1.356200, -1.368737, 0.483196, -0.946670, 0.491303, -0.826232, 1.000457, -1.353634, -2.040248, 0.874328, 0.844261, 0.022611, 0.503355, -1.224456, -0.475208, 0.788530, -0.835018, 0.967597, 1.911875, 0.675145, -1.343399, -0.718974, -0.083156, -0.140760, -1.125658, 0.488638, -1.121232, -0.426824, -1.330101, -0.425513, 0.796960, 0.079897, 1.614927, -0.401868, -2.133731, 0.231331, -0.826151, -1.860929, 0.573775, -0.514173, -0.607531, -0.228410, -0.995703, -1.491366, -0.519542, -0.025651, 0.256424, 0.037396, -0.685564, 1.791118, -0.832128, -0.113558, 0.785820, 0.949209, 0.641642, -1.150795, 1.338832, 0.239832, 0.944731, -1.324968, 1.678841, 0.002645, -0.077697, 0.195573, 0.432307, 0.954298, -0.406977, -1.277759, -0.907420, -1.806958, 1.234875, 3.014520, -0.799077, 2.742745, -1.324165, -0.255825, -0.541757, 0.482968, 1.721113, -1.522342, 1.163748, 2.403505, -0.509342, 0.483471, -1.428428, -0.061458, 1.587781, -0.783354, -0.050433, 0.629520, 0.864240, -1.395597, 0.107228, 0.823915, 0.005444, 0.499131, -0.339062, -0.295097, 0.991396, -0.322221, -0.530987, -1.197486, -0.753621, 1.670541, 1.436926, -0.411578, 0.339897, -1.289984, 0.061021, 0.209111, -0.348547, -1.259163, 0.894381, -1.279974, -0.439007, -0.299394, 0.637945, -0.519612, -1.145587, 0.571898, 0.041607, 0.885507, 1.553901, 0.023756, 0.872025, -0.811794, -1.424095, 0.086840, -0.689333, 1.187767, 0.865142, -0.339892, -0.243186, -0.645244, -0.773328, -1.231678, -0.086912, 1.713869, -0.144804, 0.393021, -0.089343, -0.279151, -1.799816, 0.602509, -0.268784, 0.588497, -1.190337, -0.787351, -1.882528, 0.659920, -0.724093, 0.775418, -0.675166, 0.000686, 0.428083, 0.463684, -0.476841, 1.469501, -0.654527, 0.327880, 0.879131, 0.248746, 2.101594, 0.122552, 0.276876, -0.001911, -0.957076, -3.208823, -1.615574, -0.433487, 0.226720, -0.420281, 0.965141, 0.095147, -2.242007, 0.300449, 0.076282, -1.365614, -1.870833, 0.054189, 0.827640, -0.661032, -0.210772, -1.194631, -1.017595, -0.752148, 1.116002, -2.304146, 0.951749, -0.110114, -0.844786, 0.494828, -0.260262, -0.674481, -1.129930, -0.215812, 0.546032, -0.466306, 0.644153, -0.147925, 0.867174, 0.045759, 1.034827, 0.426746, -0.423652, -0.162697, -1.408930, 0.475538, -1.071504, -1.037191, 0.298321, -0.976895, 0.700682, -1.893396, 2.326948, -1.282179, 0.209819, 2.152333, -0.192697, -1.056775, -2.076637, 0.480162, 1.810017, -0.928973, 0.737307, -0.032687, 0.888973, -0.071929, 0.032594, -0.660783, 0.907694, -0.257774, -0.232050, 2.377575, 1.621866, -1.180327, -2.478682, 0.091084, 0.154767, 0.741321, -0.688070, -0.753984, 1.973991, -0.734224, 0.814869, 0.547152, 1.889799, 0.601632, -0.644769, 0.022917, -1.941745, -1.630398, 1.299110, 0.339750, 0.351955, 0.805760, 0.913119, 0.313713, -0.005974, -0.044722, 0.019067, 1.481980, -0.043148, 2.381949, 0.681642, -0.979021, 1.069971, -1.382439, -0.396834, -2.139694, 0.203082, 0.770693, -0.126867, -2.356263, 0.322232, 2.007141, -1.794395, 0.592197, -0.643780, 1.823006, 1.518627, 0.885696, 0.766732, 0.099202, -0.195026, -0.948018, -0.879934, -0.757266, -0.760687, -0.520707, 0.458947, 0.204648, 1.474144, -1.286402, 1.345399, -0.013325, -0.260802, 0.562541, -0.342927, -1.058143, 0.114277, -0.180343, -1.749448, -0.835538, 2.076169, 0.090361, -0.890402, -0.036053, -0.994488, 0.322276, -1.521323, -0.151094, 0.153495, 2.220248, 0.383992, 2.816355, 0.456995, -2.097848, -1.012078, -0.130407, 1.508551, -0.538089, 0.716734, 0.062955, -1.580951, -0.665447, -0.141319, -0.178174, 0.369904, -0.545363, 0.533221, 1.376949, 0.354799, 1.810270, 0.813193, -0.225814, -1.114854, -0.696925, -2.085944, 0.119469, -0.108404, 0.826254, -0.901839, 0.476316, 0.552266, 0.561827, -0.622024, 0.646186, -0.088715, 1.228750, -0.670279, 0.545059, -1.626673, -0.369648, -0.730830, -0.500690, 0.106717, 2.246510, -0.528366, -1.766289, 0.757272, -2.234733, 0.646477, 1.300462, -0.217834, 1.427958, -2.461451, 1.260720, -0.558624, 0.475943, 0.538607, 0.075726, 0.582705, -1.335014, 0.997488, -0.067525, 1.061844, -1.603271, -0.383171, 1.668311, 0.221180, -0.912917, -1.163807, -1.211920, 1.597408, 0.585032, 0.040529, 0.357959, 0.345990, -1.053388, 1.458777, -0.223465, -0.201855, -0.986164, -0.968193, -0.488270, 1.007701, -0.811985, 0.304515, -1.169742, -0.855871, 0.919790, 0.219357, 1.091413, 0.807782, -0.083979, 0.324193, -0.947443, 0.053717, 0.936797, -0.562786, 1.660110, -0.462107, 1.672204, -0.311008, 0.728481, -1.537524, -0.438393, 0.905430, -0.666430, -0.074606, 0.193948, 0.979103, 0.185768, -0.841039, 0.947116, -0.648128, -2.545181, 0.229775, 1.931381, -0.429992, 0.836756, 0.669885, 0.167988, -0.232264, -0.136503, 0.868582, 0.082799, 1.170592, -1.664669, -1.246595, -1.272071, -0.198292, -0.392002, 0.347999, -0.360833, -0.486329, -0.348076, -1.260678, 0.542108, -1.889541, 1.900921, -0.437571, 1.135884, -0.008839, -0.709594, -0.312676, 1.010754, -1.775021, -0.090376, -0.374285, -0.010112, -0.325232, -0.481684, 1.135251, 1.191691, 0.073755, -2.006225, -0.958194, -0.416396, -0.866296, 1.725761, 0.957189, -1.396519, -0.400844, -0.555836, 2.281839, -0.811664, 0.280439, -0.663291, -0.250193, 0.003751, -1.002213, -1.056557, 0.281373, 0.489768, -0.576792, 0.705104, -1.671691, -0.103901, 0.354344, -1.342603, 0.283845, -1.798113, 0.608776, 1.885199, 0.114857, -0.508227, 0.679871, 0.991424, 0.494670, -0.737955, -0.387582, 0.563049, 0.333657, 0.402739, -0.412585, -0.710063, 0.130640, -1.366815, 2.520833, 0.900841, 0.079563, 0.603177, -0.111528, -0.043496, 0.882482, 1.217692, 0.460307, 0.999374, -0.063308, 0.084357, -0.800679, 0.078081, 1.235522, 0.101629, -0.119091, 0.080906, 1.461462, 0.065047, 0.341452, 0.151233, 0.011513, -2.571426, -0.348576, 0.716042, 0.209402, -1.981607, -1.342325, 1.406166, -0.787436, -0.833536, 0.745685, -0.156950, -0.429805, -0.344611, -0.001708, 2.021371, 0.113006, -0.248351, 0.943292, -0.157886, -1.143932, 0.333702, 0.569119, 0.997018, -1.264709, -0.389552, -2.655914, -1.382412, 0.008260, 0.294783, 0.322707, 1.110824, -0.204515, -0.295807, 0.497328, -0.256779, 0.281451, -0.202429, 0.566785}, + { -1.182033, -0.990724, 0.104045, -0.115285, -1.609855, 0.874568, 0.892411, 2.007296, -1.968755, 0.132095, 1.820703, -1.159879, 1.056728, -1.621238, -1.735622, 0.365577, 0.044551, 0.245102, 0.781900, -0.568182, -0.903664, -0.761595, 0.577774, 0.012518, 0.323001, 0.806387, -0.715938, 1.291085, -2.341664, 1.049098, 1.647642, 0.563267, -0.447792, 0.824436, -0.023639, 1.219416, 1.102642, 0.113489, 0.912743, 0.109638, -0.302463, 0.690598, -0.237857, 0.894208, -1.035659, 2.328670, -0.562059, -0.296181, 0.916796, -0.357272, 1.160758, 0.451315, 0.196456, -0.884296, -0.654022, 1.668492, 0.461198, 0.293342, 0.186362, 0.759364, 0.196021, -0.673123, 1.369451, -0.822186, -0.668167, 0.891107, 1.046052, 2.174824, -0.217663, 0.222540, -1.491159, -0.951655, -0.819255, 0.668112, -0.063466, 0.046701, 1.053596, 0.644253, -0.096507, -0.742529, 0.039552, -0.116341, -0.947332, -1.350485, 0.413847, 2.598992, 2.459606, 0.514045, -0.290478, 0.531872, 0.623313, 0.705847, -2.440353, -2.229876, -0.243842, -1.659471, -2.184856, 0.347365, -1.520216, 0.068324, 1.212021, 1.090282, 1.625544, -0.242690, 0.978063, -0.647997, 2.228631, 0.150888, -0.448686, 0.282191, -0.638558, 0.313404, -1.548489, -0.987350, 0.504220, 0.200817, 0.331415, 1.698722, -0.194588, -0.867004, 0.635534, -1.404777, 1.130592, 0.307063, -1.019221, -0.937982, -1.596464, 2.248796, -0.375377, -0.286856, 0.710374, -0.679039, 0.084932, -1.272005, 1.762173, 0.306859, -1.000013, -1.563703, 0.070367, -1.731430, -0.129567, 0.680612, -0.211895, -0.482885, -0.626461, -1.691782, 1.110358, -0.086106, -0.515570, -0.987962, 1.169888, -0.406341, -0.483877, -2.080735, 0.285999, 2.004029, -1.256048, -1.882583, -3.047656, 0.099457, -1.818615, 0.062210, -0.807041, 0.039765, -1.493414, 0.152758, 0.973733, 1.504650, -0.852136, -2.933638, 1.068753, -0.301381, -0.352158, 0.204912, -1.223965, -1.252604, 1.693246, 1.631687, -0.671105, 0.906412, -1.280496, 1.915374, -0.177969, 0.159518, 0.816535, 0.450977, -0.750484, -0.018431, -1.190060, 0.166193, -0.067318, -0.043534, 0.206740, -1.341822, 2.316914, -1.613452, 1.066080, 1.425543, -1.780641, 0.325450, -0.450151, -1.997296, -1.621558, 0.920813, -0.135516, -0.763896, -0.021063, -1.167069, -0.144444, -0.213741, 1.478804, -0.263028, -1.013180, 2.245053, -1.356859, -0.690404, -0.222947, -1.624552, -0.464506, -1.517442, -0.308159, 0.499479, -0.057061, 1.228032, 0.299066, -1.380981, 0.777070, -0.209613, 0.410636, -0.353264, 0.487815, 1.036224, 1.503528, 0.274954, -2.000251, 0.030772, 0.677885, -1.276899, -0.096168, 0.444528, 0.714932, -0.997932, -0.241405, 0.596798, 3.191526, -0.441197, -0.770703, 0.198933, -0.503894, -0.636223, 1.316053, -2.422652, -1.003362, -0.645443, 1.312824, 0.696529, 0.496544, 1.254918, 0.067976, 0.579736, -0.612679, 0.095804, 1.179636, -0.306940, -0.835429, -1.120113, -0.728495, 0.573919, -0.505831, -0.404828, 0.545294, -0.942293, -0.709087, -0.990315, -0.051144, 0.850603, -1.056156, 0.342539, -0.403991, 0.856288, 0.058781, -1.306745, -0.195350, -0.604557, 1.110527, -0.889690, -0.333949, -0.460623, -0.472012, 0.224678, 0.653727, -0.296846, 1.589186, 0.289251, 0.571712, 1.807680, -0.241117, 1.578081, -0.230120, -0.019002, -0.284344, -0.733357, -0.494227, -1.510475, -0.881025, 0.011355, -1.695467, -0.552732, 3.597214, -0.760997, 0.160454, 1.604971, -0.056311, 0.782432, 0.012931, -0.721449, -0.482569, -0.645418, -0.685215, 1.484420, -2.147895, 0.319111, 0.434472, 0.613192, -0.443633, 2.904831, -0.377940, -0.816888, 0.681861, -0.331878, 1.322679, 0.426241, 1.535460, 1.807671, -0.155240, 0.608807, -0.789376, 0.066064, 0.173941, 0.442881, 0.302427, 0.675783, -0.206586, 2.158039, 0.509036, -0.928564, 1.916680, -0.162566, 0.047139, -0.392633, 0.773404, 1.075810, -0.377545, 1.240136, -0.423998, -1.755018, -0.376135, -0.800686, -0.907901, 1.713279, -1.289116, -0.828548, -0.957205, 0.919591, 1.058795, -4.015570, 0.303151, -1.871327, -0.258658, -0.663640, 1.705543, -0.665959, 0.171985, 0.205161, 0.997869, 0.335844, -0.581812, 0.141911, -0.898024, 0.905078, 1.467683, -0.516611, -1.066879, -0.183614, 0.145401, 0.406541, -0.495786, 2.152388, -0.157968, -0.255234, -0.027002, 0.287821, 1.262139, -0.598631, 0.507232, 0.125771, -0.334446, 1.279116, 0.292011, 1.215638, -1.050658, 0.150421, 0.836198, 1.265561, -0.782982, -1.379708, -0.112104, 0.130101, -1.144690, -0.833199, -0.217920, 0.025572, 1.152740, -1.165658, 0.466775, 0.393018, -0.510852, 0.753150, 0.736648, 0.414469, 0.710530, 0.562602, 0.620719, 0.500728, 1.057322, 0.300625, 0.736402, -1.602048, -0.129288, -0.974479, -0.420793, 0.447426, 0.182499, -0.019345, 0.804603, -0.216000, -1.647184, -0.023763, 0.740351, 0.610837, 0.093540, -0.744371, 0.508537, -1.447733, -1.206406, -3.590968, 0.141688, 1.332558, 0.751247, -0.871550, -0.202231, 2.078777, -0.794069, 0.915636, -0.040179, 0.458278, -0.840516, 0.119802, -0.482384, -0.161426, 0.704770, 0.153015, -0.000750, -0.219447, 0.262337, 1.518239, 1.355411, -0.458673, 1.161361, -1.054924, 0.579480, -0.119109, -0.329629, 0.812682, 1.857557, 0.099020, 0.820302, 2.090000, 0.247340, -2.325257, 0.304030, 0.084419, -0.821864, 0.456438, 0.748984, 0.468434, -0.745492, -0.411619, -0.268436, 0.998883, -0.801896, -1.206509, 0.889848, 1.676262, 0.598750, -0.508465, 0.084038, -0.475236, -1.639909, 0.357904, -0.408079, -0.583212, -1.119743, -1.706453, 0.186840, -0.800573, 0.090565, 0.463982, -1.350953, 0.548916, -0.819529, -0.005303, 0.342667, 0.033524, 1.180686, -0.240149, -0.082084, 0.121012, 0.584651, -0.081447, 0.435425, -1.062111, -1.297010, -0.354924, 0.058040, -1.326069, -2.293762, -0.826101, 0.425946, -1.302736, -0.436073, -1.042596, 0.276245, 0.392518, 0.717258, 3.301770, -0.644866, 0.377213, -0.406736, -0.318716, -0.816595, 1.013310, 1.477392, -1.298086, -0.234732, 0.282106, 1.522305, -0.734220, 0.467740, 0.545424, 1.020615, 0.653171, 0.453015, 0.254356, 0.018373, 1.661917, 1.118822, 0.098586, 1.395874, -0.187699, 0.508652, -0.548066, 0.257491, 0.235350, 0.505458, -0.372710, 0.271288, -2.049830, -1.394902, 0.715808, 1.042062, 1.460668, 1.376373, -2.056576, 0.345659, 1.282268, 1.746942, -1.589097, 0.516501, 0.139361, -0.154290, -0.924339, 0.335194, 0.889294, 1.160918, -0.638914, -0.657616, -0.993357, 0.032571, -2.107877, 0.991383, 1.390078, -0.715143, 1.641153, 0.043067, 0.817948, 0.154437, -1.268595, 0.718767, -1.082909, 2.428075, -0.849468, 0.428728, -0.346973, -0.109188, 1.310439, -0.497318, -0.107854, -1.039751, -2.319314, 0.506966, 1.154441, 1.849161, -0.592776, 0.613116, -0.039152, -0.464128, -0.161897, -2.227032, 0.045890, -0.564227, 1.103639, -1.510715, -0.291276, 1.967509, 0.785963, -0.990884, -0.216925, -2.164696, -0.003942, 1.009959, -0.098606, -1.182608, 0.338989, -1.038732, 0.870748, -0.982860, -1.151487, -0.728321, 1.248880, -0.466434, 1.601769, 0.551422, -0.658448, 0.502653, -1.053988, 0.594415, 0.163925, -0.080079, 0.536887, -0.056005, 1.457503, 1.138792, 1.634425, -0.078903, 0.236324, -1.198733, -1.716764, -0.803560, 0.022557, -1.092070, -0.833702, -1.877477, -0.304326, 0.053183, 1.887550, -1.147866, -0.803854, -1.541034, 0.969796, 0.074783, 1.486452, 0.236390, -1.117702, 0.486334, -1.841179, 0.660699, 0.905663, 0.222406, 0.840630, 1.689011, 1.449841, 0.785060, 0.247622, -0.384732, 0.759199, 1.906931, 1.065960, -0.041626, 0.394889, 1.688113, -0.075546, -0.361648, 0.062103, 0.283601, 0.159933, 1.277289, -1.323852, -0.593494, 0.123995, 1.324236, -0.205210, -0.803219, -1.340778, -0.710786, -1.370338, 1.156267, -0.077055, -0.244050, 0.000291, 1.988200, -0.147974, 0.640865, 0.225355, -0.208274, 1.147141, 0.221391, 2.376750, -0.683141, -1.561707, -0.037740, 0.244160, -0.294200, -1.515108, 1.197305, 1.414708, -2.325714, -0.867730, 0.048080, -1.325000, -1.754054, -0.048702, 1.316129, -0.557108, 2.111063, 0.014839, 0.740811, 1.187295, -0.211452, -1.235271, -0.203892, 1.170752, -0.515556, 0.534500, -0.589873, -0.085859, 0.757107, -0.454449, -0.242475, 0.892581, -1.583763, 0.163886, 0.928978, 1.342655, 0.689295, -0.647056, -0.398740, -0.562487, -0.144457, -2.807038, -0.966036, -0.073517, -0.997487, -1.895521, -0.048410, -0.245080, 1.371564, 1.418200, 1.927510, 0.724537, 0.348282, 0.097457, -0.752247, 0.547111, 0.452678, 1.842658, -1.372846, -1.080536, -0.492402, -0.948238, 1.248988, -0.136566, 0.888306, -0.507940, -1.208086, -2.109605, 0.216898, 0.124905, -0.012725, -2.139055, -1.029584, 0.245014, 0.518949, -0.145007, 0.894423, -1.507149, 0.469880, 0.737765, 0.172519, -1.487251, 0.292384, -0.270667, 0.462509, 0.022113, 0.120434, 1.887821, -0.366725, -0.578942, 0.309197, 0.071899, 0.919132, 0.111711, 0.953862, 0.928987, -0.178857, 1.024506, 0.298323, 0.723635, -0.954093, -1.873633, 0.262402, 0.516609, -1.279220, 0.186461, 0.766670, -1.462925, -0.746575, 1.293203, -0.019324, 0.552474, 0.804343, 0.905144, -0.795691, 0.237082, -0.288253, -0.256831, -2.167557, 0.241622, -0.362114, 0.098529, -0.730083, 0.694702, 0.472205, -1.018633, -0.665194, 0.318752, 1.942694, 0.947298, 0.384414, -0.949530, -0.242625, 1.494762, 1.116680, -1.165330, -2.006563, -0.167549, 0.318343, 0.327429, 0.268683, -0.256726, -1.094689, -1.933067, 0.575581, 1.576788, -0.790888, -1.421626, 0.559636, 0.169084, -0.614721, 1.249090, -2.028653, 0.033302, 0.703858, 0.810570, 0.525806, 0.553967, 0.309991, 2.161190, 0.487782, -0.203454, 0.939968, 1.521396, 1.169673, -1.308519, -0.611268, 0.808024, 0.655301, 0.096592, -0.148393, 0.276038, 1.716933, -0.142533, -1.244457, -1.249490, -1.574976, 0.870563, -0.885578, -1.213086, 1.120872, -1.189445, -0.585305, 1.269445, 0.305883, -1.062068, 0.799435, -1.251410, -0.600416, 0.804726, -0.271234, -0.895507, 0.268118, 0.273714, 0.817049, 1.620739, 0.042687, -0.247700, 1.158443, -0.032706, 0.186347, -1.014765, 1.309911, -0.993179, 0.638214, 0.353942, 0.262249, -0.515910, 0.905912, 0.071666, 1.425258, -0.214364, -0.405860, 0.322082, -2.038569, 0.663869, 1.374939, -1.704746, 0.001251, -0.468250, -0.543265, 0.786153, -0.014665, 1.744427, -0.396289, 0.065601, -1.783098, 1.628016, 0.221392, -1.623130, 0.913457, 1.569945, 0.074148, 0.681321, 0.167484, -1.354388, 0.372236, 0.355057, -0.698553, 0.243511, 0.047298, 2.324381, 0.494232, -0.354383, 2.683529, -0.299160, -0.732044, 0.591202, 1.365810, -0.674266, -0.143102, -1.892520, -1.891342, 1.712276, 0.588573, -2.112565, 1.322950, -0.567429, -2.209439, -0.507957, -0.494205, -1.052432, 1.107759, -0.111659, -1.599427, 0.569260, -1.142308, -0.376497, -0.704686, 1.216245, -1.656430, 0.237153, -0.554729, 0.689873, 0.358264, 0.023091, -0.409037, 0.936587, 0.768994, 1.378372, -1.399549, 1.208693, 0.486285, 0.331197, -0.686468, 0.005126, -0.502025, -1.036639, -0.491039, 0.596697, 1.302914, 0.067185, -0.120411, 0.208858, -0.718485, 1.843144, -0.853323, -1.646446, 1.443056, 0.396544, -1.461868, -0.994024, 0.601044, -0.368966, 2.109496, -1.858449, 1.675221, -1.689736, 1.414936, 0.620734, 0.209911, 0.220183, -1.311763, -0.902506, 1.203832, -0.180132, -0.140792, 0.127870, 0.298109, -0.249634, 0.353379, -0.839347, -1.157898, 0.144337, 1.485741, -1.117781, 1.176339, 0.510259, 0.027923, -0.198288, 0.257066, 0.478007, -1.653934, 1.118124, 0.876101, -0.894446, 0.218383, -0.441243, -0.736363, -0.941684, 1.215643, 1.784836, -1.096164, 0.644597, -1.001155, 0.851863, 2.314310, 0.762955, -0.773405, -1.224005, -0.020442, 0.490393, -0.691299, 0.399926, 0.624403, 0.150433, 1.792048, 0.370861, 0.041537, -1.017301, -1.209133, -1.222578, -1.331111, -0.583000, 0.278368, -1.546722, 0.849334, -0.545177, 0.993589, 0.697411, -0.158505, 1.562587, -1.661492, 0.717039, -0.292506, 1.020398, 0.207425, -0.015711, 1.666373, 0.993838, -0.854248, -0.120354, -3.378056, -0.980753, 0.011066, -0.532348, 1.887271, -1.352068, 0.338103, 0.796058, -0.171730, 0.397031, -0.160426, -1.037023, 1.285795, 0.090821, 1.216535, -1.318853, 0.012382, 0.535242, 0.261766, 1.071842, 0.440831, 0.611455, -0.929570, 1.570926, -0.154514, -1.659442, -1.652807, 0.832240, -0.746617, -0.675656, 0.661198, 0.398967, -0.735796, -0.746877, 0.984032, -0.199201, -0.758471, 0.311492, 1.004689, 0.393983, -0.663058, -0.629355, 0.167509, -0.618294, 0.567620, -1.938332, 0.922270, -0.415272, 1.212559, -0.023118, -0.767115, -1.495589, -1.255184, 0.118539, -0.745166, -0.672295, -1.545429, -0.716545, -1.106630, -0.078553, 0.879629, 0.974308, -0.137689, -0.464611, 0.936891, 1.147917, 0.509769, 0.563796, 0.052862, -1.284131, -0.291096, 0.081777, -0.400073, 0.705509, -0.114025, -2.159276, -1.544984, 1.674441, -0.926547, 0.125256, 2.087236, 0.725663, 0.776126, -0.827905, -1.981602, 0.603253, -1.184810, -0.678212, 0.307489, 0.226716, -0.616348, -0.111767, -1.820482, -1.417757, 0.634413, -1.138639, -1.298559, 0.384734, 0.579211, 1.705501, 1.469555, 0.019641, -1.401232, -0.141805, 1.087576, -0.941758, -0.581052, -1.658015, 0.918930, -1.896925, -1.185906, -0.032664, 0.928568, -1.145188, -2.217072, 0.696880, -0.139694, 1.611320, 1.590444, -0.823083, -0.161521, -0.190495, 0.298279, 2.147478, -0.143921, 1.850659, 0.124507, -1.676375, 0.262602, 1.173930, 0.952699, -0.956552, 0.898254, 0.844637, -0.745090, -0.864909, 1.577642, -0.472348, 0.594579, 1.323665, 0.695430, -1.457288, 1.197672, -0.530519, 0.850585, -0.886207, -0.718863, -0.129478, 0.875762, 1.344030, 1.166345, 1.406504, -2.190434, 0.701644, 0.558108, 0.409784, -1.656140, 1.208338, -0.519180, 0.223482, 0.748124, 0.097323, 0.715970, -1.527134, 0.535389, 0.370611, 0.578901, -3.046126, 1.462143, -0.752133, 1.250911, -1.494899, -0.161154, 0.243344, -0.134417, -0.373131, -1.073105, 1.267560, 0.738967, 0.249464, -1.528957, 1.407050, 1.296934, 2.696871, -1.198885, 0.404112, -0.563298, 1.905446, -2.483317, 0.607973, 1.400213, 0.785318, -2.427183, -0.573498, -1.450760, -0.413151, -0.139899, 1.530708, 0.277043, -0.188913, 0.514852, 1.399172, -0.811467, 0.005990, 0.181239, 2.083996, 0.098943, -0.232644, 0.346235, 1.252002, 1.810240, 0.430197, -1.269393, 2.199245, 0.635753, -1.036215, -0.120450, 1.199328, 0.517621, -0.289110, 0.409783, 1.080916, -0.200301, 0.234920, -0.758630, -0.054944, 0.343013, -0.487173, 0.227276, -0.880040, 1.823280, 0.018873, 0.449070, 0.141262, 0.434751, 1.174268, -1.907374, 1.270779, 0.117235, -0.495601, 0.370781, 0.034318, 0.708558, -1.016281, -0.809590, -0.236292, 1.413989, -1.018390, -0.604388, 0.077290, -0.322879, 0.317386, 0.195364, -0.224596, 0.419801, -0.051214, -1.294279, -1.585191, -0.614829, 0.291316, 0.527026, -0.035368, 0.862249, 0.429781, 0.026719, 0.311587, 2.149591, -0.723808, 0.083928, -1.263941, 0.565994, 0.607109, 0.051392, -0.647140, 0.408378, -0.325048, 0.666051, -1.812193, -0.481149, -0.895440, -1.487628, -0.051724, 1.030995, -1.429187, 1.616624, 1.332899, 0.817643, -0.651819, 0.180374, -0.928031, -0.574170, -0.987816, 1.026662, -0.001211, 1.132437, -0.461924, 0.799407, 0.009504, -1.247738, 1.366446, 0.485234, 1.683592, -0.818062, 0.466098, 0.618622, 2.081132, 0.386411, -0.376256, 2.302080, -0.472404, -0.197619, 0.041499, -1.151170, -1.806785, -0.376674, 0.063492, 0.754902, -1.170045, -2.322990, -0.137742, -0.243928, -1.468925, 0.545148, -0.357012, 0.064328, -0.243415, -0.822864, 2.019027, -0.769357, 0.468290, 1.882418, 0.342787, -0.696157, -1.560195, 1.948524, -1.407121, -1.124421, 0.828790, -0.299129, 0.966997, 1.135263, -1.492739, -0.168288, 0.316350, 2.065712, -1.206027, -0.600245, 0.478660, -0.659134, 0.893908, 0.667413, -1.680572, -0.442523, 1.186590, -0.160877, -0.469502, -1.533293, 0.285390, 0.658302, 0.701033, -0.191945, -0.192662, -1.602242, 1.633399, -1.609775, -0.988848, 0.669548, 3.220970, 0.415837, -1.343026, -0.014933, -0.094364, 0.099381, -0.991866, -1.052532, -0.023157, 0.114131, -0.470556, -0.677907, 2.241443, -1.891253, 2.090881, -0.236475, -0.115302, -0.847335, -0.678742, 1.631226, -0.350954, 0.746013, 0.439496, 1.703137, 1.978385, 1.502600, 1.832951, 1.006809, -0.861861, 0.136237, 0.194582, -0.049889, 0.768008, 0.729039, -0.789408, -0.493955, -0.174524, 1.164600, -1.410962, 1.338335, -0.093167, -0.143927, 1.037471, 0.355913, 0.721230, -0.114761, -1.068794, -0.369482, 0.678685, -1.852772, 0.870384, 0.507279, -2.306766, -0.691351, 0.339238, 0.874056, 0.175721, -0.274644, 1.222448, 0.249203, 1.455549, -0.233866, 0.288981, 0.317599, -0.811498, -0.908194, 0.418703, -1.026886, 0.901506, 0.421606, -2.355229, -2.010783, 0.639056, -0.387780, 0.529579, -0.115747, -2.026635, 0.762252, 0.342841, -2.721693, 0.225247, -1.119844, 1.762495, -1.234644, -1.186285, -1.118980, -0.790823, 1.372955, -0.144790, -0.289554, -1.474859, 0.935327, 0.257315, 0.657742, -0.752228, 0.373652, -0.877215, -2.682745, -0.610774, 0.455652, -1.285036, 0.938585, -1.040668, -0.506063, -0.635054, 0.734377, -0.148222, -0.766240, -1.794213, 0.264920, -0.651568, -0.127556, -1.511425, -2.408001, -0.065094, -0.500168, 0.081581, 0.293386, -0.918540, 0.481355, -1.415078, -1.506683, -1.791014, -1.940797, -0.731344, -1.251695, -0.309286, -0.693743, -0.796699, 2.297995, 0.736554, -0.360015, -0.145277, 0.265324, 2.174685, 1.361956, 0.418747, -0.028816, 1.201867, 0.282520, -0.736020, 1.589420, 2.311612, -0.158355, -0.348948, -1.570364, -1.064447, -0.871774, 0.836884, -0.241113, 0.680196, -1.468255, 0.360123, -0.117796, -0.902268, 1.206016, -0.273557, 0.294911, -1.407273, -0.659960, 0.424815, -0.386988, -0.913246, -0.508748, -0.219080, -1.651974, 0.775883, -0.051616, 0.325976, -0.485320, 3.142784, -0.518282, -0.524431, 1.943767, 1.705564, 0.440877, 1.349568, -0.489779, -1.226827, 0.056258, -1.534418, 0.178679, -0.212164, 0.418668, 1.318532, -0.727790, 0.187988, 0.370431, 0.477882, 1.348819, 1.123202, 1.293542, -1.830254, -0.906303, -1.160818, -1.499872, -0.749063, -1.843293, -1.209419, -0.094008, 0.906350, -0.514163, -0.674518, -1.229189, -0.251380, 0.089014, -0.394945, -0.948207, 0.179413, 1.705880, 1.481214, -1.569964, 0.258922, 1.706765, 0.790410, 0.240023, -1.391616, 0.714121, -0.987433, -1.098027, 0.849551, -0.103418, 0.365080, -0.282595, 1.164164, 0.665270, 0.355595, 0.115689, 0.125766, 0.361181, 0.763215, 0.968049, -0.107044, 1.016707, 0.088473, 1.193165, -0.435059, -0.100778, -0.317268, -0.825614, -1.051258, 0.243711, 0.377545, -0.094623, 0.723646, 0.814205, -0.030798, 2.052617, -1.259441, 0.093852, -1.847167, 2.151407, -0.583909, -0.202982, -1.409784, 0.071909, -0.173323, -1.325530, -1.612066, 0.111486, 1.877957, 1.020731, -1.090581, 0.027436, 0.718217, -0.159228, 0.039074, 0.135114, 1.141439, -0.369754, 0.149730, -1.332786, 0.405130, 0.189829, -0.142822, 0.268124, -0.188454, 1.224434, -0.977509, 0.763707, -0.161697, 0.024968, -0.057457, -0.658942, 0.393707, 0.024037, -0.402251, -0.383377, -0.600593, -0.577664, 0.917264, -0.666357, -1.869187, -0.336415, -1.091990, 0.102598, 2.138619, 0.122753, -1.135455, 1.134380, -0.036447, -1.175676, 0.533750, 1.721340, 0.999408, -1.620160, 0.556890, 0.988642, -0.176587, -0.737106, -0.513593, -1.156436, -1.011539, 0.529095, -1.561689, -0.278184, -1.858055, -1.853150, 0.158110, -0.144312, -0.149990, 0.307596, -0.655647, -1.150726, 0.081073, 0.339135, 1.373845, 1.286314, -0.258182, -1.679334, -0.694605, -0.384283, -1.940498, 1.066846, -0.198975, -1.389420, 0.048676, 0.454977, -0.304671, 1.722365, 0.605073, 0.601758, -0.839313, 0.817142, -0.023608, 0.431783, 0.567458, -2.460163, -0.277263, -2.522150, -0.843465, 0.475266, 0.155524, -0.182731, 1.290886, -0.031742, 1.595315, -1.487618, 0.434404, -0.151036, 1.554354, -0.442486, -0.971564, 1.536515, 2.030288, -0.091330, -0.639896, 0.675043, 0.372680, -0.097302, -1.079158, 1.616633, -1.180672, -1.134611, 1.106823, -0.264735, -0.428301, 0.321761, -0.428073, 0.837635, 1.779821, 0.889562, 0.014049, -1.663147, -0.709730, 1.815853, 0.826502, -1.832997, -1.001730, -0.035752, -0.883202, 0.198855, -0.720034, -0.512378, -1.235309, 0.637103, -0.318085, -0.722293, -0.725155, -0.516654, 0.106518, -0.725105, 1.835024, -0.927853, -1.955561, 0.763174, 0.373548, 1.146230, -3.753366, 1.273680, 0.012062, 2.852662, 0.236338, -0.295475, -0.244922, 0.767836, 0.119353, 0.993934, 0.756175, -0.980474, 0.385351, 0.172012, -0.332472, -1.052266, 1.427503, -1.895816, -0.447396, -0.139730, -0.679052, 0.213772, 0.266755, -0.519739, -0.077430, -0.093825, -0.202419, -0.238314, 0.651187, 1.560948, -0.184705, -0.627118, -1.269736, 0.615082, -1.105759, 0.617015, -1.084346, 0.146138, 0.743565, 0.139173, 1.156885, 0.492462, -0.067773, -0.635241, 0.085324, 1.302415, 0.467737, -1.612368, -0.877104, -0.044858, 0.088059, -0.897877, 1.781092, 0.053566, 0.452692, 0.362189, 0.052842, 0.158434, -1.563583, -0.030714, 1.672257, 0.357928, 0.162656, -0.415725, -0.400887, -0.459514, -1.245656, 0.002331, -0.005904, 0.030327, -1.433488, -1.353397, 0.020028, 1.164917, 0.313599, 1.181723, 0.352966, -0.858882, 2.606408, -0.512971, -1.197124, 0.464680, 1.313213, 0.204163, -1.415648, 1.007134, 2.564667, -0.089119, 0.345481, -1.031982, -0.521176, 0.519781, -0.763010, 0.733503, 1.814899, -0.001072, -0.708667, -0.513932, -1.814224, -0.592833, -0.525615, 1.370029, 2.308789, -0.976814, -0.314422, -0.477806, 0.305997, -0.872631, -0.088829, -0.662893, -0.569024, -0.066163, 1.533401, 0.366497, -0.212668, 0.755595, 0.449040, -0.108833, -0.587931, -1.009151, -0.799894, -0.154522, 0.107163, 1.425453, 1.631916, -0.073408, -0.440364, 0.631786, -0.737705, -0.055127, 0.772019, -0.258056, 1.539292, 0.395897, -0.343193, -1.031211, -0.302418, 0.288518, -0.135447, 1.438798, 0.294601, 0.405512, -0.561546, -0.409586, 0.651017, -0.272401, 0.930303, -0.630249, -1.622772, -1.261243, -0.249885, -0.019325, 0.512813, 0.933841, -0.463988, 0.305396, 1.287911, -0.758046, 0.661103, -1.843919, -2.065572, -0.410313, -1.541864, 1.339012, -0.804902, 1.045279, -0.769203, -0.032602, 0.063275, -0.662296, -0.144066, -0.243627, 0.332526, -0.820790, 0.603103, 1.184764, 0.448711, 0.616243, 1.898227, 0.515180, -0.455631, -0.818757, 0.443795, 1.069992, 0.636242, -0.286327, -0.666330, -0.737574, -1.093274, 1.225394, -0.243206, -0.112195, -1.572394, -1.555291, 0.235222, 0.662835, -0.140926, 0.550963, -0.469103, 0.586619, -2.375870, 1.041302, 0.594935, -0.382474, 1.445974, 0.908579, 0.825926, -0.652322, 0.437661, -1.902363, 0.509471, 0.382050, -0.154797, 1.412613, 1.231123, 0.285335, 0.323703, 1.230827, -1.325370, -0.882106, -0.040444, -0.254714, -0.257117, -0.529394, 0.779346, 0.682189, 1.133347, 1.187395, -0.223462, -1.298226, -0.275506, 0.331544, -0.445988, 0.123823, 0.696435, 0.421639, -1.261232, 0.776110, 0.132655, -0.720933, -0.609152, -0.061301, -1.048410, 0.921329, 1.112192, 0.370525, -0.019465, -1.114954, 0.277303, 0.901529, 1.694158, 0.529833, -0.882069, -0.245371, -0.603769, 0.758759, 0.508264, -2.029322, -0.040732, -0.494105, -1.147427, 0.495379, -0.041708, 0.730202, -0.422939, -0.632949, -1.984159, -1.108105, -0.993817, 0.282263, -0.080835, -0.788011, 1.243930, 0.742627, -1.815206, 0.314197, 0.602959, 0.055921, 0.130547, -1.698285, 0.671603, -0.306370, -0.550947, -3.093813, 0.376060, -1.627970, 1.799160, -0.125827, 0.449279, 2.025550, 1.338993, -1.261597, 0.445731, 0.609896, -1.726927, -1.364881, 0.542433, -0.810466, 0.863934, -2.478897, 1.668358, -0.060390, -0.424467, -2.022434, -1.145987, -0.837309, 0.083879, -1.809817, 0.723728, 0.859393, 0.372108, -0.237508, 0.796737, -0.447039, -0.194162, 0.796565, 0.074311, -0.011911, 0.224484, 1.298364, -0.619427, 0.397665, 0.720958, -0.174028, -0.027007, 0.152947, -0.616935, 0.528441, -0.548607, -0.046968, 0.866270, 0.233197, -1.674556, 0.186067, 1.357813, 0.557800, -0.558316, -2.339965, 1.293808, -0.709143, -0.565500, -1.154304, 0.312092, -1.036005, 1.043651, -0.780841, -0.368151, 0.179745, -0.306073, 0.255710, 2.103900, -1.071129, -1.279216, -0.703963, 0.759521, -0.140323, -0.608581, 2.917427, 0.248669, 0.338649, 0.485611, -0.531817, 0.863207, 2.153741, -0.296518, -0.459129, 0.270417, 0.935235, 1.394564, -0.551661, 0.226926, 0.216715, 0.541608, 0.363598, -0.583128, -0.483484, 0.219572, 0.346102, -0.184419, -0.312754, -1.021271, -1.778001, -1.153524, -2.060209, -0.038508, 1.803398, -0.673404, 0.185306, 1.306659, 0.976398, -0.081853, -0.609699, 0.843565, 0.276698, -1.175775, -0.586864, 0.344750, -2.477780, 0.177836, 1.484502, -2.088840, -0.491484, 0.254499, -0.891253, 0.922149, 0.397272, 0.140329, 2.255648, -0.080438, 0.190627, -0.344085, 0.914310, -0.492837, -1.322400, -1.311848, -1.906278, -1.127237, -0.759115, 0.843289, 1.298117, 0.127567, 0.050809, -0.053783, -1.038648, 0.462915, -0.432071, 1.638138, 1.477372, -1.211059, -0.154430, 0.024262, 0.067581, 1.115890, 0.367321, 1.327273, -1.408346, -1.128287, -0.922713, 1.145809, 0.008678, -1.854904, 0.523576, -0.329485, 0.303820, 0.575895, -0.402776, -0.599858, -1.450637, -1.904945, 1.265459, -0.159827, 1.406783, -0.024990, 0.239961, -1.854666, 0.086036, 1.209725, 1.887180, 0.583309, -0.083836, 1.048282, 0.552419, -0.207426, -0.064380, -1.575963, -0.378237, -0.229650, -0.601722, -0.960228, -0.102083, -0.414764, -0.832576, -0.893981, 1.439118, 1.311700, 0.636207, 2.695851, -1.953427, -1.121281, 0.109427, 0.807637, -0.640741, -0.935607, -0.514951, 0.799321, 1.356677, -0.019797, 0.608427, -1.336663, -0.452547, 0.544517, 1.252920, 0.707849, -0.067403, 0.464638, -0.964007, -0.427682, 1.191631, -0.465947, 0.013992, -0.394630, -0.407368, -1.767068, -1.423715, 0.157861, 0.322349, -0.721958, 0.288086, -0.113849, -2.595654, -1.889727, -1.893902, -0.979257, 0.563037, 2.069219, 0.486238, 0.484894, -0.508484, -0.654682, 0.501518, 0.447948, -0.899938, 1.609891, 0.372200, -0.465811, -0.876349, -0.989570, 0.322810, -0.163933, 0.162493, 1.217476, 0.941825, -1.047924, -0.181836, -0.693214, 0.549036, 0.863952, -0.714402, 0.862002, -1.796094, -0.728835, -0.976425, -2.619379, -0.215380, 1.479812, 1.673869, -0.086293, -0.036034, 0.267581, 0.287811, -0.344847, -1.304700, -0.825427, -0.848370, -0.457317, 0.080942, -0.758908, 0.629612, -1.074773, 0.757741, 0.668105, -1.219031, -0.208474, -1.711361, 0.226617, -0.841018, 1.660807, -0.697073, 1.393023, -0.787531, -0.761010, -0.984526, -0.814087, -0.013918, 1.599091, -2.240978, -0.874549, 0.712055, 0.085046, 1.011351, 0.840473, -1.043489, -0.823256, 0.668104, -0.592289, -0.046664, 1.144287, -0.559592, -0.729162, 0.849113, 0.222759, 0.195738, -1.121981, -1.121979, -0.066825, -0.157941, -1.773485, -0.782219, 0.655074, -0.262132, -0.712077, 0.752541, 0.425039, 0.972398, -1.672732, 0.634087, -0.214051, 0.568499, -2.309596, -1.113105, 1.696879, -0.353259, -0.290204, -1.128185, 0.674188, -1.267031, 0.637262, -0.530526, -0.875749, 0.967556, -1.556293, -1.117577, 0.668908, -0.388012, -1.702704, -0.982943, 0.825036, 2.169169, 1.586789, -1.343200, 1.101355, 0.883851, -0.868814, -0.497662, -0.431353, 0.442203, 1.489853, -0.126395, -0.648795, -0.169522, 0.297527, 0.310265, -1.304085, -0.760477, -0.037992, 0.027178, 2.459609, -1.534498, -1.575119, -1.700460, 1.139519, -0.014968, 0.234533, -0.067230, 0.096728, -1.786536, -0.602227, -2.189427, 0.519104, -0.040212, 0.775011, -0.830357, -0.571322, 1.384906, 1.701390, -1.280063, -0.678924, -0.492366, -0.248255, 0.288810, 0.746716, -0.854638, -0.343785, -1.035924, -0.604085, -0.946944, -0.631828, 1.844068, -2.555476, -1.448799, -0.092470, 1.225179, 1.333341, -0.746759, 0.315804, -0.878796, -1.078185, 1.097040, -0.105570, 0.333994, -0.377507, 0.378326, -0.053087, -1.126848, 0.934960, 0.410731, 0.197805, 0.223323, 0.312033, -1.840421, -1.807174, -0.840043, 0.068570, 1.757604, -0.076322, -3.128909, 0.140312, 2.139157, -0.905102, 0.111514, -0.848952, 1.090445, -1.340872, -1.455730, 0.399908, -0.420877, 0.155199, -1.340483, 0.471297, -1.757322, 0.636677, 0.590320, 1.093107, 0.007619, 0.358078, -0.672528, -0.494688, 1.306112, 0.778751, 0.926516, 0.932918, -0.652896, 1.519377, 1.808176, 0.580447, -1.560422, 1.103326, -0.711911, 0.589932, -0.025245, 1.441283, 2.070462, 1.525393, -0.429804, -2.243278, -1.381306, 2.027807, -0.717750, 0.158620, 0.203938, 2.275288, -1.290036, -0.763332, -1.005744, -0.104188, 1.433085, 1.138323, 1.260414, -0.772884, 0.603607, -0.961641, -0.146728, 1.131142, -0.586622, -0.793266, 0.422120, 0.238596, 0.988546, -0.920935, -0.354626, -1.574340, 1.132674, -0.846445, -1.345843, -1.729672, -1.271401, 1.427218, 1.986580, 0.541635, 0.295550, -0.500550, -0.408490, 0.070781, 1.784228, -0.119234, -1.159608, -1.380432, -0.149607, 0.415031, 0.891507, 0.955257, -0.360345, -0.136555, 0.424249, -2.018592, 0.386525, 0.801126, 0.304958, 0.605012, -1.027500, 0.412363, -0.358259, 0.185826, -1.080077, 1.157918, -1.356224, 0.723348, -0.996599, -0.896110, 0.106722, 0.654700, -1.110127, 0.826412, -0.939684, 1.592098, -1.599002, -0.705636, 0.939622, -1.749310, -0.142900, 0.329500, 1.537404, 0.539679, 0.535866, 0.931259, 0.999876, -0.289414, 0.793408, -0.344457, -0.194481, 0.817257, -1.476450, -0.202502, -0.193899, -0.959493, -0.599850, -0.467182, 1.566532, 0.805961, -0.020652, -0.408956, -0.347758, -0.380462, -0.143103, 0.292589, 0.436122, 1.453586, -2.999577, 0.010084, -1.748454, 0.400327, 2.423968, 1.875613, 2.410515, 0.474966, -0.477082, 0.079202, -1.377004, 0.044919, 1.120112, 0.935645, 0.670242, 0.954505, -0.254576, -0.067505, 1.072077, 0.464383, -0.971635, -0.734305, 0.529991, 0.320964, 0.660038, -0.884118, 0.868322, -0.054656, 0.408413, -0.928430, -0.848887, 0.336249, -0.827988, 1.095226, -1.161564, 0.709723, -0.387843, 0.890326, -2.268380, -0.640441, 0.252365, 2.276407, 1.348281, 2.029460, -1.695108, 0.308716, 0.235891, 1.914263, 1.649640, -0.477879, -0.117208, 1.872425, 0.445807, -0.961056, -1.492970, -1.115844, 1.930394, 0.047135, -0.256759, 0.197470, 0.421923, -0.422296, 0.433128, 0.399215, -0.802778, -0.563040, 0.757818, -0.844195, -0.663983, 0.162023, 0.396168, 0.111668, 0.755298, -0.691091, -0.758507, -0.364105, -0.365148, -1.240560, -0.643815, 1.971015, -0.117173, 0.856542, 1.257437, -0.198269, 0.234995, -1.532506, -2.353866, 0.077296, -0.019384, 0.389523, -1.019283, 0.472070, -0.966912, 0.300588, 0.252483, -0.804045, -1.730821, -1.365752, -0.990922, 0.849213, 1.604441, -1.362975, 0.748139, 2.501775, -0.126310, 0.612473, -0.064447, 0.004416, 0.568888, -0.222759, 0.974630, -0.767727, 0.380578, 0.317705, -0.143703, 0.413208, -0.947242, 0.131730, 0.025382, -0.758325, 0.580607, 1.039693, -1.978096, -0.352989, -0.141092, 1.056524, 0.148448, 1.169638, -0.284465, -0.692905, 0.985378, 1.801891, -0.582393, -0.519100, 1.096080, -0.047229, -0.112265, -0.608350, -2.452482, -1.220425, 0.902638, 0.880592, -1.106066, -0.118210, 0.672128, -0.363375, 1.247757, 0.170906, -0.849769, -1.609034, -1.015062, -0.428678, -0.238637, -1.086833, -0.200252, -2.326732, -0.301218, -0.342991, 0.407981, 0.123120, -0.474811, 0.689556, -0.535312, -1.460389, -0.656256, -0.872668, -0.959749, -0.130226, 0.850948, -0.461050, -0.035449, 0.660750, -1.518566, 0.156001, -0.919434, -0.540750, -0.000871, -0.811852, 0.247025, -2.625853, -0.525114, 1.337842, -0.158807, -1.316601, 0.409387, 1.545733, 0.177541, 1.264480, -0.296738, 0.380318, -0.214996, -0.976262, -0.337425, -0.525910, -1.026923, 0.461673, 0.652946, -1.557104, 1.204365, -0.346271, -0.451315, -0.885818, 0.694764, 1.227606, -0.274514, -1.055869, 0.995573, 0.388055, 0.735920, 0.395819, -2.003695, -0.743029, -1.165036, -0.017400, -0.420809, 1.536804, -0.478933, -0.710430, -0.991006, -1.514194, 0.586450, 0.658552, -1.800328, -0.749451, 0.634071, 0.005889, -1.048293, 0.904292, -1.275187, -2.073517, 1.546540, 1.003061, -0.180415, -0.774517, 0.980949, 1.035466, -0.760792, -0.699135, 1.418587, -1.223056, -0.537477, 0.496585, -1.549317, -0.643062, -0.079485, 1.035337, -1.035709, -0.055925, -0.811267, 0.842547, -1.028167, 0.781426, -2.309164, -0.514714, 0.196260, -0.648122, 1.232203, 0.212556, 0.123973, -0.290506, 0.097181, 1.624703, 0.648933, -1.808541, -1.562539, 1.907293, -0.763823, -0.301554, -0.579386, -0.758413, 1.312228, 1.365965, -0.516405, -1.030932, -0.766624, -0.207938, 2.671840, 1.144630, -0.243363, -0.291062, 0.177277, 0.661588, 0.292051, 1.060794, 1.012830, 0.316930, 0.771680, -0.438249, 2.304440, -0.352412, -0.701439, 0.242441, 1.985065, -0.229084, -0.028268, 0.306352, -0.007879, 0.460231, 1.329044, 0.514899, -2.989984, -0.687685, -1.007076, 0.912048, -0.774717, -0.389092, -0.196883, -0.006537, 0.630364, 0.382722, 0.332988, 2.250091, -1.396306, 0.624280, -0.699713, 0.960984, 2.080729, -0.652034, -1.975734, -0.415395, -1.465640, 1.562211, -0.175790, 0.824711, -0.356191, -1.150109, -0.233485, 0.285365, 0.260212, -0.193945, 1.516209, -0.896587, 0.768712, 1.036168, -0.243662, 0.481208, -1.441876, -0.560259, 1.113345, 0.471965, -0.431091, -1.250092, -1.683304, -0.300121, 1.046572, -2.410199, -0.211774, 0.808844, -0.314220, 1.518381}, + { 0.128537, -0.670602, -0.941475, -2.075702, 3.765909, 0.102639, -1.360386, -1.352912, -2.199890, -0.356542, -0.548534, 1.083015, -0.219626, -1.837468, 0.307975, 2.474036, -1.179890, -1.226841, -0.035152, -1.388017, -1.100560, 1.459469, -0.322957, -0.382961, 0.962851, 0.544617, -1.090333, 1.191922, -2.301647, 0.082504, -1.564297, 0.133258, 0.024619, 1.143878, 1.393599, 1.292673, -1.089038, -0.879109, -0.815245, -1.486507, -1.627000, -0.363177, 0.734727, -0.906984, 0.140965, 0.228108, 1.041279, -0.104223, 0.782667, -1.843960, 1.740561, -0.013574, 0.694218, -0.155485, -0.521172, 0.752713, 0.998398, -0.833192, -1.114559, -0.794343, 2.989994, -0.872038, 1.513704, 0.629367, -0.925364, 0.304949, 2.170120, -0.046620, -1.439427, -1.969413, 0.007699, -0.622994, 0.360708, -0.186120, 0.513979, 1.093525, 1.388947, -1.641175, -0.434575, -2.174075, 0.568396, 0.369095, -0.962749, 0.636245, -0.749850, -0.312564, -0.439927, -1.049657, 0.715777, -0.830842, 0.336457, -0.458061, 0.361679, 1.312442, -1.349914, -1.373442, 0.466411, -0.321108, -0.987542, 1.310365, 0.459285, -0.259899, -1.179171, -0.526067, -1.657148, 0.510295, 0.151148, 0.373471, -0.181669, -0.628925, 1.297304, -0.709963, 0.627065, 1.784400, -0.514238, -0.331305, 1.821596, 0.667845, 0.706016, -1.452509, -0.192294, -0.168034, 0.145840, 0.009496, -0.120101, 0.383971, -0.783377, 0.499506, 0.009345, 0.352568, -1.011090, 0.796884, -0.738463, -0.462101, 0.439446, 0.765423, 0.012124, -0.360724, 1.710252, -0.876721, 0.634070, -1.742265, 1.081704, 0.714346, -0.651518, -0.124076, -0.834885, -1.095042, 0.815158, 0.481116, -0.464446, 1.367829, -0.565797, 0.548488, -0.730504, -1.194563, 1.524745, -0.156051, -0.411893, -0.480487, 0.840294, -0.338822, -0.240886, -0.628193, 1.357250, 0.036518, 0.377764, 1.100770, -0.501338, -0.084643, 0.718565, 1.343306, 0.786453, -0.286447, 0.056912, 0.764441, 0.167947, -1.104121, 0.937350, -0.488405, 0.077020, 0.572429, -0.363019, -1.137365, -0.072138, 1.179134, -1.281425, -0.162017, 1.292157, -1.460789, -1.169910, -0.695259, 0.781697, -0.757298, -0.186544, 1.030351, 1.226103, -0.061206, 0.741831, -0.205310, 0.336452, -0.418091, 0.256129, -0.589552, -0.016107, -0.528205, 1.183622, 0.274816, 0.948890, -0.883414, -0.823517, 1.601086, -1.625964, 2.577285, -0.010679, -0.614043, -1.524519, 0.492720, -0.712786, 0.010297, -0.166608, -0.737975, -0.776431, -0.407772, 0.217062, -1.372896, -0.251997, 1.635961, 0.384630, 0.942922, 0.007065, 0.083350, 1.269261, -0.470669, 1.239913, -0.952311, 0.856264, -0.709488, -0.092519, 0.712155, -0.731621, -0.132552, 0.097545, 1.907118, 0.396839, 0.974610, -0.636824, -0.714329, 2.447124, -0.217811, 0.034559, -1.698206, 0.287549, -0.361915, -0.151098, 1.223457, -0.121801, -2.212093, 0.351750, 0.820912, 0.369526, 0.842379, 0.029458, 0.699306, -0.019367, 1.311826, 0.005036, 0.975546, -0.801337, 1.417394, -0.553596, -0.905190, 0.543119, 2.164182, 0.184621, 1.121817, -0.094439, 0.538848, -0.764849, 0.234015, 0.350500, -0.353927, 0.915828, -0.795170, 0.578837, -0.446255, 1.414809, 0.040365, 0.543634, -0.414916, -0.396937, 0.083738, -0.305781, 0.162280, -0.422275, -0.515621, 0.919775, 2.824093, 1.883923, -2.059076, 1.156116, -1.033594, 1.424248, -0.129631, 0.993868, -1.338105, 0.121313, 1.424818, -1.360097, -0.845116, -0.698107, 0.603760, 1.111564, -1.650275, -2.248919, 0.635334, 2.317605, 0.492146, 0.769590, 0.498856, -0.280956, 1.201436, -0.498265, -1.181321, -0.131460, 1.644883, -1.362115, 1.204524, -0.677628, 0.914850, -0.835515, -2.359968, -1.756582, -1.616609, 2.451912, -1.037418, -0.519811, 0.333044, 1.110450, 0.725847, -2.335431, -0.912301, 0.304967, -2.190945, -0.511443, -0.334613, 1.204966, 0.165317, -1.656046, 0.755813, -0.594507, 0.623824, 1.212355, -0.852367, -1.451164, 0.557766, -0.184797, 0.524469, -0.788076, 0.158610, 0.473008, -0.703875, -1.824585, -0.955644, -0.482006, -0.244215, 0.268331, 0.883281, -0.112941, -2.095427, -0.683533, 0.059003, -0.399347, 0.006024, -0.900482, 0.378172, 0.125599, -0.637001, -0.056601, 0.046604, -1.389300, 0.816312, -1.187900, -0.388857, -1.456877, 0.365000, -0.437971, -1.506913, -0.720490, -0.626345, 0.025915, -0.827044, 0.561066, -0.641411, -0.005865, 0.958764, 0.582838, 0.720305, 0.711929, -1.257981, 0.755007, -1.731898, 1.240253, -0.644459, -1.490373, -1.524186, 0.063530, -2.491212, 1.069354, 0.375626, 0.466196, -0.737508, -0.642321, -0.965403, 0.181980, -0.012027, -0.947776, 2.623076, 0.902594, -2.090675, 0.066975, 0.684317, -0.092737, 0.433291, 0.151832, 0.306097, -0.439875, -0.807361, 2.468966, 0.910381, 1.491696, -0.354918, 0.663040, -0.519321, -0.639173, -1.514122, -0.080023, -0.674681, -0.513976, 0.491233, -0.019003, 0.380971, -0.949059, -0.325129, 0.395044, -0.551756, -0.531165, -0.194571, 1.537157, 0.051242, -1.280902, -0.015943, 0.643221, 0.579922, -1.336749, 0.112255, 0.247440, -0.087321, 0.568656, -0.795775, -2.210391, -1.045927, -0.018885, -0.503057, -0.792914, -0.078247, -1.250512, 1.242041, 1.075042, -0.321397, -0.307762, 0.565773, -0.505933, 0.825109, -0.239967, 0.039210, -1.164223, -1.883010, 2.009194, -0.177216, -0.572038, 0.181038, 0.955104, 1.457119, 1.829673, 0.958096, 0.467236, 1.799874, 0.387139, 1.599357, -0.938158, -0.379826, 0.992256, -1.682731, 0.445734, -0.014583, -0.065345, -1.549021, 0.857328, 0.288644, 0.613711, 0.704716, -0.860672, 0.845589, 0.698174, -0.811378, 0.652019, -0.311993, 0.977202, -0.322329, 0.994609, 1.411611, -2.117161, -1.039453, -0.920591, -0.364939, -0.918867, -0.360990, -1.502650, 0.063864, 0.308797, 0.174872, 1.420781, 1.441314, -0.427689, -0.453411, -0.026318, -0.470474, -0.306527, 0.415312, -2.049282, 0.112369, -2.217676, -0.605638, -0.797510, -1.266255, -1.149408, 0.565867, 0.294566, 0.398265, 0.205364, 0.573439, 0.655674, 0.224139, -1.184827, 1.444275, 0.742321, -0.205954, -0.508863, -0.416045, 2.000826, -1.183707, 1.119605, 0.636358, -0.284115, 0.835066, -0.671253, -0.492639, 1.653319, 0.361982, 0.261258, -0.765324, -0.704395, 1.489597, -0.409022, -0.684278, 1.296253, 0.262459, -0.594065, 0.892053, 0.113591, -0.186571, 1.419554, -1.146256, -2.032616, 1.269508, 0.417317, -0.368275, -1.037489, -0.577215, -0.468349, 0.295703, -0.806165, -1.034132, 0.055423, -0.565423, 0.256421, -0.310760, 0.160878, 0.669311, -0.276824, -0.278637, -1.085305, 1.311609, -0.214098, -0.774199, -0.952059, 1.702484, 0.254200, 1.105872, 0.164157, -0.548066, 1.451453, -0.267770, 0.924385, 0.202977, 0.663506, 1.385014, -0.830456, -0.163753, 0.023945, -0.970770, 1.295719, -0.908838, 0.153189, 2.110795, 0.030225, -1.121889, -1.222903, 0.905045, -1.277809, 1.038556, 0.249766, -0.403726, 0.539607, 1.684138, 1.831428, -0.976582, 0.087286, 1.290690, 0.492419, 0.369827, -0.124068, 1.040885, -1.491401, -0.150024, -1.300743, 0.655696, 1.271876, 1.837865, 0.477435, 1.515435, -0.783233, -0.079367, 1.605294, 0.970216, -0.595700, -0.830469, 0.157640, -0.442686, -0.176556, 1.183612, 0.767809, -0.992447, 0.227132, -0.580263, 0.558280, 0.785622, -0.351400, -0.722470, 0.239416, -1.377898, -0.399519, -2.971084, -0.523780, -0.843012, -0.511529, -0.732507, -0.208483, -0.682648, 0.488962, 0.392924, -0.490841, -0.770259, -0.916399, -0.044535, -0.348905, -2.096553, 0.312618, -0.069986, -0.031483, 0.567567, -1.575987, 0.072220, 0.509980, 0.680870, 0.394275, 0.687129, -0.155187, -0.126079, -1.355249, 0.386133, -0.252273, 0.343249, 0.486025, 0.289659, 0.845483, 1.056263, 1.247721, -0.023424, -1.230134, -0.358446, 0.201851, -0.730165, -0.326684, 0.864638, 0.705886, -0.443817, 0.673669, 0.155611, -1.365210, -1.179507, -1.099509, 1.135222, 0.315041, 1.890617, -0.793469, 0.640021, -1.046628, 2.068006, -0.242118, 0.350408, -1.485754, -1.386601, 1.522136, 1.177601, -0.592218, 0.230992, 1.630994, 0.777690, -0.354331, 0.189101, -0.649541, 0.507858, -0.273123, -0.182222, 1.928086, 0.702538, -0.033511, 0.429416, -0.243823, 0.205272, -0.179475, -0.182058, -0.926379, 0.124603, -1.114894, 0.330274, -0.523904, 0.137802, 1.168966, -0.571995, -1.514846, 0.209383, -0.621317, -0.213881, -0.664374, 1.449134, 1.103543, -0.289954, 0.906567, -0.111004, -1.436180, 1.670286, -0.372349, -1.003621, -1.277356, -0.137835, -0.488894, 0.084217, 0.626066, 0.565942, -0.303904, 0.659792, -0.780545, -0.124051, -0.571281, 1.183033, -1.458519, -1.106880, -0.473537, 1.644144, -1.017864, -1.598076, 1.190213, -0.836535, -1.568818, 0.788704, 0.927541, -0.752101, 0.313344, 0.281777, 0.636353, 1.549493, 0.280524, -0.264606, -0.610554, -1.919711, 0.653319, 1.424934, -0.785417, 1.224268, -1.180971, 0.165936, 0.487368, 1.153089, 0.517848, -1.275576, 0.726610, -1.368032, -0.237849, -1.126041, 0.173694, -0.490255, -0.432427, -0.624869, 0.133623, 0.312649, 0.185147, 1.707235, -1.720660, 0.609835, -0.307185, 0.204924, -0.701712, 1.179198, -0.783892, -0.523260, 0.046386, -1.268280, -1.503855, -0.650664, 1.492274, -0.145696, 0.415971, -0.241327, 0.466000, 1.157454, 0.128617, -1.629637, -0.637176, -0.664575, 0.364718, -2.124861, 1.196481, 1.774055, 0.431801, 1.150000, 0.361367, -0.085435, -1.240195, 1.132389, -0.378835, -1.600777, -0.462424, -0.336643, -1.316186, -0.326879, 0.076930, -0.547768, -0.604841, 0.077580, 0.066181, 0.227490, -1.619251, 1.118006, 1.595455, -0.125496, 1.191157, -1.634163, -0.075634, 2.262978, -0.312201, 0.515258, 0.059529, -0.595164, -1.324728, -1.227759, 0.136685, -0.417678, 1.203606, 1.439591, 2.726557, 1.459409, -0.739902, -0.317488, 0.967969, -0.362139, -0.659066, -0.695904, -0.686681, -2.677735, 0.777344, -1.215838, 0.780265, 0.556658, 0.494166, -1.660920, 1.788701, 0.522706, -2.010412, -0.590015, 1.350011, -0.693924, 0.975793, 0.428045, 0.305442, 1.107949, 0.438695, 1.007582, -1.087590, -0.046311, -2.461139, 1.658997, 0.161683, 1.753198, 0.412367, 0.545545, 1.314341, -2.367570, 0.031012, 0.660228, -0.236705, 0.021732, -0.669543, -0.594148, 0.791439, 0.076700, 2.471543, 0.138551, -1.947648, 0.959014, 2.217317, 0.270679, 0.313646, -0.479831, 0.162036, 1.416550, -0.540616, 0.345573, 1.087326, -0.274019, 0.261633, 1.301664, -0.922612, -1.272690, -2.031605, -0.894200, -0.816444, -0.671471, 0.555713, 0.716231, -1.667320, 0.375600, -1.005561, -1.016563, -0.206470, -0.204039, -0.530330, 0.278247, 0.152441, 0.632744, -0.877953, 1.200536, 1.551752, 0.609659, -1.628131, 0.050063, -0.728106, -1.397370, 1.346165, -0.684604, -0.447864, 0.772922, -0.998592, -0.058879, 0.142974, -0.137613, -2.175337, -0.113236, -1.786672, 0.895229, 0.560018, 1.781616, 0.172600, -0.875082, 0.699555, 0.790223, 0.351233, -1.690040, -0.995523, -0.980984, -0.099059, 1.840148, -0.617950, 0.226358, -0.388735, -0.199827, -0.321202, 0.568149, -1.226010, -0.780106, -0.809263, -1.057186, 0.286066, 0.912921, 1.170311, 0.294013, -0.430193, 0.471392, 0.093757, -1.789928, -0.690895, 2.009739, -0.440292, -0.591010, -0.752697, -1.950452, -1.905393, -0.016078, 0.197080, -1.915355, -0.416469, -0.995245, -0.788576, 0.645035, 0.560849, -0.753182, 1.994099, -0.453359, 0.954400, -1.021221, 0.359962, 0.574895, 0.378318, 0.035199, -0.097529, 1.596637, -0.248035, -0.520152, -0.016553, -0.048196, 1.020556, -0.086239, 0.387346, -0.935816, -1.278336, -0.076711, -0.745448, -0.327161, -0.881434, -0.218145, 1.767851, -1.983002, 0.028666, 0.343880, 2.552683, -0.219072, -0.098383, 0.990083, 0.680412, -1.582882, 1.289372, -0.805342, 1.432774, -0.316938, 1.768718, 0.044016, -0.737437, -0.660707, -0.188507, 1.201987, 0.941607, -0.345131, 1.336218, -1.189798, 1.262702, -0.401241, 1.290309, -1.823167, 1.585083, 0.838783, 0.774985, -1.042511, -2.090751, 0.124269, -0.795024, -0.797538, 0.931702, 0.329542, 1.208447, -0.228311, 1.111298, 0.810721, 1.645589, 0.250281, -0.065167, -0.745058, 0.202196, -1.090299, -0.384741, -1.819925, -1.375296, -0.100273, 0.740362, 1.074953, 1.535626, -0.319866, 0.463111, -0.870584, -1.058462, -0.681389, -0.740061, -2.142427, 0.528938, -0.781072, 0.002958, 1.170330, -1.476504, -0.206220, -2.350513, -0.752907, 0.953063, 0.112923, -1.140730, 0.846724, 2.043769, -2.252817, -0.419277, 0.604017, -0.336120, -0.034494, -0.548516, 1.441508, 1.305745, 0.602722, -0.092164, 0.584616, 0.048808, -0.273065, -0.275118, -0.965446, -0.760297, 0.412038, -0.827024, -0.898347, 0.406026, -0.989714, 2.746835, -0.216432, 0.831026, -0.007489, 0.968373, 1.007589, -1.638642, 0.871265, 0.876579, 0.449295, 1.561519, 0.625705, -2.217768, 0.386854, -1.517621, -0.547360, 1.097745, -0.657576, -0.595142, -1.737785, -1.320253, 1.135759, 0.851784, 0.417392, -0.438072, -1.083232, 0.358709, 0.355959, -0.169862, 1.822577, -1.977698, 0.937350, -0.380408, -1.800249, 2.085992, 0.641473, 0.133226, 1.167038, 1.099830, 0.680796, -1.563612, -1.261751, -0.710462, -0.329412, 2.099457, -2.715281, -0.834858, -0.762551, 0.383127, -0.280792, 0.822590, 0.228282, 0.383899, 0.634356, 0.249231, -0.888757, -0.533496, -1.086838, -1.790170, 0.806613, -1.106673, 1.808679, -0.420361, -0.288687, 0.471998, -0.538887, 0.698892, -2.139881, 0.671664, -1.375760, 0.662905, -0.293531, 1.370349, -0.114384, -0.886915, -1.549728, -0.347021, -0.104266, -0.268895, 1.002261, 0.684305, 0.204034, -0.467146, -0.475951, -1.880544, -2.424715, -0.641136, 0.450963, -1.094303, -1.325613, 2.193413, -0.889185, -1.324216, -0.108056, 0.925173, -1.317150, 0.560328, -0.294670, 1.143298, -0.710969, -0.850945, 0.667384, -0.540053, 1.411986, 0.413841, 0.524822, -0.422901, -0.054853, 1.599552, -0.569855, 0.414951, 0.030399, -1.218638, -0.238978, -0.524193, 0.861659, 0.005022, 0.673670, 0.484431, -0.174391, -0.629718, -1.380824, -0.597543, 0.282676, 0.452901, 0.476013, 0.117948, -2.397279, -0.136835, -1.860596, -2.529751, 0.582910, -0.868149, 1.069501, 2.023673, 0.414396, -0.423402, 3.365510, 0.682345, 2.005574, 0.586835, -0.568037, -2.197620, 0.713272, 0.157667, -1.136658, -0.923565, -0.857041, 0.027589, 0.946651, -1.166997, 0.141450, -1.764942, 0.616596, 0.203131, 0.892084, -0.411506, -1.488316, -1.520469, 0.589313, -0.289657, -0.695093, -0.967629, 0.240132, 0.580963, 0.492055, 1.604860, 0.708413, -0.896701, 0.609267, 0.324537, 0.875412, 1.689012, 1.316985, 0.200579, -1.525594, 0.979660, -2.835577, 0.492330, -0.059049, 0.998389, -1.816064, -1.491397, 1.616248, -1.500978, -0.246793, 0.128212, 0.979156, 0.338202, 2.115990, -0.929127, -0.001349, 1.908698, 1.466267, 0.336205, 0.633462, 0.319305, -1.143877, 0.871177, -0.322407, 0.946998, -0.151078, -0.004548, -0.565339, -0.756891, -1.881408, 0.379964, 0.905631, -0.059628, -0.718056, 1.111951, 0.822387, -0.864100, -1.088078, -1.815400, 1.055168, -0.649688, -0.520341, -1.995433, -1.554481, -0.435070, -0.034064, 1.131726, -0.579123, -1.347430, -1.141215, -0.124311, -0.086594, -0.281484, 0.476107, -1.748589, -1.068276, 1.647245, 0.069615, -0.078227, 1.208101, 1.241545, -0.111028, 0.345575, -0.682716, 0.432327, -0.096485, -0.401960, -0.610776, 1.025829, 0.959307, -1.235978, 1.031188, -1.574948, -0.227899, 0.584832, 0.760406, 2.469717, 0.256413, 1.655118, -0.180078, 2.644947, 0.652479, 0.981664, -1.701316, 0.163683, -0.139815, -2.065104, -0.207387, 0.480101, 0.835322, -1.683494, 0.612152, 0.981000, -0.326164, 1.324524, 1.090115, -0.761424, 0.210655, 0.072510, 0.363037, -0.048188, 0.261154, -0.355165, -0.379591, -0.408861, 0.069162, 1.571172, -1.384401, 1.039511, 0.113424, -0.766459, 1.245786, 0.531509, 0.887918, -0.974149, 0.066867, 1.294011, 1.488115, 1.599605, 0.477251, -1.103884, -0.393892, 1.252033, -0.151463, -0.504116, -0.202424, -1.702858, 1.006998, -0.249685, 2.179104, -0.154331, -2.121810, -0.891202, 0.515123, -0.564630, 1.267366, 1.372638, -0.376694, -0.448909, 1.245027, -0.475679, -0.172053, -1.242728, -0.869827, -1.112337, -0.743300, 0.174500, -0.662093, -0.482210, -0.019174, -0.613502, 0.451104, -1.466087, -1.546249, 0.481771, 0.901356, -0.586204, -0.160295, -0.139245, -1.274105, 0.254188, -1.718351, 0.891518, -0.537422, -1.102405, -0.069243, -0.461786, 0.956110, 1.053045, 1.169975, 0.460827, -0.627802, 1.079890, 0.688306, 0.621129, 0.540451, -1.079225, -0.359015, -0.101863, 0.766714, -0.731075, -1.282088, -0.469996, -0.526358, -1.218683, 0.319503, 0.650002, 0.248635, 0.156987, -0.036215, -1.264908, -0.349433, 2.733280, 0.605436, -2.182984, -0.535243, 0.137908, 1.634333, -0.032955, 0.070663, 1.881920, -0.015118, 0.094975, -0.840910, 0.338012, 0.370459, -0.851801, 0.954864, -0.324575, 0.957873, -0.385518, 1.634035, 1.096395, 1.313862, -0.982811, -1.718714, 0.327434, -1.758455, -0.099843, -0.542603, 0.931352, 0.615328, -0.209592, -0.138691, 0.952544, -0.803807, 1.022720, -0.995755, 0.469721, -0.639294, 0.423762, 0.983858, 0.334180, 0.099188, 0.194572, 0.117675, -0.307973, -0.052692, -0.887336, -0.048526, -1.203387, 1.136108, -1.284760, -0.711396, 1.423754, -1.286746, -1.063178, 0.293632, 0.071649, -0.948240, -0.666323, 0.295953, 0.005905, 0.948598, -1.290044, 0.045857, -0.198361, -0.376395, -0.672173, 0.285037, -0.058442, -0.813423, 1.315453, -0.747336, 0.123433, 0.318759, 0.868046, -1.456905, -0.366207, 1.892226, 1.258285, 1.083913, 1.103781, -0.450662, 0.373093, 1.912441, -0.323160, 1.196849, 1.032394, -0.489225, -0.611835, 0.646563, 1.305835, 0.314645, -0.895626, -0.259233, 0.101800, 1.312914, 1.129141, 0.343941, -0.692631, -0.685989, 0.044296, -0.424293, 0.498901, 1.196001, 0.213762, 0.515535, -0.523633, 0.063178, 1.522725, 0.532717, -1.690319, -1.239101, -2.257515, 1.777094, -0.909916, 1.293131, 0.264584, 2.153925, -2.007944, 0.552625, -0.763890, -0.562035, -0.953106, -1.863531, -1.204616, 0.091707, 1.100253, 1.077512, -1.864751, -0.048694, 0.440074, 0.365932, -0.187143, -1.357357, -1.749817, 0.693002, 2.213509, -0.562541, -0.956100, 0.296205, -0.342402, 0.016615, -0.714624, 1.392855, 0.398274, 1.376125, -1.112563, -2.039956, -0.501882, -0.628819, -0.274327, -0.069416, -1.093633, 0.774201, 0.095567, -0.170180, -0.667728, -1.652667, -1.280517, 1.217072, -1.523037, 0.237479, -0.681775, -0.670266, -0.385816, 1.015591, 1.445426, -0.430446, -0.278403, -1.610721, 0.380949, -0.643644, 0.282753, 0.424551, -0.410483, 0.455569, -0.464155, -1.521376, -1.357681, 1.755529, -0.450180, 0.578626, -0.360625, 1.117646, -0.320945, 1.237796, 0.596200, -1.057519, -1.374348, 1.234651, -0.738660, -0.596546, 0.169076, -0.254177, 0.094557, 0.611700, -1.091182, -0.767056, 0.812085, -1.293561, 0.433524, 1.517909, 0.311327, 0.255798, -0.159060, 0.021957, 0.033504, 0.721222, -1.024611, 1.300561, 0.522489, -1.989534, 0.350933, -0.475699, -1.926994, 0.794393, 1.638186, 0.131138, 1.596888, 0.351886, 0.811365, -2.126849, -1.773102, -0.385086, 0.288300, 0.422061, -0.127214, -1.815054, -1.704918, -0.628168, -1.850733, -0.279316, 0.623252, -0.632217, -0.434341, 0.589068, -0.051822, 0.658519, -0.747813, -0.879590, 3.326272, -0.961751, 0.730675, -1.017394, 1.260736, 0.300467, 0.560240, -1.309674, -0.420158, -0.369774, -2.090397, -0.565354, 0.046129, 0.849049, -0.460684, 0.091789, 0.205908, -1.132166, -1.973450, -1.186814, -1.622404, -1.758816, 1.202013, -0.377011, 2.403231, -1.590112, -1.032344, 0.972198, -0.654387, -0.351407, 2.172723, 0.626657, -0.219501, -0.203482, -0.720068, 0.695508, -0.680560, 0.350919, -0.009336, -0.602829, -0.523066, 0.687998, 0.761637, 0.007375, 0.551127, -0.640848, 0.760267, 0.996246, -0.988837, 0.118537, -1.512689, -0.967337, 1.052003, 0.335907, -1.059500, -0.181654, 0.338329, -0.803241, -0.196976, -1.121395, -0.975595, 0.374180, -0.605473, 1.275259, 0.432008, -0.588684, -0.929118, -0.009496, 1.351648, -0.300524, -0.351779, 0.103595, -0.490596, -1.535599, -0.437618, -0.531483, 1.320316, -0.746982, -1.977622, 0.274763, 0.659368, 0.265058, 0.393151, 0.948197, -1.527902, 1.070292, 0.531644, -0.025967, -2.585584, 0.109236, -0.349427, 0.714527, 0.081005, 1.599536, 0.364819, 0.504110, 0.134927, -0.042656, -1.741699, -0.427442, -0.570640, 0.570292, 1.048239, -0.738686, 0.886855, -0.218045, 0.644869, 0.126317, 0.176439, -0.186015, -0.142634, 1.140198, -2.284539, -1.304675, -0.825940, -0.591909, -0.024776, 0.638917, -1.677299, -0.661704, -0.230292, 0.168203, -0.132978, -1.292803, 0.600158, 0.141014, 1.583463, -0.652423, -0.430009, 1.442691, 0.811679, 1.069620, -0.649406, 0.064184, 0.138485, -0.521861, 0.966340, 0.315617, 0.746724, -0.507305, -0.424242, -0.379260, 1.918421, 0.404286, -0.063935, -1.416665, -0.802534, -2.562267, -0.019566, 0.646719, 0.482523, -1.075180, 0.549775, -0.805887, -0.448409, 0.810043, -0.201821, -1.662197, 0.781888, -1.562957, -0.251527, -0.135668, -2.216716, 0.572576, -2.239706, 0.507306, -1.782985, -1.791312, -0.365453, -0.201207, -1.364960, -1.356800, -1.161624, 0.901004, -0.053705, -1.299121, -0.758874, -0.464280, -1.956964, -1.210469, 0.290738, 0.357532, 0.098175, -0.914227, -0.410533, -0.063066, -1.431780, 1.307595, -0.255819, 0.920684, 0.839122, -1.104104, 1.509767, -0.205813, -0.154908, 0.767213, -0.094795, 1.296136, -0.443297, -1.138982, 0.501735, -0.852770, -0.812613, 1.194576, -2.665832, -0.799391, 1.358673, -2.086300, 0.499290, 0.748209, 1.179608, 0.699183, -0.616288, 0.183494, -0.904054, -0.491022, -0.143933, -1.115812, -0.189929, -1.065354, 0.046956, -0.822499, 0.701307, -1.420680, 0.181819, -1.173984, 0.105723, -0.447377, -1.163066, -1.672108, -0.566332, 0.326219, -0.011615, 0.604640, 0.181881, -0.291125, -0.262693, 0.532989, 0.243873, -2.278914, 0.378499, -2.177700, -0.050487, -0.423321, 2.964864, 1.611710, -2.748098, 0.055403, -1.072288, 1.405921, 0.622425, -0.810689, -0.105351, 1.467777, 0.238425, 0.699128, -0.790384, 0.429293, 1.989825, -0.325836, 0.475885, 0.963313, -1.548403, 0.989366, -0.977546, 1.001289, 1.094308, -0.061254, 0.716554, -0.259068, -1.026794, 1.200617, 2.348669, 0.884227, -1.173520, 1.361217, -0.132846, 0.886013, 0.755648, 1.097248, 0.904229, -1.964036, -0.677520, -1.076012, 0.531972, -0.285703, -0.220560, -1.324212, 0.676223, 0.889158, 0.211189, 0.201764, 0.195226, -1.678255, -0.592627, 0.944011, 0.102422, -1.166668, 0.691240, 0.816047, -0.466195, -0.215434, -1.532484, -0.525226, -0.541634, 0.331564, 1.496379, 0.007882, 0.267803, 0.116316, -1.200258, 1.241892, 1.654223, 0.501049, -1.001680, -0.232856, -0.534538, 0.816728, -0.733738, -0.379755, -0.028850, -0.293135, -1.180674, -1.255911, -0.362506, -0.343649, -1.515994, 2.508415, 0.628740, -0.091337, -0.210417, 1.485599, -2.606368, -0.152286, -0.355858, 0.616820, 0.214789, 1.067787, -1.462990, -0.220144, 0.323410, 0.554181, -0.247375, -0.619222, -0.097113, -1.130752, -1.059527, 0.354404, -0.867502, -0.574209, 1.064287, -0.701589, 1.160461, 0.079184, -0.769385, -1.034086, -0.402912, -1.754543, -0.496846, 0.996719, -0.437931, -0.465567, -0.087749, 0.803148, 1.478224, 0.069322, -1.048425, -0.156366, -0.911584, 0.189066, 0.382192, 1.911009, 0.425621, 0.850026, 0.846915, -1.179356, 0.727010, 0.827595, 0.410849, 1.371772, -0.606145, -0.080613, 1.102135, 0.026705, -1.231639, -0.953569, -0.448215, -0.915990, 0.762368, 0.827003, -0.029055, 0.762329, -0.579281, 0.249816, 1.436914, 0.228266, 0.483711, 0.918707, -0.732941, 0.974577, 1.192704, 1.304704, 1.280495, 0.454713, 1.910975, -0.420849, 1.500076, 1.232506, 0.397188, -1.325852, 0.177486, -0.520000, -0.754956, 0.958913, -0.681294, -0.229633, -0.346341, -1.254670, 2.325723, 0.929674, -2.462046, -1.923749, 0.181683, -0.518890, -0.296452, 0.824116, -0.189372, 0.500839, 0.203966, -0.498178, -0.859768, 0.249729, 0.139699, 0.399916, -0.036136, -0.679596, 0.636561, -0.736321, 1.960231, 0.282792, 0.173209, -1.663080, 0.966210, -0.275866, -0.434864, -0.298571, 0.274940, -1.463957, -0.428047, 0.327412, -1.420246, -1.283784, -0.072660, 1.565956, -0.782935, 0.218355, 0.324207, -0.289147, 1.158334, -1.163833, -0.824748, -0.999101, 1.269441, -0.267956, -1.118836, 0.709604, 0.309737, 1.385169, -0.189328, 0.299190, 0.224285, 1.104959, -1.813469, -1.524392, 0.350099, 1.329354, -0.484162, -2.297920, -0.826873, 0.801493, 1.033009, 0.405450, -0.230036, 0.116736, 0.131545, -0.186365, -0.042283, -0.932860, -0.690057, -0.741857, 1.065376, -0.759045, 0.068818, 0.353222, 1.617720, 1.114845, -0.608284, 1.118746, 0.724212, -1.559718, -0.173792, -0.313056, 0.074559, -0.603105, 1.789751, 0.595971, -0.819520, 0.281272, -0.476995, -1.010833, 0.229635, -1.849665, 0.864481, -0.216551, -0.034766, 2.420255, 0.349244, 2.043260, 0.427657, 0.932241, -2.422338, -0.805430, 0.021119, -0.426717, -1.000772, -0.633513, -1.831402, -0.333146, -1.220375, -0.191128, -1.276040, -0.770326, 1.576051, -0.271034, 1.414798, 0.832555, -0.266150, -1.477493, 0.857825, 1.804461, 4.130207, 0.239867, 1.543715, -0.496270, -0.017649, 1.490691, 0.328614, -0.138745, 0.413253, -0.522791, -0.744054, -0.205437, 0.620186, -0.344427, -2.035611, 0.849596, 0.948447, 1.025948, 0.996796, 0.196479, -0.790346, 0.804284, 0.280843, -0.703696, -0.082807, 1.527246, 2.337364, -0.767139, -1.486588, -0.585225, -0.496735, -0.196173, 1.656400, -0.755068, 0.721025, 0.505150, 0.093764, -0.214065, -0.644444, 0.762856, -0.267866, -1.162107, -0.433391, 0.006584, 0.469195, -0.530328, -2.336403, -1.424684, 0.452840, 0.921251, -0.048104, -1.530046, -0.008502, -0.678213, 0.596110, -0.804504, -0.099055, 0.260235, -0.252246, -1.425888, 1.595043, -1.171057, -0.530394, 0.700477, 1.433159, 0.647698, -0.310902, -1.127235, -1.803936, 0.973383, 1.165033, -0.934748, 0.489157, 0.463883, -0.172083, -0.405608, 0.316482, 0.767434, -0.668231, 0.076947, 0.958626, 0.608010, -0.731403, -0.576228, -0.387127, -0.179981, 0.193513, -1.338057, 0.193783, -0.792103, 1.634757, -0.785151, 0.602284, -0.028170, -1.098832, 0.350796, -0.936700, 1.519341, -1.453602, 0.800259, -1.211707, 1.356336, -0.219330, -0.023373, -1.704031, -1.104505, 0.226076, 0.040124, -0.948625, -2.774177, 0.617655, 0.447202, -0.987279, -0.634783, 0.103508, -1.135967, 0.517512, 0.291683, -2.054892, 2.244324, 1.370581, 1.970615, -0.939026, -1.674758, 0.257961, 0.225425, -1.919457, 0.476954, -1.071607, 0.611884, -1.612559, -1.132235, -1.026179, -0.533038, 1.272140, -0.257043, -1.253260, 0.245808, -1.014841, 0.279744, -1.814775, -1.127045, -1.419677, 0.376369, 0.591224, -0.458866, -0.716003, -0.964200, -0.383081, 0.179936, 1.216983, 0.958687, -0.994106, 0.778144, 0.251646, 1.697774, 1.387842, 0.813823, -2.525960, 0.370418, -0.205953, -0.084161, -0.832263, -0.541393, -0.574338, -1.120311, -0.872154, 0.035485, 0.053247, -0.053344, 1.038644, 0.712385, 0.794505, -0.030323, 1.516880, -0.390367, -0.199084, -0.394014, 2.235563, 0.092503, -0.302474, 0.115420, 0.120407, -0.425892, 2.012095, -0.292872, -0.326430, 1.081680, 0.102949, -1.784114, -0.973225, -0.387002, 0.820568, 0.045591, 1.530530, -0.565542, -1.143308, 0.021528, 0.156963, -0.732662, -0.751316, -0.089788, -0.635457, -0.040644, -1.117088, -1.937384, -1.243058, -0.114646, 1.289554, -1.441474, -0.484146, -0.798555, -0.457454, 1.190964, -0.641817, 0.564035, 0.106007, 0.094236, -0.753865, -1.042466, -0.989856, -0.295683, -0.706202, -1.169450, -0.460193, -1.657395, -0.841694, -0.995539, -0.358772, -1.664882, 0.570838, -0.396289, -1.731477, -1.115403, 0.620929, 0.061335, 0.399668, -0.068127, -1.585043, -0.701610, 1.284485, 0.952493, 1.419603, 0.247697, -0.100541, 0.713978, -0.006986, 0.702984, 0.159201, -1.497845, 0.154597, 0.162456, -0.939554, 1.490744, -0.332034, 0.977357, -1.559501, 0.866462, 0.694334, 0.087797, -1.824179, 1.325368, 0.730660, -1.234466, -0.703555, -0.656350, -0.652637, -0.902969, -2.319799, 0.871028, -1.552981, 0.833205, 0.895942, 0.251900, 1.552731, 0.354995, -0.553135, 0.710911, -0.582761, -0.638968, 0.066044, 1.636780, 1.402966, -0.262480, 0.059942, -0.771936, 0.458813, -0.581053, 1.514566, -0.373376, -0.635316, 1.723701, -0.319360, 0.079383, -0.695946, 0.552839, -1.008440, -0.413302, -0.011188, -0.671497, 0.217848, 1.610889, 0.494483, -0.155197, -1.746254, -0.218598, -0.824741, -1.004146, -0.259388, 0.950771, 0.998660, -0.069742, -0.789814, 1.255958, 1.008365, 0.720721, -1.145533, 0.297605, -1.335619, -1.139722, -0.754910, -1.285328, 1.704588, -2.935427, 0.558715, -0.207603, 0.019552, 1.065160, -0.670505, 0.118061, 1.883379, 0.194770, 0.455807, -0.454709, 0.875503, -0.072469, 0.336244, -0.134423, -0.324554, -0.140578, 0.657979, 1.918190, 0.633870, -0.296094, -0.039935, -1.658460, 1.233894, 0.438655, -0.562516, 0.589375, 1.154545, 0.953974, 0.406260, -0.346270, 2.092486, -0.226207, -0.323744, 1.271546, 0.326654, 0.620056, -0.088792, 0.687579, -0.610112, -2.305884, 1.035462, 0.957462, -1.229826, 1.101536, -1.357840, 1.136547, -0.033601, -0.560270, -0.718953, 0.175790, -1.112367, -0.348648, 0.767139, -0.647391, -1.114609, 1.195654, -0.250543, 1.967953, 1.025841, -0.476287, -0.211184, -0.899513, 0.831512, 0.330946, 0.703301, 0.475542, 0.206674, 1.011727, 0.720259, -0.710573, 0.453554, 0.596722, 0.921845, -0.487315, -0.605008, 0.772409, -0.191312, -0.690173, -1.238858, 0.438486, -1.187214, 0.537621, 1.885140, 0.403860, -0.171882, -0.238482, -0.383263, -0.632753, 0.339261, -1.671580, -0.111760, -2.289896, 1.533002, 0.618681, 0.996485, 0.614050, 1.264215, -0.790580, 1.127925, -0.038441, -0.200495, -0.322968, 0.642345, 0.931459, 1.031330, -0.087173, -1.137137, 2.167655, 0.053971, -2.000159, 0.250566, -1.785509, 1.340821, -1.530557, -0.324439, 0.588352, -1.982796, 0.707953, -1.464408, -0.056328, 1.742646, 0.175610, -0.190105, -1.070601, -0.511225, 0.131527, -1.180681, 1.042335, -0.776898, 0.895998, -0.313644, 2.331589, -1.112329, 1.270100, -0.366736, -0.434087, -0.810905, -0.026635, 0.497211, 0.684384, 1.741307, 0.616157, -1.282660, -0.120078, 0.987783, -0.168482, 0.723899, 1.038838, 0.100580, 0.029448, 0.144325, 0.073713, 1.574727, 1.177462, -0.051801, 0.865571, -0.324303, 2.109416, -0.107176, -0.376570, 0.686553, -0.262115, -0.150045, 0.978806, -0.265865, 1.750817, -0.519104, -0.418066, -0.484084, -0.821681, -2.023824, 0.641041, 1.435649, -1.512143, -1.894185, 0.067978, 0.559519, 1.192820, -0.225480, 2.114467, -0.097792, -0.461523, 1.083582, -0.597585, 1.228360, -0.321451, -0.659091, -1.595330, 0.058044, 0.350588, 0.021272, 0.487109, -1.692837, -0.806641, -0.212023, -0.066364, 0.739048, -0.062819, -0.733062, 0.803858, -0.623208, 0.404414, -0.731762, -1.420083, -0.025725, -0.398996, 1.446463, 0.863140, 0.314338, 0.133996, 2.370759, 1.478229, 0.425683, -0.752016, -0.879089, -0.643364, 0.110096, -0.991735, 1.316670, -1.112914, 0.563816, -0.654088, 0.473336, -0.009078, -1.340841, -1.323081, -0.686711, -0.235782, 0.225756, 0.293093, 0.127440, -0.069312, -0.511438, -0.119174, 0.278989, -0.257616, 1.174912, 1.910318, 1.846705, -0.485785, -0.110256, 0.174367, -0.134730, 0.725907, -1.468874, 1.246396, -1.046981, -0.594833, -1.276122, -2.771809, -0.721197, -0.482600, -1.567459, -0.481347, 0.674979, 1.274488, 2.423560, -0.267976, -0.793804, 0.001143, 0.736860, 0.107118, -1.235729, -0.577313, -0.734275, -0.347611, -1.187458, 0.919333, 0.560804, -1.156626, -1.012794, -1.061025, -0.532376, 0.083541, -0.132204, 0.129508, -1.381266, -0.240195, -1.444914, 1.165820, 1.439741, -1.324961, -0.654943, 0.655981, 0.243397, 1.198244, -0.486708, 0.560428, 0.137818, 0.823235, 1.164202, 0.077050, -1.022000, 0.558753, 1.074133, -0.575440, 3.846572, -0.861372, 0.878048, -0.443052, 1.340118, 0.546710, -0.702909, -0.145654, 0.811572, -0.272769, 1.172947, -0.046379, -0.627028, -1.117964, -0.399355, -1.573482, 0.089649, -1.009108, -0.747467, -1.852126, 1.218465, -1.799042, 0.420656, 1.315488, -0.044988, -0.329546, -0.729793, 0.165016, -1.077543, 0.190401, 0.498616, -1.555304, -1.564459, -0.649043, -0.621572, -0.901994, -0.437664, 1.572078, 1.090919, -0.347152, -0.097114, -0.008492, -0.088418, -1.314030, -0.852944, 0.515324, -0.138421, -2.133178, 0.257018, 1.494010, -0.666710, 1.053039, 1.119645, -0.233466, 0.926570, 0.628476, -0.732007, 2.396122, 0.764430, 0.452404, -0.781547, 1.157910, 1.192325, 0.069585, 0.440461, 1.527722, 0.724217, 0.015602, 1.229416, -0.284238, -0.283669, 0.043592, -0.231933, -0.428403, -0.755100, -0.398849, 1.700462, -1.345873, -0.182431, -1.399765, -0.186655, -0.409987, -0.649845, -0.045203, 0.429021, 0.262803, -0.399553, -0.871401, -1.168656, 0.738563, -0.049850, 0.892668, 0.132433, 0.610917, 0.137063, 0.433859, 0.514240, 0.695130, -0.335846, -0.581702, 1.686332, -0.009841, -1.626923, -0.814719, -0.487415, 0.580132, 0.447047, 0.999129, -2.298136, 3.174378, 1.590696, -0.602044, -0.655543, -0.064960, -1.081756, 0.217372, 0.213395, -1.828219, 0.915394, -0.687638, 1.220056, 0.645803, -0.522768, 0.291591, 1.527654, 1.557375, 0.140858, 1.160296, 0.570901, -0.350977, 0.075466, 1.235740, 0.417247, -3.039995, 0.729048, 0.148605, -0.266659, -0.124755, -0.319608, -0.222303, -0.540852, -1.181588, -0.313741, -0.477109, -0.314955, 0.297445, 1.841823, 0.674925, -0.054718, 0.447850, 0.370269, -0.639421, 0.665439, -1.082406, -0.446864, -0.012731}, + { 0.149201, 0.607848, 0.571009, -0.942545, 0.771453, -0.212226, 0.058464, 0.774646, -1.963408, -0.465182, 0.359998, 0.894922, -0.886981, -0.247132, -0.003471, -1.460085, -0.663854, 1.135019, -1.642478, 1.008311, 0.731790, 0.450006, 0.773482, -0.061462, 0.052153, 0.678651, 0.573115, -1.208215, 1.909858, 0.421693, 0.929735, 0.864259, -1.141738, 1.223686, -1.109217, 0.984746, -0.978247, -2.176719, 1.648515, -1.188535, 2.736112, 0.333844, 0.226158, 0.846350, 0.236238, -0.281712, -0.535999, 1.093299, -0.052205, 3.367359, -2.017437, 1.276153, -0.521063, -2.192487, -1.224024, -0.703188, -0.615570, -0.250131, 0.756666, -0.393562, 1.301098, 1.452987, -0.375948, 0.905563, 1.463920, 0.264936, -0.888188, -0.901797, 1.230940, -0.964646, 2.814580, 0.578438, 0.639298, -0.244537, -0.186156, 1.481897, -1.301719, 0.163302, 1.538474, -0.186097, 0.752612, -0.556733, 0.261054, 0.790453, 0.107251, -0.094122, 0.452418, -0.334284, 0.172710, -0.817803, 0.808597, -0.092870, -1.813319, -0.654746, -0.620809, -0.079379, 0.193466, 0.049231, 0.065597, 0.138429, -0.059022, 1.448003, 0.039527, -0.667836, 1.358580, 0.417994, -0.252500, -0.881600, 0.494864, 0.688595, 2.067117, -0.531967, 1.112465, 0.374695, 0.565772, -0.144289, 1.995160, 0.737967, 1.488846, 1.175379, -0.916523, 0.086072, -0.966446, -1.253574, -1.060612, 2.033441, -0.384185, -0.863025, 0.720623, -0.690059, 0.576666, 1.499698, 0.373314, 0.620510, 0.338523, -0.265990, 1.055906, 1.529830, -1.118868, -0.871804, -1.769321, 0.034801, 0.219992, -1.281552, -0.884433, 1.567363, -0.157295, -0.019330, -0.898638, -1.331085, -0.655498, -0.594928, -1.130312, 1.325868, 0.714797, -0.303128, 1.538395, -0.498912, 1.095302, 0.852048, -0.007978, 1.772600, -1.026688, 1.601207, 1.036925, -0.128326, -0.172162, 1.193384, 0.022913, 0.574300, 0.321012, -2.067840, -0.552600, 0.651050, 1.105677, 1.871612, 2.019039, -1.303980, 0.084590, 0.691413, -0.960544, 0.372917, -0.245415, -0.455332, 0.661441, 0.441852, -2.310091, 0.252972, 1.067785, 0.989216, 0.821433, -1.836955, -0.568899, -0.115600, 0.060218, -1.829445, 0.199915, 1.806750, -1.454021, -1.403841, -0.193774, -0.321435, -0.907775, -0.477136, -0.474733, 1.683291, -0.153215, -0.081198, 0.615531, 0.249131, -0.255322, -2.091997, 0.078301, 0.850972, 0.619311, -0.203184, 0.171706, 0.839984, -2.222275, 1.399564, -1.318785, -0.274813, 1.207025, 0.841960, 0.825615, -0.427766, 0.481194, 1.869943, 0.311663, 0.472879, 0.741636, 1.143243, 0.147972, -0.279252, 0.075799, -0.669681, 0.644069, -0.029855, -2.389512, -3.206553, 1.216014, -0.097270, -1.907906, 0.396996, 0.624075, -0.714592, 0.840651, 0.562035, -0.656425, -0.271064, -0.677881, -1.008011, -0.275070, -0.845542, 0.366825, -0.406152, -0.061023, -0.590583, -1.158842, 0.481301, 0.972210, -1.209690, -0.068309, -0.898814, -0.460966, 0.374733, 1.239942, -0.464876, -1.255529, 0.775415, -0.080818, 0.292881, -0.877401, -0.312969, -0.609988, -0.779694, -1.169048, 1.024208, -1.249409, 0.975934, -0.148221, 0.120674, -0.007175, -0.219167, 1.167609, -0.543154, 1.892106, -0.689056, 1.831157, -0.872480, 0.659092, -1.905825, 1.356023, 1.868800, -0.657159, 1.051402, 1.289349, 0.066189, -0.321068, 0.200492, -0.248553, -1.297939, -0.623279, -0.764325, 0.889382, 0.441994, 0.118719, -0.309078, 1.833939, 0.156771, 0.499061, -0.197711, -1.751932, -0.770309, -0.754101, -1.275840, 0.882715, -0.974121, 0.712038, -0.921530, 1.934155, 0.602529, -1.815789, -1.121674, -0.686113, -1.004526, -0.239342, 0.363483, 0.863386, -0.698767, -1.856703, 0.873302, 1.689974, 0.458752, 0.821154, -1.495647, 0.244811, -0.507818, 0.122410, -0.906406, 0.517280, 1.502776, -0.740901, 0.133321, 0.530318, -0.411730, -1.241181, 0.193992, 0.124217, 0.078860, -0.270026, -1.332654, 1.425538, -0.594217, -0.488097, 1.004978, 2.255169, 0.277357, 1.256154, 0.570166, 0.509349, 1.390481, -0.487943, -0.751929, 0.400332, -0.004789, 1.042529, 0.082396, -0.730154, 0.786876, -0.576375, -0.929996, -0.732195, -0.942859, 0.850259, 0.998232, 2.242853, 2.980645, 0.758255, 0.081561, -0.959155, 1.420790, 0.302579, 0.527391, -0.213157, 0.788526, -2.607101, 0.579846, -0.870390, 1.622177, 0.936404, 1.838332, -1.761127, -0.649259, 0.305144, -1.543134, -0.234822, -0.007515, -1.297053, 0.204279, 1.541178, -0.173477, -0.469038, 0.383388, -0.939410, -1.677596, 0.206556, -1.113159, -0.516805, 0.208911, -0.428605, -1.174720, -1.789550, 1.406195, 0.892721, -0.144223, -0.830940, 1.587967, -0.705649, 0.503895, -0.427511, -0.631396, 1.619334, -0.305129, 0.750430, 0.897113, 2.013000, 0.029861, 0.262749, -0.668467, -0.121179, -0.391992, 0.277025, -0.460582, -0.557721, 0.554165, -0.868609, 1.665734, 0.016450, -0.846482, 0.969759, -2.007837, -0.127694, -1.832206, 0.765123, 1.592913, -0.559585, 0.710764, -1.117246, 0.728141, -1.255409, -1.403969, 0.063065, 0.337141, -0.784380, 1.106666, 1.465880, -1.355253, 0.885339, 1.505471, -0.651014, -1.665309, 0.307230, 0.442420, 1.216134, 0.437539, -0.826053, 0.207671, -0.212459, 0.408485, 1.968118, 1.045585, -0.347560, -0.019622, -2.069206, 0.976641, 0.797163, -1.203767, 0.098658, -0.906575, -0.328720, -0.812596, -1.147026, 0.256450, -1.648167, 1.900817, -0.167441, 0.742017, 0.411506, 1.129699, -2.890979, -1.246854, -0.517934, -0.586635, -0.477197, -0.455523, -0.266780, 0.636626, 1.171635, -1.040942, 0.772996, 1.604347, 0.820293, -0.239571, -1.569811, 0.554919, 1.256917, -0.029403, -0.461808, -1.464663, 0.707973, -0.988706, -0.271798, 0.656110, 0.221315, -0.511569, 0.049245, -2.632035, 2.090562, -0.666088, 0.436966, -0.550321, -0.792834, 0.018997, -0.346333, -0.702599, -1.068031, 1.088632, 1.970409, -0.037554, -0.800670, -0.757214, -0.797822, -2.528800, -0.970495, 0.060879, 0.111033, -0.334404, 1.172868, 0.288381, 0.822279, 1.194054, 0.168564, -1.689323, -2.573836, 1.303644, 0.126792, 1.538782, -0.563871, -0.359045, -0.768851, 0.731580, -0.550312, -1.098872, -0.073123, 0.429948, -1.089006, -0.014579, -0.641638, 1.249358, 0.923591, 0.325363, 0.048936, -0.140937, 0.940481, -2.177061, 0.413712, -0.113942, -0.109343, 0.929529, 1.354857, -0.264771, 0.225420, 0.386258, -0.146628, 1.099721, -1.330830, -0.293051, 0.862432, -0.167110, 0.524110, -0.116484, 0.386106, 1.191900, -0.347398, 1.892673, 1.150784, -0.715381, -1.152122, -0.104430, -0.092699, 0.539072, -0.281348, -0.860378, -0.791183, -0.367574, -0.169019, 0.731042, -0.348181, -1.302638, 0.772865, -0.343593, 0.384028, -0.632844, -1.505481, 0.117213, 0.743553, -0.267846, 0.015909, -0.422074, 1.379979, -0.159648, -0.486311, -1.567048, 0.800332, 1.029405, 0.047318, 1.640302, 0.871179, 0.373822, -1.415608, -1.521852, -1.163931, 0.756666, -0.241035, 0.948581, -1.587851, -0.780195, -1.124518, 1.415949, -0.498076, 0.840156, -0.351807, -0.823556, 0.087739, 1.069030, -0.615327, -1.719704, -0.450357, 1.284308, -0.236312, 1.133519, -0.318956, 1.154290, -1.389853, -1.205672, -0.012555, -1.205553, -0.637079, -1.156984, -0.197456, 0.141278, 0.367560, -1.127421, 1.330321, 1.129526, 0.261183, -0.462119, -0.888573, -1.259332, -1.395158, 0.535289, 0.713098, 0.761988, -0.167740, -0.544483, -0.837973, -1.138644, -0.175192, -0.712883, -0.406908, -2.441294, -0.661088, 0.094047, 1.590959, -1.042496, -1.725298, 0.848982, 1.612410, -0.227921, -0.080204, 1.175641, -0.679755, 0.638943, -1.603580, 1.430700, -0.891440, 0.439303, -1.065962, 1.672859, -0.007660, -1.387395, 1.641540, -0.295314, -0.819496, 1.323874, -0.053013, -0.056089, 0.775836, 0.987990, 1.530613, -0.564851, -0.030366, -1.585126, -0.028851, -0.188450, -0.480429, 1.039645, -0.776626, 0.144817, 2.396612, -0.528075, -1.227692, 0.299480, 0.093125, 0.629944, -2.456309, -0.453557, -0.475528, -1.229707, 1.229101, -1.008786, -0.880102, -1.077733, 1.803171, 0.212662, -0.848684, 0.167281, -1.137621, 0.439724, 0.631176, -0.598245, -1.577634, -0.596036, -0.365109, -0.295102, 1.920111, -0.359934, 0.276507, 0.961542, 0.257167, 0.167061, 0.858438, -0.322175, -2.071193, -0.980438, 0.987964, -0.052062, 0.604191, 0.855799, -0.494034, 1.588121, -0.032285, -1.015721, -1.651904, 0.078028, 0.915060, 0.828652, -1.146578, 0.070168, 1.461110, -0.151155, -1.137509, -0.761922, -0.950942, 1.997504, -0.361643, 0.491155, -0.040032, 1.260619, -0.251878, -0.290040, 0.382053, 0.083459, -1.050812, -2.145545, 0.279021, -0.067025, -0.161817, -1.446462, -1.217072, 1.204879, -0.592065, -1.081154, -0.850625, -1.173197, -0.062487, 2.118081, 0.506652, -0.449009, 1.751553, -0.321272, 1.507819, -0.314958, 0.134979, 1.384565, -2.955125, -0.283867, 0.078814, -0.211898, -0.226967, 0.573109, 0.200208, 1.605955, 0.248580, 0.757331, -0.255479, 1.307199, 1.010151, -0.326622, 0.792750, 0.051186, -0.376606, -0.317637, 0.447989, -0.723224, 0.554832, 0.640609, -0.056975, 1.801513, 0.414428, 1.088714, -0.283683, -1.499129, 1.398144, -0.296018, 0.610458, 0.884158, -0.836216, -1.489107, 0.431303, -0.359063, -0.007515, -1.010872, -0.453721, -0.374391, 0.994950, -1.359902, -0.786621, 0.318597, -0.386631, 0.185353, -0.350736, 0.185003, -0.637703, -0.480557, -0.409032, -1.106753, 0.483084, -1.171951, -0.105414, -0.555543, -1.197392, 0.651101, 0.045685, 1.834311, 1.104711, 0.999883, -1.422899, 0.270038, 0.174272, 0.312557, 0.598122, 0.427074, -0.036128, -1.154482, -0.866233, 1.695838, -0.316850, 0.158765, 0.187985, -1.011472, -1.478120, 0.137634, -0.338142, 1.644206, 0.902956, 0.521377, -0.511349, -0.945625, 0.121090, 0.620034, -1.820078, -0.105173, -0.675237, 0.864920, 1.067501, -1.228684, -0.755016, -0.628408, 0.375815, -0.697170, 0.220100, 0.399190, -0.211824, 0.130923, 0.044351, -0.282484, 0.952266, 0.611868, -0.007632, 1.163557, 1.955808, 0.758852, -0.990990, 1.202379, -0.529358, 1.166041, -1.224939, -0.558407, 0.464950, -0.245553, 0.981848, -2.755735, 1.109626, -1.092044, -0.535157, -1.187582, 0.437637, 0.340411, 0.207799, 1.382684, -0.099487, -0.924974, -0.604575, -0.280310, -1.924818, 1.730679, -0.099489, 0.927105, -0.524098, -0.702229, -0.150720, 0.543267, -1.093150, 0.711867, 1.621031, -0.368971, -0.494024, 1.224635, -0.462169, -1.248082, -0.022194, 2.379237, 1.748775, -1.734834, 0.320724, -0.048801, -0.890791, 0.093482, -0.845531, -0.502929, 1.363672, 0.521064, 1.767126, 0.911220, -1.470797, -0.681921, 1.018354, -1.042110, -0.281185, -1.131075, -0.927553, 1.241408, -0.544769, 0.829601, 1.602589, 0.646913, 0.034951, -1.645524, -1.019176, -1.466121, -0.248557, -0.117175, -2.106003, 1.169941, 1.660831, -0.747520, -1.270801, -0.124126, -0.095915, -0.607709, -0.780736, -2.290315, 0.974936, 0.537196, -0.670478, -0.211151, 0.309119, 0.959258, 0.174146, -0.517605, -0.834903, 0.372601, 1.456180, -1.258510, 0.151260, 1.379354, -0.231260, -1.185922, -0.346028, -0.621739, -0.584649, 0.847721, -0.388086, -0.218502, 1.172472, -1.234970, -0.317102, 0.286069, -0.152869, -1.730038, 0.938823, -0.452470, -0.150653, -0.751000, -0.861125, -1.673548, 0.015942, -1.769763, 0.342681, -1.033299, -0.884228, -0.241775, -0.852191, -0.986658, -1.880001, 1.335850, -1.067870, -0.275532, 1.219326, -1.242037, -0.846159, -0.168420, 0.196826, -0.529145, 0.365818, 0.227110, 0.408198, -0.494421, -0.831610, -0.471365, 0.774180, -0.226798, 0.570199, 0.529078, -0.542267, 1.450386, 0.592933, -0.379372, -1.425411, 0.144318, 0.179941, 1.041530, -0.774547, 0.463808, 0.673805, -0.004938, -0.122694, 0.497543, 2.568955, -0.083913, -0.155812, -0.217187, -0.810842, -1.603720, -1.248545, -0.645904, 0.075846, -1.061958, 0.088274, -0.765172, -0.405291, 0.790168, 0.475921, -0.337083, -1.641051, 0.119987, -0.530493, -0.614599, 1.330474, -0.674055, -0.839359, 0.851403, -0.684143, 0.260262, -0.606028, -0.211830, 0.954393, -0.559420, 2.421412, 0.692107, 0.797535, -0.995547, -1.262061, 0.111319, -0.203991, -0.062493, -0.994530, 0.492733, 1.917762, 1.462497, -0.478587, 0.299400, 0.414351, 0.750356, -1.117146, -0.048830, -0.498265, 1.264890, -0.574407, -0.262815, 0.242167, -0.459163, -1.072892, -1.047095, 1.023642, -1.051941, -0.132526, -0.597137, 0.958617, -0.491855, -0.688306, 0.612433, 0.573038, -0.862718, 1.242017, -0.903679, -0.746634, -2.584370, 0.613286, 0.084027, -0.585794, 0.810032, -0.340284, 0.116032, -0.085611, -1.260334, -0.048354, -0.240084, -0.666387, 0.847188, 3.106357, 0.113349, 0.328906, -1.138530, 1.591675, 1.320039, 0.934805, -2.541944, -1.011793, -0.969712, -2.413254, -0.123661, 0.177802, -0.636519, -0.382558, 0.199456, 0.749215, -3.064507, 0.347773, -0.327088, -0.247124, 0.965566, -0.607548, 1.062786, 0.122809, -0.199329, 0.556261, 1.823568, 1.468847, 0.397709, -0.784720, -0.575994, 0.586440, 1.047005, -0.123366, -0.363057, -2.624258, -0.767382, -1.728837, -1.500550, 0.083723, 0.492181, -1.649778, 0.235831, -0.300202, -0.049904, -0.127694, -0.253886, 1.372372, 0.519919, 0.134778, 0.077695, -1.845336, 0.799809, -0.102759, 0.820715, 1.719161, 0.958062, -1.652676, -1.991410, -1.017608, -1.036588, 1.057431, -0.602496, -0.277506, -1.259548, 1.066618, -0.711275, -0.425878, -2.139620, 0.822112, 0.163018, -0.511526, 0.325567, 1.446156, 0.389453, 1.072211, 0.221189, -0.123412, 0.164455, -1.445186, -1.096777, 0.413386, -0.445980, 1.196981, 1.041197, 0.334185, -1.063610, -0.149294, 0.064874, 1.285635, 0.285338, -0.631886, -0.597928, 1.613712, -1.026082, 2.722634, 0.227651, -1.630924, -0.771793, -0.176722, 0.457608, -0.337623, 0.508725, -1.155671, 1.195770, 0.728704, -1.860535, -0.356027, 0.626465, 0.721880, 0.073398, -0.818486, -0.390084, 0.207500, 1.366954, -0.748259, 1.525421, -1.260207, 0.875698, 0.500301, -0.731830, -0.820801, -0.410863, 0.421485, 0.898028, 1.548518, 2.117296, -1.593225, -0.723634, 0.306897, 1.033075, -0.021910, -1.038486, 0.666074, 0.591077, -0.865629, -1.137821, -1.350243, 2.461920, 0.068409, -1.146083, -0.458541, -0.070093, 1.263338, -0.706218, -0.957105, -3.294787, -2.299563, 0.131921, -0.154168, 1.196194, 0.584646, 1.283428, 0.103624, 0.774664, -0.654099, -0.202629, -0.357849, 0.730825, 2.051115, 1.437440, -0.310151, 1.856034, 1.297169, -0.392272, 0.338569, 0.639314, -0.343742, -0.318258, 1.642427, 0.901359, -0.267214, 1.213424, 1.844536, 1.260031, 0.911591, -1.231594, -1.330641, -0.131112, 1.345875, 0.442911, 2.489695, -0.174064, -0.922050, 1.498562, 0.095677, -0.388545, -0.728232, 0.967035, -1.047480, 0.117068, -0.055944, 0.517253, 1.520160, 0.765177, -0.168312, -1.970597, -0.042346, 0.897118, 1.020232, 0.057082, -0.373285, -2.071722, 0.068116, -0.825410, 0.292560, -0.193112, 1.234488, 0.267386, 0.330797, -0.183826, -1.654482, -0.266647, -1.299870, 0.953848, 0.483609, -0.083428, 2.536303, 0.250108, 2.370729, -0.547940, -0.609660, -0.058822, 1.443196, 0.685863, -0.432354, 0.961740, 1.264327, 1.196046, 1.057996, -1.309299, -0.305432, 2.316704, 0.672968, -0.776782, -1.221628, -0.050847, 1.243562, -0.392993, -1.600202, 1.322430, 0.925353, -0.829251, -0.985898, 0.016973, 1.116976, 0.618889, 1.421038, 0.433715, 0.439900, 0.233164, 0.188565, 0.488959, -0.732365, -0.749850, 0.524333, -0.565628, -0.575503, 1.169017, 1.283895, -1.652527, -1.043620, -0.716208, 0.385822, 1.072892, 1.396946, 1.140387, 1.969026, 0.398739, 1.797070, -0.692053, -0.423477, -0.027239, -1.167946, 0.738102, 1.550322, -1.279032, -0.520762, 0.117092, 0.450279, 0.781322, 0.445715, -0.840788, -1.668623, 0.546266, 0.101741, -0.836997, 2.093446, -0.390265, -0.493358, -0.858428, 0.870861, -0.541845, 1.318626, -0.229913, -2.302627, -0.107648, -1.349221, -0.064091, 0.505872, -0.518531, -0.872966, 2.338731, -0.515348, 0.296947, 1.061729, 0.440155, 1.055311, -1.477064, 0.428967, 1.933912, 1.163326, 1.555506, -1.086426, -0.730437, 0.107253, -0.684363, 0.720184, -0.309668, -1.337294, -1.773575, -0.563587, -0.222956, 0.889119, 0.067291, -0.902921, -0.657469, 0.587936, -0.159503, -1.372482, 0.307291, -0.044918, -0.532010, 0.334640, -1.165935, 0.174595, 0.808977, 0.214787, -0.413598, 0.206775, 2.155323, 0.971580, -1.243864, -0.190765, -0.917861, -0.998484, -1.769660, -0.333549, 0.696826, -2.299335, -0.519640, -0.899774, -0.925672, -0.576504, 0.440411, -1.345894, -0.203047, 0.036914, 1.642719, -0.778267, 0.253421, -1.691178, -1.274574, -1.298600, 1.419747, 1.787647, 0.115205, 1.721722, 1.435250, 0.836909, 0.818980, -1.156009, 0.525674, 0.713775, 0.218713, 0.061268, 0.549883, 1.018396, 0.032054, -1.040015, -1.298242, 1.291810, -0.829988, 1.453031, -0.081897, -0.488900, 0.482968, -1.202772, 0.690761, 0.357578, 0.717751, 0.312866, 0.377382, 0.911278, -0.017509, -0.917956, 0.146617, 0.591575, -1.079441, 1.351288, 0.416063, 1.266100, 0.486867, -1.351142, -0.543511, 0.201936, -0.115333, 0.246885, 0.812562, -2.725627, -0.903915, 0.056077, -0.688293, 0.955303, -0.042529, -0.435986, 0.995610, -0.537746, -0.646035, 1.985819, -1.440160, -1.212804, -0.303726, 0.184776, -0.204591, -1.577412, 1.409813, 0.931170, 1.869951, 0.642564, 0.473252, 0.045894, 0.327160, -1.022547, -0.226534, -0.046579, 1.541723, 0.559081, 0.198642, 2.653671, -0.470270, -0.056498, -1.815817, -0.695746, -0.390758, -1.059136, -0.287565, 0.500386, -0.453675, -0.214689, -1.314294, 2.124161, -0.481870, -1.221630, 1.518887, 0.310977, -0.166154, -0.538045, 0.320023, -0.373452, 0.684540, -0.541411, 1.175937, -1.548541, -0.815471, -0.419730, -1.818922, -0.812239, 0.651535, 0.246888, 0.909491, 0.757587, -0.878225, 0.720263, 0.788756, 1.894143, -0.183486, -1.147772, -0.321078, -1.568437, -0.575769, 0.314336, 0.064963, -0.920860, 0.739571, -0.799163, -0.020605, 1.069005, 0.221032, 0.033306, 0.722869, 0.217193, -1.125440, -0.286937, 2.593075, -0.324396, -0.021025, -0.147873, -0.108357, -1.017214, 0.167601, -0.100800, -0.641358, -0.148384, 1.146581, -0.172189, -0.079754, -0.337982, 0.264845, -0.667049, 1.522982, 0.068352, -1.421352, 0.553754, -1.029660, -1.389621, -0.650323, 0.608450, 0.765460, -0.480427, 1.719323, 1.530837, 1.352147, -0.539452, -0.728205, -0.289440, 1.238384, -1.859709, -0.164917, 0.611183, 0.333272, 0.043235, 0.107394, -1.506761, 0.630302, 0.670784, -1.485462, -0.885507, -0.857629, -0.544483, 1.226999, -1.398027, 1.976142, 1.945029, -0.717879, 1.083131, 0.601411, 0.616302, -0.555335, -0.555318, 0.711178, -0.244854, 1.047159, 0.193479, -0.468753, -0.082854, 1.945026, 0.908903, 1.613671, 1.244805, 0.285969, 0.699130, -1.232457, 0.407800, 0.720733, 0.778562, -0.603465, 1.162670, -0.255111, -0.017728, -1.314711, 0.217689, 1.497094, 0.818944, -0.234143, 0.072500, -0.410634, -2.607684, 0.921220, -0.037439, 0.246088, -0.605548, 0.439275, -0.795736, 0.797346, -0.716717, 0.339123, -2.019090, -0.182187, -1.335673, 0.259978, 1.653428, 0.675601, -0.922123, -0.166392, 1.249810, -0.997363, 2.208431, -1.242374, -0.534548, -0.993581, 0.500817, -0.392681, 1.652644, -0.069704, 0.640649, 0.537264, -0.967187, 0.549753, 0.989922, -0.522108, -0.756870, -1.516896, -1.469859, 2.094418, 1.084111, -0.184690, 0.714410, 1.446437, -0.759202, 0.921436, 0.136870, 0.481108, 2.348843, -0.335309, -1.350474, 0.717339, 0.702010, 0.224093, -1.692914, -2.196663, -0.451444, -0.871143, 1.985705, -1.197093, 2.628658, -0.855127, 0.078917, 0.712711, 2.063890, 0.345424, -1.713913, 0.053198, 0.097076, 0.084486, 1.085831, -2.942844, 0.908334, 0.160938, 1.023398, 0.366058, -0.060187, -0.575407, 0.639791, -0.088645, 1.604726, 2.927742, -1.082644, -0.270145, -1.335198, 0.338717, -1.821043, 0.964323, -1.625552, 0.780702, 0.477826, -0.800376, 0.523111, 0.369025, 1.245785, -0.381496, 0.148221, 0.274938, 0.518518, 0.358801, 0.433234, -0.654964, -2.137191, 2.364537, 0.213943, 0.424608, -0.333920, 0.064086, 1.331688, 1.487929, 0.564217, -1.056354, 1.114637, -1.033250, 0.834008, 0.077213, 0.735597, -0.385114, 1.233065, -0.404703, 0.975694, 1.953189, 0.710061, 0.874974, -0.873350, 0.734087, 0.015294, -0.428246, -0.221910, 2.749456, -1.303687, 0.254639, -0.320381, 1.185232, -2.557705, -0.854437, 0.095059, -0.247995, 1.111029, 0.682240, -0.507852, -0.019989, -0.192194, 0.475778, 0.839589, -0.051492, -1.493541, -0.504765, -1.407140, -0.463491, 1.611016, 0.777079, 0.756655, 2.298157, 1.279991, 0.054396, -0.929516, 0.280770, 0.063491, 2.124701, 1.032480, 0.242202, -0.784070, -0.164317, -0.752295, -0.311986, 0.357116, 0.646169, 1.211834, -1.153229, 1.638067, -0.909612, 0.040453, -0.760889, -0.728214, 0.624168, 0.233724, -1.486220, -0.936797, 1.810260, 0.095250, 0.642192, -1.078182, 1.228718, -2.251075, -0.787528, 0.674758, -0.452898, -1.450645, 0.075598, 2.195413, 0.120605, 1.675799, 1.028607, 1.133095, -0.687797, -1.330897, 1.906713, -0.421618, 2.282566, 1.650577, -1.571260, -0.022753, -0.813847, -0.700581, -0.612438, -1.962804, 1.206240, -0.317857, 1.085146, 1.409747, -0.796394, 0.233119, -1.212614, -0.019540, -0.104782, 0.065606, 0.568877, -0.370864, 1.514297, 0.911852, 0.852035, 1.382020, 1.206218, 0.388230, -0.109975, -1.643510, 0.219096, -1.823825, 0.708963, -1.286280, -0.108092, 1.715523, -1.250175, 1.374728, 0.435218, 1.874771, -1.587252, -0.573409, 1.062077, 0.200179, 0.160916, -0.054276, -0.441074, 0.668816, 0.635072, 0.706346, -0.515625, 0.969951, -1.836677, 0.664553, 0.161248, -0.504426, 0.418334, -0.766124, -1.631492, 0.060867, -1.556152, 0.110655, 0.237738, -0.076750, -1.897029, 1.301633, 0.103754, -0.023509, -2.091118, 1.593171, -0.798912, -0.241198, 1.177807, 0.847342, 0.754564, -0.702858, -0.953498, -1.067529, 0.480264, -2.544836, -1.025979, 0.261932, -0.990739, -0.352954, -1.576018, -0.674583, 0.573619, -0.348575, 1.430100, -1.359205, 1.160196, -0.475650, -1.418547, -0.724067, 0.052394, 0.241321, 0.189390, -0.458566, 1.715675, -0.259126, -0.560336, -0.336420, 0.307523, 2.103936, -1.086089, -0.941402, 1.360882, -0.078568, 1.069642, 0.406190, 1.228448, 2.080045, 1.710971, 0.703004, -0.022652, -2.304456, -0.728997, -1.795338, -0.498077, 0.540722, 0.187551, 0.529428, -1.151801, -0.310114, 0.153387, -1.404219, -1.813480, 0.794346, 0.352173, 1.338165, 0.850162, -0.225038, -0.167416, -0.404632, 0.270419, -0.687981, 0.535449, -0.101477, -0.165800, 1.069551, 0.437195, -1.463546, 0.317318, -0.042081, -1.874462, -0.234735, -0.158075, 0.468044, -1.225636, 0.021927, -0.692164, -1.240567, -0.238586, -0.321754, 0.058038, 1.749179, 0.780722, 0.899346, -0.362388, 0.512818, -0.347653, -0.122173, 0.486668, 0.254972, 1.060605, -3.330893, -0.848603, 0.169145, -1.903979, 1.658314, -0.142390, 0.109099, 1.521919, -1.099334, 0.510142, 2.015790, -0.887881, -3.088587, -0.731992, -0.640893, 0.273448, -0.649989, 1.281792, -0.469102, -0.908237, -0.281290, 0.418677, -0.350093, 0.175188, -1.346333, -0.135523, -1.242874, -1.599269, 0.946620, 0.933084, -0.986967, -1.475112, 0.337279, -0.759522, 0.773863, 0.360864, 0.375795, 0.342019, -2.193547, -0.591675, 1.099452, 0.050526, 0.596584, -1.589102, -1.447948, 0.294333, 0.198311, -0.207655, 1.063678, 0.712125, -0.250338, -0.830990, 1.454679, -0.078153, -0.182746, 0.729893, -0.756329, -0.727408, 0.030368, -0.518128, -0.737160, 2.216797, 1.075264, 0.689296, 0.195180, -0.688191, 1.085504, 0.484290, -0.135030, 1.927774, -1.130193, -0.083181, -0.914206, -0.051457, 1.147075, -0.114333, -1.065647, 0.612540, -1.855985, 0.077113, -1.758529, -0.575775, -0.198210, -0.136353, 0.983723, 1.167087, -1.282908, 0.394032, 0.441478, 0.706853, -0.153504, 0.570595, 0.700878, 1.926696, 0.689210, -0.759217, 1.123449, -1.755343, 0.433145, 0.322592, 2.163970, 1.764772, -0.221501, -0.077027, -0.344597, -1.229059, 0.675558, 1.354935, -0.357937, -0.018455, 0.539297, -0.094365, -0.670102, 0.208960, -0.470608, 2.131201, -0.409162, 1.196678, -0.916581, -0.993127, -0.507149, 0.831271, -0.217001, -0.361255, -0.133153, -0.879703, 1.018339, -0.127916, 1.704769, -1.338772, -0.445393, 0.153549, -1.881477, 0.600847, 1.509023, -0.249080, 0.160151, -1.344914, 1.182460, 1.177651, -1.666785, -0.151305, -0.815749, -0.844017, -1.054972, -0.797645, -0.878460, 1.161515, 0.988742, 1.637632, -0.205189, 1.118304, -0.170133, -0.295434, 1.443829, -0.514089, -0.433477, 0.170094, 0.321378, 1.147670, 0.260662, 1.086005, -0.196800, -0.434707, -0.758094, 0.926730, -0.015249, 0.179387, 0.107703, -0.965584, 0.358516, 0.804347, -0.299195, -0.882999, -0.861585, 0.561087, 0.702533, -1.874868, -1.656486, 0.951960, -0.738889, -0.552069, -1.125096, -1.702933, -0.259888, -0.557553, 0.126570, -0.200831, -0.343166, -0.423782, 0.465506, -1.730303, -1.379234, 0.274824, -0.120863, 0.141093, 0.468650, 1.307742, 0.496847, -0.963365, 0.147135, -0.726274, -1.249636, -1.665222, -2.323496, 1.251643, -0.394400, 0.126252, -0.527650, 0.060189, 2.206653, 1.133147, 1.196164, 1.536704, 0.284010, -2.522779, -1.372270, -0.116722, -0.942591, -0.881784, 0.298016, 0.166188, 0.008092, 0.768952, -1.035638, -0.553823, -0.689117, 0.522422, 0.838712, 1.828365, -0.250781, 0.059916, -1.611368, -0.192312, 0.914720, -1.490616, 0.515060, 0.686156, -0.624570, -0.493592, -1.710923, 1.098963, 0.945378, -0.248058, 3.227589, 1.793707, -0.370564, -1.237949, -1.176003, 1.107723, -1.281360, -0.949722, -1.525117, 0.445103, 0.464639, 0.721906, -0.524428, 0.153295, -0.967464, -0.300795, 1.672709, -0.343525, -0.664938, -1.266006, 0.948389, -0.019081, -0.536341, 0.628003, -0.111193, -0.378715, -0.315987, 0.315329, -1.416956, 0.937942, -1.096324, 0.264338, -1.493933, 2.323896, -0.438985, -0.441054, -1.118096, -1.283621, 1.418447, 1.701715, 1.145482, -2.225544, 1.807544, 0.456759, 0.287953, -0.886350, -2.127660, 0.521931, -1.014119, -0.665152, -0.955395, 0.332580, 1.345558, -0.150654, -1.806973, -0.382947, -0.383030, -0.547349, 0.740724, 0.195575, -0.758256, -0.194345, 2.613254, -1.474896, -1.161848, 2.464419, 0.164068, -0.518511, 0.430016, -0.889948, 0.528219, 0.833695, -1.688696, -2.375681, 0.918920, -0.916112, -0.615052, 0.280241, -0.362451, 1.744795, -1.067756, -0.897074, -0.602246, -0.041602, -0.230906, -0.984118, 0.215107, 1.356938, 0.641882, 0.827869, 1.879166, -0.009978, -0.706269, 2.123842, -0.610725, 1.391842, -0.114912, 0.436658, 0.419251, -1.192562, -0.296644, 1.623204, -0.128263, 0.890636, 1.002930, -0.322791, 1.575811, -0.866970, -0.247719, -0.285896, -0.044846, 0.399279, 0.485904, -2.111681, 1.458884, -0.686243, 1.017792, 0.181967, 0.160032, -0.363940, -0.789405, -0.045901, -0.398053, 1.482738, 0.174865, 0.133076, -0.831572, -0.626974, 0.004535, 0.538366, 0.179657, -0.720387, 0.156853, -1.069117, -1.158555, -0.574731, -1.823767, 0.160691, 1.385460, 1.804040, 0.068777, -0.169229, -0.895321, 0.736519, 0.943490, 0.276774, -0.544262, 1.934911, 1.100312, 0.135381, -0.208266, 0.805393, 0.895910, 1.220592, 0.839968, 0.656904, -0.947809, 0.250160, 1.327527, -0.275230, -0.896859, -1.552629, -0.122891, 0.514040, 0.908310, 0.806895, -0.138531, -0.325118, -0.857067, 0.660311, -0.781029, -0.211677, 0.735403, 1.297556, -0.123127, 0.345860, 1.141471, 0.766391, -1.926411, 0.262821, -2.196987, -1.157269, 1.083074, 0.480122, 0.613028, 1.002370, 1.016511, -0.260060, -0.704010, 0.499189, -0.261603, -1.223492, -0.328900, -0.166102, 0.650941, 0.419420, -0.039127, 1.132943, -0.864713, -0.610824, -0.889720, 1.274654, -0.360884, 0.430137, -0.082666, 0.631616, 0.826398, -0.352772, 0.123987, -1.163990, -0.395595, 0.490041, -0.518836, -0.543182, -0.884489, 0.502251, -1.325089, 0.688049, 0.760975, 0.866051, -0.955380, 0.082390, -0.653710, 0.618073, -0.373580, 0.162492, 0.981884, 0.296001, -2.428015, -0.014876, 2.027094, -1.382469, -0.695400, -0.028213, 0.128615, -0.561253, 0.185778, -0.484359, 1.215579, -1.691350, -0.030627, -0.571790, -0.580195, -0.055000, 0.455679, -2.040278, 1.605490, -1.308529, 0.593147, -0.387072, 0.236456, -1.525982, -0.787845, -1.501738, 1.479215, 0.762102, -0.551032, 0.727081, -0.692409, 1.064490, 0.573914, -0.039996, -1.015630, 1.066914, 1.166375, -1.948346, -1.364063, -0.570753, 1.871874, -0.005461, -2.582093, -1.056135, -1.215165, -0.015245, -0.030541, 1.367074, -1.094980, -0.421514, -1.409598, -0.080573, -1.109689, -0.170495, -0.701886, -1.663771, 0.504651, -1.730618, 0.814758, -1.189907, -0.022678, -0.900925, -1.282092, 1.036108, 1.286971, 0.146561, -0.104122, -0.900358, 1.194999, 1.085071, 0.245473, -0.344552, 1.136613, -0.222807, -0.039748, 1.226650, -0.477331, -0.306240, 0.009091, -1.133449, -0.478763, -0.027651, 0.548283, -0.265791, -0.506056, -0.455783, -0.531620, -0.555388, 0.045440, 1.051072, 0.820059, -1.720696, 0.085284, 0.954460, 1.756948, 1.133869, 2.490584, 1.392225, 1.155582, 1.258072, 1.336534, -0.048626, -0.184858, -0.478615, -1.935108, 1.392227, -0.606312, -0.414760, 2.026889, -0.219457, -0.172333, 0.781231, -0.698827, 0.875314, 1.233227, -1.634788, -1.039862, 0.117942, 0.849633, 0.863716, -1.065377, -1.686738, -0.598673, 0.771012, -0.885423, 0.289281, 1.727263, 1.318882, 0.274868, -0.906274, 1.264238, 0.468178, -1.039663, 1.496806, -0.417078, 1.272921, 0.630650, -0.438431, -2.277566, -1.210622, -0.473948, -0.899909, -1.035093, 0.051717, 0.911415, 0.192445, 0.155345, 1.762306, -0.973867, -0.376061, -1.763172, 1.802793, -0.291311, 0.669337, -0.928726, -0.157349, 0.044624, -0.820466, 0.637974, -1.097872, 0.332506, -0.760951, 1.372918, -0.663406, 0.168231, 0.171713, 0.367454, 0.449412, -1.563049, 1.201667, -0.465472, 0.631889, -1.641761, 0.653492, 0.605014, -0.406481, -0.343667, -0.678263, 0.781456, -1.912179, -0.539338, 0.841557, 0.054534, -0.263837, -0.024809, 0.414199, -1.054561, 1.104222, -1.499765, -0.781907, -0.478213, -0.881519, 0.383298, -0.529201, -0.104214, 0.120789, 1.019846, 0.487809, 0.482114, -0.323590, 2.476811, -1.636494, -0.444597, -0.866103, 0.611504, -0.239812, 2.578005, -0.164232, 0.218792, 1.885903, 1.183741, 0.914319, -0.233472, 0.475280, 0.534430, -0.980125, -0.801128, -0.879462, -0.745111, -1.004103, -1.354266, 0.326177, -0.630928, -0.000771, -0.559626, -0.307599, -0.788990, 0.301350, -0.658314, 0.440005, 0.001909, 1.008989, -2.232125, 0.863060, -0.304955, 0.945003, 0.884038, -0.175643, 0.372697, 0.946738, 1.915100, 0.993498, 0.284672, -1.038963, -1.358843, -1.153239, 0.320318, -2.755738, -0.352300, 2.253395, -1.447105, 0.692975, -0.868532, -1.236475, -0.502317, 0.531573, 1.502469, -2.444619, -1.179295, 0.601001, 0.311607, 0.395198, 0.755518, 1.976267, 0.204615, 1.106207, 0.561237, 0.387203, -0.837171, 0.077322, 1.821755, 0.565255, 1.198347, -0.004862, 0.416905, 1.302956, -0.599332, 0.485901, -0.151075, -0.020921, -1.034141, -0.806071, -0.029095, 1.188493, 0.258671, -0.978080, -1.268929, -1.063724, -1.467195, 1.252039, -0.386705, 0.711198, -0.920883, -2.420926, -0.290539, -0.062117, 2.074835, -0.374069, 0.878367, -0.205094, 0.256383, 1.434138, -0.183714, 0.539224, -0.861300, 0.859191, 0.136592, 1.724366, 0.280813, -1.047397, 0.639498, 0.721197, 1.109048, 2.530865, 0.172151, 0.992468, 2.380822, 0.705975, -0.259773, 0.281196, -0.699031, -1.064526, 1.441540, -0.521743, -1.387615, 0.687498, 0.200466, 1.723945, 0.186570, -1.188742, 0.736814, -0.855797, -1.308723, -0.238915, 1.852911, -0.664917, 0.973878, 0.461865, 0.916721, 0.540135, 1.163384, -0.082009, 1.349012, 0.345283, -0.369935, -0.295485, -1.424258, -0.949818, -0.678800, 0.311844, -0.727653, -0.826054, 2.215930, 1.217589, -0.425064, 1.584409, -1.576904, -0.501944, -0.437954, -0.227501, -0.470265, 1.538283, -0.999006, -1.588923, -0.701121, 0.652228, 0.547492, 0.330306, 0.745149, 0.445952, -1.599581, 2.355876, -0.259323, 2.147191, 0.789432, -1.193722, -0.308272, 0.905792, -0.237533, -0.420663, 0.186424, -0.060277, 0.329435, -0.251988, 1.206661, 1.455311, -0.102099, 0.439973, 1.874725, -0.875383, 1.538812, 0.151283, 0.754883, 1.218416, -0.307863, 0.362797, 0.556609, -0.206668, 1.156604, -1.623848, -0.121572, -0.527849, 0.296861, 0.523361, 1.128567, -0.085918, 0.635616, 0.176748, -0.708314, -0.687628, 1.695505, -1.628185, -0.483821, -0.545136, 0.909749, 0.300384, -0.824013, 1.799047, -1.172044, 1.656234, 1.297919, -0.493350, 1.103375, 0.392184, 0.994335, -0.259227, -0.649651, 0.896740, -0.138826, 0.765243, 1.909679, 0.049780, -0.237862, -0.258180, 0.298850, -0.028429, 0.910624, 0.474021, -0.298196, -0.061631, -0.135204, -1.599762, -1.395628, 0.669363, 2.177910, 0.030061, -0.343063, 0.546187, -1.514810, -0.286909, -1.139559, 0.235273, -0.019798, 1.206490, 2.374522, -0.375667, -1.670095, 1.552036, -0.523969, -0.670330, 0.555415, 1.334496, -0.423447, 1.411823, 0.487578, 0.696663, -1.266013, 1.235226, -0.235227, -0.962345, -1.845408, 0.859036, -0.757812, 0.046500, -0.466294, -0.979230, -0.743074, -0.780998, 0.641689, 0.707992, -0.872524, -0.029345, -0.086639, -0.134237, -0.634409, 0.147895, 1.344257, 0.274307, 1.013566, -1.450009, 0.159792, -0.694519, -0.119801, -0.315509, -0.391460, 2.225720, -0.613707, -0.501829, -0.538628, 0.585139, 0.894433, -0.090804, 0.632710, 2.402012, 0.381078, 1.504487, 0.519381, 0.664636, -1.680124, 0.150588, -0.772539, -1.055521, -0.926961, 0.892638, -1.844589, 0.208582, 1.267388, 1.237923, 1.799750, 1.482798}, + { 0.866080, -0.625056, 0.121576, 0.683522, -0.202481, -0.031306, 1.427738, -0.488166, -0.186778, 0.894950, 0.925825, -0.191137, 0.717836, -0.879052, -1.100222, 0.353360, -0.417645, 0.605303, -1.253296, -0.669116, -1.194778, 0.623267, 2.341286, -0.657832, -0.878181, 1.181717, -1.897064, 0.811238, -0.730155, -0.570854, 0.767517, 0.119827, 0.534865, 0.272399, 1.227020, -1.742613, 1.004194, -0.442072, 0.670814, -1.506767, -0.752951, 0.486330, 2.335784, -0.555937, -2.128456, -1.597014, -0.329895, 1.121284, 0.738840, 0.243518, 0.375629, -0.170737, 0.763442, 1.587682, -0.692817, -0.936445, -0.194823, -0.074044, -0.404243, 0.471099, 0.186785, 0.421224, -1.671246, 0.968159, 0.758238, 0.142311, -0.077029, -0.051229, 1.091731, -1.126450, 1.034504, 0.072515, 0.795068, 0.023054, 0.600066, -0.256137, -1.477674, -0.442686, 0.308367, -0.813398, 2.630720, -1.785801, 2.496218, -0.892052, -0.833671, -0.637926, -1.563931, -0.068708, 1.009903, 0.239129, 1.387142, -0.877682, -0.097589, -1.138588, -1.256634, -2.490517, 0.166882, -0.445716, -1.342862, -1.024068, 0.699409, -0.604573, 0.696067, -1.088224, 1.358951, 1.520175, 0.056891, -1.030266, 0.454259, 0.851122, 0.178090, -0.044059, 0.723282, -0.632171, 1.512396, -0.272019, 1.413195, -2.408789, -0.609614, -2.469491, -1.568153, 0.098862, -0.503856, 0.836568, 0.604145, -1.944672, 0.070242, -0.238194, 0.113773, 1.589729, 0.025282, 2.289331, -2.281631, 0.535196, -0.324952, -1.049516, -0.989250, 0.162283, -0.760608, -0.279558, -1.365060, -1.015585, -1.531056, -0.537421, -1.016214, -1.166797, 0.941740, 1.365052, 0.518987, -0.261628, -0.632740, 0.533625, 1.756043, 0.500323, -0.156668, -1.423898, -0.079336, -1.659259, -0.235127, 0.530761, -0.551240, 1.344640, -0.138553, 0.055545, 0.945635, 1.249807, -0.246087, -0.167804, 0.036563, -0.701682, 1.880804, 0.044013, -0.588649, 0.857985, -1.601004, 1.568145, -0.004795, 0.513520, 1.473438, -0.240329, -0.940371, -0.406401, 0.527143, -0.619889, 1.161171, 0.994367, 1.144915, -1.411791, -1.105600, 0.124040, 1.229793, 0.006724, -0.329356, 0.338324, -0.373046, 0.316355, 0.253644, -0.591294, 1.157036, 2.007112, -1.217574, 1.344516, 1.483402, -0.261257, 0.014705, 2.063675, 1.919235, -0.004932, -0.530673, -0.684331, -0.780340, -0.473427, 1.812634, 0.115207, 1.092782, -0.705669, -0.465017, -0.430005, -0.150851, -0.698143, -0.145435, 1.191302, 0.947306, -0.422873, -0.636114, 0.596539, 0.930528, 1.250969, -0.194961, -0.421729, -1.357245, -0.291536, -0.471628, 0.210783, 1.466112, -0.812788, -0.597556, 0.831338, 0.128582, -1.379366, -0.823598, -1.109293, -0.927909, 0.117315, -0.482314, -0.975568, 1.141278, 1.009733, -0.754042, 1.562002, 0.436963, 1.514210, 0.234493, -0.849063, -0.383298, 0.483355, 0.501147, 0.959971, -0.389813, -0.195204, 0.158393, -0.706217, 0.369670, 0.457643, 0.012449, 0.032779, -0.606546, 0.151965, 0.116383, 0.304348, 0.737343, 0.945559, 1.946601, 1.404633, -1.637507, 1.189380, -1.143859, 0.634591, 1.429753, 0.077491, -0.608245, -1.815699, 0.481323, -0.283573, -1.637408, -1.551261, -0.515094, -0.202550, 2.245906, -0.621128, 0.558414, 1.476321, 0.513519, 1.627048, -0.818652, 0.777813, -1.993592, -0.728490, -1.123018, -1.066344, -0.022479, 0.282836, -0.385306, -1.049368, -0.098289, -1.206473, -0.299108, -0.534904, 0.965860, 0.171924, -0.284782, 0.306616, -1.007264, -0.478522, -0.137854, 0.730069, -1.743119, -0.077908, -0.209660, -0.599580, 1.872925, -0.592893, 0.938033, -0.153283, 0.324590, -0.993903, 1.162394, -0.440835, 0.281423, 0.701583, -1.295074, 0.227009, 1.732142, -0.791053, 1.133152, 0.409532, 1.334237, -0.536727, -1.378523, -2.128803, -0.992456, -0.288152, 0.783170, -0.599178, 0.079859, 1.314679, 1.168192, 0.555146, 0.117692, -1.584788, -0.796828, 1.045045, -0.391945, 0.743054, 0.034987, -1.627516, 0.281056, -0.434273, -1.226724, -1.755962, -0.305257, -1.636569, -0.038305, -1.202151, 0.803421, -1.357541, -1.492121, 0.930937, 0.393656, 0.491163, 1.866477, -0.092015, -0.545907, 0.386556, -0.372691, 0.808851, -0.971420, 0.551977, -1.222459, 0.674766, -1.729624, -0.372694, 1.424360, 0.516517, -0.993228, -1.156948, 1.193111, -0.346497, 0.512757, 1.610829, -0.049649, -0.106986, -0.241958, -0.158423, -0.164717, 2.527416, 0.685740, -0.674470, 0.260833, 0.500579, -0.220337, 0.048914, 0.682433, 0.518936, -0.353085, 0.232056, 1.231053, 1.279112, -0.305579, -0.749819, 0.746049, 1.289129, 1.575381, -0.218919, 1.365493, -0.808482, -0.121943, -1.112036, 1.540329, -1.934186, 0.420315, 0.240255, -0.129204, 0.429837, 0.476000, -1.351878, -0.854836, -0.059540, 0.167376, -0.567624, 0.395599, -0.672338, -0.784793, -0.648753, 1.263464, 0.338883, -0.087137, -0.343555, -1.367965, -0.774313, 2.242901, -0.820300, 0.092045, -1.530808, 0.123239, 0.314421, -1.061623, 0.598152, -0.061931, 0.486039, 0.153387, 0.461348, -1.587206, -0.788664, 0.332952, 0.155265, -0.141890, 0.397604, -1.084012, 0.090640, 0.853002, -0.426816, 0.212600, 0.607898, 0.740935, -0.658008, 2.020804, -1.354068, -1.085039, 2.034110, 0.073370, 1.119913, 0.925678, -0.121731, 0.169471, -1.021834, 0.554295, 0.304618, -0.285245, 0.050441, 0.320287, -2.384048, -0.872404, -0.169052, 0.557579, -0.527850, 2.183009, 1.661903, 0.247150, -1.697130, 1.474665, -0.896336, 0.590937, -1.740218, 1.095348, 0.088326, 0.598268, -0.989111, -0.498938, 1.754319, -0.734885, -0.475523, -0.441134, -0.282573, 0.259958, -0.803159, -1.139269, -0.009103, -1.187762, -1.011415, -0.985840, -0.865901, 2.678457, -2.276532, -0.855305, 0.972495, 1.283762, -1.111560, 1.442450, -0.711381, -0.570406, 0.906598, -0.770528, -1.061474, -0.673857, 0.147451, -1.082723, 1.180839, -0.436853, -0.524940, 0.601215, 1.179201, -1.050460, 0.405990, -1.458281, 0.793042, -0.711795, 0.406700, 0.018243, -0.370712, 0.654176, -0.302028, 0.393976, -1.058034, -0.902753, 0.381339, 0.692187, -0.738020, 1.057761, 0.015325, -1.110343, -0.656409, -0.055695, 1.310873, 0.750534, -1.363022, 1.175762, -0.120519, -1.031137, 1.140029, -0.329029, 0.025319, -2.087813, 0.247282, -1.452162, 0.827695, -0.739062, -0.529970, 1.102839, 1.530424, 1.055784, 2.305816, -1.632225, 0.709391, 1.464674, -0.102572, -0.365037, 0.071583, -0.831253, 0.858458, -0.545418, -0.939763, 0.136604, 0.362291, 1.180735, 0.282425, 0.258424, -1.024531, -1.023833, -0.465537, 0.641825, -0.754757, -0.470048, 0.553161, 2.572747, -0.452273, -0.082609, -0.484712, 0.709840, -0.347187, -1.283469, 0.726399, -1.376245, -1.017341, -0.769386, -1.460398, 0.756859, 0.074215, -0.883605, -0.085961, 0.513298, -0.887467, 1.093229, 0.786730, -0.889586, -0.439322, 0.566151, 0.682972, 0.966316, 0.762452, 2.145279, -1.417722, -0.399061, 0.312206, 0.876386, -1.744653, -0.326833, -0.975932, -0.125209, -0.025324, 0.392906, 1.547869, 1.431672, 3.566266, -0.212317, -1.933719, -1.742438, -0.443646, -0.386387, -0.649715, 0.316112, 0.720124, -0.621040, 2.019113, -1.868344, -1.204657, 0.592919, -0.719526, 0.080945, -0.120886, -0.212831, -1.136993, -0.489251, 0.087271, -1.557861, 0.010958, 0.735884, -0.088227, -0.302970, -0.471382, 1.537142, 0.216014, 2.509764, 0.797699, 0.193308, -0.544166, 0.018125, -0.644585, -0.393085, 0.533862, -0.223951, 0.716247, -0.072976, 0.089957, 1.529737, 0.309489, 0.960230, -0.202549, -0.409538, -0.362624, 0.773931, -0.143382, -0.983237, 0.925479, 0.290366, -0.771150, -1.087026, -1.597768, 1.495027, -1.862602, -0.963893, -0.448775, -1.895035, 0.518529, -0.284084, -0.560165, 0.124057, 0.371273, -0.432069, -1.086086, -0.546512, 0.833328, 1.623601, 0.536892, -0.147260, -2.005611, 0.629331, -1.469961, -1.097785, 1.662673, 1.141078, -0.563562, 0.627441, 0.302879, -1.433626, -1.259479, -1.558900, -0.501172, 1.432016, 0.205649, -0.231006, -1.392617, 0.455032, -0.521806, -0.011940, -0.171073, 1.289475, 1.278206, -1.023689, 0.697618, -1.264072, 0.277073, -2.001110, -1.683971, -1.146299, -0.871609, -0.253327, 0.363848, 0.861232, -0.715006, 0.512186, -0.145668, 0.370110, -0.571338, -1.151515, 1.232720, -0.793683, -0.741712, 1.055755, -0.694236, 0.810106, 2.199485, 0.140183, -0.963557, 0.845009, -0.987688, 0.990250, -1.577770, 1.431587, -1.301437, 1.239062, -0.677719, -0.522684, 1.874665, 1.225909, 0.928061, 0.052261, -0.684423, 0.221779, 1.707296, -1.300179, 1.240287, -2.429695, -1.032099, -0.421101, -1.879222, 1.260394, -0.293095, -0.325011, -0.555053, 1.830536, 0.237767, -0.631116, -0.230862, -0.462782, 0.476752, 0.352012, -1.417231, -1.111102, 0.646558, -2.226050, 0.349928, -0.754827, -1.185599, 1.020158, -0.674111, -1.444716, 0.513836, -1.380571, 2.237895, -0.915158, 0.852023, -0.089503, 1.688970, 0.427471, -0.894534, 0.497518, -1.223063, -0.319078, -0.626563, 0.443969, -1.835064, -0.085767, 1.786129, -0.490578, -1.494761, -0.111281, 1.525945, 0.627078, -0.479635, 0.392405, 0.830649, -0.979098, -0.880157, -0.741741, 1.788440, -0.059044, -0.096899, -0.289844, -0.864377, -1.861610, 0.887553, -0.243750, 0.682854, -0.818693, -0.403739, 0.407293, 0.952543, 0.184516, -0.264644, 0.603370, 0.157254, -0.265024, 0.506363, -0.970555, -1.871022, 0.046592, -1.393637, 0.469394, 0.368070, -0.205906, -0.437604, 0.580834, 0.987258, -1.476638, -0.007926, -0.533343, 0.857065, 0.402322, 1.555581, 0.628366, -0.079442, 0.467065, -1.277888, 0.871195, 1.789343, -0.761707, 0.306273, 2.548108, 1.391456, 1.624150, 0.260732, 0.682083, -0.562809, -0.024022, -0.594007, -0.878409, 1.621674, -1.316073, 0.593073, -0.740887, -0.468724, 0.459892, -0.665582, 0.858507, 1.290915, -1.296884, -0.300729, 0.048045, -0.031714, 0.063180, -0.086559, 1.021989, 0.798749, -0.036070, 0.526889, 0.267839, -0.555943, -0.170009, 1.871376, 0.179436, -0.414829, -1.182134, -0.632216, 1.612467, 0.067326, -0.477916, 0.362054, 0.133632, 0.457566, 0.471967, -0.416417, 1.944087, 1.588940, 0.945364, -0.712993, 0.359503, 0.768896, -1.333828, 0.289991, -0.095798, -1.194459, -0.340439, -0.380044, 0.788486, -0.841882, 0.432185, -0.257383, 0.226356, 0.800804, -1.746093, 1.833542, 0.129083, -1.562647, -0.674053, -0.872678, 0.409536, -0.417973, 1.468005, -0.654525, -0.738618, 1.283969, -0.106187, 0.673474, -1.587501, -0.176866, -0.057429, 1.063939, 0.371306, -2.029183, 1.153850, -1.476369, 0.490714, 0.735153, 2.296438, 0.383435, -0.337478, -0.127492, -0.083371, 1.315445, -1.657943, 0.333524, 2.280654, -0.179751, -0.560651, -0.851302, 0.447417, -2.058154, -0.462227, -0.284589, -1.198078, -0.754108, 0.698126, 1.636841, -0.265110, 0.370307, 0.799386, -0.893016, -2.349732, 1.437648, -0.693910, 1.043736, 0.643352, 0.207635, -0.142330, -1.384235, 0.128748, -1.065996, 0.371468, 0.293711, -0.043013, -0.917557, 0.214133, -1.264201, 0.809578, -0.720514, -1.374734, 0.461260, -0.840797, -0.591591, -1.010133, 0.431669, -0.002577, 0.561860, -1.076547, 1.551711, -0.954878, -0.174032, 1.381817, 0.836243, 0.335142, -0.778518, -1.642962, 0.049834, 0.564255, 0.004090, 1.947392, 2.338240, 0.718297, -1.833553, 0.058871, 0.271972, -0.175633, 1.629816, 0.700878, -0.288959, 0.592680, -1.515393, 0.472875, 2.112240, 1.162787, -1.495415, 1.190261, -0.393630, 0.253107, -0.464610, 0.492040, -0.097936, -0.817057, -1.044482, 1.897956, -0.808720, -0.135495, -0.107551, 1.302777, 0.240345, 1.090704, -0.839641, 0.158970, -0.907895, 0.722996, -0.266976, -0.082540, -1.054283, 0.028118, 0.241373, -1.243846, -0.054739, 1.537156, -0.099751, -0.084943, 0.340408, 1.221556, -1.409493, -0.387700, -0.415074, -0.342647, -0.929319, 2.220125, -1.464192, -0.165621, 1.047390, -1.715423, -1.594238, 2.273807, 0.655294, 0.479319, -1.015210, 0.806681, -0.209447, 0.204576, 0.258196, -0.483063, -1.681366, 0.008328, -0.219593, 1.909453, -1.053701, 0.396671, -1.061971, 0.363481, 0.330236, -0.226809, 0.018982, -0.037943, 0.023632, 1.074286, -0.839933, -1.674575, 0.147764, 0.454554, -0.538546, 1.224776, -0.966047, 0.394956, 0.683762, 0.223490, -1.441312, 0.101555, 0.122068, -0.368579, -0.438313, 0.897250, -0.679879, 0.354355, -0.261714, -0.887968, 0.379458, 0.563363, -0.032173, 0.460656, 1.790193, -0.411473, -0.398949, -0.313208, -0.696975, -2.386993, 0.560689, -0.918726, 0.273229, -0.506375, 0.535167, -0.039461, -1.288077, 2.248814, -0.342561, -0.795268, 0.453964, 0.473058, 0.727831, -0.089775, 0.432799, -1.112878, -1.938059, -1.390420, 0.948197, -0.090147, -0.284371, 0.590925, 0.134578, -0.291504, -0.505787, -3.847496, 0.176390, 0.282504, -1.096974, 0.610727, 1.086551, -0.199676, 0.111785, -0.300103, 1.174017, 1.694637, 0.817853, 0.242458, -0.527984, -0.185254, -0.777582, 2.046369, 0.882931, -0.876828, -0.604258, 0.986735, -0.603645, -0.032872, -1.423635, -0.195754, 0.166335, -1.298287, 0.276551, 0.723668, -1.974046, -0.813926, -0.021943, 0.486148, -1.429870, 0.626000, -1.124876, 0.273593, 0.823846, -0.253530, -0.431954, -0.761624, 1.459349, 1.799130, 0.391437, -1.278682, 0.004817, -0.503401, 0.722611, -0.250671, -0.602714, -0.437887, 0.572359, 0.142011, -0.427153, -0.828514, 0.011911, -0.717657, -0.030854, -1.313396, -0.507176, 0.785684, -0.712978, -0.564218, 0.804374, -0.581219, -1.211383, -1.014890, -0.752703, -0.860390, -0.100982, -1.224481, -1.636135, -0.010095, -0.717337, -0.549612, 1.428019, -0.709451, 0.403979, -0.687782, -0.622907, -0.139188, 0.216700, 1.714843, 0.539288, 0.683704, -0.663875, -0.793943, 0.624918, 0.676490, 0.208840, 0.962314, 0.362820, 0.772940, 1.606428, -0.122450, 0.216362, -1.182223, -0.969204, 2.276088, 0.195578, -0.861958, -0.064710, -0.252919, 0.072252, -0.297379, -1.139888, 0.615842, -0.797196, -2.362969, -0.425130, 2.479320, -0.502803, -0.189390, 0.741748, -0.491664, 0.951242, 0.827396, 0.178470, -0.641742, -1.533794, -0.593862, -1.626103, 1.130744, 1.131827, -3.772321, -0.559363, 0.719245, 1.122014, -0.287638, -1.169031, 0.651085, -0.510943, -1.510822, -0.063816, -0.722222, 0.255818, 0.697665, 0.320904, -1.289394, -1.224787, -0.347790, -0.166135, -1.791772, 0.258354, 0.498435, -0.539995, -1.567683, -0.865629, -1.814919, -1.128370, 0.790603, -0.132310, -0.448530, 0.145025, -0.244010, 0.224476, -0.890154, 0.306108, -1.298195, 2.108936, -0.582208, 1.452610, -0.312109, -1.236338, 0.094996, -0.009935, -0.470598, -0.403244, 0.204501, -0.428012, 0.439674, -0.128136, 1.276248, 2.559436, -1.016343, -2.112634, -1.441053, -1.185648, 0.039115, -0.228886, -1.430952, -0.515052, 0.167344, -0.604830, -0.284895, -2.520651, 0.054911, 0.325911, 0.411236, -0.324748, 0.013136, 1.646319, 0.022821, 0.785766, 0.320375, 1.178190, 0.918574, -2.096366, 1.599525, -1.156967, -1.291589, 0.173924, 0.544679, -0.099780, 1.046660, -1.000173, 1.632640, 1.536410, 0.752063, 1.089912, 0.600260, 0.988167, -0.059682, 1.664781, 1.607080, -0.383973, 0.715836, -0.588035, -0.171650, 0.724845, -0.009811, 0.144272, 1.485045, -2.468019, -0.625782, 0.629748, -0.149571, 0.094794, -0.720417, 0.466368, 0.839744, 2.813787, -1.109426, 1.788474, -0.152154, 0.011179, -0.493324, 1.116369, 1.123329, 0.789971, -0.980939, 0.410504, -1.580570, 0.170416, 0.543618, -0.843891, -1.015638, 0.719766, 1.441691, 0.216968, -0.667386, -1.094302, -0.794691, 0.723954, -0.464506, 1.488797, 0.747929, 0.359773, 0.292485, -0.207020, -0.427866, -0.325735, 0.776294, 2.377958, -0.225268, 0.528907, -0.123222, -0.741996, 0.379008, 1.084395, -0.455357, -0.113783, -1.016427, 0.333656, 0.022496, 0.578530, -0.791001, -0.036372, -0.098465, 1.911017, 0.755293, 0.160291, -1.019335, -0.021960, -1.173783, 0.158222, 1.221956, 0.391605, -0.688374, 0.674036, 0.162344, 1.607492, 1.079123, -0.963116, 1.791465, -0.381475, -1.076895, -0.942434, 0.183333, -1.544643, 0.186308, 1.006477, 0.028194, -2.687652, -0.497943, 1.155251, -0.160850, 1.779146, -1.038186, -0.027444, -1.656326, -0.070191, 0.226612, -1.105460, 0.838924, 0.424065, -1.230931, 0.398621, -0.039785, 0.628192, 1.014558, -0.377979, 0.373647, 0.531381, -0.379779, -0.599680, 0.399506, -0.812143, 0.041911, 0.599747, -1.560446, 0.080338, -0.541123, -0.727403, 0.038486, -1.330103, -0.046058, -0.335335, 0.368983, -0.448917, 0.682676, 0.568725, -1.714079, 0.921011, -0.206732, -0.368350, 1.321718, -0.020491, 0.531012, 0.021592, 0.339343, -1.140593, -0.391564, -0.107119, -0.236683, -1.034557, 0.100708, -0.449282, 0.030256, -0.465716, -0.455046, -1.184186, 1.723527, -0.258237, -1.290475, -1.421946, 1.294195, 1.379051, 0.136141, 0.351948, -0.018266, 0.847237, -0.021566, -0.931318, -2.056534, 0.365122, 0.997505, 2.602920, -0.761167, 1.264392, 1.830410, -1.213272, -1.553209, 0.234176, 0.323397, -0.725278, 0.526702, 0.226803, -1.958645, -1.091297, -0.011619, 0.684826, -0.009424, 1.215389, -0.909560, 0.050839, 1.758763, -1.407746, 0.423231, -1.959009, -1.254847, 1.125488, 0.552132, -1.654553, -0.554040, 0.637097, 0.696657, -1.386460, -0.505970, 0.740580, 0.850192, -0.161729, -0.587337, -0.218720, -0.599069, 0.804794, -0.057150, -1.209704, -1.395190, -0.767662, -0.064794, 0.372170, 1.135837, 0.429881, 0.525413, -0.352796, 1.233959, -0.973516, 1.073572, 0.593402, 1.543265, -1.188478, 2.123628, -0.248787, 0.491973, -0.494814, -0.762773, -0.033604, -0.534293, -0.310574, 0.036215, -0.064379, 1.902932, -0.277711, -0.855579, -0.859116, 2.425140, 1.447875, 0.651337, 1.091749, 1.120395, -1.221832, 0.112273, 0.024132, -0.983881, 2.035450, -0.567740, -1.363777, -0.499334, -1.012821, 0.094597, -0.852352, 0.655773, 0.239259, -0.877779, 0.228158, -1.236552, 0.320742, 1.445940, -0.025044, -0.003785, 1.563272, 1.172344, -0.884234, -2.289657, 0.830618, 0.327599, 0.157927, -1.882563, -1.508342, 0.382493, -0.994105, -1.779637, -0.350338, 0.644919, -0.162481, -0.561791, -0.292453, 1.661347, 2.744623, 0.508979, 1.267254, 0.387200, 1.116384, -0.153209, -0.353780, 1.885726, -0.446143, -0.996422, 1.312443, -0.348828, -0.179586, 0.226335, 0.340366, -0.251821, 0.824876, 0.775029, -0.116069, 1.221625, -0.649652, -0.262559, -0.189682, 0.340743, 1.709756, 0.585655, -0.661662, 0.342280, -0.232525, -0.562666, 0.174523, 0.066243, -1.599213, 2.531471, -0.142645, -0.125509, -0.915869, 0.308407, -1.158598, 0.408644, -0.083824, 2.681291, -1.546395, -1.523349, -0.304321, 2.641508, -1.475251, -0.817083, 1.122185, 0.612842, 1.328678, -0.526128, -0.234835, -0.679203, 0.369675, 1.542627, 2.138129, -1.202362, -0.275408, -0.319938, 0.769256, -0.899474, -0.128025, 0.727383, -1.950824, -0.532140, 0.577920, 0.544175, -0.275512, -0.661959, -1.184935, -0.539799, -1.251001, 1.061214, 0.987375, 0.952338, 2.106361, -0.445452, -0.102870, -0.987018, 0.796406, -1.589291, -0.984786, 2.175890, 0.878986, -1.303779, 1.381738, -0.382568, 1.545153, 1.120980, -2.607963, -0.742678, -0.797142, 0.054504, -1.254030, 0.531856, 1.495502, -1.095563, 1.238427, 0.145039, -2.147918, -0.614304, 2.304283, 0.572977, 1.878409, -0.820310, -1.299808, -0.251479, 0.402326, -1.094128, 0.419399, -1.453472, -0.353842, 0.449488, 1.035677, 0.602080, -1.049608, 0.215506, -0.370363, 0.614483, 0.213826, -0.110799, -1.268846, 0.550292, 0.488564, 0.650422, 0.094543, 1.400128, 1.085979, 0.078700, -1.454187, -0.659944, 0.808809, -0.898729, 0.486505, -0.660853, -0.663082, -0.753350, 0.122708, -1.486485, -1.044857, -0.462478, -0.629648, -1.037736, 0.523050, 1.289400, -1.188837, 0.345922, -0.079748, 1.544174, 0.825203, 1.494623, 1.013468, -0.493277, 0.190401, -1.227905, 1.450422, -1.793353, -0.669938, 0.444625, -0.687635, 1.703094, -1.738284, -0.975158, -0.883730, 0.117322, -0.653096, 1.693622, 1.288797, 1.490813, -1.174640, -0.157626, 1.514826, 0.431111, 0.490108, 0.365193, -0.330806, 0.257561, 0.162109, -0.956062, -0.678524, -0.696529, 1.573911, 0.260740, 0.734999, -1.957596, -0.469499, -0.468998, 0.991787, 0.380781, 0.421273, 0.178817, 0.751496, 1.052312, 1.117894, 0.159977, -0.107782, 1.719500, 0.774930, 0.556565, -0.318402, 1.262776, -1.698784, -1.735955, 0.483090, 0.155759, -0.920446, -0.593141, -0.464839, 1.747810, 0.574726, 2.271998, 1.096809, -2.022347, 0.486468, -0.310964, 0.979258, -0.299639, -0.662594, -1.161256, 0.826822, -0.482803, 0.848660, 0.000758, 1.692897, 0.235913, -1.935236, -0.346001, -0.353184, -2.144652, 1.034221, -0.673041, 0.287329, -0.777888, 0.351853, 0.490109, 1.474277, -0.183182, 0.319611, -0.456337, 0.133169, 0.467387, -0.565013, -0.421942, -0.193670, -1.332679, -0.874967, 1.613541, -1.136294, 1.854410, -0.556349, 0.548563, -1.671199, -0.043325, 0.817063, -0.128590, 2.412078, 1.331446, 0.378804, -0.043284, -0.286320, 0.848561, 1.278577, 1.773656, 0.911615, -1.805698, 0.234705, -0.181564, 0.121394, 0.466954, 1.267693, -0.371449, -0.020568, -2.171257, 1.000126, 1.061159, 0.505495, -0.969288, -1.152498, -0.182558, -0.628118, -0.373315, 2.211878, 1.285323, 1.186292, 0.845856, 0.427614, 0.721105, 0.031726, 0.776502, 1.512902, -1.046481, 0.904783, 1.308605, -1.539528, -0.040557, 0.361875, -1.012259, -0.940666, 0.037068, -0.065892, -1.155974, -0.841934, -2.347145, 0.075728, -0.316108, 0.972830, -0.589255, -0.191023, 0.463864, 0.390986, 0.181009, 0.190874, 0.766675, 1.032602, -0.593371, 0.503112, -1.045168, 0.550146, -1.900579, -0.272935, 1.148232, -0.245716, 0.754492, 0.157743, -0.063951, -0.912690, -0.323499, 1.655576, 0.727205, 0.337494, -0.746560, 1.979771, -2.154375, 0.238954, 0.674898, 0.290035, 0.508623, 0.238075, -0.746953, 0.917649, -1.644612, 0.502363, 0.089401, 0.508571, 0.623569, 0.477996, 0.387759, -1.172721, 0.970701, 0.733727, -0.125840, 1.773905, -1.121656, 1.333812, -0.251404, -0.896054, -0.381041, 0.118461, -1.629806, 0.067714, 0.061594, 0.321507, -0.050412, -0.278915, 0.627870, -0.044515, 1.287073, -0.979405, 0.685551, -0.380886, -1.643892, 1.313650, 0.141613, -0.970911, 1.184946, -2.157228, -1.459640, 0.538561, 0.699558, -0.303640, -0.108299, 1.245393, -1.913161, -1.542441, -0.163104, -0.324393, -2.242914, 1.630139, 0.948557, 0.426050, -1.618316, -0.696065, 0.586882, -1.018793, -0.437240, 0.745870, -0.316719, -1.665113, -1.242550, -0.814925, -0.325437, -1.117700, -0.212810, -0.756375, 0.390049, -1.004653, -1.651104, -0.871851, -0.698587, -1.425555, -0.811383, 0.642577, 0.310604, -1.859788, -1.692393, 0.238403, 0.386056, -0.340491, -1.001342, -0.593708, -0.064249, 0.659165, 0.187226, -0.772300, 0.453423, 0.841282, 0.934110, 0.864331, -0.940953, 0.345837, 0.103412, -0.027145, -0.227788, -0.300733, 1.372915, -0.477588, 0.031030, -1.770696, 1.731423, 1.594679, 0.596607, -1.023487, 2.074233, -0.666359, 0.644589, 0.841822, 0.277574, 1.564192, 0.863628, 0.836216, 0.870658, -1.265987, -0.124717, 0.600019, -0.471383, 0.269590, -0.919838, 0.523051, 1.549593, 2.487397, -0.595452, -0.166794, -1.103905, 0.878145, -0.211910, -1.791964, -0.838534, -0.957797, 2.505346, -1.169337, -0.472157, -0.388990, 1.302714, -2.537949, -2.488113, 0.853702, 1.182353, -0.000154, -2.121131, -0.028600, 0.761508, 1.429013, 1.292225, 0.204175, 0.752785, -1.226625, 0.351576, -1.568331, 0.702363, 1.777936, -1.854469, -1.040808, 1.192233, -0.013438, -0.512396, -1.555198, -1.442163, 0.892473, 1.234882, 1.289877, 0.280704, -0.169063, 1.375754, 0.857097, 1.336896, -0.441673, -1.566456, 0.778496, -0.695970, 0.006153, -1.720969, -0.889830, -0.763117, -0.528502, -0.097321, 0.195173, -0.625830, 0.195705, 0.940522, 0.773672, -0.100510, 0.918883, -1.060731, 0.131079, 0.828299, -0.624251, 0.127454, -0.978299, -0.323283, 0.334632, -1.449966, -1.445615, -0.293141, -1.611847, 0.023450, -0.024560, -0.114500, 0.120742, 0.012154, 0.433593, -0.967235, 1.190966, -0.358853, -0.510341, 1.171354, -0.738971, -0.500408, 0.152481, 1.438761, 1.207522, 0.901185, 0.800722, 0.160888, 0.186841, 0.692368, 0.073113, 1.058602, -1.590634, 0.515061, -2.049998, -0.465840, -0.693507, -2.183272, 0.524993, 0.423880, 0.408038, -1.054390, -0.880862, 1.538043, 0.909203, -0.725540, -1.434025, 0.403302, 0.587620, 2.974963, 0.931787, 0.173392, -1.230264, 1.998399, -0.359904, 1.391133, 2.113743, -0.386662, -0.621082, 0.300080, -1.373614, -0.209795, 0.667779, -2.221721, 0.754526, 0.022138, 0.135022, 0.803149, 1.884429, 0.606001, 2.013745, 0.112433, 0.133606, 1.429963, -0.960882, -1.305413, -0.140874, -0.856742, -0.701118, 0.315902, -1.346026, -1.838305, 2.523635, -0.460362, 2.023920, -1.283741, 0.247436, 0.372712, -0.120169, 0.459905, 0.575902, -0.389160, -0.998085, 0.207795, -0.550396, -0.222576, 0.658455, 1.385007, -1.329448, 0.186255, 0.186056, -0.203054, -0.372280, -0.871205, 0.104640, 1.582643, 0.337969, -0.476638, -0.096993, 0.509839, 1.311044, 0.267209, 0.547898, 0.606629, 0.661469, 1.478996, 0.303150, 1.054283, 1.963517, -0.701416, -0.644236, -0.670002, 1.485709, 0.867337, 0.330906, 0.310329, 1.293163, 2.306950, 0.512658, -0.694413, 0.068148, -1.136732, -0.810269, 1.395791, 0.997877, -1.143858, -1.089280, -0.496521, -0.050454, -1.358466, 1.567171, -0.141172, -1.363225, 2.074891, 0.231248, -0.591231, -1.028763, 1.302356, -2.111721, 1.336129, 1.147171, -2.028263, 0.841178, 0.102087, 1.241837, 0.512563, 0.467606, -0.240968, 1.268157, 0.389327, 1.278809, -0.102705, 0.408528, -0.488802, -0.377720, -2.062289, -0.370082, -0.420057, -0.001716, -0.112779, 1.504343, -0.853454, -1.042517, 0.212851, -0.472853, 1.170080, -0.541422, -0.039304, 0.933957, 1.357692, -0.429652, -1.702277, -0.159772, 0.001983, 0.000002, -0.543599, -1.698953, -1.104731, 0.698160, 0.442014, 0.421941, -0.584926, -0.385530, -0.571799, -0.154162, 2.106135, -1.281321, -0.289063, -0.004227, -1.236964, -0.364015, 0.404688, -1.278293, -3.094613, -2.402176, -0.350939, 0.559308, 1.620555, 0.702482, 0.313948, -0.120019, 1.820701, -0.209859, 0.034231, 1.009775, -0.240234, 0.641508, -0.830939, 0.047171, -0.461867, -1.351455, 0.045219, 1.273847, -0.067354, 1.777573, 0.194085, 1.382331, -2.380929, 1.322756, 0.066846, -0.443359, 0.844103, -0.182564, -0.321789, 0.525938, 1.558613, -1.000298, 2.095170, -1.273995, -1.048167, -0.047360, -0.398325, 1.345394, 1.237966, -2.107172, 1.281710, -0.688015, 0.340963, -0.761513, 0.036355, 0.751413, 2.138854, 0.837824, -0.661121, 2.223464, -0.024160, 0.258210, -1.262901, 0.101704, 0.886722, -1.530659, -2.376492, 1.471753, -1.091717, -0.080357, 0.328669, -0.709377, -0.627621, 0.200232, -0.399206, -0.985927, -0.316829, -0.887110, 0.441063, -0.730294, -0.483783, 0.309477, 2.657938, 0.741498, -0.014179, 0.548736, 0.297112, 0.053352, -0.534102, 0.675665, -2.457662, 1.756811, -0.656191, 0.648414, 2.293105, -3.063736, -0.371508, 0.669888, 2.075385, -1.055540, -0.389699, -0.202379, 1.000234, 0.851372, -0.286208, 0.386047, 1.082359, 1.027662, 0.695166, -1.019722, 1.415310, -0.850611, 0.228916, -0.172337, 0.788785, -0.490355, -1.012435, 0.779454, 0.867956, -0.622320, -0.090468, -1.180841, -0.527309, 0.799429, 0.602665, -0.816127, 0.165748, 0.310293, -1.297851, -2.127904, -1.053795, -0.662907, -0.250302, 1.088920, -1.113692, 1.543742, -0.576911, -0.213999, 2.256395, 1.962789, -0.383080, 0.069965, 0.347551, -0.185584, 1.376954, 1.159101, -0.256020, -0.125754, 0.057725, -0.205835, -0.687395, 0.268903, -1.814178, -0.008433, 0.397908, -0.419803, 1.289426, -0.781659, -0.554355, -1.473182, 0.696459, -0.066383, 0.987544, 0.880593, 0.066657, 0.378186, -1.038281, -0.351476, 0.993799, 0.353034, 1.967381, -1.244548, 0.979393, -1.938769, 1.197030, 1.552737, -1.013856, 0.278807, -0.776079, -1.393610, 0.417863, 1.896697, -0.583991, 0.845668, 0.072539, 0.416493, 1.224551, -1.032908, -0.800929, -0.257251, -0.341851, 0.654992, -0.062871, -0.126248, 0.638023, 0.411336, -1.146026, -0.871349, -0.107819, 0.159237, 1.084878, -0.096234, 0.008714, 0.363630, -0.885676, 0.824603, -0.348342, -0.290375, 1.992267, -0.944929, -1.033954, -2.124754, 0.306700, 1.568433, 0.237954, 1.011253, 0.890108, 1.137032, -0.970933, 0.323666, 1.409332, 0.634482, -1.863711, 0.136564, -0.031205, -0.990787, 0.078272, -0.388315, 1.529234, -0.180333, 0.654552, -2.241537, -1.685225, 0.276770, 0.787062, -0.951388, 1.494093, -1.052059, 1.363340, -0.606494, 0.435609, 1.032341, 0.854363, 1.151113, -1.584345, 1.533453, -0.254832, 1.204281, 0.745791, -1.491793, -0.078630, -0.463900, 1.553098, 0.563620, 0.278828, 1.504271, -0.418872, -2.625763, 0.123032, -1.236659, 1.284504, -0.158240, 0.797906, -0.748526, -0.288808, 1.613181, 0.715834, 0.409639, 0.231675, -2.486954, 1.359262, 0.693055, -0.053956, 0.688209, -0.542796, 0.917013, -0.156186, -0.733029, 1.300479, 0.103335, -1.143418, 0.927558, 0.673648, -2.786823, 0.630348, -0.596049, -1.192626, 0.397885, 0.935736, 0.360845, -0.102760, 0.171726, -0.122494, 0.717100, 0.825085, 1.096298, -0.337822, -0.632185, 1.125006, 0.330534, -0.448444, -0.118234, 1.081982, -0.706928, -1.447757, 0.784149, -1.080579, -0.007369, -1.275368, -2.074418, -0.341810, 0.625092, 0.693246, 0.013951, 0.951710, 0.833433, -0.562873, -0.379527, 0.339144, -0.118447, -0.630108, -0.064035, -0.243146, 2.724359, 0.696421, 0.882557, 1.114483, 0.474649, -0.078484, 0.923468, -1.233502, 0.081886, 0.561078, 1.546341, -0.227950, -0.476978, -0.602240, 0.058573, -0.939124, -0.895486, 0.703519, 1.507734, 1.295597, 0.444187, -0.967023, 1.312898, 1.001435, -1.094791, 0.311407, 0.544028, 1.649227, -0.539164, -0.748347, -1.037615, -0.085585, 0.944574, 2.846277, 1.472078, -0.338934, 0.938910, -1.315354, 0.807254, -1.851259, 1.563321, 0.552499, -0.790993, -0.083347, -0.822957, 1.003915, -0.061260, 1.095248, -1.742030, -0.688430, 1.127627, -0.263740, 0.733030, -0.540750, 0.238349, 1.293281, 0.870832, 0.997744, 0.185250, -0.110307, -1.537922, -0.365415, -0.039089, 0.982837, 0.319798, 1.032417, -0.576030, 1.310834, 0.136676, 1.127323, -0.089150, 0.896282, 0.417950, 0.070422, -0.157127, 1.234319, -0.978378, 1.476864, 0.538272, 0.385858, 0.320429, 0.022871, 0.392842, 0.177457, -0.332814, 1.390906, -0.397742, 0.112415, -0.340343, -1.330629, 0.912444, 0.346352, -0.483079, -0.433957, -0.328288, 0.074146, 0.337486, 0.741707, -0.383569, -0.563149, -0.218291, -0.517675, 1.377026, 1.542241, -0.767136, -1.118123, -1.837940, -0.696887, 0.324369, 0.830081, 0.464813, -0.125971, -1.908897, 1.403316, 0.166996, 0.582172, 0.572374, 0.348029, 1.436253, 0.242459, -0.271409, -1.317343, -0.374362, -1.281095, 1.020371, 1.681033, -0.711967, 1.158792, 2.966699, -0.125565, -1.093711, -0.243393, -1.654180, -0.591599, 0.718302, -2.049595, -0.703539, 0.167982, -1.420567, 0.662354, 1.062625, -0.681258, 0.888918, 1.372472, 0.330192, -0.557152, -1.373163, -1.256078, 0.872913, 1.500677, -0.400971, -1.098439, 0.752767, -1.375299, -0.704750, 0.398118, 0.120716, 1.290664, -0.248734, -0.061709, -0.315851, 0.413841, -0.991105, -1.510866, -0.408108, 0.405287, -0.293155, 0.179160, -1.653138, 0.990054, 0.711607, 2.209724, 0.325221, -0.042293, 1.082162, -1.343456, 0.150146, -0.968255, -1.531807, -0.504254, -0.317111, -0.196447, 0.191399, -0.762299, -2.040827, 1.885169, 1.282522, 0.962386, 0.280749, -0.036098, -1.639054, 1.170920, -1.492695, 0.143669, 0.650995, 0.234237, 1.230955, 0.057640, -0.214090, -0.534227, -0.578776, 0.125763, 0.019438, 2.150549, -1.869604, -0.313717, -0.314017, 0.486108, -1.115248, 0.462417, 1.098508, -1.190247, -0.727925, 0.669302, -0.021880, 0.807131, -0.897302, -0.413006, -1.143647, 0.747145, -0.446139, -0.165424, 0.761598, -1.464150, 0.308694, -0.945917, -0.416103, -0.305428, -0.898248, -0.159927, -0.425741, 0.027930, -0.645810, -0.023443, 1.363165, -0.682764, -0.867862, -1.430043, 0.673272, 0.214845, 1.537753, -0.012069, -0.946378, -0.503318, 1.903265, -0.604833, -0.912314, 0.350789, 1.039350, 0.201091, -0.759496, -0.787621, -0.507002, -0.951064, -0.133818, 0.853275, 0.360311, -0.057158, 0.810785, 0.417495, 0.018208, -1.632295, -0.809766, -1.169716, 1.522623, 0.568319, 1.102799, -0.209293, -0.215655, -1.167315, -0.206248, -0.816123, -0.874441, -0.190806, 0.378056, -0.895094, 2.001792, 0.279251, -1.649177, 0.514400, 1.805737, -0.539054, 0.846530, 0.238871, -0.573209, 1.738087, 0.746235, -0.279255, 0.450477, -1.008486, 0.495469, 0.077325, 0.477148, 0.261582, -0.645051, -0.633761, 0.032262, 0.253078, -0.305077, -0.837905, 1.051906, -0.275461, -0.468255, 2.785873, 0.995899, 1.418191, -0.675931, 0.529137, -0.604013, -0.395066, -1.748740, -1.505819, -0.289815, -1.232342, -0.690178, 0.448758, 0.124130, -0.210617, -0.672301, -1.221108, 0.537656, 0.654851, 0.032209, 0.592418, 0.254624, -0.710136, -0.086747, -0.622997, -1.310471, 1.036720, -0.903373, -0.959263, 0.262379, 0.998065, -0.182319, 1.007750, 0.356757, -0.022003, 0.824459, -0.359133, -0.017737, -1.407765, -1.187161, 1.273830, 0.118736, -0.700377, -0.752612, 0.450680, 0.089769, 0.594245, -0.793705, -0.084685, -1.136831, -0.721463, -1.679135, 0.053687, 0.193615, 1.107299, -0.015698, -0.156326, 0.076302, -2.239511, -0.128651, 1.292904, -0.779378, -0.786066, 0.832118, -0.525856, -1.994214, -1.537125, -1.580682, 0.208293, 0.372145, -0.463928, -1.100816, 0.726475, -1.400278, -0.435401, -0.748394, 0.314515, -0.398082, 0.045251, -1.189218, -0.538288, -1.333592, 0.439772, -0.373387}, + { 0.445119, -0.473154, 1.043832, 0.777392, 0.336832, 1.607917, -1.256141, 0.886497, -0.493596, 0.676463, 0.012833, 1.039813, -0.030301, -0.612872, -0.133890, -1.667399, 2.916224, 0.100309, -1.667854, 1.436229, -1.732758, -0.453935, -0.285197, -0.322268, 0.601576, 0.176054, 0.811950, 0.836817, 0.551970, -1.137375, 0.317023, 0.097334, 0.680212, 0.770360, -0.797717, -0.379524, -0.795399, 0.194768, 1.628859, -0.217443, 0.030528, 0.945046, 0.292479, 0.136449, -0.635604, -0.628854, 0.572396, -1.108107, 0.805043, -0.575554, 0.191515, -0.600326, -1.467304, -0.160230, 0.968471, -0.371370, -0.642809, 0.517223, 0.645355, -0.865668, -1.973043, 1.192697, -0.546544, 0.234783, 0.831680, 1.071745, -0.306672, -1.219912, -1.655767, 0.471195, -0.732462, -1.356594, 1.425433, 2.090956, -1.082446, -0.234593, -0.601599, -0.647650, -1.406416, -0.080426, -2.663863, -0.766313, 1.641921, -0.352298, 0.745640, 1.491805, 2.281355, 0.514820, 2.185823, -2.314241, -0.169153, -0.298561, 0.334818, -0.491147, 0.328098, 0.915667, 0.402621, -0.746891, -0.946256, -0.144328, 0.227210, -0.478551, 2.912821, 0.470826, -0.404351, 0.548383, 1.860363, 1.211489, 0.244203, 0.065883, 1.231655, -0.481459, 1.409605, 0.744219, 0.665025, 0.692379, -0.019274, 1.339805, -1.001782, 0.111468, -0.955685, 1.245185, -0.316737, -0.090949, 0.013979, -1.520471, -1.386841, -0.411242, 0.920072, 1.776073, -0.082401, 0.157874, 0.091302, 1.025784, -1.359340, 2.027332, -1.349896, 0.385464, 1.905441, -1.127224, 0.482441, 1.913600, -0.617968, -0.898145, 1.119693, 0.358507, 0.019756, -0.191372, 0.703550, -0.547417, -0.346055, 0.184678, -0.111272, 0.619518, -1.948512, 1.083403, -0.085566, 0.281789, -0.864147, -1.348143, 1.721284, 0.542809, -0.605238, -0.662774, 1.618685, 0.026117, -0.999879, 1.073480, 1.695607, 0.686530, -0.070985, 0.067097, 0.441073, 1.058383, 0.236613, -0.122160, 1.226766, -2.121287, 0.864963, -0.906502, 0.788784, -0.114583, 1.716322, -0.140293, 0.803576, 0.097291, -0.079516, 0.731232, -0.179123, 1.447323, -0.404925, -1.159394, -0.096744, -1.058249, 0.324214, 0.032134, -0.915288, -0.892403, 0.035589, 0.410577, 1.733285, -1.554785, 0.734351, 1.227558, 0.417913, -0.278726, -0.123782, -0.533453, -0.519297, 0.603304, 0.008567, 0.197589, -0.304968, -0.619938, -1.508928, 0.842970, 0.388260, 0.965970, 1.615622, 0.037578, 1.321452, 0.570423, 0.837113, 0.959701, -1.785599, -0.118456, 0.440891, 0.390267, -1.246232, 0.388323, -0.359202, -1.526424, 0.649643, 1.248093, 0.444873, -0.876070, 0.588197, 0.516607, -1.146631, -1.477178, -1.867158, 2.048766, 0.583620, 1.099906, 2.005556, -0.154881, -1.377580, 0.992883, 1.499071, 1.408246, -0.754189, 0.809171, -0.463964, 1.036659, 0.407151, 0.182255, 0.859734, -1.040145, -0.393154, 0.304349, 0.099052, -1.669704, -0.059810, -0.115147, 0.681644, -0.035526, 2.093822, 0.374111, 0.966913, -0.711796, 0.558377, 0.004689, -0.236323, -0.015492, 0.507350, 0.884238, 0.796181, 0.407894, -0.651447, -0.297920, -0.675614, 0.080077, -0.546734, -1.485716, 0.356631, -0.381172, 0.228533, 0.689613, -0.165249, 0.874549, 0.522173, 1.338984, 1.683538, -0.858577, 1.715507, 0.962570, -1.854659, 0.301397, 0.777961, -0.168081, 0.822478, -0.091549, -1.307847, 0.395082, -0.734842, -0.908345, -0.106309, 0.795496, -0.989138, -1.035424, -1.028767, 0.794088, -0.556766, -0.578390, -0.205136, 0.407657, 0.192795, -0.004476, 1.330971, -0.460468, -0.340379, -1.404826, -0.268784, 0.009571, 1.271649, -1.710451, -2.075173, -0.264577, -1.691788, -1.099675, -0.527835, -0.724047, -0.771612, 0.636082, -0.496467, -0.230907, 0.097217, 1.231677, 0.824362, -2.003355, -0.411184, 0.420341, -2.203910, -0.119704, 0.429810, -1.679386, -3.574735, 1.227788, -1.065000, 0.838933, -0.033208, -1.115704, 0.435834, 0.217366, -2.191301, 0.511384, -0.355264, -1.158450, 0.633463, -0.307346, -1.324384, 0.483216, 1.122067, 0.806615, -0.219632, -0.830491, -0.489634, -1.658145, -1.419990, -0.975801, 1.988137, -0.428863, -1.211944, -0.293354, -1.890205, -1.864249, 0.203997, -0.729941, 0.339944, 0.927718, 0.412664, -1.409777, -0.503725, 0.092292, 0.320979, -0.275510, -1.846167, -0.503700, -0.970977, -0.069228, 2.064976, -0.323504, -0.362595, -0.580841, 0.037430, -0.225678, -0.667707, 0.380894, 0.849483, 1.021359, -0.606119, 0.590615, 1.082592, -1.106674, -0.707658, -1.296561, 0.507987, -0.871183, -1.377768, -1.984335, 0.667969, 0.564089, 0.734477, 0.454342, -0.127853, 0.197681, -0.559246, -1.551669, 0.099377, 0.199236, -1.410957, 0.504269, 0.490630, -0.682557, -1.050351, -1.410082, -1.629301, 0.134012, 0.986930, -0.266827, -0.221795, -0.283894, 0.313460, 0.394926, 1.339049, 1.207692, -1.325734, -0.874716, -0.585774, -1.138751, 0.250473, 2.165983, 0.299551, -0.024552, 0.108212, -1.080102, 0.019353, -0.506037, -2.250953, -0.536788, -0.036371, -0.158025, 0.243695, 0.110131, -2.970728, -0.546735, -0.859855, -1.213565, 0.507321, -0.255617, -0.908084, -0.119083, -0.500949, 2.417475, -0.944488, -0.943858, 0.644891, 0.213952, -1.412248, 0.336780, -0.360798, 1.631748, -1.572463, -0.632524, -0.041980, -1.419299, -0.828942, -1.567378, -0.039727, -1.079625, 0.229201, 0.540608, -1.194643, 0.285663, 0.272545, 0.363028, -0.602567, 0.052341, -0.505195, 0.834541, 0.050153, -1.553528, -0.205532, -1.577365, -1.215052, 0.251855, 0.168267, 1.217532, -0.197365, 0.899619, 1.246372, 0.827659, 0.357098, -1.029141, -0.294885, -0.659836, 2.170795, 0.805875, 0.861501, 0.261309, -0.389645, 1.508403, 0.762291, 1.077466, 0.703692, 1.135156, 0.057295, -0.376282, 0.938975, -0.858866, 0.142821, -0.523899, -2.285423, -0.385617, 2.811867, 0.627690, -0.462247, 0.901901, 0.652575, -1.488570, -2.032548, -0.527948, -2.175511, 1.228637, -0.651459, -0.586265, 0.714938, -0.275992, -0.686925, 0.436959, 0.353218, -0.917387, 0.509369, -0.352333, 0.446812, 0.287032, -0.433148, 0.039009, -1.966737, 0.444408, -1.744633, 0.709875, 0.766815, 0.899542, -0.524911, -0.297837, -0.605165, 0.231073, 1.080600, 0.954147, 0.922436, 0.708972, -0.384127, -1.495357, 0.662669, -1.454976, -0.962301, -0.710635, -0.384602, 0.167715, 1.860776, 0.481277, -0.582406, -0.336220, -0.270634, 0.990622, -1.391581, -3.308254, 0.077200, -0.967182, 0.031076, 0.106201, 1.324206, -0.474467, 0.123622, -1.284238, -0.843066, 2.506301, -2.289709, 0.357971, -0.450290, 0.875618, -1.589743, -0.279220, -0.075697, -0.579546, 2.264063, 0.607433, 0.802204, -0.261092, 0.572771, -0.056676, 1.260767, -1.387489, -0.186559, 1.016351, -1.186001, -0.347246, 1.183536, 0.875133, -0.934673, -0.797560, 0.499391, -0.046449, 0.073275, -1.042153, -0.701949, 0.622057, 2.408287, -0.153173, 0.227560, 0.666372, 1.134668, -1.259363, -1.148901, 0.522791, 0.140595, -0.210053, -0.518753, -1.677094, -1.660687, -0.459667, 0.360807, 0.423693, -0.220381, -1.114191, 0.369428, 1.140286, -1.218788, 0.061807, 1.683959, -0.396777, 0.454495, 0.458192, -0.365413, -1.974917, 0.164067, -2.237991, 0.145513, 0.410231, 1.428426, 1.624179, 0.442423, 1.449412, 0.140301, 0.167444, 0.751907, -1.105274, -0.235989, 1.810214, -0.823111, -0.947231, -0.499959, -0.269678, -0.939640, -0.300699, -0.125594, -0.147036, -0.782391, 1.741470, 0.556263, 1.613137, 1.857892, -0.212925, 1.286526, 0.622445, 0.629121, 0.271868, 1.189664, -0.555635, 1.137723, -0.283038, -0.152573, -0.305756, -0.922141, 0.139124, -0.452746, 0.783817, -2.224815, -0.988587, 0.438941, -1.346850, -0.383588, -1.076174, 2.017057, 0.830436, -0.072499, 0.771816, 0.089721, 1.127169, -0.849913, -0.851651, -1.179918, 0.365567, -1.575183, -0.690552, -0.600083, -0.244377, 1.494794, 0.186040, -0.528508, -0.187898, 0.277297, -0.467606, -2.656732, 0.029013, 0.049409, -0.345733, -0.695619, -0.515020, 1.230146, 1.424461, 1.045369, -1.072933, -1.221967, 1.483192, 1.375120, 1.096154, -1.019855, -0.547238, 0.484669, -0.213334, 0.407507, -1.138925, 2.211552, 1.364770, -0.897791, -2.195113, -0.002323, 0.508676, -0.652900, 1.036706, -0.986855, -0.272933, 0.716294, 0.225263, 0.850050, -0.175702, 0.277604, -0.394775, 1.173868, 0.170788, -0.537138, -1.400774, -0.924265, -0.772661, -1.254959, -1.068254, 0.039644, 0.625782, -0.678057, -0.314933, -0.375694, -0.128456, 0.595554, 0.684521, 1.157750, 0.591429, 1.338761, -0.049339, 0.523924, 0.949159, -0.364290, 0.594550, -0.277029, -2.544848, 0.979828, -0.054113, 0.466571, -1.441097, 1.128570, -0.627319, -0.152311, -0.074559, 0.521714, -1.244803, -0.544302, 0.031556, -0.352984, 0.219783, -1.295021, -0.461377, -0.678573, 0.594697, -0.232036, 0.965991, 0.671720, 1.197810, -0.177209, 1.668815, 0.852600, 0.667697, -0.954891, -1.164466, 0.876681, -1.099380, 0.863135, -1.590830, 0.387270, -0.627818, -0.282209, 0.092205, 0.259731, -0.436475, 0.666336, 0.862636, -1.418429, 1.028954, 0.633128, -0.344502, -0.445413, -0.917772, 1.067161, 1.033806, -0.736623, -1.232848, -0.000046, 1.670158, 0.830659, -0.947006, -1.655568, 2.115228, -0.204682, -0.317320, -0.259247, -2.256614, 1.768609, -0.940352, 2.617489, -1.161082, 0.488415, 0.160001, -0.462501, -1.547884, 0.061177, 1.531977, 0.885637, -0.115703, 0.110924, -1.409144, 0.480873, 0.066116, 1.202956, 1.374884, 0.055035, -1.198477, -0.552291, -0.982413, -0.388546, 0.495215, 0.732222, -0.372056, -0.402332, 0.740621, 0.382441, -2.032376, -0.336690, -0.559466, 0.160377, -0.150932, -0.333271, 1.341663, 1.160145, 0.076670, 0.170253, -2.123780, -0.558750, 0.138413, 2.014167, -1.759145, 0.869138, 0.123394, 0.076442, -1.298242, 0.437281, 1.676512, 0.162649, 0.832893, -1.591976, -0.819439, 0.214216, -0.911420, 0.139072, 0.532018, -0.780894, -1.067391, 1.148767, -1.122494, -1.501490, 0.805299, 0.517967, 1.044873, 1.127760, 0.503342, 0.116609, 0.905633, -0.056781, 0.468285, 1.822238, 1.779784, -1.304204, -0.787120, -2.216815, 1.331130, -0.342338, -0.419741, 0.605828, -0.010802, -0.285163, -0.026632, 1.611123, -0.061228, -1.101793, -1.718956, 0.203809, -1.272315, 0.616155, 1.924212, -2.224122, 0.411870, 0.814128, 0.080769, -0.490324, 0.918461, -1.869735, -0.878138, -0.159494, -0.926811, -0.062024, 1.141993, 0.880375, 0.625960, -0.429581, -0.936075, 1.072202, 1.320746, 0.404902, 0.113128, 1.007151, 1.177857, -1.744764, -2.508235, 0.014618, -0.115547, 1.815358, -0.316185, 1.275342, 0.061115, -1.660781, 1.610791, 0.327311, 1.821667, -0.435296, 0.474132, 0.231506, -0.397195, -0.019476, 0.320195, -0.158928, 0.184390, 0.227816, 0.591366, 0.338935, 0.481443, 1.192742, 0.464517, -0.188714, 0.137157, -1.042174, 0.812147, 0.420455, -0.501368, 0.361881, -0.514902, 0.803301, -0.321871, 1.194072, 1.162477, -1.042911, -1.043543, 0.194267, -1.305863, -1.247235, 1.296510, 0.273247, 0.259932, 0.485477, -1.181866, 0.951560, -0.387023, 0.276561, -0.363700, 0.727754, 0.278888, 1.496657, 1.174182, -0.662167, 0.397465, -0.097367, 0.556628, 0.890196, -0.827231, 2.505127, -0.322196, 0.318376, 2.180679, 0.461050, 1.313473, -0.404756, 0.094558, -0.258227, -0.430046, 0.029090, 0.308702, 1.467458, -0.377381, 0.183779, -1.228246, 2.507902, 0.770001, -0.483459, -0.709113, 0.679286, 0.300974, 1.381046, -1.338413, 0.169533, -0.152893, -0.731757, 0.317206, -1.132385, -0.171978, -1.593291, -0.277441, -1.082818, 0.058690, -0.743156, 1.375419, -0.175848, 2.298379, -0.758842, -0.344876, -0.065156, 1.701633, -2.291595, 0.911433, 0.163927, 0.067509, 0.430522, -2.050629, -0.985868, 0.031607, -1.156353, -1.942840, -0.734165, 1.143682, -0.747089, 0.378977, 0.719969, -0.257888, -1.444776, -1.299187, 0.081402, -0.380061, 0.411510, 0.920972, -0.648182, -0.610466, 1.554721, 1.295226, -1.258189, -1.439284, -0.200945, 0.208935, -0.978033, 1.031139, -0.753402, -0.789891, -0.215346, -1.658424, 0.375993, 0.139050, -0.689565, 1.005204, -0.023334, -0.191030, 0.289306, 0.178403, 0.579095, -0.040404, 1.720090, 0.394306, -0.913215, 0.662100, 0.754405, 0.853628, 0.605991, -0.933922, -0.647689, -0.105286, 0.363477, -0.108114, 0.732689, 0.425879, -0.043327, 1.814529, 0.155269, 0.289706, 0.035651, -2.006486, 1.632694, 1.373249, 1.345818, 0.053766, -0.923442, -0.344884, -1.671897, 0.915645, -0.498141, -0.127691, 0.706245, -0.814765, 0.781381, 0.045203, 0.972048, -1.784395, 1.173390, -0.494823, 1.487358, 1.446239, 0.034313, 1.603450, 0.074342, -0.816015, 1.586687, 0.386678, 0.737776, -0.601382, 0.171102, 0.522108, 0.543032, 0.335067, -1.505013, 0.282409, -0.654412, -0.847894, 2.247601, 0.933468, 1.241868, -0.776326, -1.514374, 0.447895, -0.259333, -0.842128, 0.384512, 1.351975, 0.062370, 2.568610, -1.990075, -0.951339, -0.262280, 0.596171, 0.663489, -1.177934, 0.492811, -0.886424, -0.797710, -0.121154, 1.552999, 0.313108, -0.298076, -0.156315, 0.351074, 0.125582, -0.207448, -0.178823, 0.785584, -0.126075, -1.112788, 2.490072, -0.473838, -2.842844, 0.868082, -0.833170, 0.195383, -0.932486, -0.794868, -0.266260, 0.985101, -1.522821, -1.158494, -0.722767, 0.514334, 0.015415, -1.122106, -2.154212, -1.518069, -0.541851, 0.768034, -0.803622, 0.427963, -0.841106, -0.670725, -0.382748, -1.333887, -2.448131, 1.174273, 0.730021, -1.206206, 0.584151, -0.865172, -0.302115, -0.690067, -0.446726, 1.575567, 1.058657, 0.520960, 0.914414, -0.061830, 0.128361, -0.782718, 0.370507, 1.194851, 1.343405, -0.061607, 0.263703, -0.652339, 1.207498, -0.716345, 0.846537, -0.473825, 0.042430, 0.041640, 1.234389, 1.338405, 0.738119, 0.666933, -1.267039, -0.390895, 1.062140, -1.118198, -0.846442, 0.342947, 0.351610, -0.115796, 0.016200, -1.098224, 1.091577, -1.057773, 0.007015, -0.902867, 1.813186, -1.782957, -1.121155, 0.121229, 0.404375, 1.084698, -0.607494, 1.489850, -2.232066, 0.879626, 2.396561, -0.743366, 0.602817, 0.249033, -0.224385, -1.027244, 1.475202, -0.346287, -0.354360, 0.668195, 0.288366, -1.143454, -0.254986, 1.019211, -0.883886, 0.669895, 0.335771, -2.501511, -0.000678, 0.521951, 0.926404, 0.026464, -0.100591, -0.481409, 0.446169, -0.695211, 0.140362, -0.311028, -0.651785, -0.623096, -1.360713, -0.489672, 0.549583, 0.755439, -0.260836, -0.567216, 0.030241, -0.140121, 0.246393, 0.975419, 1.382190, -0.798915, 0.239506, -0.268295, -0.159122, -1.585953, 0.747272, -0.532467, -0.285113, -0.796293, 0.356058, 1.319108, 0.757863, 0.239226, 2.130827, -0.449856, 0.101542, 2.613616, 1.723821, -0.108323, -1.593893, -1.280913, 0.795403, 1.258569, 1.309434, 0.655668, 1.482746, 0.649095, 1.144722, -0.820602, -2.744595, 0.634148, -1.483733, -0.641179, 0.551660, -0.910362, 0.473238, 0.932652, 1.372759, -1.544250, -1.516462, -0.560264, -0.238196, 2.254369, -1.064274, -0.566798, 1.100560, 1.121158, -1.439244, 0.164573, 0.082947, -1.576217, 0.359215, 0.519583, 0.277496, -2.064572, -0.553201, -0.472310, -0.531897, -1.262510, -1.490321, -0.184336, 0.213583, -0.082576, 0.712710, 0.889190, -0.184382, -1.018899, -0.865866, 1.028713, 0.255126, -1.152397, -2.668563, 1.884888, 1.037127, -0.129276, -0.983769, 0.578943, -0.315907, -2.392622, -2.068044, -0.711312, -0.699440, 0.713103, 1.154616, -0.193342, -0.056196, -0.715936, -1.829736, -0.843283, 0.291382, -0.332320, 1.464449, -0.077736, -0.179879, -0.519876, -0.884140, 2.269854, -1.099012, -0.826958, 1.547832, -1.126261, -0.877795, 0.028225, 1.254288, -1.516589, -0.016362, -0.556604, -1.370548, -0.709287, -0.253742, 0.732590, -0.269497, 0.677645, -1.076326, 0.936983, -0.153014, 0.443587, -0.371669, -0.521957, -1.564137, 0.236757, -0.856678, 0.502733, -0.034335, -0.123695, 0.031425, 0.604081, 1.792542, -0.002419, -1.149064, 2.582753, 0.757973, 0.879873, 1.036599, 2.350180, -0.481103, 1.953600, 0.519668, 0.982878, 0.373251, -1.823076, 0.935773, -0.058210, -1.619501, -1.008537, -0.111197, -0.279499, 0.020806, 0.474039, 0.510868, 0.330736, 0.789774, -0.993991, -1.225134, -0.023239, 1.798303, 0.101420, -0.145706, -1.219598, 0.717533, -0.065697, 0.081663, -0.379192, -0.822726, -0.791134, 0.618944, 0.589658, -1.060974, -0.535595, -0.849699, -0.372148, 0.165658, -1.706431, 0.246088, -0.666787, -0.649115, 1.886058, -2.048868, 0.073428, -0.127120, -0.194877, -0.895977, -0.131984, -0.452674, 0.353178, -0.872516, 0.311068, -0.992896, -0.029525, -0.354854, 1.361940, -0.156905, 0.398816, -0.410035, 2.640672, 0.195255, 1.105745, 0.591894, 1.178438, -1.658445, -2.114143, 1.353203, 1.882879, 0.647577, -0.130688, 0.182636, -0.299645, -0.836746, 1.852175, 0.260973, 0.848115, -0.445454, -1.415326, -0.682726, -0.062508, -1.373027, 0.284194, 3.046700, -0.270779, -0.485439, 0.379177, -0.533127, -2.622355, -0.305153, -2.990642, -0.382298, -0.952272, -0.564787, 0.633838, -0.497530, -1.150794, 0.521476, 0.647438, 0.982146, 0.144940, -1.737650, -0.189878, 1.814182, 0.044093, 0.250311, -0.393888, -0.646298, 0.282796, -0.546004, 0.950596, -1.219468, 0.101956, -0.329027, -0.893116, 0.382298, -0.835156, 0.455222, -0.810042, -1.728659, 0.070281, 0.522243, 0.149543, 1.081405, -2.061179, -0.342778, -1.242144, -1.000491, -1.606063, 0.400750, 0.344441, 0.475442, 0.023703, -0.817914, 1.335303, -1.244611, 0.919742, -1.430083, 0.284198, 1.519820, 1.193296, 1.914698, 0.280096, -0.082116, -1.293697, 1.806942, 0.233742, -1.727113, 1.325746, -0.125245, -1.457025, 0.440654, -0.518948, -0.542313, 0.803286, -1.918487, -0.392634, 0.309334, -1.286398, 0.642813, -0.708413, -0.980393, 0.256864, 0.895897, -0.982714, 2.412287, 0.639417, 0.296300, -0.432270, -1.326373, -1.386119, -0.859217, 0.339147, -1.205001, 2.308950, -1.297361, -1.555357, 0.871930, 1.075600, -1.038596, 0.174123, -1.466021, -0.887464, 0.439317, -1.723472, -0.773080, 1.229570, 0.724867, -1.200188, -0.651788, 1.682758, 0.623271, 0.819648, 1.764677, 1.634892, -1.234713, -1.525173, 0.033753, -1.208368, 0.772260, 0.550460, -0.752932, 0.570802, -0.145400, -0.515983, 0.929833, -0.670029, -1.338948, 0.810665, -1.075947, 3.239363, 1.214045, -0.173753, 1.086475, -2.183919, -0.727514, 0.878490, -0.231816, 0.098383, 1.069742, -0.139798, 1.383972, -1.431137, -0.155524, 0.107187, 0.818522, -0.419686, 0.090750, -0.165686, -0.032497, -0.772933, 0.675015, -0.051851, 0.604939, 0.383417, 0.006427, 0.747382, -0.786682, 0.337299, -0.811814, -0.214729, 0.046527, 1.570973, 0.590468, 1.954929, 1.115029, 0.126530, 0.151831, 1.720756, 0.185496, 0.164751, -0.716055, 1.646703, 0.470563, 0.826827, -0.707098, -0.869494, -1.056069, 1.706341, -0.947747, 0.311783, 0.850451, 1.021112, 1.052958, -0.824862, 0.359316, 0.645330, 0.836770, 0.408352, 0.783425, 0.448322, 0.118488, -0.123785, 0.543083, 1.254135, -2.438142, -0.046303, 0.687505, -0.725906, -1.399050, 0.666024, 0.020835, -1.425929, -0.504805, 0.004117, 0.251806, 1.806840, -1.289493, 0.948377, -0.173118, -0.450858, 0.899437, 0.829159, 0.648834, -0.695746, -0.500749, 0.106845, 0.643378, 1.969162, -0.384268, -1.237373, 0.657158, 1.141960, 0.576006, -0.154924, -0.522245, 0.235861, -1.251629, 1.227190, 0.124610, -0.106148, 0.882952, -1.566059, 0.394798, 0.631748, 1.561614, -0.857375, -0.298411, -0.114183, 3.107838, 0.634903, 1.697383, -1.368094, 1.414419, 1.685980, 0.469506, -2.339400, -0.470354, -0.539957, 0.752268, 1.948096, -1.299947, 2.209646, -0.972365, 3.123261, -0.499789, 0.411832, -2.754864, 0.050477, 0.469501, -2.038935, -0.878044, 0.855652, 0.199876, -0.703543, 0.374343, 1.167835, 1.153715, 0.544666, -0.532937, -0.307288, -0.517039, 0.244624, -0.107869, 0.543769, 1.484097, 0.553920, -0.599081, -0.033657, -0.389028, -0.929977, 0.167219, 1.342763, -0.579549, -0.480978, 0.014840, -1.950127, 1.157626, -0.364853, 0.077331, 0.296183, -0.877377, -0.394357, -0.290307, -1.573712, 0.192010, 1.525145, -1.233198, -0.878320, -1.396172, -0.843371, -0.083626, 1.278501, -1.203108, 2.158181, -0.338898, -0.520221, -0.763082, 0.554311, -0.414722, -0.489690, 0.903157, 0.946642, -1.763235, -0.709302, 0.733793, 2.099186, -0.430129, -1.053120, -0.707658, 0.187597, 0.870224, 0.329374, 1.564309, -0.113607, -0.449934, 1.140110, 1.148917, 0.261029, 0.854663, 1.254778, 0.149178, 1.697518, 0.218603, 1.414580, 0.662400, 1.188810, 0.866572, 0.966318, -1.228429, -0.558151, -0.775880, -0.321728, 1.015275, -1.177651, 0.624961, 1.592404, 0.658400, -0.961794, 0.788909, -0.298850, 0.474365, -0.305631, -1.274752, -0.247920, -0.565445, -1.110976, -0.094393, 0.128003, 1.523329, -0.592129, -0.273271, 0.338141, 0.164882, 0.140703, 0.856759, 0.557581, 0.725007, 0.887878, -1.575801, 1.082501, 0.802525, -0.846624, -2.450380, -0.027417, 1.160120, -0.876875, 0.665872, 0.056115, 0.678734, 0.522773, 2.375005, -0.570240, 0.351812, -1.215094, 1.496298, 0.466337, 0.004833, 1.362081, -0.665827, -0.345820, 0.240475, 0.971472, 0.138472, 0.699409, -0.897390, 0.145269, 0.442312, -0.800023, 0.691540, 0.519334, 0.839232, 0.124278, 2.193990, 0.970328, -0.130000, 1.355692, -0.177570, 0.394085, 0.140887, 0.317281, 1.499767, 1.116584, 1.466801, 0.156931, 0.172191, -0.366363, -0.816484, -0.484801, -0.394532, 1.492783, 1.097460, -1.346779, 1.065015, -0.409580, 0.587696, 0.302069, 1.053640, 1.240212, 1.116937, 0.823102, 0.532479, 1.161337, 0.534540, 1.329467, -1.635893, 1.344311, 1.031487, -0.465008, 0.011091, 1.317150, -0.706851, -0.482200, -0.555220, 0.970122, -0.915416, 0.337366, -1.188465, 0.823592, -0.280394, 1.129206, 1.262385, 0.206818, -0.958472, -0.403096, -1.960969, -0.156436, -1.817728, 0.058621, -0.937661, -2.574958, 1.196240, -2.174734, 0.660575, -0.098401, -1.124977, -0.405538, 0.262015, -1.301079, 0.054430, 0.463855, -0.392882, 0.718025, 0.927174, -0.943939, -1.886439, 0.287906, 0.142918, 0.624646, 1.909642, -0.890252, -1.237076, -0.431491, -0.385939, -0.159040, -2.060808, -0.563694, 1.703303, 0.171865, 0.610756, -1.339435, -1.033214, 1.193579, -0.112958, -0.840296, -0.875586, 1.571828, -1.117643, -0.326746, -0.642918, 1.172195, 1.261208, 0.506327, -0.973180, -0.623980, 1.680725, 0.664086, -0.557622, -1.325644, 1.221144, -0.243666, 0.273273, -1.167349, -0.277732, 0.215382, 0.296523, 1.369266, -1.529631, 1.278960, -1.446984, 0.898180, 1.610570, 0.420249, 1.580500, 0.741431, 0.415944, -0.271828, -1.327712, -0.858541, 1.980369, 0.433231, -1.345234, -0.136021, -0.712164, 0.719573, 0.002668, 0.126652, -0.225729, 1.442768, -0.005062, 0.278475, 0.548349, 0.333459, 0.569977, -0.229757, 0.542157, -0.003927, -0.229945, 0.465486, -0.338063, -0.256578, 0.621886, -1.155744, -0.989504, -0.059479, -0.681969, -0.278101, 0.844314, -1.111082, -1.351723, -0.448149, 0.024706, 0.570856, -0.816887, 1.129449, -0.586894, 1.377468, -1.419398, 0.824789, -0.553485, 0.429284, 0.072544, -0.091782, 2.559306, 1.280580, -0.053309, 1.017680, 0.011755, -0.557787, -1.749623, 0.506322, -1.244153, -0.635163, -0.052143, -0.007948, -1.450335, 0.031427, -0.445962, 0.751267, -0.226573, -1.339501, -0.697049, -0.301933, 0.741104, 1.593529, -1.635407, 1.043478, 0.560015, 0.461283, 0.577739, 0.767304, 0.563988, 0.167180, -0.716158, -0.911206, 0.059151, 1.285289, -0.023074, 0.461194, -2.312461, 0.746139, -1.397856, 1.760796, -0.265294, 0.453073, 1.694083, -0.042914, 0.141447, -1.393602, 0.203397, 1.395482, -0.538113, -0.289765, 1.915001, 1.538113, -1.045848, 0.787230, 1.567099, 0.553045, 0.923660, -0.443930, 0.190700, -0.724304, 1.197513, -1.023009, -0.517609, 1.231048, 0.311936, 0.163326, 1.128081, 1.660442, 0.910080, -0.204356, -2.158100, -0.347869, -0.281085, 0.050793, 0.504579, -1.155712, -0.036819, 0.916988, 0.121339, 0.177754, -1.907408, -0.894663, -0.528765, -2.300378, -0.314587, 0.214344, 0.199457, -0.956849, 0.338651, 0.372935, -0.230400, 0.947612, -1.382138, 0.235219, 0.578544, 2.782571, -0.931137, 0.262602, -1.670414, -0.930342, -1.986811, 0.536506, 1.707789, 1.316520, -0.279316, -1.736040, -0.094301, -0.278340, -1.575139, 2.010543, 0.125107, -0.190962, 0.947005, -0.044107, 0.902201, 0.020473, 1.511117, -0.527767, -2.871304, 0.276488, -1.317324, 0.492933, -1.073972, 1.797996, -0.489012, 0.056658, 0.511585, 1.054746, 0.137984, 1.035550, 0.467196, 0.749252, -0.161535, 0.729445, -0.623730, -0.127494, -0.320258, 0.162846, -0.790931, 0.639133, -0.409762, 0.426748, 0.311413, -1.838424, 1.447363, 1.086839, 0.781768, -1.108313, -1.115052, 0.835288, 1.382072, -0.015458, -0.245803, 0.968015, -1.123724, 0.494564, -0.038508, -0.387131, 1.106225, 0.009442, 1.200671, 0.528790, -0.144378, -0.606111, 0.371866, -0.468716, 1.733440, 0.869307, -1.476297, -2.006900, 0.705579, 0.841590, -2.070354, -0.555132, 0.746545, 0.100803, 0.814912, 1.536637, -0.787772, -0.042370, -0.310165, 1.355631, -0.719627, 0.342789, 0.973230, -0.611076, 0.906250, 0.261213, -0.369027, -0.301825, 1.835713, 2.119118, -0.865479, 0.560915, -0.812310, 1.026368, 2.041843, -0.175875, 0.574802, 0.954238, 1.171314, 0.235029, 0.002576, 0.949293, -0.143947, 0.648565, 0.677570, 0.466369, -0.045866, -0.067830, -0.182763, 0.241196, -0.589831, 0.641594, 0.469336, -0.704943, 0.765208, 1.405321, -2.586930, 0.504387, 0.923522, -0.413934, -1.287781, -1.170544, -1.276405, 2.573697, 0.866409, -0.392593, -0.611072, 0.064542, 0.500189, -1.838727, -0.045371, 0.303432, -0.228493, 0.024984, 0.247104, -0.176999, 1.729159, -0.183860, -0.322647, -1.273515, -0.431710, -0.407515, -0.529484, -0.539063, -1.531165, 0.396057, 1.322986, -0.226699, 0.099704, 0.082171, 0.573679, 1.620993, -1.754027, -0.031096, 0.159269, 1.283569, 0.132250, 2.616592, -0.027288, 0.878672, -0.852922, -0.017852, -0.068829, 0.337308, -1.504776, -0.626574, 0.482235, 0.037153, 0.766060, 0.138370, -0.782014, -0.051792, 0.035599, -0.451657, -1.357122, 0.204080, -0.537314, -0.851261, 0.625139, 1.466073, 0.450127, -0.179821, 0.829165, -0.225354, 0.510498, -1.195154, 1.283967, 0.556581, -0.196188, 0.239925, -0.251414, 0.218577, 1.006958, 1.481866, 0.618208, -1.579377, 0.209141, 2.507805, 0.643082, -0.349892, 0.210590, -0.055031, -2.033960, -0.196276, 0.563640, 1.146144, 0.533118, -1.008577, 1.259767, -0.679221, -1.768842, -0.691799, -0.050704, -0.064375, 1.203347, -1.261703, -0.029635, -1.267219, 1.261616, 1.540422, 2.697761, 0.936547, -1.383151, 1.185941, -0.784177, 0.480951, -0.088694, -1.873029, -1.000411, 0.288119, 0.026073, 1.486634, -0.368049, -0.008690, 1.211875, -0.181960, 0.052896, 0.157682, 0.413803, -0.047971, -1.276602, -0.137402, -0.932968, 1.203422, 1.985214, 0.173327, 0.826649, 1.216570, 1.537049, -0.095690, 0.894564, -0.577314, -1.067967, -1.616430, -0.892332, -0.100268, -0.162172, 0.037294, 2.931959, -0.390638, 2.476921, -0.850866, -1.880034, 0.940545, 1.168214, -0.372699, -0.997372, -1.344309, 0.366253, -0.414391, 0.806214, 1.105949, -1.735690, -0.749426, 0.442343, 0.356426, 1.309756, 0.239795, -1.498293, -1.174952, 2.026730, 1.274727, -0.631073, 0.218077, 0.842128, 0.715973, 0.513658, -1.332315, 1.421439, 0.075649, -0.485636, -1.100232, -0.425527, 1.913609, -0.424338, -0.125630, 0.826761, 0.868808, -0.515694, 0.420084, 0.837584, -0.256476, 0.462730, 2.109076, -1.325152, -2.614274, 0.381084, -1.864672, 1.062618, 0.796504, -0.548352, 0.412650, 1.802110, -0.455621, 0.653162, 0.205297, 1.088083, 1.418042, 1.840997, -1.000186, -0.129693, 0.710866, 0.349496, 1.624947, 0.663476, -0.930858, -0.764883, 0.844605, 0.344576, 1.894931, -1.110100, 0.055522, 1.457486, 0.175511, -0.673116, -0.825865, -0.312506, 0.085200, -1.005920, -1.338646, -0.968501, 1.783331, -0.033418, 1.337914, 1.354819, -1.150176, 0.542002, -0.819032, -0.929293, -0.886023, 0.540529, 0.529881, 0.461316, 2.198988, 1.039596, -0.381874, 0.994611, -0.097990, -0.618171, 1.036063, -0.128804, -0.059572, -1.422507, -1.616396, -0.567453, -1.684671, -1.154930, -2.122177, 0.020472, 0.188448, -0.281856, -0.614978, -0.861772, 1.371670, 0.963873, 1.440382, 0.819237, -1.466511, 0.046215, 1.027821, -1.062101, 0.870284, -1.170438, 1.002682, 0.128588, -0.362307, 1.194106, 1.529350, 1.079643, -0.867110, 0.173117, 1.753436, -0.384962, -0.210062, -1.211264, 0.914321, 0.831748, -0.289767, -0.393380, -1.045292, -0.218983, 0.162850, 0.576392, -0.747760, -2.132529, -0.374764, 1.075252, 1.368446, 0.614433, 0.784159, 0.998922, 1.402115, 0.413642, 0.853606, 0.307536, 1.018278, 1.186868, 0.308069, -2.051404, -0.209297, -0.007471, 0.113945, -1.181682, 0.397277, 1.547440, 0.454210, -1.422295, -0.274718, -0.886599, -2.117491, 0.094100, -1.408151, -0.910527, 0.202663, -2.111931, -0.667701, 0.016120, 0.423472, -0.129547, -0.685574, 0.277973, 0.664660, 0.154029, -0.002274, -0.112638, -0.220912, 0.710863, -1.155411, -0.602838, 0.525730, -0.493204, 0.066081, 0.762007, 1.808286, -1.491509, -1.653607, 1.320863, -1.017336, -1.597963, 0.503794, -0.552158, -0.380628, -0.232112, 1.900824, 0.449515, 0.805114, 0.281926, -1.072548, 0.304914, 0.241748, -0.147825, 0.739446, -0.575660, 0.078954, 0.503776, 0.402500, -0.871709, 1.995089, 0.141639, -0.321793, 2.458877, 0.791777, 0.213938, -0.801643, -1.176360, -1.628903, 0.227337, -0.202964, 2.377225, -0.414948, -0.212604, -0.029952, 1.667230, -0.648748, 0.793706, 0.315122, -0.127790, 0.157811, -0.023022, 1.127182, 0.690497, -0.080774, 1.389231, 1.388951, 0.315906, -0.941514, -0.668299, 0.626686, 0.366315, 0.761998, -1.691397, -0.567768, 0.782920, 0.087398, -0.989534, -0.089442, -1.112205, -1.655602, 0.845405, -0.979932, -0.621913, 0.341469, -0.841533, 0.763129, 1.964652, 0.641574, 0.125370, -0.248421, -0.119691, 0.094154, 0.187117, -0.325465, 1.033841, 1.367824, 0.035982, -1.074745, -0.205548, 1.107619, -0.639589, -0.566624, -0.071150, 1.873251, -0.414732, -0.043120, -1.491350, 0.132143, -0.795502, 1.011363, -2.610685, -1.372581, -0.216076, 1.264477, -0.814401, 1.357369, 0.830488, -1.478731, -0.739502, -0.501687, -0.126677, 1.461818, 0.332628, 1.763559, -2.403701, 1.248663, -0.115690, 0.544353, 0.911584, 0.172331, -1.461996, -1.146678, -0.504065, 0.353899, -0.222511, -0.319474, -0.712997, -0.933359, -0.259083, 0.220278, 0.984686, 0.806947, -0.352082, 0.478239, 0.540776, -0.302879, 0.218109, -0.402735, 0.043845, -0.257444, 1.330354, 0.685986, -0.628673, -0.786473, 0.451059, 0.223090, 2.746953, -3.192045, 1.050389, 1.312766, 0.185920, 0.204864, -0.980669, 0.945794, 0.469161, -0.845435, 0.295456, 0.364052, -0.432265, 1.109849, -0.645794, 0.211575, 0.035461, -0.271523, -0.934340, 1.081102, 0.399726, -1.789979, 1.380088, -0.775216, 0.308756, 0.296923, 0.621531, -0.398855, -1.944472, 0.135696, 3.078555, 1.633316, 2.472620, -0.027389, -1.379917, -1.213266, -0.552189, -1.117704, -0.627201, -0.474243, 0.233880, 0.858701, 0.597096, 0.995571, -0.149394, 0.131599, 3.023540, 0.990320, -0.387559, 0.194157, -0.661549, 0.992530, -1.085806, 1.088710, -0.492843, -0.220814, -0.586818, 1.303468, -1.165376, -0.915063, 1.198294, -1.412731, -0.014002, 0.427326, 0.613732, 1.466150, 1.146561, 0.081403, -0.760330, -1.727830, 0.764730, -0.843078, 0.992430, -0.045395, 0.474261, 1.422835, -0.962950, -0.041529, -0.922869, 0.187789, -0.711709, 0.324116, 0.454405, 0.385090, -0.869315, -2.257521, -1.488564, -1.072348, 1.090927, 0.381059, -0.805549, -0.611456, -0.237535, -1.480893, -1.207193, -1.068438, -0.626834, 1.455436, 1.616093, 1.336291, -0.844376, 1.005406, 1.957869, -0.104202, -0.074938, 0.298070, -0.459832, 1.485114, -0.101477, 0.634632, 1.515647, -0.275526, 0.030645, 1.433441, 0.666253, -1.690786, -1.178418, 2.547283, -0.257785, 0.439092, -1.469637, 0.077075, 0.431684, 0.189967, -0.494375, -0.861028, -0.332260, -0.410466, 0.989876, -1.999406, -1.827448, 1.385238, -0.346283, 2.047734, -0.404249, -0.219221, -0.085152, -0.624391, -0.257860, -2.415328, -0.952369, 0.894287, -0.984438, 1.569269, -1.042673, 0.221111, -1.406157, 0.543850, -0.633184, 0.059251, -1.574110, 1.425475, 0.077419, 0.403313, -0.536827, -1.515825, 0.789457, 1.179071, 0.953108, 0.821623, -0.973314, 0.401178, 0.229556, 0.262362, 1.087518, 0.873532, 0.379720, 0.381720, -0.085807, 0.896269, 0.461447, 2.463325, -2.518463, 0.851560, -1.329320, 0.092004, 1.578780, -0.572657, 0.767601, -1.079418, 1.168974, -0.627887, -0.011383, -0.118989, 0.531131, 1.143228, 1.902901, -0.200627, -0.486797, 1.641399, 0.608356, -0.216496, 0.725261, -0.162895, 0.330982, 0.820958, -0.921749, -0.733622, 0.310342, 0.553115, 1.359880, 0.082874, -0.149544, -0.742177, -1.103584, 0.393630, -0.398683, 0.626538, 0.424161, 1.507152, -0.502384, 1.191880, -0.234665, -1.903783, -0.023994, 0.784056, -0.657606, 0.406854, 2.338391, -1.410067, -0.127203, 0.532538, -1.027586, -0.244461, 0.232750, -1.394837, -0.424207, -0.734668, -1.031211, 0.169774, -0.503059, -2.034449, 0.502734, -1.014961, -0.293693, 1.015388, 0.374324, 0.943302, -1.221246, 0.824060, -0.720302, 1.723397, 0.505406, 0.704047, -1.924815, 0.199160, -1.213922, -2.698929, 1.703014, 0.470391, 0.648153, 0.360156, 1.165374, -1.145570, -0.052626, 1.174861, -0.747914, -1.843718, 1.308031, 2.207995, -0.748276, -0.513953, -1.100582, 0.595030, -1.228178, -0.579758, -0.033902, 0.625216, -0.004651, 2.388036, -0.914000, 0.016502, 1.338437, -1.013636, 0.240145, 0.016415, 1.743971}, + { -1.050104, 0.851740, 1.760948, -0.260951, 0.773147, -0.085042, 0.984130, -0.694930, -0.848098, -0.303356, 0.486844, -0.036915, 0.756838, 0.270384, -0.096876, -1.705442, -0.875968, 0.148035, 1.944572, 0.137014, 1.051771, 0.101055, -0.591238, 0.228010, -0.222546, -0.522328, -0.279744, -1.260191, 0.411245, -2.832319, -2.845732, -0.403106, 1.321160, -1.301782, 0.283506, -0.170718, -0.337379, 1.025586, 0.947707, -0.013840, -1.617493, -1.872769, -0.494146, -0.277383, 0.426942, 0.222001, -0.989461, 0.235463, -0.326515, -0.326163, 0.925300, -0.695288, -0.055403, 1.661719, 2.754292, 2.063362, -0.452832, 0.441295, -0.094271, -1.358375, -1.358480, 0.286429, -0.310945, -0.391619, -0.611637, 1.299027, 1.484519, -1.884884, 0.822183, -0.131740, 1.548682, 1.914729, 0.121496, 1.034936, -0.829079, 0.135968, -1.233624, 0.468950, -0.739665, 1.052215, 0.231715, 0.835897, 0.146238, -0.596226, -0.952935, 0.705589, 0.462045, -0.749679, 0.734601, 0.164376, -0.632611, -0.839422, -0.625897, -1.060581, 0.942459, -0.782899, -0.507493, -0.553138, -3.155368, 0.325823, 1.181858, 1.834368, 1.259962, -1.352813, -0.804411, -1.289760, -0.856301, -0.447351, -1.797498, -0.244937, 1.902796, 0.586957, 0.558029, 0.044265, 0.219389, -0.799320, 1.020997, -0.389787, -2.005269, -1.162310, 1.277081, -0.024593, -0.536412, -0.627559, 0.701306, 0.564163, -1.055129, 0.891800, 1.832375, -0.482354, 1.175039, -0.345960, -0.085098, 1.101402, 0.342817, -0.387280, 2.258290, -0.428307, -0.437184, 1.238583, 0.208886, -0.501958, 1.711706, -0.514997, -1.170438, 0.790473, -0.138227, 0.454635, -0.911892, -1.027287, 1.166656, -0.945643, 0.753910, 0.671653, 0.963674, -1.020669, 0.240791, 1.571823, 0.320863, 0.288264, -3.088539, 0.217848, 1.370296, 1.675737, 0.951504, 1.233946, -2.394449, -1.489108, -0.831133, 1.126583, 1.759461, 0.604534, -1.883522, 0.729702, 1.428674, 1.247608, 2.020521, 1.785367, 2.022477, 0.282335, -0.225219, -0.899817, 1.134865, -0.012182, -0.356991, -2.958370, 0.528379, -0.091994, 1.612938, 0.177113, -0.174741, -0.820671, -0.050537, -0.334556, -0.558426, -1.262703, 0.813752, 0.532830, 0.102357, -0.585148, -0.554758, 0.855231, -0.708542, 0.354830, 2.242085, -0.837441, -0.308129, 0.672828, -0.067562, 0.608800, 1.137189, -0.208148, -0.238313, 0.524548, 0.919691, -0.553098, -0.423979, 0.452772, -0.399442, -0.718471, -0.751696, 0.642043, -1.399958, 0.835269, -0.832004, 0.873779, 1.670800, -0.305059, -1.683703, 1.194154, 0.971555, -1.267333, 0.384064, -0.408261, -1.253819, -0.855192, 2.680749, 0.031036, 1.109628, 0.315149, 0.785434, 1.392679, 0.451148, -0.705222, -0.594100, -1.729232, -0.870825, 0.242882, 0.737568, 0.405518, 0.958272, 0.857112, 0.763798, 0.029028, 0.234864, 0.763468, 0.039577, 0.668616, 0.563011, 0.862598, 0.355550, 0.822836, -1.030874, -0.614458, -0.175062, -1.544618, -0.085549, 0.437895, 1.150567, 0.935721, -1.012053, 1.238802, -1.052835, 0.509425, -0.662986, -1.055440, 1.885569, -0.595978, 0.700366, 0.035828, 0.608206, -0.180353, -0.157545, 0.820219, 0.527421, 1.513075, -0.119157, 0.136759, -1.303168, 0.208308, -0.399784, -1.406116, -0.205548, -1.623276, 1.193833, 0.359449, -0.913725, 0.608309, 0.418733, -0.746842, -2.197005, -0.555930, -0.610731, -0.127108, 1.005005, 1.805324, -1.007350, -1.075301, -1.207348, -0.706700, 0.987397, 1.020994, -0.750428, 0.584071, 1.748245, -1.332641, -0.238638, -0.269564, 0.355541, 1.727980, 0.442839, -0.099061, 0.366921, -2.100170, -0.179568, 0.160748, -0.802068, -0.026250, -0.546199, -0.093223, 1.209833, 1.119917, 0.145115, 0.363496, -1.858578, 0.524531, 0.125150, 0.113246, 0.132912, 0.077245, 0.818551, 0.308586, -0.293372, 0.667801, 0.673581, -1.345068, 1.026106, -0.015549, -1.997613, -0.316884, 0.788533, -0.654679, 0.758228, -0.403889, 0.185800, 0.046381, 0.316637, 0.340012, -0.162078, 1.098674, 0.039271, -0.957268, 0.332483, 0.273801, -1.566557, -0.176081, 0.175404, -0.864928, 1.414942, 0.310111, 0.685319, 0.116172, 0.430560, 2.224497, 1.927643, 1.832579, -1.691567, 0.955506, -0.463715, -0.088780, 0.908587, -0.178115, -0.021907, 0.847479, -0.959113, 1.409545, 0.024926, -0.902441, -0.100101, -1.183805, 0.693638, -1.956918, 0.308475, -0.492400, 1.656146, -0.538849, -0.449507, 0.116587, -2.057016, -1.341323, 1.935542, 0.229906, 0.633852, 1.607449, -0.113654, -1.453684, -0.177316, -0.388556, 0.337893, -0.399097, 1.178495, 0.433103, 0.068697, -0.934139, 0.551306, -0.509546, 0.986441, -1.254727, -0.152533, 0.922647, 1.704715, -0.516479, 0.984688, -0.222721, 0.621025, -0.290732, -0.133148, 0.748114, -1.188029, 1.492964, 1.800189, -0.321394, 0.017701, 0.271388, 1.519788, 0.325735, 0.369316, -1.117259, 0.558981, 0.026964, 0.821030, -0.540670, -1.410102, 0.393539, 0.907437, 0.285348, -1.244247, 0.457723, 0.449056, 1.896329, 1.051571, 1.353777, 1.092753, -0.289386, -1.517437, -0.447366, 0.610817, -0.415439, 0.282971, 0.415185, 0.209349, -0.119361, 0.598789, -0.246369, -2.540778, -2.157437, 1.039342, 0.176405, 0.202913, 0.401381, -0.096723, -1.802381, 1.067456, 0.060001, -0.155005, 0.100308, 1.399262, -1.737475, -2.401234, -0.244674, -1.802676, 0.415239, 0.284430, -0.262086, 1.569243, 1.363004, 1.014927, 0.126073, -1.263765, 0.927902, 0.202006, 1.323096, 0.540385, 0.012786, -0.068971, -0.291507, -0.238783, -0.232579, 1.374966, 0.534851, 0.030856, 1.688450, 0.069913, 0.739804, 2.261253, -1.111018, 0.091270, -0.173607, 0.424485, 0.924848, 0.693890, 0.849674, 0.334656, 0.919878, 1.374691, 1.137824, -1.188757, 0.456192, 1.517513, -0.699862, -0.471799, -0.307264, -1.127343, 1.504756, -1.595168, 0.745482, 0.719533, -0.279094, 0.186277, 1.080644, 2.017308, -0.026321, -0.064334, 0.715085, 1.963507, -1.674630, -0.467564, 0.354547, -0.003942, -1.293154, -0.696808, 0.282367, 0.022179, 0.867287, 0.348183, 0.047591, 1.155602, -0.183960, -1.733841, -0.011869, 1.697129, 1.585940, 0.533170, -0.053558, 0.712089, 1.049178, -0.764531, 0.933778, -0.619964, -0.673276, 0.755021, -0.550821, 1.002476, 0.655378, -0.521221, -1.231635, 0.810712, 0.498618, 1.592913, -1.874308, 0.767303, 0.423292, -0.110988, -0.038420, -0.768042, -0.003506, -1.356288, 0.171800, -0.235799, 0.671319, -0.575070, -0.771590, 3.047997, -1.891565, -1.081929, -1.215924, 2.047206, 0.717007, -0.801868, 0.411989, 0.118208, -1.344364, 0.239152, -0.631539, 1.334027, -0.706374, 1.589629, 0.997319, -0.556157, -0.417240, 1.038071, 0.062831, -1.203538, 0.784616, 0.155421, -0.097677, -0.729028, -0.912433, -0.516493, 0.905656, -0.297156, -0.672749, 0.364179, -0.688422, 2.347499, 0.238138, -0.260670, -2.338491, 1.791093, -2.554378, -0.060427, -1.297048, 1.181877, -0.946683, -0.945687, 0.993629, -1.734293, -1.096941, -0.358513, 1.112343, -0.521198, -0.437314, 0.025110, -0.113967, -0.992061, -0.713330, 0.681993, -0.225123, 2.293878, 1.403153, 0.739554, 0.310456, -1.291777, -0.328176, -0.683770, 0.238519, 0.254914, 0.153806, -0.987748, 0.513807, 0.424743, 0.945607, -0.220656, -0.490016, 0.738459, 2.185630, -0.059705, 2.373328, -0.602771, -0.845253, -0.462983, 0.403368, -0.064104, -1.280047, -0.293702, 0.335559, -1.489431, 0.180948, 1.100480, -0.782283, -0.460562, 1.113970, -0.097187, -1.283036, 1.244986, -0.236520, 0.367219, 1.059567, 0.461540, -1.434444, 0.608749, -0.017703, -0.264461, 2.668455, -0.805338, -1.732785, 1.052351, -0.205993, -0.384507, 0.917261, 1.330197, 1.114638, 0.363902, 2.749459, -0.606039, -1.512052, 1.364934, 0.401135, 0.283434, -0.178777, -0.940149, 0.401252, 0.191250, -1.052515, -0.673125, 1.348890, 0.418493, -0.690067, 0.002045, -0.974710, 0.894730, 0.229738, 1.047669, 1.274858, -0.337723, -0.370015, 0.306857, 0.625710, -0.400371, -0.358819, -0.755431, -0.898174, 1.017288, 2.520072, 1.242687, 0.361563, -0.596693, -1.447858, -0.629902, 0.396876, 0.959751, -0.064345, 0.206358, 1.876887, 1.201578, 0.999628, -0.057378, -1.434791, -2.983628, -0.654079, -1.426744, 0.564790, -0.033222, -0.246810, 2.335053, -0.062262, 1.784829, 0.602693, -1.550762, -0.032094, -1.045864, -1.888092, 1.812221, -1.009752, -0.058859, 0.113872, -0.188944, 0.845872, 0.727605, -0.369217, -0.467735, -0.903551, 0.230362, -0.968503, -0.119049, 2.130219, 1.992388, -0.064370, -1.146456, -0.771580, -0.600606, 0.094632, -1.308043, 0.386780, 0.218758, -0.354974, -0.600921, 0.197313, 0.802285, 1.828176, -0.215307, 0.369628, 0.635802, 0.717933, 0.181594, 0.209398, 0.314150, -0.212557, 1.022041, 0.525169, 0.546904, 0.692528, -0.908854, 0.014867, -1.394348, 0.141442, -0.030332, 2.840991, -0.778409, 0.016614, -0.138869, -1.199519, 0.222956, 0.800841, -0.865870, -0.389325, -0.106275, 0.489065, 0.250935, -1.539800, 1.393391, -1.455775, -0.976652, 0.895871, -0.326881, 1.014845, -0.472287, 0.764726, -0.564137, -0.188655, -0.135541, -0.837198, -2.076240, 0.241777, -0.068509, 0.901481, 0.197587, 0.622280, 1.084918, 0.470674, -0.262295, 0.068701, 0.172609, -0.682893, -0.621625, 0.063194, -1.208267, -0.704549, -0.861561, -1.730424, 1.212334, -1.769090, -0.962524, -0.723652, -1.349620, -0.187003, 0.410022, 0.661138, -0.707714, 1.260247, -0.414381, 0.758798, 0.683419, -0.261396, 0.061901, 0.149950, 0.266812, -0.726238, -0.486876, 0.062698, 0.553897, 0.479294, -1.448374, 0.507636, -2.346486, 1.063414, -0.822606, -0.340498, 0.236981, -0.075136, -0.677558, 1.116128, 0.449878, -0.399137, -1.245261, -0.580172, -0.677592, -1.399622, 0.945854, -0.337612, 0.562182, 1.480059, 1.390533, -0.972220, 1.013287, -0.725117, -0.990412, 1.211104, 0.519324, -1.656554, -2.638333, 0.651821, 0.624165, 1.270033, 1.258196, 0.494269, 0.238732, 0.531198, -0.072483, 0.557525, -0.322904, -0.074844, -0.907902, -0.221786, 0.457757, -0.598915, -0.322739, 0.346953, 0.868127, 0.360280, -1.678912, 1.452304, -0.019834, -0.458903, -0.216007, 1.091661, -0.807372, -0.424735, 1.225945, 0.385545, 0.412738, -0.239363, -0.507021, -0.435201, -0.048752, -1.630993, 0.818481, 0.760323, -1.176984, 0.197156, -1.038101, -1.067224, -0.401381, 0.214429, -0.766218, -0.645589, -0.651632, -0.519759, 0.022447, 0.386456, 1.680880, 1.296471, 1.238824, -0.425002, 0.798854, 0.584602, -2.378628, 0.511520, -0.582259, -0.446778, -0.332894, 0.970097, 0.296599, 0.043734, -1.178687, -0.943815, 0.051011, -1.188565, -0.437895, -0.551500, -0.216011, -1.440180, 1.300131, -1.522742, -0.535919, 0.245617, -0.456483, -2.186481, -0.749511, -0.902191, 1.478058, -0.919501, -0.274592, -0.227791, -0.141516, 0.058764, 2.225221, -0.870458, -0.967629, -1.771994, 0.326383, 0.241432, 0.171822, 1.426217, -1.480473, 0.341936, 1.966583, -0.791514, -0.081857, -0.202100, 0.369928, 1.058743, -0.611827, 0.921819, -0.604249, 0.995822, -1.046986, -0.484409, -2.316767, 0.399777, 0.957714, 0.314163, -0.965273, 0.961739, -0.733071, 1.106458, 1.793095, 0.039524, 0.979612, 0.306513, -0.522191, -0.504139, -1.036884, -0.280283, -0.254177, 1.065350, 1.816050, -2.005032, 0.161313, -0.285361, -0.977616, -0.109072, -0.696342, -0.256539, -0.180186, 1.430899, 0.838463, -1.061960, -1.592524, 0.441530, 1.366050, -0.685318, 0.233680, -2.311427, -0.308096, 0.555344, 0.048981, -0.752526, 0.585936, 0.370827, 0.352839, -0.462694, 2.730259, 0.318348, 0.066214, -0.342504, 0.586782, 1.457488, 1.856496, -0.605141, -0.535174, -1.999769, -1.668622, -0.408905, -2.378285, -0.016774, 1.287151, -0.719079, -0.548583, -0.337331, 0.862812, -0.605760, 1.648520, 0.094051, -1.951560, 0.089223, -0.780328, -1.075616, -0.501557, 0.207018, -0.984979, 0.505881, -0.957748, 0.292560, -0.654020, -1.521583, 0.399999, -0.875850, -0.427864, 0.104920, -0.284185, -0.279061, 0.311303, 0.824885, 1.477813, 0.126833, -0.169382, 1.263168, 0.565827, 0.294153, -0.041792, -1.703477, -0.882949, -0.164699, 0.015699, -0.194581, -1.209354, 1.462874, -1.141294, 1.590655, 0.811364, 0.573021, 1.166842, 1.156637, -0.505591, 0.096107, -1.026647, -0.179227, 1.679374, -1.184700, 0.711789, 1.047191, -0.182652, 0.970459, 0.419897, 1.290955, 0.810446, -0.581004, -0.595683, -0.139267, -0.498031, 0.048846, 1.505327, -2.143813, -0.629577, -0.252255, 1.028242, -0.765101, -0.390921, -0.217402, 0.479872, 0.011424, -0.157042, 0.734651, 0.189349, -0.119298, 1.560242, 0.612179, 1.302071, -1.198902, 0.618100, 1.676716, -0.772555, 1.220210, -0.166774, -1.177870, -1.177902, 0.809546, -0.799127, 1.034321, -0.145202, 0.367323, 2.489962, 0.425243, -0.464740, -0.234826, 0.207980, -0.911901, 0.744626, 0.640711, 0.294641, 0.312020, -0.100161, 0.023665, -0.569919, 0.539226, 0.144603, -1.384257, -1.079836, -1.278033, 0.736026, -0.544919, 0.176548, -1.709892, -1.411979, 0.782916, -0.097198, 0.229842, -1.588447, -0.459033, -1.412327, 1.015274, -1.276133, 0.435498, -0.278965, -0.074937, -0.172663, -1.084600, -0.630960, -1.487925, 0.528229, 0.569579, 0.083534, 0.460871, 1.379124, 1.016671, -0.118298, 0.973762, -0.136367, 1.315556, 0.668521, 1.814967, -0.771829, -1.384105, 0.990654, 0.841416, 0.029240, -0.691763, 1.171851, 0.370924, 2.733368, -0.568443, 0.673389, 0.869627, -1.045340, 0.497292, -0.280144, -1.036110, 0.847121, -1.130689, -0.820482, -0.430357, -0.123934, 1.888240, -0.527257, -0.351635, 1.423017, -0.339125, 1.102714, -0.315699, -1.104933, 1.008917, 1.342390, 1.458689, -0.385539, -1.016880, 0.581250, -0.196346, 0.931329, 1.164288, -0.247903, -0.228536, 0.835217, -0.144650, -0.090957, 0.760739, -0.809166, 0.947617, -0.212802, 1.281088, 1.101748, -0.716830, 0.043255, -0.528309, -0.763206, -1.506980, 0.974319, 1.138049, -0.803519, 0.176812, 0.286667, -0.104673, -0.741020, -0.625206, -0.330992, 0.198928, -0.594688, 1.396620, 0.016673, -0.815823, 1.664508, -0.170367, -2.500268, -1.219836, 0.695559, 0.165445, 1.588555, -0.695296, -0.489465, 0.150997, 0.493484, 0.101510, 0.126520, -1.573688, 1.159101, -0.364522, -0.688085, -0.312782, -0.898272, 0.450867, -0.435013, 0.246921, 0.034450, -0.439975, -1.804829, -0.068320, -0.499654, -1.826085, 1.732197, -0.619400, 0.793144, -3.463029, -0.440606, -0.850981, 0.305892, 0.090604, 2.434437, 0.655124, -1.372699, -0.517537, -2.463883, 0.722855, 0.572804, -0.627829, 2.062758, -1.756823, -0.522275, 0.222496, -0.085869, 0.692665, -1.785366, 0.613105, 0.260673, -0.204498, 0.250998, 0.330212, 1.385464, 1.499173, -0.244544, -0.602137, 1.724807, 0.963152, 0.882231, 1.284749, -0.290747, 0.870654, -0.187853, 0.296364, -0.582804, 0.539557, 1.500398, -0.396130, -0.506023, 0.698999, 0.630518, -0.378596, -1.396902, 0.533503, 0.287936, 0.448920, 0.647826, 0.107994, 0.816036, -0.317601, 0.478552, 1.790181, -1.788593, 1.631016, -1.079836, 0.811293, -0.628658, -0.580595, 0.401982, 0.569849, 0.770866, 1.332316, -2.743430, -1.254921, -2.446743, -1.056456, 0.141758, 1.556393, -1.090519, -1.363106, -0.351823, 0.029793, 1.169748, 1.378610, 1.711351, 0.828068, -1.074599, -0.223655, 1.107016, -0.445439, 1.903487, -2.814875, 0.002307, -0.847779, 0.247274, -0.564948, 1.217887, -0.495183, -0.762937, -0.862757, -0.286405, 0.728582, -0.400891, -0.404757, 1.617295, 1.799583, -0.067192, -0.436241, 0.422387, -1.409052, 0.743152, 0.668135, -0.848996, -0.770020, 0.151187, -1.119343, -0.254092, -0.980843, 1.428326, -0.139192, -1.632969, -0.997932, -1.298561, 1.268624, 2.015321, 1.566318, -0.090312, -0.145650, -0.077887, -0.331785, -2.126774, 0.079247, 0.516671, -0.244639, -1.618103, 1.007665, 0.011055, 1.087784, -0.376843, -0.384728, 1.290764, 1.057104, -0.913489, -0.522801, -1.892181, -2.794821, -0.715227, -1.903783, -0.198911, -0.320695, -0.648763, 1.287908, -0.448754, -0.276334, 2.333137, -0.236980, 1.518776, 0.618936, 0.308806, 0.251606, -0.141605, 2.084855, -1.516574, 0.067112, 0.015472, -1.164162, -0.728226, -2.385466, 0.314487, -0.851540, 0.300903, -0.784852, 2.687056, 1.665760, -2.083869, 0.309880, -1.947824, 2.580373, 1.132692, -0.078935, 0.463516, -0.873756, -0.788863, 0.549656, 0.721034, 1.474422, -1.952553, 0.190517, 1.041629, -0.596603, -1.905171, 1.129173, 1.251417, -1.817391, -1.061355, 0.915165, -2.123946, 1.236051, -1.228409, -0.159711, -0.655804, -0.560730, -0.562828, 0.721478, 0.010690, 0.437009, 0.495920, -0.703829, -0.775189, -1.194754, 0.337509, -0.932305, -1.271299, 1.027621, -0.460641, 0.388271, 0.972452, -0.280572, 1.885038, -0.460650, 1.480823, 1.766066, -2.534727, -1.046588, 1.150445, -1.914867, -0.549929, 0.261702, 1.594321, -1.445070, -2.427070, 1.437757, 0.409672, 0.482781, 1.634529, 1.790684, -1.029307, 1.098532, 0.883415, -0.304889, -1.273391, 0.828298, 1.039949, -0.276642, -1.955131, 0.748213, 0.948770, -1.751379, 0.170211, -0.348103, 0.778671, -0.327411, 0.727372, -1.308437, -0.417400, -1.118454, -0.017688, 0.265638, 0.399090, 1.092914, -1.671373, 1.553571, -0.320174, 0.149660, 0.292985, -0.452985, 0.167332, 0.048975, 0.332529, 1.156851, -1.803404, -0.612971, -0.344844, -1.345627, -2.173171, 0.337222, -0.340274, 1.470315, -0.465364, 0.777066, -0.059724, 0.540948, -0.924273, -0.498785, 0.130303, -0.024488, 0.771386, -0.888127, 0.409938, -1.327856, -0.271714, -1.612004, 0.112701, -1.986177, -1.149349, 0.642528, -0.603705, -1.515244, 1.840038, 1.147426, -0.108651, -0.384249, -0.392141, -0.767295, -0.649777, 1.895359, -1.430295, -0.272704, 0.969845, 0.256234, -1.367562, 1.372657, 1.148524, 0.804224, 0.250775, -0.543023, 0.044346, -0.176317, 0.356183, 1.804415, -2.931144, -1.303446, 0.215903, 1.559797, 0.164174, -0.177832, 1.081160, 0.829425, 1.429229, 0.314129, 0.639403, 0.049648, -0.150397, 1.223584, 0.068886, -0.871838, 0.250440, -0.121434, -0.790761, -1.551351, 1.957268, 1.425010, 1.720424, -0.140462, -0.292308, -1.145658, -1.090995, 1.442057, 0.771168, -1.421402, 1.924043, 0.042159, 0.440960, 0.084090, 0.792587, 1.623435, -0.848524, -0.410371, -1.910007, 1.114971, 0.113813, 0.384190, -0.343022, 0.901978, 1.780175, 0.165075, -1.235795, -0.973140, -0.684883, 1.378608, -1.556359, 1.389666, 0.125180, 1.432838, -0.367771, 0.348334, -1.170123, 0.894740, -0.892537, -0.429992, 0.041033, 1.725004, 1.691471, 1.270950, 2.368528, -0.649795, -1.793756, 0.648308, 0.390791, 0.100766, 0.439901, -1.116386, -1.336909, 1.158723, 1.261636, -1.846923, 1.178719, 0.118388, 0.982257, -1.036349, -1.180894, -0.245587, -0.129389, -0.053290, -0.077119, 0.049128, 0.302768, -1.212949, -0.297443, 1.020663, 0.864797, 0.907904, 0.281368, 1.169923, 0.056198, 1.455476, 0.487488, -1.467424, -0.509325, -0.081169, 0.189246, 2.273947, -1.102465, -2.270064, 2.581475, 0.243144, -1.425038, 0.786366, 1.204281, -1.225804, 0.664714, 1.304731, 0.208075, 1.271172, 0.358766, -2.539291, 2.170035, 1.003199, 1.000141, 1.153371, 0.376017, 0.245331, 0.119319, 0.170506, 0.468791, 0.845317, 0.880419, -0.182267, -0.351487, 1.221351, 1.109485, -0.122763, -0.441408, 0.397473, -0.692110, -0.958655, -0.890841, -0.165561, -0.669242, -0.960004, 1.029351, -1.827937, 0.344003, 0.487598, -0.509466, -1.950244, -0.986274, -0.754782, 0.490325, -2.561658, -0.364866, 0.115597, -0.835832, -0.680565, 1.116448, 1.034222, 1.156194, -0.462367, -0.646126, 1.490184, -0.092126, -0.985075, -1.204694, 0.966325, -0.439018, -0.291853, -0.972802, 1.684901, -0.306335, -2.867162, 0.840268, 0.047128, -0.484602, -0.361164, 0.529141, 0.253967, -0.279505, 0.301664, 0.908830, 0.570776, 0.450165, 2.010303, 0.977634, 0.450457, 1.897397, 0.130140, -0.472491, -1.332368, -0.590533, -0.236377, -0.171133, 0.685940, -0.456521, 1.388796, 1.351646, 0.170174, -0.382853, -1.348521, 0.691629, -0.278505, -1.271869, -1.342085, -0.139426, 0.329207, -0.708711, 0.017592, 1.484468, -1.975322, -0.854597, -1.040721, 0.085031, -1.284979, -1.059245, 0.839824, 0.931990, -0.163811, -0.008066, 1.313868, 0.631472, 1.869960, -0.307023, 0.555135, 0.174737, -1.814567, -1.491072, -0.252474, 0.213044, 0.238095, 1.161464, -1.684574, 0.313886, -0.216870, -0.618215, 2.270164, -3.519725, -0.367013, -1.231144, -0.811809, 0.219825, 0.315066, 0.814039, -0.233066, 1.959956, 1.282328, 0.152132, -1.447953, -0.359744, -0.127220, 0.547382, 0.621872, -0.243756, -0.680312, -1.452631, 0.674617, -0.882651, 0.505583, 0.574320, -0.724038, 0.208307, -0.758440, 0.037523, -0.436246, -1.103913, 0.605163, -1.203271, -0.349048, -0.590220, -0.587942, -1.742100, -0.122615, -2.138384, 1.205681, 0.268602, -0.364161, -1.191892, 0.407916, 1.239345, -0.703523, -0.360744, -0.711938, -0.320934, -0.523445, 1.561669, -0.743672, -1.076270, -1.210861, -0.827123, 0.340647, -0.034845, -0.560500, -0.123075, 0.673215, 1.025805, -0.163507, 0.118245, -0.172347, 0.829372, 0.959543, -1.080799, 0.145325, -1.512127, 0.243233, -0.851418, -0.402083, 0.670363, -2.581012, -0.094808, -1.015808, -0.091176, 0.356494, 2.140609, 1.451248, 0.290791, 0.955669, -0.612150, 0.355083, -0.860035, -0.220295, 1.935034, -2.245154, -0.691729, -0.641136, -0.957094, 0.264666, 0.953032, 0.925415, 0.805269, -1.676702, -0.732828, 0.321373, 0.820801, 0.263415, 0.978789, 0.415271, -0.770884, -0.560305, -1.474311, 1.453777, -0.139642, -1.420674, 0.967396, -0.255116, -0.477515, 0.055763, -1.208753, 1.400063, -1.609228, 2.044857, -0.461519, -1.552521, -0.567215, 0.564991, 0.129456, -1.370450, 0.495831, -0.699535, -1.036510, -0.713296, -0.056456, -1.175707, 1.714374, -0.546644, 0.555167, 0.589690, -0.114738, -1.099528, -0.720584, 2.580354, 0.154068, -0.075990, 0.497113, -0.557604, 0.632325, -2.232875, -0.555574, -1.780078, -1.514722, 0.930837, -1.006835, 0.224690, -0.801820, -0.062706, -1.463318, 1.299447, -0.188101, 0.937312, 0.483199, -0.571289, -0.810484, -0.644893, -1.193224, 0.059205, -0.141947, 0.418589, -1.198344, -1.883460, -2.485989, -0.826594, -0.843370, -2.850616, -0.465154, -1.836882, 1.497049, 1.158938, -0.037906, 1.257824, -0.388018, 0.557795, -1.873809, -3.291062, -0.014402, 0.263339, -0.641722, -1.651595, -2.528742, -0.578036, 0.321927, -0.588572, -0.571020, 0.814622, 0.098188, 1.541206, -0.233167, -0.067291, 2.019158, 1.188454, -0.491439, -1.278601, -0.880556, -0.137270, -0.239827, 1.146000, -0.410556, 0.807072, 1.006048, 1.333995, -0.171237, 1.928859, -0.650880, 0.775498, 1.419518, 0.066664, 0.424831, 1.121179, -0.204914, -2.000347, -0.731608, -2.163165, -1.186326, -0.001448, 0.732853, -0.114406, -0.241247, -0.052114, -1.340066, 1.064839, 2.225616, 0.252704, 0.048093, -0.152621, 0.371792, 0.079982, 0.195513, 1.385363, -0.167603, 0.362770, -1.148246, 1.123373, 0.437405, 0.615800, 1.022465, 1.091354, -0.246173, 0.679600, 0.297476, 0.067711, 1.085536, 1.521773, -1.743577, -0.963234, -1.663871, 0.197685, 0.956560, -0.755337, -0.448105, -0.307985, -0.372927, -3.681711, -1.190052, -0.650981, 1.021996, -1.023422, -0.432114, -2.023940, 0.193068, 0.499775, -0.721505, -1.853910, 0.701858, -0.410427, 0.833886, 0.673609, 2.411486, -2.828877, -0.258035, -0.999973, 0.206999, 0.094633, 0.609048, 0.181900, -0.039991, -1.936095, -0.653988, 1.382607, -0.845476, 0.260008, 0.326553, -1.852391, -0.822542, -0.954687, -0.968077, 0.278658, 0.068318, -1.167719, -0.052708, 0.154352, 0.212280, 0.596978, 0.604840, 0.432039, -1.806290, -1.023921, 0.458002, -0.074754, 0.242409, -1.401399, 0.676589, 2.262212, -0.399023, -0.301030, -1.010048, -0.271403, 1.708313, -0.026174, -1.056340, -0.713290, 0.298816, 0.331817, -1.359979, 0.706568, -1.110049, 1.831745, -0.294758, 0.763841, 0.546000, -0.380547, -0.975400, -1.438008, 0.808115, -1.427639, -0.454569, 1.688931, 0.916512, 1.141009, -0.854748, 0.067646, -1.136776, -0.235838, 0.204974, 0.212840, 0.743308, 1.639927, 0.516522, -0.283163, -0.092873, -1.549742, 0.596333, -1.259256, -0.828800, 0.370436, 1.245179, 0.068038, 1.309856, 0.698309, -1.572554, 2.273052, -1.019572, -2.053736, 0.303562, 0.903053, 0.932825, -0.637823, -0.141961, 0.383576, -0.745588, 0.461201, 0.852043, 0.786838, 1.099883, 0.910615, -0.913858, -1.436887, 0.133763, 1.193469, -0.105290, 0.626564, -1.244284, -0.824674, -1.349277, -0.607738, -0.049062, 0.431512, 0.410840, 1.091541, 0.501111, -1.633811, 0.345205, 2.327626, 2.004410, 2.551513, -1.097027, 0.417169, 0.307445, -0.187798, -0.964303, -1.388449, -0.096223, 0.206668, -0.512665, 0.038904, -0.338043, 1.865018, -0.441585, 0.161255, 0.060204, -0.567725, -0.054680, -1.049167, -0.934331, -0.400814, -1.103378, 0.218030, 0.408159, -0.825384, -1.668284, -0.735799, -1.523152, 1.301409, 1.350244, -2.044044, 0.295981, 1.024060, 1.518365, 0.627217, -0.362370, 0.178887, 2.220145, 0.845519, -1.245751, 0.296076, -0.906249, -0.550781, -0.187704, -0.966384, 0.258156, 0.731842, -0.151215, 0.602581, -0.324755, 0.184688, 2.105219, -0.360765, -1.102379, 2.683188, -0.002378, 0.935326, 1.088723, -0.372392, 0.369770, 1.084281, -0.882304, 0.416716, 0.079135, -1.082771, 1.285754, 0.880396, -1.371859, 0.870100, -0.489232, -1.602242, 0.455934, 1.763801, 0.404464, -0.614565, -1.724052, -1.982593, 0.570093, 1.096289, -1.472392, 1.381516, -1.850454, 0.917283, 1.426737, -0.094476, 0.254634, -1.713858, 1.478379, 0.890432, 0.401829, -0.090656, -1.292247, -1.279843, 0.302457, -0.236417, -0.467403, -1.154478, -0.906065, 0.705937, 0.002082, -0.607295, 1.536265, -1.094748, 0.629592, -1.460641, 1.839497, -0.668563, -0.095149, 0.027071, -1.275475, 0.720768, -2.313432, -2.117853, -1.466619, -0.380405, -1.684252, -1.543230, -2.469121, 0.284849, -1.769367, 1.843941, 0.645849, 0.562916, -1.152369, -1.154117, 0.053049, -0.911990, -0.652897, 1.031700, -1.035564, 0.573847, -0.589830, 0.827473, -0.987938, -2.240338, 1.096295, 0.369008, 0.113771, -0.044153, 1.336587, 0.514051, 0.395887, -1.226199, 0.572327, 1.363572, 0.347048, 0.560013, 0.781436, 0.606495, 2.375325, -0.153912, -1.585245, 0.423466, -0.935471, 0.146285, 0.376451, -0.835973, -1.660926, 1.582481, 0.471677, 1.288726, 0.719894, -0.369299, -0.605758, 0.136684, -0.432780, -1.579723, -0.963347, 1.514310, -0.830247, -1.760513, 0.007297, 0.440421, 1.620559, 0.175405, -0.204266, -2.106836, -0.380563, -1.463042, -0.388214, 0.368389, -1.828637, 0.839464, 0.224701, -0.066454, -1.094345, -1.870579, -0.403838, 1.541245, -2.228127, -1.190789, 1.185140, 0.875489, -0.762382, 0.410577, -0.824674, 1.884373, 0.658230, -0.360211, -0.909355, -0.149655, -0.323001, -0.206297, -0.870072, 0.265621, 0.461955, 0.317674, 1.622650, -1.717764, -0.442985, -0.325512, -0.367192, -1.078023, -1.407287, -2.238735, -0.712122, 1.305645, 0.856626, 2.403688, 1.216418, -1.689685, 0.809785, 1.053149, -0.512433, -1.504532, 0.894018, 0.469305, 0.266478, 1.378944, -1.226123, -0.873641, -1.508280, 0.923169, -2.592287, -0.371285, -0.028856, 0.718734, 0.709310, 0.191418, 0.495436, 1.004859, -1.971753, 0.510060, -1.196623, -0.020200, 0.444278, -0.290145, -0.355238, -0.594349, -0.651522, 0.226935, -1.178136, 0.820969, 0.560619, 1.003440, 1.069418, -1.878259, -0.183214, 0.800477, 0.202630, 0.502726, -0.294162, 0.654934, 0.980805, -1.512176, 0.483358, 0.228810, 0.154502, -0.092433, -0.291913, 0.277689, 0.131718, -0.129950, -1.024526, 0.538989, -1.753239, 0.272279, 1.867798, 0.530696, -0.675928, 0.537991, 0.235620, 0.232758, -0.184438, -0.204704, -0.163548, 1.038092, 2.092777, -1.498174, 0.035976, -0.362997, -0.415563, 0.334518, 0.209770, -0.157115, 1.608045, 0.523456, -0.901635, 0.512854, 1.170690, -1.862518, 0.677543, 2.004447, -1.229728, -0.887000, 0.429626, 0.653907, -2.198623, 0.113910, -1.012737, -0.602652, 0.268596, -0.433785, -0.403663, 1.012576, -0.179156, 0.728264, -0.269759, 1.466707, -0.268548, -0.401664, 0.401893, 2.991096, 0.507529, -0.674686, 0.464573, 0.348770, 1.201653, -0.056604, 0.135997, -0.092281, -0.991061, -0.916831, -0.670588, -0.231594, 0.995374, 0.443734, 0.254507, 1.108321, 0.199079, -1.256905, -0.225160, 2.169815, -1.211504, -1.613809, 0.851215, 1.203705, 1.792670, 0.549233, -1.009304, 1.738254, 0.798481, -0.885659, 0.584313, -0.040680, -1.389247, -0.555906, -0.496788, 0.444996, 1.008133, 0.890202, -0.672025, 0.218345, -0.066502, 0.796782, 0.594442, 0.400180, -0.614666, 0.461127, -0.788149, 0.580780, -0.252922, 1.598786, 0.345562, -0.465401, -0.908905, 0.402144, -1.370560, 0.890239, 0.497729, -0.366781, -0.654610, -0.134878, 0.534342, 1.786823, -0.550269, 0.766497, -1.151797, -0.224203, -1.340949, 1.844077, -0.117947, -0.814984, -1.282964, -0.785406, -0.207749, 0.021620, 0.064032, -0.193473, 0.859739, 1.952088, -0.750830, 1.016058, -0.528133, -0.352504, 0.997560, -2.948111, -0.391757, -1.890509, -0.028581, -1.116947, 0.900249, 1.632925, 0.211528, 1.464261, 0.813499, -0.965834, -0.191811, 0.968300, -0.626022, -0.627869, 0.203130, 0.212776, 0.288468, -0.489586, 1.383871, -0.353621, -0.470161, -1.250769, 0.501932, 0.578503, 0.522494, 1.383515, 0.036709, 0.611702, -0.324476, -1.341430, 0.535411, 0.171775, 1.211939, -0.946181, -0.557432, 0.402751, -0.339894, -1.970996, 0.487801, -0.506185, -0.116569, -0.163749, 0.362941, -1.675222, 0.133179, -0.932245, 0.227481, -1.412128, 1.298975, -2.981760, -0.195989, -0.103139, 0.266744, -0.108065, -0.207866, -0.561348, 0.170384, 0.287127, 0.365311, -1.053901, -2.143873, -0.122602, 0.836379, 0.702712, -2.281724, 0.091834, 0.450036, -1.102499, -0.516250, 0.257807, -0.201001, 2.401299, -0.660058, 0.251632, -0.877792, 0.666423, 0.845179, 0.841628, -0.896648, -1.132187, -2.201586, -1.656882, -0.379535, 1.073976, 0.083634, 0.268975, 0.912557, 1.286196, 0.497235, 1.072200, -0.092967, 0.678398, -0.221040, 2.006468, 0.371291, -0.826240, 0.720615, 0.601670, 1.351313, 0.355805, -1.220755, 1.327509, -2.158093, -0.265237, -0.460523, -0.901234, -0.679397, 2.160350, -1.077485, -0.231026, -0.245614, 0.568309, -0.649115, -1.354293, -0.213618, 0.719830, 0.596101, -0.916382, -0.193533, -0.251266, -0.562228, 0.009247, -0.359364, 0.904510, 1.566602, 0.733213, 0.057844, 1.088685, -0.855912, 0.563026, -1.046159, -0.220802, 0.849690, 2.908533, -1.654303, 1.727432, 0.684040, -1.850934, 1.306162, -1.040588, 0.778143, 1.001766, -2.117378, 0.354126, -2.434271, 2.116376, -1.291661, -1.618389, 1.618531, -0.223615, -1.202130, 0.185509, 1.283886, -0.976218, -1.315687, 2.660844, 0.627925, -2.724558, -0.051845, 1.500147, 0.173336, -0.671355, -1.616030, 2.833105, 0.089477, 0.187101, 0.439169, 2.095438, -1.809289, -0.036200, 1.658423, -2.193846, -1.200890, 0.757756, 0.897567, 1.400721, -0.541263, 0.170801, 1.723530, 0.849128, 0.044761, -0.782273, -0.032073, -1.469752, 0.317400, -1.178158, -2.219496, 1.061824, -2.720530, 0.625581, -0.245036, -0.693298, -1.376902, 1.447943, 0.426345, 0.684331, 3.045380, 0.314667, -1.724104, -0.335636, 2.040052, 0.610763, 1.748671, -0.537217, 0.081519, -1.232412, -1.590867, 3.281409, -0.236164, 0.516442, -0.367121, 1.113477, -0.101688, -0.895257, -0.122986, 0.577028, 0.828970, -1.597559, 1.299989, 0.177506, -0.538503, 1.064118, 0.343365, -0.655215, 0.483452, -1.800218, -0.767643, -1.775171, 0.602599, -0.041027, 1.002649, 0.273201, 1.799783, 1.639954, -0.846828, -0.445425, -1.503152, 0.029173, 0.138277, -0.573592, 0.403383, -0.116117, 0.872516, 1.422441, -1.560168, -1.566623, -0.273330, -0.775797, -0.234296, 0.963701, 0.751731, 0.593447, 0.234605, -1.605393, -0.566641, 0.375025, 0.029848, 0.841423, -0.714929, 0.439749, 0.829317, 0.185950, 0.521275, -0.866284, -0.685984, -0.501778, 1.644804, -0.343457, 0.309802, -0.158656, -0.815835, 1.363981, 2.075718, 1.283538, 0.847531, 0.315317, 0.173977, 1.574663, 0.659445, -0.573065, 2.061598, -2.496942, 0.058987, -0.658761, 2.133844, -0.897984, -0.206965, 1.126628, 0.414460, -0.531610, -0.243805, -0.231926, -1.443090, 0.507506, -0.406759, 0.595977, 0.517678, 0.257494, -0.918222, -1.189355, -0.483287, -0.121459, -1.049367, 0.285166, 0.609940, -1.659741, -0.603259, -0.652179, -0.407910, 0.081981, 1.260762, 0.879977, -0.366529, 1.073076, 0.678174, -2.091066, -0.020090, 0.386587, 0.032529, 0.020348, -0.232831, -0.439285, 0.963073, -2.157159, -0.088462, 0.766416, -0.671181, 1.522421, -0.960185, 0.526432, -0.881427, -0.644743, 0.726419, -0.862196, -0.567700, -1.287147, -0.820527, -0.951630, 0.750921, -1.029318, -0.720539, 0.708780, 0.489514, -0.550919, -0.755829, 0.511643, -0.394900, -0.417637, -1.140377, 1.311014, 0.327576, 0.064683, 0.317144, -0.398887, -1.065391, 1.146876, -1.290596, -1.280738, 0.569320, 0.050438, 0.485064, 0.668543, 1.455787, 0.232036, 0.445867, -2.160827, 1.751598, -0.321649, 0.068739, 1.075140, -0.364060, -1.712742, 0.435224, 0.402828, 1.232949, -1.543923, -1.375330, 0.803641, -0.325610, 1.143298, 1.944335, -0.218840, -1.115818, -0.493478, -0.410096, -1.436890, -0.588038, -0.229452, -2.056219, 0.756037, 1.211246, -0.187034, -0.288765, 0.616333, 0.137836, -0.400240, -0.491144, -1.110797, 0.336978, 0.032051, -0.856657, -1.214663, -0.080546, 1.870633, -0.282188, -0.930166, -1.240665, 0.307673, 1.721147, 0.602459, -1.175582, 0.397474, -1.188016, -1.785199, -0.184665, -0.415283, 0.950586, 0.359571, 1.751423, -2.100031, 0.439803, -0.597166, -0.432930, -1.217145, 0.270341, 0.347048, 0.216593, -0.749260, -0.850258, 0.000787, 0.159751, 0.993618}, + { 0.301731, 0.340315, 0.356582, -0.199931, -0.692607, -0.670357, -1.513091, 1.274315, 0.483492, -1.273754, -1.048047, -0.602107, -0.509375, 1.703353, 1.416582, 0.501710, -0.075911, 1.163827, -0.229310, 1.099196, 1.963809, -0.078191, -0.665969, -1.344182, -0.013689, -0.292125, -1.779218, -0.859861, -0.708837, 0.676676, 0.499517, 0.178592, -0.402246, -1.382905, 0.686772, -0.584893, -0.575881, 0.694766, -0.024090, -0.050965, 0.953661, -0.622870, 0.836188, 0.029189, 1.159838, 0.165515, 0.378790, 2.050405, -0.660663, -1.538973, -0.847163, -0.717603, 0.253120, 1.357337, -1.058493, -0.095297, -1.081879, -0.700258, 0.044495, 1.712566, -0.921942, -0.252533, -0.414732, 0.743698, 0.743899, -0.524788, -0.260550, 0.542102, -0.918968, -1.100057, -1.059030, -0.596496, -0.272056, 1.357622, 0.634886, 0.145636, -0.154541, 0.229817, -1.773797, -2.028810, 0.109299, 0.347456, 0.827197, -0.826999, -0.722656, -0.619107, 0.389974, 1.182330, -1.423043, 0.995307, -0.913115, 0.770915, -0.616580, -1.141662, 1.683443, 0.826815, 1.089156, -0.844702, -0.448526, 0.680786, 0.595490, 1.333555, 0.827444, -1.927784, -0.372818, -0.531507, -0.113064, -1.123855, 0.118561, -2.277498, 2.295796, -0.759066, 0.758029, -0.960120, 0.191058, 0.386608, 0.070052, 1.463023, 0.398881, -0.331290, -0.185937, 0.513445, -0.667540, -0.176668, 2.967364, 0.293913, -1.354059, 1.766835, -0.318633, -1.100933, 0.254869, 0.036773, -1.315956, 1.159468, -1.080406, 1.207758, 1.385852, 1.660041, 1.465256, -1.387277, 0.005947, 1.743804, 1.441585, -0.231859, -0.606515, 1.048532, -0.191874, 0.572778, -0.492012, 0.509080, -1.410149, 0.458897, 0.311114, -0.369147, 1.200200, 0.811518, -1.115069, -1.622676, 0.519984, 0.417236, 1.205972, 1.300473, 0.606398, 1.473777, -1.091435, 0.806429, -0.932551, 0.494567, -0.837687, 0.572030, 0.869833, 0.545405, 1.315020, -2.294152, 1.148977, -1.111109, -1.989875, 0.223125, 0.794686, -0.703741, -1.232284, -0.022285, -0.359718, 1.443275, -0.402033, 1.346300, 0.237843, 0.811650, -0.433078, 1.155858, 0.617472, 1.291299, -0.461007, 0.206134, 0.490470, 1.553077, -0.067552, -0.377907, -0.904223, 0.493127, -0.250618, 2.067950, 0.333474, 1.824845, -0.807702, 0.851756, 0.228255, 0.541410, -0.531682, 0.195160, -1.644215, -0.482778, -0.162985, 0.817808, 0.118681, -0.072329, 0.082215, -0.079760, 1.836766, -0.892851, 0.395527, 0.243779, -0.183584, 0.093627, -1.158231, 0.332813, -1.346124, -0.031608, 0.942257, -0.825450, -1.106920, 1.560990, -0.653940, 0.446562, 0.553755, 0.540008, -1.595925, 1.092760, 0.395390, 0.908261, -1.507372, 1.775162, 1.122793, 0.520032, 0.900858, 0.354926, 0.314007, 0.173428, 0.836221, 0.313523, -0.022132, -0.716503, 1.184181, -0.155130, 1.076736, -1.077288, 1.020293, 0.307203, -0.372011, 1.430982, -0.312458, -0.301034, -1.045088, -0.172423, 1.224366, 0.233651, -0.698798, 1.171618, -0.277354, 0.924341, 1.228120, 1.480400, -0.592843, 0.024125, 0.369709, -0.512804, -0.807521, 1.502057, 1.286383, -0.238933, 0.194284, -1.645072, -0.759845, 0.018062, 0.599161, 0.189479, -1.045806, -0.363235, 1.012787, -1.992165, -2.280294, -0.020684, -0.167178, 0.264359, 0.214267, -0.767510, -0.269353, -1.075058, 0.240005, 0.913014, 1.122564, 3.143238, -0.219032, -0.195347, -0.819146, -0.179572, 1.151536, -0.897796, -0.575631, -0.106497, -1.558885, -0.035942, -0.677244, 0.368379, -1.527248, -0.082788, 0.448401, -0.950365, -1.297375, 1.443643, 0.671306, -0.505342, -0.528870, 0.517745, 0.724624, -1.634843, -0.279723, -0.412208, -0.044171, 0.550800, -0.380265, -1.132098, 2.779808, 1.099924, 0.900117, -0.746871, 0.698239, 0.468645, 0.927760, 0.194123, -0.226882, 0.271124, -0.569158, 0.003426, -0.011632, -1.209737, 1.318997, -0.755500, 0.401329, 0.933217, -1.236041, -0.652248, 0.725733, -1.939159, 0.740022, -0.209385, -1.428430, 0.474135, -0.639669, -1.726154, -0.973631, 0.129549, -0.290139, -0.913872, 1.676089, -0.123993, 0.723219, -1.771569, 0.458740, 0.511286, -0.197916, -0.780482, -0.568680, 1.363672, -1.133307, 0.486805, -1.041064, 0.022507, 0.898393, 0.745415, 0.670479, 2.005906, -0.649511, -1.474462, -0.572460, -0.464904, 1.396734, 0.841705, 0.263239, -0.888334, 1.429085, -0.297824, 1.555869, -0.200461, -0.133046, -1.528087, 0.964913, 0.076381, 1.768266, -0.512871, -0.041117, -0.172383, -0.378645, -0.104837, -0.988190, 0.138538, 1.027950, -0.119624, 0.966073, 1.602044, -0.380665, -0.051357, -1.047217, -0.899111, -0.922363, -0.664096, 0.449538, -0.224948, -0.785595, -0.715102, -0.442596, 0.775693, -0.661684, -0.103729, -0.573598, 0.615203, -0.499645, -0.987635, -1.082462, -0.316347, -0.045296, 0.746258, -0.671951, -1.323349, 1.501651, 1.746913, -0.147925, 0.099872, 0.346254, -1.276066, 0.232616, -0.457229, -0.915705, 0.831763, 0.256330, -1.178553, -0.826680, -0.876064, -0.198926, -0.704767, -0.303037, -0.601242, -1.082732, 1.911549, -0.253599, 0.050120, -0.644634, 0.706186, -0.981749, 0.739799, 0.059147, 0.571289, 1.460922, 0.522896, 0.152329, 0.376585, -0.094636, 0.437663, 1.308744, 0.547445, -1.529621, 0.561978, 0.635995, 1.287352, -1.073645, -1.750299, 0.933533, -0.552610, -1.338540, 0.140115, 0.379590, -0.510426, 1.103815, 0.640973, 0.376664, -0.011929, 0.644988, -0.731731, -0.218970, 1.272982, -0.226110, 0.205127, -0.368558, -0.022630, 2.318778, -1.229447, -0.290865, -0.563527, -0.829533, 0.078361, 0.054665, -1.866439, -0.601924, -1.055621, -0.081156, 0.954206, 0.878962, -0.853083, 0.433576, 0.771821, 1.650254, -1.040189, -0.943020, -0.600853, -0.951020, -0.058790, -0.412329, 0.070419, -0.327229, 0.639502, -0.130401, -1.981886, 0.892368, 1.927000, 1.395447, -0.035979, -0.268848, 1.504998, -1.268180, -2.091290, 0.692991, 1.503467, -0.595840, -0.359548, -0.598310, 0.237555, 1.361935, 1.195720, 1.488564, 0.531622, 0.639224, 0.005910, -1.281677, 0.688168, 0.436142, 0.003748, 0.505624, -0.462939, -1.437582, -1.013640, -1.273356, 1.619996, -0.860430, 0.206553, -1.011272, -0.178100, 0.907035, 0.024300, 2.001593, 0.576700, 1.030430, 0.130177, -1.339414, -0.460570, -2.994749, -1.577236, -0.323091, 1.105102, -1.486310, 0.160474, -0.957567, 0.238647, -0.401481, 1.432569, 0.710533, -0.554321, 1.213134, 1.846723, -1.439332, 0.128210, 2.619654, 0.351559, -1.153459, -0.410734, 1.109101, -0.533198, 0.350223, 0.430851, -0.982769, -0.609022, -0.522238, -0.181879, -0.459462, -0.213042, 0.142233, 0.445944, -0.789727, 0.721732, 0.917974, 0.244496, 1.145396, -2.108143, 0.193287, 0.551993, -2.250021, 1.201748, 0.716213, -0.027772, -0.580437, 0.715608, 0.196750, -0.851143, -0.354354, -0.847215, -0.505379, 2.311434, -1.452240, -0.859659, 0.149073, -0.011959, 0.247673, 0.742919, -0.853720, -0.164723, 0.966060, -2.186510, 0.341235, -0.460015, -0.183738, 0.573395, 1.611481, 0.487849, -0.149331, 0.076666, -0.816759, -1.125576, -1.069115, 0.119665, 0.487101, -2.070111, 0.113776, 0.149254, -1.227676, 0.739415, -0.402675, -0.823281, 1.107952, 0.642089, -0.383887, -0.207413, 0.679701, -0.662711, -1.606719, 1.148310, 0.587015, -0.294478, -1.032606, -0.808599, -0.676572, 0.599677, 1.284897, 0.072044, 0.537082, 0.677495, -0.841507, -1.741538, -1.199398, -1.070768, -0.381516, 0.693988, -0.246137, -0.051508, -0.442244, -1.691891, 0.104943, -0.420289, -1.544920, -0.425850, 0.648355, -0.538390, -2.096101, 0.105226, 0.027247, 0.650452, -0.307101, 1.047194, 0.746077, 1.012907, -0.396122, 0.694341, 0.743929, -1.091642, -1.909330, -0.467969, 0.402921, 0.844133, 0.546082, -0.291221, 0.645099, 0.375578, 0.090473, -1.156305, 0.909478, -0.344901, -0.915072, -2.355663, 1.861707, 0.170117, -0.345389, 1.611302, -2.380288, 1.357473, 0.907826, -3.133594, -0.119388, -2.195933, 0.699139, -0.155774, -0.943318, -0.112979, -0.345713, -0.634705, 1.501585, -1.081227, -0.081979, -2.046712, -0.880067, 1.731963, 0.432684, -2.039904, 0.167068, 0.341228, 1.122631, 1.662312, -0.441109, 1.167886, -0.092796, 1.101570, 1.728996, 1.244415, 1.014655, 0.213812, -1.410235, 1.303385, 1.574433, 1.140175, -2.336849, 0.619250, 1.743942, -0.284411, -1.236207, -0.177656, 1.440527, -0.071437, -0.997129, -1.096870, 0.251441, 1.087029, -1.145252, 0.653924, -0.166977, -1.180721, 1.442425, -0.148463, 0.327964, 0.626723, -1.094068, -1.684336, 2.216597, -1.607166, 2.419754, -0.162077, 0.432021, 1.336056, -0.083807, -0.189344, 2.150855, -0.494389, -0.073852, -0.083455, 0.761674, -0.927206, 0.831074, 0.103302, -0.717190, -0.205294, -0.896933, -1.047605, 0.776190, -0.089770, -0.851187, -0.612422, 0.209004, 0.664630, -0.463832, 0.705006, -1.380867, -0.598404, 0.618253, -0.249423, -0.287642, 0.358870, 1.447476, -1.891968, -1.251815, -1.265438, 0.868030, 1.151141, 1.387998, 1.276075, -0.161557, -0.302295, -0.781948, -1.090143, -0.907986, 1.153903, -0.158851, -2.025944, -1.752189, 0.563785, 0.832849, -0.281860, -1.422815, -0.250152, 0.390725, -0.707259, -0.255062, -0.434000, -1.832353, 0.054505, -0.874437, -0.694879, 1.724513, -1.158847, -0.799266, 1.509151, -0.321243, -1.023412, 1.458976, 0.982309, -0.224010, -0.504862, -1.925597, -0.893189, -0.089461, 0.801045, 0.786735, -1.132107, 0.191275, -0.143792, 1.279276, 0.453176, 0.150880, -1.473621, -0.487389, -2.148995, 1.275446, -1.067105, -0.194897, -0.992779, -1.082810, 0.943347, 1.304245, -0.036478, -0.003345, 0.665198, 1.935720, 1.278178, -0.040036, -0.710101, -0.749596, 0.553681, -0.745719, 0.417474, 0.520062, -1.351514, 0.427031, -0.546031, -1.492872, 0.267286, -0.504399, -1.000964, 1.273063, -0.651205, 1.030016, -0.782948, 0.497383, -0.183553, -0.401096, 1.110661, 0.872114, -0.170100, 0.282692, -0.795149, 0.332732, 0.643477, -0.249532, 1.635548, -1.044594, -0.295628, -0.920430, 2.626061, 0.487947, 0.211885, -1.296393, -1.072465, -0.203752, 0.170502, -0.088814, -0.801740, -0.737554, 0.208035, 0.940708, 1.305298, 1.212413, 0.782284, 0.230158, -0.389325, -0.566361, 0.430025, -2.453650, -0.388663, 1.011179, -0.208083, 0.858045, 1.731164, -0.202383, 0.693175, 0.927188, 0.628455, 0.986906, 0.191767, -0.140978, -0.154277, -0.997423, 0.096075, -0.183515, -0.681884, 0.713886, 1.265605, -0.525586, -0.278860, -1.008217, 1.654861, -0.021838, 0.172042, -0.755139, -0.037302, -0.154158, -0.337038, 0.273891, 0.263120, -1.773232, 1.110118, 1.178350, 1.746639, -0.104237, 2.031744, 0.165341, -0.379496, 0.501640, -0.559309, 0.275472, 1.567459, -1.102631, 0.633580, -0.930758, 0.241228, 1.100809, 0.442949, 0.599054, 0.663753, 0.186169, 0.292533, -0.423256, -0.648971, -0.136168, -0.569410, 0.031565, -1.150596, 0.595486, 0.742416, -0.546966, -1.677502, 0.951948, 1.031747, -1.099773, -1.728090, 0.585113, 0.631279, 1.600641, -0.305789, 0.437371, 1.932847, -0.537977, 0.931596, -1.838440, -0.015818, -1.622449, -0.040143, 0.362594, -0.890436, 0.426689, 0.636668, 2.481544, -0.807978, -0.110130, -1.141717, -0.094556, -0.179840, 0.354897, -0.194146, -1.837641, -1.313678, -0.445775, -0.028980, 0.800842, 0.221583, -1.936449, -0.961818, -0.846018, -0.335061, -0.720752, 1.514343, 0.269006, 0.862937, 0.192483, -1.216576, -0.956318, 2.885808, 0.765089, -0.311713, -0.945407, -0.545809, 0.725385, 1.093667, -0.061274, 1.711193, -0.433426, -0.215971, -0.543020, 0.724515, 0.403210, 0.869631, 0.157949, -0.002083, -0.464703, 0.199242, -1.738906, -0.171850, 1.478736, 0.750696, -1.278336, -0.344337, 2.085411, -0.777218, -0.750230, -2.526896, -0.429946, -0.038312, -2.605750, -0.614735, 0.938820, 0.947402, -0.577474, 0.556643, -0.798407, 0.565714, 1.477476, -0.461781, 1.676078, -1.114238, 0.069705, 0.037606, -0.657933, 1.054590, -0.808508, 1.104857, 1.529753, 1.102995, -1.080505, 0.155131, 0.142506, -0.663007, 1.160230, -0.250282, -0.522495, -3.863022, 0.065601, 1.898197, 1.294152, 0.824046, -0.446956, -2.238514, -1.023182, -0.950372, 3.760072, 1.253797, -1.685765, 1.360150, -0.572155, -0.529619, 0.015218, 1.592276, 0.533458, 0.537726, -0.396657, 1.090247, 0.574728, 1.641131, 0.244294, -0.764788, -0.294207, -0.429231, 2.160279, -0.585587, 0.008594, 0.410570, 0.459396, -2.319650, -1.987478, -0.200157, 0.084520, -0.451076, 1.142606, 1.389749, 0.199081, 0.354148, -1.355257, -0.458227, 0.033238, 0.129894, 1.666640, 1.995953, -0.302551, 1.051346, -0.520094, 0.004230, -1.607123, 0.429005, 0.270415, 0.314175, -0.524505, -0.298218, -0.391555, 1.056179, 0.443406, -1.532320, -0.053713, 0.526718, -0.159284, 1.742543, -1.159388, -0.559781, -0.422273, 1.102554, -1.729312, -1.581294, 1.895429, -0.114143, 1.484401, -0.020270, 1.242298, 1.651455, 1.336936, -0.201987, -0.751444, 0.261352, -1.025556, 0.721701, 0.301649, -0.189576, 0.339008, 1.021007, -0.467743, 0.199743, 1.331981, 0.742519, 0.702157, 1.874298, 1.026808, 0.599412, -0.185421, 0.589504, -0.127130, -0.603353, -1.266549, 0.114474, 0.456255, 0.999890, 0.660022, -0.351638, 0.974813, 0.227392, -0.426923, 0.188976, 1.035330, -1.286124, -0.632550, 0.065661, -1.141877, 0.439256, -0.411609, 0.438568, 0.245852, 0.154813, 0.786368, -1.666565, 0.101667, 0.726125, -0.258098, 1.430828, -0.973455, -1.164799, -0.804723, -1.660878, 0.724905, 0.003622, 2.518405, -0.821849, -1.203569, -0.920241, -0.347009, -0.429517, -0.218684, -0.363691, -0.676136, 0.849115, 0.253290, -0.167034, -1.677462, -0.943318, -0.059456, 0.981061, 0.228082, -0.498045, -0.011386, 0.543529, 0.675897, -0.602654, -0.332944, -1.684504, -0.138444, -1.398646, 0.695943, 1.384534, 0.048922, 0.052279, 0.445894, -0.007716, -0.948554, 1.005421, 0.110103, -0.339983, 0.308759, 0.005576, 1.540160, -0.661971, -1.930171, 1.070834, 0.552744, -0.086532, -1.003284, 0.964403, 0.368057, 1.557855, -0.683712, 0.968482, 1.560189, 0.205528, 1.204257, 0.168757, -1.089900, -0.166008, -0.276822, 1.288948, -1.579818, 1.106215, 1.764589, -0.735160, -0.513925, -0.332291, -0.432862, 0.538629, 1.970195, -0.503093, 1.825510, -0.851094, 1.043372, -0.786157, 0.195709, -1.106888, -0.862172, -1.161158, 0.194246, -1.286416, 0.268817, 1.319611, 0.258319, 0.805095, 1.427110, 0.148204, 0.733514, -0.012265, -0.129145, -1.583334, 1.019218, -0.673775, 0.912491, 0.455014, -1.683563, 0.313058, -0.788071, -1.151111, 0.137989, 0.279501, 0.131515, 0.681638, -0.811328, 2.154928, -0.920189, -0.576842, -1.868773, 1.916564, 0.892843, 1.188732, -0.495584, 0.574613, -2.128337, 0.948332, -1.652525, -0.344080, -0.925831, -0.476208, -1.295742, 0.825655, -0.219038, 2.336519, -0.542141, -0.879528, 0.998332, -0.885338, -0.410581, 1.157868, 0.887529, 0.546793, -0.119927, 0.556263, 0.603421, 2.098276, 0.234344, -1.218359, -0.228490, -1.439272, 1.276009, 0.150508, -0.488764, -1.188981, -1.618396, 2.034557, -0.311839, -1.789165, 0.714627, -3.241854, 0.605791, 0.649312, 0.614132, 0.684677, -0.899841, 0.057542, -1.937206, -1.183239, -0.593327, 0.614598, 1.041341, -0.496205, -1.751677, 1.977614, 1.683848, 1.516063, -0.328396, -1.696270, -1.209620, -0.284087, -0.382491, -0.413478, 0.141751, 0.218658, -0.626540, 0.656667, -0.912117, -1.735687, -0.704264, -0.681995, 0.614389, -0.210368, -1.721584, -1.634176, -0.041366, -1.080553, 0.401964, -1.358046, 1.129168, -0.645780, -0.547942, -0.197578, -0.119129, -0.021959, 0.975386, -1.820966, -0.545574, 0.729146, -1.524926, 0.214967, -0.703118, 0.260650, 0.355321, 1.967348, -0.479549, 0.232670, 0.609636, 0.651773, -1.856775, -0.314928, 0.490626, -0.490476, 0.065247, -1.093362, -1.710783, 0.479643, -1.266125, 2.916858, 0.395481, -0.469633, -0.005751, -1.271365, 0.362709, -0.140248, -1.805602, 0.613691, -0.759143, -0.140610, 0.267943, -0.206594, -1.412791, 0.624664, 0.547263, 0.373155, 0.709517, 0.176978, 1.641680, 2.020586, 0.466355, -0.906755, -0.071427, -1.089906, -0.029639, 0.363439, -0.198020, -0.127079, 1.956164, 0.440522, 0.513886, -1.796162, 0.837763, 0.109987, 0.075265, 0.423366, 0.523431, -2.338522, 0.063965, -0.154354, -0.488166, 0.384259, -1.091778, 0.631721, -1.660728, 1.851979, 0.300069, -0.540797, -1.068448, -0.619603, 0.179161, -0.921241, 2.601532, -0.100220, 0.764467, 1.940143, 1.481879, -0.411336, 0.400048, 0.445539, -0.642727, 1.005939, -0.559863, -0.107485, -1.133241, 2.248171, 0.148766, -0.050439, -0.763270, 1.173710, 0.543949, 0.719926, -1.380532, 1.455724, -1.954754, 0.191885, 1.047383, -0.055181, 0.067765, -0.193047, 0.685021, 0.791924, -0.063495, 0.956633, 0.333739, -0.618674, -1.535626, 2.004221, 2.568413, -0.702948, 1.907915, 0.213514, 0.074934, -1.443073, 0.588510, 1.238695, 1.949012, 0.524589, 0.137723, 2.291528, -1.002643, -2.020133, -0.173899, -0.287366, 0.633437, -0.326582, 0.301225, 0.882578, -2.893429, -1.463340, 0.979887, -1.557021, 0.197504, 0.058903, 0.760729, -0.480202, -0.534622, 0.610186, 0.962622, 1.511943, -0.482532, -0.261485, -0.071230, 0.168140, -0.061168, 1.350243, 0.618477, 1.804237, 0.257283, -0.128231, -1.728029, 0.200455, 1.200062, 0.328923, 0.432758, 0.105380, -1.131069, -0.136168, -0.069884, 0.404249, -0.408784, -0.255515, 1.395448, -0.281421, 1.655929, -0.414393, 0.066142, -0.601646, 0.783763, -0.637032, 0.350136, 1.325956, -1.455285, -0.428905, -0.317900, 0.552004, -0.102692, 2.083838, 0.934837, -0.280961, 0.063432, -0.423507, 1.076833, -0.416788, -0.502943, -0.230439, 1.904904, -0.145474, 1.116579, 0.289299, 0.712281, 0.220929, 0.723025, -0.960970, -0.191319, -0.237056, 1.936813, -0.391569, 0.608243, 0.390187, 0.220902, 0.352282, -0.044823, -1.197997, 0.005569, -1.655990, -1.963922, -1.197090, 1.120382, -1.478556, -0.608600, -0.587427, 0.283057, 0.087609, 0.567818, 0.418145, 0.273816, -0.475406, 0.802629, 0.663746, 1.292739, 1.943314, 1.728960, 0.463592, 0.592385, 0.306311, -0.239121, -0.331913, 0.753530, 1.341508, 0.045289, 1.456249, -0.112073, 0.872989, -0.525661, 1.492156, 0.512362, -0.395138, 0.921375, 0.519459, -0.392125, -1.082873, 0.338398, -0.101418, 0.087493, -0.858884, 1.320164, 0.138540, 0.899533, -0.602230, -0.395940, 0.053647, -0.406491, 0.260205, -0.280444, -0.410601, 0.303662, -0.158068, 0.123977, -0.049745, 0.661406, 1.133147, 0.301529, -0.283301, 0.086445, 1.666444, 0.143803, 1.704894, -0.475500, -0.366486, 0.211542, 0.567884, -0.129356, 1.435244, 0.020772, -1.131476, -0.089181, -0.309321, 0.077059, -0.672087, 0.572843, -0.163259, -0.978702, -1.446526, -0.625613, -1.318081, -0.721298, -0.680078, 1.847799, -0.418294, -0.602874, 1.158229, 0.769679, -0.606297, 0.876627, -1.911764, 1.578822, 0.407763, -0.198504, 1.127478, -0.601356, -1.128093, -0.897507, 0.055020, -0.695643, 1.936208, 0.163776, -0.369722, 0.344532, 0.849090, -0.630274, -2.283234, -0.053299, 1.062097, 1.169596, -0.932489, -0.064371, -2.070770, 0.928290, -0.180465, 0.217732, -0.992157, -0.635478, -0.252806, 0.405256, -0.199592, -0.824726, -0.154464, -0.119519, -1.748641, -1.031692, 0.703265, -1.448966, 0.341707, -0.260722, -1.580059, 1.958296, -1.667620, 0.232777, -1.208156, 0.596980, 1.496026, -0.153971, 0.835032, -1.623652, -1.084719, 1.161023, 0.818291, -0.194181, 0.883238, -0.164320, -0.234377, -1.062249, 1.789353, -0.455813, -0.767958, 1.205597, -1.272696, 1.768498, 1.000642, 0.492871, 1.984776, 0.446479, -0.718084, 1.936141, 0.187449, 0.227080, 1.082278, 0.178257, -0.727150, 0.152735, 0.588750, -1.347089, 0.267602, -1.589438, -0.242205, -0.348296, -0.447812, 1.332005, -0.109987, 0.713350, 1.959988, 0.886860, -1.367260, 0.315042, -0.217964, 2.561946, 1.039628, -0.648836, -1.121465, -0.972995, 0.898369, 0.700193, 0.015627, 0.463744, -0.852181, 0.437625, -0.115093, -1.762941, -1.951170, -0.403873, 0.692655, -0.592486, 0.675800, 0.695697, -0.808606, -0.666883, 0.876165, 1.473400, 0.383658, 0.018461, 2.639049, -0.589383, -1.338700, 0.017713, -0.211562, 0.906365, 0.668441, 0.775710, 1.200767, 0.430085, 1.031541, 0.051452, 0.433621, -0.046206, 0.244739, -1.009615, -0.274276, -0.150335, -0.817762, -0.078315, 0.678624, -0.460352, -0.995724, 1.225914, 0.245840, -1.384803, 0.158079, -2.820754, -1.238687, -0.259432, 0.556390, 0.430531, -0.764754, -0.008340, -0.218249, 0.378924, -1.186254, -0.370347, 0.356590, -0.541068, -1.056414, -0.178890, 0.172732, -0.220900, 0.057519, 0.052452, -0.880049, -1.181674, -0.359520, -0.319118, -1.826494, 1.781046, 1.167557, -1.682008, -2.172502, 1.150669, 2.226176, 1.164139, 0.016495, 1.215782, 0.756317, -0.134769, -0.556952, 1.902740, 1.371228, -0.049627, 1.394635, 2.187705, 0.215410, -0.711373, -0.317358, -0.042612, -0.628702, 1.252396, 0.590713, -0.509766, -0.357739, -1.272660, 0.614505, -0.785269, 1.686853, -0.817846, -0.245070, -1.540112, -0.638239, -0.140424, 1.447841, 0.180816, 0.570393, 0.732703, -0.645269, 0.045402, -0.816230, -0.157526, 0.356127, 1.551203, -0.054277, -0.514000, -0.061724, 0.746154, 0.066489, 0.281339, 0.753759, 0.644522, 0.636840, 0.951156, -0.867456, 1.764249, 0.065511, 2.010101, 0.461107, -0.422423, 0.115251, -1.428685, 0.066474, 0.780328, 0.982491, -2.252636, 1.380864, 1.385895, -0.585753, 3.060201, 0.495925, 0.257784, 0.317770, -0.724218, -0.027689, 1.005678, 0.887670, 1.887434, -0.769505, -1.215669, 0.340487, 1.799093, 0.871864, -0.661876, 0.071821, -1.227728, -0.622969, -0.357377, -1.978369, 0.303017, -0.239514, -0.084570, 0.116498, 2.666832, -0.448812, 0.804166, -0.023746, -0.507447, 1.118932, -0.347776, -0.073723, 0.740973, -0.336018, -0.549698, 0.568777, -1.881742, 1.239304, 1.367368, 0.702300, 0.272692, -1.077847, -1.121986, -0.017198, 2.111832, 0.526122, -0.580326, 0.025489, 1.342631, 0.065291, 0.656574, -0.218764, 0.626640, -0.116426, -0.834598, 0.547881, 0.968269, 0.166072, 0.674785, 1.209617, 0.274679, 0.751307, 0.964807, 1.228521, -1.255558, 1.084980, 0.019804, -1.449037, 1.159229, 0.954614, 0.092146, -0.280054, -0.519465, -1.926053, -0.061965, 0.169230, 0.850119, 0.519686, 0.372584, -1.370726, -1.197251, -1.824408, -1.072567, 1.134980, -0.503332, 0.829760, 0.133400, -1.139958, -0.655918, 0.007764, -0.278091, -0.668253, -1.296406, -0.142673, 0.277825, 0.792285, 0.246248, -0.983226, -0.497304, 0.063856, -0.729541, -0.515812, 0.381771, -0.128081, 1.189037, 0.543374, 1.755209, -0.659257, -0.156564, -1.219527, -0.748285, -1.414362, -0.206548, -0.768475, 1.753264, 0.433693, -0.456829, 1.305124, 0.944325, -0.304434, 1.567057, 0.389593, -0.805715, 0.288141, 0.001073, -0.866277, 0.856254, 1.005045, -0.575004, 1.255241, -1.267135, 0.827891, 0.627456, 0.290053, -1.751737, -0.228863, 0.877419, -1.028292, 0.207357, 1.051466, 0.473822, -0.350145, -0.227565, -0.529510, -0.163023, -0.875734, 1.733327, 1.450800, -0.170262, -1.058933, -0.907097, -0.141974, -0.458068, -0.519686, -0.325724, -0.745580, -0.534122, 1.485114, 1.081691, 0.275739, -0.601219, 0.769657, -0.416320, 0.142507, -2.762656, 1.144743, 1.180477, 0.181053, 0.074636, -0.796548, -0.186655, -1.881362, -1.085970, -0.509258, -0.606819, 0.938280, 0.124097, -0.373066, -0.661267, 1.230995, -0.385835, -1.383469, -0.035172, 0.219884, -0.257441, -1.043364, -0.169221, 1.232250, 0.528677, -0.353701, 1.476772, 2.518705, 1.523314, -0.769814, -1.381941, 0.068797, 0.872599, 0.021330, -1.554189, 0.174941, -0.817998, 0.192949, -0.193834, 1.352635, 0.126426, 0.541882, -0.822730, 0.473513, 0.926315, -0.320130, -0.254830, 0.755312, 0.361027, 0.196379, 1.042954, 0.904753, 0.696622, 1.640117, 3.010218, -2.193397, 0.534677, -0.772548, -2.197632, -1.020278, 0.407861, 0.414727, 0.042747, 0.139400, 0.735074, 0.453214, -0.200430, 1.245677, 0.734763, 1.204037, 1.591414, -0.335526, 0.194340, -0.779917, 0.883076, 0.049662, -1.339622, 1.806029, -0.075693, -0.450085, -1.486220, 0.098281, 0.205562, -0.621085, -0.503952, 0.351056, 0.194712, -1.131180, -0.063038, 2.202519, 1.897910, 0.037346, -0.961491, 0.250592, -0.583878, 0.217716, -0.096137, -0.613621, -0.436752, -2.161181, 0.331355, 1.346340, 0.716746, -0.834276, -0.333817, 0.204897, 1.152756, -0.567320, -0.247394, 0.010408, -0.114000, 0.099380, -0.872770, 0.278929, -1.660458, 0.989818, 1.567889, -0.844155, -1.212154, -0.085480, -0.273551, -2.041399, 0.660285, 1.663567, 0.054955, 0.855375, -0.587682, 0.409303, -1.572726, -0.388262, 1.008047, 0.130382, -1.128315, -1.155455, -0.916014, 1.614258, 0.320916, -1.448536, 1.034356, 0.978944, -1.461521, -2.289691, 1.578304, 0.420726, 0.891065, -1.493227, 1.011295, -1.078855, 1.048173, 1.239733, 0.640246, 0.227257, -0.257930, 0.478270, -0.433540, 1.573823, -0.065773, -0.416057, -1.590933, -0.450791, 0.046318, 0.445231, -0.215918, 0.151527, -0.237031, -0.494039, -0.164976, 0.924101, -0.206761, 1.449285, -0.427534, 0.632189, -0.247537, -1.298990, -1.342565, 1.100166, 1.377972, -0.356412, 0.637115, -1.091612, -0.245056, -0.362218, -0.200866, 0.091204, 0.544847, 1.106568, 0.507441, 0.827890, 1.258804, -1.941600, -0.881314, 0.527156, -1.086383, 0.271413, -0.901657, 0.696029, 0.417992, 0.979525, 1.042010, -1.030698, -1.874807, 3.398919, -0.641428, -1.746851, 2.144200, 0.192693, 0.571218, -1.680415, -0.052169, -0.248896, -0.306711, 0.863894, -0.523245, -0.196574, -1.166822, -2.152000, -0.149223, -0.228715, 1.210455, -1.129504, -0.704782, 1.341994, 0.954814, -0.702368, 0.981207, 0.504292, -0.347149, -0.412695, -0.054337, -0.024363, -0.988587, -0.573520, -0.144234, -1.464112, 0.813837, -0.076591, -0.411887, 1.149100, -0.962143, 0.430304, 1.755473, -0.214532, 1.147916, 1.014250, -0.906121, 0.475568, 0.498543, 0.085289, -0.700405, -1.309766, 1.146371, 1.108562, 0.612347, -1.180042, 0.370103, -0.507015, -0.293970, -0.186250, -1.140048, -1.273633, -0.168196, -2.000909, -0.451467, -0.100563, 0.279401, 0.849988, -0.013809, 0.248252, 0.832523, 2.201352, -0.740547, 0.760130, 0.314832, -1.518040, 0.466491, 1.268121, 1.333187, 0.623572, 0.253644, -1.829596, -0.245294, 0.458871, -0.980105, -1.471228, -0.376917, -0.297523, -1.094802, -1.839626, 1.981950, 1.287344, 1.422106, 1.168553, 0.237041, -0.859686, -0.631022, 1.334355, 2.119022, -0.707684, -0.249415, -1.200882, 1.242370, 0.049691, -1.020185, 0.122966, -1.275383, 0.957110, 1.405397, 1.703356, 0.882804, -0.089679, -0.877427, -1.109126, 0.380792, -1.685032, -0.033966, -1.091904, -0.138151, 1.009477, -2.220388, 0.032645, 0.544454, -0.599903, -0.907719, 0.567989, 0.269712, -0.513824, -1.126466, -0.271517, -1.188455, 0.936433, 1.120812, 1.377916, -0.276338, -0.026779, -0.154409, 1.794437, 0.117785, -1.227497, 0.165788, 0.396939, 1.903204, 0.096561, 1.512436, 0.040895, -0.146897, 0.741428, -0.028302, -0.170163, 1.651506, -1.360639, 0.537423, 0.437283, -0.278803, -1.324650, -0.976932, -0.276450, -0.978670, -1.976231, 1.193017, -0.752801, 0.088483, -0.563669, 1.415742, 0.383571, 1.978561, -0.810498, 2.032773, -1.256114, -0.723276, -0.181050, 1.213796, 0.163981, 0.734518, -0.225810, 1.000340, -2.509578, 2.372815, 0.309886, -1.332610, -0.277844, -1.120238, 0.207199, -0.322332, 0.877200, 0.668735, 1.183866, -0.383187, 0.034996, 0.021170, 0.395998, -2.275283, 0.600536, -0.490011, -0.860737, -1.934725, 0.763329, -0.036843, 0.117915, -0.427276, 0.138674, 1.466570, 0.666265, -0.708103, -0.053743, 1.731860, 3.368065, -0.186848, -0.849061, 0.128535, -0.181701, 0.645400, 0.472349, -0.756277, 0.361928, 1.036846, -0.245113, 0.800314, -0.030196, -2.445163, -0.609551, -1.066292, -0.639986, -0.060376, 1.058545, 1.555088, -0.144319, -0.888315, 0.803384, -0.084323, 2.055458, 0.405981, 0.815759, -1.047926, 0.517240, 0.377259, -0.946853, -0.504865, 0.209505, 2.288201, 0.173619, 0.497703, -1.621674, -0.752915, 1.134102, 0.544574, 0.432113, -0.943979, -0.186731, -0.706785, -0.081770, -1.146737, -0.788218, 1.182414, 0.663943, 0.008436, 0.370637, 0.191173, 0.497074, 0.609104, -0.794619, -2.050091, 1.608134, -0.010504, -0.630989, -0.293492, -0.788311, 1.608822, -1.264485, 0.378428, -1.461977, 0.870693, -1.323739, -2.027706, -0.270420, -0.020569, -0.094163, 0.604453, 0.514551, 1.309150, 0.300110, -0.132355, -1.037283, -0.601923, 1.373913, 1.836320, -1.925639, -0.447010, -1.165429, -0.575455, -0.654843, 0.222102, -1.637068, -0.386336, -0.062709, 0.469046, 0.360834, 0.885365, -1.140781, -0.660643, 1.349843, -1.142633, -1.573966, -0.581078, 0.203327, 0.173475, -1.543451, 1.253947, -2.360781, 0.052113, 0.054256, 1.489929, -2.319850, -0.875172, 1.052834, -1.168659, 1.203849, 1.873580, -1.304988, -1.195347, 0.074933, -0.819237, 0.225344, 0.878967, 1.709015, 1.049806, 1.288809, -1.032700, 0.086863, -0.946706, -0.818545, 0.872467, -0.237770, 0.155820, -1.304577, 1.636670, 0.151133, 0.967993, 0.110881, 0.150877, 1.484445, 1.121276, -0.118021, 0.608817, 2.357328, -1.016401, -0.469376, -0.550390, -0.409004, -1.288844, -0.022064, 1.322211, -0.179143, -0.222284, 0.297379, -0.227155, 0.767312, 0.742179, -0.178157, 1.907347, -1.488104, 1.752610, 0.309048, -0.687354, -1.591249, -0.066197, -0.632987, 0.156538, -0.092357, 0.657221, -0.968431, 0.013441, 1.566867, -0.779775, -0.102937, 0.187588, -0.239708, 0.514408, -0.892555, -2.006233, 1.823657, -0.516750, -2.148337, -0.790337, -0.606263, -0.473256, 1.168875, -0.090796, -0.455657, -1.093990, 1.394264, -0.037004, -0.973671, -0.703020, -0.391457, -0.883238, -0.865456, 0.194524, 0.277050, 0.197426, -2.719405, 0.999210, -1.911888, 0.768931, 0.893925, 0.798184, -0.483811, -0.109018, 1.789914, -0.732209, -0.197841, -1.148164, 0.600628, -1.104373, 0.493309, -0.578877, -0.014371, 0.244305, -1.305085, 1.323745, -0.604934, -0.431943, -1.869939, -0.342695, 0.273983, -0.637892, 0.625504, 0.060483, -0.375854, 0.481039, -0.465637, -0.493322, 2.078899, 0.965049, -1.873762, -1.398574, -1.103456, 0.023818, -0.048828, 0.499922, 1.103808, -0.407019, 0.234889, -0.290098, -0.280004, -0.255307, -1.155633, 1.745537, -0.877842, -0.153193, 1.243263, 0.414363, 0.235606, 1.926401, -1.345772, -1.537519, -0.164772, 1.319398, 0.237318, 0.387374, 0.156613, -2.544656, 1.487631, 0.696228, -0.631754, 1.044520, -0.405275, 0.442023, 1.095049, -0.476201, -0.765776, 0.969635, 0.581589, 1.887556, -0.774355, -0.087189, -1.963782, -1.440028, 1.664002, -0.453721, -2.270548, -0.133651, 1.859609, -0.091845, -0.303762, 1.874308, -0.532028, 0.968764, -1.352737, 1.735034, -1.853280, -0.311987, -1.361894, 0.162358, 0.843325, 0.860413, -0.027289, 0.627408, -0.435320, 0.282668, 0.048371, 0.703496, 0.742708, 0.124144, -0.204005, 0.829737, -0.612569, -0.464114, 0.937625, -0.369567, 2.200452, -0.926200, -2.153710, -0.903290, 1.360621, 0.382107, 0.161709, 0.122960, -1.003582, -0.105325, -0.923724, 0.092264, 0.224534, -1.563664, 0.824365, -0.955211, 0.363359, -2.580325, 0.973050, -1.143877, -1.238295, 0.763985, -1.921105, 0.683867, 1.187746, -0.038994, -0.178769, 0.315576, -2.251306, 0.634587, -0.031517, 0.665309, 0.586579, -0.391361, 2.723842, 0.173339, 0.870107, -0.129691, -1.586291, 0.012321, -2.054189, -1.348105, -0.047760, 0.648424, -0.617658, -0.555565, 0.269593, 0.378318, -0.771060, -0.035391, 0.553282, -0.554301, 0.189406, 0.020271, -0.363177, -1.372483, 0.136119, 0.310903, 0.536777, -0.664214, 0.266679, 1.377958, 0.951877, -0.505270, 0.966229, -0.165921, -0.678581, -0.292191, -0.452764, -0.471618, 1.581310, 2.239947, -0.475507, -1.166860, -0.226614, 0.330568, -0.599378, -1.029070, -0.740106, -0.991834, -0.838594, -0.286063, 0.087952, -0.578373, 1.139414, 1.418043, 0.528983, 0.813993, 0.517582, -0.440381, 1.033115, -0.499338, 1.714287, -0.184252, 0.410220, 0.155704, -0.087856, 0.197838, -0.204555, -2.190064, -0.393011, 0.180747, 1.506584, 0.310229, 0.209610, 0.208258, 0.920001, -1.320895, 1.235602, 0.875701, 0.506555, -1.510092, 0.536531, -0.756404, -0.366492, -1.553902, 0.671268, 2.275665, -1.315565, -1.990081, -2.434534, -3.003460, 0.187586, 0.024793, 1.967721, -0.615093, -0.991161, -1.947062, 0.901306, -1.009685, -0.208878, 0.389756, -0.808893, -0.183898, 2.358423, -1.266086, 1.458911, -0.997851, -1.573394, -0.739068, -0.977383, 0.027170, 1.028018, -0.915064, 1.518475, -1.839727, -1.588492, -0.319333, 2.604299, -1.544695, 0.623290, 0.478191, 0.479097, -1.104491, 0.117296, -0.278895, 0.239931, 1.488080, -0.623504, 0.123458, -1.262306, -0.923429, 0.411504, 1.373551, -0.528096, -3.115369, 0.459906, -1.543553, -0.795593, -0.983580, -0.693758, -0.718482, 0.792452, 0.183048, -1.986654, 1.163537, -1.924302, -1.021194, -0.226743, -0.057445, -0.371688, -0.000038, 0.455770, -0.803171, -0.352188, 0.427768, -0.671950, -1.397304, -0.228509, 0.243365, 1.662694, 0.321892, -0.629543, -1.920191, -0.212265, 0.168026, -0.417266, -0.202305, 0.341350, -0.817676, -0.077210, -0.016715, 0.786514, 0.259231, 0.682989, -0.400077, 0.193763, 1.432670, 0.273162, 0.438181, -1.117096, 0.279743, 0.195410, -0.492454, -1.365304, -1.138301, 0.013034, -0.808158, -0.133111, -0.433158, -0.622648, 0.269748, 0.380002, 0.502397, -0.209955, -0.469299, 0.302911, -2.705736, 1.482955, 1.012440, 1.327509, 1.845529, 0.059318, -1.288721, 0.440556, 0.132143, -0.177198, -0.020683, 0.011311, 1.007897, 0.476104, -0.954094, 1.032277, 0.854230, 0.372054, 1.306225, -0.264705, 1.803049, 0.219990, 1.237412, 0.903214, -1.408900, -0.868558, -1.045087, -0.270156}, + { -0.124556, 0.214732, -0.475685, -0.003755, -1.551845, 0.290485, 0.084813, 1.064142, 1.780594, -0.330511, 1.763450, 0.159717, -1.646925, 0.106462, 1.850661, -0.907728, 0.754688, 0.495498, 0.122055, 0.411446, 1.280869, 1.408719, -0.592297, 0.896132, 0.026837, 0.537325, 0.488521, -0.815213, 0.227998, -0.938928, 1.533882, 0.665805, 0.936838, -0.234686, 0.044656, -0.022932, 0.095962, 0.062116, 0.372148, 0.206869, -0.605317, -0.078986, -1.407345, 0.231873, -0.409335, -0.664240, 1.447953, -0.698160, 3.335412, 0.870955, -1.260834, -0.091863, -0.084850, 0.640673, 0.307444, -0.835049, 0.962834, -0.829647, 1.960242, -0.901437, 0.859880, -1.852758, 1.278928, -0.343956, 0.348270, -1.865621, 2.482861, 0.401716, 0.751886, -1.002222, -1.551203, 1.795758, -0.730999, -1.448246, -0.229022, -0.272483, 0.243393, -1.314431, 1.394117, 0.212025, 0.192108, -1.697462, 1.551802, 1.046398, -1.361587, 0.118674, -0.381348, 0.714766, 0.195474, 0.252701, -0.210753, 1.251111, 2.910465, 1.097646, -0.122490, -2.049957, 0.060060, -0.156807, -0.529914, 1.513162, -0.269578, 0.571004, 1.423364, -1.229091, -0.293224, 0.286141, 1.370368, -0.513470, -0.557197, 0.027631, 0.133527, -0.101162, -0.009544, -0.931478, 0.353155, -1.475984, -0.578765, 0.475901, 0.223068, -1.491776, 0.640581, -0.263308, -1.103687, 0.692428, 1.419664, 0.892742, -2.005419, 1.660345, -0.884437, 2.003043, -0.234451, 0.595339, 0.410456, 1.365405, 0.240031, -0.414562, -0.396543, -0.065898, -0.193108, 1.200651, -0.778109, -0.767686, 0.988285, 0.402860, -0.557806, -0.853069, 1.292825, 1.614735, -0.785408, -0.804496, -0.550633, 1.237612, -0.119418, -1.048116, 0.816668, 0.071597, -0.760067, -0.024247, 0.530724, 1.998850, -0.623444, -0.495789, -0.728117, 1.136157, -0.415790, 0.612050, -1.638522, -0.062055, 0.806061, 0.300774, 1.158025, 0.726819, 0.419197, -1.660878, 0.858088, 1.481711, -0.101485, -0.530590, -0.035412, -0.750298, 0.900485, 1.486717, 0.038184, 1.076900, -1.209982, 0.296408, -0.860844, 1.262837, -1.931212, 0.672062, 2.367405, -1.164733, -0.318571, -0.483524, 0.459769, -1.118972, -0.342848, 1.202205, 0.486918, 1.526388, 0.889725, 1.149997, -0.430029, 0.376025, 3.149772, 2.023580, 0.374976, 0.187981, 0.795106, 0.258165, -1.291416, -0.533949, -0.124301, -0.522019, 1.478513, -0.604373, -1.432819, -0.243765, 0.662953, -0.906332, -0.004578, -2.471117, -0.833055, -1.219079, 0.212340, 1.859250, 1.206218, 0.192215, -1.285447, -0.213471, 1.224513, -0.859124, -0.695230, -0.500472, 1.173397, -0.117129, 0.360284, 0.220255, 0.333413, 0.675134, -0.047669, -0.387372, 1.440709, -0.785724, 1.034797, -0.805795, 0.260910, -0.747421, -0.417968, 0.660365, -0.096735, 0.236975, 0.100046, 1.609320, -0.612572, -0.240876, -0.099845, 2.752326, -0.302302, -1.082565, -1.688467, 0.038791, -0.723517, 0.836125, -1.350985, 0.729227, -0.373164, -0.701913, -0.379932, -0.093915, -2.051312, 0.404109, 0.836971, 1.540677, 0.085790, 0.689076, -0.607341, -0.572421, 1.667701, -2.021840, -0.136856, -0.735925, -0.024302, -1.329776, -0.820792, 1.854717, -0.024481, 0.101076, -0.785774, -0.365410, 0.042571, -0.297230, 0.798715, 0.385450, -1.250740, -0.048449, 0.007554, 0.663689, 0.662752, 0.308399, 1.184945, 0.583256, 0.003352, -1.979616, 0.616051, 0.806489, -0.779062, -1.088973, -0.216438, 0.397105, -1.526621, 1.138214, 2.184197, 0.065824, -1.038327, 1.046104, -0.632096, 0.736100, -0.021066, -0.652877, -0.729231, -0.657829, -1.290562, 0.697807, 0.279240, 0.289866, 0.117573, -0.118003, -0.417927, -0.601012, 1.120439, 1.271690, -0.432336, -0.156383, -0.064426, -0.348522, -1.494706, -0.218396, 1.389066, -0.524989, 0.031994, 2.223101, -0.313071, -1.175229, 0.503698, -1.903233, -2.279456, 0.465461, -0.497311, -0.095432, 0.079771, -0.124652, 0.184967, -0.793246, -0.936887, 1.523089, -1.027867, -0.765387, -0.402405, 0.032419, 0.069341, -0.083108, -1.212047, 0.069437, 1.285615, -0.824335, -0.634190, 0.534955, -1.487075, -1.388754, -0.230385, -0.106416, 1.100100, -0.682561, -0.718692, 1.161490, -0.891574, -0.254596, -1.607980, -0.785684, 0.822982, -0.117902, -1.085879, -1.673469, 0.746334, -1.017921, 0.452566, 0.801144, 1.102851, 0.333506, 0.853609, 0.605417, 0.054769, -0.831675, -0.253099, 0.536466, -1.158812, -0.237043, 1.909930, 0.524417, -0.029045, -1.427767, 0.089708, -0.433114, 1.476551, -0.306867, -0.642571, -1.126997, -0.873396, -0.277359, -0.999856, 0.054863, 0.603877, -0.704717, 1.398580, -1.293804, -0.021676, -0.728282, 0.000341, 1.858945, -0.399946, 0.761750, 0.713962, -0.815401, -1.246949, -0.290712, 0.057757, -0.992989, 0.296043, -0.496273, 0.005757, 1.039500, 0.144973, -1.478988, -1.025327, 0.669251, 1.142326, -0.955892, 1.896616, -0.251807, -1.062911, 0.775867, 0.899093, 0.734023, 0.274711, 0.331019, -0.318289, -1.105881, 0.274094, -0.659667, 0.814517, 1.101066, -0.420062, 0.444412, 1.941795, -0.080213, -0.929138, -0.805259, -0.919051, 1.173050, -0.597020, 1.918823, 0.936452, -0.106886, 1.379318, 0.594719, 0.491022, -0.929728, -0.398663, 1.142565, 0.276807, 1.005901, -0.245142, 1.116563, -1.690943, 0.569288, -1.085292, -0.475897, -0.813621, 2.081917, 1.298205, 0.798231, 0.114789, 0.997470, -1.448101, 1.206036, 1.076599, 1.020118, -0.119822, -1.168915, -0.018358, -0.025953, -0.288002, -1.597011, -1.090315, -0.783672, 0.381058, -0.520627, 0.417752, 0.145083, -0.175108, 0.715159, 1.525393, 1.315036, 0.201650, 0.398830, -1.625843, -0.434306, -0.511978, -1.309002, -1.046297, -1.010623, -0.093374, 0.853805, -1.538929, -1.277129, -0.819305, 0.173539, -0.351919, -0.322774, 1.715311, -1.552179, -1.246247, -0.937346, 0.513066, -1.188081, 0.503276, 1.431313, -0.906037, -1.209430, 1.842265, 0.855947, 0.209670, 0.045423, -0.459216, 1.359160, 1.172179, 0.139677, 0.975699, 0.498079, 0.628391, 1.157151, -1.598262, 0.153501, 0.662128, 0.706682, -0.550672, 0.771564, 0.907013, 1.268376, -0.632004, 0.617584, -0.458430, 2.085585, -0.008046, -0.210887, 0.396583, -0.734302, 0.097747, -1.744962, -0.789943, -0.157987, -0.190494, 0.070852, -0.601011, -0.317571, -0.124127, -1.890930, -0.284864, -0.520676, -1.146291, -0.919355, 0.651292, -1.787168, 0.882431, -0.351980, -2.669798, -0.430740, 0.561496, -0.581550, 0.078186, -0.178902, 0.607134, 0.842264, 0.327635, -1.217835, 0.205561, -1.942389, -0.056853, -0.537946, -2.262090, -0.066176, 1.324403, 1.128981, -1.797952, -0.989625, -1.575181, 0.145158, 1.175949, 1.494624, 1.120458, -0.998547, 1.995705, 1.089385, 0.548776, 0.282457, 1.330262, -0.174400, -0.204203, 0.161817, -0.264929, -0.461986, -1.626783, 0.391523, 0.145890, -1.754169, 0.296589, -0.612268, 0.153805, -0.861908, 1.438167, -0.674448, -0.327895, -2.062997, -0.289202, 1.176646, 0.323835, -0.830045, 1.408956, -0.751730, -0.316489, -0.158235, -0.368825, -0.277708, 0.197704, -0.817506, 0.558676, -1.413840, -0.711814, -0.597066, -0.674612, 0.367378, -0.968266, 0.667102, 1.117752, 1.586125, 1.565250, 0.144219, -0.695463, -0.290525, 2.881412, 0.015000, 0.639978, -1.080645, -0.783334, 0.515186, -1.398020, 0.373036, -2.158046, -0.254884, -0.605621, 0.802108, -0.126641, 0.938277, 1.376617, -0.718748, -0.842720, 0.381600, -1.215405, -0.827983, -0.059611, 0.196732, -1.650873, -0.084782, -0.185829, -0.487551, -0.463072, -0.259181, -0.103362, 0.537078, 0.014879, 1.135703, -2.041666, 1.979608, -1.603868, 1.507785, 0.953596, -0.377685, 2.613216, 0.650664, -0.437154, 0.254299, -0.429017, -0.557572, -1.633633, 0.576717, 0.534072, 1.159335, -0.427657, -1.118196, -0.012284, -0.186427, -0.691040, -0.730078, 0.075365, -1.132984, -0.190870, 0.406804, 0.207879, -2.294693, 2.152850, -0.467270, 0.942535, 0.032904, -1.564979, 0.675052, 1.961251, -0.453044, -0.820623, -0.294431, -0.451907, -0.265416, -0.631487, 1.066984, -0.338139, 0.333483, 0.243287, -0.247070, 1.720912, 0.983091, -0.056447, 0.692842, -1.604852, 0.306966, -1.017264, 0.290449, 0.455763, -1.414400, 0.297050, 0.592006, -0.383773, 0.930126, 1.519644, 0.596109, -1.209475, -1.261013, 1.107478, 0.062156, -1.135464, -0.968872, 0.164482, -0.784653, -0.629053, -0.354562, -0.777726, 0.810718, -0.565584, 1.122523, 1.361012, -2.056448, -0.553321, 0.866706, 0.667344, -0.793330, 0.323302, -0.120487, 0.150663, 1.007660, -0.071390, -0.108765, 0.022239, -0.575841, 0.630777, -0.177022, -1.483497, 0.638667, -1.501063, -0.805663, -0.224633, 0.987011, -0.741495, -0.381262, 0.325782, -0.352854, 0.565832, 0.563500, -0.537951, 2.486304, 0.465521, -0.588733, 0.035477, -0.242992, -0.428474, 0.708396, -0.056116, -1.068553, 0.159806, -0.439672, 0.550554, -2.380432, 1.804097, 0.128071, 0.754179, -0.447299, 0.694061, 0.516008, -0.989336, -2.064580, 0.111212, -0.408785, 1.179455, 1.168253, -0.333812, -2.679116, -1.028988, -0.106062, 1.643627, -0.292608, -0.540806, 1.311380, -0.574682, -0.018146, -1.784798, 1.172512, 1.580119, 0.363252, 0.230218, -0.541092, 0.069216, -0.342713, -1.048313, 0.356980, 0.746783, -0.256746, 0.449411, 1.622351, -0.634571, -0.545241, 0.381035, -0.291517, 0.040134, 0.622269, 1.027205, -1.421924, -1.890758, 1.668177, 1.108259, 0.960238, -0.296446, -0.629126, 1.326619, 1.021395, -2.145787, -0.285352, 0.566308, -1.366336, -0.407285, 1.453667, -0.413106, 0.929902, -0.048213, 0.612840, -1.548366, -0.418754, 0.418942, 0.869369, -0.111274, 0.065392, 0.165834, 0.143857, 0.314177, -0.708972, -1.262740, -0.330130, -1.789362, -0.870849, 1.972676, -1.296305, -0.337860, -0.926449, 0.040697, 0.024703, 1.511723, -0.256754, 0.424117, -2.056355, -0.349122, -0.038793, -0.334562, -0.435336, -0.403743, 0.634943, -0.071141, -0.067210, -0.468274, 0.523411, 1.230742, -0.516104, 0.811010, -0.587272, 0.489719, 0.428672, -0.691886, 0.966198, -1.073430, 0.139791, -0.335730, 0.359905, -0.681301, -0.755568, 0.402569, -2.042570, 0.214874, 0.366972, 1.374920, -2.773028, 1.356821, 0.001218, 0.307316, -1.078310, -1.695454, 1.530202, -0.673198, 0.227762, 0.721745, -0.272509, 1.356354, -0.612329, -1.385841, -0.359150, -1.587610, -2.609899, 0.765939, 0.403686, -1.345989, -0.016400, -0.782035, -0.068772, -0.563583, -1.512323, -0.802373, 0.846235, -0.676507, -0.411770, 1.204343, 0.466326, 2.791710, 0.178031, 1.023895, -0.194968, -1.675175, 0.164688, 0.990177, -0.791173, -0.047906, 0.066020, -1.862855, -1.359542, 0.836239, -0.176627, -2.052211, 1.159254, -0.110586, -0.535847, -0.725505, -0.043446, -0.883788, -0.741774, -0.446175, -1.080935, -0.146795, -0.372000, -0.545105, -0.413078, -0.415851, 0.804739, -1.245653, -1.058451, -0.818105, -0.064762, -1.002594, -0.408039, -0.866596, 0.543270, 0.828634, 0.225722, 0.419858, -1.183411, -0.892608, -0.503698, 1.093961, -0.887446, -0.344446, -0.320414, 0.648191, -0.238688, -0.545827, 0.174564, -1.884116, -0.206660, 2.030400, 1.183137, 2.163397, 0.479257, -0.334608, 1.057730, -0.243829, -1.786532, -0.452534, 2.139789, 1.696456, 2.233223, -0.757544, 0.582066, -0.874874, 0.135934, 1.248448, -1.150499, -1.198146, -0.408667, 0.091871, -2.181645, 0.140551, 0.125460, 0.994109, -0.657229, 1.252808, 1.307662, -2.303020, -0.133937, 2.735802, -1.506595, -0.902908, 0.598781, -0.259200, -0.739598, -0.971033, -0.191418, 1.915108, 0.188066, 0.613548, 0.880680, -0.567797, 1.113599, -0.228490, -0.856571, -0.709118, -0.324824, -0.762390, 1.076884, 1.017765, 0.086270, 1.181267, -2.207183, 0.657843, -0.801405, 1.974467, 1.020810, -1.811095, 0.188050, 0.038996, -0.237017, -0.546838, 0.958459, 0.981209, -1.040830, -0.289389, 0.025209, 0.552407, -0.019490, -0.185065, 0.347340, -0.258149, 0.929790, 1.121788, -0.383434, 1.013352, -1.132277, -1.151446, 0.062418, -0.308587, -0.294004, 0.457512, 0.707404, 1.097272, -0.461449, 0.562656, -0.291580, 2.313274, -0.457785, -0.681476, 1.408637, 0.285265, -1.621723, 0.284824, -0.740783, -1.060114, 0.249114, -1.772057, 0.983641, 0.599315, -1.316473, 1.988788, 1.090292, 1.513413, 0.400976, -0.027280, 0.549917, 0.471572, 1.373071, -0.653361, 0.466708, -0.052620, -0.073322, -0.680658, 0.489331, -1.885395, 1.251539, 0.593031, -1.014345, 0.753572, 0.197509, 0.446290, 1.288177, 1.212358, 0.980768, 0.780476, 0.787523, -0.435219, -0.909224, 1.049510, -0.617111, -0.348352, 1.446409, 0.414974, -0.721153, 1.620298, 0.096506, -1.259982, 0.664118, -0.443832, 1.290849, 1.858972, -0.455368, -1.944236, -0.456144, -0.845723, 1.370862, 0.742908, 1.254573, -0.749793, -0.036196, 1.755142, -0.685936, -1.107264, -0.836196, 1.052430, -0.147071, 0.548983, -1.089857, -0.635970, 0.330474, -0.176892, 0.944300, 1.125057, 0.758845, -0.870518, -0.402911, 1.600570, -1.257928, -1.023360, 0.663575, -0.696277, -0.400817, -1.327128, 0.539098, 1.736591, -0.321577, -0.545796, 0.434284, -0.714456, 0.618137, 0.511372, 0.278212, -0.260021, 0.915341, -0.922452, 0.037292, 0.426179, 0.705869, 1.035049, 0.026599, 1.677043, 1.657345, 0.923044, -1.411100, -3.832237, 0.008010, 0.373282, 0.883514, -0.034189, 0.334271, -0.159206, 1.034732, 0.320248, -0.616155, 1.255802, -0.623626, -0.737680, -0.875783, -1.574785, 0.263765, -0.666912, 0.646696, 2.237981, 1.637003, -0.249799, -1.026068, -0.652068, 0.727805, -1.743778, 0.185351, -0.059293, -1.177505, -1.102831, 0.697480, 0.507852, -0.045236, -0.465180, 0.318554, 0.267656, -1.012823, 1.693587, 0.076736, 0.162081, -0.840275, 0.607198, 1.714491, -0.075592, 0.966025, 0.191240, 0.097275, 0.413008, 0.241719, -2.111725, -1.035877, 2.077765, -0.016953, 0.871715, 0.100560, 0.541924, -1.293770, -0.162740, 0.005407, 0.901538, 0.093142, 0.344972, -1.250350, -0.159083, 0.031903, -0.444135, 0.688179, 1.217298, -1.062174, -0.217747, -0.427113, -0.855284, 1.759428, 0.074507, -0.802393, 0.293451, -0.327369, -0.563558, 1.044823, 0.896199, -0.372447, -0.437880, 0.138788, 0.476211, 0.506663, -0.181221, -1.264109, -0.528839, -0.946731, -0.458235, 1.261515, -1.380901, -2.605806, 1.348817, 0.847604, 0.804814, 0.014878, 0.361055, -1.160617, -0.779195, 1.518698, 1.230783, -2.283942, 0.343663, -0.107100, -0.737299, 0.216103, -0.805411, 0.824130, -1.364841, 1.861787, -2.115733, 0.701171, -0.498939, 0.154625, -1.784520, -1.670132, 0.072219, 0.114108, -0.116636, -0.523063, 1.294796, 1.744407, 0.594212, 1.582234, -0.355617, 0.085229, 1.375400, -0.518462, -1.445663, 1.350187, -0.156895, 1.557601, 0.092361, -0.077288, 1.373156, 0.914879, -1.165836, -0.719149, -0.136050, -0.534955, 0.766915, -0.050572, -0.170610, 1.072980, -0.316467, -0.428878, -0.098019, -0.266370, 0.995632, -1.158306, 0.333018, 0.915557, 0.585576, -1.795874, -0.597102, 0.288074, -0.780558, -0.121593, -0.422456, 0.651376, -0.533608, -0.129734, 0.160401, -0.820242, 1.469957, 1.260974, -0.073573, -0.513647, -0.521365, -1.311475, -0.747555, -1.736958, 0.515721, -0.069416, -1.707808, 0.861408, -1.267705, 1.445141, 0.168282, 1.096348, -0.032258, 0.487565, -1.378492, 0.984394, 0.295189, -0.581293, -1.126321, -0.965170, 0.904861, -1.627988, 0.718193, -0.128275, 0.441543, -1.188704, 0.528057, -0.325109, -0.503576, 1.109411, 0.117337, -0.770917, 1.109915, -1.538171, -1.301114, 0.202651, 0.106116, -0.175800, 0.619204, 1.829062, 1.394035, -0.098988, 0.123457, -1.280059, -0.651270, 0.200186, -0.146245, -1.378196, -0.870654, -1.081427, -0.437840, -0.905927, -0.335555, -0.007978, -1.816853, -1.340287, -1.020128, 0.544799, -0.758345, -1.848817, 0.102965, 2.011129, 1.116329, -0.888418, -0.567218, -0.650773, 0.193882, -0.141545, -0.579191, 0.052989, 1.623450, -0.202421, 1.118551, -0.537210, -1.469557, 0.924297, 0.020956, 0.484929, -0.207247, 0.514712, 1.103358, 0.001177, -0.525153, 1.233094, -0.635913, -0.649243, 1.462223, -0.686829, 1.128536, -0.803818, -0.184998, 0.270263, 0.927053, -2.022480, 0.206045, 1.006607, 0.015428, 0.102861, 1.440047, 0.315756, 1.383134, 0.257763, -1.979327, 0.161625, -0.121104, 0.703871, 0.030053, -1.357377, 0.529402, -0.209974, -0.133984, 0.364779, -1.430084, -0.112340, -0.287188, -0.122642, 0.883928, -0.373543, 0.471797, 1.579353, 0.572610, 0.248064, 0.627978, 1.189376, 0.968811, 0.100968, 1.464239, 0.323001, 0.001922, 0.204583, 1.067669, 1.025336, -0.044850, -1.692197, 1.847710, 1.267234, -1.620949, -0.692003, -1.877843, 0.170211, -1.156007, 0.100961, -0.142167, 0.957809, -0.898717, 0.565431, 0.386347, 0.497924, 0.975725, -0.290307, -0.385659, -0.274842, 2.817502, 1.749468, 0.314457, 1.995306, -1.260524, 1.260217, 0.319917, -0.107772, -0.571743, -0.374177, -2.346767, -3.701163, -0.385988, 1.706604, -0.268029, 0.681639, -1.260063, -0.502416, 0.599105, -0.513001, 0.258413, -0.612485, 1.239879, 1.101319, -1.090047, 0.161688, -0.943966, 0.837877, -0.085611, -2.648102, 0.158742, -0.424351, 1.128505, 0.529096, -2.066522, 0.154007, -0.630589, 0.467402, -0.628746, 0.530201, 0.352529, 0.749033, -0.551184, -2.492387, -0.405858, 0.439029, 0.583280, 1.539024, 0.458645, 1.306940, -1.929151, 0.756864, 0.587704, 0.710589, -0.853597, 1.736809, -0.801042, 0.538108, -0.838605, 0.173434, 0.105998, 0.795775, -1.496930, -0.420346, 0.266893, -0.169787, -1.839956, -1.742866, -0.479910, 0.410828, -1.140694, -0.690392, 0.343315, -1.044437, -1.241186, 0.520850, -0.875228, -1.698586, 1.301165, -0.380026, -1.493971, 0.669261, 0.466058, -0.294756, 0.155520, 0.138254, -1.961680, 0.742914, 0.347212, -0.279362, 1.176827, 0.034865, -0.055329, -0.868841, 1.127957, 0.950364, -2.977225, 0.161512, 0.383668, 0.933197, 0.788786, 0.794875, 0.913040, -0.567714, 0.745576, -0.122633, -0.949421, 1.093675, -0.310490, 0.304520, 2.759228, -0.598371, 0.268793, -0.067396, 0.771450, -1.427038, -0.493772, -0.220780, -0.313156, 2.883943, 0.147233, -1.091275, 1.853781, 0.464963, -1.036713, 0.999920, 0.023326, -0.167619, 0.731841, 1.611902, 0.335417, 0.135229, -0.374251, 0.155828, 1.116370, -0.149655, 0.656955, 0.184027, 1.892442, 1.597349, -0.751827, 1.274067, 1.181018, 1.596015, 0.248309, -0.545003, -1.713966, -0.951092, -0.359620, 0.778025, -0.694317, 0.679964, -0.749977, -1.126008, -2.398620, -0.279269, -1.550496, -0.192556, 1.427267, 0.828476, 0.936609, -0.465418, -0.073531, 0.443348, 1.176055, -1.584841, -0.896934, 0.024355, -0.048658, 0.856792, -0.111085, 0.405076, -1.192463, -0.027935, 0.790964, -0.926888, -0.310886, -0.448039, -0.516360, -0.604700, -0.094143, 0.333861, -0.311795, 1.131255, -0.176567, 0.797273, 0.229303, -0.397290, 0.695944, 1.479155, -1.558551, 1.967325, -1.095525, -0.847723, -1.137966, 0.605955, -0.445466, 0.978939, -0.152505, -1.055603, -0.143988, 0.771586, 0.726765, 0.919972, -0.012515, -1.341406, -0.016560, 0.670849, -0.863836, 1.551746, -0.519147, -0.191495, -0.196949, -0.566305, 1.616965, 1.051764, 1.122878, 1.896729, -0.967552, -0.621959, 1.250674, -0.141358, -0.286530, -2.305885, 2.397047, 1.234361, -0.000481, -0.001546, 1.645498, 1.646374, -0.214856, -2.177384, 0.332065, 1.128000, -0.880155, 0.749936, -1.245540, -0.436007, -0.722076, 0.932980, -0.510917, 0.947311, -1.020211, -1.237462, 0.676312, 1.169495, -0.961555, -1.150385, -1.467081, 0.090576, 0.412152, -0.345900, -1.943398, 0.231390, -1.126427, -0.110403, -0.299365, -1.343542, 0.070518, -1.213746, -1.948285, -0.430098, 1.104704, 0.570656, -1.316857, 0.166003, -1.330528, -1.699090, 1.020340, 0.017074, 1.121869, 0.585611, 0.126813, 0.444190, 1.384652, 0.182754, 0.841823, 1.394185, -0.472243, -0.823611, -0.823375, 2.398123, -0.225179, 0.338163, 1.272070, -0.844961, 1.283233, -1.215489, 2.793196, 0.488079, -1.467792, 0.070271, -0.649087, -2.207076, -0.303574, 0.812287, -0.471858, -0.669357, 0.949947, -1.000990, 0.196791, 1.231420, 0.494419, -0.494974, -0.611909, 0.382722, -1.150502, -0.399735, -0.856167, -0.195031, 1.976696, -2.609494, -0.384130, 0.643403, 0.096395, -0.279943, -2.064576, -0.466337, -0.200146, 0.114344, 1.426532, 0.000527, -0.752574, 0.894544, -0.655629, 1.109187, -0.866218, -0.516024, 0.640022, -0.518555, 0.145864, 0.773181, 0.225581, 0.290538, 0.747641, -1.174569, -0.647270, -1.980715, -1.972549, -0.373698, 0.579239, 0.561119, -1.520669, -1.395047, 1.013265, 0.027813, -0.156359, -0.665146, 0.573089, -0.821151, 0.137131, 1.277774, -1.033218, 1.145000, 1.533029, 0.322583, 1.632788, -0.167658, 0.052905, -2.018619, -0.481707, -0.659924, 1.949958, -0.841278, -0.435364, 1.154726, 0.978961, 1.112133, 0.520385, 0.040436, 1.461085, -2.511556, 0.338614, 0.787096, 0.120330, 0.620896, -0.451394, -0.522217, -1.424278, -0.059059, 0.891092, 0.057211, 2.103189, -0.052520, 1.399019, -0.121249, -0.099928, 0.449735, -1.077104, -0.934913, -2.111855, -0.220665, -1.437807, 0.971195, -0.495310, -1.418799, 0.374201, -1.857120, 0.622335, -1.736548, 0.778899, -0.004125, -0.508303, -0.050053, 0.012916, -1.389756, 1.838392, 1.003756, -0.557629, -0.329985, -0.081035, 0.932347, -0.810706, 1.062518, 0.224968, 1.405744, 0.745647, -1.997574, 0.252469, -0.353212, 0.633688, -0.695673, 0.324678, -0.570519, -0.986554, 0.604292, -0.489062, 0.168370, 0.344445, -0.726769, -0.072534, -1.160619, -1.276769, 1.144912, -1.164568, 0.394456, -1.273124, 0.810511, -1.145871, -1.171945, 2.025588, 1.719475, 1.054481, 0.757027, -1.269937, 0.228416, -0.156074, -2.262204, 0.173409, -0.407751, 0.103071, 0.475066, -1.050379, -1.510848, -0.238104, 0.284706, 0.504880, 0.770080, -0.136400, 0.572330, 0.829604, -0.040399, -0.391842, -0.168304, 0.403776, 1.012514, 0.037916, -1.052998, 1.533547, 0.036985, 0.262151, -0.306815, 0.190909, 0.763127, 0.948737, -1.653135, -0.650829, 0.607049, 2.328665, -1.036538, -1.915372, -0.335898, -1.054629, -0.647564, 2.064487, -1.103924, 1.190822, -0.034968, -0.206577, -0.720869, 0.933140, 1.398061, 1.194782, 1.721316, 0.421452, -0.261041, -0.426014, 0.383200, -1.022142, -0.682805, 0.763092, -0.052450, -0.052127, 0.398723, 0.486852, -0.543223, 0.730223, 0.586764, -0.917056, -0.073443, -0.391036, 0.913963, 0.126772, -0.849941, 1.107111, -1.193883, -0.732857, 1.199895, -1.015222, 0.221759, 0.226034, -1.232783, 0.589265, -0.327667, 0.321114, 0.346832, 1.019846, 1.221999, 1.537736, 0.803042, -0.356546, 1.009670, 0.200623, 0.889767, -2.181979, 1.500390, 1.840137, -0.583186, 0.648864, -0.836413, -0.640562, -1.197309, -1.256311, 0.841414, -0.307614, 1.164824, 0.747089, -1.266735, 0.747264, 1.717242, 0.441949, 0.339690, 0.853023, 0.248407, -0.426098, 0.875694, -1.268495, -1.375267, 1.529163, -0.680222, -0.851567, 0.229538, -0.979576, 0.654135, 0.265722, 0.129227, 0.202677, -0.603778, -0.237018, 1.867644, -1.902437, 0.277132, 0.481365, 1.502165, -0.189917, -2.100104, 0.717783, 0.008972, -0.319309, 0.604783, 0.442692, 0.463905, -0.849629, 1.099183, 0.655235, -0.660627, 0.116045, 0.693271, 0.220451, -0.392222, 1.044933, 0.371334, -0.447102, -0.068173, -0.926980, -1.061302, 0.845635, 0.139445, 0.724504, 1.246881, 0.328783, 0.150668, -1.082396, 0.648875, 1.645309, 0.864821, -1.265298, 0.288567, -0.457901, -1.460030, 0.182971, -1.053223, -1.042254, -0.805499, 0.402352, -0.096270, -1.419052, 0.260306, -1.912350, 0.464357, 0.028771, 0.291029, -2.028773, -0.767735, -0.649982, -0.738791, 1.202714, -0.074713, 1.098142, 0.027250, -0.050268, -0.637749, 1.384421, 0.338970, -0.015888, -0.119556, 0.613569, 0.203998, 0.954284, 0.382512, -0.716652, 1.126443, 0.905335, -0.229832, 0.574947, -0.662453, -0.030610, 1.215706, 0.500625, 0.051322, -1.211131, -1.261215, 0.323648, -0.081571, 0.459103, 0.206311, 0.589389, -0.257962, 0.188781, 1.218578, 0.657053, -0.754671, -0.318125, -0.584927, -1.376840, -1.179587, -0.547652, 1.029155, 2.672415, 2.787307, 2.210649, -0.463513, 0.356750, -0.965728, -0.934902, -1.334134, 0.446187, 0.803827, -0.267750, -0.907267, 0.448584, -2.034448, 0.291839, 0.119803, 1.539824, 0.359316, -0.167523, 2.053133, -0.486958, -0.451775, -0.447460, 2.183904, -0.348901, 0.497314, 0.151343, -0.025286, 1.400967, 1.213992, 0.706893, 0.878736, -0.542568, -0.713312, 1.045372, 0.328224, 1.530628, 1.154304, -1.220586, 0.063098, 0.772705, 1.212450, 0.082040, -0.328541, 0.752032, 0.614110, -0.712406, -0.046151, 0.541844, -0.312134, -0.687797, -0.293987, 1.046043, 1.499904, 0.654042, -0.440012, -1.447626, 0.749602, 0.598931, 0.096156, 0.956299, 1.218762, -1.543216, -0.012744, 0.564561, -0.325190, -0.031480, -0.882811, -0.091742, 0.301502, -0.376800, -1.566011, -3.185509, -0.472711, 1.261891, -0.166312, -0.094215, -0.824482, -0.325673, 1.362876, 0.594479, -1.219396, -0.338121, -0.718209, -1.950390, -0.824664, -0.784586, 0.504109, -1.937794, 1.961687, -0.499681, 0.864963, -0.569470, -0.147595, 1.274664, 0.274799, -1.058419, -0.939051, -2.111732, 1.311098, -0.827448, 0.803640, -0.734731, 1.346134, 0.261815, 0.477327, 0.472301, 1.119150, 0.095586, -0.285461, 0.674269, -1.057942, 0.843822, 1.946816, -0.896351, 1.082087, -2.154961, -0.244605, -0.004460, 0.318436, -0.738881, 0.578767, 0.249968, -0.040326, -2.350247, 1.036081, 1.529633, 0.742063, -1.470166, -0.672417, -0.342264, 0.927006, -0.344444, 0.400777, 1.560836, 1.104811, 0.251211, -1.018178, -0.550247, -0.261240, 1.885252, 0.050868, 0.429471, 1.274583, -1.659118, -1.139802, 1.689020, -1.819155, -0.391737, 1.936047, -0.674383, -1.077109, 0.582478, -0.050151, -0.463283, -0.082294, -0.156641, 0.288596, -0.756687, -1.027395, -1.091916, 0.338210, -0.291455, -1.089907, 1.931904, 1.782614, -1.027111, 0.072944, 1.221987, 1.038942, -0.168081, -0.572764, -1.187558, 0.150853, 1.017483, 0.481622, -0.571727, 0.180890, -0.449917, -0.984001, -1.302260, -0.349963, -1.067973, -0.251996, -1.162151, -1.543553, -0.462163, -0.401639, -0.120303, 0.288614, 0.302817, -0.698703, -1.032643, 0.223822, -0.662259, -0.868777, 1.071301, -1.045193, -0.164127, -0.391009, 0.013630, -0.388123, 0.245041, 0.424042, 0.009748, -0.719421, -0.180480, 1.639515, 0.402062, -0.740891, 0.149684, 0.248755, 1.706435, -0.091404, 1.109994, -0.244125, 2.497059, 0.102330, -0.177319, -1.129288, 0.307627, -0.925393, -1.052974, -1.134666, 1.009218, 0.045739, 0.226864, -1.180758, 0.307602, -0.187725, -0.751480, 0.305978, 1.769848, -1.177584, 1.077664, 1.269134, 2.390996, 0.705909, 0.389782, 0.330631, -0.211538, 0.787761, -0.417390, -0.095061, -1.904208, 0.418058, -0.283909, -0.368772, -0.261908, 1.062451, -1.806426, -0.509271, -0.184831, 0.357617, -0.722223, 1.047431, -0.147525, -0.764120, -1.443322, 0.142139, 0.210944, 0.738781, 1.423368, -0.506459, -0.719896, 0.179730, -0.115166, -0.358652, 0.102097, -0.504885, 0.306345, 0.642847, -1.012690, -0.440801, 1.096082, -0.013515, 0.358865, 0.635343, -0.483523, -0.901756, -0.263051, -1.132975, -0.145640, 0.872782, 0.755807, 0.356380, 1.506973, 0.366068, -1.000958, 0.516380, 0.573854, 0.206245, 0.298657, -0.011098, 1.083328, 0.616480, -0.455971, 0.302329, -0.103590, 0.284991, 0.244868, 0.533082, 0.874814, -0.349713, -1.182924, -1.311491, 0.535004, 1.862282, -0.076467, 0.835622, 1.256029, -0.565852, -1.504594, 2.277408, 0.016275, 0.035760, 0.102109, -0.210999, 0.126120, -0.638288, -2.384612, -0.375901, 0.461192, 0.960570, 0.315896, 0.045985, 0.564629, 0.529140, -2.559819, -1.047713, 0.329466, -0.997374, 0.489387, 0.055280, -1.722771, 0.398606, 0.487157, 0.104550, -0.990803, -0.124218, -0.835197, -0.786026, 1.566341, -0.602284, 0.492510, 0.315360, 0.503011, 1.107253, -0.678015, 1.494259, 2.036781, 1.069011, -0.227542, 0.039585, 1.703182, -0.044750, -2.362349, 0.243684, -0.030508, -0.672654, -0.145267, 0.453308, -0.400244, -0.772117, 0.737629, 0.973770, 1.651525, -0.258138, -0.104751, 0.218496, 0.042494, -1.138496, 0.150492, 0.618673, -0.512350, -1.080380, -0.274232, 0.884633, 0.444273, -0.233005, 0.798308, -0.467572, 2.433550, 0.585784, -0.664523, 2.605470, 1.339960, -0.434429, 0.029536, -0.039991, -0.101863, 0.349465, 0.597840, -1.196737, -0.126427, 0.935964, -0.025526, -1.189689, 0.753324, -0.986274, 0.153445, 0.706372, 0.632197, 1.902034, -1.256663, -0.134228, 0.553498, -1.329364, -0.199758, 1.093690, 0.137674, 0.074629, 1.143971, -0.622682, 0.684820, 1.254369, -0.660103, 0.703685, -0.894909, 1.371870, 0.606431, 0.754138, 0.534528, -1.001241, 0.578271, 0.426436, 0.793215, -0.740149, -0.485584, -0.384494, 2.977618, 0.167704, 1.055053, -1.678718, -0.488530, -0.645943, -1.386534, 0.594655, 0.137613, -0.194399, 0.147244, 2.191463, 0.589561, 0.155157, -0.397009, -0.373146, 1.588335, 0.548365, -1.375504, 0.745258, -0.154341, 0.992464, -0.577978, -0.195855, 1.664223, 0.694524, -2.726967, -0.437916, 0.986295, -1.079693, 0.594812, 0.539542, -0.277344, 0.941402, -0.060753, -1.008352, 0.094972, -0.910181, -0.649991, 0.890040, -0.578983, 0.705631, -1.127651, 0.432541, 0.953788, -0.031506, 0.029359, 3.103742, -0.274652, -1.609812, 0.086658, -0.285004, -0.294109, -1.897404, -0.653915, 0.844298, 1.537646, -0.985621, 0.389841, -2.044208, 0.118238, 0.535755, -0.744912, 0.039770, 1.431132, -0.573443, 1.413536, -1.440234, 0.419968, 0.225114, 1.804120, -1.237094, 0.593894, -0.716003, 1.658175, 0.047013, -0.882131, 0.157059, -0.339198, -0.378511, -1.217220, 0.162421, 0.371167, 2.141889, 1.354069, 0.297119, -0.843006, 0.482372, 1.234613, 0.875482, 1.222869, -0.161291, -0.995356, -0.438671, 0.416588, 0.596731, 0.065985, -0.684466, 1.011878, 2.061402, 0.132167, 0.411189, 0.312151, 0.184291, 0.211096, -1.457534, -0.795647, -0.296328, -0.757931, -0.140544, -0.964305, -0.392550, 0.315525, 0.601454, 1.839404, -0.594580, 0.191142, -0.862696, -0.186251, -0.240750, 0.077531, 0.448939, -1.514732, 0.124252, -0.955633, 0.271409, 0.536774, -1.597665, 1.286043, 0.273853, 1.161376, -0.418880, -1.946422, 0.602668, -0.703806, -1.306034, 0.074630, 0.029758, 0.857925, -1.115937, -0.030894, -0.254380, 1.132448, -0.053832, 0.098550, -0.683910, 1.197410, -0.618806, -0.290345, -0.027905, -0.272453, -0.512632, -0.829069, 1.852748, -0.504823, 0.441979, -0.193136, -0.009785, -0.243243, -0.544696, 0.002690, 2.212299, -0.244478, -1.012666, 0.682170, 0.529566, 0.576155, -0.700527, 0.453308, -0.121798, 0.974262, 1.496188, -1.247547, 0.155104, -1.154205, -1.893895, -1.869161, -0.074632, -0.147338, 0.274421, 1.973705, 0.089033, 0.300854, -0.078432, -0.923467, -0.273353, 0.819620, 0.994959, 1.146665, -0.137906, -0.684620, 0.608531, -0.169350, 1.817891, 0.888513, -0.716495, 0.296398, 1.543710, 0.686084, -0.989226, -1.233147, 0.797087, -0.076455, 0.135359, 1.992051, -0.559256, -0.355711, -0.211369, -1.840335, 2.083733, -1.013689, -0.733991, 0.415794, 0.740574, -0.930320, -0.111373, 1.690626, 2.429542, -0.004308, -0.995957, 0.382483, 0.209008, 0.919120, -0.072409, -1.228856, -0.991454, -0.268372, 0.522556, -0.096552, -0.914431, 0.039501, 0.242114, -0.221412, 2.324423, -0.651460, -0.666151, -1.119609, -1.448346, -0.925386, 0.389292, 1.124154, -0.271806, -0.729049, 1.193724, -0.626982, 1.412729, -1.752315, 0.045337, -0.249343, -0.116884, -0.904167, 0.817044, 0.152291, 0.115017, 0.342553, -0.474283, 0.641435, -1.151900, -1.425590, -0.578896, -0.288439, -0.087481, -0.175025, 1.896984, -0.917184, -0.002832, -1.364489, -0.680488, 0.531802, 0.027634, 0.168496, 1.787259, -1.037840, -0.085357, 0.495851, 2.038621, -0.319107, 0.614780, 0.390782, -1.846728, 0.002384, -0.254565, -0.239848, 0.842797, 1.092042, -1.282239, 0.570512, 0.536954, -0.926982, 0.716224, -1.071743, 0.600182, 1.211640, 0.829380, 0.560705, 0.078512, -0.333731, 0.492895, 0.159626, -1.005067, -2.226572, -0.634672, 1.752485, 1.032170, 0.358745, -0.234850, -0.035530, -1.128157, 0.742679, -1.196054, -0.347674, -2.054854, 0.273413, -0.698963, -0.246795, -0.709943, 0.454131, -1.805550, -0.267575, 0.148850, -0.782469, 0.368612, -0.496542, 0.211443, -0.771216, -0.063712, -0.267752, -0.531594, 1.239240, 0.149041, 0.038675, 1.645157, 0.886968, -0.853405, -1.465230, -1.742101, -0.798284, 0.241082, -2.311634, 0.320004, -1.280485, -0.209859, -1.190324, -0.895839, 0.529627, 0.616560, -0.810841, 0.000102, -0.972396, 0.033103, 0.156390, 1.839610, -0.112166, 0.232799, 0.109225, -0.550243, 0.334020, -2.550766, 0.679509, 0.756145, 0.110251, -0.273988, -0.982102, 0.640712, -0.866290, -1.462347, 0.035077, 1.683773, -0.270578, 0.088040, 0.636150, 0.986303, 1.702691, 0.586015, 1.202545, -2.570271, -0.472190, 0.243466, 0.133880, -0.006401, 0.727936, -0.599675, -0.160660, -1.630240, 1.277823, 0.686225, 0.904499, 0.300069, -0.874093, 1.958989, 0.793191, -1.971186, 2.200583, -0.899536, 0.629933, 1.189624, -0.914638, 0.788546, -3.259173, -1.244885, 0.890972, -0.657992, 0.628539, -1.223282, 1.278668, -0.644911, 0.476486, 1.105676, 1.638826, -1.829981, 0.303061, -1.587406, 0.799293, -0.538447, 1.381353, 0.536929, 0.430886, -1.281552, 1.598193, 1.230857, 0.782224, 0.138354, -0.081236, 0.205909, -1.004968, -0.529797, -1.032847, -0.949249, 0.090189, 0.044878, -0.070573, -0.164321, 1.449813, -2.246111, 1.685842, -0.270831, 2.823672, -1.197951, 1.175283, -1.445425, 0.268843, -1.904981, -0.492387, -1.884344, 1.279282, 0.807842, 0.755428, 0.028804, -0.512331, -0.433352, 0.499296, 1.037904, -0.026814, 0.021602, 0.494125, -0.531134, 0.894899, -1.569244}, + { -0.623453, 0.954053, 1.623444, 0.693702, 1.051604, 1.869862, -1.381684, -0.695497, -1.232447, 1.529873, 0.144401, 1.715343, 3.588311, 1.314834, 0.045535, -0.811673, 0.174592, -0.866058, 0.631247, -1.116479, -0.436631, -0.047052, 0.719751, 1.785655, 1.156472, -0.219903, -0.030608, 0.299466, -0.631376, 0.573242, -0.456588, 0.610688, 0.166786, 0.115527, -0.679740, 1.058073, -0.554841, -1.111318, -0.488704, -0.761492, 0.761811, -0.104446, 0.279684, -1.022138, -1.286590, -0.794616, 0.336994, -1.249675, 1.074103, 0.809033, 0.049789, -1.003783, 1.566896, 0.021207, 0.952531, 0.373783, 0.415383, 1.061700, -0.609034, -0.176690, 1.405349, -0.054868, 0.294895, 0.078584, -0.794150, -1.227244, 0.475934, 1.527520, -0.532228, -0.031494, 1.132420, -0.035409, -0.853781, -0.205829, 1.058578, 0.312618, 1.025839, -0.992747, -0.055552, -1.097253, 0.543441, 0.701778, 0.046210, -1.613917, 1.337267, -0.123126, 0.584711, -1.261481, 1.432934, -0.044287, -0.173449, 1.030038, -1.563089, -0.447450, -0.517009, -2.013959, 1.598219, 0.112909, 0.216350, -0.605201, -1.710702, 0.045644, -1.231230, -0.914531, -1.654087, 1.329637, 2.037380, 0.791088, 0.157253, -0.710456, 1.305099, 0.566779, -0.077611, 0.989932, 0.984189, 0.685566, 0.501019, -1.280524, -1.182654, 0.803050, -0.758460, -1.057862, -0.187893, -0.339902, 1.954562, 0.212230, -0.986281, 1.165170, -0.695722, 0.020398, -1.103753, -0.230648, -0.361203, -0.834126, -0.463378, -0.716393, 0.436393, 1.824251, 0.058563, 1.480980, -1.113165, 0.679718, -0.698174, -1.151177, -0.434598, -0.485698, 0.086315, 1.172273, 1.177265, 0.968471, -0.547780, -1.143789, -1.401750, 0.833172, 0.498177, 0.727264, 2.187537, 0.059330, 1.919571, 1.752794, -0.938311, 0.962821, -0.071750, -1.666583, 1.905437, 0.335731, 1.818801, 0.302484, -0.877142, -1.477450, -0.820728, 0.743103, 0.247202, 0.215841, -0.487392, -0.488721, -0.946522, 0.000023, 0.316309, -1.721988, 1.914840, -1.302360, -0.341921, 0.248546, 0.939944, 0.528778, -0.202490, 1.004617, -1.070344, 1.615516, 0.892080, 1.994732, -1.434383, -0.056931, 2.826312, -0.413024, -0.865239, 1.903107, 0.369067, -0.065173, 1.196553, 2.428730, 0.610659, -0.083590, 1.574067, 0.219858, 0.650548, -0.280599, -0.357974, -0.838390, -0.916102, -1.290103, 0.257130, 0.137525, 1.160550, 2.504158, -0.560719, -1.026722, -0.615722, 1.716536, 0.245685, 1.426338, 1.027635, -0.050195, -0.059096, -0.528190, 0.129126, 0.221599, 0.672226, -1.345480, -0.844464, -0.310609, -0.300496, 0.004860, -1.575402, -0.105495, -1.414926, 0.109777, 0.227233, 0.919921, 1.134450, -0.991901, 0.164022, -0.830330, -0.620654, 1.062751, 0.735327, -0.253591, -0.617748, 0.869474, -1.102727, 0.343456, 0.340353, -0.711225, 0.738152, -2.494143, -0.447320, 0.261639, -0.876834, -0.621362, 0.401711, 0.403854, -1.818019, 1.734050, -1.216679, -1.266483, -1.780765, -1.295812, -0.852020, -0.971149, 0.823359, -0.709542, 0.693283, 1.294185, -1.498523, 0.993589, 0.839256, -0.284462, 1.506703, 0.037203, -0.648762, 0.930297, 0.201614, -1.370532, -1.292700, 0.403996, -1.706020, -0.318158, 0.449052, 0.497324, 0.521217, -0.194938, 0.484995, -0.504353, -1.952156, 1.490097, 0.628563, 1.015440, 0.652072, 0.548159, -0.298940, 0.681354, 1.622283, -0.709891, -2.619955, 0.027944, 0.952976, -0.583707, 1.104840, -0.280059, 1.763923, -1.689790, -0.141087, 0.682918, -2.840436, 1.242989, 0.897080, -0.023077, -0.723775, -0.620017, -0.055428, -0.074814, -0.208272, -1.530227, -2.466289, -0.389793, 0.477436, -0.563231, -1.659874, -2.046016, -0.482248, -0.512303, 0.753429, -0.329284, -0.215627, -2.592513, 0.274906, 1.215909, 0.684245, 2.300354, -0.759647, -0.418392, 1.445860, -0.724331, -0.038904, 0.909814, -0.929235, 0.804243, 0.412419, 1.321878, 0.161760, 1.228870, 1.594674, -1.760651, -1.545941, -0.017338, -0.257052, -1.342466, 0.921997, 0.363393, 1.660995, 3.110499, -1.271268, 0.796166, 1.070389, 1.248606, -0.743917, 0.252434, 0.342996, 1.066864, 0.341531, 0.739123, 0.880762, -0.279449, 1.692952, -1.129257, -0.340177, -1.940223, 0.030578, -0.796483, -1.690204, 1.375955, -1.667420, -0.451877, -2.686948, 0.624933, 1.104958, 0.213290, 0.613976, 1.402480, -0.093016, -0.868012, -0.446540, 0.454247, -0.707785, 2.101789, 0.768771, 0.804757, -0.714055, -0.005500, -0.143981, 2.309610, 0.187676, 0.922561, -0.869147, -0.932537, -0.210430, -0.740733, -0.801509, 0.138654, -0.500698, -2.191879, 0.736989, 0.050568, -0.847442, -0.467371, -0.620093, 1.071607, -1.219288, 0.701180, 1.164552, -0.062570, 1.510141, 0.579090, -0.328714, 1.614425, 0.927753, 0.732866, -0.371786, 0.725116, 0.323996, -0.123742, 0.223387, 0.482749, 1.718388, -1.261799, 0.465963, 0.768161, -1.520144, 0.590971, -0.403894, -0.482664, -0.322890, 1.520487, -1.346282, 1.322418, -1.604702, 0.292978, -0.279316, -0.856389, -0.145189, 0.665877, 0.206045, 0.268668, -0.708773, -0.195848, -0.120889, -0.853206, 1.156486, -1.407154, 1.262708, 0.763650, -1.086083, 0.164940, 1.686167, 1.206167, -0.794927, -1.167664, 1.518261, -0.408484, 0.929001, 0.281053, -0.667475, 0.045282, 0.800883, -1.227243, 1.099914, 0.289765, 0.222921, -0.326742, -0.272994, -0.578084, -1.277323, -1.328512, 1.271082, -0.323974, -0.936015, 0.152633, 0.050185, -0.061969, 0.902417, -1.872260, -1.760017, -0.665758, 1.750578, -1.115335, -0.482179, -0.721216, -0.661339, -0.354468, -0.409206, 0.860945, -0.372282, 0.981023, -1.693248, 1.216220, 0.005642, -0.246426, -0.690470, 0.454123, -0.614794, 0.282413, -0.041944, 1.619260, -1.426622, 2.134139, -1.215949, -2.555833, -0.245038, 0.482855, -0.776026, -1.288328, -0.354847, 1.575842, -1.383988, 0.424619, 1.943871, -0.038640, 0.006247, 0.367939, 0.735515, -0.101791, -0.194711, 0.411367, 0.037841, -0.149004, 0.846544, -0.668612, -0.935705, -0.372453, 0.122381, -0.678787, 1.740865, -0.387087, -1.985908, 0.036531, 0.357803, -1.141082, -0.078745, 0.757630, -1.772953, 0.995736, -0.251684, -1.044462, -0.352929, -0.159211, 0.566438, -1.353958, 0.585748, 1.164025, -0.151318, 0.892339, 0.303215, 0.102689, -0.785613, 1.720145, -1.634517, -0.077173, 2.910751, 1.238376, -1.070150, 1.717178, -0.424230, -0.860789, 0.374001, -2.334249, 0.004519, -1.068791, -0.992720, -2.348866, 1.297737, -0.266538, -0.681577, -1.446853, 0.428924, 1.508156, -0.784141, -0.346106, 0.278468, 0.633195, 0.200221, 2.339906, -0.518537, -2.456020, -1.113917, -1.030970, 0.694407, -1.515428, 1.177057, -0.107440, -1.011979, 0.417285, 0.818502, -0.189856, 0.598343, 0.415470, -1.693178, 0.641560, -0.029072, 0.568614, -1.050384, -0.059501, -0.005994, 0.841842, -1.783431, 1.251634, -1.509092, -1.244333, -0.057438, 1.210072, -0.470286, -0.142246, 0.155634, 0.119058, -0.807101, -1.966949, 0.276064, 1.928274, -0.363779, 1.778863, -0.694578, -2.953176, 0.339838, -1.257644, 0.273053, 0.905211, -0.089732, 0.618200, 1.658325, -0.113873, -0.696675, -0.635603, 0.015964, -0.840557, 0.895750, 0.660494, 1.161041, 0.854115, 0.086081, 1.356078, 1.108299, -0.087507, 1.331952, -0.295514, 0.197562, 0.585499, 0.728088, -0.866588, 0.549671, -0.378238, 1.728026, 1.274765, -1.570455, -2.396265, -0.123276, -0.144986, 2.008585, -0.199556, 0.369414, -0.773789, 1.485619, 0.116638, 1.234015, 0.124005, 1.039817, -0.558376, 0.951702, -1.545855, 0.107654, -1.080724, -1.115903, 0.393940, 0.037577, 0.440651, -0.409629, 0.713164, -0.404153, 0.278440, 0.963260, 1.742860, -0.463231, -1.209535, -0.323712, -0.231298, -0.502553, 0.285147, 0.142140, -1.282130, -0.710462, 0.855065, 0.037743, -0.677499, 0.118042, -0.454565, 0.981097, 1.722714, -0.167418, -3.202382, -0.412894, 0.701014, 2.011460, -0.315601, -0.474802, 0.075601, 0.987902, -1.040080, 0.709486, -1.125118, -0.017001, -1.904518, -0.183568, -0.975301, 2.269899, 1.557225, -0.342013, -1.417912, 0.342440, -0.435465, -0.042540, 1.618265, -0.250682, -0.787410, 1.098447, 0.045734, 1.140916, -0.005694, 0.461982, -0.680186, -2.262146, 0.030759, 2.020773, -0.861753, 0.271623, 1.596500, 0.245057, -0.408449, -0.208146, 0.483222, -0.213091, -1.737382, -0.470778, 0.852057, -0.108822, -0.705684, -1.794956, -1.733111, -1.200252, -2.157468, -0.559874, 0.013241, 1.321396, 1.098886, -0.230483, -0.590569, 0.624788, 0.741311, 0.008630, -0.626681, -0.545619, 1.076151, -0.144665, 1.064903, -1.146352, -0.754815, -0.374404, 1.490998, 1.178891, -0.458798, 1.216729, -0.051359, -0.200159, -0.192953, -0.273308, -0.769555, 0.134451, -0.097036, -0.575961, -0.938152, -0.186811, -2.027305, -1.089062, -0.271874, -0.470876, -0.105277, -0.426130, 1.131322, -1.279843, -1.123745, 0.901968, -0.286172, -0.405162, 0.464232, 0.336823, 0.051341, -0.249817, 1.398990, 0.901713, -0.828001, -1.043243, 0.426822, -1.505874, 0.011781, 1.062281, -0.662296, -0.806976, 0.826020, -0.565465, -2.312020, 1.578992, -0.759484, -0.351286, 0.704443, 0.712394, -0.767216, 0.222625, 0.860920, -1.566572, -1.182164, -1.929471, -1.352744, -0.537665, 1.514014, 0.524002, -0.405265, 0.883618, 0.530110, -1.020418, -0.688276, 1.782730, -1.240812, -1.196037, 0.742602, -1.502700, -0.961634, 0.849075, -0.450839, -0.770336, 0.108036, -0.563989, -1.165810, -1.543547, -1.403592, -1.023245, 0.964347, -1.592831, 0.128164, -0.599490, 0.338740, -0.182169, -0.753812, -0.645035, 0.563881, 1.879971, 0.735333, -1.075692, 1.077581, -0.125789, 1.003849, 0.278407, -1.279668, -0.087034, 0.557527, 0.631904, -0.364409, -0.591107, -0.530717, -0.806510, 0.021594, 1.805066, -0.234287, -1.149436, -0.510306, 1.110254, 0.245971, 0.416621, 0.190544, -0.576510, -1.649418, -1.165816, -1.057189, -0.442838, 0.566944, -0.736546, 1.999349, 1.400423, -0.248045, 0.076294, 0.286319, -1.015722, 0.082188, -1.220659, -1.588475, 1.490315, 0.568091, 1.189487, -0.032901, 0.788781, -1.683181, -0.681388, -0.322550, -0.903044, 1.105530, -0.368619, 0.305826, 0.771226, 1.621447, 0.110249, -1.263226, 0.650783, 0.775220, -0.776529, 0.744234, -0.514982, 0.333820, 2.156255, 0.772207, 0.546877, -0.541077, 1.033439, 0.027314, -1.179867, 0.112219, -1.869214, 0.254614, 0.441247, 0.600428, -1.529266, -0.828392, 1.779309, 0.421391, -1.959596, -0.101238, 1.068820, 0.078936, 0.430229, -1.120721, -1.067357, 0.496507, 1.599528, -0.626374, -0.813625, 1.463498, 0.347601, 0.927429, 1.148257, -1.586493, 0.093626, -0.772744, 1.625483, -0.478545, -0.221309, 0.000621, -1.148203, -1.438723, 1.056092, 0.733679, 0.307065, -3.348996, -0.203099, -1.277446, 1.063363, -0.950062, 1.387271, 2.128470, -0.367682, -0.833131, 1.879218, 0.097407, -0.172273, -0.580684, 0.232930, 1.930204, 0.575178, 0.290120, 2.931159, 0.548125, 0.462058, 1.261512, 0.435107, 1.618984, 0.466057, 1.992763, -1.456414, -0.613729, -0.992565, -0.609947, 0.041044, 0.086893, 1.203942, -0.676437, 0.222967, -0.350054, -0.484052, 1.286109, -0.262943, 0.667269, 1.411309, -0.931674, 0.833679, 0.780207, 1.295682, 1.058218, 0.154652, -1.299975, -0.181953, -0.067264, 1.822692, -0.143681, -1.374258, -1.710318, -0.031247, 0.856007, -0.023738, 1.750374, -1.765197, -1.000061, 1.991553, 1.324514, 1.198946, 0.221269, -1.008166, 0.015012, 0.341822, 0.520590, -0.601956, -0.497275, -1.314573, 0.375441, 0.022262, 2.559487, -0.021369, 0.876764, -0.911074, 0.572897, -0.461993, -0.118148, 0.400654, 0.091359, -1.185379, -0.114256, 2.018330, -0.378927, 0.123732, 0.065811, -0.148458, 0.009804, -0.487581, 0.920691, -1.605965, -2.316377, 1.363888, 0.557818, 0.946484, -1.411012, 0.840466, 1.765036, 0.680239, -0.673007, 1.208876, 0.578271, -0.112013, 0.373387, 1.738491, 0.654488, -0.997188, 0.371525, 0.415120, 0.312278, 0.482467, -1.144021, 0.708331, 0.298731, 0.585536, 1.304343, -0.882933, -1.174656, -0.364076, -1.735889, 0.543588, 0.815846, -0.069151, -0.161164, 0.276600, 1.124768, 0.501393, -1.081831, 1.205866, 0.335251, -0.802165, -0.728224, -0.728497, 1.744816, -0.625711, 0.318683, 0.411529, -0.240272, -0.548268, 1.784923, -0.597437, -0.839994, 0.826265, 0.208463, -0.593553, -0.343072, -0.414023, 1.643092, 0.177418, -0.837071, 0.947163, 0.598130, -0.357140, -1.193699, -0.520810, -0.049950, 0.328843, -0.115809, 1.237598, 1.429429, -0.866494, 1.067158, 0.881910, 0.755652, 1.812063, -0.101621, -0.189353, 0.588834, 2.224868, -0.215545, 0.475178, -0.785537, -1.994503, 1.138737, -0.312048, 2.111838, 0.243595, -0.217862, 1.632969, -1.048329, 1.198893, -0.330813, -0.498998, -0.109484, -1.034779, 0.962764, 0.333293, 2.275247, 2.340490, 0.578223, -0.676159, -0.778772, 0.092917, -1.291921, -0.043946, -1.006860, -0.442360, -0.352270, 0.349411, -1.729677, -1.336875, 1.257883, -0.997495, -0.007765, -0.373652, -0.057240, -0.839117, -1.462761, -0.819780, -0.160442, 1.915766, -0.492907, 0.510259, -0.663838, 1.119401, -1.068146, 0.205162, -0.730906, 1.351709, 0.036955, 0.165369, -3.168551, 0.291011, 0.116180, -1.416719, -1.666722, 0.882316, 0.493695, -0.107312, 0.892315, 1.015771, 0.086327, 0.751946, -0.999129, 0.373692, -0.891583, -0.561115, -0.127191, -0.311987, 0.915724, -1.180343, 0.749417, -0.163806, -0.872631, -0.456631, 2.761867, -0.874390, 0.290952, 0.045706, 0.067123, -0.002035, 0.811363, 1.037285, -0.192652, 1.878039, 0.408610, -0.719494, -0.987027, -0.079995, -0.148389, -1.205181, -0.614823, 0.079235, 1.937508, 0.469927, -1.000745, 1.002714, 0.756052, 0.415123, 0.323209, -1.016147, 0.617013, 1.157310, 0.299938, -0.740063, -0.369359, -1.169232, 0.295839, 0.058527, 0.870896, -0.082892, 1.213350, 0.958314, -0.768342, 0.169133, 0.226603, -0.200703, -0.769491, -0.625037, -0.515528, 0.625763, 2.897615, -1.093809, 0.075097, -0.364193, 0.153641, -0.287079, -0.696256, -0.166970, -0.602850, -0.144847, 0.430072, 1.057270, -0.427213, -0.386023, -2.026752, 0.109442, -0.782503, -0.314018, -0.129226, -0.414538, -0.761880, -0.575583, 0.539498, -0.133999, 0.405557, 1.357618, 0.768280, -1.626472, -0.940342, 0.284853, -0.960396, -2.374528, 1.334795, 0.243184, 0.763377, 0.148786, 0.214573, 0.550710, 0.581688, -0.499359, -0.324890, -0.150250, -0.438701, -0.886777, 0.664653, -0.837704, -0.737847, 1.262831, -1.006748, -0.906348, 0.603079, 2.390491, -0.335118, 0.655038, 0.337169, -0.400447, -0.435655, -0.793657, -0.061330, 0.238077, 2.079480, 0.903865, -1.330803, -0.155710, 0.992865, -1.264595, 0.629640, 0.160758, -0.760545, -0.448366, 0.922689, 1.636543, -0.148524, -1.345407, -0.336809, 0.847822, -0.888932, 0.112179, 0.810667, -0.920844, 0.699311, -1.698227, -0.072819, 0.194583, 2.913199, -1.661479, 0.491781, -1.630995, -2.292904, -0.156592, -0.831328, 0.333362, -1.346217, 0.740406, -0.646210, 0.330476, 0.011820, 0.261232, 0.891277, 2.536957, -0.098186, -1.035584, -1.477232, -1.873089, 0.441552, -1.420753, -0.728468, -2.461144, 0.518028, 0.651003, 0.749435, -0.791859, -0.140180, -0.426504, 0.280434, 0.824883, 0.019835, 0.319204, -2.522234, 2.159223, -2.491072, -0.057348, 0.492508, -0.952368, 0.097768, -1.645331, -0.449716, -1.085213, -0.928719, 0.239231, 0.751589, -1.002256, 0.215936, -0.606306, -0.733353, -0.710711, -0.394801, 1.207395, -0.347099, 0.044909, -0.232702, -2.167305, -1.001443, 1.914278, -0.477186, 0.836531, 0.691079, -0.214423, -2.006643, -0.132784, 1.232694, -0.616862, -0.004635, -1.944668, 0.213088, 1.552813, 0.374027, -1.138560, 0.406288, 0.791432, 0.525353, 1.094239, 0.706779, -1.632860, -0.739450, 0.049644, -0.108114, -1.567377, -0.250007, 0.161739, -0.440145, -0.346428, -1.196800, 0.406576, -0.200230, -0.110491, 1.468977, -1.547761, -0.052417, 0.087336, 0.697882, -0.577451, -0.048326, -0.679717, -0.389158, -0.831398, -1.364468, -0.127567, 0.241172, 0.007756, -0.640342, -0.642852, 0.778124, -1.113056, -0.032823, -0.444457, -0.613264, 1.920060, 0.820966, -0.276815, 0.195405, -0.385462, 0.802172, -1.244596, 1.319686, -0.395284, 1.687466, 0.341534, -0.362167, 0.203323, 1.585754, -0.749208, -0.255050, 0.233084, -0.267739, -0.215205, 0.679483, -0.129030, -2.025603, -0.545162, -0.177973, 0.052779, -0.571604, -0.228202, 0.326959, 1.729283, 1.202517, -0.908482, 2.067965, 0.988786, 0.221466, 0.347342, 0.339143, -0.404961, -1.616164, 0.096909, 0.302887, -0.200845, -0.385569, 0.493558, -0.514158, -1.429668, 0.704494, 0.705244, 0.794807, -0.222113, -0.233228, 0.129633, -1.693415, -0.454547, 0.814292, -0.280736, 0.661494, 0.314321, 0.288306, -0.254610, -0.240969, -0.555553, -0.860210, 1.569442, -0.334052, -0.310842, 0.264963, -0.571964, -0.754633, -0.345627, 0.134951, -0.725342, 1.321555, -0.260204, 0.427543, -0.375964, -1.056924, 0.371639, 0.567981, 0.634436, 0.030608, -0.783334, -0.450729, 0.037815, -0.275719, -0.365921, 1.114759, -1.609446, -0.669731, 2.159318, -0.278625, -0.871735, 0.077756, 0.386762, -0.392128, -0.085670, -0.604126, -1.747318, 0.555601, -0.450966, 0.710088, 2.087791, 0.312704, -1.942972, 0.116592, -0.493857, 0.831028, 2.226056, 1.483603, 0.366641, 0.685873, -0.727404, 0.443080, 0.125284, 0.725298, -1.204736, -0.597128, 0.195025, 0.732572, -0.469062, 0.477659, 1.874927, 2.106595, -0.375360, -0.362208, -0.287513, -0.056017, -0.833202, -0.912884, -0.195822, 2.167403, -0.301143, 2.482659, 1.063425, 0.367249, 0.822278, 0.112339, -0.128620, 1.102664, 0.762336, -0.321454, -0.953026, -2.228239, 0.765689, -1.747361, 0.822630, 1.092762, -1.132774, 0.693391, 0.570049, 0.958624, -0.436718, -0.281885, -1.354223, 0.471678, -0.232098, -0.714516, 0.951227, 1.214682, 0.937597, -1.029204, -1.131709, 0.534172, 0.649547, -2.054628, -0.131366, -0.447538, -0.726765, 0.597428, 0.256786, 0.145479, -0.395442, 0.612840, -0.947940, 0.642573, 0.014943, -1.608187, 0.124304, -0.676657, 0.590953, 0.710924, -1.567442, -1.030316, 1.555993, 0.361457, 1.216279, -0.402003, 1.853082, -0.595164, 0.164794, -0.743279, 0.995666, 1.586500, -0.059508, 1.808829, -2.116118, 1.635752, -0.937809, 0.567232, 1.071493, 0.303327, 0.881441, 0.219488, -0.193947, -0.923307, 0.796834, -1.878409, 1.766440, -0.067873, 0.070588, -0.618395, -0.808697, 0.671449, -1.243319, 0.291487, -0.457839, -1.264555, -0.826279, -0.032396, -0.105896, 1.023749, 0.431738, -1.273322, -0.318433, 0.586852, -0.089034, -0.468333, -1.030797, 1.747286, 0.396295, 1.589622, -0.688438, 0.472268, 1.045664, -1.120522, -2.158789, -0.700277, -0.100062, 1.224239, -0.028336, 0.780148, 0.750950, -0.863507, 0.377686, -0.294723, -0.262106, 0.771339, 0.890611, 1.060766, 0.185323, -0.135984, -0.837736, 0.525532, 0.019600, 0.881206, 0.347934, -2.414978, -2.115059, 1.023043, 1.749845, 0.678521, 0.056153, 0.557952, -0.236341, -1.056321, 0.234636, -0.956992, -0.441433, 0.732408, -0.379329, -0.011801, -0.071274, -1.706708, -2.356571, 0.786006, 0.203953, -0.317419, -1.083134, 1.149797, -2.085296, 0.752887, -0.932524, 1.746426, 0.679927, 1.135209, -0.834052, 0.098566, -0.789324, 0.636161, 0.186533, -0.732246, 0.435459, 1.226857, -0.760132, -0.433036, -0.233559, 0.651796, -0.392767, -0.237725, -0.336180, 0.194321, 0.161021, -1.181983, -0.641880, -0.016784, -0.724357, -0.022949, -0.585239, -1.621261, 1.410727, -0.120273, -1.228143, 0.226797, -0.740254, 1.990417, 0.854266, 1.119888, 1.281324, 0.464073, -0.030313, -1.021628, -2.528571, -0.496044, -0.220940, 0.296065, -1.571630, -1.411951, -1.034487, -0.183921, -0.714003, 0.554770, -1.939697, -0.870241, 1.579534, 0.407536, 0.845163, 0.169817, 0.608389, 0.522581, 1.708390, 0.111518, -0.490308, 1.335780, -0.460659, 0.411525, -0.080968, 0.269510, 0.292276, 0.101777, 0.266486, 0.455205, 0.452102, 0.769950, 1.655536, 1.619416, -0.087528, 0.070307, -0.004677, 0.765683, -2.225653, -0.560522, 0.345340, -0.702346, -0.931809, 0.341249, -0.869568, -0.103519, -0.687064, -1.030831, 0.070214, -1.221788, -1.396775, 0.556335, 1.180188, -0.548804, 1.133078, -0.592456, -0.184492, 0.130857, 0.237093, -0.987683, -0.332959, -0.951278, 0.446272, 0.898166, -1.547139, -0.388416, -0.953992, -1.619748, 0.001487, -0.373560, 0.454699, -0.301258, -0.208208, -0.338697, -1.237921, -0.038130, -0.801799, -0.389003, -1.264494, -1.949058, -1.690619, 0.338203, -0.449090, 1.154036, 2.257233, -0.045447, -0.940018, -0.135010, -1.367771, 0.675752, -0.847615, 0.836265, -3.218179, 0.772681, -0.700947, 1.329807, 2.207220, 0.660263, 0.537273, -1.650653, -1.055598, -0.432696, -0.963343, 0.674557, 0.258531, 0.091242, -0.156451, -1.876613, -0.311569, -0.992994, 1.373373, -1.083461, -0.706989, -0.837429, -0.439604, 0.610860, 1.201186, -0.152969, -0.692993, 0.303026, 1.091902, 0.562589, -0.444140, -0.397255, 0.036604, 0.782060, 1.461951, 1.215109, 1.015874, 0.411564, 0.603514, -1.187557, 0.837245, 0.186959, 0.462223, 0.269404, -0.552504, -0.882271, -0.989298, 0.366308, 0.694815, 1.008333, 1.242507, -0.410094, -0.239002, -0.812863, -1.278352, 0.616818, 0.744511, -0.071488, -1.218788, 0.335584, -0.055247, 0.190317, -1.361688, 0.092413, 1.391584, -0.089277, -0.477297, -0.297653, -1.329137, -0.176489, -0.780425, -1.242031, -0.455239, -0.128555, 0.705808, 0.652702, -0.907426, 0.115842, 1.439899, 0.583011, -0.586446, -0.508457, 0.145344, 0.474562, -0.997828, -0.497745, 1.263431, -0.498363, 1.067552, -0.140476, 0.195365, -0.339264, -0.550975, 0.430140, -2.495366, 0.820498, 1.151712, -0.580847, -0.664775, 0.300745, -1.900717, -0.246849, 0.174779, 0.095474, 0.301566, -1.462927, -0.457453, -1.198832, 0.260430, 0.525427, 2.327744, -1.917447, 0.651556, -0.082186, 1.258345, -0.599588, -0.777779, 0.395293, 2.045056, 1.120563, 1.661898, -0.539189, -0.111726, -0.107838, 0.628474, 0.855023, 0.050101, 0.291567, -0.751113, 1.743932, -1.885355, 0.827604, 1.001296, -0.799931, 0.832705, -1.218060, 0.589579, 1.204786, -1.311507, 1.293605, 0.120319, -0.673120, 0.768688, 0.896431, 0.687807, 0.565967, -0.331070, 1.144239, 0.344915, -0.536867, -0.657178, 1.542104, 0.667695, -0.314779, 0.967024, -1.946962, 0.091642, -1.883904, -1.918245, -0.747505, -0.275695, 1.471952, 1.597673, 0.643054, -1.427826, -0.940320, 0.045873, 1.094288, 1.310489, -0.449426, -0.976604, -0.161207, -0.479570, 1.346457, -0.163808, 1.376277, -0.904598, -0.484484, -0.504983, 2.231356, -0.574739, -0.925540, -0.604247, -0.651224, -0.719114, -0.761973, -0.668061, -0.255279, -0.078762, -0.022794, 0.211515, -0.920800, 0.637119, -0.714713, 1.671272, 0.192129, -0.180253, 1.393980, -1.204250, 0.737188, -0.077572, -0.695508, -0.256038, 0.124274, 0.944659, 0.957450, -0.178383, 1.970102, -0.991845, -0.507732, -0.281083, 1.439515, 2.388603, 0.230345, -0.072544, 0.788672, 0.121837, -0.605396, 1.692880, -0.838169, -0.199886, 0.096945, 0.124041, -1.143811, -0.618569, -0.211310, -0.699583, 0.170679, 0.393933, -0.008682, -1.669207, 0.139770, -0.176186, 0.586495, -0.272988, 0.639205, -0.053130, -0.899506, 0.453998, 0.075434, 0.669400, 0.193137, -0.185708, 0.555906, -1.290901, -1.267053, -0.821400, -2.053677, 2.290072, -0.077008, -0.920618, 0.023749, -0.117790, 1.077128, -1.319185, 0.177130, 0.145882, -0.796767, 2.135765, 0.174968, -0.790916, -0.701847, -0.645645, -0.226694, 0.108898, 0.454596, 0.562653, -0.731533, -1.487294, 1.617465, 0.383866, -0.994835, 0.407216, -0.261415, -0.697723, -0.238328, -0.680263, -1.702497, -0.019850, 0.412528, 0.646121, -1.124923, 0.260227, -0.676179, -0.548324, 0.113787, 1.106406, 0.478712, -0.996195, -0.400662, 0.322306, -0.183456, -1.094775, -0.714005, -2.390916, -0.124259, 1.317828, 1.232597, -0.461590, -1.142817, 0.618168, -0.314165, -1.010540, 0.747660, -1.440197, 1.082188, -1.315799, -0.236548, -0.607677, -0.547380, -0.332656, 0.705554, 0.341649, -1.080255, 0.883253, 0.532238, -2.370310, 0.643896, -0.696013, 0.560925, 1.117974, -0.119678, 1.088691, -1.319988, 0.907951, -0.366180, 0.698432, 0.550332, 0.966005, 0.904856, 1.320437, 0.729177, 0.536385, -0.569802, -0.680889, 0.695696, -1.529623, 1.016953, -0.905905, -0.263244, 0.803606, -1.550442, 0.112123, 0.600202, -0.862481, -1.347078, -1.474102, 0.142699, -0.900816, 2.040950, 0.547448, -0.408968, -0.853502, -0.859737, -1.367904, 0.703143, -0.291022, -1.893490, 1.078926, 0.006518, 0.252045, -0.835005, -0.356546, -0.261641, -1.671060, -0.326894, 1.896629, 1.012121, -0.211800, 0.338384, -0.184103, -0.122299, -0.132211, -0.855417, 0.492985, -0.099009, -0.343577, -0.082816, 1.081974, 0.921803, 0.641486, 0.499388, 1.859946, -1.221179, -0.088010, 0.308682, 1.435141, 1.082307, -1.517399, 0.101751, 0.173340, -1.151169, 0.680290, -0.174590, 1.305213, -0.671548, -0.442931, 0.129224, 2.026346, -0.768422, 0.199532, -0.226109, 1.509976, 0.721038, 1.441118, 0.020177, 1.516057, -1.973640, 1.343944, 0.303457, 0.188708, -0.331241, -0.542382, 0.879981, -0.996384, -0.137007, 0.504955, 1.750427, -0.654324, 0.904405, -0.809206, 0.759498, 0.892563, 0.407132, -0.196360, -0.305179, 0.101894, -1.022962, 1.948404, 0.211720, 0.422802, -0.151179, -0.799501, -0.708741, 0.680537, -0.245442, 0.140980, 0.211048, 0.102425, -0.714462, 0.008719, -2.286333, -0.911013, 0.410143, -0.251832, -0.635754, 0.220559, 0.273058, 0.249602, 2.147115, -1.275174, 0.441373, 0.101199, -1.209903, -1.686076, 0.697102, -0.728055, -0.599947, 0.434907, -0.742242, -0.231319, -0.485639, 1.490613, 0.456012, -0.315430, 1.032377, 1.016384, 2.071719, -0.581866, -0.997055, 0.361761, -0.579864, 0.588728, -0.431103, -0.318526, 0.593021, -1.226416, -1.543987, 1.143324, 1.317451, 0.807418, -0.951109, -0.232099, 0.030076, 0.300818, 1.741943, -2.176701, -1.189019, -1.335963, 0.927846, 0.176398, -0.225009, 1.401209, -0.256503, -0.016149, -1.241953, -1.070358, 0.369862, 0.281447, 2.637036, -1.203327, 0.529598, 0.479650, 0.802503, -0.275342, 0.086772, -0.021011, -0.208393, 0.011626, 1.438752, 0.961595, 0.581880, 0.550852, -0.738347, 1.423225, -0.690117, 0.063013, 0.530657, -1.198591, -0.260484, 0.182210, -0.888091, -0.389593, 1.579610, -0.956951, 0.701923, 0.510090, -1.268439, 0.437497, -1.000280, 0.914457, -2.079672, -0.642056, 0.575708, 0.036583, -2.124228, -0.337062, 1.520439, 1.086876, -0.443614, 0.623885, -2.132409, 1.892285, -1.028370, -1.046202, -0.244842, 0.148280, 0.422102, 0.717107, 0.483886, -0.064513, -0.102968, -0.544850, 1.843724, 0.523018, -0.426738, -0.767726, -0.163730, 0.658391, 1.490329, 0.891014, -0.760058, -0.995975, 0.941965, -0.228759, 0.819013, -1.438934, -1.759312, 1.634432, -1.490389, -0.754722, -1.157871, 1.290812, -2.045502, -1.010032, -0.745381, 0.145885, -1.085113, 0.726223, 1.356378, 0.689163, -0.025504, -1.611363, 0.116147, 0.203872, -0.883090, 0.015775, -0.445040, 0.524059, -0.738939, -1.356761, 0.632259, 0.989492, -0.288515, -1.409764, -0.190458, 0.757061, -0.195403, -0.728183, -0.279709, 1.133811, -0.069051, 1.054468, -0.336070, 2.098590, 0.798654, -0.350733, -1.387883, 0.048497, -2.198933, 0.307884, -1.533988, -0.842805, -0.163025, 1.368090, -1.688254, -0.218864, -0.168888, 0.316394, 0.803479, -0.943433, -1.784473, 0.069284, 0.821159, -1.154330, -0.397152, 1.045521, 2.045438, 0.534702, -0.009791, -1.095701, -0.311276, -0.496416, 0.792970, -0.487859, 0.325287, 0.485965, 0.432876, -1.126865, -0.685436, -0.085591, -0.414640, 0.228518, -0.821009, -0.743283, -0.161088, 1.142402, -1.018194, 0.476906, 0.276374, 0.987624, 0.383144, -1.295667, -0.488333, 0.617016, -0.033344, 0.725141, 1.008377, 0.439418, 1.472104, 0.155561, -0.110068, -1.304138, -1.165281, 1.315892, 0.444532, 2.298580, 0.227679, 1.336553, 0.946921, -0.440665, -0.680986, -0.260142, 1.197007, -0.098810, 0.861896, 0.132229, -1.200370, 0.120048, -0.474769, -1.315054, 1.050065, -1.008350, -0.255670, 0.426554, 0.174012, -0.210155, -0.068163, 2.407134, -0.601567, 0.799011, -0.624274, -0.469872, -0.280167, 0.011803, 0.864613, -0.501991, 0.980410, 0.137826, -1.481396, -2.424272, -0.223357, 0.942771, 0.688922, 0.865510, -1.111012, 0.624729, -0.025743, -1.629060, -0.758888, -2.265140, 0.975112, -2.076916, -0.129254, -0.356208, -0.606403, 1.246377, -1.888516, 0.899758, -0.849161, 0.364329, 1.925512, -0.950648, -0.616728, -0.874016, 1.383138, -0.172858, -0.918178, 1.024213, -0.941024, 0.766330, 0.153633, -1.626859, -0.475497, -0.643694, -0.905033, 0.940519, 1.136209, 0.211226, -0.467632, 0.768584, 0.706210, 1.397715, 0.138225, -0.431444, 1.122714, 0.571397, 0.548292, -0.631882, 1.414571, -0.135924, -1.275109, -0.940283, 1.720902, 0.349364, 0.680290, 0.095300, -0.323898, -0.007615, 1.202715, -0.284686, 1.662228, 0.701834, 0.034678, 1.381668, 1.859965, 0.966662, 1.430236, -0.150380, -0.372605, 0.098700, 0.696459, -0.309120, 0.459758, -0.275880, 0.799164, -0.224122, -0.528460, 1.048741, 0.905117, 0.480607, -0.296526, 0.945736, 0.133489, 0.089401, 1.380204, 1.754053, 0.779173, 1.216589, -1.024632, 0.759024, 0.537437, -1.139913, 0.696660, 0.308960, 3.609614, 0.339608, 1.885982, 0.023916, -0.875844, -1.432505, -0.408879, 0.584979, -0.618855, 1.262627, 2.090262, -1.082905, 1.685835, -0.536519, 0.173338, 1.443709, -2.353907, -1.209625, 0.035264, 0.724880, -0.802651, -0.310640, -0.851194, 0.611488, -0.269466, 0.182953, 0.029499, -1.014550, 0.994472, 1.221726, -0.131445, 0.280344, -0.855399, -0.543700, 0.270336, -0.346383, -0.531537, 0.300804, -0.090422, -1.123561, 0.287737, 0.707782, -1.353820, -1.284211, 0.480772, -1.396575, -1.554634, -0.084988, -0.186334, 2.129409, 0.530384, -0.133940, 3.329255, 0.457656, 0.867170, 0.499770, -1.001991, 1.411815, 0.040660, 0.676519, -0.624028, 0.904351, -1.411417, -0.472960, -0.996108, 2.300970, -0.662128, 1.222117, 0.269884, 0.390922, -1.267248, -1.749175, -1.508577, 1.856439, 0.123758, 0.155336, -0.293283, -0.183849, -1.440819, 1.447976, 0.524395, 0.506728, 0.757555, -0.786207, -0.849897, -1.340120, 0.481862, 1.816820, -1.376189, 0.641864, -1.924750, -2.417068, -0.160125, -0.193410, -0.381317, 0.927559, -2.568306, 1.271271, 1.303896, -2.166029, -1.530379, 0.829018, 1.732181, -0.142883, -2.048300, 0.065327, 0.763748, -1.820923, 0.940883, 0.860248, 0.229715, -0.482862, -1.746277, 1.577981, -0.148202, 0.488000, 0.667652, -0.643817, -0.639880, 0.475490, -0.112918, 0.024775, -0.303965, 0.769395, 2.331867, 1.243592, 1.776780, 1.552388, 0.815864, 0.582191, -0.822834, -1.167023, -0.017253, -0.817653, 0.886605, 1.262202, -0.163658, 1.243207, -1.652786, 0.328303, -0.799172, -0.683606, -0.429759, -0.663217, 1.450431, 0.051583, -0.195661, -0.419989, -1.419475, -0.879870, -0.730321, 0.290857, -0.046591, -0.568303, -0.166330, 2.531542, 1.964246, 0.228536, -1.092517, 0.103806, 0.250279, 0.015149, -2.444742, -0.257351, 1.175701, 0.213322, -0.241328, -1.163861, 0.221895, 1.118525, 0.805948, -0.594000, 0.242908, 2.210176, -0.552144, 0.942479, 0.553428, -1.980603, -1.221319, -1.055179, -0.439258, -0.533544, -1.869555, 1.269748, -0.761043, 0.446409, 0.411258, -0.522056, -0.788410, -1.651978, -0.697587, -0.290002, 0.255671, 1.480034, -0.405975, -0.133830, 0.677668, 0.207794, 0.705147, -0.086225, -0.452590, 0.082180, -0.046804, 1.277458, 1.057401, -0.070093, -0.595076, -2.132848, -0.703874, 0.188869, -0.392086, -0.881015, -1.165322, 0.410799, 0.471603, -0.211359, 0.070827, 0.900068, -0.444908, -1.120263, 0.003885, 2.025558, -0.908057, -0.839589, -0.755224, -0.843029, -0.568644, -0.908302, 2.828378, -0.611708, -0.665658, 0.153252, -0.034665, -0.134379, 0.770814, 2.250486, -2.436569, -0.962193, 0.319847, 0.984329, -0.923787, 0.168609, 0.847455, -0.477922, -0.283222, 1.247782, 3.877625, 0.061579, -0.597473, 0.968885, -0.724715, 2.344604, -1.180566, 1.619984, -0.016636, 1.101751, -0.591842, -1.365216, 0.003815, 1.326410, 2.052107, -1.039814, 1.038797, 1.231920, -0.644768, 1.469848, 1.424112, -0.161596, 0.181252, -0.753282, 0.211047, 1.295373, 0.198816, -0.233923, 0.998324, 0.175984, 0.024981, 0.063775, 0.806074, 0.343550, -0.334650, 0.562876, -0.468298, -0.207810, -0.874198, 0.866068, -1.239539, 0.690880, -0.212895, 0.125039, -1.686516, 0.653755, -0.386915, 1.461090, -0.691420, -1.523585, -2.568363, -0.716705, -1.886883, -0.381368, -1.872987, -0.382293, 0.415671, 1.000871, 0.636103, 0.150059, -0.234357, -0.351909, 0.730472, 1.440648, 0.353006, -0.448621, 0.898384, 0.390281, 0.584547, -0.217881, -2.378435, 1.155621, 0.800089, -1.396390, 1.286503, 0.127026, -0.257437, 0.639106, 0.143371, -0.455290, 0.187221, -0.766412, 0.533768, -0.344767, -2.099163, 1.662149, 1.249898, -0.461237, 1.105386, 1.017086, 0.128956, -1.242296, 0.388200, 0.036844, 0.059973, -0.360936, -0.232911, -0.751454, 1.359506, 1.272376, -0.691905, 0.024678, -0.614514, 0.576087, -0.285341, -0.712411, -0.866115, 0.219493, -0.667458, 0.297395, -3.397004, 0.779929, 1.371903, 0.710868, -0.948317, 0.485220, 1.393659, 1.578432, -0.396895, 0.623320, 0.804159, -1.946680, -0.118661, 0.296309, 0.770289, -2.094488, 1.354425, 0.846930, -1.323099, -0.255901, -1.112033, 0.881309, -1.045812, 0.231874, -0.437478, 0.227008, -1.548594, -1.383024, -0.498416, -1.314851, 0.645995, -0.184971, 0.301225, 1.426172, 0.333262, 0.369996, 0.477147, 0.428016, 0.393985, 1.584549, 0.594897, 0.411753, -1.484976, -0.800685, -0.022960, -1.020552, 0.152559, 1.489777, 0.871866, -0.360478, 0.780749, -2.045890, -0.555319}, + { 0.397902, -0.625628, 1.479387, 0.301508, -1.111580, -0.268341, 1.573557, -1.145249, 0.637864, -0.847365, -1.795448, -0.289333, 2.414314, 2.162613, -0.261415, -0.168199, -0.860304, -0.991795, 0.179852, 1.245093, 0.258291, 0.231043, -0.574224, 0.139197, -0.903825, -0.520385, -0.118809, 0.431198, 1.264804, 1.203976, 0.549401, 1.199434, 1.241233, 0.605376, 0.092087, 0.728034, 1.285359, -0.073010, 1.558317, -1.491558, 2.070826, -0.169041, -1.353781, -0.556507, -0.999211, -0.393171, -1.357439, 0.152901, -0.328406, 1.229994, 2.347155, -0.053017, -0.556455, -1.093065, 0.905515, -1.634576, 0.465455, 0.062382, 0.586577, -2.428869, 0.016895, 1.041459, 0.429108, 0.670191, 2.021802, -0.049661, -1.619991, 1.651106, -2.601614, 0.360174, -0.349763, 0.554840, 0.059825, 1.796347, 1.150188, 0.183160, 0.287071, -0.216400, -1.179182, 0.324511, -1.091342, 0.666005, -0.125617, 0.632509, -0.415586, 1.254706, -0.365042, -0.154315, 0.423750, -0.687698, -1.095811, -0.437080, 1.195237, -0.502768, -0.297017, 0.573047, 0.815506, 0.016211, 0.259915, -1.174870, 0.321185, -0.024461, 0.243258, -0.192603, 0.887272, 0.931584, 0.300058, -0.183879, 0.309701, -1.828334, 1.380724, -0.252967, -0.237349, -0.540729, 1.670534, -0.247425, -0.370222, 0.745058, 0.600605, 0.432842, -0.201970, -1.583855, 0.418849, -0.815864, -0.276003, -0.676250, -0.072936, -0.449164, 0.862817, 0.008487, 0.436551, -1.249150, -0.591659, -0.642105, 0.880850, 0.705326, -0.351558, -0.556165, -0.456567, -0.022146, -0.093462, 0.526523, -0.326691, 0.169439, -0.592688, 0.561000, 0.833284, 1.402720, 0.393110, 0.745189, 1.109875, -0.616299, 0.511503, -0.056702, -1.623536, 0.796917, 0.068542, 0.545954, 0.538066, 0.452050, 0.264712, 0.808458, 2.316365, -1.251816, -1.470128, -0.167181, 1.863362, 0.841509, -1.188357, 0.468992, -0.282439, -1.707706, 1.307675, -0.694134, -1.559336, 0.717897, 0.678974, -1.435963, 1.034485, -0.794434, -0.239942, -0.346986, 0.384528, 1.326524, 0.380102, -0.750890, -0.725756, 0.451464, 0.517938, 1.445675, -1.848911, -1.723534, 0.815476, -1.215246, 1.510624, 1.192425, 0.384347, -1.130144, 1.961066, -0.123552, -0.553472, -1.452633, 0.953591, 0.118772, -0.825222, -0.124089, -1.406725, -0.544679, 0.209230, -0.235874, 1.234162, -0.351002, 0.842394, -1.055806, 2.030265, -0.759735, 0.451925, 0.313142, 1.805153, 0.635674, -0.551841, -0.805381, 0.559676, -0.219827, 0.383242, 0.369866, 1.258649, 1.352083, 1.289509, -1.196115, 0.313936, 0.463391, -0.751866, 0.510596, 1.487680, -0.457503, -0.194005, -2.266080, 2.071722, -1.287911, -1.649169, 0.007173, -1.511061, -0.379841, 1.008682, -1.318822, -1.464255, -1.016002, -0.015871, -0.106886, -2.637326, -0.680773, 1.569122, -0.899328, 0.055442, -1.043027, -0.179923, -1.411653, 1.401585, -0.008668, -1.485639, -0.512759, -1.109846, -0.341646, -2.357267, -0.267082, 0.327114, -0.538263, -1.974607, 0.465478, 0.536107, 0.140605, 0.580848, 0.775572, 0.273671, -0.195684, 0.351589, -0.291344, 0.789389, 0.355494, 1.991824, 0.941108, 1.291807, 0.497956, 0.058046, 0.891124, -1.631686, 0.064557, 1.664873, 0.779738, 1.495963, 0.230727, 0.622008, -0.937111, -0.797877, 0.378265, 1.028295, 1.104523, 0.206274, -1.272290, 0.163572, 1.252883, -0.280044, -0.326013, -1.691937, 0.353829, 0.373003, 1.611550, 1.869360, 0.743680, 0.312009, -1.045734, 0.114571, -0.721438, 0.059467, 1.173317, -0.832717, -1.434169, 0.212966, 0.152695, -0.675706, 0.239844, 1.110258, -1.027962, -2.223228, -0.339359, -0.187397, 1.297618, 0.605033, 0.692649, 0.747547, -0.467109, -0.273467, -0.180523, -1.032680, 0.069647, 0.786971, -1.344939, -0.014145, -0.399295, 0.567165, -0.577537, 1.722423, 1.418422, -1.055373, 0.218069, 0.149612, -0.097183, -0.675311, 1.160755, 0.006216, -1.015604, -1.597331, 0.247162, 1.644854, 1.297949, -0.972633, -0.454446, 1.034320, 0.746576, 0.074242, 0.498527, 0.993786, -0.900211, -0.510987, -0.492017, -0.434712, -0.128737, -0.939523, 0.401896, 1.181159, 0.718623, -2.541697, 0.211067, 0.934952, 0.243785, 0.239564, 0.245031, -1.016884, 1.873756, 0.346441, -0.965325, -1.046962, 0.028684, 1.109325, -3.236459, -1.249434, -0.215591, -0.346796, 0.815893, -0.380468, -1.168015, 0.968293, 0.846781, -1.554854, 0.660721, -0.196492, -2.529359, 1.104557, 1.068576, -0.912981, 0.647836, -0.673273, 0.202953, -0.746167, 1.391816, -0.367632, -0.423983, -1.096837, -1.213978, -1.650027, -2.154068, 1.085110, -0.065280, 1.095219, 2.160916, 1.133895, 0.605502, -0.037332, -0.914821, 0.155807, -0.375078, -1.039768, -1.761924, -0.659202, 0.487244, 1.168084, 2.082662, -1.359603, -2.239086, -0.780609, -0.186767, 0.145168, -0.324051, -1.124557, -0.609289, 0.918961, 1.341877, -1.145339, -1.604142, -0.692339, 0.595833, 0.622823, 0.266690, 1.505500, 0.768237, -1.063251, -0.101952, -0.944630, 0.564766, 1.827564, 0.734241, 0.442886, 0.156192, -1.060690, 1.027479, 0.600775, -0.647523, -1.642485, 1.056724, 1.224363, 0.306832, -0.474383, -0.625286, -0.881909, 1.572986, -0.575539, 1.312308, -0.621236, -1.218176, -0.914801, 1.097045, -0.570638, 0.546480, 0.230379, -0.742362, 1.354333, 1.278417, -0.165027, -0.072332, 1.098148, -1.113943, -1.402935, 0.880472, -0.323580, -0.377257, -0.211428, 0.600710, -0.267630, 0.655203, -0.625052, -0.231555, 0.426684, -0.339672, 0.645270, 1.746541, -0.159183, 0.438685, 0.209977, 0.219198, 0.312064, -1.490843, 0.051519, 0.965100, -1.210808, -0.688722, -0.824444, -1.447609, 0.836103, -0.080510, 1.336200, 0.320610, 0.861792, 0.221703, 1.906374, 0.981361, 0.573299, 0.621737, 1.256313, -0.980522, -0.324407, -0.799707, -0.527238, -0.749697, -0.518749, 1.385509, 0.296353, -1.193576, 0.898063, -0.815179, 2.012119, -1.822363, 1.315985, -0.943272, -0.308327, -3.180191, 0.030982, 0.033757, -0.227730, -0.557081, 0.087957, -0.158858, 0.732622, -0.730323, 0.839778, 1.263403, 0.201684, 0.478520, 1.391217, 0.429208, -1.926970, 0.444913, -0.253590, 0.783124, 0.149794, 0.228818, -0.156759, 1.565686, 1.128065, -0.385326, -0.238820, 0.142572, 1.207330, -0.350904, 0.803233, 0.726274, 0.145972, 0.846257, -0.568462, -1.007236, -0.350368, -0.414480, 0.167306, -1.078522, -0.011083, -1.325884, -0.261677, -0.063001, 0.064699, -0.046340, 1.090827, 1.610452, -0.078146, 0.657580, -0.887938, 1.698157, 0.475013, -0.753172, 0.047510, 0.128340, -0.185470, 2.308815, -0.768362, -0.298944, 1.490169, -0.163181, -0.141706, 0.280293, 0.347666, -0.930147, 1.692237, 0.784575, 0.441540, -1.364817, -1.592082, -1.005267, -0.236132, 0.264326, 1.400481, -0.864173, -0.164374, -0.648073, -0.103964, -0.633422, -0.091832, -0.845128, 0.610313, -0.793220, 0.114684, 1.331711, 0.052275, -0.044252, -1.277283, 0.715250, 0.744954, 0.078848, 1.025515, -0.550467, -1.851244, 0.814695, 1.429012, -0.517363, -0.282072, -0.338155, -0.759759, -2.167563, -0.289156, 0.276747, -1.281504, 0.384948, -0.137668, -0.639828, -0.655429, -1.868230, -0.525978, -3.318033, 2.028107, -0.198462, -1.628217, 0.368521, -0.398997, -0.659896, 0.262710, 1.866975, -0.359355, -0.916458, 0.260492, -0.022290, 1.329419, 0.519441, -1.003110, 0.224461, 0.000708, -0.870572, -2.013021, 0.455899, 0.659418, -1.408089, 0.546824, -1.196154, 0.630183, 0.722417, 1.381391, -1.120544, 0.510466, -0.426731, 0.652140, 0.013611, 1.616731, -0.352046, -0.053897, -1.832929, -0.639912, -0.337219, 1.866480, -0.072241, -0.122027, -0.446886, -0.460639, 1.260563, 0.343270, 1.659025, 1.953304, -0.862370, -1.102291, 0.107293, -0.312064, 0.875453, -1.615332, 2.395746, 0.663640, 0.776950, 0.651915, 2.238382, -0.882837, 0.425103, 0.336348, -1.195239, 0.308997, 1.112996, -1.095769, 1.224501, 1.003981, 0.666561, -0.263300, 0.839102, 0.479109, 1.101422, 0.079921, -0.431181, 0.424569, 0.896718, -0.375499, 1.210316, 0.209991, 0.081365, -0.633965, 0.338000, 0.482959, -0.223752, 0.161142, -1.421300, 0.360435, -0.562725, -2.255239, -0.187742, -0.692581, 0.084831, -0.142436, 0.268714, 0.314078, -0.250118, 0.294570, -0.593531, 1.635043, 1.924079, 0.133923, 1.648445, 0.814732, -0.957051, 0.501103, 2.133228, 0.882361, -0.754572, 0.017249, -0.774283, -1.937786, 1.727056, -1.526170, 0.107468, -0.090990, -1.664206, 1.386554, 0.571319, 1.309265, -0.824381, 0.397706, 0.795643, 1.035703, 0.796255, -1.111539, -0.559384, 0.201687, 0.727894, -0.186225, -2.856054, -0.432620, 0.120702, -0.061352, 0.181169, -0.406681, -0.604765, -0.279922, 0.138639, 0.640739, -0.931177, -2.112040, 0.144120, -0.170148, 0.253386, 0.817774, 1.755317, 0.291607, 0.292368, 1.083997, 0.492946, -1.142132, -0.730558, 0.722754, -1.114944, -0.483674, 1.237506, 0.589123, -0.164140, -0.439675, -1.082012, 0.319133, -0.949891, 0.267695, 0.540682, 1.892502, 0.915960, 0.235131, 0.145682, 0.635065, -0.621037, 0.931392, 0.943104, 0.587557, 0.919953, 1.221641, 0.649709, -0.429679, 1.143710, 0.704110, 0.681591, 1.645936, -0.870068, -0.687080, -0.352319, 1.442036, 0.765700, 0.705972, -0.571633, -0.896662, -1.346071, 0.038369, -0.900158, 0.409980, 0.902031, -1.160114, 1.162613, 1.227467, -1.194573, 1.493758, 0.524206, -1.435843, 0.991254, 0.618583, -0.203432, 0.497358, -0.351674, -0.111591, 0.574600, 1.328734, -0.627848, 0.237703, -1.620735, 0.691644, -1.829404, -0.129348, -1.778855, 1.013611, -0.871972, 0.192941, -1.170202, 0.133178, -0.624322, -0.941917, 0.435955, 0.646856, -0.821544, 1.230857, 1.977842, 1.696647, -0.808502, -1.292378, 0.215458, -0.755800, -1.842436, -0.533982, 0.555028, -1.717735, 1.782895, -0.193736, 0.643441, -1.200487, 1.401901, 0.647254, 0.315923, -0.929332, 1.017438, -0.159385, -0.163197, 1.073068, 2.494771, 0.220851, 1.212367, 0.829879, 0.553959, -1.125298, 0.219472, -0.344191, -0.274845, 0.391239, 0.724445, 0.644183, 1.339640, -2.402907, 1.424422, 0.775488, 0.855621, -0.316442, 0.652609, 0.151223, -0.509427, 0.357319, -0.002232, 0.002625, 1.787257, 0.093730, 0.422814, -0.181495, 0.122268, 0.462504, 0.489205, 0.006345, 1.657085, -1.052014, 0.805784, 0.272965, 0.009273, -1.206407, -0.603380, -0.271340, 0.279851, 2.060154, -0.659178, -0.263021, 1.438617, -1.114851, 0.978198, -0.629626, 0.092254, -0.079602, 0.729486, 0.246264, -1.330521, 0.595567, -0.194329, -0.488868, 1.261218, -0.629127, -0.003524, -0.930757, -0.971893, -0.977347, 0.169135, -0.029851, 0.663033, 1.331198, -0.166863, -1.413124, -0.611232, -1.325887, 0.719540, 0.366036, -0.843728, -0.039725, -0.901228, 0.970152, -1.932931, -1.336615, -1.450713, 0.322657, -0.086283, -1.490028, 1.429576, 2.014214, 0.587086, -0.209670, -0.497042, 0.075194, -1.305046, -1.103764, -0.053643, -0.914243, -0.507178, -0.258858, 0.478769, -1.026318, 0.581566, 0.970539, 1.057537, -1.220953, 1.115451, -2.018055, -0.094590, 0.612631, -1.119480, 0.057983, 0.790750, 0.857275, -0.775829, -0.723215, -0.788819, 0.092315, -1.208597, -0.332328, 0.073370, -0.875584, -1.259870, 1.376252, -0.110302, 0.198944, 0.665233, -1.004277, -2.495070, -0.501481, 0.209519, 2.160294, -0.392717, 0.893331, -0.116144, -1.601647, -0.912129, 0.406116, -0.382399, 0.390812, 0.264827, -2.756296, -1.413604, -1.233068, -0.261524, -0.032756, -0.897102, -1.347869, -1.052447, 0.367772, 0.471368, -0.708269, 1.138336, 0.204978, -0.945817, -0.120756, 0.416951, 1.527039, 0.576882, -0.031194, -1.029366, -0.711289, -1.178913, -0.275569, -0.415667, 0.516198, -0.492818, -0.908636, -0.602793, 0.423466, -2.831839, 0.025080, -0.837435, 0.097479, 0.794901, -0.707969, -1.296508, 0.197815, -0.607117, -0.407268, 2.144266, 1.297526, -0.401619, -0.123520, -1.749741, -0.093029, -0.482218, -0.513170, -0.077495, 1.339276, -1.923275, -0.366532, -0.088114, 1.714944, 0.464533, 2.008305, 1.797857, 0.119683, -1.920210, -0.889408, -0.002820, 0.769199, 0.995564, -0.545528, -1.115026, 0.079013, -0.012283, -1.519053, 0.988466, -0.007880, 1.955811, 1.229000, 0.012550, 0.068846, -0.084205, 0.551803, 0.973551, 0.095191, -1.047018, -1.178344, 0.619286, 0.680781, 1.104758, -0.856137, -0.658829, 0.503207, 0.435084, 1.420897, -0.997445, 1.915613, -0.765488, -1.150219, -0.588657, -0.021214, 1.272808, 0.778202, 0.970973, 0.446273, -0.687227, 0.532673, -0.962006, 1.416638, -0.120991, 1.212373, -0.848133, 1.363248, -1.024722, -0.540119, -0.063279, -0.554893, 0.825082, -1.861743, -0.279161, 0.759229, -1.919250, -0.389236, 0.225432, -0.155800, -0.644842, 1.005462, -0.331361, -1.276624, 0.421900, -0.934115, -1.028485, 0.188554, -0.060705, -1.971242, -1.104679, -0.461934, 1.194904, 1.355721, -0.498667, -0.087895, -0.341180, 2.152280, -1.156931, -1.297162, 0.159961, -0.371560, -1.660581, -1.718519, -1.173714, -0.388387, -0.710685, -0.665281, 0.534684, 0.922758, -1.603039, 0.722145, 0.713343, 0.295906, 0.004487, 1.232303, -0.725855, 1.200933, -0.365656, 0.709004, 1.516460, 1.978608, -0.862091, 3.220235, -0.287797, 1.246924, -0.955292, 1.563985, 0.389392, -1.152659, -0.386489, 1.415505, 0.819921, -0.490103, -0.640921, -1.649100, 0.036991, -1.168213, 0.180131, 0.030534, 0.343469, 1.730103, 1.306038, -1.120715, -0.023258, -1.067802, -0.230431, -0.638243, -0.275032, -0.195180, -0.498887, 1.328472, 0.250918, -0.403072, 0.221525, 0.154046, -0.355871, 0.005889, -0.071270, -0.213476, 0.235303, -2.103062, 2.674556, -0.930435, -0.195183, 0.656623, -0.324090, -0.195452, 0.479278, 0.719781, 2.332605, 0.577367, 0.472275, -1.442480, 0.500991, 0.473953, -0.122388, -1.187577, 0.397951, -0.641310, -0.121393, 2.176812, -0.327258, -0.606647, 2.223547, -1.237120, -0.992715, -0.159497, 0.455373, 0.156582, 3.120859, 2.264301, 0.031816, 0.113769, -1.799282, -0.510779, 0.020287, -0.573934, 1.441873, -1.582964, -1.314808, -0.905121, 1.751048, 0.211886, 0.279688, -0.031168, 0.807837, -0.179264, -0.558977, 1.561998, 0.061429, -0.648085, -0.011632, 0.901130, 0.539795, -0.062280, 1.037842, -0.069247, -1.358977, -0.727844, 1.373096, 0.268221, -0.502699, 1.203040, 0.291188, -0.304377, 0.260948, -0.728182, 2.210609, -0.499431, -0.069824, 1.122771, 1.425929, -0.205414, 0.013548, -0.195850, 0.313866, -1.243809, -0.439834, -0.637609, -0.428886, -0.933359, 0.263488, 1.076910, 1.798448, 1.718117, -0.691431, 1.140254, 1.306156, 0.264880, -0.426295, -0.483738, 0.147290, 0.135848, 2.367270, -0.874218, -0.389739, 0.222940, -0.602368, 0.550388, -0.423112, -2.834760, -0.251033, 0.491035, 0.743647, -0.811746, -1.483979, 0.403688, -0.964126, -0.188674, 0.413081, -1.378762, 1.791452, -0.800096, -1.594639, 0.624772, 1.007449, 0.952239, 0.375546, -2.358524, -0.239566, 1.040509, -0.578055, -0.157878, -1.377931, -3.109737, -1.884068, -1.361481, 2.111804, -0.822966, 0.512906, -0.462270, -0.117832, -0.761100, 1.473985, 0.373687, -0.016655, -0.115666, 0.389894, 0.210412, -1.374144, 0.536187, 0.610932, -1.142081, 0.103665, 1.171672, -0.466920, -0.565776, 1.228711, -0.592833, -0.230855, 0.479654, 0.407419, 0.053162, 0.203749, -0.949128, 0.899117, 0.950011, 1.560256, 0.155268, 1.120049, 0.977134, -0.386127, -0.947654, 0.744135, 0.709754, 0.399837, 1.146906, 0.157047, -1.215089, 0.555536, 0.924675, 0.847462, 1.943426, 0.415244, 1.114699, 1.344164, 0.988261, 0.051285, -1.045561, 0.714125, -0.268082, -2.060783, 0.927242, -0.984802, 0.685616, -0.263042, 0.018238, -1.561641, -1.298827, -1.418777, 0.895254, -0.466107, -0.096130, 1.201377, 1.365423, 1.279658, -0.265955, 0.066162, 0.274351, 1.176118, 0.053008, -0.422437, 1.462755, -3.015315, -1.492427, -2.527809, -0.010963, 1.307484, -0.851646, -0.589602, -0.004985, -0.441831, -0.298692, -2.216329, -0.187479, -0.547348, 1.658710, 1.555562, 0.308208, 0.473002, -0.749534, -0.787369, -0.514901, -0.920756, 1.053708, -0.569274, -0.059521, -0.700414, -0.625122, 0.601374, -0.012728, 0.250269, -1.275045, 0.364849, -0.171555, -0.423571, -0.985311, 0.591574, -0.557575, 1.327642, 1.316166, -0.978657, 0.375612, -0.875736, 0.190580, 2.040755, -0.013696, -0.223093, -0.495197, -0.383582, -0.728658, 1.316873, -0.013236, 1.326230, -0.239358, 0.028608, -0.312866, -1.183085, 0.066513, -0.795607, -0.631752, -0.790130, 1.754964, -0.535769, 0.351556, 0.436180, -1.531465, 0.104114, 0.548718, -1.822194, -0.585365, 0.782286, -0.702233, 0.305163, 0.045526, 2.147397, 0.167095, 1.054680, -1.318063, -0.082929, 0.044461, 1.798332, -0.401105, 0.254712, -0.490336, -0.922367, -1.598941, 0.176974, 0.792304, 0.190157, 0.836363, 0.632260, -1.421667, -0.166150, -0.705454, -0.117918, -0.114645, -0.494666, -1.964028, -1.483485, -0.805194, -1.124968, 0.752185, -0.445609, -0.539539, 1.082037, 0.374930, 0.157324, 0.057473, 0.996430, -0.901272, -0.010872, 0.349762, -0.008421, -0.625017, -0.035655, 0.043201, 1.032874, 0.296900, 0.806917, 0.511126, 0.097089, -0.824277, 0.981837, -0.869999, 0.522362, 0.696053, 1.657134, -0.153059, -1.430641, 0.881273, 0.229371, 0.115647, -0.928265, -0.179038, 2.032038, 1.416396, 0.847308, -0.606086, -1.861907, 0.252192, -1.369171, 1.981785, -1.321295, 1.073320, -0.921769, -0.445751, 0.269134, -0.611617, -0.365908, -0.236242, -0.098734, -0.806022, -0.215842, 0.620205, -1.132795, 0.961762, 0.208385, -0.242921, 1.075466, -0.974263, -0.572946, 0.386050, -0.865346, -0.021480, 0.992734, 2.288755, -0.545419, 0.575367, -1.288827, 0.574643, 1.096143, -2.253523, -0.203932, 0.463036, -0.921544, -0.731187, -0.520028, 1.360932, -1.799895, 0.486349, -0.886007, -1.858305, 0.403362, 1.408571, 1.119234, -0.216637, 1.955386, 1.244642, 1.186321, -0.833162, 0.761052, 1.714296, -0.421925, 1.328339, 0.165691, 0.057056, 0.212240, -0.725287, -0.448622, -0.707221, 0.739069, 1.175328, -0.030339, 0.391110, 0.324313, 1.234727, -0.611348, -0.135203, -0.217118, -0.575642, -0.481307, 1.614949, -0.743329, -0.776322, 0.907290, -0.557254, -0.626826, -0.460979, -0.029481, 0.218129, 1.062821, -1.269559, -1.773411, 0.439020, -1.968440, -1.873107, 1.116506, 1.341182, -0.472738, -0.563285, -0.115501, -0.028733, 0.684597, -0.404609, -1.548671, -2.754110, 0.192049, -0.262183, 1.545758, -1.166935, 0.317727, -0.813394, 0.093455, -0.594494, 2.243908, 0.862889, 0.494756, 0.329103, 1.242202, 0.092987, -0.065457, 1.130374, -0.005381, 1.127514, -0.491244, 1.041776, -0.343603, 0.471847, -0.850555, 0.944268, 1.606235, 1.358560, 0.207087, -0.551920, -0.391832, -0.278153, -1.024869, 0.929067, -0.903400, 1.154206, -0.290539, 0.465979, -0.949779, -1.229331, -0.324859, 1.852412, -1.528874, -1.374022, 0.659562, 0.148540, 1.298361, 0.355546, 0.898985, -0.787030, 0.885879, -0.180930, 1.003042, -2.142610, -0.752738, 1.027719, 1.933525, 0.583066, -0.725643, 0.062547, 0.224479, 0.484880, -0.500071, 1.590852, -0.012077, -1.138220, 2.307087, 0.058780, 1.109037, -0.340743, -0.375280, -1.026863, 0.261883, -2.873732, 2.599088, -0.026834, -0.090668, 0.096925, -0.106037, 0.429530, 0.274213, 0.287082, -0.322930, 0.637699, 1.133164, -1.005047, 0.562509, 0.107756, -1.314345, 1.550069, 1.746011, -0.023739, -1.145663, -0.572618, -0.091766, -0.073645, -0.867268, -0.086424, 1.240232, 1.290610, 0.792627, -0.917114, 0.207297, 1.519323, 0.543178, -0.904294, 0.029228, 1.491327, -0.708791, 0.584278, 0.394101, 0.170791, 1.665265, 0.679291, 1.128493, 0.518032, 0.090865, -0.205841, 0.175440, -0.304879, 1.213930, 0.133233, 0.307538, -0.343509, -0.476510, 0.720584, 0.086064, -0.123170, -1.508930, 1.664220, -0.909256, 0.581730, 0.326905, -0.628290, -0.865279, -0.269337, 0.431555, -0.912122, 1.115049, 0.462110, 0.109722, 0.488445, 1.570567, -0.777412, -0.337776, 0.012234, -1.319299, -0.999330, 0.789943, -0.802324, 0.132238, 0.701228, 1.549307, 0.330899, -0.354603, -1.188475, -0.066450, -1.725475, -0.011502, 1.729350, -1.740283, 1.989218, 1.483074, -0.302512, -1.929752, -0.073134, -0.519722, -0.812547, -0.894488, 0.209302, 0.286915, 1.759358, 1.188033, 0.277531, -0.786866, 1.675290, -0.795249, -0.987034, -0.498810, -0.327979, -0.772105, 1.690472, -1.095643, 1.099586, -1.285466, 1.745408, -0.007676, 1.599954, -0.126218, 1.800575, 1.307515, -2.675705, 1.107394, 1.138512, 0.655565, -0.690958, -0.628045, -1.093270, -0.327841, -0.569912, 0.407510, 1.936694, 0.420488, 1.439300, 0.732885, -0.644625, 0.328560, -0.024258, -0.400122, 0.028204, -0.074894, -0.121787, -1.384298, -0.068262, -1.236813, -0.372484, -1.394397, 0.340848, 0.994900, 1.286134, -0.078777, 0.227388, -1.856870, 1.666336, 0.920616, -0.861653, -1.058923, 0.398428, 0.227442, 1.014405, -0.959578, 1.027706, 0.443570, 0.195949, -0.031804, 0.742083, 0.647662, 1.159854, -0.768153, 0.425177, -2.734565, -2.635970, -0.776466, -0.339134, 1.609774, -0.053368, 0.189059, -0.369728, 0.546454, 0.197936, 0.552730, -0.326067, -0.353512, -0.998867, 2.202140, 0.526449, 0.008358, -0.163653, -0.701090, -0.970405, -1.159152, 1.578912, -1.053726, 0.644994, -0.351175, -1.224443, -1.880515, 0.584871, -1.526418, 0.667879, 1.722451, 2.405367, -0.089798, 0.896519, -0.932062, -0.746178, -0.066302, -0.121282, 0.723257, -1.147001, -0.705364, -0.148270, -0.727830, -0.435181, -1.857304, 1.025615, -0.247655, 0.170963, 0.630386, 2.019815, -0.051581, -2.396340, -1.489793, -1.139267, -0.356815, -1.507095, 0.357992, 0.120801, 2.656139, 2.205944, -0.633099, 1.421507, -0.737112, -0.389680, 0.595222, 0.423990, -0.410285, 0.764676, 1.641639, -1.932271, 1.527080, 0.348338, 0.358684, 1.234703, -0.963635, -1.372566, 0.561248, 0.380021, 0.468774, -0.642245, -1.804695, 0.931268, 0.505565, -0.293890, 0.824634, -1.447939, -1.487093, 0.644569, 1.273257, -0.388113, -0.490511, -0.311814, 0.525488, -0.322727, 0.746299, -0.013972, 0.951541, -0.878458, -1.195304, -1.266439, 0.754591, -0.563294, -0.032327, -1.933672, -0.025318, 0.461708, 0.515547, -0.509287, 0.523600, 2.074127, 0.314889, 0.026121, 2.087113, 1.417964, 0.676282, -0.906987, 0.359946, 0.443624, -1.704957, -0.801375, 1.197335, 0.134621, 0.939449, -0.451562, 0.022929, -0.238121, 0.312455, -0.523777, 0.055907, 1.107461, 0.648612, 0.296204, 0.663174, 0.371537, 0.206355, -0.883969, -0.480764, 0.263936, -0.648345, 0.665095, 1.004315, 2.189885, -1.445895, 0.482572, -0.896395, 0.307800, -1.529635, 0.637840, -2.313832, 1.417485, -1.458698, 0.272801, 0.887301, -2.055120, 0.223960, 0.641071, 1.009966, 0.290074, 0.794865, -0.868054, 0.146543, -0.843323, -0.051535, -1.574116, 0.805259, 1.050735, -0.025870, -0.498268, 1.040492, 0.544859, -0.197614, 0.067346, 1.526364, -1.696052, 0.333217, -0.842155, -1.109141, -0.688241, -0.184381, -0.519930, -0.514361, -0.645382, -0.427517, 1.360512, 0.453192, 0.348188, 0.114309, -1.191802, 0.190292, 1.212574, -2.157988, -0.571602, 0.052900, -0.474125, -0.350652, -1.390604, 1.297446, -0.266244, -0.172165, 0.261631, 1.477623, 1.605108, -0.551839, 2.929697, 1.124276, -1.001032, -0.176865, 0.655861, -0.406324, 2.124618, -2.635197, 1.687983, -3.004538, 0.432338, 0.469672, 0.820505, -1.239035, 1.071978, -0.382358, -1.359175, 2.171713, -0.742410, 0.621414, -0.114376, -0.025554, 0.894191, -1.923222, -0.996807, -0.231399, -0.009685, 0.832969, -1.151006, 0.282607, 0.241059, 0.191672, 1.095477, 2.968779, -0.611573, 0.547394, -0.938493, 0.693095, 1.201304, -0.671215, -1.791842, -2.898029, -1.615832, 0.331113, -0.301897, 0.178059, 0.561332, 0.587000, 0.929405, -0.661530, -2.917735, 0.902986, 0.390727, -0.605329, 0.618787, 0.938493, 0.864314, -0.104563, -0.324752, 0.921397, 0.418408, 2.499801, -0.443724, 0.369828, -0.657718, -0.717587, -0.851624, -0.102751, 1.974144, -0.353687, 0.129317, -0.014258, -1.786300, 1.231025, -2.190894, 1.353528, -0.539742, 0.366985, -0.491186, -0.749337, 0.468829, 0.726582, 0.901876, 1.689844, -0.015404, 1.291313, -0.652228, -1.617892, -0.407098, 0.811635, -0.100882, -0.505936, 0.064013, 0.190718, 0.741500, -0.509659, -0.736679, -1.423419, 0.480006, -0.536431, -0.921670, -2.029162, 0.199977, 0.695036, -1.274866, 0.921030, -0.326365, -0.755873, 0.159117, 1.810865, 1.353728, -1.020579, -0.990970, 0.066096, -2.151225, 0.651172, -0.150863, -0.340168, 0.980596, -2.188121, 0.543628, 0.557794, 0.245082, 0.781492, 0.607996, 0.828434, -0.962132, 0.024858, -0.379184, -0.733837, 0.834223, 0.386350, 0.224020, 0.471652, 0.734388, -2.240056, 0.658683, -0.123757, 1.223046, 0.117629, -0.108488, 1.669346, -0.994313, -0.033688, 0.518057, 1.067093, -1.768806, -0.011158, 1.266573, -0.811456, -0.505756, 0.506981, 0.880940, 0.972582, 0.212036, 0.167964, -0.502662, -1.862485, -0.901330, -1.061944, -0.674017, 1.530106, 1.535317, -0.003357, -0.629021, 1.311750, -0.362371, -1.117139, 0.733495, -0.825549, 0.699071, 0.262661, 0.557515, -0.340045, -0.271981, -0.245013, -0.378185, 0.455393, 1.183034, 0.757507, -0.236184, -0.683246, -0.636849, 0.020856, 1.240710, 0.248111, -0.684862, 0.221066, 1.521175, 0.544850, -0.596628, -1.598467, 0.875317, 1.252968, 0.861524, 0.462880, -0.044788, -0.473580, 0.748585, 0.657940, -1.803560, -0.453853, 0.906142, 1.871403, 0.001191, 0.332404, 1.610611, -0.259326, -1.566393, -0.853359, 2.262617, -0.480641, 0.716550, 0.126798, 1.165830, -0.076613, -2.341905, 0.671848, 0.108832, -0.016483, -0.613855, 0.102640, -0.847983, -0.008419, -0.666179, 0.085670, 0.512744, 1.182312, -0.373375, -0.121694, -1.064701, -0.171300, 0.009237, -0.442841, 0.219998, -0.033954, 0.345724, -0.578005, -0.512361, 1.049148, -0.909180, 2.146466, -1.547479, 0.508790, -1.448311, 0.957618, 0.170861, -0.497308, -0.406293, -1.400490, 0.742989, 0.522649, 1.331268, 0.270015, -0.844411, -1.163259, 0.991921, 1.429273, -0.734774, -1.062894, 0.750652, -0.873146, -0.340084, -0.121451, 0.688241, 1.159015, -0.255511, 0.604745, -1.202697, -0.677825, 1.992253, -1.045228, 0.532146, -1.159546, -0.924687, 1.259292, -0.273964, -0.948197, 0.641389, -1.272496, -0.463940, -0.002209, -0.058116, 1.046463, -0.291613, -1.898186, -0.650218, -1.426814, -0.125597, -0.182237, -0.010218, -0.160333, 0.866401, -0.827633, -0.397214, -1.539608, 1.606753, -1.648968, 0.064658, -1.670380, -0.818662, -0.802417, -0.007865, -1.395617, 1.410061, 0.065654, -0.389685, -0.394439, 1.194661, -1.361651, 2.210598, 0.876620, 1.191854, 0.431486, 0.190191, -0.659261, 0.870055, -0.951275, 0.901923, -0.675700, -0.043060, -0.800696, -0.437791, 1.352623, -1.093744, -0.318814, -0.544211, 0.774899, 0.767785, -0.403334, -0.060868, -1.618558, 0.093884, 1.317460, -0.051572, 0.335705, 1.947734, 0.095813, -0.504450, 0.322079, 1.038718, 0.642387, 0.597046, -0.312992, 0.580084, 1.042214, -1.409265, 0.664566, -1.119946, -0.834135, 0.352572, -0.916297, -0.079989, -0.363696, 0.366679, -1.521041, 0.285981, 0.403917, 1.516945, 1.553444, 0.018757, -0.829727, 0.221342, -0.322714, 0.610327, -0.340918, -0.338989, -1.050245, 1.755176, 1.039579, 2.109206, 2.012368, -0.466858, -0.888285, 2.066537, 1.778743, 0.637035, 0.119061, 0.612273, 0.257950, -0.530613, -0.403464, 0.646749, -0.025139, 0.199194, -0.344601, 0.355487, -2.023522, 0.377586, 0.302126, -0.450572, -0.405818, -1.151762, -1.440746, -0.663230, 0.106122, 0.155294, -0.863698, 1.015369, 0.837256, 0.830364, -0.812796, -0.356073, -0.241617, 0.148976, -0.040264, 1.562158, -1.232786, -1.710810, -0.574893, -0.275699, -0.160778, 0.547746, -0.423288, -0.102024, -0.989349, 0.504044, -0.379042, 0.709743, -1.407546, -1.218258, 0.266243, 0.057741, -0.218605, 0.081067, -0.322416, -0.344185, -2.073922, -0.351984, -1.641033, -1.584123, 0.029263, 1.124833, 1.777017, 0.229199, -0.848880, 1.048581, 0.882925, 0.875108, 0.355294, -0.908931, -0.591330, -0.162301, 0.579405, 0.428711, -0.264838, -0.179268, -0.798161, 1.090056, 1.308645, 2.271164, 0.951394, -0.566985, 0.003633, -1.534758, -0.513952, -0.526102, -0.748872, -1.113273, -0.076867, -1.795030, 1.480317, 0.597119, 0.481580, -0.769170, 0.069823, 1.365360, -0.314300, -0.564640, -0.162384, 0.143921, -0.440087, -1.629171, -0.338432, -1.095155, -1.335774, 0.315612, 2.658962, -3.545459, 0.366555, 0.458854, -0.585870, -0.163190, 1.094791, 1.027735, -0.851878, -0.584315, -0.272664, -0.468000, 1.679178, 0.065369, 1.178473, 0.114016, -0.917252, 0.614730, 1.247345, -0.852123, 1.724295, 0.423845, 0.228764, 0.309849, -1.689854, 1.387500, -0.346404, 0.342243, 0.516343, -0.562844, -1.173812, -1.635971, 0.987711, 1.778350, -1.589562, -0.149500, 0.746067, 1.285770, 0.265498, 0.332839, -1.344064, 0.405747, 0.876179, 0.643592, 0.679825, -1.996853, 0.840229, -0.308427, -1.354843, 0.994137, -0.167879, 1.821004, -0.200148, -0.468580, -3.071407, 1.842265, -0.014271, 1.796380, 1.966879, -0.754317, 0.279862, 1.390972, -0.677753, 2.123153, 0.091538, 1.185210, -0.428905, 0.180440, 0.193139, -0.250162, 0.068827, 0.439453, -0.375087, 0.815952, -1.461931, -1.484343, 0.155991, -0.343934, -0.674934, -0.757111, -0.890701, 0.127912, -0.881186, 1.854031, 1.150320, 0.185665, 0.343833, 0.000591, -1.842694, -1.330324, -0.747392, 1.833260, 1.602708, -1.778736, 2.294672, -0.920821, 0.427335, 0.054717, -1.703291, -0.594606, -1.190024, 0.317248, -2.270661, 0.043405, 0.012945, 1.078138, 1.351644, -0.469334, -1.056596, -0.917601, -0.792745, -1.065556, 0.598509, -0.717723, -0.641035, -1.417798, 0.204366, 0.736533, -0.632759, 1.024566, 0.433833, -0.871351, 0.173831, 0.546875, -0.559636, -1.199808, 0.541229, -0.404993, 1.070378, -1.871046, -0.237491, -0.922447, 1.178701, 0.562200, 0.072855, -0.022191, -0.445932, 0.729217, 1.187591, -0.103484, -1.848249, 0.154510, 1.689602, 2.042302, 1.754312, -0.558963, -0.998207, 0.705210, -1.184328, 1.749835, -0.709990, 1.140654, -0.180331, 0.627150, -0.371165, -0.665236, 1.296182, -1.229416, -0.169815, 0.848362, -0.216884, 1.686927, 0.533186, -0.235374, 0.728526, -0.703474, -0.968710, -1.259308, -1.604750, 1.034491, 1.644409, 0.447905, -0.848401, 0.051421, -0.166443, -1.747666, 2.819800, 1.718565, -0.861314, -1.148654, -1.167886, 1.067937, 0.128287, -0.088797, 0.756557, -0.699210, -0.897109, 0.536279, -0.301925, -0.367722, 1.285569, -0.377353, -0.721170, -0.750814, 1.483239, -0.930610, -0.570279, -0.145981, -1.246912, 0.418122, 0.059250, -1.554485, -0.266390, 1.091305, 0.446368, -1.524833, -0.943701, -1.070007, 0.494341, -0.974884, -0.598197, 0.280411, 1.012184, 1.705875, -0.459727, 1.430849, 0.262635, 0.383192, 0.101176, -0.457649, -0.455794, 0.666279, -0.855365, -0.587374, 0.804247, -1.136523, 0.031035, 0.299125, -0.293908, -1.700541, -0.767805, 0.310221, 0.573647, 0.060023, 1.220455, -0.486062, 0.806113, -2.107617, 0.726239, 0.083309, 1.725120, 0.844222, -0.056153, 1.323175, -2.387690, -1.390260, 0.531682, -0.266384, 0.138585, 0.918953, -0.017883, 0.681578, -0.736954, -0.686526, -0.926517, -1.220135, 0.039758, 0.775645, -0.644901, 0.833274, 1.274415, -1.721664, -0.888778, -0.231867, 0.235912, -0.777624, 0.732187, -1.136244, 1.161911, -0.122186, 1.219785, 0.002935, 0.262351, -0.947834, -0.443407, 0.448637, -0.182164, -0.624199, 1.178681, -0.301519, -0.927613, 0.358561, 0.723395, 1.284822, 0.020915, -0.921297, 1.415148, -0.028887, 1.260009, -0.616478, -0.850232, -0.606855, 0.319328, -0.777257, 0.763812, -0.773171, -0.074065, 1.024682, -0.021542, 0.924040, 0.147887, -2.540340, 0.787905, -2.202209, 2.183229, 0.078587, 0.676481, 1.319769, -1.229369, 1.169221, 0.019099, 0.467532, 0.403137, -1.267605, 0.220141, 0.015981, -0.474303, 0.385978, 0.514755, -1.218006, 0.085768, 0.764566, 0.157970, 0.928002, -0.649639, 0.777782, 1.382949, -0.020832, 1.595039, -3.048661, 0.944558, -0.514045, 1.025427, 1.469392, -0.109880, -1.603322, 0.156127, 0.336927, 2.740097, 0.789550, -0.202094, 2.100307, -0.176833, -0.348746, -0.780790, -0.890921, -0.099375, -0.395321, 0.433843, 0.598821, -0.830188, 0.946844, -0.577158, 0.877350, -0.419625, 0.407801, -0.383112, -0.738779, -1.457638, -0.874808, -0.083943, -0.386337, -0.615102, -0.110938, 2.399594, 0.138209, 0.805105, 1.154359, 0.646286, 1.418561, 1.281643, -0.001071, -1.380921, 2.108154, 0.416818, 0.040940, 0.231086, 0.752446, 0.874355, -1.580034, 0.761316, 0.928182, -0.698029, -1.780215, 2.482449, 0.833725, 0.777575, 0.342206, 0.069072, -0.993652, -0.401144, 0.152109, -0.571896, 0.217344, -2.014789, -1.370766, 0.271145, -0.958365, 0.304366, 1.863107, -0.705185, 1.667054, -0.869407, 0.360849, 0.798730, 1.170564, 0.873055, -0.885686, -0.104314, -0.152820, -1.332623, -0.674574, 0.009500, -1.467141, 0.426071, -0.766816, 1.775136, 0.910604, -0.261173, -0.525031, -1.178618, -0.757797, -0.018717, -0.431502, -0.283731, 0.610062, -0.865533, 0.356493, 1.860568, -1.418370, 1.200678, -0.682103, -1.123933, -0.912822, 0.266417, 0.761528, -0.299052, 0.390178, 0.374262, -0.690621, 0.664783, -0.585657, 0.080661, -0.481833, 0.413695, -0.491090, 2.034048, -2.579438, 1.133765, 1.114850, -0.349869, -0.783117, 0.287694, -0.214938, -0.403892, 0.183720, 0.508172, -0.300976, 0.263131, -1.238047, -1.103012, 1.237580, 0.475203, 0.051850, 1.736512, 0.950980, -0.957073, 0.462025, 1.186640, -0.442101, 0.075753, -0.847180, 1.593524, 1.952048, 0.303155, -0.637542, 1.611378, -1.155672, 0.805596, 0.236460, 1.268958, 0.826291, -0.521109, -0.339635, -0.841301, 1.659363, 0.465622, 0.511912, 0.384712}, + { 1.488284, 1.330846, -0.371249, -0.706700, -0.128159, 0.316970, -0.222012, 1.147926, 1.074494, -0.637062, 0.645820, 0.424690, 0.354252, 2.004198, 0.211832, -1.055273, 0.540119, -0.940722, 0.629497, 0.425959, -0.821599, -0.958282, 1.062192, -0.716362, 1.112680, -0.666876, 0.418390, -0.185154, 0.596687, 0.479556, -0.831553, -0.227498, 1.544578, 1.156180, 0.989153, -0.042450, -1.442718, -0.587043, 1.858011, -0.178001, -0.960765, 0.052231, -1.499229, 0.351036, -2.049671, 0.647956, 1.755111, 1.333532, 0.819052, 0.249685, 0.106214, 0.545834, -0.180527, 1.371128, 0.973645, -0.220022, -0.330115, 0.453680, -0.305798, 0.008971, -0.969774, 1.082547, -1.058692, -0.475529, -0.055859, 0.894912, -0.235552, 0.659295, -0.283773, 0.148231, -0.590003, 0.998369, 2.745591, 0.092729, -0.763964, 1.401282, 0.380047, -2.029149, 0.699010, -0.610621, -0.151801, -2.760549, -0.478110, 1.721781, 0.153553, 1.151082, 0.731791, 0.377939, 0.415729, 0.709719, -0.155469, 1.220647, 0.660904, -0.862420, 1.319342, 0.504005, -0.329366, -1.166463, -1.182404, -1.994112, 1.179447, -1.509758, -2.109114, -0.367236, 1.618536, -1.059429, -2.462149, 0.118205, 1.528405, -0.578237, -0.425628, 0.907529, 0.531125, 2.254234, 2.074360, -0.633480, 1.329949, 1.125934, 1.944340, 0.341322, 0.215088, -0.755004, -0.723544, 0.288280, -1.372267, 1.247373, 1.176502, -0.911718, 0.379741, 0.893702, 1.406911, -0.179979, -1.021812, 0.220684, 0.636548, 0.521364, 0.768487, -0.491810, 0.014957, 0.005432, -0.014787, 2.777054, -0.022956, 1.207085, -0.462742, 1.101856, -0.864417, -0.640600, -1.250903, -0.120797, -1.380943, 0.916870, 0.468529, 0.363097, 0.179666, -0.112367, -2.044940, -1.696922, -0.419227, -0.605321, 0.130448, -1.158217, 0.888279, 0.152084, -0.595941, -0.244556, -1.835541, 0.053526, 0.850667, 0.757873, 0.816197, 0.986167, 0.211762, -0.263500, -0.554244, 0.790700, 2.296112, 0.559414, 1.450232, -0.529178, 1.441271, -0.744235, -0.615776, -0.491298, 0.222937, -0.858225, 1.559832, 0.507470, -1.184948, -0.989638, 1.792391, -0.683495, 1.609814, 0.022853, -0.665807, -0.065448, -0.708545, 0.096816, -1.596361, -0.302028, -1.020043, -0.013623, -0.597671, -0.670315, 1.102742, 0.677511, 0.155962, -0.033316, -0.280646, 0.497923, -1.033335, 0.373051, 0.560646, -0.618726, -0.285628, 0.463295, 0.652641, -0.223976, 0.444801, -0.732769, 0.345047, -0.301863, 1.172142, -1.427613, 1.106507, 2.281866, 0.049895, 0.686708, -2.283705, -2.065030, -2.146643, -0.488307, -0.960979, 0.277318, 0.358627, 1.233822, -0.138668, 0.161311, 0.244642, -2.000421, -1.477591, -0.524930, -0.178885, -0.350734, 1.376032, -1.524976, -0.495371, 2.303456, -0.155995, 0.069263, 2.487510, 2.691426, 0.183146, 0.051350, 1.506999, -0.327698, 1.740944, -0.903227, -1.490389, -0.838341, 0.670030, 0.799334, -1.150403, 0.577928, -0.210943, -0.078011, 1.724208, 1.110941, -0.428077, 1.687086, -0.219585, 0.595265, 0.264062, -0.279742, -1.581671, -0.606109, -1.112272, 0.335287, 0.743072, -1.347311, -0.658623, -0.673496, -1.277729, -0.653073, 0.547916, -0.621104, -0.930651, 2.807364, -0.070892, -0.581133, 0.529676, 0.611070, -0.197015, -0.953424, 1.066589, -0.065104, -0.125835, -1.346007, 1.649068, 0.540757, 0.159164, -0.579491, -1.737465, 1.283069, 0.597093, 0.260604, -0.431374, 0.602131, -0.854430, -0.617854, -0.942026, -0.186626, 0.073261, -0.998074, 0.304726, 0.718916, -0.033522, 2.173613, -1.447706, 0.866108, -0.486824, -1.275792, 0.421254, -0.739139, 0.637680, -1.348572, -0.146789, -0.521491, -0.259717, -0.368042, -1.691728, 0.304291, 0.185070, 0.825061, -0.141284, -0.402403, -0.712123, 0.753967, -0.462155, -0.453783, -1.315966, -0.193813, 0.069560, -0.578219, -0.709787, -0.301844, 0.488566, -0.768008, -0.552401, -1.061857, 0.094105, -0.828002, -1.140688, 0.326263, -0.222679, 0.554585, 0.229233, -1.356815, 0.592072, -0.047683, 1.034730, -1.066653, -0.696417, -0.248349, -0.282827, -0.615503, -0.099163, 0.932915, -0.116394, 2.404182, -1.306188, -1.291007, -2.419976, -1.102906, 1.350070, 1.665870, 0.944724, -1.271717, -1.256515, 1.633516, -0.187134, 0.426036, -1.911604, -0.115048, 0.369735, 0.065712, -0.197229, -0.043363, 0.015436, 0.161740, -0.503515, 1.104762, 0.151166, -0.057403, -0.328602, -0.266407, 0.390169, -1.375549, -0.072628, -1.422879, -0.026788, 1.352814, -0.791253, -0.254403, 0.081444, -0.356329, -0.723353, 2.302583, 0.241803, 0.296036, 1.984392, 0.796008, 0.618749, 1.420725, 0.032126, -0.743630, -0.246097, 0.536454, 0.152000, -1.087217, 2.426174, 0.015906, 0.275415, 2.234602, -0.376081, -0.686624, -0.866532, 1.773266, 2.695015, -0.232329, -0.301617, -0.211112, -1.271264, 0.238822, -0.493766, -2.439716, 1.040945, -0.188803, 0.765661, -1.683193, -0.464403, 0.715227, 0.616358, 0.134745, -1.047286, -0.936940, -1.233237, 1.875633, -1.380045, -0.280724, 1.117247, -0.319603, 1.157329, -0.435374, 0.652553, -2.026715, -0.792754, 1.281221, 0.145530, 0.056371, 0.985981, 0.111999, 1.095907, 0.458310, 0.500194, 0.106973, 1.977520, 1.103638, -0.571408, -0.175926, -0.236528, -0.537450, 1.429650, -1.968732, 0.810628, -0.306914, 0.163512, -0.379949, -0.051880, 1.420851, -0.850017, -0.326942, 0.047257, 1.310404, -0.608043, -0.081874, 2.195554, 0.908760, -1.108635, 0.813125, -1.255296, -1.443611, 0.624197, 0.478212, -0.797432, 2.253088, -0.759320, 1.115183, -0.029667, -0.777897, 0.791987, -0.531776, -0.228371, 0.186422, 1.055128, -0.407792, -1.172000, -0.585378, -0.098115, -1.067093, 0.530884, 0.135526, 2.428370, 1.499491, 1.278821, -0.270112, 0.899253, 1.185719, -1.276506, -0.868477, -0.847041, -0.864010, 0.919765, 0.915769, 0.553889, -0.553419, -0.026144, -1.073272, -3.356031, -0.161676, 1.541598, 0.112893, -0.255835, -0.364423, -0.717646, 0.458640, -1.558169, -1.007135, 1.120559, 0.547225, -0.814403, 1.819648, -0.653812, -1.207867, 0.505722, 1.640130, 0.463470, 0.101603, 1.078754, -0.575381, -0.191720, -0.882805, 0.547714, 0.714566, 0.447557, -1.193154, -0.512650, 0.713168, -1.260003, -1.499872, 0.085738, -0.085289, -0.686612, -2.104815, -0.673908, 0.668608, -1.421870, 1.266327, 0.462386, 0.101756, 0.602933, -0.709497, 2.599922, 0.259568, -0.892499, 0.134986, -1.129762, -1.250512, -0.614213, -0.708689, 0.596438, 0.774918, 1.041890, 0.545257, -1.597241, 0.922957, -0.791834, 1.010132, -1.028797, -2.165823, -0.780366, -0.424773, -0.988356, 0.102508, -0.089050, 1.080387, -1.048331, 1.371180, -0.404081, 1.847094, 1.459541, -0.158845, -0.832628, 0.545844, 0.139352, 1.477193, -0.539361, 0.455904, -0.241009, 1.411772, -1.478743, 0.134595, -0.298439, 2.133660, -1.245356, 0.778192, 1.548274, -0.160574, 1.636036, -1.721051, -0.529509, -0.965503, 1.400001, 0.764491, 0.581056, 0.642891, 1.139768, -0.364778, -0.854533, 0.758367, 1.223488, 0.150088, 0.835369, 1.495998, 0.999082, 0.241026, -1.091635, -0.670136, 0.437402, -0.979698, -1.066279, 0.159888, 0.022121, -0.811617, 0.351727, -0.686538, 1.669690, 0.766040, 1.542966, 0.758283, -0.377314, 0.017700, 0.314333, -0.677052, 0.927898, -3.142581, -0.825384, -0.611094, -1.687978, -0.068944, -0.305770, -0.230347, -1.308581, -0.550707, -0.309003, 0.049275, 0.865440, -0.398886, -0.394157, 0.232014, 0.623440, -1.052180, -0.577274, 0.579890, 0.474635, -0.198626, -1.058141, 0.429730, 0.730248, 1.189838, 0.420886, 0.538718, -0.219842, 1.551149, -1.145710, 2.733196, 0.496272, -0.560489, -0.666892, 1.060740, -0.031477, 0.902162, -1.023220, 1.082066, -0.229264, 2.568453, -0.971169, -0.253888, -1.264791, -0.595885, 0.110009, -0.248175, -0.050601, 1.165455, -0.804406, 0.338100, -0.174584, -1.392026, -1.276228, -0.192036, -0.643985, 0.713858, 0.040750, 1.350916, -1.697004, 0.536661, 0.926828, -1.830485, 0.403813, -0.983561, 0.996290, 0.604868, -1.261306, -0.916467, 0.896992, 0.136766, -1.049637, 0.244871, -0.155011, 1.429436, -1.207711, 0.238552, -1.366565, -0.107531, -0.551965, -0.037524, 0.468254, 1.041927, -0.409519, 0.904918, -1.365643, 1.612919, 0.796001, 0.666793, 1.900450, -0.020564, 0.499324, -0.131561, -2.954202, -1.208204, 1.424279, -0.418988, 0.449754, 0.121596, 1.311723, -0.479784, 1.438307, -0.381211, 0.979173, 0.491460, 0.682049, -2.475152, 0.255303, -0.950559, -0.503183, -0.132934, -0.556823, 2.605558, 0.197343, -1.789038, 0.634120, 0.033399, -0.758693, 0.168686, 0.628178, 0.804242, 0.573494, -0.356650, 1.053283, 0.699791, -1.106253, 1.898773, 0.675651, -0.335385, 0.107749, 0.769568, 1.026481, 0.135212, -1.660031, -1.205220, -0.512192, 1.340907, 1.036265, 0.530965, 0.360020, 1.340083, -1.315547, 1.738053, -0.837033, -0.547311, 0.541164, -0.146726, -0.925608, 0.200214, -0.466100, -0.476550, 1.026023, -0.984113, -1.113356, 0.008523, 1.304382, -1.468478, 1.928269, 0.865763, 0.773392, 2.220466, 1.946600, -0.523083, 1.065258, 0.603018, 0.692011, -0.159269, -0.311391, 1.111904, -0.730017, 1.756240, 0.002390, 0.791365, -0.476773, 0.549721, -0.577801, 1.122136, -1.082046, -0.309574, 0.441826, 0.193037, 0.747204, -2.036809, -1.237285, 1.479961, -0.617290, -0.352972, 1.160338, -0.723375, -0.105574, -1.067699, -0.945405, 0.548705, 0.595376, -1.946760, -0.317018, -0.348913, 1.065026, -0.756858, 0.807093, 1.046876, 0.696074, 1.662886, -0.473702, -0.591742, -0.236191, 0.976646, 0.429816, -1.031514, 0.524972, 0.918933, -0.458290, -0.936736, -0.827425, -1.491004, 0.869376, -0.086894, 0.185643, -0.582129, -0.767080, -0.079056, 1.784763, 1.005401, -0.008594, 0.859383, 1.217634, -0.450083, 1.052127, 0.572890, 1.032524, -1.150038, 0.187569, -0.048435, -2.569745, 1.196347, -0.938403, -0.506398, -0.177292, 0.000409, -1.179353, -0.362433, 1.669865, 0.174737, 0.676922, -0.543225, -0.870051, 1.096279, -2.339968, -0.490009, -1.951602, -1.238253, -0.137318, 1.015338, -0.520223, 0.909413, 3.127967, 0.937844, 1.377377, 1.234076, 0.835402, 0.209011, 1.641898, -0.217048, 0.399757, -0.075871, -0.305867, 0.949344, -1.648407, -1.668205, -0.494839, -0.485240, 2.044459, 0.506419, 2.242176, -0.194122, 0.293306, 0.485428, 0.072464, -0.042825, 1.169043, 0.160831, 1.362719, 0.625990, 1.199849, 0.492835, -0.783237, 0.618880, 0.973774, -0.221643, 1.327531, 0.125349, -1.420248, 0.813011, 0.904695, 0.780501, 0.391708, 1.472889, -0.073489, 0.964364, -1.995790, 0.057931, -0.274363, -0.902359, 0.301172, -0.931182, 0.171532, 0.309000, 1.311345, -0.579130, 1.441224, -1.680203, -2.368783, -1.400710, -0.025896, 0.715253, -0.672132, 0.687174, -0.357674, 0.056097, 0.056811, -1.199571, -0.152809, 1.431808, 1.030336, -0.036026, -1.724797, -0.628399, -0.222463, -1.151916, -0.384978, -0.642916, 0.132118, 1.395137, -1.119293, -1.101133, 0.706364, 0.253212, -1.222695, 0.996735, 0.784525, 1.668740, -1.218691, 0.992114, -0.115216, -0.937214, -1.412776, 1.347441, -0.037668, -1.921636, -0.305959, 1.232431, 0.002944, -0.523545, -0.454856, 1.635937, 0.730323, -1.217698, 0.826352, -0.822073, -0.674951, -0.358323, 0.233837, -1.852168, 1.088099, -0.012312, 1.330288, -0.242631, 0.522852, 1.057018, 1.630010, -0.782408, -0.872526, 0.638366, -0.530404, -0.066758, -0.925336, 1.376610, -1.461964, -0.784054, 0.087376, 1.797643, 1.571559, 0.060684, -1.409933, -0.481521, -0.883510, 1.256697, 0.283646, 0.754958, 0.304292, 1.687608, -0.301821, 1.153102, -0.873134, -0.535639, 0.169179, -1.655128, 0.280211, -0.449471, 0.456959, 0.321646, 1.154166, 0.505825, -1.371755, -0.358783, 0.245975, -1.493932, -0.178529, 0.524361, 1.506509, -0.388366, 0.780570, -2.596276, 1.722413, 1.004146, 0.946492, 1.416111, 0.338870, 1.023988, -1.408675, 1.476565, 0.279479, -1.404357, 0.306637, 0.786669, -0.897072, -0.159471, -1.132122, 0.230545, 0.087727, 0.382816, 1.102120, 0.736083, 2.330244, -0.103059, 0.186625, 0.007963, -0.428528, -0.659560, 0.738534, -0.709689, -0.545237, -1.738128, 0.410468, 0.126478, -0.019710, -1.130002, -1.951612, -2.220564, -1.076943, 1.062743, -0.067791, 0.531550, 0.916087, 0.227392, 0.906629, -0.742700, -1.377671, -1.022687, -0.072012, 0.751025, -0.338539, -0.119812, -0.437046, 0.148316, -0.137764, -0.415380, -1.126817, 0.659250, -0.837731, -0.045528, 0.821888, 1.401157, -0.953551, -1.213206, -0.585941, -0.527802, -1.804248, -1.716529, -1.782075, 0.933644, 0.004375, 1.022649, -0.220852, 0.937938, 0.617581, 0.918651, -2.484693, 0.924044, 1.042355, 0.963076, -0.548202, -1.268399, -0.899765, 0.221500, 0.280601, 0.286190, -0.688907, -0.400227, 0.644011, 0.780068, 0.036821, -0.239860, -0.254828, -0.243585, -0.459240, -0.125286, -1.511965, 0.913040, -0.305719, -0.119078, -1.224240, -0.273243, 0.172479, -1.175873, 0.928754, 0.262145, -0.265970, -0.956604, -0.630759, -0.738529, -1.028837, -1.724607, 1.196571, 0.103293, -0.612860, -0.781090, -2.612334, -0.788824, -2.389518, -1.660816, 0.842600, 1.156197, -0.580387, -0.316903, -0.735455, 1.184250, 1.024445, -1.837848, -0.493217, 0.128950, 0.708576, 0.972220, 1.083859, 0.196282, -1.049510, 0.074637, 0.583425, 0.833917, -1.146355, -0.201176, -0.346809, -1.844215, -0.366876, 1.406471, -1.441287, 0.333678, 0.003082, 0.026881, 1.983215, 1.142308, 0.665265, -1.108432, 0.481229, -0.221803, -1.833930, -1.582469, -1.138715, -0.441722, -0.148985, 0.148732, 1.642432, -0.300734, 0.282558, -0.747683, -0.402012, 0.931267, 0.219382, -0.644117, -0.723114, 0.296524, 0.697054, -1.056046, 0.078200, -1.636521, 0.712419, -1.018593, 0.010076, -0.697246, -0.066990, 0.796035, 0.110276, 0.652754, -0.154726, -0.162200, -0.322558, 0.340374, -2.566428, 0.295037, 0.304982, 1.214574, 0.209637, 0.486313, -0.504054, -0.677925, 0.143669, 0.689036, -0.540443, 0.268655, 0.466998, -0.482852, 0.654541, 0.381986, 0.578551, 0.594768, 0.394276, 0.312636, 1.981718, 1.517838, 0.355472, -2.131008, 0.458938, -0.572606, 1.143567, -0.058979, -0.995286, 0.465170, 0.137173, -0.654033, 0.689504, -1.992940, 0.697420, 0.756488, 1.490498, 1.350837, 0.664821, -1.585667, -1.174331, -0.263818, 1.714457, -1.010432, -0.831422, 1.467236, -0.324932, -1.428705, 1.213975, 0.378956, 0.288632, -1.508446, -0.055944, 0.518558, -0.645023, -1.360887, -0.175679, -0.504137, 0.480394, 0.290714, 1.614133, -1.286636, 1.538815, 0.799626, 0.294155, 1.419054, 1.357316, -0.356723, -0.244771, -0.395521, -0.449170, 1.044874, 0.722255, 0.182184, 0.410220, -3.000255, -1.016072, -1.383911, 0.851802, 0.279882, -0.184141, 0.262979, -0.437383, 2.845142, 0.146591, -0.439881, -1.697477, -0.361629, 1.120585, -1.339821, 0.623931, -0.615554, -0.199097, -0.266119, -0.331204, -0.900152, 1.104358, -0.902361, -0.401398, -0.587631, 1.405495, -1.087982, -0.271600, -0.799984, 1.158685, 0.645724, 1.738455, -1.021376, 0.053310, 0.661913, -0.633552, -0.045705, 0.651643, 1.954124, 1.911685, 1.154008, 2.321908, 0.030398, 1.049996, -0.698988, -1.367071, 0.953407, -0.462519, -1.975505, -1.416580, 0.201807, -0.213668, 0.223636, 2.096636, 0.357450, -0.727993, 1.268084, -0.696158, 0.710462, -1.209256, 0.131700, 0.296752, 0.797077, -0.410326, 0.846653, -0.285849, -0.588933, -1.018749, 1.218904, 1.283582, -0.193679, 2.028374, 1.978193, 1.917187, 1.050118, -0.751537, -0.863507, -1.192480, 1.009862, -0.117858, -1.115536, -0.924902, 1.819066, 0.276183, 1.929383, -0.268754, 0.294618, 1.190741, 1.281027, 2.162514, 0.024303, -0.539244, -0.310893, -1.321513, 1.032661, -0.075000, -1.592564, -0.696441, -0.456998, 0.681673, 0.136708, -0.361567, 1.450003, -0.630085, -1.392638, 0.275226, 0.001654, -1.386347, 0.224028, -0.157376, -0.031336, -0.180088, 0.693046, 1.490725, -0.585927, -0.951144, 0.773254, -1.421763, -1.884691, 0.093277, -0.447519, -0.365441, -1.077223, 1.071944, -1.661200, -0.542165, 0.076132, -0.616706, -1.147359, 1.405593, 0.025611, 0.187353, -0.306242, 0.205320, 2.144422, 0.523295, 0.770460, 0.150019, 1.873023, 0.822097, 0.990920, -1.418163, -2.009984, 0.145998, 1.592334, -0.036410, -0.261122, 1.221181, -0.158753, 0.134746, 0.888824, 0.527906, 1.965857, 0.111956, 0.311089, 1.566770, -2.111988, -2.078265, -0.089090, 0.974328, -0.979057, 0.247900, 0.193321, -0.149852, -0.539429, -0.488432, 2.595137, 0.735603, 0.550240, 0.495577, 0.782581, 0.882110, -0.059411, -0.178529, 0.349388, 0.877343, -1.257591, -0.846639, -0.615598, -0.523491, -0.407948, 0.279256, 2.512961, -0.388211, 1.141331, 0.034108, 0.098152, 0.513007, -0.841768, 1.322772, 0.743284, 0.319963, 1.076746, 0.576681, -1.344721, 0.071352, -1.349805, -0.396475, -1.086461, -0.394789, -0.836839, -0.121572, 0.472023, -0.978058, -0.760028, -0.858627, 0.573856, 0.470543, 1.852199, -0.106368, -1.570268, 0.857212, 1.552631, -0.186692, 0.568721, 0.687121, -0.281725, -0.622135, -0.764662, -0.673018, 0.420033, -0.212581, -0.473103, 0.717630, 0.707134, -0.451706, 1.003608, -2.253626, 0.005614, 0.058079, -0.293738, -0.493356, -0.195697, 0.099743, -0.419783, 0.050703, 0.984371, 1.025241, -0.266747, 0.876469, 1.203320, -0.513361, 0.803487, -0.232633, -0.105008, -1.891854, -0.046849, -0.522255, -1.386277, -0.316371, -0.830241, -2.125927, 1.709374, 1.306397, -0.170569, -0.006688, 0.064006, 1.116223, -0.978921, 0.070519, -0.933255, -1.048840, -0.775217, -0.269373, 1.076584, -2.839118, 0.967448, -1.164397, -0.645358, -1.193206, 1.623817, -1.092674, -0.147733, -0.014692, 0.694421, -1.149737, -0.535466, -0.412479, 0.441411, 2.685483, 0.445619, -0.250452, 0.948475, -1.584082, -0.816577, -1.569408, 0.685850, -0.692384, -1.564641, -1.476774, -0.016792, 1.584186, 0.235145, 0.098632, 1.735743, -1.580701, 1.738353, -0.648206, -1.353362, -0.290095, 0.552723, 0.269646, 0.842972, -0.462167, 0.496398, 0.734800, 0.328454, 0.783290, 1.256495, 0.148680, -1.308815, -0.028547, -0.450856, 1.224862, 0.325284, 1.991896, -0.228183, -0.677130, -0.687055, 0.019820, 0.657589, 2.874516, -1.224136, 0.240652, -0.563945, 1.604034, 0.082963, -0.586073, -1.640440, -2.542560, 1.301595, -0.698694, 0.729568, 0.082747, 0.251437, -1.202776, 1.765493, -0.131354, 1.462832, -0.597498, 0.430165, -1.414980, -0.292800, 0.375897, 0.896199, 0.912182, -0.258908, 0.143616, 1.096125, -2.102231, -0.729292, -0.765799, 2.075603, 0.628189, -1.451436, 0.067840, -0.112114, 0.681505, 0.349802, -0.921099, -0.318616, 0.786550, 0.315460, -1.797591, -0.843515, -0.642482, 0.976631, 0.450332, 1.398967, 0.618452, 0.250414, 0.719940, -0.244915, -0.406924, 0.779709, 0.914129, 1.782713, -0.241857, 1.244293, 0.161255, 1.813240, -0.437375, 0.396075, -0.396237, 0.019526, 0.685613, 0.720663, 0.681514, -0.522867, 1.339329, -0.973044, -0.053615, 0.601661, 0.649169, 1.639585, -0.945094, 0.925711, 2.531612, 0.169050, -0.456826, 3.090086, 0.869017, 0.140844, -2.067863, 1.651612, 1.254644, -0.168833, 0.436296, -1.093356, -0.054427, 1.552346, 0.226470, -1.466866, 0.078009, -0.143113, -1.294501, 0.021757, 1.377752, 1.569163, 1.924825, -0.578889, 2.057211, -0.818758, 0.658124, 0.066462, 1.243857, 1.284173, 0.030025, -0.512484, -0.146436, -1.505791, -1.033772, 3.054168, 0.520075, 1.248599, 1.188072, 0.726008, -0.272591, 0.169020, 0.161560, -1.108373, -1.100665, -0.012494, 0.951902, 0.867229, -0.750969, 0.588076, 0.384465, -0.028365, -1.023031, 0.871488, 0.028327, -0.028589, -0.050674, 0.367524, -0.098203, -0.885738, -1.181657, -0.223716, 0.413920, 0.673128, 0.561127, 0.815016, 0.112883, 1.175732, 0.376292, 1.126188, -0.249249, -0.200340, -0.374868, -0.197085, -1.119844, -0.813047, -0.154468, 0.212282, 0.194484, -1.075461, -1.610859, -0.970718, -2.410832, 1.173997, -1.071299, 1.446524, -0.924301, -0.233726, 1.741949, -0.575764, -1.756002, -1.324981, 0.389942, 0.941365, -0.715684, -0.181362, 0.521817, -0.043801, -0.970294, 0.376156, 0.236400, -0.119913, -0.843144, -1.081599, 1.436162, 0.340705, 0.848092, -0.325986, 0.913431, 0.400545, 1.090820, 0.112997, 1.353017, -0.497164, -0.385706, 0.901321, 1.132113, 1.085912, 1.217223, -0.370479, -0.647054, -0.449021, -0.275032, -1.333082, -1.039811, -0.643885, -1.764832, -0.336022, 0.349230, 0.817908, 0.158657, 0.033433, -1.894126, -0.972246, 1.381618, 0.211040, 1.057400, 0.786518, -0.517952, -0.378894, -0.516177, 0.665983, -1.047732, 0.143553, 0.949213, -0.585571, 0.093786, -0.696313, 0.000263, 0.301229, 0.888330, 0.656826, 0.675407, 0.533683, 0.789365, -1.331845, 1.190212, 2.466915, 0.502653, -0.043609, 0.318833, -0.411267, -1.119379, -1.296076, 0.318336, -0.105445, 0.943960, -0.438659, 2.029359, 1.194033, 2.397624, -0.272764, -0.593874, 0.085238, -0.397318, 0.879002, -0.235356, 0.199130, -1.762171, -1.267374, -2.115594, 0.309859, 1.680724, -0.311985, 0.115423, 1.598252, -0.621192, -0.429569, 0.480112, -1.510997, -0.730976, -0.587454, 0.977642, 1.199566, 0.022748, -0.610670, -1.199552, 0.984375, 0.744561, -0.146462, 2.142167, 0.186884, 2.555793, 0.285310, 1.336335, -0.602524, 0.513103, 1.145807, 1.048998, -2.346402, -0.950671, -1.244990, -0.032651, 0.967067, -0.754866, 0.027856, 0.003557, 0.367778, -2.143100, -0.710300, 0.551008, 0.289913, 0.245276, -0.440656, -1.922634, -0.853893, -0.874107, -0.118240, -0.757246, 0.761083, -0.735576, 0.670994, -0.809934, -1.196244, -1.321556, 1.669255, -1.681196, -0.839216, 0.193274, -1.142784, 0.140686, -1.413664, 0.804883, -0.772448, -0.821475, -0.363677, -2.017625, 0.157790, -0.316774, 0.218654, 0.992248, 0.606362, -0.720250, -0.874989, -0.141459, -0.556316, -0.186641, -0.677301, 0.661459, 0.847446, 0.145008, -0.695669, 0.597427, 0.386860, -0.952867, 0.897209, -1.176122, -0.790860, -1.097884, 1.682380, 1.370546, 0.029454, 1.532160, -1.235394, -0.092455, 0.720440, 0.793758, -1.533913, 0.120092, -0.029052, -0.715149, 0.002552, -0.914272, 0.410341, -0.337411, -1.363726, -0.005143, 0.395627, 1.409340, 1.251054, 1.992716, -1.944287, -1.073071, 0.092784, 0.804512, 0.264699, -0.008387, 2.199105, 0.111418, 0.904875, -1.035348, 0.465309, 1.119095, 1.096066, 1.005608, 0.101267, 0.041222, -1.183136, -0.829782, 0.448185, -2.592413, -1.989517, -0.546123, -0.547309, -0.774205, 1.112622, 0.498929, 0.896646, 0.260779, 0.272912, 0.856440, 2.406652, 0.118697, 1.218411, -0.961615, -0.038193, -1.373661, 0.160141, -0.034777, 0.618437, -0.176387, 0.674802, 1.197345, 0.549512, -0.389763, 3.242957, 0.240743, -0.403716, -1.079500, 0.176163, 0.532608, 0.886413, 0.717452, 1.109493, 0.457495, 0.011626, 0.258112, -0.129299, -0.707949, -0.266624, -1.152578, 1.140921, -1.588591, 1.619598, 0.938488, 0.684948, 0.201134, -1.696252, -0.279966, 1.279078, -0.841567, 0.288412, -0.332668, -0.278764, -0.082852, 0.021088, -0.194490, 0.507523, 1.009448, 0.283424, 0.226359, 0.380778, -1.469228, -0.190177, 0.572555, -0.143093, -1.114942, 0.736657, 0.326716, -2.571711, -0.756262, 0.149976, 0.964245, -0.890577, 0.591208, -1.549383, -0.498702, -0.935282, 1.628013, -1.175710, -1.058410, 0.039155, -0.683987, -0.511258, 1.120494, 0.298570, -0.266713, 1.726309, -0.048958, 0.541969, 0.943814, 0.180268, -0.233538, 0.347573, -0.836910, -0.026836, -0.610206, 0.036771, 0.157989, 0.421839, 0.308115, 0.418927, -0.888428, -0.496527, -0.037603, 0.352714, -0.474819, -0.228321, -0.552397, -0.806203, 0.631726, 1.306783, -0.383702, -0.480690, 0.639913, 0.858603, 1.047957, -1.364327, -2.217143, 0.958797, -1.368611, -0.021844, -0.569761, 0.037923, 0.130362, 1.001156, -1.234113, 0.493915, -2.019410, 1.193282, -0.886468, -0.392464, -0.070643, 0.153324, -0.301343, 1.520576, 0.858591, -0.649230, -1.310754, 2.537157, -0.089176, -0.944329, 0.182854, 0.281304, -0.844244, -0.716282, 0.795671, -1.478288, 0.324106, -0.672504, 0.051027, 0.300746, -0.460639, -1.660100, 1.389212, -2.210620, -1.400407, -0.751135, -0.940383, -1.521511, 1.844960, 0.345781, -0.967317, 0.505203, 0.618788, -0.002003, 0.138010, -0.255116, 0.798767, 1.647137, -0.784609, 0.283863, 0.056476, -0.722476, -1.238047, -0.841301, -0.811834, -1.814050, -0.534769, -0.538293, -0.191700, -0.594344, -0.733604, 0.401247, 0.669845, -1.773934, 1.296115, 1.439526, -0.125644, 0.404896, 0.689892, -1.152393, -1.053661, 1.689313, -0.432506, -0.753156, 1.757841, -0.552784, 1.958883, -0.418141, -0.341218, -0.089376, 1.126180, 0.960688, -1.626286, 0.666151, 0.803854, 0.658230, 0.648884, 0.506386, 0.736218, 1.242383, 1.970587, -0.993150, 0.438809, -1.717881, 0.656458, 1.504722, 0.673889, -0.200130, 1.872706, 0.204884, 1.363484, -0.669302, 1.344402, 0.674449, 0.475534, 0.005058, -0.575226, -0.568939, 0.202703, -1.052909, 1.141856, -0.473977, 0.216896, -0.161027, 0.605053, 1.569724, -0.103360, -0.074409, 0.252179, 0.833811, 0.815950, 0.017972, 0.643572, -0.292335, 1.200602, -0.084307, -0.452480, -0.251017, -1.712140, -0.715587, -0.834005, -1.027298, 0.033543, 0.914575, 1.646344, -0.087466, -1.964764, 0.818996, 1.939010, 0.424073, -1.153130, 0.360071, -0.587884, -0.213562, 1.389223, 0.246476, 0.432637, -1.185148, 0.995115, -0.989822, -0.728197, -0.630096, 0.385907, 0.954208, 1.333976, -1.562676, -0.778937, -1.735264, -1.381968, 0.996094, -0.738619, 0.115355, 0.026151, -0.293289, -0.354300, 0.168105, 0.637134, -0.069387, 1.549347, 0.040454, 0.862688, -1.240979, 0.349673, 2.779640, 0.908441, 0.101166, 1.049196, -0.785965, -0.687487, 0.890825, -0.364503, -0.487526, 0.238375, -1.614056, 0.233577, 0.267264, -0.110156, -0.494307, 0.572376, 0.582555, -0.905543, -1.755509, 0.067406, 0.686067, 0.289316, -1.491770, -0.803695, 0.265339, -0.507130, -1.429903, 0.279912, -0.764638, 1.661420, 1.162663, -0.280001, -1.308852, -0.846166, -0.475877, -0.933327, 0.328839, -0.016647, -1.395481, -0.105477, 0.499046, 0.147631, 0.733547, 1.146172, 1.027361, -0.340597, 0.708083, 0.346893, 1.528922, 1.390378, -1.819575, -0.230632, -0.314697, 1.083750, 1.946883, -1.210362, 0.366487, 0.665678, -0.352627, 1.558465, -0.229474, 0.503225, 0.019167, 3.242755, 0.574955, -0.355573, -0.053191, -2.154994, 0.206575, 0.861852, -1.419634, -0.552694, 0.517845, -0.135301, 1.437637, 0.913657, 0.280486, -0.676520, 0.400523, 1.494019, 0.984620, 1.644297, 0.268362, -0.599839, -0.241930, 0.203737, 0.491043, -0.266231, -0.275390, -0.671783, 0.767136, 1.268408, -0.251382, 0.980491, 0.078228, 0.366554, 1.175425, 1.568815, 0.310388, 0.314181, 1.130540, 0.487624, -1.144888, -3.380844, -1.043620, -0.820011, 0.153013, 0.454051, -1.182901, -0.178062, -1.181108, -0.635059, 0.946700, -1.446254, -0.031076, -0.300637, -0.181046, 1.180774, 0.154682, -1.572271, 1.178777, -0.796525, -1.189114, -0.007001, -0.040280, -0.240104, -0.245266, -1.071460, 0.308473, -2.266394, 0.043437, 1.375577, 0.798433, 0.341380, -0.120841, -0.496608, -0.297151, 0.041067, -0.987962, 0.022550, 0.489986, 0.383518, 0.333539, -0.001987, 0.398696, 0.360187, 0.154755, 2.650976, 1.479147, -1.020100, 0.854494, -0.440166, -0.194081, -1.165633, 0.369923, -0.424517, 0.214297, -0.545256, 1.368541, 0.410258, -1.021837, 1.856039, 2.441777, 1.179499, -0.653368, 0.529592, -0.552644, 0.805524, 0.340090, -0.381750, -0.144317, 1.836230, -0.181049, -1.159586, 0.045645, -0.801131, 0.606322, 1.325371, 0.888792, -0.827293, -1.304720, -0.702549, 1.249350, 0.401596, -0.157956, -0.599861, 1.234717, 0.020488, 2.028800, 1.048237, 0.134028, -0.172207, -2.937941, 1.001057, -0.359892, -0.455440, -1.223244, -2.194023, -1.342547, -0.265743, 1.160109, -0.098688, 0.453349, -0.913686, -0.271713, 0.555072, -1.297949, -1.083474, 1.236000, -0.172323, 0.674310, 0.540799, -1.787918, 0.543626, -0.288342, 0.157674, -1.797346, -0.192660, 1.014563, -0.007597, -0.077965, -2.058984, 0.175817, 0.707205, -0.990297, 2.186791, -0.756116, 0.996088, -0.852121, -0.110567, 2.546988, 0.156603, 0.487385, -1.340434, -0.565527, -0.309328, 1.232183, 0.823847, 0.324301, 0.466348, 0.620110, -0.620754, 2.191857, 0.504046, -0.744251, -0.260180, -1.575016, 1.771523, 0.205309, -0.194525, -0.096586, -0.942818, 1.050860, 0.575279, 0.229296, -0.727124, 1.207045, -0.644677, -0.792784, -0.568934, -1.634567, 0.557398, -0.583529, 0.614534, 1.441784, -0.448880, -0.004559, 0.771907, 1.202060, 0.156492, -0.428785, -0.419874, 1.009354, 0.411101, -0.789610, 0.728675, 0.076445, 1.729917, -0.667892, -0.033922, 0.246355, -0.384200, 0.368263, -0.331218, 0.001495, 0.708451, -0.665455, 0.299230, 0.343364, 1.108582, -0.730301, 1.090257, -1.189878, -0.924349, 0.343003, -0.671145, -0.118470, -0.048970, 0.125404, 1.820392, 0.352833, 1.111137, 0.006925, 0.540156, -0.011053, 1.515314, -0.094588, -0.997014, 0.899312, 1.359382, -0.187213, -0.180415, -0.059935, 1.363873, -0.519303, 0.188480, 1.296355, -0.175602, 0.905922, 0.023252, 0.720165, 0.684998, 0.246176, 0.361854, -0.099949, -0.567281, -0.223802, 0.098973, -0.842298, -0.322244, 0.921387, -1.103452, 1.674435, 1.013094, 0.070245, 0.081696, 0.716882, -0.401381, 0.253771, 1.404174, -0.893527, 0.713274, 0.221884, -1.063284, -0.813323, -0.709072, 1.543819, -0.145402, -0.066152, 0.628459, 0.276183, -0.885614, -0.426576, 1.599129, -0.493024, -0.331524, -0.926891, 1.815066, -1.227715, 0.456414, 0.518535, -1.376400, -0.903839, -0.704526, 0.093076, 0.540306, -0.382712, -0.372558, 1.277203, -0.457774, 0.935312, -0.887574, 1.951207, 1.094039, 1.331676, 0.222851, 1.598154, 0.456927, -0.506445, -1.402299, 1.585901, -1.733246, 0.087495, 0.371473, -0.556816, 0.310369, -0.095819, 0.050419, 1.483976, 0.174552, -1.467672, -0.063072, 0.211793, -0.572932, -1.430596, 0.213994, 1.648021, -0.980538, -1.415404, 0.344014, -0.066481, 0.086318, -2.288229, 0.855315, 0.400970, 0.551140, 1.020015, -2.006954, 1.430738, 0.096001, -0.604573, -0.674902, -0.790129, 0.531947, 0.457554, 0.607967, -0.367446, 0.824679, 0.576684, -1.161550, 0.523099, 0.394006, -0.624623, 0.010591, 0.218063, -1.603351, 0.486728, 0.511626, -0.961079, 0.407014, 0.092450, -0.760182, 0.141634, 0.149371, -0.517802, -0.502396, -2.773117, -0.725021, -0.425992, -1.439202, 0.851006, -0.624807, -1.671395, 0.153665, -1.609802, 0.146165, 0.802434, -0.455154, 0.236187, 0.256586, -0.470374, -0.697853, 0.535391, -0.594195, 0.423005, -1.000982, -0.011862, 2.612301, -0.608736, 0.036247, 0.273991, -0.452419, 0.664167, 1.196594, -1.953139, 0.426724, -0.596585, 1.571780, -0.226418, 0.558401, -1.269757, 0.623086, 0.799321, 0.187630, -0.975454, -1.384670, 0.815772, 0.518144, -0.184279, 1.482645, -1.746478, 0.254673, 1.478644, -0.361736, 0.813790, 1.117436, 0.263568, -1.652777, 0.913780, 1.239972, -0.202751, -1.036590, -0.316331, 0.731122, 0.339312, -0.180115, -0.757585, -0.285849, 0.082995, -1.474026, 1.474402, -0.454812, 1.794350, -0.548455, 0.885742, -1.258813, 0.684264, -0.471451, -1.771566, 0.129455, -1.380036, 0.563674, -0.603892, -1.463750, 0.228426, 0.911034, 0.274185, 0.422622, 1.159011, 0.118977, -1.018029, -2.479925, 1.691404, -1.568525, -1.317917, -0.537501, 1.670645, -1.890105, 0.031761, -0.071098, -1.806499, -1.736098, 0.838499, 0.436174, 0.046730, -0.871402, -0.867162, -0.301262, 0.471351, 1.469979, -0.566323, -1.020953, -0.708661, -0.285569, 0.036857, -1.383692, -0.170049, -1.703476, 0.230277, -1.358836, -0.881406, 0.693222, -0.554954, 0.365691, -0.470092, 0.519062, -0.194337, 0.341719, 2.138516, 0.590942, 0.142093, -2.554609, 2.218141, -0.944951, 1.231023, -1.405950, -1.326814, -2.452128, -0.643954, -0.033388, -0.100510, -1.043900, -0.899142, 0.473145, 1.166353, 1.694092, 1.215379, -0.325040, 0.016748, 0.508877, 0.540147, -0.211066, 1.096513, -0.855781, -0.228774, 1.135932, -0.608350, 0.489989, 1.218665, 0.773853, 0.285801, 0.481724, 0.111804, 0.322254, 0.500364, 2.179589, -1.888124, -0.127274, -0.625675, -0.671828, 0.703467, -0.832597, 0.008845, -1.203453, -0.397637, 0.106696, 0.006077, 0.230481, -1.351761, 0.547575, 2.625362, 2.146603, -1.017467, 0.271686, 0.797819, 0.941221, 1.600861, 0.950617, 2.559654, 0.609090, -0.307161, 0.060480, -0.574064, 1.583999, 1.793632, -0.711863, 0.726575, 0.270590, 2.272430, -0.157739, -1.058615, 1.622331, -1.125452, -1.843768, -0.078278, 1.740481, 1.824444, 0.784402, -0.106382, -0.467952, 1.296723, -0.764729, 1.315884, 0.152846, 0.601016, -0.262548, -0.428568, 0.446372, -1.534969, 1.636515, 1.052215, -0.544631, -0.539550, 2.270524, 0.494257, 0.585112, 1.647986, -0.398734, 0.013786, 0.209865, -1.452126, 0.599200, -1.402436, -0.613238, -0.003972, 1.067335, -0.283126, -0.245166, 0.191961, -1.449515, 0.463684, 0.815299, 0.073737, 1.082976, 0.293794, 0.670612, 0.143377, 0.171043, 0.808881, 0.032854, 0.946165, -0.367223, 1.682208, -1.323634, -0.422998, -1.249921, -0.124798, -0.254751, 0.808571, 0.028316, -2.479560, 0.971163, -0.486956, 1.713814, 0.446665, 0.053134, 0.101732, -2.470068, 1.173814, -0.838995, 2.267375, -1.557401, -1.373082, -0.450953, -1.405447, 1.055510, -0.647756, 2.538760, -0.415681, 2.130071, -0.646308, -1.117635, -0.107596, 0.715535, -1.170509, -0.447454, -1.204838, 0.620161, -0.941296, 0.353405, -0.056707, 0.050945, 1.417850, -0.092382, -1.101896, 1.076433, -0.263144, 0.393465, -1.570708, -0.876891, 0.820119, -0.681650, -0.624618, -1.420860, 0.192898, -0.063609, 0.713392, 0.496183, 0.453552, -0.862438, -1.039380, -0.910973, 0.772395}, + { -0.927943, -0.848864, -1.007952, 0.335526, -2.017541, -0.914680, 0.078810, -0.898423, -1.708599, -0.155889, 1.007167, -0.747462, -0.171016, -2.308906, -0.114479, -2.339214, -0.457396, -1.526376, 1.623720, 0.457976, 0.813552, 0.206856, -0.101218, 0.073019, -0.045020, 1.352025, -0.638211, -1.537627, -0.435254, -0.964205, 0.583681, 0.188579, 0.181941, 0.057947, -0.563493, 0.118283, 1.010443, 1.395760, -0.092736, -1.030230, -0.320378, -1.097519, 0.627467, 1.335169, 0.508092, -0.385964, -0.641630, 0.556415, -0.569044, -0.246809, -0.650686, -0.437328, 0.608802, -2.162268, -1.165045, -0.282270, -0.247688, -2.979329, 0.575926, -0.230373, -1.303513, -0.265617, -0.552202, -0.988376, 0.518985, 0.264679, -0.939547, -1.755571, -0.230379, 0.062619, 0.866288, 0.236366, -0.194471, 0.756843, 0.560732, 0.257200, -1.105184, 0.784192, 0.626963, -0.800312, 0.046077, 0.061475, -1.217718, 0.725432, -0.247772, -2.974380, -0.863058, -1.722903, -1.585467, -1.027864, 0.484068, 2.281535, 0.021882, -1.119987, -0.382134, -0.888447, 1.227709, -1.214013, -2.370314, 0.332083, -0.873489, 0.604533, 0.654887, 0.114215, -1.058772, 1.396704, -1.270196, -2.602735, 0.382191, -1.446693, 0.098017, -0.584281, 0.858455, -0.694204, -0.246084, 0.477965, 1.394454, 0.144403, -1.991599, -0.790703, -1.481822, 1.832909, -0.897893, -0.392857, -0.637408, -1.430072, -0.085667, -0.051698, -2.014769, -1.033955, -0.217898, -0.514559, -1.073518, -0.400990, 0.490306, 0.020518, -0.938738, 0.315694, 0.405789, 0.714008, 0.088199, 0.951635, -0.156677, -0.415429, -0.919523, -0.648329, 0.152128, -1.219878, 1.421183, 0.142722, -0.112126, 0.457937, -0.118108, -1.324538, 0.485108, 0.858896, 1.543063, 0.805543, 0.753079, 0.716355, -0.555134, -0.731093, -2.202731, -0.289889, 0.281604, 1.496243, 0.296459, -0.344467, 1.166366, -0.467911, -1.547582, 1.118591, 0.037099, -0.086089, 1.907300, 0.347141, 0.615853, 0.869868, 0.863162, -0.973901, 0.372848, 0.105157, -1.957845, 1.323176, -0.852377, -0.539613, -0.943925, 0.529939, -0.552553, -0.512323, -1.791544, -1.017195, -0.822663, 1.299985, 0.289184, -1.501497, -0.242835, 0.136465, -0.561395, 0.081931, -0.556423, 1.712416, 1.905352, -1.200593, -0.058503, 1.741204, 1.135129, -0.681590, 0.157162, 1.780704, 1.458561, -1.167853, -1.073411, 0.989011, 1.790497, 0.131350, -0.207506, -0.446647, -0.878583, -0.295445, -0.226523, -0.899659, -0.011195, -0.162805, 0.099131, -0.788797, -0.334394, 0.150064, -0.118765, 0.287391, 1.756517, -0.175097, -1.092550, -1.817786, 1.604110, 1.965222, -0.470014, 0.193645, -2.609614, -0.022956, 0.267545, -0.208348, -0.574019, 1.033829, -0.944228, -0.513080, -0.086179, -0.068793, 0.167631, -0.467098, -1.215286, 0.388725, -0.227476, 0.265260, -1.294074, 0.232139, 1.943728, 0.952719, -0.181417, -0.169241, -1.785415, 0.475991, -1.196911, 0.213349, 0.704132, -1.959569, -0.209594, 1.316006, -1.364279, -0.748612, -0.437346, 0.238616, 0.508802, -0.057441, 0.240803, -0.579069, -0.321784, 0.438001, 0.087155, 0.279821, 1.002000, 0.250575, 0.182982, -0.713008, 0.533901, -0.159440, -0.588976, -0.657896, 0.087516, 0.272619, -0.063072, -1.539775, -1.775648, 0.158050, 0.319217, -0.588794, 0.544648, -0.608979, -0.483757, -0.489778, 0.903135, -0.797372, 0.481088, -0.483062, -1.250498, 0.401972, -0.998930, 1.653525, -0.051723, -2.718770, 0.368626, 0.022137, -0.350321, 1.641191, -0.359209, 0.507800, 0.847977, 0.495757, 0.056085, 0.126058, 1.404442, -0.433099, -1.161144, 1.228121, 0.066707, -1.155914, -1.182173, 0.021392, 0.825278, 0.602612, 2.544014, 0.034278, -0.286417, 0.758915, 0.608593, 0.581685, -0.466770, -0.116069, -1.783712, 0.454724, -2.603312, 0.138698, 0.592285, 1.107950, -0.766594, 1.347931, 1.347740, 0.517797, 0.139061, 0.249193, 0.553629, 0.008133, 0.669462, -0.754085, -0.203519, 0.186317, 0.110165, 0.060332, 1.182343, 0.766188, 0.014383, 1.201515, 1.578160, -1.042033, 2.336762, 0.107837, 1.232856, -0.596776, -0.043819, 0.069396, 1.251105, 0.629297, -0.152866, -0.337303, 1.448249, 0.452210, -0.495416, 0.348913, 0.821613, 0.717262, -0.321402, 0.519330, -0.097419, -0.715642, 0.349553, 1.321074, 2.219332, 0.044082, -1.510974, -0.541657, 0.497968, -0.255279, -0.208367, 0.066882, 0.391862, -0.414870, 0.285611, -1.580357, 1.904696, 0.326333, -0.010005, -0.587741, 0.413864, -0.463637, -0.192878, 1.077390, -1.224993, 1.266089, 0.242087, -0.469611, 0.180648, 0.022548, 0.291803, 1.340684, -0.880295, -0.236240, -1.524891, 2.509343, 0.782742, -1.243343, -1.133610, 0.447418, 0.292570, 0.628489, 0.832094, -0.834520, 1.445554, -0.457705, 0.940864, 0.196840, 0.234719, 0.681855, 0.717254, 0.752367, 0.508608, 0.769516, 0.708943, -0.576327, -1.658545, -0.107476, -0.354848, 0.082087, 0.362338, 0.440647, 1.671895, -1.037819, -0.306201, 0.076307, 1.616233, -1.238897, 0.066267, -0.024560, 0.472596, 0.032355, -1.763085, -0.209261, 0.823012, 0.267756, -0.513282, -0.217905, 0.814842, 1.006657, -0.115592, -1.295611, 0.214233, 0.476267, -0.731630, -0.358477, -1.063962, -0.697687, -1.432371, -0.367252, 0.893559, 0.611873, -0.646305, 0.918673, 0.192326, -0.323520, -0.115658, 0.933000, -0.807400, 0.641474, 0.535697, 0.318424, 0.093264, -1.197386, 0.386390, -0.558527, 0.231152, 0.872326, -0.131630, -1.265806, -1.249577, 0.554404, 1.336484, 0.143908, -0.155708, -1.130782, 2.113932, -0.380531, 1.352066, 0.745056, -0.035679, 0.045261, 0.149299, -0.051082, 0.842708, -0.662899, -1.214880, -0.687400, 0.060657, 1.147772, 0.088104, -0.857543, -0.864207, 0.047330, 0.107283, 0.264170, 1.151708, -0.419330, 0.173155, 0.384277, -0.041881, -0.150074, 1.577698, 1.288926, -2.486381, -0.065349, 1.001110, -0.740458, 1.293048, -0.119164, -2.333424, -0.352414, 0.606735, 0.522174, -0.655393, -1.600829, -1.619429, 1.163313, 0.599836, -1.076846, 0.220918, -1.174212, -0.171512, 2.024237, -0.737483, -0.423817, -0.920860, 0.014837, -0.804615, 0.499049, -0.345348, 0.647496, -1.025689, -1.408556, 0.154800, -0.814080, -0.890445, -0.435126, 0.360664, -1.206917, 0.963296, 0.357455, 0.897320, -2.087111, -1.349186, 0.867854, 0.327595, -0.524693, 0.875666, -0.220575, 0.347752, -1.480195, 0.148482, -0.222405, 0.251350, -1.915801, 0.388131, 0.603146, -3.203593, 0.531218, 1.868075, 0.458617, -1.174954, 0.244054, -1.304455, 1.196585, -1.201653, 1.474107, -0.426473, -0.854629, -1.479377, -1.245414, 2.141289, 0.002585, 0.793922, -0.510862, -1.268813, -1.321165, 0.899540, -0.227880, 0.210332, -1.266062, 1.919314, -0.204862, 0.231374, 0.147181, 1.009484, 0.432774, 0.545192, 0.625975, 0.004619, 0.117338, 1.880970, -0.916497, 0.527592, 1.175011, 0.535266, 0.622861, -0.090368, -0.470978, 0.648491, 0.832114, 1.510331, -0.760787, -1.021950, 1.644606, -2.190853, 0.506645, -2.273086, -0.797426, 0.939197, 0.197609, 0.042075, 0.444532, -0.907776, 0.924141, 0.721633, 0.964365, 0.039645, -0.622620, 0.413722, -0.416789, -1.059769, -1.402015, -0.318759, 0.235055, 0.040810, -0.339326, 1.998217, 1.911765, -1.288431, -2.215854, -1.611742, 0.606864, 0.814347, 0.232382, 0.378639, -0.815160, 2.142320, -0.369369, -0.847102, -1.106990, 0.926171, 0.398485, 1.697152, -1.412457, -0.660148, -0.100567, 0.122255, -0.775312, 0.195316, -1.914149, -0.783259, 1.371915, 0.716988, 2.154932, -0.775929, -1.642688, -0.686566, -1.130656, 0.708010, 0.205619, -0.822354, 0.286945, -1.762586, -1.835892, -0.055453, -2.159250, -0.595203, -1.234347, -1.119582, -0.569000, 0.920316, 0.970850, -0.522653, -1.611656, 0.037889, 0.514440, -0.411900, 0.245702, -0.229427, 1.736876, -1.479308, 1.230309, 1.027730, 0.759393, 0.453581, 0.740624, -0.510150, 0.286593, -1.164558, -0.630723, -1.118675, -0.684163, 1.475408, -0.513927, -0.415364, -0.136300, -0.433766, -0.189449, -0.538142, -0.930861, -0.009446, 0.391436, 2.023198, 1.411867, -0.507803, 0.084696, -0.569933, -1.525797, 0.412340, 0.210363, 0.044233, 0.901978, 1.419834, 0.677276, -0.652197, 0.389954, -0.747245, 0.256262, -0.239018, -0.424416, 0.195915, -0.145170, -0.901196, -0.910658, 0.913185, 0.160334, -0.834326, -0.782434, -0.461058, -1.470574, 0.155376, -0.445109, 0.089911, -2.456486, -1.782437, 0.490214, 1.646560, 0.066937, -2.299922, -0.047979, 0.603489, -0.646352, -2.248479, -0.280179, 0.156131, 0.069344, -0.847731, -0.139704, 0.043159, 0.126194, 0.603933, 1.538464, -1.506664, -0.179378, 0.407332, 0.809856, -0.166067, -1.292168, -1.769859, -2.079509, 0.739625, -0.736729, -0.713354, 1.073867, 1.844931, -1.939672, 0.471914, -0.156489, 0.138424, 0.890533, 0.612764, 1.475300, -0.526159, -1.735516, 1.410267, -0.876821, 1.171168, 0.075415, -0.387776, -0.882955, -0.551826, -1.028673, -0.024397, 2.792131, -1.603245, 0.402022, 1.737134, 0.115065, -0.216108, -0.521870, 1.635362, -1.264822, 0.541659, -1.944620, -0.755439, 0.285255, -2.913314, 0.311291, 0.427674, -0.862534, -0.098715, -1.429178, -1.617302, -1.323428, 0.339025, -0.591097, -0.132334, 1.202685, 0.283947, -0.429917, -2.540929, -1.405465, 1.592140, -0.757374, 1.108627, 0.873684, -0.927622, -2.282203, 0.224326, 0.502771, -0.994116, 1.285542, -1.194033, 0.482534, 0.207624, -0.490080, 1.346618, -1.521279, -0.306631, -1.740103, 1.524379, -1.353220, 1.823642, -1.020735, -1.211194, -0.200056, -0.321512, 0.106106, -0.689623, 0.920550, -2.241492, 1.660964, -0.233836, 0.416134, 0.949040, 0.362489, 0.661448, -0.551020, -1.277775, 0.753808, -0.728999, 1.259455, -0.855020, -0.113403, 0.180453, 0.042225, -1.437568, 0.637236, 0.025830, 0.537016, -0.058317, 0.671484, -2.318072, -0.643389, -0.562461, -1.452972, -1.112109, -2.104362, -0.360837, 0.531970, 0.488858, 0.593668, 0.218039, 0.758817, -0.427450, -2.061395, 1.705541, 1.480190, -0.798173, -0.314018, 0.823357, 1.055417, 0.933325, -0.215806, -1.250151, 0.297458, 0.096078, -1.289634, -0.310853, -1.329689, -0.481198, 0.165585, -0.355458, 0.276325, 0.635595, -0.729753, 0.637424, 1.495186, -1.718847, 0.223172, -1.835021, -0.461343, -0.708494, 2.117562, -0.062408, -0.067752, -0.254458, 0.984144, 1.321805, 0.670593, 0.567188, 0.328510, 1.234885, 1.181028, -0.563270, -0.905491, 0.270681, 0.609736, -0.687382, -0.206509, 1.864390, 0.523094, -0.468049, -1.163573, 0.840661, -0.227165, 0.835723, 0.701759, 0.864262, 2.507117, 0.639601, -0.537041, 0.354290, 1.103883, -0.370686, -0.258310, -0.262834, -0.812582, -0.595378, -0.944029, -0.953974, 2.823998, 1.270386, -0.811090, -1.462563, 0.211065, -0.891727, 1.596180, -0.180620, -1.314641, 0.669107, 0.806106, 1.603680, 0.346867, -0.395742, 0.904379, -0.953341, 0.374559, 0.814034, 1.508167, 1.248294, 0.128080, 2.067523, 0.750697, 0.687511, -0.588257, 1.093959, -0.098795, -0.012618, -1.839321, -1.149667, -0.662068, 1.496468, 2.167565, -0.236460, -1.570776, -0.732336, -0.042147, 0.405120, -0.369327, 0.810185, 1.313395, -0.767107, 0.197084, -0.727138, -0.609878, -1.097356, -0.672487, 1.194189, 0.556869, -0.336657, 0.425821, 0.569506, 1.723290, -0.247420, -0.980576, -0.855025, -0.155905, 1.222950, 1.948963, -1.270618, 0.348116, -0.491914, -2.116805, 0.189608, -1.191331, -0.049422, 0.323932, -1.616547, -0.922383, 0.945364, 1.985738, 0.374413, -1.308167, -1.071365, 0.014611, -0.130538, 0.757273, -1.293112, 0.940560, 0.134145, 1.010601, 0.783650, 0.255528, 1.060758, 1.198641, 1.295738, -0.580612, 0.578393, 0.884045, 0.180836, -0.458545, 0.192984, 1.173479, -0.123109, -0.257911, 2.552269, 0.375229, -1.339672, -0.279820, 0.328244, -0.713262, 0.353616, -0.679741, -0.672665, 0.160089, 1.357111, -2.032015, -0.131624, 1.702815, -0.980851, 0.914760, -0.157481, -0.435516, -0.521515, -0.650218, 1.756954, 1.545284, -2.529951, -0.769625, -1.645308, 0.524984, 1.283369, -1.506804, -0.465938, -0.698563, -0.834909, -0.308978, -0.556149, -0.769594, 0.497699, 2.276626, -0.844418, 0.254551, 0.017238, 1.455137, 0.230232, 0.679763, 1.308492, 0.701632, -1.196901, 1.945062, -1.175911, -1.124874, 1.292782, -0.338028, 0.367165, 0.353531, 0.633568, 2.557875, -0.167781, 0.424514, -0.294773, 0.280180, 0.732246, -1.407929, -0.848970, 0.729634, 0.911062, 0.263933, -0.545052, 0.105529, -0.223433, 0.645134, -0.873666, -0.133974, 1.671354, 0.198154, 0.286433, 0.971493, -0.721881, 0.050207, -1.286270, 1.330596, -0.762040, -0.490164, -1.530473, -0.912325, -1.361833, 0.684286, 0.133923, -0.538645, -0.730002, 0.521018, -1.844207, -0.109827, -1.608073, -1.622082, 0.076888, -0.404588, 0.693388, 1.515352, -1.246440, 1.331426, -0.457352, 1.717526, 0.911947, 0.665998, 0.722040, -1.067963, -0.410837, 0.905061, 0.432025, -0.450593, -0.748104, -1.484108, -0.495278, 0.109436, 0.241716, 1.599032, -1.147695, 1.769514, -1.479689, -0.415782, -1.170278, -0.622471, 0.393543, -0.559444, 1.874969, 0.287597, 0.767469, 0.357354, 0.267501, -0.266990, 1.456886, 0.368555, -0.727274, 0.213615, -0.261534, 0.850806, -0.469329, -0.935140, 0.660715, 0.773345, 0.233064, -1.301188, -0.610967, 0.345995, -0.603919, -1.053955, 1.047476, 0.353146, 0.282915, -0.812627, 0.421331, -1.284377, 0.194997, 0.660365, -0.209087, 0.537426, 0.954637, -0.632826, 0.245715, 1.806435, 1.880646, 2.457077, -1.207209, 2.238415, -0.629680, 0.908186, 0.084370, 0.576474, 2.198799, 0.242670, -0.628591, 0.497697, 1.402853, -0.711362, -0.298425, -0.801774, 0.054332, 0.681303, 0.552893, 0.770221, 0.643135, 0.273837, 0.330350, -2.246512, -0.442313, 0.996603, -0.270699, 0.647778, -1.096185, 1.299947, 0.135745, -0.714829, -0.458041, -1.670897, 0.229702, -0.052380, -1.262217, -1.589613, -0.270982, 1.535045, 0.503076, -1.822937, -1.292228, -0.311002, 0.024634, 1.160637, -0.652208, 0.123767, -0.557057, 0.558771, 1.086947, 0.540257, 0.909246, -0.898957, 1.530163, -0.923892, 0.485648, 0.238247, -0.436018, -1.090601, 0.870652, 0.504701, 0.599472, -0.145817, 0.942055, -0.100235, 0.569638, -0.337121, 0.044976, -0.599574, 0.061402, 1.918601, 0.834554, -0.031722, -0.704964, -0.161246, 0.544671, -0.651383, -1.645877, 0.435550, 0.676679, -0.066669, -0.292441, 0.865631, -1.383248, 2.826511, 0.885830, -0.271709, 0.593572, 0.480456, 0.269602, -0.293841, 1.586214, -0.185174, -0.700619, -0.588683, 1.760091, 0.041362, 0.140348, -1.012107, 0.768306, 0.906298, -1.002926, 1.175111, -3.774929, 0.167701, -0.148679, 0.825280, -0.833319, -0.837649, -0.224188, -1.071116, 1.872995, 0.553967, -0.087436, 0.736050, -0.083514, -0.741703, -0.313768, -0.447542, 1.419413, 0.474555, -0.538200, -0.609044, 0.315440, 0.093846, -0.604892, 0.628349, 0.044505, 0.679262, 2.457449, -0.134066, -0.549109, -0.913091, 0.364055, 0.494420, -0.056844, 1.222093, 0.074178, 0.904414, 0.190268, 0.607383, 0.380522, -1.618842, 0.106518, 0.398193, -2.297612, -0.998274, 0.714249, 0.162382, 0.378262, 0.454799, 0.069100, -0.167135, -0.738255, -1.558727, 0.967726, 0.423194, 0.052705, 0.392266, -0.532611, -0.856387, 0.456523, -0.425223, -0.522495, 0.362853, -0.666647, -1.847039, 0.817615, -1.144197, -1.626253, 0.774238, 0.260345, -3.258763, 0.026512, -0.285162, -0.005065, 1.859652, 0.590737, -0.410954, -1.418287, 0.831048, 0.155411, -1.734565, 0.316919, -0.149549, 0.119297, -0.058238, -0.006399, -1.887887, -0.638349, -0.429402, -1.545517, -1.425266, 0.856502, 1.099850, -0.076803, 0.061601, -0.415425, -0.883589, -0.274312, -0.735317, -0.141561, 0.298130, 1.483487, -0.615409, -1.578746, 0.715461, 0.026218, -0.217577, 0.662090, 0.505457, 0.930162, 1.536933, 0.363893, -0.008661, 0.936962, 0.492318, -1.887021, 0.565682, -1.971513, -2.056686, -0.045446, -1.305931, -0.881378, 1.008077, -0.941508, -0.213740, -0.865698, -0.932219, 1.098633, 0.159927, -1.405609, 0.459212, -1.559741, -0.261565, 0.256250, -0.110848, -0.672365, -0.342622, -0.787630, -0.092756, 1.122715, 0.969572, -0.038907, -1.399385, 0.978575, 0.700709, -2.083883, -0.845570, -1.146723, 0.583142, -0.465145, 0.188317, -0.984040, 0.855091, 2.205299, -0.662515, 0.763596, -0.858891, 0.260237, 1.452351, -1.259991, -0.479036, 0.785177, -0.846226, 1.043118, -0.733261, 0.188875, 0.487674, 0.051956, 0.178794, 0.684831, -0.821461, 0.928840, 1.334278, -0.104548, -0.639198, 1.500090, 0.406619, -1.099985, -1.416839, -0.390211, 0.291419, 0.933916, 1.444235, 0.868859, 0.805315, 1.445146, 0.611266, 0.785611, 0.154246, 1.157670, 1.109126, 0.271696, -0.155566, 0.761438, 0.471443, 0.051751, 0.489360, -0.128504, -0.768859, 1.172385, 1.322451, 0.509303, 0.528920, -0.754073, 0.201715, 2.338198, 1.740549, -1.628224, 0.770020, -0.492662, -1.140821, 0.489712, -1.528871, 0.103982, 1.880946, 0.905111, -0.833171, -1.682546, -1.862728, -0.997107, 1.007095, -0.144976, -0.507198, -1.205614, 0.457016, -0.243494, 1.031220, -1.198406, -1.225401, 0.468323, 0.919303, -0.528095, -0.661466, 0.307176, 0.343826, 1.076542, -1.721700, -0.663999, 0.747687, 1.235697, -0.069326, -1.770146, -0.848474, -0.197615, 1.513558, -2.524689, 1.400738, 0.406095, -0.184936, 1.280244, -0.216047, -1.676776, 0.219719, -0.405184, 0.967325, -0.375629, -0.785722, 1.220597, 0.334789, 0.566480, 0.009254, 1.746741, -0.787908, 1.763453, 0.017366, 0.706532, -0.140022, -0.783722, -2.182021, -1.087504, 0.909114, -1.296626, -0.469856, 0.809443, -0.538671, 0.953015, 0.835782, -0.623321, -1.074792, -0.834355, 0.326608, -0.167698, -0.316246, 0.736643, -0.302629, 1.197693, 3.204298, 1.157178, -0.593553, -0.557982, 0.982327, -1.169718, -2.160820, 0.108015, 0.697272, -2.031981, 1.345407, 0.862154, 0.926838, -0.035839, -0.250587, -0.701835, -0.795605, 2.111944, 0.538221, 0.356078, 0.832455, 0.936934, 1.684944, 0.549750, 0.790562, -2.052320, 1.330595, 0.326634, -0.853783, 0.487032, -1.996852, -2.565112, -0.523779, -0.102644, 0.005887, -0.781062, 0.514485, -1.407459, -0.936053, 0.621269, -0.017720, -0.617706, -1.137232, -0.807767, 0.235180, -0.134021, -0.359856, -1.462101, 1.832937, -0.273101, -0.020999, -0.438320, -0.009446, -0.243226, -0.544482, 0.166262, 0.738021, 0.077360, -0.488276, -0.821518, -0.415494, -0.216131, 0.142641, -0.253094, -0.679378, -1.484582, 0.456298, 0.565872, 1.553964, -0.021438, -0.388620, -0.807010, -0.136264, -0.866476, -1.156408, -0.985454, -1.657730, 1.234892, -0.137808, -0.238852, 0.033399, 0.215430, 0.880274, 0.155169, 1.268355, 1.839431, 0.133500, 0.020458, -0.616348, 1.589242, -1.617563, -0.003197, -0.638750, 1.057412, -1.081039, -0.641924, 0.498153, -2.484929, 1.599888, -0.340949, -0.068286, 0.371734, -0.870459, -0.189091, 0.198300, -0.538583, -0.340019, -1.088236, -2.017619, 0.843293, -0.882988, 1.638878, 0.349668, 1.657731, 1.289697, 0.936379, -0.272177, 0.191521, 0.271849, -0.672913, 0.064053, -0.080055, -0.633254, -0.747562, -1.992939, 1.620304, -0.518901, 0.382423, 0.077329, -0.216099, -1.755247, -0.483255, 0.739758, -0.181267, -1.574334, -1.651722, 0.693794, 0.953994, 0.950048, -1.253076, 1.656438, -0.371822, 0.481879, 0.611983, 0.862718, 1.245632, 0.882637, -0.847025, -2.207047, 0.757778, 0.817937, 0.195750, 1.034330, -0.200130, 1.624408, 0.162437, 1.263891, 0.223653, -0.894796, -1.085478, 0.674211, 0.611244, -0.005049, -1.733819, 0.894442, 0.838969, -1.619244, 0.651272, -0.800640, 0.359469, -0.145293, -0.259317, 1.625399, -0.400067, -1.943555, 0.325960, 0.302873, 0.541227, 0.119039, -0.495761, -0.327059, 1.090673, 0.855052, -1.354466, 0.022400, -1.922561, -0.006519, 0.417387, -0.950574, 0.189850, 0.723750, 0.285134, 0.920834, 0.176980, 1.213805, -0.365228, 0.712436, 0.900792, -0.619316, -0.141724, -0.965008, 2.041592, -0.505673, 1.058618, 0.574162, -0.662834, -1.266578, -0.589979, 0.354142, 0.698730, -0.051693, -1.277285, -0.738954, 0.713953, -1.218836, 1.242006, 0.407080, -1.259255, 2.019546, 1.438067, 0.736658, -0.510014, -0.990531, -0.765166, -1.007231, -0.214694, -0.747685, -1.968806, -0.161317, 1.621844, 0.210423, -0.771294, 0.450599, 2.001394, 1.738619, 0.566885, -1.893497, -0.530683, 0.850890, 0.220721, -1.712036, -0.046604, 2.631550, 0.149449, -0.212828, -0.197895, 1.905503, 0.819902, -0.523158, -2.023850, 0.124120, 2.946158, -0.919509, -1.538836, -1.776377, 0.530943, 1.406346, 1.630764, -0.110141, -0.735590, -0.635372, 0.398702, -0.776307, 0.395137, -1.925777, -0.273339, 1.358249, -0.861496, 0.089180, -1.012947, 1.540609, -0.742041, 0.552658, 0.340891, -0.954655, 0.139637, -0.090485, 0.250190, 0.482467, -1.228982, 0.531436, 0.507531, -0.004376, 0.411277, -0.718831, -0.336491, -0.195399, 0.224481, -0.666029, -0.345856, -0.073758, 0.174176, -1.713911, 0.163176, -0.256084, 0.298473, 0.117545, 0.503351, 0.695065, 1.334711, 0.609364, 0.958845, -1.178927, 0.510191, -1.486158, 0.401862, -0.855869, 0.807488, -0.945352, -0.087425, 0.217774, -0.888259, 1.399231, 0.492064, 1.220216, 1.476372, 0.487832, 0.284453, 0.153273, -0.016706, 1.585354, -0.205146, -1.237179, 0.542567, 0.989088, 0.648264, 2.159141, -1.254500, -0.923453, -0.148642, -0.726381, -0.776980, 0.770464, 1.392206, -0.930231, 0.266298, 1.465960, 2.306773, -0.625814, 0.274268, 0.051292, -0.239717, 0.729621, 0.664993, 1.121924, 0.632058, 0.905467, 1.427446, 0.007445, -2.049455, -0.216021, -0.858709, -0.134386, 0.855359, 0.507594, -1.070304, 0.209477, 1.737250, 0.299925, 1.398934, -0.434993, 0.077866, 0.692991, -0.756430, 1.537987, -1.806252, -0.476487, -0.859116, 0.963591, 0.923220, -0.338264, 0.662789, 1.323264, -1.300412, 0.083961, -0.118212, -1.380022, -0.749058, 0.447634, 1.958049, -2.459430, 0.421433, -0.743782, 2.129945, -0.602323, -0.183671, 0.206305, -0.302544, -0.719317, 2.121706, 1.540766, -0.225557, -1.511597, 0.754543, -0.091522, 1.924275, 0.230632, 0.365935, -0.811286, 0.681153, 1.572017, 0.115002, 0.625835, 0.605080, 0.213463, 0.192024, -0.194023, -0.399103, -1.958182, -0.358869, 1.022202, 0.132406, 1.471805, 1.070965, 0.175471, 0.285277, 0.021200, 0.599523, -1.314948, 0.281622, -0.081000, 0.172158, -1.862646, 0.986665, -0.534133, -1.916276, -0.530737, 1.407987, -0.626147, 0.182106, -0.781367, 1.492690, 0.952253, 1.078951, -0.206277, 0.668398, 1.804943, 0.232114, -1.230453, 0.837795, 1.477466, -1.629281, 1.470325, 1.441007, -0.040301, -0.602422, 0.838631, -0.591540, 0.382618, -0.118419, 0.051557, 0.096159, 0.902218, 1.605196, 0.143768, 0.147585, -0.141291, 0.678024, 1.390853, -0.421511, 1.208288, 0.036119, 0.029561, -0.163579, 1.589282, -0.815432, 0.514626, 0.166672, 0.525113, 0.970681, 0.485214, 1.136702, -1.800761, 0.690678, -0.194342, 0.908171, -1.090786, 0.218515, 0.838834, -1.171016, 0.214444, 0.441577, 0.287095, -0.412562, -0.618340, 0.290903, 0.958213, -1.447302, -1.446268, -0.710906, 1.578458, -1.091832, 0.545546, 0.304186, -0.309296, 0.683226, 0.701882, 0.076304, 0.285923, 0.103014, 1.323580, -0.006013, -0.593497, -1.069417, 0.091635, -1.132696, 0.571171, 1.140896, -0.936000, 0.254236, -0.907856, -1.089543, 0.993852, 0.273657, 0.967522, 2.093941, -1.223866, 0.429392, 0.120051, 0.549104, 0.647190, -1.115838, -0.195397, 0.446270, -0.492344, -0.558010, -2.640300, 0.155339, -1.019168, -0.670918, 0.290420, 0.382878, -0.424822, -0.338645, -1.270369, 0.919237, 0.590560, 1.008365, 1.227771, -0.625557, -0.150320, -1.672765, 0.824407, 0.001227, 0.410100, 0.962835, -1.759868, -0.558739, -0.134206, -0.697611, 0.323811, -1.104477, 0.847668, -0.379923, -1.013853, -1.541471, 0.116949, -0.114481, -1.733531, -0.999286, -0.626130, 0.472367, 0.003997, 0.154539, -1.099100, -0.555579, 1.068332, 0.455766, -0.807047, 1.007023, 0.444259, 1.327401, 1.437015, -0.043844, -1.090147, 0.796512, 0.521100, -0.284028, -0.530354, 0.736647, 0.629921, 0.664883, 1.840846, 2.030298, -0.511684, -0.977230, -0.554112, -1.465355, -0.074527, -1.022036, 0.131191, -0.428613, -0.098370, 1.004801, 0.012264, -0.961686, -2.209918, 0.260822, 1.475644, -0.929505, 0.392600, -0.927285, -0.133991, 2.312371, -1.049276, 0.973929, -0.255088, 0.704127, -0.792910, 0.430684, 1.825592, 0.740534, 1.494470, -0.863474, -0.136603, -1.977052, -0.811724, 0.919494, 1.093497, 1.148729, -0.604218, -0.471478, -1.583214, 1.654827, -0.554981, 2.093590, -0.979652, -0.688824, 1.316643, -1.230648, 0.570379, -0.669996, -1.223467, -1.891810, -1.924267, -1.235424, 0.756017, -0.666367, -1.023326, 0.555475, 0.305918, 0.180063, -0.141499, 0.167064, -1.871583, 1.328987, -1.360708, 0.260314, -0.125774, 0.667003, 0.662604, 0.518516, -0.104374, 1.370616, -2.464720, -0.901188, -0.121387, 0.084551, -0.626412, -0.675372, -0.312952, 0.853075, -1.172036, -0.954390, -0.513668, 0.833627, 1.389015, -1.560414, -0.479683, -0.138798, 0.594588, 0.767498, 0.475659, 1.623153, 0.735289, 0.562974, 0.158398, -0.378628, -0.670631, 0.088275, 0.772969, -1.207289, -0.338791, -0.363498, -1.426166, -0.320898, -0.810194, -1.817028, -0.555361, -0.372655, 1.879006, -2.218235, -0.465146, -0.337877, 1.478354, -0.970064, 0.343084, -1.173539, 0.188834, 0.261888, -0.562787, 1.627506, 0.580245, 0.327927, -0.844266, -1.060338, -0.147947, -0.460550, -0.177256, -0.945131, -1.313558, -0.298973, 0.410588, -0.669070, -1.090892, 0.289215, -0.377820, 0.839338, -1.111745, -0.811818, -1.172831, 0.391945, -0.491829, -0.227326, 0.939623, -0.540792, 0.130543, -0.069212, -0.548100, 0.550014, 0.219876, 0.454632, 1.712600, 0.521004, 0.130218, 0.255326, -1.264603, -0.557759, -0.246010, 0.648926, -0.486580, 0.690779, 0.612560, 0.511398, -0.086692, -0.675319, -1.768657, -2.139894, -1.734304, 2.012283, 0.343154, -0.903062, 0.365472, 0.839142, -1.214435, 0.324033, 0.616915, 0.935193, -1.017241, 0.408117, -1.726444, -0.121322, 0.192869, 1.081294, -0.817966, -0.697636, 1.024459, -0.473298, 0.718078, -1.040346, -2.491232, 0.131391, 1.742156, 0.353938, -1.779879, -0.189823, -1.040354, -0.260624, -0.965293, 1.309706, 0.195921, -0.919993, -0.563284, -0.207294, 0.352581, 0.883915, -0.291144, 0.193367, 0.178430, -1.110159, 1.221385, -0.209801, 0.248522, -0.473450, -0.571792, -0.625436, -1.170056, 0.194336, -0.047487, -2.029404, -0.299411, -0.930910, -0.038067, -0.777132, -0.213311, 0.147254, 1.656849, 0.573813, -1.539118, 0.880464, 0.880131, -0.747459, -0.858205, 1.228164, -0.760625, -1.832125, -0.019177, 0.564201, -0.868261, -0.537545, -0.582654, -0.616964, 0.560157, -0.905352, -2.020527, 0.587057, -0.453112, 0.090689, -1.420369, -1.587916, 0.238346, -2.234722, -1.555369, -0.456377, -2.005966, -0.237870, -1.680128, 0.151082, -1.593435, 1.387881, -0.741671, 1.223455, 1.103431, -0.777037, 1.408736, 1.902882, 0.531550, 1.044782, -1.076130, -0.673309, 1.709906, 0.256266, 3.343550, -0.685823, -2.121159, 0.089676, -1.187886, -0.097671, -1.044594, -0.846009, 0.133710, 1.893877, 0.359745, 0.252651, 0.244037, -1.538918, 1.115700, -0.072269, 0.697478, 0.664608, 1.180620, 1.147225, 1.191006, 0.368092, -0.210100, -2.311575, -0.063836, -1.455704, 0.493406, -0.630681, -1.676298, -1.193554, 0.905106, -1.545751, -0.219819, -0.041734, 0.979126, -0.255762, -1.924916, -0.318397, -0.310783, 1.196124, 0.838070, 0.577734, -0.994569, -0.946624, 0.500414, 0.110417, -0.094273, -0.032592, -1.253767, 0.296884, 1.873517, 0.177414, -1.031563, 0.144232, -0.883040, -0.658280, 0.155666, 1.299628, 0.517497, -0.208179, -0.128513, -0.611170, 0.398791, -1.197398, 2.587734, 1.115386, 0.248222, -0.541405, 0.695469, -0.054985, 1.283327, -0.503008, -0.815221, 0.288918, -0.016338, -1.156937, 0.943865, -0.086148, -2.560810, -3.653342, 0.645168, -0.428726, 1.355295, -0.089028, 0.211192, 1.044049, -1.145127, -0.581369, -0.503060, -0.159572, -0.427680, 0.020536, 0.222917, 2.737014, 1.056712, -0.578037, 0.391490, -0.457669, -1.100458, 1.139609, 0.217027, -0.357803, 0.274608, -0.385472, 1.185033, 0.171908, -2.707349, 1.588948, -0.157671, 0.199787, 1.033055, -1.212648, -0.694839, -0.671615, 0.172562, 0.036933, 0.697805, 0.414519, 0.667288, -0.557510, 0.857324, -0.709816, -1.602680, 1.324861, -2.269055, 0.470487, 1.208059, 0.177478, 0.171895, -0.872168, -2.186580, -0.493671, 1.867589, 0.752896, 1.095372, -0.244078, 0.848214, -1.318316, 0.848509, 2.486402, -1.020310, -0.942185, 0.945333, 0.156182, -0.301386, -0.064850, -0.273926, -1.253156, 0.273615, 1.317315, 0.642375, -0.086330, -2.033757, 0.551518, -1.083527, -0.590233, -0.314680, 0.926940, -0.533664, 0.402880, -0.689461, 1.061647, 0.127076, 0.636953, -0.690255, 0.489191, -0.574507, 0.245246, -0.381623, 0.539626, 0.000194, -1.758696, 0.508802, -0.257727, 0.292019, 0.463272, 0.346177, -0.556291, 0.474174, -0.408458, -1.146987, -0.111829, -0.240989, 0.825932, -0.626498, -0.242822, -0.369316, 0.008353, 0.638135, -0.074198, -0.656372, -0.080627, -1.274264, -0.515446, -0.446216, -1.189520, 0.563389, 1.399765, 0.915128, 1.117257, 0.236102, -0.675459, -0.220637, 0.959634, 1.419576, 1.021667, -1.504123, 1.247329, -1.317474, -0.682281, 2.163998, 0.130203, -2.267840, 1.081378, 0.194819, -1.282587, 0.035392, 0.006418, 0.295348, 0.424520, 0.021659, -1.040777, 0.788981, -2.446877, 0.126979, -0.950303, -0.376568, -1.154711, -2.149836, 0.077384, 0.463624, -0.095168, -1.097720, -0.164080, -0.221102, 0.401866, -1.569068, 0.411337, -0.317839, -2.064783, -1.769371, 0.181743, -1.359475, 0.502654, 0.361786, -0.209982, 0.282905, 1.697727, -0.340520, 1.452186, -0.532251, -0.203603, -2.009740, -0.361879, -0.418472, 1.030548, -0.213635, 1.010984, -0.620800, 0.444597, -0.202257, 0.438767, 1.602165, 1.679331, 1.025387, -1.797996, -0.415699, -1.049389, 0.213724, 0.519129, -0.766252, -0.200632, 0.268251, -0.789505, 0.675799, 0.145076, -0.958511, 1.324622, -0.525909, -1.418014, -0.548286, 1.263579, 1.072547, 0.828219, -0.137356, 0.894170, 0.316195, 0.380372, -1.382895, 1.615364, 1.053836, -0.560380, -1.522957, -0.779194, 0.605998, -0.056610, -0.177501, -0.690148, 1.145496, -0.189536, -0.499614, -2.384019, -0.267268, 0.795484, -0.433175, -3.018608, 1.147453, 0.643098, 0.830705, 2.097276, -1.155822, -1.713669, -1.105028, -0.062009, -0.923434, 0.743138, 1.121429, -0.180391, -0.576033, 0.704896, -1.288203, -0.845380, -1.152440, -0.320244, 0.875678, 0.600936, 1.819416, -0.174057, 0.141421, 0.860840, 0.122118, -0.163375, -0.949162, 0.113648, 0.523691, -0.363049, -1.160820, 0.605130, -0.147158, -0.716509, -0.778459, 1.519413, 1.636031, 0.162499, 0.135135, 0.659129, 1.639581, 1.036743, -0.454564, -0.191258, 1.083811, -1.926418, -0.158085, -1.708622, 0.132392, 0.541703, -1.130127, 0.686314, -0.900944, 0.496621, 0.619421, -0.253409, 0.160915, 1.728672, -0.320732, 1.064396, -0.517227, -1.421334, 0.064680, 0.114182, 1.748614, -1.084048, 1.243769, 0.389261, -0.099600, 0.829103, 1.819249, 0.404720, 1.032003, -0.024367, 1.097604, 1.085647, -1.367404, 0.466983, 0.001281, 2.846629, -2.019267, -2.680492, -1.226993, 0.307601, -0.383387, 0.547387, 1.100284, -0.685923, -0.312973, -0.137570, -1.107392, -2.088766, 0.767244, -0.806956, 0.649474, -1.061088, -2.317648, 2.402853, -1.322242, -1.402705, -1.672033, -0.246687, -0.200126, -0.211244, -0.867503, 0.434005, 0.014796, 0.162539, 0.347691, -0.641239, -1.731719, -1.434930, 2.642357, 0.544128, 0.850129, -0.729942, -0.893757, 0.416484, 0.669560, -0.396419, 1.478083, -0.858730, 1.618151, -0.790242, -0.107981, -0.960111, -0.220593, -1.635601, -0.259124, 0.501547, 0.087147, -0.309044, -0.347772, -1.212590, 0.841336, -0.721862, 1.516998, -0.006928, -0.494713, 0.833561, 0.451793, 0.837156, -0.254606, 0.089599, 0.911841, -0.740064, 0.620478, -0.642798, -1.569077, 0.123068, -0.434907, 1.568962, 1.555829, 2.127965, 0.351766, -1.284559, 1.359767, 1.442204, -0.840695, -0.463315, -0.723744, 0.806839, 0.143425, 1.381059, -1.010218, -0.795730, -0.121016, 0.375328, -0.162401, -0.633000, 0.747063, 0.085978, 1.816127, -0.501502, -0.507550, 0.924022, -0.746933, -0.033771, -0.283509, -0.447803, -2.295218, -0.276337, 0.524660, 0.569275, 0.274995, -0.682910, -0.205559, 0.895590, 0.297320, -0.300603, 0.503471, -0.525355, -0.754506, 0.650331, 0.602531, -1.774355, 0.310153, -0.453766, 1.702149, -0.123849, -0.835878, 1.328351, 0.579231, -1.104562, 1.098184, -0.709438, -1.300756, 1.331591, -0.029225, -0.191343, -2.165961, 0.341162, 0.186482, 1.035492, -1.458163, -1.042048, -0.084827, 1.635345, -1.058154, -2.515314, -0.774969, -0.873007, -0.337382, -2.764482, 0.396669, 0.026367, 0.977886, -1.675156, -0.295895, 0.961347, -0.193771, -1.232363, -1.395568, 1.228016, 0.169373, -0.607413, 0.846884, -0.230924, 0.216920, 0.369623, 1.028052, -0.188690, 0.469493, -0.206884, 1.072878, 0.821573, 0.978262, 0.107876, -0.558954, -0.310885, 1.942254, 1.565964, -1.059694, 0.306540, 0.813537, -0.389594, -0.480042, 0.887445, 1.002834, 0.185267, -1.269850, -0.858702, 0.117193, -0.960910, -0.438533, -1.158435, -0.021574, 0.410309, -0.254446, 0.480523, 0.456429, -0.935506, 2.015416, -0.587284, -0.151799, 1.086539, -0.429865, -0.549879, 0.101188, -0.009451, 1.517862, 0.550616, -0.179284, 2.432602, -0.299765, -0.104424, -1.147942, 0.440644, -0.434821, 0.081770, 0.470288, 0.707236, 0.199223, 0.146954, -0.524365, -0.425456, -0.994704, 0.366282, -0.121806, 0.122624, 0.845056, -0.919393, -0.359879, 0.956572, 0.291986, 0.103772, 0.551228}, + { 0.151411, -1.717748, 0.909832, 0.848680, -0.174213, 1.263088, -0.547166, -0.254465, -0.393627, 0.981863, -0.063628, 0.768435, 0.676767, -1.886077, -0.477599, 1.720591, 0.445139, 0.211770, -0.573490, 0.197628, -2.429413, 1.403641, 0.180901, -0.551383, 0.141266, -0.805328, 0.909336, -1.198049, -0.647150, -0.041898, -0.424140, -1.486209, 0.541744, -0.650204, -0.650450, -0.266668, -0.470350, -0.322348, -0.230794, -0.632877, 1.826589, 0.257119, -1.900059, 0.178371, 0.357649, 0.174800, -0.003306, 0.580129, 0.074534, 0.170380, -1.079589, 0.116693, 0.798690, -0.125644, 0.324565, -1.273186, 0.786542, -1.503500, 1.298266, -1.386859, 0.943515, 1.528456, -0.241123, -0.397135, -1.440818, 0.518590, -1.596600, 0.046940, -0.393789, -1.503666, 1.256149, -0.077771, 0.641385, 0.609378, -1.484205, 0.483218, -0.119101, -1.565513, -1.322506, 0.277597, -0.309835, 0.200702, 0.062800, 0.200795, -1.136239, -0.040700, 1.223090, -1.810949, 1.076914, -0.895120, 0.734914, -0.113220, -0.819583, -1.268599, 1.676691, -1.244039, 0.155282, 0.420703, -0.649007, 0.236376, 0.539776, 1.063199, -1.334928, 0.970890, -0.434281, 1.358534, 0.422500, 0.864670, 0.160401, 1.680198, 2.152479, -0.633744, 1.060115, 0.532378, -0.211181, -0.320317, 0.873093, 0.222334, 0.783755, -0.610613, 1.240386, -0.014305, 0.751334, -0.859434, 0.476986, -1.686807, -0.134107, 0.761968, 0.374331, 0.897440, -1.702061, 1.573867, -0.263693, -1.161328, 0.491045, -0.007748, -1.847060, -0.449268, 1.504047, -1.042101, -0.922779, -0.600547, -0.279846, 0.447892, -0.958392, -0.670416, -0.279738, 1.925528, 0.387071, 0.087156, -0.467199, -0.050457, -0.818867, -0.709160, 0.641431, 0.418357, 0.899433, -0.108944, 0.666666, 1.292046, 0.750602, 1.089446, -1.249858, 0.011890, -0.589511, 0.258431, 0.257665, 0.245017, 0.844059, 1.980735, 1.970554, -0.618476, 1.668040, 0.149042, -1.758637, -0.510663, -0.641908, -0.462898, -0.663343, 2.079369, 0.404049, 0.323880, 2.476227, 0.527205, -1.177533, -0.323164, -1.227292, 0.149659, 0.838142, -1.732197, -0.170381, -1.812745, -0.669329, 0.408222, 0.189581, 1.780860, 1.089348, -0.418127, 1.418004, -1.832505, -1.959258, 0.481414, -0.743271, 0.046968, -0.176478, 0.943366, 0.263546, -1.735088, -0.637229, -0.419577, 1.034221, 1.286572, 1.237679, -0.345898, -1.590086, 1.615048, 0.129258, -0.345910, 1.942529, -0.074625, -3.001926, 0.771956, -2.074967, 0.406719, -1.364377, -1.481638, 1.547148, -0.303939, 0.789367, -0.303160, -0.830100, 0.699050, -0.084270, 0.141094, -0.033963, 0.667123, -0.558370, -0.540293, -0.819283, 0.791856, 0.172812, 0.654527, -0.360412, -0.248002, 0.697636, 0.571203, -1.788391, 1.050033, 0.760023, 1.536373, -0.658803, 0.302729, -0.068964, -1.207751, 0.496216, 1.059681, 1.168080, -1.060535, 0.106893, -1.464354, -0.001107, -0.642644, -1.127898, -1.015904, 1.059593, -1.373190, -1.879398, 0.050528, 0.697422, -2.616667, 1.425313, -1.698050, -1.480625, -1.119680, 0.552761, 0.788110, 0.105646, 0.118271, 1.328090, -0.029821, 0.442615, -0.281911, -1.071998, -0.104038, 0.686019, -1.131257, 2.240062, 0.585562, 0.762856, 0.194447, -0.364963, 0.871979, 0.264676, -1.065846, -0.387478, -0.712954, -0.842447, -0.366122, 0.338344, -0.384794, -1.241136, 0.724946, -0.056380, -0.860886, 0.140001, -0.957593, -0.939671, -0.371561, -1.603250, 2.313947, -0.821044, -0.441503, -0.054414, 0.679068, -0.144911, 1.152604, -1.928547, 0.058827, 0.747229, 0.506935, -0.018938, 0.781106, -0.521051, -0.295060, -0.129451, 0.750224, -0.446751, 1.368930, 0.600666, -0.671634, 0.559674, 2.402524, 0.166724, 1.174885, -0.040720, -0.861511, -1.053058, -0.826144, 0.752826, -1.898661, -0.654893, 1.444387, -0.836840, 0.794659, -2.394781, 0.783784, 1.657255, -0.590490, -0.788307, -2.466543, 1.325715, -1.255886, 0.391333, 0.090129, 0.348212, 0.506921, -0.385958, -0.386371, 0.521172, 0.807283, 0.695138, -1.416977, 0.054994, -0.115045, -0.187976, -0.567175, -0.835807, -0.310370, 0.365322, 0.522698, 0.902349, 0.154241, 0.581073, -0.533368, 0.245366, -0.341671, -0.121553, 0.558985, -0.733360, 0.816843, 0.167325, -2.306233, 0.417114, -0.200217, 0.480988, 0.251917, 0.404310, 0.891883, 1.690375, 0.546723, -0.876896, -0.338794, -0.540062, -1.604896, -0.612307, 0.126879, 1.338179, 0.245178, -1.480240, 1.167861, -0.723366, -0.795922, 0.355822, -0.657796, 0.478914, 2.208684, 0.176199, 0.046182, 0.492262, 2.924647, 0.172192, -0.276907, 1.256889, 0.455354, -0.424214, -1.372728, 1.776020, 0.096437, 0.005136, 1.061714, 0.750409, 1.840798, 0.441672, 1.163914, -1.681555, 0.535777, -0.307737, 0.013793, -0.123096, -0.601400, -1.924240, 0.427502, -0.172043, 0.945961, -0.116054, 0.344066, -0.643068, -2.248785, 0.749512, 1.075832, -0.108083, -0.173580, -0.004179, 0.558725, 0.323521, -0.109937, 0.012161, 0.371929, 0.115105, 0.405723, -0.193953, 0.063962, -0.141861, -0.904359, 0.079636, -1.149282, -0.539980, 0.275770, 0.506583, 1.593730, 0.773776, 1.622363, -1.558430, 0.364846, 0.031692, 1.005553, 0.278902, 1.013664, 0.451349, 0.191254, -0.041452, -0.048874, -1.187084, 0.052611, 0.049112, -0.001410, 0.389143, -0.306156, 0.198004, -0.794664, -1.541766, 2.126101, -0.005947, 0.499504, 1.099975, -0.089918, -0.709029, 0.617582, 0.240173, -0.649476, -0.525474, -1.368807, -0.516472, 1.750974, -1.238836, -0.171003, 1.210672, -0.563741, -1.581995, -0.081798, 1.899172, 0.942788, 0.158433, 0.031942, -1.304583, -0.549445, 0.183839, 1.168524, 0.323713, 0.690414, -2.620455, 0.719986, -1.284407, -1.085863, -0.673512, -0.855604, 0.886289, -1.839884, -0.095656, -1.055911, 0.561473, -0.027664, 0.637259, 1.985378, -1.421781, -0.695649, -1.064844, -0.211294, 0.164986, 0.600754, 1.632375, 0.108151, 0.556854, -0.610899, -1.760017, 0.007612, 0.069061, -1.400032, 0.244703, -0.425351, 1.218782, 1.624288, -0.651544, -1.367540, 0.560642, 0.457432, -0.156185, -0.470208, 0.230932, 0.984577, 1.489733, 0.956965, 1.675116, -0.398476, -1.136057, -0.873072, 0.154516, 0.670271, -1.060664, -0.343741, -0.839005, 0.011171, 0.468217, -0.045388, 1.647911, -2.634171, -0.119654, 1.694921, 1.020362, -0.480585, 1.106553, -1.052089, -0.827536, -0.797181, -1.705137, -0.141706, 0.110189, -0.733175, 0.452065, 0.193283, 0.580296, -1.742185, 1.371229, -0.443629, 0.913306, 1.475769, 0.637729, -0.997708, -1.172737, -0.752628, -1.230406, -1.369031, -1.706926, 0.889519, -0.354097, 2.076213, -0.862332, 0.229544, -0.347855, -0.142503, 0.792251, 0.353264, 1.137731, -1.046314, -0.394459, 0.289608, 2.183617, 0.751338, -2.040767, -0.833179, 1.173618, -0.015052, -0.333850, 0.622007, 1.140466, 0.129555, 0.112669, 0.047143, 1.604949, -0.591861, -1.123969, 0.414655, 0.514866, 3.112215, -0.273679, -0.842384, 1.197500, -0.417470, -0.289272, 0.356553, 0.352176, 1.748755, -0.636332, -0.219431, -1.275768, 0.821800, 0.411276, -1.084816, -0.104831, 0.978778, -0.079374, -0.758707, -1.041703, -0.811885, 0.568468, 0.142328, -1.442846, -0.740809, -1.390610, 0.960397, 0.641545, -1.344895, 0.377551, 1.243359, 0.323164, 0.790334, 0.318971, 1.204926, 1.008813, -1.542042, -0.512339, -3.494940, 2.970196, 1.192351, -0.276281, 0.961766, -0.304817, -0.085067, -0.454574, 0.936839, -0.275225, 0.846893, -1.131632, 0.282077, -0.431800, 0.614265, 1.436056, 1.008387, -0.041871, -0.276271, 0.661478, -0.937777, -0.131313, -0.914097, -1.772589, -0.380764, 0.127636, 0.117399, -0.417521, 0.581392, -0.467899, 1.401995, 0.657828, -1.243287, -0.272136, -0.642235, -0.061544, 0.040024, -0.768779, 1.344888, 0.067408, -0.300552, 0.807090, -0.222115, -3.132678, 0.293319, 2.168084, -0.322691, -0.405317, 0.144908, 0.459925, -1.140171, -1.965270, 0.777280, -1.382744, -0.431707, -0.148028, 0.074589, -0.004128, -0.826741, -0.582074, -0.624106, -0.173735, 0.068894, -2.155122, 1.139436, 0.543527, 0.707311, 0.592831, 1.143589, -0.822057, 0.197751, -0.078761, 0.154831, 0.982708, -1.766908, 0.009547, -1.667241, -0.742033, -1.793160, 0.487551, -0.013998, 1.326609, -1.084921, -0.987654, -0.827264, -1.869796, 0.753557, 0.462206, -1.814811, -0.756156, 1.033233, 2.057476, -0.700060, 0.972193, -1.499863, 0.633563, -0.334775, -0.859817, -0.109452, -2.183742, -0.047591, -1.268293, 0.197528, -0.324231, 0.138681, 0.440655, 0.904167, 0.656299, 1.502257, 0.413361, 0.946684, -0.433837, -1.734954, 0.880230, -1.216196, 1.118854, 0.124125, 0.354108, 0.374823, -1.280332, 0.931735, 0.228874, 0.650582, -0.937241, 1.865271, 0.971699, -0.727175, 0.035941, 0.731710, 1.070928, -0.065731, 0.016068, -0.662763, -1.645852, 1.397150, -1.617731, -0.588975, 0.474534, -0.466399, 0.337945, 1.484585, 0.967136, 0.379582, -0.747725, 1.635987, -0.591135, -1.706094, -0.241856, -1.180214, 1.967696, -0.778538, -0.148619, 1.000589, 0.221945, 0.822229, 1.416634, 0.662530, 1.315496, 1.237587, 1.549368, -0.372054, -0.064328, 1.692919, -0.631261, 0.446827, 1.141682, 0.979634, -0.613424, -0.224099, -0.089788, -0.792563, 0.974030, -0.016820, -0.261279, -2.080174, 0.479287, -2.069013, 0.003997, -0.976067, 0.624864, -0.519404, -1.217811, -0.850128, -0.509212, 0.351246, 1.303975, 2.022148, 1.721668, -0.230513, 0.577073, 0.846752, -0.042613, 0.616684, 0.556806, 1.412769, -1.594928, 0.443138, -0.970708, 1.583317, -0.991293, -1.655646, -0.266952, 0.605215, 0.443863, -0.950010, 0.287517, 0.404037, 0.380938, -0.326422, -0.869853, -3.260942, -0.159687, -0.585286, -0.261134, -1.438933, 0.037016, 1.200218, 1.172841, 0.387065, -0.061019, -1.915791, 0.455611, -1.069905, 0.042978, 1.858740, -0.406357, -1.502004, 1.522375, 0.787929, 0.249217, 0.673623, -0.031704, -1.506824, 1.470130, -0.367733, 0.314551, 0.687389, -1.721909, -0.005205, -1.293143, 0.033164, 0.003959, -0.095525, 0.405336, -0.430537, -1.250442, -0.038731, -0.743131, -0.087768, -0.612557, -0.461694, -0.527271, 0.598197, 1.032024, -0.638948, 1.544323, -1.565819, 0.957444, 0.963946, 0.169234, 1.257271, -0.530528, -0.995093, 0.497244, 0.928703, -0.534419, 0.250136, 1.127726, 0.034000, 1.409479, 2.575508, 1.352108, -0.187183, 0.401729, -1.443765, 0.445160, 1.091486, 0.011641, 1.351885, 2.625031, 0.319238, 0.224033, -1.333030, -1.583303, -0.562586, -0.289074, -0.696948, 0.657639, 0.440769, 1.455085, 0.372165, -0.499469, -0.526737, -0.140814, 1.153398, 0.511900, -0.342377, -0.426796, 0.642356, -0.609915, 0.614446, 1.366688, 1.288403, 1.621620, -0.430891, 0.388362, 0.033079, 0.571725, 0.252109, -0.206039, -0.472932, 0.360900, 0.969026, 0.775988, 1.251063, -0.792086, -0.657904, -0.785394, -0.859467, 0.770422, 2.618583, -0.174329, -0.519848, -1.766748, -0.909019, -0.420667, 0.410109, -2.156502, 1.123483, 0.427932, -0.816809, 0.322442, -0.269481, 0.210848, 0.248341, -0.122163, -2.050081, 0.137063, 0.233837, -1.047623, -0.491513, -0.315777, 0.145143, -0.037840, 1.063247, -0.978406, 0.305909, 1.539615, -0.752591, -0.398933, 1.659417, -0.018650, 1.646190, -0.609482, 1.385304, -0.824717, -0.131073, -1.987740, -1.099530, -0.447858, -0.629929, -0.833090, -0.480943, -0.412576, 0.136583, -1.563759, 1.148288, 1.133531, -0.662231, 1.281733, 0.584244, -0.536365, -0.594761, -1.700221, -0.653790, -1.280973, -0.545295, -0.627708, -0.639827, 0.036035, -1.412439, 0.586826, -2.069422, -0.989662, 0.827684, 1.129696, -1.145765, -0.274429, 0.625112, -1.378652, 0.422372, 0.486646, -0.116105, 1.642007, -3.108084, -0.128004, 1.866247, -0.536782, -0.715783, -2.136161, -0.967485, 0.738615, 0.302135, 0.469361, 0.092477, -2.030030, -0.955164, -0.392793, 0.282041, -0.161461, 0.736598, 1.081146, 0.195199, 0.296319, -0.310317, 0.975533, -0.658177, 0.069021, -2.309853, 0.683427, 0.611843, 0.963657, -0.302502, -0.962839, 0.460535, 0.116526, 0.403433, -0.785807, 0.443634, -2.392590, 1.463112, -1.296747, 1.300816, 0.233674, -1.186041, -0.221624, -1.593640, -0.500959, -1.441307, 0.647307, 0.729133, 2.141546, -2.192402, -1.631594, -0.028676, -0.026518, 0.256730, -2.148918, 0.331072, 0.043211, 0.866198, -0.702177, 1.580596, 0.967649, 2.396077, -1.440056, 1.031600, -1.558440, 0.406638, -1.604346, -0.160178, 1.928732, -0.366455, 0.141204, 0.087810, -0.449940, 0.727186, 0.567865, 1.196789, -0.237623, -0.192799, -1.283107, 1.791807, -0.195901, -1.552035, 0.308000, 1.009992, -0.979088, 0.533651, -0.049448, 1.249945, -0.806597, -1.041868, -0.333245, -0.148971, -0.246378, 0.388508, 0.856653, 1.435465, 1.571309, 0.552882, -0.951065, 1.196831, 0.331941, 0.162156, -0.480830, 0.242210, 0.667292, 0.883026, 1.004992, 0.049473, 0.926830, -1.043784, 1.475257, -1.773553, -1.767515, 0.384970, 0.495985, 2.247873, -0.374780, -0.218050, -0.468893, 0.615404, -0.977824, -2.056118, 1.297835, 0.429678, 0.967748, 0.489354, -0.610881, -0.827885, -1.853078, 0.169790, -0.808598, 0.777790, 1.504687, 0.137396, 0.131500, 1.981949, -1.315479, 0.440040, 1.541188, -0.022851, -0.237974, -0.446490, 1.867827, 0.715977, -0.312434, -0.495572, 0.160176, 1.110181, -0.412859, -0.619237, -0.648672, 0.650035, 0.419362, 0.242858, -0.661244, -0.807327, -1.005424, -0.169603, -1.227158, -0.993891, 0.642803, 0.091784, 1.777272, 1.469906, 1.605859, 2.148476, -1.481710, 0.885544, 0.556107, 0.717349, 0.638232, 1.429017, 1.430840, -0.800737, 1.213299, 0.963803, 1.649853, 0.644943, 0.549690, 1.281436, 0.556080, 0.883845, 0.455709, 0.875176, 0.277336, 0.139173, -0.753061, -0.790369, -1.334549, 2.365704, -1.716735, -0.412343, 0.171138, -0.600431, -0.113580, -0.882063, 0.431266, 0.859805, 1.993720, 0.087134, -1.715291, 0.040891, 0.837202, -0.367401, 1.597178, 0.379371, -0.553276, -0.194361, -0.984573, -0.639560, -0.389002, -0.194963, -0.105979, -0.379813, 1.158879, -0.485009, -0.456443, -0.008478, -0.129951, -0.338005, -0.855485, 1.883083, -0.638328, 0.669338, 0.246320, -1.106300, -0.150586, -2.072219, 1.296040, -0.843536, 0.615161, -0.391371, 1.312287, 0.733162, -1.284450, 0.080678, -0.161425, 1.616953, -2.267587, 0.438457, 0.095850, -0.225857, 1.612563, -0.431626, 0.483272, -0.804529, 0.388065, -0.135878, 0.007941, 0.235628, 0.602654, 0.799109, -1.022514, 0.265781, -0.520996, 0.514748, -1.280793, 0.161540, -1.151901, 0.224632, -1.812074, -1.374196, 1.201244, -0.242333, 0.285198, -0.335799, 0.085939, 0.763735, 3.433781, 0.527806, 1.208293, 0.160437, -2.301588, -0.128577, 0.890675, 0.107967, 1.659151, 0.602907, 0.613666, -0.997615, 0.089766, 1.519357, 0.342457, 1.556242, -0.176575, 0.700751, 0.182382, 1.294153, 0.581194, -0.912300, 0.779013, -0.385988, 0.867294, -0.327932, -0.860455, 0.886136, 1.250238, -0.251386, 0.734639, -0.527928, 1.161993, 1.060575, 0.583822, -0.337176, -0.714339, -0.711807, 1.310879, 1.224313, 1.427658, 0.111986, 0.394926, -1.447911, -0.047932, 0.836130, 0.278535, 0.111044, 0.828804, 1.828083, 1.202710, -0.647944, 1.496136, -0.366991, 0.264564, 0.682456, -0.571595, 0.142886, -0.410068, 0.579050, -0.416605, 0.389008, -0.214005, 0.452105, -0.722499, 0.414563, -1.287882, 0.434400, 0.475414, 0.402408, 0.721134, 0.625279, -0.917812, 0.829910, -1.273280, -1.189002, -2.007599, 0.583396, 0.041159, -0.378034, -0.632247, 0.998427, 0.504902, -0.348200, -2.090777, -2.028949, 1.328310, -0.308476, -0.432006, 0.530076, -0.636010, 0.369604, 0.828290, 0.690999, -1.012520, 0.980470, 1.071087, 1.109447, 0.089277, -1.268561, 0.599024, 0.415327, 0.948014, 0.539933, -1.637851, -1.963205, 0.334902, -0.517138, 0.537172, 0.614998, -0.818838, 0.532011, -1.388921, 1.140687, 0.023902, 1.088440, 1.163957, 0.295457, 1.174157, -0.847500, -0.167534, 0.174948, 0.286844, 0.101167, 0.724233, -0.149970, -0.697497, 0.149954, -0.883345, -0.804444, -0.367836, -1.022286, 0.911859, -0.600642, -0.253286, 0.631167, -0.466737, 0.263938, -0.375434, 0.400988, -0.067286, 1.317547, -0.606815, -0.881476, -0.231443, -1.579414, 1.869892, -1.075857, -0.478123, -1.531588, -0.668871, -0.085817, 0.744501, -2.457935, 0.157192, 0.679550, -1.115324, -1.434248, 0.876260, -0.256425, 0.829779, 0.784787, -1.569260, 2.092673, -0.880518, 2.306137, 0.337120, -1.584850, -0.037218, -1.033442, 0.461906, -0.342428, 0.128699, -1.850643, -1.417094, -0.848967, 0.940517, 1.061747, 0.586150, 0.369965, 0.292287, -0.871249, -0.379161, -0.949885, -0.316175, -0.363976, -1.103951, 0.638532, -1.631902, -0.655155, 1.048806, 2.264644, 0.171992, 0.259937, -0.866850, 0.455053, 1.079436, 0.469649, -0.862083, -0.772503, -0.311175, 0.290997, 0.084981, -0.794329, -0.848558, -0.443129, -0.855902, -0.744235, 0.283389, -0.977369, 0.018512, 0.308764, 1.742928, -0.771883, -1.044350, -1.180114, -0.807714, -0.712354, -0.009066, 1.756420, 0.911586, -0.536005, -1.423157, -1.000850, 2.008628, -1.011761, -1.969266, -0.239706, -0.933498, 1.007841, 0.928734, 0.985839, -1.013609, -0.569648, -1.840642, 1.422121, -0.182127, -1.804075, -1.747769, -1.180761, 0.674315, -0.777466, -1.195624, -0.199987, -1.605712, 2.825786, -0.676643, -0.736513, -2.855901, 0.972451, -1.313022, 0.942516, 0.093836, 1.984980, 1.383736, -1.199409, 0.468913, 1.012416, 0.931257, -1.298579, 0.428848, -0.220732, -0.095419, -1.019085, -0.578292, -0.834442, -0.553882, 1.164513, 1.830658, 0.738826, -0.041141, 0.010243, 0.684312, 1.065866, -0.034941, -1.622813, 1.101196, -1.447571, 0.179526, 0.122613, -0.900722, 1.546346, -0.393113, -0.770695, -0.701626, -1.229136, 0.540753, -0.824223, 1.833744, -0.302885, 0.124438, 0.617691, -1.463573, -1.183290, -0.605214, -0.459372, -0.700457, 1.110836, 0.466711, -2.236424, -0.750774, -0.481110, -1.252076, 1.101128, -1.650520, -2.257799, 0.562575, -1.714915, -0.138821, 0.821182, -1.592103, 1.197915, -0.898488, 0.302395, -0.708149, -1.498478, 0.881304, 0.700794, 0.345286, 1.014741, -1.593535, -2.013865, 1.728748, -0.135692, 0.930107, -0.820617, 0.026874, -1.930124, 2.700151, 0.891432, -0.145520, -1.069120, 1.274816, -0.492449, 0.306325, 0.418526, 1.218977, -1.276043, -1.263130, -0.753779, 0.389440, -1.015473, -1.587723, -0.089625, -0.084135, 2.111999, 0.160373, -1.461246, -0.644928, -0.728250, -0.121916, -1.254095, 0.475542, 0.486681, 1.500584, -1.211749, 0.431825, 0.363983, 1.414814, -0.863432, -0.362260, -1.629633, 0.313051, -0.778438, -0.938155, -2.192276, -0.339102, -0.805492, 1.086519, -0.747436, 0.261136, -0.497273, -0.305034, -0.300747, -1.828027, 1.639252, -0.808834, -2.095942, -0.386181, -0.074562, 0.739828, 1.030871, 1.048177, 1.076433, -0.807230, -0.951388, -0.385629, -1.668718, -0.511549, 0.180240, -0.188116, 0.950435, -1.735661, -1.275971, -0.162901, 0.772043, 0.660407, -0.711768, 1.989772, 0.304233, 2.586478, -0.967929, 0.642407, -0.681358, -1.026007, -1.144058, -0.399421, 0.207902, 0.760064, 0.712910, 0.198871, -0.646294, 1.095235, 0.327370, -0.901982, -0.445791, 0.935103, 2.652765, 0.554392, 0.590205, -0.627425, 0.904969, -0.000319, -0.363271, -0.783494, 0.678674, -1.262784, -0.289933, -0.473156, 0.876313, 0.885079, -0.985610, -1.154753, 0.046831, 1.662890, -1.920565, 1.396757, 0.414372, 0.530894, -0.131706, 0.603347, -1.264205, -0.744141, 1.897450, -0.951547, 0.179549, -1.100138, -1.318228, 0.470643, -1.870068, -0.572832, -1.048198, 0.953842, 0.711492, 0.459256, -0.031690, -1.226675, 0.315429, -0.999329, -0.274379, -1.416304, -0.443469, 0.078901, 0.002862, 0.729578, -0.376021, -0.603748, 2.383315, -1.025854, 0.194282, -0.067048, -0.984640, 1.169043, -0.251019, -1.532545, -0.746885, 1.410087, -0.443665, -0.175857, -0.273662, 0.863418, 0.862249, 0.802349, 0.703123, 0.971407, -0.577774, -0.757201, 0.083554, 0.042557, -1.039913, 0.259161, 2.039142, 1.390831, 0.670925, -1.484718, 0.824163, 0.476919, -0.217069, 1.442253, -0.712988, 0.637698, 0.864159, -0.092024, -0.564178, -0.484391, 1.253750, 0.695249, -1.395388, 0.932556, 0.159658, 0.441510, -0.416482, -1.163350, 1.897362, -0.644310, 1.599509, 0.312932, 0.008405, -0.871520, -1.471825, -0.672398, -0.338637, 0.148145, 1.280103, -0.755753, -0.046272, -0.765933, 0.031676, 1.347214, -0.995345, -0.697547, -0.249083, -1.171885, -0.656948, -0.730077, 0.177574, -0.509384, 0.955700, 1.031737, 0.387011, -0.477425, -1.118183, -0.339461, -0.849151, 1.244257, 0.366522, 0.890652, -0.023558, -0.696376, 1.598487, -1.256609, -0.423351, -0.391514, 1.230060, -0.710916, -1.315505, -0.587783, 1.954795, -0.395267, 1.210412, -0.066768, -0.097469, -0.425310, 0.299495, 0.679480, -1.247764, 0.325933, 0.206238, 0.752360, 0.189645, -0.866352, -0.354004, 0.817780, -1.962675, -0.866930, 0.558272, -0.542197, 1.047554, -0.324633, 0.086634, -2.251025, 0.977707, 0.871280, -0.847600, -1.259875, -0.869461, 2.245332, 0.515240, 0.530367, -1.700662, 0.825771, -0.357679, -1.941503, 0.954512, 1.176670, 1.406952, -0.912146, 0.752518, -0.779604, 0.210123, -1.917050, -0.161643, -0.530571, -0.310055, 0.904637, -0.764179, -0.593298, 1.261778, 0.126367, 1.195165, -0.760148, 0.240767, 0.317241, 1.506749, -1.051724, 0.771141, -0.345891, 1.254328, -0.786451, 0.427449, 0.005480, -1.257814, 0.027594, 1.751105, -1.673667, 1.829800, 1.009611, -0.322554, -0.759592, -0.185050, 0.235965, 0.295082, 0.412257, 1.453477, 0.747958, 1.578566, 1.838969, 0.439152, -1.850550, 0.843941, -0.419722, 0.535404, 0.245631, -1.279973, -1.415028, 0.295772, 1.134589, 0.845489, 1.857125, 0.546686, -0.494079, -0.741180, -0.740906, 0.282494, 0.514529, -0.817479, 0.606780, -1.769198, 0.334035, 1.484747, 2.013929, 1.141725, 0.345475, 1.587229, 0.542341, -1.307993, -1.001196, -0.115745, 1.097439, -0.416687, -0.957713, 0.984779, -0.882273, 0.227464, 1.948078, -0.594893, 0.273279, 0.150351, -0.291597, -0.581576, -0.314636, -0.506804, -0.198655, 0.488624, -0.490262, 0.615736, 0.358045, -0.468407, -2.010782, -0.241800, 1.026380, 0.406348, -0.229901, 0.507281, 0.187209, -0.123368, -1.006037, 0.675560, 0.844457, -0.181800, -0.209714, 0.786588, -1.318712, 0.478101, 0.251958, -0.322600, -0.252246, 1.048908, -2.297730, 0.126493, 0.024182, 1.411635, 0.740772, -1.391004, -1.270932, -0.219291, 0.395338, 0.817734, -0.122590, -0.833913, 0.720808, -0.528876, -0.043212, -0.604210, 1.175467, 0.951279, 2.458029, 1.474258, 0.430827, 0.805542, -0.397151, 1.631890, -0.551148, 0.539333, 0.946067, 1.177141, -0.343673, 0.445176, 0.999059, 1.667819, -0.096370, -0.344939, 0.097185, 0.054085, 1.037682, -1.665685, 2.161103, -0.103231, 1.970680, -0.883356, 0.012482, 0.008825, -0.210454, -0.219952, -1.555556, 1.161943, -1.176715, 0.849836, 0.641285, -1.106487, 1.429574, -0.983895, 0.652997, -1.130564, -0.653551, 1.123931, -0.145873, 1.632911, 1.889780, -0.792106, 3.456667, -0.221773, 0.136027, 0.801799, -0.944674, 0.016617, -1.219484, -0.231857, -0.127880, -0.222590, 2.182716, -0.428782, -0.108217, 0.342682, -1.094192, 1.169059, -1.166684, -0.570844, -1.349328, 0.286315, -0.131264, 2.031071, -0.023460, 1.540360, -0.158389, 0.911663, 0.777800, -0.227047, 1.892958, 0.065559, -0.367824, -0.363732, 0.864146, -0.083803, -0.599298, 1.012201, -0.333190, 0.316313, 0.690091, 0.019004, 1.718525, 1.370958, 1.684054, -1.092116, -1.554388, -0.675437, 1.160529, 1.698653, -0.351412, 0.133481, -1.242962, 1.243482, 0.391904, -0.074800, 0.060452, 0.644271, 0.291430, 0.434484, -0.474073, -0.995153, 0.449744, -0.399056, -0.877778, 1.176558, -0.255713, -0.363824, -0.749723, 2.022985, -0.497326, 0.396572, 1.266560, 0.835956, 1.743168, 0.503253, -0.978647, -0.482949, -0.603436, 0.493102, 0.510286, -1.039662, -0.641933, -0.106287, -0.582589, 0.579312, 1.523883, -1.706522, 1.513031, -0.920179, 0.150480, -0.422607, -0.417221, -0.312149, 0.542253, -0.349362, 1.441691, 0.685114, 1.525167, 2.009351, -1.868999, 1.704044, -0.223708, 0.168386, 0.969190, -0.248081, 2.193197, 1.560844, 0.386640, -0.213051, -0.184968, 0.762360, -1.463792, -0.922307, -0.288376, -0.196009, 0.156046, 2.172352, -0.848300, 1.220320, -0.792702, -1.136692, 2.215691, -0.153864, 0.286069, -0.812594, 0.298075, -1.202469, -0.236214, 0.705619, -1.564377, 1.530232, 0.414244, 1.805495, 0.105598, -1.559564, -0.568114, -0.424235, -0.982380, -1.540543, -0.311166, -0.072925, -0.310368, 0.221844, 0.570143, -0.243554, 1.697498, 0.154711, -0.020639, -1.390434, -0.771523, 0.200474, -1.208269, 0.051736, -0.304022, 0.268504, 0.866436, -1.364017, 1.201893, -0.761123, -2.406745, 2.427450, 0.864836, -0.472625, -0.074018, 0.948955, 0.271959, -0.149228, -0.011204, -1.012391, -0.351132, 1.311660, 2.006977, -0.471588, 1.159881, 1.105405, -0.087754, -1.319337, -0.243051, 0.005901, -0.018347, 1.414414, -0.732186, -1.197505, -0.772784, 0.104032, -1.161635, 1.105085, 1.020762, 0.113826, -1.067081, 0.611506, -0.955578, -1.317364, -0.269073, -1.401878, 0.465963, 1.405141, -1.050770, -0.979611, -0.982172, -0.564593, 0.990537, -1.177681, 0.533569, -0.989890, -0.301936, -0.793206, 2.938584, 1.389317, 0.826620, 1.308187, 1.630329, 2.015947, 0.800719, 0.561168, 0.361277, -0.889396, -1.412912, 0.547316, 0.530411, -0.586274, 0.990522, 0.779570, -2.305222, -1.747106, 0.242689, -1.076374, 0.011981, 1.200388, 0.767312, 0.273618, -0.377952, -0.237595, -0.615989, 0.001210, 0.835875, -2.594476, -0.605346, -2.689341, 0.290512, -0.441304, -0.657569, 0.665092, 0.288459, -0.877329, -0.369063, 1.771894, -1.892782, -0.064206, -0.743726, 0.506057, 0.329482, -2.479336, -0.009460, -1.408758, 0.260391, 1.044970, 0.578361, 0.190446, 1.581922, 0.446682, -1.233211, -0.243590, -1.762073, -0.631644, -0.358745, -0.963416, 0.881225, 0.262626, -1.100581, 0.913802, -0.172814, -1.403307, -0.601189, -0.284063, -0.266015, -0.648676, -0.149352, -1.739343, 0.093857, -0.991921, -1.045012, -0.145028, -0.626844, 1.402895, -0.498727, -0.602846, 0.069445, -1.037642, 0.269368, 1.276272, 0.895059, -1.095688, 1.328289, -1.504636, -1.740054, 1.146310, 0.079384, -0.145240, -1.118396, -1.519803, 0.738284, 0.575878, 0.289376, -0.397021, -0.231209, -0.613804, -0.572289, -1.420430, -0.771788, -0.457950, 1.497076, -0.936089, -1.090223, 0.142812, 0.739109, -0.521376, 1.921055, 2.074366, -0.780748, -0.740247, 0.263445, -0.702362, 1.251071, -0.254546, 0.064331, -0.653332, 0.686888, -0.402335, 0.137843, 0.317650, -0.674416, 1.089572, -2.001667, 0.261383, -2.432359, -1.073638, 0.924505, -0.611932, -0.016329, 1.397536, 0.633203, 1.861943, -0.345041, -0.533164, 0.092839, 0.863224, -1.178895, -0.661153, 0.094856, -0.238199, -0.786736, 2.116413, 0.202473, 1.559708, -0.385741, 0.393182, 0.624726, 1.192813, -0.558253, -0.002165, 2.342285, -1.334071, 0.778868, 1.551653, -0.310800, 0.629938, 0.403468, -0.818397, -1.650094, 0.786572, 0.708272, 0.172408, -1.151766, -1.494061, 1.569803, 1.020125, -0.352174, 0.426373, 0.245647, 0.030273, -0.342831, 0.320092, -0.624147, -1.586880, -0.169697, -1.221789, -0.009831, -0.527457, -1.079567, 0.838521, -2.387399, 0.644446, 1.144450, -0.891460, -1.048637, -0.762541, 0.162508, 1.282670, -0.866938, -1.618321, 0.787862, 0.539111, -1.129999, 0.210551, 0.464914, -1.056394, 1.151830, -0.774927, 0.689434, -1.768079, 1.548977, 1.405319, -0.806634, 0.575779, -0.279608, -0.018987, -1.263172, -2.508953, -0.646288, -0.209856, 1.785247, 0.544763, 0.748403, 0.220679, 0.653000, 1.398443, -1.383224, -0.508613, -0.245704, -1.042482, 0.758246, -0.144704, -1.094316, 0.401564, -0.485318, 0.374911, -1.135903, -0.912331, 1.044561, 0.159319, -0.513296, -0.467447, -1.043929, 0.166430, 1.407784, -2.331405, 0.280403, -0.185867, -0.822492, -0.097974, -1.790011, -0.510001, -0.091132, -0.252083, -0.226109, -0.927753, 0.793726, -2.979017, -0.866686, 0.524403, 0.265168, 0.069603, -0.385337, 1.995853, 0.722967, -1.061317, 0.166409, 0.811243, -1.101861, -1.492604, 0.061583, 0.491642, 1.291859, -0.093255, -0.619405, 0.866374, -0.005581, -0.537852, -1.836536, -1.205672, -2.186145, 0.056309, -1.003451, -1.042287, 0.790675, 0.658007, 0.041673, 0.642420, -0.491615, 0.328487, -0.664859, -1.245280, 0.301240, -1.306553, -0.066193, -1.213869, 0.719663, -0.643859, -0.703544, 1.629364, 2.064773, 1.101099, -0.897925, -1.757104, -0.333312, 1.045076, 0.196017, -0.411733, 0.382502, -0.521659, -0.232099, -0.640783, -0.511079, 0.102373, 0.045885, -1.528029, 0.722745, 1.749604, -1.119098, -1.872649, -0.131637, -2.709226, 0.853861, -0.172975, 1.625835, -0.183188, -0.835186, -1.079809, 0.819302, 0.230010, -1.120481, 1.469655, -0.155382, 0.342588, 1.341278, 1.198541, -1.286344, 1.414655, -1.719334, 0.346972, -0.558216, -1.274028, -1.233183, 0.181575, 0.446731, -0.100768, 0.144525, 2.534137, 2.161174, 0.239755, -0.687516, -0.544302, -0.452608, -2.161171, -0.404217, -1.442052, 1.055937, 1.385595, 0.330517, 1.209594, -1.773843, -0.265697, 0.510686, 0.649864, -0.030004, 0.081175, 0.018087, -0.983806, 0.422140, 0.066382, -0.620888, 1.182440, -1.047266, -0.518283, 1.311202, -0.087449, -1.145394, -0.225852, -0.308846, 0.179881, 0.381322, -0.283433, 0.509216, 0.935401, -1.246283, 0.118730, -0.792394, -0.376052, 0.495221, 0.856845, 0.218540, 0.019177, -0.346142, 0.115038, -1.376661, 0.279173, 0.680174, 0.684273, -0.165061, 2.111520, -0.528467, -0.153781, -0.756672, 0.332011, -0.621013, 0.978311, 1.432107, -0.191389, 0.008522, -0.009679, 0.609842, 1.520530, -1.849660, -1.212649, 0.955747, 1.135381, 0.825120, -1.131539, 0.452970, 1.008738, 1.031992, 0.027258, 1.180806, 0.103556, -0.784741, 0.853868, 1.114400, 0.058112, -1.399769, 0.094442, 0.927654, 2.518733, 1.067027, 0.267126, 1.309944, 0.739296, 0.284874, 1.724814, -0.169933, -0.222427, 0.371626, -0.794669, 0.187498, -0.157563, -0.211124, -1.571893, 1.503285, 1.198647, 0.197554, 2.445324, -0.844976, -2.397839, -0.914768, -1.062317, -1.127955, -0.776150, 0.450738, -0.594436, 0.225415, 0.911002, 0.453230, -0.055719, -1.532305, 1.613091, 1.181698, 0.033698, 0.540565, 1.604182, -2.461747, -0.641758, -2.294108, 1.298015, -0.023356, 1.030994, -0.678340, 0.981366, 1.432154, -0.650748, 0.235064, 0.545277, -0.665721, 1.258673, 0.787439, -0.219782, 0.414722, 1.058879, -1.526954, 0.389662, 0.835126, -0.244341, -0.181120, -0.282465, -0.237960, -0.448095, 0.240473, -2.019550, 1.215445, 0.917394, 0.682809, 0.196404, 0.264810, 0.735857, -0.945449, -0.749155, 0.390339, -0.940055, 0.885428, -1.581938, 0.430305, 0.734262, 0.321065, -0.822185, -0.508717, -1.758075, -0.992771, 0.110887, 1.982504, -0.265591, 0.532067, 1.443049, 0.682858, -0.722571, -2.386502, 0.677531, 0.269185, -2.310928, -0.646305, 0.924777, 0.089968, -1.267526, -0.631512, -1.116758, 0.879311, -0.175255, -0.165420, -0.076605, -0.263711, 1.040763, 0.320610, -0.009111, -2.704354, -0.920989, 0.394061, 0.520989, -0.841979, 1.923000, -0.785580, -0.894170, -1.424044, 0.236100, -2.076398, 0.138102, -1.759288, -2.242007, -0.029073, -0.376265, 0.065345, 2.229038, 0.915596, 0.170163, 1.126333, -1.067145, 0.867874, 0.591567, -1.152743, 0.018452, 1.837813, -0.456632, -0.375272, 0.668393, -0.707088, 0.005215, 0.662197, -1.281470, 0.616371, -1.548159, 0.614109, -0.838712, -1.078140, 0.619929, -0.478218, -0.892017, 0.511257, 0.351496, -0.661438, 0.994830, 0.343127, 0.399570, -2.255618, -0.891183, 0.224357, 1.166913, -0.984331, -0.237528, -0.084211, -0.312791, 0.738695, 0.505534, -0.361105, -0.774845, 0.449362, 0.686842, -0.074726, -0.573097, -1.121618, 0.487796, 0.506624, -1.006478, -0.319570, 1.283556, 0.359863, -0.479214, 1.065949, 0.242687, -2.413052, -1.216309, -0.342408, 0.865650, -0.099093, 0.741506, -0.307273, 1.849183, 1.132783, 0.487726, -0.235739, -0.592223, 1.536129, 0.460119, -0.344256, -0.926101, 0.205493, -1.565211, -0.024959, 0.464632, -0.882805, -1.092168, 0.710675, 0.228911, -1.974638, 0.073848, 0.412322, -0.541086, -0.853606, 1.308633, -0.338823, 1.230099, -0.264220, 0.275475, -0.016036, 0.432542, -0.319475, -0.202673, -0.017780, -0.770686, 1.368987, -1.068532, -0.392750, 0.241542, -0.144577, 0.755571, 0.087072, 0.920798, 0.669974, -0.452926, 1.942625, 0.698457, 0.157775, 0.176277, -0.023245, 0.444727, 0.702609, -1.604793, -0.665528, 0.065817, -2.200923, 1.897056, 1.565023, -0.071902, -1.532262, 1.631939, 0.459703, 0.288098, -0.305391, 0.821389, -0.028443, -1.068733, -0.227022, 1.532375, -0.655598, 0.770167, -1.019297, -0.315878, -0.905381, -2.429273, -0.708607, -0.755812, 1.564258, -0.040460, 0.573597, 0.775374, 0.805886, 0.657319, -0.424278, 1.705134, 1.582858, 0.509584, 0.577701, -0.071238, -1.191738, -0.205205, -0.662737, -0.502952, 0.973007, 1.643171, 0.163531, 0.448876, -0.183908, 0.301271, 1.090201, -0.299617, 0.567865, 0.067040, 1.159666, -0.115703, -1.337157, -0.661583, 0.996431, 1.780476, 0.227577, -1.523239, 1.454205, 0.179445, -0.706854, 0.019392, 0.782142, 0.773142, -0.338253, -0.170509, 1.285505, 1.362626, -0.741832, 0.325562, -0.087308, -0.511782, -0.828990, 0.254954, -0.393790, -0.047856, 0.528034, -1.835352, 0.791679, -0.606320, -0.757543, -0.221997, -0.775215, -2.018602, 2.065582, -0.669218, -0.305895, 0.626561, -2.138089, 1.201468, -0.653646, 0.412434, 1.172744, -0.609076, -0.603106, -0.796588, 0.124110, 1.944400, 0.929674, 0.111112, -0.435089, -0.548048, -1.176471, 0.708067, -0.703525, 0.872202, -1.359382, -0.833910}, + { -0.366051, 1.090044, 0.866319, -1.157692, -1.128796, 1.541931, -1.350312, 1.333806, 1.694647, 0.457108, -0.111000, -1.172261, -0.753790, 1.331515, -0.027152, 0.747205, -0.658500, -0.038192, 1.525249, -0.759295, 1.250606, -0.340413, -1.127007, 1.406623, -0.706422, 0.292796, 1.631768, 2.215634, 0.073980, -0.385112, 0.506362, -0.202795, 0.755789, -1.867381, -0.273771, 0.503473, 1.508404, -0.468469, 1.668037, -0.251509, -0.785674, -1.111004, -0.960976, -1.322358, -1.545723, 1.471144, -0.506242, -0.588949, -0.313601, 1.139427, 1.579125, 0.652714, -0.901777, 0.656510, -0.288514, 1.452325, -0.302991, 1.330756, 2.886968, 0.023464, 0.835104, -0.885361, 1.157006, -2.515794, -0.574478, 0.328060, -1.709359, -0.494329, 0.598770, -0.747478, 1.011745, 1.327282, -0.326995, -1.018029, 0.869699, -1.157081, 1.163211, 0.984707, 0.297095, 0.329330, -0.890085, 0.029351, 0.399321, -0.042496, 1.026399, -0.837723, -0.190327, 1.047189, 0.184283, 0.411270, 0.301015, 1.419925, 0.110397, 0.315591, -0.981933, -0.170388, 0.612171, -1.051599, -0.060530, 0.390152, 1.361701, -0.939189, 0.894472, -0.715243, -0.510507, 0.025623, 1.553985, -0.040116, 1.079201, 0.386709, -0.336056, -0.869779, -1.411344, 0.096694, -1.483401, 1.776198, 0.237811, -0.026078, 0.857311, -0.718028, -0.124715, 0.040444, -1.939897, -0.006549, 0.231204, -1.953128, -0.552907, 1.079684, 1.235623, 1.523048, -0.308990, 0.989936, -1.130399, -0.647225, -0.647576, -0.964932, -0.558924, -0.038719, 1.105535, 0.149483, 1.006351, -1.314417, 0.389194, 1.346200, -1.696851, 0.970115, -0.137362, 1.871246, 1.547609, 0.802342, -0.763129, -0.293492, -0.091770, -0.473747, -0.245311, 1.169244, -1.430883, 0.049332, -1.836761, -1.351445, -0.212866, -0.182219, 2.134880, -0.518474, -1.587803, 0.309249, -0.367516, -0.191881, -0.503828, -0.679150, -1.493666, -1.162391, 0.832011, 1.911391, -0.162675, 1.017089, 0.032120, -0.107554, -0.088736, 0.275411, -0.678826, 1.432165, 0.365810, 0.622105, 0.506559, -0.318611, 0.971903, 0.525363, -0.445594, 1.876652, -1.149562, -0.463688, 2.733772, -0.764278, -0.449677, 0.302581, -0.240802, 0.190044, 1.008196, -0.278168, 1.065394, -0.650817, -0.101829, 2.310449, -0.039349, -0.503874, 1.112140, -0.235511, -1.212259, -1.348459, 1.387797, -0.952093, -0.180724, -1.222137, -1.093086, -0.178448, 1.269866, -0.190811, 0.650464, 0.778309, -0.050321, 0.380407, 0.161355, 1.421648, 2.433857, 2.583800, -1.573436, 0.448591, 0.110533, -1.603465, 0.740921, 0.289418, -1.414146, -0.624459, -0.593682, 0.916803, -1.701631, 0.241922, -0.543003, 1.188700, 1.906490, 0.481122, -0.768427, -0.953898, 2.102781, 0.618356, -0.336548, -0.572326, 0.606568, 0.491024, 0.380272, -0.022026, 0.523972, -0.954023, -0.877209, -0.224495, 0.432683, -0.254900, -0.774008, -1.607907, -0.720620, -0.604274, 1.678520, 1.913163, 0.159356, -1.410313, 0.197388, 1.169798, 0.903142, 0.039011, 0.144807, 2.458497, -1.001692, -0.505731, 1.414980, 0.832307, 0.554467, 1.206977, -1.397985, -0.592895, 2.600739, -0.416195, -0.033741, 0.451166, 1.512583, 1.053435, -1.479246, -0.142051, 0.975982, 0.311530, 0.487769, -0.323924, 0.348971, 0.799994, -0.060661, 1.669826, 0.582834, 0.011219, -1.827596, -0.489834, -0.820367, -1.095741, -0.967043, 1.146245, -0.020773, -0.041144, 0.815911, 0.721984, 0.252552, 0.870835, 0.255693, 1.718572, -1.245382, 0.587540, 0.357072, 0.060316, -2.369084, 0.227770, -0.223617, 0.033238, 0.292996, -0.595448, 0.075100, 0.349034, -0.580471, -0.636505, -1.066613, -1.429018, 1.742048, -0.667394, 0.679725, 1.340292, 0.490123, -0.563744, -0.495447, -0.463659, 0.680997, -0.267053, 0.958029, 0.013707, 0.709109, -0.390414, 0.719052, -0.423561, -0.090128, -0.733675, 0.132490, -1.410537, -0.524790, 1.193208, -1.036264, 0.011977, -1.313109, -1.323276, 1.121715, 0.418580, -0.880143, 1.663108, 0.355192, -0.326285, 1.055457, -0.800780, -0.133384, -0.212181, 0.272341, -0.555156, -1.064138, 0.755548, 1.491287, -0.501005, 0.305670, 2.249164, 0.729153, -0.542153, 1.753567, 0.403875, 1.621784, -0.150918, -0.949804, -0.820128, -0.497204, -0.082337, 0.106560, -0.031992, 0.430473, 0.103075, 0.383675, -1.641249, 0.462108, 0.095299, -0.188685, -0.489998, -0.470622, -0.400630, 0.950855, -1.671221, -0.851781, -0.962811, -0.323219, -0.772624, 0.288847, -1.147847, 0.541159, -1.650323, 0.930566, -0.537825, -0.194494, 0.067336, 0.530044, 0.415645, -1.302154, -0.638851, 0.251781, 0.447008, 1.781901, 0.609136, -0.342385, 0.262713, 0.939617, -0.111206, 0.130623, 0.921171, -0.454378, -0.931573, 0.291690, 0.132114, 0.346790, 0.083356, -0.086598, -0.154961, -1.116497, -0.499442, -0.844005, 1.524551, 0.680117, -2.055838, 0.434303, -0.104819, -0.839391, -0.089037, 1.341437, 1.073892, 1.198432, -0.211229, 1.516555, 0.491887, 0.397480, 0.602591, -0.199075, -0.464708, 0.123884, -0.285974, 1.035733, 1.375628, 0.868683, 1.118244, -0.196603, -1.484560, 0.413828, 0.221042, -0.212243, -0.358806, 2.159950, -1.081131, 0.734749, -0.967876, 0.483122, 0.331686, 0.160346, 2.498008, 0.958881, 1.340358, 1.147135, -0.450397, 2.073919, 1.004491, -0.386724, -0.382245, 0.865120, 0.970890, 0.188061, 0.254678, 0.097065, -1.364824, -1.984393, 1.262353, 0.615119, 1.384209, -1.461402, -0.175372, -0.183393, -1.903769, 0.072977, 0.767290, 0.200107, -0.096740, -0.602840, 0.824492, -0.355718, -0.789418, -0.371401, -0.483612, -1.464046, 0.158438, 0.039026, 1.439314, 0.183182, -0.261420, -1.548254, -0.193097, -1.471828, 0.202734, -0.491591, -1.269838, 0.316289, -0.517476, -0.569726, -1.944641, 0.402780, 1.515877, 0.506689, -0.443737, -1.154531, -1.311475, 0.366058, 0.246239, 0.455154, 0.631679, -1.170954, -0.380020, 0.486398, -1.016393, -0.519378, -0.424926, -1.790598, 0.473614, 0.051159, -0.173950, 0.852429, 0.571114, -0.756598, 0.874593, 0.588289, -0.007917, -0.465132, -0.473911, -1.321447, 0.527671, 1.465970, -0.607841, -1.685049, 0.023688, 0.472908, -0.240533, 0.106455, -0.234273, -1.186065, 1.037140, 0.143860, -0.567111, -1.168850, -0.076105, 1.113482, -0.642468, 0.548264, -0.904635, 0.772669, -0.863736, 0.200474, -0.829202, 0.979016, -0.486663, 0.332465, -0.583737, -0.044128, 0.276428, 0.954208, -0.068546, -0.832858, -1.270139, 2.136811, 0.590467, -0.624761, -1.480334, 1.382104, -1.602011, -0.793466, -0.906890, 0.376001, 0.492588, 1.071393, -0.067113, -1.398913, 1.175812, 0.946857, 1.774585, 0.401990, 0.255106, -0.942760, 0.469706, -0.464059, -1.150043, 0.255540, 1.469347, -2.037062, -0.373867, -0.650264, 0.552214, -0.664573, 0.533174, 0.321023, 1.534882, -0.680650, 2.482328, -0.481479, 0.448310, -0.581476, -1.514262, 0.277445, -0.838904, -1.476984, -0.430568, -0.220664, -0.944887, -0.818019, -1.135972, -0.026249, 0.958074, 0.617705, 0.494235, -0.423978, 2.756689, 0.253280, 0.065789, 0.473021, -0.459397, -0.142948, -1.815069, 0.322057, 0.518124, 1.449641, 1.918943, 0.062592, -0.075669, 1.611980, -0.860131, 0.147282, -0.447477, 0.875886, -0.762018, -1.701572, 0.272824, 0.905363, -2.514226, -1.389881, -1.206337, -0.196696, -1.372550, 1.582245, 0.140760, -0.689306, -0.659299, -0.258320, 1.030984, -2.551895, 0.679386, 0.165588, 0.561277, 0.173679, 0.260028, -1.245822, 0.925928, 0.988071, 0.097116, -0.051939, -0.539584, -1.237677, 1.125789, 1.874041, 1.241448, 0.989269, -0.217760, -1.631286, -1.552263, 1.123045, 0.860963, 0.920692, 0.377092, 1.325692, 1.106578, -0.508420, 0.592198, 0.992600, -0.393067, 0.206730, 0.752042, 0.851183, 0.866981, -0.305114, 0.694478, 0.606522, -2.346379, -0.607023, -1.474387, -0.494714, -0.539259, -0.999210, 1.528820, 0.166750, -0.131750, 0.478981, 0.930009, 0.214593, 0.692389, 0.086775, 1.497250, 0.858509, 0.861626, 0.649618, -1.482740, -0.656958, 2.416242, -0.493451, 0.177911, 0.505277, -0.130259, 2.379736, -0.576178, 1.187565, -0.576931, -1.132377, 0.395463, -1.151024, -0.920281, 1.260511, -1.110756, 1.529079, 0.458472, 0.830109, -0.039647, -0.080383, 1.122112, -0.274819, 1.092939, -1.546443, 0.255672, 1.235009, -0.380847, 0.321383, -0.443796, 0.286741, -0.312062, 0.946869, 1.277352, 0.149270, 1.595581, 0.559365, -0.290963, -0.664620, -1.175728, -0.059714, -0.332855, -0.401577, 1.317238, -0.548539, 0.263354, -0.275134, 0.482188, 1.430070, 0.069831, -0.538429, 0.360160, -0.529170, -0.980606, -1.526071, 2.679397, -1.235846, -0.669099, -1.724909, 1.029704, 0.098813, 0.335976, -0.945628, 0.394371, 0.233446, 0.835115, 0.588741, 0.393339, -0.093629, 1.026724, 0.742848, -0.703165, 1.227853, 1.734061, 0.770439, -0.266471, -1.082233, -1.157477, -0.866743, 0.229048, 0.893650, 1.320832, -0.858671, 0.141810, 0.796965, -0.577622, 0.551456, -0.917431, -1.122053, -1.237289, -0.651291, -0.461301, -0.703822, -0.056861, 0.977100, 0.540449, -0.347926, 1.112978, -1.307661, -0.381739, 0.954460, -0.055147, -2.145001, -0.296021, 0.389547, -0.158820, -1.297863, 0.583484, 1.466881, 0.509633, -1.163055, 0.825659, 0.644911, 0.082810, -1.322625, 1.326049, -0.805257, 0.835166, -0.827975, 0.767160, -0.023294, -0.095388, -0.777284, -0.113734, 0.504145, -2.348214, 0.358429, 1.453401, 0.157792, 0.375178, -0.494533, 1.136741, -0.172614, -1.308590, -1.240380, -0.293492, -1.762733, 0.499742, 0.648316, -0.306742, 1.064501, 2.588493, 1.534481, -0.068430, 0.628313, -1.202221, 0.751400, -0.611287, -0.285582, 0.621840, 1.118552, -1.304569, 0.338408, 0.634245, 0.727070, 1.351708, 1.906642, -1.245493, 0.544085, 0.023567, 0.822136, -0.225659, -0.554759, 1.078285, -0.487821, 0.350217, -1.328078, -1.516463, 0.379319, 0.841175, -0.803244, -2.133249, 0.043919, -1.727119, 0.712188, 0.048582, -1.138496, -0.441502, 0.470729, 0.101948, -1.268373, 0.462844, -0.536101, -0.483177, 0.209565, -1.645566, -0.102030, 2.304646, 1.200114, -0.418676, 1.505637, -0.294857, -0.202662, -1.222147, 0.313015, -0.161851, -0.029240, -0.023564, 0.067814, -0.741534, -0.666548, 0.490464, 1.407186, 0.510670, -0.308920, 1.162411, -1.660865, -0.167916, -1.449202, 2.360460, 1.179640, 0.216388, -0.157080, -0.657975, 0.374985, -0.607038, -0.140700, -0.855956, 0.199556, -2.110195, 0.438510, -0.377595, 0.290620, 1.005258, -0.731770, -1.205673, -1.022828, 0.060198, -0.478521, 0.387020, 0.073045, -0.462466, -0.718821, -2.020948, 0.417627, -0.594171, -2.159554, 1.438150, -0.285563, 0.648363, 0.804517, 1.167873, -0.232250, -0.115185, 1.163859, 0.298022, -0.658288, -0.080099, 1.090074, -0.016892, -1.086784, 0.392383, -0.727807, -0.297935, 0.597663, 0.559123, -1.673050, -1.948834, -0.387070, -1.171286, 1.993822, -0.180595, -0.144192, 1.357437, 1.454872, 0.661677, 0.483265, -0.397517, -1.225479, 0.020337, 0.212672, 0.518673, 0.767580, -0.626396, -0.152479, 0.277082, -0.454873, -1.132728, -0.827887, 0.819189, -1.517897, 1.019129, 0.540812, -0.869711, 0.364573, 1.069084, -0.558590, -0.990351, -1.591637, -0.871694, 0.545562, -0.461599, -0.102648, 0.222724, 0.999675, 0.292247, 1.179970, 0.776466, 0.112242, 0.104970, 2.314705, 0.021268, -2.368748, -0.958900, 0.297815, -0.003677, 1.566647, -1.432305, 1.204170, -1.282670, -0.649383, -0.613923, 1.684349, -0.139662, 0.792151, 0.632381, 2.151388, 0.849497, -0.041654, -0.183858, -0.691740, -0.197847, -0.838188, 0.802003, -0.530760, 1.746419, -1.270005, -1.765993, -2.016589, -0.324317, -1.108419, -0.088983, 1.474725, -1.020524, 0.675191, 1.354876, 1.363179, -0.522103, -0.169038, -1.379544, 0.261470, 0.213237, 0.179582, 1.214208, -0.607320, -2.186980, -0.733379, -2.372892, 0.959630, -0.993857, 0.176890, 0.260644, 1.411645, 0.393456, 0.257266, -3.124489, -0.235843, 0.588131, -1.340846, -0.332305, -0.440792, 0.171715, 0.069795, 0.650910, 1.528987, 1.849215, 0.077807, -1.100648, -1.817446, 2.365149, -0.220911, -0.411025, -0.001701, 1.012689, 0.099022, -0.162977, 2.378298, 1.187006, -0.295466, 1.683484, 0.364706, -0.571128, -1.760534, -0.122802, 1.857482, -0.143319, -0.230420, -0.214831, -0.308055, 0.118742, -1.022546, 0.952589, -0.430711, -0.185212, -0.190947, 0.051814, 0.060666, -1.445201, -0.841744, 0.594250, 0.418576, 1.577818, -0.641416, 1.060903, 0.294138, 1.013450, 0.627861, -0.281716, -0.982605, 0.361732, 0.248037, 0.756866, -1.069409, -0.120460, -1.677853, 0.019826, 0.648522, -0.808604, 1.144117, 1.187809, -0.397782, -0.149470, -0.590064, 0.882347, -0.834685, 1.555812, 2.235354, -0.555875, -0.769270, -0.285175, -0.284234, 0.119298, -0.612013, 1.969389, 0.367399, -0.474982, -0.914559, -0.129702, 0.494528, 0.682517, -0.919533, -1.472182, 0.180034, 0.692186, 0.702038, -1.051907, -0.776538, -0.074859, -0.264470, 1.543097, -0.542533, -0.131785, 0.240690, 1.611668, -0.151417, -0.017538, -0.271936, -0.437718, 0.022805, -0.669591, 0.267952, 0.694436, 2.424463, -0.201106, -0.239224, 0.817808, 1.117689, 0.960553, -1.468808, -1.203427, 1.087992, -0.376621, 1.581256, -0.893155, -0.207584, -0.273662, -0.677110, -1.035160, 0.560880, 0.636948, 0.859484, 0.137554, -0.626866, -0.080127, 1.076695, -0.071589, 0.664032, 1.024663, 0.547021, 1.001503, -0.261051, -1.086343, -0.003509, -0.375856, -0.938780, 1.226086, 0.046283, -0.526216, -0.588638, 0.753575, 0.133434, -0.149700, 2.103486, -0.560226, 1.007565, 0.844389, 1.625927, -0.494287, 0.849952, 0.226575, -1.008783, -0.036338, 1.705755, 0.478073, 0.045146, -0.682793, 0.749817, 0.297386, 0.783425, 1.397597, -1.056513, -1.257820, 0.522975, 0.206689, 0.530611, 1.156682, 1.122042, 0.801552, -0.167375, -1.126947, -0.610750, 0.459830, -0.491992, 0.536673, -1.537645, -0.029582, 1.316590, -2.018537, 1.373362, -1.074952, -1.185202, 1.268097, 1.255860, 0.623142, -1.060992, 0.659908, 0.405465, 0.401678, 1.122369, -0.694854, -0.353233, 1.594824, 0.189123, -0.014828, 1.288232, -0.446496, -0.615074, 1.409053, 0.373744, -0.346291, -0.104675, -0.451614, 0.481504, -0.549403, 0.327145, 0.430512, -1.504374, 1.352461, 1.232739, -1.324237, 1.043989, -0.534908, 1.035258, -2.174643, -1.415195, -0.951376, 0.473963, 2.701545, 0.286097, -1.050524, -0.536708, 0.758873, 1.366072, -0.501957, -2.033290, 0.826883, -1.037507, 0.461361, -0.997928, -0.290920, -2.213019, -1.442613, 0.130412, -0.746206, 1.416294, -0.522086, 0.514938, -1.197681, -0.430812, -0.084455, 1.562261, 0.404097, -1.615372, -0.281724, -0.281191, -1.548097, 1.133326, -0.814797, 2.129958, 1.279244, -0.566920, 1.509583, 1.358870, -0.302262, 1.040258, -0.350752, 0.962198, -0.138816, 1.136069, 0.530156, 0.389528, 0.796999, 1.296768, 2.940829, -0.362098, -0.291717, 0.933193, -2.060909, 2.170132, 0.205767, 1.031326, -1.197397, 0.434779, -0.630896, -0.224678, -1.784438, 2.383038, 0.891166, 0.223739, -0.299808, 0.328977, -0.022802, 0.524956, 1.829236, -0.453798, -1.107157, -0.636500, 1.033642, -1.019548, 0.799245, 0.398032, -0.786846, 0.419584, -0.128728, -0.916340, -0.637239, 0.262552, -0.507553, 0.433898, 0.610220, 0.148544, 1.100288, -0.816836, 0.712949, -1.028352, 0.262168, -0.949171, -0.333264, -0.721797, 0.852567, 2.276798, -0.753126, -1.294838, -0.619130, -0.666390, 0.530774, 1.989407, 1.869620, 0.912516, 0.627528, 0.452196, -1.422774, -0.194644, 0.010776, -0.440234, -0.505087, 0.206804, -1.849113, 0.871163, -0.096737, 0.093904, 1.282949, -0.026341, 0.068432, -0.208103, -0.575788, -0.606968, -0.892175, 0.144999, -1.256860, -1.361715, -0.728653, 0.053181, -0.059173, 0.901752, -0.151951, -0.162722, 0.399033, 0.208364, -1.056095, 0.476780, -0.027557, -0.235676, -0.198806, 1.485383, -0.561210, -1.411141, -0.300205, -1.002026, -0.784634, 1.266159, -1.090193, 0.649029, -0.234111, -0.082262, 0.356078, 0.321915, 0.015732, -1.184611, -1.899113, 1.490680, 1.392324, 0.283886, -0.353852, 2.057961, 0.981666, 0.848730, -0.253620, -1.137007, 0.404694, 0.065526, 0.085647, -1.038783, -2.569717, 0.701330, -0.414976, -0.842873, -0.298220, 1.891944, -0.804642, -0.768543, -0.478489, -1.091725, -0.170599, 0.112198, -0.726134, -0.246962, 0.965135, 1.139514, 0.419828, 1.208580, -0.066874, 1.945829, 0.162809, 1.297811, 2.202734, 1.741643, 1.511201, -0.751677, 0.617983, 0.273729, -1.775817, -0.859621, -0.268454, -0.651191, -0.321220, -0.047067, -0.043492, 0.369731, 0.062866, 0.444285, 0.815012, -1.235550, -0.121403, -1.554279, 1.588515, 0.088841, 0.296332, -0.815071, 0.408587, 0.947721, 0.542313, 0.334759, 0.027636, -0.437686, -0.660244, 2.208708, 0.602455, 1.435043, 0.972738, -0.578480, 0.766644, 1.074701, -0.844363, 0.283039, 0.174809, -0.285907, 0.269971, 1.571914, -0.680261, 0.014420, 1.316165, 0.833149, 0.523407, 1.883938, 0.983637, 0.623695, 0.309055, -0.690168, -0.769946, -1.424188, -1.022835, -0.391665, -0.725895, -0.537701, 0.715435, 0.279784, 0.723945, -1.073925, 0.655954, -0.114652, -0.576828, -2.374498, -0.920265, 0.550063, 0.871423, -0.417389, -0.660618, -1.771935, -0.894860, 1.397525, 0.097323, 0.554468, -2.250533, 0.337591, 0.464278, 0.510972, 0.267362, -0.177007, 2.532581, 0.592427, 2.865095, -2.399371, -1.158907, -0.466906, 0.880595, 0.179700, 0.598148, 0.080115, -0.402827, 1.002004, -0.344141, 0.198522, 0.296398, 0.090345, 0.551243, 0.462708, -0.528162, -0.549759, -0.018495, -0.648103, -1.150885, 1.193687, 1.445238, -1.602518, 0.419286, 1.923925, 0.993801, 0.080631, 0.681932, 0.523293, 0.094783, 0.872851, 1.055104, 1.328419, 0.447384, 0.508069, 1.121763, 0.164839, 0.825536, -0.917679, -0.794695, 0.184164, 1.579811, 0.432503, 1.097294, -1.257097, -0.146743, 0.632343, 0.873633, -0.156048, -0.012500, -1.466014, 0.105209, -0.743446, 0.756828, 0.109854, 0.962585, 0.037169, -1.495391, -1.055537, 1.542128, -0.972383, -0.450260, 2.811025, -1.481503, -1.342464, -0.118399, 0.675031, 0.781311, -1.309169, 0.257078, 0.303964, -0.277430, -0.468578, -0.266924, -1.589440, 1.171651, -1.062283, 0.469898, 0.806030, -1.440026, 0.805684, 0.891655, -0.023100, -0.062576, 1.327035, 1.009489, -0.899913, -1.173445, -0.682394, 0.748711, 1.804029, 1.652740, 0.959006, -1.492983, 0.158459, -0.904840, -0.421817, 0.387183, 1.827316, 0.672307, 1.019775, -0.287872, 2.863921, 2.185695, 0.995617, -0.605319, -1.932329, -0.334581, -0.025587, 1.131738, 0.857656, 0.112565, -0.203046, -1.130978, 0.092396, 1.355934, 0.403165, 0.803676, -1.441043, 0.502503, 1.159083, 0.763962, 0.031462, -2.548171, -0.252876, 0.735758, -0.132680, -0.236088, 0.352176, -1.417295, -0.090644, -0.678433, 0.486371, 0.444437, 0.570962, -0.512129, -0.560760, 0.346190, 1.682052, -0.565234, -0.776522, 0.488945, 0.627600, -0.167428, -0.130414, -0.010353, 0.879153, 1.337339, -0.585537, 0.727072, -0.141975, 0.533020, -0.885554, -0.499028, 1.047312, 0.075773, 1.098370, -0.192691, 0.721690, -2.273454, 0.509313, 1.157307, -1.005416, -1.772732, -0.942747, -1.645998, -0.336253, -0.146102, -0.824648, 0.409081, 0.118311, 0.709025, -1.624230, -0.227199, 0.618670, -1.040878, -0.408246, 1.277359, 1.462230, -0.100716, 0.926692, 0.572805, -0.194286, -1.763308, 0.378171, -0.436644, -1.110692, -0.198854, 0.546694, -0.314007, -0.476614, -1.257885, 0.661586, 0.295306, -0.487621, 0.220747, 0.877556, 0.508186, -0.324527, 0.832008, 0.321013, -2.623273, -0.558013, 0.268001, 0.907817, -0.509289, 1.995986, -1.079092, -0.357120, 0.692847, -1.594903, -0.810229, 0.766416, 0.458690, 2.388878, 1.237876, -0.482560, 1.621789, 0.460475, -1.521537, 0.398639, 0.488280, 0.814789, 2.039437, 1.104775, -0.081346, 0.693222, -0.675134, -0.376279, 0.148597, 0.349295, -0.826567, 0.015371, -1.211840, 0.133244, -0.201431, -1.035327, 1.334061, 0.333192, 0.840426, -0.241970, 0.518896, 0.260458, 0.739403, 0.211132, -1.336182, 0.729792, -0.448636, 0.685902, -0.518373, -2.049942, 0.840856, 0.369066, -2.713610, -0.956266, 0.844052, 1.454209, 1.751947, 1.118434, -1.199703, 0.300938, -0.622784, -1.080096, -2.325250, 1.183856, 0.204165, 0.879490, 0.600926, -1.200129, 0.161161, -0.411520, 1.622712, -0.394856, 1.465673, -0.513967, 1.573941, 0.823391, 2.499071, 1.684852, -0.002011, 1.494403, -0.637152, 0.413116, 1.138018, 2.299080, 0.912717, -0.582792, 0.011413, -0.944657, -0.355949, 1.198286, -0.096939, -0.521424, 0.769444, -1.009839, 1.116072, -0.939024, 0.866407, -0.501148, -0.485490, 0.117572, -0.349237, 0.036147, 1.289752, -0.109019, 0.417342, -0.223573, -0.964651, 1.336383, 0.487437, -1.142140, 0.160682, -0.516941, 0.450464, 0.556782, 1.838317, 0.019776, 1.806731, 0.942391, 1.137877, -1.031985, -1.228200, -0.309678, -0.477846, 0.409540, 0.988165, 0.028357, 0.449104, -0.880508, 2.038219, -0.253821, 0.697572, 0.581308, 0.167655, 0.900317, 0.243123, 0.011126, 1.016816, -0.493156, -0.038680, -0.534398, -0.383596, -0.153659, -0.417682, 1.920127, 1.356597, 0.109325, 0.431191, -0.605333, -0.429238, -0.518555, 0.665048, -0.915748, 0.420865, -0.749463, -0.301446, 0.787792, 0.732964, 0.251381, 0.649113, -0.482093, 0.783651, 0.281404, 0.116612, -0.584326, -0.581823, 0.507780, 1.304491, -0.175627, -0.987605, -0.503873, 1.329944, 0.600671, 0.905240, 1.522753, -1.067003, 0.841375, 0.324097, 0.428858, 2.241882, -0.421061, 1.350712, 0.293129, -0.571053, 1.726629, 0.902720, 0.481511, -0.011749, -0.229563, 0.129374, -2.467086, 0.627643, 2.151489, -1.269279, -0.822767, 0.374930, -0.959157, -0.312447, -0.679249, 1.333499, -1.231680, -1.098953, -1.968821, 0.077113, 0.467697, -0.628377, 0.643440, 2.182266, -1.666187, 0.485504, -0.590932, 0.832465, 0.153937, 1.060625, -1.246195, 2.416896, 0.093975, -0.152827, -0.071498, -1.175740, -0.059380, -0.954397, -0.834015, 0.166732, -0.254951, 0.122066, 0.556969, 0.543691, 0.126691, 0.998256, 0.096867, -0.861643, -0.324542, 0.327667, -0.797774, 1.269918, -1.753651, 0.764782, 0.298320, 0.897810, 1.019876, 1.022820, 0.891247, -0.038796, -1.212145, -0.893024, 0.486557, 1.370578, -0.266401, -1.755456, -0.347878, -0.665156, -1.322847, -0.175403, -0.882539, 0.602112, 0.035955, -1.623531, 0.954679, 0.549832, -0.578962, 2.896449, 0.048991, -0.113154, 0.267387, -0.312706, -1.668610, -0.072943, -0.803505, 0.148612, -0.551699, -0.716624, 0.097455, -0.583477, -0.981594, -1.847880, 0.717272, 1.327487, -0.819650, -0.439335, -0.321295, 0.192924, 1.327158, -0.035909, 0.460546, 0.249600, 0.814532, 1.230175, -2.268395, -1.422459, -1.662717, 0.261945, 0.779187, 0.971484, 0.435417, 1.203834, -1.185644, 1.292138, -0.853645, 0.334178, 0.584909, 1.466309, 0.004952, 0.080900, -1.349691, -0.934681, 0.219297, 0.988318, 0.034435, -0.743059, -1.299690, -0.218137, 1.656151, 0.083517, -1.588795, -0.949296, 1.221327, -0.433782, 1.248809, 0.436154, -1.000479, -1.023634, -0.991402, -2.607101, -0.659781, -1.795288, -0.541813, -0.490361, 1.207486, 0.185346, 1.141771, -1.647310, 0.503719, -1.671135, -0.342426, 2.029416, -0.475719, -0.452015, -0.127935, -0.490847, -0.364585, 0.217848, -0.106019, -0.043535, 1.579382, 1.230152, -0.211027, 0.645656, -0.283660, -0.618962, -0.691271, -0.002964, -0.415489, -0.341448, 0.888052, 0.589376, -1.698737, 1.497291, -0.831303, 0.395174, 0.589173, -0.810251, -0.312356, -0.131721, -2.374080, 0.565497, 0.111212, -0.253048, 0.390443, -1.207896, -0.041176, -0.077750, -0.812502, -1.104729, 1.385000, -0.132227, 1.027096, -0.555687, 0.852424, 2.050150, 0.625882, -1.497229, 0.810401, -0.139653, 0.456244, -0.671029, -0.188565, -1.159149, -0.656063, 1.103047, 0.422095, 0.572289, -0.381481, 0.924799, 2.061640, -1.345375, 0.801426, 0.383118, -0.529409, 0.239853, -0.762862, 1.156354, -1.894699, -0.530812, -1.060533, 1.058275, -0.410843, -2.197512, 0.589395, 0.039158, -1.001759, -1.310885, -0.624722, -0.077511, -0.500742, -1.190303, -0.531067, 0.286142, -1.023084, 1.246064, 1.492313, 0.445578, -2.706501, -0.563274, 0.294320, -0.073659, -1.531296, 0.667368, 1.289439, 0.403801, -0.719572, -0.352385, 0.841166, 0.949807, -0.098071, 1.275607, -0.106403, 0.430739, 0.001879, 1.051093, -0.374533, 0.892073, 0.332948, 0.592774, 0.473188, 0.607197, -0.461602, 1.542222, 0.100073, -0.499275, -2.910311, 0.144654, 0.567283, 0.237543, -1.226956, 1.702870, -1.412966, -1.094480, 1.470134, -0.483356, 1.221584, 0.578784, 1.718434, -0.492522, -0.313230, 0.822420, -0.116919, 0.485807, -0.045605, 1.742115, -1.378036, 0.212902, -0.898107, 0.841902, -0.621667, 0.180036, -0.646024, -0.156983, -1.445886, 0.337371, -1.055352, -1.888733, -1.340191, 0.214425, 1.523805, -0.471269, 0.380452, 1.209268, -0.710079, -1.087702, -1.709404, 0.040628, -2.360130, 0.001905, 0.195222, 0.738780, 0.890120, 1.599264, 0.441577, -0.103721, 0.165188, 0.173371, -1.600238, -1.713154, 0.000767, -1.887139, -0.105544, 1.522331, -0.325616, -0.441462, -0.911480, -0.520468, -0.964007, -0.155366, 0.750897, -2.228427, 0.144024, -0.177606, 0.199641, 0.659904, -0.527830, -0.451822, -1.356099, 1.321654, 0.744680, 0.335386, 0.850053, -0.986633, -0.010434, 0.255908, -0.093684, 1.473114, -0.406603, -0.307050, -2.153165, 0.155834, -1.160650, 1.216561, -0.373953, 0.473638, -1.267211, 0.022150, -0.091080, -0.757524, -0.055015, 0.426883, -1.715072, -1.246240, -0.148565, 3.192731, -1.636502, -0.052563, -1.086715, 3.090604, 1.472217, 0.522833, 1.762922, 1.141213, -1.487499, 0.496260, 0.216927, -0.804855, -1.929908, 0.570464, 1.097985, -1.896430, 0.633538, -0.086539, -0.647590, 0.239698, -0.534972, 0.235688, 0.862444, 1.389340, 0.417638, 1.300175, 2.024927, -0.701430, -0.088599, -1.126721, 0.294095, 1.685487, -0.555167, 0.024073, 1.572933, -0.280384, -1.185864, -0.373257, -0.591392, -0.392939, -0.146882, 0.483622, -0.191206, 0.174507, -0.798611, 0.966095, 2.029952, -0.921123, -0.332096, -0.440556, 0.193824, 0.574540, 0.824316, -0.839898, -0.296096, 1.903518, -0.833156, 0.030677, 0.607523, 1.514426, 0.868757, 1.555596, -0.935126, -0.143852, -0.169516, 0.629757, 1.030584, -0.992446, 2.211719, 1.261339, -0.214449, -1.055072, -0.870771, -0.341431, 0.287067, 1.439778, 0.678502, 0.658027, -0.056848, -0.013744, -0.933110, -1.167635, 0.166673, 1.355237, 0.964435, 0.909258, -1.019448, -1.345046, -0.306989, 0.289421, -0.184356, 0.629042, -0.747637, 0.147467, -1.991565, -0.865654, -0.660517, 0.687695, 0.464715, 1.234511, -0.155472, 0.368011, -0.798038, 0.303759, 0.258606, 0.380070, 0.133021, 0.798172, -1.369328, -1.947639, 1.618109, 0.228001, 0.488191, -0.066755, 0.566617, -0.175494, -0.019300, 2.298338, 2.490033, -1.538595, 0.779380, 1.156198, 0.711916, 1.682077, 0.279762, -0.312617, 0.178269, -0.397102, 1.879119, 0.062291, -1.939265, 1.662884, -1.012789, -1.386273, 0.910591, 0.108151, -0.795660, -0.358391, -0.856319, 1.412286, -0.330051, 0.280484, -0.273336, -1.535364, -0.168593, -0.493246, -1.447309, 0.707914, -0.260365, 0.823475, -0.909438, 0.634202, -0.188416, -1.165149, 0.735117, -0.905673, 0.084929, -0.112713, -0.735928, 1.121421, 0.004254, 0.941864, 1.846784, 1.325619, -2.147032, -0.117993, -1.383002, 0.757244, -0.606906, 1.602797, -0.399847, 0.019014, 1.644806, 0.813505, 1.086837, 0.438771, 0.348052, 2.024298, 0.402076, -0.813110, 0.695878, 2.035622, -0.465122, -1.492292, -0.878087, -0.973837, 1.812257, 0.153350, 0.913495, 0.711407, -0.598748, -0.354786, 1.431581, 0.260969, -0.680260, 0.510779, -1.604333, -1.336531, -0.489935, 1.665154, 0.090843, 0.975008, 1.975683, -1.561150, -0.124309, 1.122236, 1.016507, 0.565472, -0.645597, 0.205400, -0.101509, -0.085578, 0.397383, 1.803785, -0.995748, -1.382449, -0.738364, 0.779503, -1.365308, 0.029976, -1.368673, -0.529999, -2.022380, -0.063186, 0.582739, 0.199500, -0.517304, 1.031594, -0.510167, -0.085207, 0.012295, -0.985666, -0.798587, 0.977248, 0.230268, -0.788730, 0.100369, -1.348227, -0.013572, -0.693568, -1.639801, 0.244451, -1.257866, -1.120893, 0.029183, -2.198713, -0.445338, -0.702023, 1.927548, 1.705852, -0.656002, 0.953507, 0.882131, -0.275884, -0.848179, 0.232563, 0.451223, -1.448456, -1.182728, 1.777396, 0.847616, -0.803393, -2.077458, 1.638231, -1.673865, 0.345191, -0.367579, -0.387235, -0.728010, -1.154211, -1.253552, 1.137648, -0.339611, -0.744888, -0.274606, -0.827768, -1.514119, 0.714691, -1.152990, -0.681847, 0.095298, -0.546938, 0.992713, -0.992856, 1.013190, 2.518029, 1.411025, 0.472371, 0.889863, 1.839270, -1.104206, -0.730294, -0.561019, 0.713459, -0.670588, 1.753072, 0.169193, -0.070926, 0.613736, 1.534770, 1.686791, -1.337481, -0.320978, 0.260372, 0.006047, 0.206645, 0.553592, -0.902511, 0.796327, -0.325769, -0.025676, -0.352937, -1.178178, -1.706857, 0.413009, -1.179883, -0.814427, -0.009327, -1.040245, -0.571115, -1.056754, -1.301412, -0.591260, -0.763906, 0.470067, 0.828917, 1.469671, 0.156652, -1.542709, 1.333366, 0.967467, -1.270201, 0.866247, -0.811172, -1.176453, -0.475758, 0.315612, 0.682427, -1.250730, -0.384803, -0.144978, -0.937373, 0.917409, -0.395846, -1.952576, -0.178033, 2.320912, 1.109337, -0.307219, -1.173891, 0.115987, -0.030911, 0.746893, 0.477283, -2.128353, 1.796388, 0.151782, 2.482570, -0.872722, -0.112642, -2.086276, -0.140203, 0.111983, -0.939102, -1.055091, -1.329575, 0.215989, 0.255191, 1.029851, -1.249237, 0.618896, -0.213340, 1.197397, -0.320130, 0.000204, 1.480527, 0.062241, 1.254689, 0.728404, -0.213925, 1.611260, -1.022513, -0.365403, 1.018360, -0.154956, -0.140410, 1.903669, -1.108924, -0.276196, 0.528212, 0.884397, 0.558028, 0.512399, -0.840059, -1.408578, -0.829500, 0.499964, -0.500953, -0.284076, -1.326736, 0.003464, 0.528966, -0.580975, -0.656808, -0.516160, -0.531121, -1.755176, -1.214240, 1.152361, 0.224646, -0.351005, -0.872570, -0.736079, -0.426793, 0.438420, 0.449918, 0.956023, 0.098402, 1.567622, 0.219357, -0.697617, 0.714471, 0.928580, 0.486617, -1.446406, 2.453130, 0.112571, 0.465784, -0.744802, 0.656983, -0.168934, 0.470107, -0.733525, 0.315124, 1.488656, 0.066169, -0.999403, 2.117275, 2.542061, 1.607461, -0.113543, -1.263350, -0.327064, 2.413925, -0.731953, 2.089860, -1.106059, -0.126414, -1.037236, 1.243739, 1.479193, 1.071569, 0.460087, -0.699642, -0.410816, 2.493381, 0.350269, 1.426043, 1.808272, 0.866318, 0.592693, 0.439841, -0.649058, -0.349749, -0.045892, 0.458708, 0.782348, -1.158792, -0.267142, -2.656903, -1.460660, -0.410096, 2.535706, -0.632427, 1.336218, -0.204034, 0.830523, -1.253433, 1.034396, -3.423545, 0.087727, 0.824722, -0.012332, 1.407828, 0.120882, 0.926187, -2.292944, 1.133925, 0.070113, 0.058787, -0.714468, 1.357921, -0.477855, -0.451449, 0.213543, -0.749978, -1.322127, -0.142105, 1.090608, -0.684492, -1.045470, 1.028201, -0.441753, 1.948786, -1.496778, -0.958542, 1.428044, 0.903210, 0.756319, -0.521848, -0.848668, 0.275805, 0.669213, 0.492029, 0.957295, 0.108228, 0.762715, 0.293802, 2.436357, 1.070933, 0.011859, 0.362297, 0.102790, 0.031223, -0.965514, 0.835719, -0.569635, -0.440000, -0.331996, -1.274265, 0.069149, 0.121821, -0.144766, 0.514818, 0.071455, 0.864318, 1.478536, 1.551118, 1.691593, -1.299430, -0.971826, -0.883588, 0.578695, -0.042692, -0.238458, -0.728358, -0.076793, 0.893684, -0.219320, -0.469815, 0.855054, 1.703795, -0.425166, 0.270828, -0.696114, -0.110387, -0.682147, -0.525052, -0.227233, 1.005185, 0.803018, -1.195223, -0.621801, -0.284694, -1.812292, -1.373420, 1.239193, -1.030262, -0.614617, 1.015705, -0.504089, -1.243769, 1.839390, 0.925878, -0.834220, 0.058480, -1.357423, 1.806100, -0.190481, -1.537604, 1.057216, -0.901779, -1.764362, 0.839263, -0.296992, 1.116402, -1.322160, -0.878790, -0.170323, 0.862255, 0.377605, 0.069388, -0.819686, -0.952324, 1.892050, -1.370026, 0.128011, -1.345521, 0.509866, 0.578618, -0.328582, 0.434008, 0.827424, 0.631912, 0.777146, 0.944008, -0.341045, 0.442765, -0.239828, 0.457617, -1.610594, 1.089655, 0.567526, 0.066581, -0.181101, -1.022524, -0.062282, -0.418298, -0.130733, -1.085837, 0.437248, -0.297256, -0.299135, 0.080330, -0.100244, 1.805943, 0.645342, -1.559626, -1.494864, -0.893543, -0.166167, -1.360841, 0.576710, -0.838996, 0.380255, 0.408801, -0.087826, -0.049933, -0.725054, -0.717173, -0.902833, -1.784525, -1.308625, -1.109085, 0.043479, 1.053214, -1.268719, 0.350615, 1.358514, -0.608471, 0.092205, 1.656784, -0.484845, 0.857037, 0.399978, -0.386510, 2.922505, -0.152704, 1.061745, -0.112545, 0.998931, -1.606496, 0.172222, -0.511422, 0.496342, 1.337502, -1.879604, 0.411800, -0.223929, -1.404463, -1.344039, -0.674549, 1.401038, -1.527929, -1.194860, -1.458769, -0.154352, 0.520749, -0.778789, 1.923256, -0.212585, 0.066619, 0.932589, 0.247856, 0.516712, 0.652079, 0.783558, -0.709963, -0.439451, 1.346308, 0.520449, 0.707136, -1.004591, -1.595103, -0.197411, 0.770248, 1.577931, 0.364045, 0.348734, 0.193432, 0.612950, -1.068714, 0.130597, 1.301195, -0.064313, -0.010166, 1.057867, -0.454054, -1.446331, -0.440927, 1.147515, -0.569905, -1.606436, -0.233277, -0.337846, 1.559327, -0.705301, -0.390601, -0.233253, 2.039244, -0.055524, 1.032676, 1.096797, 0.808107, -0.831129, 0.261051, 0.432175, -1.195443, -1.214485, 0.485138, -1.894018, 0.552331, -0.324718, -0.297798, -0.152396, 0.578562, -0.291784, 2.964944, 1.262912, -1.947922, -0.279872, 0.667570, -0.449464, 1.085750, -0.147495, 0.640326, 0.581892, -0.288672, 0.858507, 0.769634}, + { -0.446141, -1.210392, 0.094219, -0.557681, 0.436657, 0.228910, 1.252416, 2.043364, -1.478110, -1.121050, -0.336387, 0.921460, 1.600388, 0.273376, 0.369098, -0.216870, 0.293653, 0.093288, -0.315925, 1.024815, 1.607015, 0.331540, -0.644598, -0.384692, 0.793121, 0.554271, -0.160999, -0.705313, 1.533538, -0.270805, -0.806331, -0.878109, 0.414090, -0.975189, -0.721478, -0.740868, 0.413678, 0.307196, -0.291252, -0.874170, -0.413169, -0.801347, -0.387322, 0.175434, -0.358407, 0.175792, 1.537106, -1.366534, 0.127411, -0.531498, 0.309365, -0.633223, 0.038436, 1.608587, 1.216289, 0.966547, -0.940614, 0.260128, -0.046390, 0.218279, 1.377278, -0.909145, -0.312771, -1.574051, -1.399544, 0.830134, -1.437980, -1.709561, -0.046496, 0.785499, -0.154449, -0.270460, -0.757634, -1.541992, -1.153731, -0.557437, -0.603239, 0.131191, 0.500166, -0.774932, 2.406299, -1.196631, 2.812135, 0.916448, -0.224696, 0.736269, 0.862351, 1.231325, -1.022823, 2.623466, 0.570176, -1.029176, -0.378922, -0.266084, -0.384895, 1.423834, -0.327209, 0.107326, 0.819384, 0.576725, 2.215786, 0.882954, -1.390015, 1.445607, 0.240494, -0.628055, 0.298740, 1.577986, -1.214902, -0.613802, 0.015900, -0.696121, -0.212482, 0.021852, -0.588263, -1.765785, -0.242829, 1.114169, 0.240581, 0.026022, -0.680217, 0.653857, -0.353656, -1.102200, -1.705480, 0.591669, -0.336889, -0.902929, -0.465316, 2.091608, -1.270120, -0.052219, -1.196578, 0.850167, 0.972194, -1.074584, -0.190712, 0.568203, -0.249897, 0.142745, -1.535993, -1.143525, -0.083874, 0.034206, -0.960949, -0.731398, -0.726418, -0.333815, -0.503958, -0.753630, 0.108086, 0.922474, -0.799391, -0.036553, -0.405910, 0.412070, 0.911691, 0.023563, 1.261712, -0.554661, 0.447849, -0.544578, 0.045700, 0.152466, -0.558616, -0.513727, 0.233723, 1.826665, -0.780652, -0.355041, 1.078478, 0.436535, 1.398195, -0.474950, -0.645210, -0.743973, -1.041770, -1.959302, -1.043802, 0.067097, -0.703509, -1.405768, 0.660438, 0.787347, -0.639357, -0.666745, -0.152164, 1.116144, -1.424079, 0.967490, 1.056660, 1.415114, 1.314055, -0.243241, 1.139438, -0.082025, 0.968934, 0.479145, -0.024864, -0.779569, -0.977431, 0.686902, -0.593170, -0.675872, -1.619608, 1.279747, -0.335923, 0.269279, -0.937178, -1.208609, 0.992568, 0.695028, -1.105799, 0.927952, -1.684321, 1.634138, -1.400518, -1.250819, 0.943713, -0.031745, -1.302454, 1.416210, -0.202708, 1.502852, -1.206511, -0.124401, -0.940610, -1.469399, -2.540128, -1.262995, -0.099491, -1.424507, -1.303037, -0.698715, 0.062110, 0.279796, -0.177974, -0.317407, -0.138447, -0.012450, 0.596504, 0.042038, 0.050103, -0.433508, -2.495116, 0.091227, -1.732235, -0.468762, 0.991366, -2.351202, -0.783182, 0.291866, -0.979966, 0.393041, -2.480963, -0.772810, 2.080607, 0.525421, 0.123914, -0.480173, -1.550547, 0.048052, -1.835748, 0.553664, 0.063805, -1.100559, 3.446845, -0.852350, -0.467030, 0.410166, -0.194240, 0.202805, 1.433094, 1.224726, -0.416480, -0.724887, 2.769052, 1.403896, 0.660202, -0.003159, -2.371689, 0.049895, 1.375257, -0.464955, -0.208232, 0.939234, 1.128009, -1.169787, 0.319712, -0.035626, 0.671597, 0.537344, 1.071998, 0.280105, -0.614814, -2.635823, -1.399584, -0.644652, -0.070286, -0.165058, 0.669348, -0.998436, -0.525984, -0.581191, 0.683227, -0.638211, 1.685337, -0.006282, 0.114373, 1.974528, 0.478892, -0.722630, -0.237007, -0.902797, 2.370870, 0.412595, 1.431702, 0.926747, -0.484398, 0.900348, 2.429795, 0.925609, -0.159553, 0.410469, 0.025081, 0.343449, 1.430452, -0.545778, -0.765048, -0.998648, -0.289317, 1.241272, 0.061870, 0.236501, -0.418772, -0.694165, -1.766784, 0.693774, 0.579161, -0.763132, 0.367919, 0.961925, 0.541355, -0.324157, -0.657522, -2.502346, -0.272414, 1.370539, 0.949403, 0.273473, -0.024612, 1.065152, -0.828448, -0.672163, -1.616722, -0.421403, 0.534220, 1.595581, -0.195502, 1.045425, -0.685853, 1.192971, 1.984577, 0.650806, -0.377276, 1.094375, -0.403471, -0.075159, -0.255198, 1.681054, 1.944447, -1.438875, 0.840908, 0.657407, -1.752547, 0.006515, -0.841336, 0.521484, 0.516114, -1.159483, 0.460769, 0.215958, 1.781620, -0.048160, 1.660577, -0.857293, -2.564554, 1.796085, -0.547359, 0.687766, 1.624727, -0.535832, 0.572046, -0.945929, -0.193370, 1.224158, -1.311220, 0.311782, 0.605605, -0.193145, -0.278250, -3.658919, 0.403704, 0.404384, 1.368461, 1.284870, -0.436480, -1.220091, 1.299401, 1.292838, 0.729332, 0.157103, 0.182794, 0.433962, -0.055412, 1.643416, -0.653841, -0.638076, -0.517528, -0.268725, 0.345496, 2.344105, 1.550088, -1.772326, 1.324335, -0.381126, -0.099604, -0.121997, 0.526893, -0.730422, 0.958076, 0.935883, -0.838423, 1.116673, -0.334116, -0.851061, 0.954896, -0.374372, -0.509291, 1.302573, -0.275123, 2.731643, 0.596128, -1.023311, -0.462351, -1.019602, -0.326637, -1.297941, 0.113197, -0.963061, -0.718921, 0.219356, -1.562385, 1.216211, -1.144206, -0.817539, -1.967238, 0.540856, 1.466174, -0.118227, 0.302811, 0.439032, 0.850916, -1.084990, -0.021943, -0.622396, -1.630962, 1.173403, 0.823379, -2.823348, 0.418398, -1.543780, -0.964064, 1.907559, 0.617970, -0.024240, 1.171446, 0.551308, 0.681897, -1.615708, -0.221638, -0.701041, -0.025396, -0.368484, 0.508377, 0.639249, 0.114605, -0.165839, -0.940582, 2.351082, 0.035705, 0.829055, -0.502812, -0.677675, -1.310192, -0.797597, 0.243285, -1.478060, -0.328561, 0.694011, -0.432826, 0.482477, 0.348017, -0.472264, 1.134552, 0.019681, -0.476172, 0.506533, -0.292244, 1.125679, 0.484756, -0.653510, 0.209859, -0.427151, -0.696327, 0.185218, -1.521126, -0.911026, 0.502900, -0.390106, 0.243244, -2.589114, 0.029117, -1.880720, -0.978946, -0.123460, -0.026018, 2.003708, -0.417247, -0.606338, -2.203148, -0.299681, 0.857204, 0.669025, -0.033031, 1.993445, 1.121462, 1.489567, -0.792721, 1.321249, 3.287674, 0.039978, 2.257282, -0.596910, -0.904084, -0.060831, 1.852228, -0.394250, 1.076742, -0.088779, 1.990819, 1.575973, -0.875746, 0.935243, -0.142373, -1.544067, -0.798184, -1.647026, -0.446503, -0.556194, -0.094823, -1.243152, -0.444310, 0.467968, 0.399205, -0.060037, 0.737509, 1.262869, -0.291744, 0.374143, -0.538086, -0.352159, -0.919840, -0.830125, 1.258766, -0.444388, -0.039515, -0.982017, 0.099574, -0.232459, 0.441622, 1.136831, 1.307288, -1.142611, 1.320275, -0.137082, -0.522428, 0.354475, -0.212742, -1.219617, -1.323455, -0.925323, -0.532090, 0.055700, 0.582188, -0.415970, -0.267777, -0.160409, -0.699211, 0.780755, -0.019053, -0.416226, 0.852242, -0.879459, 0.864873, -0.285035, 1.696672, -1.156139, 0.551668, -0.178533, 2.023559, 0.451505, 0.693827, 2.408724, -1.197408, -1.144532, -1.841984, 0.102629, -0.870780, 0.971014, 0.758096, -1.302410, 1.331574, -1.067407, 0.888551, -0.440135, -0.243960, -0.069688, 0.524089, 0.510248, 0.678675, -0.503941, -0.269883, 0.309343, -1.333543, 1.434367, 0.343710, 0.627966, 0.919017, 0.320214, 1.555699, 0.370422, -0.216896, 0.830845, 1.007234, 0.865942, -0.279575, 0.412968, -0.016744, -0.862565, -0.654119, 1.351336, -0.126698, -0.357484, 1.853302, -1.146398, 1.017704, 0.012111, 0.004532, 1.142388, -0.301353, 0.710716, -2.303437, -1.032544, -0.712598, 0.179395, -0.040338, 0.469312, -0.492587, 1.698872, 0.569610, -1.562738, -0.442351, 1.737054, 0.888248, 0.321939, 0.067555, -3.150903, 1.211434, -0.694621, -1.166631, 0.674787, -1.562673, 2.020095, -1.669268, -1.380439, 1.948567, 0.542762, 0.282922, -0.601764, 1.531809, -1.700210, 0.341407, 0.852302, -0.209636, -1.624373, -1.127225, 1.269550, -0.103038, 1.651492, 0.618350, -2.633832, -0.295681, -0.449540, -0.666863, 0.143359, -0.391018, 0.705137, -0.831514, 0.276024, -0.763468, -0.986429, -0.241679, -0.071228, 0.728637, -0.230996, -0.505861, 2.141447, -0.372561, 1.648217, 0.043915, -0.092758, 1.057734, -0.503727, 1.321368, 0.837929, 1.587352, 1.715464, -1.422310, -0.020518, 0.008739, -1.078361, 0.397731, -1.980927, -0.187061, 0.299474, 1.022242, 0.199321, 0.342044, -0.937396, -0.420654, 1.253513, -0.078981, -1.586322, 0.169338, 0.530134, 0.410973, 0.813272, -1.350585, -0.666748, -0.331275, -0.686260, -0.499302, -0.000044, -0.977710, -0.656167, -0.768596, 1.733302, -0.079052, -0.346658, 0.096327, 0.841091, -0.315183, -0.839269, -2.140824, -0.359397, 2.221610, -1.301760, -0.598627, -1.735286, -1.872575, 0.813143, -1.467547, -0.528693, 0.218145, 1.609319, -0.658192, 0.967179, 0.238065, -1.038087, -0.207714, -0.841926, 0.947855, -0.130279, 0.174131, 0.883826, -0.419099, -0.967372, 0.761288, 0.981953, -0.359883, 0.753609, -1.500355, -0.520319, -1.197064, 1.513532, 0.860780, 0.666633, 1.041298, 0.004386, 0.714703, 0.229556, -0.216078, 0.840362, -1.280668, -0.344227, 0.344951, -0.673442, -0.013362, -1.752267, -0.586495, -0.717530, -0.824820, 0.430992, 0.272602, -2.738847, -0.471658, -1.198649, 0.177874, -0.193200, -0.600226, 0.027271, -1.178977, -1.093141, -1.239101, -0.259333, -0.891018, -2.676815, -0.907779, -0.935048, -0.124212, 1.174635, 0.550149, 0.559368, -1.799957, -0.505144, 0.112778, -1.140728, -0.634454, -1.620463, 1.526477, -1.067722, 0.116412, 0.569839, 0.405507, -0.620982, 1.177512, 0.606144, -0.986064, -0.806452, -0.830298, 1.161623, 0.069136, 0.083446, 0.189402, 0.544366, 0.247521, -0.280109, -0.389948, -1.090912, -0.471813, 0.392270, -1.720454, -0.767628, 0.059358, -0.422489, -0.506465, -1.156613, -1.145879, 0.804165, -1.220138, 0.170382, 1.108635, 0.411932, 0.450980, 0.535838, -0.711227, 2.320272, 0.167431, 0.334435, -1.284517, 0.497193, 0.237820, 0.248187, 1.126811, 0.321656, -0.209959, -0.475940, -0.123368, 0.586065, -1.041429, 0.080635, 0.904398, 1.221692, 0.674461, -1.602378, -0.947158, 0.463225, 0.047817, 0.727373, 2.459499, -0.499435, -1.649660, -0.480932, -0.480671, -1.565757, -0.114405, -0.500959, -0.218963, 0.591839, -0.293382, -0.307010, -0.092244, 0.103991, 0.336101, 1.610582, -0.474613, -0.241045, -0.033939, 1.054386, -0.049949, -0.690444, 0.468956, -0.386165, 0.215304, -0.017411, -1.037090, 2.252476, -0.491806, -0.500134, 0.393323, -0.283288, -1.204652, 0.767447, 0.493748, -0.086166, -0.285800, 1.030640, -1.022789, 1.259587, 2.034420, -1.973225, -0.762105, -1.435689, 1.365192, -1.705812, 0.449765, -0.328552, 0.265051, -1.697729, -0.707277, 0.234218, -0.773856, -0.912006, -0.166873, 0.051667, 0.025463, -1.490499, 0.456520, 0.425073, 0.322660, 0.557358, -1.401553, 0.111372, 0.453538, -1.046866, -0.174962, 0.736238, -0.648843, -0.003033, -0.435132, 0.370903, -0.021760, 0.722180, 0.754289, -1.414281, 1.194376, -1.331880, 0.599586, -0.523404, -0.216311, 0.914822, -0.624846, -2.401973, -0.938374, -1.624680, 0.018817, -0.192222, 0.446812, 0.389115, 1.824083, 0.582707, 0.400384, -0.288843, 0.749932, -0.666039, 0.159979, 0.198359, 0.666465, -0.051678, -1.696895, -0.235981, 0.807859, -0.397621, 0.710416, 2.373339, -0.640758, -2.033137, 1.751621, 0.656582, 1.416959, -0.279052, 0.950150, -2.689174, 1.501816, 1.385151, 1.683736, -1.181550, -0.404841, 0.964289, -1.563548, 0.951038, 1.643929, 0.818829, -0.838240, 0.381745, 1.488796, 0.906678, 0.174485, -1.803264, 1.124696, -0.521030, 0.899754, -0.313955, 0.051011, 0.496224, 1.483602, 0.280978, -0.364142, -0.735290, 1.195915, 0.857992, 1.088294, -0.237888, 1.323349, 0.663563, -0.572019, -1.411892, 0.992652, 0.374297, -1.730578, -1.977532, -1.171868, 0.190380, -0.733338, -0.869219, 0.320860, -0.320629, -1.938333, 0.644916, -0.330957, 0.089404, 2.667076, -0.618697, 0.538995, -1.049373, -0.483203, 0.222957, 0.602879, 1.518159, 1.312011, 0.240724, 0.312942, 0.016548, 0.804627, -0.215487, -0.070350, 2.395401, -0.401617, -1.629328, 0.342011, 1.461568, 1.651165, 0.117328, -0.834897, -0.491209, 0.716263, 2.190310, -2.148557, -2.270317, 0.409657, 0.709858, 0.347907, -2.108005, 0.158791, -0.345897, -2.262116, 0.588110, 0.046187, 1.351409, -0.664474, -0.597898, 1.394780, 0.641260, -0.258377, 0.136114, 0.823687, 1.363242, 3.439775, 1.617981, -1.646194, 0.128569, 1.650145, 0.319518, -1.012957, 0.268470, -1.098947, 1.431943, -0.663953, 1.718181, 0.624597, -1.800449, -1.293489, 0.213967, 0.434459, -0.079043, 0.310608, -0.359487, -1.183261, 0.940411, 0.923592, -0.709424, 1.066285, 0.266538, 0.430066, -0.088058, -0.177222, 0.819176, 0.845407, -0.748718, -0.029168, 0.827872, 0.052027, -0.381804, 0.564166, 1.354404, -1.306232, 0.723687, 0.870526, -0.220860, 0.790302, -0.186600, 0.074201, -2.166533, -2.273407, 1.133012, 0.645846, 0.966419, 1.074592, -0.459058, 0.242128, 1.908521, 0.468770, -1.858908, -1.246853, -1.356026, -1.294007, 1.620808, 0.463578, 0.361025, -0.648444, 0.357304, 0.745018, -1.252231, 0.151168, 0.202886, 0.590535, -1.397871, 0.549766, 1.238488, 0.595643, -0.651399, 0.877461, 0.782148, 1.399870, 2.048492, 0.099181, -2.246459, 0.683973, -0.676091, -0.135451, 1.162140, 1.407187, -0.905008, -1.511314, 0.087068, 0.914302, -0.756188, 0.275242, -1.144871, -0.021468, 1.038210, 0.642838, -0.823455, -1.438072, -2.212510, -0.484091, 0.064781, -0.514886, 0.629395, -0.559574, 1.841261, 1.795308, 0.152935, -0.817745, -0.481893, -2.206189, -1.338947, -0.525755, 0.740094, -0.416779, -0.051866, -0.140477, 0.017618, 1.171270, -0.112944, 0.770969, -0.079365, -2.653403, 0.690962, -0.102426, 0.279748, -1.058547, -0.199440, 0.984328, 0.690577, 0.024463, 0.091067, 0.087766, -1.706997, 0.274208, 0.162120, 1.091740, 0.953491, -1.075488, 0.044124, -1.463790, -0.666671, -0.253198, -0.561357, 2.079484, 1.185174, 0.058381, -0.511077, -1.082725, 1.490712, 1.232394, 0.781866, -0.023443, 2.266195, 0.193585, -0.786550, -0.545396, 1.181188, -0.812983, -0.157701, -1.858308, 0.337817, -0.477675, 0.359082, -1.215441, -0.024789, -1.379870, -0.326473, 0.620439, -2.464179, -1.283189, 0.235084, 0.366635, 0.567713, -2.107439, -0.303396, -2.203341, 0.840917, 0.322022, 0.362500, -1.737180, -1.522420, 0.021842, 0.419844, 0.434122, -1.642678, -1.262137, 0.145526, 1.337236, -0.736673, -1.355035, 1.476444, 0.728436, 0.518101, -0.267837, 0.003450, -0.243332, -0.003724, 1.030590, -0.172128, -0.960096, -0.099848, -1.773236, -0.966497, -0.927741, 0.065720, -0.005882, 0.104078, -1.193369, -0.520395, 0.625481, 1.618574, 0.803512, 0.403388, 1.067878, -1.334064, -1.028568, 0.939435, 0.124328, 0.571436, 0.460883, 0.761510, 0.574544, 1.618679, 0.328977, 0.485560, 0.712269, -0.850522, -0.779295, 0.225514, 0.075165, 1.831840, 1.706226, 0.448230, -0.395654, 0.468570, -0.459502, 0.048035, 0.179132, -2.024933, -0.778500, -0.024910, -0.056727, -1.214309, 0.131670, -3.436132, -0.145698, -0.264020, -0.795006, 0.841062, 0.500850, 0.217002, 0.541395, 0.811649, 1.245669, -1.704844, -0.835023, -0.168562, 0.648449, 0.020506, -0.927047, -0.098575, 0.445402, -0.961005, -1.465036, -0.299606, -1.145907, -0.494920, 0.658173, 0.547647, 0.124272, 1.454487, -0.084514, 0.591658, 0.085791, 0.753019, -0.412343, 0.962956, 0.345324, 0.984944, -0.633104, 0.602216, 1.334843, 1.882075, 0.905569, 1.757971, -2.257653, 0.457052, 0.080640, 0.798912, -1.022106, 0.064268, 0.489815, -0.445142, -1.110424, 0.321831, -1.445311, 1.136440, 1.473968, 0.571615, 0.192500, -1.035779, -0.040952, -0.704274, -0.932392, 0.722393, -0.608450, -1.029114, 1.191816, 0.132940, -0.481317, 0.425302, -1.055051, 0.668526, -0.825673, 1.669327, -1.829270, -0.708688, 0.232800, -0.811107, -1.172361, -0.167843, -0.184392, -0.816665, 1.759415, -0.533338, -0.371980, 0.158019, -1.165513, -0.918423, 0.144973, -0.926433, -0.663851, -0.174384, -0.002755, 1.093738, -0.189765, -1.337472, -0.108016, 0.913185, -0.467128, 0.259404, 1.007114, 0.602602, -0.834486, 0.555008, -0.252861, 0.185505, 0.424650, -1.227661, 0.504833, 0.463041, 0.626737, 0.478988, 2.605762, -0.691744, 0.111355, 1.930495, -0.433300, -0.214195, 0.206447, 0.768025, 0.694181, -0.196893, -0.017800, 0.850052, -0.626554, -0.312351, 0.424742, -0.294981, 0.371840, 0.201778, -1.662085, -0.670763, -1.436557, -0.989866, 0.014246, -0.353222, -1.314465, 0.257601, 0.157545, -0.276880, 1.121192, -1.079425, 1.421701, -0.139736, 0.288998, 0.149853, 0.451022, -0.255929, 2.473699, -1.935864, 0.275262, 0.227057, 1.305209, -0.572205, -0.701282, -0.450194, 0.283811, 0.603841, -0.196456, 0.393825, 0.891817, -0.928144, 0.173677, -0.854916, 0.017298, -1.709470, 1.081188, 0.642668, 0.099382, -0.551329, -0.135934, 0.085002, 1.827900, 0.319468, -0.621182, 0.294935, 0.050096, 1.184690, 0.695027, -1.661383, -0.675256, 0.293675, -0.894962, 0.364993, -2.185117, 1.120482, 0.371708, -0.208926, 1.286989, 0.190499, -0.151986, 1.698366, -0.105807, -0.104150, -0.608793, -0.648537, 0.826642, -0.202067, 0.147459, 0.237840, 0.995962, -0.454075, -0.961237, -0.664703, -0.789917, -0.578240, -0.430844, 1.039731, -0.582424, 0.303336, 1.179450, -1.173943, -0.251944, 2.543380, -0.000361, -0.335361, -0.997128, 0.870367, 0.879212, -0.159846, 0.327563, -0.630535, 0.050660, 1.673423, -0.501462, -0.548337, -0.306690, 0.860757, 1.229051, -0.297141, 1.729393, 0.378090, 0.086725, 1.084410, -0.618156, -0.187147, 0.915609, 0.454319, 0.515985, -0.480904, -0.186053, 1.190614, -0.212529, 0.076557, 0.137305, 1.246531, 0.706390, -2.179899, -1.056889, -0.537744, -0.717311, 0.541335, 0.239253, -1.123087, 0.667909, -0.326050, 0.406693, 1.557978, 0.217068, -0.451278, -1.812463, -0.956705, -0.028343, -0.456260, -0.280023, -0.142329, 0.772370, 0.976835, 0.834154, -1.733778, 0.436757, -0.974528, 0.740157, 0.355817, 0.442890, -0.966332, 0.453354, -1.158812, -1.874002, 1.009193, -1.197822, -0.239135, 1.155273, -1.305068, 1.565502, -0.724722, -0.236354, -1.006594, 0.631630, 0.554990, -1.651237, -1.836109, 1.300771, -0.790947, -0.293778, 0.605217, 1.405822, -0.838216, -0.788291, 0.360449, 0.206337, -0.446441, 0.371946, -0.259371, 0.763149, -0.680418, 1.333118, -1.955045, -1.497629, -1.196057, -0.860041, -0.288517, 0.339154, -0.259594, -0.288091, -0.202422, -1.650398, 0.423918, -0.516505, -0.110272, 0.074489, -0.133430, 0.036547, -0.590237, 0.722538, -0.037500, 0.595687, 1.301194, 0.539928, 1.128537, -0.358490, -1.227859, -0.722765, 2.643561, -0.970520, 0.033205, 0.767576, 1.021219, 1.304549, 0.374458, -1.228257, 0.342329, -1.798144, -0.987245, 0.015354, -0.929431, 0.438887, -0.346891, -2.596802, -0.679138, 1.182198, 0.590559, -2.525620, -1.203413, 0.260832, -1.001964, -1.229975, -0.856638, -1.019879, 0.613295, 0.558500, -0.979434, 1.529143, 0.447377, 0.070981, 0.208336, -0.350994, -0.378125, 0.225485, 0.085846, -2.094957, 0.940803, 0.500764, 0.564195, -2.035375, -0.252716, 1.312252, -0.521089, 0.082993, -1.512125, -0.766039, -0.200841, -0.475572, -0.342635, -0.527794, 1.229254, 1.087417, 0.039528, -1.466036, -0.049562, -0.298546, -0.194214, 2.249053, -1.733147, -0.749027, 0.907167, -0.303794, 1.154468, -0.492397, 1.176597, -2.139882, -0.846601, -1.315356, 0.083957, 0.411948, -1.029262, 0.993368, 0.661559, 0.479303, 0.601968, -1.058455, -0.847930, -0.539022, 0.870900, -0.632048, 0.894153, 1.169579, -1.637062, -0.436101, -0.597073, -1.712859, -0.494227, 0.512825, -0.206363, 0.477942, -0.206988, 0.447719, 2.000844, 0.286922, 0.180665, -0.756903, -0.448216, -0.406262, -0.389148, -0.149763, 0.459565, -1.836488, 1.594942, 0.966956, 0.962436, -0.126136, -0.656063, 0.927969, 1.813925, 0.042279, 0.097526, 1.066342, -0.805341, 0.722017, 0.559700, -0.190941, -0.610061, 2.479445, 0.267855, 1.156298, 1.379365, -0.316955, -1.756286, 0.159540, -1.106407, -0.181472, 0.467779, 3.881110, -0.814203, 1.608217, 0.344177, 0.082127, -0.430388, -0.149025, 2.451355, 0.098491, 0.681260, 0.027154, 0.282680, 0.320790, -0.289530, 1.018455, 0.162355, 0.348521, -0.198541, -0.763682, 2.190094, -0.977213, -1.102529, -1.470571, 0.181197, -0.428577, 1.098092, 1.161511, -0.973632, -0.448085, 0.472705, -0.428430, -1.344962, -1.583909, -1.576940, -0.435805, 0.407975, 1.490834, 0.730605, -0.345826, 0.186474, -0.154189, 0.090265, 2.304704, 1.110534, -1.515135, 0.321071, 2.085183, -1.174536, 0.519364, -0.620756, 0.567592, 1.755693, 0.560803, -1.218727, -1.150374, -0.695434, 0.451208, 0.021597, 1.005622, 1.403142, -0.143760, 0.326634, 0.022159, 0.507346, -0.087080, -1.195422, -1.421005, -1.083555, 0.839680, 0.352635, 2.199085, 0.074103, 0.486078, -0.148642, -0.509557, -0.968089, -0.250414, -2.007255, -0.801105, -1.433822, 0.317556, 0.077305, 1.163333, 1.608155, -0.278336, -0.757547, 0.562108, 0.133409, 0.239736, 1.615835, 0.921984, -1.054160, 0.527437, -0.019235, -0.415810, 0.127529, 1.215723, -0.188579, 1.424086, -0.869814, -0.016905, -0.023514, 0.728225, -1.136655, 0.750249, -0.783698, 2.295655, -0.314712, 0.711048, -0.250175, 0.689027, -0.175198, 0.088792, 1.456216, 1.129938, 0.475921, 0.461332, 0.265873, 0.380694, 0.803964, 0.614613, 0.685253, -1.718335, -1.548663, -0.425401, 1.903354, -0.393637, -0.412113, -1.033301, -0.220704, -0.055682, 0.358420, -0.809632, 0.470875, 0.930339, 0.683889, -0.812060, -0.732151, -0.161283, -1.164674, 0.324832, -0.491132, 0.088382, 0.087759, 1.183327, -2.089491, -0.924842, -0.899455, -0.702532, 1.347476, 0.472719, -0.372256, -0.088009, 0.551401, 0.820686, -0.778259, -0.479046, 0.290712, -1.605729, -2.054033, -0.985330, 0.126094, 0.944302, 1.514579, 0.398192, 0.023832, -0.434487, 0.211508, -1.191953, -0.582206, -1.550084, 0.618390, 1.529920, -1.376608, -0.414920, 0.655581, -0.963969, 0.333718, 0.015383, -1.966964, -1.174084, -1.225493, -0.943407, -0.223336, -0.528854, 0.437253, 1.352952, 1.047220, -0.251061, -0.036292, 0.244074, -1.069586, 0.847027, -0.435766, 0.949762, -0.704220, 0.201354, 1.815198, 0.505352, -1.432503, 1.443172, -0.230671, 0.943893, -1.324637, -0.478135, 0.546274, 0.446037, -0.400259, 0.495547, -2.142255, -0.443077, 0.298823, 1.859633, -0.100873, 0.484910, 1.186559, 0.138411, -0.598286, 1.522516, -1.704385, -1.815140, -1.603270, -0.015421, 0.313613, 0.265704, 1.449335, 0.576547, -1.156029, 1.229269, -0.490391, 1.326358, 0.427033, 0.559796, -0.657581, -1.538901, 0.083866, 0.283154, 1.204485, 0.593475, -0.773003, 0.610722, 0.746327, -0.476278, 0.419826, 1.264418, 1.384579, -0.013489, -0.177310, -2.004258, 0.277125, -0.009929, -0.707654, 0.825506, 0.310478, 1.041541, 0.913745, -0.996904, 1.029685, 0.295205, -0.982660, 0.340363, 0.450080, 0.407264, -1.054481, -0.856208, 0.738255, -0.840641, 0.876804, -0.711741, -0.060818, 0.118416, -0.345675, -0.248558, 0.093787, 1.513708, 1.483183, -0.920291, -2.413891, 1.702751, 0.669388, -0.601417, 0.149959, -0.766311, 1.146601, -0.521395, 0.456303, -1.266070, -0.599791, 0.164256, -1.212297, -0.620560, -0.219233, -0.586247, -0.965135, 0.085903, -0.701241, 1.223255, 2.754263, 0.025770, 2.427701, -1.326918, -1.660621, -2.095936, 0.391506, 1.351208, 1.075658, -1.254910, -0.393265, 0.629043, -0.383695, -0.089478, -0.593946, -0.277314, 0.458572, -2.399272, 0.092314, -0.040334, -0.115827, 1.200069, 0.472518, -0.467431, 1.243162, -0.046362, -0.649520, 0.430953, -1.462685, -0.081381, 0.199664, -0.577394, -0.904788, -0.394129, -0.217192, -0.928855, -1.165942, 1.195081, -0.742787, 0.176280, -0.701140, 0.082035, 0.388457, -0.315915, -0.789743, -0.400897, 0.040482, -1.058031, 0.202164, -0.956372, -0.216798, 0.393916, -0.506817, 0.102799, -0.007515, 0.517083, -0.684058, 0.254546, -0.276274, 0.754356, 1.252259, 0.549741, 0.704992, 0.178287, 0.559461, -0.620493, -1.645242, 0.236592, -0.601707, -0.304022, -1.517820, 0.195804, 0.382050, 2.206743, 1.195746, -0.727297, -1.645774, -0.935245, -1.778180, 0.114269, -0.312176, 0.341870, -0.083056, 0.259290, -0.531841, -1.805558, -0.438805, -0.808322, 0.388300, 0.708307, -0.326327, -2.258091, -0.729833, 0.202822, -0.159538, -0.271626, 0.099357, 1.107187, 0.963453, 0.091113, 0.746645, 0.159999, 0.395720, 1.342128, -0.827157, 1.829368, 0.381451, -0.590199, -0.637061, -0.719347, 1.870901, 0.870605, -1.404343, -1.012266, -1.196259, -1.105421, 0.056348, 1.134959, -1.341503, -1.402547, 0.252173, -0.542601, -0.052357, 0.215905, 0.273448, -0.415359, 1.350430, -0.551576, -0.829563, 0.290155, -0.544392, 2.608920, 2.069528, -0.183427, 0.800053, -0.400553, 1.092986, 0.902542, -1.372536, 0.786001, 0.009701, 2.741430, 1.055390, -0.763248, -1.619555, -1.374887, 0.403051, -0.553829, 1.541312, 0.456185, -1.010896, 0.377097, 0.888638, 1.143983, -0.016352, 0.455733, -0.532150, 0.507680, 0.098419, 0.503790, 0.953540, -0.019465, -1.270815, 0.594566, -0.719709, 0.925514, 0.330566, 1.346135, -0.186297, -1.488876, 0.757388, 0.344839, -1.328167, 0.549608, -0.435079, 0.340575, -0.023966, 0.554511, -1.107000, -0.541496, -1.656070, 0.488550, -1.402533, 0.685209, -0.148812, 0.505720, 0.040675, 0.134768, 0.657028, -0.155591, 0.344543, -0.612301, 1.477145, 2.190825, 1.471012, -2.159504, -0.245524, -0.280004, 2.077043, -0.817895, 1.034295, -0.486051, -0.433361, -0.744326, 0.571373, -1.058170, -0.407768, -0.061269, -0.337884, 0.006545, -0.589535, 0.318917, -0.034954, -0.521962, 0.974166, 1.288732, 2.253136, 1.002043, 0.061397, -1.305229, -0.068759, -1.732967, -1.819716, 0.762548, 0.663048, 0.148795, -0.074821, -0.983635, 0.545044, 1.398136, -0.103645, 0.554306, 0.976471, -0.008717, -1.046914, -1.093441, 0.142877, 0.698689, 0.207773, 1.064010, -2.337609, 0.288057, 0.918415, -2.263501, 1.489176, -0.058540, -0.471190, 1.140931, -0.529683, -0.829426, 0.508744, 0.543767, -0.544351, -0.879347, -0.398541, 0.895050, -0.696186, -0.559710, 0.170483, 0.467215, 0.292191, 0.657371, 1.346734, 0.528605, -0.553434, -1.138393, 0.907399, -0.672679, 0.542048, 0.060942, -0.466661, -1.803535, -0.131198, -0.446043, -1.230124, -0.729890, 1.525117, 0.097931, 0.689816, -0.005315, -1.507717, -0.988605, -0.206080, 0.981274, -0.575240, 0.725074, 0.167128, 1.083990, 0.205176, 1.194026, 0.683780, -1.721597, 0.579266, -0.837492, -0.919477, -0.179042, -0.911529, 0.214047, -0.519153, 0.476155, -0.542609, 0.810156, -1.158795, -1.863170, 1.882912, -1.268012, 0.636504, 0.130003, 0.142362, -0.112926, -0.002706, 0.390669, -0.369251, -0.091393, 1.488014, -0.050778, -0.247821, -1.420317, -0.044913, 1.873265, -2.123026, -0.350182, 0.875381, -0.330496, -0.688645, 1.368454, 0.577202, 0.194538, 0.334533, -2.313260, -0.914488, 1.123789, -1.637715, -1.099386, -0.646859, -2.284147, -0.355657, 0.846270, 1.978013, 0.403829, 0.520546, -0.558465, -0.485159, 2.060744, -0.378916, 0.349144, -0.700467, 0.638671, 1.489930, 0.354398, 1.362643, 0.288038, 0.624081, -0.587916, -0.652340, -0.077268, -0.916258, -0.371227, 0.017455, -0.868597, -0.575030, -0.216748, -0.819772, -0.703140, -0.427428, 0.074671, -0.804929, 0.671625, -0.733333, -0.004246, 1.763025, -0.819370, 0.808329, -1.264302, 1.075212, -1.260927, -0.673946, -0.645416, 1.413717, -0.068014, -0.718522, 0.260425, -2.068432, 1.731001, 0.435510, 1.171530, 0.550506, -1.068483, 1.850538, -1.211278, -0.825417, -1.205693, -0.420082, -0.697188, -1.181914, 0.816290, 0.711240, 1.255630, 0.167932, 0.209640, -1.368034, 0.196686, 0.087783, 0.925538, -0.091152, 0.444935, 1.683163, -0.344514, 0.967196, 1.189317, -0.839257, -1.206727, 2.114550, 0.485974, 0.502732, -0.636945, -0.433245, 0.808100, -0.382502, 0.578872, -0.246123, 0.453423, -0.504004, 0.341060, 0.347787, -1.167599, -0.854375, 1.227634, -0.266398, 0.537972, -0.273573, -1.346838, -0.610977, -0.722934, 1.780737, -0.151951, 0.058041, 0.019867, -0.398723, 1.344600, 0.289544, -2.695957, 0.738540, -0.437836, 1.610160, -1.216753, -1.200065, -1.619791, -0.079505, -0.487144, -0.623184, 1.457724, 0.611235, 0.080989, -1.180624, 0.379649, -0.792693, -0.221676, 0.961535, -0.166750, 1.253906, 0.128487, -0.213935, -1.479114, 0.163525, 1.722353, -0.958783, 0.519339, 1.160076, -0.178481, 0.930287, 0.313077, 1.419353, 1.589867, 0.980998, 0.575129, 1.618510, -0.270627, 0.999790, -1.271539, -0.166624, 0.926740, 3.095187, -0.025565, -0.386711, 0.160217, -0.508267, -0.963144, -0.336637, -0.473495, -0.883264, -2.795036, -0.546304, -0.618398, 1.928046, -0.158577, -0.962569, -0.108699, 0.179481, 0.371330, 1.108388, 0.363148, -1.230862, 0.173506, -0.334006, 0.003449, 1.000635, 0.453458, 1.021398, -0.928917, -1.061935, -0.613701, 0.781315, -1.694132, 0.299375, 0.037343, 0.221270, 0.433471, -0.489390, 1.298061, 0.004571, -1.023451, 0.569854, -0.931506, 0.359970, -0.053870, 0.447212, -1.473702, -1.440793, -1.141564, 0.676373, 0.560454, 0.707826, 0.232312, -1.286593, 0.358502, -1.424928, -0.715896, -0.883201, -0.083736, -0.341216, -2.025370, 0.972403, -0.967026, -0.856227, 0.763017, -0.717609, 0.558452, 2.331326, -2.185278, 1.216678, 1.631824, -1.504144, -1.139019, 0.266957, 0.246443, 0.591120, 0.252712, 0.610343, 1.649399, -0.097235, -0.251809, -0.384961, 0.422768, 0.495394, -1.686420, 1.448270, -1.103798, 0.057818, 0.356002, -0.526546, -1.470494, 1.406152, -1.890332, -0.493580, -0.655663, 0.752019, 0.219506, -0.161001, 0.236042, -0.532814, -1.257640, 0.098143, -0.485976, 1.117989, 0.786840, 0.045533, 1.206549, 0.868139, -0.798071, 1.433796, 1.303382, -0.280311, 0.770341, 1.479689, -1.273691, -0.697336, -0.258092, 0.094683, 0.632330, 0.191849, -0.722923, 0.209976, 1.030248, 0.522288, -1.037337, -2.260973, -1.031154, 0.292078, 0.078886, 0.758000, 0.319038, -1.593856, -1.976969, 1.310682, 0.481242, 1.749868, -1.066534, -0.811970, 0.257715, -1.052848, 0.358879, -2.254643, 0.233903, 1.661126, -0.995321, -0.286914, -0.679149, 0.993148, -1.603131, 1.339072, -0.922202, -1.364625, 1.608158, -1.022875, -0.874026, -0.130917, -0.454188, 0.042340, 0.849575, 0.998991, -0.730997, -0.103818, 0.243063, -0.420793, -0.735103, 0.761837, 0.952681, 0.396939, 0.738157, -0.083109, 0.555429, -1.360230, 0.080543, 0.230652, -0.075967, 0.352418, 1.300434, -0.588970, 1.083194, 0.498871, 0.202697, -1.643582, 1.297346, 0.150473, 0.504489, 0.189814, 0.816378, -0.980351, 0.391268, -1.646284, 0.888691, 0.480824, -0.633339, -0.749756, -1.466434, 1.066277, 1.272800, -0.743119, -0.117425, -1.033807, 0.653002, -0.320177, -1.872822, 0.353430, -1.029850, 1.590908, -0.374817, 0.965611, -0.686057, 2.021948, -0.083724, -0.648622, -0.553703, 0.195509, 1.407376, -0.879802, 0.475200, -0.109079, -1.343161, -0.193221, -1.697834, -1.434656, 0.294200, -1.346909, -1.156519, 0.532181, -0.185759, 0.677221, 0.917804, -1.791535, -0.524742, -0.558835, -1.938489, 0.266458, -0.822866, -0.917252, 1.113242, -0.971488, 0.826269, -0.844720, -0.238222, -0.624487, -0.274190, -1.627537, -1.373102, -0.734495, -0.723230, -0.768714, 1.460737, 0.162085, -1.127694, -1.694918, 0.646904, 0.389383, 1.617150, 0.983095, 2.256056, 0.420384, -0.907838, 1.346546, 1.525255, 0.196363, -1.984704, 0.830593, -0.102054, 0.029580, -1.152183, 0.399252, 0.714363, 1.491191, 0.659142, 0.173175, 1.920284, 1.163907, 2.138160, -1.584565, 1.090690, 0.965141, -0.006876, 0.772702, -0.618607, 0.150329, -0.830562, 1.416519, 0.319361, 1.253456, 1.358354, -0.782575, 1.446175, -0.067706, -2.334882, 1.320798, -1.249280, 0.013475, 0.781691, 1.240064, 0.251174, -1.210035, 0.660143, -0.247212, 0.444268, -1.394792, 1.369103, 1.024364, 0.840645, -1.473354, -0.269432, 0.052182, 0.898879, 0.821979, -0.134890, 1.429582, -0.582538, -0.748151, -0.470300, -0.127761, -2.497673, 1.287354, -2.515359, 0.275239, 1.191146, 0.289007, 0.666490, 0.261252, 0.086265, -0.457872, 0.055435, 1.460266, 0.367337, -0.648796, -0.623580, 1.488212, -0.392563, -1.071432, -1.067981, 0.846690, -0.710225, 0.170723, -0.362508, -2.222969, -0.070669, 1.741746, -0.685610, 0.112340, -0.987062, -1.253738, 1.447612, 0.658723, -0.912477, 0.502209, -1.523860, 0.675125, 2.114939, -0.492966, -0.606301, 1.302855, 1.161463, 0.154469, -1.064928, 0.913568, -0.198968, -0.657884, 0.667496, -1.431701, 0.665475, -0.380523, -1.238291, 0.361883, -0.983519, 1.008972, 1.293861, 0.513494, -0.836726, -0.453269, 2.404221, 0.866311, -0.240651, 1.378030, -0.679602, -1.157365, -2.617810, -0.787232, -0.446120, 0.147320, 0.930046, -1.242281, 0.655075, -0.881162, -1.100827, 2.551022, -0.570225, 1.876579, 0.617867, 1.664603, -0.079147, 0.377650, 0.693702, -1.058116, 2.353161, -0.512432, 0.929362, 1.021207, -0.125068, -0.365395, -1.861506, -1.668203, 1.021039, 1.081496, 1.765793, 1.062593, 0.046025, -0.782797, 0.261323, -1.608353, -0.309767, -1.279847, -0.869277, 1.465411, -0.327114, -0.021511, -0.927904, -2.009585, -0.733882, -0.920428, 0.317701, 0.571201, 0.870829, -0.425450, -0.306367, 1.139129, -0.502143, 0.279263, 0.484645, 2.004383, 0.633851, -0.047023, 0.200902, 0.201886, -0.696526, -0.300595, 0.511508, 0.654121, -0.097666, -0.322094, -0.610046, 0.121770, 0.071631, 0.676976, -1.627126, 0.719690, 1.304001, -0.768672, 0.257296, -0.089022, -0.490937, 1.048144, -1.280689, 0.454322, 0.447600, -0.711054, -0.051485, -0.361274, -0.722115, -1.164260, -0.264290, -0.542931, 0.330004, 0.191781, 0.741959, -1.808822, -1.646506, 1.957869, 1.102139, 1.101276, -0.883624, -0.162952, 0.289146, -0.892247, -0.463600, -0.279927, 1.559605, -1.053084, -0.602776, 0.239181}, + { -0.546702, -3.479280, 1.281969, 0.204100, 1.813676, 0.490487, -0.757911, 0.372871, 0.197252, 1.444845, -0.096162, 0.679587, 1.275703, -0.553738, -0.712873, -1.005727, 0.639693, 0.402653, 2.190025, -0.096112, 0.135051, -0.192119, -0.564087, -0.070908, 1.437546, -0.650103, 0.479782, 0.649491, -0.381469, -2.525810, 0.610627, -0.877901, 0.172105, -0.874076, 1.064254, 0.384748, 0.709794, 0.852931, -0.475824, -0.816417, 0.253611, -0.082728, -0.836497, 1.426847, -0.192527, -1.648553, -1.531636, -0.333416, 0.151798, -0.890083, -1.065512, -0.679672, -1.122985, 1.362803, 0.269560, -0.822026, -0.241838, 2.159807, 0.214297, 0.266953, 0.169955, -0.792499, -0.804016, 0.728123, 1.767786, -0.184180, -0.034747, -0.868238, -0.524344, 1.211457, -0.248566, -1.203138, -1.234641, -1.392020, 1.760491, -0.575578, -0.065623, 1.757267, -0.746238, -0.889374, -0.718316, 1.611904, 0.865422, 0.689008, 0.215285, 0.564133, -0.617023, -0.432340, -0.221561, -2.667309, -0.109523, -1.117582, 1.575537, 0.241379, -1.533468, -2.880974, -0.456555, 0.827512, -0.278596, -1.409184, -1.525921, -0.803483, 0.296735, -2.118190, 0.445919, 0.940326, -0.416815, 1.986358, 1.433205, 0.635738, -1.271075, -1.253477, -1.740433, 0.326395, 0.364876, -1.942431, -1.406632, 2.480764, 1.167179, -0.276924, 0.892614, -0.779999, -0.981326, -1.274167, -1.555269, 0.664020, 0.848989, 0.244536, -0.654083, 1.135018, 1.096046, 1.189611, -0.157559, 0.124747, -0.126091, 0.896882, -0.697857, 1.199272, -1.212372, 0.615753, -1.292237, 1.974023, -0.044392, -2.420623, -0.533192, 0.568319, 1.029759, -0.999752, 1.841177, 1.284183, -1.573000, 0.937218, -1.994672, -1.801006, 0.335549, 0.968059, 0.128210, -0.154791, -0.908874, 1.292391, 3.102638, -0.713690, 0.705246, -0.358244, -0.813543, -0.789011, 0.238518, 0.630661, 0.423279, -1.107202, -1.379962, -0.279946, 1.362005, -1.570006, 0.805090, -0.352570, 1.461932, -1.523718, 1.334782, 0.435690, -2.180466, 0.640995, -1.130684, 0.764881, 1.175751, 1.360450, -0.108873, -0.358859, -1.354791, -1.782403, -0.587183, 0.176936, 1.988700, -1.805753, 1.527215, -1.310170, 0.237209, -1.042104, 0.011365, -0.083505, -1.313460, 0.440248, 0.011818, -1.581587, -0.868283, 1.138763, -0.281074, 0.509712, 1.105508, 0.564441, -1.108557, 1.348649, -0.507283, 0.750773, -0.388684, -1.544325, -0.007086, 1.354264, -2.308678, -0.663084, -0.267921, 0.011330, -0.017436, -0.572162, -0.819924, 0.225857, 1.723824, 0.380895, 1.586911, 1.954356, -0.236418, -0.197161, 0.127556, 1.509263, -1.728399, 0.093941, -1.688926, 0.165151, -0.600337, 0.119865, -0.787766, -0.206559, 1.574906, -0.187367, 0.263209, -1.411076, 2.901291, -0.308304, 0.254285, -0.629414, -0.479781, 0.146673, 0.946288, 0.967090, -0.217460, -0.018999, 0.047707, -0.671097, 0.908278, -0.543224, -3.080528, 1.168676, -0.556091, -0.096008, 1.158467, -0.351752, 1.146450, 1.960713, 0.490796, 0.009053, 0.588831, 1.038268, 0.013681, -0.760712, -1.341535, 0.811241, -1.001098, 0.738826, 0.899320, 0.317043, -0.519889, -0.695239, 0.685640, 0.053863, 0.386357, -0.075529, 1.597041, -0.311404, -0.399053, 0.773792, 1.103177, -0.599354, -0.236869, -0.088272, 0.257239, 0.348416, 1.001748, 0.565105, 1.043244, 0.281017, 0.717559, -0.444827, 1.439773, -0.507837, -0.314224, 0.455111, -0.729746, -0.270938, -0.083328, 1.116038, 2.165294, -0.143620, 1.244648, -1.017341, 0.720974, 0.714124, 0.607361, -0.416470, -0.415471, 0.114658, 0.643928, -1.607350, 1.734378, 0.933473, 1.277323, 0.551227, -0.560843, 1.069275, 0.568155, 0.499344, -0.674527, -0.473248, -0.106183, -0.714342, 1.486905, 0.822615, 0.392550, -1.412507, 1.320822, 0.918009, 0.828928, 0.173972, -0.937988, -0.346022, -0.414737, -0.095469, 0.910329, -0.384739, -0.570791, -1.272898, -1.042226, 1.457786, -1.079185, 1.087736, 0.126176, -1.041015, 0.783395, -0.194132, 0.518606, -0.592545, 0.860658, 0.658174, -1.814432, -1.255922, -0.612641, -2.107119, 1.660166, 0.668104, 0.456806, 0.582133, -1.299312, 0.811868, -0.516781, -0.108662, 1.156318, 0.176076, -0.464090, 0.206290, 1.730442, -0.405242, -0.239455, 0.270996, 0.891669, -0.239943, -0.254048, 0.495735, 1.004645, -0.772280, -1.074777, -2.310260, -0.391156, 0.612754, 0.178409, 1.109788, -0.000639, -0.399230, 0.671902, 1.169714, 1.531017, -0.219472, 0.780675, 0.575824, -1.181746, -0.628768, 0.654607, -0.073733, -1.096885, 0.740839, 0.990603, -0.485555, 0.517071, 1.280939, -0.799209, 0.053889, 1.088144, -0.418205, 0.953869, -0.309487, 0.538600, 0.806603, 1.122140, 0.223117, 0.837854, 1.060827, -0.711095, 0.835888, -0.600026, 0.484749, 0.208810, -0.255554, -0.108948, -0.404232, 0.641512, 1.228912, 0.881007, 0.997146, -0.745469, 0.099853, 1.126967, -0.759049, -0.982529, 1.672569, 0.000626, 0.884397, 0.136759, -0.640649, 0.333578, 0.078262, -0.492754, -0.048147, -2.078400, 0.153680, -0.621102, 0.745186, 0.433573, -0.853499, -0.754126, 2.523566, -0.519786, 2.478657, -0.320310, 1.390442, -0.579831, 0.575781, -0.877787, 1.759696, -0.082488, -2.198108, 1.634852, 1.086027, 0.028339, -0.515230, -0.182139, -1.419449, -1.480705, -0.136671, 1.531879, -0.589691, -1.309580, -0.163627, 0.024708, 0.734130, 0.873181, -0.272713, -0.548532, 0.183101, -0.497299, 0.809498, -1.450759, -0.117722, -0.219132, 0.292452, -1.904197, 0.143579, 0.116271, 1.214655, -0.640343, -0.630937, -0.209910, 0.340909, 1.171140, 0.636831, -0.616606, 0.008119, 1.572993, -0.334718, -1.800502, 0.156949, 0.405236, -0.724222, 0.483722, -1.819836, -0.691741, -0.279210, -0.388509, 0.668926, 0.889858, -0.150314, -0.543959, -0.176981, 1.987931, 0.855049, 0.529252, -0.845001, -0.989239, -1.421062, -1.327491, 1.673545, 1.458873, -1.592869, -0.822923, -0.883967, -0.376208, 0.320181, -0.471279, 0.549328, 1.529936, -0.167083, -2.698047, -1.965089, -1.552776, -2.073594, 0.240863, -1.637739, -0.491277, -0.879370, 1.112104, 0.544278, 0.613885, 0.737477, 0.839379, 0.321677, 0.769763, 0.893266, 1.722090, 0.167345, 1.445776, -0.629170, -1.240548, 0.678559, -0.581255, -1.027003, -0.207990, -0.396461, 0.452000, 0.127755, -0.443898, 0.297728, -0.931179, 0.967847, -1.298123, -0.906806, -0.218328, -0.312308, 1.082331, 0.397821, 2.220063, 1.565924, 1.189632, -0.713416, 1.600261, -2.119111, 0.282426, -0.460493, -0.236223, -1.518592, -1.512269, -1.084260, 1.143492, 1.390114, 0.516777, -0.111318, -0.194051, 1.032500, 0.327746, 0.286373, 1.096142, 0.686950, 1.591864, 0.373304, -1.226966, -0.990414, -1.138548, -1.688668, -0.655515, 0.937867, 0.691856, -0.747645, -1.283800, 0.647234, -1.248964, 1.903738, -0.838187, 0.189007, -0.333875, -1.432477, -0.439429, -1.051654, -0.745071, 1.493812, -1.260792, -0.880455, -1.807662, -0.215741, -0.610704, 0.419419, -1.032236, -1.052457, 0.665854, 0.977798, -1.088042, 0.841676, -1.244256, 0.699423, 0.458182, 0.074936, -2.040297, -0.406160, -0.134868, -1.317370, -2.233015, -0.488203, 0.187009, -1.416606, 1.812506, 0.388035, 0.865895, -1.469839, -1.644285, 0.843576, -0.790269, -0.302565, 0.436191, -0.514398, 1.184170, -0.656740, 1.712983, -0.052247, 1.106618, 0.550236, 0.792605, 0.006270, -0.719713, -0.830699, -0.333360, 1.245278, 0.641135, 0.246580, -0.308070, -0.565285, -2.584497, -0.362588, -0.074127, -0.213462, 0.075311, 0.166592, 0.859304, -1.146299, -1.166986, 1.688527, -0.738788, 0.600389, -0.128198, 0.344568, -0.741380, -0.731147, -0.144513, 1.368747, 2.399508, 0.886127, 1.358408, 0.118258, -0.094923, -2.378642, 0.755630, 0.854068, -0.936919, -0.625229, -0.677522, -1.245193, -0.335134, -0.252879, -0.211951, 0.055112, -0.783280, -0.618385, -0.958108, 0.536541, -0.136982, -1.311414, 0.619876, 0.620852, 1.744741, 0.261075, 1.440116, 0.631201, -1.079088, -0.108566, 0.746522, 0.998224, -0.513033, -0.671468, -0.155251, -1.946431, 0.560747, -0.379248, -1.062482, 0.127920, -0.649031, -0.126300, -0.574007, -1.324696, -0.421767, -0.274581, -0.281393, -0.552640, -0.864856, 0.672566, 1.154413, 1.374227, 0.980392, -0.084116, 0.512321, -0.876715, -1.144675, 0.122608, -0.103457, -1.369081, -0.637590, 0.053352, 0.962521, -0.776396, 0.223998, -0.428119, -1.305058, -0.783310, -0.120336, 1.644206, 1.971693, 0.866150, -1.486048, -1.154154, -0.506225, -0.068497, 1.708595, 0.005526, -0.375063, -0.139891, -0.573081, 2.406396, 1.469202, -0.024259, -1.061411, -0.376466, -0.632997, -0.792997, 0.162100, 0.133559, 0.166693, 0.108858, -0.380970, -0.086500, -0.476880, 1.254424, 0.454440, 0.290330, 1.407760, 0.673980, 0.395342, -0.258706, -0.159918, -0.775750, -1.237364, -0.786243, -0.852008, 1.120450, -1.504593, 0.005802, -1.107561, 1.345220, -1.322717, -0.435464, -1.431995, -0.042082, 0.339572, 2.011347, -0.046804, -0.781187, -1.353966, -1.042931, 1.096995, 0.547902, 1.946881, 0.090543, -0.101012, -1.008603, 1.171841, 0.221167, -0.671014, -0.507839, 0.126544, -0.476825, -0.274699, 0.097734, 0.940326, -0.130910, 0.086700, 0.829810, 0.269792, 2.239339, -2.085658, 1.075656, -0.076831, 0.629599, -1.209154, 0.329170, 1.237872, 0.551317, 1.178346, -0.971594, 0.780025, -0.090874, -0.765722, 0.097774, -1.403388, -0.029671, 1.349227, 1.450856, 0.947850, 2.015108, -0.111993, -1.781984, -0.308100, -0.110668, -1.158519, 0.517697, -0.216494, -0.220037, 0.081415, 0.630720, 1.338431, 0.510129, -0.146694, 0.310522, 1.418374, -1.442137, 0.428556, 1.363806, -0.708389, -1.698435, -1.183555, 0.243152, -1.359286, -0.384201, -0.029706, 0.173880, -0.192951, -2.630071, -0.130015, -1.469690, -2.610622, -0.785859, -0.181860, 0.861415, 0.193740, 1.702512, 0.683016, -0.365387, -0.648124, -1.846956, -1.122233, 0.185972, -1.352374, -0.830162, -0.446146, -1.758734, -1.780701, 0.041390, -0.471741, -1.055600, -0.546277, 0.369549, 1.965760, -1.042709, 0.708577, -0.526395, 0.601439, -0.064480, -0.445531, -0.753787, -0.523636, 0.715584, 0.652892, -1.463985, -0.477663, 1.417842, -0.619403, 1.111166, 0.156766, 0.211911, -0.665507, 1.150210, 1.769839, 1.136887, -0.633683, 2.066492, -1.130269, -0.705939, -1.626145, -0.008259, 1.435961, 1.238059, -0.346081, 0.307919, 0.491241, -0.783238, -1.284757, 1.430457, 1.210389, 0.477298, -0.089854, -1.227091, -0.363040, 0.623374, 0.589486, 2.275804, -0.417661, 0.228580, 0.859881, -1.235270, -0.274058, -1.626223, 0.604122, -0.688723, -1.128704, -0.209283, -1.419530, -0.734639, 0.690308, -1.668127, 1.950307, 0.721112, -0.058894, 0.874049, -2.387257, -2.382137, -0.660178, 0.152801, 0.835420, -1.307660, -1.214327, 0.661770, -0.242860, 1.219668, 0.208198, 1.456882, -0.965216, -0.028414, 0.187679, -1.010813, 1.849366, -0.221067, -0.914744, -0.416883, 0.767400, 1.495032, 0.305480, -0.218613, -0.081811, 0.305321, -1.253629, -0.293919, -0.901221, -0.118398, 0.070505, -1.150420, -1.264493, -0.630057, -1.105974, -0.123739, -1.019149, -0.720495, 0.540438, -0.345324, -0.379632, 0.344677, 0.328697, 2.748793, 0.620863, -1.034786, 0.875036, -0.097624, -0.575974, 0.794444, 0.220426, 0.543386, -0.645406, 0.053278, 0.076648, -0.379449, 1.190202, -2.009440, -0.959602, 0.448640, -0.086173, -0.776314, 0.737553, -1.246626, -1.980447, 0.243003, 0.369617, 1.024192, 0.358525, 0.887942, -0.094622, 1.187749, -0.083996, -0.862417, 0.190874, 0.119322, 0.294916, 2.645494, -0.859714, -0.825918, -0.179890, 1.293485, 0.798081, 0.384544, -0.783378, -1.062039, -1.795689, -1.247499, -0.187664, -0.021139, 0.196630, -1.827605, 1.761667, -3.147164, -1.070339, 0.481859, -1.844817, 1.024707, 0.374770, 1.535322, 0.347619, -0.337184, 0.697440, 2.658650, 0.348595, -0.122697, 0.109197, 0.596718, -0.078259, -0.776356, 0.488101, 0.923557, 1.018881, -1.088113, 1.134182, 0.718592, 1.836771, 2.024154, -0.870108, 1.244205, -2.087258, -0.388722, -1.795906, 0.711192, -1.373735, 0.449663, -0.783590, -1.143168, 0.135592, 0.083174, -0.931215, 0.987422, -1.575637, 0.446788, -0.654699, -1.318031, -0.647886, 1.402221, 0.123557, 2.230324, 1.797810, 0.300040, 0.343700, -0.537056, -1.600758, 0.595180, 0.118309, 0.997136, 0.836712, 0.283616, 0.433747, -0.729029, -0.943932, -0.227366, -0.057888, 1.183126, -1.320678, -0.380555, -1.309577, -0.485332, 0.604359, -1.330922, -0.148926, 0.456372, -1.140769, -0.609186, 0.467971, 0.299118, 0.174998, 0.422933, 0.754133, -0.732476, -0.928986, -0.728240, -1.178316, 1.000448, -0.814347, -0.203063, 0.443529, -0.174311, -0.251117, -0.644071, -0.153997, -0.082539, 0.674903, 0.472048, 0.897780, 0.660583, -0.177280, 1.068870, -1.446629, -1.546493, 1.366226, -2.288502, 1.794686, -0.420767, 1.332002, -1.373284, -0.862202, 0.927564, -0.494349, 1.181384, -1.125830, -0.074256, -0.378115, -0.839350, 1.499537, 0.235234, 0.014598, -0.546254, -1.289649, -0.349299, 1.089985, 1.066408, 0.764480, -0.164093, -1.693415, 0.692358, -0.162189, -0.730407, 1.673545, -0.980235, 2.001535, 1.398425, 1.558775, -0.702967, 0.211842, 0.624490, -0.964077, 1.120932, 0.542271, 0.030446, 2.327094, -1.554529, 0.269761, 1.903536, -0.443620, 0.649849, -1.664970, -0.677397, -2.872522, 1.307669, 1.335139, 1.673917, 0.013702, 1.398112, -1.606674, 0.772259, 0.056622, 0.024881, 0.241775, 0.243164, -0.384306, 2.792778, -0.587318, 0.375403, -1.237404, 0.488807, -0.760261, 0.144003, -0.173976, 0.095249, 0.010463, -0.937822, 0.410867, -0.770867, -0.603174, 1.632809, 0.597481, -2.215459, -1.109547, 1.750008, -0.189765, -1.519374, -1.467196, -0.853718, -2.225365, -0.363549, -0.446801, -0.189340, -1.228377, -0.626110, -2.156332, -1.151893, -1.283724, 1.213556, -1.590464, -1.458545, -0.366378, 0.354419, -0.720425, -0.717857, 0.047276, 1.240608, 1.548001, 1.007140, -0.523533, -0.388501, -0.536126, -0.806852, 0.169690, -0.508903, -0.418444, 0.337202, -1.508635, -1.104826, -1.402955, -0.067040, -0.888354, -0.705907, -0.010777, -1.053442, -1.156385, -0.484154, 0.139156, -0.387661, 0.016361, 1.634620, 0.566286, -1.416025, -0.753104, 0.293649, 0.093446, 0.107360, -0.293067, 0.130518, -0.823477, -2.274293, -0.315044, -0.750269, -0.028701, 0.308100, -0.523415, -1.280716, -0.741633, -0.354397, 1.317815, 1.384787, -0.026900, -1.451873, -0.454513, -0.084957, -0.115540, -0.466295, -0.634769, 0.022678, 0.742489, 1.386997, -0.385872, 0.029364, 1.027894, 0.457606, 0.582352, -0.592307, 0.053087, -1.333539, 1.020934, -0.078576, -0.999927, 0.003452, -0.765376, -1.563914, 0.088731, -0.153744, -0.709352, -0.044393, 1.113993, 0.921396, 1.111499, 1.210143, -0.341550, 0.042235, 1.429697, -0.632591, -0.300360, -0.680296, 0.436063, -1.175988, 0.489881, -1.205534, 0.338403, -0.566842, 0.131293, 1.421872, -0.841501, -1.294598, -0.115798, -0.039727, -0.980674, -2.606051, 0.920376, 0.057453, 0.111790, -0.710748, -0.076055, 0.189401, 0.214520, 2.321867, 0.232029, -0.246663, -1.359717, -1.459771, -2.334101, -0.652773, 1.191809, 0.904245, 1.032031, -1.547951, 0.115268, 0.328072, -0.761484, 0.838651, -0.649313, -0.781102, 1.574347, 0.856498, -0.632760, -1.187543, 1.517092, 2.353967, -0.278929, 0.978824, 0.733094, 0.378488, 0.479565, 0.897163, -0.123646, -0.310430, -0.759467, -1.885428, -0.209862, -0.517035, 1.719035, -0.125751, 0.172083, 0.320306, 0.208253, 0.910070, -0.178106, 0.898964, 0.740969, 0.118788, -0.216174, 0.956823, 1.711554, -1.084347, 1.123219, -0.703388, 1.820281, 0.497703, -0.563163, -0.739848, -0.791185, 0.889304, 0.602255, 0.129036, 0.705769, -1.268192, 0.885870, 0.727655, -0.218390, 0.627912, -0.161703, -0.426803, 1.357310, 0.469102, -0.356459, -1.209466, 0.642868, 0.247731, 0.451678, -0.644547, 0.335827, 0.338670, 0.982578, -0.195142, 0.035988, 0.102645, 0.887253, -0.269961, 0.833427, -1.889038, 1.841671, 0.987263, 1.191295, -1.441744, -0.632205, -0.825310, -0.294225, 0.727003, 1.412185, 0.082373, 0.236460, -0.038422, -1.959176, 0.649496, 0.733149, 0.454742, -0.814309, -0.183796, 0.399533, -2.887589, -1.032415, -0.147824, -0.197423, 0.710240, 0.995691, 0.800466, 1.632968, 0.404815, -0.515171, -1.026805, -0.667833, -0.114808, -0.924617, -0.018594, -0.157162, 1.403705, 1.766914, -1.192876, -0.793076, -0.703270, -0.150484, -1.000432, -0.820079, -0.728116, 0.881888, 0.353508, -0.644275, 0.387571, -0.943107, -1.719772, 2.067284, -1.283606, 0.555288, -0.538343, -0.232900, 1.706254, 0.501986, -0.310663, -0.115982, 0.778088, -0.401959, 1.209729, 0.495599, -0.565936, -0.050681, 1.109133, -0.178498, -0.255668, 0.514292, 1.742133, 1.016622, 2.226065, 0.070508, 1.948062, -0.686067, -0.756786, -1.386338, 0.751718, 0.128653, 0.402268, -0.456415, 1.721122, 1.888827, -1.109620, 1.753833, -1.272838, -1.750162, 1.393937, 0.414713, 1.458795, 0.432089, -0.271084, 0.305521, -0.184658, 1.029695, 0.623047, 0.674749, 0.500990, 0.108209, -0.948856, -0.378686, 0.737663, -0.225464, -1.255460, -1.450462, -0.795926, 0.982417, -1.564558, 1.008991, -0.486431, 0.148419, 0.506192, 1.829997, 0.298905, -0.800254, 0.596263, 0.476915, -0.985428, 0.307917, 1.044979, -1.276391, -0.539604, 0.012788, 0.269754, -1.937072, 0.509333, -1.337484, 0.302740, 0.899198, -0.448961, 0.272133, -0.503766, 0.245911, 2.004431, 0.224981, 0.455179, -0.247878, -0.344004, -0.455249, 0.393533, -0.224898, 1.226482, 0.431806, 0.478263, -0.125799, 0.664227, 0.148365, -3.023103, 0.499670, -1.476777, -0.873552, -0.129249, -0.369988, 1.592503, -0.232923, -0.781794, 0.027017, -1.195299, 0.544237, -0.006196, 0.814351, 1.837672, 0.740725, 0.782338, 1.642543, -1.126186, -0.678856, 0.778783, 0.177031, -0.947485, 0.266654, -1.085496, 1.010150, 0.936261, -0.012702, 1.476522, 0.937361, 1.499992, 0.130745, 0.648503, -1.299191, -1.086028, 0.909201, 1.125026, -0.780970, 0.983728, -0.380441, 0.049118, -0.472084, 0.364691, -0.014094, 1.124368, -1.017236, 1.946865, 0.904426, -0.002596, 0.662932, 0.777084, 1.227172, -1.312530, 0.202687, -1.106635, 0.982087, 0.686559, -0.555521, 0.997803, 1.287305, 0.504154, 0.601062, -0.529765, 0.060907, -0.217080, 1.027508, 0.698355, -1.581733, -0.311606, 2.707881, 0.279929, -2.959562, 0.744808, 0.390481, -0.421641, -1.209988, 0.829098, -0.961529, 0.581873, -0.383676, -0.289850, -0.574130, 0.034980, 0.473143, -0.435725, -1.287254, -1.904627, 0.086599, -0.423148, -1.621388, -1.089680, -0.559273, -1.095038, 0.588340, -0.025188, -0.351800, 0.347529, 0.858863, -0.712554, 0.147760, -0.214297, 0.009104, -0.384965, -0.635931, 1.756596, -0.162672, -1.604306, 1.238165, 2.014004, -0.294017, -0.367446, -0.486456, 0.664144, 0.709728, -0.571923, -0.087981, 0.825209, 0.036387, -0.174404, 0.775066, 0.115353, -1.207576, 1.807518, -0.024098, 0.341681, -0.015670, 1.784983, 0.954031, 0.662086, 0.300683, -0.179413, 0.478067, 0.115815, 1.101331, 1.619486, -0.126395, 0.579103, 0.649872, -0.724738, 1.269255, -0.609886, 1.398500, 1.367762, -0.976735, -1.324027, -0.223323, 1.541604, -0.762275, 0.375253, -0.255432, -0.330986, 0.427725, -0.598267, 0.411468, -1.609460, -0.845222, -0.890767, -0.618564, -0.492914, 1.182000, -0.882150, 1.296872, 0.762798, -0.434291, 0.586144, 0.623786, 0.918082, -0.154718, 2.277585, 1.085829, -0.692970, 0.784628, 1.298019, 1.881265, -0.840174, 0.974620, -0.731382, -1.292343, -0.354940, -0.091845, -0.276639, -1.940824, 0.273609, -0.419021, -0.590052, 1.534430, 0.416220, 1.963111, 0.079348, -0.769528, 0.002012, 0.291696, -0.687290, 0.138033, 1.423046, 1.273412, -1.372042, -0.710537, 0.029991, -0.425986, 0.857544, 0.650420, -0.144040, -0.920889, 0.721134, -0.152666, -0.432407, -1.201088, -1.503468, -0.403696, -0.807172, 0.304677, -0.511102, -0.400557, -0.859855, -0.454673, -0.239787, 0.488322, -0.083036, -0.366056, 0.156441, -1.079316, 0.318091, -0.301893, 0.609218, 1.204348, -0.753119, 0.980664, 3.796210, -1.133296, -0.823929, 1.843483, 0.321056, -0.461334, -0.329761, 0.899085, 0.459717, 0.222955, 1.485973, 0.080453, -2.049097, 1.155141, -0.520698, 0.820835, 0.136691, 0.112932, -1.095105, -0.998634, 0.089542, -0.316153, -0.023300, -1.007964, 0.536409, 0.006725, 0.219939, -0.376703, 0.689080, -0.449503, -0.362139, -0.154353, 0.469531, -0.342434, -0.105442, -2.228610, 1.862801, 1.382594, 1.457330, 0.400455, 0.440759, 1.119281, -1.617289, 0.753984, -1.110638, 0.532744, -0.718416, 0.645858, -0.719062, -0.851025, 0.707429, 0.161813, -1.549468, 0.771746, 0.624388, 2.346169, -0.387792, -1.854217, -0.454730, -1.006506, -0.923004, 0.482504, -0.912470, 0.206206, -0.096126, 1.291834, -0.902204, 0.156233, 1.674126, -2.063265, 1.283487, 1.681964, -0.019014, -2.968753, -1.540093, -0.523178, -0.899775, 0.387268, -1.555972, 1.078691, -0.376812, 0.570607, -0.409181, -1.527514, -0.302462, -0.758858, -0.702321, -2.181706, -0.658262, -0.190414, 0.595849, -0.052696, 0.366325, 0.745387, -0.443183, -1.264017, 0.099557, -0.547320, -1.805849, -0.729279, 0.016630, -1.876772, -0.152712, 0.371446, -0.476329, -0.401440, -0.733713, -0.700930, -0.193320, 0.393181, 1.774620, -0.446209, -0.987878, 0.762784, -1.162782, -1.899903, -1.230296, 0.043290, -0.285530, -1.926066, 1.460443, -0.813304, 2.036157, -0.331495, -0.898324, -0.138054, 1.786537, -2.049535, -1.403762, 1.111821, -0.706610, -1.149683, 0.188075, -0.795089, 0.207097, -1.437854, 0.416655, -0.048398, -0.366403, 0.531330, -0.509743, 0.503418, -0.118177, 0.576956, 1.225050, 0.599023, 0.597058, -0.831920, -1.826365, 0.205631, -0.255069, -0.867460, -1.312955, 0.445624, 0.762748, 0.305457, -1.054429, 0.442221, 1.359276, -1.469672, -0.431011, -0.024575, -0.131256, 1.775543, 1.582192, -0.225956, 0.479395, 0.401060, 0.417523, -0.178910, -0.721090, -0.395913, 0.812143, -1.583178, 0.160635, 0.252204, 0.246757, -0.047343, 0.213441, 0.157329, -2.080566, -1.066409, -0.454331, -0.080913, -0.816027, 2.353933, -0.729086, -0.273801, 0.779813, 1.288876, -2.506730, -0.379631, -0.566054, -0.923300, -1.346407, 0.133783, 1.209992, -2.567671, -1.108954, -1.296308, 1.736149, 0.605642, 0.192645, 1.158784, -0.550833, 0.372249, -0.850032, 0.414675, 0.399675, 0.189062, -1.007249, 0.053036, -1.751449, 0.581333, 0.468221, 0.737183, -0.404366, 0.268284, 0.799292, -1.747538, 0.638632, 0.536745, 1.030655, 0.676386, 0.223053, -0.439443, -0.034977, -0.787056, 0.632421, 0.552024, -1.511004, -0.001843, 0.063492, -1.246286, 0.288353, 0.742749, 0.370142, -1.056146, 0.099279, 0.309442, 0.419090, 0.424427, 1.164418, 1.614803, 1.053778, -1.155949, 0.391989, -0.862272, -1.709760, 0.096941, -0.179824, 0.857109, 0.297491, -0.686876, 0.779600, -0.925900, 0.705014, 1.330644, -1.095678, 0.091249, -0.011815, 0.614401, -0.438847, 0.789591, -1.818947, 0.334269, 0.583337, -0.795161, 1.684281, 0.504569, 1.035718, 2.778836, -1.849415, 0.477285, 0.145268, -0.111491, -0.426167, 0.492001, 3.055124, -2.202069, -2.545540, 0.400037, 0.580503, 0.653296, 0.828112, 0.193867, -0.896094, -0.579759, 1.152689, -0.066268, -1.058625, -0.746186, -0.408278, -0.218528, 0.660570, 1.196898, -1.079766, -0.078783, 0.173937, -0.201425, -1.201933, -1.832978, 1.581370, 0.294157, 1.219790, -1.326156, -0.395928, -0.392351, -1.588774, 1.398477, -0.111119, 0.462944, -1.118935, 1.722983, 0.318882, 0.199412, 0.586789, -2.430567, -0.130678, -0.064726, -1.561059, 0.862869, 0.670735, -1.050763, -0.254784, -0.366436, 1.807625, 1.906982, 0.227437, 0.617599, 0.054067, 0.615317, 0.854159, -0.550218, 1.501011, -0.346793, 2.994880, -1.850683, 0.042260, -1.954350, -0.690772, -0.691414, 0.568382, 0.767278, 0.939593, 1.221146, -0.843247, -1.857675, -0.438739, 0.366487, -0.012533, 1.062202, 0.678502, -0.698320, -0.589061, 1.392660, -0.014692, -0.254400, -0.389058, 0.455011, 0.955321, 0.288299, 0.361711, 0.918346, -0.234447, -0.643624, 1.085071, 0.850665, -0.823474, 0.425494, 0.747366, 0.400085, 1.234186, -0.828338, 0.800874, 0.366952, 0.818555, -0.558730, 2.379847, 0.138641, -0.226514, 0.623817, 0.109674, -0.011339, 1.054928, 0.216609, -0.089559, 1.018074, -1.068907, -0.082493, 1.418231, -0.508477, 0.248085, 1.029483, 1.469037, 1.855924, 0.604715, -0.490856, -0.506248, -0.191966, 0.862787, -0.385807, -0.962807, -0.531157, -0.033643, -0.918936, -0.723544, 1.008217, -3.676041, 1.566184, 1.144344, 0.075474, -0.921160, -1.456606, -0.746433, 0.424510, -0.427631, -0.491317, -1.840970, -0.842448, -0.757953, -1.465122, -0.859214, -0.551356, 0.041191, -1.440799, -0.797856, -1.521732, -0.147586, -0.327580, 1.125167, -1.516668, 0.527984, -1.627442, 1.337041, -1.218460, -0.038116, 0.463635, -0.801528, -1.118041, 0.170936, -0.070397, -1.166486, -0.978883, 0.046727, 1.815457, 1.212557, -0.129676, -0.244971, -0.707596, 1.111300, -0.951421, -1.216330, -1.143902, -0.662790, 1.633130, 0.017630, -0.040664, 0.893582, 0.026925, -1.332966, 1.548233, -0.172360, -0.205729, 0.734707, 1.341781, 0.191730, -1.474243, 1.834279, 0.488465, 0.664818, -0.251428, 1.145162, 0.218729, -1.355958, -1.918748, 1.431400, 0.025223, -1.276383, 1.296274, -0.821574, 0.923209, -0.885989, -0.238381, -0.698284, -0.950578, -1.470144, -0.299562, -0.974543, -0.447062, 0.479234, 1.250019, -0.703097, -0.053070, 0.827718, -0.668392, 0.309118, 1.442489, -2.221541, 1.423063, -0.724541, -0.497532, -0.964818, -0.901931, -0.988057, 1.025807, -1.284261, 0.183423, 0.664829, 0.285021, 0.671176, -1.884838, -0.899815, -1.345672, 0.045784, 1.661913, 0.662810, -0.947114, -0.793327, -0.113444, 1.442446, 0.068966, 0.270194, -1.933888, -0.383946, -0.643890, 0.358773, 1.581929, -1.189628, -2.155237, -1.458433, -1.345861, -0.816821, -0.529428, -0.671591, 0.206462, -2.649322, -2.134382, 1.064368, 1.038938, -0.136797, 0.200898, -0.867550, 0.315312, -1.602007, -0.434502, 0.289875, -2.001870, 0.536802, -0.838116, 0.899951, 0.759677, -0.707559, 0.121736, -0.575412, 0.675201, -0.380019, -0.134058, -0.295355, -1.484965, 0.450747, -0.134306, -1.213264, 0.287506, 0.788631, -1.494547, -0.235927, -0.134889, 0.307697, -1.351795, 0.536793, -0.503153, 0.928950, -0.195665, 0.933591, 1.506824, -0.712982, -0.550729, 0.097743, -0.387651, 0.610167, -0.554629, 0.865778, -1.172483, 0.002210, 0.379809, -0.727930, 0.209213, -0.649168, 0.411371, 0.455661, -2.212316, 0.941360, -1.418085, 0.067203, -0.399673, -0.848109, 1.077335, 0.491344, 0.249749, 0.340159, 1.674015, 0.877770, -1.089479, -0.179489, 0.707524, 0.126172, -0.352452, -0.241087, -1.445134, -0.726326, -0.787889, -1.053619, -0.962096, 1.614980, 0.097501, 1.273708, 1.157279, 0.535659, -1.102176, -1.632963, -1.864505, 0.306445, 0.023364, -0.063251, 0.446336, 1.449808, 0.934849, -0.643927, -1.684765, 1.529072, -0.702589, -1.373832, 0.421753, 0.305046, -0.915507, -1.350665, 0.676483, 1.602333, 0.531668, -0.697932, -1.342307, -0.089417, -0.389130, 0.067762, -1.802380, -0.156182, -0.211202, 0.554121, -0.439373, 0.723803, -1.589427, 3.060335, 0.413831, 0.867604, 2.219315, 1.446700, 0.546755, 1.494586, 1.203633, 1.394253, -1.150876, -0.029928, -0.372093, -1.840689, -2.210353, 1.283033, -0.645564, -0.021501, -0.077096, -0.732267, -0.948169, 0.054966, 0.236298, -0.726196, 1.129175, -0.602513, -1.423572, 0.519163, -0.668252, -1.891867, 0.578244, -0.455268, -0.517073, 0.332538, 0.811766, 0.858556, -0.002323, 0.180075, 1.286900, 0.067541, -0.661717, 0.093036, 0.467318, 0.033532, -1.225681, 0.376143, 1.782949, 0.016096, 0.682125, -0.052125, 0.624759, 0.981268, 1.184785, -0.163998, -0.694862, -1.702779, 2.202143, -1.805513, 0.169976, -1.976831, -1.719692, 1.790999, -0.224391, -0.899993, 0.541737, -1.801347, -0.430117, -0.276419, 0.909497, -0.066531, 0.059858, -1.641162, 0.551484, -0.365252, -0.052110, 0.386824, -0.535469, -0.283235, -1.726350, 0.899240, -1.000476, 0.080297, 1.286556, 0.997315, -0.199777, -1.021605, -0.239559, -0.518559, -1.701096, -0.378116, -0.265730, 0.325563, 0.047423, 0.734502, -0.417671, -0.188999, 1.214969, -1.195063, -1.318769, -0.597199, 0.833651, 0.614565, 0.439964, 0.298420, 0.916472, 1.488605, 0.459543, 1.836470, -0.601337, 0.189246, -0.110596, -0.885615, -1.223122, -1.028192, -0.038448, -1.463487, -0.302465, -1.708701, -0.033486, 0.447072, -1.510011, 0.818844, -0.818325, -0.071532, -0.456622, -0.080089, 0.578328, -0.353340, -1.761056, 0.692841, -0.764207, -0.174462, -1.323933, -1.750946, -0.872114, -0.904773, -1.859576, 0.101255, 0.104772, 1.444046, -0.921593, -1.464600, -0.202483, 0.165346, -0.193454, -1.245988, -1.884432, -2.006478, 0.766918, 0.923438, -0.428141, -1.048595, -0.885484, -0.385997, -0.062651, 0.126930, 0.260520, 0.809685, -0.740131, 1.019064, -1.063045, 1.316126, -0.769969, -0.449291, 0.313685, -0.008639, -0.804785, 0.690296, -0.039276, 0.200269, -0.632381, 0.395774, 0.552030, 0.107645, 0.055983, -0.608583, -1.023219, -2.211037, 1.298246, -1.809259, -1.371396, -1.125279, -1.282304, 0.373770, 1.508846, -0.861505, -0.105574, 0.305476, 0.863211, 0.613365, 0.508459, -0.322930, 0.978494, -0.955532, -1.478241, 0.206332, 0.799721, -0.411744, -0.721522, 0.402252, -0.627950, -0.267320, 0.034907, 2.154497, -0.698956, 1.318294, 0.633494, -0.696828, 0.561687, 0.348712, 0.560269, 0.948468, -1.191606, -0.013187, 0.004214, -0.108904, 1.191522, -1.278090, -1.321191, 0.352054, -0.456117, 0.762071, -0.445581, -0.045171, -0.586694, 2.537035, -0.114578, -0.878674, 0.319526, -0.280921, -1.869298, 1.048788, -0.344832, 1.342228, -0.536436, -2.081823, -0.068134, -0.449956, 0.908614, 0.969410, -0.243123, -0.404915, -0.123397, -1.281626, -0.364504, -0.620161, -0.747356, 1.021048, -0.524026, 0.033197, -0.861703, -0.507897, -0.063040, 0.378450, -1.381998, 0.342766, 0.742211, 1.285155, -0.628621, 1.163057, -0.448287, -0.935174, -0.265119, -0.252429, 0.616801, 1.237314, -1.431694, -0.076930, -0.434408, -0.551587, 0.317389, 0.151536, 0.168743, 0.039960, -0.532517, -0.413515, -0.914875, -0.557830, 1.741927, 0.508527, 0.014957, -0.143183, 0.027691, -1.073218, -0.281156, 1.049488, 0.842257, 0.245885, 0.717098, -0.167893, -0.154633, 0.363581, -0.888814, -0.436968, -1.205137, -0.573453, -0.335224, 1.937791, 1.854965, -0.888953, 0.011320, 1.019151, -1.062075, 0.708113, 0.186630, 1.264196, -0.635586, 0.203850, 0.916473, -0.122630, -1.049441, 0.375392, 1.013167, -0.195679, -0.236890, -0.630610, -3.797426, -2.581191, -0.306146, -0.534523, -1.046973, -0.571939, -0.140089, 1.133140, -0.313022, -0.398185, -0.271486, 1.333323, -0.592932, -0.154737, 0.244402, -0.989020, 0.651396, 0.627537, 0.440832, 0.144300, -0.084074, 0.150242, 0.858584, 0.479372, -1.088560, -1.612557, -0.596684, 0.078421, 0.825239, 1.382736, -1.951528, 0.039685, 0.274720, 0.247438, -1.503899, 0.147751, 0.550817, -2.378720, -0.468785, -1.506641, -0.196991, -1.449521, 1.142091, 0.853693, 0.946128, 1.663352, 0.759426, -0.166834, -0.925985, -1.078044, 0.340985, -0.322320, 0.856637, 1.045953, 0.019409, 0.925352, 0.026787, 0.464241, -0.501265, 0.433406, -0.498653, -1.533298, -0.616750, -1.890728, 0.700358, 0.404116, -1.025085, 1.437298, -1.368346, 0.033491, 0.891547, -0.057709, -1.209718, 0.086080, -1.778648, -1.112272, 0.440652, -0.219090, -1.673256, -0.937344, 0.877575, -0.057532, 2.474996, -0.619526, -1.010538, 0.492651, 0.256700, 0.364297, -1.080675, -2.380076, -1.472839, 0.029080, 0.148767, -0.133946, -1.402511, -0.161768, 0.738143, -0.655318, 0.094442, -1.930352, -0.192111, 1.908579, 0.011605, 0.330979, 0.088216, -0.658174, -0.168834, 1.379041, 1.768504, 2.178951, -0.420402, 1.045127, -1.233923, 1.738275, 0.659997, 1.847909, -0.899036, 1.492324, 1.007905, -0.482787, 0.480987, 1.493345, 1.205761, -2.325719, 1.652551, -1.758435, 0.140502, -0.999567, 1.540045, 1.510875, -1.195842, 0.061954, -0.802136, -0.503971, -1.780097, -0.183943, 0.803492, -1.863290, 1.002006, -0.048879, -0.222030, 1.477588, -0.921075, 1.733136, -1.932857, -0.318333, 0.488691, -0.880340, -0.069236, -0.232048, -0.110692, 0.047992, 1.804802, 0.477774, 2.737476, -0.325673, -1.101208, 1.411058, -0.208029, -0.516869, 0.461553, -0.558734, 0.546545, 0.101771, -0.103855, 1.977252, -0.332936, -0.088108, -0.169573, 0.870283, 0.845749, 0.370249, -1.241206, -0.288545, 0.363963, -0.894715, -0.244015, -0.467331, 0.608404, -0.465282, -0.587586, -0.463435, 0.427950, -1.561962, -0.274600, 0.320314, -0.010140, 1.806202, 0.715583, -0.943608, 2.586653, -0.372883, 0.869511, -0.940933, -0.096121, 0.936824, -1.068356, 0.733742, 1.095680, 0.452268, 1.414312, 0.023068, 0.591228, -0.208272, -1.081450, 1.525643, 1.385534, 0.323200, -0.130600, -0.990261, -1.198141, -1.471467, 0.003122, 0.021244, -0.877843, 0.879732, 0.519738, -0.301337, 1.454203, -0.414185, -1.481040, -2.923714, -1.019477, 1.224513, 1.813335, 1.165424, 1.418143, 0.877545, 0.285914, -1.824701, 0.257644, 1.017756, -0.949155, 1.287921, 1.331327, 0.561452, -0.410556, -0.101726, 0.512014, -1.425907, 0.030784, -0.431632, -0.274067, -1.942552, 1.303737, 0.103101, -0.739919, -1.333272, -2.271831, -0.739720, 0.365732, -0.758369, 0.336967, 0.712609, -0.003514, -0.685378, 0.164680, 1.310042, 0.106370, -0.371664, 0.512635, 0.824196, -0.322076, -0.228939, -0.298097, 1.988213, -0.519553, -0.864811, -1.094237, 0.865160, -0.889798, 0.244345, 1.215921, -0.357982, 0.172388, -0.090557, -0.076280, -0.212048, 1.376257, 1.038743, 1.037681, -0.428075, -0.597476, -0.117634}, + { 0.708783, 1.131935, -0.295111, 0.560741, -1.499676, 1.081983, -0.690776, 0.525180, -1.601818, -0.616921, -0.242050, 0.759504, -0.379464, -0.279613, 0.664757, -1.787720, -0.697258, 1.523226, 0.611804, -1.463266, 0.849166, 0.088049, -0.447639, -0.388767, -0.535561, -0.265597, 0.479666, 1.463904, -0.859864, -0.590982, -0.389156, -1.209902, 0.675350, 2.018850, -1.159406, 0.220304, -1.489899, 1.191158, -1.292296, 0.153147, -0.133125, -0.287782, -0.004898, 1.950939, 0.209956, 0.138637, 0.496528, 0.259788, 1.042857, -0.741759, 0.105329, 1.221935, 0.028468, 0.647793, -0.101484, 0.403082, -0.905254, 0.088542, -1.208114, -0.060249, -1.491535, -0.093152, -0.371890, -1.893254, 0.221821, -0.081192, 1.444038, -0.801182, -2.185120, -0.973081, -0.023747, 0.021040, -0.980092, -0.992898, 0.369225, -0.047475, 0.006548, -1.129992, 0.552777, -0.620558, -0.057711, -0.615504, 0.327934, -0.513624, 0.230786, 1.906838, -1.714362, -0.457335, -1.530945, -1.119984, -1.394583, -0.333806, -1.852323, 1.434235, -0.001954, 0.801129, -0.209600, -0.321322, 1.080321, 0.292868, -0.384614, 1.841074, 0.942635, 0.036071, 0.471805, -0.206541, -0.108269, -0.811337, -0.104313, 0.281255, 2.063791, 0.413419, -0.280447, -1.327779, -0.237347, 0.791644, 0.716968, -0.073074, -0.141110, 0.085230, -0.734374, 0.211454, 1.428895, 1.344210, -1.319227, -0.644868, 0.059260, 0.206288, -0.291656, 1.604446, -0.080070, -0.211077, -0.569330, -0.382248, -0.313883, 1.230755, 0.413608, 1.111011, -0.635720, -1.009620, 0.139370, -0.993196, -0.384125, 0.666090, 0.370512, 0.089801, 1.892409, 1.207692, -0.883599, -0.176089, 0.776208, -0.085987, 1.385221, 0.550568, 0.005757, -2.076656, 0.826924, -1.647033, -0.916374, 1.498019, -0.970140, 1.511093, 1.770226, -0.616552, 0.195096, -0.691112, -1.783100, -0.518952, 0.278854, -3.606590, 0.445351, 1.662397, 0.203867, -0.859219, -0.640424, -0.801028, -0.957140, -0.340679, -0.486475, 1.165515, -0.093376, 0.453099, 0.612810, 2.402252, 0.505980, 0.094312, -0.047279, -0.321894, 1.165823, 0.462745, 0.683448, 0.841891, 1.450980, -0.423997, -0.832682, -0.899674, 0.515106, 1.402015, 0.314088, 0.301954, 0.730656, -0.586608, 0.871775, 0.485957, 0.839787, -2.834916, 0.278115, 1.067752, -1.539503, 0.056001, -0.512996, 1.016016, -0.071151, -0.087622, 0.234122, 0.933980, 0.979977, -0.883593, 0.088170, -0.092845, 0.296885, 0.701235, 0.730355, -0.473992, 0.107071, 0.643496, -1.925743, -1.256873, -0.467933, 0.459772, -1.711960, 1.248433, -0.092724, -0.667556, -0.403970, 1.555986, 0.390680, 0.514482, -1.145920, -0.858101, 0.423414, 0.538179, 0.526019, 1.197701, 0.251989, -1.102216, -0.748797, -2.511522, -0.512188, 0.102921, -0.999759, 0.109989, 0.125927, -0.668349, 1.119345, -2.745840, 0.685110, -1.526561, -1.096721, -0.195785, -0.587867, -0.607784, 0.517398, 1.383988, -1.597097, -0.185422, -0.879120, -0.392037, -1.578199, -1.092373, 0.781641, 1.744911, -0.794079, 0.094724, 1.706743, -1.621872, 1.226963, -0.312499, 0.224023, -0.795788, -2.821457, 1.405811, 0.782254, 0.849403, -0.860183, -0.033286, -0.440938, 0.209138, -0.424008, -0.407860, 0.572749, -0.044453, 2.089242, 0.970522, 0.071075, -0.561079, -0.149891, -2.096178, 0.953075, -0.155065, -0.952863, -0.171341, -2.242267, -0.515147, 0.351991, -0.830646, 0.057314, 0.854155, 0.593755, -0.779534, -0.272688, 0.098291, 0.010552, 1.043192, -0.522208, 0.283379, -0.387422, 1.420241, -0.318580, -0.379524, -0.852458, 0.285222, 1.149735, -0.602556, 1.420953, 0.048348, 1.344053, -0.505761, -1.016052, 2.794708, -0.017095, -0.365163, -0.415444, -0.248113, -0.004596, -1.012876, 1.029564, -0.394855, -0.565477, -0.389074, -0.593390, 1.095759, 0.967193, 0.912609, 2.111502, 0.147812, 0.929306, 0.707837, -1.012529, 0.902632, -0.941679, 0.295134, -0.985402, -1.723683, 0.623728, -1.641349, -0.391337, -2.122866, -0.854087, 0.471879, 1.234227, 1.417337, 0.315503, -2.731246, -1.229849, -0.443165, -0.614513, -0.011028, 0.627780, -0.860820, -0.786275, -1.371742, 0.431615, 1.309274, -0.821439, -0.261070, 0.660963, -1.021590, 0.737661, -0.967164, -0.567304, -1.878290, 0.301515, 0.703598, -1.212648, -0.633017, 1.049533, 0.679983, -1.801228, -0.304252, 0.794838, -0.227056, 0.053731, 0.482792, -0.362529, 0.490980, -1.779794, -1.538623, -0.669362, -0.985563, 0.208736, -1.140189, 0.462613, -0.904050, 1.346461, 1.833743, 0.218386, -0.833870, 0.074306, 0.604061, 0.145064, 1.417419, 0.226484, 0.417399, -0.432708, -0.733680, -0.843887, -0.918953, -0.192292, 0.393638, -1.711711, -0.473351, 0.489287, 1.561650, 0.693495, 1.161966, 0.789446, 0.063996, 1.843614, -0.281329, -0.553190, 0.196177, 0.567370, -0.243443, 0.482495, 0.475805, -0.441379, 0.781558, 0.861086, -1.046042, -0.798552, 0.513558, -2.510005, 0.381886, -0.968730, 0.140252, -0.678966, 2.023665, 0.261010, -0.911110, -1.454500, -1.587311, -0.328139, 1.244102, -0.332306, 0.911721, -0.087873, -0.055848, -0.802268, 0.763254, -1.103382, 0.020909, -0.455271, -0.852488, 0.316453, 0.276279, -1.815327, 0.800250, -1.017426, -2.272913, 0.612606, -1.161582, -0.061645, 0.281389, -1.567569, -0.008614, 0.538856, 0.672268, -0.104056, 1.166358, 1.156220, -1.159910, -0.257655, 1.316906, -0.328530, 1.523268, 1.629131, -1.623196, -0.682277, 0.585485, -0.089381, 1.357037, 0.984276, 0.735384, -0.038241, -0.707370, 1.151447, 1.107831, -1.842378, -1.265742, 0.263936, 0.102341, -0.084405, 0.933076, 1.127442, -0.572159, 0.876765, 0.978203, 0.647516, -0.945423, 1.435292, -0.906254, 1.039659, 0.342019, -0.875323, 0.978208, 0.157310, -0.484039, -0.704315, -0.078572, -1.949494, 0.345802, -0.580714, 0.378368, -1.981530, 0.637888, 0.717339, -1.213921, 0.638917, -0.894838, -0.142790, -0.715257, -0.085941, -0.821184, 0.187698, -0.552810, -1.432310, -0.210969, 2.201425, -0.486477, -1.082860, 0.634123, 1.449477, 0.475435, -1.783162, 0.617213, -0.722758, -0.371557, 1.090877, 0.951445, -0.694444, 1.796125, -1.036446, -0.430737, 0.328300, 0.929586, 0.347734, -1.377510, -1.239483, -0.801675, -0.437528, -3.461172, -0.302192, 0.528891, -0.711603, -1.108593, 1.066750, -1.188587, -1.059012, 0.663690, 0.040034, 0.608568, 0.454871, 0.794065, -0.971437, 0.238552, -0.543488, 0.042982, 0.517756, 1.952041, 0.063691, -0.512967, -0.753432, -2.216880, -0.386219, 0.265224, 0.674330, -1.660889, -0.402902, -1.787134, -0.429136, -0.723789, -1.059645, -0.236633, 0.018241, -0.360183, -0.010409, -1.523919, -1.698465, -0.753349, 0.819740, -0.129334, -1.257056, 0.013637, 1.559490, -1.512570, 0.947234, 0.584164, -0.584677, 0.811991, -0.240677, -1.588282, 2.122699, 0.417049, -0.601947, 0.404843, -0.335719, -0.544009, 1.745651, -0.459741, 1.334987, 0.818579, -1.118451, -1.132396, 2.329793, -0.425327, -0.017306, 0.032811, 1.648383, -0.302620, 1.901765, -2.228271, -0.250386, 0.141197, -0.380903, 0.476301, 0.256102, -0.860988, 1.191412, 0.944407, 0.779560, -0.335404, 0.685976, -1.569387, 0.425596, 0.970912, -0.034067, -0.079353, 1.037693, -1.784057, -0.081923, 0.231672, 1.108519, 1.086204, -1.111977, -0.530177, -1.434375, -0.993360, -0.513587, -0.450060, -0.732586, -1.028164, 0.101072, -0.213878, 0.972663, 0.767658, 0.681991, 0.853132, 0.444208, -1.635366, -0.451921, 1.069521, 0.383732, -1.264748, -1.487448, 0.635811, -0.210745, -1.608362, 1.617636, 0.804067, -0.693396, -1.287541, 0.242406, -0.026155, 1.735577, 0.753563, -0.168854, -1.020591, 0.463787, -0.104122, 0.452049, 1.046777, 0.450804, -1.717804, -0.657638, 0.583266, -1.102787, 0.063473, -0.404023, 0.012863, -2.326316, -0.235964, 1.083867, 0.191824, 0.226641, 0.930682, 0.381416, 1.014651, -0.131427, -0.647924, -0.421400, 0.572816, 1.491196, 1.989454, -0.148600, 0.812966, 0.379139, -0.279552, 0.176965, 0.065485, -0.767939, 0.126027, 0.894322, -1.070340, -0.936561, 1.214715, -0.038613, -0.987703, -0.488730, 0.237719, -1.215890, -0.592992, -0.852683, 0.175095, 0.382086, -0.712164, 0.410872, 2.519297, -0.010222, 1.448691, 0.052917, -0.036129, -0.408312, 0.291248, 1.383008, 1.295629, 0.284923, 1.704845, -0.811940, -0.947025, 0.541476, -0.873773, -0.546245, -0.790850, 1.739208, 0.378770, 0.369373, 0.096654, 1.325830, -1.011438, 1.498456, -0.787938, -0.204658, -1.970884, -0.785674, 0.334507, -0.006849, 0.288259, -0.889448, 0.260965, -0.021076, 0.926514, 1.861692, -0.184410, 1.813177, 0.758889, 0.419489, -0.235667, -1.446277, -0.054368, -1.201142, 0.053574, 2.054008, 0.309834, 0.549717, -0.045640, 1.803070, -0.923470, 0.145422, -1.800137, 0.740683, -0.700675, 0.876768, 0.152040, 1.044051, 0.930561, -0.025134, 0.398516, -1.363957, -0.371047, 0.775333, 0.869320, -0.613075, -0.500593, -0.922937, 0.382785, 0.663527, -0.075489, -0.163457, -0.777183, 0.126770, 0.370944, -0.090181, 1.538654, -0.342371, -2.086604, -1.062219, -0.459145, 1.808433, -0.242851, 1.925723, 0.353727, -1.607992, 0.823269, 1.632794, 1.277753, -0.072690, -1.021996, -0.434252, -0.229004, 1.654361, -0.217209, 1.107375, 0.291197, -0.211560, -2.680941, -1.513223, 1.987350, 0.675766, 0.061566, 0.609669, 1.659219, -0.143818, -0.521891, -0.065786, 1.809595, 0.235327, 0.318794, 1.776339, 0.572445, 0.547691, 0.761784, -0.578851, -0.705522, 1.483314, -0.488039, -0.339615, -0.648529, 0.614061, 1.224037, 0.345048, -0.490206, -1.442397, -0.513060, 1.522905, 0.825607, -0.202273, -0.644566, 1.648473, 2.099079, -2.161117, 0.100382, 1.214772, 0.168741, -0.263650, -1.469705, 1.445583, -0.149081, 0.810306, -0.301803, -1.076094, 1.703752, -0.204445, 1.762732, 1.258543, 0.189436, 0.655702, -0.590395, -1.135584, -1.300514, -1.293575, 0.662891, -0.103278, 0.212895, -1.165949, 0.068801, -1.325531, 0.295257, 1.518204, 0.838905, -2.201095, 1.040052, -0.820645, -2.301049, 0.401953, -0.847265, 0.329253, 0.093634, 0.910239, -2.674407, -0.588052, -0.247402, 0.084656, -0.797835, 0.367538, -0.632283, 1.183055, 0.532847, 0.234936, 0.526328, 1.007877, 0.421336, 0.440152, -0.966936, 0.131112, 0.506426, 0.848045, 0.397182, 2.010851, 1.653456, 0.762043, -0.523068, -1.959751, 1.199433, 1.034749, -0.093455, 0.527419, -0.286049, -0.252117, 2.557612, 1.097466, 1.896780, -0.044213, -2.154786, 0.577846, -0.419661, -0.477373, -1.402643, -0.441083, 0.427644, 0.843171, -0.155438, 1.456292, -0.599841, -1.167560, -0.711564, -0.787738, -0.400101, 0.216151, -0.824283, 0.253830, 0.129838, -0.108665, -0.631168, -2.004545, 0.634663, 1.817165, -3.154556, -0.215724, -1.247239, 1.565945, 1.753121, -0.475211, 0.492487, -0.970476, -0.456154, -2.566685, 0.716637, 0.208429, -1.420813, -0.200903, 0.359249, 0.800354, -0.850517, -0.974716, -0.873156, -1.217397, -0.974080, 1.185673, -1.302780, 0.752932, 0.477511, -0.113374, 1.193936, 1.386391, 0.487053, 0.626455, 0.979204, 0.144087, 0.618837, -0.915846, 0.847579, -1.071476, -0.905240, -0.304847, -1.094229, -2.244907, -0.129893, -0.091618, 0.297645, 0.002954, -1.152765, -1.377643, -0.338424, 1.743286, -0.106450, 1.882329, 0.700705, 0.001774, -1.195052, -1.455451, -0.210710, -0.209847, -0.003937, 0.261315, -0.136313, 0.068152, -0.785696, -1.498705, -1.047939, 0.683687, 2.236852, -2.868035, -1.528828, 0.470485, -1.144369, 0.986557, -2.336719, -0.418403, 0.392418, 1.401742, -1.619507, -1.006960, -1.755103, -2.021513, 1.191523, 0.181305, 1.056016, -0.124409, -0.225067, -0.468114, 1.241338, 0.833449, -0.068948, -0.500600, -0.539498, 0.647499, -0.468473, 2.021611, -1.259210, 1.018135, -1.301108, 0.376175, 0.207747, -0.143717, -1.417392, 0.462506, -1.181129, 0.677035, -1.218897, -1.268872, -1.075806, -1.968396, 0.954570, 1.518407, 0.129180, -0.323935, 0.268383, 1.052229, 0.958581, 0.585700, 0.604379, 1.113128, 0.906509, 1.169143, 1.514989, 1.915938, -1.163027, -0.143198, -1.269730, 0.217194, -0.340224, -1.606367, 0.791992, 0.698760, -0.800437, 0.755093, 1.161269, -0.634486, 1.836917, 0.205004, 2.266139, 0.214470, 0.117777, 0.076466, 0.487443, 0.335646, -0.215083, 0.971279, -0.755210, 0.042678, 0.192247, 0.517439, -2.080281, -0.070046, 3.014903, -0.385104, -0.100109, 0.157686, -1.175000, -0.630059, 0.217591, 0.497044, 0.566156, -0.877102, 0.733514, -0.019660, 0.116846, 1.302198, -0.046347, -0.551955, 0.050225, -0.430873, -0.561943, -0.032391, 0.146036, -0.073279, 0.152867, -0.522217, 0.169728, 0.179095, 1.724164, -0.848381, 1.315573, -0.740631, -0.015174, -0.693068, -1.393070, -0.666124, 1.004668, -0.124415, -0.271737, 0.349935, -0.470412, -0.192005, -0.585248, -1.011934, 0.760964, 1.073940, 0.743015, -0.207310, 1.023408, -0.167480, 1.566051, 0.261208, 0.339419, 0.455521, 1.959921, 1.161396, -2.276122, 0.560243, -0.942577, -0.147583, -0.656534, 0.975898, -0.996467, 0.178349, -1.994014, 0.344181, 1.237171, 2.853831, 1.457706, -1.552338, -0.393172, 0.027771, 0.717165, 0.160037, -0.771897, 0.981289, -1.403879, -1.368525, -0.259766, -0.271188, -0.745841, -0.533897, -0.097575, 0.743683, 0.208026, -0.145799, -0.389443, 0.495146, 0.434669, -0.559898, 0.466921, -0.498495, 1.182764, -0.832134, 0.581413, -0.667433, 2.322467, -0.834069, 0.175124, -0.099992, 1.008935, -0.038363, 0.772624, 0.543907, -0.215115, 0.499525, -0.016072, 1.968121, -0.301446, 0.516615, 0.234111, 1.035307, -0.150692, -0.358657, -0.455789, -0.233801, -1.321209, 0.046611, -0.729213, 1.932957, -0.641451, -0.448544, 1.431167, 1.158927, -1.011171, 1.283346, -0.534970, 1.281953, -1.680819, -0.132364, -1.103789, -0.209977, -0.667237, -0.149222, -0.932948, 0.461611, -0.587159, -2.317579, 0.951777, 0.747088, -0.496006, -0.374035, -0.788433, 0.033388, 1.568819, -0.747561, 1.061348, -0.212648, 1.422512, 0.233423, 0.938357, -0.748446, 2.002812, 2.013757, 0.272567, -0.420266, 0.100979, 0.256087, 0.056224, -0.831795, 0.433841, 0.783670, 0.641306, -1.174226, 0.799980, -0.387608, 0.293853, -0.552242, -0.576566, -0.293922, -1.708010, -1.276985, -1.174848, -0.439052, -0.079684, 1.213085, -0.989846, 0.324038, -0.494202, 0.346739, 0.354266, -2.244685, -0.294579, -0.124311, 0.607728, 1.391258, -0.777902, 0.160388, -1.107819, -2.146373, 1.867712, -0.598419, -1.094269, 0.063570, -1.510888, 0.267768, -1.562781, 1.121093, -1.029435, -0.697393, -1.658601, 0.289499, 0.559251, 1.431551, 1.010358, 1.131345, -2.243953, 0.703263, -1.149005, -1.208348, -0.442921, 0.498112, -0.173916, -0.996931, 0.771683, -1.814528, -0.865800, 1.635986, 0.071434, 0.098347, -0.967076, 0.091300, -0.549585, 0.711056, 0.201949, -0.968158, -0.881849, 0.625632, -0.816407, -0.505341, -1.179712, -1.198211, 0.656119, -0.443758, 1.530951, -0.793081, -1.655444, 0.535918, 0.695796, 1.327776, 0.896813, 0.638356, -1.348884, -0.605608, -0.030374, 1.536290, -0.461844, 1.598852, 0.740421, 0.184102, 0.004534, -0.420276, -3.775936, 0.615149, -0.180679, -0.104208, 2.069957, 0.036684, -1.640943, -0.224451, 0.347034, 1.190766, -0.217378, 1.266515, 2.732118, -0.035116, -0.280604, 0.446426, -1.196549, 2.021227, -0.599959, -1.934169, -0.252879, 0.935582, 0.614091, 0.918940, 0.575268, -0.062814, 1.971872, -0.194930, 1.454373, -0.177024, 0.718098, 0.162333, 0.107799, 0.406323, 0.692544, -0.214666, 0.382505, -0.303283, -0.000004, -1.678700, -1.042923, 0.757273, -0.788994, 0.502537, -0.928597, 0.036140, 0.125434, 1.700459, -0.404908, -0.799559, -2.132322, -0.739251, -1.142471, 0.307323, -0.582195, 0.978744, -0.272702, -0.168873, -0.441313, -1.278041, -0.967008, -0.303607, 0.803348, 0.998592, -0.026216, 0.090860, -0.399516, 0.400405, 0.685109, -0.148773, 1.425048, 0.367699, -0.443374, -0.001402, -0.101446, -0.883891, -1.280140, -1.516819, 0.222853, -1.700484, 1.219625, -1.104200, -0.601984, 0.245309, -0.200794, -1.184545, 0.576360, -0.259759, -0.595587, -1.260062, 0.639379, 0.255320, 0.244079, 0.210897, -1.710904, 0.254088, -0.201201, 1.102207, 1.058988, -0.860352, -0.813508, 1.138582, -0.438929, -0.252130, 0.591775, -1.134048, 0.338100, -1.725649, 0.817531, -1.557500, 1.320288, -0.202630, -2.744391, -1.854540, 0.947890, -0.101627, 0.111267, 0.783809, 0.598773, 0.063634, 0.119405, 1.049782, 0.457089, 0.967330, 0.840304, -0.331636, 0.021403, -1.807151, 0.932683, 0.495923, 0.972064, 0.782607, 0.182051, 1.817574, -0.446915, -0.814193, 0.540782, -1.149318, 0.379813, 1.737623, -0.206147, -0.437966, 0.739693, 0.072204, 0.736797, -0.736724, -2.309374, -0.619207, 0.076818, -0.234613, 1.336893, -0.359210, -0.374327, -0.100724, -0.022705, 0.899557, 1.157371, -0.239246, 0.491779, 0.274765, 0.047113, -0.180513, -1.173371, 0.720154, 0.030805, 1.044155, -2.437276, 0.564685, 0.387637, 0.139276, 0.571655, -2.644007, 0.655646, 0.214159, -0.859752, -0.171598, -1.088565, 1.207238, 1.744248, -0.818447, -0.740909, 1.082618, -0.497130, 0.540493, 1.398981, 0.979698, 1.927763, -1.685656, -0.867991, 1.422571, 1.422396, -0.864200, -0.882726, -0.814746, 0.088473, 0.309067, -0.390118, 0.834455, 0.481358, 1.016767, 0.131616, -0.440436, 0.841581, -0.282526, -0.009268, 0.915465, -1.676770, -0.627810, -1.986961, -0.005086, -0.703968, -0.999500, -0.053510, 1.351457, -1.026525, -0.267850, -1.671978, -2.514673, 0.060628, 0.475831, 0.696310, -0.737327, -1.091706, 0.593200, -0.989760, 0.835159, -0.016573, 1.702667, 1.240535, -0.211041, 0.762622, -0.239163, 0.778149, 0.699726, 1.460417, 0.974107, -2.002186, 0.642081, -0.733757, -0.437317, -0.391378, 0.706077, -2.504125, -0.483491, -0.045388, 0.219927, 1.337155, 0.355076, 1.145113, 1.582176, 0.097630, -0.772145, 0.997015, 0.848897, -0.657182, 0.588524, 1.006684, 0.006797, -0.161742, -2.117253, 0.595568, 0.972976, -0.802742, 0.353470, 0.014403, -0.710539, -1.090961, 0.088054, -0.722678, 1.855594, -0.624042, 0.207865, 0.517991, 0.308141, -0.776324, -1.323474, 0.373148, 0.629893, -0.440437, 0.493736, -0.615343, 0.067697, 0.957327, -1.377166, -0.637131, -1.375413, 0.794745, 0.130934, -0.677133, 1.195006, -0.120089, 0.584505, -0.377536, -2.066050, 0.073052, 1.264842, -0.761266, 0.740730, -2.106899, -0.490092, 0.734132, 0.469079, 0.885761, -0.590054, -0.222871, -0.329867, 0.281156, -0.315888, 0.504387, -0.276015, -1.496044, -0.812262, -1.261299, 0.231281, -0.520836, -0.293410, -1.481559, -0.234330, 0.644913, 1.089500, 0.692390, -0.695060, 0.543120, -0.493768, 1.427880, 0.350250, -0.426626, -0.976689, -1.094803, 0.294674, -1.960852, 0.644651, -0.319988, -0.247933, -1.315308, 0.110447, 0.199359, 1.454688, 0.808697, 1.876743, 0.215491, -1.692950, -2.158695, -2.446392, 1.467720, -1.713316, -1.254796, 0.433777, 0.769078, 0.182882, -0.582465, -1.015637, -1.676156, 1.912483, -1.062583, 0.134960, -1.205183, 0.221049, -0.027670, -2.838072, -1.167933, 0.526512, 0.029290, 0.370569, 0.610331, 0.220973, -0.918698, -0.994198, -0.463759, -0.485319, 0.641089, 1.438944, -1.457755, 1.642534, -0.563240, -1.731279, -0.379839, -0.422516, 1.442983, 0.332743, 0.910398, -1.518553, -0.080022, -0.036954, 1.782836, -0.371990, -0.906857, -1.200207, -0.153080, 0.300412, -2.253697, -0.477115, 0.876884, -0.430015, 1.704056, -0.367081, -0.202096, 0.965252, -0.207618, 0.543992, 0.626124, 1.386042, -0.448936, -0.121288, 0.624913, -0.269462, 0.147147, -0.411019, -0.001077, -0.698755, -1.403367, -0.370426, -1.196122, 0.963834, -0.609958, 0.967324, 0.579803, 1.047097, -1.083893, -1.039541, 0.203753, -1.530811, -0.798662, 1.377033, 1.571949, -0.202068, -0.458525, 0.230252, 0.620853, -0.393020, 0.555077, 0.919033, -0.145801, -1.195776, -0.647152, -0.137312, 1.150590, -0.552855, -1.112145, -0.054473, -0.649617, -0.930187, -0.564733, 0.319892, 0.310940, -1.449609, 0.493095, 1.107935, -0.594554, -0.638914, -0.745973, 0.071228, -0.229151, 0.538838, -1.513546, -1.664930, -0.151964, 0.992643, 1.258767, -0.212244, 0.172939, -1.220083, 0.474661, -0.662429, 1.953721, 2.028428, -0.840603, -0.706121, 0.424239, 1.373669, -0.115287, 1.243967, 0.230934, 0.108965, 0.500382, -0.493032, -1.768642, -1.831999, 0.680699, -0.433222, -0.343478, -0.063561, -0.407894, -0.337301, 1.505116, -0.503338, 0.854579, 0.853577, 0.100918, -0.244675, -0.687647, -0.430688, -0.377183, 0.231285, -1.175950, -0.247943, 0.339170, -1.600798, -0.176845, -1.479477, 0.236874, 0.626177, 1.505770, -0.770012, -2.114407, 0.623652, -1.314032, -0.330420, -0.333859, -1.156241, -0.020154, -0.629661, 0.505709, 0.160653, -0.594685, 0.684685, 0.147119, -1.186042, -0.737334, -0.663655, -0.380978, 0.246711, 1.429014, -0.813295, -0.469303, 1.530426, 0.083783, 2.283578, -0.440811, 0.153641, -1.994563, -0.113092, 0.673811, 0.278523, -0.064428, 0.311196, -1.172663, 0.170517, -0.265356, -0.240079, -1.893958, -1.555528, -1.473602, 1.390364, 0.206262, -0.376287, -0.204225, -0.808917, 0.434866, 0.128708, -0.834139, -0.522531, -1.495054, -0.472214, -2.046021, -0.097179, 0.611934, 0.149320, -0.155795, -0.699014, 1.812708, -0.380693, -1.531832, -1.501103, -0.505107, -0.440358, -0.330089, 0.662129, 0.386070, 0.719918, 1.618352, 2.271817, -0.585044, -0.557983, 0.256632, 0.371570, 1.115593, 0.240944, -0.482222, 0.424249, 1.866534, 0.112457, -1.912134, -1.408136, -0.270786, 0.213478, 0.275910, 0.193539, -0.821919, -0.218701, -0.561665, -0.731643, 1.275021, -1.195094, -1.146271, -1.297975, -1.064659, -1.216077, 0.019750, 0.862540, 1.160000, 1.061147, -0.359017, -1.159709, -1.725240, -0.081177, 1.791176, -0.544092, -1.302456, 0.578454, -0.471508, 0.957030, 1.769753, -0.447506, 0.983422, -0.797989, 0.313344, 0.269792, -0.291720, 0.351048, 0.291720, 0.831762, -0.472174, 1.990913, -0.448281, 0.571469, -1.657209, 2.219289, 0.391895, -1.326217, -0.799724, 1.062865, 0.077003, -0.394465, -2.014228, 0.960624, -0.052382, 0.427999, 0.829132, 1.824228, -0.942617, 0.130003, -0.021216, -1.132668, -0.764480, -0.168317, 0.542009, -0.743538, 1.270127, -0.756051, 1.733923, -0.560529, 0.738706, -0.734347, 1.191859, -0.544475, -0.531002, -0.435642, 0.463298, -0.577453, -0.884873, 0.991549, -0.014787, 1.707005, -0.177656, 1.320256, 0.852346, 0.029179, 0.388952, 0.001214, 0.778902, 0.591060, -0.811046, 0.045138, -0.085700, -0.035947, 1.447445, -0.711864, 1.546175, 0.660268, 0.178785, -1.225910, -0.202902, -1.309570, -0.941544, -1.051241, -0.568102, 0.390526, -0.318775, -0.480995, -0.151700, -0.665801, 1.651919, -1.297311, -1.497219, 0.246051, 0.027980, -0.381259, -0.096496, 0.336593, 0.377474, -0.929134, -0.443390, 0.520992, 0.495616, -0.922747, 1.520333, 0.578975, -0.866779, -1.085083, -0.876301, 1.993435, -0.230642, 0.252497, -0.905853, 0.688914, 0.543399, 0.180796, 0.824395, 0.073473, 0.476318, -0.613852, -0.439388, 1.355090, 0.166045, 0.536982, 0.469985, -0.048755, -0.294727, 0.609849, -0.046467, -0.321711, 0.730090, 0.425333, -0.852045, 1.214055, -0.544183, 1.838341, -1.352140, -0.654177, 0.587597, 0.742248, 2.345422, 1.473246, 0.832384, -0.342482, -0.435296, 1.224726, -1.111674, 1.485851, 0.240692, 1.761109, -0.014812, 0.716981, 1.222787, 0.880383, 0.909171, 0.665432, 0.575952, 0.336958, 1.881233, -0.222176, 1.354084, 0.351983, 1.207625, 0.747890, 0.628315, -0.330402, 1.284507, -0.470285, 0.697321, 0.183700, -0.626254, 1.289507, 0.517543, -1.608273, 1.594269, 1.221232, -0.618983, 0.415829, -2.141238, 0.825824, 0.286059, -1.213876, -0.680148, -0.071152, 1.058983, -0.845437, -0.121986, 0.734735, 0.309429, 0.791152, 0.060309, -1.022482, -0.065292, -0.890690, -0.816982, -0.224750, -0.312293, -2.463507, 0.918836, -0.002766, -0.853330, 0.691479, 2.548060, 1.662875, 1.281481, 1.192384, -1.668728, 1.197271, -2.561043, -0.818045, 1.593016, 0.562422, -0.526390, 1.762856, -0.942641, -1.142883, -1.439171, 1.409799, -0.787457, 0.084346, 0.671073, -1.305605, 0.041719, 0.027947, -1.282344, -0.614877, 0.557972, -0.484545, 0.307055, -1.387719, 0.750837, -0.232357, -0.060302, 2.352957, -0.680309, 1.747138, 1.735462, -0.260374, -1.199807, -0.931617, -1.260124, 0.191057, 0.227775, 0.717956, 0.051507, -0.663618, -1.699819, 0.772083, 0.116074, 0.269528, 1.058718, 0.271781, 0.700454, -0.683089, -0.889771, -1.166380, -0.979262, -0.595590, -0.685031, 0.086396, -0.309137, 0.294647, -1.132182, -1.224713, -0.426167, 0.239401, -0.074422, -1.176917, 0.761504, -0.592092, 1.220193, -0.704952, 0.900330, -1.187115, 1.015277, 1.260328, 0.630759, 0.337086, -1.637037, -1.250887, -0.046244, 0.351012, 1.162703, 1.150783, -0.249596, -1.953360, 0.629796, 0.160021, 0.345435, -0.358604, -0.342182, 1.213068, -0.033285, -1.251203, -0.159532, 1.890477, -2.201049, -0.439369, -1.866833, 0.449565, -0.204963, -0.027061, 0.825855, -1.003936, -0.373730, -0.545592, 1.312993, 0.985734, -0.339904, -1.341486, 2.050744, 0.490695, -0.673395, 0.974742, -1.396954, -0.406220, 1.028341, -0.380791, -1.627941, 0.564498, 0.053585, -1.529011, 0.943052, -0.991974, 0.294961, -0.499441, -0.449205, 1.251343, 0.550672, -1.977557, -0.462537, -0.510048, -0.222570, -0.072122, 0.401795, 0.477539, -0.223796, 1.078521, -0.104216, -0.216351, 2.980346, 0.212210, -0.347051, 1.103283, -0.973977, -0.091906, -1.194948, -1.324068, -0.686148, -2.092883, -0.299725, -0.651615, 0.440757, 0.640896, 0.073936, -1.164134, -1.603124, -0.499967, -1.081707, 0.023060, -0.579270, 0.627162, 1.104206, -0.394959, 1.254341, 1.229849, 1.464544, -0.787255, 2.088690, 0.268317, -0.176671, 0.935363, -0.097528, 0.905709, -2.091727, -0.764231, 0.147602, -1.692849, 0.329625, 0.210824, 0.413842, -0.703150, 0.290575, -0.373624, 1.072074, 1.590044, -0.011098, -0.295778, -1.916385, 0.425863, 1.115587, -0.884150, -1.975061, 1.115142, -0.121910, -0.801070, -1.524780, -0.181539, -1.952306, 0.074099, 0.355984, 1.172167, 0.285742, -0.967368, 1.547725, 0.241363, 0.376294, 0.777375, 2.150656, 1.269447, -0.966940, 0.895154, 1.553089, -1.353565, 0.317414, -1.658024, 0.131210, 0.447766, 1.149270, -0.726143, -1.047662, 0.598937, -2.622374, 0.361292, -0.627217, 0.462003, -0.820914, -1.385032, -0.543391, -0.651033, 0.473652, 1.060030, 1.089290, -0.232707, -0.581574, -1.889386, -0.316232, -1.681675, -0.564388, 0.461721, -0.948041, 1.690737, -1.464870, -0.468923, 1.565980, 0.162193, 0.902060, 0.231960, 0.196544, -1.367489, -1.598355, 1.200245, -0.114907, -0.810665, -2.748205, 0.318397, 0.146189, 0.026515, -1.849053, -0.196421, -0.822007, 0.008800, -1.256302, 0.494497, 1.354630, -0.030437, 0.099759, -0.660408, -1.435886, 1.366652, 0.378395, -0.433806, 0.268213, -1.567660, 1.133083, -0.796908, 0.044007, 0.624935, 0.781938, -2.384001, -0.883944, -0.412282, 0.532039, 0.431680, -1.594455, -0.663647, 1.058619, -0.013506, 0.009430, 0.493425, -1.710809, -0.631013, -1.466743, -1.493666, 1.689222, -0.834457, -0.746000, 0.692569, -1.036528, -1.485559, 1.384641, -1.000880, 1.443378, -1.472724, 0.724241, 1.087035, -0.594183, -1.117496, -0.872940, 0.350575, -1.242299, -1.025891, -0.595510, -0.654109, -1.289483, -0.437963, 0.959762, -1.425600, -0.189526, -0.096574, -0.735357, -0.098364, -0.282179, 0.277333, -1.698693, -1.026274, -1.859616, 1.280709, 1.107630, 0.366714, -0.206731, 1.060439, -1.482345, -1.548095, -0.012150, 0.722960, -1.158424, 0.105970, 1.394348, 3.046782, -0.354777, -0.729711, -1.281821, -0.105941, 0.831699, 1.519280, -1.314499, 0.489699, 0.174280, 0.486346, 0.708480, 0.446263, -0.879907, 0.911321, -0.448688, -0.735250, 0.558877, -0.834808, 0.054606, -0.604025, 1.790700, 0.701780, 1.081597, 1.397038, 0.196167, 0.673075, 0.599177, -1.484322, -1.121878, 0.184109, 1.195012, 2.013672, 0.667431, 0.599075, 1.077761, 1.813283, 1.066733, 0.367799, -0.124027, 1.555833, -0.015501, -1.347968, -0.278393, -0.312188, -0.240902, -0.716975, -0.042055, 0.338791, -1.734295, -0.461806, -0.002199, 0.276333, 0.752315, -0.399386, 0.929151, -1.092084, 0.725405, 0.300048, -0.391791, -1.096537, 0.215750, 1.798887, 0.157250, 0.594140, 0.415319, -0.456318, -1.695612, 0.271293, 0.696550, -1.405797, 0.661278, 0.019871, -0.944030, 1.600450, -0.261134, -1.449033, 0.121161, -0.148174, -1.185630, 0.916849, -0.451785, 0.443782, -0.643874, -2.142756, 1.031946, 0.094791, 1.055416, -0.489772, 0.522096, 0.590583, -0.493730, 1.073362, 0.438470, 1.114725, 0.911463, 0.188750, 0.194026, -2.349844, 0.503381, -0.455779, -1.107854, -1.654007, -0.056787, 0.375075, 0.810279, 0.257563, -1.032017, -0.791398, 0.306248, -1.668664, 1.106578, -0.308333, -0.061347, -0.716246, 0.043694, -2.664642, 0.165933, -0.569305, -1.130321, 0.014818, -1.193625, -2.558975, 1.209673, -1.308552, 0.497828, -0.577165, 1.240122, -0.671491, -1.524447, 0.078845, -1.035162, 0.430997, 0.211118, -0.947431, -1.608624, -2.499677, 0.509606, 0.220807, -0.033407, 0.348785, -1.264089, 0.207985, 0.235428, 0.270213, -0.166078, 0.949293, 0.590414, -0.947417, 1.403686, 0.687735, 1.939620, -0.373550, -0.179192, 0.627942, 0.398082, 1.663881, 0.085032, 0.474552, 1.067727, -0.043090, 0.484359, -1.140734, -1.722180, -1.047131, 0.734981, -1.776549, 0.456546, 0.833221, 1.332094, -0.292974, -0.631470, 0.986630, 0.807160, -0.421844, -0.906703, -1.524314, -0.884961, 0.773813, -0.056224, -2.804894, -0.212021, -2.186188, 0.185168, 0.605095, 2.035573, 1.004994, 1.392565, 1.361826, 0.156013, 0.161859, -1.024986, -0.447405, -0.171627, 0.315249, -0.787671, -0.181170, -0.026413, -0.498584, 0.418506, 0.376051, -0.949235, -1.569050, -1.180816, -1.049186, 0.304624, 0.661499, 0.640647, 1.174068, -0.012980, 1.875226, -1.358592, -0.432857, 0.815015, -0.508514, 1.790620, 1.813254, 1.688286, -1.095797, -1.140081, -1.303969, 1.548848, -1.437009, -0.255111, -0.482938, -0.274057, 1.955011, 0.237579, 0.033106, -1.135437, 0.007997, -0.552407, -0.564556, -0.908291, -0.203505, -0.223886, 2.313686, -1.296150, 0.173047, 1.174642, -0.027618, 0.966112, -1.232341, -0.030021, 0.319345, -0.867316, 1.628688, 0.282115, -0.081837, -0.291943, 2.406225, -0.869033, 0.271478, -0.473470, 0.568712, 0.052486, -1.014068, 0.913277, 0.946116, 1.870558, -0.885653, 2.609202, -0.638170, -1.580420, -1.359998, -0.550428, 0.871026, -0.454592, 1.568905, 0.183420, 0.218032, 0.449081, 0.529819, 0.691667, 0.914314, -0.570691, -0.942717, 1.469307, 1.753446, 0.501274, -1.359289, 1.476548, 1.473579, -0.012772, -1.892825, 0.063961, -0.592712, -1.123340, -1.499180, 1.755900, -0.305570, -0.500008, 0.640259, 0.106659, -0.321709, 0.247622, -0.324294, 0.364693, 0.575975, 0.668081, 0.081487, -0.592634, 1.165543, -0.651593, 0.242221, 1.342605, -0.830809, -0.137402, -0.382577, -1.027506, -0.422159, -1.761258, -0.422151, -2.860012, -0.664354, 1.145643, 1.152274, -0.086790, -0.557334, -0.350401, -2.715869, 1.145399, -0.046305, -1.113063, 0.141446, -0.948094, 1.251514, -0.464634, 1.991717, -1.759475, 0.187250, -0.588845, -0.096897, 1.031954, -0.010983, -1.210836, -0.292367, 0.993226, -0.279766, 1.601228, -0.660018, 1.345602, -2.074330, -0.752992, 1.144754, -0.742113, -0.140973, 0.047565, 2.047986, 1.179597, 1.788643, 0.017517, -0.697401, 1.799644, -1.091265, -0.935038, -0.844248, -0.452513, -0.119383, -1.365369, -1.015774, 0.171709, -1.167867, 0.194328, 1.810815, -0.129176, 2.725054, -0.788264, -0.927312, -0.946441, -0.496364, 1.243024, 1.024506, 0.562848, 0.589838, 0.479749, 0.136996, -0.944042, -0.152060, 1.930022, -0.282871, -0.695311, 0.274246, -0.246845, 0.131488, -1.029550, 0.300943, 0.799786, 0.331031, 1.223035, 0.081338, -0.740517, 0.780400, -0.379134, 1.337830, -0.588383, 2.364855, -1.163512, -0.863333, -2.046914, -1.883221, 1.046481, -0.564863, -0.810783, 0.125107, -0.150420, 1.220828, -0.665786, 1.130897, -1.150583, 1.194396, 0.498175, 0.162533, -0.707772, -0.702160, 0.311338, -1.324532, 0.374260, -1.323376, -0.609845, 2.035053, 1.389781, 0.723652, -2.279142, -0.288361, 0.085226, 1.874953, 1.320637, -0.338955, 1.193596, -0.678438, -0.483073, 0.026244, -2.338474, -0.483945, 0.488448, 0.877052, -0.018941, 0.492654, 0.877401, -0.456127, 1.199011, 2.074968, -0.708163, -1.064971, -2.244940, -1.703277, -0.534902, 2.719121, -0.219594, -0.844682, 0.638311, -1.729821, 1.031287, 1.974255, 0.754476, -0.688918, -2.087400, -0.222865, 1.385236, 2.023902, -1.696369, 1.629374, 0.094709, -1.575130, -0.704024, -0.323777, -1.253347, 0.028220, -0.327787, 2.239171, 0.159214, 0.255986, 1.568137, 1.164667, -0.448553, -0.161874, -0.165116, -0.863914, -0.087248, -0.752135, 0.458988, -0.048843, 0.293023, 0.689064, 0.977558, -1.068183, -1.451527, 0.782900, -0.350966, -0.798630, -0.280156, 0.032969, -1.797270, 0.438362, -0.863720, -1.039436, -0.002582, 0.112121, 1.750200, 0.060635, -0.510870, -1.130957, -1.864740, -1.185236, 0.269304, -1.526858, 0.481251, -0.230015, 1.721428, 1.425563, -0.666982, -0.708053, -0.164187, 0.364004, 1.019813, -0.275744, -0.043833, -0.351696, -0.815910, 2.299315, -0.184153, -0.711866, 0.412405, 0.387801, -1.463612, -1.326164, 0.122705, -1.740566, 1.350249, -2.999928, -1.079476, 1.005848, 0.142793, 0.039284, -0.477083, 1.415027, 1.371689, -0.385313, -0.116608, -0.657543, 0.854438, -0.455091, -0.904413, 0.293285, 0.276513, 0.740920, -0.544586, -0.318606, 1.527447, -0.744004, 2.307922, 0.080305, 0.899518, -1.009716, 0.051442, -0.141423, 1.049850, 1.425351, -1.321564, -0.182069, 0.604354, 1.126124, -1.533391, 1.227905, -0.126778}, + { 0.518952, 1.162368, -1.798795, -0.867513, -0.902761, -0.569932, 1.536706, 0.312945, -0.816614, 0.205572, 0.557286, 1.119651, 0.312007, -1.449260, 1.340671, -1.158833, -0.514870, 0.213704, 0.684035, -0.227593, 0.547329, -0.761784, 0.832984, 0.210424, -1.092072, -0.171058, 0.150676, -1.223885, -0.657113, -0.060362, 0.254263, 0.091524, 0.520225, 0.614053, 1.012045, -0.227732, -1.318443, -0.302499, 0.960666, 1.510928, 0.440599, -0.084649, -0.958252, -0.120589, -0.164827, -0.057199, -0.413750, -0.634553, 0.237990, 0.877374, 0.298192, 1.856975, 0.764293, 0.874037, 0.595867, 0.619713, 0.562479, -0.210082, -1.543225, 0.892888, -1.696982, -0.457714, -0.363990, -0.326662, -0.877575, -1.438922, 1.143075, -0.949175, -0.304912, 1.096116, 1.484030, -0.459466, -2.622959, -1.018936, -0.187362, 0.120116, 1.243857, -1.462913, 2.256280, 0.555826, -0.417415, -1.905057, -0.476038, -0.113666, 0.424785, -0.090718, 0.788324, 0.332542, -0.300448, -0.147215, 0.855126, -0.278038, -0.923044, 0.851853, -2.458197, -1.167353, -0.766429, 0.710552, -0.059008, 0.416561, -0.505565, -1.711315, 0.501801, 1.093736, -0.675009, 0.418622, -0.478458, -2.445961, -0.574692, -0.510264, 1.222454, 1.416887, 1.881324, -1.224483, -0.192971, -1.474669, -0.087442, -0.066874, -0.246011, -1.135367, 0.344876, 1.153495, -0.458268, 0.234769, -1.622231, 0.963444, -1.598255, 0.061461, -0.605092, -0.986508, -0.343193, -0.545039, -1.456976, 1.274898, -1.221443, -0.180985, 0.055030, -0.120429, 0.689885, -1.329042, -0.556072, 1.558713, 0.751160, 1.339128, -0.236770, -0.373796, 1.831537, -0.259762, 0.434894, -0.532829, 0.246230, -1.464444, -0.108311, -0.456836, 0.195834, 0.277482, -1.266396, -0.849120, -2.061893, 0.808576, -0.555153, -0.147723, -0.474466, -0.239455, 1.341826, -0.106921, 2.065480, -0.441481, 0.664820, -1.277822, -0.299469, -1.420722, -2.099840, 0.343450, 2.540860, -0.926449, 0.197026, -0.726183, 1.050272, -0.737852, -0.166120, 0.664234, 1.013656, -1.165498, 1.007423, -0.172138, -2.029020, 1.141557, 0.353489, 0.081430, 0.830974, 0.418607, -0.351879, 0.602844, -0.721621, 1.802644, 0.996313, 0.761951, 0.926985, 0.095698, 0.359223, -0.636097, -1.235096, 2.180223, 0.394994, -0.495499, 0.021269, 1.310753, 0.005859, -0.104357, 1.083434, 1.059119, -0.743192, 1.719489, -0.101391, -1.267381, -0.189335, 0.718785, 0.931292, 1.437718, -0.372649, -0.907225, 1.282693, 0.876738, -0.484487, -0.464993, 0.141420, -1.199631, -0.378282, -0.437029, 0.438706, -1.180428, 0.783763, 1.490899, -0.392060, 1.161181, -0.311748, -0.440851, -0.665584, -1.500246, -0.492544, -0.379814, 0.880973, 0.157939, 0.679526, 0.511198, -2.105838, 0.889459, -1.276460, 0.658910, 0.844979, -1.096772, 0.005347, 0.604721, -0.840049, -1.615631, -0.828526, 0.975748, -0.212494, -0.554400, 0.478605, -0.031569, 0.346321, 0.945974, -0.363957, 0.598352, 1.038371, 0.328402, -0.025847, -0.878673, 0.478343, 0.486232, -0.483129, 0.506757, 1.444913, 1.168826, 0.568879, -1.174100, 1.370144, 0.473695, 0.390632, 1.383955, 0.448953, -1.017132, 0.900898, -0.144165, 1.053975, 0.869238, 0.049348, -0.285958, 0.418414, 0.148709, -2.446635, 2.775388, 2.740348, 0.437757, 1.014558, -0.815353, -2.009257, 0.100290, 0.289360, 1.888040, -0.352834, 0.865372, 0.437201, -0.589921, -1.570448, -0.215553, -0.958858, -0.706953, 0.234845, 0.497245, -1.274970, 2.069393, -0.871129, 1.539526, 0.884739, -0.035742, 0.675370, 0.450473, -0.631187, 1.459335, -0.085644, -1.735184, 0.214348, -0.827850, 0.375847, 1.232152, -0.271332, 0.612415, 0.789417, 0.403406, 0.857535, 0.158922, -0.101365, -1.006675, -0.631185, -0.545891, 1.155990, 1.145976, -0.241313, -2.518106, 0.696856, -0.538133, 1.962220, -0.762076, 0.104323, -0.097219, 0.371687, 0.219108, 2.737759, 1.210492, -0.316519, -0.265216, 1.067261, -0.287555, -1.928526, -1.241996, 0.530617, 0.361525, -0.132287, -0.302163, 0.951118, -0.308180, -0.533939, -0.085950, -0.685746, -0.398097, 0.974740, -0.106426, -0.464663, 0.511503, 1.210732, 1.329182, -0.796742, 0.764483, 0.132045, 0.690627, 0.804084, 1.056020, 1.336397, -0.120761, -0.715317, 0.086613, -0.825823, -0.120825, 0.975659, -1.217578, 0.688687, 2.081750, -0.225608, -0.148970, 1.357386, 0.529068, 0.614945, -0.491391, -0.916978, 0.980924, -1.400070, 0.864572, -1.112517, -0.398690, 0.284615, -1.496243, 0.746950, 1.531219, 1.471135, -0.805669, 1.094857, -0.707119, -0.332737, 0.613130, -0.181662, 0.706068, -0.314673, -1.696566, -0.857361, -0.885075, -0.670904, 1.288304, 1.556940, -0.336662, 0.658193, 0.685668, 0.684748, -0.610792, -0.832581, 0.396398, -1.636395, -1.008490, -1.153076, -0.580281, 0.982674, 0.248579, -0.473313, -0.537659, -0.469753, -0.669530, 1.390815, 0.725664, -0.327422, -0.746781, -0.180561, 0.566930, 0.971566, -0.848449, 0.186446, 1.574179, -0.166437, -0.677378, 0.518695, 0.058036, -0.594170, -0.126222, -1.123885, 0.258315, -0.161235, -0.962333, -0.781905, 0.189181, -0.038720, 0.451620, 0.483519, -0.298262, 0.075225, -2.605987, 1.057136, 2.736648, -1.141955, -0.257243, -0.173656, -0.933108, 0.759807, -0.596802, -1.919008, -0.552297, -0.985422, -1.124851, -0.225415, -0.141748, -0.027191, -0.846502, 0.331134, -0.318134, 0.072660, 1.562407, 1.505415, 0.321347, -0.432737, -1.128980, 0.529206, -0.957205, -0.547667, -0.444013, 0.008419, 1.270872, 1.264295, -0.623383, 1.515287, 0.530056, 0.042548, -0.848762, 0.186584, -0.916992, -0.718603, -0.848081, -0.074939, 0.621200, 0.161188, 0.260020, -2.182160, -0.623284, 0.045384, 0.100553, 1.081088, -1.354447, -0.689581, -0.559884, -1.357593, -0.724405, 0.119281, -0.689707, 0.798264, -1.369510, 0.292522, -1.468991, -0.049375, 0.233208, -0.388089, -0.581397, 2.366405, -0.534019, -0.620034, -1.769758, 0.148224, -0.847789, -0.093799, -0.218760, 0.031402, -0.002293, -0.862510, -1.420485, -2.427190, 1.692356, 1.410544, -0.507337, 0.444993, -1.362756, 0.371117, 0.953700, 0.817113, -0.495754, -1.039855, -0.743338, -0.938439, 0.764197, -0.111459, -1.091744, 0.143336, -1.302288, 1.620537, -2.143726, 0.985670, -1.346112, -2.598702, 1.063853, 0.584100, -2.284946, 0.655365, -0.617718, 2.051483, -2.214747, -1.657807, -1.936486, -1.612624, -0.991852, 0.161787, 0.284205, -0.463732, -0.254055, 0.154183, 0.371049, -0.183455, 0.825057, 0.745674, 0.419711, -1.132238, 0.607386, 0.102220, 0.321504, 0.038343, 0.053386, -0.762188, -0.259852, -0.487347, 0.760262, 0.631092, 0.724152, 0.132375, -0.828680, -0.076065, -0.908630, 0.021302, -1.200314, -1.190897, -0.710872, -2.418598, -0.078035, -3.683474, -0.704848, -0.431010, 0.248407, -1.495463, 0.342708, -0.262475, 0.806656, 0.188544, -0.959031, 0.674800, 1.520044, 0.193738, 0.069503, 0.639584, 0.453554, 0.830797, -1.056819, 0.537809, -0.014943, -1.737957, -0.628852, -1.712063, -0.871136, -1.728263, 0.360104, 1.834100, 1.003810, 0.083628, -0.779263, -0.428446, -1.430104, 1.330492, 1.003891, -1.258530, -0.696464, -0.226107, 1.041798, 0.696941, -0.535378, 0.849735, -0.477170, 0.087048, 1.424732, -1.008964, -0.132845, -1.348346, -0.291963, -0.024596, 0.128478, -0.389964, -0.415652, 1.068860, 0.214976, -0.790869, -0.567100, -1.682943, -2.070874, -0.221694, 0.047536, -1.352800, -1.357142, -0.371345, -0.834061, 0.394043, 0.222264, 1.974593, -0.191900, -0.394343, -0.058686, 0.122490, -0.399591, -1.600263, -0.741651, 2.010656, 1.803104, 1.233832, -0.086108, 0.492556, -1.691300, 0.522956, -0.013510, -0.722364, -0.772057, 0.187971, -1.026233, -0.474038, -0.483049, 0.572613, 0.757206, 0.212976, 0.202104, -0.498018, 0.402687, -2.021328, 0.570238, -1.341060, 0.464255, -0.640525, -2.269424, -1.054187, -1.048950, 0.124926, -0.316079, 0.072628, -0.269037, -1.325855, -0.640706, 0.626546, 0.090737, -0.203425, 0.613889, 0.346997, -2.027530, -0.603509, -0.806319, 0.615907, -0.331047, 1.438644, 0.778929, 0.016765, -0.559678, -0.520945, -0.252116, 1.309592, -0.546212, -0.624296, -0.556562, 1.426493, -0.383657, 0.790586, 0.247081, 1.097674, 0.061288, -1.297490, 0.562747, 0.150960, 0.821458, -0.855083, -0.488128, 2.214689, -1.440458, 0.146115, -0.369609, -0.482663, 0.997130, 0.063701, 1.775640, -0.536969, -0.512646, -0.211964, -0.867221, 0.302343, -2.250198, -0.422025, -0.385885, -0.062679, 1.040181, 0.580824, 0.468945, -1.299730, -0.502798, -0.313476, -0.368587, 0.666503, 0.336206, -1.104164, 0.871700, 0.913650, -1.407066, -0.070199, 0.033570, -0.589517, -0.081466, -0.732482, -1.047630, -0.324654, -0.905101, -0.479201, 0.361424, 0.452732, 0.662269, -0.454592, 0.478825, -0.237625, -0.313496, 0.615410, 0.647592, 0.369851, 0.069368, -0.919034, -0.312422, 0.273838, -0.873364, 0.764300, 0.811097, 1.020809, -0.160100, 0.164794, -2.264615, -0.415117, -0.241901, 0.858080, 0.895220, -0.344896, -0.975067, 0.056592, -0.172722, -0.121518, 0.258461, -1.854684, 1.286877, -1.175031, -0.315312, -0.386829, -0.589122, -0.770916, 0.060637, -0.958496, 0.699418, -0.529905, 1.527215, -0.732539, -2.085891, -0.902212, -1.380370, 0.290474, -0.131146, 0.758255, 0.621133, 0.102081, -1.255512, -2.000521, -0.233043, 0.372346, -1.068109, 1.092686, 0.060838, 2.045782, 0.046476, -1.491586, 0.895329, -0.395219, -1.134530, 1.044644, -0.795002, -0.942108, 1.361653, -1.059661, 1.599510, -0.189018, 0.735837, -0.024612, -0.026003, -1.962455, -0.614026, 0.676071, 0.269449, -0.367097, 0.092693, 1.042485, 0.689645, 1.511057, -0.383347, 0.012248, 0.208068, 1.113002, -0.475783, 2.185819, 1.365130, -1.026220, 0.550242, 1.030770, -1.392420, -1.157244, -0.679251, 0.991499, 0.805023, -1.630679, 0.860425, -0.525114, 0.096144, 0.471262, -1.540963, -2.159987, -0.115165, -0.830024, -1.702788, -0.509286, 0.278388, -0.556004, -0.588994, -1.034958, 0.502577, 0.550701, 0.303669, 0.277961, 0.635776, -1.315611, 0.457480, 0.472503, -2.357314, 1.579524, 0.404300, 0.490000, -1.658127, -0.596829, 1.187693, -0.506440, -0.307896, -0.822654, 0.688367, 0.949938, 0.077461, 1.409064, -0.209761, -1.562512, 0.624578, 0.708672, 0.678920, 0.398042, -0.572646, 0.041091, 0.952863, 0.402590, -0.430198, -0.746173, 0.535453, -0.247516, -0.786634, 1.601104, 0.354338, -1.085854, -1.620820, 0.521449, 0.553747, -0.590570, 1.447742, 1.380022, -0.682209, -1.510861, 0.515762, -1.471499, -0.944493, -0.103107, -2.276479, -0.596429, 0.282959, -1.816973, 1.091120, -0.156806, -2.721825, 1.657096, 1.099770, -1.357105, -1.775070, 0.044434, 1.667185, -0.455544, 0.771589, 0.440840, 0.028334, 0.455736, -0.456631, -0.547159, -0.859422, 0.858043, -0.723348, 0.986482, -1.284516, 0.169269, 0.365440, 0.314956, -0.616118, 1.294881, 0.588733, -0.677480, -2.082953, 0.570625, 2.075498, -0.585912, -1.080718, -0.357393, 0.428992, 0.868927, 0.326426, 2.012604, -0.332008, 1.389657, -0.409630, 0.388229, -1.535498, 1.618992, 0.213168, -0.043738, -1.846736, 0.217364, -0.367976, 0.327775, 1.840851, 0.305627, -1.110851, -1.853412, 1.952231, 1.140515, -0.605426, -1.251541, 0.060831, 2.050164, 0.021124, -1.082278, 0.827259, -0.476179, 0.767742, -0.699321, 0.293056, -1.175491, 0.382086, -2.160473, -0.889657, -1.271364, -1.256234, -0.251347, 0.329174, 0.125098, -2.608219, 0.221413, -1.944605, 1.225326, -0.583309, 2.196939, 0.844835, -2.086751, -0.979241, 0.752662, -0.739707, 0.895065, 1.514503, -0.710089, -0.292705, 1.188285, -0.087105, -0.818011, -0.827132, 0.512415, -0.022906, -0.002570, -0.344519, 0.096063, 0.602089, 0.081756, 0.603396, -1.927151, 1.238337, 0.349291, -0.013855, -0.609561, -0.628287, 1.083968, -0.704285, -0.619108, -0.459914, -0.532268, -0.750080, 0.612067, 0.206833, -0.637593, 0.706027, -1.663744, -0.467621, 1.113786, -0.273945, -1.189034, 0.136016, -1.201018, -0.761498, -0.316103, 2.708184, 0.278652, -0.527790, -0.396567, -1.543137, 3.163427, -0.388896, 0.356863, -0.159301, -1.031765, 1.149837, 0.390515, -0.028265, -1.912386, -0.928422, 0.312223, -0.838605, -1.298115, -1.718151, -1.908418, 0.226162, -0.121172, -0.826636, 0.732337, -0.531318, -0.944800, -0.479531, 1.122353, -0.719119, -0.612396, 0.012359, -1.525452, -0.614813, -1.311322, -0.070871, -0.816705, 2.685458, 0.001582, -0.604644, 0.187463, 0.760386, 0.503678, 0.794716, -1.067101, -0.495400, 1.289925, -0.140525, -0.197324, -0.114958, -2.012670, 0.541029, 1.358051, 0.219042, -0.988146, 0.756291, 1.003738, 1.282235, 1.501885, -0.991952, 0.379449, 0.307527, 1.091114, -1.361564, -1.000829, 0.017385, 0.605945, 0.844209, -0.092681, -0.850127, -0.099953, 0.320252, -0.465215, -0.002209, -0.687512, 2.112251, 1.318050, -0.479493, 0.696357, 0.217582, -0.340527, -1.000958, -1.265839, 0.558741, 0.882556, -0.295940, 0.568476, 0.530993, -1.805148, -0.552234, 0.767347, 0.327156, -0.191294, -0.226830, -0.079601, -0.780924, 0.225280, 0.118416, 1.519796, 1.026296, -0.641959, 0.000142, -0.932292, -0.594701, 1.622214, 1.483304, 0.909285, -1.129821, 0.829855, 0.940379, -1.644021, 0.251087, -0.708955, -0.407415, 0.616344, 1.168703, -0.309097, 0.156080, 0.092674, 0.820861, 0.541886, 0.595370, 1.291819, -0.156426, -1.128493, 0.071421, -0.532708, -0.066494, 0.883334, -0.384743, 1.456125, -0.627964, 0.204217, 0.437908, -1.400623, 1.102863, -0.424437, 0.675941, 0.318191, -0.059816, -1.077087, -1.737317, 0.389834, -0.635459, 0.443593, -1.044719, 0.262805, -0.324160, -0.084522, 0.511022, 0.944931, 0.883683, 0.106966, 1.232118, -0.653086, 3.262121, -1.081103, -0.590483, -1.405750, -1.013561, -1.070954, 0.890803, -1.113468, -0.265972, 1.056530, -0.148175, 0.076543, -0.511244, 0.576806, 0.386467, 1.862593, -0.034095, 0.403712, -0.696307, 0.150786, 0.311340, -0.382572, -1.692675, 0.581177, -0.307369, 0.725119, 0.451817, 0.825874, 0.860246, 0.747739, -1.010625, -0.470218, -1.530791, -0.509255, -0.297618, -0.838961, -0.403924, 0.041118, 0.915592, 0.902701, 0.510400, -0.799036, 1.867074, 0.207543, 0.341075, -0.519093, -0.429405, 0.669502, 1.041966, -1.189790, 0.146299, 0.027307, 0.012874, 0.895704, 0.590505, -0.651764, 0.304170, 1.008589, 0.194182, -1.255801, 0.091931, 0.052084, -0.310534, -0.552719, -1.362927, 0.925602, 0.739201, 0.994897, 1.563367, 1.734074, 1.276001, 0.713283, 0.899281, 1.366017, -0.417471, 2.122678, 0.950992, -0.662464, -0.188340, 1.946704, -0.037671, 1.233832, -0.656505, -1.505004, -0.990054, -1.917223, -0.934473, 0.497554, 0.069328, -0.012559, 0.310414, -1.577618, -0.022443, 1.571595, 0.233673, 0.912763, -0.619912, -1.155788, 0.435731, -1.695808, -0.028006, -0.424350, 0.600104, -1.219809, 2.666564, -0.324222, 0.359463, -1.317982, -0.407880, -0.232296, -1.341150, -2.263968, -0.207092, -0.538979, 0.259010, 0.089926, -0.170382, -1.470842, 0.299185, -1.026294, -1.477967, 1.123312, -1.300318, 1.508895, -0.042535, 0.726155, -1.360518, -0.381313, -0.505148, -0.301697, -1.141210, -2.459215, 1.747482, 0.114497, -0.251210, 2.288306, -1.244228, 0.422036, -0.623950, 1.864082, -0.284539, 0.280851, 0.372920, 0.218083, 0.083845, 0.194441, 0.660830, 0.416158, 0.836507, -1.044078, 0.776163, 0.716429, 1.580140, 1.161993, -0.237797, -0.784269, 1.262705, 0.101487, 0.244230, -0.477396, -1.838775, -0.641780, -1.284349, 0.306096, 1.288453, 0.379320, -0.237461, -0.503582, 0.693911, 1.371519, -0.571594, 1.009777, 1.348591, -0.136135, -0.530386, -1.172935, -0.037384, 0.446388, 0.874063, -1.681080, 0.417288, 1.628493, 0.545712, -0.233395, -1.594938, -2.608989, 0.905311, 0.917012, 0.725684, -0.221010, -1.368422, -0.284964, -0.092248, 0.847750, -0.784778, 0.193128, 0.104976, -2.567677, 1.336846, 0.094713, 1.668579, 0.174510, -1.161633, 0.829109, -0.896916, -0.182133, -1.193986, -1.835753, -0.741845, -1.472638, 1.368393, 1.376880, 0.103887, 0.148442, -0.872854, 1.825611, 0.163360, -1.304511, 0.492921, 0.193159, 0.085426, 0.041636, -1.022136, 0.462208, -0.174245, 0.306695, 0.542238, -0.141138, 1.265690, 0.644435, 0.940558, -0.697743, 0.727834, -1.693527, -0.775631, -0.697654, 1.637154, 1.466176, 1.254640, -0.534375, -0.849055, 1.520509, -0.100205, 0.606042, 0.108752, -0.973267, -1.401161, 0.362469, 0.328166, 0.836652, -0.799157, 0.816189, 0.009377, 0.038227, 1.025946, -0.333950, 1.357301, -1.475854, 1.884862, -1.529693, -0.046506, -1.097077, 0.482390, 0.511521, -0.402447, -0.736946, -0.649650, 0.854700, 0.260066, -0.872124, -0.124475, -0.370634, 0.852074, -0.338662, 0.285646, 0.951869, 0.546810, -0.088545, -2.398326, 1.964575, 0.070797, 1.055780, -1.395551, 0.963233, -1.943933, 0.632127, -0.008302, -0.926632, 0.372030, 0.216198, -0.064001, 0.829510, 0.366817, 0.107899, 1.754424, -1.911364, -0.671474, 0.242215, 0.015881, 0.198430, 2.276494, -0.622192, 1.139027, 0.724854, 0.240646, 1.727737, 0.479893, -0.458955, 0.818671, -0.407440, -1.332006, -0.522749, 0.683843, 0.865182, 1.060917, 1.246718, -1.180373, 0.024785, 0.458826, -0.152750, -1.435341, -0.406233, -1.632127, 0.050783, 0.961793, 0.205733, 0.178652, 0.359012, -2.210203, -1.090889, -0.206213, 0.525051, -0.642402, -1.009747, -0.731000, 2.133404, 0.577944, 0.143935, 1.092903, 0.079860, 0.999881, 0.305992, 1.011663, -0.685637, -1.838057, -1.961542, -0.945681, 1.778203, -1.242251, 0.911029, -0.328908, -1.453260, 0.185465, -1.984962, 0.572278, -0.438872, 1.773412, -1.227815, 1.838639, 0.473720, -0.660469, 0.131033, 1.125070, 2.302504, 1.220280, 0.829194, 0.315571, 1.005047, -1.701230, -0.334146, -1.382715, -0.579333, -1.249460, -1.283667, 0.170328, -1.078099, -0.631240, 0.581630, 0.189366, -0.683955, -0.467063, 1.295333, 1.238439, -2.091977, -0.582829, -1.187739, 0.214517, 0.648700, -0.539494, 1.023397, 0.557759, 1.390506, -0.307207, 0.722090, -0.095336, -0.705310, -0.110571, 0.791726, 0.275511, -0.133408, 0.166322, -0.369782, 1.329481, 0.087848, 1.567259, 0.953815, 0.278991, -1.169648, -0.550008, -1.287847, -0.621685, 1.804199, -0.456086, -0.432633, 0.309033, -0.047299, -0.988274, 1.153675, -1.207113, -2.682838, -0.554930, -1.424872, -0.502789, 0.939467, -1.569790, 0.521084, 0.864545, 0.115977, 0.672535, 1.420286, -1.367226, -0.442172, 0.894281, 1.217324, 0.200071, -0.748267, -0.357666, 1.762212, -0.842240, -1.771058, -1.863491, -1.181371, 1.321481, 0.566443, 0.282781, -0.150728, 0.091864, -0.542690, 0.630068, -0.947100, -0.173693, 0.076285, 1.002006, 1.068730, 1.581338, -0.446998, 0.417752, -0.709574, 0.092237, -0.254638, -0.702786, -0.859778, 0.268829, 0.845579, -1.046428, -1.536363, -1.111797, -0.265642, 0.828722, -0.656474, -0.314237, 0.087344, 1.014441, 0.131323, -0.339852, -0.235602, -1.261236, 0.896386, 0.636983, 0.270472, -1.885064, 0.453885, -0.989966, -0.377427, 1.263525, 0.358287, -2.027820, -1.132779, -1.467208, 0.538016, -0.301217, -0.180661, 0.425882, 1.114713, -0.075108, 0.471195, -0.666022, -1.316625, 0.955623, 0.336905, 1.989939, 1.292242, -0.601795, -0.899520, 0.115490, 0.295473, 1.465032, 1.153879, 0.276988, 0.162410, 1.676851, 0.892173, -0.620816, -2.132476, 1.500932, -1.362565, -0.981353, -1.533095, -0.212400, -0.550098, 0.894498, -0.817807, -0.661387, -0.294791, 0.180499, 0.401215, 0.264175, 1.453660, 0.449453, 1.149770, -0.342007, 1.081221, 0.096260, -0.803339, -0.509018, 0.345856, 1.261539, -2.024364, 0.121838, -0.711374, -1.856611, -1.437185, 0.751811, -0.496188, -1.455343, 0.639586, 0.131187, -0.952266, 0.222782, -1.536016, -0.866994, 0.342890, -0.228003, -0.899364, -0.722392, -1.676511, -1.744903, 1.100625, -0.803313, -0.109783, -0.461940, 0.563165, -2.052041, 2.191800, 1.334626, 1.400876, 0.077165, 0.265503, 0.511384, -1.375639, 1.917323, -0.139275, 0.008700, 0.727013, -0.084696, 2.686974, 1.206829, -0.309442, -0.904576, -0.596687, -0.922034, 1.482792, 0.172146, -1.208373, 0.693574, 0.440209, -0.188568, -0.526351, -1.947133, 0.809232, 0.871808, 0.742186, 0.863523, -0.166117, 0.498611, 0.310070, 0.381786, 0.653206, 0.148217, 1.407459, 0.828865, -0.038492, 0.524069, 0.170670, 1.474259, -1.341317, 0.523663, -0.613773, -0.326880, 1.107351, 1.651786, 0.372519, -0.848598, 0.110590, 0.614286, 0.080857, -2.643306, 1.039904, 0.244449, -1.229751, -0.779638, -0.730420, 0.567981, -0.051342, 1.841997, 0.166192, -0.463366, 1.037097, 1.218273, -0.495237, 3.471958, -0.434035, 0.159170, -0.798223, -0.270720, 0.101905, 0.267933, -2.383186, -2.051801, 0.481722, 1.028375, 0.821777, -1.022724, 0.385434, -1.809577, 0.412940, 0.236784, 1.583866, 0.548083, 1.054801, -0.434492, -0.856149, -0.505715, 0.529612, 0.114081, -0.269778, -1.009344, -0.067175, 0.152955, -0.357731, 0.612200, -0.840961, -0.887639, 0.174031, 0.483493, 0.396484, 0.086299, -0.695073, 0.218451, -0.107985, -0.172631, -0.207584, -0.190226, 0.846662, 1.330043, -0.198286, 2.321617, -1.316172, -0.138666, -0.343945, -0.189743, -1.452243, 1.068505, -0.341754, 1.641856, -1.650921, 0.061540, 1.300521, -0.347681, -0.795947, -1.436225, 0.961920, -2.052740, -0.407981, 0.653718, 0.107094, -0.710195, 0.315439, -1.354563, 0.221473, -1.041992, -0.581942, 0.357597, -1.890987, -0.597311, -1.473145, -0.350471, 0.125741, -0.930310, 0.428432, -0.967160, 0.464659, 1.154750, 2.018633, 2.011441, 2.208607, 1.491580, 0.647132, -1.108447, -1.935150, 0.597562, -0.665319, 0.523110, -0.263608, -0.328440, -0.703669, 0.260574, -0.748177, 0.294249, -2.041269, -0.472729, 0.295487, 1.122591, 0.630252, -0.205729, 0.850908, 0.984669, -0.955185, -1.373212, 0.731857, -2.157793, -0.560694, 2.006505, -1.977460, -1.125782, -1.352002, -2.219777, 0.169104, -0.062947, 0.489620, -0.285271, 0.088439, -0.834065, -0.295777, -1.560086, -0.855220, -1.547707, -0.364884, -0.767302, -0.506299, 1.899558, 0.883932, 0.496599, -0.558840, 1.739138, 0.761513, 1.850784, -0.896777, 1.096983, -0.904290, -0.465244, -0.159774, -0.336955, -0.011538, 0.062038, -0.199574, -0.485475, -0.908482, 1.029275, -1.103089, -0.798156, 0.089670, 0.886983, -0.911536, -0.059560, 0.412633, 0.576537, 0.030309, -0.540630, 0.904968, -0.252710, -0.090221, 1.798550, 0.796586, -0.900159, -0.250838, 0.156425, -0.839535, -0.502826, 1.170884, -0.014695, -1.967475, -1.683184, -0.539904, 0.550075, 0.594210, -0.896028, 0.287708, -0.414704, -0.705853, 1.379258, 0.319299, 0.602653, -0.742451, -0.224238, -0.717872, -0.004869, 0.102973, 1.409957, 0.194060, -1.358461, -2.182374, 0.045148, -0.225932, 0.162138, -2.042701, -0.883814, 0.120561, 0.242942, 0.039683, 0.340223, 1.912625, 0.372164, 1.877519, 1.025872, 1.630232, -0.450314, 0.068567, -0.876204, 0.665986, 0.993564, 0.390087, -0.838901, 0.694339, -0.644647, 0.714814, -0.015316, 0.890952, 0.305818, -0.898378, 2.137281, 1.023523, -0.520367, 0.778039, -0.634855, 0.192832, -0.003267, 0.706890, -1.062430, 0.164660, 1.276853, -1.287037, -2.170786, -1.850595, -0.291163, 0.846534, -0.928191, 0.428992, -0.016366, 0.789128, 0.481860, -0.252126, 0.571117, -0.068113, 0.934546, -2.053656, 0.962705, -0.733596, -0.211707, 0.708605, 1.137077, -0.213415, -0.048278, -0.897323, 0.132363, 0.250790, -1.034235, -0.944833, -1.042946, 0.082916, -2.184453, 1.254691, -0.726751, -1.099074, 1.012545, -0.311446, 0.330406, -1.104354, -0.254759, -0.273032, -1.518917, 0.572091, -0.764316, 0.994647, -1.288203, -0.684582, -0.047248, 1.256078, -0.828180, -0.612146, 0.036231, -0.705757, 0.155163, -0.845285, 0.106533, -0.412265, -0.649195, -0.081940, 2.552835, 0.143465, -2.234997, 0.895388, -1.601734, -0.301419, -0.677383, -0.333972, -0.234320, -0.359395, 0.279860, -0.063294, -0.982167, -0.756966, 0.249855, 1.191994, 0.506383, -0.616915, 1.036933, 0.707492, -0.443129, -1.001321, -0.620715, 0.523193, -0.194107, 1.046323, 0.062379, 0.760646, -1.235984, -1.075935, 0.815765, -0.166026, -1.371565, -1.142255, -0.202379, 2.748995, -0.496493, 0.750801, -0.177589, 1.295741, -0.167755, 2.037037, -1.736472, 1.080029, -0.090248, 0.539161, 0.427516, 1.077522, -0.847862, 1.218735, -0.611232, -0.922657, 0.572403, 0.241477, -1.948874, 0.461678, -0.372864, -0.083613, 0.359012, 2.352640, -0.256567, 2.212046, -0.925159, 0.210973, 1.804450, -1.367644, 1.252709, -1.741381, -0.600619, -0.796770, 0.106782, -0.267904, 0.211987, 1.162221, 0.098177, -0.621041, 1.214945, 0.283478, 1.050023, 1.125071, 1.847991, -1.501189, 0.609863, -0.133596, -1.307853, -0.080477, 1.529858, 1.449526, 1.388146, 0.557645, -0.247557, 1.022511, -0.497592, 0.980051, 0.778850, 0.106274, 0.655727, 1.657862, 0.099711, -1.074785, -1.122895, 1.199919, 1.200530, 1.353485, -0.491281, -0.025766, -0.012630, 1.908428, -0.821923, 1.323908, -0.509372, 1.227415, 0.190175, -0.205099, 0.229240, -0.090017, -0.361161, -0.134529, -0.330206, -0.997945, 2.027675, 0.078727, 2.084929, 0.158772, 1.135177, 0.598905, 0.942675, 0.499652, 0.666354, -0.525028, 0.218316, 0.251423, 0.740516, -0.394733, 1.461362, -0.521344, -0.285225, -0.487171, -0.288211, 1.173032, 1.369794, 0.618428, -0.185894, 0.278014, 0.042217, 0.752353, 2.211035, -0.103015, 0.725785, 1.203434, -0.077624, -1.284144, -0.520757, 0.299489, 0.704413, -0.193236, 0.708951, 0.941824, 0.682024, -1.956502, -1.578109, -1.029724, -0.764531, -1.279284, -0.216441, -0.441401, -1.623199, 1.100711, -0.320896, -0.770509, 0.040447, -0.113209, -0.789273, -1.220250, 0.579968, 0.502719, 0.441211, -1.171070, 0.166721, -0.260787, -0.816884, 0.298453, -0.001717, 0.006347, -1.434281, -1.151443, -0.538964, 0.703069, -1.276095, -0.226504, 1.161283, -0.160461, 1.421675, 0.086339, -0.657041, 0.052721, -1.251649, -0.330848, 0.561357, 1.317487, -1.088093, -0.492804, -0.761072, 1.537370, 0.569898, -0.336856, 0.247130, 0.070704, 0.198241, 0.533858, -0.235200, 0.224226, 0.184714, -0.226624, -0.624459, -0.397169, 0.536889, -0.978012, 0.406226, -0.950866, 0.982145, -1.159240, 2.134123, -0.048258, 0.098952, -0.643004, 2.364311, 1.164967, -1.290345, 2.078451, 1.038493, 1.394947, 0.880166, -0.488240, 0.192816, 1.065888, 1.274860, 0.193909, 0.992683, -0.303303, 0.653357, 0.643782, 0.046668, -0.752921, 0.260487, 0.560703, 0.119655, 0.588153, -0.212747, 0.653602, -2.152914, 0.453750, -1.864725, 2.294234, -0.845907, -1.291614, 0.074353, 2.837563, 0.380204, -0.057426, 1.592455, -0.167945, -0.660325, -0.004754, -0.791922, 0.239650, -1.180316, -1.986195, 0.148530, 1.083698, 0.613561, 0.655198, 0.796734, 0.185870, -0.343466, -0.402375, -0.251838, -0.959962, -1.641983, 2.184370, -0.143437, -0.748410, -1.258922, -0.147396, -0.738061, 0.901103, -0.331166, 0.415719, -0.397677, 1.153018, -0.905016, -0.721247, 1.413530, 0.665706, 1.015069, 0.513309, -0.134084, -0.267412, -0.180506, 1.182320, 2.139919, -0.454421, 0.563573, -0.602368, 0.249855, 0.074500, 0.018131, -0.563705, 1.108275, 0.153206, -0.983481, -0.601730, 0.513319, 0.695154, -0.554087, 1.150277, -0.089833, 0.822232, 0.176264, -1.125321, 1.209480, 0.847334, 1.323874, 0.341635, 1.569383, 1.733697, 0.380122, 0.957688, -0.381205, -1.540731, -1.627863, -0.741243, 1.899079, 0.447823, 0.862537, 1.070684, -1.019463, 0.535094, -0.433291, -1.527964, -2.490137, -1.196899, -2.771122, -0.309580, 2.066570, -0.986769, 0.398518, 0.727244, -0.802204, -0.762315, 0.681813, -1.358620, 0.258776, -0.175540, -1.263262, -2.350428, -0.239511, -0.219165, 0.224887, 1.504703, 2.227986, -0.377314, -0.277389, 0.639054, -0.471823, -1.098436, -1.402378, 0.286569, -1.350989, 2.114943, -0.016056, 0.470505, 2.548211, -0.972326, 0.687218, 0.037541, -1.579730, -0.224703, -0.941998, 0.728366, -1.275005, -0.928181, 1.393137, 0.543861, 0.308266, 1.487565, -0.538747, -1.112442, -0.306873, -1.573034, -0.399388, -0.216450, 0.817581, 0.960064, 0.127150, 1.121973, -0.716063, -0.603108, -1.044167, 1.322581, 1.640935, 0.921974, 0.885678, 0.608481, 0.515719, -1.197033, 0.790054, 2.601736, 2.103345, 1.349263, -0.188492, -0.269467, 0.668106, -0.256431, 1.547818, 1.710081, 0.719044, -1.149104, 1.248265, -1.453923, 0.755737, 1.125287, 0.537853, 0.210833, -0.208683, 0.272207, -1.320309, 0.888944, 0.550442, -0.825832, 1.499688, -0.330660, -0.006114, -0.553461, -0.359127, -1.390297, -0.117823, 1.100237, 0.539304, -0.486441, 0.151164, 1.864749, -0.456337, 0.585182, 0.400216, -0.262981, -0.064163, -2.276772, 1.261878, -0.333131, 0.464024, -2.034419, 0.132153, 1.741572, -0.522564, 0.595167, -0.001308, 0.339612, 1.312011, 0.552106, -1.444501, 0.664527, 0.415314, -0.135093, 0.594034, -0.015630, 0.698685, 1.435948, -0.584437, 0.222601, -0.532518, 0.014706, 0.693972, 1.523247, 1.604509, -0.669600, -1.344628, -0.702854, 0.093269, -0.418897, 1.285488, -0.658696, 0.467842, 1.399174, -0.590423, -1.046240, -2.131277, 0.268735, -0.719683, 1.167856, -0.420475, -0.964951, -0.181970, -1.235589, 0.223609, 0.702442, 0.367478, 0.637659, -1.675441, 0.625153, 2.062821, 0.474142, -0.036353, 1.168110, -1.941924, 0.041332, -0.908709, -0.583841, -1.148765, -0.700061, -0.685297, 0.763409, -1.170789, -0.112705, -1.769163, 0.971036, 0.750660, -1.372363, 1.698413, 1.468194, 0.516216, 0.323268, -0.307209, -0.872732, 1.120413, -0.293474, -0.883126, 0.007951, 1.654868, 0.391436, -0.342052, -0.983810, -2.380533, 0.526905, -0.022313, 1.153121, -0.925789, -0.357406, -1.008313, 1.856564, 1.675069, 1.376277, 0.071128, -1.378064, 1.885558, 0.101680, -1.527211, -0.366372, -0.267805, -1.579058, -1.641743, 0.711803, -0.337448, 0.896301, -0.961551, 0.890737, 0.370830, -1.477164, -0.381848, 1.174151, -1.845576, 1.459091, 1.454430, 0.247112, -0.187003, 0.418321, 1.498374, -1.117305, -0.050863, 0.232668, -1.087557, 1.768355, 0.386241, 1.319378, 1.860259, 0.530682, 1.493442, -0.098021, -0.519290, -0.411268, -1.791562, 1.038537, -0.570997, -0.870024, -0.712551, 0.484305, -0.634572, -0.853535, 0.518944, -0.944500, 0.297152, -0.375778, 0.392175, 0.480982, -1.125845, -0.451420, 0.536001, -0.647737, -0.417425, -0.156947, -0.374478, 1.773248, 0.381423, -0.868918, -1.492623, -1.209877, 0.085095, -1.469154, 0.626068, -1.549076, 1.052350, 0.798036, 1.772227, -1.597737, -0.160080, -1.152472, -0.922728, -1.316148, 0.314007, -0.397553, 0.883643, -0.646078, -1.542944, 0.474991, -0.617348, -0.022353, 2.978019, 0.746427, -0.402593, -0.247545, 1.105902, -0.666992, 1.448683, -0.025765, 0.601741, -2.030849, 0.634759, 0.113907, -0.747089, 0.117888, -1.396427, 0.074574, 0.379026, -1.242945, 0.152092, 0.361389, 0.440520, 0.012036, -0.479870, -0.339469, -0.885203, -0.563204, 0.317398, -0.806333, -0.135484, -0.016595, 1.693942, -0.981829, -1.148891, 0.268062, 0.505769, 2.405080, -2.082251, 0.557540, -0.634769, -0.296872, -1.909830, -0.608833, -0.398865, 0.864738, 0.444709, 0.446205, -0.755511, 1.951951, -0.841204, 0.491084, -0.426162, 1.004235, 1.043145, -1.084082, 0.264011, -1.423082, 0.560195, 0.017562, 1.187044, 0.769326, -1.060783, -0.921773, -0.761935, 0.055675, -0.313040, -0.561275, -2.042048, -0.179407, -0.937317, 1.343623, 0.300427, -0.873347, -0.011759, -1.632112, 1.140004, -0.480376, 1.779628, -0.715719, 0.629754, 1.145237, -0.598855, 0.108275, 2.888785, 0.386953, 2.658719, -0.075725, -0.399285, -0.943272, 0.777759, 1.978837, 0.947555, 0.067847, -0.324736, 0.070579, -1.546697, 1.366879, 0.588620, -0.282222, 0.614630, -2.092358, 0.418881, 0.609235, -0.130344, -0.097523, 1.506913, 0.052745, -0.116083, 0.442235, 1.566776, -0.644695, 0.351335, 0.041172, -2.033339, -0.397176, 0.872564, -0.474513, -0.619575, -0.205593, -0.116091, 0.518412, -0.016317, -0.336698, 0.904775, 0.664887, 0.815399, 0.048513, -1.559874, 2.754288, -0.011793, 0.699092, 0.117808, -0.393934, 0.505875, 0.808070, 1.077410, 1.075085, 0.148283, 0.849917, -0.124775, -0.522051, -2.162865, 1.016408, 1.493935, -0.613167, 0.603836, 0.110119, 0.578371, -0.581796, -0.899316, 0.984474, 1.162693, 1.221260, 1.647246, 0.019186, 0.956358, -0.202960, 0.554222, -2.802947, 0.446151, 1.071511, 1.293783, -0.402543, -1.290444, -0.119898, -1.843290, 0.461694, -0.369207, -0.264993, 1.556780, 0.325489, 1.228060, -0.100826, -0.084220, 0.691702, 0.766215, 0.309942, 0.693400, -0.093269, -0.157484, -1.280848, -0.530763, 1.025654, -1.540281, 0.157013, 0.922545, -0.987998, -0.940692, 0.405397, 0.082137, 0.104761, -0.575118, 0.808999, -0.360241, 0.216758, -1.084956, 0.747453, 1.955764, -0.189345, -0.543032, 0.718822, -0.644044, -0.330934, 0.418401, 0.565199, 1.310041, -0.455300, -0.510609, 0.794185, -0.373836, -1.605508, 0.097853, -0.320185, 1.408608, -1.390388, -0.538724, 0.145802, -0.757467, 1.591647, -0.583450, 0.163481, 2.645931, -0.229253, -0.825497, -0.149721, -0.103169, 0.838666, -1.172979, 0.734279, 0.915594, -1.177460, 0.119027, 0.177183, -2.405823, -1.642143, -1.708708, -0.101306, -0.163743, -1.926949, -0.006567, -0.097752, -0.784427, 1.047451, -0.248151, -0.022732, 1.592340, -0.829903, 0.845261, -1.037282, -0.953367, 0.077327, -0.984658, -0.276593, 1.886285, -0.459682, 0.130256, 0.041410, 0.536269, -0.806383, -0.519020, -0.055321, -0.217679, 1.443330, -0.696327, -0.294574, 0.902893, -1.150215, 0.013616, 1.229312, 1.795201, 1.574993, -1.292545, 0.534143, 2.656923, 1.403724, -1.041025, -0.964517, -0.315716, 1.302320, -0.060552, -0.883634, -0.501514, -0.427643, -0.231822, 0.464595, 1.644022, 0.417917, -0.282918, 0.367621, -0.327728}, + { -0.406468, -0.365057, 0.597241, -0.963384, 0.468242, 0.162815, -1.798851, -0.282942, 1.926839, 0.187841, -0.990895, 0.416849, 0.877864, -0.648915, 1.583707, -0.530586, 1.289275, -0.300843, -0.043793, -0.386670, 1.014606, 0.097312, -0.626041, -0.542674, 1.921894, -0.139604, 0.568860, -0.260140, 0.419980, 1.131792, 0.143581, -1.445115, -0.859116, 0.021160, 0.020419, 1.353125, -0.453110, 0.539750, -0.691671, -0.700413, 0.014173, 0.027873, 0.572080, 0.206089, -0.448775, 0.600117, -1.200543, -0.963716, 0.176836, -0.323267, -0.446048, -1.351900, -1.006603, 0.606469, -0.004117, -0.464407, 0.869106, 1.114791, 1.600351, 0.653638, 1.676764, -0.148909, 0.395486, 0.283424, 0.564011, -0.646501, -0.351129, 1.414086, -0.915920, 0.435346, 0.414801, -1.740013, 0.564108, -0.424704, -0.006933, 0.444198, -0.626687, 0.025097, -0.287651, -1.036991, -0.284438, 0.204398, -0.799633, -2.331408, -0.093658, 0.188885, -0.698944, 0.804218, -0.747071, -0.506996, -0.798443, -1.028703, -0.073629, 0.951085, 1.428918, 2.360682, -0.392841, 1.255247, -1.807375, 1.694760, -1.339607, -0.588851, 0.040053, 0.268924, -0.686937, 0.410683, -0.006103, -0.100148, -0.366536, -0.235112, 1.008025, 0.343076, -0.558086, 0.286246, -0.717089, -1.906361, 0.566072, 0.996611, -0.489689, 0.673680, -0.124255, -0.152901, 0.673218, -0.001344, -1.216590, -0.562838, 0.962074, -0.581380, -0.288032, 0.741669, -0.593664, -1.018684, -0.297349, -1.176695, -0.203766, 0.473981, 0.556438, 0.944548, 0.712051, 0.210379, -1.794086, 0.297498, -1.254568, 0.902893, -0.866551, -1.577222, -0.531548, 2.092106, -0.575074, -0.110176, 1.504110, -0.518778, 0.355393, -0.801812, 0.235125, 0.117631, -0.107405, -0.462904, -1.603790, 1.927497, 2.191435, 0.238668, 1.011266, -0.639768, 0.462078, 1.444878, -0.898090, 2.311769, -0.506508, 1.782247, -0.663961, 0.450903, -0.076780, -0.488982, -1.612017, 1.255842, -0.459528, 0.055312, -0.665984, 0.283830, 0.058986, -2.005889, 1.110387, 0.977519, -0.227215, -1.272269, -0.834723, -2.106870, -1.323220, -0.330791, 2.653687, 0.209834, -0.578994, -0.056921, 0.008863, 3.271777, -1.154689, 0.711307, 0.101732, -0.902282, -0.555710, -0.631138, -0.619637, 0.097667, -1.369606, -0.855141, -0.251135, 1.675182, -1.077526, 2.063405, 1.426003, -0.149372, -1.387733, -1.655074, 0.312748, -0.834636, -0.210825, -0.221048, 0.848495, -0.545513, 0.506935, 1.919146, -0.321572, 1.342337, -0.038625, -1.183764, 0.195506, -0.450266, -1.357680, -1.458466, -1.618047, -0.972546, 0.362747, -0.225409, -1.693150, 0.979390, 0.193112, -1.268898, -0.547307, 0.952950, -2.047787, -1.318950, 1.485277, 0.501556, -0.239314, -3.149474, -0.062519, 0.453764, 0.472629, -0.470235, -0.275218, -0.804016, 1.018439, -2.585617, -0.339461, -1.201731, 0.253317, -0.499498, -0.160565, -0.616867, 0.128782, 0.606420, -0.713193, -0.582815, 0.995971, -0.665680, -1.538404, -1.226090, -1.100394, -1.500038, 0.262429, 1.373822, 0.972318, -0.167317, 1.060992, 1.003259, -1.043173, 0.894478, 0.087678, 0.262319, -1.366780, 0.703388, 0.923383, -0.493396, -0.568345, 1.408210, -1.563138, 0.089805, 0.168082, -0.037214, -0.723589, 0.840348, 0.666864, 0.467143, 1.518542, -0.646734, -0.064256, 0.392097, -1.331105, -0.802394, 0.274659, -0.198273, 1.070325, -1.287854, 0.932486, -0.459115, 1.300467, -0.686518, -0.135831, -1.501052, 0.977043, 0.344008, 0.584928, -1.273679, 0.872673, 0.270420, -0.321429, 0.515701, -0.091082, 1.642456, 0.347802, -0.209354, -0.733974, 2.228736, -1.865011, 0.143932, 0.362588, -1.279297, -1.249130, 0.781288, 0.804844, 0.015832, 0.017303, -0.167162, -1.132812, -0.641970, 2.400760, 0.399719, -0.986007, -0.061530, 0.798438, -0.172927, -1.813524, -1.072456, 0.537532, -1.120123, -0.787208, 0.316349, -0.732543, 1.564227, 1.124341, 0.859728, 0.158561, -0.197376, 0.599204, 0.482985, -1.306450, -0.143630, 0.147203, -1.053556, -0.463211, 0.685317, -1.333367, 1.295151, -0.421591, 1.399507, 0.045936, -0.192254, 0.842519, 0.743713, -0.335369, -0.163486, -1.445692, 0.211799, -0.164727, 1.000108, -1.521852, -1.280649, -0.294810, 0.179966, -0.112759, -1.757522, -0.472785, -0.602000, 1.030993, 0.455416, 0.775487, -0.047498, 0.602244, -0.875585, -0.140058, 3.275847, 1.302661, -0.322593, -0.493948, 0.183973, 1.606791, -1.941916, -0.743365, 0.844753, 0.692284, 1.552531, 0.667258, 1.360232, 0.152084, -0.996113, 2.191667, 1.346821, -0.369673, -0.194913, -0.252180, -0.208716, 0.046470, 0.491133, 1.641221, -0.121306, -1.657650, 1.828078, -0.064448, 1.094953, -0.760442, 0.025336, -1.354822, 1.258587, 1.307206, -1.507555, -0.883043, -0.514430, 0.632000, -1.388132, -0.163171, 1.105909, 0.436512, -1.113544, 0.087129, 0.666920, -1.334040, -0.703989, -1.320381, 1.238646, -0.286670, -0.288271, 0.305155, -1.113500, -0.137761, 1.869549, 2.479349, -0.626884, -0.393559, 0.413428, 0.173851, -0.713130, 0.412676, -0.353355, 2.333463, 0.560384, 0.156283, 0.657191, 0.671582, 0.124373, 1.864296, 0.180495, -0.087415, -0.143829, 0.183196, -0.773594, -0.478594, 0.031756, 1.253657, -1.503867, -0.486741, -2.396816, 0.402792, 0.451413, -0.538706, 0.594532, 0.011250, 0.008682, -0.252546, -0.190114, -0.919804, -0.813059, 0.535400, 0.464503, 0.224138, 0.656899, -1.189306, -0.878884, -0.300770, -0.360323, 1.210252, 0.500266, 0.107874, -0.784057, -0.119357, 0.625247, 1.968287, -0.562140, -1.752138, -1.290463, -0.153740, 0.493097, 0.458951, -0.267861, 0.584230, 0.116383, -1.451924, -0.666567, 0.680205, 0.652880, 0.291001, -0.631543, -1.784194, -0.263254, 0.988923, -0.731957, 0.672977, 1.426194, 0.310817, -0.531299, -0.761460, -1.767070, -0.866708, 0.237591, 1.297507, 0.733228, 1.636519, 0.015092, 1.102568, 1.282674, -0.405458, -1.340220, 0.329330, 1.062319, 0.037963, 2.116057, -1.650487, -1.274937, 0.054449, -0.770531, 0.129880, 0.165700, 0.989725, 0.636512, 0.685477, -1.289200, 0.925239, -0.814277, -0.907037, -1.031544, 1.099652, -0.949617, 1.416019, -0.448473, -0.754543, -0.058473, 1.596451, -0.933824, 0.562584, -2.389839, -0.684192, 0.185644, -0.108062, -0.857809, 1.242899, -0.480496, 2.189663, 0.858043, -0.200968, 1.693915, -1.196794, 1.592965, 0.091841, -0.172567, -0.513637, -0.723757, 0.345762, 0.469300, -0.830485, 0.248202, -0.677153, 1.064555, 0.709279, 2.171458, 1.691104, -0.303637, 1.064757, 0.308908, 0.374307, -0.807925, 1.226659, -0.627498, 1.180085, 0.241683, -0.008952, -1.442318, -1.250514, 0.224200, -1.249030, -1.033518, -0.015128, -0.769184, -2.265702, 0.657685, 0.391878, -0.559987, -1.030730, -0.497953, 0.116829, 0.665867, -0.047166, 0.471871, -1.780302, 0.234891, 1.474528, 0.474255, -2.521239, -0.445469, 1.853918, -1.180532, 0.571184, -1.492830, 1.854272, -0.878059, 0.076240, -0.438071, 0.453710, -0.273160, 1.066663, -0.847786, 3.127259, 1.342705, -0.251027, 0.540692, -0.666649, 1.139145, -1.261988, 1.377206, 0.180713, 0.248917, 0.680635, 0.805239, -0.874402, -0.891547, -1.464762, 1.909882, -0.560268, -0.796543, 1.700378, -0.349600, -0.461750, -0.096434, 0.537761, -0.799122, -0.181014, -0.387946, -2.051841, -2.287463, 0.642675, 1.751290, -1.447666, -1.356728, -0.690176, 1.157448, -0.128633, -1.551042, -1.105166, -1.574512, 0.258396, -0.054202, 0.057885, -1.356813, -2.610289, -0.345650, 0.819189, -1.027992, 0.925931, -1.000288, -0.811576, 2.059559, 0.569935, 1.647736, -0.014369, -0.938087, 1.604069, 0.462123, 0.582675, 1.759614, -1.719389, 0.680925, -0.693605, 0.989517, 0.031058, 0.291677, -0.590878, 1.906436, -0.598627, -1.176984, 0.293686, 0.280523, 0.955669, -1.516574, 0.469994, 0.062413, 0.678846, -0.775084, 2.002544, -1.003839, -0.173063, -0.731172, 1.140475, -0.127201, -1.786448, 0.177480, -0.047648, -0.895553, 0.569750, -2.868160, 0.419723, -1.108614, 0.525144, 0.980685, 0.271644, -1.134562, 1.120831, 2.060712, -1.411138, -1.289436, 1.716802, 0.768466, -1.071004, 0.124706, -1.334314, 0.683175, 0.110427, 0.590573, -0.644159, 0.423661, -1.462781, -0.234598, -0.716409, 0.170097, 0.342129, 0.549406, 1.248006, 0.173548, 0.021924, -2.023530, 0.377129, -0.855406, 0.738041, -0.344279, -0.389226, -0.541200, 0.398816, 0.809971, -0.517599, -1.835558, -0.395012, -0.797962, -1.340762, 1.603437, 0.857996, -0.002159, 0.712849, -0.258669, -1.105638, 0.183898, -0.561262, -0.484531, -0.669755, -0.398090, -1.530870, -0.519626, 1.365397, -0.017795, 0.627677, 0.370884, -0.807559, -0.223457, -0.096272, -0.978555, -0.180315, -0.151533, 0.046199, -0.028220, 0.525393, -0.712728, 0.699668, 0.091549, -0.883363, 1.014451, 0.840313, -0.935581, -0.822299, 0.409609, 1.744240, -0.039787, 0.882294, 1.198668, -0.064957, -1.479674, -1.762894, 1.583332, -0.294342, 0.557081, -0.717986, -1.491499, 1.319759, 0.557004, -1.402948, -0.149134, 0.976089, 0.937032, -0.106868, -0.854570, -1.781579, -0.792879, -0.366036, 1.323650, 2.555737, 1.227880, 0.292694, 1.126642, -0.181210, -0.389203, -3.232716, 0.748369, -1.134446, -0.561532, 1.680062, 0.593843, 1.735434, -1.060379, -0.087503, -0.640505, -1.104373, 1.841985, 0.336545, -0.106145, -0.122830, 0.410170, 0.067522, 1.037194, -0.250460, 0.511080, -1.007815, 1.428172, -0.878694, 0.562377, -0.455986, -0.189975, 0.171312, -0.971539, -0.399392, 0.075889, -1.556407, 0.526123, -1.475662, 0.993950, 0.011876, -1.442463, -0.047092, 0.744630, -0.638076, -0.343080, 1.428011, -0.450641, 0.331645, 1.654822, -0.950845, -0.643413, -0.014288, 1.743920, 0.092840, 0.895650, 1.509748, 1.341443, 0.338540, 0.907330, -0.376868, -1.078227, 0.042255, 0.226201, 0.360208, -0.605466, 0.968499, 1.431797, -0.921544, 0.315659, -0.256213, -1.429460, 0.091766, 1.770358, 0.756846, 0.224588, 1.613540, 0.446077, -0.784914, 0.739155, 0.835684, 0.878251, 1.285831, -2.310294, -0.356622, -1.913146, -0.870067, 0.562963, -0.101310, -1.879325, -0.093701, 0.936658, -0.418884, 0.026779, 1.454802, 0.429302, -0.198892, 0.591640, 1.018650, -0.465515, -0.957694, 1.107289, 1.093368, 0.214955, 0.188758, -0.657759, -0.668446, -1.019573, -1.097866, 0.408089, 1.194084, -0.137262, 0.517485, 1.392941, -0.211832, 2.069592, 0.687874, -1.290541, 1.018855, 0.529679, -1.499467, 0.665105, 0.371907, 0.451066, 2.277218, -1.913767, 0.704111, 1.366875, 2.866656, 0.940889, 0.252956, -0.128458, 3.180509, 0.468433, -0.282350, 0.627048, -0.646344, -0.259248, 0.054573, -1.017478, 1.846370, -0.817583, -1.051370, -0.245170, -0.173399, 1.019417, 0.315563, 1.247490, -0.690307, 0.515575, 0.467928, -0.388324, 0.735909, 0.030597, 0.506710, -1.191672, 1.009759, -0.553440, -1.077032, 0.165895, 0.253513, -2.349923, 0.628529, -0.216724, -0.588570, 1.193728, -2.107257, -0.222867, 0.909580, 0.808902, 0.116927, 0.290311, 0.295843, -0.527296, 0.199396, 0.367194, -0.003397, -1.589023, -1.222446, -0.148172, -0.864601, 0.146541, -0.435049, 1.561154, 0.416958, 0.347068, -1.384918, 0.257929, -0.788887, 0.093189, -1.650009, -0.665659, 0.664007, 0.249292, 0.294210, 0.973764, -0.493717, 1.567738, 1.682037, -1.513476, 1.117336, -0.570056, 0.975398, -2.252530, -0.089434, -0.315956, 0.732453, 1.022141, -1.041310, -2.355721, -0.707041, 1.012606, -0.044438, -0.978465, 1.498494, 1.115269, -1.077721, 0.410779, -0.287947, 0.470311, -0.863949, 0.187757, 1.021498, -0.624577, 1.966630, 0.062544, -2.202236, 0.078476, -1.054308, 1.813082, -0.369070, 0.629143, -0.088215, 1.340759, 0.647080, 0.794593, 0.878580, -1.013451, 0.979106, 0.622499, -0.543778, 0.068688, -0.931662, -0.578983, 0.352615, 0.610382, -0.793257, -0.077706, -0.540909, -0.050348, -0.271217, 2.046692, -1.937235, -1.081329, -1.392283, -0.254534, -1.237023, 0.864616, -0.241888, -1.497972, 0.426860, -3.184020, 1.829987, -0.150108, -2.532937, -0.696043, 1.095071, 1.284768, 0.922124, 0.641639, 0.916526, 1.571525, 1.105264, -0.279900, -0.295197, -0.494245, -1.394263, -0.764266, -1.450999, -0.854092, 0.032585, 0.756926, 0.586853, 0.376092, -0.789892, 0.602740, -0.805774, -1.341582, 0.692253, 0.424803, -2.454445, 0.860276, 1.400603, -0.345318, -0.315355, -0.381468, 0.394866, -0.125473, 0.042189, -0.163197, -0.268920, 1.478979, 0.443604, 0.269591, 0.005241, 2.471152, -0.431033, -0.213088, -0.980578, 0.988233, 0.380966, 0.725471, -1.423143, -2.224652, 0.978976, 0.815932, 0.700834, 0.837131, -0.024787, -0.417686, 1.134339, -1.107843, 0.306380, 0.033667, 1.867317, 0.012471, -0.287572, 1.778533, 0.370135, -1.174634, 0.192555, 0.261137, -1.397272, -0.084362, 0.041274, 1.009914, -0.749546, -0.761334, 0.098064, -0.294881, 0.446405, 0.928836, -1.929282, -0.570285, -0.784546, -2.779403, -0.846695, 0.137031, 0.540867, 0.824389, 0.236472, 0.210313, -0.360871, 0.347146, -0.253956, -0.665773, -1.925257, -0.348763, 2.227881, 0.003805, 1.332039, -0.982287, 0.031008, -0.270740, 2.522820, -0.791248, -0.684459, 0.764983, -0.152321, -0.026215, -0.979252, 1.229182, 0.858369, -0.407767, 0.776863, 0.579153, -0.264932, -0.018016, -1.123752, -1.313664, -1.017174, 0.960427, -1.606437, 1.105650, 0.359138, 1.027496, 0.092651, -1.402268, 0.354990, -0.880036, 0.131442, 1.565317, -1.083326, 1.650765, -0.492004, -1.601428, 1.099451, -0.331004, -0.366546, -0.480666, -0.411154, -0.410900, -0.941763, -1.469652, -1.363842, -0.033438, -0.233233, 0.376351, 0.686400, -0.363033, -0.332623, -0.048890, 0.067551, -1.459144, 0.341030, -1.077012, 0.273593, -0.371357, -0.298692, 1.114963, -1.465033, 0.519586, 0.052964, 0.655276, -0.491731, 0.280850, 0.323244, 0.867395, 0.759899, -1.666730, 0.979111, -0.167920, 0.591915, -0.119927, -0.195404, -1.175960, 0.545832, 0.692513, -1.271827, -0.836648, 0.586593, 0.291112, 0.996090, -0.896535, -0.814722, -0.005518, 0.358933, 0.111271, 1.340262, 0.741738, -0.774394, -2.162559, 1.318474, -1.396477, -0.520804, 0.466399, 2.279527, 0.029293, 0.108531, -1.754407, 0.163995, 1.082599, -0.403398, -0.170029, -0.963065, -0.486390, -0.431780, 0.542583, -0.011153, 1.094012, -0.462220, -1.562649, 0.032236, 1.436180, 0.643423, 0.641089, 0.482134, 1.324782, -1.681461, 0.544893, -0.395092, 0.153287, 1.228124, -1.540012, 0.444108, -0.455420, -0.216309, 0.817343, -1.055369, -0.470671, -1.268143, 0.019048, -0.427014, 1.649644, 0.071607, -1.580412, -0.396234, 0.110895, -0.296831, -1.111292, -0.044197, -1.242487, 1.372200, -1.057536, -0.437267, -0.892935, 0.759907, 0.848724, -0.130426, -0.012477, 0.581111, 0.973880, -1.026649, 0.243048, -0.867487, 0.490193, -0.773725, -0.890799, 0.772237, 1.469286, 0.380690, 0.953945, 0.034076, -0.152651, 0.135191, -1.222980, 1.007377, -1.039381, 1.371140, -0.428279, -0.628594, -0.360490, -0.933866, -1.854327, 0.998097, 0.796403, -2.439250, 0.756891, -1.550121, -0.225330, -0.630589, 1.332149, 0.709854, 0.226034, 0.729615, 0.267521, -0.698030, 0.186030, -1.167110, -0.385187, -1.295860, 1.022553, 0.041222, 0.958232, -1.054944, -2.073357, -0.424499, -0.763159, 0.522001, 1.385108, -0.557294, 0.702881, 0.447902, 2.224815, -0.080233, 1.244975, -1.041720, 1.946191, -1.104801, 0.434410, 0.505597, -0.796234, -1.369856, -0.827263, -0.399050, -0.226377, -1.068695, 0.514542, -1.101633, -2.120940, -1.738808, -1.078760, 1.081354, -0.585005, -0.136036, -1.990163, -0.106920, 0.237565, 1.648598, -0.482580, 0.760493, 0.207137, -0.701255, 0.285121, -0.840918, 0.003624, 0.498518, 0.025036, 0.788528, 2.160563, -0.296655, -0.137203, 0.324651, 0.132233, -0.531125, 1.789201, -0.160457, -1.032517, 0.146514, -1.824918, 0.974990, -1.214175, -1.649340, 1.387548, 0.470395, 1.312280, 1.237932, -0.899659, -0.829653, -1.842418, -1.061287, 0.560200, -1.421208, -0.581494, -1.333445, 1.197808, -0.004378, 1.416499, 1.755505, 0.026544, 0.837454, 1.557874, -0.217017, -0.397989, 0.063063, -1.778829, -0.192884, 0.084211, 1.062490, 0.964407, 0.566962, 0.847083, -0.274809, 0.375254, 0.722517, 0.560678, -1.005988, 0.875064, 0.687439, -0.396946, 0.670352, 0.689516, -1.470827, -0.344292, -0.629194, 0.227307, 1.988977, -0.876211, -1.121046, 1.265790, -0.685251, -1.070367, -0.062884, 0.054505, -3.003368, -1.133793, -2.012723, -0.337795, 0.898864, 0.916570, -1.894812, 0.238004, 0.097478, -0.509694, -0.415274, -1.191918, 0.876687, 1.286826, -0.005971, 0.455453, 0.048425, -0.456403, 0.971292, -0.865462, -0.246155, -0.585692, -0.965737, 3.445901, -0.911199, 0.287442, 1.587792, 0.895560, 1.925481, 0.095547, 1.518426, 0.012224, 0.691692, 0.582198, -0.406868, 0.143958, 0.457494, 1.337578, 0.673886, -0.314307, -0.481295, 0.300115, 0.369252, -0.205887, -0.345503, 0.967452, -1.299286, -1.718308, 0.036918, 0.629148, 2.099278, -1.417399, -1.640476, 0.083439, -0.583210, 0.207945, 2.570730, -0.825374, -0.759509, 0.481104, 0.737747, -0.094216, -0.284510, -1.562090, 0.307287, -2.235996, -0.514724, -0.214082, 0.499416, -0.699206, 0.980064, 0.163693, 1.312642, -0.183776, 1.725256, -0.677991, -1.607041, -0.544693, 1.346919, -0.624496, -0.183641, -0.246156, -1.923805, 1.569831, -0.725646, -0.548008, -0.413044, 0.303991, -0.995683, -0.342037, -1.948194, -1.954113, -1.625112, 0.835255, -1.270998, -1.378510, 0.446086, -1.131451, -0.970990, 0.637331, 1.110468, 0.767603, 2.231873, 0.776787, 0.985546, -1.538532, -0.784095, -0.798493, 0.480797, 0.776444, -0.433342, 0.396399, 1.428377, -0.699219, -0.743212, -0.872042, 0.074149, 2.007679, 0.364113, 1.133289, 1.023652, 0.105856, -1.568905, 1.186232, 0.620150, -2.199017, -0.027987, 1.024930, -0.116677, 0.546419, 0.803328, -0.368815, -1.090368, -1.694118, -0.290254, 1.870361, 0.356535, 0.505162, -1.475733, -0.081447, -1.705330, 2.530515, 0.047912, -1.537741, -0.127411, -1.600267, -2.032078, -1.126504, -0.919711, 1.830218, -0.401305, 0.030775, -0.181328, -0.213574, 1.437745, -1.801430, 0.476875, -0.173328, 2.088142, -0.709095, 0.195275, 0.020651, -1.806825, 2.099104, 2.251518, -1.257256, 0.861375, 0.243513, -0.052754, -1.436298, 0.597827, 0.743081, -0.283839, -0.344512, 1.563187, -0.492882, 0.587774, -0.210253, 1.610632, 0.277828, 1.640443, 0.889563, -0.836606, -1.140817, 0.760634, -0.932450, 0.782050, 0.472036, -1.040960, 0.789785, 2.226307, 0.771765, -0.202860, 0.167792, -0.208109, 1.816401, -0.233837, 1.026439, 1.193812, 0.523899, -0.578994, 0.293049, 2.721322, 3.377675, -0.361687, -0.190383, -0.621579, 0.617469, -1.686794, -0.615522, 1.037010, 1.421817, 0.657378, 0.622055, 1.243860, 1.044273, 0.380579, -0.717023, 1.381899, -0.477302, -1.950422, -0.063410, -0.860567, -1.995309, 0.604878, 1.912790, 0.614260, -0.468318, -0.307680, -0.448515, 0.790912, -0.636104, -0.933446, 0.703913, 0.612134, 0.577703, 0.606643, -0.467727, 0.336145, -0.606091, 0.291353, 0.169330, 0.396521, 0.793152, 1.168300, -0.665320, 0.138893, -0.107689, 0.393695, 0.238294, -1.465343, 0.110672, -0.574389, 1.189659, -1.031656, 0.643544, -0.041721, -2.551744, 1.914617, 1.137613, 0.304502, 0.276137, -0.274812, -0.223629, -0.406222, -1.497671, -1.499371, 0.864943, 0.435871, 0.477636, -0.268209, -1.603217, -1.997199, 0.520067, -1.002440, 1.284171, 0.764931, 0.559257, -0.047788, -0.321588, 0.910385, 1.114308, -0.665325, 0.117723, 0.957186, 0.196895, 0.526333, -0.301807, 0.242643, -0.001410, -1.553406, -2.364246, -1.680157, 0.529280, -0.627928, 0.902765, -0.271188, 1.484785, -0.264528, -0.588892, 1.488094, -0.799257, 1.448272, 0.716505, -0.148467, -0.989003, 0.121459, 1.503392, 0.998178, 0.571938, -1.298588, 0.155219, -1.193553, -1.071987, 1.077364, -1.832231, 1.224635, 1.611362, 0.660337, -0.207882, -2.460820, 1.092116, -1.400597, 1.520125, 0.180947, -0.859572, -0.347017, 1.086482, 0.490368, 0.765541, -0.184343, 0.680209, -0.015803, 3.497202, -0.527242, 0.473355, 2.547523, -2.312729, -2.031398, -0.100175, 1.589728, -0.278581, 0.981250, -0.526498, 0.889400, -1.125171, 0.163059, 0.350926, -0.699345, 1.999035, -0.570082, 1.689954, -0.699827, -0.172210, -1.047179, 1.451014, 1.044453, 0.564037, 0.239588, 0.901849, 1.030170, 0.286149, -0.250285, 0.764806, -0.439759, -0.062761, 2.239625, -0.092694, -0.621294, 0.482468, -0.161406, -1.817209, -0.093881, 0.683814, 0.235213, 0.942230, 1.768518, -1.595445, -0.412542, 2.414057, -0.221852, -1.401115, -1.081049, 0.560190, 1.574262, 1.199254, 0.434372, 0.099117, -0.174399, -1.459759, -0.005484, -0.551779, -1.119167, -0.281815, -1.940759, -1.402559, 0.771613, 1.317510, -0.100837, 0.702263, -0.597209, -0.697992, -1.650409, 0.474231, -1.313327, 0.521745, -0.165005, 0.546684, -0.120657, -0.166847, -0.208339, 0.474709, -0.750711, -2.638392, -1.137997, 1.917294, -0.819974, -0.272673, -0.372066, 0.979130, 1.205399, -0.724035, 1.609277, 0.657708, 1.342834, 0.487934, -0.161034, 1.027104, -0.419074, -1.293546, -1.018050, 0.205267, 1.896128, 1.897688, 1.690139, -1.177716, 1.202312, -1.885657, 0.355356, 0.313285, 0.564464, -0.163197, 1.091237, -0.258534, -1.452792, 1.864626, 0.498763, 0.679449, -0.631617, 0.807204, -0.298873, 0.193351, 0.984876, -0.146170, -0.504643, 1.432000, 1.729161, -0.753104, -0.591432, -1.140864, 0.203559, 0.327622, -0.136095, -1.974707, 1.580811, 2.285019, -0.297325, 0.184706, 1.426637, 1.953744, -0.488535, -0.334653, -1.518712, 1.131937, -1.019480, 1.740277, -0.826970, -0.384879, 0.858003, -0.071758, 0.288566, 0.787778, -1.090148, -0.452980, 0.006704, 1.020528, 0.915000, -0.853892, 0.189906, 0.456827, -0.480919, -0.318714, -1.366240, -0.175973, 1.984203, -0.413025, 0.948677, 0.552726, -1.207447, 1.370577, 1.634290, -0.579001, -0.021489, -1.006015, 0.150176, 1.444833, 0.326589, -0.527912, 0.260466, 0.665954, 0.443388, 0.920201, 0.677774, -0.071644, 0.291383, 0.041140, 1.568847, -1.051342, 1.705840, 1.282443, -0.626896, 0.245023, 0.279548, -1.379793, 0.042161, 0.666386, -0.177372, -0.324910, 0.280091, 0.760060, -0.278312, 0.102068, 0.267269, 1.783802, 0.736309, 0.546462, 0.361672, 1.326330, 1.655277, 0.389296, -0.455793, -0.801484, 0.780402, 0.604900, 1.711794, -0.787858, -0.167967, -1.822423, -0.756842, 0.851663, 0.717867, -0.861421, -0.793650, 1.675991, -0.879387, 1.206216, 0.434068, -2.092479, -0.236197, -1.166878, -0.640330, -0.838333, 1.394272, -1.264509, -0.131953, 0.060700, 1.295685, 1.141973, 1.223570, -0.741256, 1.187025, -2.129549, -0.601442, 0.547206, -1.066923, -0.914791, 1.616775, -0.563487, 0.994912, 0.566428, 0.956240, 0.575268, -1.677340, -0.487066, 0.055881, -0.293810, -2.052553, -0.555956, -0.046646, 0.757924, 1.955607, 0.200750, 0.104535, -1.093402, 1.071051, 0.384958, -0.155126, 0.679061, -1.049670, -0.332638, 1.514032, 1.474860, -1.161727, -0.471283, -0.544551, -0.925896, -0.487798, 1.043943, -1.212793, -1.221603, 0.439309, 0.056897, -0.841054, 0.688809, -0.907617, -1.534107, -0.209263, -1.261547, 1.213918, 0.204049, 1.176109, 0.058943, -0.486168, -0.030294, -1.034265, 0.026252, 0.593023, -1.313981, -1.283513, -1.397177, -0.094894, 0.216503, 0.811026, 0.216309, 0.193855, 0.195588, 0.235502, 0.180204, 0.356665, 0.448827, 0.315331, -0.901124, -0.853701, -0.358370, -1.683556, 1.585802, -0.976706, 0.572273, -1.145183, 0.788685, 1.732736, -0.163302, -1.148025, 1.472582, -0.725925, 0.493901, 0.195637, 1.416335, -1.578705, 0.679016, -1.162408, -1.738871, 0.450091, -0.431112, -1.361769, -0.424566, -0.818903, -0.667462, 1.078311, -1.037617, 0.211673, -0.598206, 1.628288, -0.584240, -2.135561, 0.003673, 0.425412, -0.173806, 2.000998, -0.165833, -1.216102, -1.685431, 1.135099, 0.616347, -0.522370, -0.633687, 0.922370, 0.042586, 0.370329, 1.044347, 1.031333, -0.964225, 1.550728, 0.415130, -0.290246, -1.746478, 0.165117, 1.252110, 0.360803, -0.309422, -1.322469, -0.624928, 0.955354, -1.340895, -0.584127, -1.185284, -0.147229, -0.558655, 1.759923, -2.949292, 0.443495, 0.367090, 0.774458, -1.599032, -0.470594, -0.118633, 0.214576, -0.483837, 0.124889, 0.944012, -0.140600, 0.374726, -0.166974, 0.119375, -1.005208, -1.070203, 0.423589, 0.727111, 1.276022, -0.314949, 1.101866, 0.110812, 1.384848, -1.388079, -1.054257, -0.367673, 0.285534, 2.069403, 0.367170, 1.282821, 0.254568, 0.546672, 1.199001, -0.677695, 1.506406, 2.982727, 0.696974, -1.678491, -4.151894, -3.297700, -0.857486, -0.991400, 2.461016, -1.183123, 1.762707, -0.176799, 1.216201, 0.196540, 0.931717, 0.046761, 0.040873, 1.082963, 1.421519, 0.888768, 0.467386, -1.736140, -0.971011, 0.563802, -1.044710, 0.277508, -0.936257, -0.073800, -0.091419, -0.914668, -0.966835, -0.589521, 0.195878, 0.688218, 0.118125, 0.436079, -0.224403, -0.350996, 0.396244, 0.323399, 2.020873, 0.979554, -0.186838, 0.654945, -0.373061, 0.940205, 0.336659, -0.639526, -1.347858, 2.344529, 0.635626, -1.507473, 1.068242, -0.434148, -0.379054, -0.138890, 0.775494, 0.329572, 1.088699, 0.285666, 0.587611, -1.383103, 0.345279, -0.818008, 1.092961, -2.065354, -0.387811, -0.819153, 1.032752, 0.851679, -0.031117, 0.146819, -0.193887, 0.726719, 1.394476, 0.503921, -0.110971, 0.385437, -1.407887, -2.238863, 1.187161, -1.552516, -0.904590, -0.057329, 0.227120, 1.222442, 0.612752, -0.895316, -0.160224, -0.079172, -0.806369, 0.346452, -0.526111, 1.618522, 0.088905, 1.124405, 0.183307, -0.354512, -0.740697, 0.653895, 0.256393, -0.847359, 2.708672, -0.255305, -0.422605, -0.202106, 0.445192, 0.185425, -0.087221, -0.146694, -1.770923, -0.734755, -1.025807, 1.960358, -0.071322, 1.147608, 0.036726, -0.672309, 0.184585, -0.486843, 0.643202, 0.916453, 0.189262, -0.978815, -1.923698, 2.172878, 0.723617, 0.884473, 0.415043, -2.056983, 0.322004, -0.293319, 0.850476, -1.372263, 1.321481, 0.831174, 0.719995, 2.954501, -0.031278, 1.457523, -1.147279, -1.445839, 1.568239, -0.146302, -0.066091, 2.213844, -1.379027, -0.689201, -1.253020, -0.808258, 0.141012, 0.374659, 0.215204, 0.535278, 0.032940, -1.362946, -0.333833, 1.372702, 0.753440, -0.648282, 0.478611, 0.744250, -1.166623, 0.318440, -0.043213, 0.235775, 1.323689, 0.728217, -1.533827, -0.688402, 1.380060, 1.827214, 0.445192, 0.849957, 0.985162, -1.322424, 0.868099, -0.615620, 1.109362, 0.523907, -1.327580, 1.401171, -0.129338, 0.775905, 0.839810, 0.051850, 0.170181, 0.744342, 0.123146, -1.296641, -1.494909, -1.155625, -0.390187, 0.342067, -1.268486, 0.740022, 0.436035, -0.113239, 0.105586, 0.031501, 0.986141, 0.023656, 0.676581, 1.518381, 0.174162, 0.610272, -0.478724, 2.483743, 0.613921, -0.175590, -0.164017, -0.353660, 1.924063, 0.158569, -0.396594, 0.263665, -1.950628, 0.312195, 1.584783, 0.568914, -0.554711, 0.625919, -2.096829, 0.699644, 0.287566, 1.361564, 0.609404, -0.326094, 0.026283, 0.062417, -0.798742, 0.812903, 0.143822, -0.295422, 0.887376, 0.823198, -1.309627, 0.240108, 1.146784, -0.390646, -0.089727, -1.169366, 1.169567, 0.704836, 0.315145, -0.656186, -0.296418, 0.641698, 0.888014, 1.013918, 0.592271, -1.212218, 0.591033, -0.342076, -0.374229, 0.977258, -0.551950, -1.517663, 0.003719, 0.289068, -1.482010, 1.297532, 0.316068, -0.258420, 0.418935, -0.375836, 1.042954, -0.725554, -0.114071, -0.730602, -0.661055, 0.753532, 0.081824, 1.006013, 0.142167, -0.840237, 1.369744, 0.528675, -0.297089, 0.017474, -1.150734, -0.165743, -1.374017, -0.803858, 0.131781, -1.242277, 0.089559, -0.892897, 0.147872, 1.133479, 0.373783, 2.660564, -0.974752, 0.509270, 1.581726, -0.277729, 0.520943, 0.729095, 0.956977, 1.067660, 0.285560, 0.994783, 1.142687, -0.682838, -0.267087, 0.875598, 0.371457, -1.197628, 0.158424, 0.188489, 0.562693, -0.919669, 1.555412, -1.339534, -0.711500, -0.321229, -2.384288, 0.750795, -1.072228, 2.106545, -0.823336, -1.119585, -1.580754, 0.202609, -0.078508, 0.260435, -3.602984, -0.205322, -0.667775, 0.074963, -1.454056, 0.070495, -0.538768, -0.635445, 0.507923, 2.179662, -0.724869, 0.838785, 1.190526, 0.430776, -0.009086, -0.399675, 1.397246, -0.056698, -1.241325, 1.800117, -0.378219, -0.198953, -1.655862, -0.321080, -0.185884, 1.576458, 0.715399, -2.288547, -0.366786, -1.404334, 0.643486, -0.763561, 0.400271, -1.828620, 0.706079, -0.397933, 0.093705, -0.916302, -0.149977, 0.314115, -0.175625, -0.566566, -0.529712, -0.767276, 0.871735, -0.631191, -0.347633, 0.037088, -2.132443, -0.470657, -0.832965, -0.082984, -0.260987, 0.613843, 1.373040, 0.611550, 1.472924, -1.230582, 0.610818, 2.789570, 0.932315, 0.005373, 0.285894, -0.638099, -1.457272, 1.225715, -0.319766, 0.408211, -0.223554, 2.121467, -1.387489, 0.944122, 1.208687, -0.166073, 2.072319, 0.942278, -0.026106, 0.270373, -0.367620, 1.114116, 0.153176, -1.733128, -0.378857, -2.422843, 0.487516, -1.247803, 1.062849, -1.231253, 0.537975, 0.416658, 0.371592, -0.254977, -0.482217, 2.085400, -1.245060, -0.006724, 0.345644, -1.287915, 1.869092, 1.416436, -0.615393, -0.273593, 0.262973, 0.139038, 0.246117, -0.109790, -0.665548, -0.178864, 1.099355, 0.773782, 0.457826, -0.541601, 0.101499, 1.272108, 0.566388, 0.886247, -0.668834, 0.532492, -0.165506, -0.339198, -1.283437, -1.336261, 0.180136, 0.225786, 0.175028, -0.957114, -0.350541, -0.530105, -0.518899, 0.822877, 0.400293, 0.611413, 0.433421, -0.027002, 2.016738, -0.352167, -0.117694, -0.711349, 0.225743, 2.219947, -0.994911, 0.889493, -0.209501, -1.015048, -0.277007, -1.038744, -1.041999, 0.591231, -0.005852, 1.309783, -1.893955, -0.245225, -0.408309, 2.587780, 1.869129, -0.025926, 1.074801, 0.137144, 0.838392, 0.150895, 0.976174, -0.922213, 1.912812, -0.330382, 0.132859, 0.552352, 0.035093, 0.923648, 0.529371, -0.487117, -1.123653, 1.122107, -1.675823, -2.717964, -0.029215, -0.257208, -0.156907, 0.396118, 1.171553, -1.357970, 1.565213, -0.646594, 0.134291, -0.714868, 0.260105, -0.777921, -0.209907, 0.619322, 0.428472, -1.578512, -1.283865, -1.434614, -0.466454, 0.896150, 0.446782, 0.144509, -1.229224, -0.166965, 0.512940, 0.004475, -0.958409, 0.764049, 1.256500, -0.649258, -0.389592, -1.077574, 0.129926, 0.256995, 1.253581, 0.555203, 0.777111, 0.875996, 1.716907, 0.356880, 1.527518, -0.697347, 0.518405, -0.973775, 0.712326, -0.891095, 1.286977, 1.149621, 0.608203, -1.479573, 0.011016, 0.129004, -0.351740, -0.712967, -1.296240, 1.070677, 0.223133, -0.324454, 1.440688, 1.207998, -0.041205, -1.018669, 0.525927, -1.006325, -0.916148, 1.577374, 1.217416, 0.410817, 0.218878, 0.675492, 1.683384, 0.420540, -0.070093, -1.526976, -0.049730, 0.258250, -0.421714, -1.125409, 0.410102, -0.912545, -0.658720, 1.355603, 0.151928, 1.703582, 1.043317, 0.368780, 0.213015, -0.308952, -0.409541, -0.760363, 0.002532, -0.475296, 0.888988, -1.335275, 0.306037, -0.436678, 1.482922, 0.008808, -0.426924, -0.505520, -0.953012, -0.391128, 0.489408, 0.654015, 2.340253, 0.591200, -0.393732, -1.761934, 1.491361, -0.042439, -0.246911, -1.144422, -1.549792, -0.368030, -0.620258, 0.815402, 0.466840, -0.052885, -1.121396, 1.163027, 0.786450, 0.459861, 0.121936, -0.827918, 0.310432, -1.215373, -1.997813, 0.970187, 1.548958, -0.241756, 1.067134, 1.241846, 0.292035, -0.025637, 1.295865, 0.665144, -0.634091, 0.805057, -1.459196, 0.211142, -1.363085, 1.532381, 2.222022, 1.276336, 1.361636, 0.463343, 0.381781, 0.181735, 1.987398, -0.428641, 0.133009, 0.002244, 1.527644, 1.800537, 0.870477, 0.186963, 0.405588, 0.600083, -0.287867, 0.210746, -1.136290, 0.188915, 0.162045, -0.088737, 0.730083, 0.941827, 0.257603, 0.790213, 0.329960, -0.004840, 0.420102, 1.173649, -2.920959, 1.218269, 0.476052, -0.517790, -1.290314, -1.167549, -0.378205, -0.137183, 0.582925, 0.334868, 1.047304, 1.913719, -0.051452, -0.274991, -1.854406, 0.165857, 0.704543, 0.534597, 1.213684, 2.257795, -0.120105, -0.590144, 0.395352, -0.546918, 0.328898, 0.037597, 0.098501, -0.329587, -0.140080, -1.048393, -0.375590, -0.752983, 0.555698, -0.170252, -1.138621, 0.357078, 2.818563, 0.524365, 0.477222, 1.357011, -0.785911, 1.137909, -1.548372, 0.753165, 0.127490, -0.093429, 0.860062, -0.469682, 0.133400, -0.747741, 2.896087, 1.706991, -0.404538, -0.620125, 1.212147, 0.830912, 0.783276, 0.846542, -1.017339, 0.074176, -0.762677, -0.655850, 0.117499, -0.061440, 0.938407, 0.517412, 0.515201, -0.037050, 0.740538, -0.407951, 1.691379, 0.448729, -0.782644, 0.572763, 0.769657, 0.366590, -0.696918, -1.492572, 0.229683, -1.204435, 1.454218, -1.192827, -0.569249, -0.916316, -0.669248, -0.815297, -0.019228, -1.531656, 2.086796, 0.339776, -0.613002, 0.572677, -0.983079, 0.020470, -0.391727, 1.152144, 0.054703, 0.468952, -1.487208, 1.703593, 0.305286, 0.042353, -0.689477, 0.873410, 1.570843, 1.110810, -0.593906, -0.195274, -1.067243, 0.172106, 0.733817, -2.102313, -0.079578, 1.066478, -0.821053, 1.057245, 0.818666, 1.642676, -2.191774, -0.833900, -0.898218, -1.541927, -0.334863, 0.228567, -0.980666, 1.319623, -0.563599, 2.215149, -0.573370, -0.655100, 1.925586, 0.775449, 1.987317, -0.024107, -1.227130, 1.840700, 0.544468, 0.617473, 0.286865, 1.233046, -0.966232, -0.130745, -0.846207, -1.056782, 0.206412, -0.932630, 1.649964, 1.187164, 2.363065, 1.057166, -0.620550, 0.105152, 1.330918, 0.918073, 1.238703, 0.010992, -0.131588, 0.625348, -0.198732, -0.248347, 0.784598, -1.688911, 0.969951, -2.313670, 1.049869, 0.382715, -1.080427, 1.389851, 0.398404, -0.200757, -0.362412, 0.337427}, + { -0.404508, 0.163124, 1.154818, -1.483255, -0.581471, -1.058566, 0.641383, 2.127362, 0.336213, -0.192312, -0.054478, -0.005021, 1.330475, 2.266097, -1.180018, 0.294525, 1.199543, -0.356847, -0.556084, 0.487455, 0.820694, -0.159970, 0.448013, 0.563963, 2.589067, -0.834528, 0.657293, -0.707490, -1.366151, -0.018298, 0.025944, -0.021855, -1.867044, 2.082346, 0.618442, 2.509357, 0.436933, 0.903809, -0.386555, 0.399367, 0.377216, -1.353829, -1.603042, -0.213905, 0.838949, -0.134736, -0.403021, -0.710935, 1.393025, 0.522015, -1.981140, -0.415621, 0.323514, 0.009830, -2.003768, -0.308470, -1.964263, 0.800841, -0.621398, 0.328218, 1.063567, 1.439225, 0.499219, -2.981121, -1.731069, 0.269913, -0.529232, 1.720458, 1.250965, -0.035330, 1.279135, -0.619881, -0.680561, 0.470557, -0.480693, 0.350805, 0.950771, -0.575727, -0.827712, -1.094357, -0.711935, 0.619266, -0.275774, 0.365097, -1.269562, 0.545090, -0.849842, 0.652075, 2.324220, -1.214307, 1.209765, -1.472352, -0.312568, 0.462341, 0.068491, -0.466602, 1.075880, -0.227353, -0.268573, -1.017259, -0.836458, -0.056589, 0.608142, 0.232381, -1.741762, 1.519571, 2.653699, -0.242469, -2.101115, -2.916691, -1.049268, -0.438316, -0.700674, -0.266520, -0.307564, 0.399335, 0.720180, 1.592638, 0.609519, 0.456935, 1.233109, -1.625068, 0.425408, 0.407947, 0.701066, -2.322550, 0.006080, -1.076351, -0.273250, 0.297834, -2.361733, 0.030759, 0.042067, 0.915703, -0.594477, 0.498847, 0.548511, -0.096414, 0.124883, -0.830702, -0.439662, 1.213415, 3.037199, -0.063262, 0.043592, 0.904694, -0.389064, -1.473366, -0.679124, -0.011925, -1.603457, -0.627626, -0.752587, 0.508564, 0.978770, -1.251897, -0.333609, -0.611983, 3.116110, 1.078208, 0.275638, -0.322169, -1.409537, -0.919222, -1.451844, -0.131750, -0.821090, 0.350240, 1.071780, -0.107788, -1.036753, 1.961365, 1.591369, -0.805272, 0.190483, -0.650893, 1.430172, -0.046196, 0.441044, -0.857903, -0.806892, 2.119520, -0.295425, -0.141970, -1.489122, -0.355302, -0.958746, -0.098122, -0.749379, 0.731833, -0.396343, 0.288156, -0.073393, -1.549802, 0.461063, 2.178891, 1.713950, -0.116506, -0.453699, -0.034935, 0.414432, 1.500044, -0.179254, 1.677950, 0.798656, 1.965646, 1.368249, -0.034445, -1.090726, 0.230001, -0.303500, 0.073566, 0.112981, 1.334112, 0.505705, 0.446252, 1.438356, -1.289050, -1.059885, -1.017692, -0.025106, -0.580944, -1.570426, 0.545800, 0.054686, -0.272696, 2.062170, 1.243366, -0.857117, -1.023764, -2.610025, 0.202101, -1.318459, 1.326934, -0.978742, -0.378719, -2.040448, 0.087848, 3.576277, 2.020581, 0.759390, -1.055501, 0.413844, -0.164284, -0.387150, -1.048777, -0.286634, -2.008885, -0.663360, -0.085511, 0.384762, 0.945797, 1.021999, 0.192535, 0.452200, 1.535439, 0.231566, 0.041257, -1.212188, -0.704954, -0.547902, -0.690643, 0.106904, 1.415590, 0.078008, 2.307820, 0.401648, 2.167300, 0.088725, -1.372815, 0.047913, -0.183352, -0.246744, 0.443417, 0.650775, 1.903080, 0.990435, 0.779096, 0.088359, 1.578622, 0.564592, 0.659807, -1.636551, -0.159692, -0.094542, 0.805441, -0.450696, 0.611813, -0.340853, -0.340410, 0.741255, 0.076934, -0.793866, -0.093842, 1.340727, 1.438741, 1.637718, -0.433302, -0.249263, -0.492451, -0.258835, 0.374922, 0.072988, 0.977547, 0.651825, -0.705120, 0.399549, 0.425899, -1.546367, -1.572720, 0.549318, -0.002516, 1.683770, -0.981328, -0.947248, -2.099293, 1.055548, 1.459812, -0.004070, 0.373645, -1.218558, 1.644753, -1.314250, -0.072876, -0.155644, -0.238832, 1.118094, 0.615153, -0.223096, -2.320651, 1.032424, 0.407406, 1.095528, -1.669550, 0.250838, 0.852352, -0.415173, -0.428119, 0.440153, -2.988512, -0.095677, -0.795611, -0.297327, -0.615770, -0.826810, 0.264368, 0.310276, 0.330848, -0.441686, -0.379671, 0.826628, -0.603369, 2.074424, -0.897566, 0.430340, -0.601009, 2.024559, -0.448747, 1.117226, -0.766603, -0.188637, -0.940681, 0.188648, -0.141931, -0.333417, -0.213132, 0.204591, 1.754115, -2.303310, -0.331649, -1.645716, 0.009210, 0.256004, 2.828982, -1.129759, -1.959877, 1.521838, 0.229127, -1.887629, 1.440989, 0.239477, -0.852426, -0.598001, -0.356794, -0.393320, 0.195500, 0.662527, -1.955825, -0.293691, -0.814347, 0.131472, -1.358820, 0.782628, 0.576499, 0.056940, -0.729609, -0.497355, -0.024098, 0.088424, -0.015372, -0.175210, -1.751869, 1.800967, -0.203160, 0.464615, -0.620864, 0.769326, 0.298648, 0.335302, 0.325511, -0.680748, 2.471924, -0.078364, 0.204843, 1.351879, -0.022770, -0.700837, -0.020701, -2.780741, 0.548361, -1.162960, -0.704594, 1.270662, 0.586579, -0.288171, 0.064890, 1.599613, -1.727048, 0.997418, 0.511380, -0.296972, 0.001003, -1.354265, -0.720696, -0.346454, -1.473630, -0.358891, -0.571188, 1.729364, 1.010991, -0.128087, -1.202609, 1.860534, -0.304476, 0.926315, 0.828502, -0.540468, 0.760189, 1.051411, -0.562408, 1.522161, 0.735873, -0.677988, 0.418064, -1.079892, 1.237851, -0.358978, 2.535745, 1.601217, 0.374316, 0.447270, -0.501985, -0.164819, -0.835315, -0.218226, -0.178799, 0.726933, -0.265217, 1.085364, -0.211372, 0.122358, 0.511503, -0.519361, -1.180297, 0.193765, -0.320701, 0.237230, 0.219712, -0.815825, 0.653885, 0.090557, 0.277263, -0.058149, -1.041480, -0.889895, -0.690105, 0.768050, -0.333332, 0.322802, 0.154716, 0.457100, -0.911952, -0.965159, -0.346959, 1.333275, -0.502664, -1.223984, -0.082424, -0.164002, 0.490367, 1.336649, -0.862930, -0.964988, -0.994274, -0.622409, 0.458808, -0.704009, 0.021413, 0.198991, -0.852646, -1.097722, 0.907027, 0.138650, 1.046807, -1.213532, -0.935889, -0.036656, 0.594180, 1.491764, 0.321612, -0.240180, -1.862704, -1.449472, 1.097837, 1.244961, 0.270457, 0.176432, 0.584133, 0.524333, 0.830303, -0.441502, -0.551576, -0.078591, 0.285845, 0.885505, 1.308601, 0.123892, 2.324634, 0.767678, 0.668727, -0.174630, -1.100639, -0.274172, -1.027468, 0.721521, -0.454303, 1.721158, 0.351097, -0.297013, 0.120131, -0.870957, 0.615013, 0.203040, 1.539085, 0.206831, 1.905005, -0.798854, 1.674731, -1.020858, -0.591924, 0.723117, 0.132846, 0.635807, 0.191219, 1.239572, 0.207665, -0.634077, -0.208226, -0.757228, 0.066721, -0.489152, -1.189550, 1.196971, 1.224924, -2.146399, 2.093163, -1.263299, -0.019905, -0.751321, 1.119494, 0.976934, 0.765776, -1.182855, -0.038781, 0.546729, -0.590921, -2.810264, 0.259395, -0.032342, -0.037544, 2.333862, 0.660644, -0.055413, -0.419718, -2.054295, 0.413191, -0.839143, 0.509301, -0.813663, -0.544804, 0.248122, -0.104904, -0.472376, 0.982784, 1.444134, -0.197749, -0.110396, 1.024985, 1.062945, 1.153523, 0.599717, -0.625811, 0.499932, -1.739725, -1.246165, 1.393426, -1.170991, 1.420221, 0.146671, 0.691703, 1.770544, 0.410129, -0.277347, -0.496889, -0.282262, 0.161144, -0.003109, 0.391682, -1.913301, 1.702589, -0.905387, -0.948773, -1.219909, -0.274652, 2.029768, 0.054819, 1.631171, -0.312363, 0.316096, -1.737762, -1.139022, 0.363470, 0.070296, -0.205450, -0.141973, 0.790878, -1.675400, 1.016219, 0.862000, -0.704032, 1.555890, 0.653741, 0.199650, -0.866674, 1.089764, -1.806747, 1.496937, -0.910328, -0.384723, 1.436167, 0.501983, -0.918668, 0.122775, -0.393511, 0.796743, 0.298759, 0.541038, -0.602160, -0.773421, -0.228901, -0.656107, 0.074203, -0.770302, 0.538581, -0.303661, -0.666941, 0.939056, -0.193099, -0.806129, 0.171128, 0.135910, -0.889179, -1.507249, 1.433962, 0.086450, -1.557401, 0.693330, 0.511984, 0.709194, 1.243803, -0.010788, -2.162631, -0.462520, -0.690970, 0.149419, -1.870817, -0.593309, 0.051979, -1.094997, 1.062970, 1.069576, -0.552826, -0.472625, -0.110996, -0.485272, -0.035808, -0.470757, -0.905508, -0.404049, -0.250860, -0.809322, -0.920666, -0.858982, -1.024539, 0.304887, -0.829885, -1.763292, 1.248852, 0.310953, -1.086531, -0.408220, 0.533591, 0.574858, -0.036193, 1.158090, 0.501626, -1.657695, 0.628435, -1.812670, 0.586179, 2.386621, -0.196647, 0.058910, 1.350289, 0.913917, -0.228972, 1.635535, -0.578103, -0.636163, 0.628620, 0.365614, -0.450990, 1.035743, 0.325313, -1.552722, -0.507806, 0.673365, 0.497030, -2.422032, 0.206748, 0.077870, -0.695722, -0.171518, -0.482666, -1.231332, 0.169837, -0.197728, -0.250104, -0.501338, -1.109844, 1.353972, 1.741982, -1.546448, -1.193241, 0.863484, -0.764545, 0.299858, 0.903792, 0.168954, 0.434603, -0.256725, 0.204433, 0.255486, -0.569416, 1.111591, -0.589532, 0.772095, -0.277611, -1.584597, -0.039704, -0.311766, -0.806648, 0.748299, -0.186911, -0.095017, -0.857828, -1.855176, -0.749418, -0.537120, 0.906840, 0.728139, 0.431566, -2.200808, 0.298613, 0.404024, -0.554505, 0.039144, -0.190084, 0.307274, -0.635394, -0.330139, 0.047682, 1.484271, 0.435275, -1.464609, -0.641558, -2.197641, 1.172760, -1.126817, -0.721477, 0.891905, 0.384832, -0.257181, -0.534207, 0.718402, -1.737280, -0.562105, -0.083797, -0.187823, -0.144477, -0.310975, 1.526544, -0.371896, -0.599711, -2.007981, -0.039289, 2.547472, -0.402012, 0.702228, -0.135993, 0.854555, 1.608021, 0.646722, 1.691228, 0.784989, -0.361904, 0.789856, -0.738853, 1.317488, 1.484456, -1.020583, 0.754733, 0.929543, 1.457763, 0.531043, 0.456323, 1.113777, -1.733092, -0.039858, 0.323808, 0.310869, -1.110731, 0.948708, -0.659561, -0.221477, -1.910303, -1.348179, -0.035803, -0.739822, -0.867290, 0.135653, -0.133181, -1.231161, 0.161164, 0.004613, -0.944633, -0.380505, -0.636586, -1.335801, -0.523350, 1.081193, -1.612400, -0.957104, -0.397939, 1.674672, 1.736173, 0.800061, 1.575780, -0.054048, 0.503796, -0.927308, -0.032023, -0.006490, 0.735759, 0.988797, 0.832221, -0.451748, -0.072399, -0.731225, -1.107053, -1.348030, -0.849014, -0.044432, 1.592745, -0.321245, 0.418733, -0.860437, -0.041006, -0.426162, -1.199735, -0.685249, -0.692098, 0.665532, -0.446871, -0.803686, -0.336097, 1.185549, 1.640646, 0.920483, 0.362856, -0.747166, -0.878605, 0.065655, 0.891514, -0.676280, -0.238851, 0.570924, 0.982844, -0.897994, 0.378810, 0.617552, 0.624882, -1.365948, 0.237839, 1.612579, -0.722570, 1.295749, 1.883882, -1.010599, 0.450121, -0.103328, 1.325813, 0.850800, 0.361835, -0.843106, -0.252553, -0.089484, -0.713631, -0.771185, 1.010320, -1.066910, 1.249023, -0.356105, 0.365615, -0.359782, 1.356814, 0.144046, -1.598168, 0.341354, 1.400134, 1.131085, -0.431279, -0.231153, 1.323714, 1.464506, 0.416368, 0.844082, -1.398146, -0.569986, -0.346376, -0.088051, -0.299739, 0.099859, -0.718104, -0.317217, -0.083631, -0.615749, 0.749467, -1.649572, -1.043353, 3.296429, 1.228093, 0.424277, 0.460783, 1.009937, 1.066722, 0.897799, -2.256654, -0.281492, -1.606938, 0.099448, -0.792943, 0.652756, 0.257271, 0.773974, 1.227638, 1.856210, -0.526037, -0.441477, 1.461683, -0.321216, 0.857739, -0.232420, 0.374446, -1.558555, 0.759070, -1.210058, 0.101625, -1.188401, 1.634005, -1.912245, -1.268503, 1.326387, 1.682222, -0.700577, -1.293992, 0.130906, 0.747009, 0.336569, 1.525643, 0.293493, -1.085115, 0.307923, 1.760993, 1.602075, 0.679392, -0.688872, -0.335261, 1.068089, 1.150251, 0.001606, 0.807504, -1.238450, 0.438407, -0.530102, 1.539490, 1.248893, 0.550168, -0.496175, -0.343462, 0.807699, 0.749460, 0.604133, 0.523578, 0.939856, -2.223059, 0.348713, -1.583133, 0.590603, -2.207892, 0.205859, 2.845743, -0.601797, 0.515227, 1.462294, -1.278958, -0.450504, -0.729369, 0.257196, 0.906311, 0.925095, 0.235388, -1.027290, 0.770556, 0.008148, -0.166225, 0.530109, -0.481677, -1.027662, 2.646672, -0.403595, -0.112165, 2.280207, 0.618663, 1.492420, 0.249828, -0.994669, 0.134901, -0.098705, 0.485339, 1.411144, -1.451605, -0.737407, 0.016873, -0.370914, 2.376381, 0.203412, 1.183406, -1.245265, 0.853063, -0.142579, -0.341641, -0.404791, -1.237379, 1.192230, 0.468696, 0.177825, 1.423853, -1.353276, -0.364712, -0.654977, 0.375936, 1.102526, -0.905154, -0.064193, 0.519175, -0.132142, -1.612500, -0.536691, 0.705911, 0.049593, -1.340713, -0.306368, -0.415248, -0.386745, -0.036232, 1.288242, 0.364874, -1.954355, 0.026297, -1.167822, 2.342176, 0.625771, -0.709525, 0.664916, 1.534291, 0.558042, -1.796731, 0.312850, -0.524267, -0.941880, 1.338031, -0.413712, 1.677677, 1.012361, 0.288056, 1.020401, 0.579319, 0.644758, -1.409274, -1.177052, -0.842983, 0.390553, 0.036650, -1.080086, 0.455347, 0.421183, 1.202336, -1.717638, 0.295792, -0.630511, 0.609045, 1.459697, -0.402052, 0.762390, 0.490658, 0.047406, -0.413763, 0.959116, 0.485756, -0.155767, -0.513600, 1.262898, 0.236811, 0.167723, -0.950298, 1.003948, -0.136740, 2.595243, -0.232270, 0.230690, 2.147994, -0.165027, 0.077102, -0.008163, 0.606917, 0.506880, 1.434801, -0.087849, -1.097588, 0.413168, -0.008091, -1.127354, 0.505414, 0.145078, 0.544565, 0.595050, -0.038984, 0.164615, 0.061028, 1.689529, -1.358708, 0.537192, 0.552490, 1.110669, 0.513174, -1.633927, -1.320397, 0.750593, -0.419496, 0.234976, 0.599514, -0.196818, 0.473245, 0.427197, 0.636675, 0.437931, -0.847592, 0.635232, 0.608306, 0.544805, -2.151765, 0.660979, 1.358301, 0.220936, 0.979491, 0.550677, 0.924508, -0.544621, -0.088244, -1.228881, -1.166786, 0.586942, -1.213887, -0.291581, 0.656091, 0.871011, -1.888888, 0.321120, -0.083104, 1.313894, -0.480184, -0.019725, 1.083493, 0.136143, -0.116530, 0.337754, -0.596832, -0.182936, -0.400993, 0.137596, 0.186779, -0.290284, 0.855913, -0.568564, -0.322710, -0.127970, 1.078320, -0.381064, 0.195457, -0.479098, -0.257270, 2.063518, 1.182179, 0.172272, 0.200944, -0.997679, -1.705527, -0.538999, -0.293451, 1.967613, 0.585712, -1.039815, -0.696163, -1.991486, -1.750369, -0.112912, 0.421217, 0.164403, -0.929998, 1.275068, 1.256736, 0.347074, 1.593689, -1.577506, -0.338943, 0.528762, 1.139492, 0.080278, -0.747196, -0.644865, -1.386455, 1.417607, -1.017719, -0.825327, 0.621719, -0.199350, -0.533169, -0.229525, -0.988087, 0.185558, 0.518862, -0.466026, 1.035567, 0.762580, 2.280176, 0.018097, -0.194079, 0.223281, -0.753285, -0.479207, 1.156660, 0.615799, -0.467497, -0.507059, -0.773106, -0.436162, 1.782272, 0.089257, 0.093301, 0.493508, 0.444717, 0.062130, -0.624458, 0.173025, -1.055949, -0.311581, 0.649770, -0.203692, -1.662702, 1.382182, -2.119356, 1.264618, 0.941554, 1.589581, 0.008521, 0.648849, 1.201220, 0.486516, -0.412192, 0.259574, 0.562220, 0.587681, 0.473480, 2.242176, 0.168571, 0.448692, -0.247265, 0.043981, 0.193791, -0.674711, 0.787991, 0.304379, 0.853450, -0.306855, 0.453613, -1.064264, 0.678720, 0.345252, 1.264215, 0.778402, -0.446007, 0.174164, -1.892984, 0.338363, -0.141608, 1.193465, -0.306873, 0.063093, -0.976017, 0.909423, 2.153821, 1.216291, -0.217814, 0.792182, -1.364542, -0.311781, -0.609859, -0.004094, 0.864263, 0.503064, -0.357742, 0.250735, -0.465633, 0.271054, 1.093027, 0.752472, -0.401189, 0.702297, -0.833594, 0.376878, -1.206031, 0.619242, 0.789674, 0.280084, 1.699700, 0.335773, 0.522003, -1.388623, 0.364065, 0.246447, -1.377469, 1.622360, 0.853139, 1.281503, -0.588270, -1.924791, -0.081630, 0.664977, -2.220873, -0.507614, 1.455386, -0.023258, -2.616554, -0.783240, 1.275235, 0.210615, 0.668982, -0.341963, -0.133156, -0.188165, -0.761083, -1.865884, 0.264002, 2.011538, -0.502541, 0.794737, 0.040583, 0.717701, 2.750488, -2.099854, -0.236572, 0.434131, 0.280155, -0.096384, -0.814380, 0.689470, -0.097851, -0.536864, -1.792851, 0.362632, -0.605441, 0.928975, -0.059241, 1.250592, 0.231455, 1.537788, -1.756790, -0.805219, 0.599354, -0.601618, -0.071614, -0.690667, -0.585035, -0.993308, -0.038608, 1.260527, -1.694519, 0.898607, 0.326081, 1.111762, 0.208815, 0.295496, -1.093995, 0.330929, -0.345460, -0.547397, -1.199095, 0.447698, -0.536069, -0.184459, 0.095249, 1.918081, 0.902853, 0.147231, 0.283685, -0.478925, -1.013443, -0.524835, -2.012941, 0.557792, -0.440551, 0.796195, -0.236169, -0.231305, -0.346122, 0.031089, 0.175063, -1.407484, 1.476342, -1.454419, -0.094503, -0.968439, 0.453298, -0.248137, -0.085221, 0.684015, -1.239114, -0.220780, -0.297968, 0.547638, 0.160482, 0.605147, -0.411580, 0.238827, 1.420808, 0.176964, 0.111434, -3.013918, -0.014649, -0.219162, 0.555873, -0.653489, -0.174592, -1.757824, 1.057050, -0.500878, 0.088884, 0.408193, 0.584779, -0.424927, 1.067335, 0.716683, 1.136618, 1.250282, 0.943719, -0.444078, 0.353127, 0.474285, 0.697131, 0.301001, 0.070273, 0.295633, -0.118023, 2.213416, 0.673643, -1.809079, -1.053497, 0.940908, -1.111686, -0.485453, -0.442074, 0.616345, 0.773987, 0.401916, -1.426265, -0.828857, -1.160838, -0.498402, -0.502588, -0.390914, 0.408495, 1.042826, 0.259912, 0.397048, 0.366097, -1.187452, -1.266320, -1.409554, -0.198630, 0.336969, 0.236132, 0.688800, 1.160730, -0.794884, -1.127018, -1.898856, 0.430218, -0.580454, -1.182273, -0.008485, -0.664873, -0.154287, -1.855018, -0.315561, 0.594618, 0.156397, -0.990932, -0.285178, 0.030618, -0.597638, 0.309227, -0.124282, -0.483613, -1.000528, -1.254569, 0.296265, -0.734271, -0.258935, 0.314812, -0.323550, 0.203660, 1.067716, 0.454105, -1.533162, -0.868622, 0.457334, 0.422939, -0.905686, -1.128363, -0.308602, 0.356057, 0.037947, 0.813185, 0.139759, 1.032398, 0.511743, -0.701915, 0.811349, 2.197262, 0.107360, -3.144045, -0.438435, 0.632529, 0.634174, -0.934210, -1.015326, 0.660052, -0.020428, 3.063007, 0.151523, 1.664092, -1.170523, -0.051964, -0.418597, 0.286760, -0.120691, 0.610679, 0.488721, 0.140834, -2.026168, -0.683205, -0.952227, 1.095540, -1.272390, 0.165779, 0.143650, -0.177153, 0.776105, 1.718346, -0.622182, -1.368826, -0.226495, -0.375402, -0.600122, 0.551821, 0.256729, -0.834246, -0.235475, -0.430114, -0.141997, 0.246114, -1.319775, 1.234124, -0.055051, 0.931477, -0.815075, -0.485913, 0.599724, -1.355686, 1.889035, 0.371242, -0.213945, 0.644525, -0.854372, 0.033596, 1.431899, 0.827644, -0.074507, -0.853430, -0.039568, -0.201701, 0.274881, 0.774734, 0.604446, -0.388604, -0.304595, 0.832142, -0.047864, -0.590257, -1.596392, 0.095092, -0.499265, -1.437366, 1.102387, 0.943053, 0.921375, -0.298352, 0.310080, -0.855457, 0.457050, 0.627150, 0.621598, 1.062618, 0.172132, -1.004350, 0.350967, 0.438434, 0.506927, 0.568052, 0.035121, 0.126039, -0.869337, 1.251603, 0.389111, 0.413011, 2.273998, -0.173872, -1.347881, -1.397752, 1.070369, -1.369381, -0.933375, 0.130784, -0.256955, -0.492628, -0.457413, -1.313627, -0.916459, 0.379457, 2.024149, -0.377968, -0.511258, 0.380677, -1.490378, -0.216474, 0.453213, -1.654202, 0.500875, 0.313696, -0.218727, 1.294257, -1.052777, -1.162766, -0.329474, 0.443310, 0.926984, 0.734196, -0.313833, -0.536964, -0.850161, -0.073117, 0.269831, 1.137813, -0.896184, 1.569266, 2.288167, 0.480084, -1.403326, -0.723392, 1.285950, -0.978712, -0.682720, 0.349229, 0.307643, -0.622686, -0.635878, 0.907330, -0.833647, 0.929480, -1.659156, 0.670081, 0.099305, 0.605339, -1.338404, 1.164277, 0.085141, -0.897864, -0.007901, -0.348718, -1.552203, -1.411823, 0.629113, 2.019856, -1.655093, 1.015239, 1.213711, -0.646957, -1.280417, 0.731609, 1.273109, 2.982097, -0.501612, 0.149174, -1.361744, 1.007280, 0.041594, 0.623354, 1.959705, -0.365849, 0.255888, 1.180068, 1.222010, -1.247393, -0.384186, -0.799678, 1.312484, 0.885424, -0.099390, -0.296407, 0.093779, 1.155799, 1.224169, -0.125974, -0.447139, 0.067962, -0.671463, -1.827422, 0.534484, -1.683346, -0.871176, -0.216978, 0.735714, -0.607474, -0.562491, 0.372060, -0.546640, -1.482228, -2.381752, -1.157801, 0.580958, 1.862015, -0.989200, 0.699195, -0.344938, 1.063473, 1.035414, 0.102474, 1.946922, -0.030485, 1.672778, 0.870936, -1.104537, 0.716366, 0.331200, 2.079284, 0.883363, 0.700259, 0.428294, 0.943707, 0.612809, -0.305937, 1.784831, 0.324182, -1.264796, -0.039312, 1.297713, -0.308882, -0.004073, 0.605665, 2.284854, -0.094529, 1.471711, -0.491383, -0.435127, -1.271344, -0.432047, -0.323831, -1.183147, 1.045743, 1.255991, 1.267422, -0.176005, -0.067681, 0.310914, 0.552236, 0.296777, 0.604606, -0.698440, 1.316776, 0.583977, -1.606732, 2.056622, -1.177182, -0.698653, 0.595339, 0.670291, 0.230968, -0.494704, 0.991033, -0.953058, 0.346411, 0.155078, 1.240753, 1.177978, -1.357898, 0.845690, -0.055203, 0.308006, 1.287266, -0.987258, 0.491044, 0.509639, -0.312147, -0.986800, -1.413673, 1.572711, -0.992444, 0.027936, -0.792579, 1.021064, 0.160936, 0.215930, -0.326364, 1.538146, 0.200636, 0.545022, -0.392122, -0.496887, -0.371369, -0.779789, 2.514299, 0.983351, 0.986715, 0.884257, -2.172733, 0.915628, -0.279699, 0.425701, 0.795868, -0.093827, 0.293086, 0.053747, 0.249649, 0.087901, 0.074831, -0.358082, -0.914261, 1.733716, 0.332806, -0.920503, -0.509985, -0.703542, -0.448257, 1.115618, 0.179448, -2.387473, 0.473730, -1.543624, -0.884990, -1.667883, 0.261726, 2.138487, -0.140142, -0.702002, -0.323754, -0.843009, -0.245430, 0.197724, 1.492261, -0.555760, 0.526394, 0.197187, -0.864529, -0.331843, -0.853948, -0.832956, 1.181706, -0.981755, -1.714269, -0.780790, -0.269935, 0.916357, 0.186764, -0.555839, -0.531080, 1.581545, 0.712722, 0.597727, -0.524714, 0.309824, -0.165208, 0.995425, -0.546688, 1.138030, 0.195362, -0.870045, 0.982253, 0.023775, -1.197108, -1.472794, 1.135001, 0.051307, 0.440407, -0.611230, 0.467652, 0.701660, 1.321133, -2.055504, 1.041947, 1.050375, -0.203508, 0.730350, 0.354337, 0.976108, 0.718069, 0.254663, 1.092473, -0.445240, 0.808010, -1.110190, -0.498094, -0.635809, -0.068077, -0.134805, 1.675222, 0.893168, -1.097393, -0.925668, 0.255953, 1.715100, -0.436942, -1.633330, -0.802217, 0.444239, -0.330183, 0.741084, -2.005059, 0.159326, 1.075375, -0.288271, 1.121832, 1.096496, 0.357911, 0.596352, 1.291192, -1.297026, 2.837612, -0.408237, 0.569502, -0.648334, 0.088402, -0.130878, -0.685938, 0.736593, 0.503078, 1.236803, 0.682536, 0.077162, 0.201174, 0.622439, 1.359375, 0.752603, -0.277494, -0.089647, -1.602266, 0.172767, -0.591492, -0.650329, -1.543439, -0.550077, -1.475950, 0.920512, -2.752381, 0.176273, -1.041797, -2.095566, 0.787574, 1.202626, -1.095731, -0.319220, 0.190852, 1.358204, 0.421123, 1.090780, -2.017048, 0.526140, 0.004855, 0.088146, -0.957855, 0.304491, -0.922074, 1.251878, 0.476879, -0.747217, 1.117807, 0.196092, -1.440298, -1.399828, -0.326509, 1.539776, 0.754291, -0.435861, 0.433321, 1.181005, 0.363529, 1.908593, -0.261205, -1.803188, 0.690525, 0.013410, -0.662700, 0.448424, 0.599291, -1.829095, 0.232869, -0.349461, -1.469929, -0.098700, 1.435506, 1.647498, 1.027361, -0.721582, -0.565761, 0.709328, 0.000125, -1.099155, -1.107491, 0.454791, -2.261746, 1.149467, -0.476590, -0.702307, -1.006639, -0.521253, 0.788968, -0.155312, -0.381375, -1.101716, -0.141268, -0.660108, -0.679916, -1.320218, 1.479250, 1.507832, 0.968821, 0.285130, -0.353535, 1.703116, -0.427587, 0.563161, -1.350061, -1.148522, -1.651166, -1.109747, 1.211116, 1.148960, -1.704156, -0.582008, 0.238850, -0.310886, -0.169408, 0.055247, 0.719357, -0.058472, -1.575884, 0.465986, -0.965719, -0.838065, 0.361164, 0.522814, 0.076076, 0.954925, -1.603143, 0.700436, -1.245348, -0.079459, 0.561385, -1.219365, 1.994697, 0.758499, 0.240087, 0.064408, -1.727290, -0.751493, 0.072077, -0.708423, -1.014759, 0.067955, -0.047954, 0.790485, 0.420138, -0.743439, -0.529251, -1.221190, -0.892678, -0.065633, -0.798286, 1.419744, -0.529502, -0.062380, -1.028012, 2.046545, -0.336631, 0.100954, 0.319248, -1.584275, -1.824061, 1.673385, -0.772400, 1.028574, 0.327589, -0.549963, -0.640309, -0.530502, -1.560275, 0.886680, 0.006966, 2.382656, 2.359744, 0.564725, -1.166945, 0.394581, 0.441447, 0.551799, -1.454235, 0.335578, 0.588766, -1.163539, -1.159530, -0.652836, -0.633751, 0.128373, 1.437112, 1.501418, 0.527015, 0.232558, 1.456230, -0.503982, -1.043733, 1.738922, 0.518337, 0.664774, 0.966451, -1.251112, -0.380935, 0.362857, -1.606999, -1.476807, 0.367791, -1.101447, -0.151663, 0.007021, -0.830746, -0.252380, -0.290619, 0.004900, 1.306902, -1.156433, -0.505639, 0.931232, -0.443121, 0.094784, -0.706438, -0.910635, -1.259470, 0.029562, 2.076075, -1.921974, -0.068235, 0.001861, 0.996305, 0.340029, 0.440569, -0.240653, 1.008124, -0.155498, -0.429653, -0.430542, -0.668176, -0.482622, 0.159948, -0.768951, -1.483923, -0.485705, -1.473952, 0.127729, -0.401044, -0.955716, -0.827374, -1.175198, 0.851187, 0.737552, 0.558656, 0.344002, 0.572444, 0.910407, 1.489226, -0.659754, -0.503414, -0.565406, 2.420453, 1.024422, 0.734636, 1.819494, -1.382054, -1.016789, 0.100615, 1.888994, -0.482837, -0.145605, 0.592694, 0.481272, 1.359893, 1.665366, 1.386322, -0.787736, 1.263130, 0.461985, 0.234356, 1.404367, -1.192254, 0.512577, 1.704309, -0.827800, -0.506396, 0.914222, -0.503646, -0.313012, -1.508489, -0.651324, -0.973052, 1.036229, 0.901202, 0.852467, 2.172481, -0.374160, -1.923445, 1.033895, 2.930909, 1.677596, -1.025203, -0.003616, -0.130114, 1.888597, -0.981159, 1.903740, 1.212058, 0.022061, -0.349958, -0.651606, -0.572516, 0.274358, 0.268005, -1.687611, -1.171629, 0.499717, 1.017316, 0.367696, 1.568323, 0.778355, -0.315373, -1.356690, 1.037716, 0.062099, 0.687052, 0.984748, 0.470240, -1.122137, 0.350402, -1.587572, -0.211998, 1.098278, 0.364058, 0.670238, -0.156440, 1.102625, 0.760424, 0.211939, -1.002941, 0.168052, -1.057274, 1.454049, -1.411544, -0.098932, -0.308145, 0.241473, 0.745247, -0.314956, 0.450311, 0.117805, 0.492505, 1.545526, -0.038071, 0.033780, 2.010406, 0.120157, 0.957409, -1.032133, 0.458434, 0.962205, -0.236621, -0.684141, -2.161510, -0.782801, 1.179275, -0.396880, -0.235410, 0.802283, 0.730784, 1.013500, 0.372364, 0.821909, 1.047508, 0.902454, -0.646596, -0.876804, 0.176571, 0.467616, 1.985710, 0.656512, -0.139839, -0.680056, -0.066643, -1.185840, -1.813197, -0.277215, 0.018833, 0.657233, -0.069929, -0.393180, 0.187068, 0.824906, 0.567316, 0.132388, -0.308200, -0.899512, -1.765707, -2.908447, 0.803933, -0.899792, 0.151271, -0.246429, 1.332421, -0.386421, -2.262383, -0.631701, 0.319570, -0.116320, -0.914068, -0.312951, -0.496925, -0.891916, -0.784169, 0.297470, -0.658369, 1.004445, 1.245341, 1.975976, -0.980490, 0.265684, -0.255210, -1.107656, 0.546400, 0.785175, -0.145784, 0.616748, 0.465158, 1.590526, 0.352594, -1.015762, 0.270768, 0.205208, 0.795052, 1.519890, -0.375387, 0.574211, -0.370970, 0.222691, -0.349349, 0.192322, -0.594630, -0.907619, -0.190014, -1.185655, 0.272753, 1.587674, 1.161592, 0.462038, 0.484842, -0.019056, -2.118700, 1.443076, 0.593569, 0.424985, 0.062940, -0.095318, -1.146824, -1.959402, 0.829239, 1.633918, -0.280228, -1.063364, 1.249821, -1.000996, -0.359783, -0.412490, 0.570566, -0.633122, -0.288672, -0.407366, 0.350827, -0.757071, -1.522758, -1.751824, -0.448034, 0.454998, -0.830849, 0.103922, -0.761929, -0.008269, 0.566453, 0.938852, -1.981556, -1.155640, -1.524010, 0.963338, -1.123288, 0.774067, -1.511966, 0.737242, -1.091010, 1.052326, -1.910565, -0.069092, 0.785770, -0.862919, 0.161439, 0.191427, -2.172789, -0.710060, 0.273590, -0.687805, -0.883376, 3.162315, -0.882357, 0.520708, 0.779158, -0.780040, 0.651513, 1.741372, 0.617430, -1.170265, -0.911421, -1.470328, -0.128188, -1.159915, 0.573693, -1.241283, 1.303776, -0.210447, -0.209450, -0.472948, -1.231820, -0.325695, 0.143855, 0.626983, -0.777071, 0.179327, 0.667350, 0.203690, -0.891150, 1.014351, -0.830957, -2.101807, -0.012138, 0.710210, 0.717035, -0.622401, -1.728435, 0.280232, 0.077969, 1.631599, -0.748923, -1.951986, -0.400807, -1.448743, 1.533525, -0.889200, 0.450216, 0.641524, 0.497361, -0.285736, 0.004426, -1.513625, 0.833978, -0.916147, 0.098262, -0.532298, -1.330080, -0.975145, 0.457690, 1.377541, 0.519594, 0.339239, 0.647109, -0.119263, -0.556650, 0.218947, 0.021733, -0.143415, -2.344608, -1.879485, -0.056608, 0.955428, 0.553497, 0.422710, 0.490186, 0.753981, 1.167394, 0.250707, 0.867650, 0.863333, 0.554288, -1.674255, 0.675413, -0.480305, 2.972471, -0.833941, -1.543609, 0.810846, -0.349685, -0.384512, -0.563449, 0.580341, -2.219890, -1.988385, 0.610690, 1.716722, 1.159096, -0.032151, -0.423654, -0.416435, 0.593664, 0.119367, 0.891505, -0.747347, -0.767704, 0.288041, -0.653648, 0.421060, -1.150721, 0.085754, -1.950429, 0.356548, -0.396448, 1.233036, 0.452971, -3.246009, 1.235285, -0.698394, 0.216465, -1.061694, 0.846054, 1.215517, 1.615848, -0.853116, -0.449410, -0.224634, 0.857915, -0.292091, -1.847311, 1.700395, -1.396772, -0.099243, 1.029881, 1.371751, -0.235334, 1.182792, -0.273085, 0.065096, -1.143261, 0.918131, 0.794846, 1.175060, 0.051927, 0.536081, 0.486799, -0.453196, -1.587476, -0.741171, 0.486967, 0.360644, -1.026515, 0.033601, -1.044481, -0.412918, -0.598754, -0.759864, -0.093545, 0.292356, 1.159179, 0.706248, 0.637053, 0.551897, -1.014312, -0.217860, 0.205756, -1.028986, -0.893177, -0.564251, -0.487110, -1.071049, 0.488441, -0.792787, 0.097260, 0.024613, 0.755771, -0.155682, 0.086548, -1.127772, 2.521429, -0.934870, 0.322835, 1.277360, -0.262616, -0.882835, -0.092712, 0.934894, -0.530604, -0.278054, -1.500881, -0.208462, -1.672725, -0.941590, 0.569523, 0.159525, -0.046336, 0.201087, -0.472248, 0.168054, 0.800862, 0.370948, -0.482440, 0.455688, 0.539341, -0.862171, -0.516521, 0.822494, -1.090393, -1.484401, 0.411054, -1.096611, -0.964070, 0.437406, -0.104813, 0.834125, 1.472704, -0.608250, -1.273579, 1.518826, 2.321128, 0.263796, -0.776486, 1.435783, -1.324236, 0.434425, 0.524862, 1.556289, -1.938194, -0.914763, -0.535110, -0.508190, -1.915703, -0.725912, -2.292933, 0.558342, 0.518904, 0.323175, 1.178150, 0.426547, -0.213415, 1.436912, 2.432859, 0.736886, 0.571655, 0.645860, 1.231013, 1.582064, -0.765513, 1.402441, -0.191858, -1.064373, -0.377191, 1.079476, 0.401809, -2.481400, -0.186557, 0.835196, -1.405536, 0.049807, 0.686579, -0.675896, -0.585518, 0.491837, -0.596569, -0.802917, -1.266745, 0.394863, -1.372541, -1.586751, 1.038270, 2.055848, 0.365939, 0.997490, 0.084050, -0.570786, 0.913017, -0.486857, 0.376424, -0.468679, 0.231063, -1.763772, -0.507522, -0.115440, -0.288785, 0.522118, 1.427845, 0.307951, -1.287141, 0.203074, 1.057344, 0.316632, -0.222739, 0.073249, 0.756280, -0.070279, -0.822806, 0.470546, -0.808535, -0.146559, 0.863172, 0.076059, -1.089635, -0.216319, 0.826497, 0.988639, -0.521205, -0.985828, 0.747315, -0.522233, -0.864016, -1.357048, -0.151733, 0.475297, 0.977428, -1.331935, 1.315165, -0.776000, -0.136812, 1.138204, 0.316542, -0.531433, 0.636499, -0.214966, -2.318053, 1.425497, 1.993480, -0.552785, 0.396205, 0.163127, 1.241685, -0.026614, 0.761883, 0.765679, -0.120293, -0.423937, -0.527392, 0.164604, -1.067609, 0.248180, 1.256958, 2.436015, -0.878712, 0.357371, -0.935548, 1.663144, -1.207206, 0.009869, -1.113580, -1.754721, -0.263996, 0.778409, 0.517802, 1.117160, -1.042248, -0.497135, 0.149409, 1.000652, -1.546691, -0.803195, 0.527898, -0.631157, 1.325081, -0.946442, -0.137733, -1.937147, 0.617108, 3.198472, 0.186704, -0.940352, -0.717166, -0.993984, 1.206617, -1.400762, 1.439830, -0.602108, -2.109967, -0.206252, 1.614274, -0.154729, -1.360389, 1.503991, 1.762359, 0.303531, -0.938569, 0.431105, 1.798255, 0.154913, 0.477865, -0.092355, 0.772611, -0.984700, 0.043640, 1.838004, -1.271862, 0.030863, -0.511314, -1.516170, 0.596530, -1.240831, 0.197891, -1.164738, -0.712793, -0.429485, 0.134250, -0.734635, 0.622906, -0.058721, -1.100663, 0.070589, -0.949798, -0.985846, -1.554170, -0.362901, 0.938372, -0.584915, 0.461763, -1.020154, 0.147155, 1.543824, 0.084560, -1.022256, 0.171802, 0.127091, 1.966016, 0.567871, -1.531694, -0.151075, -0.332457, 0.676251, 0.167103, -0.046942, -0.580992, 0.644613, 0.252655, -0.011560, -0.568257, -2.229907, 0.822496, 0.874718, -0.577739, 2.658702, -1.602708, 1.255744, 0.887679, -0.390492, 1.933449, -0.110791, -0.801445, 0.110379, -0.501591, -0.606547, -1.247899, -0.805969, 1.536897, -0.911686, -1.685953, 1.916739, 0.018037, -0.506987, 1.048849, -0.542152, 0.021590, 0.453320, 0.137357, 1.007987, -0.994972, 0.124273, -0.370572, 0.339897, 0.418449, -0.540360, 1.110835, -0.184036, 3.009731, 0.099027, -0.160311, 0.287887, -2.697294, -0.386904, -0.292122, -0.375448, 0.003555, 1.566751, -1.586660, 0.525199, 0.782661, -1.211303, -1.578896, 1.212422, 1.848550, -0.053970, 1.108913, 1.378591, -0.408931, -0.928571, 3.326382, 1.086381, -1.121282, 1.336658, 0.945066, -1.078083, -0.577008, -1.033338, 0.134627, -0.129577, 0.790852, -0.664828, -0.789038, -0.789827, 1.154601, 0.460997, -1.739856, -0.914739, -0.904195, -0.724823, -0.474839, 0.102348, -0.202742, -0.495732, -0.599532, -1.092822, 0.335616, 0.302772, -0.218412, 0.719305, 0.772232, 0.006407, 1.654623, 0.298861, 1.688659, -1.701889, 1.016420, 0.111276, 0.506934, -0.951470, -1.685934, -0.670856, -0.324380, -0.704697, 0.121137, -1.329978, -0.870626, -0.234748, 0.596578, 0.958373, -0.037665, -0.029015, 0.003726, -0.024609, -2.114817, -0.577442, -0.907189, 1.015327, 1.954068, 1.123420, 1.059387, 0.836423, 1.836553, 1.086375, -0.254418, -0.454348, -1.492264, 0.477155, 1.025832, -1.230900, 0.368380, 1.676087, 0.310874, -0.185035, -0.827384}, + { 1.463083, -0.422593, 1.505463, -0.241554, -1.386515, 1.389130, -0.440076, 1.505432, 0.958819, 1.211946, -0.322813, -0.750994, -0.637774, 1.381052, 0.548066, -0.126064, 0.114053, -2.886009, 0.713456, 0.270889, -0.900964, 0.370406, 0.787951, 0.795966, 2.091825, -0.185672, 0.503710, -0.427298, 0.532776, -0.716808, -0.939205, 1.338161, 0.511368, -0.888458, -0.648905, -0.263224, -0.045437, -1.465338, -0.068484, -0.740758, 1.266954, 0.898594, -0.882261, 1.708467, 1.318245, 0.480261, -1.311324, 0.897457, -0.578851, -0.307869, 0.627017, 0.570234, -0.833623, 0.821154, 0.304229, 0.181848, 0.447362, -0.252302, -0.380384, -0.676538, -1.822435, -0.725242, 1.031374, 0.287982, 1.382733, 0.881184, -1.643013, -1.932599, -0.774044, 0.988825, 0.634622, 1.047978, -0.368218, -0.925052, -0.889416, -0.564578, -0.329989, 1.958383, -0.090536, 1.483940, 2.464303, 1.319231, 0.619170, 1.852278, 0.050779, 0.232170, 1.292224, 0.444277, 0.590187, 0.415396, 0.489940, 0.901527, 1.422432, -0.474115, 0.029114, -0.649494, -0.247114, 0.408029, -0.786675, -0.289705, -0.720719, -1.341870, -0.348053, 0.259016, 0.600257, 1.045258, -0.957419, 0.233949, 0.169548, 0.555418, -0.512321, 1.213751, 0.289889, 1.051731, -0.069820, 1.233996, 0.578051, -1.181372, 0.401675, -0.241136, -0.817625, -1.030486, -0.023479, -1.631710, -0.129691, 0.062273, 0.422137, -0.053258, 0.659542, 1.074164, -0.152984, -0.511226, 2.002754, -0.632309, -0.157530, -1.095414, -0.243000, 2.821108, -0.926469, -1.323251, -0.644178, -0.248875, 0.440220, 0.933944, 0.766253, -2.290784, 1.010032, 0.904588, -0.160255, -0.039046, -0.426556, -1.447706, 1.359287, 1.124437, -2.045364, -0.539780, 0.219376, -0.145057, -0.658676, 0.603524, -0.174178, 0.865665, -0.925947, -1.663678, 0.094041, 1.007999, 0.606139, 0.414910, -0.965923, -0.569209, 0.247629, 1.276643, 0.249693, 0.854798, -1.545011, -0.577943, -0.815316, 1.433076, -1.255241, 0.051703, 1.438666, 0.293192, -0.468189, -0.371958, 1.064451, -0.198575, 1.408245, -1.092882, -0.120101, -0.086920, -0.202087, 0.115138, -0.355783, 0.346410, -0.274547, -1.224545, -0.561715, 1.085639, 0.289547, 1.308980, -0.252044, -0.163348, -1.407008, 0.690892, -0.070317, 2.932163, -0.197223, 1.222656, -0.732611, -0.187020, -0.061772, 0.517078, -0.577477, 0.938540, 1.626285, -0.313158, -0.550513, 0.857280, -2.422043, -0.896528, 0.848986, 0.913259, 2.078492, -0.377817, 1.239886, 0.080463, -1.844394, 0.136906, 0.853955, -0.244380, 1.246057, 0.217663, -1.113694, -0.409519, 1.201081, 1.308154, -0.873689, -0.505884, -1.662602, -0.083540, -0.913006, 0.444960, 0.124471, 0.676250, 0.594916, -0.019401, -0.334825, 1.196333, 1.047678, -0.595635, -0.074054, 0.489929, 1.113536, -0.457328, 1.277865, -0.357117, -0.959804, 1.028927, 0.454104, 0.787294, -0.127688, -0.142912, -0.912191, 0.547964, 1.413468, -2.854172, 0.996276, -0.877576, 0.022095, 0.571744, -0.017863, -0.903361, -1.327670, 0.709660, -0.444917, -1.463766, 0.162170, -0.399070, -0.775082, 0.204557, -0.915662, -1.398666, -0.033778, -1.224466, -0.790206, 1.404809, -1.602560, -0.566840, -0.662185, 0.178099, 0.998191, -2.521236, 1.390752, -0.492537, -1.025408, -0.785105, -1.182054, 0.612622, -1.845123, 1.218117, -0.105511, 1.704905, -0.442944, 0.344820, 0.708059, -0.917305, 0.793661, 0.180332, -0.898945, 0.258629, 1.480507, 1.093272, 0.681000, 0.012193, -1.034033, -1.569363, -0.210513, 0.705476, 0.449104, -0.051273, -1.019887, 1.669025, -0.751012, -0.628909, -0.083270, -1.821194, 0.800022, 2.427250, 0.443614, 0.304541, 0.747911, -0.169420, -0.904272, 2.514867, 0.245856, 1.632448, -0.762919, -0.209119, 0.049385, -1.589729, 0.948483, 0.236501, 2.077460, -1.733226, -0.875441, -0.142843, -1.700648, -0.137395, 0.024392, 0.097358, -2.138648, -0.106727, 0.137434, 0.821791, 0.973994, 1.521879, -1.158079, 0.386975, 0.670921, 0.895037, 0.170402, 2.223875, -0.823823, -2.126691, -1.504934, -0.299998, 0.094464, -2.015715, 0.130019, 0.003191, -0.282077, -0.718410, -1.898619, -2.224198, -0.790712, -0.366862, -0.258817, -1.126168, 0.611796, 0.518503, -0.404919, 0.717330, -0.028573, -0.588446, -0.996154, -2.116879, 1.048993, -0.865295, -0.110260, -1.171131, -1.101144, 0.491418, 0.591424, -0.118359, 0.083128, -1.088060, 1.102987, 1.854937, -0.772271, -0.914412, -1.576852, -0.559847, -0.651418, 0.104693, 2.123291, 1.923983, 0.089423, -0.359738, -1.786474, -1.144172, 0.879001, -0.532192, 0.108946, 0.323678, 0.614816, 0.412863, -1.018183, -1.218906, 0.837569, -1.021422, 0.938307, 0.792073, -1.961305, -0.030533, -1.034175, 0.111338, 0.094186, -0.847779, 0.408266, -0.938794, 0.594150, -0.715830, -0.795749, 0.516614, 2.437080, -0.599323, -1.408864, -0.453664, 0.615877, -0.086873, -1.041776, -2.383410, 3.156408, -0.556290, -1.190379, -0.622245, 1.504269, 0.349749, -0.058662, -1.393360, 0.179862, -0.151126, -0.849941, -0.364632, -0.528944, -1.052577, -1.997191, 0.519329, 0.595623, 0.334534, 2.134766, -0.192607, -0.306883, 0.573016, 0.135832, 0.768289, -0.076635, -0.443870, 1.459083, -0.526757, -0.448050, -1.520194, -0.449561, 0.560005, -0.578036, -0.268174, 0.858826, 1.152279, 1.419171, -0.328678, -0.071260, -1.084192, 0.555109, 1.100901, 0.319228, -0.949782, 0.297357, 0.090072, 0.864504, 0.917468, 0.576084, 1.082713, 0.513510, -0.043335, 0.295377, -1.579695, -0.244816, 1.039186, 1.259287, -1.456241, 1.601870, 0.366654, -1.168208, 0.621312, 0.790020, -0.990963, 0.087922, -0.469035, 0.332328, 1.071768, -0.544952, 1.279473, 0.401712, -0.777214, 1.598492, 2.720704, -1.592220, -0.028937, -0.133522, -1.481804, -0.414559, -0.768919, -0.649499, -1.031639, 1.674990, -0.632441, -1.181652, -0.748845, 1.293687, 1.191815, -0.947192, -1.077136, -0.395310, -0.726435, 0.704260, -0.173239, -0.604234, 1.706261, 0.603246, 0.082911, 0.449418, 0.342870, -1.214765, -0.616459, -1.138420, -1.239462, -0.829734, 0.298012, -0.438737, 1.119083, -1.747199, 0.075827, 0.750317, 0.015959, 2.673993, 0.695316, -0.295101, 0.573259, 0.606363, 0.359317, -0.363445, -0.028387, -0.947399, -1.315650, 0.849546, -0.220756, -0.887965, 0.228625, -1.342103, -0.549175, -1.475137, 0.501268, -3.811178, -0.955225, 0.486296, 1.783510, 1.178837, 0.131082, 0.743665, -1.005692, -0.253365, 0.201155, -0.495085, 0.660715, 0.935911, 0.475713, -2.093667, 0.189219, 0.687746, -1.162282, 0.765370, -0.473079, -1.178207, -0.567789, 2.700521, -0.048847, 0.278716, -0.793269, 0.088162, 2.537305, -1.130521, -1.932532, 2.472336, 0.926509, -0.631188, 0.261391, 0.770591, 1.639942, 0.320703, 0.212401, -0.410104, 0.436704, -1.368510, 1.233343, -0.898163, -0.327058, 0.442677, -0.645411, -1.465860, -0.201130, -0.482415, -1.197139, 2.508349, 1.212023, 0.351047, 0.387545, 1.278681, 0.488864, 1.148973, -0.691036, 0.252424, 1.868212, 0.438444, -2.887588, -0.537036, -0.684071, -1.741831, 0.055706, -0.504995, 1.342336, 0.416253, 0.208315, 0.138326, 0.750489, -0.597545, -0.653041, 0.300722, 0.259019, 1.366061, -0.070968, -0.103294, -0.681356, 1.189079, 0.224627, -1.627360, -1.235841, 0.092197, 0.546120, 1.011409, -1.468901, 0.344382, 1.604989, 0.762395, -1.833910, 1.369965, 2.207117, -2.378839, 0.289389, -0.289958, 0.708922, 0.095479, 1.161928, 0.336401, -1.370665, 0.734498, 0.965329, -0.849018, -2.434349, 0.306106, -0.781257, 0.594293, -1.429602, 0.841641, 0.256158, -1.209145, 0.864806, -0.102022, -0.143145, 0.021417, 1.008262, 0.982015, 0.092831, 0.165202, -0.252263, 0.220545, 0.348633, -0.846917, -0.616212, -0.181726, -1.024299, -1.592690, 0.965261, 0.041398, 0.674359, -1.057345, -0.683720, 0.655972, -0.015530, -0.323909, 0.549081, 1.071910, 0.364225, -0.824464, -0.001709, 0.267600, 0.525355, 0.386475, -0.452447, -0.404434, -1.440732, 0.976957, 1.293394, 0.147899, -1.772454, -0.921953, 1.576577, -1.693166, -1.488782, -0.414513, -2.135588, -1.214201, 0.803253, -0.690416, -0.010669, -0.402725, 0.632358, -0.043319, -1.908834, -1.491129, 1.808186, -1.874046, -0.281751, -1.075587, -0.559680, 0.298088, 0.643733, 0.610926, 0.704458, 2.016152, -0.031613, 0.646952, 0.569395, 2.508410, -0.179675, -0.048824, 0.005606, 1.869785, -0.306183, -0.522185, 0.693429, 0.004549, 0.536186, 0.103252, -0.422090, -0.629959, 0.125014, -0.018577, 0.885319, 0.678065, 0.186344, 0.807778, 0.893964, -1.250961, -1.133031, 0.511445, -1.125194, -0.844051, 1.687765, -0.596102, -0.170204, 0.231324, 0.877110, -0.807087, -0.517076, 1.108176, 0.829449, 0.434158, -0.241738, -0.651427, 0.953202, -0.486286, 0.665821, -0.121909, -0.066174, 0.646312, -0.254029, 2.053112, -0.455520, 0.194909, 0.339175, -0.593663, -0.580708, -1.483420, -0.718239, 1.580834, 2.758743, 0.921026, -0.283677, -2.222538, 0.787170, -0.049637, 0.209295, 0.898605, -1.266989, 1.070821, 0.921603, -1.105286, -0.183823, -0.001298, 1.437060, 0.364263, -0.432373, 0.030635, 0.115497, -0.913457, -0.696298, -0.106767, -0.929542, 1.740185, -1.781696, -0.549155, 2.388424, -0.243142, 0.822746, 2.649969, 0.082938, -0.060588, -0.322106, -1.212368, 1.261406, 0.998801, 0.553030, 0.707387, 0.139253, -1.965311, -0.426487, -0.183201, -1.143024, 1.080709, -0.542438, 0.557808, 1.305462, -0.798548, 0.792202, 1.471583, 0.359012, -0.754083, -0.563582, 2.933185, -0.191811, -0.729754, -0.858562, 0.060986, 1.972915, 1.746027, -1.087005, 0.552130, -0.788223, -1.243806, 1.856027, 0.410151, 0.278261, -2.097281, -0.165141, 0.452122, 0.847627, -0.040394, -0.849300, 0.202366, 1.170092, -1.498406, 0.402975, -0.401223, 0.843738, 0.103140, -0.551512, -0.564725, 1.017490, -1.411059, 0.497527, 0.853076, -1.208954, -0.580804, -0.538174, 0.746502, -0.138976, -0.450661, 1.259247, -0.601191, 0.972999, 2.011034, -2.611481, -0.296053, 0.025581, 0.843127, 0.269563, 0.078695, -0.652477, -0.636561, -0.337333, -0.085627, 0.699060, -0.285203, 0.302345, -0.254838, 0.719321, -0.887386, -0.869428, 0.308216, 0.321839, 1.339406, 0.131548, 0.911953, -0.183639, -0.072973, 0.451839, -0.076615, -1.436176, -1.446560, -0.640161, 1.252679, -2.536145, 0.083403, 0.398960, -0.434442, 0.503598, -0.832421, 0.174327, 1.383598, -0.864221, -0.797381, 0.254484, 0.735936, 0.447760, 1.019576, 0.427179, -1.903720, -1.076532, -0.324483, 0.204516, -0.653492, 0.658674, -2.241488, 0.068427, -1.194480, -0.358988, -1.441842, -1.004456, -0.367884, -0.164342, 0.414830, -0.423650, -0.809400, -0.114740, 0.441052, 0.663330, 0.553117, 1.618080, -1.383428, 1.076929, 1.214673, 0.339496, -1.887393, -0.796113, 2.613801, -0.437388, -0.663248, 0.089296, 0.307271, -1.604505, -0.362615, 0.070389, -1.777228, -0.813626, 0.937207, 1.229573, -2.157619, 1.277535, -0.587399, -0.402635, 1.240281, -0.375889, 0.524737, -0.799339, 1.472952, -0.064894, 0.312903, -0.137374, -0.653612, 0.755019, -0.140038, -0.933827, -0.180902, 1.410203, 0.259619, -0.249711, -0.013147, 0.976021, -2.205953, 2.239404, -0.018998, 1.707275, -0.610730, 1.800240, -1.937084, -0.209935, 0.573138, -0.604941, 1.094679, 0.353792, -0.796537, -1.273211, 0.430803, -0.436417, -0.901275, -0.132341, 1.105824, 1.192633, 0.599159, 0.041933, 1.398376, 1.228992, 0.599179, 0.562203, 2.011279, 0.107998, -1.880693, -1.314182, 0.726995, -0.303783, -0.232535, 0.805236, 0.574284, 1.825219, 0.481046, 1.176469, -0.005005, -0.437182, -0.486515, 0.502299, -0.660077, 0.501681, -1.171856, 0.255944, 0.076300, 0.517341, 0.795345, -0.693783, 0.297741, 1.058407, 0.101764, -0.630923, 0.012331, -0.250903, -1.055991, -1.486803, 1.048219, 1.806489, -1.277031, 0.466303, 0.864901, 0.172281, -0.629937, 1.370061, 0.210752, -0.354053, -0.543032, -0.993002, -0.492207, 0.174437, 0.668512, -2.368764, -0.984693, 0.446388, 1.271209, -1.759257, -0.756024, 1.384092, -1.436662, 0.948225, -0.114060, -1.114640, 2.231575, -0.974306, 1.101864, 0.014861, 0.599672, -0.144135, -0.644954, -0.028306, -0.235662, 0.881458, 0.714558, -0.306181, 0.083978, -0.009850, 0.650500, -0.114353, -0.221029, 0.116231, -0.196612, 2.055438, -0.840273, -1.597501, -1.557035, 0.562234, -1.042682, -0.115944, -1.917445, -0.099277, 1.259935, -0.810861, 1.377141, 0.581891, 0.038066, 0.334035, 1.543489, -0.700360, 0.878012, -1.668910, 0.038807, 0.424636, -0.868011, 0.843123, 0.936123, -1.268251, -1.186098, -0.096058, -0.472553, -0.569291, -1.242718, 0.689243, 1.036445, -1.089426, -0.240963, -0.736780, -0.132270, -1.347308, 0.636797, -0.830018, -0.526198, 0.986368, -0.508480, 1.166948, 0.321075, 1.257057, -0.555575, -0.769797, 0.037234, -1.225849, -0.639776, 1.605412, -1.077925, 0.878783, 1.644148, -0.820132, 0.177052, -1.428467, 0.087647, 0.145735, -1.228402, 1.199574, -0.096729, -0.989056, 1.077607, -0.870894, -1.091914, 0.079661, 0.646102, -1.535019, 0.566583, -0.275144, 2.737974, -0.062092, -0.673603, -0.046880, -0.463211, 0.676774, 1.201957, 1.339307, -1.350206, 1.036885, 0.663826, 0.645678, 0.627826, 0.083337, 0.688757, -0.036833, -0.907979, -1.117299, -1.370532, -0.534487, -0.941965, 0.192248, -0.251242, 0.225042, 0.237043, 0.597010, 0.438869, 0.115549, -0.268917, -0.526161, -0.598611, -1.495332, -0.501398, 1.336285, -1.291725, -0.941537, 0.517032, 0.213226, 0.289392, 0.381262, 0.265248, 0.901984, -0.319072, 0.068068, -1.802063, -1.196775, 0.633367, 0.730634, -1.230875, -0.503543, -0.229085, -1.578917, 1.686321, 0.397693, -1.752010, 1.155558, 1.575457, -0.684211, 1.130759, -0.964391, 0.420251, 0.199125, -2.045601, -0.841773, 1.170935, -0.653584, -1.115931, -0.590874, -1.216702, -0.968169, 1.238557, -0.738332, -0.133324, -1.105106, -0.028404, 0.205197, 1.930414, -0.010985, 0.117392, -1.015451, -0.919056, -0.167054, -0.575321, -0.891431, 0.371902, -1.274686, -0.875438, -0.085740, 0.573097, -0.848063, -1.840711, -2.291004, 0.412596, -2.390139, -0.123728, 0.216096, -0.197863, 0.330312, 1.094169, 0.235412, 1.529485, -2.701128, -1.841991, -1.287154, -0.371125, 1.183016, -1.528058, -0.461995, -0.537688, -0.121660, -1.707710, -1.451806, 1.660011, -1.704213, -0.522591, 0.608624, -0.724401, 1.573601, -0.462104, -0.193030, -0.960701, -0.717931, 0.368174, 1.159395, -1.292301, -0.413960, -0.911137, 1.577433, 0.238658, 1.661173, -1.043789, -0.776631, 1.963089, 1.144360, -0.429729, -0.070165, -0.647949, 2.224191, 0.922051, -0.787452, -1.723117, 2.135242, 0.407912, 0.553191, -0.272019, -0.769199, 0.116071, 1.233337, -0.536483, 0.194698, -0.364801, 1.161344, -0.059902, -0.188744, -0.853891, -0.204065, -1.209451, -0.125752, 0.001065, -0.344748, -0.262156, 0.890443, 0.059319, -1.609535, -1.798127, 0.539802, 0.978540, -0.646831, -0.213446, 0.222421, 0.133444, -0.237710, -1.540541, -0.858681, 1.786379, -2.232934, 0.194050, 2.010475, 0.227545, -1.855255, -0.133707, -0.318903, -0.443642, 0.422335, 0.844548, 1.175377, -0.774183, -0.169814, 0.915640, 0.127368, -0.733243, -1.266528, -0.324577, 1.493544, 0.315125, -0.766478, -0.032213, -0.689888, -0.442525, -1.094400, 0.091220, 0.155211, 0.329433, 0.743409, 1.383190, -0.177790, -0.459259, -0.427564, 1.478410, -0.395987, 0.945209, -0.773267, -1.644360, 2.007200, 1.140567, 0.654914, 1.271676, 1.691442, -1.017013, -0.090082, -0.676001, 0.818901, -0.692404, -0.267801, -0.210212, -0.810789, 1.194384, -0.026008, -0.446139, -0.280835, 0.665835, 0.552424, 0.975960, 0.533602, 0.921817, 1.162899, 0.056587, 0.838081, 1.018484, 0.737541, 0.235971, -1.715205, -0.010786, -0.451838, -0.478264, -0.298536, 0.458548, 0.896740, -0.475461, -0.107050, -0.160684, -0.046708, -0.341063, -0.636934, -0.872002, 0.741325, -0.265641, 0.174669, 1.535938, 1.074105, 0.248771, -0.506019, 0.812500, 0.561394, -1.249885, -0.805145, 1.019588, 0.929492, -0.117274, -0.475864, 1.645770, 0.453032, -0.203403, 1.656491, 0.105410, 0.287933, -1.658475, -0.125998, -1.520977, 0.408257, -1.023742, 0.340135, 1.375705, 0.159702, -1.274662, 1.188079, -0.248499, 1.046080, -0.278688, 0.656228, -0.940407, -1.010099, -0.425974, 0.706940, -0.499998, 0.941889, -0.043274, -0.769265, 0.232247, 1.635775, -1.109666, -1.983417, 0.417748, 0.993060, 1.512461, 1.112705, 0.444797, -0.176426, 1.170116, -0.679821, 1.344172, -0.703345, 0.516566, 0.361846, 0.470657, -2.229069, -0.996538, 0.583824, 1.501572, 1.711949, -0.241647, 1.389133, -0.117338, 0.073266, -1.904503, -0.446048, 1.769537, -0.758381, 0.361868, 0.333955, 1.043740, -1.385741, 0.899305, -0.384806, 0.708481, -1.621319, 0.298322, -2.598936, -0.567307, 0.728023, -1.142811, 0.205535, 0.092326, -0.150745, 0.324807, -1.620093, 0.393070, -0.782600, 1.465078, 0.787793, -0.472915, 0.065388, 0.776762, -0.020151, 0.935728, -1.816234, 0.519904, -0.250368, 0.179030, -0.013762, 1.466377, 0.363489, 0.649383, -0.868991, -0.189423, -0.055035, 0.063051, -0.096711, 1.768088, 1.840798, 0.793053, 1.429546, -0.749670, 1.432627, 0.088670, 0.578526, 1.517048, -1.326013, -1.285640, -0.350472, 0.214906, -0.162170, 0.722723, 0.292372, 1.507200, 2.804112, -0.162876, 0.076073, -1.168047, 2.137174, 0.674241, -0.213758, -0.386747, -0.920035, -0.363421, -0.496172, -0.590562, 1.251346, 0.281242, 0.132311, -1.369727, -2.456163, -0.413745, 1.028342, -0.099829, -0.058604, 0.559943, -0.348435, -0.489928, -0.569766, -0.164835, 0.535828, 0.794678, -0.409822, -0.433102, -0.659592, 0.182238, 0.122540, 0.385592, 0.436848, -0.134526, -0.376223, 1.282591, -0.539787, -0.126236, -0.117527, -0.762230, -0.690076, 0.381597, -0.127793, -0.167546, -0.392606, -0.731430, -0.948615, 0.064081, -0.068808, 0.224504, -1.883282, -1.975447, 0.891883, -0.652932, 2.024351, 1.087493, -0.023667, 0.246369, 1.025813, -1.812474, 0.600479, -0.782582, -1.741405, -0.188030, 0.402218, -0.410046, 2.091224, -0.259267, 0.698336, 0.242207, 0.268938, 1.394473, 0.469512, 0.933017, 1.488456, -0.341644, -0.791699, -1.446461, 0.393435, 0.833254, 1.334394, 0.470877, 0.070305, -1.497475, 0.345918, -0.844593, -0.399710, -0.088262, -0.598605, -0.666429, 1.275263, -1.876474, -2.077331, 1.157732, -1.546555, -0.569495, -0.808976, -0.490299, -0.360891, -1.341171, 1.493188, -0.234666, -0.544535, -1.969054, -1.551740, 0.240554, -2.232345, -0.455098, -0.836830, 0.915519, -0.852643, -0.794784, -0.679951, 1.942435, 0.261901, 0.588130, 0.429660, -0.465149, -1.421758, 0.885973, 0.655556, 0.613977, 0.352837, -0.220158, 0.898358, 0.909666, 0.387378, 0.971515, -1.215671, 1.364633, 1.370551, 0.328178, -0.923502, -0.347543, -0.419652, 1.314634, 1.690332, 0.523008, -0.592843, 1.688752, 0.296009, 1.137360, -0.699334, 1.162271, 0.610619, -1.902893, 0.365951, -0.286711, 0.028145, -0.460607, 1.327399, -0.026118, 0.861427, -0.038776, -0.864668, -0.483240, -2.043697, -1.142821, 1.361424, 0.773614, -0.875402, -1.052503, 0.917661, -0.263940, -1.008121, 0.159128, -0.059757, -1.277182, -0.293946, -0.624276, -0.373682, 1.307616, 0.691095, -0.492976, -0.772840, 1.105352, 0.338552, -2.942345, 0.445159, -1.320336, -0.605020, 0.953831, 0.469851, -0.354887, 0.953904, 0.371550, 0.092209, 1.085028, 0.236800, -0.237459, -0.181647, -0.449363, -1.229349, -0.915450, -0.775320, -0.255796, -0.752793, -1.772184, 0.270470, 0.992505, -0.094404, 0.484247, -1.121118, -0.454329, -0.910895, -0.650925, 0.502442, -0.265349, -1.841811, 0.028939, 0.831680, 0.227214, -0.367259, -0.397616, -0.503254, 0.270294, -0.174047, -0.392619, -0.687216, 0.031942, 1.310305, 0.441107, -0.552457, 1.908733, 0.345012, -0.521335, -0.234192, -1.005215, 0.756866, 1.031271, 0.149743, 0.538873, 1.449921, -1.685842, -0.885655, -0.087633, 0.291052, 0.048680, -1.336456, 1.102988, -2.929202, -0.878944, 2.933355, 0.845554, -1.270444, 0.567321, -0.194162, -1.075099, -1.249082, 2.066827, -0.742117, -1.074731, 0.084178, -0.507480, 0.614266, 0.091381, 0.357175, 0.417274, 0.915112, 0.596810, 1.082144, -1.424948, -1.263764, -1.366437, -0.368521, 0.406863, 0.203142, -0.513780, -0.874924, -0.025335, -0.746661, 1.911579, 0.822715, -1.161584, -0.862557, -0.495997, -0.246120, 0.380888, -0.604009, -0.613752, -0.004857, 1.542078, -0.495454, -0.526918, 1.497577, -0.657132, 1.825640, -0.189233, -0.305086, -0.929308, -1.991496, -1.480981, -0.586877, 1.996711, 1.383913, 2.029534, 0.932487, -0.743253, -1.654776, -1.288083, -2.358563, -1.283558, -0.614194, -0.850327, 1.185002, 0.332798, -1.282921, -0.783882, 0.051726, 1.774174, -1.503310, -0.243286, 1.337100, -0.029914, -0.591297, 0.598562, 0.185515, 0.395646, 1.237728, 1.038232, 0.337125, -1.235164, 0.305595, 0.033171, 1.209693, 0.273286, 0.967767, 0.402268, -0.053069, 1.983366, -0.700376, -0.808244, 0.368366, -0.594984, 0.278371, 0.520705, 0.690706, -2.079627, 1.235444, 1.445721, -0.394234, -0.956180, -0.783992, -0.749785, 0.169359, 1.001997, 1.588047, -0.309243, 0.657695, 1.419736, 0.080640, -0.998396, -2.284743, 0.014069, 2.527452, 0.464817, -0.655672, 1.331777, -0.351488, -0.373632, -0.265931, -1.533439, -1.339083, -0.806225, 1.903854, -1.300660, 0.963523, -0.556366, -0.111860, -1.145382, -1.180812, 1.645147, -0.859318, -0.262230, 1.746781, 0.062488, -0.142178, -0.319597, 0.805451, -0.524940, 0.771373, 0.295142, 0.331752, 1.243740, -0.348120, 0.990053, 0.226242, -1.431399, -1.715353, -0.193180, 0.189706, 0.929362, -0.204526, 0.824361, -0.935070, 0.795433, -0.740348, 0.033792, -0.368202, -0.059590, 0.914689, -0.729263, 1.809984, -1.817875, 0.373864, 1.135015, -0.860622, 0.855074, 1.251296, 0.430322, -0.770571, -2.330315, 1.057717, 0.639588, -1.106705, 2.263489, -0.298065, 2.495112, -0.544542, 0.658343, -0.291951, 0.145052, 0.212197, 1.751437, -0.317666, 0.477505, -0.760640, -1.854693, -0.916580, 1.387901, 1.297886, -0.439742, 0.972952, -0.207502, -2.016983, -0.372088, -0.293588, -0.890832, -0.577037, -1.368332, 1.546014, -1.235951, 1.128922, 1.226443, 0.057891, -0.235351, -1.826791, 0.013132, 0.575864, 1.989528, 1.171615, 0.262968, 0.269533, -2.110740, -1.248885, -0.684853, -0.749814, 1.548712, -0.493807, -0.476493, -0.600738, -1.346532, -0.422131, -0.572886, 0.280894, 0.488704, -0.476414, 0.606693, 0.627582, 1.177491, -2.801196, -0.345425, -0.539653, 0.239909, -0.715030, -0.947349, -0.156670, 1.545247, 0.461864, -0.156047, 0.815558, 0.069526, 0.155074, 0.249092, -0.018480, 0.306401, 1.199131, 0.317856, -1.451196, -0.540745, -0.483238, 2.387320, -1.395595, 0.614275, -0.257170, 1.247054, 0.624628, 0.869156, -0.372203, -1.099383, -0.469647, -0.866391, -0.644422, -0.022952, -0.296277, -0.652974, 0.942426, 0.460873, 0.501562, 0.664257, -0.481230, 1.693070, 1.346129, -1.485725, -0.368335, 0.489086, 0.218751, -1.056075, -0.256611, 1.026748, -1.062068, -1.277974, 0.741510, 1.437067, -2.722271, -0.140934, -0.756397, 1.395773, -0.721586, -1.032565, 0.502521, 0.045251, -0.767535, -0.570692, -0.521047, -0.918576, -0.420860, 0.060595, 0.285349, 0.330953, 0.890022, -0.947116, -0.038456, -1.067923, -1.307064, -0.065499, -1.282460, 1.358192, -0.207752, -1.414136, 0.193799, -0.504835, 1.304376, 1.052409, -1.840901, -0.957358, -0.469032, -0.345329, -0.133076, -0.142414, -1.045208, -0.358082, 1.320415, 1.286141, -1.593837, 0.112917, -0.209537, 0.014430, 0.454638, 2.396512, -0.360322, 1.222698, -1.800098, 0.358477, -1.020227, -0.951170, 0.184742, -0.242794, -0.356478, 0.747003, 0.685666, 1.773837, 0.037266, 0.092769, 1.761236, 0.982292, -1.517177, 1.323996, -0.547775, 0.523508, 1.681538, 0.031054, 1.032626, 0.248433, -1.953045, -0.475985, 0.085305, 1.102302, -0.606649, 0.010155, 0.845950, 0.838079, 1.440465, 1.111996, -1.081481, -0.821172, 0.812970, 0.561478, -0.879287, 0.355050, -0.673691, -0.100147, -1.136508, -0.227903, 0.608128, 1.192806, -1.940669, 1.759276, -0.525988, 0.582430, -0.010930, -0.642073, -2.441217, -0.227902, -0.005424, 2.134140, -1.466543, 0.397765, 0.384761, 0.154591, 1.174917, -0.533171, -0.586818, 0.279077, 0.515127, 0.375724, 0.237319, 1.909430, -1.355151, 0.616019, -0.867013, -0.366089, 0.771928, 0.900137, 0.709168, -1.813267, 0.593955, 0.689893, -0.304745, -0.880049, -1.791807, -0.061096, 0.348417, -1.961069, 2.457608, -1.537941, -0.594875, 0.360609, -0.865662, -0.470672, 2.225043, 0.261478, -0.944859, -0.391298, 0.531277, -0.136620, 1.126871, 0.110916, 1.521862, 0.447901, -0.404044, -0.861659, -0.863225, 0.291401, 0.580419, -0.610619, 0.264456, 1.529272, 0.340869, 0.079968, 0.726771, -1.585980, -1.458849, -1.096808, 0.819906, 0.519707, 0.741836, 1.293123, -0.385099, 1.209177, -0.751745, 0.584524, -0.527719, -0.792565, -0.913272, 0.919876, -0.650037, 1.445709, -0.237211, 1.211545, -0.262747, -0.255015, 0.301235, 0.440093, 0.045824, 0.658224, -0.692605, -0.011042, 0.502382, -1.487078, 1.597929, 0.575019, -1.313354, -1.287837, 0.024124, -1.765020, -0.642332, -0.569423, 1.935842, -0.805847, -0.567158, 1.862071, -0.632283, 0.925897, 0.865091, -1.158175, 0.848080, 1.077904, -0.721489, 0.045563, -1.621627, 0.264485, -0.354161, -1.472917, 0.344166, 0.286064, 0.535362, -1.473323, 1.226940, 1.582088, 0.210778, -1.060418, -0.185844, 0.288219, 0.745273, -0.462258, -0.523615, 0.940274, 2.251897, -0.429833, -0.392335, -0.425686, -0.609360, -1.651912, -0.520587, 0.623435, -0.549004, 0.347927, -0.565802, -0.165099, -1.067913, 0.993166, -0.520832, 1.385723, -1.644085, 1.859935, -1.200724, 0.275898, -0.403711, 1.330624, 0.321464, -1.101332, -2.070560, -0.011004, -0.876374, -0.351336, -0.364860, -0.297692, -0.624883, -0.012912, 0.553782, -0.119338, 0.009886, 0.233519, 0.850127, -0.382206, 0.006731, -1.033220, 1.357904, -0.152723, -0.112469, 2.413690, 0.132626, 1.020103, 0.486713, -0.467687, -0.882504, 0.149689, -0.882874, -1.622582, 0.889352, -0.589864, -0.060649, -0.554446, 0.162069, -0.874591, 0.376542, 0.202443, 0.952466, -0.095900, -0.532472, -0.305646, 1.297330, 0.615439, -1.037382, -0.843574, -1.443636, -0.654764, -0.788632, -1.122809, 2.107426, 0.020323, 0.056888, 1.449052, -1.414196, -0.778988, -0.180533, 0.764142, -1.276806, 0.143296, -2.166982, 0.703651, -0.561048, -0.541946, -0.530078, 0.342287, -1.453677, -0.524079, 1.688899, -2.740637, -0.509667, 0.422408, -0.167106, -0.135366, 0.607375, -0.056822, -0.278464, 0.175810, 0.047142, 0.139719, -0.175870, -0.953918, 0.772994, -0.629944, -1.023366, 0.619313, -1.187672, -1.899090, 0.622108, 0.016275, 0.191342, 0.999344, 1.811074, -0.857979, -1.246552, 1.060831, -0.193704, -1.016750, -1.346058, -0.635778, -0.009523, -0.783099, -0.904311, 1.544027, -0.219199, -0.343132, 0.200437, 0.871278, 1.444465, 0.078621, 0.565776, 1.639612, 0.486000, -0.964735, 0.638348, 0.217969, 0.852034, -0.507616, -0.510199, 1.711401, -0.326036, 1.563514, -0.885243, 0.870436, 0.254717, 2.287700, -2.298754, 0.754934, -0.578417, 0.003805, -1.013249, -0.434976, -0.366648, -1.690810, -1.400365, -1.799398, -0.166922, -0.383870, -1.644150, -0.547353, 0.343083, 1.923705, -0.014167, 2.022998, 0.470624, -1.251050, 0.327891, 0.047044, -0.210121, -0.569339, 0.088085, -0.069365, -1.615166, 0.476006, -1.070633, -1.074907, 0.467080, 0.929532, -3.156759, 1.506421, -1.880815, -0.346951, -1.181532, 0.648061, 0.919897, 1.731056, -1.351639, 0.408378, 0.125410, 0.675769, -0.714707, 2.282438, -0.396139, -0.088341, 1.372799, -0.796148, 1.598698, -0.126270, -0.184555, -0.977132, 0.000499, 1.735138, -0.003698, 0.579036, 0.595922, -0.165841, -0.248538, -2.112316, 0.850311, 1.271300, -0.022016, -0.704498, -0.862125, -1.581099, 0.578850, 0.133288, -1.701191, -0.162391, -0.660779, 2.140408, -0.325340, -0.137418, 2.232680, -0.429467, -1.339041, 0.071368, -0.449927, 1.119734, 0.127143, 1.738726, 1.483393, 1.537228, 0.606993, -1.142145, -0.661106, -1.149435, 0.265388, -0.003494, -0.420078, 0.283040, -0.949344, 0.215587, 2.042361, 0.339736, 0.891741, -0.687083, -0.930214, 0.750795, -0.036799, 0.558241, 2.273839, -0.858486, 0.764074, -0.812920, 0.600766, -0.521684, -0.483988, 0.950648, 0.288961, -0.602028, 0.395486, 0.468387, -1.121386, 0.153346, 1.960969, -0.832749, -0.553379, -0.070432, -1.766545, 0.223817, 0.924911, 0.132025, 0.293018, -0.841991, -0.759261, 0.156097, 1.824270, 0.442088, 0.369182, 0.545297, -1.029404, 0.161976, -0.774115, 1.896997, -0.288786, 2.868966, -0.453227, -0.748355, -0.179113, 1.544831, 1.177246, -0.076462, -0.660397, 0.164740, 0.605049, -0.619821, 0.185744, -0.330927, -0.755785, 2.599649, -1.054843, 0.991248, 0.539744, 0.055856, 1.565438, -1.097893, -0.942495, -1.055256, 1.389776, -0.240882, -1.507133, -0.687058, -2.071292, -0.979288, 0.563581, 0.116064, 0.472714, 3.213935, -1.584408, -0.352646, 0.355476, -0.658932, -0.210192, -1.214172, 1.075653, -1.088650, -0.043784, 0.535475, -0.640050, 0.199752, 0.468976, -0.785657, -0.546611, 0.122064, 0.478130, -1.036023, -0.755880, 0.155422, 0.513236, 0.691126, 1.256833, 0.626945, 0.016682, 1.877082, 0.951315, 0.106614, 1.812980, -1.418978, -1.054206, -3.766232, 1.562666, -1.031741, -0.322059, 0.255045, -0.387456, -1.496626, 0.373927, -0.711483, 1.854483, 2.231693, -0.423563, 1.403533, -0.245240, 1.318003, 0.123900, 0.576964, 0.330390, -0.481879, -1.953678, 1.514428, 0.924915, -0.989652, -1.869557, -0.982227, -0.662445, -0.070981, 1.455798, -0.075602, -0.786357, -0.288142, -0.219662, 0.523849, 0.193546, 0.582365, 1.089134, -0.714587, 0.334265, 0.444925, 2.322851, -0.337789, -0.702793, -0.144651, 1.224411, 1.983358, -0.552469, 0.705136, 0.506410, 0.959816, 1.383263, -0.326959, -0.433267, -0.540196, 1.807512, -1.669181, -1.224687, 1.005663, 0.702418, 1.867239, 0.541549, 0.627350, 1.333296, 0.187384, 0.811994, 1.018183, 0.388560, 0.536788, 0.300297, 1.563462, -0.194205, -3.128213, -0.822981, 0.766540, -0.066628, 0.003206, 0.367780, -0.597985, -0.667215, -0.644542, -0.551451, -0.479872, -0.586707, -0.570213, -1.925813, -0.028536, 0.535480, -0.797823, -1.295007, 0.159830, 0.057236, -1.554901, -0.307504, -0.712608, 1.167013, -1.738344, -0.971677, 1.204613, 0.106029, -1.877151, 0.391886, 0.528367, 0.052115, -0.102760, -1.567323, 1.838017, 1.249596, 0.179481, -0.383866, -0.090253, 1.304052, -0.161480, 0.483888, 1.288125, 0.604101, 0.674167, 1.628358, 0.014852, -0.397877, 0.365309, -0.470127, 0.246585, -0.186759, 1.284288, -0.176388, -0.950532, 0.321164, -2.163353, 0.539121, 1.867412, 0.648317, -0.123808, -0.517718, -0.792213, 0.880620, 0.551274, -1.808916, 2.086421, 0.335664, -2.219135, 0.962106, -0.207895, -2.333500, -1.407179, -0.622660, -1.424839, -0.086229, 0.358851, -1.308627, -0.649546, 1.068496, -0.483379, 0.126967, -1.282642, 0.839874, -1.268759, -1.065768, 2.005949, -0.211119, 0.153472, 1.662807, -0.019418, 0.200090, 1.714539, 1.353242, -0.358513, 0.187577, 0.773466, -0.855890, -0.861594, 0.359504, 0.411255, -0.769070, -1.738123, 1.573117, -0.078092, -0.661866, -0.234847, 0.396102, -0.471627, -0.088574, 0.671115, -0.999868, -0.221710, 1.491389, 0.229180, 0.173040, 0.272029, 1.203908, 0.092473, -0.281171, -0.109384, -0.975183, 0.901354, 0.513457, -0.160654, 0.402768, -0.660327, 0.303535, 1.117784, 0.485947, 0.515723, 0.782757, -0.074019, 1.030108, -0.466344, -0.194823, 1.441207, -0.975607, -0.913399, -1.352420, -0.370035, 1.601166, 1.288876, 0.114441, -1.151028, 0.263603, 0.153332, 0.624335, -1.479842, 0.020963, 0.808672, -0.906042, 0.248293, -0.021158, 1.370549, -0.950165, -1.036264, 0.585385, -0.482130, -0.025522, -0.531609, -0.043222, 0.993441, -0.081617, 0.895453, -0.364794, -1.474611, 1.195128, 0.674430, 1.257755, -1.644022, 0.494655, 0.963351, 1.507737, 1.039567, 0.126597, 1.889974, 1.731468, -0.638741, -0.766588, 0.030216, -1.286082, -1.828354, 0.929998, -0.523241, 2.586178, 0.878027, 1.153037, -0.287350, -1.109406, -0.494986, 2.460140, -0.205843, 0.493466, -1.678755, 0.314163, 0.195331, 0.703069, -0.057609, -0.539983, 0.127497, -1.555147, 2.138376, -1.289191, 1.469042, -0.425057, -1.067938, -0.875001, 0.734767, -0.586066, 0.097748, 0.259414, -0.634032, 0.638393, 0.652704, 0.966738, -1.394442, -0.458809, 0.490610, 0.078989, -0.061240, -0.456531, -0.313961, 0.093462, -2.262106, -1.173555, 1.584624, 1.461880, 0.240500, 0.244433, -0.403860, 1.296627, -1.063269, 1.698649, -0.524105, 0.672055, 0.514395, 0.531764, -0.000265, 0.139968, -0.245186, 0.141470, 0.614968, 0.111478, -0.362837, -0.204204, -0.774353, 0.413180, 0.550001, 1.174743, -0.700053, 2.076198, -1.966833, 1.829741, -0.853565, 0.027412, 0.075143, -0.705977, 1.708960, -0.226091, 0.428000, -0.602931, -0.047956, 1.070031, 0.431004, 0.259456, 0.631039, -0.258942, 0.377124, 1.320863, -1.240855, -1.032171, -0.561787, -1.567561, -0.619509, 0.834249, 0.681737, 0.920760, -1.587442, -1.589726, 0.141200, 1.785309, 1.318002, 0.380344, -0.394539, 0.095370, 0.829402, 0.600756, -0.250432, 0.805039, -0.140533, -1.284124, 0.282088, 0.303095, -1.291561, 1.281391, -1.285778, -0.487627, 1.105829, 2.348415, 0.474058, 1.764227, 0.299071, -0.406762, 0.428571, 0.060480, -0.483345, 0.573609, 0.655257, 0.282541, 0.353255, 0.196703, 0.189110, 0.225442, 0.374092, 0.005193, -0.058010, 1.296705, 0.128158, -1.389723, -0.399257, 0.763417, -0.649399, -0.957718, 0.005112, 0.255308, 0.861744, -0.045855, 0.260832, -0.332917, 0.046643, -1.152128, 1.193023, -0.581263}, + { 1.543728, -0.592740, 1.695967, 0.893720, 0.364761, -0.740928, -0.747827, 1.241065, 0.316879, -0.390357, -0.668158, -0.373365, 0.244416, 0.454034, 0.427857, 1.433061, 1.297890, 0.269080, -1.568294, -0.141295, -1.522560, 0.693472, 0.838773, -1.673977, 0.012073, -0.511589, 0.445653, -0.820774, 0.486975, -1.186084, 1.381132, -1.380502, -0.105964, 1.572850, -0.978998, -1.523539, -0.178493, 0.827481, 1.991456, -0.647898, 1.029246, -0.745056, 0.415750, 0.704994, 0.103048, 0.271141, 0.661195, 1.377508, -0.795125, -1.094828, 0.019094, -0.927010, 1.236254, 1.507294, 0.027011, 0.629170, 1.318100, 0.672236, -1.487893, 1.078143, -1.095805, 0.279606, -0.432363, -1.124374, 0.958065, -0.405402, 0.108259, 1.833402, -0.828281, -0.489540, 0.897957, 0.124017, -2.709729, 1.112989, -0.402802, -1.592790, -1.281192, -0.787587, 0.714824, 1.485184, 2.065385, 1.607815, -0.073868, 1.410523, 1.038189, -2.721146, 0.659512, 0.794315, 1.327118, 0.692954, -1.012236, 0.477630, 1.072623, 0.518601, -1.142126, -1.049552, 0.804722, -0.112722, 0.256943, 0.819272, 1.061386, -0.611031, 0.347412, -1.259715, -0.454821, -0.322682, 0.701932, -0.906507, -2.106579, 1.115705, -1.297056, -1.841274, -0.663057, 0.534536, -1.145266, 0.933877, 0.551989, 1.202555, 0.604870, 1.098875, -0.553530, 0.369362, 1.139097, 1.032288, -0.189716, -1.354300, 0.670240, -1.142749, 0.412660, -0.606585, 1.108489, 0.158100, -0.359648, -1.284853, -1.154013, -0.937592, 0.912432, 0.914854, 0.360086, 1.013938, 1.098398, -0.230168, 0.615997, 0.327779, -0.093494, 0.328638, 0.002791, 0.476471, -0.684736, -0.405851, -0.897401, -0.246474, -1.640608, 1.985173, 0.422894, -1.220051, -1.194641, 0.629022, 1.035853, 0.393328, -0.483098, -1.158039, -1.074269, 0.066079, -0.805381, -2.268697, 0.553959, 0.528082, -0.996798, -2.549146, 0.949795, -0.197598, 0.937648, -1.261363, 0.193574, 0.532277, -0.945238, 0.639573, -1.016377, 0.526705, -0.614343, -0.677570, 0.379156, -0.977589, -0.281283, -0.006260, 1.177647, 0.530150, 0.309618, -1.041296, -0.804470, -1.277123, 0.066558, 0.403708, 0.871248, -0.434156, -0.689629, -1.606238, -0.603463, -0.613704, 1.450054, 1.305154, -0.276955, -0.006089, 0.383828, -0.734329, 0.231423, -1.275249, 0.739700, 1.029034, -0.030375, 0.206516, 0.580835, -1.427622, 0.961951, -0.461909, -2.196334, 0.435350, 0.410767, -0.719363, 0.119775, 0.912635, 0.187672, -0.036693, 2.110843, -0.397759, -2.439429, -0.755293, -0.830239, 0.396200, 1.645406, -1.735625, -1.018600, -0.396751, 0.516117, -1.293193, -0.907348, -2.241394, -1.361308, -0.325360, -1.343182, -0.951062, 0.330634, 0.065822, -1.597124, 0.761313, -0.878843, 0.008061, 0.104116, 0.061462, 0.818972, -0.513331, -0.349262, -0.035294, 0.925147, -1.370695, -0.325712, 1.954177, 0.191522, 1.221995, 0.654155, 0.421473, -0.082069, 0.273364, 0.330481, 0.460273, 0.409731, -0.876452, 1.396242, -0.431053, 0.285017, 1.196481, 0.328061, -0.318513, -0.882769, -0.934901, -1.205118, -0.422650, -0.908115, -0.654189, 0.018118, -0.040496, -3.229802, -1.040183, 0.710077, -0.518089, 1.267989, 0.442234, 1.314612, -0.315063, 0.518610, -0.346342, 1.366759, -0.030329, -0.092277, -0.587748, 0.977533, -0.462705, 1.291985, -0.738445, -0.099533, -0.967463, 1.747508, 0.786587, 0.371684, 1.445654, -0.488080, -1.219286, 0.079949, 0.272397, -0.057746, -0.743492, -0.002089, -1.037862, -0.498934, 0.920751, -0.069743, -0.858679, 1.057966, -0.191138, 1.720562, -0.697468, -1.830012, -0.296317, 2.912491, -1.274557, 0.116975, 2.255765, -1.431646, 0.251973, 0.981281, -1.347927, 0.053927, 1.292037, 0.179249, 1.458762, 0.661279, 0.721116, 0.819616, 0.332670, -0.957866, 0.094835, 1.709903, -0.540855, 0.743498, -0.329663, -0.927442, -1.913930, 1.342006, 0.934528, 0.145227, 0.808923, -0.963327, -0.764596, -0.883168, -0.732610, 0.366897, 1.577013, 1.240750, 2.570322, 0.903606, 0.711223, 3.539747, 1.309142, -0.629979, 1.458191, -0.968808, -0.263852, -0.637866, 1.346113, -0.204573, 1.997478, 0.472415, -0.385208, -0.027912, -0.115154, 0.621677, 1.951220, -0.819509, -0.993513, -1.194517, 0.793269, -0.307643, -0.345623, 0.583419, 1.238509, 0.370939, -0.212681, -0.959828, -0.363463, 0.685916, 0.262383, -0.488554, -0.582380, -1.638535, 0.351609, 0.385492, 1.217582, 0.175680, 1.304038, -0.171854, -0.886770, 2.139007, 0.618296, -0.067356, -0.882487, 0.762149, 1.250461, 0.623340, -1.158354, -0.633382, 1.565599, 2.030117, -1.223733, 0.050421, -0.003709, -0.494750, 0.994935, -1.427316, -1.829596, -1.261557, 0.623020, -1.143641, -0.629604, -2.117143, -1.033729, -1.482622, -1.421670, 1.579562, 0.871000, -0.077630, -0.661875, 0.765825, 0.077336, -1.131262, -0.529367, 0.389557, -1.686064, 1.719942, -0.425409, 1.239059, 0.746975, -1.781749, -1.298913, -1.741664, -2.016537, 0.772101, 1.085593, -0.235138, -1.609223, 1.385209, -1.833560, 1.267686, -0.438740, 0.977015, 2.023078, -0.947257, 0.485274, -1.401958, 0.668368, -0.881190, -0.520353, -1.509777, 0.076096, 0.311162, 1.883554, 0.689101, 0.499016, -0.428880, -0.274951, 1.329115, 0.540779, 0.206764, -0.318605, 1.242950, 0.238510, -0.090227, -1.554454, 1.513644, 0.643399, 0.783753, -0.510639, 1.259110, -0.086436, -0.138803, 0.282575, 0.646010, -0.923739, -0.402618, -0.507848, 1.077237, -1.004135, 0.316827, -0.730227, -1.772577, -1.618807, 0.271272, 0.061384, 0.665309, 0.291050, 0.255589, 0.158068, 1.815811, 1.301180, -1.002695, -0.566522, 0.146351, 1.300883, -0.542749, -0.407012, 0.258683, -1.088570, 0.271495, 0.641626, -0.275798, 2.262456, -1.355514, 0.058881, -0.388587, -1.295309, -0.331861, -0.436212, -0.487358, 0.044407, 0.218717, 1.569044, -1.160551, -0.007432, -1.828102, 0.018648, -0.387463, 0.248623, -0.572872, -0.965569, -0.133622, -1.053105, -0.215928, -0.029799, 0.807956, 0.591962, 1.592182, 0.081860, 0.798828, 0.486786, -2.040722, 0.188741, 1.516692, 1.616871, -1.163070, 1.261503, 0.836023, -0.448278, 0.125574, 0.265990, 0.166516, -0.067440, 0.554229, -2.293393, 0.118905, 1.277214, -1.042627, 0.157182, -0.695806, 0.977241, 0.355525, 0.425753, -0.492701, 0.046303, -0.503989, -0.917039, 0.426024, -0.657473, -0.458622, -0.233436, 0.440753, 0.860013, -0.184204, 1.654657, -0.661991, 1.296958, 1.181755, -0.840025, 0.157240, 0.014180, -1.749650, 2.040066, -0.150422, 0.692513, 0.218089, 2.155623, -0.151369, 0.658650, -0.431830, 2.046714, 1.848095, 0.257136, 1.363610, 0.457895, 0.919920, -0.175142, 0.133251, 0.808814, -1.162695, 0.492638, 0.185820, 0.961277, -1.201483, -1.013300, -0.943266, -0.641113, 1.328936, -0.443744, 0.487933, 1.370789, -0.475609, -0.145455, -0.546697, 0.316680, -0.447662, -1.038917, -1.453140, 1.059173, 0.239321, 1.009159, -0.234848, 0.643522, -0.620416, -1.123133, -0.548663, 0.080212, 0.165018, 0.432747, -1.164135, -0.141651, 0.945134, -0.833190, -0.606726, -1.354703, -1.622862, 1.104964, 0.734624, -0.146261, -1.532828, -2.046053, 1.204595, 0.708609, 0.181661, -0.077282, 0.477524, 1.099795, 0.876918, 0.862170, -0.279158, 0.926285, 0.099776, 0.893228, 2.105340, -0.159227, -0.991767, -0.461621, 0.408484, 1.136953, -0.068072, 0.617396, -0.831238, 0.070853, -2.906515, -0.538721, -0.979629, -0.036301, 0.394571, -0.806550, 0.687930, -1.145224, -0.272259, -0.901252, 0.053592, -0.123948, 0.120294, 0.325134, -0.440623, 2.502902, -0.169380, 1.144886, -0.045104, 1.003405, -0.054746, 0.641069, 0.008934, -0.421559, 0.809756, 1.224457, -0.210479, -0.322809, -0.469289, 2.156518, 0.238936, 0.303892, 1.370580, -0.591955, -0.063763, 1.176436, -0.218082, -0.129585, 1.252725, -0.253667, -0.600221, 0.051384, -0.179658, -0.832467, 1.262326, 0.336128, 1.222036, -1.494552, -1.847578, -1.492675, 1.352113, -0.647496, 2.100602, 0.723634, 1.731946, -0.159760, -0.537622, -0.356960, -0.268464, -0.521909, 1.182647, -0.307140, -0.685733, -0.289239, 0.613457, -0.006939, -0.914746, -0.331485, -1.059129, 0.813355, -1.146203, 0.084211, -0.822883, -0.034050, -1.500520, 1.719812, 0.622760, -1.842809, 0.306889, 1.744596, -0.136386, 0.659907, 0.926893, -1.885894, 0.052894, -2.744975, -0.185676, 0.678899, -0.647047, -0.620898, -0.354954, -1.235485, -1.799115, 0.531395, 1.091132, 0.453614, 0.681269, -1.137330, -0.381060, -0.279672, -0.807822, -0.007355, -0.985455, -0.522518, 0.047876, 0.017391, -1.098688, 0.586094, -0.476109, -0.585603, 0.441868, 0.431204, -0.809593, 1.045815, 0.906984, 1.200062, -1.673531, -1.427119, 0.617855, -0.033212, 0.228126, -0.790473, 0.250138, 0.394698, -1.031258, 1.323261, -0.227789, -2.154935, 1.041920, 3.963416, 0.474913, -0.359712, 0.683832, 0.752249, 0.271506, 1.295899, 0.031459, 1.317668, -0.166010, -1.027483, 0.485985, 0.466499, -0.200604, 1.620921, 0.823966, 0.155522, -1.038440, -0.814001, -0.562614, -0.171213, -0.809230, -0.665524, -2.168379, 0.941580, 1.118530, 0.540293, -0.515447, -0.181228, -1.346575, 0.476136, 0.956276, -0.634453, -1.641696, 0.774935, 0.996777, 1.012542, 1.091754, 1.451168, 0.499293, -1.695991, 0.473346, -0.444103, 0.097654, 2.108145, 0.376295, 1.593426, -0.403225, 1.227204, -0.732006, 0.295531, -0.616491, 0.475103, 1.523340, 0.950206, 0.000450, 0.434541, -1.327429, -0.437089, 0.472717, -2.357039, 1.665172, 1.442425, -0.399581, 1.477510, 0.682997, 1.687689, -0.442618, -1.147904, 0.663013, 0.119635, 0.098755, -0.385221, -0.102097, 0.624001, 2.115952, 0.020631, 1.488675, 0.512123, -0.998724, -0.160806, -1.652622, 0.346530, -0.807186, 0.266926, 0.914759, -1.162588, 0.326703, -1.000776, 1.170803, -0.933037, 0.864010, -1.953749, -1.069386, -2.243666, 0.338391, 1.479739, 0.212117, -0.786980, 1.778163, -0.481581, 0.302630, -0.548990, -0.465612, -0.890092, -0.101522, -0.393561, -0.745454, -0.355579, -0.804670, -0.340105, -0.577478, -0.802297, 0.038963, 0.228388, -0.154672, -0.945174, -1.064447, -0.054117, -0.390800, 1.305028, -0.186642, -0.184677, -0.007926, -0.117572, 1.180408, -0.016843, 0.139408, 0.083699, -0.279391, -1.804810, 1.685216, -0.431488, -1.023778, -0.661016, -1.839745, 0.360646, -0.355619, -0.467450, -0.905038, 0.507788, -0.311208, 1.126197, 0.268364, 1.847339, -0.018117, 1.077871, 0.000497, 2.859377, -0.701989, -0.587961, 0.065682, 0.714058, 1.072237, 0.785584, 0.340183, -0.942350, -0.965614, -0.723866, 1.179876, 0.521207, -0.748425, 0.563208, -1.039226, 1.493163, 0.493711, 0.759079, 0.176588, 0.957686, -0.249055, 0.273654, 1.883613, -0.095259, 0.658585, -0.490781, -0.616016, -0.206367, 0.631759, 0.611943, 1.605094, 1.381775, -0.077065, -1.059261, -0.897438, 0.704758, 0.518827, 0.202618, -0.783762, -2.408520, 0.713438, -0.834058, -0.318613, -0.564888, -1.720432, -1.114225, 1.764850, -0.588999, -0.862701, -1.043127, -1.531143, -1.415100, -1.181710, -0.075069, 0.362877, -1.013309, 0.482706, 0.526851, -0.756199, -0.301750, -1.191916, -1.026924, -0.180968, -0.495496, 0.076663, 1.391732, 0.126281, 2.131831, -0.134320, 1.802157, -1.013856, -0.439386, 0.529967, -1.045864, -0.437761, 1.380348, -0.780855, -0.004879, -1.264971, 1.340770, 0.162822, -0.178197, 0.592306, 0.253935, -1.220861, -1.044721, 0.887344, -0.933393, 1.291952, 0.248691, -0.821707, 1.311213, -2.030030, -0.121647, -1.279035, -0.953778, -0.021876, 1.045354, 0.340732, -1.665236, -0.406848, -1.910790, -0.160716, 2.399962, -0.199085, 0.328901, -0.525934, 0.920349, -2.120125, 0.274182, -0.945022, 0.392649, 1.714438, 2.159760, -0.669388, -0.138557, 0.303878, -1.393228, 1.112192, -1.189982, 0.188956, 0.186878, 0.018525, -0.506479, -1.437181, -0.572208, -0.474478, 0.397891, 0.543608, 0.705113, 0.889569, 1.460220, -0.097015, 2.224391, -0.720478, 2.011474, -0.014376, 0.258955, -0.692796, 0.009386, 0.190982, -0.352235, 0.436144, -0.167764, -1.034328, 0.576356, -0.265998, -1.378877, 0.409514, 0.447814, -0.305173, 0.598984, -0.340107, 0.068281, 0.803658, -0.255998, -2.108654, 0.765626, 0.311720, -0.251217, 1.577590, -1.729104, 0.118956, 1.895140, -0.651895, 0.908258, -0.970551, 2.316956, -0.502178, -0.858465, 1.587198, -0.935865, -0.384741, -1.185379, -0.946642, 0.266479, 1.790947, 0.744343, -0.110975, -1.700155, -0.233999, -0.303549, -0.484864, -0.300196, -0.220737, -0.575763, -0.899129, 0.236526, -1.946865, 0.624323, -0.826261, 1.145659, -0.382239, -2.105783, 0.111304, 0.090122, -0.090749, -1.827911, -1.005784, 1.272941, 1.058845, 1.168948, 0.780946, -0.872353, 1.340676, 0.966605, 0.471810, -0.817326, 0.825829, 0.093164, 0.726668, -2.335778, -0.222547, 1.926812, 0.893521, 0.193462, 1.309174, 0.239891, 0.143295, -3.614362, 1.869462, 0.262839, 0.745911, 1.763632, -0.805419, 1.632774, -0.651630, -0.513524, 0.013209, 0.904032, -1.066767, 0.246981, 1.080445, -0.105333, 0.280095, 0.148680, -0.328969, -0.306786, -0.427679, -1.156101, -0.424934, -0.834393, -0.700717, 0.286309, 1.121027, -0.727327, -0.479240, 1.241227, -1.509761, 1.328872, -1.549685, -0.328264, -0.549171, -0.206429, 0.156265, -0.266364, -0.596214, -0.487549, -1.399843, -0.175802, -0.553383, 0.123783, -1.160968, -1.718323, -0.039422, 0.168283, -1.222350, 0.812179, 1.375031, -0.457773, 0.563750, 1.907425, 2.366940, -1.315422, -1.503644, 0.103362, 1.249727, 0.263372, -0.055168, 0.452256, 2.843142, 0.445544, -1.008841, 1.253179, 0.551779, 2.332664, -1.765536, -0.528213, 1.922847, 1.421129, -1.408259, -1.024227, 0.712771, 0.619185, 1.078510, 1.620825, -1.810534, -0.238843, 2.642455, 1.088309, 0.696850, 0.024105, -1.332940, -0.722424, 1.018259, -0.782438, -1.252926, -0.655129, 0.270792, 0.023382, -0.490540, -0.398229, 1.731076, 0.149698, 1.356597, -0.053189, -1.017785, -1.630110, -1.171242, -0.079133, 1.106024, 0.678387, -0.794349, -0.188977, -0.923395, 0.751637, -1.344162, 0.349403, -0.382214, 0.751571, 0.240999, -0.348686, 0.366138, -0.972250, 1.242081, -1.681708, -0.679303, 0.756052, -0.510314, -1.051253, 0.990829, -0.150299, -1.320000, 0.241200, -0.287258, -0.639187, 0.868028, 0.099222, 1.555080, -0.584324, 0.353949, -0.303726, 0.498923, 0.766886, 0.769924, 1.851079, -0.620791, 1.223711, 0.497049, 0.999718, -1.428971, 0.891978, -1.633743, 1.145181, -0.071485, 0.641340, 0.101221, -1.809877, 1.348196, -0.581051, 1.630121, -0.564791, -0.150379, -1.163376, -0.341653, -1.724467, -0.469029, -0.887634, -0.154370, 1.752639, 0.792404, -0.918536, 0.923068, 1.999341, -0.737441, 1.792420, -1.806813, -0.514455, 1.465940, 0.148501, 1.211108, 0.539311, -0.437431, 0.656574, -1.309455, 1.363223, 0.916011, -0.443740, -0.515935, -1.053274, -0.891184, -0.149176, -0.052483, -1.611481, -0.536138, -0.710154, 0.109850, 1.190977, 0.038662, -1.475456, 0.420263, 0.453738, 0.123805, 0.209800, -0.758631, 1.380680, 0.407374, -0.675999, 2.225152, 0.517368, -1.733936, 0.307127, 0.167170, -1.621319, 0.661122, -0.432699, -0.074036, -0.765830, -0.951682, 0.424554, 0.295904, -1.337488, -2.093186, 0.245086, 0.154747, -0.330860, -0.227767, -1.186165, -0.842727, 0.243190, 2.228421, -0.364224, 1.185898, -1.108960, 1.370697, -0.836171, 0.806579, -0.404317, 0.663864, -0.499574, -0.844421, -0.201096, -0.200439, 0.206693, -0.417836, 0.132641, 1.434949, 0.834049, -0.186194, -0.177535, -1.720414, -0.306250, 0.570491, -0.916499, -0.020679, -1.460675, -0.075554, 0.512233, 0.651085, -0.548956, -0.064281, 1.214345, 1.005299, -0.427777, 0.495079, 1.579513, 0.820451, -0.605756, -1.023698, -0.186783, -1.345622, 0.843823, 0.476989, 1.685346, -1.876874, -0.963923, -2.281659, -1.296561, 1.208773, 0.770989, -2.878879, 2.181982, 0.761394, 1.760514, -1.286067, 1.320640, 0.140212, -0.840818, 0.815214, 0.843947, -1.923271, -0.875923, 1.287841, -0.795457, -0.626723, 0.786440, 0.493890, 1.503678, -0.693789, 0.188573, -1.074407, -0.219799, 1.288316, -0.117526, -2.090641, 0.102912, -1.715156, 0.266066, 0.772731, 1.387727, 0.741159, 0.695860, 0.411547, 0.562413, -0.369639, -0.017480, -1.283268, 0.780361, 1.198617, -0.291552, -0.114052, -0.126555, 1.469786, 0.733737, 0.251911, -1.535248, 1.172725, 1.307604, 0.428555, -0.592933, 0.999359, 0.098137, 1.063860, -0.764113, 1.456161, -1.045630, -0.802395, -0.203718, 0.123841, 1.156327, 1.290519, 0.473294, 1.119579, -0.984510, 0.404827, 1.864810, 0.005348, 1.034760, -0.676115, -0.498566, 0.176704, -0.629200, 1.265352, 0.046030, 0.633183, -1.390654, 0.289255, 1.864383, 0.568232, 1.353297, 1.334825, 1.308766, -0.882704, 0.592765, 0.065847, 0.853571, -1.491615, -0.222521, 0.781639, -1.906872, 0.115712, 0.739141, 0.051948, -0.208762, -0.519121, 0.117180, 0.503905, -0.364846, 0.030736, -1.470738, -0.186889, 2.120057, -1.095003, 0.465497, 1.086654, -1.278077, 1.222784, -1.155729, 1.723063, 0.386432, 2.238277, 0.691960, -2.142339, 1.465428, 0.456427, 0.722015, -0.976096, -0.085701, -0.447773, 0.646839, -0.198380, -0.242426, 0.644814, -0.928497, 0.204981, -0.667549, 0.928439, 1.042030, 0.444082, -0.301476, -0.675470, 1.255245, 0.471597, -0.684297, 0.980243, -0.005566, -0.787871, 1.189339, -0.443712, 0.070658, 1.239545, -0.332244, 0.344636, -1.002307, 0.618291, -1.905844, -0.486130, -0.416943, 0.212532, 0.716571, 0.896675, -1.129459, -0.650584, 0.024091, 0.017912, -1.670758, -1.597229, 1.230390, -1.310016, 0.588048, 0.788160, 0.060624, 2.222399, 0.307831, 0.551986, -0.315575, -0.005328, -0.432088, 0.029498, -0.596574, -1.285058, -0.320648, -0.766470, -0.464224, -1.009650, 1.540494, -1.997145, 0.706653, -1.014769, 0.707131, 2.051979, -0.652324, 1.343611, -0.184792, -1.483892, -0.878081, 0.910616, 0.765469, 0.181190, -0.427665, 0.112831, -0.590718, 0.315325, -0.960876, 2.109062, 1.078435, 0.700995, -1.058619, 0.033524, -0.062428, 1.721910, -0.438275, 1.999882, -0.621889, 1.545780, 1.162883, 0.732016, -0.720186, -1.623557, 0.311827, 1.266341, 0.745603, -1.704006, 0.759147, 1.057214, -1.859637, -0.626643, 1.383309, 0.854485, 1.235585, -0.619286, 1.145315, 1.532257, -0.361189, -1.481631, 0.616448, -0.086675, 0.850267, -0.607051, 0.210575, -0.914620, -1.009281, -1.199760, 0.225293, -0.356687, -0.107818, -0.026980, -1.129233, 0.033407, 0.877923, -0.075389, -1.201143, 0.083138, -0.471608, 1.656793, -0.146987, -1.438740, 0.855585, 1.424055, -0.456031, -0.914580, -0.073803, -0.414780, -0.324361, 0.817273, -0.788614, -0.525768, -1.575898, 0.207998, -0.931809, 1.425790, -0.011935, 1.069473, 0.411655, 0.469039, -0.801397, -0.036157, 0.078102, 0.036038, -1.608708, -0.539109, 0.312720, 0.709007, 1.198794, 1.262487, -1.433473, 0.761912, -1.133450, -0.534038, 0.990805, 0.958746, 0.487396, 0.377481, 1.335076, 0.951134, -0.522601, -0.058202, -2.136518, -1.516982, -2.720943, 0.246995, 0.203773, -1.943391, 1.046439, -0.359928, -0.703431, -1.693687, -1.298854, 1.617852, -1.069346, 0.976070, -0.669233, 0.917463, 0.340801, -0.678237, 0.353047, -1.146941, 0.068994, -2.129170, 0.098886, -0.905851, 0.769221, 2.073082, 0.488480, 2.643570, 1.439061, -0.130492, -0.136279, -0.286164, 1.345574, -0.310472, 0.475159, -0.987752, -0.417338, -0.564394, 0.324698, -0.837725, 0.578058, -1.493403, 2.406641, -1.769367, 0.596070, -0.695755, 1.188273, 1.781364, 1.366613, 0.709013, -0.923801, -1.829748, -0.191445, -0.325177, 0.570186, 0.584108, 1.480448, 0.059678, 0.976397, -1.085889, 1.142766, -0.851653, -1.326229, -0.580736, -1.349307, 0.982997, -0.382646, 1.058493, 1.158373, 1.804661, -0.147811, 1.965573, -0.524286, -0.431404, -0.445344, 0.401996, -0.128319, -0.372703, 1.165026, 1.118556, 0.309963, -0.646671, 1.735688, -0.935179, -0.322519, -0.310978, 0.907648, -0.407557, 0.088452, -0.526798, -0.633388, -0.745148, -0.802756, -1.482495, 0.687293, 1.244678, -0.169327, -0.594185, -0.090725, -0.623344, -1.198135, 1.330630, -0.263203, 1.356566, 0.075576, -0.397621, -0.787284, 0.903693, 1.317865, -0.295371, 0.827715, -0.328858, 0.036965, -1.089874, 0.585127, -0.734294, -0.550483, 1.713199, 1.949976, 0.088678, 0.322362, 0.997667, 0.460981, 0.519993, -0.141573, -0.804601, -1.060461, -0.026498, -0.541183, -0.594792, -1.239434, 0.726777, 0.625372, -0.858138, 1.507679, -0.299618, 1.001838, -0.227220, -0.644998, 0.748592, 0.841317, -1.732912, 1.576954, -0.578537, 0.576223, -0.170445, -0.208775, -1.069664, -0.548248, -2.018242, 1.256921, -1.421201, -0.618930, -0.178207, 1.396516, -2.629176, -0.291225, 1.317624, 0.612258, 1.281992, 0.305881, 1.084013, 0.760549, 1.323610, -0.649544, 0.466001, 0.197711, -0.883998, -0.070531, 1.014436, 0.245602, -1.158330, 0.914507, 0.044638, 1.860272, -1.320990, -0.341413, -0.903644, -0.615998, -0.229165, -0.025510, -0.117514, 0.582878, 0.470235, -0.360222, 0.321503, 1.254861, -0.478710, -1.504578, 0.616195, -0.695416, 0.130194, -0.980884, 0.782109, -1.028489, -0.544367, 0.980296, -1.125792, -0.979898, -1.148029, 0.609233, 1.755262, -0.818835, -2.397410, -0.792282, 1.898633, -0.178788, 0.744354, -0.555961, 0.302797, -0.479122, 2.263770, 0.757404, -0.575309, 0.333148, 1.055404, -0.871357, -1.038637, -0.302418, 0.648798, 0.285861, -1.366265, -0.132504, 0.070557, 0.085007, -0.088055, 0.751706, -1.608882, 0.078492, 0.361955, 0.825377, 0.238153, -1.323956, 0.076823, 0.402911, 1.572427, -0.289143, 2.055727, 0.303057, 1.004905, -0.172436, 0.058051, 0.189194, 0.642443, 2.411987, 0.557566, -2.448584, 0.109962, 0.173627, -0.346565, 1.755229, -1.645220, -0.338602, 1.870723, 0.467474, -0.259386, -0.595858, 1.543178, -0.321633, -1.258456, -0.356128, 1.759012, 0.235964, 0.069044, -0.144850, -0.901310, -0.478922, -0.893824, 0.627770, -0.133725, -0.886935, -0.420436, -0.926305, -0.652691, -2.928196, -0.180172, -0.274582, -1.143393, -0.606190, 1.095210, -0.275602, -1.462573, -0.445382, 0.379700, -0.311070, 0.137362, -1.308722, 1.046199, -0.462291, -0.493530, 0.136103, 0.341260, -0.193205, -0.205588, 1.243827, -1.365820, 0.150805, -0.322682, -1.931579, -1.390245, 0.553234, 0.284577, -1.159301, 0.184480, -0.773188, 1.494891, -0.716378, 1.142056, 1.692514, -0.298328, 0.120494, 0.517337, -0.572664, 0.604623, -0.121357, 0.206855, -0.881343, -0.723246, -0.829706, 0.493439, -0.643008, 1.279474, 0.154532, -0.443738, -1.788366, 0.318439, 0.009616, 0.144679, -0.234344, 1.540348, -0.191229, 1.801752, -0.735773, -0.316242, 0.319681, -0.279711, -0.553538, -0.362192, 1.940749, 2.273398, 0.678762, 1.246873, 1.639827, 0.393353, -2.211025, -0.449414, -1.217405, -0.058245, -0.379224, 0.134005, 0.106018, 0.409131, 0.626948, 0.536279, -0.459390, -0.727129, -0.076501, 0.270049, 2.220869, -0.898340, -1.255490, -1.112474, -0.986611, 0.242009, -0.454001, 0.996779, 0.590432, 0.079922, -0.485334, 0.567203, 1.303653, 1.027443, 0.524621, -1.521776, -0.784577, 1.347198, -1.020721, -0.024993, 0.118756, -0.507537, 0.361194, -1.262435, 1.033672, 0.131397, 1.373580, 0.063679, -0.661628, 1.618135, 0.135655, -0.714596, 1.084792, 1.073394, 0.944412, -0.836146, 0.831916, -0.404393, 0.078345, 1.577683, 1.265467, -0.086003, -1.714331, 0.861883, 0.283514, 0.321558, -0.944080, 0.247105, 0.235119, -0.685466, 1.267698, -0.620071, 0.169366, 0.730262, -0.527520, 0.381436, -2.715241, 0.348524, -1.583914, -0.738575, -1.156454, 0.167652, 0.670236, 1.612451, 0.627811, -0.515302, -1.993856, 0.220103, -1.054016, 0.294660, 1.241554, 0.332663, 1.781377, 0.058050, 1.060655, 0.519327, -0.008538, 0.975439, 0.709957, 0.260859, 0.666260, -0.321561, -0.750409, 1.307158, 0.411851, 0.989067, 0.018485, 0.112269, -0.667378, 0.980528, -1.676128, -0.811036, -0.475709, 0.930788, 1.534876, 2.764836, 0.825013, -0.394211, 1.129753, -0.182914, 0.382604, -0.390051, -0.656802, 0.599406, 1.833699, -0.789763, -0.669325, 1.222522, 0.953136, -0.045621, -0.727279, -0.619767, 0.863837, -1.935512, -0.383181, -0.286702, 0.577245, -0.579721, -0.699715, 0.720726, 0.658684, -0.909050, -0.015795, 0.447437, -1.765634, -0.184257, -0.827700, 0.323539, 1.285534, -0.020818, 0.396220, 0.291049, -0.798951, -1.782427, 0.213662, 2.169003, -0.145762, -2.652786, 0.755944, -0.094671, 0.918621, -1.575469, -0.096371, -0.159130, 0.787077, 0.000351, -1.289808, 0.562940, 0.633124, 0.764171, -0.243431, 0.571600, -0.491852, -0.065158, 1.003369, -0.100753, 0.377871, 1.425284, 0.895947, 0.851795, -1.064036, 2.073128, 0.318020, 1.408718, -0.019871, 0.861209, -1.112317, 0.391092, 0.118180, 0.335289, -0.212761, 0.894457, -1.067931, 3.365040, -0.236340, 0.168933, 0.783965, 0.547947, -0.085968, 0.289844, -0.089714, -1.772796, 0.090836, 0.339181, 0.227137, 0.220409, -1.153354, -0.436144, -1.012920, -0.005043, -1.118741, 0.443973, -1.191041, 1.760287, 0.463935, 0.550782, 0.454747, -0.989656, 0.711679, -0.340196, 0.689427, 0.484804, -1.099396, -0.639139, 0.057687, 0.182825, 0.347626, 0.038810, -1.548812, 0.094133, 0.876271, 0.082506, 0.763386, -0.019234, 0.590150, -1.364918, 0.167558, 0.985785, -0.818118, -1.039431, -0.519964, 0.847359, 0.024934, 1.791188, -1.930847, -0.672185, -0.668020, 0.118757, 1.201295, 0.229236, -0.008620, -1.005668, 0.815970, -0.207508, -0.173540, 0.129630, -0.633536, -1.846817, 0.180404, 1.069638, -0.118312, -0.437885, -1.183526, -0.558422, -0.593331, 2.025311, -2.249938, -0.731704, -1.546986, -1.633174, 1.871488, -0.695989, -0.235880, -0.365742, -1.030583, 0.379910, 0.976160, -0.257072, 0.187679, 1.958788, -0.420677, -0.450136, 0.034600, 0.163676, -1.560354, 1.996248, 1.515961, 1.036198, -0.320155, 0.806149, -2.007962, -0.428954, 1.035821, -0.320382, 0.336800, 0.729195, 3.036651, -0.740604, 1.065839, -0.687186, -0.017618, 1.918400, -0.707910, 1.045846, 1.828034, -0.089217, -1.791971, 1.131751, 0.398927, 0.379558, 0.441137, 1.673095, 0.596946, -1.446145, -0.260017, 0.047287, 0.468005, 0.963162, 1.187484, -1.308183, -1.862289, 0.350010, 1.454402, -0.586858, -0.245476, -0.465852, 0.267425, -0.237053, -0.252749, -0.328377, -0.667879, 0.047170, 1.813297, 0.465023, -0.603614, -1.159119, -0.444126, -1.740628, 0.129883, 0.968457, 0.031888, 0.366965, 0.222597, 0.745627, 0.074029, 0.464944, 0.780219, -0.636249, 1.304141, -0.211039, 2.233072, 0.450567, -0.672574, 1.293839, -0.982561, 2.075779, 1.160331, 1.689407, 0.228013, 0.385560, 0.223982, -1.645682, -1.797162, 1.273594, 0.314190, 0.586895, 0.556073, -1.086670, 0.318686, 0.433057, 0.680806, 0.020872, 0.413646, -0.563352, 0.979155, -1.047378, -0.277093, 0.773852, -0.299266, 0.578660, 0.323095, -0.180873, -0.070669, -1.428276, 1.826382, 0.215816, -1.860928, -0.004247, -0.799770, -0.584882, 0.378576, -0.500920, -0.752968, -1.088108, 1.636232, 0.558796, 1.367221, -0.143151, -0.222270, 0.019466, -1.754637, -0.583678, 0.301486, 1.177094, 0.348449, -0.158097, 0.067921, -0.768670, 0.904611, -1.406535, -2.466398, 0.851644, -1.573222, 0.544450, -1.168125, 1.718874, 0.049624, 0.068975, 0.399012, 0.351799, 0.066937, -0.289314, -0.358945, -1.083001, 0.668936, -0.047539, -0.261954, 0.576798, -0.991504, -0.684705, -0.494467, -1.337530, 1.538690, 0.356429, -0.933199, 0.788988, 1.658647, 2.345464, 1.698276, -0.157699, -1.515306, 2.683462, 0.544674, 2.023517, -0.042124, -1.487091, 0.573243, 0.346071, 0.931017, 1.544725, -1.621554, 0.779515, 0.851658, 1.209165, -1.237841, -0.856806, 0.833720, 0.377152, -1.440021, 1.123489, 1.833032, -0.642620, -0.075162, -0.930460, -0.636542, -0.521290, 0.657911, -0.579892, 0.077771, 0.145487, 0.514840, -0.127428, 0.949677, 0.130284, -1.245867, -0.634503, -0.012272, 0.668922, 0.370015, 0.227245, -0.839886, -0.554682, -0.394735, 0.136950, 1.976970, 0.560678, 2.096284, -0.622745, -0.427967, 0.222371, 1.647865, -1.126804, -1.191177, 0.004570, 1.411011, -0.103002, -0.424705, -0.231971, 1.389032, -0.178743, 0.296885, -0.766984, 0.709071, 1.397780, 1.211298, -1.619236, 1.379673, -0.545768, 0.200720, 0.644185, 1.399730, 0.762633, 1.293429, 0.798252, -0.397815, 1.762905, 0.824906, -0.969612, 0.413084, 0.528542, -1.805443, -0.557158, 0.956679, -0.321781, -0.431411, 0.049933, -1.645685, 0.076623, -0.496521, -2.686708, -1.341078, 0.146743, 1.145876, -0.522073, -1.418392, 0.642946, -1.116812, 0.334280, 0.410590, -0.869679, 0.996400, 0.307103, 1.423114, 0.261724, 0.064000, 1.054452, -1.988682, -0.423465, -0.301731, 0.523532, -0.247100, 0.745077, -0.437504, 0.147181, -1.716339, -0.542639, -0.137286, 0.244948, 1.150652, -1.612285, -1.163530, -0.440625, 0.551261, -1.096259, 0.342652, -0.443613, 1.118395, 1.121676, -0.944705, 0.889116, 0.245293, -1.317632, 0.374021, 1.628888, -0.806348, 0.989933, -1.611679, 0.133558, 0.077617, 0.165783, 0.943719, -2.274433, -0.667506, -0.740540, 0.086897, -1.900068, -0.779314, 0.370366, -1.250877, -0.259405, -1.824351, 1.324397, -0.080346, -1.099696, -0.753800, 2.011105, 1.141854, -0.421049, 0.385272, 0.164710, 1.928079, -0.654268, 0.487767, -1.256934, -0.424002, 0.939268, -0.240592, 1.008969, 1.094162, 0.771396, 0.657445, 1.042972, 0.752015, 0.913622, -1.964462, 0.003456, -0.893460, 0.150170, -0.490756, 0.181753, -0.194321, -0.901888, 1.787246, 0.608727, -0.522022, -1.403568, 0.535359, 0.968580, 1.314631, -0.311413, -0.391818, -0.852411, 0.660781, -2.188461, -0.629223, 0.448719, -2.448936, -0.275527, -0.882270, 0.715120, -0.932497, 0.865577, -0.781219, 1.768387, -0.188905, -1.910452, 0.423647, 0.968344, -0.213793, -0.559447, -0.940981, 0.831785, -1.727392, 1.143801, -0.040478, 0.338867, 2.382293, 1.218370, 0.175177, 0.573202, -0.630816, -0.258888, 0.200910, -1.413202, 0.046748, 0.924094, 1.779065, -0.970498, 0.102026, -1.778829, 1.318066, -0.071244, 0.293009, -0.255368, -0.596281, 0.436262, 0.698794, -0.568113, 0.162310, 0.910770, -0.598901, 0.653884, 0.139303, 0.159009, -0.353220, 0.533984, -1.087872, -2.193821, -0.583080, 0.335470, 0.524495, -0.354535, -1.252062, -0.586193, 1.127294, 0.214520, -0.508353, 0.743758, 0.703607, 0.807716, 1.874691, -0.758583, -0.222595, -1.804454, 1.282357, -2.403395, 0.480798, 1.581124, -0.697750, -1.549998, 0.580017, -0.026375, 0.731519, -0.663069, -0.380540, -0.048203, -0.477546, -1.648286, -1.503718, -0.504578, -0.222585, 1.695473, -0.441789, -1.567829, -1.325399, 0.014407, -1.082490, 0.451003, 0.455227, 1.038005, 1.817320, 0.666238, 1.613339, 0.377046, 0.065257, -0.939918, 0.191798, -0.148130, 1.811592, 0.383744, -0.724423, 0.057653, 0.178792, -0.072898, -0.730660, -1.425928, 0.334482, 0.873629, 1.736488, 0.470845, 0.593671, -0.329021, 1.150805, -1.215281, -1.692668, 0.676668, 0.962709, 0.907865, -0.230071, 0.547624, 0.674877, 1.062763, -0.038604, -0.262362, -0.840242, 0.134289, 0.943543, 0.731046, 0.492023, 1.856400, -0.413153, -0.160476, 2.140513, -0.081516, 2.380793, 0.336923, -0.850997, -1.609959, -0.520330, -1.718403, -0.359211, -1.544253, 0.068696, -1.548544, -0.269209, 1.465738, -0.526617, 0.114452, 1.056856, 0.710068, -0.205939, 1.720047, -0.218559, 1.148313, 1.879610, 1.457389, 0.467757, 1.417670, 1.435690, 0.588652, 0.499619, 0.108803, -0.240760, -0.277030, 0.820338, 1.442513, -0.119021, -0.385217, 0.770449, -1.288368, 0.896073, 0.500195, 0.416874, -1.027213, -1.376213, 0.435916, 1.931995, -0.346535, 0.478687, 1.574385, 1.277695, -0.250764, -0.090185, 0.167062, 0.419265, 0.113073, 0.168456, 0.662067, 0.419620, -0.767727, -0.868907, 0.926928, -2.215932, -1.145848, 0.472411, 0.549491, -2.490558, -0.896433, -0.779514, 1.349593, 1.019886, -0.725323, 1.106716, 0.403477, -1.199086, 0.652252, 1.758440, -0.141009, 0.224586, -0.476162, -0.765149, -0.416930, -0.318392, -1.028949, 0.406502, -0.795865, -0.764368, 0.179148, 0.807350, 0.236810, -0.068248, -0.820587, -0.239689, 1.509459, -0.135415, -1.338417, 0.722335, 0.332395, 1.920353, -0.169373, 1.007726, 0.631101, 0.832534, -0.848295, 0.399311, -1.699135, -0.702458, -0.078420, -0.785380, -1.364508, -0.697801, 1.877405, 1.225579, 0.164045, 0.896188, -0.958080, -0.510882, -1.755142, 1.142440, -0.400417, -0.018623, -0.078627, -0.722265, -0.529349, 0.523017, 0.398174, 0.032965, 0.066418, 1.351563, 1.041406, 0.740933, 0.423004, -1.591579, -0.032365, 0.297035, -0.217560, 1.219674, -1.117245, -0.663576, 1.122866, -1.987687, -0.760112, 0.673831, -0.549768, -2.619705, -0.733679, 0.189459, 0.246954, -0.457686, -0.576197, 1.494833, 0.191348, 0.218545, -0.307411, -0.159803, 1.328122, -0.806005, -1.027288, 0.726105, -0.601921, -0.247215, -0.345861, -0.835606, -1.161098, -1.362822, 0.510777, -0.179698, -0.730879, -1.089370, -1.597180, -1.515867, -1.618301, 0.606443, 0.479950, 0.048039, -0.866761, -0.971359, -0.802361, 1.424969, 1.140857, -0.451990, -1.221995, 0.144134, 1.230056, 0.410692, -0.497828, -2.025460, 1.576786, -0.006840, -0.928410, 1.770164, 0.161853, -0.509058, 0.119925, -0.718424, -1.650275, -0.243898, 0.421852, -0.108430, 0.721182, 0.193983, -1.617668, 0.058490, 0.067884, -0.564173, -0.893146, -0.126036, 0.788910, -1.219243, 0.594939, -0.975989, -0.284461, -0.176849, -0.657271, 0.464606, -1.228317, -0.077306, -2.044564, 0.211119, -0.048180, 0.359618, 1.877659, -2.765362, 0.316579, 0.284979, 1.127269, -0.715882, -1.055688, 1.266683, -0.706145, 0.890804, 0.074912, 0.885699, 0.712331, 1.156186, -0.927811, 0.150206, 0.466549, 1.222076, 0.240960, -0.175015, -0.095842, -0.324176}, + { 2.862805, -0.055079, 0.774972, -1.141454, 2.260701, -1.679269, 0.752509, 2.256575, -1.337693, -2.347305, 1.380400, -0.571524, -1.019575, 0.815122, 1.200709, -1.203387, -0.199704, 0.222750, -0.615129, 0.230635, -0.128402, 1.470511, -0.181106, -1.139594, 0.534922, 0.761732, 0.422224, 0.916319, 0.650734, -0.339850, -0.840332, -0.598169, -0.429579, 0.474558, -0.809438, -0.662010, -0.086837, -1.189614, 0.160609, -0.816881, 0.262597, 0.907053, -1.438818, -0.017621, 0.088128, 1.545372, -0.661200, -1.090389, 0.173265, 0.987569, 0.053265, -1.845255, 0.424057, 0.579740, -1.934206, 1.374182, -0.060964, 1.089683, -0.460019, -1.028916, -0.266322, 1.775652, -0.488248, 1.106367, -0.880685, 0.464462, 0.300249, -1.568923, -0.280548, 1.423567, -1.102395, 0.078975, 0.392307, -0.032044, -0.025634, 0.754589, 0.149412, -2.203666, 0.582953, -0.615667, 1.451294, 1.560304, -0.082468, 0.081205, 1.781244, 1.602240, 0.938815, 0.810498, 0.636674, 0.060805, -0.203021, -1.225802, -0.553038, 1.160696, 0.130256, -2.402325, 0.046702, -0.014695, -0.092477, -1.744948, 0.741617, -0.346356, -0.271222, 1.014599, -0.776657, -1.541217, -0.387776, -2.296592, 0.452384, 0.581440, 0.351426, -1.791589, -1.019302, -0.083217, 1.486979, -0.254389, 0.239009, 0.858489, -0.946351, 1.416381, 0.192624, -1.731287, -0.489328, 1.057223, 0.937465, 2.255023, 0.594830, -0.398539, -1.413300, 0.228512, 0.052861, -1.335543, -0.235630, -0.191580, -0.168652, 3.024351, 0.921437, -1.435274, -0.504809, -1.340963, -0.144373, 0.664876, 1.411939, -0.610662, -0.968175, -0.321519, 2.531991, 0.713780, 1.892886, 0.717247, 0.378514, 1.041009, 0.344396, -1.208437, 0.020119, -1.106887, -1.509934, 0.038878, -1.517905, 1.334812, -0.119707, -0.322456, 0.429299, 1.139497, -0.239490, -0.063916, 0.212850, 0.433074, 0.168506, -0.547503, -1.246065, -0.296375, -1.520586, -0.443032, 0.564153, -0.395164, 0.418155, -0.392422, -1.171012, 0.047384, -0.045579, -0.275369, -0.167096, -0.271397, -1.736368, -0.055999, -0.412097, -1.940842, 0.801939, -0.390747, -0.021345, -2.242039, 0.759023, -0.401233, -0.008906, 0.086761, -3.148546, -0.014633, -1.255185, -0.197963, 0.499904, -1.015338, -0.553288, -1.999196, 0.535317, -0.119758, -1.879797, 0.126412, 0.900693, 0.265815, -0.046969, 1.927617, 0.665195, -2.027726, 0.914742, 2.230643, -0.363767, 0.392706, 0.211937, -0.775902, -1.322912, 0.097276, 1.205778, 0.024985, 0.872575, -0.595012, -0.463374, -0.237647, -1.705612, -0.314946, -0.163237, 0.022840, 0.441292, -0.441778, 0.406889, -0.732251, 0.290748, 2.540212, 2.467465, 1.609549, 0.269302, 0.221839, -1.019998, 0.015061, 0.332426, -0.057717, 0.506807, -0.863995, -0.155699, -0.534986, 0.602320, 0.777991, -0.542535, 0.036304, -1.298724, 2.003386, 0.873659, -0.442744, -0.554913, 0.187128, -0.875161, -0.659138, 0.960926, 0.681407, 1.883780, 0.755181, 1.806294, -0.760921, -0.249610, 0.226731, 2.379432, 1.480653, 0.793411, -1.645328, 2.100164, -0.564429, 0.873865, -1.423064, 0.591655, -0.580871, -0.342766, -0.100122, -1.092930, 0.861609, -0.615473, 2.219130, 1.384670, 0.394472, -0.913598, 1.667843, 0.078286, 0.458539, -0.297759, 1.147536, 1.412255, -1.633393, 1.758834, 1.830703, 1.406932, 0.581100, 0.872086, 0.603528, -0.683173, 0.010625, -0.350921, 0.109371, -0.288944, 0.302430, -0.194304, 0.515730, -0.869603, 0.300686, -0.764533, 0.916653, 0.764045, -0.349414, -0.980539, 0.325174, 1.276384, 1.459703, 1.723923, 0.223135, -0.736426, -0.494964, 1.084544, -0.875419, 0.663341, 2.468405, -0.510039, 0.420929, -1.184971, -1.190352, 1.598543, -0.686843, -0.484498, 1.777436, -0.847051, -0.702192, -1.421314, -1.169702, 0.168704, 0.628094, 0.565972, -1.303828, 0.512755, 0.710569, -0.049343, 0.256436, -0.696881, -0.631460, -0.773008, 2.177222, 0.366149, 0.572048, 1.140816, -0.106071, -0.652278, -1.051734, -0.857246, -1.911447, -1.696203, 0.907827, 0.167587, -1.865878, 1.172057, 0.291157, 1.547794, 0.216062, -0.181774, -0.342360, -1.325443, -1.295936, -1.359779, 1.111858, 0.614708, -0.582072, -1.220280, 0.868146, -0.733827, -1.111499, 0.191788, -1.034563, 0.124301, -0.643812, 1.507305, 0.702366, 1.508669, -1.902196, -1.304462, 0.622312, -1.261340, -1.527987, 0.120765, -1.258952, -0.443027, 0.120529, -0.465950, -1.770310, 1.411059, 1.609665, 1.048655, -0.344639, 0.976127, 0.875106, -0.062123, -0.230796, -1.191762, 0.004565, 1.294138, 0.418975, -0.211644, 0.233567, 1.076954, 1.740858, -0.879942, -1.103942, -0.946459, 0.832112, 2.694114, -0.445494, 0.030589, 1.271202, 0.635328, -0.133948, 0.631263, -0.278569, -0.793820, -0.075490, 0.068365, 0.289050, -0.053216, 1.453635, 0.906594, -0.114293, 0.262725, -0.111293, -1.948131, -0.616846, 1.130461, -0.553615, 1.466176, 0.857891, -0.000997, 0.067258, 0.964116, -0.439870, -0.757706, -1.457814, -1.903937, -0.722237, -1.277658, -1.931439, -0.830236, -1.646871, -1.755909, -1.479482, -0.227277, 0.666450, -1.047559, -0.883259, -0.068015, 0.382690, -0.485674, -1.142806, -1.315928, 0.300477, 1.929442, -0.210759, -0.807326, 0.640901, -0.519791, -1.584384, 1.483121, 0.483392, -1.028480, 0.438399, -1.905260, 1.190767, 0.090708, -0.154290, -1.251500, 1.448276, 0.147552, -0.375751, -1.930549, -2.220884, 0.350261, 2.006223, -0.228996, 0.912132, -0.177234, -1.326807, 0.125387, -0.573912, -0.345648, 0.001936, -0.259999, 0.460897, 0.256703, 0.136170, 1.366553, -1.866073, -2.285827, -0.396193, -0.560098, 0.250766, -0.355867, -1.168230, -1.002328, 1.488727, 0.511628, 1.278041, 2.516599, 1.533667, -1.196795, 1.574384, 0.508368, 0.021525, -0.719401, 1.738884, -0.439220, -0.271159, 0.073705, -0.423357, 2.769957, 0.580262, -0.129949, -0.130834, 0.026926, -0.392453, 0.203452, -0.654698, -0.833765, -0.470109, 0.103617, 0.613531, 0.066534, 0.785086, 0.263243, 0.418203, -2.083832, -0.852046, 0.514020, 0.437121, -0.848208, 0.586873, -0.964896, -0.540749, -1.345254, -1.021527, 1.737145, -0.611362, -0.915631, 1.694011, -0.927213, -1.409397, -0.532347, 0.394334, 0.617731, 0.267884, -0.029301, 0.816691, 0.687833, 1.832307, -2.631804, -0.058050, 1.959118, -0.242166, 0.991681, 0.389693, -0.873272, 0.163788, 1.168925, -1.120898, -0.746679, -1.547816, 2.560863, 2.585150, -0.305598, -0.850272, 1.964402, -0.291312, 0.513924, 0.986040, -0.213317, 1.022909, -1.212145, -0.177395, -0.568466, -0.759776, 0.021262, 0.490976, 0.185360, 0.935610, 1.128509, 0.596774, -2.126489, 0.559761, -0.206284, -0.642376, 0.427731, 0.134940, 0.984933, 0.698331, 2.624682, -0.096881, -0.692019, -0.306763, -0.861633, 0.379541, -0.060453, -0.791853, -0.832291, -0.480630, 0.867301, 1.003000, 0.591348, -0.661784, 0.822656, 1.991155, 0.334843, 2.080361, -1.482000, 0.653798, -0.141131, 1.561272, -0.093648, -0.851876, 2.193886, -1.430538, 0.738648, -0.345708, 0.883874, 0.020108, 0.443615, 1.583616, -0.605803, -0.895959, -0.950299, -0.452716, 0.183693, -1.550778, 0.463577, -0.176291, 0.208889, -0.838101, -0.897683, 0.818201, -0.622000, -0.223191, -0.385666, -0.502974, 0.420750, -1.664967, 0.124552, -0.505393, -0.626531, 0.301995, -0.915321, -0.275556, 1.460275, -1.357400, -0.984554, 0.346813, 1.985741, 0.494134, 1.045418, 1.256769, 0.000185, -1.341024, 0.459769, -0.120296, 0.978980, -0.024539, -0.399059, -0.925712, 0.449016, 0.816990, -0.317828, 1.112426, -0.474662, 0.189146, 0.263294, 0.460553, 1.202794, 0.349841, 0.902893, -0.833658, -0.673319, 0.335607, -0.696796, -0.306836, -0.334021, -0.467778, -0.138161, -2.886442, 1.347498, -1.270764, 0.008506, -0.024363, -0.161631, -0.733965, -1.019645, -0.365329, -0.838168, 0.597280, 0.014726, -0.238466, 1.032355, -0.744688, 0.579447, -1.031236, -0.653502, -0.338192, -0.885247, -0.176712, 0.219319, -1.249782, 1.065476, 0.178734, -0.764397, -0.988028, -1.586403, -0.747845, 0.097808, -1.282020, -0.111575, 1.326760, 1.682221, -0.730144, 1.934580, -0.936550, 0.160623, -1.050134, 1.086140, -0.189244, 1.267710, -1.228234, 0.337209, 1.113505, 0.875612, 1.622142, 0.325386, 1.183146, -0.581733, 0.127758, -0.331038, 0.719606, 0.201163, 0.077440, -0.487119, 0.969083, 0.551454, -1.585530, 1.089882, -1.111997, -1.694835, 0.874081, 0.094421, -0.334199, -0.712513, -0.113034, -0.098136, -0.629828, 0.260838, -0.034882, -0.172363, 0.790472, 0.342020, 2.247909, -0.885511, -1.810432, 0.815043, -0.378366, 0.826734, 0.667323, 0.771799, 0.471999, -1.842455, -0.692768, 0.127668, 0.908567, -0.143098, 0.742829, -0.804314, -1.205628, -0.047181, 0.385129, 1.857316, -0.130419, 0.450560, 0.173261, 0.460997, 1.338095, 0.995024, 1.698022, -1.751673, 0.511225, -0.726934, -0.123440, 0.697253, 0.452341, -0.503362, 0.017144, -0.701327, 1.058353, -1.357485, -2.110110, 0.081862, 0.753633, 1.432027, -0.468055, 2.192409, -1.640586, -0.043345, -0.807122, -1.213998, -0.125547, -1.036359, -0.740362, -0.292852, -1.051465, 0.004406, -1.180191, -0.245046, -0.343697, -0.782793, 1.177590, -1.064535, 0.102157, -0.175939, -0.147807, -0.840903, 1.037740, 1.342594, -1.374074, 0.886953, -1.342092, 1.462907, -0.028353, -0.278185, 0.008560, 0.914976, -0.740753, -0.221450, -0.719429, -1.229256, -0.175923, 1.178092, 0.970058, -1.291418, 0.042490, -0.831705, -0.372105, -0.747072, 1.205138, 2.120681, -2.040428, 1.943062, -0.645126, 1.662537, -0.201962, -0.307762, -0.719362, -0.356205, -0.058687, 1.033868, -0.313321, -0.201639, -0.873468, -0.098231, 0.605892, 1.532150, -0.510630, 0.950387, -0.007952, 1.844554, -1.680704, 0.526797, -2.300790, -0.026488, 0.434504, 0.276499, -0.998025, 0.683560, -1.254076, -0.636350, 0.800286, -0.661681, 0.572905, -1.405699, 0.501224, 1.151534, 0.706235, -0.347593, 0.234619, -0.713301, -0.693937, -1.477237, -2.317165, -0.217108, 1.200441, -0.086572, 0.360917, 0.080780, -1.251565, -0.074402, -0.757023, -0.101102, 1.161566, -0.254443, 1.102280, 0.910695, -2.103535, -0.511631, 0.245754, 0.450443, -0.463173, 0.087945, 0.232899, 0.714814, -0.690347, -0.463652, 0.021526, -0.937332, 0.349170, 0.376947, -0.329737, -1.261278, -0.284626, -0.588387, -2.462261, 0.999957, 0.268277, -1.951380, -0.028624, -2.679152, 1.933939, -2.231595, 0.894605, -0.183204, -1.305088, -0.897796, 0.314671, -0.408532, -0.376586, 0.645120, -0.900563, 0.514326, -1.362231, 0.871704, -0.790682, 0.376796, 1.560026, 1.869531, 0.230525, 2.088380, 0.902482, -1.113357, 2.679903, -0.926810, -1.343108, 0.755159, 2.869156, 0.215346, 1.860007, -0.438254, -1.347817, -2.556280, -0.838292, -0.184814, -0.418817, -0.170908, 0.052636, 1.348364, 0.311738, -0.205501, -0.916612, -0.035586, 1.166911, -0.600343, 0.286783, 0.444816, 1.207589, 1.721134, -0.406469, 1.036417, 0.550735, -1.056240, 1.971313, -1.008518, 1.723208, -0.578401, 0.843169, -1.028315, -0.354688, 0.360194, 1.192937, -1.506496, -1.926531, -0.040319, -0.401523, -1.228902, -1.368721, -0.785987, -0.458260, -0.802843, -1.099481, 1.047103, -0.518483, -0.802057, 0.421114, -0.856605, 0.290831, -0.815047, 1.072205, 0.154842, -1.861768, -0.086060, -0.399813, 0.836449, 0.268635, -0.959067, 0.959501, 0.596188, 1.909470, -0.136188, 0.376333, 0.366699, -0.119023, 1.424368, 0.712188, -0.177106, 0.336395, -0.327290, 0.967748, -0.386259, -0.520617, -0.027060, 1.099961, 2.096384, -0.119895, 1.678726, 1.894531, -0.921799, -0.994215, 1.323987, 0.110405, -0.982346, 0.615777, -0.341347, -0.116174, -1.715772, 0.340282, -0.213124, -0.315225, -1.199234, 2.784106, 1.245832, -0.531107, 0.205862, -0.171456, 1.083205, 0.039168, 1.018793, -0.433841, 1.800553, 1.158686, 0.237026, 1.897689, 1.338294, -0.811174, 0.804326, -0.255533, 0.109783, 1.104240, 0.399912, 1.526089, 0.130539, 0.906667, 0.065359, -0.715042, 0.294772, -0.099880, -0.071202, -0.419434, -0.430633, 1.195527, -0.218813, -1.473798, 0.192561, -0.698243, -0.065420, 0.550605, -1.053325, 0.753022, -0.996681, 0.843815, -0.730883, -0.163559, -0.887160, 1.224710, 0.868163, 0.729518, 0.568670, 0.470305, 1.414411, 1.361466, -0.576445, -0.335978, 0.171132, -0.357712, 0.285636, -1.376695, 0.879784, 0.129563, 0.936618, 3.338324, 1.229329, -0.620441, 0.030631, -1.243033, -1.018620, -0.884635, 0.315199, 0.696165, -0.147759, 0.063326, -0.341085, -0.139851, 0.339181, -1.633720, 0.259913, -0.783926, 0.373557, 2.782969, 0.715170, -1.030379, -0.617391, 1.689720, -0.869971, -2.268611, -0.142380, -0.671752, 0.824527, 3.014240, 0.231811, 0.893429, -0.447364, 1.115379, 0.866379, 1.585907, -0.550756, -0.131154, 0.689210, -1.009183, 0.152085, 0.475368, 0.293765, -1.266501, -0.308494, -1.596751, -0.278467, -0.816446, -1.006395, 0.166213, -0.601790, 0.074295, 0.634215, -0.052263, -0.301493, -0.535001, -1.654554, 1.001408, -0.581678, -0.592085, -1.320397, -0.045455, -0.407639, -0.151382, -0.864388, -2.185694, 0.540270, 1.331660, 0.740703, 1.824002, 0.985745, -0.040701, -0.910375, 0.111393, -0.072399, 0.456052, -1.159282, -1.134065, -0.641860, 0.168773, -0.230211, -0.219429, -0.414769, 0.077143, 0.602705, 1.681179, -0.032419, 0.470832, 1.588859, 2.191808, 0.004546, -0.465359, -0.973584, 1.659499, -0.840540, -0.124305, 0.374858, -1.342901, 1.692369, -0.772489, 0.184488, 0.685559, -0.585160, -0.501749, 0.673514, 0.040315, 0.655502, 0.121983, -0.485158, -1.552336, 0.137731, -0.658367, 0.550480, -0.220314, 0.072114, -0.557420, -0.850528, -0.815940, -0.652968, 1.029018, -1.281104, -2.678572, -0.497858, -1.502676, 1.098647, 0.097932, -0.918647, -0.366060, 2.446311, -0.494477, -0.130439, 0.246458, 0.650712, -1.615144, 1.350366, 1.502006, 1.926232, 0.050450, 0.306973, 0.475758, -0.640836, -0.895342, 0.306525, 2.634925, -0.033872, -0.052714, 1.641928, 0.553396, 0.764828, -0.444489, -0.281146, 0.132946, -0.169099, -0.128860, -0.202719, 0.419785, -0.070600, -1.123784, 0.138541, 0.970354, 1.049334, -0.300716, 1.267099, -1.075961, 0.760648, 0.011874, 0.409402, 1.810170, 1.113363, -1.079479, 1.027708, 1.664792, 0.489676, -0.988489, 0.076389, 1.259863, 0.160376, 0.629402, 0.934830, 0.221643, 0.241225, -1.761224, 0.852538, 0.341221, -0.332156, 1.174370, 1.867658, -0.121777, -0.711688, -2.295488, -1.770757, 1.601328, -0.353370, -0.935510, 0.385809, -1.124324, -0.939126, -2.225066, 0.373015, 0.715532, -0.248635, -1.213359, -1.099519, -0.120215, -0.517905, 0.709855, -1.488343, 0.033749, -0.301047, 1.610517, -0.959937, -0.549391, -0.168589, -0.297758, 1.401289, 0.378295, 1.463036, -1.022264, 0.478984, 1.226555, -1.049750, -0.003447, 0.598199, 0.927658, 1.004276, -1.673355, -1.463935, 0.249271, -0.533080, -0.677964, 1.921044, -2.073379, 1.254481, 1.798632, 0.791922, -0.314163, -0.387631, -1.216206, 0.614247, -1.706924, 0.557358, -0.886043, -0.518478, -0.970963, -0.229862, 0.006838, 0.398514, -0.204490, 1.241636, -0.056705, -0.235172, 1.383050, -0.344179, -0.397473, -0.539577, 0.167826, 0.340591, -1.958424, 1.504309, -0.522636, 1.062583, 0.661992, -1.873474, 0.126089, 1.363839, 1.617063, -0.112732, -0.937516, -1.812903, -0.032315, -1.374682, -1.366695, -1.111225, 0.125841, -0.664806, -0.513175, 0.512025, -0.548643, -1.352860, 0.805216, 0.933328, -0.111566, -1.938313, 0.543197, -0.252600, -0.039377, 1.446332, -1.783591, -0.526295, -1.361761, 1.272745, 2.068490, 0.836975, 1.145567, -0.517356, 1.294285, -0.213064, 0.186970, -0.628233, -1.341362, 0.959694, 0.797501, -0.439631, 1.718707, -1.464268, 1.538225, -1.830225, 1.157263, 0.328792, -1.815510, -1.002149, 0.267550, -0.545501, 0.517463, 1.682639, 0.845633, 0.892939, -0.804660, 0.862171, -0.373519, 0.661528, -0.771302, -0.427637, -0.834072, 1.348785, 0.491987, 2.190373, 2.457416, 0.445713, -0.951053, 0.232683, -0.272204, -0.583218, -0.392077, -0.628063, -0.084245, 0.333291, -0.147265, -0.945695, 0.712070, 0.765837, 0.765508, -0.079538, 1.051033, -1.776370, -0.035073, 0.246485, 0.242234, -0.740224, 0.297872, 0.890660, -1.342553, -0.363605, -1.579738, -1.372061, -1.519058, 0.320677, -2.003026, 0.091183, 0.885303, 0.775565, -2.160908, -0.119447, 0.667350, -0.357806, -0.640622, -2.189891, 0.159689, -2.394003, -0.879651, -1.084957, -1.730756, -0.308818, 0.540626, -1.173607, 0.787882, -0.224947, 0.111080, -0.092843, -0.604165, 0.877154, -0.775970, -1.299013, 0.207478, -0.563260, -0.637041, -0.868930, -0.798841, 0.424707, -1.323236, -1.863457, -0.152687, -1.562774, -0.716138, 0.001507, 1.902444, 1.099069, -0.483896, 0.057232, -0.565703, -0.047181, 0.764037, -0.679941, -0.049898, -0.282916, -1.423038, -0.701279, -0.702325, -0.851669, -1.092972, 1.132937, 0.862394, -1.574666, 0.005616, -0.280045, 0.052933, 0.114316, -1.885117, 0.084470, 0.689191, -0.642140, -0.260015, 0.294884, -1.221358, -1.563230, 0.930023, 2.331087, 0.682631, -0.507299, -2.176593, 0.127847, 1.250863, 1.049228, 0.760307, 0.290862, 0.913321, -1.275750, 0.630891, 0.889809, -0.698100, 1.031630, 0.176767, 0.896319, -2.166147, -0.042406, 0.816935, 0.085425, -1.291574, 0.715948, 0.785372, 0.032003, -0.008905, -0.775458, -0.782831, -0.019636, 0.739469, -1.555600, 0.727035, -0.789567, 0.443105, -1.375318, -0.189659, -1.898896, -0.640718, -1.089822, 0.255329, 0.105308, 1.490597, -0.093684, -0.539996, -0.002446, 0.568707, 1.025302, 0.172220, -0.767021, -0.196065, 1.727901, 2.270144, -0.240150, 0.307770, 0.138438, -0.417119, -0.099015, -0.074702, -0.051139, -0.230765, 2.143932, 0.468362, 1.049745, -0.231191, 0.488994, -0.384419, -1.434802, -0.529508, 0.397596, 0.603413, -1.747145, -0.607655, -0.424843, 0.996237, -0.012519, -0.645429, 0.403621, -1.370830, 0.010921, -0.367657, 1.519422, 0.617146, 0.564209, 0.948729, -0.385076, 0.304248, 0.713241, 0.979505, -0.819220, -1.232091, 1.468559, 1.406151, 0.586226, 1.453624, -0.696577, 0.136521, 0.257013, 0.007892, 0.376690, -1.598682, -1.080180, -0.701879, -0.614127, -0.047640, 1.079236, -1.398191, -0.120676, 0.192088, 0.805822, 0.367607, 0.444702, 0.056774, 0.418836, -0.816752, -0.113807, 0.768314, -0.839684, 0.325392, 0.432421, -0.728848, -0.121026, -0.092131, -0.848049, 1.082806, -0.502087, -1.155917, 1.121064, -0.342943, -0.375877, -1.406312, 0.387267, 0.424086, 0.826730, -0.326574, 0.467242, -1.264390, -0.480366, -1.091095, 0.043079, 2.174098, -0.082880, 0.072349, 1.286701, 1.059599, 0.751107, 0.350151, -0.668868, 0.105018, -0.261374, -0.716429, 0.942878, -1.152659, -0.873781, -1.957849, 0.757286, -0.092357, -1.478378, -1.032509, -0.427794, 1.061623, -0.990963, 0.711382, 0.569579, -0.429175, -0.022602, 0.886366, -1.328673, -1.225251, 0.984478, 1.505840, -0.533593, 0.668489, -0.801922, 1.400971, 1.451241, -1.881531, -0.855081, 1.404101, 1.979957, 0.040533, -0.126944, 0.014807, 0.267048, -0.454474, 0.178847, 0.506511, -0.378687, -1.028255, 0.571825, 0.419263, 1.184437, 0.353132, -1.798233, 0.972242, 0.375284, -0.258490, 1.441418, 0.679235, 0.610537, 0.555688, 1.167421, -2.099960, -0.121467, -0.093931, -1.122853, 0.235235, -0.072288, -0.605430, 0.126359, 1.146718, -0.089143, -0.085058, -0.223924, -1.632909, 2.035854, -0.276491, -0.390018, -0.845120, -0.110919, -1.213067, -0.310876, 1.276559, 0.979004, -0.478605, 0.457094, -1.568804, 0.389232, 2.107067, -0.277936, -1.038638, 0.631440, -0.000560, 1.131747, -0.128699, -0.043246, 0.000567, -1.301971, -0.772563, 0.221700, -0.742065, 0.947594, -1.605278, -0.111451, 1.353028, -0.600437, -0.346771, 1.399873, -1.345483, -0.853759, 1.732354, 1.147301, 1.468050, 1.263324, -1.332458, -0.877993, -2.130314, 0.351732, 0.236944, -0.434476, -0.848425, -1.396123, -0.405136, 1.422360, -1.966814, -0.266577, 0.176106, -0.940655, 0.438934, 1.116838, 0.317558, 0.664408, -0.130431, 2.069849, -0.040232, -0.289653, -0.672048, -0.340405, -0.084344, -0.474162, 1.085321, 0.820224, 0.991162, 0.415528, 0.577902, -0.100700, -0.764808, 0.547872, 0.892877, 0.101686, -2.232623, 0.218407, -0.107334, 0.053125, -0.034452, -0.430041, -0.774613, 1.318963, -2.707061, 0.244324, -0.423788, 0.101224, -1.487005, 0.637713, -0.850520, 1.389812, 0.336309, -2.611636, 1.097802, 0.447583, -0.838241, 3.420436, -1.068536, 1.389419, -0.241273, 0.904938, -0.818239, -0.221534, 0.172794, 1.878394, -2.369473, 0.538834, -0.969446, -0.371926, 1.024396, 0.454268, -0.010175, 1.166771, 0.742516, 0.214392, -1.569085, -0.043797, -0.308736, 0.464072, -0.134790, -0.113056, -0.500300, 0.972351, 0.357009, -0.778562, 0.747917, 0.713485, 1.530468, 0.190826, -0.134805, -1.745339, -2.060433, 0.521381, -0.268538, 1.578888, 0.005915, -1.441188, -1.352721, -0.018647, -0.930117, 1.206810, -0.902351, -0.163161, 0.410921, 0.264951, 1.330335, -1.040025, -0.803937, -1.503077, 0.453019, -0.396428, -1.107746, 0.513104, 0.373658, -0.224492, 1.002628, 1.242675, -2.210689, -1.162366, -1.571850, 0.079017, -0.230274, -1.339020, 0.096714, 0.618877, -0.430763, 0.101277, -0.806072, -0.032787, -0.321225, 0.649279, 1.782410, -0.941268, -0.429839, 1.330861, 1.447174, -1.025736, 1.726171, -1.571461, 0.312726, -0.082246, 0.724114, 0.885492, 0.032952, -0.921404, 0.803974, -0.972846, 0.682970, 0.869749, -1.456824, -0.996198, 1.412127, -1.271357, 0.052844, -0.592720, 0.449044, 0.543283, -1.543620, 0.770803, -0.075263, 0.317279, -0.372157, -1.050912, 1.144678, 3.093191, 1.662531, -0.121094, 0.225683, 0.806632, 2.977509, 0.896518, 1.498224, -0.487309, -2.033720, 0.911177, -1.171702, 0.949133, 2.079720, 0.253759, 0.911926, -0.998689, 2.242846, 0.639870, 0.558231, 1.165567, -1.413233, -0.184249, -0.129191, 0.050413, 0.460122, -2.127116, 1.026417, 0.711223, -0.601544, 0.585046, 0.937544, 0.555648, 0.043097, -0.748606, -0.021981, 1.002368, 0.696589, 1.839437, -0.653013, 0.298310, 0.337771, 0.422614, 0.250487, 0.483169, -0.138281, 1.491554, 0.310236, -0.133642, 0.268060, -0.656293, 0.856722, -0.381889, -0.179795, 1.031471, -1.068985, 0.480502, 0.879212, -0.383312, 0.530000, -0.000189, 1.158521, -0.203352, -1.745895, -1.141183, 0.541767, 0.173407, 0.028366, 2.033123, -0.449244, -0.025609, 1.186347, 0.410037, 0.557129, -0.723942, 1.098324, 0.689513, -0.333536, -1.875729, 0.932217, 0.913292, 1.808887, -1.012943, -0.530243, 0.352510, 0.908005, -0.268952, -1.580704, 0.501765, -1.292741, -1.230967, 0.275808, -0.906487, -0.495648, 0.027220, 1.114617, 0.094763, -1.080792, 1.523810, -0.774519, 2.496188, 0.066431, 1.488420, -2.105661, 0.661336, 1.677653, -0.274637, 0.758960, -0.283874, 0.848195, -1.100285, -0.101953, 0.306504, 1.485316, 0.589264, -0.784468, 0.615491, 1.348166, 1.164209, -0.038890, 1.232857, 0.304724, -2.331403, -0.461512, 0.006976, -0.608258, -0.882697, -0.866727, 0.569431, 0.717090, -1.685648, 1.007488, 0.708607, -0.337872, 2.451992, 0.971709, -0.156814, -0.686672, 0.126982, 0.829377, 1.049799, -0.890542, -0.085022, 0.118800, -1.823866, -1.169456, -0.723808, -0.511440, 0.854272, -0.009668, 0.209245, 0.013302, -1.020211, -0.502164, 0.222711, -1.119974, -1.278024, -1.649244, -0.548986, 0.665538, 0.662380, 0.405251, 0.282164, -0.002029, -1.246852, -0.370449, 0.393767, 1.644471, 0.426126, 0.387291, -0.674875, 1.038076, 0.600103, -0.096612, 0.325958, -0.818657, 0.477243, -1.199837, -0.869795, -0.881705, 1.958618, -0.671609, -0.147153, 0.010151, -0.237564, -0.394377, 0.250500, 0.149292, 0.158081, 1.008671, 1.309021, 1.472144, 1.343242, -1.130392, -0.682410, 0.329447, 1.598609, -0.166066, 1.833190, 0.057439, 0.559181, 1.442972, -0.228773, 0.252063, 0.639607, 0.739787, 0.291796, 1.093051, -1.457751, -2.159760, 0.564411, 1.146052, 0.776249, -0.149219, 0.112510, 0.492335, 0.130283, 0.859809, -0.033366, 0.409701, -0.654081, 0.145960, -0.335490, -1.190467, -0.088920, 0.606310, 0.853640, 0.853195, -0.132278, 0.864953, 0.188628, -0.212323, -1.115402, 2.274409, -1.021911, 0.431413, 0.465923, 0.999762, -0.142977, 0.521905, 1.040826, -2.057496, 0.888147, -0.285624, 0.887932, 0.525930, 0.352817, -2.100249, -0.357368, -1.235392, 0.243378, 0.925334, 1.633089, -0.461984, 1.062828, 0.602230, 1.559014, -1.126593, -0.497828, -0.172161, -0.569687, 0.919834, 0.378514, 0.663484, -0.168105, 0.076585, -0.004925, 0.615745, -0.278400, -0.018738, 2.383155, 1.126474, -1.967811, 1.885509, -0.882970, 0.376107, 0.095518, 0.682775, -0.627919, 2.030618, -0.905891, -0.079417, 0.811254, 1.487391, 0.541125, 0.117364, 0.246623, -0.910617, 1.431684, 1.106386, -0.190946, 2.436257, 0.572403, -0.859946, 1.280817, 0.151598, 0.120387, 2.086688, 1.870306, 1.395172, -0.454404, -1.043979, 0.072510, -0.666675, -0.214606, -0.692866, -1.039563, 0.759397, -1.210571, 0.066885, 0.102654, -1.494836, 0.581090, -1.387127, -0.764526, -1.374681, -0.359010, 0.016068, -0.388888, 0.379490, -0.519102, -0.648704, -0.171610, 2.618532, 0.354210, -1.646865, 3.792551, -1.509512, -0.146837, -1.116581, -1.173348, 1.261452, -1.041687, -0.680098, -0.047130, 0.697685, 0.868387, -0.737022, -0.706824, 1.150055, -1.637254, -0.951927, -0.049012, -0.065075, 0.752924, 0.228552, 0.934360, 0.734150, -1.679047, 0.865402, -0.239389, 1.022948, -0.023258, -1.256358, -0.451178, 1.281918, 1.153275, -0.779462, 1.072035, -0.273102, -0.920331, -0.355805, 0.335196, 0.235106, 2.064071, -0.875029, 0.835588, 0.239502, 0.756748, -0.033295, 1.439518, 0.024978, -0.519161, -0.320650, 1.141891, 0.252935, 0.267547, 0.323698, 1.046774, -0.716241, -0.592586, -0.202480, -0.404383, -0.684366, 0.301782, 0.266524, -0.550650, 1.528382, 1.130170, 0.930979, 0.068278, -1.126034, 1.169483, 0.613790, -1.154997, 1.973570, -1.029345, -0.672124, 0.448635, 1.015372, -0.565159, -1.970106, -0.019809, -2.075485, 2.179176, 1.422725, 0.543414, -0.659533, -0.731586, -1.741046, 0.252042, 2.565730, -0.725135, -1.101690, 0.800728, 0.249890, -0.167670, -0.829689, 0.101905, -0.318666, 1.612459, 1.237428, -0.065305, 2.497023, -1.636741, 0.341558, 0.138401, -0.168568, -0.576635, 0.398949, 0.906522, -1.053750, -0.545998, -0.455266, -0.301569, -0.722599, -0.928884, -0.565834, 0.354239, 1.863500, 0.194206, -0.626001, 0.108146, -0.183907, -1.208546, 0.425658, -0.237187, 0.223028, 1.489504, 0.011653, 0.128550, -0.988395, -3.144665, 0.304450, -0.833752, -0.414852, 0.331433, 0.519535, -0.423061, -2.283350, -0.194664, 0.530827, 0.995349, 0.740034, -0.424981, -0.062494, 0.623986, -2.199912, 0.477567, 0.090832, -0.058796, -2.214593, -0.103925, -0.642611, -0.567072, -2.074737, 0.166583, 0.977425, 1.216104, -0.340520, -0.309287, -0.119129, -1.270854, 0.521910, -0.453469, 0.343665, 2.659389, -0.675041, 1.098605, -0.327029, 1.148319, -1.096467, -1.500800, -0.510577, 0.002896, 0.772490, 0.343863, 0.548228, 1.411542, -0.548003, 0.720387, 0.311559, 0.618695, -0.365211, -0.854787, -0.543796, 1.076430, 1.248507, 1.247313, -1.063489, 0.000537, 1.423668, 0.282096, 0.673822, -0.346888, -1.641023, 0.947132, 0.946999, -0.187692, 0.207640, -0.717608, -0.640428, 1.649142, 3.159801, 0.285131, -1.311685, 0.119217, 1.482214, 1.330941, -0.911981, -1.974984, 0.509698, -1.960800, -0.530067, -0.222100, -0.738781, 0.520870, 1.291059, -0.700075, -1.014312, 0.904651, 0.655815, -0.255718, 0.568737, 0.304345, 0.236863, -1.219295, -1.867410, -0.947376, -0.681295, -0.462702, 0.186486, 0.026183, -0.390831, 1.819933, 1.258341, -0.591996, 0.526669, -0.531385, -0.642068, 0.761622, 0.620042, 0.511969, -1.287185, -0.114275, 2.074829, -1.011105, 0.596614, -0.192250, 0.749897, -1.029901, -1.697172, 1.666424, 1.808855, 0.248349, -0.317729, 0.797614, -0.210340, -0.341758, -0.155299, 0.463231, -0.337337, 0.257532, -0.068504, 0.072096, -0.418420, 0.922894, 0.006238, 0.781892, 0.819916, -1.920365, -1.912882, 1.231657, -1.238131, -0.290771, 2.131539, 1.092803, -0.132217, -1.923079, 1.299205, 0.141758, 0.476004, -0.765585, 0.792254, -0.815881, 1.038379, -0.167990, -0.248769, -0.207054, 0.164219, 0.953176, 1.602046, 0.609283, -1.216488, -0.922205, -0.878825, -0.351528, 0.261810, 0.729205, -1.651948, -0.227139, 1.172439, 0.423959, -1.807261, 1.721888, 0.396506, -0.909818, 0.656211, -1.566248, -0.028559, -1.745553, -0.772742, -0.039189, 0.483067, -0.038710, -0.015212, -0.710726, 0.828592, 0.817550, 1.558603, 0.527466, 0.604988, 0.366180, 0.756422, 0.626611, 2.025416, 0.586196, -0.472802, -0.368451, 0.879758, -0.238057, 0.602645, 0.425327, 0.931699, -0.260955, -1.290241, -1.608891, -0.632699, -0.044485, 0.413085, 1.772271, -0.669894, -0.270458, -1.251951, -1.431843, 0.857855, -1.269060, 1.176613, 0.728619, 0.409170, -1.354803, 0.582349, -0.446751, 2.366971, -0.803819, 0.195972, 0.961223, 2.374263, -2.270042, 0.048770, -0.095595, -0.958647, -1.572495, 0.937178, -0.197178, 0.159942, -1.632320, 0.416667, -0.470423, -1.287511, -0.860495, -0.025828, -0.521682, 0.148001, -2.016367, -1.125534, -0.319210, -0.285365, 0.469781, 0.213533, 0.520304, -1.046704, -0.255014, 0.161978, -0.657301, 0.380386, 1.000481, -0.102816, -0.153629, -0.856587, -0.839705, 1.076588, 0.734051, 0.344115, -0.870206, -1.109691, 0.479125, -0.971326, -0.058429, 0.789344, -0.832048, -0.429643, -0.329592, -0.909379, 0.039007, -0.660611, 1.404685, -1.627092, -0.461628, -1.757714, -0.382550, -1.125911, -1.319679, 2.377537, 1.954415, -0.797256, 0.310238, 1.390780, 2.174498, 0.954718, -0.202962, -1.009577, -0.049587, 0.950558, 1.350130, 0.704795, -1.084015, -1.276809, -0.532805, -0.035503, 0.712197, 0.932244, 0.697259, 0.168265, 0.968257, 1.087720, 0.988724, 1.226741, 1.133746, -0.437888, -0.340066, -1.382146, -0.365589, -2.092942, 0.515507, 1.045868, 0.622470, -0.053105, -1.261211, -0.451578, 0.473949, 0.265230, 0.441864, 1.005170, -0.655958, -0.607974, -0.298242, 0.129913, -0.012558, -0.632721, -0.059729, -2.696762, 0.528190, -1.169908, 0.325504, -0.513270, 0.893848, -0.067951, 0.589883, 1.199512, 0.965997, -0.987544, 0.293924, -0.654640, 0.627130, -2.008244, 0.309519, 0.437324, -0.718098, -0.852222, 2.095732, -1.263327, -0.417234, 1.220132, -0.046950, 0.590005, 0.016060, 0.395953, 0.533061, 0.458756, -1.562384, 1.702298, -0.046271, 1.093901, 1.135716, 1.269514, 0.558460, -1.702426, 0.218106, -1.133291, -1.192282, -0.357392, -0.869045, -0.100981, 2.829987, -0.280654, -0.711372, -0.586914, -1.006115, -0.826143, -1.003669, -0.584428, 0.938065, -0.759953, 0.236500, 1.679802, -0.867175, 2.012593, -0.722134, -0.499972, 0.666206, 0.512912, 0.627820, 0.352293, -0.159099, 0.975979, 0.125898, 1.000830, 1.527902, 0.108561, -0.899555, -0.859858, -0.056013, 0.440500, 0.097085, 1.016263, -0.986517, -0.567086, 1.366657, -0.064835, -0.069338, 0.220429, 1.188672, -0.592164, -1.580132, -1.040111, 0.994207, 1.529301, 0.965583, 0.614241, -0.399527, -1.605185, -0.505716, 1.130069, -0.864777, 0.377398, -0.339196, -0.080936, -1.119905, -1.634312, 0.090257, -0.222013, 0.231535, 0.284000, -1.734604, 0.532429, 1.045926, -2.357142, 0.301438, -0.825032, 0.998986, 0.273277, 0.418926, 1.032511, -0.139835, 0.641192, -0.471333, 0.438997, 0.540514, 0.393357, 0.927158, -0.799381, -1.044712, 0.198402, 1.062615, 0.646373, -0.699645, 1.147951, -0.666869, -0.192050, -0.534210, 1.395654, 0.774890, 1.235580, -0.471644, -0.279599, 0.712804, -1.111780, -0.819664, -2.560734, -0.517164, -0.556769, -1.290907, 0.068988, -1.069552, -0.495076, -0.389549, 0.431265, -0.042560, 0.167036, 0.106089, -1.094591, 0.260762, 0.822045, 0.515592, -0.450003, -1.045584, 0.884711, -0.501255, 1.925481, -0.235619, -0.259887, 0.365682, 0.196290, 2.061564, -2.213679, -1.301811, 0.706507, 1.741559, -0.168855, 1.101588, 0.820364, -0.400482, 0.335451, 1.928191, 0.505874, 0.269808, -0.961020, -1.788782, -1.860919, 0.250914, 0.898241, 0.274327, -1.045911, 1.274394, -1.807915, -0.061733, -0.482906, 1.091731, 0.399684, -0.309442, 0.326899, -1.238159, -1.200043, -1.057403, 0.167390, 0.255546, -0.527346, 0.233485, -0.242632, 0.621511, -0.616150, -0.087503, 2.285100, 0.490702, -0.944267, 1.779703, -0.236308, 0.633502, -1.437012, -0.817187, 1.681853, 0.525203, -1.434373, 1.777332, -0.163298, 2.196878, 1.181907, 0.019409, 1.894870, -0.518821, 0.609485, 0.023724, -2.062161, 0.491855, -0.167027, -0.600150, 1.547984, -1.543012, 0.858477, -1.549856, -0.005683, 1.892737, -1.062547, 0.992437, -1.710650, 2.435537, -1.136351, 0.074013, 0.097661, 0.947000, -0.311775, 1.259216, -0.964017, 0.293518, 0.248293, 0.578923, 1.331232, -0.459472, -0.993607, -0.793864, 0.251094, 0.224123, 0.525135, -0.362432, 0.203711, -0.500895, 0.722426, -1.332972, 0.787980, 0.071593, -1.053839, -2.256763, -1.512497, -0.645520, 0.181726, 0.897512, -1.224698, -0.788861, 0.754809, -0.332596, -2.458709, 0.067840, -0.508277, 1.499413, -0.242588, -1.677294, 0.140744, -0.942304, 0.887287, -1.163477, 0.379646, -0.479302, -1.977065, 0.862756, -0.052980, 0.785963, -0.827198, 0.992470, 0.472990, 0.956368, 0.489755, -1.580649, 0.205854, 0.474053, 0.714326, 0.617675, -1.763684, -0.988593, 0.218481, -0.612592, 0.078888, -1.140073, 0.385045, 0.234892, 0.100009, 1.174751, 0.728539, -0.138349, 0.871923, -0.131383, -0.811907, 1.869395, 0.922524, -1.883221, -1.027480, -0.785759, 0.035490, -0.942084, 0.858385, -1.981633, 1.717108, 0.968860, -0.022463, -0.015047, 0.304365, -1.171236, -0.164107, -1.098171, 1.562056, -0.561641, 0.322561}, + { 1.633750, -0.208713, 0.399191, 1.253653, 0.522533, -0.039824, -0.062544, -1.552716, 0.423759, -0.464100, -0.214870, -0.644192, -1.337064, 0.208001, 1.737733, 0.373052, -0.871952, 0.252082, -0.477625, -1.117553, -1.525211, -0.489079, 0.502528, 0.252908, 1.009426, 0.284869, -1.344518, -0.339331, 2.074620, -0.238306, -1.003521, 1.910421, -0.086106, 0.175206, -0.996218, 0.408523, -0.129474, -0.119925, 0.030628, -0.633376, 0.031295, 0.933010, 1.026730, -0.032987, 0.330262, 1.420750, -0.453519, 1.017246, -1.605942, 1.047615, 0.284744, -0.917644, 0.064100, 2.207553, 0.486901, 1.234834, -0.427063, -0.342868, 0.260631, 0.636631, 1.148085, 0.837837, -0.013621, -0.856720, -0.209332, 0.695650, -0.695866, -0.365854, -1.413842, -0.064040, 0.679539, -1.365736, 0.287881, 1.291652, -1.551638, 1.049225, -0.867760, -1.073091, -0.637155, -0.300112, -0.735298, 0.313950, -0.509098, -1.229489, -2.117709, -0.259286, -0.775823, 0.130260, 0.530175, -1.051084, 0.309872, -0.354903, -0.618703, -1.420003, 1.326202, 0.804056, 0.752575, -0.092148, 0.538921, -0.943075, -0.577259, -0.141735, -0.006229, 0.529762, 1.183064, 0.285579, -0.023202, 0.743896, -0.201692, 0.261179, 0.569031, 0.637282, 0.676452, -0.671401, -2.405885, 0.730172, 1.121383, -3.309620, 0.853111, -1.601336, 0.710432, 1.408769, -0.562655, -1.325458, -1.266071, -1.821650, -0.924012, -0.711459, -0.314324, -1.237956, 1.337198, 0.451297, -1.264170, 0.907615, -0.677598, -0.650538, 0.941084, 0.862619, 2.330709, -0.097281, -0.186912, -0.457176, -0.833505, -0.281472, -1.080566, 0.298360, -0.294453, -0.340458, -1.778879, 0.020224, -0.309792, 0.209083, 1.183815, 0.693163, -0.236959, 0.778133, 0.930881, 0.734484, 0.239085, 0.387471, -0.342709, 0.366404, -0.557924, 1.274958, -0.068736, 1.677438, -0.220889, 0.122682, -0.020607, 0.409848, 0.195760, -0.937147, -0.596844, -1.313521, 0.612754, 0.529698, -1.054632, 0.724131, 0.460957, -0.754743, -0.861633, -0.560756, -0.154731, -0.673748, 0.296609, 1.959714, 0.342447, -1.064095, -1.457826, -0.334593, 0.045409, 0.075224, -0.906822, 0.988956, 1.553525, 1.230527, 1.918521, 0.623294, -0.729148, 1.030785, 1.039954, 1.876015, 1.092184, -0.834752, -0.480642, -1.629364, -1.310089, 0.680235, 0.178461, 0.401326, -0.672326, -0.889948, -3.649967, 0.162014, -0.267152, 1.590234, 0.559631, -0.266849, 0.561170, -0.113994, -0.731860, 0.020557, -1.703906, 0.014522, 0.962914, 0.530414, -0.036976, 0.754626, 0.423748, 0.255248, -0.545737, 0.984911, 0.979411, -1.627167, -0.438461, -0.351980, -0.420869, 0.968233, 0.654434, -0.110182, 0.292363, 1.535228, 0.247893, -0.216707, 0.223417, -0.580980, 1.680820, -1.473914, -1.728161, -2.846628, 1.703498, 0.905023, -0.055205, 0.644903, 0.059472, -0.021520, 1.307315, 0.129105, 0.829307, 0.241402, 0.640167, -0.287598, 0.661523, 0.297522, 0.175122, -2.226186, 1.053222, -0.750790, 0.846055, 0.162030, -0.785390, -0.135707, 0.825747, 0.613240, -1.153278, -0.036000, 0.542754, -1.363815, -0.238604, -1.203685, -0.274608, -0.516469, 0.478228, -0.457582, -1.391683, -0.574425, -1.163558, -0.674418, -0.896201, 0.025810, -0.790252, 0.112435, 1.379806, -0.497981, -0.897507, 0.337331, -0.295900, 1.115004, -1.050576, 0.605156, -0.243328, -0.602567, 1.386620, 0.901985, 1.837772, -1.421034, 0.442711, 0.102661, 0.401064, -0.200605, -0.627958, -0.354933, -0.383843, -2.264190, 0.242871, 1.472131, 0.141329, -0.527888, -0.777231, -0.164998, -0.452741, -0.693049, 0.711089, 2.490709, -0.788117, -0.524690, -1.019957, 0.717529, 0.896247, 0.437873, 0.283121, -0.783064, 1.531208, 0.418761, -2.144156, -0.898897, -0.497084, 0.509069, 1.053628, -0.508083, -0.873839, 1.432240, -0.165618, 0.427544, -0.950999, 0.662171, -1.261790, 1.978793, 0.773338, -1.150344, -0.027884, 0.301079, 1.149162, 0.588662, 0.266859, -0.782330, -1.660377, 2.431033, 1.045701, -0.308218, -0.058655, 1.089296, -1.893408, 0.373400, 0.243236, -1.034705, -1.024672, 0.709247, 0.697017, 1.619847, 1.637518, -1.299040, 0.022054, -1.491282, -0.081951, -0.874380, 0.983287, 0.746610, -0.191663, -0.708996, -1.430509, 1.764003, 0.078192, -1.029045, 0.846876, 1.875717, 1.613536, 0.320372, -1.045241, -0.408077, 0.204712, 0.325098, 0.355421, 0.418502, 0.191755, -2.691741, 0.369223, 1.289988, -0.741753, -2.137399, 2.270844, 0.510796, -0.357066, 0.707755, -0.545343, -0.007768, -0.429650, 0.061762, 0.132509, 0.141634, 0.748732, -0.464731, -0.885414, -1.705251, -0.584072, -0.886061, -0.470548, -0.736594, -0.853768, 0.456509, -0.116781, 0.486840, -1.116497, -0.987260, 0.033038, -0.985664, -0.715243, 0.725018, 0.379021, 0.128903, -0.001089, -0.779351, 0.901212, -1.055266, 2.453246, -0.130311, 1.584739, 0.339338, -0.550722, -0.060897, 1.743678, 0.325652, -0.364703, 1.152421, -0.080858, 0.736350, -0.898815, -0.372582, 1.388357, -0.721409, 0.432581, 0.565466, 0.417503, 0.693891, 1.103736, -0.582973, 1.303014, 0.094902, 0.368089, -1.440522, -3.318128, -3.033506, 1.248998, -0.578987, -0.194126, -0.293621, 0.026287, 1.420831, 0.563118, -1.286652, 1.217494, -1.137671, 0.007186, 0.678262, 1.535446, 0.641297, 0.088899, 0.014675, -1.594144, -1.793008, 1.365244, -0.264220, 0.619684, 1.233654, 1.174579, 1.205239, 0.819907, -0.324365, 0.868136, -1.124120, -0.476948, -0.603176, 0.882191, -0.648951, -1.239904, 1.115651, 0.937624, -0.401641, -0.707858, 0.744260, 0.357113, 0.447538, 1.580977, 1.226947, -0.996384, -1.117138, -0.762098, -1.227928, -0.485494, 0.894387, 0.548534, 0.618259, -0.177832, 1.057126, 0.592931, -0.390809, 2.060658, 0.746119, 0.641473, 0.731166, 1.399154, -0.409176, 0.493299, 0.038713, -0.588700, 0.254130, -0.462193, 1.710925, 0.180509, -0.875857, 0.343971, 1.428961, 1.085704, -0.746196, -1.085817, -0.138197, -1.737607, -1.864121, 1.638507, 0.496783, -1.379151, -2.465451, -2.010220, -0.590529, 1.340768, 1.266440, 0.487798, -1.146695, 1.090023, -1.051142, 1.055251, 0.428708, -0.282754, -1.932825, 0.367059, 0.646246, -0.729363, -0.010475, 0.098721, -0.803355, -1.877876, -0.037373, 1.420762, 0.985746, -1.145910, -0.998906, -2.332280, 0.718753, -1.990264, 0.386594, -0.068702, 0.301434, 0.208538, 0.541167, -0.402673, -2.372978, 0.668457, -0.305221, 0.022876, -0.047997, 0.228780, 1.448882, 0.613885, 2.316437, 0.557050, -0.120061, -0.711957, 0.948075, 0.578252, 0.394816, -0.573451, -1.331556, -1.650743, -0.387161, -0.352094, -2.620109, -1.839176, -1.398458, 0.530359, -0.228919, -0.709150, -1.321736, -1.554870, -1.154367, 0.777909, -0.338027, -1.703837, -0.169670, 1.187202, -0.797484, -0.487479, -0.620582, -0.317494, -2.403142, 1.641730, 0.830646, 0.028302, -0.306692, -0.841741, 0.794381, -0.208205, 1.242679, -0.775001, 0.488870, 0.107544, 0.471582, -0.459891, 0.426136, 1.593878, 0.328127, 1.104565, -0.359778, -0.577892, 0.058231, -0.623665, -0.161381, -1.005802, -1.618271, 1.022667, -0.755539, -0.832205, 0.323845, 0.398462, -0.090320, -0.688794, -1.712452, 2.079621, 1.494959, -0.510339, -0.526962, -0.501123, -0.354679, -1.610059, -1.378104, 0.962394, -1.212246, 0.221910, 1.543822, 0.805893, -0.012619, -0.934039, -0.153445, -0.218897, -1.094587, -0.092891, 1.151209, -0.916165, 0.611519, 0.234915, -1.399976, -0.121571, -1.400179, -0.318803, -0.796265, 1.210998, -1.284524, 1.836117, 1.221768, -0.895479, 0.357193, -0.094953, 0.071924, -0.553556, -1.427475, -0.918901, -1.290555, 0.593505, -0.100715, -0.354592, -2.417863, 1.183628, 0.011129, 0.582654, 0.868006, -0.149553, -0.144259, 1.195877, 0.531090, -0.713784, -0.416895, -0.836029, -0.595415, 1.035148, 1.277334, 1.991471, -1.390341, 1.206723, -1.761687, 0.991444, -0.236374, -0.039019, 0.214836, -0.076213, -1.160952, 0.319922, -0.595001, -0.393744, 1.070738, 0.894406, 0.056887, 0.187049, -0.698885, 2.283896, -0.568464, 0.772052, -0.014354, 0.756618, -0.221157, 2.514338, 1.008293, 0.241202, -0.643674, -0.891454, -2.483161, 1.175247, -0.041734, 0.514728, 1.947805, -0.440595, -1.519470, 0.765724, 2.941120, -0.590583, 0.089716, 1.528522, -0.555414, 1.928398, -0.322762, 1.302254, -0.184784, -1.475408, -1.226543, -0.453656, -1.421057, -1.786358, 0.016994, 0.875315, 0.054692, -0.383463, -1.505522, 0.284490, 0.286418, 0.426409, -0.147629, -1.785765, 0.242645, 0.887664, -0.443890, 1.294186, -1.116554, 0.588321, -1.547927, -0.417077, -0.877472, -1.835423, 0.579669, -0.047314, 1.834026, 0.258689, -0.826290, 0.896961, -0.520304, -0.392979, 0.680968, 0.716352, 0.759695, 0.806670, -1.709324, 0.986569, -0.150820, 2.394736, -0.526361, 1.147990, -0.377885, -0.995814, -0.454191, 1.149842, -1.597380, -1.253091, -0.823041, -0.149331, 1.745578, -1.148569, 0.571836, 0.817219, -0.758259, -0.853601, 0.387564, 1.538011, -0.264415, -0.505284, -0.624930, 0.951168, 0.170791, 0.557038, 1.272419, 0.544148, 1.045817, 0.400600, -0.654041, 0.697929, -1.196383, -1.535388, 1.060852, 1.066159, 0.287956, 0.334259, -1.680188, 1.567870, 0.439922, 1.822707, 0.419450, -0.407702, 0.961808, -0.811965, 0.307355, -0.724728, -0.319510, 0.224332, 0.459586, -1.558644, 0.163701, -0.781339, 0.576898, 1.949665, -0.359467, 0.391569, -0.757351, -0.056237, -0.912369, -0.636153, 2.697446, 0.129310, -0.321593, -0.503454, 0.328496, -0.600949, 0.697004, 0.079186, -1.347811, -0.008307, 0.672211, 0.004851, -0.737647, -0.956546, -0.855895, -0.829822, 0.342103, 1.323590, 0.776070, -1.450975, 1.112189, -0.975869, 0.723694, -0.264351, -1.131781, -1.039118, 1.144766, 1.590171, -1.645773, 0.605682, 2.081909, 1.327569, 1.860834, -1.096128, -0.861132, 0.469649, 1.001297, -0.897849, 0.180405, 0.078134, 0.133203, -0.639073, -0.880966, -1.747314, -0.483171, -2.581299, 0.899836, 1.158479, -0.191164, -0.627105, -0.292247, 0.463476, -0.955252, -1.985927, -0.604326, -0.375043, -1.538616, -0.890549, -0.047283, 0.321275, 0.715675, -0.244068, 0.568941, -0.316806, 0.611571, -0.016223, 1.197703, -1.735856, -0.092698, -0.388257, -1.387805, -0.980568, 0.353355, 0.487100, 1.738975, -1.383981, 0.568930, 0.294583, -0.234555, -1.582574, 0.060271, -0.515729, -0.510794, -0.595208, 0.450997, -0.793106, -0.567710, 0.161472, -0.343068, 0.202998, 0.456116, 1.897815, -0.586535, 0.656231, -1.950023, -0.174002, 1.905020, -1.341272, -0.121645, -0.042592, -1.626775, 0.929624, 1.238821, -1.382462, 0.577146, -1.141178, 1.300768, 0.957444, -0.416143, -0.815185, -0.245639, 1.066428, 0.301353, -1.834014, 0.508083, -0.218429, 1.410184, -0.928468, 0.682718, 0.676148, -1.543971, -0.060714, -0.339981, 0.815538, -0.946027, 0.324797, -1.167691, -1.472364, 0.265806, 0.103860, -0.370767, 2.346980, -2.107459, 1.333538, 1.068658, -0.334790, -0.666444, -0.841996, -0.009787, -0.986844, -0.273349, -0.550526, -2.235348, 1.556056, -0.870163, -0.480603, -0.950090, -0.409188, -0.219105, 0.605144, -0.438438, -1.428007, 1.002174, -0.481445, -0.773959, 1.265860, 0.079983, 0.512249, 0.002601, 0.532775, -0.036385, -0.940858, 0.087740, -0.861109, -1.306606, -0.495964, -0.930104, 0.810205, 2.009219, -1.156137, -1.117500, 0.824882, -0.075308, 0.003569, 1.478544, -0.171117, 0.263368, 1.077015, -0.818754, 0.789243, -1.324375, -1.042110, -0.111810, 0.855312, 0.710417, 0.207374, 0.051069, -1.859863, 0.471250, 0.343095, -0.329158, 0.658307, 0.881425, 1.025847, 0.695186, -1.106904, -0.674593, -0.643316, -1.266535, 0.880324, -0.472249, -0.166647, -1.374939, 0.571644, -0.151005, 1.443033, 0.141320, -0.799235, -0.457068, 0.406124, -0.599292, 2.921068, -1.439711, -0.754839, -0.124090, 0.526196, -0.278004, -1.129980, -1.537265, -0.964287, -0.983896, -0.287749, -0.024299, 1.370456, 1.060111, -0.027980, 0.260603, -0.689702, 1.881503, 0.291090, -0.503172, 0.667621, -0.945277, 0.446048, 0.047110, -1.175890, -0.144072, -1.009388, 0.656667, 0.771593, 1.179139, -1.774420, 0.231202, -0.186975, -1.053716, 0.446150, -0.920796, 0.354669, 0.182790, -0.694951, 0.950916, 0.556538, -0.962969, -0.120720, -0.268164, -0.415330, -0.093160, -0.765481, 0.277226, -0.116567, -0.462237, 0.141419, 0.158317, 0.702666, 0.928361, -1.534021, -0.270447, -0.710651, 1.374264, 0.689749, 3.566372, -0.124516, -0.850984, 0.504751, -0.657685, 0.377078, -1.228175, -0.571974, -0.332468, 0.979415, 1.531067, -1.018866, 0.067803, 0.844257, 0.206362, -0.245772, -0.718637, 1.024969, 0.090588, -0.134815, 1.020640, 1.244755, 0.635519, -0.734049, 0.698059, 0.668903, 0.483132, -1.921140, 0.299685, -0.930194, -0.419870, 0.388393, -0.270623, -1.357992, -0.782030, 0.463358, 0.421239, 0.721031, 0.427722, -0.209575, -2.337184, 1.262822, -0.198376, 0.231690, -1.413114, -0.325461, 0.192994, -2.332793, -0.293004, 1.399074, -0.192769, -1.724912, 0.584437, 0.353184, 1.887444, -1.272124, 0.641172, -1.375394, -0.163449, 2.821177, -2.477411, 1.326315, 0.061564, 2.301966, -0.810142, -0.402372, 0.540343, 1.249783, 0.591069, -0.138611, 0.594662, -0.592522, -1.065648, -1.288335, 0.447361, 0.391887, -1.329378, -0.704860, 0.742442, 0.216348, -1.553384, 0.375023, -1.646798, -0.684800, -0.435528, 0.810629, 0.130634, 1.907418, -1.790417, 2.624369, -1.096402, 0.250215, -0.484635, 1.218256, -0.669078, -0.250831, 0.403899, 0.242680, -0.857059, 0.169672, -0.220225, 0.067639, -1.853691, -0.268161, 0.324559, 0.593420, -1.279758, 1.402079, -1.714236, -0.992492, 1.534076, 0.767370, -1.977483, 0.836829, -0.619616, -0.292617, -1.310797, -0.055676, -0.050530, 0.610245, 0.052250, -0.318296, 0.537661, 0.100220, -0.263842, 1.251635, 1.863941, 0.269421, 0.496513, 0.399314, 1.240574, -0.772145, 0.239661, -0.183467, 0.451664, -0.587029, 1.506752, 0.015199, 0.542490, 0.548581, 0.595628, -0.318247, -0.850087, -0.950729, 0.465935, 0.193024, 0.020382, -0.311754, -0.787446, -0.784583, -0.332131, 0.336644, 0.022421, -1.215302, 0.562622, 0.297452, 0.479337, -0.858014, -0.211506, 0.877656, 0.407259, -0.919139, -1.412689, -0.461445, -1.443547, -0.636703, -1.569800, 0.909720, 1.430994, 0.190290, -1.104897, -0.288245, 0.876744, 0.750762, -0.996442, 0.353068, -1.722070, -0.559863, -1.196862, 1.471921, 1.386451, 0.833152, 1.451712, 0.058966, 0.163522, -0.341077, 0.014160, -0.634544, -0.258101, 0.300472, -0.630895, -1.034697, -1.514110, -0.660259, -0.053732, -0.734900, 1.353045, 1.282121, 1.382260, 0.386143, 0.956780, 1.204682, 1.846641, -1.206605, -0.909605, -0.003157, -0.000223, 0.521086, 0.567327, -1.285228, -0.211982, -0.268097, -0.114335, 0.690258, -1.906635, 0.604761, -0.114527, -1.106542, 1.201965, -0.968681, -2.255752, -0.227271, -0.110396, 1.132923, 0.916561, -0.901203, -1.879336, -0.339645, -0.248529, -2.381851, -0.160403, -2.859949, -0.029038, 0.212314, -0.102780, -0.107117, -0.477585, -0.416467, 0.342099, 0.315275, 2.240185, 0.530741, 0.426599, 1.232352, -1.765914, 0.444683, 0.840785, 0.899599, 0.625559, 1.742596, -0.578144, 0.767301, -0.689044, -1.033367, 0.492182, 1.343905, -1.166665, 1.475574, 1.324724, 0.097573, -0.349052, -0.632507, -0.557486, -0.121150, -0.772417, 0.255336, 0.246395, -0.222814, 0.304945, -0.572913, -0.774187, -0.713108, 0.873850, -0.909453, 0.217430, -0.579697, -0.908699, 1.522127, -1.209194, -0.151111, 0.484549, 0.275886, -3.351374, 0.563630, 1.261956, 1.188991, 1.812187, -1.076403, -0.445590, -0.243309, 0.833002, -1.602767, 0.017407, 1.006989, -1.309355, -0.140950, -0.447749, -0.391930, 1.213382, -0.466735, -1.027094, 0.175498, 0.224055, 0.171565, -0.551237, -0.696875, -1.375890, 0.008595, 0.124405, -0.405735, -0.654242, 0.609839, -0.482171, -0.721600, -1.076034, 0.949154, -0.274354, -0.605726, 0.529019, 0.409802, -0.370848, -0.323477, -2.013690, -1.914146, -0.553442, 0.489118, -0.166612, -0.904206, 0.365733, 0.284435, 0.581881, 0.293662, 1.940614, -0.053730, -0.562597, 0.166204, -0.034657, 0.232666, 0.567458, -0.274676, -0.673414, 0.583490, 0.019225, -1.019031, -0.192786, 0.041915, 0.819685, -1.655979, -0.923991, -0.536494, 1.023249, 0.875873, -0.349267, 1.154426, 0.675045, -0.271128, 0.919425, 1.606050, -0.383332, -1.730164, 2.083037, 0.682875, 0.642460, 1.246917, 0.796925, 0.587290, -0.067455, -0.049825, -0.660855, 1.221030, 0.599741, 0.155987, 0.236603, 1.643773, -1.434235, -1.240380, -2.358667, 0.421722, 0.571980, 1.592563, 0.689440, 1.346162, -1.235697, -2.307466, 0.249661, 0.795872, -0.199412, 0.067574, 0.050926, -1.338267, -0.062789, -1.517283, 0.171240, 0.943095, -1.129775, 1.128675, 1.021400, 0.865726, 0.019756, 0.358419, -1.601556, 0.175556, -0.186374, -0.603905, -0.221676, 0.399662, 0.770635, 0.650266, -0.191853, -0.705799, 1.303510, -0.790246, -0.355699, 1.120368, -0.966970, -0.346966, 0.807937, 0.182099, -0.643863, -1.339869, -0.517419, 1.090229, 0.113312, -1.191045, 0.570374, -0.282560, 1.767856, 1.239000, 0.495570, 1.067907, -0.522559, 1.208784, 1.908317, -0.459265, -0.355194, -0.326420, 0.192193, 0.016200, 0.247967, -1.445105, -0.531461, 0.233343, -0.603176, -0.101607, 0.492800, -0.956807, -0.197843, 0.712930, 0.415724, -0.777211, 1.608439, 0.248479, 1.764533, 0.946165, -1.287674, -0.706395, -0.538102, -0.280893, 0.864306, -0.004605, -2.642781, 1.515160, -1.041577, -0.219260, 0.652457, 1.184279, 0.908110, -0.430675, -0.421237, 1.249938, -0.628080, -1.319272, 2.587377, 0.349025, 0.559089, -0.510717, 0.282395, -1.050557, -0.996782, 0.535615, 1.979846, -0.742469, -0.766504, 0.600828, 0.078082, 0.808693, 0.085032, 1.220272, -1.229239, 0.799452, 1.259958, 0.100966, -2.091216, 1.605515, 0.861368, -0.004704, -0.356753, 0.544389, 1.018540, -0.611060, -0.045048, 0.746918, -1.125080, -1.736697, 0.361980, 0.687073, 1.113403, -0.778031, -0.674569, 0.138886, 0.949562, -0.096342, 2.890121, -0.167693, 1.243153, -0.594972, -0.464512, -0.599216, 0.816519, 1.626926, -0.568935, -2.240093, -1.415238, 1.143895, 2.219984, -0.704653, -0.923683, 0.311847, 1.878664, 0.977680, -1.299896, -0.071292, -0.407952, 0.133068, -1.083324, 0.048283, 0.402467, 1.755934, -0.511331, 1.667513, -0.953648, -0.389607, -0.677363, 1.283248, 0.167665, -0.373921, -0.108647, 0.902080, -0.591049, -0.402724, -0.618408, -0.325697, 2.157628, 1.176920, -1.025583, 0.528410, 1.918578, 1.149557, -0.493612, 0.006497, 0.626100, -0.103714, 1.320319, 0.734537, -0.820399, -0.484145, -0.262889, -2.122679, 2.250782, -1.246572, 0.537250, -2.221998, -0.162213, 1.259681, 0.814287, 0.184985, -0.962400, -1.034561, -0.518209, 1.485556, 0.157694, -0.016542, 1.446635, -0.792916, -1.111207, 0.357275, 1.993596, -0.091866, 1.784798, -1.218022, -0.774211, -0.565065, 0.751498, -1.198581, -2.168022, -0.556857, -2.152738, 1.769687, 1.226500, -0.979712, -0.133655, -0.604645, -1.233752, -2.574555, 1.010375, -0.527131, 0.526848, 0.792683, -1.827865, -0.286715, -0.173819, 1.723965, 0.069501, -0.017190, 0.180904, 1.723890, -0.158595, 1.716092, -0.816275, -0.431658, -1.126670, 0.082952, -0.253298, -0.396215, 0.817629, 0.924884, 0.882107, -0.598875, 0.340469, -0.651711, 1.465118, -0.193488, 0.231429, 1.478785, -0.550179, 0.058062, -1.127797, -0.472308, 0.293994, -0.765727, -0.084414, 1.488963, -0.717431, 0.559346, -1.172878, 1.077000, 0.992306, -0.354559, 1.657768, 0.917916, 0.130025, -0.824396, -0.339309, 0.443658, 0.241693, 0.150563, 0.579415, 0.734368, 2.067839, 0.024940, 0.613714, -0.489831, -0.017854, 0.463202, 0.837997, -1.523380, 1.166797, 0.705606, -1.274280, -0.608049, -0.093057, 1.247089, 0.548793, -1.499837, -0.419736, 0.642094, -0.222377, -1.006101, 0.265313, -0.972350, 0.100818, 0.167672, 0.916850, -0.005351, 0.151749, -1.477119, -1.595987, 0.007490, 0.247580, 0.676573, -1.048314, 0.873673, 0.543851, -1.890718, -1.556902, -0.651022, 2.266067, 1.111217, -1.512944, -1.039097, 0.561027, -2.022777, -2.267170, 0.559551, -0.181163, -0.380800, 2.568506, -0.048274, -1.532602, -0.711214, 0.456754, -0.298552, -0.852297, -0.673568, -0.025357, 1.506788, 0.729719, -0.627132, 0.704863, -0.771358, -0.234923, 0.512881, 0.098700, 1.558895, 0.626332, -2.404042, -1.593118, -0.910586, -0.073949, 1.369000, 0.777692, 0.618456, 1.555888, 1.080292, -1.575631, -0.177454, -0.056923, -0.111512, 2.395575, 0.822964, 0.508957, 1.777427, -0.617741, 1.529521, -0.342464, 0.931729, 1.419697, -1.781377, 0.633057, -0.644221, 1.926503, 0.085201, 0.120767, 0.280810, -0.435773, 0.623020, -1.141157, -0.742953, 1.233315, -0.863444, -0.078697, 0.942146, 0.470585, -0.530560, 0.064825, 0.556514, 0.385438, -0.043630, 0.443434, -0.324671, -0.091268, 0.262365, -0.691050, -1.211713, -0.382227, -0.142457, 0.619695, -0.463709, 0.324579, 0.979687, 1.240082, -0.511788, 1.195837, -1.035440, -0.279212, 0.101900, -0.598191, -1.541087, 0.580573, 1.591929, 0.057784, 0.869312, 1.930244, -0.880732, -1.985414, -0.506545, 0.782657, -1.185044, -1.264253, -0.595761, -1.051046, -0.484551, 1.632064, 0.313763, 0.621775, -0.143035, -0.888251, -2.920872, -0.155119, -1.318960, -1.583609, -0.510871, 0.531714, -0.469161, 1.473488, 0.490432, -0.975485, 0.960669, 0.174642, -0.097040, -1.036655, -0.079122, -0.740911, 0.062468, -2.204673, 1.467913, 0.477918, 0.116096, -0.942733, -1.106317, 0.072211, -0.547503, 0.904341, -1.249585, -0.860086, 0.669360, 1.599892, -1.603413, -0.014208, -0.049093, 0.330523, -1.828221, 0.016778, -0.011054, 1.537207, 0.029996, -0.083702, -0.295712, -0.195850, -1.196717, -2.485331, 1.934735, -0.848199, -0.046871, 0.696282, -0.669326, 0.542737, 0.172240, 1.392935, 0.294058, 0.681605, 0.547594, -0.046375, -2.416908, 0.480014, -1.272707, 1.061551, 0.118739, -0.383038, 0.283612, -1.184908, 0.794572, -0.573631, -1.189312, -0.696585, 0.240662, -1.318323, 1.536712, 1.805373, -0.789958, -0.616833, 1.583329, 1.025888, 1.315872, 0.290487, -0.310958, 0.598684, -0.497681, -0.730004, 0.281990, -0.920312, 1.393849, -1.354705, -0.545094, -0.301724, 0.889377, -0.250373, 0.726920, -0.027046, 1.059530, -0.777431, 0.373186, 0.815229, 0.131231, 2.739349, 1.512660, -1.553339, -2.415697, 1.217249, -0.894998, 0.090184, -0.136636, -0.906759, -0.281050, 0.568048, 0.065008, 1.863625, -1.438105, 1.686268, 0.011170, -0.015524, 0.223378, -3.682401, 1.938639, -0.579236, 0.218250, 0.100543, -1.178987, -0.812673, -0.420874, 0.188755, -0.096524, 1.276729, -0.726908, -1.244621, -0.481897, 0.068780, 0.079879, 0.884271, 0.943349, -0.882118, -0.662946, -0.829145, 1.138314, 1.519584, 0.182805, 0.176011, -0.926139, 0.149675, 0.430039, -0.136137, -0.461944, -0.990307, 0.680911, -2.666276, -0.251063, 1.714038, 0.000528, -0.164745, -1.389129, 0.239693, -0.505532, -0.685435, -1.139819, -1.226522, -0.778057, 0.418442, 0.243463, 0.186250, 1.187090, -1.001649, 0.203274, -0.734418, 0.060924, 0.265017, -1.721533, 0.053766, 0.964496, -0.114929, -0.492270, -1.406500, -1.670267, 0.962184, -1.978659, 0.919970, -0.209585, 0.783528, -0.253345, 0.360200, -1.625606, 1.290281, 0.252339, -0.377120, 0.638660, 0.257796, 1.001119, -0.862327, 0.713054, 0.799897, -0.818112, 1.384802, 0.485443, -0.316917, 0.582256, -1.315596, -0.805507, 0.522336, 1.604858, -0.067545, -0.053981, -1.074190, 0.844104, -0.774598, 1.165458, -0.887537, 1.515639, 1.234961, -0.064688, -1.747003, -1.064277, -0.822226, 1.288767, -0.231767, -0.666388, 1.833640, -0.600576, 1.066921, 0.404157, -0.278544, 0.385754, 1.607612, 0.437911, -0.874871, -0.627339, -1.109766, -0.280439, 0.119296, -0.007002, -0.984769, 1.026550, -1.459203, -0.326416, 0.416399, 1.703338, -1.007679, 0.848175, 0.455717, -1.595431, -0.442700, 0.353559, 0.507432, 0.149295, 0.348113, 0.406490, -0.269495, -0.246989, -1.733033, 2.018522, -0.161838, 1.063041, 0.309429, -0.528215, -0.017913, 0.420652, 0.202227, 0.124760, 1.433776, 0.623397, 1.201888, 0.067524, -0.569915, -0.359513, 0.674693, -1.025972, -0.695277, 1.009998, 0.539813, -1.531212, 0.427138, -1.141468, 0.929636, -1.833895, -0.324264, -1.029380, 0.199336, -1.374692, -0.178120, -1.524448, 0.376529, -0.973059, 1.014021, -1.021638, 0.735416, -0.982157, -0.257728, -1.088956, -0.398297, 0.245894, -1.068539, -1.335821, 0.590254, -1.841388, 0.853449, -0.166978, 0.521762, -0.934798, -0.606380, 0.108287, 0.165368, 0.164867, -0.188175, 0.234334, -0.024971, 1.002810, -0.513853, 0.251096, 0.811551, -1.033139, -0.337163, 0.074256, 0.812788, -0.308629, 0.727529, 1.678787, -0.490280, 1.158648, 1.257843, -0.475275, 0.933952, -0.429669, 0.614773, 0.791100, -1.352786, -0.655306, -0.243674, 0.251224, -0.159287, 2.073973, -0.737046, -0.359113, -1.931410, 0.166243, 0.369443, 0.878593, -0.058655, 0.829478, 0.019447, 0.601612, -1.290487, -1.890475, -0.047548, 0.259433, -0.866423, 0.150654, 0.186377, 0.259943, 0.089656, 0.266525, 0.144123, 0.370112, 0.515036, -1.878658, -0.388458, 0.631420, 0.204711, -1.355232, -0.485703, 0.543544, -1.383837, -0.360198, 0.315029, -0.606659, -1.953218, 1.733009, 0.360952, -0.190250, 0.774334, -0.647306, -0.455031, -1.432304, -0.785049, -1.362015, -1.510486, 0.496864, 0.874012, 0.601608, -0.099109, 1.185074, 0.351491, 0.893622, -0.924807, 0.293802, -1.333382, 1.777036, 0.894637, -0.671921, -0.109275, 0.969962, 0.818597, 0.237727, 0.068312, -2.738088, 1.122171, 1.638367, 1.128013, -1.855811, -2.681514, -0.578662, 0.709713, 0.915581, -0.072399, -2.672323, -1.280883, 0.122200, 0.330349, 0.426564, 0.314308, -1.287656, -1.414885, -0.217733, -0.148653, 0.001236, 0.323342, 1.336801, -2.493625, 0.386531, 1.045336, 0.849905, 1.016614, 0.498010, 0.686612, -1.627360, -0.185732, -2.644802, 0.494976, 0.478756, -0.659601, 1.127595, 0.755228, -0.411988, -2.002324, -0.077832, -1.910361, -1.358753, -0.526233, 0.378215, -1.813978, -1.056407, -0.337642, -0.111258, 1.157851, -0.702469, 0.556684, 2.329823, -1.590054, 1.224630, -2.586228, 0.480409, -1.451962, 0.066625, 1.402556, 0.126443, -0.264330, 0.397438, -0.641968, -1.748626, -0.839023, -1.681687, 0.063233, -1.585335, -0.327108, -1.748593, -1.245650, -1.254503, 0.559760, 0.499524, 0.151041, 0.108908, 1.155472, -0.306974, 0.000008, 1.204290, 1.042811, -0.484477, 0.161314, -1.195788, -1.522152, -0.912986, 0.245539, 1.147408, 1.046286, 0.650705, -1.207048, 0.520155, 0.077060, -0.821887, -1.277221, -1.277611, 0.505813, 0.262927, -0.798607, -0.192001, -0.531348, 0.189674, -0.746132, -0.238311, -1.049643, 0.341352, -0.016731, 0.153244, -1.274906, 0.655110, 0.304696, -0.990771, 1.243637, 1.536615, -1.496360, 0.555788, 1.364899, 1.324265, -0.841493, -0.020034, 0.020804, 1.078908, -1.607777, 0.521991, 1.540082, 1.771276, -1.506030, 2.391822, -0.063433, -0.642624, 0.648083, 0.479580, 1.275694, -0.486507, 0.295045, 0.195243, -0.273266, -0.521213, 2.167773, -1.726145, 0.327934, 0.340251, -1.401374, 2.124880, -2.736233, -0.055937, -1.314996, -0.073534, -0.242145, 0.704445, -2.086684, -0.377609, 0.474527, -1.075452, 0.901716, 2.481947, 0.613740, -0.385028, 0.279409, -0.434681, 0.389564, -0.226906, -0.254633, -0.344485, 0.875618, -1.305035, -0.067206, 0.115238, -0.602964, -1.365619, -0.793519, -1.421518, -1.686223, 0.868426, -0.075620, 0.187770, 0.500019, -1.183785, -0.554093, 0.410298, 0.248384, -1.209803, 0.347289, -0.607527, -1.879776, 0.499848, 0.394923, -0.791489, 0.057770, 0.483823, 0.725299, 1.610743, 0.350216, -0.625830, 1.807428, -1.300791, -1.182112, 1.775072, -1.057363, -1.054361, 0.223574, -2.268362, 1.235084, 0.157384, -0.244367, 0.269035, -1.493075, -0.551766, -0.987267, 0.705870, -0.660668, -0.267143, 0.079441, -0.297206, 2.527272, 0.450978, 1.075417, 0.258671, -0.882825, -1.065761, -1.019956, 0.348216, 0.918903, -0.037242, 1.573264, -1.824575, 0.885571, -0.350550, 0.267107, -0.558293, 0.622606, 0.654009, 0.311606, -0.417481, 0.233355, 0.898318, -0.280748, 0.042886, 0.553107, -0.035012, 0.604172, -1.676463, 0.464258, 1.345130, -0.914248, 0.771627, 0.599052, 0.369347, 0.039828, 1.913054, 0.115794, -0.333005, 0.388211, 0.034640, -1.454868, 1.417892, -0.408058, -0.023750, -0.809546, 0.049693, 0.025758, -1.060712, -0.847160, 0.181399, 0.007704, 0.600926, -2.199770, 0.525866, 0.066014, 0.957553, 0.171163, -0.760040, -1.057865, -0.830235, 0.620080, -0.258280, 0.966446, 1.570896, -1.349868, -1.051303, -1.137575, 0.902306, 0.663752, 0.193472, 0.469840, -1.394843, 0.315379, -0.249377, -0.945033, -0.214055, 2.474652, 1.151416, -2.415019, 0.024142, 0.567270, 0.420534, 1.194394, 0.980156, -1.477530, -0.959148, -0.101663, 0.244513, 1.371840, -1.405291, -0.598239, -1.557347, 1.974495, -1.046803, 0.283064, -1.296190, -1.329806, 0.195923, -0.784332, -0.736884, 0.093060, -0.628140, 0.215582, -2.574977, -0.692938, -0.075386, 0.722974, -0.265588, 1.315609, 1.842344, -0.796084, 0.245694, -2.208225, -1.989527, -0.030960, -0.295254, 1.439740, 1.293115, 0.891453, 0.609592, 1.063672, 0.580866, 0.720560, 0.453012, 1.712947, -0.438473, -0.762288, -0.978849, -0.836594, -0.331646, 0.546199, -1.508737, -0.021978, 0.021797, 0.426111, -0.372302, -1.452032, 1.611955, -0.321101, -0.343407, 0.664393, -0.843408, 0.392098, -0.725719, 0.619115, -0.297802, -0.557919, 0.474588, -1.003598, 1.858999, -1.768684, -0.982831, 0.732087, -0.877866, 0.659654, 1.088830, -0.254189, -0.448058, -1.310799, 0.389760, -0.568225, 2.433622, 1.120165, 0.354420, 0.292455, 1.762908, 0.483878, -1.029045, -1.078053, 0.864249, -0.157014, 1.081915, 0.883869, 0.027515, 1.206630, 0.278725, 0.855335, 2.081568, -1.820438, -1.305863, 0.787106, -0.903417, -0.619301, 0.272339, -0.033205, -1.561786, 0.285119, 0.033807, -0.534207, -0.933991, 1.073474, -1.256944, 0.656181, 1.290542, 1.487641, -1.361090, 0.284984, 0.974329, 0.044320, 1.489390, 0.239720, -1.137258, 1.024203, -0.119976, -1.039401, -2.044515, 0.986866, 0.162736, 0.625868, 0.567982, 0.289892, 0.138536, 0.904712, 1.328434, 2.760732, 0.616492, -0.843869, -0.594300, 0.446717, 1.910433, -0.826255, -0.831555, 0.190951, -0.031685, 1.421889, 1.418121, 0.945533, -0.747575, -1.226137, -2.004908, 1.200339, -0.468928, 0.102181, 0.569318, -1.644788, -1.210173, -0.692440, -0.374328, -0.952120, -0.418467, 1.268093, 0.499477, 0.183173, -1.359025, 0.511653, -1.724588, -1.680592, -0.201966, -0.741051, -1.055664, 0.517904, -0.391775, -0.231744, -0.797944, 0.482491, 0.019750, -0.894941, 0.531607, 0.871080, 0.342641, -0.054020, -0.602271, -0.842157, 1.632911, -0.432607, -1.248215, -0.764442, -0.519356, -2.138398, -0.372431, -0.584854, -0.734228, 0.245743, -0.158299, 0.640930, -0.558029, 0.320241, 0.627393, -0.479089, -0.912147, -0.862956, 0.257970, 0.420449, 1.037621, -1.107136, -0.906982, -0.875634, -0.965965, 1.225511, -0.887498, -0.837290, -0.872077, -1.066723, 1.084193, -0.151992, -1.422060, -1.106786, 0.160547, -0.124578, 1.003830, 1.289142, -0.089685, 1.023673, -0.727708, -0.255453, -1.686007, 1.116712, 0.151654, 0.358602, -1.289897, -1.416274, 0.016376, 0.031421, 0.465881, -1.116616, 0.520704, -0.328395, 0.101971, 0.720823, 1.214356, 1.010513, -0.375697, -1.034463, 1.262545, 1.610214, 0.369468, 0.472429, -0.884633, 0.105961, 0.488407, -1.104202, 0.487092, -0.953297, -0.139094, 0.321016, -1.124990, 0.163159, 0.202292, 1.047819, -0.839838, 1.626517, 0.029983, -0.482763, 0.159358, -0.283699, -0.969671, -0.979734, -0.101481, 0.273784, -0.821945, -1.040035, 0.758046, 0.832477, 0.182040, -0.520007, 0.283280, 0.315367, 0.042447, -1.286729, 1.034373, 1.260660, -0.163208, 0.572441, 0.185302, 0.832071, 0.013702, 1.436937, 0.434320, -0.485199, -0.207363, -0.697035, -1.551334, -1.096316, -0.305565, 0.753113, 0.000740, -1.591918, 0.024043, -0.093740, 1.414343, -3.046657, -1.062601, 1.035958, -1.223915, 0.182023, 0.476589, 0.137829, 0.933349, -1.563596, 0.115677, 1.116658, -0.333039, 2.049627, 0.410208, 0.427318, -2.297213, -0.648292, 1.509938, -0.418864, -0.871677, 0.428514, 0.604498, -0.006634, -0.282755, 0.000462, 1.506937, -0.867303, 0.406387, 0.736304, -1.699937, 1.087410, 0.248186, -0.940611, -1.007897, 0.788702, 0.830100, -2.035216, 0.324135, 0.388196, -1.056560, 1.193073, -1.286124, -3.005216, 0.099085, 0.737121, -1.874100, -0.067278, -0.896329, 1.612255, 0.033986, 0.757249, -0.655228, -0.137359, -1.115782, -0.462071, -0.252107, 1.182235, -0.487541, -0.958497, 0.411339, 0.231504, 0.085546, -0.486534, 1.213459, 2.382589, -0.800908, 0.414941, 0.342301, 0.769013, -0.314359, 0.660638, -0.513393, 1.978124, 1.019556, 1.938659, -1.017823, -0.373283, 0.164167, 0.807838, 0.914389, -1.220229, 1.611372, 1.119381, 0.617338, -1.312344, 1.129519, -0.743040, -0.933772, 0.142526, 0.825024, 1.085350, 1.147821, 1.649266, -1.081058, -0.204253, -1.518060, 1.461462, 1.868728, -0.811507, 0.207322, 0.830685, -0.665853, 0.606187, -0.977479, 0.093364, 0.335359, -0.555046, 0.527579, 0.010167, 1.584423, -0.163144, 0.040270, -1.434839, 0.003488, 0.856132, -0.290849, -0.808032, 0.073972, -0.795282, -0.498944, -1.720397, 0.712346, -1.250164, 0.940977, 0.023570, -1.137335, 2.019404, 0.339481, -1.479596, -0.238442, 0.571046, 0.582649, 0.140382, -0.279423, 1.017947, -1.074007, -0.816864, -1.927785, -0.139165, -0.244850, 0.922583, -0.605840, -0.461828, -0.771518, 1.050515, 0.394693, -2.019184, -0.548718, -1.481882, -1.644873, 0.836751, -2.658554, 2.080260, 1.093618, -1.370649}, + { -0.000310, -2.254341, 0.192980, 2.166330, 0.280113, 2.722518, 0.122598, 0.110828, -0.761507, -0.830603, -0.916333, 0.113737, 0.417542, -0.201436, 0.382437, -0.850212, 0.080061, -1.093722, -0.320704, -1.500217, -1.844268, -1.029253, -1.269302, -0.865891, -0.281235, -0.412290, 0.021324, 0.601537, 1.049948, 0.024785, 0.001166, 0.426808, 1.014524, 1.784908, 0.502277, -0.163223, 1.848508, 1.100986, 0.756790, -0.253453, -1.849426, 0.303309, -0.165562, 0.152136, 0.851701, 0.522452, -0.172650, 0.439039, -0.697742, 1.942938, 1.171037, -1.411139, -0.465668, -0.631027, -0.287570, -0.423506, 1.852656, 0.467709, 0.400184, 0.887489, -2.515809, -0.338843, 1.303496, 0.324393, 0.377758, 0.901332, 0.861529, 1.092245, -0.735848, 0.214655, 0.486631, -0.640094, -0.135141, 0.567322, 2.144436, 0.003306, 0.724213, -0.272420, 1.422234, -0.025224, -0.176690, 0.024369, 0.800785, -1.642951, 0.219705, -1.288142, -1.277395, 2.323225, -1.145463, 0.285171, -0.311220, -0.010112, 1.207432, 0.060215, 0.653854, -2.443783, -2.100994, -1.240467, 0.547455, -0.905534, 1.954185, 0.224623, -0.342548, -0.169007, 0.664925, 0.729596, -0.389150, -1.246218, 1.943540, 1.417720, 0.051201, -0.961834, 1.607948, -1.399987, 0.171691, -0.824878, -0.802034, -1.603430, 0.013929, 1.749551, 0.806785, 0.025550, -1.289084, 1.869064, 0.940643, -0.195537, 0.298603, -0.644777, 0.390768, -1.750719, 0.149475, 0.159136, -1.802934, 1.284242, 3.316486, -0.547470, -1.606467, -0.024866, -0.768577, -0.614419, 0.953520, -0.826602, 0.156388, 1.351367, -0.432129, -1.146784, 0.365479, -0.033215, -1.208993, -0.558763, -0.391575, 0.945154, 1.511761, -0.986548, 0.344420, 0.026770, 0.122261, -0.169569, -0.961570, -0.229895, -0.065659, -0.354003, 1.162992, 0.282575, 0.252367, 1.752530, 1.380168, 0.593829, 0.798639, 0.718137, -0.430411, 1.770759, -1.341644, -1.888259, 0.194859, -0.385078, -0.488580, 0.348512, 0.075598, -1.922167, 1.726508, -1.141093, 0.334279, 1.802214, -0.310679, -1.390956, 1.001809, 0.104068, -0.279258, 0.073496, 0.355229, 0.154822, -0.208181, -0.448308, 0.405660, -0.550933, -1.098098, 0.667744, -2.560996, 1.374638, 0.445228, -0.141108, -1.507488, 0.897757, -0.085095, 0.008599, -1.406541, -0.063909, -1.576006, 1.046169, -0.824641, -2.828520, -2.597629, 0.115049, -1.301652, -0.178861, -1.106649, 1.735302, 1.408074, -0.823765, 0.388329, 1.643086, 0.015766, 0.065565, -1.460327, -1.008793, -0.732402, -1.409500, -0.145527, 0.014432, 1.844391, -1.806123, 1.207694, 0.423199, -0.530191, -0.283025, -1.235478, -0.594571, 1.241493, 0.445791, -0.243026, -0.511689, -0.812748, -0.538452, -1.436681, 0.801784, -0.572142, 0.079077, 0.110129, -0.791548, -0.650440, -0.775674, -0.069399, -0.614946, 1.250918, 0.486805, -0.289950, -1.314598, -0.208929, -2.015739, 2.261823, -0.482761, -1.168523, -0.813381, -1.609539, -0.235460, 0.643777, 0.385749, 1.384014, -0.265247, -0.005141, 0.436923, 0.660392, 1.534517, -0.156140, 0.861179, -0.528399, 0.651150, 1.068477, -0.114685, 0.320244, -1.504362, -1.100460, -1.759216, 0.623329, 0.841217, -0.541164, -0.518918, -0.608208, 1.904872, -1.492140, 1.221777, 1.129945, -0.831613, -1.310756, 0.756814, 0.665587, 2.051020, 0.691275, -0.147981, -0.437783, 0.796797, 0.428475, -0.362813, 1.433885, -0.418667, 0.500934, 0.714548, 1.619893, 0.339898, 0.142668, -1.688881, -0.891034, -0.434887, -0.630537, -1.382409, -0.428532, 0.584433, -1.212957, 0.945173, 1.475790, -0.520063, 0.098473, -0.651966, 0.618462, -2.070633, 0.438099, -0.068014, -0.069458, -0.026244, 0.654294, -0.164176, 0.945954, 1.061919, -1.948817, 1.275566, 0.866113, 0.410182, 0.402404, -0.986702, 0.520901, -0.484788, 0.464423, 1.161656, 0.270617, -0.871927, -1.098362, 0.334317, -0.443763, -1.462931, 0.426137, -2.322070, -0.250007, -0.209609, 0.399659, -0.360925, 0.732977, -1.076719, 0.056535, -0.678952, 1.241538, 1.471976, -1.010313, 1.495800, -2.449194, -0.810481, -0.695549, -0.733878, 1.534990, 0.586674, 0.729854, 0.390113, 1.288194, 1.304325, 0.779686, 0.424013, 0.244490, -0.494871, -0.501781, -0.227255, -0.444454, -1.617900, 0.147244, -1.093506, -0.737736, 0.111506, 1.321203, -0.728688, -0.097831, -0.596117, 0.550638, 0.978121, -1.271338, 0.110187, 0.763669, 0.437025, 0.650818, 0.871548, -0.253076, 0.443113, -0.668316, -0.055860, -0.176602, -0.147981, 0.925539, -0.516877, -0.174672, 0.995183, -2.216053, -1.041371, -0.175467, 0.169170, 2.190169, 0.416535, -0.945989, -0.436305, 1.483174, -0.734064, 1.237494, -1.366030, -1.252090, -1.134828, 1.159807, -1.235594, -0.459376, 0.978717, -0.010540, -0.689567, -1.661429, 0.501941, 1.008219, 0.044239, 0.885596, -0.388228, -0.002249, 1.344049, -0.353879, 0.661322, 0.190633, -1.375905, -1.167869, -1.485361, -1.100886, -0.840231, -1.804455, -0.044461, -1.010893, 0.086509, 0.257084, 1.912327, -1.093373, 0.503289, 1.190409, -0.155940, 0.068600, -0.476641, 0.231294, -1.257760, -1.818569, 0.627606, -0.758381, -1.043462, 1.299260, -0.793737, -0.052611, -3.366881, -0.256570, 0.811687, 1.144203, 1.267074, -1.224903, 0.653482, 0.697111, -0.038015, -1.976700, 0.427569, -0.858028, -0.869722, -0.481895, -0.574310, -0.294258, -0.763877, 0.835772, 0.347611, 0.402093, -0.865398, -0.433433, -1.782931, -1.005681, -0.289996, 1.315005, -2.146737, -0.140296, 1.498453, 0.477140, 0.506560, 0.087171, 0.200461, 0.913853, -1.298919, -0.417357, 0.659791, -1.262264, 1.138160, 0.139477, 0.430436, 1.308126, -1.663393, 0.206676, -1.053060, 0.928127, 0.848650, -1.403534, -1.479429, 0.351608, -0.126559, -0.058183, 1.363872, 0.511943, 0.382296, -0.802274, 0.167611, 0.114009, -0.156027, 0.337398, 1.888498, -1.142142, -0.190050, -2.309773, 1.882275, -0.908648, 1.156070, -1.083581, -0.260234, -0.264256, 0.181673, 0.998001, 0.708337, -0.820202, -1.056552, -0.549025, -0.937117, -0.607025, 1.091182, -0.349356, -0.474430, -0.095454, 1.996152, -0.563996, -0.316541, -0.524540, 0.944083, 0.770946, 0.190239, -0.540259, 1.345416, -0.275899, -0.350663, -0.323367, -0.948036, -0.512628, -0.154243, 0.342741, -0.486023, 0.453986, -0.626529, -0.413604, -0.850539, 0.825574, -0.248336, 1.645465, -0.731914, -1.110464, -0.262465, -0.919119, 0.684329, 1.452496, -1.107936, 0.472311, 0.717388, 1.081823, 0.722107, -0.309873, -1.778788, 0.012027, 0.343833, -0.711979, -0.382678, -1.215450, 0.927912, -1.280086, -0.286294, 0.927771, -1.284849, 0.044937, 0.987196, -0.600440, -0.764728, 1.223866, -1.749675, 0.558138, -0.225351, 0.291901, 0.763121, -0.186465, 1.231005, -0.220323, -1.375887, 1.737642, -1.032664, 0.127659, -0.555420, 0.871373, -1.408172, 0.894561, -0.666330, 0.694927, 0.399955, 1.549409, -0.258027, -0.439352, 0.325821, -0.649380, -1.091650, -1.808038, -0.820617, -0.754702, -0.118449, -2.884336, -0.779339, -0.695485, -0.277610, -0.826338, -1.634652, -0.785844, -0.657514, -0.162834, 0.849195, -0.717902, -0.260639, 0.446192, 1.350384, -1.417821, 0.763972, -1.055862, 0.203728, -0.637896, -0.983660, 0.307930, -0.700155, -1.151881, 1.232924, -0.087471, 1.178497, 0.772805, -0.506379, -1.249147, -0.657724, 0.649312, 0.210307, -0.568956, -0.324855, 0.127071, -1.010271, 0.652170, 0.561438, 0.355418, 0.124805, -0.957488, 0.006968, 0.959223, -0.126700, -0.361955, -0.789080, 0.544005, 0.913224, -0.785589, -0.155600, -0.203003, -1.537046, 0.595913, 0.786441, 0.728597, 1.584259, 0.518694, 1.098688, 0.008041, -1.614629, -0.568905, -1.835487, -0.020016, 0.578924, -0.401919, -0.023403, 0.041107, 1.406335, 0.932857, 0.739902, -0.822920, -0.126282, -0.256550, 0.518091, -1.246217, 0.357496, 0.081969, -0.030353, -0.538042, 0.431942, 0.806271, 0.993471, 1.292731, 0.268364, 0.422041, 1.516722, 0.637980, -1.070699, -1.430245, -0.174343, 0.974864, 0.083185, -2.647842, -0.018127, -1.379291, -0.462449, 0.168273, -1.074682, -1.200976, -0.897146, 0.420637, 0.226442, 1.210052, 0.158170, 1.339542, -0.228302, -1.201164, 0.678916, -0.152949, -0.231727, 0.101638, 1.086831, 0.114915, 0.193390, 0.520851, -0.716967, -0.158356, 1.396594, -1.226498, 1.333604, 1.218269, 0.591765, -0.293817, 0.662191, -0.509264, -0.387811, 0.641513, -0.212842, -0.630714, -0.787177, -0.747907, -0.394068, -1.181964, -0.926449, -0.908128, 1.057537, 2.377935, 1.040726, -2.002921, -0.658259, 0.322599, 0.325795, -0.681271, -1.610763, 0.214933, -0.195344, -0.732711, -0.196677, -0.922687, -1.114889, 0.046415, 0.575205, -2.371344, 0.490256, -1.504221, -0.852711, -2.226125, 0.189895, -0.396921, -0.741804, 1.258941, 0.903288, -0.578421, -0.746789, 0.480031, -1.495332, 0.084609, -0.185206, -0.741113, 0.488575, -0.124369, 0.520563, 0.440869, 1.854863, 0.065226, -0.070361, 0.395258, -0.548170, 0.194915, 0.627369, -1.071900, 0.835065, -0.487628, -0.426167, 0.284812, 1.229825, -0.472712, -3.471420, 1.958858, -1.978104, -1.062547, -0.810515, -0.151313, 1.282813, 1.676740, -0.701179, -0.665178, -0.641462, -0.145278, 0.866631, 1.017982, 0.839669, 0.090788, 0.010057, 2.160164, -1.868641, -0.777389, 0.284229, 0.945118, 1.133554, 1.594268, -0.929536, 0.976802, -1.153779, -1.102439, -0.545499, -0.803905, -0.917282, 1.018876, -0.016141, 0.400464, 1.175557, 0.618795, 0.257319, 0.353386, 0.755966, -0.918343, -0.112120, -1.957283, 0.358920, 0.291256, -0.449399, -0.765446, 0.623519, 0.377403, -0.405677, -1.255373, 0.470263, -0.510526, 0.455812, -0.405665, 0.395529, -0.039041, 0.420992, -0.455029, 0.922937, 0.960143, -0.174892, -1.491710, -0.878063, -0.041892, -1.542657, -0.586673, 0.673121, 0.278594, -0.744022, 0.400989, 0.141963, 0.528980, 0.782551, -0.765592, -3.077056, -0.176554, 0.189274, 0.928752, -0.143396, 0.308576, -0.930744, 0.011027, 0.767563, -0.422409, -0.024158, 0.132172, -1.070852, -0.892882, 0.936342, 0.330952, 0.425262, -0.088240, -0.352334, -0.327625, 1.104257, -1.595690, -0.575914, -0.503969, 0.452161, -1.102836, -1.181777, 0.599525, -0.212906, 0.135153, 0.953362, 0.290967, -0.497606, -0.630167, -1.904923, -0.193714, 1.430350, 0.579384, 1.151465, -0.371174, -0.206153, -0.126312, -1.265094, -1.109821, 0.976947, 0.663322, -1.565278, 1.997962, 1.974330, -0.758936, -0.128314, -0.568111, -0.096106, 0.102235, 0.508888, -0.186083, 0.621621, 0.558730, 0.487501, -1.159593, 0.589362, -0.658880, -0.068941, -0.408277, -0.327204, 0.767794, -0.665051, -0.106410, 0.717532, -0.075429, -0.783067, 0.328551, -0.911251, 0.301051, 2.248267, 0.280039, -0.128141, 0.337225, -1.861028, 2.074609, 1.304927, 0.692123, -0.384749, -0.255998, 0.207496, -0.682414, -0.466749, -0.644177, -0.464388, 2.079644, -0.031801, -2.459670, 0.602536, 0.587000, 0.145167, 0.601113, 0.418047, -1.533176, -1.398823, 1.332788, -1.320762, 1.386994, -1.951933, -0.197956, -1.281009, 1.017715, 0.968581, 0.847523, 0.344410, 0.702560, -0.716600, 1.034190, -0.683654, 0.441521, -0.501335, -1.428623, -0.164273, -1.251855, 0.936645, -0.179842, 0.038877, -0.074363, -2.411149, 1.683910, -0.329958, 0.068716, 0.001927, -0.871787, -0.055828, 0.519028, -0.976447, 0.284948, 0.174078, 0.405544, -1.266704, -0.290867, -0.491148, -1.137185, 0.243461, 0.820727, -0.281501, 0.357176, 1.026953, 1.380192, 0.026565, -2.035794, -2.683347, -0.793371, 0.247048, 0.436278, -1.463137, 0.510608, 0.408506, 0.680546, -1.269389, -1.674156, 0.055552, -0.214216, 2.546355, -1.356142, -0.225836, 0.233195, -1.396419, -1.372800, 0.698696, -1.345543, -1.160208, 0.375353, -0.321001, -0.098894, -0.746127, -1.188361, 0.241601, 0.213069, -0.687789, 0.000259, -1.697009, -0.392925, 0.550013, 1.049769, -1.220510, 0.986781, -0.504827, 1.138408, -0.081807, 0.527459, -0.642788, -2.293021, -1.063609, 0.995131, 1.072966, 1.894066, 0.590662, 0.416504, -0.013372, 0.141664, -0.072102, -0.536056, -0.306425, -0.288491, -2.726400, -1.362125, -1.095878, 1.260155, -2.240189, -0.783740, -0.736593, 2.082050, 0.206090, 0.683437, 2.472804, 0.500268, 0.921836, 1.087455, 1.083292, 2.150990, 0.669659, -1.055766, -1.008252, -2.406810, 0.158756, -1.346463, -1.226624, 0.234445, 0.372226, -0.395401, -1.031653, -0.073567, 0.028250, -0.517777, 0.920520, 0.401587, -0.561708, 0.783198, 0.612223, -2.623595, 0.267330, 0.833980, -0.668182, -0.846267, 0.164838, -2.062011, -0.267630, 1.234690, 1.486353, 0.804720, -0.261752, 0.854011, -0.340968, -0.080165, 0.045658, -1.077075, 1.101985, 0.508550, 1.267486, 0.129629, 1.098764, -0.080763, 1.326010, 1.075671, 1.177864, -1.958402, -1.406060, -1.044418, 2.197954, -0.070487, -1.178608, -0.729226, -1.684683, 0.588851, 0.607503, -0.758390, -0.037811, -0.903945, -0.908954, 1.296130, -0.858210, -0.336361, -1.514495, 0.418092, -1.448387, -0.037263, -0.730364, 0.767328, -1.039257, -0.187513, 0.250304, -1.167844, 0.905511, 1.225566, 0.773329, 0.590053, -0.395775, -0.967780, -0.449805, 0.066671, -0.911307, -0.146448, -0.650075, -1.733644, 0.202639, -2.096868, 0.777623, 0.139698, -0.666559, -0.348310, 1.583402, 0.597975, -1.362816, 3.044469, -0.970940, 1.108881, -0.033359, -1.906896, -0.126966, 0.989336, 0.535150, -2.518695, -0.988642, 0.882000, 0.148014, 1.550435, 0.454611, -0.467841, -0.539649, -2.464569, -0.438146, 1.604214, 1.055978, -0.347897, 0.594906, 0.276337, -1.195851, -0.094712, -1.940078, 0.261595, -0.559067, -0.175453, -1.062460, 0.529136, 0.628452, -1.994576, 0.447600, -2.157587, 0.028968, 0.585512, -0.665303, -0.438573, 0.692657, 0.237587, 0.519565, 0.536739, 1.012157, -0.375979, -0.244076, -0.221519, 0.641126, 0.435968, 0.309686, -1.694985, 1.194197, 0.791178, -0.025695, -0.380001, 2.650587, 0.991207, 0.676633, 1.975837, -0.032809, -1.581086, -0.776096, -0.873394, -0.691602, 1.384972, -1.586605, -0.106223, -0.509311, -1.260914, -0.270195, -0.447073, 1.718911, 1.288213, -0.409454, 0.161570, -0.510411, -1.414662, 0.237212, -1.137569, -0.580576, 0.981392, -1.552203, -1.030880, 0.597492, -0.736982, 0.244241, 2.098681, 1.353868, 0.189834, 0.063874, -0.322596, -0.875432, 1.856609, 0.978770, 0.567828, -0.673501, -0.051392, 0.590863, 0.358643, -0.510432, 0.233621, -0.311325, 0.285921, 0.145806, 0.366766, -0.318504, -1.333216, 0.109532, 2.276802, 0.056999, 0.787855, 0.001969, 1.462392, 0.781060, -1.399222, 1.000759, -1.229889, -0.943922, 1.011972, 0.119094, 0.579928, 0.445671, -1.600450, 0.351057, 0.000005, -1.258211, 0.438742, 0.384129, 1.257095, 0.243613, 0.732215, 0.563773, 0.558158, -0.005431, 0.498690, 0.473708, 1.018654, 1.121101, -0.939852, -0.213199, -0.276401, 0.004909, -0.949371, -0.208996, -0.621509, -0.006088, 1.047576, -0.261587, 0.758026, -1.042452, 0.173167, -0.974808, 0.720904, 1.928434, -1.007969, 1.151387, 0.757279, -1.141207, 1.184501, -1.205198, -0.118223, 1.152584, -0.492933, -1.082554, 0.817773, 0.859660, 0.556207, -1.495700, 0.487703, -0.101187, 1.572150, 0.046708, 0.286033, 1.192786, 0.325252, -0.565112, 0.308252, -0.056969, -1.307379, -0.494229, 0.158643, 1.466922, -0.058740, -1.426654, 0.952023, 0.762363, 0.025910, -0.528175, -0.129232, -0.526779, -1.018734, -2.172885, 0.139164, 0.487541, -0.489762, 2.567008, 1.174187, 0.825296, 1.117466, -0.618133, -0.327267, -0.986281, 0.802568, -0.465938, -0.165495, 1.190362, 0.069215, -0.516492, 1.365286, 0.138378, 0.791981, -2.196522, -1.192415, -0.981542, -2.380377, -0.395878, -0.332126, 0.777393, -2.312853, 0.048237, 1.096405, -0.483414, 0.503911, -1.002781, -0.349081, -1.282461, -0.237205, 1.726126, 1.000734, -0.580431, 0.517764, -0.694245, 0.636223, 0.745810, 0.184304, -1.064833, -0.628694, -0.161844, 2.561419, -0.140944, -0.225927, -1.255550, 0.842041, 1.484609, -1.189823, 0.262127, 0.212034, -0.522273, -1.540660, -0.164170, 0.900511, -3.637427, -1.484830, -0.337817, -0.585816, 0.829291, -0.021735, -0.295395, 0.350354, 0.127400, 0.868848, 0.628189, -0.071356, -0.302068, -0.460823, -0.493332, 1.326903, -0.473122, -0.627086, -1.001637, 1.190783, 1.395118, 0.356406, -1.904800, 0.510484, 0.270202, -0.409133, -1.631714, -2.028938, -1.084906, -0.669172, -1.643011, 0.195874, -0.874741, -0.026854, 0.145770, -0.426812, 1.062227, -0.389446, 0.383789, 0.256626, 1.762084, 0.038312, 0.160966, -0.156655, -0.018273, -0.222940, -1.145909, -0.134850, 0.585524, 1.047425, -1.073503, -0.512874, -0.101105, -0.792661, 1.011243, -0.208642, 0.289026, 0.475198, 0.652303, -1.646680, -0.663122, -1.672177, 1.300855, 2.351508, 0.284167, 0.357206, -1.219270, 0.016459, -0.216782, 1.872439, -0.623918, 0.435119, 1.484990, -1.191152, 1.053817, -0.299299, 0.335644, -1.055210, 1.885218, -0.701890, 0.071460, -0.654747, -0.693071, -0.062382, 0.515474, -0.771797, 0.206875, -0.436573, -1.176895, 0.411175, -0.890135, -0.286007, -0.994778, 1.109493, -0.374172, -1.295705, 0.743912, -0.409898, 0.795929, 1.708612, 0.146927, 0.056893, -1.662144, 1.897628, -0.381825, 0.886572, 0.765283, -1.643459, -0.209627, 0.538402, -0.107180, 0.235326, -0.990710, -0.796664, 0.151547, -2.397212, 1.466284, 2.423258, -1.319225, 0.433650, -0.001136, 0.233109, 0.211764, -0.924049, 0.067780, -0.539493, -0.926936, -0.238775, 2.290321, 0.781045, -0.418014, 1.861555, -0.274531, -0.724386, 1.029387, 1.338853, 1.118110, 0.045584, 0.915301, -0.677501, 0.658590, -0.117179, 1.947100, 0.008935, 0.126832, 1.178329, -0.803223, 0.579354, 1.907056, 1.757846, 0.323214, 1.765478, 0.364182, -0.233604, -1.712457, 1.166000, -0.061417, -0.808175, -0.246385, -0.218994, -1.494620, -1.897371, -1.055054, -0.065949, 0.915990, -0.600269, -2.418455, 1.109551, -0.101269, -0.865274, 0.905284, 1.340405, 1.564946, 1.136933, -0.226384, 1.195632, -1.625775, -0.142709, -0.582714, 1.018635, 0.239187, 0.254904, -1.388055, 0.273447, 0.033671, -0.137348, 0.715405, -1.116788, 0.867256, -0.092840, -1.423702, 0.496947, 0.820572, -0.022488, -0.295736, -1.494535, 1.120374, 1.626204, -0.758905, -0.788870, 0.930361, -0.790291, -0.518069, -0.011004, 0.037606, 0.353431, 1.263922, 1.318524, -1.215041, 0.710435, -1.273998, -0.811268, 1.456560, -1.112965, 0.070197, -1.370241, -0.774796, -0.477639, 0.062192, -0.175403, 0.326411, -0.893677, 0.293676, -1.073488, 1.589946, -0.990054, 0.510195, 0.322609, 1.139129, -0.740678, 1.049678, 0.069499, -0.695848, -0.176900, 0.392683, 0.816067, 2.343448, 0.342424, 0.077515, 0.011839, 1.060618, 0.190697, -2.109954, -1.005106, -1.076016, 0.054223, 1.909171, -0.927378, -0.278525, -0.283782, -0.591413, 0.411979, 0.178880, 0.545758, 0.314061, 0.343164, -0.024496, -0.076241, -0.418832, -0.629426, 0.458747, -0.039186, 0.013764, 0.534525, -0.038161, -0.006657, -1.233315, -0.459750, -0.290533, -0.187723, 0.874260, -0.741724, -0.322112, -0.155293, 1.034464, 1.227990, 0.461718, -2.522946, 0.140447, 1.917121, -0.230219, 0.084232, 1.195831, -0.465479, -0.069053, 0.768489, 0.733076, -1.273126, -0.686845, 0.421374, -1.496670, -0.890413, -1.312735, -0.905685, -2.223762, 0.557832, -0.677297, -0.669101, -0.539208, -1.150457, -0.321102, -0.004650, 1.299911, -1.653696, -0.509951, -1.803900, -2.061029, -0.286209, -0.030529, -0.820282, 0.776440, 0.684709, 0.354456, -0.183622, -1.084615, 0.454193, 0.955770, 0.014660, -0.013150, 0.022208, 0.475078, 1.801752, -0.679029, -0.991057, -2.257233, 0.458207, 1.017008, 1.708871, -0.881148, 0.599051, -0.055908, 0.180152, 0.941960, 0.361025, 0.265645, 0.406258, 0.332640, -0.372810, 0.229761, 1.569845, -1.622195, 0.846943, 0.452573, -2.374628, -0.412241, -1.306029, 0.667033, -0.188091, 0.602733, 0.364158, 0.626955, -2.093137, 0.476072, 1.150041, 1.245420, 1.500910, 0.245463, 0.001392, 0.167791, 1.044601, -0.675887, -0.981063, 1.129331, 0.995739, -1.309379, -0.530822, -0.144421, -1.398133, -1.559309, -1.142807, 1.199523, -0.994016, -0.398398, -1.941531, 0.329216, 0.683361, -1.098504, 1.897109, -1.013998, -0.209602, -1.138555, 0.263112, -0.588895, 0.534464, -2.329653, 1.240660, -0.838349, -1.303276, -1.106231, -1.546260, 0.056579, 0.144556, -0.983626, -0.087649, -0.167575, 0.600193, 1.822821, -1.045258, 0.970930, 0.852403, -1.764350, 0.599596, 0.219811, -0.443530, 0.672631, -0.248273, -0.661209, 0.717856, 0.880369, -0.340855, 0.705535, -0.371386, 0.595894, -1.620608, 1.771393, 0.050063, 2.552893, -0.815177, -0.463815, -0.419730, -0.403656, 1.164727, -1.031374, -2.146148, -0.756977, -1.129535, 0.089393, 0.076610, 0.193511, 0.795068, -1.486254, 0.887222, 2.135152, -0.863207, -0.408982, -0.359638, -1.173769, 0.197693, 1.384118, 0.759013, -0.888398, 1.655151, 0.537808, 0.978626, 0.448329, 1.911075, -0.214059, -0.472554, -0.012441, 0.306431, -0.726796, -1.405204, -0.475013, 1.127137, -1.236143, 0.716715, -1.490087, -0.527281, 1.513673, 0.400385, -0.628402, -1.684841, -0.073905, 2.295146, 0.715512, -1.431172, -0.266330, 0.245475, -1.383456, 1.014582, -0.029370, 0.389303, -0.295882, -0.825704, -0.888124, -0.562533, -0.425604, 0.744794, 1.334797, 0.434175, 0.024609, 0.293229, 1.192807, 0.560325, -0.317291, 0.987226, -1.404189, -0.666735, 0.528517, 2.326823, 1.074562, 0.442010, -0.345489, -1.233982, -0.530251, 1.364220, 0.927370, 1.124556, -0.746726, 3.027888, 0.479960, 0.146034, 1.741444, -0.214056, -0.681461, 0.313598, -0.125564, 0.927843, 0.321219, 0.327717, 0.524398, 0.257596, 1.138793, -0.522281, 0.685992, 1.212762, 1.429589, -1.336824, -1.535577, -2.141625, 0.371031, -0.564663, 0.778991, 0.660521, 1.092923, 1.387850, -0.912745, -1.126989, 0.671569, 1.033428, 0.255001, -1.020624, 0.508126, -2.537246, -1.206881, 2.143155, 1.217432, -0.103698, 0.134533, -1.288910, -0.702015, 1.031837, -2.216333, -0.232174, -0.482767, 1.467776, 0.511015, 1.720150, -1.607136, -0.754607, -2.980773, 0.053542, -0.224538, -1.186255, 0.107825, 1.015998, 2.044798, -0.962822, 0.768290, 0.377811, 0.989644, -0.573371, -0.573764, 0.581537, -0.162456, 0.020037, -0.095484, -0.548828, 0.707258, 0.145471, -0.550174, -0.879973, 0.662598, 0.527053, 0.164336, -0.868319, 1.371678, -3.331736, 1.054190, -0.459952, 0.111668, -0.365330, 2.178210, -1.157461, -0.367150, -0.496674, 0.738479, -0.524752, -0.665053, 1.082217, 0.676992, -0.329835, -1.281568, 1.308636, -0.773786, 0.167909, 1.263999, -0.921950, 0.557877, 0.061439, -0.644029, 0.225120, -1.029846, 1.356338, 0.845113, -0.440693, 0.764361, -1.709079, 0.520657, -1.047641, -0.194259, 0.333679, 0.410957, 1.324033, 1.467328, 0.761615, 0.023882, 1.621456, -0.441009, 1.019255, -1.154135, -0.487367, -1.418002, 0.143929, 1.530343, 1.908421, 1.034541, 0.516334, -0.605141, -0.408537, -1.408641, 1.786848, -1.636864, 0.536098, -0.439890, 0.519830, -1.037863, 0.288615, 0.364682, 0.310926, 0.094643, -0.076550, -0.896334, -0.781903, 0.773831, -0.006851, 1.888107, -0.395528, -1.977861, -0.021403, 0.044674, -1.806692, 0.636308, -1.089045, 1.162437, -1.058922, 0.121448, -0.095135, -1.366638, 0.904716, -1.028959, 1.188603, 1.545438, -0.762388, 0.073392, 0.514723, 0.108277, -0.300074, -0.014929, 0.637609, 1.966302, -0.489263, -0.555309, -1.212615, 0.590619, 1.404817, -2.374523, -0.813090, 0.041592, -0.624261, -0.309411, -1.485190, -1.400385, -0.460758, -3.248042, 0.799233, 0.830464, 1.088285, -0.004690, -0.965094, 0.463383, 1.004339, 0.897590, -0.548591, 0.470458, -0.216502, 0.155910, 0.674579, -0.804897, 0.169923, 1.423382, -1.386097, 0.264713, 0.758326, -0.875114, -0.175062, -1.672930, -0.422078, 0.760608, -0.166908, -0.111036, 1.233218, 0.265164, 0.654944, -0.357084, 1.243490, 0.411791, -1.413935, -2.070543, 1.287142, 1.420768, -0.439515, 1.422767, 2.404319, -1.830192, -0.392318, -2.096961, -0.926867, 1.421650, -0.536812, -1.621780, 1.142596, -1.525986, 0.777854, 2.262506, -1.915564, 1.200449, -0.330272, -0.058940, -0.356124, -0.060913, 0.228493, 0.127902, 1.602695, -0.765264, -0.569040, -0.205218, 0.201786, 0.385277, 0.521777, -0.580311, 0.070717, -0.419210, -0.008011, -0.905166, 0.816212, -0.698387, 0.525203, 0.844407, -0.370375, 1.393425, 0.537902, 1.562649, 0.024912, 0.832647, 0.207483, -1.302135, -0.069374, 0.534695, -1.648680, -1.537451, 0.711174, 0.182759, -0.229749, 0.499966, 0.211740, -0.577806, -0.020320, -0.670744, 0.261563, -0.192689, -0.385004, 1.492509, -0.195899, -1.046078, 0.621155, 0.813167, -2.581225, -0.016883, -2.062985, 0.537845, -1.083806, 1.918472, 1.496444, 0.178091, -1.589480, -0.483474, -0.544916, -0.488579, -0.435137, -2.074032, -0.408304, 1.868456, -1.034542, -2.049857, -0.613862, -1.176885, -0.188859, 1.240873, -0.149484, -1.683366, 0.704676, 0.081753, -1.221354, -0.255223, 1.037273, 0.878709, 0.178451, -0.131728, -0.495844, -0.941290, -0.577240, 0.772213, 2.023265, 0.175766, -0.851853, 0.328859, -0.126748, 0.375021, 1.173086, 1.218199, 0.627246, -0.914798, -0.491524, -0.825908, 0.441356, 0.868793, 0.543873, -0.669288, -0.182742, 1.264376, -0.166431, -0.457383, -0.052764, -0.137540, -0.534472, 1.595176, 1.023789, 0.207692, 0.406993, 0.144197, -0.747123, 0.775069, 2.253808, -0.965658, 0.105241, -0.789178, 0.328050, 0.299749, 0.203777, 0.740311, 1.205186, 0.808269, 0.660498, 1.499956, -1.296732, 0.806671, -1.704128, 0.388678, 2.108604, 1.343242, -0.726507, 0.113946, -0.522061, -0.965185, -1.216846, -1.104517, -1.731349, 0.150635, -1.113899, -0.278155, -0.028369, -0.413708, 0.813491, -1.307175, 0.974120, -1.371080, 0.534954, -0.634996, 0.188443, -0.664846, 0.154796, -1.536029, 0.149593, -0.890506, 0.087411, 2.033621, -0.067087, -0.921834, 0.273096, 0.923246, -0.744569, 0.400070, 1.506722, -0.680955, 1.364513, -1.115461, -0.173959, 0.698572, 0.617989, 1.457048, 0.630312, -0.250400, 0.059322, 0.035183, 1.030191, -1.758636, -1.395863, -0.416439, -1.713644, 1.153913, -0.680888, -2.140296, 0.533423, -1.317319, 1.443944, 0.522052, -0.668387, 1.409010, 1.062778, -0.153992, -0.995280, 0.244128, 0.102486, 1.438015, 0.389648, -0.759850, -2.193407, -0.647245, 0.976636, -1.037196, -0.868317, 0.835487, -1.068519, -0.519246, -2.957297, 1.077279, 1.769498, -0.614078, 0.378078, 2.003561, 0.873780, -0.574898, 0.128163, -0.711513, 1.277697, 0.305506, 1.021701, 0.400921, -1.110662, -0.497890, 0.670184, 0.428333, -0.126721, -0.561361, 0.045325, 0.946227, 1.015976, -0.537224, 0.059706, -2.225138, -1.084943, -1.220230, 0.628870, -2.296038, -0.352603, -1.319604, -0.788189, 0.459657, -0.254966, -1.729455, 0.218156, 0.255304, -0.960920, 0.369279, 0.109987, 0.390617, -0.434143, -0.344420, 1.335274, 0.516238, 0.920420, 0.319163, 1.259682, 1.342145, 0.291877, -0.466280, 1.299461, -0.778515, -0.086451, -0.126161, 0.545852, 2.344039, 0.022464, 0.910875, -0.163497, -0.824642, 0.518829, -0.882440, 0.754235, 2.921510, -0.625728, -1.772397, 0.244208, 0.840326, -0.686593, -0.713995, 0.035016, -0.176128, 0.837513, 0.380781, 1.277744, 1.274880, -0.689568, -2.461069, 0.606377, 0.614865, 0.816461, -0.804323, -0.219512, 0.407730, -0.344659, -0.248791, -0.982725, 0.780997, 1.402391, 1.330452, 1.416616, -0.292092, 1.367476, 0.305092, -1.249481, -0.118244, -0.509569, 1.092765, -1.532226, 0.468123, -1.473631, 0.765450, 0.018377, 1.393742, 0.566176, -1.265004, 1.754520, 0.150977, 0.475002, -0.986099, -2.299563, 0.713028, -0.530039, 1.498114, 0.798058, 1.245707, -1.568818, 0.235977, -0.982765, 1.495870, 1.850370, -2.151290, 0.381170, -1.062618, -2.211775, -0.215818, 1.538430, -0.515485, 0.028823, -0.182478, 0.805574, 1.001918, -0.229076, 1.273700, -0.885725, -0.656375, 0.459569, -0.101639, 0.476273, 1.167392, -0.078054, -0.728122, -1.091858, -1.854604, 1.358527, -0.840585, -1.374798, -0.036451, 0.261735, 0.297810, -0.619712, -1.524847, -0.010313, -1.107097, -0.563682, -1.289894, 0.307475, 1.871719, -0.522393, -0.476331, 1.219988, 0.454503, -1.463731, 0.670449, -1.193137, 1.489244, -0.600564, -0.897661, 0.233121, 0.423109, 1.164782, 1.268565, -0.013568, 0.633664, 0.515230, 0.069607, 0.364814, -0.862776, 0.702784, -1.287990, 0.984797, 0.029380, -0.591267, 0.181596, -1.573559, 0.427657, 1.151090, -0.560231, -0.708282, -0.077540, 0.757293, -0.863328, -0.405586, 0.467488, 1.316945, 0.051356, -0.605329, -0.946038, -0.487128, -0.695447, -0.767863, -0.448410, 0.467812, 0.178234, 1.199300, -0.394791, 1.040377, -0.590940, 0.624627, -1.177059, 0.943141, 1.224928, -2.564818, -0.917116, 0.006129, -0.137459, -0.682247, -0.766574, -0.266086, 0.189102, -0.280712, -1.975430, 0.158623, -0.524612, -0.525051, -0.272309, 0.731790, -0.149989, -0.528814, 2.040383, -0.490866, 1.025444, 0.899046, 0.181572, -2.503881, -0.879355, 0.136117, -0.623299, -0.031818, 0.608262, 0.716097, 0.809596, -1.128883, -0.206919, 1.426786, 1.182781, -0.347721, 0.011850, -0.413692, 1.522095, 0.056633, 1.062480, -0.311103, -0.225509, 0.180495, -1.514922, -1.598528, 0.472770, -0.744521, 0.203204, -0.947682, 1.236539, -1.413674, 1.407265, -1.143383, 0.846190, 1.266048, 0.337357, -0.531640, 0.391677, -1.482473, 0.074738, -0.171645, 0.943227, 1.578277, -0.801293, 1.404288, -0.796159, 1.843699, 1.555386, -0.231791, 0.335094, 2.273644, -0.019973, 0.173681, -1.692660, 0.552380, -0.735319, -0.446340, -0.640911, 0.357761, -0.719498, -1.201513, -0.719392, -0.908473, -0.068960, -2.447026, 0.535716, 1.383769, -0.811539, -0.002266, 0.039036, -0.305835, 2.950330, 0.968391, -1.878978, 0.321949, 1.498647, -0.842371, -0.094631, -0.575112, -0.196278, 1.484954, -1.742943, 0.288457, -0.339258, 0.488971, 1.281911, -1.881498, -0.697992, -0.833360, 0.476382, 0.639601, 0.111668, 0.324967, -0.551196, -0.426131, -0.130189, 1.687247, 0.205408, 0.928738, -0.567229, 0.568569, -0.651737, 0.525725, -0.481928, 0.180353, 1.976725, 0.224682, -0.685856, 0.460505, 0.985929, -0.564463, 1.850798, 0.291648, 1.944833, -0.018750, -1.301178, 0.002357, 0.142204, -2.720066, -0.955542, 1.815485, 1.612705, 0.991859, -0.992540, -0.118520, -0.328558, -1.529873, -1.274480, -1.158208, -0.940421, -1.770243, -1.382514, 0.257653, -0.275606, -0.750199, 0.299383, 0.301661, 1.167439, 0.698270, 1.387517, -0.319246, -1.928700, -0.587553, -0.098688, -0.321227, 1.037314, -1.590071, 1.040218, -2.178633, 1.563898, 0.205430, 0.162899, -1.046752, 0.481032, -1.865969, -0.844391, 0.339693, -0.069438, -0.172556, 0.009437, 0.730881, 0.626576, 0.561216, 0.795005, -0.984620, 0.763857, 0.524705, 0.921103, -1.168306, 0.455283, -0.803693, -1.097694, -2.696414, -0.872541, 0.793090, -0.655998, 1.795083, 1.077597, -0.966245, 0.068323, 0.065834, -1.416327, 0.707290, 0.217629, -1.395185, 0.032182, 0.449863, 1.138087, -1.017296, 0.271398, 0.499431, -0.824357, -1.829923, 1.133071, -0.133135, -0.775079, 0.553755, -1.270237, -2.807444, 1.389330, -0.481400, -1.295476, -0.658587, -0.806946, -0.215979, -0.885361, -1.678919, 0.809544, 0.130433, 0.581982, 0.445199, -0.504430, 2.000309, -0.280986, -1.367024, -0.213127, -0.167787, 0.389315, 0.548861, 0.099962, 1.259349, 0.765502, 0.358491, -0.226796, 1.252579, -0.324868, 1.527196, 1.413068, 0.059970, -0.270739, -1.771325, -0.616667, 0.527772, -0.704382, -0.179962, 1.299003, 1.739202, 0.425919, -0.616951, 0.807707, -0.614526, -0.716142, 0.962665, 0.749817, -1.684482, 0.408924, -0.136152, -0.371511, 0.071161, 0.192823, 0.727198, -0.898847, 1.023885, -0.670586, 1.448870, 0.012729, -0.150810, -0.998492, 0.307383, -0.863216, 0.806692, 0.075159, -0.660596, -2.125418, -1.418760, 1.119131, -1.119449, 0.922850, 0.075777, 0.213148, -0.697288, 0.148061, -0.993936, 0.743661, 1.360856, -0.779395, 0.888504, -0.289549, -0.216585, -1.393080, -0.502423, 0.203002, 0.834382, -0.655577, 0.736628, -0.019219, -0.780101, -1.041887, -0.756728, -0.931357, 0.413574, -0.305103, 1.683607, 0.269872, 0.196835, 0.682081, 2.138652, 0.114750, -0.311360, 1.293819, 0.534967, 2.789615, -0.039556, -0.564443, 1.713231, -0.075218, 0.363816, -0.651924, 0.330490, 0.027153, -1.917235, 0.305972, 1.319533, 1.176569, 1.320974, -0.646705, 0.835317, 0.852545, -0.179670, -0.980183, 0.428760, 1.058230, -1.810070, 2.982350, -1.240475, 0.327879, -0.455246, 0.655701, -0.993868, 1.133957, 0.243906, 0.011547, -0.586280, 0.168710, 0.637136, 0.219325, -1.501144, -0.297462, -1.342997, -1.355173, 1.745832, -0.271187, -1.405792, -0.805623, 0.223954, -1.833553, 0.788405, 0.038174, 0.032714, -1.057884, -0.609131, 0.747145, -0.562963, -0.368341, -0.149903, -1.566744, 0.118407, 0.990306, -0.581408, 0.384902, -0.222697, -0.286243, -0.837053, 0.379071, -1.694925, -0.148237, -1.001655, -0.939039, 2.387693, -0.014405, 1.235432, 1.215446, -1.041025, 0.739508, -0.459189, -0.652104, 0.090923, -2.610963, -0.003515, 0.430477, -1.491210, -1.313053, 0.209521, 0.502622, -0.451813, -0.428683, -0.352735, -0.924562, -0.247310, 0.016196, -0.403586, -0.181668, 0.296905, 0.423232, -0.896659, 1.017795, -1.011217, -0.256690, -0.509200, -0.182072, 0.628494, 0.165698, -1.358746, 0.688697, -1.117446, -0.109065, 0.002494, 1.320109, 0.150718, 0.106386, 1.517647, -0.731118, 0.390780, 0.744664, -0.005848, 0.972631, -0.165890, -1.411382, -0.663857, -1.132520, 0.357000, 0.765752, -1.421924, -0.435078, -1.222755, -0.314333, -1.109803, -0.353260, -0.505041, -0.748299, 1.898498, 0.835924, -1.412722, 0.673801, 0.238783, 0.700651, -0.122296, -0.065642, 0.863425, -1.393089, -0.241399, -0.717085, 1.417435, 1.291105}, + { 0.397165, 1.013243, -0.580456, -0.539900, 1.492228, -0.991986, -0.183508, 0.300911, 0.694721, -0.513061, -0.737393, -1.375032, -0.360335, 0.210935, 1.674464, 1.452875, 0.521385, -0.418202, 0.830911, 0.574499, -0.884327, -1.301128, 0.423649, 0.888449, 0.125116, -2.051598, -2.137657, 0.452855, -0.705826, -0.926460, -1.432225, 0.228289, -1.674709, -0.496074, -1.128256, -1.518343, -0.245230, 0.905738, -0.807916, 0.458934, -0.166920, -0.296758, -0.533006, -1.565342, 1.382351, 1.670604, 0.352162, -0.536369, 1.130132, -0.557981, 1.109414, 1.716403, -0.578993, 0.190693, -0.294384, 0.379111, -0.260579, -0.119545, 0.858231, 0.653759, -0.664195, 0.067498, -0.086708, -0.158172, 1.139665, -0.597605, 1.733270, 0.437946, 0.411139, -1.214143, 0.774154, -0.671738, -0.588775, 1.213029, -0.536960, -1.835787, -0.886063, 1.591681, -0.172947, 0.523314, -0.593065, 0.607766, -1.194639, -1.215624, -1.564887, 0.225557, -1.676564, 2.316875, 0.056636, -1.134164, 0.065339, 0.936080, -0.392343, 0.247315, -0.766660, -0.513602, 0.172231, -0.243505, -0.090825, 0.037499, 0.592879, 0.012768, 0.333559, 1.794526, -0.490554, 0.364454, -0.091941, -0.131372, -1.434565, -0.007194, -0.357630, 0.638191, -0.405450, 1.688971, -0.294326, -1.508083, -0.075706, 0.221664, -0.952836, -1.489164, -0.979668, -0.634263, -0.543435, 1.046351, 0.726939, 0.899171, -0.296379, -0.922750, -0.001154, -0.098650, 1.506151, -1.300368, -1.088969, 0.014904, -0.474047, 0.275806, -0.506889, -0.706342, 0.210445, -1.053886, -0.077953, -0.005184, 0.246824, -0.723736, 0.927091, 0.044494, -0.036872, -2.366461, 1.714686, -0.995875, -1.138391, 2.401925, -0.679129, 2.020354, -1.048464, -0.787486, -0.225321, 0.130664, -0.247893, 1.134072, 1.306830, 2.379118, -0.220800, 0.550274, 1.569736, -0.529171, 1.708259, 0.736169, -0.009291, 1.325264, 0.849111, -0.736453, -0.237229, 0.022160, 0.208047, 0.278328, -1.580354, -1.704031, -0.030604, 1.337086, 0.906555, 0.394265, 0.278084, 0.801610, -1.033360, 0.151163, 0.358357, 0.234279, -0.720662, 1.106666, -0.119077, -0.141364, 0.621292, -0.459466, -0.529440, 0.455796, 1.065438, 2.173995, 1.051766, 1.093550, -1.714514, -0.024252, 0.113096, -0.145251, -0.018128, 0.983392, -1.741264, -0.175012, -1.304080, -0.790993, 0.638753, 0.247880, 0.187980, -0.562990, -1.892071, 0.670358, 0.348319, 0.011634, 1.657741, -1.714747, 0.962067, 0.417057, 0.434243, -0.581941, -0.965226, 0.846370, -1.350911, -0.334557, -0.911635, 1.569505, -0.810260, 0.304121, 2.262833, -1.036997, 1.334691, 1.047509, 0.187256, 0.472405, -0.623094, -0.758513, 0.539508, -0.523055, -0.576230, -0.156583, 1.374668, -0.153779, 0.162651, 0.057473, 0.165653, 0.450271, 0.980888, -0.153102, 1.848653, 0.268405, 1.130774, -0.431838, 1.160608, -0.014931, -0.948217, -1.061217, -1.039321, -0.013790, -0.691267, 0.367589, 1.939296, 0.180247, -0.254123, -0.754973, -0.280432, 1.815686, -1.466435, -0.177793, 0.627913, -0.010726, 0.464367, 0.324016, -0.192304, -0.093668, 1.517820, -0.541341, -1.508760, -0.677816, 0.102409, -0.864010, -2.444298, -0.000053, 0.679846, 0.439393, -0.216990, 0.857101, 0.317781, -1.148404, 0.047849, -0.229306, 1.364337, -0.688216, 0.287174, -0.374897, -0.484994, 0.473971, 1.060714, -0.998795, 1.164440, 0.982305, 0.706425, 1.672443, -0.118692, 1.201890, -0.800778, 0.618435, -0.694790, -0.584943, -0.054823, 0.771585, -0.636139, -0.835438, -0.373417, -0.420539, 0.090531, -0.046146, -0.924013, 1.529983, -1.187986, 0.318064, -1.675146, 0.294715, 0.458003, -1.444916, -0.953439, -0.342391, -1.046806, 2.108878, -2.556422, -0.027927, -2.210886, -0.408940, -0.431539, 0.217322, 0.840138, 1.581377, 0.488810, -0.710729, -1.928737, 1.035245, -1.338092, -0.374711, -0.468776, 0.311324, -1.195143, -1.406755, -1.579034, 1.119445, -1.010654, 1.696116, 0.383855, -0.093121, -0.132160, -1.259138, -0.929384, 1.112618, 1.032500, -1.414062, -1.175238, 0.802387, -0.956024, -0.111402, -0.583350, -0.008058, -1.381822, -0.243236, -0.529014, -0.331936, 0.457004, -0.600269, 0.983720, 1.166432, 1.167615, -1.084497, -1.382124, -1.259676, -0.343323, 0.423589, 0.746341, 0.750604, 1.381899, -0.550310, -0.274333, 0.183110, 0.215127, 0.726726, -1.316570, -0.053437, -0.496814, -0.609472, 1.555306, -0.663982, 0.476021, -0.350185, -0.392853, 1.233200, -1.820066, -0.858947, -0.517410, -0.849511, 2.610362, -1.027193, 1.425857, 0.076560, 2.085185, -0.666659, 0.011869, 0.242314, -1.503478, 0.725732, -1.024908, -1.960281, 1.133102, 1.180238, 0.293429, -0.202228, -0.961507, 1.176178, -2.093014, 0.844525, -0.535320, 0.398338, -0.616420, -1.085451, 1.594190, -0.982022, 0.330121, 1.076506, -0.189050, -1.937682, 1.411678, -0.320164, -0.112501, 2.124958, -0.792276, -2.395392, -0.622417, -0.785656, 0.521785, 0.272260, 0.017130, 1.129384, 0.005096, 0.388710, -0.769363, 1.334164, -1.543026, -1.182599, -1.190754, -1.085749, 0.183249, 0.687015, -0.060892, -0.662871, 0.585874, -0.624947, -0.403026, -0.184735, -0.874062, 1.476311, -2.057559, 1.515078, -0.134726, 0.381779, -0.117573, -0.165749, -0.586940, 0.071684, 0.565734, -1.325014, 0.518892, 0.045777, 0.133149, 0.800403, -0.232123, 0.397268, -0.740767, -1.184987, -0.134066, 0.078891, -1.256274, 0.465483, -1.128717, 1.133862, 0.386876, -1.451837, 0.733721, 0.690130, 1.425783, 1.534748, 2.247993, 0.697512, -1.387960, -0.476790, 0.229547, -0.120366, -1.174757, -0.699294, -0.013259, 2.380414, 0.135271, 0.496015, 1.201388, 0.587390, 0.186619, -0.403154, -0.824730, 0.264890, 1.573664, 2.609306, -1.019358, -1.044406, 0.651605, 0.989380, -0.176321, 0.773894, 0.468863, 0.254116, -0.169025, -2.347446, -0.099215, 1.330931, 0.655789, 0.776291, -0.932055, 0.719848, 0.473719, 1.326288, -0.614428, -1.876394, -0.489932, -1.723081, 0.068322, -1.093716, -0.135400, -0.797543, -0.109965, 0.233379, 0.203365, -0.129450, -0.592535, -0.267019, 1.346790, 0.862872, -0.489456, -0.420004, -1.756073, -1.071652, -0.133473, 0.039600, 2.074240, -0.484601, 0.855653, 0.197005, -0.991124, -1.629591, -0.622496, 2.100167, 0.284515, -0.504327, -0.851226, -0.253184, -0.713808, -0.894247, -1.072590, -0.201595, 0.421528, -0.236077, -0.712958, 2.043358, -0.043320, 0.413787, -0.019062, -0.847061, 0.732291, -0.210591, -0.151418, -0.006481, -0.983195, -0.815408, -1.361210, -0.639488, -0.497659, -2.015811, 1.400416, 0.378386, -0.756485, -0.032055, -0.182408, 0.306899, -1.073931, -0.787714, 1.584902, -0.674140, -0.068315, 1.411891, 0.940210, -0.040609, -0.630662, -1.148931, 0.923472, -0.545150, 0.981498, -0.895652, 0.482536, 2.033854, -0.244415, -1.315528, 3.225701, 0.352066, -1.023610, -1.511474, 1.913982, 0.758779, -0.443437, -0.529319, 0.319506, -0.067334, 0.381064, 0.290573, 0.456645, 0.280961, -1.807991, 0.884565, 1.034516, -0.608102, 1.190114, -0.296458, -0.845326, 0.036126, -0.449852, 0.717928, 0.097068, -0.188536, -0.858467, -1.598724, -1.093997, -1.687368, 0.895467, 0.089667, 1.200765, -2.037735, 0.889267, 0.286117, 0.073212, -0.140695, 0.689518, 0.137357, 1.082286, 0.470574, 0.361196, 1.206347, -0.351229, 0.170791, 0.287571, 0.178035, -0.180093, 0.534996, 0.263364, 0.724114, -0.581904, -1.371533, 0.237724, -0.004415, -0.683002, 2.578116, -0.252388, -1.191188, 0.549791, 0.135916, -2.070560, 0.983012, 0.881802, 1.204644, -0.047328, -0.324176, -1.098115, 0.048772, -0.949597, 2.135715, 0.712094, 0.932682, -0.503885, -0.363873, -1.420392, -1.067636, -0.716267, 0.661703, -1.327474, 0.673860, -0.371546, -0.804773, -0.430799, -0.951913, -0.735669, -0.911689, -1.102980, -0.641041, -0.285290, 0.867187, -0.667877, 0.180071, 1.008283, -2.849576, 1.265435, 0.081812, -0.710423, 0.085976, 1.422108, -1.281950, 0.318320, 1.214755, -0.498410, -0.497919, 0.578317, -0.835989, -0.442451, 0.476271, -2.028645, 0.385499, -0.493140, -0.189132, 1.428288, 0.873565, 0.271294, 1.161797, 0.375750, -0.285562, -0.917284, 0.226130, 0.701356, -0.832818, -0.109478, 0.907364, 0.543434, -0.585035, -0.473771, 0.876048, -0.053585, -0.029816, -0.910200, -0.048843, -0.737399, 0.766513, 0.124387, -0.802724, 0.793690, 0.066668, -0.115733, -1.508182, 1.120544, -0.805954, 0.030200, -0.667911, 0.233937, 0.747659, -0.098865, 1.182375, 0.062250, 0.027103, -0.828543, -1.808298, 0.041475, -0.938712, 0.029264, 0.813584, 1.077040, -1.577606, 0.569054, -1.955849, 1.349359, 0.986165, -0.342974, -0.772643, -1.081286, 0.146076, -1.646757, 0.005101, -1.170061, -0.378279, -0.660019, 0.211732, 0.424259, -1.801814, 1.071551, -1.497200, -0.865461, 0.435804, -0.441309, -0.347799, -0.570818, -0.176797, -0.772572, -0.812724, -0.164012, 1.136114, 2.038723, -2.060178, 1.592079, -0.628180, 1.204005, 0.266001, -1.183349, 0.109093, 1.239659, 1.413736, -0.140175, 0.051579, 1.682037, 0.700888, 0.094187, -0.599841, 0.789042, 0.483594, -1.816020, -1.927299, -0.022867, -1.062248, -0.669560, -0.366063, 1.510807, 0.440085, 0.852795, -0.959855, -0.471377, -1.305850, -1.255451, 0.194569, 0.854528, 0.352462, 1.248448, 1.181572, -1.424885, -0.067211, -0.261307, 0.071001, 0.002598, -1.015030, 1.063262, 0.407647, -0.337667, -0.138938, 0.237099, -2.365273, 1.418566, -0.083945, -0.622927, -0.120568, 0.324560, -0.811707, 1.045303, 1.595960, 1.664763, -0.304785, 0.634798, 1.116530, 0.872638, 1.739248, 1.318437, 1.394335, 0.282168, 0.559300, 1.658901, -0.673098, 0.034962, -0.843634, -0.093505, -1.760403, 2.791938, -1.345091, -1.507774, -0.946118, -0.083032, 0.985762, -1.721708, -0.138330, 2.019631, -1.068158, -0.564243, -0.240727, -0.661027, 1.258696, -0.384826, -0.006633, -0.621674, 1.863888, 0.018377, -1.075452, -1.131522, -1.098377, 1.511057, -1.895211, 0.552905, 0.147495, -0.579017, -1.164777, -1.192730, -1.622515, 0.929313, 0.496331, -0.898122, -1.924117, 1.083638, 0.062886, 0.666875, -0.994803, 1.523607, 1.954164, -0.604461, -0.026265, 0.038715, 1.022189, -1.857650, 1.228304, -2.105043, 0.656992, 1.374356, -0.687370, -1.589268, 0.056068, -1.147126, 0.800845, -1.522622, 1.426880, -1.543379, 1.332054, -2.539925, -2.665321, 1.244479, -0.200120, -0.694736, -0.076692, -1.157592, -0.070607, -1.245970, 0.729948, -1.986842, -1.214955, -0.359448, 0.487568, -1.317303, -0.015963, -0.595365, -0.677435, -1.477851, 1.025504, 0.186488, -0.508259, -0.287635, -1.015793, -1.913439, -1.178704, 0.674931, -1.658258, -0.869825, 0.826468, 0.521938, -1.335775, 1.503503, -0.485949, -1.138972, -0.831556, -1.864080, 0.066715, 1.204529, -0.674494, -0.920612, 0.990302, 0.000057, 2.147314, 0.993250, -0.004424, -1.088735, 0.221127, -0.658918, 0.933950, -2.810119, -0.664787, 1.119514, 0.022332, 0.918084, -0.770271, -0.464918, -0.576764, -1.753612, 0.109423, -0.783739, 0.629155, -0.012059, -0.077541, 2.432145, 0.349570, 0.324868, -1.072159, -0.203559, -1.378302, 1.341603, -1.145280, 0.897667, 2.348561, 0.493341, 0.445898, 1.194975, 1.280826, -0.969170, -0.646426, 0.358792, 1.906271, 0.363987, 0.175523, 1.460580, 0.431918, 0.635002, 0.214738, 0.230721, 1.143089, -0.223680, -0.429203, -0.746523, -1.342414, 0.423669, -0.527728, -1.354080, -0.164750, -1.479178, 0.073326, -1.214989, -1.069311, 0.805245, 1.184325, 1.851132, 2.032746, 0.315416, 0.838836, -0.775030, 1.149079, 0.031178, -1.076797, 1.026517, -0.060305, 0.914207, -0.275591, 0.967725, 0.250999, 1.815894, 1.889946, 0.539597, -1.527363, -1.693071, 0.213160, 0.773761, 0.928913, 0.021693, 0.440817, 0.403192, -0.881883, 0.298685, 0.928666, -1.783505, -0.030726, -0.092533, 0.822809, 0.530357, -0.287657, 0.473233, -0.000458, -0.617272, -0.767754, -1.092669, -0.727288, 0.583267, 1.940487, -0.763870, 0.068994, -0.721327, -1.283543, -1.122680, -0.787161, 0.485245, -0.247060, 0.276673, -0.608908, -1.152376, -1.694388, -0.737618, -1.863922, -0.619567, -0.077332, -0.052195, -0.659540, -1.109050, 1.040345, 0.369637, 0.360629, -0.494231, -2.585324, 1.636622, 0.396589, 0.844310, -0.647005, 0.950636, 0.015331, 2.168065, -0.061672, -0.621585, -0.751694, -1.511472, -0.203541, -1.054258, 0.568334, 0.948488, -0.014217, -0.050380, -0.770955, 0.745348, -0.798678, -1.770285, 0.210004, -0.609788, -0.187561, 0.178575, -0.043360, 0.492854, -0.493384, -0.235027, 1.704422, 0.661987, -1.341384, -0.206832, 0.710416, -0.459237, 0.602122, 0.087450, 0.398596, 0.102924, -0.940552, -0.638300, 0.833441, 0.035435, -0.120362, -1.554961, 0.883311, -0.761279, -0.322088, -1.181379, 0.611799, 0.447693, 1.284874, 0.711726, -1.473228, -0.134845, 1.678077, -0.514873, -0.317416, 0.929697, -0.202839, -1.335955, -0.180716, -1.851322, -1.281358, -0.161038, -1.068422, -0.508089, -1.734120, 1.755854, -0.118352, -0.729091, -1.097951, -0.899883, -0.141881, -1.849814, 0.855135, -0.245930, -0.349054, 1.607943, 1.259316, -0.041316, 0.651590, -0.603995, 0.326055, 0.410159, -0.270400, 0.463104, 0.808764, -0.436575, 0.982555, -0.704839, -1.112785, 0.050886, 1.234191, 0.119707, -1.391682, 1.142380, 0.623903, 0.175978, 1.363032, -0.201635, 0.698795, -1.450035, -1.788043, -0.429758, 0.876772, -2.337312, -0.819558, 0.151950, -1.436024, 0.473987, 1.010934, -0.700244, 0.225473, -1.311483, 0.082341, -0.405167, 1.529808, -1.189607, -0.472468, 0.182775, -1.311952, -0.600972, 0.577411, -0.009055, -0.037942, 0.919991, 1.485913, 1.888338, 1.141237, -0.319185, -0.943602, 0.743923, -0.618982, -0.683383, -0.108076, 0.527764, 0.003615, 2.172374, -0.409060, 0.579223, -1.292404, 0.457985, 0.373857, 0.156080, -1.341538, -0.855673, 0.406710, -1.492688, 0.602127, 0.144247, 0.774026, 0.373067, -1.788833, 0.402933, -0.308195, 1.348921, -0.384136, -0.920051, 0.098612, -0.720738, -0.002986, 0.568578, 0.908365, 0.586925, 1.034261, 0.533148, -0.436075, -1.683587, -1.082477, -0.313418, 1.651783, -0.592197, 0.396849, -0.092580, -1.195874, 0.403448, -0.485698, 0.523988, 0.549782, -0.587060, -0.055816, 0.901204, -0.730951, -0.493023, 0.197538, 1.637919, -1.178621, 0.247565, -0.675938, 1.103452, -0.740748, -0.280723, -1.433761, 0.111209, 1.425659, -0.983491, 0.225714, 0.802251, -0.733176, -1.118379, -0.936064, -0.250265, 0.940377, 0.392265, 1.377372, -0.572520, -1.142183, 0.465204, 1.611640, -0.265715, 0.518948, 0.067850, 0.710987, -1.036429, 0.382771, 0.129837, 0.587012, -0.950874, 0.536973, -1.436531, -0.689113, -0.058135, -1.041584, 1.654180, 0.392586, -1.027425, -0.967038, 2.557432, -0.291319, 0.653046, -0.235383, 1.275973, 0.065896, 0.730570, -2.448999, -0.329564, 2.004240, -0.372871, -1.073615, -0.511041, -1.684215, -0.443890, -1.226017, 0.316717, 0.178127, 0.487975, -0.282163, 0.523434, -0.131077, 0.444634, 0.837972, -0.157197, 0.579473, -2.547596, -1.285968, 0.532960, 1.921268, -0.135470, 0.967439, -2.038306, 1.293984, -0.158821, -0.027326, 2.278564, 1.144071, -0.200812, -1.256030, -0.318251, -2.005130, 0.242267, -1.069012, -0.284217, 0.199585, 0.896775, -0.514176, 2.167861, 0.614264, -0.936390, 1.178507, 0.270925, -1.824308, 0.188437, 0.782127, -0.493720, 2.223413, 0.354851, 2.018176, 0.570242, 1.219917, -0.249343, 0.622620, -0.346390, -0.399315, -0.548299, -1.022983, -1.155953, -0.130904, 0.273317, 0.978461, -0.608401, -1.647908, 0.184279, 0.810287, -0.787266, 0.661509, 1.605829, 1.016966, -0.133203, 0.279700, -0.235610, 0.361927, -0.584311, 1.093198, 0.008754, -1.532752, -0.270824, -1.262523, -0.988209, -0.179451, -1.018919, 0.828744, -0.573839, 1.684596, 1.392579, 0.439995, -1.765784, 0.435890, -0.889822, 0.151531, 0.262388, -1.012277, -0.059778, 0.840136, 0.799204, 0.208205, -1.671962, 0.502075, 1.229162, -0.125882, 0.845284, 0.069196, -0.382556, 0.252484, -0.440008, 0.047510, 0.675985, 0.563107, -1.091485, 1.112734, 0.266755, -0.518919, -0.167283, -0.417478, -0.914600, -1.423158, -0.333006, 0.048717, 0.193935, -0.705966, 0.914987, 0.834823, 0.256370, 0.797875, -1.306289, -0.295400, 2.244984, 0.644642, -1.072073, 0.620122, -0.016667, -0.504186, 1.385618, 0.731098, -0.463120, -1.540487, -1.093301, 0.166048, 0.147985, -0.718910, -1.016870, 0.555133, -1.271938, -1.925448, 0.101491, -1.029753, -0.075627, 0.404883, 1.251100, 0.644834, -0.567768, 0.284192, 2.107924, 0.550819, -0.552165, -1.192165, 0.554937, -1.014702, -0.733524, -0.081792, 0.515482, 0.634166, -0.364457, -0.238577, -0.268734, -0.041544, 0.135510, -0.417914, 2.916407, 0.015797, -2.192772, 0.515619, 1.630348, -0.791589, -0.197421, -0.195284, 1.476410, 0.434930, -0.333828, 0.053909, -0.970011, 0.414807, 1.480048, 1.393122, 0.802339, 0.854854, 0.895922, -0.303554, 0.899648, -0.975613, -0.308197, 0.219391, -0.230040, 0.186740, 0.925866, 0.417965, 0.597649, -0.713923, 1.167621, 0.328905, 1.448967, -0.112932, 1.170066, -1.404335, -0.800320, 1.793739, 0.426801, -0.100557, 0.275142, 1.197628, 0.051983, 0.448278, -0.749623, 2.354262, 1.109195, -0.473079, -0.698012, -1.613571, 1.563238, -0.685555, 0.882413, 0.974648, 0.163695, -1.112031, -1.627131, 0.927566, 0.176114, -0.885563, 2.418413, -0.723907, -0.560105, 0.479165, -0.091062, -1.156969, -0.876483, -1.177464, 0.263696, -1.976069, -1.209861, -0.305374, -0.242932, 0.430786, -0.640024, -0.220310, 0.225922, 0.346959, 0.067511, 1.284607, 0.366528, -0.707390, -0.088889, 0.384762, 0.975804, 1.609133, 0.619673, -0.137634, 0.562913, -0.230148, 0.556894, 0.902223, 0.357592, 0.728751, 1.268838, 0.803898, -0.079388, 0.079856, 0.375413, -2.509264, 0.507776, -0.287254, -1.004033, -0.125700, 1.923997, -0.794907, 0.098509, -1.323465, 1.145717, -1.282874, -0.766311, -0.867325, 0.780057, 0.943058, -1.354061, -1.248836, 2.628673, -1.188433, -0.011985, 0.281432, 0.730555, -0.892609, -0.482564, 0.324827, 0.658382, -0.753904, -1.639422, 0.068105, 0.490382, 2.244291, -1.918844, -0.148750, -0.684208, 0.374435, 0.340328, 1.161137, -0.071882, 0.518898, -0.703716, -0.110852, 2.509352, 2.093817, -0.449572, 1.187744, -0.728107, -0.249509, 0.987956, 0.339305, 0.958742, 0.303890, 0.320119, 0.423103, -0.775123, 1.212366, -0.351111, 1.016296, -0.674091, -2.501006, 2.446033, -2.278802, 1.842239, 0.788251, -0.565050, 1.125615, -0.388716, -0.522565, 2.491460, 0.822352, 0.141667, -0.750588, 0.611911, 0.449374, 1.380384, -0.274680, -0.539762, 0.512576, 1.645470, -1.534226, -0.922108, 1.110062, 1.334627, 0.115820, -1.647299, -0.195381, -0.458523, -0.252955, -0.933064, -0.503764, 0.986628, 1.260784, -0.759830, -0.071975, 0.876477, 1.441792, -0.349743, 1.870463, 0.548576, 0.287054, 1.354089, -1.717919, -0.170754, -1.016045, -0.447286, -1.976991, 0.548402, -0.549829, 0.089444, 1.218849, 0.370793, 0.951227, 0.588013, -0.580036, -0.643248, -0.910640, 1.438594, -0.505967, 0.687048, 0.366989, -0.085095, -0.101571, -1.328757, 0.070949, 1.513642, 1.239131, 0.968287, -0.938592, -0.116198, 0.287351, 1.557072, 0.380167, 0.330294, 0.751386, -0.323665, -1.640435, 0.261170, -0.547946, 0.182125, 1.234738, 0.567418, 0.380160, -0.131957, -1.292398, 0.790147, 0.735507, 0.138818, -0.915601, 0.120142, -0.962137, 0.896186, -0.578152, -0.472585, 0.138948, -0.763740, 0.022882, 0.166726, -0.702651, -1.476695, -0.257259, 0.116727, 1.730281, 0.199988, -0.708443, -0.333589, -1.665536, -0.149149, 1.834016, 2.151336, 1.127975, 0.308087, 0.373495, -0.303064, 1.440773, -0.630913, -1.334871, -1.129584, -1.029689, 0.079386, -0.428245, 0.555001, -1.259533, -1.009153, -0.059438, -0.063241, 0.591327, -1.890788, -0.590260, -0.460150, 0.102828, 1.372895, -0.884909, 0.671261, -0.629259, -0.147019, -0.483911, -0.693447, 0.308495, 0.089822, -0.408924, -1.077792, -0.530027, -0.304773, 1.260625, 0.396429, 0.284699, 1.333392, -0.493525, -0.710373, 1.894289, -0.437894, 0.948040, -2.273871, 0.658644, -0.238045, -0.313590, -0.812465, 1.468542, 0.575877, 0.360305, 1.795106, 0.169486, -0.432028, -0.843700, 0.120695, 0.578715, 0.065451, 1.331402, -1.231441, 0.051677, -0.050893, 0.874599, 0.102771, -0.114611, -0.805531, 0.411342, 0.291069, -0.183424, 0.652902, -0.015211, -1.163806, 0.679734, -0.604136, -1.209186, -0.488448, 2.071763, 0.258051, 2.313012, 0.664351, 0.086171, 0.529126, 0.734480, -1.820898, 0.543178, -1.132422, 0.812873, -1.154533, -0.973957, 0.872888, -0.867346, 0.104281, -0.683787, -1.287753, 0.203521, -1.466883, 0.726687, -0.669409, -1.642887, 0.243638, 0.404730, -1.579346, -0.467921, -1.608945, -1.565189, 0.010344, -0.881127, 0.562881, 0.336656, 0.611620, -1.476012, 1.326930, -0.645465, 1.143072, 0.034473, 1.350514, -1.020672, 1.613501, -1.186017, 0.483309, -0.130746, 0.530022, 0.634901, -1.356251, -1.144554, 0.501416, 0.572082, 0.613286, 0.238656, -0.832476, -0.414336, 0.731217, 0.118715, -0.118858, 0.672333, 0.190017, 0.048240, 0.567320, -0.582577, 0.414128, -1.379102, 0.790471, 0.651375, -0.733238, -1.363121, 1.439715, 1.584037, -0.277708, -2.554428, 1.306954, -0.437707, -0.504707, 1.220431, -0.152823, 1.595543, 0.126981, -1.180687, 0.249681, 0.647380, 0.630621, 0.313623, 0.765850, -2.900500, -3.303523, 1.185714, 0.054460, -0.165652, -2.375898, -0.804519, 2.098995, -1.415622, -0.216533, -0.935896, 0.327855, -1.109653, 0.293332, -0.518584, -0.545300, 0.692576, -0.948004, 0.561145, 1.683479, -0.016410, -0.484285, 0.677927, -1.131978, -0.017695, -0.673110, 0.132621, 1.291736, 0.236017, 0.842079, -1.593563, -1.514015, 0.478058, 0.738149, -1.350765, 1.839759, 0.263632, 0.485873, -0.764458, 1.209548, -0.232850, -1.212482, 0.160941, 0.221139, -0.313204, -1.177407, -0.071451, -0.490443, 0.294966, 1.225241, -0.194419, -0.351101, 0.406079, 0.098960, 1.390620, 0.512852, -0.046521, 0.074328, -1.286073, -0.779270, 0.416905, -0.353483, -1.259813, -0.231825, -1.324767, -0.157746, -0.858386, 0.081216, -0.741442, -1.581220, -0.088274, -0.648006, -1.285647, 0.329954, -0.152852, -0.010646, 0.886167, -0.888970, 0.719218, -0.340030, 1.466504, 0.256619, 0.139483, 0.229837, -0.090738, -0.803683, 1.310234, 0.206572, 0.696312, -0.507660, -1.233633, -1.417408, 0.094465, 0.240760, 1.236947, 0.206237, -0.913517, 0.089803, -0.463440, 0.345613, -0.276818, -1.003987, 1.194634, 0.846662, -2.277870, 0.496492, -1.462631, 0.618247, -0.343449, -0.307712, -0.149370, -0.189576, -0.018098, 1.068241, -0.501542, -0.076766, 0.453663, -0.618614, -0.680308, -1.692198, -0.485179, -0.149138, 0.737073, -0.168336, -0.904415, 0.294250, -0.939049, 0.173665, -0.250626, 0.158001, 0.274539, -0.317398, -1.310713, -0.545455, -0.150464, 0.390347, -1.169685, 1.398452, 0.990622, 0.189081, -0.537010, 2.337118, -1.257338, 0.957166, -1.496867, -0.741272, -2.348381, 1.192102, -1.212610, -0.374928, -1.058540, 0.327936, -0.433567, 0.505167, -0.427829, 0.661485, 0.222501, -0.670071, 0.237348, -1.540000, -2.061018, -0.033358, -0.728823, -2.328176, -0.051036, -0.459774, 1.228559, 2.416640, -0.107654, 0.748115, -0.781208, 1.670915, 0.132010, -1.015404, 0.999682, 2.384465, 1.301584, -0.785052, -0.417741, -0.672693, -0.029084, 0.094555, 0.623491, 2.728020, 1.502916, -0.877483, 0.155415, -0.015707, -0.405176, -0.236822, -0.631064, 0.319606, 1.297784, -1.087908, 0.174124, -0.076167, -0.505147, -0.809030, -1.943043, 0.136739, -1.046144, -0.423037, 1.202147, -0.092956, -0.175132, 0.899443, 1.396401, 1.076323, -0.388606, 1.378765, -0.219231, -1.281035, -1.695118, -0.015007, 0.010439, -2.456599, -0.506445, 0.850283, -0.138269, -0.785406, -1.031753, 0.582159, 2.462929, -1.659679, -1.155389, 0.545949, -1.245920, 0.310823, 1.080250, -0.031741, -0.413151, 0.614000, -0.358160, -0.235399, -0.112365, -0.683979, 0.832791, 0.193398, -0.607660, -1.340490, 1.047581, 0.596241, 1.467915, 0.939091, 1.120401, -1.352468, 1.215207, 1.436960, -0.732410, -2.654247, 0.008885, -1.138698, 1.465157, -0.825924, 0.685024, 0.644868, -0.860580, -0.267594, 0.379159, -0.429768, -0.087730, -0.279403, 1.489474, 0.759342, 0.239830, -1.974403, 0.085981, 1.437545, -0.253262, 0.886746, 1.880575, 0.208539, 0.664334, -1.451539, 0.509580, 0.931895, -1.149280, 0.786774, 1.157106, 0.816212, -0.281738, 0.127584, 2.339799, 0.509222, -1.033789, 0.586580, -0.942695, -0.084261, 0.167013, -1.570451, 1.143556, -0.660218, 0.983057, -0.189598, 0.079672, -0.380039, -0.443600, -2.537944, -1.514686, -0.398951, -1.194957, 0.494843, 0.043024, 1.017436, 0.379102, 0.340251, -0.319400, 0.329107, -1.295414, 0.939502, 0.662077, -0.074217, -0.321973, 0.499451, 0.074870, -1.569448, -0.626595, 0.533295, -0.136236, -0.087578, 0.302762, -0.412854, -0.073030, 0.580241, 0.447351, -0.121875, 1.146031, -0.521349, 0.159193, -1.436947, -0.028461, 0.068828, -0.626219, 0.564983, -0.906080, 0.952413, 0.259524, 0.006516, 0.603829, 0.025686, -1.783251, 0.448770, -0.734675, 0.107121, 1.272138, 1.174165, 0.236960, -0.876997, 2.361819, -2.682853, 0.117541, -0.023641, 1.379353, 0.803803, -0.621744, 0.598930, -1.471486, 0.474012, 0.543439, 0.685675, 0.661789, -0.158290, -0.938646, -0.670896, 2.212399, 0.839741, -0.044773, -0.671575, 0.365275, -2.146453, 1.198179, -1.153192, -0.549083, -0.036929, -0.983908, 2.293072, 1.735079, 0.628446, 0.721753, 0.600133, 0.582798, -0.523204, 0.032583, -1.221926, -1.215665, 0.402089, -0.481074, -0.028942, -0.233776, -0.497505, 0.462949, 0.745113, -0.100864, -0.267948, 0.390793, 0.893291, 1.332542, -0.012540, 0.226293, -0.488826, -0.623131, 0.857024, 0.809355, -0.370802, -0.299769, 0.538008, 1.217249, -0.825350, 0.072128, 0.981082, 0.943361, 0.746459, 0.007035, 1.689610, -0.328155, 0.885951, 2.316369, -0.082614, 0.600612, -1.688602, -1.818172, 0.627140, -0.781718, 1.979232, 0.819654, -1.665447, -0.230631, 0.019247, -2.400888, 0.023960, -1.203340, -0.758735, 0.174163, -0.146234, 1.236742, -1.110132, -2.412550, -1.796617, -0.014729, -0.680455, -1.695064, -0.589239, 0.384307, -0.896246, -1.276065, -0.866761, -0.140503, -0.540092, 0.283740, 0.172720, -0.282033, -0.024479, -0.418907, -0.580290, -0.503915, -0.317764, -0.147941, -0.665039, -1.562225, 2.212594, 0.772808, -1.401726, 1.405759, -0.708724, -0.562863, 2.164387, -0.800690, -0.576602, 0.588868, 0.860081, -0.570663, 1.619220, -0.665632, -1.350726, 1.665801, 0.430768, -0.447337, -1.031981, -0.079927, -0.942012, -0.532382, 0.075355, -0.064279, 0.132681, 1.068462, 1.926675, -0.246771, -0.492698, -0.676899, 0.193022, 0.765448, 1.162647, -0.881228, -0.340151, 1.496364, 1.205763, 0.614682, 0.770093, -1.113256, -1.224761, -0.636850, 0.660647, -0.759184, 0.560615, -0.226773, -0.273978, -0.507550, -1.201339, -0.798108, -0.485434, -0.375008, 1.123249, -0.378017, 1.126276, -2.837037, 0.881684, -0.935741, -1.849805, -0.380961, -0.864460, 0.617076, 0.280093, -0.190078, 1.073084, -0.531239, -0.889670, 2.110510, -0.050891, 1.436276, -0.638693, -1.379672, 0.277191, 0.269296, -0.281233, -1.393950, -0.230429, -0.290333, -0.091841, 0.625541, 1.671257, 0.332189, -0.161260, 0.021590, 1.047973, 1.520658, 2.099310, -1.861004, 0.981232, 1.692147, -0.814497, -1.966067, 2.169220, 0.072916, 1.505243, 0.763117, -1.551761, -0.542919, -0.850673, -1.230988, 0.161452, 0.533740, -0.135508, -1.046377, -0.709611, -1.672621, -1.295074, 1.273690, 0.314765, 1.272708, 0.395974, 0.653686, 1.431843, -0.971168, -0.965527, -0.835438, 0.496336, 0.102767, 0.579225, 1.101141, -1.260901, 1.895400, -0.783972, 1.412787, 1.895628, 0.872840, -1.515590, 0.443156, 0.331600, 2.325603, -0.405547, 0.224604, -0.522058, 0.669011, 0.291745, 1.442230, 0.645074, -1.203986, -0.499406, 1.709448, -0.975612, 1.240354, -0.579431, 1.117174, 1.524427, -0.832680, 1.030992, 0.881017, -1.818458, -0.147766, -0.044665, -0.932805, 0.380122, -0.826019, 1.176583, -0.113659, 0.233640, 1.367826, -0.263428, -1.081921, 0.769340, 0.061917, 0.114528, -2.185859, -1.454126, -0.727477, 0.400318, 0.279792, -0.116409, -1.629704, -0.405234, 0.010474, -2.448582, -0.043404, -0.310471, -1.268816, -0.984170, 0.302353, -0.926017, -0.868598, 0.053239, -0.542015, -0.401421, 0.077799, -0.200145, 1.062340, -0.111325, -0.955607, 0.248791, 0.385922, -0.610505, 0.983054, -0.069882, 0.441888, 0.652133, 0.448182, -1.255545, 0.008112, -2.038255, -0.344128, -0.549804, 0.339182, -0.615087, -0.191508, 0.137452, 1.165776, 0.097682, -0.743089, -0.062058, -0.717742, 0.196693, -1.069627, -0.636575, -0.997994, 1.042843, -1.000091, -0.347453, -0.836343, 0.556808, 0.903287, -0.732237, -1.217378, -0.110155, 0.328476, 0.094987, 1.579063, 0.130745, -0.196275, -1.540321, 0.314876, -0.534833, -0.122595, 0.164125, 1.141626, 0.106168, 1.197337, -0.190700, 0.497927, 1.258429, 0.200880, 0.639565, 0.966567, 1.734824, 0.050708, 0.605365, -0.456036, -0.193784, 0.289869, 0.406997, -1.677760, -1.256517, 0.242973, -1.295178, 1.225694, -2.530927, -0.152172, -1.933035, 0.414754, 0.288575, -0.570761, 1.624921, -0.707886, -0.439120, -0.763228, 1.129255, 0.494880, 1.346285, -0.095113, -0.088143, -0.434238, 0.018755, 1.096819, 1.013867, 0.595391, 0.517538, -2.005412, 0.918430, -1.970405, 0.604673, 1.216764, 0.041556, 0.273192, -0.393882, -0.272409, 0.220257, 1.121026, -0.240540, 0.403301, 0.873845, -1.265651, -0.474487, -0.349072, -1.630702, 0.713711, 0.845071, -1.640876, 0.096995, -1.172894, -0.820825, -0.448604, 1.087055, -0.095377, -1.736098, 0.347036, -1.006678, 1.328835, 0.270501, 0.863969, -0.742108, 0.862811, 1.961977, -0.179190, 0.838324, 1.884084, 0.572505, -0.502721, -0.554854, 0.365675, -1.065485, 0.201362, 0.656517, -1.731796, -1.856655, 0.066540, 2.191710, 0.449745, 0.031513, 1.716506, 1.332202, -0.737949, 0.114851, -0.016051, 1.028060, 0.916967, -1.232769, 1.091492, 0.840699, -1.289351, 0.981032, 1.535006, -0.862765, -0.609101, -0.159624, 0.396094, -0.858998, 0.659323, 0.386074, 0.999655, -0.734986, 0.635846, -1.264374, -0.326362, 0.538521, -0.596312, -1.396536, 0.578547, -1.244717, 0.249707, 0.019738, 0.726646, 1.341496, 0.693245, -0.764104, -0.579150, -0.597454, -0.435730, -1.016227, 0.385477, 0.323094, 0.850710, -0.566080, 2.462378, -1.442009, -0.692983, 0.099039, 1.269528, 2.072926, 0.340807, 2.159814, 0.287166, -0.002212, -0.253869, -0.828347, -0.533333, -0.742308, 0.604367, 1.363179, -0.301418, -0.614678, 0.111863, 0.773280, 0.406986, 0.937791, -0.855776, 0.176260, 0.646559, -1.987868, -0.344742, 0.300434, -1.263957, 0.784390, 0.326909, -0.054248, 0.139724, -0.374451, -0.312420, 1.349540, -0.092197, -0.450479, 0.984307, 0.286306, 0.045054, 0.069429, -1.209063, -0.584471, 0.040896, -0.844330, -0.539930, -0.699213, 0.794677, -0.423521, 0.350182, 0.067849, -0.448465, -1.406314, 0.488233, 0.199481, -0.203344, 0.175522, -1.595010, -1.831918, 1.945528, -0.455928, 0.932654, 0.517514, -1.124600, -2.291537, -0.669505, 0.331033, 1.621062, -0.147579, 0.161541, -0.811083, -0.204189, -1.272435, 0.448533, 1.896475, -1.133960, 0.495441, -0.948400, 0.540013, 0.233433, 0.608463, 1.133013, -0.233525, 0.623912, -1.748656, -0.465469, -0.913890, -1.381276, 0.038838, -0.442184, -0.019918, 1.233026, 0.968645, 0.737109, 0.232598, -1.115302, -1.865655, -0.903959, 0.729599, 1.062438, 0.507872, 1.967925, -0.286403, 1.208560, -0.720140, -0.167629, 0.673381, -0.586803, 0.829526, 0.047502, 0.036207, 1.740825, 1.104409, -0.374411, 0.796347, 0.389891, -2.117978, 0.899245, -1.453943, 0.500538, -1.244588, -0.133989, -1.056114, -0.331852, 0.290895, -0.864773, -0.159921, 0.846899, 1.642079, 0.352519, 0.195101, -0.487219, 1.300938, 0.055601, 0.454052, -1.191289, -1.001641, -0.219728, -0.594717, -0.478197, -1.377474, 1.910553, -0.085079, 1.395549, -1.354383, 0.679572, -0.235601, -0.037421, -0.801886, 0.765023, 0.203645, 0.942272, -0.539130, 0.059268, 2.139118, -0.847996, 0.046247, 2.413610, 1.409484, 0.964430, -0.222640, 1.248723, -0.014154, 0.319524, 0.762013, 0.063606, -1.238826, 1.206852, 0.662122, -0.960769, 0.123010, 0.934355, -0.320293, -0.703127, -0.529595, -0.431325, -0.531930, 1.228471, -1.372110, 0.105589, -1.309925, -0.380860, 0.676895, 1.767930, 0.531131, 1.068405, 1.204329, -0.184111, -0.338321, -0.400304, 0.544788, -0.015787, -0.402434, 1.196565, -0.802071, -1.462558, -0.730348, 1.376692, -0.010214, -0.298392, 0.240798, -0.164863, -0.821951, -0.653595, 1.652045, 0.924946, -0.421356, -0.356883, -0.351145, 0.911578, -1.096141, 1.644679, 1.196682, -0.676876, -1.203089, -1.600585, 0.328852, -1.140360, -0.594403, 0.230661, 0.320870, -1.511643, 0.207653, 0.214748, -0.635145, -0.976731, 0.617397, 1.090502, 1.234640, 0.505767, 1.111139, 0.022716, -3.149945, -0.720575, -2.197897, 1.499600, -1.069327, -0.561402, -1.457112, -0.135610, 0.027123, -0.311725, -0.058628, 2.291447, 0.771153, 0.819679, -1.429604, -1.335327, -0.097726, -2.757061, -1.104743, 0.730313, 0.581257, -0.989072, -0.343689, -0.427930, 1.497801, 0.882999, 0.122588, -1.215907, -0.027390, -0.148392, 1.143721, -1.165282, -1.038509, 1.757744, -0.399405, 1.089612, 2.513361, -0.367846, -0.626835, -1.012237, -0.426295, -0.309423, 0.849768, 0.315756, -0.245734, 0.472882, 0.098225, -0.457671, -0.590318, -0.265516, 0.467979, -1.864364, -0.501889, 0.266760, -0.721410, -0.837682, -0.148171, 0.044028, -1.161403, -0.680787, -0.172898, 0.637237, -1.168705, -1.585799, 1.119484, -1.356566, -0.674577, -0.764301, -0.469159, -2.687289, 1.108895, -0.664008}, + { 0.332413, -0.090476, 0.111142, -0.105650, -0.492015, 0.563133, -0.308829, -0.996772, -0.710380, -0.639434, 0.741823, -0.587970, -0.431323, -1.459216, -0.628200, 1.121755, 0.310918, -0.027048, 0.484048, -2.768089, 2.414129, -0.286526, -1.069539, 0.042255, -0.970093, -1.056685, -0.290018, 0.323992, -1.961179, 1.377456, -2.746641, 0.655005, 1.514401, -0.858676, 0.453182, 0.470032, -0.393851, 0.599810, -0.727723, -0.485360, -0.296523, -0.335302, -0.001939, -0.390613, 0.692754, -0.297787, -0.683839, -0.245338, 1.014253, -0.334746, -1.176200, 0.919842, -0.858995, -0.485241, -0.372096, 1.224724, 0.261900, -1.241396, 0.666264, -0.508043, -2.133119, 0.285788, 0.770445, -0.512387, 0.331296, 0.674873, -0.023667, -0.494804, -0.433539, 0.620181, -1.186752, 0.430033, -1.021986, 1.048476, -0.542787, 1.510876, 0.674521, 1.156451, -0.922329, 0.613084, 1.168869, -1.414186, 0.548016, 1.877142, 0.538212, -0.062034, -0.394426, -0.764928, -1.339256, 0.797266, -0.531602, 0.347888, -0.606943, -2.260128, 1.040178, 0.898863, -1.368123, 0.261365, 1.016327, 0.260189, 1.498519, -0.255452, -1.379712, 0.500720, 0.484281, -0.274261, 0.151794, 0.077884, 0.539540, -1.176680, 0.428913, -0.277737, 0.331718, -1.256974, 0.128732, 0.838281, 1.414778, 1.033964, 0.201801, 0.948353, -0.715105, 0.341861, -0.401363, 0.678465, 0.156881, -1.388737, 1.729869, -1.264426, 0.436415, -0.543501, -1.489277, -0.537544, -1.011361, 1.954747, -0.072545, -0.015704, -0.147238, 0.535290, -0.892774, 0.536171, 0.407434, -0.203392, -0.240277, 0.354210, -0.802281, -1.031150, 1.487040, 0.308466, -0.642546, 0.071923, -0.763645, 1.384431, -0.016321, -1.970340, -0.443420, -0.584331, -0.718848, -0.123439, 1.040007, 0.718988, 0.222775, -0.581023, 0.213477, 1.744051, -0.341766, 1.107654, -0.832242, 0.478139, -0.120128, 0.893301, -1.433044, 0.364631, -0.707983, 1.481024, 1.076907, 0.152833, 0.316878, -1.092690, -0.257177, -0.772108, 0.242734, -0.847114, 0.373323, 0.799211, -0.046355, -0.358662, 0.069984, -0.651776, -0.098871, 0.553035, 0.184604, 1.720749, 0.157912, -0.533023, -0.031688, 0.658297, 1.102183, -0.668551, -0.351309, -0.116471, 1.710932, 1.060462, -0.333532, -0.095624, 0.327515, 0.444750, -2.349119, 1.673249, 1.056736, -0.396374, 0.220611, 2.504459, -0.554302, -0.213013, 1.830962, -1.107491, -0.598477, 0.045907, 0.129413, -0.263897, -0.597111, -0.435294, -0.701651, 1.376132, -1.023851, -1.784413, -0.241752, 0.209999, -0.381562, -0.223928, 0.995270, -0.552373, -0.965910, -0.954263, 1.138501, 0.473679, -0.189117, -0.540881, -2.493774, -0.060180, 0.543873, -1.284099, -0.659967, -1.443070, 0.145057, -0.895853, -1.782699, 0.206764, 0.718617, 0.447118, 0.544709, 0.160530, 1.044261, -1.168851, -1.715942, -0.426890, 0.440709, -0.710538, 0.590257, -1.481875, -0.941835, 1.017842, 0.490278, -0.618954, 1.846469, -0.576514, -0.120600, 2.045900, -0.548250, 0.715270, 1.510966, 0.594488, 0.239436, -0.392097, -0.518888, 1.207397, 0.215695, -0.409388, -1.146060, 0.391842, 0.420014, 0.741190, -1.642495, 0.038210, -1.403337, -0.777395, 0.052477, 0.439552, -0.337797, -0.222298, 0.655024, 0.585861, -1.219943, 2.736820, -0.551745, -0.982342, 2.268393, 0.091445, -1.707475, 0.058399, -0.692335, -0.321801, -0.550962, 0.385469, -0.341551, 0.027301, 1.866760, -0.846516, 2.269717, -1.072989, 1.770384, 0.083566, 0.272755, 0.942532, -0.250030, -1.875477, -0.457772, -0.340411, 0.738559, 0.000197, 1.213037, 0.849176, -0.269861, -0.072165, 0.102182, 2.261038, 0.073744, 0.148187, 0.502755, 0.663832, -1.226263, 0.363262, 0.447514, -0.216750, -0.247224, 0.566976, -1.420693, -0.053375, -0.733065, -0.130164, -0.780495, 1.490258, 0.928009, -0.980839, -1.922868, 0.757046, 2.360650, 0.371054, 0.476158, -0.906443, 0.312970, 0.766959, -0.704138, -1.163653, -0.670671, -0.689074, -0.671234, -0.125076, -0.134199, 0.839989, -0.460121, 0.935337, -0.008488, 1.019224, 0.759984, -1.377837, 2.028915, 1.826818, 0.613339, -0.193261, 1.451456, 1.298127, 0.270833, 1.214569, 1.296101, -1.962302, -1.450883, 0.197587, 0.448897, -0.355898, 1.518468, 0.809314, 0.539606, -0.049976, -0.923559, -0.371532, -1.147110, -0.817528, 0.183345, -0.223735, 0.915319, -1.547933, 0.445157, -0.747921, 0.377815, -0.713546, 0.904311, -1.161063, -1.090289, 0.178200, 0.826774, 1.079186, 0.297022, -0.203784, 0.310157, -0.831840, -0.283096, 0.412864, 0.827500, -2.221612, -0.182601, 0.819123, 0.190311, 0.194056, 0.207361, -1.169707, 0.644312, -0.486385, -0.365451, -0.941410, -1.367268, -2.307357, 1.664220, 0.442388, -1.655976, 0.326389, -0.046664, 0.874415, 0.140329, 0.085505, 0.980782, 2.339350, -0.500732, -1.198792, 0.845504, 1.272187, -2.992011, 0.272694, 0.352522, 0.906393, -1.504858, -0.065103, -0.843170, 0.161277, -0.260392, 0.538582, 0.853036, 0.196121, 1.077102, -0.226425, -1.895123, -0.313965, -0.572552, -0.587900, 1.045139, -0.986904, 0.412959, -0.176403, -0.321011, 0.499103, 0.444863, -0.948091, -0.373640, -1.000724, 0.314558, 1.382282, -0.455950, -1.283715, -1.248909, 0.512849, -0.887994, -0.397828, 0.240441, 1.121143, 0.334973, -0.961739, -0.457526, 1.809203, -1.619508, 0.166722, -0.844253, 0.209446, 0.187729, -1.444352, -0.612184, 1.054032, 0.558481, -0.149892, -0.203386, -1.326215, 1.697874, 0.307984, -0.329882, 1.599952, -1.173515, -1.728018, 0.553763, -0.398294, 0.122929, -0.477630, 0.780699, 0.733659, 0.962108, -0.766103, -0.637033, 1.722177, 0.217015, -0.345815, 2.161558, 0.061773, -2.496190, -1.338003, -0.991100, -0.558270, 0.391743, 0.422292, -0.179245, -1.653523, 0.533463, 0.727673, -0.860690, -0.378647, -0.448850, -0.988305, 0.212703, 1.025908, -0.065756, 0.279577, 0.413206, -0.439237, -0.312943, 1.316437, 0.223352, 0.130142, 0.087801, 0.102658, 0.673192, -0.712053, 0.661451, 0.829606, -0.582947, -0.247915, 0.425853, -0.485600, -0.734955, -1.370681, 0.820578, 1.265371, 2.209562, -0.269679, -0.012571, 1.065734, 0.887827, 1.435880, -0.199550, -1.667014, -0.367064, -0.134792, -1.748803, 0.481537, -0.479872, -0.624758, -1.574703, -0.147887, -0.886725, 0.369281, -0.232004, 0.012470, -2.083078, 0.723738, 0.837940, 0.473451, 0.262049, -1.161261, -0.722633, 0.835566, -0.439135, 0.521020, -0.601784, -0.794508, 0.127931, -0.816449, -1.080561, -0.391566, 0.321305, 1.566316, -0.060631, 0.125768, -0.011606, -1.129203, -0.437153, -0.668726, 0.583097, -2.083591, 1.157958, -0.254565, -0.572011, -0.207830, 1.178302, -0.625917, 0.149176, -0.272977, 0.963374, -1.584610, 0.543515, -0.554689, 0.473338, -0.272569, -2.171537, 0.016032, -0.153908, 0.595323, 0.012496, 0.826651, -1.279603, -0.379394, -0.536605, -1.366260, 0.444574, 0.155408, 1.794734, 1.679658, 0.756814, -1.175797, 0.658997, 0.750576, -2.226382, 0.612725, 0.212362, 0.008456, 0.405550, -0.306795, 0.625620, -0.267137, 0.100022, 0.067766, 0.558592, -0.640202, -0.654459, -1.689198, 0.794818, -1.365268, -0.312364, 0.279432, 0.821647, 0.254142, 2.284136, -0.261828, -0.078930, 0.693253, -0.170263, 1.256426, -0.797634, 0.911959, -0.517969, -0.903680, 1.695689, 0.443434, 1.590053, 1.620189, -0.024819, -0.626617, -1.283893, -1.054684, -0.112331, -0.034263, 0.004174, -1.733980, -1.051281, 0.048925, -0.596698, 0.325219, 1.279105, -0.937609, 0.674835, -0.455320, 1.604386, -0.606526, -0.623002, -0.322564, -1.268396, 0.586967, 1.518035, 0.217431, 0.151262, -0.644681, 1.697620, -0.921071, -2.291254, 1.072662, 0.427007, 1.902025, -0.460736, 0.384503, -0.889487, 1.261442, 0.314857, -1.082276, 0.171244, -0.249381, 1.581279, -1.637765, 0.121682, 0.808878, -0.357868, 0.209678, 0.647120, -0.009759, -1.685765, 0.617450, 2.305940, 0.056446, 0.767286, -1.771028, -1.283960, 1.342832, 0.623596, -0.066315, -0.199515, 0.650273, 0.264588, -0.744608, -0.746418, -2.124202, -0.146926, 0.392638, -1.538700, -0.271547, 0.301499, -1.651731, -0.146944, -1.121951, -0.784411, -0.412355, -0.524026, 0.943538, 1.620827, -0.404759, -1.057480, -0.998717, 0.858370, -1.998713, 0.333596, -0.995064, -0.561418, -1.615057, -0.519505, -1.148545, -0.835220, -1.434511, -1.620710, 0.838094, 0.952118, 0.549566, 0.564244, -1.288459, -1.798690, -0.434689, -1.026014, 1.312105, 0.335384, 0.532218, -1.385370, -0.708757, 0.548970, -0.060770, 0.617430, -2.796243, -1.091676, 2.088774, -0.491811, -0.424752, 1.466917, 1.043665, 0.107828, -0.408104, 1.422861, 0.046745, 0.489890, -0.076826, 0.933259, -0.821984, 0.549958, -0.354484, -0.622192, -0.610304, -0.459022, 0.470213, 0.913912, -0.078251, 1.460776, -0.078061, -1.562451, 0.741141, -0.803167, 0.043003, 0.697627, 1.377150, -0.061913, 0.100843, 0.146320, 0.722686, -1.073459, 0.739537, -0.157894, -1.467302, 0.357267, -0.953141, -0.423063, -1.740439, 0.607853, -0.503574, -0.271799, -0.206298, 0.567419, -1.183112, -1.500188, 0.810370, -0.298685, -1.009744, -0.600005, -1.279845, 0.552013, -1.612481, 0.292148, -0.749283, -1.314620, 0.941991, -0.930493, -0.060125, -0.241817, -0.531869, 0.061162, 0.647767, -0.901355, -0.184766, 1.702293, 0.420983, 0.491773, 0.859071, 0.760141, -1.033019, -0.383732, -0.978214, -0.612003, 0.703203, 0.518546, -1.418451, 0.003646, 0.616851, 0.915675, -1.169185, -0.050293, 1.333933, 0.862519, 0.402817, 0.795916, 0.796625, 0.740740, 0.349167, -0.529555, 1.702156, 1.571571, 0.558439, 0.677786, -0.038789, 0.406366, 0.719938, -1.509139, 0.779539, -0.452586, 1.512160, 0.793720, 0.289071, 0.882045, -0.223399, 2.227741, -0.803339, 2.033337, -2.107007, 0.947627, 1.315363, -0.920506, -0.168807, -0.015158, -0.314552, -1.276389, 0.883355, 0.705430, 0.536489, 1.409183, -0.533939, 1.127232, 0.562946, -0.924352, 0.066195, -1.071521, -0.494558, 0.839034, -0.916701, -0.557743, -0.453364, 1.580799, 0.980236, 0.377979, 0.208521, -0.645774, -1.129338, 1.044617, 0.692552, 2.159659, 1.368088, -0.199366, -1.249165, 0.080794, 0.483180, 1.287076, -0.110163, -0.531105, -0.498655, -2.068255, -1.393150, -1.710954, -1.461273, -1.013984, -0.237610, 0.892408, -0.237737, 0.756205, 1.966613, 0.991563, 0.262238, -1.139088, -0.318029, 0.022481, 1.152952, -0.368783, -0.582549, -0.471548, 0.156034, 2.334373, -1.017766, 1.290749, 1.638450, -0.850097, -1.181241, 0.250034, 1.317944, 0.542569, 1.383254, 0.238320, -0.485503, 0.751033, -2.136729, -0.444880, -0.443161, -0.617829, -2.419981, 0.445541, 0.951887, -1.128313, 1.678103, -0.091826, -0.417388, 0.492196, 0.968676, 0.091234, -0.446133, 1.349090, 0.630067, -0.769798, 1.263931, 0.904641, 0.195466, -0.380730, -1.278928, 0.016286, -0.754500, -0.013241, 0.626080, 1.581112, -1.354169, 0.625483, 0.216052, -0.667792, 1.794916, 0.085767, 0.205481, 0.453476, 0.079927, -1.572281, 0.362329, 0.501201, -0.882164, 2.152445, -2.434957, -0.470505, 0.997812, -1.266957, -0.033494, 1.440470, -1.014112, -1.574884, -1.623940, -0.935002, -0.654050, 0.687626, 0.162400, -0.960659, -0.676304, -0.454858, -0.522163, -1.435989, -0.021196, -0.911292, 0.205341, -0.531980, -0.280608, 1.366761, 0.249688, -0.553740, 0.482486, 1.687059, 1.010648, 1.688699, -0.076617, 1.131603, 0.892899, 0.276267, 1.156595, 0.492346, -0.174117, 0.566770, -0.399723, 1.458423, 2.129884, -0.867126, 1.322380, 0.707254, 0.491617, -0.317481, -0.086859, 0.005343, -0.231006, 2.020493, 0.318070, 0.149524, -1.174234, -0.576451, -0.660870, -1.011631, -0.805260, 0.129546, -0.869773, -0.278761, -0.632811, 1.893211, 0.514338, -0.206982, -0.486175, 0.502145, 1.224112, -1.714737, 0.245386, 1.045557, -0.276084, 2.507840, 0.163897, -1.261247, -2.472059, 0.708976, 0.795227, -1.762789, -0.220855, 0.229522, 0.257277, 1.059348, 1.519520, -0.009878, 0.210398, 1.013724, 2.126493, 1.285697, -0.182820, -0.172843, -0.288383, -0.540512, 0.363419, -0.604089, -0.398068, 1.016660, 0.688912, -0.564958, 0.270841, -1.941296, -1.524301, -0.738495, 0.552349, -1.434486, -1.404625, -0.780554, -0.302889, 0.144368, -0.113578, 1.625405, -2.288239, 1.287383, -0.510163, -1.497400, -0.705719, 1.024657, -0.610147, 0.668245, -0.324842, -0.814347, 0.889092, -2.608135, -0.059007, 0.947085, -0.346749, -1.001543, -0.619302, -2.843781, -0.062318, 0.135680, 0.466214, -0.434046, 0.335925, -0.309873, -0.960881, -0.142906, 1.002613, 1.106483, 0.228058, 2.442204, -0.565412, -0.444695, -0.456349, 0.225989, -0.312006, 0.390162, 0.951283, -0.595653, 0.850771, -0.132953, 0.807768, 1.646481, 0.010370, 0.323289, -0.514807, 0.696271, 0.214713, -0.797228, -0.590987, -0.050820, 0.667784, 0.105420, -1.204762, -0.687476, 0.875144, -0.227006, 0.810107, -0.447727, 1.187477, 0.955497, -1.410668, 0.274056, -0.453666, 0.709610, 0.325851, 0.264748, 1.582527, -1.397160, 1.528939, 0.049409, 0.392065, -0.605957, -1.376246, 0.779464, 0.168978, -0.731870, 0.440385, -0.173564, 0.730714, 0.831391, 1.609627, -1.223613, 1.708416, -0.711428, 0.395162, -0.662251, 0.904203, 0.681037, 1.392846, 0.112167, 0.264960, 0.628740, 0.431578, 0.287971, 0.823200, 0.116816, -0.261785, 1.426073, 0.903004, 0.116679, 2.135556, -1.252390, 1.075709, 1.376183, -0.130948, -1.793751, 0.531978, -1.092502, 1.211683, -0.923700, -1.724505, 0.234736, -0.473431, -1.960848, -0.282608, 0.807219, -1.688597, -0.138767, 0.285142, 0.075576, 0.490162, -0.204860, 1.458962, -1.017185, -0.354230, 1.201092, -0.474558, 0.904509, 0.339038, 1.077130, 0.846492, 0.188238, -0.923617, 1.346188, -1.017959, -1.206872, -0.682074, 0.210293, -0.183542, 0.465513, 0.286795, -0.216632, -0.058660, -1.343618, 1.793348, -0.292750, -0.009871, -0.351329, -0.176400, 0.878920, 1.223189, -1.226511, -0.340374, -0.872841, -0.668045, -0.454802, 0.140583, 0.247231, 1.850850, 0.816583, -0.642174, 0.125794, -0.643081, -0.526527, -0.603531, -0.986176, -1.139736, -0.620508, 0.558131, -0.051135, -1.269712, 0.852580, -0.393241, 1.157152, 1.127215, -0.122800, -0.795520, -1.568631, 0.691127, -1.110720, -1.579454, -0.367857, 0.063579, 0.951263, 0.168815, 0.984382, 0.985160, 2.020338, -0.041965, 0.683118, -0.295213, -0.379882, 0.866387, 0.019367, 0.733344, 0.160788, 1.634291, -0.043567, -0.030991, -0.165895, 0.276940, 0.063929, 0.002003, 0.799766, 1.276322, -0.175220, -0.328382, -0.120359, -2.769161, -1.479419, -0.925248, 1.178652, 0.251587, 0.295968, -0.557262, 0.274799, 0.983573, 0.945575, 0.258738, 1.850200, 0.773688, 0.925497, 0.278006, 0.476557, -0.333587, 0.658399, -0.226439, -0.563261, 1.423737, 0.292970, 0.422005, 1.331200, 0.873546, -0.594567, -1.040073, -0.004369, -1.233165, -1.243156, -1.477960, -0.873411, 2.010043, 0.398684, -0.351185, 0.237653, -1.022324, -1.269352, -1.265228, 0.969638, -0.277355, -0.530677, 2.626909, -0.163811, 0.318196, -1.394060, 1.930060, 0.261448, -1.647303, 1.056629, -1.129607, -0.486615, -0.802456, 0.323884, 0.671083, 0.985620, 0.267940, 0.873013, -0.850153, -0.371616, 1.240962, 0.576713, -0.666320, 1.318217, 1.646316, 1.216780, 0.470782, -1.346875, 0.387081, 2.100512, -0.128241, 0.754347, 0.187386, 1.479303, -0.414287, 1.468910, -0.372294, 0.903044, 0.848381, -0.576310, -0.258010, -0.708103, 1.098543, -0.794369, 1.326326, -1.158041, -0.027106, -0.225750, 0.585936, 0.018906, -0.077030, 0.798248, -0.349698, -0.682187, 0.952738, -0.239098, 0.920637, 1.208988, 1.162882, -0.011993, 2.127491, 0.581514, 1.422003, -0.135716, -1.010212, 0.039345, 0.045045, 0.696660, -0.130550, 1.944229, 1.502976, 0.613750, -0.307565, -0.091203, 0.633993, 0.118580, -0.813341, -0.767566, -1.079818, -0.282050, 1.553281, -1.086964, 0.510802, 0.919374, 0.879507, -0.302522, -1.034653, 0.151852, 1.361147, -1.038318, -1.750124, 0.101119, 1.747966, -0.372003, -0.613706, -0.591185, 0.950532, 0.307471, -0.476075, -0.040320, -0.618066, -1.720594, -0.597755, -0.297946, 0.347925, 1.305076, 0.769385, 0.175688, -1.583593, 1.324695, 0.915440, -0.897743, 0.764686, 0.378435, 0.827679, 0.765396, -0.265554, -0.127362, -1.099631, 0.410024, 0.419753, -1.030247, 0.398574, -0.930050, -0.187034, 0.896231, 0.347772, -0.738487, 1.125493, 0.159707, -0.296675, -0.736772, 1.444376, 0.708270, 1.301820, -0.613415, -1.131274, -2.425478, -0.210039, 0.859825, 0.087560, -0.288042, -0.286937, 0.189502, 0.421060, 2.704326, 0.869582, -0.789697, 0.394062, 2.060898, -1.384599, -0.975317, -0.959449, 1.630341, 0.710030, 0.138189, -0.425804, 0.323462, 1.558027, 0.218489, 0.186915, -0.188354, 0.875418, -0.631404, 2.515853, 0.888233, -1.138928, 0.931494, 0.791801, -1.934849, 0.330313, -0.191361, 0.034512, -0.845609, 0.811131, -1.122497, -1.563081, 0.355550, 1.042817, -0.358564, -0.836795, 1.096931, 0.821378, -0.843018, 0.949655, 1.483863, -0.213964, 1.712181, -1.595074, 0.962693, 1.015877, 1.857027, 0.856355, -1.293958, -0.458723, 1.342438, 1.857567, 0.681817, 0.149496, -0.488124, -1.522765, -2.437259, -0.469027, 1.695409, 0.695268, 1.503875, 0.930953, -0.553585, -0.494742, 1.336754, -0.309437, -1.474055, -0.910071, -0.493953, 0.919408, 0.487805, 0.372066, -1.334930, 2.768972, -0.739934, -2.537957, 1.993227, -0.481223, 0.579137, 0.097511, -0.266998, -0.782373, -0.348708, -0.612770, -0.081083, 0.638289, 0.097007, 0.069784, -0.013636, -1.983485, -0.483091, -0.338076, 0.131448, 1.162878, 1.169703, 0.386729, -1.077208, 0.450685, -0.674963, -1.117238, 0.094733, -1.453760, -0.639298, -0.439775, 0.079282, -0.498095, -0.520192, 0.344522, 1.245484, 0.636502, -0.879362, -0.682212, -0.201300, -1.042150, 1.128293, -0.645169, 0.073426, -1.120832, 0.895656, 0.125561, 0.194086, 1.552879, 0.352898, -1.841795, 0.387979, 1.341562, -0.935230, 0.772880, -0.069439, -2.171020, -1.729386, -0.481882, -1.099033, 0.659894, -0.138947, -1.027644, -0.059817, -1.503294, -1.371742, -1.052331, -0.235903, 1.609249, 0.581964, 1.721283, -0.243545, -1.947487, 0.014905, -1.370168, 0.080897, -0.813126, 0.046892, 1.212364, 2.142939, 0.923298, 0.015547, -1.076693, 0.181366, 1.364048, 1.086883, 0.904162, -0.607959, 0.397086, -0.125301, 0.679773, -0.193204, 0.315042, 0.154997, 0.059522, 1.464326, 0.121211, -1.014883, 0.763274, 0.851236, 2.298345, -0.030669, 0.048745, -0.432413, 1.535197, 0.689044, -0.904760, -1.249941, -0.505129, -1.011775, 1.495330, -0.558128, -1.383847, 0.142089, -0.017155, -1.568275, 2.043560, 0.011999, 0.126786, -0.162554, -0.043844, -1.379454, -0.500392, 0.254474, 0.707366, 0.816757, -1.226395, -0.666966, 2.009572, -0.233156, 1.147893, -1.728117, 1.635403, 0.931182, -0.982141, -0.569492, -1.384807, -0.005323, -0.461772, 1.005790, 0.044195, -0.942073, -0.783637, -0.695629, -0.041599, 1.590665, 1.222531, 0.303378, 1.409049, 0.095492, -1.089426, 1.286694, 1.688999, 2.117612, 1.059940, 0.672189, 1.007068, 1.132985, -1.102660, -0.196325, 0.139877, 1.946525, 1.016517, 0.114356, 0.354442, -0.483027, 0.355104, 1.830137, 0.287580, 0.592634, 0.916866, -1.576712, 0.383925, 0.578369, 0.515323, 1.230483, -0.574325, 0.368397, 0.189826, -0.489736, -0.394374, 0.809553, -1.453355, 1.350374, -1.291178, 0.654567, 0.090665, -1.883666, -0.651559, -0.748650, -0.468110, -1.007841, -0.313019, 0.612921, 0.618019, 1.055759, -0.287164, -1.423864, 0.584640, 0.032046, 1.088973, -0.357387, 0.748128, -0.435306, 1.527493, 0.443135, -0.880351, 0.521328, -0.346296, 1.686460, -0.512587, 0.601966, 0.436588, -1.314965, -0.319078, -0.880068, -0.092162, -1.035020, -1.259117, 0.503484, -0.171935, -1.232785, 0.368860, -1.345035, 0.027177, 0.951496, -1.295035, 0.810210, -0.176469, 0.748114, 0.490939, -0.982091, -0.212023, 0.109433, 0.227544, -1.969052, -1.046004, -1.190753, -0.632195, -0.897640, 0.844773, 0.176071, -2.254886, -0.828966, 0.380993, -0.314232, -1.485790, 0.338232, 2.849200, -0.244255, -0.014193, 0.808252, 1.154426, 1.759918, -1.070352, 0.184412, -0.551133, -0.067449, -0.206060, -0.721926, -0.614675, -1.057866, 1.288226, 0.546093, -1.819086, 0.875635, -1.186228, -0.706844, 0.420428, 0.464173, -1.970815, 0.040265, 0.979257, 0.722564, -0.083365, -0.993187, -0.332314, 2.124213, 0.385350, -0.943470, -2.423453, 0.484566, 0.982158, 1.116549, -0.236137, -0.605190, -0.956017, -0.344289, -1.984211, -0.717507, 1.357101, -1.764415, -1.494770, -0.020111, 0.142458, -1.385483, -0.225463, -1.223360, -0.144176, 0.472324, 0.155263, 0.641433, -0.124007, 1.400785, -1.247499, 0.462295, -0.237960, 0.932353, -0.156990, 1.854269, 0.601584, -0.534695, -2.231608, -0.702490, -0.475160, -0.955694, -0.904631, 0.310338, 0.277823, 0.781322, 0.121412, -0.232620, 0.645961, 0.368690, 0.381196, -1.088444, -1.693116, -1.111578, 0.295593, 0.045498, -0.085718, -0.640119, -1.212959, -0.516827, -0.469387, -0.039691, -0.649467, 0.859894, 0.308341, 1.593292, -0.251972, -0.880161, 0.072534, 0.082881, 2.164468, 1.075309, -0.340336, 0.691023, 0.235370, -0.431032, 0.850657, -1.539289, -0.746202, 0.790461, -0.911253, -0.108639, -2.308335, -1.161708, 0.278767, -2.033837, -0.504813, 1.063949, 3.009235, -0.837237, 0.865540, -0.382273, -0.507635, -2.082772, 1.776487, 0.338300, -0.641904, -1.568420, -0.560583, 0.085281, -0.262701, -0.087924, 0.182183, -0.125335, -1.403393, 0.921833, 1.590404, 1.160873, -0.848099, 0.901084, -0.568654, -0.021222, 1.820698, 0.685168, 0.923379, 0.252517, 1.588853, 1.191792, -0.279060, 2.825582, 1.190414, -0.533850, 0.365552, 0.241109, 0.996154, -0.721186, 1.446907, -1.013355, -0.718090, -0.233487, 2.684663, 0.993903, 0.660959, -1.915303, -0.986402, 0.110624, -0.523912, -0.155422, -0.945023, 1.446938, 0.347144, -0.319638, -0.529896, 0.818895, -1.314871, 0.304520, 0.233512, -0.837869, 0.919282, -0.019769, 1.741808, 1.532410, 0.516846, 0.505614, 0.838958, -0.648456, 0.864061, -0.708655, -1.448713, 0.160097, -0.122849, 0.152219, 0.062212, -1.648547, 0.667071, 0.536972, -0.264216, 0.789347, -2.212946, -0.479004, 0.584909, 0.851930, -1.355208, -0.519634, -1.066701, 0.579433, -0.275726, -0.172861, -0.029156, 1.548625, -0.112870, -0.374078, -0.489253, 0.844263, 1.116492, -0.571217, -0.764394, 0.615710, 1.423027, 0.166701, 0.080406, -1.555876, 0.446003, -0.120918, -0.431988, 1.063977, 0.312575, 1.983829, -0.596960, 0.083516, -0.597356, 3.026318, 0.603033, 0.062867, 0.381198, 0.882725, -0.098218, 0.780584, -2.143364, -0.017192, 0.834249, 0.907809, 1.280190, -0.853680, 0.631535, -0.219623, 1.462403, 0.309000, 1.357172, -1.254189, -0.403433, -1.475000, -2.061593, -0.714903, -0.361631, 0.893654, 1.362963, 2.086599, 0.211993, 1.341075, 1.747539, 0.507176, -0.335751, -0.822882, -0.950875, 1.540854, 0.873600, 1.197219, 0.168600, -0.485274, -0.614645, -0.934519, -0.454649, 0.838339, -1.181235, 0.275976, -0.540647, 0.672620, 0.083545, -1.491835, 0.468006, 1.074482, -2.561683, -0.452692, -1.117312, 0.168179, -0.408032, -0.505593, 0.817083, -0.442046, -0.131498, -1.126604, -1.569494, 0.355053, 1.131362, 0.713010, 2.154716, -0.139501, -0.598514, 0.943933, -0.542753, -0.382539, -0.563194, -1.705040, 0.886024, -0.379644, -0.140228, 1.120338, -0.924376, 2.414372, 0.524540, -2.293547, -0.559688, -0.070296, 0.750848, -0.406359, -0.254353, 0.344181, 1.013552, -0.007486, 0.746620, -1.535494, -1.486353, 0.004643, 0.956255, -0.748508, 0.459997, -0.531270, 0.070060, -0.053732, 0.734850, -0.181851, 1.037690, -1.404738, 1.968833, -0.505541, 1.692548, -0.421221, 0.948021, -1.858878, -0.955996, -1.863547, 0.476828, -0.702769, -0.124104, 0.170128, -1.936151, -0.858897, -2.853552, 2.323096, -0.617532, 1.485035, -0.256558, -2.372216, -0.653720, -1.247326, -1.109409, -0.566794, -0.137462, 1.509960, -0.414510, 0.994967, -0.876768, 1.515747, 0.612384, 0.002270, 1.729010, 1.317656, -0.369445, 1.199532, 0.245638, -0.150042, 1.365083, -0.289579, 2.121218, -0.077187, -0.147791, -0.808945, 1.310684, -0.310651, -0.185196, 1.118677, -0.454398, 1.563441, 0.886451, -0.924288, 0.238867, 0.649060, -2.260550, 0.620375, 0.320366, -0.414299, 0.852355, -0.050526, 1.230372, 0.087838, -1.496737, -2.252890, -0.872837, -0.033618, 0.432355, -0.326513, -1.256874, 0.865369, -1.200442, -0.172117, 0.678513, -1.892742, 0.378145, -0.634113, -0.497496, 1.057485, -2.047675, -1.678784, -0.090789, 0.095704, 0.183354, -0.055582, -1.294250, -1.289254, 3.114116, 0.103514, 0.666552, 0.637755, -1.813854, -0.517618, 1.734209, 0.072069, 0.977124, 0.116245, -0.841680, 0.801202, -2.088752, 1.338923, -0.293964, 0.258428, -0.739118, -0.542725, -0.452166, 0.090850, 0.882999, 0.713458, -0.362415, 2.440426, -0.536291, 0.016272, -1.744044, -0.110782, 1.313432, 0.264208, 0.552443, 0.197899, 0.739995, -0.449176, -0.905973, 0.429931, -0.419163, -0.600859, 0.272287, 0.759419, -0.392657, 1.017944, -0.162004, -0.328590, 1.680606, 1.139587, 0.641349, 1.715772, -2.174243, 0.008907, -0.158503, -0.209823, 0.093558, 0.620487, -1.483951, -2.298613, 2.090426, -0.479152, -0.372819, -1.676218, 1.556108, 0.294399, -0.199987, -0.503534, 0.974420, -0.891336, -0.181579, -0.303365, 1.247258, -0.304895, -0.330361, 0.749201, 0.726542, 1.033187, -0.426316, 0.686416, 0.588549, -1.046024, -2.265826, -0.569353, -0.974339, 0.790326, 0.301721, 0.051718, -0.408592, -0.497722, 1.313081, 1.564986, 1.936315, 0.901129, 0.331794, 0.263559, 0.396322, -0.878191, 0.420524, -0.614101, -0.048997, -0.834269, 0.705883, 0.250932, 0.302256, 1.503717, 0.533281, -0.085617, 0.068483, -0.982903, -1.700810, -0.308505, 0.654750, 0.127592, -1.526186, -1.279243, 0.689861, 1.368979, 0.482244, 1.852208, -0.370026, 1.246650, -1.487595, -1.333163, 0.708514, 2.147604, -0.584943, -0.212347, 1.200645, 1.572517, 0.193984, 0.064371, 0.439960, 0.220258, 0.294378, 1.689126, -0.863359, 0.906264, -0.163464, -0.094013, 1.055880, 2.419452, -0.010445, 0.954804, -0.708368, -0.488587, -0.187337, 1.789069, 0.251934, -0.636422, 1.745223, -2.032678, 0.587446, 0.389559, 1.229073, 1.070143, 1.737303, -0.256530, -0.323728, -1.016176, -2.597538, -0.439331, 2.120449, -1.636866, 1.661878, 0.174542, -0.609478, -1.462647, 0.138561, 0.475717, 0.761625, -2.056225, 0.519877, 0.520113, -0.058895, -0.223880, 0.487315, -0.600184, 0.111154, -0.520312, -0.740846, 1.001395, 0.269978, 0.061772, 0.795532, 1.153259, 1.945393, 0.386760, -0.194931, 1.117340, -2.547908, 0.275350, -0.291035, 0.121162, 1.168407, 3.004040, 1.206682, 1.860609, -0.553566, 0.436475, 1.509270, -0.079995, 0.648278, 1.520170, 0.654764, 0.642654, -0.103263, 1.431932, -1.672136, 0.675699, -0.358547, -0.368306, 0.465448, 0.850044, 0.548496, -1.096597, -0.154846, -0.588313, 0.500140, 1.866052, -0.722612, 0.694591, 0.342565, -2.186830, -0.268416, -1.208641, -0.252158, -1.056763, 0.726534, 0.720627, 0.528133, 1.618752, -0.471104, 1.252454, -0.255487, 1.021059, -0.093140, -1.126807, 2.117621, 0.861237, 0.464975, -0.611850, -0.340385, 0.272237, 0.949431, 1.179052, -0.367280, 1.360045, -2.030464, -0.575869, 0.553540, -0.858014, -1.017025, -0.675501, -0.547098, 0.523372, 0.772294, -0.304150, 0.586481, -0.530548, 1.554712, -0.108600, 1.136066, 1.108995, -1.031884, -0.009019, 1.093613, -1.632689, 1.833036, 0.476835, -2.287449, -1.048623, -0.890507, 0.350744, -1.675494, 0.005564, 0.502717, 1.097235, -0.486465, -0.191010, 0.305804, 0.368751, 1.427304, 1.539862, -0.179160, 1.119569, -0.038261, -0.889175, -0.835013, 0.045541, 0.075318, 1.266535, 1.736014, 1.063173, 0.626145, 0.333170, 0.255021, 0.031490, -0.641407, -0.198054, -0.420347, 0.534582, -1.828737, 0.079254, 0.020063, -0.101433, -0.231313, 0.563658, -1.594141, 2.160435, -0.816095, -1.346262, -1.275690, 0.755728, 1.756966, 1.766581, -0.440514, -0.720601, -0.200484, -1.164140, 1.138163, -1.487541, 0.623498, 0.322107, 0.567950, -3.297139, 1.047993, 0.016092, 1.125722, -0.452980, -0.745867, -1.266897, -0.358085, 0.168158, 1.054676, 0.092128, -1.170075, -1.726595, -1.283115, 0.045051, 1.534116, 0.196328, 0.590823, 2.194469, -1.296712, -0.988617, -1.626554, -0.902247, 0.615704, 0.291430, -0.111737, 0.312272, -1.681273, 0.581683, 0.273723, -0.823948, -2.025354, 0.405095, 1.725184, -0.288222, -0.722230, -0.128972, 0.883248, -0.825437, -0.458363, -0.131714, 1.339205, -0.840309, 0.149015, -0.497098, -0.403865, 1.003031, -0.946653, -0.545340, 0.030427, 0.916683, -0.904023, 0.182776, 0.677697, -0.083794, 0.984866, 0.463448, 1.186617, 0.311456, 1.690295, -0.111194, 1.911908, 0.164051, -0.945799, -0.228923, -0.373503, -0.399616, -0.307168, 0.458569, 1.050193, -0.596638, 0.873968, 1.337634, -0.428005, -0.573460, 0.318270, 1.244357, 0.855243, -0.287462, 0.136807, 0.891417, -1.137386, 1.848981, -0.979447, 0.892591, 1.767642, -0.529270, -2.029587, 1.249933, -0.215381, -0.217828, 0.159267, 0.411966, 0.686067, 0.760065, 2.328399, 0.711063, 0.545938, 0.081809, -0.765622, 0.467794, -0.890438, 0.082604, -0.755636, -0.505535, 0.512611, 0.276619, -0.186899, 0.190696, -0.196591, -1.168548, 0.881956, 1.345716, -0.601134, 0.435059, 0.509830, 0.513517, 0.514264, 0.901260, 0.045446, 0.063921, -0.034987, -1.735626, -0.563004, -1.697156, -0.288659, -0.616832, -1.328834, 1.049242, 0.189247, -0.222868, 2.113902, 0.614681, -1.008804, -1.107196, -0.189478, 1.963143, -0.750138, 0.170991, -0.204833, -0.091046, 1.044515, 0.744053, -1.841359, 0.612544, 1.076216, -1.005134, -0.679932, -1.677453, 0.089280, -0.332413, -0.453023, -1.385983, 0.125332, -1.633041, -1.896588, 0.448557, -0.013762, -1.760384, -0.524433, 0.557467, -0.266541, 0.072338, 0.118336, 0.609771, -0.027556, 1.407273, 0.831244, -0.687850, 1.681442, -0.097458, -0.614217, -0.881784, 0.217327, -0.417206, -1.255519, 0.813493, -1.480549, 0.375462, 1.831120, -0.710142, -1.009675, 0.391348, 0.406062, -0.297669, -0.371393, -0.307198, 1.349222, -0.343637, -0.202090, 0.537860, 1.055116, 1.315835, -0.844899, 0.264139, -0.593706, 0.609911, 0.570792, 1.552975, 0.653723, 1.001575, 0.446941, -0.189771, 0.677163, 0.104507, 0.525414, 1.317384, -1.440901, -0.112591, -0.371190, 0.378998, -0.071970, 0.541138, -1.696789, -0.348236, -0.652484, -0.377636, 0.573607, -0.506238, -2.064206, 2.449420, -0.716128, -0.364978, -1.081102, -0.315148, -0.468687, -1.144765, -1.122754, 0.024735, 0.145602, -1.032534, 0.076636, -1.741415, -1.211276, 0.532220, -0.448361, 0.164402, 1.486762, 1.178449, -1.921136, 1.082708, -1.011338, -0.891680, 0.753722, -0.916344, -1.823174, -2.347032, 0.365740, -0.819248, 0.234528, 0.511664, -0.056260, 0.513134, 0.908545, 0.235031, -0.682080, 1.233327, 0.582038, 0.406516, 1.459117, -1.081929, 0.651435, 1.182063, -0.598188, -0.006139, 0.316261, -0.918778, -1.112414, -0.646592, 0.178023, 1.338533, 0.711151, -0.474747, -0.112315, -0.798427, -1.162901, 0.457819, 1.741466, -0.180283, 0.315345, -1.688611, 2.574100, -1.171745, 0.392363, -0.026236, 0.895544, -1.343784, 0.512195, 0.451340, 1.112745, 0.798560, -1.048851, -1.389675, -1.462066, -2.488136, 0.417974, -1.436160, -0.004976, 0.455494, -0.005369, -2.055607, 2.736575, 1.002447, -0.428647, -0.650870, 0.645672, 1.605069, 0.802797, 2.566659, -0.721702, -3.715870, -0.161722, 0.063394, -1.053157, -1.069728, 0.014219, 0.183666, 0.808778, 0.657955, 0.689469, 0.964673, 0.146299, 1.118653, 0.950320, -2.009126, -0.252710, 1.252590, -0.026809, 0.534395, 0.607846, -2.124931, -0.336858, 0.246401, -1.309629, -1.849358, 0.327338, -0.187302, 0.702739, 0.259581, 0.246545, -1.555428, 0.243621, 1.375778, -0.851046, -0.013468, -0.184796, -1.976612, 1.069405, -0.794829, 0.660585, -1.459874, 1.347781, -1.181936, -2.609951, -1.077556, -0.468379, 1.438542, 1.189707, 0.745681, 1.139844, -0.336271, 1.190919, -1.034352, -0.366102, -2.191987, 0.236598, 0.486523, 1.556511, -0.219674, 1.470187, -0.854409, 0.267112, -0.377824, 0.520864, -0.056385, -0.798936, 2.074886, 0.032204, -1.217375, -2.063449, -1.285310, 2.097838, -0.940798, 1.610754, 0.304585, 0.457574, -0.190280, 1.142872, 0.824898, -1.373873, 1.054125, 2.023367, 1.372094, 1.033876, -3.208257, -1.014925, -1.688032, -1.700707, 1.261731, -0.727562, 1.071518, 0.593905, -0.314304, 0.716525, -0.441557, 0.115823, 0.189055, -0.435241, 0.104709, -0.392234, 0.542895, -1.655906, -0.570715, -2.399701, -1.575283, -2.348050, 1.250436, -0.182142, 1.184673, 0.310305, 1.541319, -2.274974, -0.026447, 2.122438, -0.471230, 1.222152, -0.289662, -1.055175, 1.879468, -0.428710, 0.031256, 0.339502, -0.228955, -2.475960, 1.110290, 2.435115, -0.272329, 2.677902, -0.005717, -1.316622, -0.951097, 1.510561, -0.963104, -1.506390, 0.210581, 0.879858, 1.406979, -1.301724, 1.836559, 0.419276, -2.014292, -0.982244, 0.225676, -0.119721, -0.658737, -1.212684, -0.284910, 1.108327, -0.807252, 0.419883, 0.924399, 0.419658, 1.649688, 0.579223, 0.999730, 3.067601, 1.383958, -0.454842, 0.267337, -1.908974, -0.351093, -1.831236, 1.108781, 0.711495, -0.840474, 0.951482, 0.466303, 0.694084, 0.770827, 0.003384, 0.262934, 0.242803, -0.585688, -0.695810, 0.317708, -1.713778, 0.132656, 1.782296, 2.769799, -0.937690, 0.758895, 0.455591, -0.273472, -0.929014, 0.483657, -0.849874, 0.942370, 2.475276, -0.772635, -0.333510, 0.665444, -0.226170, -1.101538, -1.030999, -0.929564, 0.722965, -0.021152, -0.030918, -0.150515, -2.408038, -0.285652, -0.744000, -2.462561, 0.389895, 0.315245, -0.601865}, + { 2.337321, -0.429642, 1.022885, 0.253261, -1.401816, -0.989984, 0.830947, 0.597094, -0.571317, 1.690383, 0.315999, 0.009381, -1.025589, 1.024117, 0.108649, -0.092137, 0.346022, -2.055616, 0.457025, 0.353586, -0.729094, 0.597740, 1.496967, -0.055598, -1.501531, -0.899054, -0.825994, -0.128391, 1.115745, 0.324774, 0.563254, -0.099426, -0.225081, 1.297083, -0.147710, -0.171278, 1.274669, -1.084272, 0.580317, 0.631473, -0.060033, -1.063733, 0.774318, 1.144561, -0.691132, -0.717214, -2.486493, 1.636143, 0.152745, 0.433073, -0.154226, -0.384905, -0.399353, 1.216924, 1.193847, 0.839150, -1.136556, -0.242710, 0.323263, -0.641451, 1.390098, -1.462946, 1.447529, -0.751584, 1.055429, -0.635006, -0.490759, -1.512379, -0.976371, -0.698039, -0.573942, -1.526660, 0.466892, 0.045109, -0.020500, 0.600991, -0.097354, 0.780374, 0.450068, -0.551631, 1.366202, 2.039244, -0.558707, 0.804681, 0.341823, -0.149477, -0.635017, 0.170413, -0.756009, 0.463339, -1.288935, 0.313820, -1.007160, 0.311133, -0.298115, 2.501487, -0.752617, 0.344394, 0.233995, 0.735958, -2.328878, -0.662946, -0.448013, 0.422403, 0.160125, -0.366557, -0.233235, -0.379479, 0.176164, 0.161456, -1.362242, -0.682515, 0.758324, -1.012404, 0.262362, -0.887453, 0.346873, 0.714343, 0.975859, 0.318502, 0.144590, -2.413029, 2.009182, 1.155543, 1.038931, 0.905366, -0.583997, 0.211819, 0.978822, -0.622996, -0.255847, 0.240733, -1.912822, 0.054255, 0.583236, 0.240213, 0.636038, -0.278756, -0.014958, -1.188565, -0.401841, -0.698944, -0.772357, -1.315150, 0.793620, 1.407082, -0.289240, -0.178556, 0.337260, 1.258786, 0.612380, 0.707650, -0.770249, 1.522771, -0.689677, 1.667840, 0.223367, 0.366234, -0.661446, -0.454998, -1.666422, -0.644142, 1.769614, 0.884764, -0.655267, -0.318731, 0.034353, 1.389980, -0.816701, 0.283389, -1.483604, 2.045331, -0.690412, -0.316124, 0.595790, -0.607315, -1.721786, -0.307827, -0.206785, 1.276525, 0.440553, -0.129481, 0.789993, 0.783763, 0.004633, 0.666672, 0.963664, -1.313744, -1.027659, 0.260147, 0.776592, 0.552861, 0.239684, -1.050638, -0.818517, 0.241157, -0.512810, 0.338181, -0.181470, 0.718335, -0.052284, 1.379860, -0.213368, -0.533347, 0.200093, 0.115612, 0.475863, -1.172010, -1.116714, 0.261349, -2.293406, 0.150527, 1.015968, 0.521186, -0.314344, -0.306312, -0.306492, -0.830002, -0.595450, 1.167307, -1.905297, 1.567927, -0.236749, 1.434784, 0.568149, -1.684704, 0.791314, 1.505137, 0.674921, 0.946931, 0.467427, -0.018506, -0.966801, -0.395042, 0.927785, 0.304687, 1.248909, 1.594708, -0.046561, 0.629306, -1.351146, -0.447544, 0.703029, 0.223122, 0.069064, 1.788974, 0.572610, 2.200482, 0.750343, -0.561570, -0.023846, -0.112072, 0.568679, -0.412031, -1.032621, -1.124866, 0.128356, -1.569295, -0.683512, -0.191803, -0.582371, 0.231644, -0.663476, -1.257372, 0.197796, -0.124597, -0.781056, -0.682931, 0.107269, -0.783870, 1.185933, -0.611333, -0.789881, -0.733025, -1.447164, -1.196054, 1.248218, -0.440393, 0.865784, 0.803660, -0.063488, 1.356028, -0.682631, -1.229464, 0.830787, 0.727385, -0.316417, 0.663418, 0.728818, -2.299477, 0.136863, -0.363375, 1.034682, -0.620474, 1.326379, 0.270204, -2.776911, 0.486999, -2.130793, -0.188870, -1.056379, -0.318623, -0.236779, 0.523245, -3.162778, -0.858741, -0.214063, -0.977505, -0.522633, 2.856750, -0.276034, -1.303678, 1.594225, 0.394365, 0.250256, 1.200605, 1.082268, -0.790061, 1.730090, 0.901963, 0.839747, -0.950800, -0.748706, -1.134237, -2.807783, -0.529764, 0.032603, 1.539907, 0.172095, -1.310192, 1.184743, 0.882632, -0.492173, 0.639595, -0.326997, 0.948140, 0.477311, 0.913643, 0.297693, 0.475666, -0.695050, -0.024084, -1.119196, -0.601025, 1.121040, -1.262033, 0.446357, 2.282216, 0.081291, 0.119609, -0.373797, -1.017148, 0.800049, -0.031418, -1.502287, 1.101358, -0.141934, 1.518922, -1.424444, 0.703141, -1.639117, 0.136443, 1.580298, -0.483121, 0.615801, 0.286080, -0.619201, -0.097993, -0.212469, 0.646424, 2.298681, 0.616037, -0.837003, 1.006855, -0.789321, 0.995552, -0.932525, 2.413934, -0.696568, 0.326732, -1.234243, -1.503443, 0.495643, -1.012682, -0.739202, -1.221918, -0.588920, 1.370122, -0.899400, 0.266930, -0.675903, -0.326139, 0.494237, 0.874463, 0.755183, -0.454865, -0.226878, -1.308440, -0.625731, 0.554561, 1.210104, 1.836121, 1.602161, -0.384816, 0.416116, 0.538585, 1.821518, -0.674960, -0.223768, 0.616469, -1.719513, -0.849342, 0.335311, -0.612269, -0.226553, 1.073756, 0.898078, 0.119732, -1.082833, 0.926120, 1.179485, -1.296953, 0.570058, 1.113874, -2.337205, -0.109157, -1.309326, 1.949279, 0.758534, 0.853436, -1.676574, 1.030386, -0.580712, -0.111418, 0.646851, -1.247590, 0.668359, -0.657181, -0.278512, -0.068827, 0.415229, 0.072938, 0.974019, 1.259461, -0.860292, 1.560038, -2.188347, 0.024952, 1.124708, -0.824320, -0.206617, -1.104815, 1.440700, -0.391468, 0.002453, -1.089736, 0.175172, 0.321380, -0.456327, -1.445622, 1.289299, -0.726865, 0.799226, 0.610885, -0.713832, 0.264918, 0.817193, 0.487894, 1.106671, 1.101234, -0.861417, -0.929515, 0.878256, -0.320935, 2.118629, -0.726715, -0.654006, 0.945171, -1.432403, 0.862277, 1.391376, 1.644486, 0.287776, 0.719214, -0.849583, 2.174733, -0.551402, 0.192006, 0.498672, -1.474928, 1.122795, 1.177434, -0.709894, 0.923292, 0.436570, -1.410601, -0.177633, -0.970618, -1.574714, 0.201337, -1.850994, -0.783539, -1.157923, -0.093120, 0.938570, 0.694793, -0.079145, 0.510301, -0.690793, 1.575756, 1.566558, 0.914585, -0.894977, 0.890755, 2.222937, 1.047762, 0.509610, 0.542679, 2.371725, 0.495608, 0.300535, 1.889379, -0.121741, -0.602924, 0.213294, -0.724996, -0.103625, 0.630649, -0.162416, -0.333412, -0.838966, -0.743999, -1.084867, -0.623715, -2.491511, 0.321634, 0.529571, -0.512949, 0.256535, -1.022361, -0.164604, 0.742861, 0.074424, -1.085390, 1.461042, 1.064877, -0.246287, 0.365011, -0.307663, 1.471597, -0.823815, 0.725668, 1.387396, 0.600747, 0.340903, -2.032868, 1.069347, 0.709754, -0.785682, 0.603405, -0.604338, 0.789145, -2.402350, -0.523082, 0.919431, -0.502538, 0.499267, -0.549267, -0.911869, -0.817622, 0.317639, -1.664974, -0.887097, 0.677589, -1.734020, 2.158098, -0.430523, 0.288381, 1.376042, 0.763767, 0.560009, -1.957066, -1.401013, -0.662786, 0.276718, -0.804756, 1.779442, 0.599400, 0.553277, 1.596515, 0.006540, -1.567768, 1.041983, -1.629491, 0.321437, -1.409779, 1.185767, 0.912439, 2.374876, 0.138722, 0.456927, -0.172241, 1.293443, 0.629052, 1.073823, 0.056340, -0.369837, -1.225499, 0.571907, 0.243497, -0.392084, 0.569672, -1.798851, 0.890656, -0.397324, -0.460420, -1.320661, -0.500095, -1.078627, 0.613826, -1.844196, 1.436031, 0.191424, 0.530001, 1.573679, 0.866405, 1.942565, 0.030816, -0.011407, 0.761531, -1.340256, -1.159396, -0.889301, -1.300884, 0.118318, -1.315428, 1.032377, -1.105590, 1.810786, -0.989522, 1.804072, -1.022186, -0.347826, -0.514250, 1.221926, 0.133439, -2.079883, -0.717786, 1.511328, -0.379740, -0.380572, -0.505603, 0.431337, 1.252299, 0.270988, -0.046979, -0.355069, 2.473226, 0.846595, 0.718346, -1.879829, 0.080713, -0.755893, 1.760165, -0.520634, 1.656699, -0.445971, 1.440244, -1.380322, -0.746312, 0.307394, 1.806878, -0.388290, 1.842725, 0.008189, 0.140959, 1.498083, 0.680799, -0.081033, 1.064467, 0.534554, 0.056568, 0.610494, -0.189906, 0.919225, 0.124473, 0.397768, 0.222131, -0.530405, -0.534905, 1.285193, 0.216817, -1.484064, 0.997613, -0.371304, -0.564347, -0.583328, 0.295586, 0.932263, -0.488946, -1.282254, 0.993959, -0.336857, -0.919027, 0.819810, 0.035947, 0.063231, 0.489200, 0.197019, -0.493031, -0.235046, -0.757889, 0.501891, -0.415803, -0.054793, 0.343577, 0.427378, -0.731412, 1.099909, 0.130547, -0.220202, 0.422688, 0.475404, 0.931095, 0.850869, 0.485613, -0.494174, 0.161418, -1.744393, -1.432208, -0.879628, 0.668269, 0.061123, 1.427379, 0.225026, -1.486358, 1.530060, -0.386450, -1.057191, 0.840078, -0.058422, 0.877481, 2.424463, 1.008270, 0.466672, 1.358038, 0.432555, 0.598824, 1.386900, 0.131249, -0.453416, -1.296126, 0.307389, -1.494215, 0.007374, 0.140258, -0.811115, 1.166673, 0.195288, -0.073003, 0.030724, -2.310006, 1.082711, 0.319241, 0.813020, 1.163267, 1.365047, -0.679640, -0.408458, 0.709043, 0.934761, -0.762984, -0.353049, -2.097398, -0.380858, 0.711225, 1.093737, 0.297980, 0.114900, 1.331322, 0.151485, 0.277899, 1.581151, -0.540481, 0.404399, 0.031727, 0.928761, 1.215576, -0.204593, -0.687389, -1.608054, 1.310789, -0.576096, -0.547321, -1.716152, -1.225451, 0.687603, 1.491284, -0.379756, -0.272250, 0.588670, -0.134009, -1.644295, -1.506580, 2.100574, -1.813766, 0.581243, -2.028589, 1.740500, 0.124687, -1.231534, -0.397662, 0.192855, -0.203508, 0.431811, -0.073801, 0.231442, -0.260371, -0.033429, -2.712549, -0.603544, -1.223501, -0.690803, -0.508083, -0.510098, -0.395079, 2.147952, 0.021111, -0.210939, 1.638807, 0.575649, 1.573715, -1.738951, 0.091762, 0.750087, -0.218003, 0.454105, 1.539915, -0.818788, -1.760430, -0.068426, 0.803904, 0.757246, 0.538695, 0.479820, -0.099385, 0.845498, 1.501157, -0.186469, -0.368612, 0.784137, 1.210680, 0.398826, -1.131553, -1.035259, 0.084524, -0.049281, -2.350477, -0.040466, 0.273124, -0.553475, -0.061309, -0.386347, -0.780559, -1.228210, -1.391829, 0.636955, -1.065650, -0.810598, -0.286551, 0.724075, -0.402721, -0.813249, -0.908731, 0.702894, -0.360384, 0.360834, 1.265617, 0.204800, 0.255212, 0.612234, 0.570753, -1.412055, 0.516077, -0.841101, -0.197013, 0.016379, -0.624348, -0.615172, 0.102823, -1.168953, 0.431213, 0.548992, -1.734129, 0.126447, -1.634678, 0.024652, -1.573408, -0.187511, -2.404755, -0.763747, -0.649742, -0.045887, -0.565708, -0.058954, 0.297171, 0.380098, -1.183756, -0.606955, -0.008728, 0.186181, -0.697559, -0.517029, -0.464703, -0.576450, 0.252155, 0.470797, 0.636928, 0.495456, 1.797270, 0.344770, -0.201348, 0.023758, 0.544238, -0.612164, -1.062438, 0.393221, -0.556455, -0.426737, -2.385365, -1.783350, -0.049841, 0.998854, -0.680402, 0.654772, 0.066051, -0.358309, 1.452866, 0.760396, -0.553823, 0.800856, 0.268226, -2.298603, -0.600403, 1.625617, -0.729883, -0.571470, 0.350084, 1.074134, 0.441901, -1.052797, -1.486979, -0.248057, 0.402044, 1.450524, 1.145233, 1.872856, -0.098155, 0.812803, -0.195954, 1.111301, 0.225480, -0.595420, -0.153507, -0.466690, -0.147112, -1.409886, 0.964076, -0.008608, -0.333793, 1.620728, -1.297296, -1.415798, -0.120328, 0.370372, -0.344065, -0.804285, -0.545166, 0.278901, 0.428088, 0.804216, -1.340802, 1.529643, 0.511443, 2.096251, -0.730065, -1.099222, -0.383207, -0.326167, -0.339220, -0.634407, 1.162708, -1.357094, -1.107000, 0.917948, -2.217138, 1.710681, 1.308535, -0.578724, -0.704699, -0.426887, 0.474662, 0.192386, -0.267459, 0.420074, 0.891192, -0.156662, 1.676879, 1.155494, -1.543697, -0.514005, -0.290645, -2.482641, -0.977817, 0.211063, 1.080310, -1.525141, -0.975746, -0.167437, 0.446044, 0.715109, -0.420494, -0.125401, -1.964485, -0.579513, 0.094948, -0.991441, -1.844664, 0.003524, -2.398522, 0.833129, 0.778418, 0.551808, 0.231208, 0.429461, -0.967061, 0.608647, -0.550590, -0.075546, -1.479476, -0.790243, -0.482673, -0.130046, 0.394731, 1.271709, 0.042652, -1.001688, -0.056332, -0.922544, 2.118864, 1.257020, 0.181695, -1.032997, 0.126754, 0.826033, 0.302006, 0.909620, 0.080874, 1.021271, 1.369756, -0.445704, 0.206247, 0.954408, 2.470907, 1.128335, 1.383718, -2.566099, -1.310874, 1.026216, -0.314611, 1.173787, -0.466753, -0.435593, 0.066783, 0.598932, 1.032431, 0.275150, 0.941341, -0.434451, -0.863127, -0.295369, 1.178574, -1.189132, -0.175474, 0.916099, 0.141379, -0.231113, -0.890694, 0.101240, 1.208490, 1.350077, 0.660477, 0.658927, -2.028459, 1.418370, -1.550030, -0.295267, 0.889128, 1.355873, -0.068606, -0.538045, 0.279554, -1.727978, -0.743827, -0.897655, -1.328401, -0.126542, -1.525852, 1.227469, 0.150458, 1.415622, -0.012257, 0.290056, 0.026198, -0.292829, -1.429574, 0.344230, 0.341810, -2.266376, -2.576846, 0.902459, -0.436512, 0.933507, 1.917352, 0.945201, 0.250917, 0.456884, 0.183620, -1.049254, 0.693598, 1.817713, -1.036500, 2.400206, 0.259345, 0.442620, 0.175754, 1.658759, 0.138920, -1.376477, -0.599400, 1.272190, 1.758249, -0.678446, -1.634041, 0.084095, 1.029800, 0.143942, -0.017404, 0.661647, 1.517825, 0.670393, 0.111843, 0.886456, -0.050147, 1.027175, 0.347071, -0.585977, -0.652695, 1.971019, -0.453835, -0.069338, -1.066374, 0.538143, 2.486785, -0.221029, -2.855516, 1.083413, -0.094926, 0.992624, -1.447707, -0.789263, 0.970770, 0.833354, -0.776701, 0.032213, -0.396014, -0.529892, 1.282085, -1.079443, 1.724205, 0.174257, 0.287573, -1.304453, -1.984681, -0.418989, 0.011623, -0.344416, -0.789973, -0.087867, 0.657060, -0.061899, 0.215290, -0.265279, 0.682898, -0.111481, 1.204260, 0.289406, 1.146346, -0.528698, -0.720130, 1.312930, 0.102885, -0.951324, 0.951512, -2.146751, -0.203992, 0.541870, -0.399778, 0.074750, 0.985756, 0.179078, -0.301136, 0.801063, 0.146744, -0.308101, -0.483415, -1.380962, 0.966106, -1.267782, 1.422076, -0.603380, 0.019685, 0.157202, 0.207634, 0.848262, -1.409720, 1.416172, -0.636828, -1.261609, -0.447447, -0.598303, 0.481499, 0.464817, 0.449004, -0.691535, -1.536119, -1.522704, 0.100555, 0.113137, 0.200304, -0.889312, -0.628678, 0.692131, 1.106729, -1.553656, 0.217747, 0.468230, -0.932723, 1.212490, -0.119017, -0.620863, -1.593825, -0.546864, 0.299546, -0.166665, 0.139376, -2.420699, -0.298823, 0.282376, 0.487424, 0.695375, 0.245474, 1.214752, 1.469679, 0.194764, -0.256458, 1.392414, -0.710740, -0.135991, -0.123997, 0.169090, -0.211564, 1.987177, 1.186389, 0.669096, 0.278585, 0.165244, -0.740898, 1.019153, 0.328208, 0.622638, -0.296367, -0.055395, 0.099994, -0.066102, 0.391168, -0.448941, -0.888406, -0.136045, -0.056270, -0.556481, 1.328168, 0.609558, 0.719651, -0.409704, 0.203235, -0.305441, -0.860099, -0.666724, 0.025255, 0.813551, -2.501951, -1.565365, -0.502628, 0.116062, -0.358196, -1.047267, 0.592956, -0.390446, -0.537152, 2.115666, 1.850178, -0.683411, 0.949092, 0.945504, -0.581107, 0.162778, -1.026385, 0.472740, -0.542002, -1.189987, -0.394594, 1.626510, -0.137411, 1.201380, 1.281823, 0.220592, -0.841141, -0.401837, -0.856686, -1.291859, -0.868320, 1.924099, 0.845186, 1.623691, -0.811372, 0.481019, -0.062247, 0.907551, -0.127700, -1.415445, -1.055489, -0.146444, -0.700324, -1.383776, 0.764403, -1.757550, 0.539115, -0.981633, -1.354591, 0.078507, -2.038376, -0.260321, -0.085519, 0.320232, 0.327691, 0.896029, 0.975088, 1.631637, -0.038244, 0.022490, 0.333272, 1.392911, -1.276611, 1.475053, -0.769214, -0.377429, -2.101652, 0.563609, 1.491664, -0.812217, 0.622315, -0.438700, 0.337666, -0.159724, 0.113132, 0.526749, -1.285028, 1.345688, -0.531400, -0.627879, -0.806850, 0.183946, 0.808020, 1.255426, 0.063634, -0.073541, 0.061484, -1.427283, -0.414262, -0.005928, -2.114137, 1.039634, -1.098348, -1.193100, -0.115714, 0.513226, -1.218873, -1.411105, -1.893552, 0.846973, 0.557617, 1.001456, 0.927174, -1.292722, 0.604694, 0.988577, 0.046540, -0.047261, 0.042047, -0.654911, 1.306546, -0.304858, -0.711578, -1.119506, 0.661724, 0.545685, -0.780966, -0.266064, -1.324155, 0.397588, 1.501832, 0.166289, 0.119722, -1.188676, -0.897802, 0.529741, -0.171552, -0.334154, 0.454006, 1.041604, -0.563954, -0.839368, -0.387785, 0.898141, -1.988665, -1.541027, 1.379989, -0.326937, 1.773371, -0.238887, 1.326586, 0.889331, 0.005116, -0.818425, -0.580137, -0.199222, -0.382124, 0.865301, 1.781277, 1.899323, 0.180215, 0.546872, -1.517506, -1.020935, -1.223293, -0.196383, 0.453334, 0.118396, 1.609957, 0.730833, -1.171495, -0.026998, -0.994484, 0.194044, 0.973798, 0.600814, 0.502009, -1.316637, -0.579674, -0.567247, -0.609395, 0.282480, 0.917098, -0.976205, 2.022152, -0.041731, -2.273989, 0.598804, 0.360459, 0.835917, 0.602479, -0.551306, -0.386744, 0.812365, -0.242564, -0.180443, 0.033147, 0.730494, -1.693939, -0.888748, 1.651093, 0.796182, 0.830769, 1.061931, 0.029416, 2.044190, 0.250542, -0.129687, -1.941208, -0.452015, 1.206932, 0.577087, -0.071705, 1.070593, -1.181535, 0.163789, -0.109606, 0.664772, 0.180033, -0.041965, -0.187775, 2.821750, -0.482416, 1.165064, 0.600523, -1.064752, -1.348082, 0.342328, -0.812475, 0.080418, -0.148392, 0.135378, 0.352195, -0.177678, -1.196766, 0.559897, -0.101411, 0.987495, 0.780272, 0.100704, -1.698699, 0.558652, -2.011813, 0.592350, -1.214767, 2.044935, 0.305423, 0.835033, 0.254961, -0.474358, 1.002370, 0.032339, 0.638184, 0.114983, -0.510858, -0.296111, 0.571823, 0.526870, 0.196629, -0.624577, -0.393288, -1.357331, -0.588913, 0.183936, 1.379487, 1.951461, -1.659723, -0.254270, -0.895240, -0.641061, -0.313766, 0.565115, 1.292762, -0.662481, -1.541751, -0.034034, -1.265074, 1.021332, -0.298506, -0.283800, 0.405626, 0.864383, -0.109579, 1.103939, 0.995116, -0.203334, 1.358686, 0.491537, 1.143836, 0.605545, -0.251426, -0.712209, 0.413200, 0.637253, -0.508847, -0.655313, -1.499713, -0.411762, 1.338043, 0.138139, 0.306510, 0.594452, -0.112470, 0.952769, -0.645435, -1.620871, -0.007091, 1.557873, -1.017056, -1.152281, -0.685774, 2.309696, -0.044065, 0.333794, -0.127069, -0.721280, -0.137304, -0.357416, -0.480051, -0.540229, 1.053912, 0.280259, 0.115400, 0.036530, -2.211189, -0.424118, 1.006836, 0.007730, -0.329704, 0.203536, 1.272295, 1.315288, 0.422243, -0.702801, 0.149187, -0.261542, 0.175932, -0.068840, -0.737637, 1.139817, -0.053294, -0.089320, 0.273616, 1.076978, 0.229117, -1.258126, 1.130884, 0.637562, 0.607254, 0.399422, -1.722241, -0.173765, 2.150429, 1.203504, 1.521091, 1.389685, -1.440625, -0.337699, -0.938218, 0.087945, -1.447592, -0.194270, 1.811361, 1.132370, -0.161499, -1.163924, 1.735122, -0.810205, 0.901750, -1.209394, -1.813556, 1.056213, -0.323949, 0.587373, -0.937907, -1.586931, 0.602325, 0.401392, -0.912441, -0.123792, -0.432919, 0.336108, 2.990385, 0.272254, 0.234251, -0.567431, -0.261765, -1.385036, 0.844094, 1.873353, -1.308163, -0.408481, 0.357132, -0.244698, -0.355869, -0.976017, 0.542101, 1.593482, 0.040864, -0.161650, 0.398971, 0.818368, 0.269653, -0.755855, -1.535921, -0.118250, 1.019890, -0.301912, -0.380386, 0.873417, 1.084054, -0.390738, -1.258494, 0.002491, 1.207142, 0.480992, 0.680139, -0.597136, -1.036691, 0.656762, 0.350350, -0.276681, 1.346050, -1.729424, -1.245797, 0.888917, 2.327298, 0.815871, -1.208760, -0.153598, 0.624110, -1.539308, -0.843046, 0.510037, -1.772225, -0.902356, 1.037893, 2.179618, -1.762733, -0.645342, -0.192162, 2.306712, 1.654580, -0.077402, 2.270077, -0.572328, -0.968494, 0.058736, -0.116642, -1.575883, 0.379552, -1.568017, 1.179160, 0.262279, -0.783473, 0.176868, -0.548986, -0.958939, -0.196162, 1.142816, -0.705500, 0.974784, -0.956845, -0.716899, -0.835447, 1.214828, -0.029038, -1.163843, -1.907094, 0.603734, -0.277778, -0.145618, -1.909977, 0.369054, 0.189050, 1.772111, 1.177750, -0.040812, -1.726328, -1.158213, -1.068445, -1.324851, 0.809749, 0.039073, -1.181564, 0.174043, 0.159514, -0.283734, -0.978429, 0.743818, -1.130116, 1.020955, -0.048145, -0.759333, 0.082637, -1.232824, 0.021998, -0.488922, -1.165545, 1.334511, 0.040569, -1.336519, 0.441303, -2.775804, 2.753315, 0.568175, 0.385026, -0.235911, -0.829583, -0.618092, 0.396525, 0.677902, -1.337664, -0.121260, -0.901623, -0.240343, 0.448279, -0.923447, 0.794892, 0.538327, 0.345790, -0.062513, 0.799774, -1.634726, -0.743072, -0.430742, 0.441155, -0.307373, 0.377395, -1.265424, -1.804054, 0.307356, 2.090777, -0.579687, 0.497116, 0.475884, 0.301702, -0.131968, 0.223842, 0.411614, -0.909693, 1.274521, 0.101692, -0.303937, 0.048006, 2.029197, -0.297846, 0.141886, 1.405218, 0.063074, 1.205843, 0.305091, 1.142042, 1.841808, -0.545226, 0.054520, 1.035448, -0.499729, -1.500200, 0.024222, 0.814562, 2.019871, -1.419313, 0.588187, 0.053406, 0.431949, -1.519240, -0.436522, 0.001030, -0.977111, 0.614273, 1.778556, 1.212511, 0.549569, 2.292150, 2.548867, 1.968001, -0.552600, 0.768683, 0.767008, -0.337174, -1.285877, 0.018756, -1.162546, -1.150093, 1.344816, 0.843367, 0.972694, -0.204638, -0.186812, -1.099346, 0.228246, 0.208569, 1.117484, -1.225010, -0.320824, -1.120242, -0.324640, 0.186273, 0.411510, -2.439716, -1.811920, -0.226029, -0.745188, 0.346466, 0.071804, 0.202311, 0.193766, -1.322464, 1.069883, 0.996225, 2.069744, 0.569761, 1.665580, 0.695051, -0.199248, 0.365181, -0.154958, 0.826970, -0.594454, -2.165781, -1.286016, 0.682984, -1.480096, -0.945478, -0.097643, 0.279409, 1.349391, 0.664588, 1.322224, -0.308967, -0.425171, 1.142148, -0.269634, 0.033033, -1.502666, -0.144860, 0.342433, 0.279948, -0.490003, 1.182682, 0.518806, 1.272059, -0.336806, -1.763621, 0.660457, -1.254211, 0.927523, -0.908643, 1.941743, -0.650633, 0.570980, -0.217424, 2.470276, -1.388080, -1.062049, -0.482329, -0.017493, 0.732136, 1.110228, -0.208070, 0.067397, 0.147108, 0.805427, -0.221335, 0.531873, -0.376170, -0.334584, -0.508250, 0.838202, 0.513136, 0.335641, -0.242168, 0.133115, -0.038480, 0.968687, 0.409966, -1.527608, -0.821672, 0.741504, -0.331534, -0.857009, -0.666070, 0.808734, -0.127306, -1.606196, 1.635141, -0.433875, 0.191642, 0.551458, 0.644394, -1.329646, -1.252648, 0.505464, 0.491045, -1.287335, 0.205115, -0.841172, 0.944374, 1.567995, 0.773059, -0.388563, -0.505790, 1.465967, 1.178371, -0.188458, 0.079023, 2.008720, 1.558475, -0.577614, 1.135190, -0.274885, -1.221427, 0.327277, -1.109987, 0.848868, -0.253314, 0.385213, 0.442159, 0.662485, -0.280208, -0.049472, 0.611953, 0.595696, -0.063058, 0.324326, -0.027238, -0.449977, -0.124632, -0.975559, 0.932067, 1.332589, -0.063669, 0.438703, -0.014451, 0.074019, -0.652450, -1.748431, -1.750819, -0.392305, 2.392938, -1.506794, -0.909862, -1.147870, -0.171357, 0.573011, -1.228293, -0.431223, 0.202150, 0.777781, 1.021711, -0.760631, -0.127896, -3.050420, 0.889932, 0.735254, 0.994213, -0.552587, 0.040101, -1.708068, -0.821301, 0.995809, 0.020052, -0.993222, 0.698404, 1.328444, 2.409936, 0.469440, 0.060884, -2.240183, 0.001344, 1.184458, -1.056726, 0.400141, -1.012722, 0.064867, 0.700708, 1.336551, 0.772083, 0.463771, 1.344587, -0.543434, 0.041066, 0.873260, -0.381723, 1.235718, 1.369374, -0.219139, 2.391607, 0.615882, 1.125247, 0.158113, -0.562384, -0.389481, 0.566891, 0.196858, -0.914084, 1.175169, -0.799879, 0.375137, 1.100522, 0.251029, -1.182291, -0.603581, 1.653578, -0.221729, 0.564430, 2.940118, -2.783894, -0.236153, 0.672090, -0.826953, 0.020477, 0.949128, 2.785620, -0.559512, -1.104733, -0.227439, 1.580999, -1.163081, -1.277595, 0.539420, -0.560134, 1.546984, -0.920192, -0.695273, 0.569854, 0.015180, -0.284372, -2.317827, 0.460737, 1.144355, 0.609845, 1.629190, 1.424549, -0.816671, -0.173394, -0.811929, -0.331061, 1.104648, 0.066671, -1.042079, -0.239444, -0.277354, 0.085307, 1.549487, -1.413354, 1.185043, -0.153456, -0.515145, -1.619401, -0.477406, -2.445794, -0.824893, -0.773923, 1.103589, 0.883857, 0.083177, 1.538264, 2.019186, -0.274504, -1.795399, -0.545986, -1.291566, -0.833493, 0.993431, -0.396669, -0.463256, 0.096744, 0.703135, 3.552240, 0.216525, -1.411490, 0.938509, -2.191708, -0.716620, -0.823003, 0.647138, -0.319533, -0.253833, -0.780221, -0.003684, -0.724654, 1.690283, 0.458092, -0.313810, -1.345472, -0.199287, -0.232094, -1.130306, 0.838793, -0.283346, -0.335152, 0.571746, 1.497499, -1.096485, 0.829887, 0.234547, 0.158165, -1.081282, 1.389917, 1.098423, 0.514658, -0.199515, 0.251525, 0.259846, -0.053847, -0.911876, -0.299442, -0.594997, 0.807815, -0.787464, 0.935289, -1.103569, 1.838220, -0.132290, -0.470690, 1.189230, 0.494170, 0.098396, 0.364323, -0.301090, -0.655580, -0.155590, 0.009020, -1.631864, -1.837839, 1.805411, 0.092938, 0.039264, -0.646894, -1.755163, 1.969680, -0.686045, 1.239874, -2.358355, 1.654864, -0.575178, 1.462620, -1.478345, 1.794142, 0.809319, -2.622436, -0.081788, -0.231781, -0.963525, -0.142167, 1.081190, -0.573969, 2.047837, 0.907229, -0.980996, 0.014572, 0.582906, 0.109952, 0.490715, -2.735213, 0.644402, 0.994016, -0.069736, -0.231141, 0.428238, 0.374348, -0.210908, -0.947164, 0.852818, 0.100060, -0.928290, -0.504841, -0.096397, -0.569812, -0.704950, 0.484203, -0.638470, -0.706065, 0.286929, -0.583222, 1.437547, -0.616605, -0.714727, -0.210975, 1.154438, 1.380778, 0.110943, -0.525935, -0.629929, -0.063200, -0.811830, -0.587717, -0.616391, 1.239408, 2.513326, 0.234783, -0.522457, 1.474645, 0.765152, -0.014460, -0.121283, -2.569939, -0.951613, 0.809743, -0.992645, -0.956978, 0.891274, -1.603748, -0.371628, 0.512550, -0.280094, 0.112762, -0.905441, -0.256569, -0.493107, 0.320867, 0.403879, -0.846265, -1.781576, 0.034394, 1.176455, -0.689019, 0.815652, 0.884577, -0.408083, -0.770426, -0.912780, -0.374160, -0.013787, -0.210866, -0.511547, 0.559603, -1.240296, -2.085399, -0.476032, 0.577643, 0.116426, 0.308831, -0.830472, 0.474210, -1.292696, -1.172786, -0.991903, 0.349414, 0.175821, -1.651981, -1.822134, 1.006879, -0.587992, -0.172485, 1.018614, 0.825054, 1.233370, 0.080930, -0.554872, 0.679574, 0.069067, -0.086249, 0.195186, -0.945392, 0.559540, -0.130113, -0.698305, 1.119101, -0.515235, 0.100845, -0.775317, 2.087920, 1.176912, 0.638982, -0.148675, 0.719341, -0.827719, -0.935615, -0.235936, 0.894834, -0.056800, 0.758836, 1.030296, -1.049039, 0.667220, -0.001771, 0.477004, -0.673390, 0.887366, -0.377699, -2.900163, -0.097763, -0.753570, -0.361869, -0.355244, 0.391835, 1.440275, 1.051138, -0.505081, -0.292809, -0.736172, 0.976628, 0.692954, 0.688101, 0.102961, 0.715891, 1.825440, 0.556489, -0.337208, 0.299549, 0.337673, -0.368853, 0.162805, 0.715536, 0.930330, 0.016777, 1.372411, 0.291119, 0.125316, 0.665695, -1.142696, -0.927675, 0.363100, 0.487848, -0.188682, -0.520067, -0.166539, -0.183153, -0.696270, -0.471364, -1.737812, 2.005301, -1.079466, -0.056970, 1.390907, -0.304624, -0.300941, -1.852622, 1.073252, 0.150073, -0.086175, 0.169735, 1.811229, 3.174985, -1.134058, -1.302898, -0.142359, -0.243731, -1.438662, -1.243708, -0.084375, 0.786929, 0.617991, 0.641978, 0.943103, 0.290617, -0.007560, 1.692582, -0.147972, 0.158467, 1.181921, 0.548755, 0.967098, 0.170285, 0.932408, -0.976638, 1.923063, 1.374870, 1.007909, -1.184207, 1.156023, -0.138481, -0.352115, -0.165230, 0.340586, -0.324497, 0.984567, -0.370267, 1.415006, 1.629476, 0.151080, -0.682174, -2.390866, 0.226890, -0.933820, -0.931362, -0.417865, 1.094627, -0.681261, -1.201641, 1.637456, 0.182476, -0.882310, 1.061036, -2.130762, -1.109142, -0.007399, -2.177727, 1.195377, -1.763817, 1.173323, 0.806390, 0.976779, 2.319091, 0.692855, 0.561399, -0.010128, -0.485452, -1.175547, -0.270605, 0.361076, 0.219290, 0.684318, -0.779013, -0.321915, 1.108012, 0.338861, 1.469638, -0.003356, 1.052430, 0.610195, -0.494343, -1.811070, -1.035314, 0.339320, -0.537407, 0.698484, 0.055934, 1.151257, -0.598374, 2.721496, 1.228932, 0.827922, 0.285264, 1.934264, -0.012394, -1.042898, -0.202276, 0.688050, 0.088320, 0.249200, -1.333165, 1.536338, 0.748816, 0.747077, -0.945105, 0.495136, 0.931299, -0.104341, 0.179619, 0.282522, 0.763397, -1.412177, 0.288321, -0.114031, 0.100627, 0.010345, 0.003131, 0.076089, -0.336673, -0.256276, 0.993024, 0.008089, 1.296678, 0.406845, 1.261078, -0.116565, -0.438248, -0.050055, -0.142456, 0.599522, -0.482074, -0.772793, 0.174188, 0.765013, 1.549270, -0.326966, -0.363881, -0.231502, 1.793247, -0.645320, 0.439428, 0.474547, -1.694857, -3.386497, 0.952501, 0.948442, -0.676680, 0.606416, -1.977418, -0.094843, 0.307231, -0.607186, -0.470207, -0.331358, 0.325289, -1.131281, -0.231434, -0.433763, 1.300479, -0.280185, 1.252363, 0.815856, 0.464310, 0.728566, 1.485649, 0.546781, -1.396667, 0.338572, -1.655903, 0.420377, 0.281311, -1.111173, -0.140033, -1.507939, 0.644368, 1.080768, 0.397577, 0.817869, 1.709339, -0.004625, 0.112178, -0.662504, -0.947122, -1.539480, -1.130573, -1.252391, 0.297672, -0.293719, 0.506604, 0.150008, -1.309252, 1.521718, -0.206846, 0.746323, -0.447425, 0.078452, -0.299725, 0.618614, -0.814651, -0.460175, 0.178950, -0.505777, 0.569298, -0.752216, 1.454532, 0.410511, -0.213430, -0.560482, -0.815947, 0.527645, -0.192652, -0.044070, -0.134091, 0.179687, -1.632031, -0.681558, 1.229445, 0.266362, -0.722924, -1.759851, 1.549819, 0.757948, 1.168719, -0.389137, 0.418914, 0.391587, -0.613770, -1.356007, 0.398750, 0.174487, 1.369844, -0.567837, -0.026973, -0.025800, -1.823879, -1.341706, -0.918892, 0.605371, 0.151341, 0.562000, -1.813912, 0.518735, -1.256922, -0.984604, -2.266686, 1.601562, 0.759092, -1.347905, 1.957820, -0.870879, 0.378215, 0.437680, -0.628609, -0.629912, 0.093632, -1.754365, -1.231373, 0.109443, 1.551882, 0.348643, 1.728756, 0.783940, -1.189103, -1.579136, 0.197554, 1.005385, 0.260297, 0.961543, 0.467555, -0.153463, -1.545000, 0.299656, 0.909066, 0.153681, -0.377016, 1.370693, -0.618686, -0.407515, 1.216128, -0.118453, -0.301039, 0.401727, -1.525915, 0.275522, -0.603595, -0.413420, -2.582762, 0.303243, -0.681313, 1.070565, 0.395349, -0.583501, -1.229236, 2.011695, -0.724282, -0.520835, -0.664947, 0.966854, 1.295172, -0.173344, -0.820058, 0.717728, 0.417631, 0.620602, 1.655718, 0.533786, -0.465954, 1.254768, 1.368894, -0.219607, -1.499260, 0.332906, -0.417570, 0.437638, -2.166195, -0.081047, -1.226050, -1.467537, -0.468164, -1.339766, 0.251649, 1.286700, -0.124942, 0.576080, -0.390990, -0.919239, -1.405808, -0.620938, 1.011732, 1.073943, -1.022089, 1.228517, -1.313493, 0.329991, 0.325891, 0.441823, 0.533469, 0.168244, 0.488010, 0.073313, 1.458532, 1.205154, 1.824760, -0.687414, -0.500318, 1.507036, -0.042392, 1.512058, -1.547461, -0.343478, 0.259748, -0.515998, 0.523989, -1.911554, -0.348326, 1.156765, 0.440582, 1.001312, -0.800922, -0.150718, -0.432235, -1.305117, 0.339569, -1.583480, 1.336014, -0.858737, 1.431749, 1.144301, 2.021197, 0.587902, 0.634428, -0.135424, 0.611055, -0.570803, 1.200229, -1.145424, -0.607091, 0.513574, -1.134279, -0.701436, 0.659436, -0.126769, -0.722253, 0.312852, 0.851066, -0.550953, -1.035056, -0.178996, 0.794292, 1.345476, -0.210195, -1.054664, 1.044173, -1.050228, 1.031430, -0.892830, 1.214891, -0.167253, 0.545731, 0.293455, -0.584334, -0.197853, 1.698795, -1.086416, -1.396709, 0.388075, 0.928634, 1.193052, 0.542530, 2.174764, 0.239803, 0.971829, 0.021349, -0.210745, -1.307224, 0.530507, 1.158654, 0.779241, 0.438243, 1.113252, 1.482862, -0.982382, 0.888396, 0.657061, -0.091891, 0.850659, 1.621601, 0.950529, -0.605095, -0.961948, 2.756418, -0.804598, -1.133715, 0.420542, 0.707231, 0.441337, 0.019870, -0.412532, -0.020664, 1.224954, 0.129117, 0.692995, 0.588245, -0.587636, -1.682081, 0.152476, -0.395927, -0.051541, 0.867257, -0.825371, 2.508079, -0.541376, 1.242906, 1.081817, -0.381739, 1.007005, -1.397104, 2.049309, -0.566978, -0.687564, -0.468995, -1.287895, -0.198237, 0.422649, 0.239427, 3.274068, -0.549394, 1.091445, -0.063481, -1.109790, -0.092825, 0.228454, -0.275759, -0.069295, -0.568130, 0.839787, -0.131585, 0.856314, -0.177739, -0.744406, -0.554781, 1.133109, -0.720532, 2.679416, -0.065719, 0.750548, -1.681082, 0.402632, 0.161070, 0.773558, 2.388589, 0.537458, 0.144391, -1.162200, -0.243017, -0.209331, -0.738535, 0.494306, -0.031733, -0.113754, 0.076761, 0.831861, -1.190671, 1.039350, 0.691202, 0.861462, 1.023810, 0.700740, -0.359189, -0.571197, 0.647437, -0.494145, 0.688758, 0.248115, -0.300279, -0.092851, -2.463564, -1.275104, -0.765320, 0.346337, -1.245937, -1.062869, -0.051069, 0.901298, -0.744129, -0.598520, 0.617659, 0.035656, -0.573097, -1.796183, 0.200496, 1.901870, -0.080139, -0.668790, -0.091314, 0.067770, -0.401100, -1.190672, -0.267438, -0.297945, -0.089070, 0.671168, -0.785190, -1.236640, -3.077630, 0.829355, 1.039796, 2.058157, 1.434751, -1.002031, -0.680382, 0.828008, 0.714094, 2.441755, 0.069451, 1.193988, 0.061189, -0.445449, -0.886332, 1.043918, -1.112944, 0.771895, 2.891960, 1.104239, -0.072483, 0.406584, 0.719894, -2.093123, -1.813807, 2.245861, -0.412736, 0.022196, -0.372102, 1.781085, -1.330432, 1.457060, 1.634151, 1.701577, -1.300448, 0.753790, -0.837953, 0.413695, -0.156132, -0.536231, -1.643046, 0.074195, 1.403474, -1.024449, 1.060438, -0.659555, -0.494227, 0.768915, -0.262128, -2.380972, 0.532851, 0.808966, -1.090259, 0.405008, -1.411347, 0.015488, 0.462615, 1.112488, 0.319696, -0.617976, -1.029672, -1.899080, -1.073926, -0.617877, 0.898976, 0.690574, 1.870248, -0.147114, 0.930937, 0.431637, -0.580698, 2.058217, 1.171048, -1.206165, 0.486984, -1.695516, 1.033344, -0.272659, -0.527465, -0.952022, -0.461038, 1.244217, 0.216961, -0.821916, 0.283711, 0.238485, -1.249147, 0.171838, -0.065925, -0.156381, -0.554742, -0.972072, -1.528020, -0.355954, 0.270998, 0.139556, 1.812417, 1.801546, 0.624538, -0.787086, -0.184569, 1.530320, 0.143045}, + { -0.460127, 1.003686, -0.756425, 0.948514, 0.243031, 1.061145, 0.037331, 1.278928, -0.372089, 0.717820, -0.892170, 1.527757, 1.448706, 1.676767, 0.063852, 0.254324, 1.676828, -0.320170, 1.569841, -0.673816, 0.228773, 2.254672, 0.475782, 1.376060, 1.188919, 0.456734, -1.462780, -0.404180, 0.876127, 0.224036, 1.209959, 0.615370, 0.333324, 1.172845, -0.432864, 0.433496, -1.064113, 0.466705, -0.658574, -0.038656, -1.141713, 0.183697, 0.721033, 0.118445, -0.112179, 1.902772, 0.813864, 0.327133, -0.906739, -0.323852, -0.821924, 0.642731, 0.605088, -0.696286, -0.427675, 0.262865, -0.959123, -0.845785, -0.225202, -0.429458, 1.781495, 1.492720, -0.018856, -1.889690, 0.538864, -0.300831, 0.488659, 0.715193, 0.018927, -1.468770, 1.783636, 1.825216, -0.480296, 0.003911, 0.247482, 0.912840, 0.836604, 0.417612, -1.233762, -1.355279, -0.119523, 0.946241, 0.063261, -0.163813, -1.811143, 0.425394, 1.215904, -1.432267, -0.470739, -1.593512, 2.271159, -0.697805, -0.050870, -1.305174, -0.999425, 2.055721, -1.623457, -0.526404, -0.460731, -1.507115, 3.133274, 0.247029, 3.504288, -1.377407, -0.198749, 0.866587, -0.853861, 0.870844, 0.229323, 1.238467, -0.888205, -0.492117, 0.134792, 0.087148, 0.795628, 0.701015, -1.908604, -0.720976, -0.916969, 0.293436, -1.200093, 0.184176, -1.704998, -1.277669, 0.609335, 1.407192, -0.141481, 2.205840, 3.290139, 1.811724, 0.744099, -0.366326, -0.634037, 0.642487, 0.340081, 0.639567, -1.243038, 0.920221, -0.854984, -1.609432, 1.352153, -0.697336, 0.233935, 0.881627, 0.219395, 1.241279, -1.294647, -0.125217, 1.009194, 1.065202, 0.424949, -0.659179, -2.039154, 0.251962, 1.437868, -0.336978, -0.087106, 1.876559, 1.656252, -0.089746, -1.391716, -0.462172, 0.630620, -1.975464, -0.250392, -1.206013, -1.360507, -0.446080, -0.174210, 1.275199, 0.265648, 0.916949, 1.054683, -1.845755, 0.410997, 1.719696, 0.000758, 0.272884, -0.334283, 0.216386, 0.558240, -0.577344, 1.587096, 0.581770, 1.099519, -0.496223, -0.161820, -0.731210, -1.493183, -0.055015, 0.125838, 0.853131, -0.372956, 0.554524, 1.056030, -0.477273, 0.139485, -0.231218, 0.444733, 1.357238, 0.536535, -0.831062, 0.631846, -0.043652, 0.020603, -0.618144, -0.847457, 0.158231, 0.851819, -1.097051, -1.187936, 1.025259, 0.757621, -1.385510, 0.044439, -0.732928, -0.312060, -1.074313, -1.748183, -0.470906, -0.400687, -1.642419, 1.445314, -0.261139, 0.891566, -0.438451, 1.736373, -0.118390, -1.152047, -0.232348, 0.689129, -0.517057, -1.450817, -0.950483, -1.494099, -0.763745, 1.022427, -0.160285, -2.680851, 1.476271, -0.185754, 1.972785, 0.780818, 0.562580, -1.108786, 1.343296, 1.330739, 0.272110, -0.589423, -2.458832, -1.120480, -0.438154, 0.614543, 0.310643, 0.071726, 1.835829, 0.332506, 0.153416, 0.697628, 0.283001, 0.814715, -0.296614, -2.341450, -1.371490, -0.628172, 0.593308, 1.542751, -0.697052, 0.385552, 1.008544, 0.415322, -0.363613, 0.410209, 0.741077, 0.503613, 0.080042, 0.070777, 1.069959, -0.030066, -0.872705, 1.446193, 1.300552, 0.004272, -0.508644, 1.821110, -1.124357, 1.812700, 0.355085, 0.101891, -0.218965, -0.416687, -0.267793, -0.779310, -0.099090, 0.826203, -1.963421, 0.567766, -1.057421, -0.545433, -0.726329, -0.522214, 0.007095, -0.368573, -0.696462, -2.421234, 0.759457, 0.671386, -0.226851, 0.631842, 1.140173, -0.200253, -0.838181, -1.389659, -1.379359, -0.038064, 0.263635, -0.614666, -1.604632, -1.369720, -0.031672, -0.562532, -0.280005, 1.134341, 0.698787, -0.917519, -0.754584, 1.770137, -0.538803, -3.146376, 0.283692, 0.282129, 0.375359, -1.619927, 1.382256, 0.761313, -0.749871, 0.266723, -0.820136, -0.543952, 0.256631, 0.761141, 0.435913, -0.203392, 0.067976, 0.694728, 0.577919, -1.394714, -2.173885, -1.687474, 1.634344, 0.010458, -0.075337, -0.346201, -2.189259, -0.197817, -0.239190, 0.332313, -0.672594, -0.022500, 0.814103, -0.300997, 0.160148, 0.102091, -0.809444, -0.565075, -1.041961, 1.527980, -0.483138, -2.119360, -1.147871, 0.321149, 0.733275, 0.398588, 0.300104, -0.895803, 1.249333, -0.429273, -0.191192, -1.331521, -1.529801, -0.292818, 1.614285, -0.510469, 1.436781, -0.022407, -1.348137, -0.701011, 2.970067, 0.297123, -1.251790, -1.084230, 2.221634, -2.581867, -0.760592, -0.192657, 1.247464, 0.009426, -1.998624, 0.459647, -0.221443, 0.165015, 0.358107, 1.102837, -0.248085, -1.821544, 1.044854, -2.283337, -0.487460, -0.169743, -1.030411, 0.842757, 1.061848, -0.986291, 0.272628, 0.077178, 0.001695, 0.564364, 1.674997, 0.023513, -1.009305, 0.361827, 1.756204, 0.049040, 0.967914, -0.034218, -0.551311, -0.741045, -0.183406, -0.333160, -0.595086, -0.154153, -1.187447, 0.013791, 0.600637, 0.496078, 0.425958, 0.949856, 0.669755, -0.130918, 0.119474, -1.019704, 2.202222, -0.213286, -2.135757, -0.680348, 1.322261, -0.573732, -0.666441, -0.123670, -2.056307, 1.359813, -0.356080, 1.334991, -1.413171, 1.008093, 0.805808, -0.539764, 0.725935, -0.498486, 0.502211, -1.046462, 0.835032, 0.442036, 0.661102, 0.371917, -1.580378, 1.456512, -0.599743, -1.262098, -0.977225, -0.420424, -1.095705, -0.102750, 1.287607, -0.665565, 0.445280, 0.559933, 0.396172, 1.098799, -0.917427, 1.063693, -1.710001, -0.613000, 0.090681, -2.390242, 0.361528, 0.423764, -1.117324, -0.541464, 0.157672, 0.061289, -0.980778, -1.624991, -0.919228, -0.198608, 0.407426, 0.531641, 0.782352, 0.308421, -0.595577, 0.133041, 0.117609, 0.877921, 0.693231, 1.618490, 0.879163, -1.847283, -0.225096, -1.908849, 0.429856, 0.178704, 1.206298, 0.343299, 2.096951, 0.101621, 2.304997, 0.906440, -1.114701, -2.056771, -1.200813, -0.605093, -0.639085, -0.350566, -0.047783, 0.209551, -0.484639, 0.215818, 1.547066, -0.306745, -0.480952, -1.382057, -0.676212, 0.767382, 0.149698, -0.466264, 0.452004, -0.580517, -0.294788, 1.659517, -0.367299, 1.934540, 1.202956, -0.243328, 0.101271, -0.496497, -0.974175, 2.136533, -1.673039, 1.693513, 1.307232, -0.726413, 0.228218, -0.732515, 1.233824, 1.007473, -0.292153, 0.353034, 0.003874, 1.672240, 1.639677, -1.871337, 0.334767, 0.244204, 2.069188, -2.315363, -0.944928, 0.832698, -0.058052, -1.055999, -0.086511, -0.443908, -0.951020, -0.714940, -0.213177, 1.270883, -0.380284, 2.978762, -0.264423, -1.238350, -1.892415, -1.501531, 0.822271, -2.150519, 0.466668, -0.306070, -2.966870, -0.381999, -0.802675, -1.209628, 0.467249, -0.528363, -0.498916, 0.383031, 1.514718, -0.371822, -0.817617, 1.015537, -0.462773, -1.055026, -1.753604, 1.091346, -0.388252, 1.623948, -1.569725, -0.676217, 0.896353, -0.767891, -0.928214, 0.330030, 0.741161, -0.822675, -0.261115, 0.314503, 0.813945, 1.167133, -0.707453, 1.483614, -0.150487, 1.463426, 0.304343, 0.934806, 0.186697, -0.151715, 0.060116, 0.093067, 0.271059, 0.494908, -1.533333, -1.318730, -0.432558, -0.624556, -0.964479, 0.423987, 0.291118, -0.621755, 0.409638, 0.417397, 0.742512, 0.207273, 0.599914, -0.147224, -1.028698, -0.327382, 0.670668, -0.325864, -2.105638, 1.305043, 1.551883, 1.743432, -0.765596, -0.468690, -0.387992, 0.422004, -1.757832, -1.708843, 0.404366, -0.221322, 1.703687, -0.368459, -1.027810, -0.308806, 1.636001, -1.099645, -0.652451, 1.037503, -0.162773, -1.326930, 1.089659, -0.598857, 1.726949, 0.792473, 0.371111, -0.699452, -0.348475, -0.162744, -0.497017, -1.468268, -0.050597, -0.582526, -0.839777, -0.455032, -0.560429, -1.316616, -0.553797, -1.003100, -1.305462, -0.440936, 0.177445, 1.095493, -2.221320, -2.301556, 0.062108, 0.009978, -0.707175, 0.031874, -0.033571, -1.308939, -1.013934, 0.845773, 0.112552, 0.670863, 0.164866, -0.953538, 2.902723, 0.691702, -0.415291, -1.569011, -1.148232, 0.168929, -3.251531, -0.042419, -0.556035, 0.617929, 0.817292, 0.906200, 0.022940, 0.104165, 1.902683, 0.310831, -1.820452, 0.482757, 0.114034, -0.530148, -0.264628, 0.429445, 1.635688, 0.710741, 1.407302, 0.959449, -0.828725, -1.773984, 0.337037, -0.022428, -0.529695, 0.974009, 0.214441, 1.666152, 0.305561, 0.615461, -0.776867, -0.396863, 0.839819, -0.321920, -0.563034, -1.686524, 0.182866, 0.725401, -0.458807, -2.629012, 1.511413, 0.623160, -0.230702, 1.277348, 0.632634, 0.629001, 1.020781, -0.354234, -0.748805, 1.494922, -0.799784, -0.371394, 1.068750, 1.074057, -2.450619, 1.170448, -0.417757, -0.689442, 0.542454, 0.283593, 0.185500, -1.681825, 0.048866, -0.601730, -0.601606, -0.311057, -0.862420, -0.688702, -0.180382, -0.371591, 0.545398, -1.666141, 0.888943, -0.392656, -1.109465, -0.597225, 1.054845, 1.534163, 0.075385, 0.831754, -0.666996, -0.524153, 0.537369, 1.312377, 0.193846, 1.520482, 1.534900, -0.001184, 1.861824, 0.192030, 0.562351, -1.285117, 0.863550, 0.655581, 0.640489, -2.459357, 1.187551, -1.625427, -0.531603, 0.186476, 0.714236, 1.447022, 0.876043, -0.290773, 0.327438, -1.401845, -0.613483, -0.153764, 1.217052, 2.746966, 1.167980, -0.713606, 1.654671, 0.842773, 1.128916, -0.416414, -1.430610, -0.389778, -1.000029, 1.014183, -0.576937, -0.120991, 0.423789, -0.756631, -0.304002, -0.033811, -1.315093, 0.851053, 0.921874, 0.997267, 1.040307, 0.806320, -0.194278, -1.627184, 2.272241, 1.362953, 0.175077, 1.171183, 0.229712, 0.218339, -0.793814, -0.549368, 0.420265, 0.554025, 0.656061, 0.336746, -0.914611, -0.307540, -0.300180, -0.107534, 0.209184, 2.226789, 0.218972, -0.953432, -0.617711, -1.514611, -0.779318, 1.288303, -0.278332, -1.143272, 1.148163, 1.549711, 1.274650, 0.430797, 0.540928, 0.112877, 2.015429, 1.414303, 1.076198, 0.660798, -0.117721, -1.438394, -1.102855, 2.052195, -0.116849, 1.251255, -0.306534, 0.476674, 0.877963, -1.397614, -1.771317, 0.233993, -0.612836, 0.175866, -1.558213, -0.706391, -0.152991, 1.262000, -0.195060, -0.831798, 0.595490, -0.118716, -1.161827, -0.522823, 0.158574, 0.305202, -0.565093, 2.323268, -1.102309, -0.381197, -2.280344, 0.930895, 1.981037, 1.245296, -0.594346, 0.658396, 0.324573, -1.300188, -0.764594, 0.277831, -0.299987, -1.387957, -1.298643, 1.689250, -1.284189, 0.010215, -0.777559, -0.415292, 0.354229, -1.524945, -1.123124, 0.297385, 0.783419, -0.220291, 1.547140, 0.779848, -0.809523, 1.754017, 0.183005, 0.711752, 0.315054, 0.131111, 0.456546, 0.678837, -0.832297, 1.027259, -0.538304, 0.629587, 1.003817, 0.312869, 0.184614, -1.878231, 0.707187, -0.094790, 0.193750, 0.891292, -0.986080, -1.019000, -0.779440, 1.499748, -1.339226, -0.708884, 0.731531, -0.540700, 0.251360, -1.334844, -0.257135, -0.153748, -0.770354, -0.425155, 1.227461, 0.045296, 0.521973, -0.217285, -0.368843, -1.065089, -0.544799, -1.554330, -0.250957, -0.388296, -2.032221, -0.581011, -0.712709, -0.435894, 0.257655, 0.988901, -1.363770, 0.330631, -0.128041, 1.838787, 1.595853, -0.956498, -0.064633, 0.379057, 0.269867, -0.367822, 1.399137, 0.393367, -0.783889, 0.602803, 0.589280, 0.236859, -0.508539, 1.400119, 0.106359, -0.471102, 1.155166, -1.061007, 0.306934, 0.151076, -0.250156, -0.788735, -0.401488, 0.280954, -0.308704, -1.149645, 0.882630, -0.687931, -1.083163, -0.749782, -0.974116, -0.363012, 0.716242, -1.055983, -1.713683, -0.041937, 0.044253, 0.761031, -0.598520, -0.305064, -0.007800, 0.930536, 1.335585, -1.537282, -1.459065, -0.778544, 0.600995, -1.563390, 0.948600, 0.813824, 1.489932, 1.849583, -0.411338, 0.926548, -1.313667, 0.119911, 1.266238, -1.010870, -0.401707, -1.450872, -0.213465, 0.339255, -1.586570, -1.897717, -0.193966, 0.956260, -1.416980, 0.928067, -0.633256, -0.594525, -0.038643, -0.038918, -0.769292, 0.234031, -0.262888, -0.289003, 0.464379, -0.949744, 0.498933, 1.336079, -0.428263, 1.009727, 0.649546, -1.716143, -0.005567, 0.912852, -0.190231, -0.089660, 0.966192, 1.083718, 0.528760, -1.597066, -0.879471, 0.673324, 1.050413, 0.293257, -0.196932, -0.529742, 1.021324, -1.483219, 1.078110, -1.624242, 0.400077, 1.119824, -0.099644, -0.270496, 0.011287, -0.127041, -0.584701, 1.088290, -0.241049, -0.227215, 0.578478, -0.304468, -0.140260, -0.427711, 0.347765, 0.604143, -0.250825, 1.027923, 0.568952, -2.199576, -1.163435, -0.939665, 0.185874, -1.796223, -0.250312, -0.224372, -0.336193, -0.947016, 0.848199, 1.479376, 1.253693, -0.058175, -1.666420, -1.042481, -0.640337, 0.161516, 0.868397, 2.155574, 2.614828, -0.092077, 1.989316, 0.811289, 0.852831, -0.702118, 0.273574, -0.143411, -0.997001, -1.091719, 0.193527, 0.372442, 0.107208, -0.643985, 1.106882, -2.019802, -1.685648, -2.106049, -0.383486, 1.552847, 1.460692, 0.300521, -1.094292, -0.323477, 0.283936, -1.737739, -1.313097, 0.959102, 1.180247, -0.493558, -1.211564, 0.513725, 0.034380, -0.480539, -0.683817, 1.854518, 1.771158, 1.147035, -0.478712, -0.528136, 0.330276, -0.645434, -0.845557, 1.748666, -2.156501, 1.103902, 0.572898, 0.088537, -0.731132, -0.732680, -1.467669, -0.764881, 1.471951, -1.138447, -0.083471, 0.463466, 0.249519, 0.614139, 1.137557, 0.404978, 1.752942, -1.535458, 1.239562, -1.419405, -0.614561, -2.103364, 0.382886, -1.476316, -1.061570, -0.453045, 1.406648, -0.364104, 0.205290, 0.565590, -0.717351, 0.376465, -0.338862, 2.208793, -1.019191, -0.524118, -2.713258, -0.539275, 1.168560, 0.004871, -0.528000, -0.070925, 0.281167, 0.242310, -0.478782, -0.033544, 0.272859, -0.383578, 0.053074, -0.219432, 0.134538, 0.749099, 0.214965, 0.984827, -0.077053, -2.026097, 0.861673, 0.020702, -2.141807, 0.441566, -0.974873, 1.817576, 0.472948, 1.352965, 0.416758, -0.379396, 0.755273, -2.611532, 0.837089, 0.330657, 0.451105, 0.184757, 0.773917, 0.158940, -0.071377, -0.420284, 0.920147, -0.542458, 0.770142, 0.245097, 0.383741, -1.408619, -0.468930, 0.255804, -1.139607, 0.153167, 0.148747, -0.287015, 0.464924, -0.410319, 0.436592, 0.558055, -0.100770, 1.184754, -0.370387, 0.249615, 1.891655, 1.082222, 0.673851, -1.087310, 0.524273, -0.866514, -1.215565, 1.025637, 1.736586, -0.578976, -0.317209, -0.998804, 0.576247, 0.838931, -1.872715, -0.406934, 1.214934, -2.815383, 0.960484, -0.989856, -1.253224, -1.064002, -0.314727, -0.634642, 2.032980, 0.433594, 0.167152, 0.233060, 0.088761, -0.426107, -1.026667, 0.540443, 0.301716, 1.437619, -2.185498, 1.027729, -2.297431, -0.514056, -1.688482, 1.339633, -0.019552, 0.512803, -1.106839, 0.716364, -0.798406, 1.169102, 1.578032, 0.767276, -0.381469, -2.297286, 0.210627, 0.359618, -0.805861, 0.600629, -0.188226, -0.081408, 0.900425, 1.088347, -0.835499, -0.129629, -0.903928, -0.027371, -0.239630, -1.089051, -0.313082, 0.097719, 0.637898, 0.535474, 0.030471, -1.128241, 0.006214, -0.416076, 0.429710, 0.358826, 1.695234, 0.928487, -0.541833, 0.053114, 1.109861, 1.677476, -1.718037, 0.151014, -0.068746, 0.054103, 0.305922, 0.294338, -0.551724, 1.398524, 0.312540, -2.500440, 1.104085, 0.495325, -0.212927, 1.173268, -0.108843, 1.048015, -1.607806, 1.660228, 0.340836, -1.270303, -1.865348, -2.217036, 0.847054, -1.427358, 0.458143, -0.330194, 0.955491, -0.988231, -0.002164, -0.061773, 2.525695, -0.700693, 1.121545, 0.616855, -0.380676, 0.134950, -1.148246, 0.615436, -0.019544, 0.878479, -0.923966, -0.412371, -0.161045, -0.210234, -1.330746, -0.183609, -0.741830, 0.527310, 1.861954, 0.094060, -1.174285, -1.077550, -0.923288, 0.026420, -1.048188, 0.290261, 1.250046, 0.765301, -0.439468, -1.000468, -1.277766, 1.236733, 1.002172, -0.324927, -1.096115, -0.888198, -2.813093, -0.427218, 0.097118, -1.501858, 1.398967, 1.336252, -0.387932, 0.730351, 2.137025, 0.002162, 0.045108, -0.690897, -0.752493, -1.084980, 0.008142, 1.223110, 1.346244, -1.197635, -1.421213, 0.808973, -1.289689, 1.536845, -1.297303, 0.530056, 0.385125, -0.526596, 0.855535, -1.505588, -0.120820, -0.921401, -0.020914, -1.912856, -0.356736, -0.768164, 0.402606, -0.798361, 0.535054, 0.893569, 2.822687, -1.156008, -1.707941, 0.261164, 2.136239, -1.874312, 1.327378, -0.026164, 0.875560, 0.811467, -0.960811, 1.037861, 0.244615, -1.569308, 1.578202, -1.705731, -0.610333, -2.049166, 0.423059, 0.857732, 0.380744, -0.352497, -0.056508, -0.131958, -1.073322, -0.552628, 0.655303, -0.116707, -1.895882, 0.392583, -1.313690, 0.446411, 0.854990, -0.110171, -0.598494, -0.769743, -0.735906, 0.256968, 0.438337, -0.017192, 0.196971, 0.005429, -0.412713, -1.778308, -1.626895, -2.556644, -0.557423, 1.429147, 1.317958, -0.272412, -1.997762, -0.412014, 0.207046, 0.091528, 1.029461, 0.392073, -0.360402, 0.263296, 0.007679, 0.688636, -1.461056, -0.498714, -0.123136, 0.541819, -0.203342, 1.457311, -0.298898, 0.320689, -0.663462, 1.652018, -0.605751, 0.604200, 0.513283, -0.368368, 1.583899, 0.810617, 0.119517, 0.837004, 0.059768, -1.602970, -1.577403, 0.893168, 0.723299, -0.385209, 1.508668, -0.252255, -0.366260, 0.681794, 1.686389, -1.165793, 0.320963, -0.430081, -0.038649, -0.308567, 0.036590, 1.122722, 0.048741, -0.135754, 0.516635, -1.231476, -0.447443, -1.480494, -2.451374, 0.561484, 0.454587, 1.098504, 1.391837, -0.674490, 1.235758, -0.435294, 1.098033, -0.144558, 0.299068, 0.331817, 1.535231, -0.939641, -0.575641, -0.495885, -0.382201, -0.139062, -0.191463, -0.792406, -0.498657, 0.524347, -1.747684, 1.232142, 0.975641, 0.385176, -1.097543, 0.119217, -0.135694, 0.147636, 1.214422, 0.806165, 1.073523, -1.236115, 0.520459, -0.280590, 1.482984, -0.117114, -2.284737, 0.898133, 0.047222, -0.996471, 2.130027, -1.694979, -0.388737, 0.919940, -1.719153, -0.824066, 0.881522, 0.152820, 0.869025, -1.091750, 1.479048, 0.655650, 0.170395, -0.663266, -1.659735, -0.786320, -2.301705, 0.545086, -2.005278, 0.815195, 0.329112, 0.228623, 0.076280, -1.078630, -0.802740, 0.543220, 0.063845, 0.098803, -0.661656, 0.328535, 1.262038, -1.335194, -0.169918, -0.780838, 0.247596, 0.876238, 0.988235, -0.636862, 0.780007, 1.871358, 1.945739, 0.273834, -0.310227, -2.233140, 0.365314, 1.783842, 0.970665, -0.761365, 0.074050, -0.306699, -1.098931, 0.747549, 1.067148, 0.444665, -0.138257, -1.594882, -0.829342, 1.002088, -0.721500, 1.865535, 1.641823, -0.120323, 1.393750, -1.077341, -0.432658, 1.998170, -1.725053, -0.778972, -0.629184, 0.374935, 0.192343, 1.266788, -0.513878, 0.303059, 0.045581, -1.911639, 0.686257, 0.535665, -0.527754, 0.708004, 0.374473, -1.361073, -0.352251, -1.384254, -0.942638, -1.197450, 1.442708, -1.974799, 0.313157, 0.368601, -0.083686, -0.249148, -0.952801, 0.371928, -0.024723, -1.143071, -1.118189, 0.049285, 0.126165, -1.335896, -0.219705, -0.291263, -2.121511, -0.291382, 1.850680, 0.476760, 1.247241, -0.087863, -1.046360, 2.259291, 0.168069, -0.092744, -0.682702, -0.285360, -0.826405, 1.897377, -0.243227, -0.895938, -2.812734, -0.957191, 0.440902, -1.748986, -0.219954, -0.147822, 1.799295, 0.083995, -0.333598, 0.715928, -1.555834, 2.146025, 0.344664, 0.395177, -1.218415, 0.179764, -0.640256, -0.512391, -1.018745, -0.026495, 1.479803, 0.100398, 0.569789, 2.984483, 0.455847, 0.775229, -1.191186, 1.494525, 0.039490, 0.973096, 0.117687, 1.987833, -1.201655, -0.432377, 0.423500, -0.947241, -0.703787, -0.378355, -0.238298, 1.048637, -0.108448, -0.189550, 1.425745, -1.224025, 1.173662, -1.480149, 1.032398, -0.621018, -2.563157, -1.337667, -0.497966, 0.907651, 0.465285, -0.444220, -1.188333, -1.657029, -0.513727, 0.028864, 0.354932, 0.462056, 1.403895, 0.076440, -0.065871, 0.929640, 0.477340, -1.596119, -1.363667, 0.527460, 1.277548, 1.611359, -0.361237, 0.778678, -1.513739, -0.924164, -0.008992, 1.457408, 0.856956, -0.928712, -0.467367, -0.454358, 0.744409, 2.005465, -0.857244, -1.683828, 1.327874, -0.911610, -0.491271, 1.119046, 0.031979, 0.571739, 0.528408, 1.138054, -1.757774, 0.267759, -0.356016, -0.468771, 0.997002, -0.159926, -0.727595, 1.736470, 0.777707, -1.167369, -0.485608, -0.912983, 1.217748, -0.212528, -0.853817, 0.228232, -2.686566, 1.646836, -0.829939, 1.656828, 0.584317, -0.044585, 1.709128, 0.465919, 0.879865, 0.900781, 0.794212, 0.040205, 1.335361, 0.310787, -1.778060, -1.557740, -1.042201, -0.633923, 0.518643, -0.184673, -1.650661, 0.097356, 0.810173, 1.325395, 0.209772, 0.023602, 1.879506, 0.348412, -0.783215, 0.650815, 1.226574, -1.368783, 0.074729, -0.696541, -1.579727, -0.092673, 0.303608, -0.774157, -0.416064, 0.318807, 0.488902, 0.699349, 0.732327, -0.368440, -0.520668, 1.681365, -0.856613, -1.234067, 0.466894, 0.553546, 1.315115, 1.065340, 0.376892, -2.466966, -1.202604, 0.701714, -1.464124, -1.209327, 0.652410, -0.816180, -0.795581, 1.686028, 1.478356, -0.798279, -1.843620, 0.679247, -1.275601, -0.790941, 0.670378, -1.458036, 1.727090, 0.477588, -0.158130, -1.124077, -0.556039, -1.370806, 0.214565, 1.016246, 0.225832, -0.021422, -0.350025, -1.120753, 0.515995, 0.124096, 1.266541, -1.119876, -1.189570, -0.222849, 1.618944, -0.174155, -1.634841, -0.397830, 1.431442, -0.240132, -0.404971, 0.214981, -0.883910, -0.019745, 0.130105, 1.131841, -1.318661, 0.278383, 0.888417, -0.157396, -0.250962, -0.692790, -1.671236, -0.923920, 1.626840, -2.566907, -2.588068, 0.232606, 0.836610, 0.238575, -0.125011, 2.108894, -0.703887, 1.114850, 0.661141, -0.679078, -0.017136, -0.347517, 1.998961, 1.395852, -1.657131, 0.198214, 0.418952, -0.129545, 0.236703, -2.043975, -1.517588, 1.111415, 0.483752, 0.758357, -0.943970, 0.429716, 0.158237, 0.309731, 0.789247, -1.138120, 0.809174, -0.451380, -0.935289, -0.135627, -0.422931, 1.442118, 1.034704, -0.561760, 0.465344, 2.401720, 1.786758, 0.170343, 0.338543, -2.443328, 1.003269, -1.005822, -0.673231, 1.541393, -0.389642, -0.033440, 0.360302, -1.182644, 1.425322, 0.892098, 0.445260, -1.370936, -0.819729, 0.847646, 1.353911, 1.480346, 0.407400, 1.186540, 0.411670, -1.731507, -1.535358, -0.537789, 0.149704, 0.602993, -0.539579, 0.743468, -0.173620, -0.827505, -0.070082, -1.364710, 1.053678, 0.032004, 1.397939, -0.509007, 1.020534, -0.882641, -2.461971, -0.139934, -0.501535, 2.737041, -0.172967, -1.000719, -0.393973, 0.181018, 1.114432, -1.784666, -1.147407, 0.428242, -1.323928, -0.563387, 0.047199, 1.505847, 1.022790, 0.531492, -1.311868, -1.688057, -0.283533, 1.705258, -1.434736, -0.123833, -0.053399, -0.401082, -1.534600, 0.958491, -1.395615, 0.285766, 0.698597, 0.537141, 0.427874, 0.306182, -0.793907, 0.515062, 1.136896, 1.217577, 0.042965, -0.446491, -0.597166, 0.898667, -1.027492, 0.321593, -0.554625, 0.232704, -0.577013, -2.243983, -1.186248, -1.401031, -0.340130, 0.599001, -0.222372, -1.715254, -1.187863, 0.867853, -0.536196, -0.363334, 2.839114, 0.161027, -2.580624, 0.422206, 0.697330, 0.036202, 0.500172, -0.302983, 0.504722, 0.840128, -0.079271, -0.404204, 0.002550, -1.729103, -0.191667, 1.036394, 0.805130, -0.914922, -0.366015, -0.167713, 0.888280, -1.909882, -0.146108, -0.226232, 0.265654, -1.156625, -1.848921, -0.362236, 0.746349, -0.799636, -0.488419, 0.195167, 0.430818, -0.444170, 0.462885, 1.613835, 0.973877, -0.654531, 0.236141, 0.137921, 3.056623, 1.960802, 0.897377, 0.677855, -0.618055, 0.710570, -1.106110, 2.053565, 1.068726, 0.977257, 0.937141, -0.870400, 0.476741, -0.747218, 0.293541, -1.313276, 0.019568, 0.137206, -0.045241, -0.330578, -0.319572, -2.346273, -0.135398, 0.032833, -0.077535, -0.067603, 0.158025, -1.442539, -1.360395, 0.043443, -0.058617, -1.397903, 0.590425, 0.238533, -1.020523, 1.001650, 1.473927, -0.247317, -1.598878, -0.323764, 0.214676, -0.108777, 0.761382, -2.263814, 2.318521, 1.701192, 0.042167, 1.670401, 0.194657, -0.292212, -1.012950, 1.264882, 2.735009, 2.110200, -2.634526, -0.561011, 0.232000, -0.964361, 1.712467, 0.597691, -0.658657, -0.388905, -0.075787, 0.668499, 0.522251, -1.408303, -0.792395, -0.350595, -1.195469, 0.078201, 0.494205, -0.700705, -0.889148, 1.318351, -1.293320, -0.047690, -1.013899, 0.832235, 0.507639, 1.407132, 1.552927, -0.267982, 0.191241, -0.020907, 2.279176, -2.100779, -0.354733, -0.135324, -0.557411, -0.752948, -1.237666, -0.303388, 0.378294, 0.560515, -0.629500, 2.192942, 0.601050, 1.451738, -1.677551, -0.414675, -0.849750, 0.811348, 0.923301, -1.506332, -0.718640, 2.118806, 0.704622, 0.224871, -0.162316, 1.759398, 0.382982, -1.351945, -0.664156, 1.139768, 0.701458, -1.418082, -0.180974, -0.754276, 0.082166, -2.978314, -0.066740, 0.524941, 0.937907, 1.034182, -0.742407, -0.380772, 0.617936, -1.447057, 1.270606, -0.061085, -0.699317, -0.072457, -0.495823, 0.114930, -0.048082, 0.903273, -0.988056, 0.571635, 0.617258, -0.657946, 0.785370, -0.864442, 0.262980, 1.356200, -0.086928, 0.095905, -0.324154, 0.157737, -0.734009, -1.356705, -0.132498, 0.262931, -1.324065, -1.001462, 0.184577, -1.882876, -0.457107, -0.257052, -2.855753, -1.189063, -2.357385, 0.530384, -0.492212, 0.235899, 0.672286, 1.995016, 0.958052, -0.143548, -1.385804, 0.664588, 1.212745, -0.335203, -0.198949, -0.275492, -0.490069, -0.851467, -0.502646, -0.694880, 0.923471, -0.559223, -0.380421, -0.219620, 0.012877, 0.689580, -0.471939, 0.311016, 0.504561, -1.043829, -0.020220, 2.053994, 1.013544, 1.279639, 1.130872, -1.200121, -0.217655, 0.640824, 1.045799, 0.856022, -1.346486, 0.553904, -1.952512, 0.571606, -0.937547, 0.049423, -0.418254, 0.063134, -1.396424, -2.132203, 0.717884, 0.795285, 0.896249, -0.420277, 0.252718, -0.856409, 1.427481, -0.071945, 0.896435, 0.250425, -0.511987, -0.128263, -0.379123, -2.497279, -1.448742, 0.590759, 1.020750, 0.290560, 0.900000, -0.731517, -0.043071, -0.961972, -0.090615, 0.109040, 1.149593, 1.544301, -0.071802, -0.558318, 1.305153, 1.637421, 2.264952, 0.130616, 0.431076, -1.209006, 1.402684, -0.668752, -0.221807, -1.546151, -0.083456, -1.623347, -0.592305, 0.359295, 1.320567, -0.425641, 0.656586, -1.012107, -0.224462, 0.153299, -0.380884, -1.655461, -0.056466, -0.684801, -0.901707, 0.441577, 1.001029, 1.092942, -0.431821, 0.648963, 1.011888, 1.676885, 0.288997, 0.752124, 0.692520, -1.605333, 1.552947, 2.164627, 0.921668, 2.019550, -0.764689, 1.174913, -0.301513, 1.746088, -0.600233, -1.558868, -1.391118, -0.078036, 0.634661, 0.803007, -2.076390, 1.138397, 1.478810, 0.125583, -0.084874, -0.178028, -1.695460, 0.043467, 0.023199, 0.809294, 0.086988, -1.924860, -1.579145, -0.409714, -0.164653, 0.612002, 1.310575, -0.563238, -0.418663, -1.650137, 0.670620, 1.866522, 0.454617, -0.412714, -0.193111, -1.242559, 1.447700, 0.088401, -0.091978, -0.861586, -1.051563, -0.558869, -0.487938, -1.399271, -0.267957, 1.803463, -0.473809, 1.161841, -0.129115, 0.612919, -0.674868, 1.261652, 0.200186, 0.340698, -0.614918, -0.511643, 0.908601, 0.212593, 0.105513, -0.961226, -0.032471, 1.131521, -0.653440, 2.310886, 0.353983, 0.031698, -0.763686, 0.449569, -0.276229, -2.123323, 0.128279, 1.356084, -1.287503, -0.241321, 1.132242, -0.279019, -2.384415, -1.074451, 0.517315, -0.731740, 0.972761, -0.131102, 0.337756, 0.563182, -0.410807, -0.064794, 1.135653, 1.690900, 0.939669, -0.113825, -0.539701, -1.086950, 1.644704, 1.399096, -0.625296, -0.854620, 0.903969, 0.848095, 0.299563, -0.975841, -1.526702, -0.796246, -0.237315, -1.378751, -0.831317, 0.678987, 0.166800, 0.550731, 0.520348, 1.586275, -1.438124, 0.633987, 0.786819, -2.263108, -0.198172, 0.689654, -1.391703, -2.278003, 0.118253, -0.816900, -0.287264, 3.095044, 0.109221, -0.580659, -0.084627, 1.776584, 0.225332, -0.001302, 0.567379, 0.242299, -0.237595, 1.694363, 0.818192, -1.444533, -1.027250, 0.282616, 0.168056, -0.095744, 0.294696, -0.793423, -0.500340, 1.255089, 0.667295, -0.990263, -0.313284, 1.634145, 2.045603, -0.397491, 0.895575, -1.087639, -0.664247, 1.486223, 1.796901, -1.206272, 2.581736, 0.103573, -0.942171, 0.014846, -0.809061, 1.677650, 1.583868, 0.886975, -0.329620, -0.097984, 0.984680, -1.266871, 0.293181, -1.106914, -0.234667, 1.398514, 0.528137, -0.208673, 0.623864, 1.479432, -0.329066, -0.662143, -0.920478, -0.758427, 1.027275, -0.367316, 0.216995, 0.471766, 0.348626, -0.510669, 0.559080, 0.243859, -0.732129, 1.396524, -1.670792, -0.924896, -0.617247, 0.334616, -0.133530, 0.489357, -1.860342, -0.088433, 2.155739, -0.521377, 0.221571, 0.729437, -1.396086, -0.809406, 1.910963, -1.737371, 0.639834, 1.094103, 0.706392, 0.842431, 0.055056, -0.758441, 1.306328, -0.160315, 1.563492, 1.674290, -0.289177, -0.145390, 0.863856, 0.293987, -1.409617, -1.525968, -1.673670, 0.228570, -0.685251, -0.058514, 0.590290, -0.926575, 0.497276, -0.537877, -0.922598, 0.244252, -1.221544, 0.534330, 0.574443, 0.818631, -0.160861, -0.332849, -0.125453, -0.555368, -0.391375, -0.917852, -0.040597, -0.398755, -0.165739, 0.728188, -0.013323, -0.269718, -0.927593, 0.115815, 1.041997, 1.203235, -0.023060, -0.548096, -0.306546, -0.485716, 0.916325, -0.010977, -0.619848, -0.290108, 1.186900, 0.606395, 0.247572, 0.507181, -0.169942, -0.464613, 0.473423, -1.733135, -0.235441, -1.255373, -0.068000, -0.330165, -1.273669, -0.675735, -0.458130, 0.385640, -0.459476, 0.002494, -2.021896, 0.233749, 0.082650, -0.679421, 0.377349, 0.906724, -1.779633, -0.644556, -0.988552, 0.974903, 1.764214, -0.700996, -0.834675, -0.406012, -0.682128, 0.921497, -0.420999, 0.521205, 0.071171, -0.586911, -0.209439, -0.448225, -0.063897, 0.117296, 0.072199, -0.677744, 0.389345, 2.378861, -0.535726, -0.190938, -0.826828, 1.003668, -0.746230, -1.048332, 1.241239, 0.765582, -0.804895, 0.369499, 0.318621, 0.599119, -0.006593, 0.350569, 0.666746, -1.656896, -1.903021, 0.986369, 0.511390, -0.189952, 0.308307, -0.996068, -0.089601, 1.069018, -0.126349, 0.380309, -0.865276, -0.585415, 1.239317, 0.736387, 1.051951, 0.934849, 0.995329, 0.808413, 1.155529, 1.447031, -1.930672, 1.035716, 1.172179, -0.728335, -0.104805, -0.037834, -0.729220, 0.372757, -0.159015, -0.109594, 1.265020, 1.237076, -0.065003, -1.152987, -0.461774, -0.364159, 1.541643, 0.957010, -0.344586, -2.358160, -0.790391, -0.607555, 1.538420, -1.372096, 0.072371, 0.856346, -1.498535, -0.221621, -2.082298, -1.010648, 0.221475, -1.466796, -1.206395, -0.251086, -1.396536, -1.781803, 0.273257, -0.748576, 0.299583, -0.680965, 0.289423, 1.772624, -0.858616, 1.632509, -0.284707, 0.307929, 1.763190, -0.750607, 1.044618, -0.197139, -1.723933, 1.567291, 1.038435, 1.745584, 0.646050, -0.162987, 0.087712, 0.391903, -1.049266, -1.548435, 0.866564, -1.621533, 1.007046, -0.742802, -1.033276, -1.150603, -1.652577, -0.131726, 0.260123, 1.495665, -0.352085, 0.623138, -0.353350, 0.087244, -0.736134, 1.238344, -0.041214, 1.095795, -1.488932, -0.161193, -0.505619, 0.914654, 0.055426, -0.044992, 1.720750, -0.457668, -0.983800, -1.723600, -0.636806, -1.164193, 0.462513, -0.860992, -0.164273, 0.681077, -0.110177, -0.537707, 0.603519, -0.266059, 0.504533, 0.433605, 0.915886, 1.241662, -0.041667, -0.929604, -0.077104, 0.829837, 0.180254, -0.103175, -0.349059, -0.401627, 1.311219, -1.005952, 0.656179, -0.747920, -0.442702, 0.104443, 0.106547, -1.724398, -0.632760, -1.529638, -2.244247, 0.989368, -3.336382, -1.350338, -0.603344, 0.630625, -0.872442, -0.783113, -0.349187, 1.298522, -1.409600, -2.199073, 0.981876, 1.592892, -0.982872, -1.141727, -0.847958, -1.895387, 1.085180, 1.389628, -0.978664, -0.481784, 0.905256, 1.168037, -1.296850, 0.581523, 0.995853, 0.896719, -0.783906, 0.231347, 1.008441, 2.127912, -1.707786, 1.492285, 1.735123, -1.003856, -1.235369, 0.343662, -0.525784, 1.272984, 1.215477, 0.068538, -1.629287, 0.885230, -1.293337, 0.534836, 1.051891, 0.526262, 0.290800, -0.088116, 0.259985, 1.541642, -0.166631, 2.222610, -0.999406, -0.991624, -1.005903, -0.431585, 2.045624, 0.648656, 0.176206, -1.415487, -1.594633, -0.214653, 0.501200, -3.327731, 1.517336, 0.848982, -1.001623, -0.787282, 0.131969, 1.969494, -0.900655, 1.510213, -1.719401, -0.929965, 1.167598, -0.715518, 0.998474, 0.338846, -2.247123, -0.408650, 0.537860, 0.576059, -0.397243, 1.428192, -0.569604, 1.455349, -0.659593, -0.213955, -0.190803, -1.380952, -2.029932, -0.575588, 0.541320, -1.072692, 0.710900, 0.438037, 1.672603, -0.392935, 1.289105, -0.166177, 0.765185, 1.093274, 0.391209, -0.724611, 1.241976, 1.100951, 0.162936, 1.324800, 1.340981, -0.119059, 0.289924, 0.778601, -0.114449, -0.219532, -1.062508, 0.292518, 0.858824, 0.742692, 1.611511, 0.786399, -0.356337, 1.187334, 0.010011, -0.828134, 0.971600, -1.144033, 0.839095, 0.739268, 1.115781, -1.715256, -1.836031, 0.120095, -1.295809, 0.440537, 0.854153, 0.574895, 0.207010, 1.098320, -0.031349, 0.191757, 1.649910, -0.178384, -1.132087, 0.026814, 0.116890, 0.112190, -0.213210, -0.686657, -0.121402, 0.271115, 0.649215, -1.060759, 0.380043, 0.954294, -0.310485, 1.398980, 0.672790, 0.509533, 0.494445, -0.436814, 0.846024, -0.482637, -0.105292, -0.035994, 1.715719, -0.136960, -1.179144, -1.284762, -0.220238, 1.368714, 0.902943, -0.388232, 0.031580, 0.422140, -0.911638, -2.082842, 0.767382, -0.015357, -1.002030, 0.291683, -0.929051, -0.444473, 1.966432, 1.324635, -0.008277, 1.065126, -0.345606, -0.319761, 0.319571, -1.260517, -2.011234, -0.726480, -0.385305, 0.610081, 0.047508, 0.711275, 1.122808, 0.099380, -1.853627, 0.039971, -1.002162, -0.544880, -0.969894, 0.796295, -0.856615, 0.895616, -0.431071, -1.915083, -0.490952, 1.259932, 0.720270, -1.102404, 0.111825, -0.752200, 1.402974, -0.101218, -1.230960, 1.612375, -0.408381, 0.884101, 0.199093, 1.464220, 0.330789}, + { -1.528585, 0.983889, -0.499150, -0.223014, -1.232690, 0.291085, -0.223805, 0.411602, -0.365022, -0.031481, -1.021595, 0.660676, -0.626015, 0.130819, -0.630870, -0.740446, -1.313422, 0.228579, 1.312049, 0.016274, -0.505344, 0.281289, -0.891910, -0.294884, 0.740594, 0.068537, 1.222148, 0.250725, -0.040261, -0.639984, 0.325639, 1.329382, -0.749008, 0.054584, 0.032407, 0.758772, -0.574755, 0.231966, -1.063649, 0.567060, 0.759600, -0.749698, -0.585125, -0.706897, 0.819961, 0.727940, 0.651822, 1.054664, -0.367186, 0.902286, -0.015268, -2.132958, 0.203087, -0.539434, 0.549908, 0.240788, -0.878165, -0.763983, -0.101119, 0.716684, 0.062846, -1.060311, 1.196181, 0.077812, 0.404531, -0.956294, -0.070990, 1.106855, 0.618609, 0.268663, 0.081558, -0.787187, -0.135513, -1.286443, -0.925321, -0.161293, -1.233489, -1.080396, 0.465980, 0.880576, 1.187566, -0.164665, 0.197257, -1.487821, 1.134653, -1.302039, -0.001199, 0.815884, -1.011536, 0.699102, -0.404277, -0.865818, 0.380316, -0.002470, 0.737019, -0.114187, 1.361345, -0.120122, 0.566841, -0.732340, 0.116799, 0.812616, -0.222168, -0.302839, -0.390154, -0.062397, 1.022505, -1.273622, 0.958283, 0.527289, 0.787099, 1.789362, -0.830767, -0.061116, -0.715143, 0.989719, 1.312024, -0.103241, 0.922628, 0.546323, 0.422251, -0.533996, 0.059773, 0.304350, 0.134255, 0.745131, -0.640739, 0.867087, -0.560230, -0.720101, 0.562605, -2.018087, 0.839341, -0.097239, 1.174193, -0.842501, 0.740018, -0.719852, -2.051198, -0.436773, -0.107546, -0.364597, -1.384249, 0.117560, 0.808674, 1.892442, 1.394951, 1.382266, 0.320015, 1.061469, -1.580091, 0.533058, 1.295875, 1.250858, 0.867692, -0.669411, -1.728438, 1.721880, -0.424780, -0.242200, -1.429870, 1.950367, -0.019456, 0.174931, 0.512401, -1.007260, -0.007698, 1.030953, -0.785095, 0.587675, -0.139587, 0.303261, -0.185171, 1.078003, 0.141341, -0.325681, 0.409251, 0.884302, 0.378858, 0.343696, -0.007463, -0.952749, 0.982318, -0.458325, 0.431066, -0.488515, 1.285079, 0.649887, -0.795097, 0.047880, -1.246803, 0.097538, 2.380083, -1.450382, -0.934113, 0.742989, -0.619603, -1.961643, -0.155840, -1.044392, 1.315420, -1.255346, 0.562373, 0.474025, 0.364615, 0.671960, 0.858578, 0.127014, -0.817039, 0.840599, -0.855353, -1.283971, 0.606666, -1.254695, -1.001443, -0.076443, -1.637390, 0.318139, -0.875271, 0.721107, -0.209753, 1.465423, -0.397503, -1.173907, -0.434882, -0.723125, 0.298049, 0.415903, -0.214813, -0.779666, 0.094826, -0.650036, 0.542699, 0.349991, 0.125594, -2.033349, -0.763235, -1.039107, 0.900361, 0.009362, -0.567164, 0.885626, 0.064476, 1.579943, 0.075857, -0.519321, -0.373023, 1.156549, -0.737498, 0.644146, 0.772759, -2.125074, 1.231560, -2.683326, 1.039456, 0.056548, 0.517283, 0.136986, -0.678799, 1.098678, 0.882830, -2.102855, 0.851283, 0.504098, 1.207004, 0.931283, -1.264617, 0.011476, 0.591821, 1.184969, -0.961212, 0.139644, -0.660831, 0.305168, -1.208051, 0.233318, 0.700095, 1.283509, 0.324108, 0.495576, -1.061230, -0.206965, 0.761801, 0.033181, 0.440214, 0.040518, 0.616313, 0.295511, 0.407930, 0.362573, 0.937340, -0.568489, -1.071635, -1.001128, -0.457268, 0.543761, 0.693154, -0.450404, 0.887739, 0.287612, 0.443296, -0.193653, 0.141570, 0.527235, -0.069596, -1.478696, -1.300620, -0.504491, 1.885707, -1.164754, 1.395041, -0.853243, 0.015204, 0.661630, -1.987414, -1.101709, 1.851813, -1.306159, -0.153740, 0.587134, -0.089961, 1.104270, -2.328705, -0.660836, 1.146453, 0.995669, -1.967991, 0.980982, -1.073565, 0.957437, -3.022399, 1.317716, -0.500597, -1.266898, 1.063934, 1.659208, -0.272537, 1.691416, -0.879670, -0.323290, -1.739418, 0.694532, -0.048980, 0.897082, 2.157368, -2.802532, 1.128118, -2.115752, -1.108553, -0.005655, 1.175860, 0.059270, -0.419094, 0.726087, 0.517184, -0.160207, -0.966914, 0.618487, 0.179462, 0.359682, 0.867037, 0.032544, 0.500492, 0.307941, 1.771790, 0.378537, 0.427005, 0.192290, -1.042917, -1.159638, 0.787267, 1.327091, -0.884519, 1.230271, 0.840701, 1.639742, -0.886961, -0.891833, -1.506473, 0.925444, 1.819988, 0.404576, 2.119494, 0.214463, -1.297772, 0.750829, -0.840742, 1.428026, 1.289873, -1.149179, 1.108338, -0.172330, 1.996234, 0.932108, 0.845619, 0.813612, -0.973436, -0.029861, -0.939469, -0.344599, -1.151640, -1.229235, -0.607299, 0.482107, 0.479467, -0.676827, -1.689713, -0.704264, -0.245207, 1.423006, 1.950386, 1.388501, -1.342137, -0.874730, -0.463435, -0.861913, -0.342778, 0.581104, 1.525678, 0.244771, -0.615707, -0.444179, -1.594297, -0.471480, -1.005503, -1.057680, -2.527761, -0.589943, 1.294116, 1.309565, -1.234291, 0.198335, -1.659408, 1.719685, -1.308810, -1.518271, -0.049223, -0.554038, 0.082067, -0.361201, 0.199725, -0.925516, -0.359935, 1.522369, -0.551894, -0.314783, -0.326453, 2.377429, 0.242672, -0.144021, -0.234333, 1.753826, 2.452723, 1.208959, 0.929866, -0.148051, 0.258894, 0.348292, -0.486527, 1.030207, 0.523697, 0.175798, 1.421702, -0.035517, -0.583522, -1.052002, 1.663021, 2.464565, -0.457331, 1.393666, 0.555865, 0.834828, 0.752192, -0.942726, -0.942907, -1.369926, 1.556373, -1.242350, -0.596377, 0.792980, 0.422691, -0.439911, -0.394794, 0.626970, 0.169234, -0.676422, 0.695020, 0.680034, -2.073834, 0.318893, -0.749351, 0.281616, -0.730610, 1.536807, 1.269386, 0.096238, 0.432480, -0.039462, 1.531014, -0.176188, 0.234875, -0.190344, -0.178197, -0.494622, -0.260476, -0.276411, -0.978293, -2.050851, -1.613448, -0.060035, -0.341560, 0.573924, -0.198949, -0.751478, 0.355465, -1.102729, -1.231928, 0.249779, 1.044406, -0.746747, 0.562755, 0.150071, -0.815148, 0.066598, -0.138239, 1.270939, 1.225537, -0.592050, 0.260800, 0.775360, -0.026105, 1.237430, -0.986776, -0.793640, -0.714291, -2.248067, 0.842684, 0.115358, 0.073554, -0.789709, -0.191683, -0.098856, 1.457245, -0.237845, -1.525437, -0.138134, 0.829068, -0.021182, 0.043200, 0.501391, 0.656386, -0.876930, 0.365267, 0.112038, -0.824848, 0.275731, 0.528305, 0.385697, 2.044291, -0.439301, -0.720467, 0.991971, 2.273851, -0.112329, 1.085626, -1.321414, 1.550636, -0.735019, -0.159269, -0.693036, 0.531851, 1.242950, 0.590082, 0.032854, -0.268367, 0.431621, -0.364190, 0.911184, -0.190646, 0.407714, 1.347691, -0.304216, 1.128748, 1.501841, -0.485426, -1.622365, 0.000178, -0.280583, -0.055016, 0.432168, -0.821051, -0.447986, -0.333291, 0.814798, -1.691841, 1.703749, -0.303899, -0.694030, -0.866316, 0.110702, -1.298241, 1.173338, 0.216280, -1.245771, -0.487252, -0.846584, 1.178957, -0.849830, 0.898420, 1.768309, -0.971616, 0.899211, -1.711004, 0.297717, -0.936116, -1.231106, -1.367456, 1.959779, 0.502142, -1.136966, 0.829877, 0.241248, 0.654624, 0.458409, 0.652497, 0.193033, -0.346301, 0.187575, 1.837667, -1.250660, -1.101345, -0.501435, 0.220304, 0.215576, -1.331960, -0.119991, 1.842534, 1.017017, -0.006387, 1.070005, -0.607425, -0.116607, 0.338258, -0.121515, 0.497692, -0.796940, 0.419743, -0.267430, -0.211368, -1.204600, -0.500376, -0.615469, 0.160066, 1.581782, 0.665352, 1.656134, 1.238711, 0.605496, -1.002582, -0.235327, -0.061581, -0.296004, -0.176150, -0.339779, -1.384267, -0.068234, 2.465667, -0.950088, 1.951808, -0.838449, 0.876152, 0.299702, 1.169416, 0.673109, -0.504274, -0.356379, 0.914782, 0.182470, 0.959500, 0.789742, -0.360650, 0.196019, -0.094375, -0.014411, 0.973703, -1.121771, -0.938480, -1.518121, -2.009377, 0.733018, -1.140728, 0.161206, 1.855261, -1.117708, 0.838412, -1.198984, 1.069933, 0.677694, 0.808772, 0.914989, -0.784941, -1.604322, 1.134299, 0.979655, 0.777888, 0.236527, -0.431617, -1.454105, -0.343640, 3.459868, 1.130261, -0.633418, 0.610709, 0.607167, -0.478187, 0.921286, -0.029543, 0.337618, -0.662517, 0.721575, -1.019280, -0.710560, 0.989958, 0.508684, 0.387299, 0.266558, -1.125065, 0.993325, -0.744718, 0.219002, -0.601113, 0.981536, 0.471479, 1.490893, 0.505233, 1.372832, 1.168632, 1.209643, -0.087622, 1.005157, 0.271731, 0.066910, -1.398496, 0.666050, 1.005273, 0.137496, -1.147869, -0.427714, -0.303376, 0.561293, -1.749500, -1.710384, -0.727001, 0.290281, 0.807080, 2.769151, 0.349665, -0.497446, 0.645310, -1.513402, -0.689239, 0.020332, 0.117334, 0.765119, 0.654459, -0.762251, 0.446873, -2.204895, -0.202944, 1.008021, 0.305674, -0.096879, 2.308195, 0.462794, 1.080449, -0.345487, -1.291574, -1.122318, -1.116160, -1.027598, 0.318204, 0.502638, -1.964715, -1.227736, 0.836005, -0.692966, 0.097658, 1.309985, 1.277795, -2.291872, 2.121365, -0.059751, -0.274984, -1.495993, 0.507968, -0.936313, -2.095466, -1.224858, -0.355179, -0.423306, 1.182399, 0.320705, 0.104190, -0.886878, 0.345382, -0.539444, 0.012004, -0.934699, -2.010979, -0.511383, 0.262882, 0.531387, -0.117243, -0.605265, 0.077045, 0.373672, -1.378241, 0.151214, 0.620699, -0.265486, -0.472592, 0.541416, 0.309113, 0.705576, -0.914884, -1.239032, 0.122652, -0.614573, 0.798384, 0.328963, -0.640977, 0.109637, -1.178576, 0.381937, 0.311826, -0.202689, 0.280572, 0.671444, 0.211392, -1.290677, -0.572104, 0.329893, -0.887881, -0.340961, -0.051399, 1.494626, 1.320413, -0.884367, -0.393779, -2.054686, 1.501561, 1.262307, 1.588740, -0.342659, -0.380298, -1.933367, 0.937726, -0.202528, -0.454612, 1.110017, 3.187464, 0.898520, -0.313109, 1.746430, 0.697926, 0.346989, -0.273153, -0.587579, 1.411395, -0.660513, 0.781252, 1.503714, 1.087576, 0.980184, -0.155311, 0.309774, 0.532134, -0.208186, 0.351331, -2.078174, 0.423882, -1.485632, -0.149048, 1.942785, 1.592063, 0.940881, -0.540367, -1.225420, -1.449740, -0.075467, -0.482278, 0.232206, 1.472012, -1.018986, 0.299885, -0.098323, -0.201997, -1.640178, -0.525716, -0.425520, -0.121648, 1.609431, -1.167719, 0.056033, 0.829050, 0.556802, -0.358564, 1.644239, -2.916266, -0.831095, -0.875454, 0.703638, 0.217085, -0.886764, -0.034779, 0.367953, -1.330590, -0.160373, 1.666811, -0.879484, 0.907697, 0.204346, -0.493201, -0.892093, -1.970825, -0.560274, -1.584238, -0.363948, -0.764422, 0.675614, 2.314371, -0.795333, -0.512759, 0.109625, 2.694571, -0.320923, 0.231863, 0.269594, 0.730260, 1.031615, 0.614924, 0.118755, -1.130206, -1.074651, 0.716812, 0.327547, -1.305955, 0.268753, -0.446093, -0.805593, 0.330870, 0.908739, 0.119853, -1.909271, 1.019081, 0.650978, 1.178185, 0.479770, 1.506427, 0.548287, -0.137846, -0.173857, 0.569479, -0.771818, -1.510230, 0.094363, 1.235422, -1.171559, -0.669253, -0.888831, 1.342733, 0.306569, -0.110335, 0.787696, -1.311203, -1.631160, -0.698563, 0.763609, 0.165298, -1.540938, -0.579769, 1.362025, 0.489529, -0.168974, 1.363089, 1.360016, 0.158731, 0.569206, -0.433700, -1.434596, -0.781457, 0.938912, 2.450022, -0.181041, 0.254620, -0.617511, 0.363047, 0.687670, 1.141103, -0.631924, 0.206880, -0.206839, 0.619732, 0.466541, 0.648561, -1.170062, 0.890412, -1.287486, -0.573536, -0.138101, -0.049675, 0.432492, -0.918957, 2.133202, 0.385154, -0.503877, 0.927895, 1.455049, -0.019818, 0.950322, 0.842331, -0.513541, 1.565555, 0.385097, -0.041971, 0.527205, -1.751739, -1.137310, 2.281250, 0.090714, 0.029891, 0.648132, -1.375468, 1.399584, 0.664215, -1.034558, 1.376278, -0.923505, -0.919619, -0.877759, -0.063351, 0.449556, -2.321961, -0.193347, 1.519354, 0.438511, -0.781446, -0.458336, 1.087979, -0.584879, -0.464355, 1.883744, 0.358777, -1.719022, 0.062937, -0.882190, -0.545765, -0.298924, 0.006025, -0.241737, 0.150216, -0.445682, 0.125215, -0.576941, -1.455831, -1.707092, -0.237061, -1.077043, 1.737693, -1.007069, -0.039801, 0.444028, 0.302103, 0.984256, 0.871039, 1.223249, 0.773058, 0.612394, 2.176614, -1.363910, -0.826080, 0.469314, -0.702826, -0.687872, 0.178542, 1.279566, 0.946444, -0.142691, -1.782523, 1.158043, -1.970165, 0.292134, 0.920224, 1.291350, 0.919516, -1.355353, -0.406332, 0.877542, -0.893353, -0.078881, 0.939628, 1.465891, -1.120725, -0.112671, 1.945407, -0.593268, -1.324380, -1.776101, -1.000620, 2.129123, 1.176679, -0.528812, 1.738531, 1.893578, 0.466419, 0.871072, -1.100719, 1.515462, 0.231334, -0.893359, -0.071043, -0.170108, 0.900216, -3.052384, -0.165906, -0.155277, -1.021669, 0.271065, -0.388483, 1.510968, 0.835928, 0.052915, 0.809890, 0.234164, 0.579433, 1.367598, 2.089753, -0.951635, 0.421135, 0.886154, 1.848532, -0.686448, 0.243487, 0.362641, 0.115117, -0.082868, -0.645830, -1.022738, 0.352840, -0.229888, 1.479145, -0.439949, 1.118345, -1.503363, 0.520115, -0.690661, -0.755765, 1.547948, -0.791662, -2.124136, -0.493485, -0.820498, 2.755218, 1.161979, 1.090863, -0.577151, -0.322706, 0.088857, 1.121680, -0.426547, -0.783499, -1.832231, 0.223444, -0.697123, -1.023059, 0.332343, -0.718873, 0.065334, -0.382100, 0.303974, -0.285433, -0.086163, 0.905434, 0.322978, 0.012016, 0.181630, -0.424428, -0.167205, -0.023544, -0.763481, 0.675475, -1.534944, -0.794864, -1.048670, -0.810172, -0.268000, -0.582463, -0.233772, 0.207003, 1.202341, 0.502748, 0.620330, 0.834388, 0.705962, 0.828964, 2.651482, -0.494951, -0.402799, 0.358528, -1.307880, 0.270489, -0.170392, 0.970555, -0.635788, -0.481298, -0.247181, 0.564859, -1.316783, -1.576614, -0.734073, -0.019462, -0.734920, -0.482825, -1.978248, -0.658912, 0.414963, -0.417249, -0.542582, 0.866367, 0.185913, 0.057066, 0.306508, -0.559185, 0.605736, -1.289379, -0.080138, 0.653721, -1.654405, -0.057272, 0.524817, -0.864102, -0.093709, -0.419917, -0.703324, 1.023497, -0.864964, -1.767865, 0.834885, 1.222555, 2.399563, 2.671062, 0.109732, 0.001551, -1.839303, -0.487816, 1.525771, 0.847283, 0.028712, 0.438563, 0.630743, -0.033405, -0.349438, 2.250763, -0.117097, 1.115419, 0.389861, -0.898892, -0.282474, 3.583772, -1.294503, -1.729502, -1.014405, -0.826274, 0.587948, 0.110012, -1.092119, -1.320275, -0.024286, -0.592236, -0.107409, 1.111784, 0.215014, 1.060520, 2.374489, 0.236474, 0.330240, -0.568462, -1.423505, 0.918966, -1.150645, -2.148659, 0.582162, -0.066176, -2.216145, -1.765604, 1.199772, -0.181152, -0.267626, -1.162830, -0.226987, 0.968930, 0.023551, -0.341542, -0.345462, 1.382537, -0.497282, -0.388321, -0.402356, -0.644338, 0.455277, -2.182575, 0.089198, -1.772338, -0.000660, -1.046146, 1.257459, 0.895967, 0.501054, 0.526309, -0.057557, 0.763205, 0.392618, 0.276458, -2.100098, 0.638827, 0.060878, 0.967597, -1.231212, -1.270514, -0.517227, 1.319060, -2.882717, 1.049116, 0.302717, -0.463908, -0.523161, -2.544879, 0.154400, -1.412090, 2.298742, -0.327199, 0.700055, -1.943167, -0.700067, 0.678387, -1.053528, 1.643977, -0.605584, -0.470350, 0.735526, 1.191442, -0.863388, -0.476405, -0.789407, -0.226346, -1.081931, 0.399712, -0.137068, 0.997717, -0.715762, 0.235580, -1.987720, -0.382658, -0.988794, 0.559362, -0.534062, -0.156940, 0.106919, 0.419229, 0.040150, -0.003779, 0.688930, 1.153102, 0.594382, -0.837748, -1.765744, 0.367585, 0.588306, 0.408373, 1.984601, 0.950195, 0.426315, -1.369355, 0.493131, 0.324156, 1.470709, -1.070800, 2.072244, -0.312206, -1.017098, -0.167271, -0.696898, 0.662766, -0.192963, 1.185682, 1.477660, -1.793925, -0.269673, 0.718329, 1.677384, 1.758613, -1.151400, 0.184560, -0.721552, 1.477232, -1.881326, 1.417519, -0.442435, 1.212926, -1.072967, -0.571987, -0.085972, 0.792840, -0.783953, 0.256891, 1.230065, 0.187942, -0.287036, 0.557629, -0.449196, 0.109029, -1.788605, 0.356428, -0.770316, -0.995052, 0.470117, 2.135684, 0.605431, -1.527643, -0.159648, 0.294380, 0.478385, -0.561767, -1.320838, -0.122328, -1.771967, -2.158499, -0.208400, -2.204410, 1.003141, 0.191853, 1.151517, 1.097687, -2.351511, 0.511501, 0.085975, -0.269222, 0.449182, 1.910237, -0.785736, 0.159857, 0.902128, -1.256713, 0.464155, -0.291090, 0.851108, -0.022040, -1.985589, 1.105326, -0.113510, -0.694997, -0.127669, 1.219421, 0.137831, 1.343930, 0.365153, 0.588763, 1.399833, 2.102851, 0.837034, -0.884078, -2.390311, 0.138392, -0.720619, 1.718100, 0.714324, -0.781631, -0.430011, -0.535043, -0.430427, -0.736778, 0.376045, -1.460084, -1.079509, 0.078949, 0.716019, -1.282196, 0.756377, 2.080098, -0.376698, -0.176397, 0.196263, 1.493241, -0.090407, -0.387091, 0.001574, 1.141896, 0.743660, -0.249028, -0.856038, 0.189112, -1.409181, 0.121464, -0.603531, -1.099870, -1.110393, -1.729090, -0.843713, -1.018568, -1.115646, 1.041194, -0.174135, -0.020532, -0.535761, 1.399954, -0.642887, -0.218689, -0.143871, -1.691505, -0.813948, -1.145295, 0.284046, -0.892825, 0.500233, 1.618757, -0.079692, 0.337978, 1.116847, 0.458130, -0.859034, -1.686366, 0.326221, 1.888409, 0.801365, 0.258755, 0.205952, -1.619214, 0.567957, -1.566846, 0.346348, -1.012133, -0.459450, 0.780378, 0.946504, 0.467132, 1.059346, 0.493902, 1.341746, -1.847809, -0.202963, -0.197429, -0.687122, -0.048360, -0.113354, -1.731887, 0.512575, 1.837881, 0.175318, 2.186043, 0.597855, -0.041992, -0.898142, -1.138501, -0.024333, 1.746508, 0.628893, -0.280222, -0.245546, 0.227325, -0.321241, -0.813965, 0.185174, 1.981893, -1.022425, 0.861642, 0.921106, 1.319623, -0.541254, 1.014444, 0.485936, 1.922689, 0.626055, -0.599521, 1.135721, 1.506574, 0.658685, 1.699535, -0.416711, -0.654532, -0.905258, 0.628929, -1.985545, 0.227078, 0.802870, -2.339376, -1.499863, -0.364073, 0.526038, -0.108919, -0.971868, 1.410155, -0.078556, 0.712502, 2.422457, -1.233539, -0.820402, 0.521904, -0.733994, -0.537726, 1.184515, -1.286666, -0.796158, -0.042814, -0.966719, -1.614149, 0.063807, 0.464472, -0.619940, 1.571774, -0.327949, 0.097984, 1.231742, 0.091925, -1.760101, 1.537127, 0.318143, -1.745130, -0.303384, 0.749363, -0.589891, 0.529616, -1.275960, -1.209775, -1.210734, 0.903262, 1.748601, -0.765602, -0.557330, 1.277058, -1.225612, -1.518502, 0.814991, -0.732192, -0.985354, -0.782027, 0.452752, -2.199778, 0.032920, 0.681395, -1.069107, -1.686328, 0.713696, -0.644675, -2.093954, 0.156607, 0.779505, 0.622691, -0.714057, -0.397631, -0.508838, 0.038750, 1.109007, -1.173785, 0.798940, -0.020201, 1.716624, 0.017457, -0.010392, 0.498961, 0.776702, -0.670577, 0.382525, 1.285087, 0.140380, -1.598527, 0.090192, -1.013058, -0.366242, 0.468154, -0.563420, -0.393789, -0.709936, 0.339879, -1.115827, -1.774862, -0.696465, -1.889685, 0.999033, -0.011001, 1.485419, 0.499569, -2.086567, 1.009328, -0.240072, 0.266270, -0.670775, -0.983899, 0.299479, 1.966244, -0.506120, -0.385772, -0.902780, 0.344977, 0.223756, 1.747575, 1.169546, -1.183115, -1.244027, 0.019229, -0.054524, -1.240984, -0.114923, 1.985210, -1.474623, 0.188086, 0.331104, -0.383971, -2.269053, -1.218064, 1.578689, 1.607582, 1.295578, -1.273219, 0.799678, -0.346555, -0.517814, 0.795277, -0.310816, 0.682858, -0.952981, 0.773351, 0.436191, 0.218122, -0.263510, 0.182157, -1.309551, -0.339335, 1.325562, 0.389754, -0.608204, 0.950066, 0.578611, 1.284821, -0.287538, -0.317484, -0.561101, 0.933934, 0.790470, 0.014033, 0.590689, 0.881719, -1.750510, -0.249412, -0.685764, -0.066026, -0.636797, 1.053769, 0.299484, -0.231829, 0.561249, 0.869148, 0.202172, 0.080943, -0.528707, -0.478519, 0.681365, -1.686774, 0.313141, 1.404471, 0.261180, -2.688293, 0.571477, -1.464012, 1.330193, 1.285232, 0.554151, 1.177779, -0.146309, -0.032118, 0.315050, 0.092767, -0.915070, -0.711547, -0.167576, -0.795963, 0.513571, -0.317327, 0.884622, 0.439754, 0.769976, 0.148264, 1.004959, 1.108967, 0.230922, -0.591919, 0.186186, -0.091849, 0.317977, 0.422849, -0.594294, -0.049926, 0.349251, -0.622254, 0.054652, 0.258810, 1.025522, 0.847407, 2.027513, -1.131926, 0.255720, 0.056681, 0.294379, 1.477588, 1.795593, 2.841332, 0.638452, -0.089822, -1.282307, 0.460536, -1.292814, -1.674175, 0.736287, 1.194580, 1.362381, -0.248177, 2.763866, -0.468855, 1.684889, 0.634313, 1.224679, 1.202680, 0.366497, -0.502832, 0.114326, 0.775692, 0.707094, -0.624075, -0.998042, -1.465682, -1.608948, 1.983278, 0.961374, 0.850991, 1.096858, -0.058059, -0.824958, -0.272354, 0.377622, 0.727791, 0.756043, -2.167806, -0.079379, 0.061938, -0.525084, -0.025080, -0.971132, 0.045147, -0.024153, -0.747360, 0.031440, -1.138494, 0.872990, 0.038219, 0.583900, 0.232242, 1.101989, -1.021581, -0.979162, 1.278852, -0.369428, -0.640907, 0.095700, 0.589268, 1.462978, -1.173309, -1.204658, 0.040882, 0.721503, -0.738608, 0.919856, -1.008912, 2.737592, -0.040306, 0.272736, 0.377199, 0.882150, -1.215659, 0.796941, 0.949407, -2.041494, 0.851782, 0.861940, 0.247230, -0.026049, -1.209143, 0.058386, -0.444750, 1.224392, 0.350707, 0.109906, 0.542535, -0.111448, -0.020867, -0.074601, 0.307063, -0.526339, -0.307027, 2.723751, 0.565074, -0.822591, 1.632062, -1.879461, 0.485291, 0.181420, -0.071550, 0.419082, 0.856462, -0.994900, 0.400743, 1.426447, -0.274386, -0.940943, 0.281320, -0.557610, 1.678154, 0.647064, -1.602059, 0.609542, -1.623300, -0.762362, -1.225789, 0.245500, -0.183086, -1.364244, -1.653740, -0.264367, -1.788992, -0.262011, -1.836511, -0.782024, 1.198095, -0.248391, 1.396536, 0.634534, 0.972823, 0.389440, -0.271680, -0.654720, -1.507218, -0.206504, -0.097122, 0.948816, -0.997981, -0.027403, 0.266805, 0.298522, 1.468453, -0.152491, 0.304746, 0.314058, -1.214896, 0.385605, -0.167446, 0.782445, 0.484027, -0.883636, 1.501691, 1.013091, -0.411673, -1.068320, -0.057948, -0.157156, -0.782577, -0.773749, -1.133051, -1.512232, 1.307226, -2.168643, 2.572652, 0.543628, 0.327899, 1.151732, 0.468286, -2.877307, 1.404967, 0.929544, 0.765332, 0.718172, -0.377178, 0.763952, -0.803518, 1.800803, -0.278450, 0.856337, -0.840829, -1.082801, -0.845616, 0.687720, 0.500876, -0.597365, -0.966749, 0.096001, 2.079226, -0.061015, -1.317970, -1.002767, 0.425700, -0.398979, 1.884185, 1.884861, 1.360654, 0.659405, -0.603464, 0.883154, 1.818174, -0.413203, -0.650124, -1.298272, 2.009307, -0.373009, 1.249636, 2.480514, -0.928376, 1.026510, -1.066687, 2.541660, 1.391439, -1.240591, 0.586530, 1.252458, 0.768471, -1.509367, -3.308151, 0.732625, -0.904178, 0.416392, 1.157591, 0.697177, 0.429230, -0.285792, 0.784580, 1.196368, -1.233490, 0.484277, 0.926323, -0.957258, 0.369791, -0.011751, 0.451592, -0.577674, -1.352895, 0.333098, 1.172874, 0.894371, -1.972156, -1.100095, 0.834811, -3.378958, -1.120840, 0.909981, -0.307710, 1.381929, -1.249995, -1.645711, 0.124190, 1.066230, -0.064364, -2.254793, -0.476843, -0.255272, -0.415886, -0.356953, -1.497092, -0.358461, -1.297569, 0.419586, -0.076843, -0.854961, 0.489938, 1.317750, 1.213654, -0.140617, 0.702249, -0.431305, -1.432142, -1.363430, 0.070399, -0.533741, 1.101233, 0.628667, -0.262804, -0.346103, 1.245095, -0.697738, -1.283746, -0.430597, -0.342252, -0.608680, -0.368261, -0.987953, -0.968276, 1.210413, -1.619188, 0.220922, 0.220923, 0.917857, 0.417097, 2.710490, 0.204958, 1.208441, 0.297487, -0.632739, -0.077616, -1.625751, 0.811498, 0.844976, -0.930670, 0.320973, -1.466641, -0.802738, -1.229581, -0.527568, -0.388481, -0.600942, -0.812925, 0.089037, 1.042331, 0.697095, 1.041976, 0.841200, -0.372665, 0.406444, 0.313035, 0.109032, -0.627312, 0.567023, 0.499543, -1.056905, -0.109263, -1.505852, -0.500190, -0.548058, -0.576000, 0.587096, -2.107601, 2.107384, 0.537675, 0.233174, -0.962088, 1.929356, -1.144698, -0.193284, 0.195559, -1.243746, -1.483192, -0.413679, 0.297511, 0.949318, 0.477355, -1.176845, 0.824522, -1.294444, -0.640632, -0.113315, -0.368979, -1.632090, -0.040953, -0.079079, 0.336914, 0.807373, -0.022013, -0.709087, -1.204680, -0.294800, -0.422151, 1.158776, 1.205850, -0.634409, -0.028611, 1.966007, -0.686278, 0.159568, -0.871935, 0.804221, 0.539248, 0.117476, 2.153937, -1.068275, -0.092336, 1.098936, -0.018917, 0.663683, -2.043938, -0.051607, 0.894947, 1.288743, -1.553334, -0.840564, -0.030582, -0.927625, 0.325786, -0.825303, -0.947226, -0.934414, -0.035233, -0.660939, 1.198237, -0.754666, 0.231794, 0.305097, 1.059796, -1.033747, -2.306097, 1.326420, -0.519798, 0.222648, 0.565705, 0.230763, 0.488902, -0.738702, -0.364718, 0.506710, 0.600007, -0.410848, 0.664878, -1.178469, -0.383114, -0.946326, 0.300169, 2.220961, 0.533516, -0.318731, 0.992646, -0.441359, -0.131924, -0.679874, -1.463736, 1.483412, 1.147133, 0.065517, -0.428697, 0.821423, 1.273124, -2.420859, 0.831836, 0.782240, 2.203317, -1.847485, -0.556955, 0.004232, 0.494900, -0.562387, -0.191073, -1.956669, 0.841326, -0.750666, 0.388986, -0.548745, -0.017945, -1.478740, -1.182418, -1.291775, 0.404558, 0.567286, 2.445512, 0.386242, 0.110538, 0.204758, 2.170424, -2.423923, 1.324845, 0.249030, -1.362698, -0.286939, -0.598709, -0.355531, 0.611480, 1.446425, -0.296740, 1.626581, -1.383874, 0.699978, 1.171134, -1.396132, 0.018977, 0.087834, 0.254935, -0.741557, -0.760367, 0.264579, -1.459191, -0.751511, -0.203004, -1.046629, -0.677089, 0.201595, -0.544643, -1.909872, -0.590559, -0.196011, -0.492940, 0.344565, -0.316514, -1.044959, -1.595267, 2.276252, -0.945386, 1.910003, 0.301038, 0.413702, -0.219719, -0.312500, -0.361788, -1.390893, -1.306150, -0.288764, -1.294673, -2.381541, -0.580185, 0.273662, 2.304983, 0.271498, -2.192776, 1.540305, 0.327031, -1.357126, -0.602209, 0.596791, 0.038069, 0.204363, -0.461752, 0.824995, 0.491174, -0.379742, 1.262923, 0.958812, 0.526484, 1.814628, 0.664224, 0.696281, -1.084509, 0.681001, -0.550351, 0.626911, 0.681214, 0.525382, -0.008102, -1.360859, 0.697379, -0.752416, -1.226350, 0.333848, 0.159440, 1.526454, 0.910317, 0.714478, -0.318017, -0.523722, 0.308214, -1.305772, 0.557538, 0.164972, -0.704804, -0.816602, 0.915265, 0.032985, 2.407387, 1.039023, -0.961177, 1.020939, -0.726604, 0.919537, 0.641625, 0.515392, -0.064317, -1.971238, 1.140480, -1.555529, -0.582825, 0.459114, 0.914118, 1.403499, -1.032463, 0.604782, 0.746903, -0.067092, 0.263470, -1.837725, -0.850796, -0.943436, -1.938775, 0.930313, 1.637621, -1.248867, -0.144989, 1.335036, -0.369851, -1.430273, -0.396013, 0.428406, 1.428915, -0.714920, -1.860152, -0.887155, -0.951437, -0.931176, 1.390014, -0.385535, 1.474930, 1.906364, -0.460858, 1.174290, -0.540534, 0.088838, -0.989319, 0.942682, -0.396803, -0.038699, 0.268658, 1.498614, 1.196952, -1.030894, 0.329766, 0.482987, -0.282981, 0.671319, -1.349140, 0.221897, -0.573209, -0.472648, 1.799908, -0.537823, 0.518324, 0.962883, 1.339337, 0.542371, 1.766081, 0.082193, 0.185839, -0.300633, -0.137414, 0.026367, -1.123260, -1.089690, 0.115906, 1.892611, -1.485620, -1.152223, 0.435520, 1.028936, -0.915916, 2.479481, -1.782195, -0.417469, 0.008988, -0.070528, -1.265108, 0.298844, 0.477083, 0.607140, 0.194186, 0.641839, 1.256154, -0.161047, -0.318711, -0.327091, -1.201591, -0.419389, -0.090740, 0.474517, -0.170993, 0.432529, 0.129556, 0.750366, 1.314587, 0.547982, 1.021444, 1.069203, 0.709449, -1.803092, -0.378879, -0.088747, -0.664312, 0.494705, 0.108875, 1.582420, 0.605303, 1.097416, -1.136252, 0.962630, -0.114604, 0.301794, 1.292046, -0.271193, -0.304249, 0.401568, -0.580388, 0.312145, 0.303372, 1.903849, -0.586008, -0.423948, 0.265597, -0.376417, 1.178659, 1.479222, 1.619156, 1.044988, -1.093583, -0.435230, -1.283998, 1.023035, 0.196204, 0.050877, 0.637643, -1.600393, 0.875355, -1.841498, 0.119382, 0.251772, 0.707243, 0.342991, 0.539560, 1.652902, 0.319593, 0.547184, 1.784397, 0.716315, -0.969803, -0.769177, -1.030999, -0.302631, 0.939049, -2.591128, 0.614226, -0.550341, 0.776557, 0.053298, 2.424106, 1.696358, -1.320649, 0.104384, -0.692818, 1.348013, 0.468785, 0.280820, 1.171937, -0.007780, 0.226824, -0.787666, 0.915156, 0.723561, -0.186396, 1.431703, 0.854399, -0.779900, -1.234929, -0.329158, -0.780113, -0.143752, -0.880068, -0.027821, 0.923269, 0.606137, 1.221400, -0.794988, -0.639636, -0.758908, -0.843589, -0.855502, 1.415207, 1.326428, -0.825090, -0.354446, -0.658662, 0.932430, -0.498781, 2.317732, 0.521507, 0.493516, 1.306170, 0.080151, -1.719056, -0.705620, -1.533758, -0.472610, 1.495312, 0.051000, -1.559097, -0.359741, 0.804364, 1.057133, -0.289193, -0.378599, 1.653079, -0.400758, 1.918728, -0.292730, -1.371060, -1.646813, -0.094614, -0.421445, -0.458133, -0.418669, 0.956764, 0.309983, -0.896957, -0.019367, -0.584378, -1.590409, 0.301317, -0.332146, -0.081008, -1.616112, -0.598941, 1.291263, -1.065026, -1.024502, 0.373389, 1.465848, 0.890238, 1.234847, -0.199647, 0.948799, -0.500763, -1.036588, -0.745491, -1.830129, -0.140807, -0.168522, -0.217274, 0.330723, -0.255682, -1.478547, 0.284352, -0.043808, -1.120008, 0.707696, 0.316642, -0.692405, -1.950322, -0.570129, 0.004717, -1.857131, 0.118761, -0.086331, -1.332689, -0.677188, 1.336037, 0.692782, -0.365467, 0.194880, 0.567802, -1.737232, -1.250864, -0.114982, 0.747633, -0.819854, 0.201411, 0.010733, 1.343882, 0.524695, 0.436572, 0.520546, 0.847821, -0.320379, -0.601157, -0.868980, -0.387812, -0.103090, 0.974453, 1.398122, -0.954004, 0.592015, 1.261457, -0.347106, -0.145252, 0.531946, 0.901868, -0.139857, 0.838785, -0.239271, 0.407745, -1.222600, -0.814237, 1.247454, -0.528840, 0.738049, 0.306092, 2.055893, 0.016198, 0.725570, -0.693108, -0.040687, 1.086423, 1.753733, 2.635598, -2.124676, 1.316912, 0.882211, -0.182426, -0.097462, 0.137660, -0.463837, 1.234253, -0.089568, 0.158560, 0.199999, 1.499169, -1.945089, 0.655442, 0.108171, 1.447518, 1.636001, -0.541791, 0.593860, -0.586946, -0.750874, -0.985495, -0.023771, 0.762704, 0.568701, -1.129595, 1.983391, -0.345783, -0.912326, -0.812670, 0.597849, -0.906531, 1.327343, 0.421508, -1.029603, -0.607250, 1.246089, 0.068783, -0.270205, -0.526293, 0.122160, 1.385993, 1.352670, -0.903220, -1.071225, 0.583900, 0.443493, -0.090107, 0.126837, 0.538319, 0.255468, -0.132981, -0.206274, 1.128867, 0.176533, 0.509580, -0.607686, 0.139552, 0.120067, 0.712809, -0.856388, -1.215834, 0.456864, 0.708185, -0.897323, 0.230488, -0.080045, -1.814398, 2.256569, -0.816994, 1.973039, 0.240091, 1.106864, -0.095830, 0.399104, -0.147433, -1.134093, 0.566147, -0.410151, 1.410062, -0.829393, 0.520929, 0.239539, 0.134553, -0.746424, -0.486461, -0.438764, 0.029918, -1.046096, -1.015934, -0.139520, 0.987163, -0.278789, -1.531670, -0.313904, -0.958798, 0.492169, -0.779903, 0.643487, 0.385838, -1.249967, 0.737050, -0.713977, 0.346928, 1.091906, -0.338772, -0.304467, -0.988710, 0.619985, 0.502091, -0.150041, 0.808100, 0.889905, 0.834058, 0.775391, -0.512836, 1.658357, 0.416369, -0.842851, 0.238922, -0.462182, -0.404107, -0.741630, 1.556167, -0.869417, -1.534832, 0.382278, -0.335983, -0.031708, 0.351079, 0.134860, -1.445333, -0.428648, -1.266075, 0.292787, -0.813467, -1.425180, -1.398613, 1.532351, 0.203353, 1.377867, -1.052320, 0.542145, -2.079486, 0.526751, -0.435422, 0.112951, -1.243429, -0.863001, 0.383318, -0.655635, 0.364293, -0.643945, -1.648842, 0.446640, -2.328080, 1.435825, -0.685255, -1.217336, 0.123734, -0.370162, 0.326280, 0.798418, -0.372092, -0.714970, -0.145333, 1.610793, 0.356216, 0.457596, 0.712985, -0.444310, 0.733337, -0.892675, 1.111201, -0.252817, -0.837535, -0.788782, -0.412233, 1.075867, -1.373759, 0.794280, -0.240515, 0.724207, -0.067016, 2.118749, -0.060322, -0.402310, 0.732265, -0.274063, -0.646122, -0.611973, 0.430229, 1.054136, -0.040591, -0.605241, 2.110096, -0.361311, 0.423276, -0.258559, 0.859665, -0.926667, -0.250056, 0.898539, 1.073115, 0.169196, -0.917704, -0.229519, 0.622024, 0.308891, 1.575428, -0.032481, -0.796108, 0.691449, -1.320437, -0.348208, -1.271779, 0.797208, 0.720069, -0.110669, -0.037529, -0.440502, -1.029599, 0.004869, 0.699893, 0.715856, -0.321253, -0.126482, -0.355601, -0.532923, 1.111016, 0.898301, -1.254499, -0.253172, -1.109582, -0.271897, 1.916230, -0.513085, 1.655011, -0.606123, 1.990858, -0.641791, 0.248544, -1.420572, 1.058592, 0.125604, -0.254184, -1.343229, 1.680490, 2.308031, -0.532147, 0.212972, -1.186526, 0.052062, -0.641231, -1.408659, 1.071984, -1.214022, 1.581080, -0.359345, -0.037057, -0.140944, -1.817753, 1.165446, 0.684604, -0.389373, 2.693231, -0.316605, -0.349264, -0.233301, -1.889239, 2.026427, -0.588344, 0.737319, -1.876171, -1.890059, -1.316698, 1.585736, -0.150989, 1.347198, -0.226498, -1.726410, -0.708460, -1.324823, -0.440005, 0.180751, 1.804125, -0.220699, 0.662965, 1.005750, 0.123058, -0.510027, -1.534929, -0.817585, 1.805377, -0.299890, -0.329219, -0.342869, 0.114420, 0.818482, 0.640968, 1.525861, -0.314798, -0.291423, -0.454683, -0.432605, -0.248657, -1.156749, -0.179876, -0.141269, -1.215492, -0.286250, -0.051652, 1.191510, 0.467788, 0.255979, 0.223685, 0.203502, -2.474592, 0.234127, -0.180483, -0.672638, 0.785141, 0.066506, -0.865789, -0.831114, -0.475468, 1.275852, -0.910007, -0.768915, -0.332906, 1.186434, 1.370451, -0.582893, -0.241000, -1.222048, -0.947822, -0.801871, -1.245451, 1.837009, -0.326227, -0.217278, 0.938735, -0.202878, 0.431085, 0.215665, -1.594189, 0.652198, 1.375565, 0.454405, -1.349134, -0.620641, -0.202386, -0.079880, 0.416635, -0.788078, 0.419681, -0.885545, -0.427404, -0.901947, -0.309603, 1.948034, -1.221698, 0.372437, 0.925543, 0.825739, 0.389059, -2.178058, 0.398005, 1.655316, 1.895604, -0.592197, 1.182354, -0.628639, -2.492349, 2.437147}, + { 2.339887, 1.620140, -1.397717, -1.792415, -1.651464, -0.417458, -1.515943, -0.727748, 0.658773, 0.030530, 1.420214, 1.112668, 0.126961, -1.828202, -0.108042, 0.294892, 0.499983, -0.975588, -0.202786, -0.988190, -0.396316, -0.440190, -1.204370, -0.185122, 0.848085, 0.016918, -0.559986, 1.217533, -1.266320, -0.389045, 1.403836, 0.186828, -0.552412, -0.277355, -0.077300, -0.818491, -0.036863, -0.031269, -1.104384, -0.217681, 0.108529, 1.483026, 2.700808, 1.323355, -1.429389, -0.359832, 2.384762, 0.109584, -1.614355, 0.318306, 0.218195, 0.054861, -0.381109, -1.406280, -1.633760, 0.220129, 0.244932, -0.495095, -0.697085, -0.721289, 0.558541, -0.426999, -0.810297, 0.558341, 1.019244, -0.279632, -0.092744, -1.030451, 0.184251, -1.528850, -0.294207, -1.761215, -1.603183, -0.801045, 1.265873, 0.402463, -0.406751, 1.189645, 0.065515, -0.191021, 0.722818, -1.718461, -0.880315, -0.769453, -0.182268, 0.066402, -0.550959, 0.339106, 0.818443, -1.963967, -0.035421, -1.949418, 0.449765, -0.369531, -0.342174, -1.042240, -0.845946, 1.873936, -1.217835, 0.389689, -0.546089, 0.872542, -0.086338, -0.190501, 0.615653, -1.194026, 2.453911, -0.559747, -0.720787, -0.265108, 0.772782, 0.802450, -1.430144, -1.146555, -0.154464, -0.636835, -0.585239, 0.266004, 1.499096, -0.981671, 0.200274, -1.367797, 0.137719, 0.486250, 0.239502, -1.270316, 1.105726, -1.420166, -0.603872, 1.408102, 0.017191, 0.552936, 0.468244, 1.155060, 0.344181, 1.215376, 1.220017, 0.392431, 0.326882, 0.933896, 1.356346, 0.627984, -1.284024, 0.770552, 1.302408, -0.310756, -1.280897, -0.361148, 1.437473, 1.226935, 0.349923, 0.657697, 1.309943, 0.121834, -0.574194, -0.193201, 0.865346, 0.366080, 0.552767, 0.590743, -1.737379, -0.998452, 2.580730, 1.805921, 0.462659, 0.075984, -0.092635, 0.337560, -0.817497, 2.122266, -0.161357, 0.508321, -1.330348, 0.348236, 0.419723, 0.556637, -0.295095, -1.626863, 0.645254, 0.117203, 0.653968, -0.859729, -0.188552, -1.654380, 0.905129, 0.565809, -0.665582, 0.231161, -2.048409, 0.776696, -0.179701, -1.672784, 1.253463, 0.821780, -0.794204, 0.857018, -0.330969, -1.396939, -0.606409, -0.270470, 1.766844, -0.436703, 0.547275, 1.701216, 0.707859, -0.651268, -0.140109, 1.094223, 0.008815, 0.177185, -2.736145, -1.386136, 1.936002, -1.028178, -0.288759, -0.091952, 0.105270, 0.002987, -0.659165, -0.322631, -1.241251, 0.378708, -0.679698, 0.471250, 0.091925, -0.711658, 1.044602, 1.463665, 0.948397, -1.512430, -1.473283, 1.258366, 0.476375, -0.693492, 0.817557, -0.293565, 1.395796, -1.226122, -0.261127, 1.042383, -1.525834, 0.466103, -0.990431, -0.066383, 0.662328, 1.560231, 1.446582, -0.420327, 0.093900, -0.616068, -0.396922, -0.161616, -0.361351, -0.726517, 0.931897, -0.110255, 0.029895, 0.702895, -0.486218, 1.500088, -0.911554, 0.192895, 0.610582, 0.107673, 0.221257, -0.347135, -1.265169, 1.056425, -0.005606, -0.162892, 0.247074, -0.818270, 1.127262, -0.514588, -1.269626, 0.043387, 1.890463, 1.899805, 0.106100, 0.876978, -0.420545, 0.397927, -0.519026, 2.251690, 0.384642, -0.857362, 0.072714, -2.513459, 0.528260, 0.526779, 1.809626, 0.160605, -0.256846, -0.046370, -1.070561, 1.000023, 1.813775, -0.715343, -0.494603, 0.369020, -1.940010, 1.296672, 0.303521, 0.124397, 1.046138, -1.526003, 0.092771, -0.872271, 0.765671, 0.511123, -0.386684, 0.753641, -1.156579, 0.474385, 1.213263, -1.078144, -1.280978, -0.968109, 1.120123, -0.610951, -0.812206, -0.451754, -0.437373, 0.162306, -0.982819, 0.916856, -0.614820, -0.097352, -1.845380, 1.609066, 1.472736, -0.727985, 0.079987, -1.351291, -0.912343, 0.694572, 2.532907, -0.642715, 0.582071, 0.724823, -2.349295, -0.955874, -0.400967, 0.430401, -1.173242, 1.219665, 0.753479, 0.536411, 0.522888, 0.134859, -0.940140, 0.236503, -0.292762, 1.779085, -0.504632, -2.624163, 0.353690, 1.959040, 1.016121, 1.830055, 0.667395, -0.135537, -0.438823, -0.604406, -0.523737, 0.999362, -0.965137, 0.675641, -0.157534, -1.120798, -1.375923, -0.745494, -0.902841, 0.390616, -0.302744, -0.559256, -1.318172, 1.585740, -0.466179, 0.041782, -0.068003, -0.591694, 1.065515, 0.199168, 0.301454, 1.178663, 0.343721, 0.578013, 2.006254, -0.292315, -0.027169, 1.169843, 0.281810, 0.510632, -0.327149, 0.929928, 0.271907, -0.230353, 0.199114, -0.542152, 0.173365, -3.248751, 0.453610, 0.527880, -0.793493, 2.061254, -0.841321, 0.445838, 1.355060, -0.341512, -0.311967, 1.683860, -0.986819, 0.727597, -1.283289, -0.170094, -0.809002, 0.180786, -0.124404, -1.220071, -1.146966, 0.071316, 2.213066, -0.584928, -1.348610, 0.874946, -0.598879, 0.868833, 0.273724, -1.445279, 0.167242, 1.686287, -0.066773, -0.193377, 0.431002, 1.831211, 0.697474, -0.544411, -0.289762, 0.392250, 0.659892, -0.388241, 0.638402, -1.022027, -0.628311, -0.563202, -0.181183, 0.482651, -1.029940, -0.967300, -0.484850, 0.682934, 0.038888, -0.498950, 0.371687, 1.950650, -1.533247, -1.271800, 1.922040, 1.266094, 0.006514, -1.202719, -1.549649, -1.111651, 1.145107, -2.336985, -1.227338, -0.485622, 1.309206, -0.029743, -0.459101, -1.083666, -0.084536, 1.232778, 0.069419, 0.289925, 1.440014, -0.616036, 0.472039, 1.235283, -0.098531, 0.992890, -1.023179, -0.224086, -0.804266, -1.763057, 0.277883, 0.570709, -0.239120, -0.705175, 0.077777, -0.851741, -1.382025, 0.999434, 1.300331, -2.517501, -0.483995, -0.435277, 0.304834, 0.240393, 0.463540, -0.271114, 0.476971, -2.117063, -0.825701, -0.208910, 2.078837, 0.874864, -0.460237, -0.150332, 1.837842, 0.270703, -0.650420, 0.865180, 0.083523, 0.230363, 1.365837, -0.590013, -0.347006, 0.184882, -0.296471, 0.624956, -1.346022, -0.047095, 0.964943, 0.365237, 0.795534, -0.775335, -0.447820, 1.092894, -0.717920, 0.794327, -0.264046, 0.105361, -0.213335, -0.831172, -0.689261, -1.185437, 0.555137, 0.942949, 2.394449, 1.151925, 0.379334, 0.616034, 0.672809, 0.673535, 0.146411, 0.284025, -0.007156, 0.113903, -0.316693, -0.221654, 0.362333, -1.738374, -0.590817, -0.318511, -0.247263, -1.059371, -0.108953, 0.141335, 0.203960, 0.738039, -0.104707, -0.042683, -1.611838, 1.544860, 0.481808, -0.598356, 1.230854, 0.302006, 0.012926, -0.775176, -1.045218, 1.185867, 1.272498, 0.439803, 0.550516, 0.064741, -0.120913, 0.696555, -0.158317, 0.789790, -0.307472, -1.034022, -0.230170, 0.390069, -0.509312, -0.999874, -0.325439, -0.409116, -0.665791, -0.804070, 0.023495, -0.472189, 0.260459, -0.359123, 0.771365, 0.271621, 1.441185, 0.332482, 0.013846, 0.366242, 0.697469, -0.729197, -0.383513, 0.589389, 0.101290, 0.951068, -0.510345, 0.624408, -0.348682, -1.098903, -0.848618, 0.060044, -1.885940, -0.035841, 0.029267, 1.557899, 0.995270, -0.790554, 0.436663, -0.848539, -0.303771, 0.172670, -1.356799, 0.445098, 0.137210, 1.243937, 1.171611, -0.056864, 1.110676, -0.932160, 0.533369, 0.560239, 0.124944, 0.505434, -0.494534, 0.096916, -0.728359, -0.625288, 0.235163, 0.373002, -0.540880, 1.202525, -0.014339, -0.824045, -1.873509, -0.077882, 0.748897, -1.710542, 1.216395, 1.084436, -1.090989, 0.793859, 0.818533, 2.062217, -0.411011, -3.375772, -2.021983, 0.366885, -2.691701, -1.665082, -0.995476, -1.409712, 0.023805, -0.592694, 0.007838, -0.466110, 1.046834, -2.271525, 1.912326, 0.049592, -1.393038, -0.172442, -1.185794, 0.286987, -2.622704, 0.900961, -0.695789, -0.163837, 0.297264, -0.372835, -0.069932, -0.135428, 0.075737, 0.639942, 0.512228, -0.070645, 0.091322, -0.958377, 2.135288, -0.142732, 0.597814, 1.180662, 0.669671, -1.303432, -0.212500, 0.573757, 0.413966, -0.308574, -1.186860, -0.070545, 0.642519, -0.462130, -0.484110, -0.886547, -0.600770, -1.290298, 0.358749, 0.114589, 0.125301, 0.285748, 0.229389, 1.783901, 0.305419, 1.227210, -0.376675, -0.912810, 0.529526, 1.147198, -0.354719, 0.301027, -0.262007, 1.349041, 0.460054, 0.323833, -0.535417, 0.398359, 0.285918, 0.199553, 1.608457, 1.080666, 0.531422, 0.265556, 2.468230, -1.120097, 0.299419, -0.009829, 0.798856, -0.900978, -0.595015, -1.118382, 1.352308, -0.765283, 1.022837, -0.081662, -0.614206, -0.462349, 0.947365, 0.546488, 0.262596, -1.383535, -0.850644, -0.272334, 0.331986, -0.690244, 0.657941, 0.962619, -0.250746, -0.790014, -0.421113, -0.882083, 0.026295, -0.029447, 0.678367, -0.018902, 0.857854, 0.673230, -0.492088, 1.239871, 1.082987, -0.759082, -0.171095, -0.463199, -2.026721, -0.877298, 1.562342, -0.398282, -2.328192, 1.684431, 0.495766, 2.162920, 0.437524, 0.465590, 1.120987, -1.355737, 1.361169, 0.263885, 1.814896, -0.697334, 0.674721, 0.622827, -0.029780, 0.255792, -3.248760, 0.733671, -0.650071, -1.415894, 0.476000, 1.031410, -0.343213, 1.274329, 1.857819, -0.978104, -0.006329, 0.312723, -0.663103, -0.417864, -1.053870, 0.693769, -0.836607, 1.471947, 0.259804, -0.765705, 1.440222, -0.252867, 0.494024, 0.919247, 1.650520, -2.201987, -0.432168, 1.822201, -1.368991, 1.076670, -0.496645, -0.446964, 0.027530, 1.093180, -0.188253, 0.365788, -0.318026, 0.343727, -1.677257, -0.248994, -0.618624, 0.906792, 0.692152, -1.261671, 1.263207, 1.468797, -0.902294, 0.580883, -0.519553, 1.189655, -0.037853, 1.118424, 1.806509, -0.618764, 0.041535, -0.917750, 0.065988, 1.511952, -0.866867, -0.987826, 0.706596, 2.274445, 1.829628, 1.546664, -0.364162, 1.721251, -1.137282, -0.035184, -0.532842, -0.832020, -0.322955, -0.661472, -0.357880, -1.102991, -0.188798, -0.070132, -0.574109, 0.938241, 1.105883, -0.245666, 0.899721, 0.539366, -1.078748, 0.939915, 0.682323, 1.080436, -0.346673, -1.537215, 2.056692, 0.406541, -1.328311, 0.133209, -0.810740, 1.227201, -2.066248, 0.390462, -1.305965, -0.867083, -1.212793, -1.917906, 0.700318, 0.175547, -1.759913, -1.823506, -0.550040, 2.111104, 0.658175, -0.317664, -0.647261, -0.847860, -2.200311, 1.336159, -0.393175, -0.162713, -0.843201, -0.121724, -0.644852, 0.610801, -0.398535, -0.512464, 0.839095, -0.103021, -0.367010, 0.716079, 0.659539, 0.056364, 1.293032, 0.344292, -2.261811, 1.223168, 1.213226, -1.657508, 0.952406, -2.438802, 0.783962, -1.482991, -0.746309, -0.336616, -1.755589, 1.977362, 0.630243, -0.317651, 0.701011, -1.645657, 0.425999, -1.170024, -0.536810, 1.116719, -0.983931, 0.159605, -0.461658, 0.085128, 0.857067, -0.038479, 0.250132, -0.146855, 0.325708, -0.927673, 0.623058, 0.878201, 2.328608, 0.139591, -1.123887, -1.885152, -1.103027, -0.690594, 2.081377, 1.039609, 0.631083, -0.047167, 0.768900, 0.973730, -0.730071, -0.795100, 0.945922, -0.593393, 0.060149, -1.197378, -0.642757, -1.422758, -0.270091, -1.918196, 0.019016, 0.553899, -0.725723, -0.049975, 0.730480, 0.194865, 1.583288, -0.793429, -0.438834, -0.130464, -1.644154, 0.702824, -1.913531, 0.106694, 1.126528, 0.420040, -0.445293, 0.571887, -0.157531, -0.692041, 2.587095, 1.337007, 0.960686, -0.689337, 0.388421, 1.068272, 0.515389, 0.653977, -0.564628, -0.468683, 0.653606, -0.090175, -0.186334, 0.908691, 0.578606, -1.851776, -0.548075, 1.548749, 0.651764, 1.360624, 0.337582, -0.691879, -1.418431, 0.807978, -0.297172, 0.034912, 0.410237, -0.942554, -0.439214, 0.457965, -2.145832, 0.351105, -1.170805, -2.719146, -0.158314, -0.614586, 0.424879, 2.754127, 1.054044, 0.601622, -0.040545, -2.170149, 0.147270, 0.560472, 1.528347, 0.567829, -0.018008, -0.381658, -0.732215, 0.266872, -1.043024, 2.575083, 0.539466, -0.841671, -0.771651, -0.414010, 0.649392, -0.257237, 0.909045, 1.078043, 0.015821, -0.891975, -1.375473, -1.265283, -1.001856, 0.352868, -0.153865, 0.551990, 1.297729, -0.827339, -0.590362, 0.572605, 0.537236, 1.780803, 0.044854, -0.722309, -0.412978, 0.495463, 1.357161, 0.880735, 1.548529, -0.512789, 1.093130, 0.607201, -0.940269, -1.346058, -0.662537, -1.630921, 1.736744, 0.376064, 0.588518, -0.731392, 0.320002, 1.897495, -0.561855, -0.043211, 0.329067, -1.597663, 2.937750, 0.631671, 0.539890, 0.283874, 1.965470, -0.989744, 0.570398, -1.568765, 1.025972, -0.541943, -0.373208, 0.230093, 0.262655, 0.505942, -0.944142, 1.283452, -1.192868, -0.744110, 0.659878, -1.000340, 1.589922, 1.655994, -1.167801, -0.269138, -0.363151, -0.871481, -0.420680, 1.040005, -0.431508, -1.281230, -0.512318, -0.218924, 1.348046, 0.633733, 0.088889, -0.245016, 0.591242, 1.132514, 0.712195, -1.296513, -0.934248, -0.302543, 1.436858, 0.531896, -1.867159, -1.236130, -0.408434, -0.050282, 0.672589, 1.029602, 1.393088, 0.531739, 0.930622, -0.317769, -0.467297, 0.197542, -0.647020, -1.307058, 1.416776, 0.176016, 0.828286, 0.079681, -0.687654, 1.595828, 0.602707, -0.151113, 0.031936, 3.166681, 0.867356, 0.539911, 0.951033, -1.111953, 1.312779, 2.140893, -0.365097, -0.756451, -1.587729, 0.045646, 0.901133, 0.421425, -0.813058, -0.985248, -0.318459, 0.445675, -1.065751, 0.510675, -1.183406, 0.083105, 0.975794, -0.009505, -1.976220, -0.032721, -1.863482, 0.183437, -1.450258, 0.571176, 0.171300, -1.051524, -0.025137, -0.364907, 1.242000, -0.011513, 1.700560, 0.015861, -2.547197, 0.888665, 0.973877, -1.753945, -0.604646, 1.240845, 0.276626, 0.835803, -0.079542, 0.050746, -0.508911, -1.665020, 0.730793, -0.072332, 1.024210, -1.746898, 0.687907, 0.378025, 1.605892, 0.315604, 2.206854, -0.138711, -1.412615, 0.413787, -0.060648, 0.664999, 1.597237, 0.382786, 1.500695, 1.860595, -0.080737, 0.256487, 1.162947, 0.502315, -0.136137, 1.601147, -0.151200, 0.765266, -0.281051, 0.685311, 1.023502, 0.317818, 0.086314, -2.154653, 1.258030, 1.145675, -2.078759, -0.397960, 0.402890, 0.967976, -0.169267, -1.980233, -0.786104, 0.329992, -0.388028, 1.173585, -1.063861, 0.061067, -0.339741, 0.671392, 1.254569, -1.409940, 0.937403, -0.066188, -0.379947, -0.446582, 0.000128, -1.019786, 0.526527, -0.689360, 0.014842, -0.379158, 0.998085, -0.359716, -0.278478, -1.638923, -0.355024, 1.221687, 0.380838, -0.580778, -0.991513, -0.774157, 0.831976, -0.985778, -0.795102, 0.415400, 0.739446, 1.854077, 1.745931, 1.129811, 0.892184, 1.015465, -0.667754, 0.254367, -0.269651, 0.844039, -0.282847, -0.131188, 1.069626, -0.924020, 0.187840, 1.515246, -1.576336, -0.435936, -1.962785, 1.219529, -0.188467, -1.479822, -0.106636, 0.757747, 0.444520, 0.151669, 1.308655, -1.848307, 0.819246, -0.691925, 1.042457, -1.889494, -0.008251, 0.352980, 0.310005, 0.601249, -1.275811, 0.532965, -0.220867, -0.352776, -0.009527, 0.542688, 0.321655, -1.459785, -0.524239, 0.921200, 1.428630, -2.049950, 0.196952, -0.182161, -0.598679, -0.272160, -0.624831, -1.142742, 0.400120, -0.235473, 0.615551, -0.407898, -0.951401, 0.380072, 1.085257, 1.212558, 0.185780, 0.733815, 0.574640, 0.457952, 0.096082, 0.732680, 0.082707, 0.151700, 0.183100, -0.863619, 0.300097, -0.718123, -1.010734, 0.124748, -0.815479, 0.099243, -0.476195, -0.536010, -0.538039, 0.292785, -2.351339, -0.276826, -2.499783, -0.075705, -0.897374, -0.285535, -0.953430, 0.198136, 0.343154, 0.556603, 0.561553, 0.817719, 0.668316, -1.485080, -1.068298, -0.672301, -1.348186, 0.711111, 0.724554, 0.581014, -0.783041, -0.397042, 1.331664, -1.117222, 0.932444, 0.030756, -0.240641, 1.513190, 0.263395, 0.351389, 0.275304, -0.524006, -1.127194, 0.087733, 0.409534, 0.583871, -0.527440, -0.322752, 0.190587, -0.001396, -1.250543, 0.029237, 0.723774, -0.083851, 1.350279, 1.790519, 0.939365, 0.117923, 1.680303, 2.099375, 1.932916, -0.253220, 0.171509, 1.406413, -1.611971, -0.258640, 0.265394, 0.438333, -1.194541, -0.082098, 2.485423, -1.182706, -0.961690, 0.857870, -2.231763, -0.427951, 0.753440, -0.523252, -1.658902, -2.181081, -0.334577, -1.863257, -1.112460, -0.177234, 1.244737, -0.526643, 1.151306, -0.847277, -0.244868, -0.380532, 0.563493, 0.750466, -0.253092, -1.519646, 1.114412, 1.327542, -0.111753, -0.592570, 0.548212, -0.147598, -0.032017, -0.226827, 0.142878, 0.320832, 0.206300, 0.741409, -1.920498, -1.415332, 2.787690, 0.570796, 1.923239, 0.294151, 0.439956, 1.353512, -1.158930, 0.383895, 2.496787, 0.468525, -1.985228, -2.319000, 0.365258, -1.219664, 0.195127, 0.513665, 0.941101, 0.812753, -1.895636, 1.644525, -1.085889, -1.145886, 1.011864, 0.318452, -0.590919, -0.622030, -0.242061, 0.363680, -0.568791, 0.380872, 0.606028, 0.285046, 0.886551, -0.498485, -0.485802, 0.022500, 0.117547, -1.683159, -0.369969, -0.055681, -0.301956, -0.273704, 1.196988, 1.414362, 1.216099, 2.016447, -0.174947, 0.502012, 0.677855, -1.238375, 0.624047, 0.606496, -1.800062, -0.639483, -0.273268, -1.547553, -1.279794, -2.296775, 0.765019, 0.818297, -0.275762, 1.211393, 1.656740, 0.368837, -1.373180, -0.794637, -1.116343, -0.538595, 0.297590, 0.059933, -2.512983, 0.919144, 0.349269, 0.378733, 0.005685, -1.829413, 0.843867, -0.221340, -0.184708, -0.627133, 0.617322, -1.198811, -0.273261, 0.081787, -0.282785, -1.706555, 0.198147, 1.591000, -0.207255, 0.242216, -0.319243, 0.196243, 0.643825, -0.017535, 0.256174, -1.122043, -1.845724, -0.811015, 0.776274, -0.157725, 0.345995, -1.101322, -1.583710, 0.034840, 0.148482, -1.707850, -0.518058, -0.311283, 0.172524, 1.230821, 1.186505, 0.903200, 2.211017, 2.414472, 1.017153, -2.192178, 1.164859, 0.155565, -0.286887, 0.561347, 1.423541, 0.265095, -0.281437, -2.627453, -0.570023, -0.174361, 0.477104, -1.493228, 1.559336, 0.926887, -0.388126, -0.284381, 2.548079, 0.322448, 0.310619, -1.772152, -0.977292, 0.484613, 0.691650, -1.045605, 0.164643, -1.343724, -0.528016, 1.203277, -0.049976, 0.577042, -0.061830, 0.232674, 1.557687, -0.263098, -1.530672, 0.425431, 0.643476, 0.943443, -0.329490, -0.573549, 0.938394, 1.291568, -0.182664, -1.102386, 0.065628, 0.259166, -0.560332, 0.727604, 1.239912, 1.893412, 0.454215, 1.576560, -2.452963, -0.520614, 0.757300, -0.957798, 0.650079, 0.102533, -0.005347, 1.846959, -0.531347, -0.315259, -0.446454, -0.023414, 1.373055, -0.609325, 0.475658, 0.708969, -2.476679, -0.245944, 1.053382, -0.972497, 0.068844, -0.318367, 0.766286, -0.943124, -0.722381, 0.908176, 0.556848, 1.280472, -1.045132, 1.333220, 0.771205, -0.230906, -0.914635, 1.491213, -1.568861, -0.818916, 1.520769, -0.950524, 0.185209, 1.639798, 0.609398, -1.239409, -0.911419, 0.760996, -3.508370, -1.098161, -1.057860, 0.705982, -0.437876, -0.133774, -0.058981, 0.186572, 1.259757, -1.602921, 2.097763, -1.016769, 0.294787, 0.549145, 0.002455, -0.531612, -0.347243, 0.782148, 1.936902, -0.870336, 0.951023, 1.037518, 1.202069, 0.732683, -0.548064, -1.281353, 0.928252, 0.404610, 0.237788, 2.432759, -0.207768, -1.170613, 0.120114, 0.943097, 0.611571, 0.685156, -0.135865, 0.531529, -0.475724, -1.103788, -1.209592, -0.316528, 0.860905, 0.566027, -0.042948, 1.582790, 1.057178, 0.017846, 0.525677, 0.234745, 0.765340, 1.234892, 0.038759, -0.231228, 1.453337, -0.151583, -0.477912, 1.140651, 0.841136, 1.822284, 0.205754, 0.160168, 1.365118, 1.131590, -1.180762, -0.145345, 0.407859, 0.302355, 0.147690, -1.465125, 0.805820, -0.468216, 0.479170, -0.469572, -0.446155, 0.611474, -0.895492, 0.329113, -2.051262, 0.638840, 0.120678, -0.862247, -0.675172, 0.459009, 0.566021, -0.694903, 0.205265, -1.347968, 0.211785, 0.683769, 0.046369, 1.587299, -0.137911, 0.310909, -0.182222, -1.263354, -1.434873, 0.713546, -1.028692, -0.113286, 0.783760, 1.414144, -1.372740, 0.907109, -0.547061, 0.531404, -0.473709, 0.054894, 0.135392, -0.032126, -0.901858, -0.259162, -2.267479, 0.344289, -0.717041, 0.199426, -0.677745, -0.060331, -0.685787, -1.073391, 2.143624, 1.291589, 0.322839, -0.332561, -1.260504, 1.624500, 0.236125, 1.020439, 0.962793, -1.640325, 0.890086, -0.200777, 0.829336, -0.653676, -0.412580, -1.160139, -1.178952, -0.633673, -0.294256, -0.272505, 2.013521, -0.198038, 0.088963, -1.513950, -0.294601, 0.572533, 0.674166, -2.256508, 0.871453, -1.659994, 1.564678, 1.263049, 0.188872, -0.029460, -2.161498, -0.844293, 0.073321, -0.217361, -0.668902, 1.620032, -0.282229, -0.098374, 0.587284, 1.195532, -2.639980, -0.776069, -1.118495, 1.685807, -0.566415, 0.417830, -0.186634, 1.118239, 0.286706, 0.336966, -0.934391, -0.356628, -1.069422, -1.382757, -1.614739, -1.081746, 0.697923, 1.925684, -0.781039, 0.216922, 1.196330, -0.749097, -0.509502, -0.883495, 0.057129, -0.050837, 0.966182, -0.433586, -0.595828, -2.018313, -1.042086, -0.092144, 0.091934, -1.251020, 0.059435, 0.278959, -0.669808, 0.522188, 0.828343, 1.066447, -2.211732, 0.077299, 0.090529, -0.583485, -0.926748, 0.791708, 1.007578, -0.938377, 0.390635, -0.016530, -0.567840, -0.617223, 0.641829, -0.601339, 1.705307, -0.688337, -0.391470, -0.616910, 0.484435, -1.560051, -0.172858, 2.281009, 0.403052, -1.373667, -0.830165, -1.532637, 0.449668, -0.924330, -0.188391, 0.765738, -0.294488, 0.620307, 0.277731, 1.227256, -0.380445, 1.248724, -1.697083, -0.847337, -0.796181, -0.828789, -0.174957, -0.259475, -1.968412, -0.183483, 0.293268, -0.240115, -0.342797, -0.752306, -0.741280, 0.763456, 0.366529, -0.846331, -2.265886, -0.067053, 0.466130, 0.490662, 1.096581, -1.764215, -0.601576, -0.252311, 0.182608, -0.520276, 0.076030, -0.341519, -0.383581, -1.431756, 1.330467, -0.908274, 1.329367, -0.534607, -0.039371, -0.085676, -0.269648, -0.787234, 0.007173, 1.326513, 0.446413, 1.612812, 0.349147, -0.580131, 0.011947, -0.830780, -0.953301, -0.952242, -0.336505, -0.012668, 0.036008, 0.871640, -1.142907, 0.306253, 0.584759, 0.830233, -2.252978, 0.099714, -0.274381, 1.314918, -1.690409, -0.604197, 0.047075, -0.512890, -1.050812, 0.372193, -0.685270, -0.403895, -0.417881, 0.284571, -0.048282, -0.019376, -0.676599, -0.172166, -0.541573, -0.023006, 0.071876, 1.397583, -0.312360, 1.877012, 0.576752, -0.777600, 1.591267, 0.366755, -0.805977, -1.019038, -0.110027, -2.543164, -0.496476, -0.147449, 0.037518, -0.249998, 0.690148, -0.509130, 0.580286, -1.109549, 0.433471, -0.080534, 1.994791, -1.416895, 0.264197, -0.973871, -1.346378, -1.070348, -0.602265, 0.885242, 0.030756, -0.612280, -0.516690, 0.944415, 1.336945, -1.595313, 0.026528, -0.250100, 0.893869, -0.253728, -1.650977, 1.398246, 0.513745, -1.188211, -0.442091, -1.060550, 0.918336, 0.952847, 0.794229, 0.811815, 0.212550, -1.724803, -0.225094, 1.111234, 0.597199, -0.144270, -0.079793, -0.997074, -1.086010, 0.490363, -0.854987, 0.130572, 0.359305, 1.822808, 2.617574, 0.444795, -1.081134, -1.713222, -0.444533, -1.869120, 1.698570, 1.231275, 0.466171, 0.689414, 1.006129, 1.445567, 1.146741, 0.758339, 0.394512, -1.986660, 0.186819, -0.510688, 0.932882, 0.555146, 0.707300, -0.808208, -0.723499, 1.832024, -1.905344, 0.643497, -0.019097, 0.161381, -0.004972, 0.995444, 0.637443, 2.931123, -0.166906, 1.105529, 1.100713, 0.140412, 0.841600, 1.674908, -1.822820, 0.390012, 2.297440, -0.312916, 0.457927, -0.115662, 0.433671, 0.824154, 0.482680, -0.893767, 0.038397, -1.266835, 0.912249, -0.887309, -0.037484, 0.084544, -0.839360, 1.735897, 0.154937, 0.537164, 1.549364, 0.425318, -0.718091, -0.127856, -0.745922, 0.153830, -0.232807, -0.518767, -0.991916, -0.663041, -0.144539, -0.281017, -0.937514, -0.317277, -0.320038, 0.025055, 2.570044, -1.482317, -0.717633, -1.085678, -0.471183, -0.224776, -1.099564, -0.571303, 0.829553, -0.155893, 0.156793, -1.194801, -0.220895, -0.368922, -0.675315, 1.676874, 0.818077, 1.552793, -0.215783, -0.763735, 2.724967, 0.190431, 1.077808, -0.690782, -0.339568, -1.099323, 0.121236, -2.092776, 0.264752, -0.088903, -0.257739, -0.537163, 1.041136, -0.018238, 0.735731, -1.281614, 0.592891, 0.593413, -0.156507, 0.356066, 0.421609, 0.399154, -1.299910, -1.107248, -1.252386, 0.214870, 0.773377, 0.280858, -0.020667, -0.152196, 0.168648, 0.833699, 0.058437, -0.371987, 0.637980, -0.217940, -0.291812, 0.042399, 0.694663, -0.311074, -0.748296, -0.893546, -0.008895, -0.018246, 1.643986, 0.090306, 1.597983, 0.153118, -0.640786, 1.109137, 0.996771, 0.653828, 0.066764, 0.346753, -0.789985, 0.162597, 2.254294, 1.425568, 0.646100, -0.533868, 0.890136, -0.379934, -1.726412, 0.505541, -1.631099, -0.578253, 2.055353, 0.760786, -0.602107, -0.738184, 0.046679, -1.329390, -0.922382, 1.411517, 1.405269, 0.628556, 0.439620, -0.011662, -1.029384, 0.076170, -0.455761, 3.042590, -0.083860, -1.809582, 1.139211, -0.976658, 1.023288, -1.821213, 0.122494, 0.632407, 0.807095, -0.108281, -0.286565, -0.090761, -0.227396, -2.005785, -0.150380, 1.444135, -0.782624, 0.236282, 0.937521, -1.349104, 1.532143, 1.021212, -0.582009, 1.149779, 0.792034, -0.097042, -0.056904, -1.543658, 0.700936, 1.195743, 0.356991, -0.534177, -0.818301, 0.811975, 1.300884, -0.057174, 0.533409, -0.024578, 0.747383, -0.140990, 0.012016, 0.510459, -1.704202, -0.531843, 0.488358, 0.020743, -0.843652, 0.430010, 0.735691, -0.029030, 1.870751, 1.196554, 0.578918, 1.068060, 2.301197, 0.806130, 1.542723, -0.657610, 1.219884, -0.407545, -0.631783, 2.917728, 1.102480, 1.059211, -0.250046, 0.160946, -0.190146, 1.708230, -0.372174, -0.346686, 0.677688, -0.660339, -0.160757, 1.590138, 1.086151, -0.630868, -1.512951, -2.307979, -0.285702, 0.414328, 0.844063, -1.172826, -1.703214, -0.513180, -0.139610, -0.498324, 1.984058, 2.193488, 0.038102, 0.007519, -0.174715, 0.876993, -0.145233, -0.902617, 0.587381, 0.494300, -0.235182, -3.053974, 1.371978, 0.804059, -1.783810, -0.136912, 0.376198, -0.436949, -0.995726, -0.024736, -2.339851, 0.250048, -0.039450, -0.298911, -0.271579, -0.510332, -0.181264, -0.666547, 1.183405, 0.135117, -0.383399, -0.472141, 0.074341, -0.774374, 0.088133, -0.495193, 0.091177, 1.542859, -0.842349, -0.015065, 0.564222, 0.013059, -1.105840, 0.164683, -0.687384, 1.465354, -0.938458, -0.130631, -1.513411, 1.216604, -0.764995, -1.130777, -1.162234, -1.797466, 0.014359, 0.294896, 1.093679, -0.689184, -0.541962, -0.331089, -1.895172, 2.511445, -1.048767, 0.424427, 1.325798, 0.642216, 0.223989, 1.759172, 0.392975, -0.170945, 0.041169, 0.206289, -0.386149, 1.219702, -1.301169, 0.048387, -0.833263, 0.497843, -1.353330, -0.164616, 0.916817, 1.832351, 0.330548, 1.878273, 0.909365, 1.919446, 1.105769, -0.320675, 0.413568, 1.014741, -0.953961, -0.327467, 0.808275, 1.088393, 0.255993, -0.391291, -1.659907, 1.293995, -0.663314, 1.096924, -0.858102, 0.726580, 0.409432, -0.597511, 0.512230, -0.283823, -0.108287, -0.104364, -0.408240, 2.646028, 0.329585, 0.385602, 0.744607, -1.404503, -0.774725, -1.090793, 0.533799, -0.246337, 1.802539, 1.403776, -0.646599, -0.050306, 1.064913, -1.606383, 0.200212, 1.118009, -0.150026, 0.042371, 0.246243, 1.424385, 0.944149, 1.994377, 1.511456, -2.229374, -0.041016, -0.439311, 0.279010, -0.333640, -1.527750, 0.041591, 0.068428, 0.824794, -0.091369, 0.024561, -1.579225, -2.206697, -0.656816, -0.730981, 0.871948, 0.410183, 1.466418, -1.191390, 0.055316, 0.315366, 1.068758, -2.021178, 0.479162, -1.920746, 1.265739, -1.192487, 0.699744, -0.294441, 0.327163, 0.336695, -0.251148, -0.014699, -0.552606, -0.034257, -0.412130, 0.148108, 0.242689, 0.254666, 0.916913, -0.118230, 0.944449, 0.850491, -0.549134, 1.252050, -0.896338, -0.038419, -0.102139, 0.230073, 0.707243, -0.285361, 0.897815, 0.083996, -0.307050, -1.310556, -1.297087, 0.285785, 0.119637, 0.153944, -0.572136, -1.948030, -0.974255, 1.887546, -1.534551, 0.376188, -0.847022, -1.221058, -1.239111, 1.393376, 0.714988, 0.508397, -0.463747, 1.675715, 0.938767, -0.469509, -0.210144, -0.567250, -0.620194, 0.327048, -0.189579, -1.150585, -1.837289, 0.574851, 0.756407, 0.649215, 0.952602, -0.064761, 0.780440, 0.006990, -0.107420, 0.727935, -1.498537, -0.149461, -0.640389, -1.151963, 0.603294, 1.301707, -0.423346, 0.193280, 0.249339, 1.910752, 1.252278, -0.478919, -1.263717, -1.108649, 0.522311, -0.511481, -0.750591, 0.580339, 0.038164, 0.448575, -0.516887, 0.035124, -0.321898, 1.601525, -1.010123, 1.172648, 0.789511, -0.305779, 0.439665, -0.943016, 0.247185, -1.647035, -0.268741, -0.641794, -1.704705, -0.076981, -0.148799, -0.665378, 0.423781, 0.090921, 0.009669, 3.541343, -0.205583, 0.738723, 0.234074, -0.404066, 1.688074, -1.428720, 0.086502, 0.237412, 0.629870, -1.292386, -0.286201, -0.669892, 1.320607, 0.427025, -1.290679, 0.235515, 0.121102, 0.624778, -0.339407, -0.001385, -0.282990, -0.185826, 0.170417, 0.790935, 0.509584, -0.736652, -0.740857, 0.421731, 0.148217, -1.188031, 2.061238, 0.467243, -1.137715, -0.501910, -1.575161, 0.491508, -0.871432, -0.036674, -1.531741, 1.670511, -1.100657, -2.379087, -0.894878, -0.893180, 0.743243, -0.150717, -1.123804, 1.852202, -0.406196, 0.456710, 2.020704, -1.742501, -0.793925, 2.386906, 2.307486, 0.443800, -0.119997, -0.076891, -1.659879, -0.889457, -1.126572, -0.249529, -0.593989, 0.040010, -0.240714, -0.715490, 0.554864, 0.795180, -1.442297, 0.052936, -0.078661, -0.597622, 1.051704, -1.071692, -0.223727, 2.197487, -1.612193, -1.712826, -1.049223, 0.373528, 2.014923, 0.005137, -0.339615, -1.464633, 0.775138, 0.582145, -0.074322, -0.039339, 0.849471, 0.970710, 0.563671, 0.296999, -0.233129, 0.470533, -1.027807, 0.873032, -0.990216, -0.344579, 1.991051, -1.243288, -0.773937, -1.275050, 0.688596, 0.709540, 0.739236, -0.509480, -0.944733, -0.829581, -1.459611, -0.372639, 0.138818, -0.877355, 0.625201, 1.679233, 2.587234, -0.724007, -0.063282, 0.543582, 0.400430, -1.418028, 1.380224, 0.326421, 0.066983, 0.167199, 0.475089, -1.813861, 3.863454, 1.073374, -2.143927, -0.872554, 0.615910, -0.798730, -0.294456, 0.348628, -0.091481, 0.109117, -0.269258, -0.346607, 1.694899, 0.030356, -1.116183, 0.986291, -0.276175, -0.776995, -0.478483, -1.746669, -0.769572, -0.561910, 1.534938, 1.124556, 2.106205, -0.465798, 0.045801, 0.302923, -0.612048, 1.678691, -1.837787, 0.538586, -1.294816, -0.819512, 0.389817, 1.618784, -1.748587, 0.811226, -0.944471, 0.257045, -0.257264, -0.590760, 0.943640, 1.442463, 1.421987, 0.125691, -0.936226, -0.744296, -1.298571, 0.503492, -0.308758, -0.465410, -1.531818, -1.183236, -1.071456, -1.544564, -0.244067, 0.556960, -0.082094, 0.799349, -0.904100, -0.317398, -0.365474, 0.008497, 1.167893, -2.393731, -0.089081, -1.607118, 0.319808, -0.245479, 1.544748, 0.199089, -1.733975, 0.216595, -0.862683, -0.145294, -1.028413, 0.084622, -1.060423, -2.092094, -0.240342, 1.188253, -1.615954, -1.358371, 0.879228, -0.023069, -2.407970, 1.552391, -1.072367, 1.003362, -1.643287, -1.803301, 0.656959, -0.507439, 0.557726, 0.067385, -1.834729, 1.011635, 1.004941, 0.527291, -0.029220, -0.881374, 0.431512, -0.389514, 1.000413, -1.430431, -0.432264, 2.279686, 0.478093, 1.150904, 1.233045, 0.040604, 1.723720, -1.932611, 0.069839, 0.177436, 0.644337, 0.138893, 0.811589, 1.318610, -0.764301, 1.222897, 0.435160, -0.500890, -0.956888, 1.042668, 0.406103, -0.920406, -1.319111, -0.644290, 0.142344, 2.281816, 1.089299, -0.089849, 0.068527, -1.626372, 0.575032, 0.363485, 0.281475, -0.342292, -0.460887, -0.206568, 0.119601, 1.010891, -0.589126, -1.207114, -0.679484, -0.164767, 1.188464, -0.433478, -0.405101, 0.388493, -0.398345, -0.739965, -0.368103, 1.494972, 0.452187, 0.345183, 1.209138, -0.487715, 0.970376, -0.248573, -1.562223, 1.440107, 1.230554, 0.653765, 1.069575, -0.323912, -2.215181, -1.011182, -0.115525, 0.012882, 0.047552, 0.783577, 0.294569, 2.004042, 0.162805, 0.283400, 0.695328, 0.796394, 0.027858, -1.512262, 0.748944, 1.294560, 1.038944, 0.635624, 0.665665, 0.771893, 1.920399, -1.047048, 1.028800, -0.659706, -1.084620, -0.567912, 0.174250, 0.249991, -0.791014, -0.760536, -0.749136, 1.555948, -0.580161, 0.845206, -0.926180, -0.906502, 0.487650, 0.332809, -0.579900, 1.205110, 1.287482, 0.364265, 1.583727, 0.112548, 0.051445, -1.189313, 0.872642, 0.310576, -0.088811, 0.344399, 1.320516, 1.215312, 1.235190, -1.629074, 0.813127, -1.010859, -1.643796, 0.158955, 0.139451, -0.357437, -1.579448, 0.161483, -0.228034, -0.317106, 1.931907, -1.722057, 0.196683, 0.116167, -0.658469, -2.491604, 1.023589, -1.249266, -1.226009, -0.150899, 0.336420, -0.841573, -0.719314, -1.546988, 0.696434, -0.362489, 1.359999, -0.484196, 0.368057, -0.177900, -0.341715, 1.894156, -0.243240, -0.255521, -0.790302, 0.562681, -0.375213, -1.206545, 0.229697, -0.841389, 0.909753, -0.991210, -0.594636, 0.059072, 0.555166, -1.362246, -0.349571, 1.230701, -0.356377, 0.932467, -1.165115, -0.839346, 2.457175, 0.191253, 1.599424, 1.003718, 0.663725, 0.338212, 0.942617, 0.988647, 0.165321, -0.464729, 1.979742, -0.872464, 1.571884, 0.607541, -0.302177, 1.640315, -0.420163, 0.453161, 0.400100, 0.282997, 0.769928, -1.912038, -0.157296, 0.401561, -0.732490, 0.026293, 0.737686, 0.087095, -0.507333, 1.907895, -1.874615, 0.458992, -0.154443, 1.769705, 1.985668, -0.225467, 0.542504, 0.936257, 0.033905, 1.457578, -0.088986, -1.168413, -1.355266, -1.840697, -0.152484, -0.534739, -0.547411, -0.693715, -0.164172, 0.298906, -1.306754, -0.111398, 1.443232, 0.876508, 2.276819, 1.654638, -0.440680, -1.122580, 0.873657, 0.246780, 0.699443, 0.954755, 0.892463, -1.270546, -0.306003, -0.267748, -0.857556, -0.805911, 0.325010, 0.425770, 1.254828, -0.624817, -1.070832, 0.655255, 0.939468, 1.943613, 0.539540, 0.148576, -0.119474, -1.293726, -0.715895, -0.012675, 0.691287, -1.104951, 1.323809, 0.737486, -0.074661, -0.754728}, + { 0.023396, 0.136202, -0.429582, 0.913338, 1.063412, -0.576345, 0.285503, -1.278941, 0.502903, 1.722815, 0.692577, -0.011685, 0.316799, -0.966577, -1.228344, -0.016515, 1.389067, 2.539372, 1.007168, -0.479410, 0.100582, -0.439411, -0.270432, -0.622462, 0.078918, -1.170713, 1.862006, -0.287125, 1.183094, 0.045484, -0.589916, 1.155468, 0.638269, 1.363820, -0.470962, -0.076511, -1.185386, 0.361495, -0.171536, 0.001601, -0.931906, 1.387370, 1.151270, -0.987457, -0.668102, 0.399541, -0.695934, 0.016185, -0.481527, -0.185139, 0.539298, -0.199924, -0.638359, 0.593280, 0.331584, 0.411655, 1.064039, -0.089867, 0.396282, 1.144994, 1.540412, -0.210733, -0.640321, -0.575352, 0.917385, -0.991393, 0.986518, 1.862033, -1.580919, 0.453481, -0.263275, 0.511648, 0.159256, 0.931962, -2.609276, 0.968629, -0.914541, 1.700993, -1.256050, 0.698150, 1.823422, 0.037138, 1.438278, 0.986441, 0.589477, 0.188192, -0.849313, -0.089171, -0.590156, 0.770045, 0.299019, -1.537151, -1.476206, -0.379538, -0.930985, 0.245125, -1.023723, -0.599459, 0.166164, 0.935795, 0.410261, 0.037563, 0.909495, 0.828077, -0.075983, 0.094554, 0.535356, 0.619143, 1.248614, 0.335082, -1.496190, 1.100331, 0.200583, -0.355275, 0.763333, 0.111904, 1.534498, -1.359010, 0.639630, -0.479338, 1.012974, -0.136755, 1.095541, -0.578645, -0.620133, -0.775549, 0.948693, 1.549242, 1.603935, 1.593606, -0.540264, 0.027972, 1.075918, -0.787919, -0.034328, 1.928163, -0.719574, 0.056106, -0.620823, 0.133577, 0.955915, -0.149810, 0.496379, -1.087988, 1.085755, 0.660878, -0.538073, -3.163423, -1.515447, -1.059159, 2.464664, 1.544105, 1.475011, -0.179892, 0.444121, 0.019551, -1.734134, 0.416269, 1.646693, 0.147408, -1.700392, 0.650383, 1.484545, -0.914398, -1.126786, -0.479859, -0.873992, -0.585683, 1.547714, -0.222915, -0.348313, -2.355119, -0.827512, 0.784104, 0.774014, 0.412664, 0.100520, -0.358616, 0.938329, -0.694108, -0.499660, -0.172609, 1.805564, 1.917629, 0.982360, 0.279026, 0.293680, -1.320559, 0.052307, -0.695806, -1.412588, -0.308135, 0.142306, 1.801622, 0.383280, 1.175307, -2.158855, -1.340408, -0.295171, -1.230048, -0.003015, 1.181270, -1.630008, 0.167344, -2.170366, -0.164818, -0.555085, -0.149506, -0.212877, -0.686107, -0.595363, 0.615896, 0.675775, -0.260188, 0.450867, 1.341536, 0.339737, -1.379795, -0.227748, -1.122836, -1.095426, 0.906579, -0.200616, 0.194321, -0.029463, -2.104260, 2.849089, -0.738285, -0.485243, 0.043431, -0.637024, -0.734241, -1.437636, -0.435481, -0.416616, 0.689810, 0.000750, -1.139425, 0.490150, 0.747990, 0.583617, -0.075871, 0.177548, -0.135455, -0.815996, 0.411479, 0.383300, 0.383438, -0.480760, 0.209615, -0.161971, -1.145064, 0.711789, 0.645693, 0.246839, -2.123575, 1.365329, -1.192479, -2.123606, 0.548126, -1.809798, 0.650713, -0.344736, -1.962180, -0.121258, -0.769894, -1.552530, 0.939334, -0.631442, 0.739776, -1.375123, -1.197881, -0.229284, -1.298046, 0.012158, 0.107446, 0.536967, -0.125645, 0.620862, 0.844765, 0.936687, -0.164700, 0.536514, -1.171764, 0.005685, 3.069013, -0.781457, -0.660789, -0.556477, 0.120636, -0.400644, 0.803014, -1.447217, -1.888079, -1.035434, -0.000928, -2.431988, 0.784379, 0.406500, 1.668838, 1.741555, 0.341899, 0.718951, 0.514285, -0.039132, 0.652041, -0.240598, -1.178798, -0.049775, 1.927445, 0.729182, 1.210293, 0.150680, 0.185572, -2.233253, -0.916818, -0.711040, 2.288300, -1.408745, 0.116266, 1.467862, 1.913262, -0.873837, -0.458748, 0.113203, -0.383492, 0.955173, 1.556695, 0.145952, -0.812308, 0.146506, 0.291714, 0.260976, 0.383008, -0.604277, 0.228192, -0.355675, -0.260216, -0.573225, 0.746543, -0.371543, 1.146025, 0.242753, -2.011811, -0.034918, -1.525353, 1.786344, 0.542949, -1.075736, 0.764883, -0.107344, 0.477887, -1.542614, 0.235825, -2.035392, 0.745100, 0.861146, 1.236777, -0.553279, 0.195349, -1.317107, 0.300353, 1.147936, -0.529671, 0.699617, 0.665240, -1.009567, 1.284010, -0.639980, -0.133205, 2.781936, -0.575966, 0.701617, 1.406198, 0.990971, -1.274519, -0.485819, -1.769011, -1.266016, -1.157594, -0.015350, 1.376591, 0.717823, -0.389252, -1.065609, -0.761590, 2.085528, -0.481505, 0.654658, 0.319602, -0.467775, 1.008235, -1.182734, 0.019898, 1.823496, 0.891406, 0.311727, -0.756121, -0.417514, -1.602144, -0.986891, -0.407536, -2.256386, 1.501703, -0.710940, 0.447161, 0.095935, 0.496833, 0.121473, -0.049569, 1.514407, 1.342386, 0.426697, -0.275161, -2.898398, 0.351934, -1.170406, -0.546121, -0.724105, 0.082377, 0.165756, -0.756541, -1.211714, -0.695398, 0.641392, 0.034928, -0.068623, 0.565727, 0.089366, -0.004400, -1.106687, -0.334159, -1.375906, 0.055428, 1.831604, -0.176211, 0.375893, -1.187470, 0.013412, 0.338437, 0.171244, -2.284080, -1.666911, -0.889876, 0.666289, 0.100840, -0.297562, 0.561714, -0.289711, -1.973596, -0.739113, 2.448843, -1.330409, 1.798531, 2.261751, -1.111721, -1.336240, -0.855474, -0.263598, -0.595948, -1.601381, -1.073619, 1.129543, -0.590523, -0.833244, -1.449385, 0.166006, 0.420519, -0.276540, -0.583456, 1.281674, 1.338733, 0.245928, -0.717386, 0.027444, -1.103373, -0.284910, -0.461207, 1.350333, 0.647286, 0.862684, 2.205029, 0.424601, -0.386721, 0.661946, 0.161695, 0.704428, -0.057529, -0.219743, 1.232696, -0.516243, -1.700123, 0.776517, 0.690183, 0.737384, 0.422231, 1.241127, 0.214493, -1.161830, 0.507126, -0.370957, -0.596948, 1.951120, 0.294149, -1.613676, 0.670852, -0.628501, -2.113212, -1.230546, 0.652650, -0.666821, -1.097989, -0.033759, 1.096087, 0.554365, 0.098416, -0.744607, -0.541579, 0.200043, -0.482690, -0.436143, 0.927082, 1.151850, 0.117516, -0.297776, -0.828680, -0.143217, -0.546180, -1.568938, 0.487001, -2.863392, -1.249782, -0.527590, 0.735020, 0.987866, -0.317457, 0.051409, 0.684666, 1.539859, 0.641157, 0.634615, -1.505125, -2.249882, 1.209540, 0.579772, -1.084018, -0.029828, -0.390837, 0.537237, 0.086474, 0.536605, 1.084405, 1.973039, -0.772143, 0.705911, -0.517773, 0.845810, -1.058857, -0.457516, -0.333350, -0.263789, 0.837664, -0.463301, 1.029478, 1.382064, 0.259793, -0.225372, -1.509245, -0.020093, 1.321944, -0.243838, -0.376126, -1.575089, 1.517300, 0.155765, -0.477722, 0.410828, -0.443794, -0.936263, -0.029884, 0.409627, 0.228721, -1.515066, -0.294576, 0.840850, -0.833279, 1.553635, -2.003227, 1.237115, -0.542041, -0.377088, 1.485181, -0.528614, 0.816891, -0.572198, 0.349043, -0.853648, 0.778541, 1.635181, 0.840294, -0.305631, 0.254761, -0.043400, -2.622454, 2.061213, -0.164515, 0.039771, 0.484052, -1.265441, 0.350750, 0.131981, -2.120834, 0.481874, 0.823938, 0.980490, 0.192810, -0.450139, -0.824210, 1.621638, -0.574655, -1.278036, -2.015663, 0.335195, -1.713358, 0.853229, 0.900498, -0.388422, -0.172883, 0.887181, 0.750917, 0.094901, -0.610523, 0.178098, 2.032655, -0.841524, -1.939480, -0.780872, -1.066457, -0.843065, 1.679981, 0.227205, -0.555315, -0.370237, 0.117430, 0.551519, 1.526129, 0.636538, -1.462909, 0.685438, -0.734647, 0.101999, -0.588277, 0.309043, 0.333314, -0.278448, 1.088099, 0.784948, -0.910614, -0.420306, 0.836462, -1.010417, 1.035466, -0.221405, -0.085495, 1.395105, 0.391818, 0.401208, -0.092298, 0.827388, 2.522956, -2.014271, -0.161012, 2.864902, 0.408847, 0.069922, -0.433092, -0.000868, 1.083471, -0.228456, 1.120465, 0.211148, -0.907982, -0.343534, -0.393809, 1.009895, -0.664715, -0.913141, -0.428409, -0.720020, 0.165634, -0.932413, -1.008384, 0.357105, 0.026722, 0.295190, 1.136801, -0.559688, 0.034592, -0.376112, 0.727929, 0.036997, 0.884449, 0.494009, 2.446481, -0.840208, -0.419960, -0.717282, -1.224830, -0.545034, 1.448973, 1.006176, -1.266416, 0.692259, 2.476227, -0.563591, -1.948613, 0.338439, -0.737522, -0.007381, -0.775368, -0.116046, 0.556389, -1.886169, -0.337153, -0.694164, 0.836965, -0.172066, -0.351394, 0.901425, 1.480408, -1.216691, -0.475046, 0.698097, 1.554528, -0.284628, 0.840685, 0.872275, -0.366342, 0.835962, 1.506416, 0.495956, 1.017693, -0.807007, 1.004605, 0.086903, -1.419050, -1.585328, -0.331168, 0.646487, -0.041309, 1.538866, 0.084962, -0.791234, 1.169489, -0.150808, 1.008338, -0.480815, 0.662092, -0.997507, -0.169619, 1.786960, 0.925473, -0.596759, -0.234993, -1.215669, -1.686875, -0.562187, -1.172172, 0.197798, 1.799606, 0.636350, 1.669752, 0.440029, -0.667044, 0.761192, -0.671475, 2.913899, 1.551982, -0.163438, -0.876546, 2.158285, 0.012670, 0.376451, -0.057048, -1.525455, 1.677993, 3.204739, -0.806465, 1.409802, 1.163384, -0.775699, 0.132773, 0.095906, -0.627838, -0.607660, 0.751566, -0.890520, 1.028551, -0.162412, 0.571988, 0.309722, -0.260316, -0.286815, 2.647392, 0.496323, -0.261767, -0.225460, 0.353017, 0.356193, -1.002605, -0.149120, -0.829185, 2.084265, 1.920257, -0.967502, -0.673418, -0.282719, 0.658458, -0.220914, 0.012291, -1.436628, 0.966705, 1.111947, 1.886631, 0.641276, 1.333091, 0.101900, 0.248207, 1.781667, -1.317881, 1.367503, -0.467715, -0.001462, 0.188514, 0.410630, -0.256085, -1.549796, 0.540346, -0.431244, -0.576367, -0.141862, -0.124181, -1.455504, -0.151082, -0.190830, 1.158185, -0.412450, 2.146508, 0.719205, -1.432673, -0.315998, -0.466829, -0.761943, 0.515085, 0.538625, 1.379972, 0.155460, -0.720756, -0.165366, 1.393689, -1.286890, -0.829596, -0.471441, 2.188738, 0.034887, -1.816133, -0.126200, -0.161840, 1.403793, 0.696582, -0.774912, -0.300883, 0.439844, -0.913951, -0.068064, 0.249758, 0.145267, 0.393304, -0.567440, 0.911235, 0.996696, 0.481671, 0.241562, 0.395446, 0.971160, 0.058329, 0.915646, 0.659591, 0.722111, -1.827426, 0.533718, 1.039158, -0.468198, -0.818465, -0.595275, -0.419400, -2.270205, -1.218343, -0.953830, -1.663903, -2.222436, 0.286854, -0.063987, 0.594184, -1.423526, 0.086622, -1.888888, -1.348979, 1.264271, -0.305135, -0.741713, 0.431745, -0.100344, -0.082734, -0.329502, -0.167831, -0.713032, -0.639203, 0.830372, 0.134868, -0.226451, -0.080555, 0.254751, -0.903663, -0.416320, -2.049183, -0.753678, -0.562997, -0.640196, -1.117323, -0.695391, 0.621921, -0.689532, 0.138901, 2.714519, 0.863851, -0.071293, -0.025773, 1.226162, -0.184486, 1.172223, 1.653256, 0.360200, -0.095637, -0.631009, -0.897069, -0.715706, 1.184576, -1.666696, -0.592545, -0.954167, 1.027020, -0.080999, 0.211218, -0.060247, -1.106066, 1.721754, -0.688572, -1.257614, -0.531225, 0.811394, -0.257033, -0.613901, 1.008222, -0.350364, -1.112902, -0.221605, -1.100273, 0.490632, 1.063217, 0.507124, 1.221259, -0.088082, -0.590366, -0.134465, -1.954293, -0.019045, 0.656908, 0.086825, -0.913736, -1.394168, -1.267404, 0.168277, 0.315333, -1.051621, 0.086617, 0.082980, 2.832044, -0.595429, -1.056764, 0.889832, 1.419938, 0.421057, 0.973185, -1.183331, 2.182572, -1.446946, 1.025428, -0.813468, 0.313637, 0.134514, -0.350835, -0.977275, 0.180079, 0.502391, -0.893320, -0.639823, 0.016668, -1.182340, -0.177489, 1.205509, 2.025180, -1.730964, -1.145808, 1.260928, -0.941486, -1.709951, 0.238115, -0.700688, 0.798015, -1.303748, 0.532478, 0.079181, -0.711292, 1.404005, -0.203665, -0.360464, -1.992930, -1.941063, -0.692722, -1.742797, -0.289899, 0.273530, 2.180192, 0.841466, -0.284565, 0.152140, -1.385026, -0.402354, 1.203714, 0.377931, 0.614887, -0.408598, -0.206427, 1.058361, -0.375093, -1.930014, -0.345484, 0.083174, -1.745501, -0.950120, 3.047193, 0.297606, -0.062777, -0.851934, 1.205954, -0.918285, 0.267098, 1.353393, 0.400963, -0.119559, -1.653386, -0.198842, 2.248121, 1.041785, 1.014294, 0.383287, 0.276750, -0.211980, 0.342658, 0.512542, -0.010094, -1.807120, -0.430656, 0.907290, -0.378878, -0.641071, -1.916796, 0.051669, -1.970603, 0.383354, 0.647800, 1.094354, -1.222950, -1.010545, -0.143197, -0.680824, -0.911992, -0.917259, 0.286051, -1.664072, 1.747371, -0.494345, -1.214253, 0.502453, 0.140978, 1.845221, 0.648643, 0.328889, -0.835324, 2.105606, 0.282061, 0.249482, -0.142112, 1.758234, 0.593565, 1.924294, -0.839981, -0.062827, -0.162460, -1.064456, 1.687495, 0.501683, 0.248259, -0.300597, 0.850652, 2.149653, 0.408587, 0.255087, 0.372499, 0.881041, -1.065238, 0.392307, 0.629002, 0.645496, 1.253061, 1.097165, -0.519285, -0.585461, -0.228177, 0.529624, -0.707921, -1.102816, -0.665820, -0.640109, -1.563945, -0.336420, -0.757577, 0.035822, -0.879846, -0.681074, 2.558469, 0.292831, 0.446808, 0.984800, 0.477661, 0.933916, -0.124349, -1.929640, 0.592342, -1.240870, -0.005897, -0.072176, 0.109916, 0.532631, -0.909844, 0.236485, -1.247307, 0.719336, -1.187424, -1.873172, 0.049507, -0.997982, -0.008136, -0.179615, 0.943116, -0.506585, 0.610124, -1.790382, -0.637380, 0.038062, -1.475242, 0.960402, -0.197653, 0.825991, -0.871621, -0.145996, -0.298579, -0.927108, 0.921059, -1.120398, 0.643286, 0.631341, -0.441900, 0.139579, -0.529644, 0.495942, 0.124820, 0.972268, 1.533504, -0.753933, -0.195907, -0.658978, 0.812300, 0.348258, 1.782634, 0.525831, 0.592842, 0.075061, -0.638511, -0.145393, 0.758065, 0.310227, 0.580242, -1.017672, 1.669101, -0.149095, 0.984941, -0.370344, 0.067022, 1.483523, -0.652811, -0.735169, -1.566261, -0.754629, 1.827685, 0.280319, -1.807789, -0.957124, -1.342365, -0.890650, 0.700651, -0.960648, -1.253373, -2.016371, 0.781377, -0.562471, -0.581897, -0.149032, 0.996386, -0.629304, -0.261598, 1.114246, -0.167003, -0.681592, -1.206486, 1.502084, -0.370617, -0.655498, 1.313512, -0.738096, 1.227427, 0.133845, -1.593000, -0.171006, 0.016812, -0.035712, -1.179992, 0.444235, 0.679518, -0.097178, 0.452263, -0.231834, -0.061905, 0.016916, 0.661035, -0.321204, 0.585605, -0.301141, 0.730228, 0.725004, 0.507197, 0.929350, -0.862366, -0.130783, 0.038461, -0.866809, 0.270279, 0.318924, -0.069209, 2.193380, 1.306020, -0.691564, 0.303712, -2.144057, -1.672164, -1.851207, 0.839100, 0.147435, -0.721411, 0.329681, 0.794595, 0.324947, 0.690088, 1.942982, -0.097080, 0.538811, -0.951701, -1.267461, -0.686057, 0.308640, 0.700485, 1.251595, 0.288085, -1.333523, -0.436340, 0.993456, 0.336283, 0.060835, 0.638902, -0.208971, -0.875483, -1.436833, -1.259909, 0.159208, -0.624529, 1.235453, 1.960668, 2.265294, 0.722880, 0.272373, 0.471477, -0.028523, 0.260190, 1.260779, -1.171038, 0.136264, -0.591812, -0.085109, 0.487100, 0.453191, 0.420659, 1.089847, 0.904808, -0.545982, 0.490919, -1.167096, 0.814976, -0.060983, -0.128147, -0.625799, 1.166360, 2.554266, -1.097533, -0.037161, 0.752021, 0.898231, 0.397827, -0.506452, -0.112521, 0.000972, 0.950549, -0.192429, -0.908271, -1.263897, -0.111690, 0.479676, -0.623469, -1.654686, -4.138679, -1.835954, -1.140800, 0.794125, -2.149392, 1.228026, 0.021392, 0.604759, -0.860049, -0.844000, 0.558011, -0.394070, 0.561034, 1.221802, 0.972518, -0.611841, 0.330582, 0.209986, -0.560274, 0.525795, -0.867395, -0.105653, 0.063049, -0.916626, -1.104079, 2.005839, -0.732364, -1.463147, -1.206511, -0.522068, 1.783362, 1.380923, -0.330792, -0.911438, 1.912133, -0.058340, -0.894592, 0.374959, 0.469848, -1.110191, -0.127004, 1.740126, -0.662971, 0.364398, -1.175958, -0.845267, -0.617404, -0.106894, -0.957731, 1.083887, 0.182848, 0.097826, -1.756164, 0.361191, 0.849373, 0.862155, -0.289951, 1.126485, 0.992069, 1.404981, 2.283494, -0.001340, -0.216360, 0.685055, -0.770735, -0.399487, -0.441503, -1.101333, 0.205113, -0.364961, 0.195312, 1.356274, 0.367577, 0.684025, -1.933821, 2.020367, -0.966925, 1.876325, 0.250455, -1.182922, 0.838751, -0.848364, -0.391268, -1.648649, 0.270056, 0.386856, 0.896792, 0.443080, 0.421881, 0.220919, 0.775188, 0.274056, 1.136434, -0.914596, -1.105468, 1.960688, -0.738037, -1.184684, -0.411563, 1.661435, 0.032150, -0.236232, -1.315447, 1.590860, 1.538563, 0.874176, 0.576845, -0.227200, -0.882198, 0.361813, -0.148709, -0.062594, -0.841737, -0.756088, -0.025333, 0.030301, -0.456330, -0.014243, -1.125299, 0.791257, 0.161927, -0.579588, -1.875176, -0.826973, -0.119252, 1.101134, 0.024724, 0.419482, 1.107122, 0.672548, 0.574127, -0.171276, 0.371989, 2.638032, 1.746879, 0.243066, -0.230460, 0.310734, -1.275956, -0.116330, 1.868599, -0.388425, -0.447892, 0.786226, -0.275765, -0.352552, -0.417905, 0.030294, -0.096711, 0.931218, -1.520796, -1.406463, -2.432984, 0.614980, 1.507652, -0.411919, 0.999595, -3.266768, -0.167305, 1.549981, 0.840745, 0.394237, 0.887500, 1.337820, -0.733737, 2.117126, 1.276480, -0.427666, 0.098676, -1.084921, 0.605786, -0.129802, -0.450738, -0.012783, -0.039487, 0.383089, -0.422961, -1.339078, 1.425082, -0.707621, -2.178144, 1.540504, 1.128867, 0.487667, -0.247510, -0.866662, 0.520345, -1.173509, -0.674520, -1.229432, -0.527746, -0.144087, 1.340454, 1.774964, -0.752070, 0.471210, 1.772466, -0.035121, 0.933138, -0.027395, -0.093178, 0.362352, 0.355558, -0.930105, -1.704352, 0.929236, 1.116125, -0.935670, -1.820729, -0.997073, -1.869467, 0.690508, -1.458757, -0.268961, -0.644186, -0.971382, -0.207644, 1.050033, -1.079602, -0.517690, 1.388563, -0.925280, -0.511390, -2.386877, 0.386431, 0.972395, -0.334688, -0.739947, 1.566245, 0.413413, 0.630930, -0.375925, 0.421686, 1.829775, -1.093943, -0.885953, -0.451536, 1.401307, -0.116740, -1.472080, 0.230120, 0.041125, -0.522304, -0.109951, -0.380358, -0.474135, 0.186144, -1.068480, -0.349949, -0.058732, -0.101279, -0.624958, 0.421238, 0.079521, 0.226451, 0.330446, -1.515795, -0.375161, -0.841313, 2.106468, -0.873785, -0.407179, -0.152398, -0.429888, 0.148620, 0.862050, 0.138762, -0.170486, -0.971400, -1.765626, 0.206401, 0.627441, -0.656111, 1.786710, 1.703382, 1.165944, -0.279779, -0.045727, -1.187223, 2.043474, 0.798026, 1.230852, -0.262742, 0.316060, -0.364685, 0.330564, -0.857027, -0.751561, -0.822463, -0.892342, -0.877937, 0.955756, 0.207628, -0.452704, 2.316229, 0.968874, -0.144562, 0.329772, -0.893142, 0.216800, -1.146238, -1.877710, -1.245870, -2.638468, 1.626978, -0.606653, 0.612692, -1.042984, 0.280351, 0.064535, 0.914523, 1.562372, -0.086492, -1.725664, 0.554311, 1.215640, -2.628251, 0.369850, -0.809344, 1.692258, -0.622908, 0.164238, -0.311946, 0.791535, 0.255095, 0.142770, -0.518972, 0.241471, 0.911635, -2.448279, -0.315110, 0.882662, -0.179064, 0.992140, 1.084295, 1.283118, -1.180928, -0.167381, -0.931014, 1.007953, 0.487981, 0.410414, -1.125248, 1.080264, 2.172207, -1.643838, -0.950704, 2.240215, 0.433282, -0.009187, -0.145634, -0.229556, 0.674855, -1.174463, -0.915577, 0.186573, 0.319737, 0.842539, -1.521999, 1.348312, 0.026901, 0.324622, -0.019784, -0.592992, -0.437450, -1.016367, -0.967641, 1.069485, 0.477719, 0.341111, -1.873292, -0.865953, -0.775751, 0.712023, -0.329089, -1.488686, 1.256587, -0.636032, -1.793551, -0.311343, -1.145982, -0.054065, 0.677109, 0.037941, 0.080239, 0.731041, -0.199110, 0.444112, 1.162807, 1.911987, -0.645764, 0.787155, 1.836814, -1.095626, 1.029598, 0.251865, 0.126167, -0.086977, 2.741215, 0.719721, 1.000606, 0.458922, -0.024610, 0.698153, -0.359651, -0.237589, 2.351208, 1.470371, 0.515687, 0.869332, 0.126476, 3.883470, 0.186592, -1.089796, -1.779546, -1.353610, -0.936374, -0.370747, -1.225460, 1.307343, -0.396353, 1.237037, -0.310230, 1.998615, 0.014708, -0.662009, -0.466426, 0.202250, -1.620504, 1.253677, 1.443136, 0.692793, 0.399387, -0.478853, -1.461639, -0.345262, 0.200887, 1.786089, 0.683155, 0.628412, 1.344692, -0.595442, -0.847524, -1.326938, -0.150335, -1.955917, -2.806731, -2.014990, -0.104551, 0.718086, -0.169799, 1.045719, 2.108074, 0.296045, -0.094833, 1.921723, 0.224170, -0.762066, 0.371275, -0.114867, 0.635206, 0.488845, 0.588798, 0.935705, 0.927778, 1.811801, 1.283815, 0.849260, 0.239599, 0.125858, 0.305383, 0.142462, -0.023465, 0.615983, -0.148336, -0.520158, 0.865752, -1.586879, 1.220383, -1.075337, 1.284307, -1.342182, -1.484263, -0.377195, -0.746626, 0.128483, 0.531477, -0.262316, 0.639651, 1.256555, -0.802813, 0.354839, -1.439367, 2.038917, 0.115188, -0.002961, -0.100520, -2.249591, -0.651391, -2.083083, -0.099053, -0.439976, 0.060259, -1.600097, 0.291175, -0.303681, -0.704441, -0.585825, -0.875529, 0.611901, -0.920216, 0.470516, -1.147290, -1.417867, -0.290078, 0.225656, 0.116712, 0.748802, 0.950469, 0.473076, 1.286392, 0.304649, 0.563091, -0.521579, 1.106358, -1.009653, 0.559653, -0.176687, -0.272426, -0.335814, -2.104688, 0.144299, -0.118132, 0.766873, 0.432370, 0.112561, -0.366071, 0.127473, -2.149837, -0.220517, 1.291354, -0.234275, -0.612614, -0.252934, 1.457823, -0.748966, -0.852400, 1.444541, 0.330739, -0.726693, 1.837498, -0.089930, -1.036981, -2.828063, -1.612210, 1.075947, -2.108839, -0.006844, -1.137033, 0.776847, 0.536834, -0.051561, -1.423991, -0.481238, 1.833058, 0.433326, 0.844904, -1.314044, 1.123624, -1.663119, 0.639671, -0.130581, -1.754453, -0.161802, 1.429815, 0.559547, -1.581161, 0.266619, -0.504975, 0.620295, -0.636545, 0.737502, -0.571106, 0.524705, -0.229171, -1.054068, -1.439171, -1.209349, -0.943157, 0.553638, -0.891821, -0.251170, 1.020892, 0.334475, 0.084033, 0.262309, -0.167865, -1.264099, 2.333211, -0.539337, 1.985914, 2.077649, -0.581791, 1.739788, -1.341000, 0.650356, 1.384642, 0.753769, 0.042600, -0.875205, 0.276566, 0.776265, 1.795568, -0.138639, 0.258949, -1.395009, 1.032450, -0.033395, -1.017449, 0.197769, -0.331667, -0.406614, 1.763131, -0.390460, -0.000224, -0.536840, 1.721577, 0.390280, -0.649278, -0.358400, 1.017267, 0.359298, 3.036785, -0.255413, -0.088337, -1.027438, -0.836069, -0.574555, 1.323916, 0.781015, -0.359389, -1.024314, -1.218595, -0.387437, -1.064479, -0.276786, -0.815232, 1.460104, 0.303738, -0.326294, 0.391765, -1.133664, 1.095642, 0.466745, 2.757904, 0.046717, 1.673245, 0.164456, 1.075585, -0.824465, 0.830461, -0.281511, -0.603690, 0.795431, -0.400389, 2.321805, 1.553955, -1.253872, -0.920605, -0.200004, 0.092007, -0.545655, -1.495432, 0.392425, 1.911075, 1.806849, 0.891840, -1.879598, 0.548018, 1.412529, -0.201651, -0.534491, 0.444701, -1.397474, 0.650712, 0.026161, -1.040076, -0.336743, 1.104062, 2.362363, -0.303084, -0.497921, -0.026604, 1.776820, 0.722540, -0.356284, 1.236339, -0.162178, 0.328618, -0.611726, 0.099263, 0.538875, -0.556045, 0.524705, -0.429823, 1.560737, 1.759803, -1.162496, -0.928441, 1.378210, 0.995570, -0.125118, -0.158362, -1.040534, -0.646810, -0.526419, 0.088274, 1.096575, 1.375384, 1.005730, -0.730378, -0.590933, 0.670546, 0.748929, -0.937335, 0.240316, 0.027845, -1.099000, 2.503979, 0.516242, 0.601423, -0.029485, 1.047600, -0.778150, -0.208256, 2.087371, -0.109030, -0.550065, 0.268740, -1.592542, 0.165544, 1.303491, 0.503488, 1.620395, -1.384388, -1.442777, -0.219532, 0.586025, 0.179573, -1.047919, -0.406106, -0.670253, -0.454711, 0.086696, -0.221635, -0.107341, 0.096905, 0.501375, 0.389902, -0.718962, 0.369154, -0.545792, -0.903070, -2.083394, -0.464496, 1.229965, -0.796925, 0.112636, -0.412816, 0.386996, -0.566717, 0.283490, 0.764420, -0.328507, -0.952816, -1.216502, -1.342917, -0.488431, -1.182830, -0.108431, 0.067645, -0.515138, -0.942595, 2.122972, -0.560578, 0.901717, -0.250907, 1.835881, 0.140618, -1.529766, 0.393592, 0.320063, 0.321391, -0.576975, 1.229006, 0.982869, -0.244458, 0.199389, -1.160916, 0.909540, -0.932892, -0.527376, 0.539332, 0.401679, -0.986540, -0.430322, 0.519027, 1.071460, -0.397876, -0.038977, 1.359983, 1.196802, -0.789126, 2.101725, 1.374994, 2.572261, 0.841499, 0.397886, -1.562937, -0.112234, 1.381675, -0.962275, 0.170141, -1.798316, 0.084803, -0.541409, 0.670020, 0.606919, 0.595105, 0.107764, -1.355153, -1.697404, -0.696932, 0.491681, -0.014179, -0.624061, -1.099836, 0.409383, -0.480916, 0.531477, 1.038150, -1.146378, -0.130510, -1.692715, 0.042282, 0.372224, -0.962810, -0.350911, 0.716214, 0.364914, -0.632124, -0.340206, 0.967126, 0.728422, -0.388158, 0.282732, 0.789648, 1.134498, -0.657309, 0.527860, -1.792478, -0.167761, 0.862983, 0.195331, -0.080791, 0.519439, 0.002223, 0.805881, 1.104132, 1.831897, 0.621113, 1.238027, 0.741433, 0.908927, 1.305232, -0.215425, -0.877278, -1.341962, 0.939129, -0.783505, -0.272113, -1.947798, 0.122060, 0.360423, 1.147790, -0.277303, 1.989759, -1.446570, -0.140685, 1.378022, 0.788467, -1.021896, 2.318402, -0.355808, -0.335638, 1.881346, 0.870179, 0.808606, -1.343580, -0.523407, 0.055494, -1.591607, 0.995959, -0.055108, -0.422898, 0.709051, 0.086386, -0.678440, 2.149417, -0.552571, 0.085744, 0.258830, 1.617742, -0.532514, -1.564692, -2.305881, -1.821433, -0.224066, 1.255261, 1.747371, -0.234119, 2.396160, 1.724551, 1.163899, -0.575704, -0.063996, -0.857813, -0.834383, 0.156127, 0.209251, -1.835095, 0.153471, -0.709798, 0.755863, -0.551625, 0.521749, 0.465330, -0.114019, 0.615403, 0.083398, -0.635300, -0.709101, 1.454262, -0.253375, -1.005333, 0.533846, 0.047658, 0.718758, -1.039533, -0.634423, -0.590114, -0.680550, -1.563773, -2.893270, -0.167443, -0.803513, 0.127553, 2.527076, -1.422707, -0.023917, -0.963830, -1.369666, 0.899698, -1.252324, -0.996970, 0.683784, -1.651099, 0.627126, 0.453215, 0.921522, 0.593216, -0.165564, 0.631765, 0.444843, 0.581436, -0.525560, -0.791064, 0.107712, -0.014528, 0.891228, 0.117661, 0.058619, 1.176974, 0.594804, 1.984418, 1.693246, 1.197847, -1.257990, 0.319728, -0.242894, -0.773885, -0.733213, 0.716193, 0.489327, -0.041426, -0.064122, 0.812000, 0.936097, 1.028832, -0.511751, 0.126844, 0.394735, -0.806154, -1.219645, 1.478149, -0.053347, -1.460086, -0.544855, 0.757115, 0.863290, -0.177337, -0.165244, 0.099941, -0.678255, 0.515679, -1.848812, 0.758705, -2.474852, -0.751650, -1.620979, -0.115591, 0.364014, -2.321833, -0.106576, 1.357903, -0.218782, 1.791901, 0.774550, -0.002739, -0.679866, 0.750094, 0.266076, 0.051728, 0.019607, 1.422822, 0.299407, -0.133841, 0.859156, -0.556310, -0.697764, -0.256397, -1.642769, 0.699025, -0.519203, 1.430415, -0.881879, 0.484044, 0.260979, -0.456964, 1.627451, 0.084798, -0.976754, -0.233288, -1.704769, -1.307735, 0.550205, 0.150518, 1.165306, -0.539539, -0.146413, 1.061992, -0.758994, -0.387400, -0.585005, 0.181850, 0.644809, 1.268177, 1.803598, -0.991733, 1.373247, -0.359128, 1.015682, -1.947214, 0.043234, -0.001575, 0.499111, 0.766251, 0.525607, -0.973818, 0.704956, 0.012079, -0.126757, -1.280846, -0.332524, 0.149346, -1.327154, -0.925653, -0.440199, -0.287511, -0.144319, 0.661769, -0.525487, -0.836026, 0.368588, 0.639568, 0.091057, 0.571375, -0.060304, 0.624023, 1.522227, -2.793682, 1.726238, 0.453593, 0.609008, 1.275096, 0.511909, -0.123992, 0.688722, 1.985337, -1.772211, -1.391257, -0.676280, -0.568636, 0.033752, -1.633726, 0.873640, -1.736304, 1.365991, 0.647976, 0.073811, -1.111422, -1.196441, -0.559148, -1.393399, 0.059698, 0.199888, 1.396459, -1.092758, 1.602782, -0.050815, 1.413520, 0.068559, -0.201873, -0.043918, 0.424163, 1.619497, 0.015525, 0.404375, -1.443340, -1.010655, 0.851043, 0.790057, -0.007258, -0.420197, 0.435869, 0.710429, 0.158712, -1.082040, -1.318776, 0.939401, -0.105110, 0.816477, 0.070874, -1.033731, -0.386181, -0.415002, 0.198960, 0.820321, -0.376434, 1.276832, 0.257271, 1.755904, -0.003458, -0.076208, -1.208352, -1.804682, 0.296609, 0.139085, -0.054245, -2.035319, 0.970683, -0.821253, -1.031936, -0.423794, 1.283106, -0.688766, 0.544404, -0.438124, -0.229161, 1.301568, -0.431928, 0.606393, -0.698200, 0.304180, 0.029147, 0.375599, -1.351105, 0.900150, 0.388963, 1.171193, 2.344635, 0.146096, -0.109335, 2.364451, 0.153040, -0.422118, 0.437701, -0.583745, 0.198210, 1.118482, -1.010813, 0.801799, -0.596312, -0.455718, -0.353311, -0.320657, -1.885875, 0.513365, 1.138190, -1.733481, -0.018697, -0.391343, 2.347297, 0.799943, 0.567006, -1.738736, 0.388259, -0.986021, 1.040145, -1.588279, 0.323288, -0.731162, 0.686939, 0.853229, -0.133099, 1.705233, 1.295698, 2.022754, 1.284511, -0.729735, 0.116994, -0.047425, -0.731509, 1.406151, -1.153381, 0.831360, 0.222853, -0.844304, 1.154945, 0.949023, -1.228280, -0.463307, -0.030382, 2.778160, -0.351958, -0.442141, 1.291833, -0.219402, 1.343892, -0.391316, 0.395417, -0.625134, 0.283384, 0.147260, -0.730574, 1.316147, 0.247630, -0.880871, -2.586325, -0.330452, 1.384132, 1.144669, -0.152467, -0.543281, 0.328366, 0.180502, -0.780289, -1.317479, -2.363408, -1.110674, 0.932573, -1.010301, 0.872992, 1.024715, 1.667442, -1.066682, 0.119430, -0.945889, -1.545491, -0.025987, 0.049981, -1.492102, 0.421168, -0.586291, -1.050972, 0.681141, -1.048661, -1.701894, -2.062698, -0.352608, 1.921850, -1.063272, -0.407018, -0.570105, -1.980815, -0.309899, 1.906693, 1.120801, -1.160982, 0.797542, -0.760950, -0.843239, 0.435394, 0.354210, 1.877023, -0.586401, 1.400299, 1.745194, -1.530511, 0.994616, 0.274656, 0.018746, 0.094474, -0.531335, -1.253052, -0.297966, 0.160572, -0.743083, 1.206007, -0.154767, -0.985291, 1.211778, 0.346420, -1.742407, -0.574992, 0.122642, -0.396825, -1.325173, 0.872692, -0.271627, -0.125470, 0.487571, 0.010896, 2.350114, -0.768109, 1.255751, 1.908855, 0.069097, -1.381469, 1.478807, -0.441334, -0.010916, -0.052461, -0.327332, -1.249091, -0.228497, 0.343493, 0.553302, -0.417947, 0.723268, -0.538031, -1.296249, -0.531707, -0.251323, -0.915976, -1.265807, -0.654067, 1.253991, -1.547182, -0.073863, -0.081396, 0.841072, -0.659733, -0.129227, 0.792806, 1.210451, 1.207397, 0.256145, -0.872489, 0.445668, 0.818113, 0.510363, -0.016008, -0.517783, -0.386557, -2.503783, -1.379900, -0.373364, 1.795172, -0.441774, -0.429443, 2.955632, -0.505453, -0.856440, -0.648766, -0.600016, 0.192899, 0.867814, -0.370865, 0.273610, -0.379328, 0.904703, 0.697574, 0.325614, 0.011099, 0.113809, 1.001025, 0.154618, 0.613886, -1.282622, -0.461135, 1.170904, 0.955175, 1.058246, -1.100014, -0.728870, -0.071626, -1.304059, -0.133545, 0.168848, -0.040810, -0.992738, 0.385104, 0.033290, 0.611137, -1.015726, 0.018826, 0.456307, 0.125846, 1.018402, -1.322706, 0.284526, -1.300949, -0.366066, -0.226848, -0.417287, 2.126517, -0.033296, 0.886329, -1.372018, -1.628435, 0.905553, 1.162221, 1.178142, 1.164123, 0.018303, -1.063177, -1.044765, 0.932888, -0.542540, -1.341149, -0.841944, 0.181666, -0.760307, 0.365638, 1.136443, 0.586827, -0.549936, -1.024233, 0.686019, 1.172436, -1.195500, 1.648444, -0.860789, 1.984140, -0.562530, 1.068550, 0.820052, 0.004925, -0.905243, -0.585923, 0.812571, -1.194839, 1.588908, 0.154142, -0.667513, -0.976715, -0.900715, -2.137851, -0.029275, 0.462374, 1.365431, -0.609242, 0.437064, 0.294196, -0.427206, -0.547533, 1.178134, 0.981524, -1.604185, 0.410802, 0.800596, 0.768629, -0.135316, -0.635364, 0.466460, 0.855248, -0.306327, -1.619158, -1.690005, -0.069627, 1.103687, -0.189757, 1.203529, -2.072472, -0.845851, -1.808120, -1.023832, 2.480781, 0.838583, -1.197654, -0.293655, 1.387628, -0.457815, 1.026479, 0.806395, -0.675611, 0.699221, 0.466378, 1.048193, -0.663246, -0.591728, 2.266394, -0.225591, 0.371992, 1.119077, 0.708802, 0.103001, -0.728260, -2.073881, 0.095259, 0.273308, 0.372303, 1.119573, 1.714306, -1.045988, 1.329805, 1.257593, 0.445072, 0.356109, 0.506070, 0.699784, 0.804387, -0.189716, 0.411811, 0.169152, -0.946946, -0.307675, 0.304744, 1.064546, -2.413297, 1.231530, -0.968764, 0.137263, -1.599090, 0.699505, 0.132318, -0.857124, 1.988155, 0.288182, 1.988706, -0.513385, -0.336860, 0.521630, -1.514936, -0.784927, 0.569918, 0.199542, -1.338082, 0.021224, 0.935326, -0.613849, 1.326967, -1.979565, -2.126448, -1.154053, -0.660659, 0.794577, 0.550259, -0.106965, 0.614137, 0.729337, -1.040217, -0.038715, -0.587294, -0.553673, -0.185759, 1.294328, -0.854042, -0.634073, -0.554527, -0.449931, 1.073679, -0.882607, -1.214780, 0.338811, 0.344038, 0.636910, -0.157353, -1.846560, -0.260070, 0.114208, 1.377726, -1.232429, 1.353148, 1.247317, -1.171763, 0.054241, 0.816722, 0.747489, -1.178158, 0.973666, -0.065321, 0.842525, 2.547061, -0.601756, 0.995048, 1.498048, 0.021633, -0.876766, -0.537411, 1.289243, -0.360377, -0.610149, 0.565972, 1.627097, 0.554024, -1.445850, 0.863185, 1.275448, -0.031643, -0.219922, 0.298120, 0.455954, -0.224557, -0.383242, -0.086660, -0.356925, -0.365605, -1.893211, 2.386007, -0.990333, -0.617024, 2.851954, 0.865904, -0.261912, 0.119204, -1.194053, -0.013219, -0.939413, -0.036556, 1.424709, -1.436188, -0.519601, -2.468373, 0.357839, -1.604210, -1.910444, 1.040246, -0.493924, -0.792191, -1.733001, -0.802755, -1.451472, 0.665547, -0.271514, -0.562422, -2.437899, -0.257995, 0.758206, -0.317461, -2.512169, -0.236062, 0.766459, -0.405509, 1.140516, -0.358089, -1.154601, 1.077104, 0.044310, -0.386322, -1.075785, 1.593582, -1.342062, -1.979064, 1.048067, 0.285462, -0.158958, -1.277652, 1.032558, -0.597342, 0.834443, 0.660360, -0.224562, 0.346085, -0.729058, -0.646485, 0.252244, 0.198240, 0.561815, -1.066799, -1.088456, 1.454345, 0.844808, 0.948891, -1.046167, -1.988542, 0.789948, -1.339330, 0.003825, -1.983165, -0.435328, -1.548316, 0.598547, -0.575229, 0.439156, -0.470693, 0.681816, -0.781323, -0.322944, 0.550436, -0.858773, 2.913545, -1.041819, 0.627729, 1.451136, 0.708537, -0.644942, 0.527231, -1.097292, -0.143870, 1.190734, -1.592114}, + { 1.121196, 0.913049, 0.224727, 0.295493, 0.521386, 0.013404, -1.444977, 0.159320, -0.538241, -1.485190, -0.168179, -0.148022, 0.244442, -1.098847, 0.927612, -0.459868, 0.558132, 0.112635, -1.883764, 1.447916, -0.790459, 0.438495, -0.197598, -1.250908, -0.909022, 0.565177, 0.818447, -0.727536, 2.383914, 1.743934, 1.012787, -0.830486, 0.594124, -0.914230, 0.546148, 0.739813, -0.101400, -0.128409, 0.030703, 0.949701, -0.918097, -0.533300, 0.909383, -1.407817, 1.170536, 0.997454, -2.253640, -1.772435, 0.283779, -1.077617, -0.708884, -0.995295, -2.091091, -1.598175, -0.180059, 0.717547, -1.494035, 0.676262, 0.649709, -1.000375, 0.808527, 0.317382, 1.849452, 1.449615, -1.522745, -1.345543, 0.332440, 2.538022, -0.994736, -0.157677, 1.415439, 0.486502, 0.660436, 2.549561, 1.040580, 1.802884, -0.661976, 1.653549, 0.029328, -0.623641, 0.156057, 0.235251, -0.479518, 0.606433, -0.229856, 0.530086, -0.551689, -1.561033, -1.039527, 1.227786, 1.003659, 0.187098, 0.336289, 3.351291, 0.219968, 1.023472, -0.140257, -0.999061, -0.859904, 0.640717, -1.186790, -1.451021, 0.236924, -0.158936, 0.592518, -0.138264, 0.017822, 0.283043, 1.372033, -0.993840, 3.012255, 0.412876, 1.245675, -0.586758, -0.014220, 0.820505, -0.325020, -0.743616, 1.222894, -0.168395, -1.063042, -0.424458, -1.017871, -0.653105, -0.826468, 0.989025, -0.490105, -0.641299, -0.620540, -0.584256, 0.155319, 0.282093, 1.107112, -0.688719, -0.112396, 0.429191, 0.629959, -0.674649, 0.299664, 1.482204, 0.382797, -0.550012, -0.356439, -0.433218, -0.572327, 0.955976, -0.656451, -0.643470, -0.809981, 0.870911, 0.150161, -0.762582, 0.940265, 0.792850, -0.104737, -0.003069, -0.501074, -1.032639, -0.065221, 0.833108, 1.758100, 0.212069, -1.146743, -0.345180, 0.862865, 1.761196, -0.158426, 1.628370, -1.251088, -0.404281, 2.564279, -1.290958, 0.095266, 0.680042, -0.599946, 0.690529, -2.186131, -0.156809, -0.603077, 0.915099, 1.988212, 0.410072, 1.027901, 0.980898, -1.174951, -0.459079, 0.020213, -0.427800, 0.862487, 0.503956, -1.553622, 0.437637, -2.044690, -0.425065, -1.992793, 0.588892, 0.340164, -1.734353, -0.681639, -0.200937, 0.175243, 0.518253, -0.785994, -1.568015, 0.050532, 0.093602, 0.912494, 0.172007, 1.979593, -0.115701, 0.520212, 0.015835, 2.218622, -0.617200, -0.387751, -0.461965, 0.008631, -1.208684, 0.299489, 2.273443, -0.394587, -1.143619, -1.214116, -0.314194, 2.746845, -1.313488, -0.935482, 1.086948, -0.973555, -0.089520, -0.509494, -1.439529, 0.951941, 1.350341, 0.364112, -0.194887, 0.663536, 0.394081, 0.736745, 0.466376, -1.445491, -0.877419, 0.626182, 0.112890, -0.430062, 1.319254, 1.584152, 1.635985, 0.028395, 0.379133, -0.858582, -0.460376, -1.470923, 0.957338, 0.358216, 1.388771, 0.559597, 0.693970, -1.453407, -1.997506, 0.123726, 0.103422, 0.831810, -1.821431, -0.334391, 0.286385, 1.075966, 0.714123, 0.182323, 0.695506, 0.659939, 1.157310, 1.543703, 1.129990, 0.756094, 0.782107, -0.206242, -1.264899, 0.344629, 0.127976, -1.050204, 0.149391, -0.342867, -1.167233, -0.896938, 1.079780, 0.469922, -0.945153, 0.628462, 1.616045, -0.503894, -0.131417, -1.007243, 0.998697, -1.284925, 0.315036, 1.131767, -0.598475, -0.763755, 0.069760, 0.797599, 0.708562, -1.249242, 0.818001, 0.128692, 0.247091, -0.161016, 0.686158, 0.323925, -1.270214, -0.664460, 0.408240, 0.935232, 0.352592, 0.463682, 1.127235, -0.255857, 0.566028, 0.568350, -0.035707, -0.402232, 0.640763, -1.002903, -0.565941, -0.150687, -1.431764, 1.168222, -0.509102, -0.312772, -0.195573, 0.323634, -0.654690, 0.389272, 0.155857, -1.737193, 1.244348, -0.736734, -0.944448, -1.500382, -0.393093, -0.541649, 1.129322, 0.293764, -0.162128, -2.096403, 0.673840, 1.430272, 0.925517, 0.604122, 0.389791, 0.382815, 0.018361, 0.223297, 0.364330, -2.222618, -0.572755, -0.179977, 0.623336, -0.243666, -1.402885, -1.614455, -0.254631, -1.538222, 0.708916, 1.932440, -0.730311, 1.712572, 1.178687, -0.018815, -1.741824, -1.379737, -1.002322, 0.611046, -0.895245, -0.862830, 0.007659, -1.065627, -0.128319, -0.061685, -0.626460, 0.664611, -1.477729, -1.893656, 0.902734, -0.953751, 1.232308, 0.275728, 1.545748, 1.189662, 0.226549, -0.770528, -0.281315, 1.421401, -1.417377, 0.337632, 0.011348, -0.614507, 1.882470, -0.546018, 0.398534, 1.540267, 1.324163, 0.059688, -1.873617, -0.155979, 0.521821, -0.608665, 0.236033, 0.087128, 0.576215, 0.595842, 1.078415, 0.734910, 0.507454, -0.214250, -1.077074, 0.153826, -1.014509, 0.692207, 1.311470, 0.697180, -0.249959, 0.028305, 0.094977, 0.131384, 0.708443, -0.992103, 1.153657, -0.529387, -0.204991, -0.135109, 1.270139, 1.937257, 0.402325, 0.561168, 0.365565, -0.110630, -1.036467, 0.589745, 0.323261, -1.579593, -0.115423, -0.175995, 0.427877, 0.457281, -0.053168, 1.933620, -0.318937, 2.805857, -0.503121, -1.276002, -0.608733, -0.038350, -0.532141, 0.288323, -1.279881, 0.454279, 0.885709, 0.384374, -0.707655, -0.115121, 0.250070, 0.466229, -2.334666, 0.416238, 0.410952, 0.817884, 0.311380, 0.021374, 0.594448, 0.362567, -0.593646, -0.647269, -1.014824, -0.853950, -1.033395, -0.578113, -1.763574, 1.064649, -1.042141, 0.721200, 0.820323, 0.504960, 1.753738, 1.471586, 0.146380, -1.068101, -1.173753, -1.038075, -0.010970, -0.544359, -0.290128, 0.870345, -1.061759, 0.377274, 0.558368, 0.006421, -0.294461, 1.165415, -0.118640, 0.500286, -0.227881, 0.235906, -0.260223, 0.879910, -0.376681, 0.125253, -0.960209, 0.507490, -0.589756, 0.961868, -0.696753, -0.409597, 0.130121, -0.112333, -0.366514, 0.255455, 0.615590, -0.630655, -1.317281, 1.046315, -0.317096, 1.438108, -0.625735, -2.762111, 1.120267, -0.811210, -0.570747, -0.487522, -1.156121, 1.547127, -0.006320, -1.003309, -1.464725, 1.315346, -0.241042, -0.189228, 0.509418, -0.417807, -0.274713, 1.553774, -0.223212, -0.460495, -1.340979, 1.415028, -0.776364, -0.171084, 1.042866, 0.356066, -1.366609, -0.169600, -0.417075, 1.463557, 0.465179, -0.250811, 1.173648, 0.550085, -0.641996, -0.360981, 0.723621, -0.026008, -0.795437, 0.990667, -0.364679, -1.277009, 1.364988, -1.587727, 1.266973, -0.255348, 0.152481, -0.959966, 0.027337, -0.051159, 0.871901, 1.549524, 0.153019, 2.086485, -1.313331, -0.365556, 1.254617, -0.000788, -1.098006, 0.118956, -0.542988, -1.173139, 2.228840, 0.533761, -1.155824, 0.291308, -0.248067, 1.389960, -0.651584, -0.714495, 0.006152, -1.216552, 0.929467, -0.218075, 0.477205, 0.115345, 1.178099, 0.717031, -0.063874, -0.578262, -0.884950, 0.166921, 1.020278, -0.659600, -0.720926, -0.031397, -0.561351, 1.540916, -0.985656, -1.143263, -1.552798, 0.679999, 0.892846, -0.431267, -0.207879, -0.306127, -0.763220, 1.235325, 0.382557, -2.203262, -2.477513, 0.835286, 1.464192, -0.301626, -0.043183, -1.526922, 0.212803, -0.674223, -1.200185, 1.150307, -0.250118, 0.428274, -1.722597, 0.216660, 0.944810, -2.706496, 1.567682, -0.263921, 0.941895, -0.856352, 0.534401, -1.927845, -1.365751, 1.465001, -0.898772, -0.333476, -2.192845, 0.673378, -0.428384, -0.356294, -0.232795, 0.580580, -0.021559, -1.838800, 1.250482, -0.393340, -1.522227, -0.703831, 1.136576, 0.588878, -1.167015, -2.628160, -1.430623, 1.751101, -0.274433, 1.493512, -1.183533, 1.045827, 0.464424, -1.009340, 0.064005, 0.859701, 2.187041, 0.357460, -1.603826, -1.619874, 0.071732, 1.234178, -1.068889, 1.671384, 0.232646, -0.462272, 1.158782, -0.009762, -1.572829, -0.027571, 1.139675, -0.552253, -0.777062, 0.242732, -0.062879, 0.651997, -1.719481, 1.141301, -1.648873, 2.165616, -1.075853, 0.266777, 0.285473, 0.486501, 0.459955, -0.643081, -1.165501, 0.578168, -1.086284, -1.348497, 0.431840, -0.103234, -0.164866, 0.219275, -0.324615, -1.534822, 1.432377, -0.022663, -0.985556, -0.272494, 0.217223, 0.451287, -0.674441, 0.459917, 0.813772, -0.925176, -0.738707, 0.057353, 0.151007, 1.341390, -0.541923, -0.045459, 0.552862, 0.774107, 1.100468, 0.537163, 0.171553, 0.703336, -2.126280, 0.838574, -0.841920, -0.625176, 1.784743, -2.616980, -0.832500, -1.508647, 0.675482, 0.829694, -0.072344, -0.743607, -0.065532, 0.587392, -0.478479, -1.095798, 2.689657, -0.148836, 1.262029, -0.568357, -1.287765, 0.629114, 0.746980, -0.025607, -0.313764, -1.055223, 0.328419, 0.864856, 1.254268, 0.689438, -0.091569, 0.891786, -0.424388, -1.088019, 0.636457, 1.027289, 0.489799, -0.181714, -0.278640, -0.768916, -0.199273, 0.142676, 0.706873, -1.396263, 1.488777, 0.266760, -2.435653, -0.369603, -1.484147, 1.643054, 1.062454, 0.117567, 2.345424, -0.166064, -0.527967, 0.236796, 0.778643, -0.681712, -0.702613, -0.148619, -2.182574, -0.087683, -3.125081, -0.452947, -2.737507, 0.721329, -0.237513, 1.894558, -0.454753, -1.437120, -0.027743, 0.845634, 1.426627, -1.124206, -0.698032, -0.580334, -0.413842, 0.015509, 0.833079, 0.014015, -0.525016, 0.186093, 0.007320, -1.956010, 0.724036, 0.709617, -1.766207, 0.057603, -1.738762, 0.031882, 0.793290, 0.347223, 0.169624, -0.017426, -1.647903, 1.867884, -0.390846, -0.571089, -0.183970, -1.394723, -1.360242, -1.316965, -0.804665, 0.135807, -0.813605, 0.985454, -0.534191, 1.579096, -1.093068, 0.415426, 0.341138, 2.885369, 1.025118, 1.125286, 1.630957, 0.104799, 0.083962, -1.529740, 0.720408, 1.222590, -0.182030, 1.592610, 0.574730, -1.588404, 1.019717, -0.581530, -0.243570, 0.112371, -0.190873, 0.346026, -1.322094, -0.442979, -0.679692, -0.367964, 1.120293, -1.440130, 0.416453, 0.098071, -0.671729, 0.873683, 0.773861, 0.459882, 3.254330, -0.136546, 0.330528, -0.324275, -0.560139, -1.012834, -0.017002, 0.711932, 0.474547, 1.243437, -0.434295, -0.149413, 0.927523, -0.931849, -0.427743, 0.449530, 0.281893, -0.231803, 0.983728, -0.618791, 1.330002, 0.531814, -1.305593, 0.485143, -0.096633, -0.216396, -0.327995, -0.067355, 0.364753, -1.815405, -0.067767, 0.348109, -1.173978, -0.944664, 1.124628, 1.485579, 0.501180, 1.690340, -0.062907, -1.477889, 1.277349, 0.812615, 0.102166, -0.834579, -0.112053, 0.957952, -0.544490, -1.690204, 1.434574, 0.065148, 0.239336, 1.002741, 0.051643, 0.283180, 0.210426, -0.320920, -1.146500, -0.368898, -1.581585, -2.168375, -1.226460, -0.988694, 1.147270, -0.384241, 1.554776, -0.625619, 0.234487, -0.799033, 0.142860, 0.605788, 1.203784, -0.542459, 0.853763, -0.434085, -0.582761, 0.627395, -0.237141, -0.211840, -0.319337, -1.659089, -0.575226, -0.924660, -1.193922, -1.265261, -2.004772, -0.297467, 1.494338, -0.557726, -0.013057, 0.641641, -0.366018, -0.208405, 1.699302, -2.425183, -0.657281, -1.137447, 0.225555, -0.924192, 0.770656, 1.989124, 2.022899, -0.755642, 0.871839, 0.941677, 0.095472, 1.740476, 0.808622, -0.331252, 0.190235, -0.773856, -0.727357, -0.330519, 2.319225, -0.496547, 1.347834, 0.222025, 0.672701, -0.586946, -0.113868, 0.794123, -0.100264, -0.733795, -0.505692, -0.430446, 0.424789, -0.462122, 0.988135, 0.593604, 1.969401, -0.448551, 0.203132, -1.155378, -1.473591, -0.955992, -0.534818, -1.308230, -0.331111, -1.875286, 0.213646, 1.251128, -0.238851, -0.592606, 0.224330, -0.508295, -0.705950, -0.920873, 0.832588, -1.870333, 0.128536, -0.525655, -1.838481, 0.537175, 1.144705, 0.958069, 0.227811, -1.503627, 0.216114, -0.165320, 1.426539, -0.275070, -0.148870, 0.728770, 1.084694, -1.115191, -1.007776, 1.419485, 2.484231, -2.552051, -0.581333, -0.476718, -0.735419, -0.378598, -1.437784, 0.001498, -0.015774, 0.067744, 0.522280, -0.943855, -0.270356, -0.634315, -0.644252, -0.944481, 0.957509, -0.173028, 0.080804, 0.327430, -0.190548, 0.623995, -2.375506, 0.446369, 0.599216, 1.092471, -0.357549, -0.995762, -0.008744, 0.644243, -0.296220, 0.066535, -0.629578, -0.270029, 1.668464, 0.370487, -0.600051, -0.387333, -2.213958, 0.585949, 1.118457, -0.341179, 0.331691, -1.987882, 1.183606, 0.625173, -0.354180, 1.063886, -0.394724, -0.146816, -0.647208, -0.921980, -1.202744, 1.706660, 0.514368, 1.196061, -0.710655, -0.093976, 1.085945, -0.001826, -0.737892, -0.724666, 0.351458, 1.401097, -0.821723, -1.673391, -0.090268, 0.977719, 0.072612, 0.197050, 0.783137, -0.821823, -1.405758, -1.092715, 0.181622, 0.240111, -0.778875, 1.103112, -0.171403, 0.965584, -0.194267, -0.832977, 0.797554, -0.186782, -1.302590, 1.428996, -0.156897, 1.887517, -1.068628, 0.142003, -0.377388, -0.848400, 0.736850, -0.172556, -0.020610, -0.499073, -1.266469, 0.476973, -0.807829, -0.077064, -0.288479, -1.075996, -0.840650, -1.149184, 0.645097, 0.885382, 2.280417, -0.922061, 1.538205, 0.939168, 1.020579, -0.162697, 0.395177, 1.973808, 1.241222, 0.777020, 1.071541, -2.087879, -0.102508, -0.620444, -0.937411, 1.200385, -0.534801, -0.127111, -1.342898, 0.180041, 0.803535, -1.111153, -1.952474, 0.756330, 1.090823, -0.039904, 0.890134, -0.479378, 0.583535, -1.809236, -1.051627, -0.516577, -1.105729, -0.143779, -0.206463, -1.377821, -1.766262, -0.716406, 2.225419, -0.193843, -0.791264, 1.082064, -0.970461, -2.031578, -1.704886, -0.403736, -0.199443, -0.057310, 1.697849, -0.228341, 1.296910, -0.122604, -0.842765, -1.598740, 0.411115, -1.765546, -0.223955, -0.538160, -0.092866, 0.360087, -0.344572, -0.604889, -0.436286, -0.479376, -1.074208, -0.544818, -0.205681, 0.321691, 0.605522, -0.405837, 1.585936, -1.380939, 0.114205, -1.241388, -2.392691, -0.613777, -0.577870, 0.102384, 1.017535, -0.272301, -1.872820, 0.285359, 1.045030, -1.215383, 0.403031, -0.033932, -0.177981, 0.355023, -1.753937, 0.879588, 0.242552, -1.513571, -0.695710, 1.550073, -1.467657, -0.512426, 0.736484, 0.744252, 0.342947, -0.830607, -0.441627, -0.358323, -3.871378, 0.507113, 0.653945, 1.018359, 0.323332, 1.478385, -0.526023, 1.571037, 0.523595, 0.127728, 1.916620, 1.313062, 0.104269, -1.557854, -1.321794, -0.104539, -0.784794, -1.241153, 0.034678, 0.144311, 0.466746, 0.491077, -0.217725, 1.016971, -0.547381, -0.319909, -0.965926, 1.756093, -0.842369, 0.100637, -0.395082, -1.182025, -0.435817, -0.381286, -0.607864, 0.370338, 0.479601, 1.305272, 1.003883, -1.356202, 2.013647, -0.921405, 0.320665, -2.040347, -0.387052, 0.145215, 0.068170, -2.016703, 0.413951, 0.796867, 0.968580, -0.084631, 1.169034, 0.409503, 0.808413, -1.164042, 1.589634, -0.257090, -1.002726, -0.908827, -0.546281, -0.281153, -0.784852, 0.042096, -1.331007, 1.825740, 0.415771, 0.207721, -0.493031, 0.438583, -0.365686, -0.057641, -1.332847, -1.023765, -0.596834, -0.441481, -0.454220, -1.816064, 1.215382, -0.423417, 0.391148, 0.647623, -0.046397, 0.411057, 1.191314, 0.096672, 0.457360, -1.797594, -0.050126, 1.915572, -0.622539, 2.071489, 0.528071, 1.086352, 0.393627, 1.396771, 1.680294, -0.854964, 0.220967, -0.529542, 1.099047, 0.446466, -0.468418, 0.880296, 0.535349, 0.770833, 1.068697, 1.772080, -0.193348, 1.597201, -0.304640, -0.810549, 0.998237, 0.180152, 1.509474, 0.124902, 0.323070, -0.335875, -2.889107, -0.880951, 0.587018, 0.330587, -0.259975, -0.395515, -0.652667, -0.511845, 0.593174, -0.038552, -0.449708, -0.918939, -1.599508, 0.431306, 0.264760, -1.311859, -0.709499, 0.715552, -1.396528, -0.925184, 1.163747, -1.176519, 1.415728, 0.890724, 0.346257, 1.222724, 0.854781, -2.068403, 1.246971, -0.552407, 0.715622, -1.149685, -0.619535, 0.068122, 0.169326, -0.570314, -0.419155, 1.684278, 1.843248, -1.593743, -0.024926, -0.408404, -1.909711, 0.649675, 0.120517, -1.104687, -1.918444, -0.210967, 0.003327, -1.244751, 0.668577, 0.828062, -0.354505, -2.118447, 0.604459, 1.321517, 1.294158, -2.776321, 0.127962, 1.041373, 0.159998, 1.101412, -1.309190, 0.342368, -1.025026, -0.664232, -0.890909, -0.215892, 1.790076, -0.174170, -0.288365, 0.136368, 1.120362, -0.125018, -0.949134, -0.162772, -0.021111, -1.709015, -1.476247, 1.561611, 1.748154, -1.321914, 0.044481, 0.725504, -1.275527, -0.259912, 0.410877, 0.215258, 0.339934, -1.181545, 0.439285, 1.376379, 0.261230, 0.675839, 1.388046, -0.803993, 1.465973, 0.967451, 0.189602, 0.401106, -0.522188, 2.158068, -0.892258, 0.164156, 0.812862, -0.495200, 2.831418, -0.738756, 0.697627, 0.728019, 0.252619, -0.458619, 0.946898, -0.250727, 0.508553, -2.280144, -0.640528, 0.859146, 0.941879, 2.335837, 0.150641, 0.800070, -0.630671, -0.802366, 1.043509, 1.023772, -1.111745, -0.878493, -1.027083, 0.403818, 0.104096, 1.506201, 0.772464, -0.458959, -0.075498, 0.187151, 0.935988, 0.404326, 0.793238, 0.241246, 0.065167, 1.197851, 0.871597, 0.140559, -0.028275, -0.147984, 1.930768, 0.188451, -0.258520, 1.724159, -1.088689, -0.431265, -0.457407, -1.678229, 1.480410, 0.967478, -0.319689, -0.115958, 0.013029, -0.977171, 0.901540, -0.898880, -0.657762, 0.542148, -0.471107, 0.134592, 0.627714, -0.124650, 0.318570, -1.487050, -0.110094, 0.075294, 1.244708, 0.346143, 0.419413, 0.111041, -0.524975, 0.472528, -1.106562, 0.301021, 0.644703, -1.910807, -0.058555, -0.656233, -1.272565, -0.544633, 0.185445, 2.272938, -0.554540, -0.810567, -0.161963, -0.959781, -2.409165, 0.229146, -0.635562, 1.388536, -0.327056, -0.927584, 0.357517, -1.630899, -1.698964, -0.032944, -0.912237, -0.800460, 0.393215, 0.491380, 2.598691, -0.512136, -1.022815, -0.253954, -0.050545, 0.583673, 0.347255, 1.358017, -0.281521, -0.029950, 0.589334, 1.032821, -2.113466, 1.129863, 0.853139, 1.352730, 0.495366, -0.250603, 0.084159, 1.366243, 0.398776, -1.622603, -1.255666, 0.797367, 1.767597, -0.973568, -1.554018, 0.240386, 2.094720, 1.256655, -0.580374, 0.243386, 0.350185, 0.186770, 1.524437, -1.602239, -0.537658, -1.856081, 1.056017, 0.202074, -0.441021, -0.992360, -1.330661, -0.326914, 1.075425, 0.829446, -0.851153, 1.071801, -0.036078, -1.020283, -1.052431, 0.413927, -0.854294, 0.815007, 0.235630, -0.755187, -0.014926, -0.150027, -0.326607, -1.008763, 0.473571, -0.611267, -0.500135, -0.392581, -0.037473, 0.959875, -0.175590, 0.297357, -0.223526, 0.210956, -0.901041, -0.222673, 0.820879, 1.307972, 1.193798, -1.364767, -0.071308, -2.201272, 1.543022, -0.378431, -0.325057, 0.311281, 0.501796, -0.546887, -0.600176, 0.808599, -0.545665, 0.332415, -0.252502, 0.357523, -0.619661, -1.973540, -0.903748, -0.759105, -0.678511, 1.020405, -0.579149, 1.277483, -1.251127, 0.596407, -2.665360, 0.566327, -0.409434, -0.206457, 0.544451, -0.603105, 0.322316, -1.617692, 1.284044, -0.187186, -0.154841, -0.571160, 2.100584, 1.034362, 0.322839, 0.459475, 1.444326, 0.446683, -0.772395, 0.570541, 0.799988, 0.422327, 0.685075, -0.017632, 0.290018, 0.607797, 1.071577, 1.348947, -1.111220, -0.587320, -0.236908, -0.827958, 0.113629, 0.396391, -1.065581, 1.094684, -1.842498, -0.052953, -0.271341, -0.962368, 0.267612, -0.557899, -0.394767, -2.320183, -1.192395, -0.049846, 0.936756, 0.785959, 1.123509, 0.991764, 1.186557, 0.386606, -0.303021, 0.324662, -0.996602, 0.489292, -1.780136, 1.020763, 0.887868, -0.415910, 1.380229, 0.740741, 1.112486, -0.545787, -0.861682, 0.612006, -0.428986, -1.192975, 0.930273, 0.888733, -0.019847, 1.590569, 0.234856, 0.388752, 1.055154, 0.979622, 1.329986, -0.605895, 0.307087, 0.526777, 0.932971, -0.798612, -0.326783, -0.542816, -0.934519, 0.483030, 1.370041, -1.397341, 0.471375, -1.152030, 0.303307, 0.204606, 0.182150, -0.207422, -2.227689, 1.397467, 0.191249, 0.560754, -0.588613, -0.477204, -1.066701, -0.915967, -1.317522, -0.898317, 0.244496, -0.459551, -0.830520, -0.515574, 0.357422, 0.711829, -0.652665, -0.326407, -0.080041, 0.019042, -0.351068, -0.834212, 0.720049, 0.625061, 0.265925, 0.447552, 0.053882, 0.462740, 1.807332, 0.473469, 0.685337, -1.137383, -1.751517, 0.568099, 0.673718, 1.417047, 0.456236, 0.072131, -0.053378, 0.193144, -1.255609, -0.466870, 0.975661, -0.084823, 1.106010, 1.277784, 0.039031, 0.952513, -0.398797, 0.706862, 0.946269, -0.765894, 0.679468, -0.291297, 0.060981, -0.976066, -0.996424, 0.286266, 0.375961, -0.863181, 1.607539, -0.976106, 0.208023, -0.946768, -1.445206, -0.117064, 0.347732, -0.374761, -0.005753, -0.795332, 0.368122, 2.128626, -0.755834, -0.366233, 2.082525, 2.119452, -0.025033, -0.323971, 0.023935, -0.274736, 1.380141, -0.327271, 2.001141, -0.746428, 0.390822, -0.846911, -0.746021, -1.313140, 2.098876, 0.533132, -0.416948, 0.457684, -1.240871, 0.144019, 1.280403, 0.270663, 0.560360, 1.519387, -0.966378, 0.616029, 0.291146, -0.990966, 0.860259, 0.177024, -0.412966, 1.339821, 0.144038, -0.280354, 1.848864, -0.449787, -0.418596, 0.415726, -0.417262, -0.641884, -0.457003, 1.738806, -0.255362, 1.041837, -0.461112, 0.869481, 0.523599, -0.614471, 0.319261, 2.547606, 0.776768, -0.384575, 0.448889, 0.998915, 1.090934, 0.351927, -0.932050, 0.068386, 1.473755, -0.105674, -1.303833, -0.601616, 0.771729, 0.443506, 0.576029, 0.034585, -0.164469, 0.646943, -1.095639, -2.160556, -0.997794, -0.441792, -0.421310, 0.294204, 0.416402, 1.822842, 0.729831, 1.104272, 1.114421, 0.135066, -1.836820, -0.647657, -0.318145, -0.986342, -0.680491, 0.960227, 1.050510, 0.394359, 0.372653, -1.029183, -0.698650, 0.935148, 0.872294, 0.404194, 1.323448, -0.704365, 0.126152, -0.300734, 0.375414, -1.089450, 0.504999, -1.135533, -1.050475, -2.429714, -0.041466, 1.565657, 1.631003, -0.127943, 0.045148, -0.675251, -0.350537, -0.003374, -0.003019, 0.725005, -0.925911, -0.534507, -0.665370, 1.739430, -0.016418, 1.200501, 0.261086, -2.512910, 1.110976, -0.912571, 1.024024, -1.158199, -0.185635, -0.161165, -0.241746, 0.998776, 2.398459, -1.300536, 1.573944, 0.396408, -0.643391, -1.421031, 1.676320, 1.247417, 0.435394, -1.159584, 0.458776, -1.376695, 0.081189, 0.827625, -0.257758, 0.572544, 0.247319, 1.585524, 0.557711, -0.982113, 0.355642, -0.072212, 2.208763, 0.547105, -1.445031, -1.308172, 0.634618, -0.132058, -1.413948, -0.781083, 0.182559, 0.199034, -0.809940, 0.008270, -2.018517, 0.220590, 0.729468, 1.008314, -0.015779, 0.276231, -0.818019, 0.910626, -1.002303, 0.108709, 0.799210, 0.278520, 0.579953, 0.410883, -1.446025, -0.377541, 2.220417, 0.912346, 0.376209, -0.648969, 0.427449, 0.667670, -0.839820, 1.720410, -0.091358, 0.636570, -0.327864, -0.004057, 0.129085, -0.741567, 0.239342, -0.898024, -1.428915, -0.258348, -0.474190, -0.138525, 0.591183, -2.566592, 1.252947, 1.226900, 0.379667, -0.490387, -0.340110, 0.891402, 0.339250, -0.537354, -0.059539, 1.083446, 0.287935, -0.226294, -0.227145, 0.740013, -1.662723, 0.215506, -0.094727, 0.422175, -0.219009, -1.579347, 0.044314, -1.530381, 1.127774, 0.913002, -0.371390, -0.312615, -0.867662, 0.331312, -1.062837, -0.137691, -0.801380, -0.930415, 1.222510, 1.729087, -0.328123, -0.943253, 0.487549, 0.836397, -0.903945, -0.278503, 0.867683, -1.602632, -2.514505, -0.318580, -0.530164, -1.543670, 2.227553, 0.721774, -1.436769, 0.072219, -1.892994, 0.099361, -2.172647, 0.065373, 0.981931, 0.740744, -0.231815, 1.376774, -0.295062, -0.602543, -1.515826, -0.078981, -0.502477, 0.032080, 0.726856, -1.734185, 1.108798, 0.773086, -0.477487, 0.099998, 0.173851, 1.127636, 0.890199, -0.181943, -1.216389, -1.604799, -0.558497, -0.232263, 0.324307, -1.855499, 0.038724, 2.097495, 2.074189, -0.000038, -0.781081, -0.269145, -0.649710, 1.400672, 0.974836, -0.627940, 0.482520, -0.115141, 2.671334, 0.582280, -0.033157, 2.010197, -0.014143, -1.245355, 1.448615, -0.788463, 1.039624, -0.746549, -1.998192, -1.038733, -0.718035, 0.506349, -0.665163, 0.447643, -0.419258, 0.202551, 0.299544, -0.982287, -0.735532, -0.263571, -0.272941, -0.894240, 1.746835, 1.557758, -0.423254, 0.802247, 0.852854, 1.019567, 1.020447, -0.043548, -0.200504, 1.084061, 1.114289, 1.729770, -1.267496, 1.336323, 0.449409, -0.158680, 0.228439, 0.928360, 1.304563, 1.777020, -1.223731, -0.746391, -0.561204, -0.328748, -0.940450, 0.585843, 0.076186, 0.914404, 1.714862, 0.827422, 0.010977, -1.976914, -0.841875, -0.547719, 0.346015, -0.317527, 0.282425, 0.325940, 0.197143, -0.874265, 1.766502, -0.068851, -0.279538, -0.445320, 1.018064, -1.249788, 0.906900, 0.222624, -0.743957, 0.170202, -0.471211, -0.652519, -0.525878, -1.117258, -0.174811, 0.536083, -0.564021, 0.097670, 0.683203, -0.504684, 0.518277, 0.084049, 0.469236, 0.401045, -0.558915, 0.360808, 0.587490, 0.464571, 0.219484, -0.588746, 0.563576, 0.088448, -0.464884, 0.053972, -0.444764, -0.465701, -1.257421, 0.371674, 1.463238, -1.102397, 0.614920, 0.545926, 0.766448, -0.033662, -0.474909, -0.402091, -1.182641, -0.715992, 1.218357, 1.090960, 0.248299, 0.850661, 1.543618, -0.422131, 1.259312, 0.478272, -0.280197, -0.455208, 0.799620, 1.217559, -0.063316, 0.204669, -0.339663, -1.743606, -0.514466, -0.691603, 0.685485, 1.251020, 0.298907, -0.343094, 0.721730, -0.033435, 0.031564, -1.388411, -0.413764, -0.440570, -0.210302, -1.108279, -1.140198, 0.843116, -0.316969, 0.639762, 0.546947, -0.915686, 0.049832, 0.535957, 0.217332, -0.181310, 0.330865, 0.016305, -0.906886, 0.106428, 0.126061, -0.631156, 1.886933, -0.721478, -1.385167, 0.220763, -0.683038, -1.242332, 0.878392, -1.836967, -0.723121, -1.158405, 1.410812, -0.280422, 1.664641, 0.508401, -2.083087, 2.110348, -0.483866, -1.294663, -1.021694, 1.658059, 1.551825, 0.721076, 0.518781, 0.201690, 0.427741, 1.488444, 1.802702, 1.077187, -1.208578, -0.710557, -0.084447, 0.060788, -0.686247, -0.208280, 0.560519, 0.137611, -0.092126, 0.148269, 0.117665, 1.653354, -1.197359, 0.269217, 0.851610, 0.779215, 0.158170, -0.432385, -0.761417, 1.630607, -0.760248, -1.420878, -0.028296, -0.213760, 0.070403, 1.322678, 1.730723, -0.613411, 0.471467, -0.454382, -2.905979, -0.854905, 0.415078, -0.340441, -0.287277, 1.582551, -0.749597, 1.181264, 0.097658, -0.871213, -0.887261, 0.038894, 0.715083, 1.293604, 0.992230, 0.417731, 0.220043, 0.580737, 0.761964, 0.207827, 0.716731, -0.586437, -1.440198, 0.643752, 0.251032, 0.641432, -1.851960, -0.088980, 0.902666, -0.730558, -0.601154, 0.693894, 0.155612, -1.090340, 0.057653, 0.813305, -1.193078, 0.564304, 1.042082, -1.233323, -0.012854, 0.119368, -0.529564, 0.966824, -0.354905, 0.524664, 0.589277, -0.440730, 0.186336, -0.308477, -0.589551, -0.534371, -0.802936, 0.319862, 0.729057, 1.037274, -1.271740, -2.216436, -1.079517, -1.158742, 0.027625, -1.004502, 0.656648, 3.252840, -2.368997, 1.352630, -0.453094, -0.074521, 0.536188, 1.298509, -1.091323, -0.191035, 0.782099, -1.392398, -2.005632, -1.707445, 0.267265, -0.296669, 0.147611, 0.499997, -0.445238, -0.736553, 1.209765, -0.614404, -1.053931, 1.720207, -0.188654, 2.502204, -2.670313, 1.438627, -0.029130, -0.219989, 0.060401, 0.153533, 0.275603, 0.703980, -1.933455, 1.202498, 1.056154, 1.090506, 0.636538, -1.883762, 0.095589, 0.993954, 1.524746, -1.017967, 1.727081, -1.491319, 0.373989, 1.356493, -0.900392, -0.437595, -0.944447, 0.617903, 1.028725, -1.434314, -0.554017, -1.451639, -0.320310, -1.004956, -0.885007, -0.056770, 1.593924, -0.636839, 1.499751, 1.665243, -0.805269, 0.084077, 1.433538, -2.883698, 0.674365, -0.038502, -0.505362, 0.780168, 1.039655, -1.154947, -0.024273, -0.349764, 0.007776, 0.395214, 1.373254, -1.385156, 1.818863, 1.387305, -0.432959, -0.102355, -0.125928, 0.523514, 0.210265, -0.979752, 0.379961, 0.141487, -0.283094, -1.893242, 0.045608, -1.535412, -1.098828, -0.632224, -0.222200, 1.855977, -2.307454, 1.100581, 1.173041, -1.341296, -0.908718, -1.277738, -1.664070, -1.166867, -0.162483, 1.814503, -0.494892, -0.485955, 0.734687, -1.708182, 0.678910, 2.294942, 0.095469, -0.451610, 0.037455, 0.556082, 1.835836, 0.094074, -1.521902, 1.607256, 0.231968, -0.164203, -0.676164, 0.655267, 0.094755, 0.736146, 0.085353, -0.501108, -0.277085, -0.562710, 0.075026, 1.496057, -0.342438, 0.083898, 0.559480, -0.804209, -1.183650, 0.660909, 1.136111, 0.562211, 1.137781, -0.344136, 0.470560, 0.107841, -1.927994, 0.341170, -0.513143, -0.383591, 0.769422, 0.952335, -0.041470, -0.698561, 1.257886, 1.786137, 0.267829, 1.603306, -0.427290, -0.922404, 0.741156, 0.056361, -1.667659, -1.493280, -0.975095, 0.336825, 1.407215, 1.007527, 2.168879, -0.549738, -0.324690, 0.643241, 0.130433, -2.029375, 0.273297, 0.356747, 2.454002, -1.501681, 1.689960, 0.807211, 0.680943, -0.223666, -0.095597, 0.415829, -0.010490, -0.446814, 0.080485, 0.222805, 0.498386, -0.339831, 0.820964, -1.249063, -0.000191, -1.332485, 0.325495, -1.556487, 0.728763, 0.338510, -0.541931, -0.349884, -0.735450, -0.045681, 1.253030, -1.315233, 0.236817, 0.953056, -1.000244, -0.435249, -0.325658, -0.362255, 1.309679, 1.161254, 0.374657, -0.641233, 0.717613, 0.493782, -0.517233, 1.211785, 0.708884, -0.503986, 0.658306, -0.092916, 0.812961, -1.927425, -1.315770, -1.485392, 1.108066, -0.748031, 0.723618, 1.056496, 0.698103, -0.632683, -0.132545, 0.109981, 1.825642, 2.133781, 0.078289, 0.407666, 0.525420, -0.319575, 0.307204, 0.365801, -2.361800, 0.010139, 2.296167, -1.247896, 2.137934, 0.192587, 0.953426, -0.071159, 1.821149, 0.654854, -0.911917, 0.043205, 3.556018, -0.048835, -1.999271, -0.093606, 1.777986, -0.823072, -1.121782, -0.048323, 0.758147, 1.690014, -0.108150, -0.653903, -0.122230, -0.005864, 0.183167, 0.406416, 0.555392, 0.061161, -0.848593, -1.072431, -0.167310, -1.807428, 1.321827, -0.670502, -0.092492, -0.296547, -0.262147, 1.455033, 0.097799, -0.151837, -0.282328, -0.263528, 0.329678, 0.430329, -2.021722, 0.118310, 2.376930, 1.257689, 0.388539, -0.305763, -0.147557, 1.695799, 0.322969, -0.068824, -1.008683, 1.111927, -0.803700, -1.568988, -0.772161, 0.795903, -0.525587, 0.683493, -0.543381, 0.750171, 0.373628, -0.580331, -0.403538, 1.649374, -0.675755, -0.902680, -0.545228, -0.536477, 2.341003, -0.955187, 0.896374, 0.560947, 1.041733, 0.888788, -0.385130, 0.354999, 1.001851, 0.000608, -0.979621, -0.252861, 1.359788, 1.030872, 0.347983, -0.234724, -0.792954, 0.673705, -1.826589, 1.214185, 0.661556, 0.227302, 1.009797, -0.500393, -1.073619, -0.503445, 0.769969, 0.547385, -0.558549, 0.883959, -0.591815, -1.774377, -0.676829, -0.783596, 0.040185, -1.252069, 0.653185, 1.057813, 1.179969, -1.660486, 0.071263, -1.590326, -0.520223, 0.243366, -0.303428, -0.368659, 0.247438, 0.143691, -0.147891, -1.499183, -0.318256, 0.474509, 0.549729, 0.199602, 0.762655, -0.081424, -0.152700, 0.006788, -0.569875, 0.910566, -1.093933, -1.138624, 0.819628, 0.168549, -0.964445, -0.076931, 1.486776, -0.027212, 1.540254, 1.576027, 0.347352, 0.331173, 0.957891, -0.956078, -0.241708, 0.050697, -1.897355, 0.199586, -0.641573, -0.305572, 0.820149, -0.670253, -0.544410, 2.720953, 0.814357, -0.136757, 0.908064, 0.468156, -0.553230, 1.314121, 0.207741, 1.729001, 0.024632, 0.502124, 0.151179, 0.190125, 0.637994, -0.192203, -0.687091, 0.589081, -0.942280, -0.176843, -1.591014, 0.543004, -1.810700, 0.072688, 0.047752, 0.943120, 0.711249, 0.525869, -0.952644, 3.026316, 0.294049, 0.316042, -0.047463, 0.805011, -0.728400, 0.672068, -1.567478, 0.371817, -1.256618, 1.649953, 1.757491, -1.375110, 0.686327, -0.518741, -0.065898, 0.578238, -0.190789, 1.101537, -0.320330, 1.113761, -0.815026, 0.950754, 0.616289, 1.483082, -0.139093, 0.318467, -1.013434, -1.125713, -0.295719, -0.460191, -0.149806, 0.218925, 0.179397, 0.775876, 1.266895, 0.437868, -1.243266, -2.401203, -1.301369, -0.305381, -1.250641, -0.056580, -0.605638, 0.965108, -0.131423, -0.430801, -1.395735, 1.193836, -0.928882, 0.059490, 1.525272, -0.486982, 0.108403, -0.446749, 1.058290, -1.550775, -1.017283, 0.612236, -0.396100, -0.205945, 1.412077, 1.940878, -1.612480, -0.737166, -0.016795, 0.163074, 0.952093, -1.243551, -1.402646, -0.132703, 1.507095, -1.040937, 1.638227, -0.872032, -0.447915, -1.615896, 0.460938, -0.051479, 0.761001, -1.064112, -0.773465, 0.171008, -1.585315, 0.317190, 0.426265, 0.096016, -0.134831, 0.611113, -0.513516, 1.012198, 2.164569, 0.785335, -0.021226, -0.857402, 0.615203, 0.333671, -0.090562, -0.630373, 0.642515, -0.193477, 0.278835, -2.117518, -0.094177, 0.027918, -1.555385, -0.895231, 0.484290, -1.633792, -0.472235, 0.496688, -0.365161, 0.021169, -0.637063, -0.614295, 1.978980, 1.064738, -1.215006, 1.212204, -0.183785, 1.227412, 1.615088, 0.460690, 1.195802, -0.004853, 0.610624, -0.526852, -0.233714, -1.040014, -1.414295, 1.504283, -1.042767, 0.192865, -0.121765, -1.895166, -0.858413, 1.110410, 0.383372, -0.040709, 0.974359, -0.343175, 2.623833, -0.310227, -0.460726, 0.317058, -0.050637, 0.758051, -1.638395, -0.885219, -1.583627, -1.729916, -1.320411, -0.639612, 1.237517, -1.124622, 0.883095, 0.499081, -0.352105, -1.807841, -0.148534, -0.437528, -1.918732, -0.406988, -0.044862, -1.680193, -0.973783, -0.137344, 0.108932, 0.856049, 1.657311, -0.088797, -0.149075, -1.872207, 0.618064, 0.356009, 1.728903, 1.092371, 1.096388, 1.003219, 0.322128, 0.115886, -0.314387, -0.718779, -0.280661, -0.580111, -1.252528, -0.672343, -0.283064, 1.301108, -1.110327, 0.293895, 1.048975, 1.417235, 1.071693, -0.283423, 0.762345, -0.413148, 1.258770, 0.958426, 0.248817, -2.867729, -0.429533, -1.440853, -0.004725, -2.747573, -0.000149, -1.635638, 1.391465, 0.193590, 0.912639, 0.113541, -1.330872, -1.109426, -0.362356, 1.498541, 0.625142, -1.032469, 0.485673, 1.560195, 1.074478, 0.360800, -0.306057, -0.718421, 0.230242, 0.575846, 0.283932, 0.249530, -0.549851}, + { 1.445878, -1.153404, -1.347448, 0.305017, -0.440671, 0.806448, -1.079683, 0.926655, 0.329365, -1.551180, 0.257936, -0.972706, -0.594141, -0.429774, 1.114250, -0.028421, -0.280229, 0.882109, -2.014124, -0.209030, -0.073471, 0.645325, -1.022775, 0.941586, 1.936961, -0.404889, -1.221021, -0.365694, 0.148017, -0.028792, 0.174588, -0.676786, -0.544345, 0.601942, 2.258660, -0.266347, 0.354713, -0.251010, 0.456281, 0.884348, -0.715440, -1.420931, 0.546884, -0.485314, 0.538638, 2.534471, -0.686796, -0.643060, -0.197028, -1.046019, 0.291568, 0.436794, -1.694804, 0.402359, -0.244680, -0.995186, -0.347196, 0.098246, -0.149989, 0.269873, 1.802804, -0.890788, -0.046884, 1.075207, -0.579103, -0.268169, 0.502712, 0.290053, -0.456541, 0.492425, -3.900337, 0.672933, 0.144460, 0.678548, 0.449949, 0.179061, -0.009189, 1.476751, 0.087654, 0.170521, 1.874514, 1.284834, -1.345358, -0.954525, -0.604920, 0.109046, -0.784499, -0.929101, -1.895046, 0.726950, 0.629010, -0.685238, -0.900277, -0.160485, -1.014806, -0.927278, 0.233648, -1.270706, -0.432125, 2.125514, 0.417094, -0.025090, 0.502936, 2.047265, -0.931638, 0.373710, 0.516571, -0.471993, -0.559333, 0.158313, -0.397506, -0.662793, -1.724745, 0.967956, -0.363435, 0.125383, -0.246155, -0.595702, -1.926290, 1.110588, 1.094532, -0.053557, -0.015955, 0.373040, 0.585275, 0.307375, -0.691688, -0.401179, -0.620476, 0.677718, -0.148984, 1.269450, 0.475302, -0.174330, -1.497995, 2.176656, -0.632907, 0.596434, 0.448456, 0.859072, -0.490460, -0.289769, 0.766390, 1.390458, 0.990721, 0.847977, -0.247489, 0.574135, -0.850138, 0.385047, -0.039051, -1.756013, 0.703411, -1.171415, -1.134622, -0.925045, -0.765665, -1.217760, 1.078613, 0.049954, -1.223075, -1.010076, 0.290746, 0.192686, -0.526872, 0.034041, 0.069892, -1.789311, 0.455032, -1.951374, 0.829116, 1.268676, 1.372467, 0.099725, 1.691981, 2.303865, 0.974602, 0.962250, 0.082994, -0.085947, 1.413079, 0.509017, -1.074048, 1.432899, 0.855333, 0.247454, -0.679830, -0.492880, 1.516360, 1.405052, 1.194610, -1.466114, -0.734689, -2.051556, 1.711480, 0.840688, 0.500472, -0.594809, 0.141823, 0.339711, 0.095554, 1.559376, 0.173766, 2.141702, -0.241774, -1.171111, -0.948250, -0.241611, 0.430771, -0.061400, -1.827723, 1.153868, -1.364451, 1.539632, -1.033055, -2.532132, -0.587324, 0.094311, -0.087582, -0.428135, -0.508224, -0.495107, -0.527555, -1.070018, 1.345576, -0.161459, 0.276211, 1.078374, 0.649261, -0.044851, -1.075560, 0.860353, 0.792199, 1.561125, -0.794710, -0.614556, -0.711378, 0.974510, 1.073188, -0.661040, 1.740524, -0.404540, 2.549045, -0.395893, 0.478689, -1.446073, -0.310178, 0.922011, -0.401212, -0.532888, 0.994831, 0.935235, 0.932221, 2.415759, 0.890311, -0.199644, 1.396311, 1.203319, -1.296300, -0.579395, -1.214036, -0.781735, -0.727096, 0.319765, 1.766963, 1.244860, -0.518977, 0.851801, 1.203117, 0.454831, -0.061583, 0.049594, 1.214203, -2.315344, -0.009081, 2.057796, -0.244133, -0.621256, -0.889616, 0.054333, -0.003834, 0.682400, -0.376140, 0.763399, 1.233212, 0.383580, 0.870310, 0.727702, -0.216463, 0.201789, 0.349845, -0.396659, 0.204239, 0.165616, -0.670854, -0.026341, -1.526084, 0.676545, 0.725743, -0.735024, 0.024316, 1.485975, -0.686044, 1.084372, 0.492585, -0.416047, -1.691110, -1.442311, -0.112236, -1.436000, -1.802774, -2.715462, -0.825917, 0.134522, 1.266901, -0.873940, 0.217819, -0.254873, 0.282692, -1.030686, 1.628011, 2.247546, -0.616220, 0.911976, -0.921060, 1.288879, -2.313259, -1.356885, -1.301401, -0.048696, 2.402251, 1.803344, -1.056626, 1.031969, 1.981173, -1.228319, -0.576411, 0.459674, 1.674162, 0.117805, -0.507165, 0.750993, -1.779005, -0.115435, -1.249933, -1.700320, -0.557525, -0.139691, -0.327086, 0.655643, 0.372350, -0.835172, -0.112556, 0.802429, -0.980341, 1.055814, 0.617398, -0.854967, -0.378789, -0.874647, 2.458466, -0.278636, 0.133361, -0.329878, -1.206929, 0.134123, -1.285118, 0.479978, -0.582012, 0.824857, 1.326357, 1.164052, 1.679818, 0.145928, -0.772258, -0.439204, 0.145476, -0.174995, -1.374434, 1.370729, -2.544913, -0.068993, 1.064449, 1.074943, -0.020449, -1.164251, 0.000147, -1.268503, 2.259234, 0.838961, -0.849405, 1.548443, -0.050061, 0.192104, 0.277567, -1.394846, 0.134627, 1.403075, 0.083257, -0.874855, -0.831723, 0.029991, 1.460216, -0.109155, 0.367692, 0.099343, 0.562794, -1.603554, 1.882065, 0.701068, -0.310228, -0.027310, 0.030068, -0.007992, -2.572325, 0.360223, -2.046148, 1.770009, -1.001512, 0.022836, -1.204051, -0.500673, -0.076921, 1.135418, 1.399207, 0.336369, 0.669069, -0.847984, 1.940379, 0.888616, 0.047719, -0.949595, 0.484441, -0.681751, -0.502073, -0.952895, -0.481816, -1.758726, -2.249141, 2.240258, -1.519791, 0.276030, 1.493310, -0.828283, -0.835919, 1.067592, -0.816069, -0.185530, 0.243930, 0.646326, 1.034546, 0.105733, 0.613944, -0.251969, 0.016134, 0.795639, -2.085402, -0.073273, 0.784215, 1.403300, 1.983825, -0.093670, -1.446773, -0.977233, -0.284726, -0.978045, 1.090934, 0.753919, 1.402181, -1.403830, -0.486421, 0.022386, 0.293832, 0.251224, -0.840964, 0.011598, 0.527242, -1.405420, 0.528879, -1.524043, 2.693897, 1.964418, -0.618410, -1.760569, 0.271973, -0.644478, -1.864942, -1.417632, -1.171880, 0.508640, -0.445576, -2.206789, 0.700132, 0.055449, 0.479266, -0.861374, -0.523969, -2.514698, 2.884320, -0.141660, 0.493465, 1.448575, -0.368884, 0.895272, -2.022848, -0.371147, -0.762157, 0.724423, 0.000632, -1.472586, -2.145993, 0.509658, -1.100799, 2.037550, -0.030838, -1.642309, 0.059672, -2.145102, 0.201849, 1.440369, -1.543698, -0.620525, 0.054981, 0.174542, -0.220284, -0.493669, -0.526783, -1.509185, 0.870887, 0.607571, 1.012222, 0.916924, 0.007647, 0.608187, 0.031303, 0.455663, 1.904885, 0.308364, -0.501683, -0.031251, -0.532867, 0.624922, 0.536999, -2.073922, -0.712389, -0.530082, -0.567442, -0.473482, -1.613380, 2.254854, -0.263207, 0.228206, -1.603097, -0.422174, -2.296063, -1.290501, -0.000306, -0.588576, 0.692976, -0.772463, -0.677064, -0.891043, -0.427711, 0.999369, -0.381043, -2.496277, 0.286278, 1.061493, -0.045618, 0.362297, 0.053577, 0.038727, -1.033030, -2.480068, -0.071916, -2.346870, -0.720956, -2.268023, -1.362230, 1.787987, -0.476512, -0.101211, 1.324137, 0.943349, 1.078447, 0.118854, 0.770366, -1.193833, -0.367265, -0.500106, 1.301874, -2.967685, 0.356651, -0.648178, -0.426463, 0.262725, 0.200186, -0.143672, 0.846501, -0.554227, -0.616980, 0.152405, 1.043791, -0.578798, -0.638802, 0.336362, 0.373879, 0.153266, 0.672794, 0.194320, -0.860738, 0.278241, 0.103870, -0.580067, -0.353376, -1.212309, -0.112465, -2.123861, 0.992953, -0.728173, 1.083234, 0.328505, 1.028873, 1.861616, 2.064939, 0.159350, 0.021609, 0.544600, 0.270359, 0.536928, -0.909901, 1.087295, 0.986036, -0.254323, 2.337223, -0.006943, -1.344993, 0.580163, -1.952369, 0.082064, -0.036298, -1.343212, 0.727863, -0.162286, 0.029464, 0.162842, -0.799874, -1.056747, 0.833814, 0.134844, -1.118677, -0.436813, -0.562499, 0.798897, -0.905940, -0.081855, 0.036804, 0.631758, -1.000018, -1.431025, -0.605098, 0.433321, -0.140503, 0.555798, 0.146847, 3.098494, 0.639041, 0.578047, 0.045875, 1.980888, 0.201611, 0.586022, -0.168470, 1.098512, -1.101562, 1.693121, -1.577849, 0.170135, -1.839869, -0.259598, -0.709178, -0.362120, -1.337304, 0.895300, -1.355301, 0.355837, 0.501127, 1.558426, -0.814382, -0.038242, -1.012112, -0.295919, 1.299866, 0.413587, -0.765181, 0.465328, 0.405994, -1.230131, -1.145746, 0.399011, -1.012683, 0.512436, -1.578689, -0.837886, 0.286517, -0.640052, 0.594537, -0.591718, -0.296320, -0.853815, -1.453710, 0.115383, -1.251630, 0.630109, -1.781728, -1.658568, 1.128720, 1.401028, 0.471056, 0.208022, 1.381117, 0.978134, 0.621731, -0.242621, -0.702126, 0.809973, -0.283203, 0.006568, 0.506866, -1.358537, 1.602270, -1.760713, -0.689920, 0.333085, -0.776697, 0.243554, 0.526293, 0.346399, 0.524242, -0.819067, 0.451115, -0.224127, 1.421279, -0.203831, -0.310645, -0.080758, -1.487143, 0.132954, -0.817798, -0.276728, -1.381409, 0.361193, 0.826664, -0.191501, 0.149485, 1.012286, 0.137638, -1.579508, 1.907856, -0.068117, 1.193749, 0.012082, -0.441415, -1.558757, 0.340720, -0.336053, 0.512452, -0.808854, 0.505327, -1.318607, -0.662507, 2.124665, 0.198654, -1.325215, -1.055187, -0.225919, 1.918304, 1.245448, -0.492155, 0.584636, -0.051435, -0.038909, -0.766640, 1.189574, 1.074386, 0.038923, -0.552708, -0.791404, -2.102924, 1.243834, -0.176737, 0.988904, 0.001887, -1.138628, 0.655166, 0.689219, -1.068118, 0.071497, 1.182791, -2.276159, -1.980099, -0.301682, -0.563683, -0.466798, -0.403073, 2.000631, -2.034698, 0.911706, 2.515705, 0.100625, -1.820012, -2.410285, -1.694563, -0.294195, -0.259823, 0.032802, 1.206347, -0.905119, -0.382288, 0.745441, 2.146027, 0.016916, 0.384411, 1.392841, 1.249994, 0.574305, 0.731421, -0.409960, -0.228842, -0.098290, -1.211139, 0.661980, 0.221090, -0.816563, 0.963277, -0.576507, 0.733060, 0.984764, -0.145955, 0.067886, 1.657861, 0.313329, -0.099410, 0.405850, 1.762721, -0.860729, 0.726259, 0.077359, 0.817281, -0.558199, 1.283626, 0.857264, -0.945140, -1.517548, 0.461868, 0.903003, 1.283873, -2.011617, 0.208627, -0.485004, 0.882732, -1.106171, 0.071196, -0.776512, -1.470160, 0.154992, 0.081455, 0.957467, 1.071938, -0.438079, -0.255139, -0.792766, 0.774025, -2.594587, -0.270122, -1.070901, 0.694631, -0.087158, 0.355952, -1.366365, 0.003772, -0.697868, 0.529343, -0.611981, 1.522156, 0.333333, 0.211235, -0.637178, -0.343758, -1.636135, 1.177861, -0.569098, 3.154523, -0.209397, -0.008943, -0.128288, 1.145759, -0.519034, 1.165727, -0.311096, -0.618593, 0.785813, 0.074809, 0.994766, -0.127246, -1.746814, 0.387183, -0.482415, -0.287753, 1.052193, -0.519901, 0.521261, -0.861219, -0.015601, 0.962613, 0.425137, -0.047285, 0.736226, 0.712643, 0.110858, 1.416148, 0.273101, -0.928043, 0.214218, -1.495943, 1.290998, -1.400726, 0.107801, -2.413357, -0.386938, -1.313831, -0.198308, -0.061144, -0.431770, 1.104473, 0.746422, 0.734854, -0.524572, -0.595458, -1.021297, -1.289311, -0.572096, 1.355332, 1.677921, 1.238052, -0.774562, -1.848666, -1.054565, -1.257056, -0.134498, -0.250960, -0.613751, 0.241470, 1.195145, -1.258458, -1.330850, -0.473559, 1.768993, 0.819546, 0.366686, -0.538243, 1.843841, -0.207378, 1.089240, 0.636419, -1.123379, 0.421832, -0.229213, -0.042125, -0.594566, 1.001839, -0.957464, 0.189837, 0.839253, -0.282606, -0.846882, -0.092460, 2.309315, 1.783314, -0.886147, 0.488740, -0.515526, 1.491636, 0.165564, -0.626713, 1.370350, 1.794849, -0.294135, -0.852971, 1.126994, 0.582751, -0.790822, 1.223058, -0.257741, -0.217691, 1.232362, 0.988957, 0.985936, -1.129247, 1.447109, 0.856996, 0.329489, -0.294781, -0.980087, -1.016482, 0.080147, 0.864893, 1.222993, -0.631762, 1.052825, 0.118711, -0.957856, 0.280851, -2.081139, 2.264651, 0.776026, -0.354918, -0.752622, -0.096698, 0.714008, -0.058546, -1.134247, 0.338414, 0.065089, 0.671823, -2.618449, 0.390237, -0.316486, 0.073727, 0.612050, 0.448733, 0.828760, -0.773294, 1.140253, 0.788548, 0.497853, -0.167452, 0.415024, 0.696575, 0.737419, -0.510957, -0.943749, -1.485806, 0.743654, 0.885451, -0.979126, -0.129692, 0.465834, 0.521984, 0.472002, 0.523411, 0.595531, 0.468864, 0.466730, -1.935643, 0.756004, 0.779738, -0.712963, -1.542519, -0.425311, -0.799680, -0.459723, -0.245527, 1.944350, -0.680717, -1.106237, -1.161151, -1.328652, 0.467008, -0.044305, 0.834786, -1.769436, -0.798979, -0.788291, -2.041142, -1.377897, 0.590437, -0.388760, -1.011400, -1.641078, 0.465024, -0.377515, 0.172375, 0.070100, 1.005353, 0.233367, -2.359110, 1.185444, -1.992456, -1.026218, 0.299536, -1.146825, -0.957047, 0.156981, 0.425066, 0.264555, -1.105111, -0.939757, 0.504264, -2.173117, -1.787363, -2.124336, 0.407641, -0.862385, 0.379518, -0.526299, 0.131501, 0.974673, -1.746555, -1.882231, 0.457771, 0.010667, 0.399494, 0.321440, 0.014335, 0.792109, 0.876979, -0.621218, -0.385652, -2.096714, -0.045627, -0.804331, -0.747119, 0.901866, 0.689527, 1.663365, 0.257031, -1.002461, 0.799718, -0.937882, -0.854503, -0.592234, -0.524662, -0.621843, -1.140951, 0.584310, 0.038813, -1.470078, -1.936687, 0.890226, -0.364588, 1.848425, 0.092649, 1.141333, 1.238706, -0.012324, 1.542213, 0.478569, -0.228915, 1.856716, -1.286935, -1.749136, -1.134471, 0.353998, -0.300030, -0.852554, 1.893020, -0.488954, 0.788738, -0.682781, -1.346383, 0.578874, -1.055630, -0.469718, 0.480464, 0.478809, 0.143301, -0.157060, 1.093253, 0.013790, 0.045398, 0.817879, 0.436478, -0.374400, 1.247243, 0.974508, -1.061473, -0.802337, -1.739467, 1.202816, -0.800699, -0.212090, -1.246045, 0.878399, 1.937476, 0.774467, -0.412735, -0.431189, -0.592552, 0.618597, 1.273284, -0.389298, -0.331136, -1.669941, -0.309636, -1.060411, 0.267804, 0.258484, 0.985102, 0.036699, 0.852751, -0.881758, 0.061668, 0.302037, 0.984412, 2.433500, 0.314994, -1.172470, 0.145765, 0.339028, 1.094783, -0.700224, 0.554395, 0.088303, 0.020124, -0.586101, -0.406107, 0.903605, -0.552346, -0.044920, -0.651689, 0.631133, -0.039250, 0.077330, -0.052979, -0.589840, 0.226316, 0.017117, -1.569285, -1.660040, 0.790741, -0.493214, -0.817252, -0.071556, 0.879265, 0.220500, -1.362072, -0.821721, -0.893879, -0.285960, 0.591661, -1.261318, -0.139320, 1.480864, -1.097870, 1.241279, -1.312366, -0.436979, -1.780004, -0.973736, 0.008130, -1.304813, -1.840999, -0.018527, -0.275999, 0.164639, 0.071105, -2.603786, -0.117169, 0.193069, 0.691771, -0.181560, 0.941892, -2.665065, 0.153665, 1.648044, -0.878485, 0.599662, 0.689234, 0.469526, -0.383136, -1.941005, 1.609894, -0.595429, 1.190960, -0.677375, 0.259134, -0.691219, -0.945556, -0.715011, 1.035063, 0.691194, -0.585446, -1.513598, -2.252725, 0.590215, 0.589299, 0.468561, -0.489192, -0.843571, 0.036755, 0.558377, -0.218065, 1.093366, 0.033951, 1.500338, -0.244685, 0.697016, 0.346960, -1.308292, -0.630726, -0.947245, -1.382738, 0.958116, -0.271659, -0.312971, 0.755967, -0.643033, 0.520284, -0.437097, -0.658830, -2.464483, 0.111090, 0.652069, 1.147780, 0.504869, -0.555438, 0.276184, -1.599944, 0.551443, -0.981722, 1.675783, 1.541959, 1.336423, 0.833846, -1.541762, -0.106859, 1.545038, 0.470696, -0.687676, -0.245142, -0.354097, -0.340305, -1.133738, -0.494704, -0.037961, -0.542957, 1.090288, 0.669981, -0.112974, -2.149533, -2.567313, 0.022211, 0.622177, 0.675456, 1.548440, 1.312422, 0.705999, -1.022604, -0.296220, 0.455238, 0.907594, 1.270214, -0.188816, -0.523784, -0.681960, 0.059391, -1.069098, 0.141260, 0.729023, -0.893024, -0.027340, -0.258746, 0.764789, 0.159774, 0.717958, 0.418429, 0.927309, -0.642906, 0.779509, -0.036791, 0.625419, 0.176836, 0.455563, 0.811083, 1.775023, 1.042372, -1.015771, -0.670545, 0.604258, 1.728841, -1.176441, 1.297163, 1.363795, 0.507072, -0.189291, -0.438652, 0.563053, 0.370747, -1.356802, -0.326555, -0.218144, -0.543234, -0.694333, 0.813888, -0.376174, -1.582473, 0.278176, -2.768347, -0.149618, -1.052262, -0.577840, -1.667192, -1.590756, -0.505258, 0.891414, -0.882795, -1.775072, -0.697125, -0.786689, 0.252967, -0.846728, 1.190171, 0.698226, 0.260440, 0.443175, 1.534225, 0.087254, 1.076434, 1.014424, 0.078347, -0.828276, -1.399128, -0.103146, -0.545514, -1.200009, 0.693565, -0.395498, -0.165109, -0.100170, 0.182079, -1.725678, 0.211010, 0.872491, 2.252470, -0.531972, 0.127976, 0.303588, 0.533679, 0.317770, -0.361794, 0.177811, -0.708930, 1.089841, 0.159592, 1.226858, 1.327751, 0.305839, -0.225380, -0.260482, -0.585931, 0.730637, -0.177406, -1.181018, -0.115982, -1.688593, -0.075485, 0.187623, -0.675044, -0.603963, 0.379843, -0.184067, -0.055203, 0.330050, -0.894833, 1.346753, 0.142222, -0.601389, -1.128970, 0.188972, -0.339969, -0.296915, 0.352941, 0.208294, 1.514102, -1.013716, -1.072190, -1.134873, 0.253436, 1.597881, 0.508698, 0.421960, 1.174715, -0.829048, -0.078092, 0.492492, 0.195454, 0.510990, 0.510931, -0.547970, -1.107379, 1.378254, -0.426946, -0.598017, -1.019473, -1.121591, -0.470034, -0.161299, 0.777704, 0.133550, -0.176712, -0.017245, -1.136618, 0.503033, -1.383096, 0.822830, 0.767124, -0.394212, -0.072871, -1.486160, -1.248963, -1.098783, 1.011385, -0.096264, 1.596422, 0.311931, -0.608054, -1.003826, -0.276000, 0.317606, -0.616738, -0.111589, -0.426557, -0.156491, 1.046178, 0.301068, -0.406941, 0.592703, 1.170197, -0.621346, 1.076189, -0.690729, -0.653794, 0.137487, -1.681101, 1.049646, 0.974250, -0.276612, 0.701129, 0.000073, 1.008310, -0.055469, -0.811403, 0.354254, 0.404483, 0.113488, 0.886757, -1.122117, 0.573557, 0.152809, 0.869570, 0.540475, -0.744713, -1.403445, -0.799318, -0.148949, -0.451342, -0.375073, -2.122394, 0.444708, -0.253525, 0.511109, 0.288856, 0.723743, 1.195659, 1.483389, 0.900642, 0.557568, 1.844038, 1.446887, -0.900760, 0.412387, 0.352154, 0.249417, -0.380304, 0.371409, 0.015859, -0.484620, 1.235436, -0.991896, -0.201952, -0.332216, 1.470934, -1.215860, 1.911471, -0.058955, -1.631309, 0.190916, 0.494214, -0.694264, -0.172629, -0.189199, 1.033014, -0.066433, -0.086447, -0.084709, -0.765858, 1.455836, -0.871300, 1.153582, -1.391816, -0.083953, -0.804606, 0.167428, 0.708695, -1.265433, 0.077239, -1.385458, -1.384990, -0.966568, -0.951444, 0.669548, -0.081712, -0.157855, 1.798506, 0.365181, 1.288837, 0.139012, -0.230281, -1.493319, 0.709174, -0.429123, -1.245065, -1.308375, 1.765934, -1.280438, 0.953191, -2.002581, -0.059504, 0.250909, -0.434838, -0.913996, 0.858250, -1.672356, -0.559490, -0.073074, -0.688652, -0.349716, 1.672270, 0.326728, -0.400196, -0.151915, 0.131303, 1.229596, -0.337570, -0.364297, 0.143851, -2.110772, -0.216460, -0.785227, -0.966416, 0.228919, -0.655878, 0.425781, 1.075376, -2.333562, 0.747387, -0.426350, 0.996513, 0.576166, 0.804368, -0.242826, -1.333834, 2.225008, -0.081637, -0.319407, -0.688550, -0.594026, -0.835645, 1.246157, -0.263571, 1.499822, 0.620200, -0.375359, 0.569909, 0.863126, 2.488399, -1.040870, 1.759261, 0.690760, -0.549890, -0.674254, -1.006409, -0.850728, -0.817637, -0.074383, -1.934837, -1.408224, 0.666523, 0.440452, -0.624849, -0.159652, 1.347591, -1.235264, 0.027476, -0.862414, -0.035395, 0.352772, 1.536579, -0.982456, 1.357662, -0.526373, -0.435963, 1.196760, -0.668849, -1.733436, 0.461897, -0.373559, -0.286465, 0.126122, 0.109977, 2.607158, -0.673400, 1.195237, -2.674417, 0.801229, -2.334320, -0.141863, -0.155911, 0.640583, -0.148753, -0.176968, 0.283673, -0.142229, -0.422912, -0.729475, 0.058195, 1.251332, -1.147403, 1.003693, 0.203539, 1.007680, -1.054713, -1.258304, 0.022741, 0.279031, -0.646290, 0.007242, 0.122230, 0.005335, -0.070718, 1.139077, -0.862658, 2.654759, -1.467608, 0.397219, -0.177086, 0.054445, -0.163696, 0.407321, -0.337311, -1.572161, -0.811477, -2.188338, 0.975030, 0.151107, -0.979411, 0.761313, 0.324981, 1.630455, -0.353466, -1.870614, 0.036722, 0.459064, -1.767113, -1.088662, -0.089991, -0.391338, 0.088666, -0.062723, 0.156676, -0.541697, 0.479613, 0.159846, -1.371737, -0.240278, 0.512148, 0.418020, 0.276277, 0.233816, -0.865647, 0.816679, 0.945361, 0.678430, 1.385612, 0.824466, -0.317020, -0.348200, -0.131583, -1.065984, 0.475807, -0.278988, 0.980412, -0.835238, 0.216817, -0.089599, 0.572101, -1.199417, -1.546205, -0.323231, 0.893758, 1.007979, -1.058063, 0.236106, -0.286649, -0.602894, -0.398447, -0.276907, 0.016497, 0.004466, -0.051873, 0.762708, 0.630312, 0.423975, 1.094360, 0.098453, 0.792257, -1.667375, -1.322439, 0.279260, -1.750137, 0.344612, 0.147661, -2.004397, -1.551376, -0.496435, -0.364173, 0.658206, -1.558175, -0.562632, -0.776092, -0.438708, 2.223034, 0.980798, -1.416691, -0.450680, 2.428056, -0.212674, -1.345158, 0.952446, -1.037897, 0.351591, 1.134075, 0.495699, 1.001154, -0.427729, 0.214008, 0.906830, -0.492925, -0.193309, -0.622169, 0.631036, 0.710502, 0.570168, 2.369327, 0.085146, -1.043402, -0.925901, -0.722714, 0.447564, -1.491313, 0.447358, 1.153646, 1.723652, -0.173053, 0.916250, -0.919389, 0.679481, -0.967282, 2.193140, 0.161831, -1.846651, 0.816943, -1.488651, -0.989658, 0.091616, 0.135305, -0.884996, 1.895018, -0.161328, 1.295919, -0.411948, -2.292483, 0.455828, 1.722775, -0.663751, 0.799423, 0.266761, -0.676759, -1.819405, 0.419935, 0.695112, -0.167231, 1.398538, -0.281679, -1.915891, 0.571918, -1.026022, -1.374756, -0.320512, 0.473417, -0.986940, 0.670181, -0.685333, -0.663446, -0.440841, -1.057449, -0.813059, -2.160205, -0.116324, -2.169278, 0.278242, -0.424217, 1.010652, -0.695913, -1.689736, -0.356101, -0.757239, 0.261743, -0.348220, 0.539287, 0.777627, -0.854419, 0.141046, -0.018495, -1.655357, -1.322328, -1.463209, 0.597183, -0.169191, 1.186155, -0.016749, 0.600300, -1.267830, -0.162760, -0.391157, -0.031393, 1.407815, 0.358288, 1.544473, 0.791551, -1.200400, -0.319555, 1.110689, -1.670973, -0.604412, -0.042999, 0.805568, 1.020209, 1.722845, -1.903789, -0.866146, -2.141925, 1.002298, -2.234771, -1.095119, -0.583331, 0.455447, -0.797967, -0.215524, -0.079590, 0.269621, 0.876168, 0.474345, -2.382275, -0.471721, 0.020067, 0.745750, -1.012550, 0.948646, -0.306364, -0.743376, -1.179639, -0.490955, -1.244462, 0.964408, 0.202930, 0.098909, -0.488945, -0.224141, 0.230170, 1.147823, 0.319292, 0.522719, 0.881532, 1.080810, -0.245851, 0.176343, 0.557230, 0.543837, -0.725560, 0.896106, 0.819442, 1.614644, 0.618036, -1.136842, 0.297906, -0.110686, -0.815925, -1.186612, -1.213115, 1.964087, 0.503936, 0.822970, -0.473160, 1.228587, -0.011199, -0.545849, 1.035540, -1.554967, -0.878720, 0.914881, -0.318073, -0.357826, 1.392044, -0.990761, -0.133545, 1.749936, 0.062444, 0.087049, -0.651763, 1.225484, 0.864372, -0.991448, 1.139257, -0.105412, 1.124114, 1.307879, 0.585158, 1.349531, 0.577072, -1.169216, -0.159612, -0.306705, -0.858280, -2.010714, -0.534007, -2.173468, -0.204237, 1.166223, 0.361621, 0.539108, -0.805112, -1.015777, 2.059971, 1.271596, 1.425568, 1.017355, -0.508501, 0.100404, 0.874458, 1.852387, 0.796929, 0.722705, 0.780477, -0.137631, -0.460351, 0.347021, 0.603658, 1.411721, -1.272589, 0.886577, 0.072505, -1.672949, -1.960906, -2.848154, -0.895101, -2.119036, -1.174544, -0.538957, -1.410134, -0.221534, 0.900302, 1.395551, -1.059181, 1.542288, 0.697789, 0.607866, 0.319514, 1.689381, -0.645638, -0.719593, 0.511458, 0.486433, -1.744721, -0.064272, -0.711403, 1.230375, -1.513271, 2.075876, 0.370495, -0.532843, -0.171948, 0.008393, 2.184876, -0.160692, -0.707834, -1.142801, 0.312959, -0.331968, -0.264170, -1.448145, 1.421661, 0.266381, -0.017792, 1.355882, 1.682565, 1.868037, -3.076073, -0.374865, -0.842945, 0.850653, -1.506346, -0.738771, -1.540656, 0.552432, 0.562392, 0.593412, -0.187969, 0.166893, 0.714517, 0.816390, -1.782228, 1.371503, -1.655736, -0.550219, 1.840159, 0.245365, -0.090806, 0.511241, -2.320465, 1.313888, -0.607975, 1.647739, -2.783837, -0.872146, 0.557682, -1.124446, 1.077002, -0.633590, 0.906387, 0.162231, 0.127604, -1.825788, 0.507563, 0.149004, 0.481442, -0.566950, 0.285794, -1.951490, 1.240610, 0.842461, -0.280273, -0.680668, 0.279997, 1.256521, 0.900380, 1.330421, 0.167963, -0.155769, 2.512261, 1.453015, -0.372736, 0.649509, 0.652601, 0.381735, 1.280074, 0.478309, -1.076764, 0.610907, 0.999313, -1.097063, -2.173566, -0.722954, 0.174051, -0.218577, -0.142822, 0.137032, 0.142682, 1.269699, 0.483088, 0.915366, 0.743598, -0.892581, 0.682828, -0.874223, 0.617007, 0.404190, 0.156124, -0.573231, -0.578045, 1.990808, -0.547045, -0.059656, -0.706795, 0.823791, 0.239120, 0.760238, -0.631524, 0.483145, -0.272599, 1.066651, 1.776854, 1.333696, 0.270038, -0.639615, -1.524093, -0.593235, -0.669937, -1.287344, 0.624233, 1.234175, -0.469339, -2.673773, 0.197788, 1.229611, -0.160598, 0.295828, 0.290539, 1.340376, -1.546628, 0.324714, -0.282165, -0.934606, 0.171220, -0.660123, -0.237934, 0.706449, 1.069371, -2.002259, -0.360696, 0.789479, 0.203824, -0.244098, -0.450729, -1.033425, 0.004591, 1.014519, -0.336808, 1.216950, -1.574796, -0.378562, 1.282009, -0.136177, -1.236178, -1.344107, 1.152737, -0.114498, 0.104634, 1.581375, -0.248600, 0.445797, -0.671835, 0.813808, -0.450572, 1.171678, -0.218566, -0.851262, 0.470281, -1.232525, -0.441207, 0.797514, 0.224421, -0.786897, -1.338343, 2.918136, -0.484288, 1.700449, -2.503681, 0.405204, -0.958056, -0.159268, -0.979951, 0.784583, 0.371375, -0.335393, -1.403690, -0.672031, -1.768612, 0.486015, -0.183907, 2.059938, 1.663091, 0.777940, 1.224331, 0.243463, -0.212734, 3.675434, 0.015961, 2.127998, 1.799297, 0.677596, 0.742624, 0.267620, -1.125191, 0.098975, 0.676437, 1.406714, -1.102403, 0.274027, -1.338014, 0.000497, 1.093379, 0.233855, 0.584885, -0.479394, 0.799204, 0.228711, 1.393660, -0.309822, -1.396516, 0.354881, 1.645507, -1.811889, 0.785144, -0.476500, 0.225611, -0.458132, -0.265379, 1.129122, -1.420787, 0.478497, -1.534723, 1.882321, -0.459904, -1.105561, -0.698393, 0.319162, 0.955874, 1.575655, 1.049060, 0.321607, -0.554712, 2.391111, -0.460636, 0.622923, 0.211547, -0.037155, -1.077355, 0.271574, -0.242270, 0.499386, 0.661349, -2.716219, -0.844623, -2.033322, -0.432095, -0.160874, -1.111089, 0.466569, 0.160188, -0.882351, 2.635583, -0.084218, -0.475544, -1.096698, 0.843347, -0.342527, 0.119832, -0.526319, 1.429026, -0.704974, -0.430196, 0.760298, 0.681345, -0.670249, -0.641111, 0.180972, -1.106293, 1.532891, 1.068363, 1.003581, 1.409564, -0.181188, -0.891836, 0.355961, 1.210890, -0.888511, -0.172888, -0.519026, -0.531364, -1.076281, 0.726658, -1.262809, 0.926454, 0.579979, 1.603911, -0.950228, -0.685054, -1.272782, 0.438027, -0.162733, 0.315365, -2.177338, -0.673697, 0.145284, -0.478879, 0.983600, 0.437519, 1.494868, 1.575354, 0.150170, 0.349174, 0.171159, -0.120737, 1.543509, 2.076893, -0.492403, 0.317766, 2.001430, 1.440680, 0.513666, 0.356342, -1.509140, -1.363681, 1.845136, 1.292002, -0.148575, 0.299693, 1.170144, -0.308276, -0.458720, 0.794473, -0.967977, 1.105097, 2.130901, -0.123496, 0.081986, 1.002645, -1.085919, -0.560473, 0.296005, 0.789353, -0.269847, -2.558980, 0.927275, -0.467784, 0.317143, 0.458393, 0.057566, -0.549560, 1.497769, -2.898894, 1.654285, -0.454681, -0.822528, -1.730295, 1.074960, 0.137918, 0.070625, -0.117567, -0.457990, -1.245347, 0.397462, -1.278753, 0.047606, -0.114704, 0.434614, -1.224872, -0.444581, 0.489287, -0.773125, -0.097111, 1.633667, 0.155354, -0.419924, 0.873116, -0.458484, 0.473671, -0.091978, 0.687364, 1.475949, 1.141860, 0.514919, -1.755532, 0.871819, 0.774535, -0.152756, -0.743990, 0.740205, 0.046770, 0.782677, 0.970344, -2.098977, 0.194778, 0.061838, -0.740884, -0.456557, -0.293963, 0.267428, 0.572115, -0.202906, 0.881771, -1.027140, 0.554616, 1.005625, 0.168106, 0.128437, 0.822852, -0.916728, 1.281431, 1.495535, -0.542165, -1.262006, 1.901224, -0.740243, 0.243219, -0.022770, -1.308703, 1.224213, -0.547377, -1.276179, -0.213497, 0.578068, 2.069428, -0.185776, 0.662663, 0.827051, 2.622462, 1.334861, -0.263207, 0.515121, -0.318664, 0.350667, 0.027830, -1.315444, 1.531451, 0.117391, 0.943620, -0.521673, 0.418379, 1.232737, -0.076268, -2.375868, 0.412047, -0.529878, -0.013168, -0.069190, 0.680694, -0.150145, -1.012116, -1.137958, -1.113784, 0.046429, 0.666767, 0.826792, -1.468080, -0.224615, 0.614530, 1.012420, 0.080754, -0.281168, -1.682514, 0.209661, 1.153289, -0.767129, -0.156860, 0.693448, -1.561837, -0.693193, -1.362141, -0.122263, 1.295253, -2.919127, 0.338436, 0.008621, 0.847522, 0.696990, -0.911289, -0.135180, -2.146954, 1.856832, 0.854619, 0.441767, 0.904763, 0.492492, -0.225177, -1.089328, 1.436821, 1.332541, 0.169813, -0.380365, 0.918262, -0.122714, 2.225160, -0.524163, -1.738663, -1.297546, 0.376041, 0.751986, -1.721446, -1.257990, 1.474788, 0.221108, -0.034420, 0.196502, 1.763677, -0.583232, 0.529788, 1.495535, 1.939037, 0.629916, -0.178530, -0.305083, 0.618505, -1.706171, 1.988135, 1.009309, 0.967654, 1.388601, -0.365528, 0.052859, -0.278418, 1.193452, 0.183563, -1.722935, 1.221311, 0.049304, -0.490819, -0.882158, -0.260450, -0.457841, -1.866920, -1.852402, 2.693872, 0.813261, -0.723892, -0.731183, 1.472821, -0.209544, -1.121239, -0.409280, -1.236758, 1.128726, 0.095525, -1.053991, 0.213046, 0.079628, 0.406784, -3.040499, 0.429716, 0.321059, 0.558590, 0.546992, 0.779609, 0.361150, 1.243232, -0.500127, 0.404494, 1.213458, 0.818050, 1.146753, 0.425089, 0.347603, 0.771793, 1.886813, 2.385094, 0.138731, -0.565796, 0.228482, -1.039877, 0.626217, -0.426960, 0.849791, -1.534972, 1.156831, -2.055622, 1.825672, -1.193715, -0.786140, 1.402654, -0.731370, -0.513543, -0.815725, -0.491834, 1.141321, -1.994267, -0.359238, 0.707577, -1.512396, 1.079465, 0.779846, 0.522513, 0.038271, 1.040546, 0.426121, 0.691500, 1.957886, 0.046700, 0.171883, 0.440433, -0.324818, -0.104945, -0.338009, -0.741593, 0.443820, -1.072987, -0.486312, 0.698410, -1.788811, 0.548017, 1.636410, -0.583240, -1.840856, 0.836300, -0.311252, 1.024664, 1.726619, 0.939556, 1.092871, 1.274347, 0.044603, 1.627977, 0.526698, 0.562974, 0.770625, 1.729979, -0.335287, -0.809198, -0.798831, -1.087272, 0.173590, -0.764288, 1.093196, -1.631967, 0.831555, 0.815566, -1.201740, 0.056949, -0.242331, -0.664453, 0.199122, -0.486558, -0.369147, -0.938483, -0.170820, -0.232570, -0.373860, 0.337351, -0.543332, -2.185735, -0.655946, 0.583809, -1.406502, 0.446971, 2.025558, 0.208933, -1.544937, 0.553311, 0.277827, 0.067365, 0.470603, 1.902130, 0.774395, -0.853265, -0.093092, -0.340810, -1.172868, -0.831302, -1.080708, 0.438944, -0.018013, 0.178382, -0.283502, -0.787116, -0.097087, 1.253211, -0.621756, -0.661305, 1.109090, -0.587551, -0.405241, -0.360644, -0.215994, -1.422710, 1.914675, 1.233941, 0.953655, -2.333509, -0.852149, -1.092351, -0.122103, 0.245731, 1.098201, -0.620078, -1.351882, 0.564537, -0.060079, 0.737816, -0.033493, -1.607410, -0.330491, -0.198336, -2.569172, 0.528342, 1.402853, -0.231471, -0.078697, 1.729009, 0.972393, -0.414298, 1.142034, 1.833913, -0.000931, 2.256407, -0.397234, 1.850523, 1.713857, 1.233649, 0.984719, -0.676883, 1.817221, 0.868478, -0.640646, 0.238347, -0.059560, 1.811211, -2.618336, 1.122434, -0.796594, 1.339990, 2.108393, 0.534400, 0.309782, -0.718498, 1.931625, 1.736116, -0.696786, 0.529123, -1.193905, -1.394558, -0.592851, -0.454381, 0.860722, 0.841657, 0.813063, -0.667401, 0.812944, 0.106251, -1.117467, 0.033939, 0.250135, -0.816481, 0.928864, 0.013776, 0.452166, -0.206403, 0.566231, -0.532754, 0.404865, -0.704484, 0.274989, 0.918509, 0.273510, -0.079340, 0.708396, 0.600842, 1.311511, -1.409819, 0.651257, 0.861284, -0.372855, -1.196844, 0.079627, 0.218136, -0.638536, -0.716781, -0.580369, 0.220091, -0.458735, 2.025766, 1.872406, -1.838942, 0.934212, 0.560095, 0.021847, -0.751025, 1.370176, 1.245168, -0.225636, 0.614243, -0.720625, -0.587507, -0.496351, 0.432425, 0.689731, -0.407020, 0.051499, -0.472184, 1.849107, -0.261673, -1.038411, -0.202875, -1.930506, 0.178573, 0.374921, 0.243520, -0.507939, 0.423253, -1.937319, -1.258062, -2.139528, 0.754162, -0.625140, -1.389137, -2.456294, -0.865122, 0.786545, -0.770523, -2.166260, -0.265189, -0.063571, 1.546956, -0.020055, -1.578166, 0.853399, 1.930560, 0.041061, -0.804233, -0.473942, -0.600621, -0.004090, -0.894100, 0.103983, 2.114091, 0.310964, -0.458724, -1.717477, 0.030133, -1.470110, 1.314874, 0.188732, 1.668664, -0.842384, 0.006351, -0.971833, -0.046344, 0.707342, -0.819759, 2.144530, -0.368451, 0.579973, 1.091115, -0.148887, -0.953607, 2.462977, 1.053506, -0.148519, 1.047693, -0.776454, 0.240340, -0.394486, -0.269879, 1.690862, 2.480855, 1.462525, -0.436915, 1.700310, 1.124181, 0.194222, -1.808197, 1.220469, -0.241741, 1.272436, -1.422537, -0.256838, -0.148264, -0.817898, 0.235552, 2.362523, -0.856592, 1.003373, 0.435978, -0.489512, -0.465575, 0.338367, -0.220975, -0.152091, 1.214347, 1.261436, -1.251009, -0.086733, -0.504145, -0.243082, 2.009960, 0.921300, -0.978197, 0.598189, 1.883382, -0.506925, -0.769491, -1.593715, 0.272125, -0.759615, 1.535015, -0.229567, -1.103737, -0.004963, 0.446512, -0.693396, 0.685065, 0.349876, 0.878389, -0.884863, -0.905856, 0.264667, 1.015236, 0.269646, 1.987148, -0.195984, 0.655919, -0.286911, -1.527199, -0.253445, 0.099677, -0.457202, 1.188869, 0.395030, 0.863017, 1.397443, -1.111201, -0.355992, 0.496056, -0.416801, -0.762257, -0.122733, 1.373750, -0.663248, -1.904706, 0.275297, -0.499703, -0.514021, 0.661685, -1.064008, -0.212920, -1.032474, 0.677715, 1.622868, 0.278875, -1.416016, 0.067039, -0.945162, 0.391698, 0.510546, 0.694056, -1.011924, -0.436370, -1.340288, 0.630691, -0.748382, -0.446044, 0.840428, 1.421828, -0.669901, 1.326642, 0.704730, 2.521558, 1.185718, -0.526917, 1.773685, 2.081829, 0.280450, 0.199858, -2.248677, 0.076981, -2.061315, 0.573030, -1.083415, 1.620533, 0.801992, 1.190638, -2.281225}, + { -1.306722, -1.206562, -1.975445, 0.487621, -1.274873, 0.202878, 0.370678, -0.888560, -1.218515, 0.286163, 0.296078, 0.055218, -1.126057, -1.310813, -0.241133, 1.089183, 0.126261, 0.031059, -0.853306, -0.129335, 0.258499, 0.355229, -0.672504, 0.743305, 0.655174, 0.768350, -1.781715, 1.070682, -0.723175, -0.222303, 1.410245, -0.044610, 0.924951, 0.349737, -1.506689, 0.948673, -1.085804, -0.748358, -0.268861, -1.814905, -0.852187, 0.246033, -0.534419, 1.304748, -0.317217, -0.157855, -1.325686, 0.501769, -1.928003, -0.134035, -0.163909, -0.827481, 1.939342, -0.410003, 1.201873, -0.766892, 0.701508, 0.142465, 0.181057, -1.062275, -0.014814, -2.698196, 0.426235, -1.134260, -0.398332, 0.121772, -1.764585, 0.534018, -1.659719, 0.306604, -0.185052, -0.595970, -0.988305, 1.676990, -0.109199, 0.569350, -1.305212, 1.130324, 1.015020, -0.003081, -1.283716, -0.447787, 0.815507, 1.732758, 0.936907, 1.911322, -0.158580, 1.110616, -0.779370, -0.530357, -0.668752, -0.467689, -0.848225, 0.075540, -0.668599, 1.742014, 1.656108, 0.343155, 2.500977, 0.700264, 0.963104, -0.502447, -0.477134, -0.387984, 1.345994, -0.716208, -0.873581, -0.610938, -0.336195, 0.527732, 0.427084, -0.217771, 0.425557, -1.457579, 0.554205, -0.395361, 1.045093, 0.605722, 0.092606, 0.588054, 0.977983, 0.919272, 0.785715, 0.434977, -0.010583, 1.408288, 0.519720, 0.310569, 0.051274, 0.351584, -0.726844, -1.156364, 0.936601, 0.099755, -1.120196, 0.472369, 1.015454, -0.039088, -0.419028, 0.255730, 0.890333, -2.615524, -0.776374, 1.457297, 1.480246, 1.050104, 1.454498, 0.800723, 0.212406, -0.435737, 1.430674, 0.295141, 0.114087, -0.373037, -0.059230, -0.492871, -2.134345, -1.199543, -0.346212, -1.268863, 0.296013, 0.074813, -1.235711, 0.324600, -0.460215, -0.435496, -0.399402, 0.465942, 1.850745, 0.448322, 0.688889, -1.395328, 1.361733, 1.317964, -0.388510, 1.015474, -0.604932, -1.072571, 0.557681, 1.925666, -1.068738, 0.362429, 0.082447, -0.129648, -0.318583, 1.558964, 0.522583, -1.245015, -0.520117, -0.080027, 1.916075, 0.322486, 0.958424, 0.956264, -0.746050, -2.040569, 0.731997, -0.037063, -2.346496, -1.146968, 0.694428, 1.581480, -0.614993, 0.025680, -0.272150, -0.871129, -0.428290, 0.016335, 2.165401, 0.494348, -0.025721, 0.817672, 0.643510, -0.100029, -0.616181, -0.015105, -0.125358, -0.164433, -1.054809, -0.864784, -0.069287, 1.415149, -0.821419, 0.448273, 2.280845, -1.986816, 0.225685, -0.523084, 0.500218, 0.749879, -0.272502, -0.740693, 0.091759, -1.942635, 1.364206, -0.789020, -2.040679, 0.993146, -1.073300, -1.465888, 0.164628, 1.163299, -0.394076, -0.009136, 1.305377, -0.025738, -1.079011, 0.913876, 0.214629, 0.974499, 0.077655, 0.114111, -1.108704, 0.288485, -0.273144, -0.629008, -2.068877, -0.735528, -0.009369, -1.236564, 0.349024, 0.766635, -0.791139, -0.703229, 0.020788, -1.397684, 0.807858, 0.068726, -0.363310, 0.195866, 0.938688, -0.282219, -1.403648, -0.975187, -1.954921, -1.077149, -0.069249, -0.091329, -1.112220, -1.679775, -1.232943, -3.163320, 0.832715, 0.142919, -0.890044, 1.466927, 1.995846, -0.800878, -0.040032, 0.998341, 0.443440, -0.307606, 0.479758, 0.880129, 1.060946, 0.571326, -0.046933, -1.270826, 2.193730, -0.811687, 2.159508, -0.756006, 0.835855, 1.486672, 0.105801, -0.228791, 0.633529, -0.935643, -1.406075, -0.844729, -0.441701, 0.783811, -0.700373, -1.240873, -1.482285, -1.311738, -0.372136, 1.269048, -0.799852, 0.544281, -0.248499, 1.516497, 0.467687, -1.121008, 2.002320, -0.208965, -1.454322, -1.324623, -0.598917, -0.193018, -0.270473, -0.872131, 0.371548, -0.705005, 0.556712, -0.361946, 1.279783, 2.166782, 0.765301, 1.753687, -0.191952, 0.169321, 0.892159, 0.569899, 1.343415, 1.986206, -0.555111, 1.458809, -0.899853, 0.119683, 2.017251, 1.215258, 0.836795, 1.848446, 0.042193, 1.198956, -0.791644, -0.705681, -1.428828, 0.954153, 0.160547, 1.464064, 0.325959, 0.581150, -0.271421, 2.047957, 0.176391, -0.456448, -1.773184, -0.887603, -1.664833, 1.066357, -0.189105, -1.556737, 0.909495, 1.856653, -0.907899, -0.308409, -0.239976, 1.028492, 0.572439, 0.051372, -0.008288, -0.783578, 0.773929, 1.521470, 2.229440, -0.881176, -1.457718, 0.637489, -0.235527, 0.954130, 0.292365, 0.036335, -0.168974, -1.450869, -0.210238, 0.638893, 1.673296, -0.240232, -0.020352, -0.668014, -1.336941, 1.639382, 0.762648, -2.364070, 0.443269, 1.448576, 0.945689, -1.091067, 2.389915, 0.693015, 1.088408, 1.168374, -1.758695, -0.086013, 1.013681, -0.090492, -0.044804, -0.828310, 0.510437, 0.701660, 0.558064, 0.549422, -0.536471, 0.201789, 1.422420, 0.784057, -0.036343, 0.205224, -0.000234, -1.192550, -1.566831, -0.729800, -0.108911, 0.137060, -0.298037, 0.328502, -0.378400, 0.388234, 0.742648, -0.180846, 1.231257, 0.800301, 0.875977, 1.408661, 0.135466, -0.329125, -0.986001, 0.986953, -0.575777, -0.424637, 1.081072, 1.550585, 0.170398, 0.240643, 0.883177, -1.665744, -3.635990, -0.137211, 0.363277, 2.063344, 1.131993, 1.311593, 0.927851, 1.413076, 0.438170, -0.970018, 1.312096, -0.779295, -0.310879, 0.259101, 0.250937, 0.940665, -0.285690, 0.580361, -1.237775, -0.508898, -0.348998, 0.596636, 0.599988, 0.630155, 0.889974, -1.476112, 1.060663, 0.634004, 0.799343, -0.401605, 0.621985, 0.589858, -0.991861, -0.724526, 1.300982, -0.287826, -0.658643, -0.476222, -0.557687, -0.449509, -0.699987, -0.019910, -0.147444, 1.709261, -0.749892, 1.567296, 1.291917, 1.009630, 0.768685, 0.384907, -0.199116, -0.957984, -0.378198, -0.155765, 0.510851, 0.444441, -1.130476, 1.707635, -1.042398, -0.286215, -1.216550, 0.666569, -0.017838, 0.295911, 0.087384, 0.965974, 0.822800, -0.569121, 0.768136, -0.117474, 0.741499, -1.866723, 1.204409, -0.520818, -0.898192, 0.484169, -0.841029, -0.356190, 0.196639, 1.632712, 2.416075, 0.022901, 2.814648, 1.113629, 0.524847, 0.164436, -0.070459, 0.708655, 0.671501, -0.649493, -0.459252, -0.401812, 0.241851, -0.785663, -0.102306, -0.109762, 1.360568, 0.966850, -0.744533, 1.114473, -0.706908, -1.753237, 0.993281, -1.377887, -0.074141, -1.371117, 0.648602, -0.333696, 0.000986, -0.279523, -0.020501, 0.127914, -0.481768, 0.461848, -1.183002, 0.896069, -1.159050, -0.787095, -0.891154, 2.070235, -0.219389, -0.912212, 0.615356, 0.349290, 0.859179, 2.019272, -1.799851, 1.385335, 1.281392, 0.710911, -0.284844, 0.000106, 0.282691, -1.863078, 2.113405, 1.339994, -1.174242, -0.317377, 0.156986, -0.475833, 1.165828, 1.467965, 0.093701, 1.154228, 0.193128, -0.076910, -0.967719, -0.123777, 0.823184, 1.170257, -1.430106, 0.074882, -0.537723, -0.297741, 0.826818, 0.326836, 0.711172, -0.103686, -0.038879, 0.792268, -0.637338, 2.041163, -0.571609, -0.186632, -0.858217, 0.218720, 1.065005, -1.220584, 2.136113, -0.624432, 1.583983, 0.963995, 0.194155, -1.578501, 0.923188, 0.394748, -0.849746, -0.229841, -0.764036, -0.372095, 1.127376, -0.895114, -0.005374, 1.908703, 0.042856, 0.422344, 0.816188, -1.504051, 1.077873, -1.082877, -0.845144, 0.711653, -0.203057, -0.559347, 0.126911, -0.029682, 1.123529, -0.770283, 0.592021, 0.790654, 1.171499, -0.705528, 0.326963, 0.239395, 1.614970, -1.878006, 0.914507, 1.060340, 1.464831, 0.279282, -1.921026, 1.760842, 0.103957, 0.563977, 0.482349, -0.714490, 0.079475, -1.052644, 0.671598, 0.593266, -0.625355, 0.316930, 1.771858, -0.929034, -1.400440, 0.675175, 0.138499, -0.340336, 0.194618, 0.497762, 1.230675, 1.512318, -0.026135, -2.557627, -0.707932, -0.219666, 2.103652, -0.559057, -0.743498, 1.089843, -0.937166, -0.093129, -0.121561, 0.335960, -1.261972, 0.639164, -0.852551, 0.419367, 0.011299, 0.612042, -0.713572, -0.567932, 0.401327, -0.541403, -0.153874, 1.252321, -1.245636, -0.181698, -0.146689, 0.020970, -0.755785, -0.386608, -0.068100, 1.382661, 1.712314, 1.095520, 1.285142, -0.848580, -0.052623, 0.930931, -0.438191, -0.588549, 1.465999, -2.008006, -0.636326, 1.136867, 0.461443, -0.321635, 2.135953, -0.335056, 1.226329, 1.564624, -1.237418, -2.732117, 0.373494, 0.322539, 0.017572, 0.573900, -0.312578, 0.644327, 1.134529, -0.662524, -1.844351, 0.559155, 0.101749, -0.297372, 0.560997, -0.530407, -1.665942, 0.277881, 0.861003, 0.080971, 1.217627, 0.212807, -0.815147, -0.355421, 1.937080, -0.907170, 0.754306, -1.994270, -1.028057, -0.375151, 1.151616, -1.040688, -1.280795, 0.874890, -1.661557, 1.149909, 1.119439, 2.150875, 0.529790, -0.555059, -0.082521, -1.635425, 1.088980, -2.092434, -0.780371, -0.592898, -1.073179, 1.641686, 0.597490, -1.233361, -0.652751, -0.225743, 1.180272, 0.073709, -1.551583, 1.000875, 1.089462, -0.525395, -2.644914, -0.658505, -0.490629, 1.755187, 0.939491, 0.225419, -0.662945, 0.647270, 1.171921, 0.158083, 0.907096, -0.220339, -0.793155, 0.033152, -0.604378, 1.159016, -3.269448, 0.128253, 1.239591, -0.570770, -0.865168, -0.389532, -1.546964, -0.182532, -1.373328, 1.313101, -0.784499, -1.741225, 1.430397, -0.775050, -0.329480, -0.654925, 0.139817, -0.511233, 0.852622, 0.650294, -0.456377, 1.054221, -0.508107, 0.207025, 0.644104, -1.316832, -0.009301, -2.487498, 0.550995, 1.231386, -0.190392, -0.090883, 0.228802, -0.644126, 0.505859, 0.545793, 0.773597, 0.968773, -0.238321, 1.779011, 0.578098, 2.167257, -0.873185, 0.153486, 0.792205, -1.219238, -0.308090, 0.915982, -2.219101, 0.518639, -0.729584, -0.714895, 0.188635, 1.313635, -0.942638, -1.566310, 1.202370, -0.558439, -1.035084, 1.216388, 0.852245, 1.195368, 0.527580, -0.087302, 0.145773, 1.314205, 1.288847, -2.048186, -0.165540, 0.803084, -0.384076, 0.034000, -0.336768, 0.998313, -0.160068, -0.282046, -0.202294, -0.039547, -0.065647, 0.228173, 0.359293, -1.796697, 0.446656, 0.235060, 1.419604, 0.507064, -0.503891, 0.372678, -1.159999, -0.023849, 0.659625, -0.265349, -1.015350, -0.649836, 1.119256, 0.683738, -0.223828, 1.532778, 0.201287, -1.579463, 1.459927, 0.367187, -1.075856, 0.908331, -0.611305, -0.300508, 0.505438, 0.153719, 0.701105, -1.064955, -1.170030, 1.374385, 1.882858, -1.300594, 0.108963, 1.743860, -1.213474, 0.985335, 0.688561, 0.097856, -1.186852, -0.355296, -0.635735, 0.325742, 0.213272, -0.809125, 0.819738, -0.601411, 0.014599, 2.264916, 1.102887, -0.005778, 0.303516, 0.546233, -0.121246, 0.387421, -1.188764, 0.248742, 1.064818, 0.636523, 1.061661, -0.890358, -0.298644, -0.376108, -2.351388, 0.893723, -0.605168, 0.030722, 0.252506, 1.251551, -1.558351, -1.211881, 0.597801, -1.222575, 1.752244, 0.352015, 0.848607, -0.979261, -0.104326, -0.056452, -1.364747, 0.401830, -0.911071, -0.418662, -0.201700, -0.485656, 0.859280, 0.460503, 0.203149, -0.554091, 0.451286, -1.981969, -0.518462, 1.552624, 0.043932, 1.641353, 0.130044, -0.170692, -0.563246, 0.727835, -1.075599, 0.569569, 1.787155, 0.407785, -0.787473, 0.682936, -2.238141, -0.281956, -0.092752, 0.612499, -1.461787, -1.112643, -0.061827, 0.259854, -0.049496, 1.440056, 0.660853, 0.563754, -1.475085, -0.733403, 0.122397, -0.853462, -0.485674, 1.179337, 0.095868, 1.012588, -2.189900, 0.434248, 0.419818, -0.606318, -1.337364, 0.661777, 0.941832, 0.630758, 0.274054, 0.613185, -1.555423, 2.208676, -1.226143, 0.192876, 0.382807, -0.507107, -0.676884, 1.297350, -1.838749, 0.502938, 0.489421, -1.449614, -0.220311, 0.236136, -1.689865, -0.406308, -0.727294, 0.098725, -0.464643, -0.884307, 0.013853, 0.236973, -0.164221, -0.674006, 0.131695, -0.617369, 0.643403, -0.543583, 0.772491, -0.492485, -1.052373, 0.107329, -1.207519, -1.182785, 1.328212, 1.204217, -0.804488, -1.140010, 0.097034, 1.217178, -0.031188, 1.321860, -0.154781, 1.694274, 1.895952, 0.486160, 1.679492, -0.372067, 1.200676, 0.092518, 0.023981, 0.341186, 0.106569, -0.371428, 0.048285, -0.598240, 0.555632, -0.113781, 2.258779, 1.139286, -1.561539, 0.120659, -0.818270, -1.615670, 0.231890, 0.818585, -0.282959, -0.619159, 0.425710, 0.107852, -0.495312, -0.922744, 1.618770, 0.611693, 0.209416, 0.061289, 0.383158, 0.403099, 1.544681, -0.247567, -0.226363, 0.282293, -0.162925, -0.150727, 1.665162, 0.417748, 0.247617, 1.095870, -0.724538, -0.947903, 1.287739, -0.572502, 0.410051, -0.294066, -0.973140, -0.620319, -0.176661, 0.734385, 0.257918, -0.003877, -0.283247, 0.398960, 0.234987, -0.888135, 0.780387, -0.883143, 1.528162, 1.369998, 0.440470, 0.311630, -0.217703, 1.169327, 1.152547, 0.001330, -3.111687, -1.161778, 0.579605, 1.354272, -1.816908, 0.289452, -0.715973, -0.227970, -0.266305, 0.237394, 1.558306, -0.287718, -2.105695, 0.163154, -1.389914, -0.859619, -0.589800, 1.022661, 0.295959, 0.104051, -0.036047, 0.606662, 0.164811, -0.957931, -2.492861, 0.030811, 0.920364, -0.360781, 0.139982, 1.133491, -0.300707, 0.336575, 0.507103, 0.600709, -0.211559, -1.394743, 1.478281, -0.076582, -1.096339, -0.712362, -0.432329, 0.579065, -1.488342, -0.910461, 0.337790, 0.849376, -0.628656, -0.201502, -0.813711, 0.780423, 0.809918, -1.017160, -1.816959, 1.215460, 0.227868, -0.206193, -0.006789, -0.011629, 0.823619, -1.465040, 1.220760, 0.915470, 0.424382, -0.406326, 0.788891, 0.597634, 1.024642, -1.627069, 0.524052, -0.118481, -0.861173, 0.228996, -0.789750, 0.704336, 0.196415, 0.265733, -0.902469, 0.667173, -0.543033, 2.697160, -1.522783, -1.799450, -1.411446, -0.694229, -1.156437, -0.470852, -0.056675, -1.736340, -0.594657, 0.048243, -0.819701, -0.876457, 0.358401, 1.267470, -0.306011, 1.039295, 0.601812, -0.564680, -1.104105, -0.722004, 2.312108, -1.349747, -0.892771, 0.151801, 0.315304, -0.725026, -0.418684, 0.111435, 0.596750, -0.555341, 1.611905, 1.272542, -0.023220, 0.206478, 0.134233, -0.203241, 1.350970, -0.342681, 0.164155, 0.863499, -0.050786, 0.163347, 0.337377, 1.452552, 1.332757, 0.263455, 0.735801, -0.546056, -1.579859, -1.580557, -0.910682, -0.440208, -1.036152, 0.108445, -1.348276, -0.778949, -0.273071, 0.307473, -2.107667, 2.899087, -0.154676, -0.825747, -0.116451, -0.112139, -0.695980, -1.997260, -0.559540, 1.374828, 1.355160, -2.918503, -0.828328, -0.525038, 0.515643, -0.221758, 0.441751, 1.314681, -2.328024, -0.728079, 1.614282, 0.403975, 1.075355, 0.200915, 1.638984, -1.247847, 0.443415, -1.155030, 1.513093, 0.715488, -0.617151, 0.333406, -0.399340, 0.069123, 0.446708, -0.502536, 1.180051, 0.102046, -0.739725, 0.923782, -1.826780, 0.179978, -1.952412, 0.328875, -2.264256, -1.558819, -0.846077, -0.163427, -0.943234, -0.386209, -0.235066, 0.077537, -0.187691, -1.501340, -0.627953, 0.086696, 1.407023, -0.848803, -0.072817, -0.934108, 0.496366, -0.241809, 0.135577, -1.307954, -0.245559, 0.165330, 0.486256, -0.852865, -0.208494, 1.770206, 0.396216, 0.270409, 2.037633, -0.064223, 0.064612, 0.445806, -0.957088, -0.919547, 0.215573, 2.278594, -0.416339, 0.161316, -0.379705, 0.696427, -1.197473, -0.152829, -1.201155, -0.067571, 0.744421, -1.273772, 0.091633, -1.153070, 0.745280, -0.126027, -0.463737, -0.596977, 0.259205, 2.094970, -0.055123, -0.817826, 1.679727, -0.550194, 0.547040, -1.468360, 0.047270, 1.728018, 1.251678, 0.785110, 0.782004, 0.635047, 1.491072, 2.374910, -0.857646, -0.037283, -0.443378, -0.145824, 0.398244, 0.444377, 0.530464, 0.507240, 1.838416, 0.608443, -0.627736, -1.815393, -0.918009, -0.795143, -1.268468, -0.493845, -1.959881, 0.927852, -0.144308, -1.515496, -0.416742, -0.535321, -1.690671, 0.558452, -0.723324, 0.658306, 0.673020, -0.282153, -0.087523, -0.101062, 0.806614, -1.397657, -0.783966, 0.148817, -0.191359, 0.763614, -0.075771, 0.395182, -0.512973, 0.043773, 1.161476, -1.136248, -0.033076, 1.855701, 0.050423, -1.782616, 0.618242, 0.857557, 0.586584, -0.538299, -0.824793, -2.081231, 0.100155, 0.599181, 0.895736, 0.393109, 0.761994, -0.856217, 0.345470, 1.175187, 0.859146, 0.222996, 2.730433, 1.045481, -1.602272, -1.120842, 0.797835, -0.450566, -0.107617, 1.004892, 0.271661, -0.356596, 0.652141, -0.538075, 0.288047, 0.064005, 0.596706, -0.630322, -0.028489, 0.717982, -0.065484, -0.084068, -0.041005, -0.434164, -0.064324, 1.172602, -0.958908, -0.388051, -0.745537, 0.329071, 1.650854, -0.487696, 1.476046, -1.464900, 0.466550, 0.874340, -0.330703, -1.517606, 1.086196, 1.399697, 1.433387, -0.911661, -1.107046, 1.151739, 0.815799, 0.556304, 0.891766, -0.728414, -0.320747, -0.307799, -0.922006, -0.494039, -0.888249, 1.540241, -1.377076, -1.067262, 1.358926, 1.151412, 0.606119, -1.699460, -0.427536, 0.360005, 0.606905, -1.545228, 0.198811, 0.959342, 0.601874, -0.334327, -0.377551, -0.858046, -0.225197, 1.816804, 1.034932, 1.434679, 0.654734, 0.940643, -0.739575, -0.840147, -1.789858, -0.942806, -1.079719, 0.531839, 0.511425, -0.326281, -2.296900, -2.334516, -0.341631, -1.482882, 0.443912, -0.037954, 0.876560, -0.614322, 2.335886, -0.647980, 0.578187, 0.858352, -1.668314, 0.025324, 0.745265, 0.482212, -2.352133, 1.739185, -0.514463, 0.009494, 0.296828, -0.643168, 0.148094, -0.157162, 0.973446, -2.404760, 0.085901, -0.389550, 0.464780, 1.203284, -0.505066, -1.465330, 0.113142, -1.268466, -0.171102, -0.740924, 0.711941, 0.021854, -0.155897, 0.376086, -0.476774, 2.088704, -0.002063, -0.190758, 0.527170, -0.521759, -0.447835, -0.512182, 0.024397, -1.028813, -0.436797, 0.896304, 1.074301, -0.242409, 0.598928, 0.560371, -1.604305, -0.870563, 0.444375, 0.577974, -0.353234, 0.215623, 0.345611, 0.260071, -0.468246, -0.544294, 0.228037, 0.269647, -0.586471, -2.052550, 0.615393, -1.272593, -0.882642, 1.036288, 0.011614, 1.805478, -1.691650, 0.430511, -0.193104, -0.794786, 1.579785, 0.023423, -0.202144, -0.429140, -0.244490, -0.192104, 0.496623, -0.370862, 0.591385, -0.008358, 0.916484, 1.391264, 0.205551, -1.391085, -0.158767, -0.116726, 0.463252, -0.202024, 1.366361, -0.005888, -0.659149, 1.385597, -1.283743, 1.090053, -0.235352, -0.342533, -0.490919, 0.637522, 0.735195, 0.437611, -0.195301, -0.771487, -1.933584, 1.398047, 0.530650, -0.367794, -2.613991, -0.934382, 1.128839, 1.119543, 0.755983, 0.432306, -0.838827, -0.187274, 0.300638, 2.112506, -0.336808, -0.568510, -0.809779, 0.556836, -0.115932, 1.509196, 0.116030, -0.004545, 0.918701, -0.098034, 0.774322, 0.548438, -1.185807, 0.576253, 0.818708, 0.820646, -0.043009, -0.112975, 0.294283, 0.646336, -1.411424, 0.415686, 0.283050, 0.289867, 0.781490, -0.721728, 2.004668, 1.198695, -0.840073, 0.463102, 0.030390, -0.550954, 0.450995, -0.432116, 0.485383, -1.210767, 0.267810, 1.040128, -0.049312, -1.319735, -1.100990, 0.257950, 0.640590, 1.264726, -0.706996, 0.343020, 0.604296, 1.061179, -0.349471, 1.181923, -0.096113, -0.684709, 0.371165, -1.888668, -0.219498, -2.005449, 0.828665, -0.212407, -1.690258, 0.913129, -0.719772, -0.291366, -1.193654, -0.960187, -0.031259, 0.566043, -1.808817, 0.350319, -1.122654, 0.429573, 0.141642, -0.796642, -0.951431, -0.358224, 0.286029, 0.900678, -1.077279, 0.949549, -0.551130, 1.014358, 0.628007, -0.190322, 1.064191, -0.235220, 0.634681, -0.996202, -0.440077, -0.273290, -1.646487, 0.976593, 1.111389, -0.139303, -0.916863, -0.154713, -0.310510, 2.885064, -0.731374, -0.446964, -1.068459, 0.093839, 1.414929, -1.631422, -3.345341, 0.672032, 0.130001, -0.273509, 1.300311, -1.251719, 0.732780, 1.013213, 0.877303, -0.626863, 0.255106, -0.327187, -2.106743, -1.437281, 0.347722, -0.598641, 0.554328, -0.448056, 0.289314, -0.795904, -1.723003, -0.420764, 0.392462, -1.488810, -0.252925, 0.673444, -0.116164, -0.006031, -1.194115, 0.120299, 0.494225, 1.817080, 0.861764, 0.896387, 0.558066, 1.276631, 1.114552, -0.214774, 0.728033, 1.309181, 0.551700, 0.253694, 1.834876, 1.335530, -0.357923, 1.334914, 1.778314, -0.928489, -0.661655, -0.218289, -1.267311, -0.679976, 0.142578, -0.325426, 0.448539, -0.536486, 0.552878, -2.199202, -0.820706, -2.662360, -0.559948, 0.590066, -0.386476, 1.715975, 0.605198, 0.101238, 0.653559, -0.813276, 1.363169, 0.107939, 0.682765, -0.174299, 2.433555, -2.343627, -1.172672, -3.199686, 0.592968, -2.778187, -0.277380, 0.205596, 0.256554, 0.674087, -0.092992, 1.284310, -2.514184, 2.086236, -0.305648, 0.499562, -0.518138, 2.015840, -0.104281, 0.433778, -0.406942, 0.832048, -0.202261, 0.981248, -0.257785, -0.805417, 0.123813, 0.990685, 0.125278, 1.472102, 1.003173, 0.671391, -1.311633, 0.686317, -1.238560, 1.333381, -1.819972, 0.014583, -0.069385, 1.019034, 0.255380, 0.614337, -1.088945, 0.003024, -2.198287, -1.246073, 1.118342, 0.282005, 0.211082, -1.116343, 0.497717, 1.689003, -1.494971, 0.361726, 1.177114, 0.065296, -1.165127, -0.460834, -0.278577, 0.558672, -1.228186, 0.194247, -1.579477, -0.569127, -0.595906, 0.346841, -1.467514, 0.457670, 0.558748, 0.207878, 1.939161, 0.973660, -1.635622, 0.028355, -1.065006, -0.142816, 0.550287, -1.079264, -0.870758, 0.447781, 0.841872, -0.476380, -0.240467, 0.102527, 0.969131, -0.094159, -1.471724, -0.080538, -1.081234, 0.892425, -1.398874, -0.198271, -0.421002, 0.891942, 0.834312, 0.006150, -0.381829, -0.055182, 1.618491, 0.244830, 0.106999, 0.214148, 1.454636, -0.592663, -0.163587, -2.039119, -0.619669, 1.506373, -1.397350, -0.092203, -1.430567, -1.311889, 0.866339, -3.163515, -1.292274, 1.078179, -1.385464, -1.102093, 1.252812, -0.638390, 1.065954, -0.434725, -0.758999, -1.726670, 0.558720, -0.263322, 2.281444, -0.848641, -1.647519, 0.448649, -0.434710, -0.734985, -0.731943, -0.829069, -0.262430, 0.545340, 0.004613, -0.645514, -0.178483, -1.701218, 0.605534, -0.939845, -0.342279, -1.642277, -0.479832, -0.145732, -1.621380, -0.474369, -0.940053, -1.435311, -0.678221, -0.617701, 0.013875, -0.618717, -0.238223, -1.695965, -0.795559, 0.525432, -0.790244, -0.673575, -1.325514, 0.333026, -0.244594, -0.278886, 1.209369, 0.529215, -0.250697, -0.322201, -0.499480, 0.873978, -0.612866, 0.119325, 1.493435, 0.474964, -0.662750, 0.845538, -0.589458, -1.823233, 0.001842, -0.399125, 0.505185, -0.575673, 1.380647, 0.301480, 0.870098, -0.033522, 0.486709, -0.288075, 0.718362, -0.678294, 0.534405, -0.406838, -0.511154, 0.467546, -1.045277, 1.365833, -1.880154, 1.498577, -0.709347, -1.310839, -0.039387, -1.146252, 0.617003, -0.619881, -0.746843, -0.138104, 1.431202, -2.176347, -0.935408, -0.669361, 0.880733, 0.957628, 0.268094, 1.026087, -0.310804, -0.064648, -1.343621, -0.749944, -1.189768, 0.560676, -0.006086, 0.647117, -0.143102, 0.366470, -1.459244, 0.207666, -0.050755, 0.159965, -0.200505, -0.020746, 0.854998, 0.652354, 1.290493, -1.107352, 1.213934, 0.182142, 1.050795, 0.694052, 0.819290, 0.022826, -0.875291, 0.548073, -0.212302, -0.538839, 0.162168, 0.315788, -0.683053, 1.502058, 1.609384, -1.261816, -0.685542, -0.684384, 0.007175, -0.110525, -0.869473, -0.425027, 1.686312, 0.659582, -0.298156, -1.348327, 0.489380, 1.783486, 0.916291, -0.737333, 1.249722, 0.514340, -0.510650, 0.530287, 0.250790, -0.736731, 0.181218, -0.609399, -1.763146, -0.497334, -0.770102, 0.095765, -1.833470, 0.925065, 0.506651, -0.567896, 0.583574, -0.652694, 0.126927, -0.351854, 0.652261, -0.436328, 0.391945, 1.146941, -0.434520, 0.529063, 0.861122, 0.339439, 1.227181, -1.659411, -0.013468, -0.860145, -0.876674, -0.323090, -1.342286, 0.985412, 1.335472, 1.285018, -0.414086, 0.706340, 1.217383, -1.440695, -1.289047, -0.901490, 0.064526, -0.976088, -1.134814, 1.058022, 1.333273, -1.043313, 1.321891, -0.109960, 0.415771, -0.555932, -0.218403, -0.272969, 0.012761, 1.984532, 0.607617, 0.254116, -0.836948, 0.008405, -0.437715, 0.925419, -1.637382, -0.340474, -0.840463, 0.789162, 0.651031, -0.740322, -0.042824, -0.835316, 1.587364, -1.205372, 1.065413, 0.206891, -1.447811, 0.218973, 1.567639, -0.069754, -0.592155, 0.493281, -0.486558, 0.280744, 0.024010, -0.244175, -1.648609, 0.398642, 0.853410, 0.841394, -1.058714, -0.362462, 0.114567, 0.793381, -0.883279, -0.650965, 0.746007, -0.115356, -0.482327, 1.628481, 0.236334, 1.122638, -1.048374, 1.581355, 0.506680, -0.692447, -0.609296, -0.172604, 0.241335, 0.686081, -1.350582, -0.115404, 1.202263, -0.633033, 0.831468, 0.726793, 0.957572, 0.287042, 0.682826, -0.378327, 1.541249, 1.235914, -0.271342, 0.884730, 0.517920, 0.573293, -1.544325, 0.568943, 0.392183, 0.010682, 1.129690, 0.402858, -0.785571, -0.034727, -2.560512, 0.188622, 0.745281, -0.321471, -0.854352, 0.548736, -1.234354, 0.925957, -0.348154, -0.514366, -0.318813, -0.078934, -0.679750, -0.641392, -0.780845, 0.292700, 1.477203, 1.252533, -0.487051, 1.386790, -0.283977, -0.414354, 2.309083, -1.303284, -1.817065, 2.495653, 0.570511, 1.004694, -1.787725, -0.109871, 0.772058, 0.354526, -1.424405, 0.351693, 1.292659, -0.805693, 0.709871, -0.064224, 0.006072, 0.584756, 0.345615, 0.680089, -0.002734, 0.929262, 1.790102, 0.403073, 0.035194, -0.128437, 0.348572, -0.019493, 1.196981, 0.015461, -0.814024, 0.578597, -0.338844, 1.393876, -2.222345, -1.074805, -1.098250, 1.403857, 0.239371, 0.242014, -0.168282, -0.834605, -0.169059, -0.441645, 0.674441, -0.058228, 1.028264, -0.642770, 0.243626, -2.634166, 0.475228, -0.785591, 0.396225, -0.374844, 1.215585, -0.801908, 0.236088, 0.706994, 0.545217, 1.517945, 0.192899, 0.501366, -0.631635, 0.236042, -0.540647, -0.263529, 0.237750, -0.053088, -1.466106, 0.455937, -2.141427, -0.836912, 0.588601, -0.975322, 1.501426, -0.488858, 0.361602, -0.299698, 1.375798, -0.829770, -0.992468, -0.744957, 0.585658, -0.994177, 2.133005, 0.604265, -0.996530, -0.465949, 1.118589, 0.851781, -0.144288, -0.101109, 0.137684, 1.061046, 0.593670, 0.726586, -2.675390, 0.410663, 3.586453, -1.170571, 0.761411, 0.570526, 0.058953, 0.334523, -0.317482, 0.765881, -0.984257, 0.277280, -0.645113, 1.966093, -0.054017, -0.355771, 0.317502, 0.375538, -0.572351, -0.784479, -0.759979, 0.617876, 2.447737, -0.611156, -1.340673, 1.201098, 1.263286, -0.695809, -0.849187, 0.489012, -0.593956, 1.253131, -1.305665, -2.177678, -0.331286, 0.656302, -1.700598, 0.379237, -0.432112, 0.602720, -1.667386, 0.433250, 0.815467, -0.539471, -1.729565, -0.670985, 0.587887, -0.535748, 0.569673, -0.046745, -0.316038, -1.027328, 0.329559, -0.438133, -0.490015, 1.594848, -0.810045, 0.152105, -0.370337, 0.507324, -0.490510, -0.619391, 0.738050, 2.072518, -0.701880, 0.737407, 1.642830, 0.444321, -0.056485, 1.961288, -2.354003, -0.072037, -1.669549, -1.858596, -1.504215, -0.187371, -1.909644, 1.805385, 0.474356, 1.042067, 1.114747, 1.282275, -2.188725, 0.916882, 0.557736, 0.231816, -0.232051, 1.619510, -1.054217, 1.125998, -0.969100, -1.266579, -0.670209, 1.139490, -0.745597, -0.210947, -0.861337, 1.652766, -0.788320, -0.743822, -1.602206, -0.541056, -0.435770, -0.921485, 0.298054, -0.194899, 0.297088, -1.667046, 1.158349, -1.590320, 0.414036, -0.432755, -2.415697, -0.659518, -0.910445, 0.927733, -1.120275, 0.467300, 0.314042, 1.976022, 0.219947, 0.078395, -0.305890, 0.632552, -1.611635, -0.042283, -2.069789, 1.824029, 0.656008, -0.195056, -1.214351, 0.264522, 0.542187, 1.487073, 0.789542, 1.059119, -0.075870, 1.013427, -0.477173, 0.269869, -0.652294, -1.358589, 0.979331, 1.116919, -1.049375, 0.310614, -0.407688, 0.020530, 1.320260, 1.443595, -0.748712, -0.857938, -0.717673, -1.553223, 1.203013, 0.642697, -1.534610, 0.789280, 0.175633, -0.374085, -2.547447, -1.186978, 0.375963, 1.387543, 0.124566, -0.516787, 1.271062, -0.065854, -0.847381, 0.903283, -0.780442, -2.487500, -2.253640, -0.094605, 2.027686, -1.033854, 0.266449, 1.438877, -0.728771, -1.543139, 0.433430, -0.635535, 1.145563, -1.158888, -0.290143, -1.062991, 1.411065, -0.402367, 0.471370, -1.789846, 0.517319, -1.047263, 1.051822, 0.521338, -0.347231, 1.102154, -2.125638, 0.331757, -0.536398, 2.839321, -1.337101, -1.270588, 1.618598, 1.558441, -1.472812, 0.978768, 1.095047, 0.878453, 1.522101, -0.169450, -1.881421, 0.041783, -1.933428, -1.272658, -1.099831, 0.698799, -0.912297, -1.302414, -0.967370, -0.062387, -0.578776, 0.323390, 0.067520, -0.656164, -0.334443, -0.177343, 0.539449, -0.386821, 1.444985, -0.566086, 0.779453, 0.262055, -1.547493, 1.821644, -0.087003, -1.189743, -1.263727, 1.172478, 0.740028, 0.984671, -0.244013, 1.409685, -1.013735, -1.044181, 0.894445, -0.094312, -1.005935, 0.617880, -1.153423, -0.741734, -0.645282, -0.585838, 1.003105, -0.323091, 0.961363, 0.592898, -0.338686, -2.720963, -0.033931, 2.024170, 1.681945, 0.326379, 0.083399, -0.803196, -1.157355, -0.842997, 1.711657, -0.408833, -0.470732, -0.591740, 0.085203, 1.794521, -0.383445, -0.516549, -0.873501, 0.910886, 0.068872, -0.265310, -1.044059, 1.075193, -0.896742, 0.162181, 0.465172, -0.075295, -0.028526, -0.453873, -2.491138, -1.103367, -0.410223, -0.491504, -0.620867, 0.100039, -1.076069, -0.328097, 0.751399, -0.429668, 0.966350, -0.511710, 1.301603, -0.823436, 0.910685, 0.649541, 0.257834, -0.036782, 1.671105, 0.120764, 0.982925, 1.131655, 2.069821, 0.236031, -0.870674, 0.081054, 1.590142, -0.501175, -0.566931, -0.516470, 0.209410, 0.205497, -0.705121, 0.985071, 0.759925, 0.781093, -0.428546, 1.261780, -0.083528, 0.920203, -0.312253, -2.609334, -0.286968, -0.500162, 1.315484, 0.891519, -1.018784, -1.285232, -0.523674, 0.528247, -0.174721, 0.384928, 1.811198, 0.517066, -0.059081, -0.801826, 0.752000, -2.036761, -2.350544, 0.212618, 1.330320, 0.024189, 0.418928, -1.608373, 0.199062, 0.441548, -0.525658, 0.105482, -1.362616, 0.953430, 0.748849, -0.677355, 0.584905, -0.634090, 0.233904, 0.982807, 0.509537, 0.458873, 0.173705, -0.444020, 0.445336, 0.041020, 0.544738, -0.153590, 0.117306, -0.317249, -0.024588, 1.244830, 1.156654, -1.606700, 0.742057, 2.044751, -0.405146, -1.185307, 0.249288, -0.366873, -0.274687, -0.569499, -2.202950, -0.546792, -1.745989, 0.123779, 1.312750, 0.288120, -0.107591, 0.808838, 1.379432, -0.849142, 0.815486, -0.251258, 0.466500, -0.850278, 0.503180, -0.218065, -1.253637, 0.835728, -1.202638, -0.245552, 0.062515, 0.886108, 1.236440, -0.530222, 0.410336, 1.243686, -0.183674, -0.039397, 0.451284, 0.481612, 0.508805, 0.461431, 0.539364, 1.497278, -0.276442, -0.327327, -1.008459, 0.690461, 1.445435, 0.451333, 1.488243, -0.894386, 0.296445, -0.082720, 1.071635, -0.125299, -0.603705, 2.131453, -0.596367, -0.884052, -1.093542, -0.342706, -0.020823, 0.674616, 0.004123, 1.739355, -2.153884, 0.555722, 1.068139, 0.274012, 1.681075, 1.163319, 0.478205, 1.945848, 0.130181, -0.408861, 1.495626, -0.954710, 0.009036, 0.743086, 0.622465, -0.646933, -1.070030, -0.929744, 0.951051, -1.284070, 0.378749, -0.120382, -0.253044, -0.119507, 0.724068, -0.888674, 1.712628, 2.459184, -0.636090, -1.982919, -1.283465, -0.716452, 0.426833, -1.473497, -1.381743, -0.259281, -0.170721, 0.772125, -0.643037, 1.138432, 0.479766, -0.787350, 0.369062, 0.808883, 0.890365, -0.831740, 0.420817, 1.128937, 0.801518, -0.331785, -1.538298, -0.965302, 0.486890, 1.091202, 0.382622, -0.801824, -1.565545, -1.012647, -0.232369, 0.425066, 0.465670, -1.097054, -0.969533, 0.565347, 1.632298, 1.021248, 0.351722, 1.441757, 0.099544, 0.417781, 0.482504, -0.857564, -0.297370, 0.428571, -1.386769, -0.125291, -1.034554, -1.681601, -0.461081, -0.877713, -0.753453, 0.989447, 0.216936, 0.941574, 0.683167, -1.290300, -0.735760, -1.719968, 2.398976, -1.124289, -0.498528, 0.642133, 0.787628, -2.198217, 1.260803, 0.156359, -0.154648, 0.451952, -0.748612, 0.571192, -0.697768, -1.085944, 0.245045, 1.922087, -0.275707, -1.384893, 0.311673, -1.741204, 1.487895, 0.213302, 0.415759, 0.751946, -0.896216, -0.148201, -0.118499, 1.131209, 0.645428, -0.976218, 0.086370, 0.274075, -0.365409, 1.200594, -0.550582, 0.842177, -1.025388, 0.594050, 0.230820, 1.576052, 0.704692, -2.029278, -2.054396, 0.684060, 0.190030, -0.217915, -0.656299, -0.565849, -1.333886, -1.810853, -0.030625, 0.646317, 0.248950, -0.469804, 0.998340, -0.450709, 0.702924, 0.033902, 1.492740, -0.535172, 0.873607, -0.002429, 2.179865, -0.139646, -0.385429, -0.452533, 0.457510, -0.374115, 0.604039, 1.235351, 1.300399, 0.684936, -1.011588, 0.600731, 0.689640, -0.828593, 0.290439, 0.908194, 0.654161, 1.024418, 1.720547, 1.083159, 0.929031, 0.998807, 0.360034, 1.057415, 0.509025, -1.591980, 0.763424, 0.350928, -0.084699, 0.073030, -0.956351, 0.252388, -0.204467, -0.370431, 1.356337, 0.465546, 0.430860, 0.710963, -0.995503, 2.361601, 0.113372, 2.022394, 0.474875, 0.634539, 0.143694, -1.129102, 0.355598, -1.301660, 0.242280, -0.466966, 0.616472, 0.954021, 1.104713, -1.493732, -2.318650, -1.043088, -1.207898, 1.286743, -1.384719, 0.668639, 0.185861, -0.123741, -0.048825, -0.232838, 0.450620, -1.225807, 1.468203, -0.150641, -0.327383, 0.554870, 0.881702, -1.404688, 1.050395, -0.350600, 0.800071, 1.189997, -1.175194, 0.814702, 0.984401, -0.504228, 1.619049, -1.002960, -2.215406, -0.131022, -1.318819, 1.603725, -0.226002, -1.365246, 0.030934, -0.573978, 1.222332, 0.595702, 1.050356, -0.454836, -1.099639, 2.134368, 0.526937, -0.748041, 1.670449, 0.034820, -1.542539, -0.017937, -0.861025, -0.702860, 1.125740, -0.701439, -0.536227, 0.080808, 0.583683, 0.457965, 1.273315, -1.112688, 0.070677, -1.064009, 0.185678, -0.329471, 0.647069, -0.367284, -0.287561, -0.506998, -0.700610, 0.198115, -0.506856, -1.778391, 0.111008, 0.771120, -0.970763, 0.346747}, + { 0.409908, 0.582276, 1.311964, -1.054459, 0.832528, 0.430378, 0.902869, 0.745239, 1.406766, -0.218227, 0.192160, 0.866107, 0.903709, -0.904399, 0.816803, -1.880733, -0.058023, -0.561100, 0.386290, -2.321174, 1.157113, -0.041630, -1.040663, -1.065882, 0.429965, 0.178342, -1.260052, -0.335775, 1.965138, 0.798680, -0.955848, 0.924315, -0.442087, 0.814785, 0.313010, -0.633068, 1.616825, 0.753163, -0.356732, 0.443112, -0.313713, -0.450178, -0.115374, -0.382737, 0.620388, -1.550437, -0.668137, -1.452407, -0.980949, -0.526877, -0.183260, 0.011653, -0.398501, 0.212189, -0.395186, 0.470114, -1.327988, 1.699219, -0.323491, 0.541221, 1.622500, -0.893206, 1.442624, 0.489302, -1.430065, -2.164297, 0.022938, 0.642795, 0.492310, -1.922054, -0.011958, -0.486573, 0.771746, 0.527452, 0.468845, 1.563627, 0.877346, 0.021083, 0.855523, 1.321551, 0.208227, -0.875822, 2.103915, -0.875871, 1.110955, -0.036753, 0.251333, -0.549615, 1.738173, -1.628670, 0.003033, 0.999710, 0.070975, -1.117468, -0.441240, -1.451016, 0.343559, -0.446525, -0.217744, -0.286274, -1.414481, 1.375340, -0.175890, 0.988623, 0.352310, -0.865454, -0.225763, 0.368764, -0.576945, -1.223433, -0.051848, 0.183470, -1.149368, -0.680321, 0.681218, -1.968300, -0.673023, -1.441279, 0.509003, -0.218171, -1.532217, -1.421965, -2.325474, 1.354197, -2.006501, -0.050293, -0.416419, -0.378692, 1.943797, -1.801330, 0.351420, 0.830723, 0.295423, -1.466302, -0.288266, -0.041113, 0.571690, 0.350977, 1.112760, -0.151946, -0.321354, 0.211343, 0.687454, -0.248542, -1.891091, -0.294927, -0.310695, 2.018778, 0.499433, -1.730709, 1.962916, -0.061949, -0.318423, -2.131998, -0.873665, 0.825859, 1.738037, 0.859827, -0.202625, -0.440882, -0.182377, 1.061060, 0.838909, 1.327776, 1.239482, 1.107943, -0.944877, -0.085000, -0.749307, -0.191363, -1.376120, 0.078277, -0.583651, 0.172937, -0.851299, 1.614857, -0.063964, 0.643686, -0.916212, -1.089560, 0.897349, -0.617896, -2.968133, 1.018177, -0.447699, -1.068597, -1.028228, 2.171334, -0.710245, -1.653350, -0.908564, 0.589236, 0.272454, -1.585294, 0.889527, -1.756469, -0.040843, -0.665333, 0.921856, 0.138165, 0.046379, 0.432372, 1.128069, 0.457529, 0.765237, 0.428574, 0.102245, -0.488000, 1.016622, 2.475426, -0.147162, 0.138517, -1.026236, 0.268533, -0.475233, 0.859584, 0.611671, 1.303325, -1.020380, -0.271066, 1.439291, 0.358347, 0.783648, 1.546133, -0.935960, 1.125614, 0.337609, 0.797714, -0.158297, -0.744851, 1.455745, -2.192103, -0.137178, -0.751323, -1.227651, 0.154032, -1.664935, -1.464460, 0.317755, 0.406277, -0.221770, 0.039205, 0.390808, 0.492500, 0.984675, -0.456647, 1.058132, -2.350466, 1.932157, 0.023220, 1.933352, 0.365043, 0.187923, 1.348667, -0.433540, 0.944000, 0.960082, 0.633741, 0.636765, 1.163002, 0.005239, -0.110356, -0.706302, 0.712455, -0.152990, 2.198596, -0.139108, 0.309379, -0.101794, 0.136156, 0.473504, 1.304105, 1.066694, 2.123196, 1.371330, 0.047305, -0.789470, -0.448335, 0.749722, 0.020230, 0.109932, 0.227158, -0.084740, -0.698813, 0.425909, 0.985717, 0.731053, 1.423869, -2.743297, -0.713958, 1.605817, -1.256965, -0.477088, 0.611421, -0.743723, 2.063783, -0.549955, 0.171991, 1.038456, -0.601226, -0.765831, 1.484166, 0.260612, -0.333062, -0.785957, 0.992547, -1.254646, -1.366816, 0.159724, -0.362946, 0.157405, -1.056875, 1.307636, 1.297363, 0.443354, -0.932141, 0.420463, 0.959388, 0.990643, 1.460794, -0.377268, 0.322756, 0.988900, 0.249897, 0.568699, 0.754652, -0.353719, -0.552106, -1.388044, -0.379368, -0.001216, 1.063109, 0.436455, -0.671526, 0.825799, -0.867047, -0.979883, -0.855629, 0.752914, 0.876888, -0.751172, 1.419129, 1.181724, -0.519659, 0.771543, 0.312507, 1.692175, 1.667514, 0.868514, 0.808562, -1.053951, -0.433701, 1.661352, -0.789852, -0.074643, -0.702685, -1.257512, -0.060645, -1.374826, 0.186024, 0.512602, 1.368699, 0.134232, -0.119482, -0.095966, 1.198072, -0.401850, -0.502141, -0.338209, -0.408769, 0.101234, 1.303797, -0.253414, -0.607334, 0.524647, -0.506240, 1.224115, 1.741701, -0.203538, 0.912607, -0.390335, -0.376619, -0.161206, -0.821843, -0.161002, -0.067802, -0.842999, 0.996339, 2.430216, -1.757152, -2.216976, 0.613652, 0.465190, -1.622498, 0.109849, -0.253659, 1.166501, 0.216974, 0.280325, -0.036942, 0.476497, -1.692178, -0.414191, -0.976745, 0.480581, -0.861702, -0.185718, 0.380361, -0.433831, 0.637417, 1.446664, 0.949438, -0.536184, -2.041553, 1.144063, 0.568712, -2.313628, 0.824426, -0.509415, 1.666306, 0.237994, 1.518234, 1.353820, -2.798833, -0.411048, -1.114572, -1.020491, -1.825579, -0.362038, 1.410702, 1.031929, -0.238968, -0.429286, 0.043428, 0.731514, -0.586612, 1.215725, -0.721166, -0.206342, 0.211199, 1.788225, -0.998786, 0.974485, -1.827374, -1.230705, -0.726955, 1.047457, -0.062208, -0.763971, -1.523687, 0.917158, -0.988424, -1.161427, -0.346879, -0.197039, 0.915261, -0.842068, -0.195400, -0.643502, 0.810626, 1.171615, 0.209699, -0.073442, 1.591856, -0.069389, 0.855879, 0.134319, 0.331897, 0.111074, -0.029078, 1.288100, -0.822784, 0.001466, -1.050695, 1.771848, 0.699176, -0.057512, 1.111084, -0.730493, -1.147402, 0.821703, -0.627277, -0.932667, -1.383188, 0.507898, -0.198115, 0.197719, -1.037032, -2.587059, 1.008726, -0.575790, 0.967026, 1.274888, 0.458998, 0.300344, 1.407893, -0.162172, -1.012545, -0.829946, 0.641104, -0.107428, 0.088596, -0.756541, 0.914786, 1.131351, -1.353161, -0.279496, -0.501996, -0.968373, -0.826646, -1.494472, -1.476189, 1.697711, 1.341249, 0.764334, 1.747088, 1.018852, 0.764046, 0.912349, -1.026535, 0.210337, 0.262009, 0.769123, 0.593756, -2.351957, 1.563581, -0.184778, 0.778475, 1.738240, -0.655113, -0.051285, -0.196781, -0.453700, 1.298487, 0.376126, 0.408739, -1.091744, -1.056242, -0.516689, -1.849846, -0.398093, -2.871715, 0.859495, -0.834490, 0.962508, -0.311433, -0.070967, 0.295410, 0.098015, -1.624880, 0.765971, 0.874205, -0.884845, -1.480019, 1.045536, -0.680949, 0.563561, 0.328462, 1.122605, 1.597750, 0.916032, -0.990478, 1.067310, 0.185697, 1.695216, -0.269176, 0.526356, 1.088921, 0.715407, -0.089960, 2.038435, -0.993667, 0.504213, 0.849560, -0.000506, 0.327816, 0.703210, -1.366296, -1.473948, -0.849526, 0.420181, -0.358080, -0.629695, -0.763295, 0.507746, 0.364476, 0.543309, -0.149095, 0.251752, -0.449275, 0.465961, 0.467304, 1.462359, -0.016500, 0.003094, 0.544809, -0.208563, 0.620111, 1.156103, -1.112897, 0.422560, 0.407092, 0.308105, -1.424698, 0.443183, 0.936462, -1.117379, 0.270196, -0.533629, 0.556330, -0.226714, 0.065734, 0.986329, -1.455766, -0.193962, -0.844694, -0.153923, -0.643141, 0.317480, 0.669921, 0.435803, 0.984172, -1.233417, 1.042071, -0.683324, 0.492866, 1.865027, 0.223998, 0.766854, -0.907247, 0.604806, 0.164331, -0.357828, -2.546036, 0.754787, 1.559605, 1.111737, 0.002199, 0.068542, 0.737030, 0.615009, 0.548836, 2.004968, -0.045482, -0.674021, 0.947873, 0.562988, -0.009845, 0.695911, -1.866241, 0.766797, 1.693043, 0.756199, 1.132172, -0.592413, 0.821245, 0.585884, -0.821381, -2.451530, 1.129947, -0.018487, -1.934286, 1.095247, -0.728015, -0.644095, -0.029135, 1.339558, 1.153280, 1.390428, 1.763259, -0.319450, 0.600169, -0.213737, 0.566028, -2.096532, 0.351959, -0.959853, -0.421023, -0.573212, 0.121546, -1.306578, 0.202237, -0.461886, 0.979022, 0.354086, 1.751630, -0.990077, 0.142234, 0.610291, -0.077412, 0.884330, -0.261357, 0.238653, -0.262235, 0.127551, 0.273313, -0.161901, -0.051417, -1.420711, 0.309665, 2.403347, -1.738069, 0.727519, -0.118253, -1.288735, -1.856929, 0.685709, 0.497439, 0.779481, -1.426642, 1.160802, 0.908459, 0.167577, -0.551309, -2.273783, -0.962705, -0.434608, 0.161123, 0.101692, -0.257972, -1.362912, -0.209996, -2.265794, -0.302804, 0.013763, -0.337076, -0.882852, -0.456577, 0.766380, 0.041471, -0.209193, -0.137195, -0.482485, 0.241742, -2.119477, 0.086744, -0.389172, 0.381749, 0.276606, -1.609915, -0.458701, -0.125407, -1.366648, 0.095588, -0.426226, 0.017309, 0.701474, 0.511645, 0.120088, 0.055152, -0.637502, -0.110142, -0.059958, 0.279743, -0.585360, 0.473218, 1.775236, 0.051215, -0.828190, -0.277455, 1.814895, -0.080994, 0.052288, -1.227556, -1.159643, -0.581847, -1.608744, -0.870961, 2.447831, -1.337726, -0.018584, -0.605042, 0.506109, -0.030980, 1.160748, 0.013513, 0.883104, 0.534186, -0.591840, 1.496500, -1.080726, -2.251199, -1.866547, -0.103390, -1.996742, 0.088564, -0.082176, -1.324550, -0.304280, -0.037279, 0.652834, -1.166344, -2.440400, -1.727440, -0.567315, 0.252025, -0.543111, -0.807048, 0.669629, 0.863753, 0.276462, -0.361700, 0.054160, -0.381928, -1.419399, 1.475271, -0.568859, 0.628991, -0.636045, 0.951173, 0.291302, 0.328473, -1.923165, 0.923573, 1.608702, -0.104370, -0.028099, -0.578809, 1.392398, 0.658191, -0.569352, -0.370081, -0.562134, -0.514905, -0.853603, -1.959628, 1.197784, -1.309368, 1.868159, 0.444414, -1.602523, 0.039608, 2.050299, 0.084641, -1.043518, -1.580193, 0.954352, -0.561920, -1.296435, 0.853176, 0.479274, 0.429846, 1.955928, 0.783883, 1.862621, 1.346323, 0.408807, 1.225363, 1.800576, 1.341598, 0.226735, -0.040664, -0.532752, 1.744666, -0.248951, 0.448418, -0.274410, 0.064832, -0.418159, 0.835974, -1.225230, -0.460793, 1.661070, 2.463482, 1.105623, -0.003208, 0.045564, 0.932880, 0.830632, -1.017872, 0.277654, 0.738355, 0.387206, -0.044935, 0.870232, -0.532378, 1.386862, 0.929535, -0.223404, 1.664861, 0.703730, -1.271831, 0.181517, 0.640966, 0.452324, -0.743603, 0.172865, 0.834765, 0.073203, -0.416488, -1.364738, 0.185006, -0.644653, 1.425682, -0.150555, -0.198282, -0.153871, -1.434271, -1.057852, -2.044396, 1.271546, -1.196192, 0.130081, 0.796638, -1.240782, 0.293070, 0.146253, -0.388991, -0.352213, -1.100912, -0.266669, -0.122873, -1.260185, 1.329920, -0.995664, 1.090963, 0.690916, -0.248645, -0.901379, -1.584774, -1.375311, -0.404270, 0.759930, 0.970213, -0.472302, -0.652358, 0.369275, 0.714357, -0.814169, -0.839337, 0.370494, -0.826943, 0.122689, -0.052145, -2.384148, 1.329444, 0.368395, -0.570344, -0.290844, -0.512962, 1.459268, -0.480818, -0.500475, 0.142581, 1.105771, 0.239673, 0.872124, -0.731333, 1.111738, -2.154590, 0.853989, -1.648155, -0.035936, 0.636597, 0.153739, 0.196882, -0.349101, 1.310808, 0.223587, -0.670855, 0.679243, -0.420429, 0.262063, -0.738886, -1.289061, -1.160561, 0.057189, 0.729912, -0.656857, -2.879934, -0.139869, -1.741828, 0.194913, 0.823664, -1.454858, 0.105603, -0.709284, 0.417254, 0.995143, 0.155165, -0.186902, 0.877764, 0.655356, 0.681621, 0.325412, 1.028397, -0.501824, -1.726635, -0.542467, -0.690013, 0.859538, 0.212175, 0.540866, -0.374412, -0.140377, 0.008116, 0.018931, -1.823062, -0.732869, -0.643282, 1.385137, -0.056922, 1.057391, -0.208040, -0.460406, -0.103935, 1.441333, -1.904379, -0.510183, -0.405419, -0.796754, 2.396399, -0.701381, -0.007511, 0.069492, 0.294715, -0.154859, -0.628436, -1.078077, 1.471869, 0.125116, 0.511088, 0.675188, -0.600438, 1.019678, -0.265204, 1.966701, 0.273941, -0.371851, -0.665726, -0.221919, 0.844087, 0.202418, -1.302562, 0.151592, -0.770936, -1.569476, -1.215336, -0.643915, 2.026972, -0.572566, -0.148806, -0.207398, -0.456646, 1.036585, -0.394498, -1.107204, -0.782402, 0.093280, 0.087486, 0.330014, -0.494551, 0.483321, 0.552614, -1.293930, 0.042798, -0.767029, -1.264153, 1.258960, -0.229014, -0.862555, 1.070873, -0.147420, -2.267936, 1.556768, -0.569368, -1.394505, 0.361904, 1.975332, 0.744779, -0.568325, 1.920954, 0.230437, 0.510206, 1.311355, -0.798712, -0.738229, -0.152801, 2.162214, 0.116923, -2.371498, 0.319140, 0.525487, -0.268055, -0.952228, 0.429581, -1.902514, 0.998997, -0.454208, -0.092029, 0.776615, -0.515946, -2.065968, 0.482177, 3.124551, 0.402158, 1.249676, -0.292114, 0.826194, -0.926607, 1.435737, -0.465372, -1.238300, 1.441703, -1.042321, -1.150746, -0.800118, -0.992408, -0.887902, -0.464058, 1.949114, -1.008783, 0.009846, -0.989970, -0.727241, -0.792080, 1.160738, -0.789825, 0.432581, -0.042803, 0.053161, -0.103631, 0.161133, -0.035112, 0.041306, -1.272356, -0.573906, 0.901059, 0.617861, 1.261514, 1.059692, 0.492684, 1.048386, 1.165794, 1.428501, -0.708478, -0.203454, 3.044986, -0.759792, 1.184809, -0.261273, -2.471827, -0.732997, -1.174680, 1.021537, 0.949185, 1.649647, 0.253847, 0.219320, 1.345048, 0.489831, -0.944415, -0.884002, -0.463005, -1.328959, -0.770863, 0.612242, -0.517209, 0.098078, -1.285115, 0.202710, 1.792981, 1.931767, 2.495579, 0.673623, -0.625698, -1.263043, -1.057640, -0.911959, 0.120750, -1.124592, 0.294848, -1.479637, 0.442893, 0.522740, -0.196854, 0.016869, 1.060562, -2.004514, -1.162747, 0.405720, -0.504936, 0.231156, -1.458659, -0.542273, 2.877477, -2.529186, 1.338650, 0.184364, -0.074516, 0.339198, 0.805550, 0.950739, 0.844520, -0.222403, -0.943756, -0.816075, 0.110591, 0.351606, -1.306264, 1.206411, 0.848837, -1.208389, 0.118189, 0.948697, -0.008606, -0.864731, 0.084665, -0.658165, 0.052586, 0.531414, -1.491343, 0.058960, 0.580589, -0.033685, 0.145493, -1.614268, -1.030610, -1.003680, 0.998129, -1.904596, -0.788919, 0.305760, 0.733143, -0.045289, 0.328297, -2.640179, -0.465894, -0.694010, -0.685013, -0.772948, 1.990243, -1.360419, 2.311902, 1.706670, -0.784185, -0.626436, 1.234494, 0.949730, 1.181579, 2.214518, -2.658259, 0.607514, 1.161113, 0.004014, -0.715428, 0.249958, 0.440261, -0.237998, 0.207727, 0.315768, 0.892851, -0.299258, 1.110276, 1.041579, 0.204965, 0.158738, 1.553742, -0.096950, -1.184076, -1.131238, 0.411929, 0.627084, -0.471571, 0.715773, -1.566883, 0.419095, -0.081388, -0.010002, -0.824814, 0.715507, -0.550462, -0.033819, -0.596240, -2.174700, -0.373795, -0.754979, -0.397065, -0.628341, -0.232232, 0.162759, 1.424263, -0.320755, 1.942092, -0.191240, -0.558674, -1.866335, 0.855271, -1.737952, -0.048434, -2.124802, -1.995343, -0.968727, 0.869197, -0.204666, 0.801081, 0.973553, 0.902717, 0.662450, 1.091432, 1.422639, 1.584685, -1.254415, 0.611742, 0.661950, -0.186852, 0.658488, -1.861050, -0.673881, -0.232343, 0.659785, 0.809494, 0.492537, -0.490473, -0.046470, 0.607086, -1.497652, 0.852324, 0.580567, 0.369048, -0.892198, 0.842151, 0.999987, 0.624302, -0.476671, 0.409741, -1.228167, 0.680385, 0.763556, 0.309534, 1.488309, -0.057464, -1.246628, 0.103089, 0.085377, -0.737745, 1.076242, -0.341761, 0.446436, 0.202747, 0.586349, 0.431602, -0.282113, -1.492004, 1.929537, 0.644536, -1.360248, 0.264344, 0.941803, 0.465146, -1.531090, -0.422117, -0.029534, 0.335762, 1.210280, -0.740087, -1.010148, 0.171750, -0.186299, -1.306489, -0.391162, 1.197327, -0.218154, 0.176300, 1.011836, -1.614053, -0.597980, -0.422629, -3.667158, 0.475690, -0.079081, 0.413093, 0.107142, -0.459022, -0.018302, 1.050148, -0.548957, -1.484306, 0.743450, 0.064349, 0.533538, 0.995779, 0.172829, 1.342288, 1.699744, 0.141162, -1.834983, 1.800669, 0.074626, 0.549243, -1.611536, 0.498372, 0.218540, -0.323981, -3.178814, -0.459279, -0.677585, -1.659007, 0.820648, -0.745100, 0.990579, 0.470108, 1.383495, 0.432831, 0.570695, -0.351455, 1.333411, 0.413521, 0.507380, 0.825225, -0.965419, 1.125373, -0.123128, -0.547582, 1.610770, 0.466908, 0.247782, 1.795272, 1.250457, -0.509169, -0.468864, 0.844996, -0.544065, 0.044920, 0.467544, 0.491336, 0.742394, 0.324425, -1.227934, 1.418629, -0.874595, 0.672965, -1.220739, 0.313679, -1.040592, -0.257430, -0.772283, 0.463976, 0.904858, -0.423706, 0.385976, 0.604603, -2.004493, 1.551156, 0.121624, 0.331786, -2.067015, 0.652161, 0.788975, 1.927251, -0.225069, 0.452049, -0.885968, -2.142622, -0.846300, -0.319797, 0.136102, 1.569549, 0.634689, 0.123892, -1.402743, -2.021199, 0.782764, -0.269002, -0.648824, 1.507893, -0.630665, 0.905849, 0.187648, -0.261251, 1.810144, 1.755072, 1.101681, 0.149522, -1.054558, -1.034126, 2.148272, -0.088384, 0.862755, 1.221365, 2.707767, -0.337489, 0.174368, 0.610173, -0.689638, -0.922347, 0.435131, 0.776709, -0.083182, 0.514931, 1.564222, -2.197662, -0.657233, 1.328955, 1.069213, -0.009906, -2.669116, -0.711315, 0.548057, -0.162152, -1.977780, 0.553921, 1.036759, -0.288389, 0.044865, -0.702101, 1.309726, 1.115567, -0.785533, -1.972265, 0.168054, -1.243447, -0.495334, 0.148568, -0.733246, 0.743215, -0.152734, -1.797134, 0.396027, 0.276630, 0.966303, 1.287967, -0.976340, 1.749413, -0.110938, -0.019896, 0.584480, 0.355363, 0.184050, -0.077445, 0.941078, 0.612535, 1.173607, -1.662167, -0.638423, 0.113256, -0.518196, -0.271571, -1.735027, -1.531056, -0.654158, 0.276913, 1.560259, -0.221700, 0.256295, 0.295537, -0.452999, 1.778863, -2.121970, 0.943871, 0.437470, -0.259539, -1.648516, 1.300949, 0.446061, 0.543300, -0.165318, -0.826390, 0.428316, -0.004020, 1.013720, -0.709328, 0.223167, -0.653403, -1.334720, -1.600439, 0.463415, 0.877650, 0.617488, 1.051636, -0.639861, 0.366620, -1.141826, -0.105428, -1.285914, -1.300432, 0.358487, -1.687059, 0.462028, 1.018915, 0.067261, -0.191407, 1.074653, 1.168162, -1.102372, -0.052091, 0.637730, 0.872907, -0.040146, 0.445956, -1.107931, 1.526318, 0.459798, -2.946011, -1.217983, 0.078830, 1.270399, -0.748558, -0.576561, 0.779715, 0.584619, 0.013830, -1.210514, -0.027580, -1.807974, -0.456713, -0.458049, -0.720396, 1.039488, -0.860417, 0.036037, -0.461158, 1.035521, -1.001936, 0.130038, 0.529139, -1.020486, 0.632074, 0.538288, 0.543854, -0.082418, 0.229474, 1.441192, -0.440683, -0.528633, -0.946281, 0.574937, -1.350653, 1.417111, -0.592676, 0.585583, -0.629327, -0.302990, -0.130880, -0.485316, 0.608659, -0.141166, -0.022518, -0.823123, 1.918916, 0.578723, -0.946158, -1.121146, 0.523028, 0.094182, 2.139039, 1.084628, -0.917830, 0.487059, -1.153683, 0.537627, 0.602483, 0.040463, -1.106338, -0.407211, -0.206168, -1.047935, -0.933324, -0.977305, 0.124895, 0.329349, 1.190209, -0.356925, 0.041560, -0.571548, -0.670069, 0.031941, 0.955461, -0.713299, 0.575203, -0.093773, 2.370248, 0.430387, 0.401182, 1.178465, -1.328911, -0.888919, 0.797758, 0.895399, 0.227654, -0.187122, -1.023527, -1.870704, 0.112649, 0.892239, -0.686195, -1.345789, -0.860501, 0.490847, 1.355903, 1.020884, -0.494607, -0.081408, -0.057327, -0.744093, -0.965186, 0.080116, -0.296318, 1.544589, -0.476115, 1.149629, 0.951937, -0.666262, -0.479717, 2.120382, -0.134276, 1.332451, 0.366706, -0.510412, -0.742801, -0.028845, -1.000236, 1.835363, -1.088735, -0.828760, 0.522453, -0.129309, -0.598309, 1.000706, 0.377525, 0.039448, -0.523312, -1.824308, 1.872520, 0.576642, 0.809912, 0.196899, 0.097899, -0.354616, -0.419256, -2.578992, 0.554784, 0.585974, -1.540522, 0.247351, 0.086522, 0.546667, 0.285098, 0.696017, -0.253081, -1.036311, 0.553189, 1.577065, 0.485141, 0.648711, -0.543137, -0.474990, -1.143757, 0.167411, 0.075843, 0.409480, 1.747821, 0.684071, 0.284654, 0.841381, -0.211101, 0.823529, -1.049302, -0.517072, 1.692124, 0.869145, 0.239133, 0.199064, 0.458765, -0.013959, -1.404379, -1.541075, -0.192709, -1.460834, -0.332605, -0.512000, -0.736037, -0.590613, -0.108542, -0.310183, 0.263520, 0.097274, -0.113724, -0.092447, -1.828712, 0.866176, -0.102630, -0.444198, -1.219638, 0.436178, 0.391617, 1.402147, -0.095805, -0.700699, 0.348281, -1.540495, 0.636827, -1.594618, 0.750606, 2.266292, -0.386748, -0.653216, -1.243844, 1.081604, 1.072713, -1.850210, -1.319571, -0.263392, -0.226455, -0.692015, 0.127820, -0.057971, -0.207502, -1.409770, -1.662455, 0.613139, -0.964735, -1.980929, -0.078326, -0.823761, 1.758926, -2.206006, -0.630918, 2.725513, 1.207699, 2.294445, -0.323073, 1.295129, 1.836318, 0.767836, 0.823158, -1.193238, 1.388575, 0.131033, -0.588449, -1.190456, 0.409403, 0.273267, 0.025923, 0.138258, -0.456856, 0.357802, 1.121624, 1.669294, -0.129766, -0.718741, 0.073804, -0.517092, -0.923800, 1.318870, 1.141014, -0.368112, -1.011178, 0.442000, -0.710108, -0.672207, -1.549274, -0.357643, -0.199480, 0.615497, 0.056127, 1.244722, 0.187644, 0.992484, -0.243646, -0.445814, 0.837329, -0.008620, 0.708263, 0.002427, -0.103403, 0.411539, 0.685910, 1.280423, 1.798157, 1.461707, -0.412000, 1.212925, -0.215652, 0.541920, 1.435713, -0.112401, 0.460620, -0.151056, -0.802218, -0.276820, -1.957677, -0.562285, 0.483330, 1.608138, -0.797055, -0.806208, 0.461564, -0.279414, 1.903172, -0.194894, 1.091832, 0.829155, 0.187533, 1.395448, -0.577424, 0.281364, 0.005707, 1.180715, -0.848642, -0.301686, 0.951069, 0.751389, -1.633530, -1.420491, -0.529104, -0.746879, -1.670086, 1.672752, 1.014968, 0.804239, -0.994983, 0.315173, 0.447472, 0.913812, -0.323893, -0.359815, 0.769932, 0.906364, 0.691448, -0.347187, -0.175564, -0.233813, -1.264912, -0.865740, 0.172687, -0.445773, -2.049300, 0.106705, 1.792337, -3.665341, -0.778988, 2.966446, 1.556617, 0.387379, 0.592753, -0.302357, 0.291061, 0.999850, 0.583821, 2.155150, -0.626317, -1.722364, 0.690279, 0.537445, -0.158910, 0.118709, -2.246937, 1.755380, -0.423828, 0.343284, 0.311337, -0.115495, -0.994300, 1.071191, -1.055478, -0.805971, -0.114500, -0.021049, 0.387179, -0.240022, -0.483178, 0.722824, 0.507512, 0.691859, 0.724036, 0.622953, 1.077205, 0.181433, -0.089315, 0.088336, -0.478451, 0.849445, -1.023472, -0.095473, -0.086135, 0.510974, -0.459358, 1.670642, 0.886358, -0.978037, -0.726355, 0.247664, 0.691848, -1.008873, -2.217548, 0.188466, -1.818923, -0.160442, -1.398494, -0.122519, -0.050452, -0.401744, -2.163526, -0.827769, 1.101792, -1.125293, 1.409684, -1.671424, -0.300942, 1.117012, -2.228336, -1.740987, 0.402005, 0.784012, -0.801696, -0.316528, -0.811788, 0.246557, -0.234621, -0.801615, 0.167257, 2.119712, -0.221417, -0.047351, -0.189222, 1.613068, 1.636210, 0.685715, -0.516699, -0.213599, -0.553549, -0.888756, 0.737929, -1.101802, 0.005246, 2.067143, -1.686015, -0.949071, -1.727706, -2.423165, -0.049259, 0.860079, 0.148229, -0.546433, 0.061150, 0.665753, -0.804987, 0.244624, 0.292000, 0.249504, 1.201744, -1.013017, -1.663149, -0.877380, 0.698365, 1.136918, 0.636454, -1.805283, -1.133555, 0.277548, -2.322622, 0.457944, -0.491023, 0.151145, -1.106310, -0.898816, -0.658722, 0.540531, 0.046465, 0.655948, -0.144029, 1.508065, 1.497873, 0.185633, -0.013334, -0.284433, -0.041058, 0.040584, -0.050920, 1.488357, -0.524972, 0.392220, 0.456376, -0.586975, 1.514470, 0.539379, -0.812665, -0.075820, -0.318283, -2.524642, 0.287843, -0.320077, -0.910446, -0.443321, -0.189764, -1.996705, -0.253930, -0.485380, -0.317542, -0.126975, -0.154770, -0.795014, -0.118819, 0.085182, 0.907587, 2.933667, -0.993867, -0.515402, -0.307139, -2.020423, 0.332003, -0.148085, -0.305949, -0.246181, 0.573859, -1.246347, 0.276580, 0.611091, 1.280634, 0.216831, -1.287218, 0.502973, 1.253250, -0.482459, -0.022266, 0.501955, -0.740931, -0.900384, -1.451999, 0.503417, -0.762641, -1.122747, 0.007921, 0.286881, -0.995577, 0.135746, 0.543202, -2.875395, -0.911700, -1.794683, -0.544209, 1.041134, 0.220555, -0.499457, -1.734496, 0.412618, -1.504440, 1.006639, -0.374822, -0.643926, -0.125553, 1.031112, -1.033592, -0.103100, 0.160041, 0.506835, 0.058250, -0.198635, 1.110444, -0.593552, 0.227931, -0.353608, 1.283954, -0.258871, -0.199200, -0.653583, -1.054071, 1.239713, -1.576850, 0.299727, -2.212698, -0.377730, 1.248124, -1.214777, 0.680168, 0.553584, -0.240581, -2.726274, 0.412623, 0.472051, 1.461790, 0.217575, 1.293905, 0.588733, -1.758441, -0.233244, -2.096284, -0.015905, -0.795065, -1.916619, 0.987294, 0.020390, 0.841724, -0.180508, -2.990319, -0.357509, -1.196907, 0.614966, 0.489917, 0.384808, 0.453433, -0.278196, -0.041060, -1.814359, -0.528122, 1.627915, 0.891587, -0.513199, 0.615605, -0.628466, -1.480839, -0.545546, 0.021031, -0.249409, 0.351905, 0.125160, 1.319289, 2.885963, -1.584917, 1.767448, 1.084315, -0.075906, -0.540620, -0.537823, 1.593324, 0.490269, 1.151786, -0.533839, 0.580015, -0.692773, 0.833477, 0.471162, -0.737824, -1.608178, 1.034056, -0.514485, -0.695534, -1.129559, 2.289706, 0.356947, -0.539843, 0.730864, -0.625221, 0.055393, -0.951180, 0.869108, 2.716173, -0.085236, -1.431136, 0.575196, 0.034871, -0.309255, -0.818256, 0.157864, 0.684726, 0.055435, 0.395131, -0.371312, 0.982282, 2.150376, -0.178971, -1.382915, -0.508982, 0.470960, 1.370558, 2.659153, -1.214218, 0.114449, -0.402863, 0.260132, -0.572302, 0.221952, 0.836981, -1.724980, 1.288078, -0.185098, -1.355861, 1.619084, 1.509799, 2.063221, -0.130688, -2.251188, -2.090113, -1.390004, -0.133834, 0.154282, -0.895175, 1.081765, -1.183564, 1.474015, -1.761061, 1.587969, 0.365549, 0.584966, 0.134219, 0.368632, 0.792163, -1.033457, -0.450743, -1.798299, 1.901788, 1.246052, 1.328756, -0.068326, -1.302918, -0.153546, 0.514339, 0.305672, -0.483576, -0.407502, -0.519386, -0.267904, 0.195310, -0.185515, 0.866269, -0.098234, -0.994464, 1.078858, -0.641451, 1.178820, -0.001568, -1.193502, 1.415377, -0.240063, -0.493790, -1.246133, -0.249450, -0.195963, -0.036979, -0.789731, -3.087571, 1.983571, 0.402336, -0.667327, -0.078972, 0.462409, 0.998281, 1.197227, 0.538010, -0.726448, -0.134830, 1.020894, 1.231268, -2.635929, -0.613555, 0.127693, 0.302578, 1.731020, -1.715139, -0.130483, 0.030843, 0.365248, -0.554934, 0.663166, 0.559675, 0.125114, -0.447443, 0.812026, 0.029807, 0.147547, -1.288833, -0.073839, -1.323809, 0.231902, 0.049239, 0.353407, 0.275080, 0.856087, -0.012627, -0.340888, -0.375095, -0.507527, -3.005246, 0.386116, 0.804089, -0.362912, -1.243788, -1.098779, 1.396344, -1.992447, 0.342131, -0.237291, 0.759136, 1.663015, 1.936556, -0.108096, -0.565458, -0.840033, -1.868953, -0.923677, -1.360096, 0.899575, 0.828752, -1.280237, -0.246941, -0.879568, -0.524936, 0.574475, 0.056647, -0.656588, -0.846348, 1.297738, -0.159086, -0.922158, -1.417051, 0.774624, -1.132103, -1.003555, 0.174483, 0.152541, 0.141909, -0.796339, 0.181261, 1.912393, 0.289870, 0.622188, -0.137299, 1.990555, -3.357899, -0.401449, -0.507281, -0.629694, -1.503431, -0.767024, -0.845583, -0.196736, 0.511571, -0.129206, -0.093948, -1.183299, 0.631649, -1.791430, 0.941840, 0.340284, -1.407593, -1.805891, 0.394421, 1.364787, 1.289190, 0.667517, -0.654983, -1.228638, 0.612461, -0.085692, -1.183587, 0.137986, 0.071179, -1.509668, -0.048832, -0.961314, 0.677184, -2.198377, 0.866412, 1.946396, -1.812240, -1.371658, 1.065631, 0.708248, 1.026466, -2.185796, 0.155759, 0.627243, -0.694300, -2.157135, -1.106958, -1.073769, 1.027928, 0.295696, -0.321099, -0.783209, -0.108778, 0.755394, 0.334285, 0.824537, 0.099246, -0.249522, 1.750268, 0.895380, -1.489290, -0.542535, -0.310710, -0.684408, 0.633089, 0.169119, 1.547565, -0.783359, -1.075074, 0.378470, 0.178139, 0.499142, 0.748060, -2.630377, -0.357123, -0.969912, -0.742085, 1.178812, -0.425549, 0.559456, 0.839398, -1.293111, 1.252398, -0.300757, -1.532060, -2.080168, -0.403346, 0.767518, -0.079658, -0.544107, -0.141154, -0.715125, 0.779383, -2.785085, -0.006201, 0.353557, 1.014186, -0.688996, 0.256286, 2.377080, 0.381699, -0.484811, 0.780898, -1.069872, -1.896658, -1.557389, 1.454643, 0.593980, -0.092602, -0.402235, -0.072375, -1.890350, -0.323946, 0.083504, 0.691071, -0.317551, -0.213195, -0.525421, 0.643218, -1.868246, -0.898146, -2.043587, -0.900370, -1.643555, 0.367005, -1.655811, 0.144727, 0.248493, 1.928740, 0.083588, -0.914077, 1.217681, 1.317644, 1.184488, 0.448175, -0.927184, -1.133090, -1.724598, -1.660006, -0.119470, 1.497947, 0.098622, 2.224697, -0.699031, 0.549962, 0.382962, 1.183204, -1.327720, -0.683649, -1.788433, -1.117517, -2.150321, 0.391026, 0.115026, -0.199847, -1.122606, 1.353484, 1.591893, 0.652944, -1.090579, -1.141491, -0.087466, -0.532302, 0.555955, -0.625897, 0.032483, -1.210230, -0.310558, -0.342910, 0.957504, 1.378972, -1.388557, -0.766600, 0.806288, -1.358127, -1.109585, -0.235514, 0.404152, -2.282993, -0.457933, -1.603416, -0.151905, -0.792843, -0.619267, 0.258786, -0.416315, 0.414033, -1.582190, 0.104414, 0.067284, 0.249154, 0.431743, 0.238847, 0.152662, 0.101024, -0.387129, -0.351210, -0.364984, 0.186458, -1.347073, -0.126981, -0.773176, -0.750469, -0.641040, 1.230933, -0.492362, 1.242481, 1.609718, 0.752667, -0.445522, -0.146777, -0.580538, -0.520101, 0.911250, 0.749584, 1.069617, 0.855657, 0.680945, 0.136725, 1.872044, 0.499782, 0.196481, -0.740416, -0.099934, 1.441439, 0.679013, -0.026579, -1.291594, 0.821814, -1.444613, 0.378002, -1.237264, 0.776617, 1.650559, -0.599831, -1.486651, 2.208962, 1.612762, -0.152083, 0.312454, -0.780365, 0.836352, -1.357335, 0.409555, 2.148610, 0.040995, -0.582008, -1.488098, 0.778950, -0.948026, -0.105779, -1.603354, -0.826412, -1.263508, 0.841681, 0.393536, -0.618987, -0.454573, -0.399477, 0.807182, 1.042100, 0.925306, -1.923373, -0.371112, -1.690097, 1.258905, -0.082998, 0.155621, -1.417452, -0.466420, -0.805716, -2.299913, 0.740507, 0.736747, -2.102597, 1.208312, -0.321116, 0.534798, -2.127077, 2.863468, -2.101935, 0.832168, 0.907185, -0.740861, 0.038978, -1.782803, -0.104133, 0.770151, -1.148970, 0.413161, 1.204063, 1.696370, -1.619192, 0.020373, -1.559261, 0.960475, 0.979535, 0.923266, -0.488058, 0.492934, -0.144024, -2.327816, 2.022524, -1.440611, 0.108279, -0.279674, -0.155505, 0.798701, -0.056014, -0.294278, 2.206000, -0.910635, 0.881155, 0.826537, 0.970949, -1.631114, 0.641060, -0.148350, -0.736448, -0.822219, 0.856293, -0.565143, 0.979652, -1.765983, -0.146638, -0.146924, -0.302271, -0.821319, 2.458336, -0.039127, -1.302429, 0.493974, -0.010817, 0.623926, 0.242641, 0.225246, -1.307361, -1.207909, -1.515617, -1.819017, 0.561071, -0.432049, -0.707660, -1.568873, 0.960589, -1.736133, 1.109109, -0.810065, 0.570154, 0.223099, -0.219678, -1.387539, 1.563754, 0.398388, -0.515691, -0.059579, 0.066663, 0.137895, -0.007136, -2.363673, 1.292044, -0.883938, 0.402916, -2.101223, -1.293249, -0.782252, 1.741922, -1.180961, 2.643937, 0.873179, -0.421559, -0.387711, 0.483488, 0.272855, 0.068270, -1.285595, 0.768579, 0.746763, -1.880166, -0.163995, -1.103554, 1.644326, -0.242998, -0.694097, -0.202326, 0.235676, 1.389961, -0.878601, 1.214517, 0.978233, -0.614626, -0.339939, 1.991670, 1.570582, 1.164850, 1.254028, 0.526178, -1.201949, 1.256997, 0.880162, -1.835717, -1.358657, -0.299310, -1.200479, -0.439876, -2.879921, 0.297092, -0.243779, -1.615714, 1.207358, 1.480990, -0.000176, -1.966240, 1.241313, -0.787065, -0.065835, -1.082595, 0.659999, -0.078458, 0.002960, -0.248386, 0.013503, 1.688254, 0.019804, 1.988132, -0.551538, -0.872949, 1.397220, -0.527877, 0.345855, 0.582937, 0.602458, 0.591416, 0.222826, -1.196631, -0.199450, -0.864577, -1.875637, -2.089008, 0.269194, 0.013410, 0.962869, -0.635835, -1.854655, -0.558910, -0.174547, 0.443956, -0.179187, 1.506913, 0.787906, -0.770978, -0.914367, 1.843023, -0.525664, -1.163644, 1.815685, -2.045644, -1.971285, -0.454759, -0.299318, -1.546627, 1.569486, -0.039063, -0.867976, -0.772743, 1.137805, 0.222620, 2.698856, 0.739607, -0.894983, -0.498391, -0.122941, -1.214579, -0.559240, 1.606550, -1.555603, 0.801038, -0.316427, 0.098728, 0.435727, -0.445676, -2.151925, 0.620124, 0.563274, 0.815215, -1.924090, -0.763942, 1.351880, -1.037696, -0.282910, -0.577423, -1.064838, 0.549606, -0.306820, -1.807750, -1.129748, -0.200598, 0.285173, -0.080972, -0.108569, 1.011825, 0.646562, 2.587377, -1.127719, 0.058741, 1.715399, 1.186736, 1.056106, -0.891992, 0.375106, 0.115689, 0.115049, -1.516074, 0.985668, 0.646881, 1.381310, 0.162735, 0.630620, 1.759756, -0.325400, -0.064484, -0.764386, 0.702778, 0.093406, 0.274499, 0.053771, 1.256388, -0.316700, 1.677390, 1.295013, 0.328956, 2.695897, 0.294012, 0.364170, 0.399002, -0.669916, -0.243286, 0.286304, -0.025567, -0.090067, 1.593134, 0.975813, 0.057530, -0.052480, -1.010988, 0.595204, -0.273142, 1.968936, -1.003460, -0.513743, -0.414154, 0.858540, -0.075493, 0.347344, -0.087578, -1.459482, 2.598408, 0.085175, 0.432063, -1.984317, -0.444593, -0.280373, -0.953162, -1.247448, 1.382244, -1.501154, -0.220791, 0.162217, -1.380368, -0.718552, -1.488998, 0.012630, -0.242820, 0.362484, -0.719212, -0.156390, 0.897794, 1.215247, 1.850641, -1.240722, 0.711088, -2.155905, 0.385672, 0.379773, -0.367983, -0.097212, -0.761376, -1.051372, 0.558224, 1.009418, -0.702509, 0.098717, -0.579659, -1.529299, -0.188772, -1.366829, 0.292776, -1.840204, 0.393781, 0.352524, 0.136623, 2.875350, -0.426938, 1.296896, 0.181012, -0.932693, 0.200156, -1.500470, -0.432169, -1.323778, 0.465284, -1.925291, 0.897134, 0.559693, 0.755321, 0.393539, -0.016400, 1.436149, 0.278063, 0.008358, 1.401231, -0.195222, 1.165173, 0.556411, 0.779170, 2.534855, 0.332789, 0.010363, -1.193108, 1.976624, -0.482135, 1.364415, 0.129918, 0.455798, 0.536617, 0.049097, 0.537206, -1.822129, 1.559727, 0.088116, -0.082443, -0.115912, -1.918898, 0.032354, 0.890131, -1.130087, 1.402009, 1.022251, -0.274734, -0.718177, 1.091370, 0.682092, 0.547391, 0.583889, -0.271413, -0.941980, -0.584171, -0.145908, -0.683017, 0.503695, 1.862961, 1.295420, -0.243690}, + { -0.983093, -1.504997, 1.689008, 0.852439, -0.052642, -0.226863, -1.682563, -0.516711, 0.024053, -0.423958, -0.498372, -1.387182, -0.092373, 1.346202, 1.228157, 0.176953, -0.292668, -0.007560, -0.729933, -0.213849, -1.360185, 0.957214, -0.775561, 1.299782, 1.010312, -1.364358, -0.332187, -0.874038, 0.158062, -1.655720, -0.126275, 0.280659, -0.245147, -0.799640, -0.174699, 1.544888, 1.106545, 1.490095, 0.981029, 1.147516, 2.028793, 0.696511, 0.499816, 0.572414, -1.410997, -0.439824, 0.976240, 0.658783, 2.363468, -1.360340, 0.948610, -1.433050, 0.988979, 0.630545, 0.467132, -1.881342, -0.534098, 2.063160, -0.531704, 0.232042, 3.310064, 0.418609, -2.377943, -1.255732, 0.948970, -0.916728, -0.074799, -1.274711, -0.503304, 0.820722, 1.316162, -1.173834, -0.139600, 1.431872, -0.484918, -0.824979, -0.243726, -0.236428, -0.636261, -1.040133, -0.168640, 0.609432, -0.070710, 0.679471, 1.503464, 0.395742, -0.955843, -0.149187, 1.876458, 0.985744, 1.576430, 2.534913, -0.224989, -0.679745, -0.534951, -0.557737, -0.255265, 0.782315, 1.196253, -1.377471, -0.677377, -0.477690, 1.541497, -0.907797, 0.835093, 0.747920, -0.988510, 0.764753, 1.362396, -1.786639, -0.077948, 1.828968, 0.832373, -1.464336, 0.013585, -0.532699, -0.500248, -0.578362, 0.246069, -0.515451, -0.315294, -0.339299, 0.067102, 1.289035, -0.096157, 0.763676, 0.005457, 0.290770, 0.199062, 0.676720, -0.801922, 1.250363, -0.493756, 0.454381, 0.278526, -0.520518, 1.099335, 0.902181, 1.691731, 0.560990, 0.669109, 0.571884, -0.629478, 1.189162, 1.121540, -1.351753, -0.502888, -0.379593, -1.125303, 1.628456, 1.911116, 0.329890, 0.160070, 0.607196, 0.313948, 0.672554, 0.034538, 0.986999, -0.073991, 1.216120, 0.872065, -0.736450, -0.241443, 1.776237, 0.837211, -0.032411, 0.235870, 0.303322, -0.696334, 0.058139, 0.423596, -0.801994, 0.475972, 0.078186, 1.687307, -0.655364, 1.148551, 1.584120, -0.183812, -0.240825, -0.462214, -0.538617, 1.165882, 0.495350, 0.779812, 0.857892, -1.163262, 0.305657, 0.378542, 2.370941, -1.621917, -0.346555, 0.339012, -0.411098, 0.204058, -0.523320, 0.160462, -1.358479, -2.612737, 0.470040, 0.407125, -0.257620, -0.793160, 0.488260, -0.299263, 0.143361, -0.428621, 0.310583, -0.836926, 2.055982, 1.483207, 2.152946, -0.934875, -0.123062, 0.341006, 0.471994, 0.205615, 0.362838, -0.171997, -1.464489, -0.726495, -0.405898, -1.146009, -0.718839, -0.897182, -0.742179, 1.481672, -1.073078, 1.530334, -0.337469, -0.158506, 1.132872, -0.560097, -0.850852, -0.145600, -0.769049, -0.906160, -1.239531, -0.214732, -0.732012, -1.048772, -0.407347, -1.235464, 0.200166, -0.163694, 0.012422, 0.896306, -1.642009, 1.233085, 0.173640, -0.287841, 1.098236, 1.133623, 0.568552, 0.289465, -0.001010, -2.022003, 1.477060, 1.272226, -0.132027, -0.007357, 0.123635, 0.501659, -1.566556, 0.159990, -1.693243, -0.052437, 1.549306, 1.020311, -2.348895, -0.457603, 0.193673, -1.505093, -1.641658, -0.687426, -1.349499, 1.551315, -0.716301, -0.046077, 1.567537, 0.739217, 2.318301, 1.074069, 1.035734, 0.749698, -0.284268, -1.311249, 0.861526, 0.060632, -0.482237, 0.492532, 0.511687, -0.586689, -0.198771, -1.384069, 0.397496, 0.153320, 0.454582, -1.036656, 0.292900, 0.831772, -1.091953, -0.387973, 1.277133, 0.624147, -1.059033, 1.292027, 0.320191, 0.943345, 1.068388, 0.560938, -0.913304, 0.182379, -0.024233, 0.736094, -0.617006, 0.666794, 0.436818, 0.803632, 2.981577, -1.355008, 0.534470, 0.305408, -1.299554, -1.547465, 0.146489, -0.393488, 1.081729, -0.518468, -0.818730, -0.908197, -0.494636, -0.302000, 0.061754, 0.186158, -1.455457, 0.946737, -1.479299, 1.322972, -0.385502, -0.304968, 0.186621, 0.496442, -0.265172, 0.491450, 0.650637, 1.684260, -1.086021, 0.252811, 0.604967, 1.302163, -0.354736, 0.396292, 1.420452, -0.921994, -1.250968, 0.828756, -1.766244, 0.085464, -0.208325, -0.657831, -0.022167, -0.145307, -0.155301, 0.824731, 0.138868, 0.134612, 1.319698, 0.709335, 0.213933, 0.288568, -0.265968, 0.792930, -0.475098, 0.960359, 1.208800, -0.291204, -0.826583, 0.299401, 1.075716, -0.535193, 0.306460, -0.860736, 0.015584, 0.553479, 0.593341, -2.125592, 0.883739, -0.285156, -0.195326, -1.736190, 0.267954, -1.065774, 0.006786, -2.461653, 1.879348, 0.824964, 1.494759, -0.133417, -0.335138, 0.374419, -0.672829, 0.316753, 1.775973, 0.712692, 1.293218, 1.237103, 0.615225, -1.324533, -0.752883, -0.077552, -0.566718, -0.480087, 1.376820, -0.653140, 0.094362, -1.558402, -1.366178, -0.638414, -0.236803, -1.504195, -0.546153, 0.301623, -0.779780, -1.079982, -0.062045, 0.211238, 0.249402, -0.194938, 0.236983, 0.895108, -1.142978, 1.403774, 0.653420, 1.900139, -0.522343, -1.101550, 0.385982, 0.632220, 0.815852, -1.039617, -1.144698, 1.494159, 0.047438, -0.856614, 0.858644, -1.619166, 1.664841, -0.541867, -0.195818, -0.586936, -1.779821, -0.309493, -1.766883, 0.420277, 0.487111, -0.206142, 1.039423, -0.075640, 1.325150, 0.060567, 0.258374, -1.071947, 0.665599, -1.951727, -0.867996, 0.128119, 0.574382, -0.144236, 0.032367, -0.221344, -0.495558, 0.391783, 1.337666, -0.469266, -1.365408, -0.245316, -2.075251, -0.736334, -0.876616, -0.899896, 1.075697, 0.345828, -1.298294, 0.296911, 0.309971, -0.616054, 1.004305, 0.889155, 1.877165, -0.248961, -0.081407, -2.515295, -1.471037, 0.024976, -0.945345, -0.172507, -1.401992, 1.010550, 0.302097, -0.615135, -0.424872, -0.911773, -0.363181, -1.505333, 0.019523, -0.309098, -1.411120, 0.127548, 1.057503, -1.249271, 1.256315, -0.071966, 0.735987, 2.067302, -0.773847, -1.151815, 1.615380, 1.054523, -1.326194, 0.646549, 1.749714, 2.170125, -0.593849, 0.974450, -2.046801, 0.389724, 1.074528, -0.619298, 0.085289, 2.492791, 0.475732, -0.627852, 0.519505, -0.032521, 2.125778, 0.416374, 2.674471, -2.293838, 1.172877, -0.328581, 1.510363, -1.037604, -0.756300, 0.656897, 0.285500, -0.644763, -1.202865, 0.423421, 1.596442, 2.694238, -0.383828, 1.469193, -0.711495, -0.757148, 1.399669, -2.110266, 0.521666, 0.449675, -0.713232, -0.376217, 1.499582, 1.552162, -0.707626, 0.298731, 1.503443, -0.351074, 0.202232, 0.979986, 0.111556, -0.934082, 0.347155, 0.068998, -1.204463, -0.347912, -0.144191, -0.512881, -0.323562, -1.041395, -0.562475, 2.433507, -0.056507, -1.302880, 0.633123, -0.943182, 0.347517, -0.563035, 1.008836, 0.950698, -0.553791, -0.333602, 0.271553, -0.880350, 1.332422, -1.453054, -1.457649, -0.251031, 0.150016, 0.002669, 0.929400, -0.383546, 0.049417, -1.106139, -0.143804, 1.401947, -2.304345, -0.569742, 1.034040, 0.486361, 0.548376, -0.468534, -0.100914, -0.443258, 0.850349, -1.027423, -0.194848, -0.445651, -0.142158, 2.481790, -1.459025, -1.410040, -0.987970, 0.965835, 1.526407, -0.049202, -0.356169, 0.849466, -0.077761, -0.924655, -0.155822, -0.711325, 0.249337, 1.228686, 0.677912, 0.467147, -0.412307, -0.501915, -1.272501, 0.139491, 1.039930, -0.097017, 0.065405, 1.153829, -0.793604, 0.370951, -1.792227, -0.412233, 1.158704, 0.907463, -0.817395, 1.615974, -0.247998, 2.978949, -1.638730, 1.371517, 0.951102, 1.409070, -0.953572, -0.783109, 1.258106, 1.698119, 0.032653, -0.955098, -0.172371, -1.603111, -1.456500, 1.565100, -1.083722, -0.158947, -0.347817, 1.385675, -0.077649, -0.562186, -0.456349, -1.631077, -1.438635, -2.848500, -0.779416, -0.392371, -0.770420, -1.289794, -0.695409, 0.038390, -2.190771, 0.086364, 1.318144, 0.025847, -0.261700, -2.079323, 0.520632, 0.197945, -2.525093, -0.608511, -0.826324, 1.197794, -0.720419, -0.676173, 0.412328, 0.952681, -0.291693, 1.401882, -2.279688, -0.100533, -0.605367, -0.231242, -0.542557, 0.981023, -1.143355, 0.120666, -1.959137, -0.459734, 0.895160, 2.435299, -0.673000, 1.075197, 1.499873, -0.637327, 0.451355, -1.637109, -1.574825, 0.747980, 0.114430, 0.022948, 1.529489, 1.682670, 1.416034, 0.033656, 0.622647, -1.030015, 0.289424, -0.049848, -0.733713, 1.445727, -0.850379, 0.672578, -0.498027, -1.800037, -0.414100, 0.809735, 1.752628, 0.660851, 0.704462, 1.064979, 0.026647, 0.152233, 0.299722, 0.453152, 1.605588, -0.222618, 0.833014, -0.181633, 1.274122, 1.063165, -0.487172, 0.141203, -0.655070, 0.672728, 1.118144, 0.963424, -0.478329, -0.276137, 1.363698, 0.953021, -1.878811, -0.920295, -0.636180, -0.518924, -0.450983, -0.790380, 0.503084, 0.091438, -0.068717, -0.680360, -1.190046, -0.518806, 1.868175, 0.593848, -1.148903, -0.504153, 0.358133, 0.407456, 0.093787, -1.988303, -0.254786, 1.074193, 1.212962, -1.161578, 1.146935, 0.335429, -0.035437, 0.310761, -0.323630, -0.753763, -0.943875, 1.315168, 1.157548, 0.033252, -0.113919, -1.384706, 1.118101, 2.138404, 0.536062, -0.057074, -0.070453, 0.580854, -1.109369, -0.311874, 0.119988, -0.879639, -1.448909, -1.119467, 1.080115, 1.340303, -1.221041, -1.630454, -1.124092, -0.549454, 0.182329, -1.032038, 0.064650, -0.631550, -1.149689, 2.590124, -0.382573, 0.411398, 1.595692, -0.581483, -1.920548, 1.036230, -1.294128, -1.550439, -1.825664, -1.136718, -1.004473, -0.408208, -0.515493, -0.141035, -1.243196, -0.389756, -0.153286, 0.590664, -0.259714, 0.588485, -1.338604, -1.672666, 0.646251, 1.897516, -0.848231, 0.442896, 1.390109, 0.455500, 0.147027, -0.733007, -1.039997, -1.109757, -0.520237, -1.656324, 0.862061, 0.897123, -0.215765, 0.579153, -1.774879, 1.339885, 0.656980, -0.683979, -0.776324, 0.075425, -0.624938, 1.188162, 0.029376, 1.999927, -0.694213, 1.641559, -0.139565, 0.977361, -0.440677, 0.716551, -0.713138, 0.542474, 2.190345, -1.427835, 1.279513, 0.123449, 1.333007, 0.170215, -1.459986, -1.115168, 0.024330, -0.499763, 0.743400, -1.116687, 0.169877, 0.253489, 0.001254, 0.496192, 0.419524, -0.336320, -0.738473, 1.057630, 0.455031, -1.144652, -0.211007, 0.066468, 0.309799, 0.282313, 0.602273, -1.140669, 0.724713, -1.215900, 1.597776, 0.437830, 0.950187, 1.470075, 1.236441, 1.003427, 0.299022, -2.007146, -0.593624, 0.169609, 0.609102, 0.420829, -0.390335, 0.853639, -0.690414, -1.440160, -0.431041, 0.153770, 0.449729, -0.191969, -0.303385, 0.832239, 0.748193, -0.103568, -1.759449, 1.482179, -1.963307, -1.975549, 0.664533, -0.232829, -0.640030, -1.462368, -0.683268, -0.736704, -0.529999, 0.387158, 0.432750, 0.649493, -0.088709, -0.803069, -0.899639, 1.428242, -0.454638, -1.029092, 0.037624, -0.708494, -0.351422, 1.421274, -0.372453, -0.157853, 1.814718, 0.585491, 0.919518, 0.334817, -2.671010, -0.771587, -0.395982, 0.082838, 0.859022, -0.356058, -0.540233, 0.654218, 0.098357, 0.078977, -0.169725, -2.216716, 2.321392, -1.263653, -1.639489, -0.161886, 1.797469, 0.796801, -1.759298, 0.046668, 1.317824, 0.318675, 0.457329, 0.124017, 0.526361, -0.342122, 0.957925, 0.297107, -1.101054, -0.096374, -0.766925, 0.993858, -1.519713, 1.198808, 0.136192, 0.350640, 0.771633, -2.391844, 1.691390, -0.432016, -0.583463, 1.281393, 0.001705, 1.768327, -0.389773, -1.929848, 0.181209, -0.236180, -0.727279, 0.396655, 0.735341, 0.516617, 0.739636, 0.439700, 1.041834, -0.932685, 0.797094, -0.594365, -2.089081, 1.232674, 0.952684, 0.421472, 0.320388, -0.905656, 0.064582, -0.472792, -0.520134, -0.113316, -0.448894, 2.523464, -1.101831, 0.271383, 0.090401, 0.201738, 0.211246, 1.631039, -0.427858, -0.089690, -0.744756, -2.058145, 0.155760, -1.241777, 1.393911, 0.660004, 0.680098, -0.026877, 0.648867, 1.162161, -0.293747, -0.753800, 0.218407, 1.240208, 1.058819, -0.687679, 0.775595, 1.421356, 0.111639, 0.300615, 0.590659, 0.142563, 0.527875, -0.047042, -0.063115, -1.396309, 0.698869, 0.969490, 0.648679, 0.683787, -0.238478, -0.255841, 0.804804, -0.421125, 0.715479, -0.893196, 1.526561, 0.466601, -2.522992, 1.958711, -0.631540, -1.062824, 0.894885, -0.117180, -1.646037, -0.396795, 1.682567, 0.873272, -0.300163, -0.488435, -0.600554, -1.618806, -1.552022, 1.563859, 0.176570, -1.075827, -1.608512, -0.421313, 1.102388, 0.766085, 0.374220, 1.082020, 1.032764, 0.247305, -1.712391, -0.387175, 0.296980, 0.673349, 0.652994, -2.267193, -1.027173, -1.491370, -1.300861, 0.641465, -1.447194, 0.921470, 1.494575, -1.738147, 1.029322, -0.238429, 3.944252, -1.858202, 0.965250, 0.111650, 0.492753, -1.078780, -1.064432, 0.202608, 0.103263, 1.468485, -0.783521, 0.998328, -0.294328, 1.243496, -1.174095, -0.241644, -0.477749, -1.094207, 0.111191, 1.652724, 0.270623, -0.389710, -1.990528, -0.371761, -1.342540, 0.025078, -1.171046, -0.209873, 0.574598, -0.400453, -1.333045, 0.297309, 0.536143, 0.175845, -0.125545, 0.532479, -0.226725, 1.124272, -0.122223, 0.376941, 1.594683, -0.096963, -0.620522, 0.503085, 0.714843, 0.136970, 1.543441, 0.286328, 1.754051, -0.031995, -0.239854, -0.439124, -0.375587, -0.573422, -2.523869, 0.370188, 0.355069, 0.312702, 1.373385, -0.705369, -0.186068, 0.635314, 1.257145, -2.306593, 0.532931, -0.520057, -2.123441, 0.770760, 0.131061, -0.580467, 1.107031, -0.136774, -0.814422, -1.011282, 1.364228, -0.564059, 0.196449, 1.071259, 0.286440, -0.998934, -0.659317, 0.170427, -0.124163, -1.919715, 0.694349, -1.344015, -1.627307, 0.264728, -1.180809, -1.600698, 0.910272, 0.668416, 0.591804, -1.444495, -0.100292, 0.170246, -0.620557, 0.254871, -0.595982, 1.607220, 0.496604, 0.456864, -1.013848, 0.570288, 1.238282, 0.059926, -0.804134, -0.229830, 1.313047, -0.036581, -0.645909, 0.849226, -0.841254, 0.637696, -0.006790, -1.117225, -1.223496, 0.532122, 1.437943, 0.313193, 0.777079, 0.523695, 0.143542, 0.462147, -0.428846, -0.859621, -0.416319, 1.290499, -1.228700, -0.528598, -0.513428, -0.329979, 0.845264, -1.828704, 1.289198, -1.389530, -0.525195, -0.627715, -0.694439, 0.683373, 0.331896, -1.636399, 0.062987, -0.357486, -0.330755, 0.155987, 1.124698, -0.097505, -0.008566, 0.834628, -1.509664, 3.011877, 1.167927, -0.032858, -0.346876, -0.511607, -0.643727, 1.146502, 1.060457, 2.279578, -0.685013, -1.105823, 0.226285, -1.405451, 0.589699, -0.198798, 0.769598, 1.560236, -1.135482, -0.946744, 1.080024, -0.942545, -0.125823, -0.140093, 1.518602, 1.550683, 0.670537, -0.979237, -0.135571, 0.691111, -2.179273, 1.522715, -0.902083, 0.169711, 0.748197, -0.401738, 0.711879, 0.146837, 0.166967, -1.012216, -0.386270, -1.474840, -1.029694, 0.238140, 0.572346, -1.084528, 1.181987, 0.338870, -0.415882, 0.978265, 3.052023, -0.460653, 0.447942, -0.825437, 0.579341, 0.210204, 1.498957, 1.393516, 1.065901, -0.341066, 1.313511, 1.469314, 1.839837, 0.763915, 0.101351, 0.159119, -0.804719, -0.671127, -0.846009, 0.103537, -1.127330, 0.340967, -0.331173, -1.106795, -1.611075, 0.873617, -2.482416, -2.017159, -0.090958, 0.199061, -0.851253, -0.468982, -0.846197, -0.010857, 1.247604, -0.112930, -1.173738, 1.097007, -1.362036, 0.461624, -0.887446, 0.266209, 0.786044, -0.505527, 1.521219, 0.027529, -0.161232, 0.035609, -0.137226, -0.576014, 0.375179, -0.089743, 1.770654, -0.246111, 0.631284, 0.368234, -0.079831, 0.706911, 0.263395, -0.176806, 0.126358, -0.353634, -0.495124, 0.204023, -0.727704, 0.245956, -0.706063, -0.813591, -0.224182, 0.136407, -1.388950, 0.098091, 0.504615, 0.658595, 0.720413, -0.379698, 1.908575, 0.947730, -0.217494, -1.050232, -1.191591, 0.017484, -1.248917, -0.159007, -0.752488, -0.763944, -0.750282, -0.385585, 0.269485, -0.026662, -0.720137, -1.077977, 0.157672, 0.760777, -1.601510, 0.013697, -0.032575, 0.931438, 1.239286, 1.396600, -0.052502, -0.114691, -0.134030, -0.842362, 0.391681, 0.892765, 1.568239, -0.126351, 0.758177, 0.724422, -1.336194, 0.535676, 1.556854, -0.154454, -0.313646, -0.454839, -1.012902, -1.139182, 0.735333, -0.050211, 0.948452, 0.438588, 1.340435, 1.069766, 0.642956, 0.242907, -1.151919, -1.251647, 1.331088, -0.579428, 0.334021, 0.122267, 0.068165, -0.964619, 0.428452, -0.050823, -0.002404, 0.041571, 0.405068, -1.233422, 1.260676, 0.094039, 0.307017, 0.151906, -0.027208, -1.007060, 2.334523, -1.264616, 0.356730, -0.535358, -0.762092, -0.275978, -1.702179, 0.030233, 1.046483, -0.584955, -0.836679, -0.006426, -0.390403, -0.083576, -0.981609, 1.930915, 0.510260, 1.647643, -1.071337, 1.382740, -0.228110, -0.277829, -1.409842, -1.575530, 0.718559, 1.423620, 0.656442, 0.095158, -1.461268, 1.772774, -0.063188, 0.879273, 0.828065, 0.046859, 0.459797, -0.582491, 1.411395, 0.530982, 0.582250, -1.730930, 0.627733, 0.785046, -0.999845, -0.547387, -0.419686, -1.621249, 1.620737, 0.715163, 0.709301, -0.497149, 0.873044, 0.005235, 0.064333, -0.231492, -1.151721, 1.434699, -2.263251, -1.223966, -1.371840, -0.583872, -0.066960, 0.095307, -1.494739, 1.547723, -0.592914, -0.549290, -0.768478, 2.203256, 1.172009, 0.520945, -0.737783, 0.032632, 0.560585, -0.157471, 0.441311, 0.637888, -0.347510, -0.854300, 0.468636, 0.326277, 0.037493, -0.627628, 0.368331, 1.217785, 0.471044, 0.586213, 0.417014, 0.610770, -0.523289, -2.253046, -0.082169, 1.246606, 0.652022, 0.032568, -1.690161, 0.784274, 0.187848, -0.016704, 0.180777, -0.536112, -0.624964, 0.317434, -0.777492, -0.066978, -2.195325, -0.291884, -0.880146, -0.083134, -2.587639, 0.272380, -0.323443, -0.701542, 0.685047, 0.192190, -0.965801, -0.560545, -1.679947, -0.557893, -1.030836, 0.267407, -0.262967, -1.179673, -0.298339, 1.599047, -0.244753, 0.107751, 2.064767, -0.296402, -0.471424, -0.153215, -1.991362, 0.624160, 0.582543, -1.285040, 2.206616, -1.725150, 0.770780, -0.816521, -0.886885, 0.723865, -0.874660, -1.764038, -1.496891, 1.192002, -1.447032, 0.932691, -0.995677, 1.105767, -0.102498, -0.568651, 0.594325, 0.732207, 0.739735, -0.219874, 1.695695, -1.483837, -0.909240, 1.747754, 1.800451, 0.354175, 0.670781, -0.432108, -0.276626, 0.012963, 1.732390, 0.132192, -0.885501, 1.517562, -1.904314, 0.051587, -0.669467, -0.285791, 0.342109, -0.139177, 1.684336, 1.228523, 0.016126, 0.229721, -0.982781, 1.346502, -1.035287, 0.241883, 0.186249, -0.725379, -0.162901, 0.087371, -1.917082, 0.710105, 2.211643, -0.582104, -0.618074, 0.204563, 1.226239, 0.563332, -0.908039, 0.564280, 1.755763, 0.644147, 0.314296, 0.408741, -0.394023, 0.186321, 0.731211, 1.043871, -1.683537, 0.232675, 2.661016, -0.007126, 0.071304, 1.941659, 0.778512, -0.121223, -1.590724, 0.771539, 0.688840, 2.668835, 0.099935, -0.789626, 0.110579, -1.199935, -0.704327, -1.075098, 0.743019, 0.067843, -1.819114, -0.965535, -1.885677, 0.512821, -1.058960, -0.139818, -1.075315, 1.209155, -0.224580, -2.634801, -0.152983, 0.103507, -1.012315, -0.601402, -0.502514, 0.921512, -0.307779, 0.390481, 0.222684, 0.538818, -0.724732, 0.512896, -0.341587, -1.628292, 0.311701, 1.300361, 0.003195, -0.716713, -0.905372, -0.218456, 1.245588, -1.620003, -1.169858, -0.848704, 1.669947, -1.617545, 1.274624, 0.032676, 0.085381, 0.095743, 1.019916, 1.243629, 0.890282, -0.896734, -0.936238, 0.446448, -0.294272, -0.839754, 1.447886, 0.522244, -0.301482, -1.253581, -0.281894, -0.566144, 0.725699, -1.826116, -1.757009, -1.132609, 0.683045, -0.400081, -1.174145, 0.632511, 1.124698, 0.218457, -0.832357, 0.696695, 0.116584, -0.471129, 1.437333, 1.646122, -0.301018, -1.540725, 0.608275, 1.267470, -0.880230, -1.784812, 1.072743, -0.432968, -0.403319, -0.094595, -1.290795, 0.079966, 1.536603, 1.105837, 1.804963, -0.555791, 1.120286, 0.180027, 0.325066, 0.815784, -0.253511, -2.012888, -1.089141, 0.341569, 0.350146, -0.054427, 1.785970, -0.109931, 0.892780, 0.228590, 0.595735, 0.905499, 0.493174, -0.945160, 0.415151, -0.046206, 0.358983, 0.170447, 0.591312, -0.696462, 0.025580, -0.714038, 0.074132, -1.808567, -0.311356, -0.951089, -0.716697, 0.906483, 0.503965, -2.401863, 0.078614, 2.144657, 1.752178, -1.248648, -1.558600, 0.101818, -1.114887, 0.947770, 0.109147, 0.201624, 0.137294, 0.627635, 0.474355, 0.024761, -0.199443, 1.163311, -0.752377, -0.133441, -1.042710, -1.591810, -0.911297, -0.802619, 0.336050, -0.341400, 0.585704, -1.797125, 0.913613, -0.286320, -0.529742, 1.485931, 0.290997, 0.419821, -0.663768, 0.680643, -0.057951, 0.066694, 0.095555, -0.878811, -0.796205, -0.201340, 0.092119, 0.044641, 0.544796, 1.484176, 0.740957, 0.451265, 1.266862, 0.739636, 0.086038, 0.766067, 0.522669, 0.264659, -0.120888, 0.216845, 1.741144, 1.826327, -0.479842, -0.888488, 0.422769, -1.184254, -0.789990, 0.419419, 0.935405, -0.379517, 0.840036, 0.533450, -0.031845, 0.537035, 0.073232, 0.199909, 0.138907, 1.424687, -0.047092, -0.833917, 0.038313, -0.789088, 1.286600, -0.748881, 0.543016, 0.846118, 0.634078, -0.450082, 0.273662, -0.127422, -0.159451, -0.631820, -0.438196, 1.538763, 0.425009, -0.045875, 0.467078, 0.351687, -1.209834, 0.236203, -1.877868, -2.454891, 1.362600, -1.057093, 1.204769, -0.254387, -0.716294, 1.846617, 0.918987, -1.564549, 1.344444, -1.662343, 0.728193, 0.486014, 0.932001, 0.096760, 0.341350, 0.528905, 0.091434, 0.614079, 0.089286, 0.441762, -0.890917, -0.162001, 0.934085, 0.276646, -0.396393, 0.193290, 1.736740, 0.022379, -1.862810, 0.379973, 1.280819, 0.542132, 0.520761, -1.270345, 0.795990, 0.458021, -0.071172, -0.145970, -0.017641, -1.136748, -1.082206, -0.745291, 0.048666, 0.943403, 0.263293, -0.115814, -0.419788, 1.952204, -0.925678, 0.683042, -0.167871, 0.003482, -0.213994, 0.411095, 0.315338, 0.275489, -1.889730, -0.698190, -1.541218, -0.471606, -2.830535, -0.564631, -0.181840, 0.735779, -0.663644, -1.367815, 0.267417, 0.228871, -1.236638, -0.575487, 1.681041, 0.596803, 0.180697, -1.794327, -0.605370, 0.573286, 1.022513, -0.558121, -0.063327, 1.731009, -0.849625, -1.096743, -2.294090, 0.090971, 0.188497, 0.520447, 1.124376, 0.352552, -2.517990, 1.561249, 0.229529, -0.631458, 1.316949, -1.552281, -0.481973, 0.419865, 0.561258, 0.193756, 0.891034, -0.525884, 1.029616, -1.546680, 1.916917, 0.240219, 1.109516, 1.019885, 0.049455, 1.995421, 0.379435, 1.694660, 0.959406, 0.817115, -1.023019, -0.235700, 0.825637, 0.028711, -0.343540, 1.032994, 0.619893, -0.110856, -0.385887, 1.068830, -0.927033, -0.297884, 0.410196, 2.540039, -1.499079, 0.279449, 0.399899, -0.494673, 0.213273, -0.088056, 0.740269, -0.911896, -0.030318, 2.038972, -0.778129, 0.975980, -0.304287, 1.270547, -1.203336, 1.452976, -2.167352, 1.264598, -1.598946, -1.566718, 0.183012, -1.101650, -0.519276, 1.846887, -1.403084, 0.681304, -0.300873, 2.311713, 0.957460, -0.218110, 0.837892, -0.265138, 0.691482, 0.548971, -0.607123, -0.935869, 0.173993, -1.251281, 1.820393, -0.903768, 2.422347, -1.753490, 0.464680, -0.487359, -1.103086, 0.219467, -0.577101, -0.568645, -0.743203, 0.539766, 1.691486, -1.534633, -0.182533, 0.456057, -1.124469, -1.243077, -0.399000, 0.000318, 0.792487, 0.596467, 1.306834, 0.652228, 1.489893, -0.194578, 0.606692, 0.134574, 0.763926, -0.624669, -0.202281, 1.960168, 1.204264, -0.069937, -0.925830, -1.378291, 0.932060, -0.303514, 0.935499, -1.914292, 0.385898, 0.166346, 0.581124, -0.245395, -0.143091, -0.199783, 0.923457, -1.394343, -0.560154, 1.361135, 1.745647, 1.139060, -0.689184, 0.978894, 0.463933, 2.011608, 0.064100, -0.289482, 0.946763, -1.234082, 0.156069, -2.149051, 0.140043, -1.220015, 0.360217, -0.737686, 1.120746, -1.259606, -0.532519, 1.284235, 0.233486, -1.149622, 0.804189, 1.523195, -1.778994, -1.222941, 0.233423, -0.305394, -1.422051, 0.438451, 0.384012, -0.044099, -1.716174, -0.344945, 0.692482, -0.928128, -0.052847, 0.122735, 1.691219, 0.112818, -1.107622, 1.452040, 1.280817, -1.999826, 0.833575, -1.229772, -0.231902, 0.610070, -1.173033, -1.112078, -1.217899, 0.103263, -1.860923, -0.713389, -2.234493, -0.318021, 0.605091, -0.046884, 0.351298, -3.238503, 0.599061, -1.590511, -0.382465, 1.499645, -0.368768, 0.059807, -0.810084, -0.082782, -1.323444, -0.157666, -0.079778, 0.408359, -0.829038, -0.751103, -0.962780, 2.193781, 0.269622, 0.149634, -0.156015, 0.125435, 0.643258, 3.274923, -0.348060, 0.002705, -0.647955, 0.020039, 1.109778, 0.258100, -0.907328, -1.103651, -0.484972, 1.024585, 0.741973, -0.226772, 1.020938, 0.499352, 0.235172, 0.738548, 0.787095, 0.625934, -1.327732, -2.086107, -0.832856, 0.079739, 0.268940, -1.238683, -0.634566, -0.477485, -0.367884, -1.242857, -0.312081, 0.681902, 0.882958, 1.254995, -0.167477, -1.217416, 0.754707, -2.367965, -0.626828, 0.225967, -0.727434, -0.592906, -0.117011, -0.691285, -0.524886, 1.873445, -0.182071, -0.728334, -0.201684, 1.053455, -2.344703, 0.946009, 0.672189, 1.083269, -1.311616, 0.706246, -1.444814, -1.758793, 0.109823, -0.419026, -0.736907, -0.639920, 0.536340, -0.622469, 1.568338, 0.099852, 0.969737, -0.263650, 1.022313, -0.130073, -0.326466, -1.499172, -0.242417, 1.174083, -0.970962, 1.283451, 0.206247, -1.647758, 1.773544, -0.041347, -1.246374, 0.753146, 0.189310, 0.879654, -1.303974, 0.850342, -0.097866, 2.855169, 0.690653, 3.597145, -0.645675, 2.275282, 2.264520, 0.256012, 0.066188, -1.094239, 0.336229, -0.635581, 1.835892, -0.651171, 0.325442, 0.769568, 1.284737, -1.369916, -0.163810, 0.458260, 0.867070, 2.114308, 0.129041, 0.815176, 2.130857, 0.547459, 0.552881, -0.384379, -0.111858, -2.414465, 1.347841, 1.459552, 1.395295, -0.740588, -3.384161, -0.086892, -0.674921, -1.607548, -0.696350, -0.893506, 1.198571, -0.550440, 0.816936, 1.016265, 0.842840, 0.570665, 0.418131, -0.621630, -1.677645, -0.045504, 0.634927, 0.232144, -1.731583, -0.509662, -0.422844, -0.171595, 0.762678, 0.748308, 1.197695, -0.186461, 0.367308, 0.853758, 0.680082, 0.614641, 1.889122, -0.371895, 0.390753, 0.106858, -0.964265, 0.538948, 0.684802, -1.049766, -0.742857, -0.621754, 0.558155, 2.393028, -1.520358, 0.846200, 0.044463, 0.229704, -0.445941, -0.487096, -1.317962, -0.007152, -1.669969, -0.009625, -0.965176, -1.363039, -0.334475, 0.328443, -1.676896, 1.676282, -1.089136, 0.587593, 0.483999, -0.007582, -0.056238, -0.110378, 1.203782, 0.612845, -0.350349, -1.334917, 1.244733, -0.817702, 1.244112, -0.951136, 0.215253, 1.241477, -0.546881, 1.018512, -1.255374, -0.097423, 2.260577, 0.124214, -0.248872, -1.441602, -1.050383, -1.293818, -0.362505, 0.804698, 1.775938, 0.499425, 0.777173, 0.737156, 1.096813, 1.070791, 0.507341, 0.106322, 0.608585, -1.446946, 0.477057, -0.121663, 0.795934, 0.947460, 1.375368, -0.849977, 0.715402, -2.200944, -0.489656, -0.884779, -1.025211, -0.788321, -0.023901, -0.789196, -0.042571, 1.239970, 2.379713, 0.171058, 0.103795, 0.606270, -1.608247, 1.416516, -0.909894, 0.657470, 0.960922, -0.746216, -0.806572, 0.033708, -1.369520, -0.266819, 0.090347, 0.509608, -0.248996, -0.735197, -0.693049, -0.024490, -0.301243, 0.102943, 0.199751, -0.132859, -1.159332, 0.573181, -1.068949, -0.498309, 0.772656, 0.153209, -0.657340, 0.050796, 0.759697, -0.829038, -0.434990, -1.133309, -0.492490, 0.654510, 0.773751, 0.538183, 1.220387, 1.099179, 0.725080, 0.029437, -0.881871, -0.551479, -0.204937, -1.757117, 0.698953, 1.542494, 0.644348, -2.115573, -0.065121, -0.400810, -1.694086, 1.878602, -1.538846, -0.551390, 0.638339, -0.481102, 0.458051, -0.714383, 0.176170, -0.760979, 0.231547, -0.596368, 0.343202, 0.772300, -1.267514, 0.314336, -1.219111, 0.295803, -0.396475, -1.032794, -0.545667, -3.286586, -0.111250, -1.313947, -0.209656, -0.788196, -0.721227, -1.037382, 0.432920, -0.114856, -0.601111, 0.384281, -1.375650, 0.754939, -0.148504, -0.445098, 1.452077, 1.804115, 0.028117, -1.838639, -1.339139, -1.836395, -0.763915, -0.291530, 0.884907, -1.124850, 0.568960, -0.650669, -0.750237, 0.822205, 1.472903, 0.242534, 1.462725, 0.764221, -1.074732, -1.071990, -0.865600, -1.456285, -1.096274, 0.184368, 1.719182, -0.862572, 0.087241, -0.197046, -0.457307, -1.823589, 2.627374, 0.783945, -1.003779, 0.206574, -0.953086, 0.532852, 0.619520, -1.378216, -0.311258, 0.865027, 0.909415, -1.387156, 1.212136, -2.209523, 2.773308, -0.345094, 0.558097, 0.590485, 0.072100, -1.097392, 1.134982, 2.153804, -1.291377, -0.923894, 0.948272, 1.942132, -0.014423, -2.059298, 0.278989, 0.323110, -1.113875, -1.952412, -1.006567, 0.416797, 1.050996, -0.228020, -0.736134, 0.561660, -0.356462, -0.742087, -1.084345, 0.503272, 0.418055, 0.420612, -0.571402, 0.270388, 0.315510, 0.125730, 0.329237, 0.111774, 0.281052, -0.659634, 1.253830, 0.447354, -0.385666, -0.648878, 0.192956, 0.213230, 0.619238, 0.654071, 0.400554, -0.657582, 1.565078, -0.555640, -0.680927, -0.658510, -0.123976, -0.528578, -1.994702, 0.660791, -2.069070, 0.885234, -0.971248, 1.789271, -0.167909, -2.129750, -0.885771, -1.051292, 0.393300, 1.457115, -0.833682, 1.303036, -0.318364, -0.476482, 0.269556, 0.618594, 0.195107, -0.171919, 0.928795, 0.528894, 1.630606, -0.050139, -0.615800, 0.195950, -0.289427, 1.308965, 0.517201, 1.058555, 1.262139, -1.019838, -0.166300, -0.022473, 2.282791, 0.534206, 0.049370, -0.612647, 0.605013, 1.926225, -0.823302, -0.026712, -0.574431, -0.344630, -0.000880, 0.760657, -0.630067, 0.155759, 1.086287, 0.085857, 0.738797, -0.038719, -0.570407, 1.515545, 0.144131, -1.134749, -1.231730, -0.624401, 0.451340, -0.805257, 0.400244, 0.011199, 0.323038, 0.552727, 0.165034, -1.218125, 0.092322, -0.463958, 1.317818, -0.657967, -1.594268, 0.861709, 0.820080, 0.420394, 0.725182, -0.298505, -0.389230, 1.384899, -0.219751, -0.371714, 0.822450, 1.201430, 0.100548, -0.278114, -0.399451, 1.761437, 0.948007, -1.071918, -1.346583, 0.215357, 1.370689, 0.123228, -0.308579, -0.823155, 0.359772, -0.172389, 0.626381, -0.144721, -0.388125, 2.482474, -1.486362, 1.987924, -1.403528, 0.421666, -1.435877, 0.602172, 0.011298, 1.577353, -1.658217, 1.176515, -0.013049, 0.492604, 0.832108, 0.416851, 1.720755, -0.783004, 0.051518, 1.233887, 0.950312, 1.295694, -0.630398, -0.230060, -2.085841, 0.206733, 1.777459, -0.712053, 0.263313, -1.367420, -1.661427, 1.633955, 0.264516, -1.469857, 1.233839, -1.562248, -0.285862, -1.329347, 0.288772, 1.087265, -1.244013, 0.270511, -1.001265, 1.442534, 0.222338, 0.403805, -1.801479, 0.836810, 0.032710, 2.184687, 1.424083, -0.584917, -0.283094, -0.679288, 0.837390, -1.477519, 0.947693, 1.108716, -0.242318, 0.418898, 1.129318, -0.043781, 1.010266, 0.587456, 0.552694, 0.485307, -0.911079, -1.474590, -1.444921, 0.144605, 0.859992, -0.140263, 2.144085, 0.571181, 0.668334, -1.261104, -1.505537, -0.142553, 0.905944, -1.783273, 0.203243, -3.049428, 1.109981, -0.119054, 0.363287, -1.209777, 0.850142, 1.103748, -0.578901, 0.202859, -2.602454, -1.219928, -2.222341, 1.699615, 1.315716, -0.835175, -0.319744, -0.704893, 0.639997, 0.582240, 0.268216, -0.116655, 0.177476, -0.497349, -0.064557, -1.221388, 0.915948, -3.019886, -2.781874, 0.296599, -0.645163, 0.019030, -0.610654, -0.932680, 1.662467, -0.433710, 1.201454, -1.602482, -0.771650, 0.542878, -0.059642, 0.110350, -0.365260, -0.659802, 0.667127, 1.412355, 1.405997, 0.126664, -1.412854, -0.431512, -2.119984, 0.099949, -3.022939, -0.802788, -0.065689, -1.133384, -0.332183, 0.870766, -0.450917, 0.353133, -0.292761, 1.191484, -0.718563, -1.851259, 0.862291, -0.374218, -0.452603, -0.642518, -0.597050, -0.626641, 0.584423, -0.025279, 0.280219, 0.776167, -0.483173, -0.705251, -1.432658, -1.022790, -1.392157, 0.584329, 0.138391, -0.889668, 1.316972, -0.199282, -1.158828, 0.343230, -0.673243, 0.110015, 0.925401, -0.811977, -1.964039, 0.208911, -0.366249, 0.762380, 0.129335, 0.656758, 0.554861, -0.558642, 1.217487, 0.895644, 0.909092, -0.382637, 0.055226, 1.157098, -1.363181, -0.036041, 0.023808, 0.634215, -1.296915, 1.087658, -0.068615, 0.173005, 1.056740, 0.510327, 0.208614, 1.262423, 0.897627, -1.711390, 0.499536, 0.040155, -1.240188, 1.314165, -0.920566, -0.446976, -0.216056, 0.155500, -0.015665, -1.546679, -0.995939, -0.763947, -1.796529, -2.409871, -0.029098, 0.271461, -0.745800, -2.008286, -0.927230, 0.065471, 0.359163, 0.789661, -0.876824, 0.200356, 1.039542, 0.235464, 0.258948, 0.060692, -0.116278, -1.737092, 0.780957, 1.266407, -0.180647, 0.505690, -0.133874, -0.737905, -1.284374, 1.043119, -0.350721, 0.674804, 0.710027, 0.624824, -1.050752, -0.387217, -2.484569, 1.038849, -1.280589, 1.643923, -0.248830, 0.908984, -0.731589, 0.644337, 0.570423, 0.239877, 1.495266, 0.424171, -0.448426, -1.386445, 0.492990, -0.293027, -0.141827, 0.003751, -0.957691, -1.462403, 2.250988, -0.973675, -2.951337, -0.305153, -0.941560, -1.183053, 0.611710, -0.376358, -1.106333, 0.300617, -0.721330, 1.101456, 0.431116, 0.563714, 1.399399, 1.130291, -0.552077, 1.061333, -0.092885, -0.490149, 0.339786, 0.356425, 1.881743, 0.091920, 0.575208, 0.363533, 0.352643, -0.285782, -0.262878, -0.809452, -1.608636, 0.467058, -0.011425, 0.239629, -1.127596, -0.318725, 1.258444, -0.404076, 0.383442, -0.088286, -0.353377, 1.171918, 0.470011, -0.402276, -0.372206, -1.297728, -0.870016, 1.614759, -0.675132, -0.373451, 0.888947, -0.820048, 0.942631, -0.859537, 0.956158, 0.414521, 0.219664, 1.466850, -0.151739, 1.715385, 0.102885, -0.629379, 0.795217, -0.049454, -0.910070, 0.942119, -1.212939, 0.451908, 0.264988, -1.374320, -0.928955, -1.289076, -1.261226, 1.122338, 0.151613, 1.084357, -1.247185, 1.355480, -0.496006, 0.202836, -0.279352, 0.061925, 0.075123, -0.010633, 1.665442, -0.259836, -0.194655, -1.194671, -0.155750, -0.569273, 0.441884}, + { 0.306053, 0.655023, 0.601022, 1.890180, 0.779185, 0.745997, 0.044883, 1.027930, 1.144791, -2.065500, -0.955389, 0.814198, 2.276800, -0.441706, -0.362342, -0.469636, -2.299112, 0.163438, 0.977913, 0.669896, 0.910154, 2.037225, 1.283853, 0.246283, -1.148569, 0.091599, 1.516956, -0.596582, -1.884530, 1.813483, -0.745703, 0.113068, -0.043826, 0.329446, 0.402982, 0.404139, 1.509598, -0.382893, 1.354240, 1.052974, 1.958785, 1.899341, -1.892131, -1.484339, 0.719642, 0.097261, 0.900479, 0.640860, 2.412882, -0.124725, 0.118307, -0.216208, -0.484342, -0.129433, -0.389852, -0.196844, -2.088548, -2.354909, 1.975723, 0.924680, 0.156747, 1.443496, 0.061418, 0.449164, -0.383296, 1.003783, 0.706093, 0.573518, -0.429927, -1.467220, 0.816274, -0.479154, -0.078750, -0.225255, 0.645629, 1.527311, 0.410746, -1.101803, -0.687578, 1.065136, -0.803712, -2.091181, 1.489167, -0.688606, 0.715771, -1.817188, -0.700249, -0.808454, 0.674843, -0.671634, -0.664611, 0.567812, -0.938628, -1.178422, 1.052407, 0.829454, 0.333921, 0.282373, -0.308495, -0.910188, -1.161811, 0.033027, -0.255470, 0.527855, 0.110178, -1.293394, -0.027141, 0.428618, 0.763337, -0.273234, 0.110821, -1.339046, -0.566313, 2.186830, 0.265084, 0.421920, -0.804885, 0.810508, -0.109380, 2.019528, 1.078617, -0.336461, -0.068866, -0.306429, -0.157813, 0.304983, -0.859182, 1.100367, -0.255995, 0.286705, -0.966163, 1.436331, 1.610193, -0.856852, -0.525730, 0.130290, -1.122079, 0.383032, 0.271746, 0.084785, -0.513179, 1.779457, -1.635670, 0.054635, -1.154547, -0.337266, -0.157128, -0.061562, -0.929907, -0.450199, 0.936423, 0.514459, -0.797071, 1.018977, -0.970956, -0.998577, -0.708840, 1.691755, 2.865524, -0.289743, -0.154794, 0.034562, 1.024701, -0.437260, -2.021700, -1.159751, 0.018421, -1.733001, 0.030119, 0.869922, 0.358805, 1.391150, 0.261041, -0.686678, -1.447936, -1.136542, 0.298334, 0.514408, -1.055912, -0.045991, 0.482677, -0.475100, 1.016389, 1.057067, 0.349636, -1.552275, -0.814456, 0.555771, -0.660684, -1.887382, 0.126537, -0.091373, 1.868438, -0.572924, -1.870499, 1.320623, -0.122809, 0.615067, 0.459421, 2.490492, -0.362870, -0.759327, 0.625597, 1.650055, 1.248910, -1.304209, -1.294328, -0.687407, -0.256605, 0.633505, 1.577451, -0.662092, -0.055807, 0.495282, -0.023324, -0.058662, 0.223044, 0.853134, -3.415582, 0.128022, 0.244949, 1.234014, 0.112954, -0.090850, -1.585292, -0.401207, 0.522009, 0.084580, -1.456277, 1.323341, 0.674555, -0.153379, -1.234390, -1.214318, 0.090031, -1.125700, 0.218534, -1.719167, 0.633274, -0.666644, -0.304681, -0.645550, 1.504749, -0.182104, 0.065711, 0.246883, -0.164804, 0.268317, -0.640890, 1.660100, 0.358457, 0.018721, 1.743414, -2.280760, -0.908194, 1.285988, -0.049298, -0.731913, 0.699607, -0.733625, 0.325894, 0.853100, -0.813906, 1.100766, -0.852223, 0.690548, 0.850760, -1.626735, -0.984735, 0.158065, -0.450318, -0.331243, -1.930876, 1.276435, 0.403233, 1.344207, 0.846544, 1.057964, 0.808760, 0.363174, 0.553183, -1.140975, 0.382838, 0.700096, 1.296091, -0.595758, 0.413251, 0.792074, 1.751483, -0.214396, 0.971786, 1.807642, -1.009961, -0.639061, 1.646864, 1.155533, 0.632300, 0.423940, 1.892590, 1.226112, 0.745218, 0.755596, 0.132462, 0.250986, 1.216284, 0.711294, -0.202593, -2.286238, -0.305076, -0.401009, 0.012228, 1.810427, 0.155617, 1.686397, -0.044485, 1.951637, -1.519003, 0.551804, 0.126369, -1.429462, -0.069943, -1.241395, -0.955524, 0.934578, 0.093011, -0.973420, 0.865429, 0.832059, 1.064513, -1.507699, 0.465209, 1.230847, 1.882538, 1.056649, -0.655764, 0.567414, 1.232247, -1.141623, 1.348975, -0.197116, 0.643541, 1.594372, 0.114432, -1.100444, 0.336552, -0.051833, 1.246019, 1.608885, 0.898541, -1.594947, 0.412246, 0.382335, -0.736582, -0.591782, -0.827465, 0.478101, 0.032613, 0.365402, 0.023524, -0.097985, -0.035388, -1.169961, 1.603616, 0.436716, 0.053037, -0.144850, 0.275561, 0.590071, 0.732637, -1.107710, 1.838093, 0.986445, -1.535011, 1.318522, -0.776602, -0.198342, -0.601804, 0.023683, 1.147958, 1.105458, 0.666450, -0.866823, -1.804991, 1.764135, -0.077409, 0.186713, 0.344493, 1.011144, 1.277187, -0.329106, 2.211274, 1.112371, -0.573875, 0.216939, 1.432820, -0.259644, 0.287992, -0.226812, 1.357910, 0.307900, 0.241176, 0.716688, -0.934928, 1.118223, -0.135582, 0.249715, -0.546449, 1.170933, 0.835911, -0.061615, 1.230920, 0.660273, 0.709425, -1.457238, -0.462678, 1.435325, -0.275830, -0.775204, -0.457671, 0.970308, 0.336291, 0.672783, -0.456583, -0.842579, 0.426320, 2.590044, -0.761741, 0.657310, -1.604443, -2.231782, 0.469280, 0.771679, -1.132938, 0.970252, -1.488133, -1.447886, -0.142702, -0.533458, 0.333237, 0.713508, -0.292267, 0.547955, 0.590747, -1.113803, -1.068648, 0.216783, -0.695032, 1.848361, 0.444731, 0.707257, 0.297911, 2.380150, 0.149715, 0.933467, -0.170712, 1.039868, 0.186961, 0.424069, -0.494074, -1.219011, -0.780676, 1.816759, 0.387670, -0.967709, 1.215745, 0.563780, -0.444726, 0.437244, -0.040144, 0.017977, -0.436769, -0.722036, 0.076123, 2.038691, -0.352857, 0.193998, -0.925745, -1.209406, 1.031133, -1.624738, 1.449812, 0.665593, 0.210665, 0.343916, -0.575074, 0.618354, 1.456426, -1.380976, -0.796809, -0.787871, 1.542605, -0.039402, 0.461496, 0.204260, -0.690160, 2.235208, -1.289715, 0.853032, 0.595849, -1.004903, -0.314063, -0.017002, -0.462261, -0.432523, -1.114655, -1.145948, 1.048367, -0.301607, 0.709324, -0.368214, 0.001998, 0.598900, 0.126029, -0.804712, -2.914235, -1.467662, 0.194501, -0.295007, -0.187786, -0.350858, 2.072236, -0.320828, -0.411470, 1.414000, -0.776154, 1.007657, -0.431999, -0.784971, 0.536280, -1.223432, 0.689310, -1.450974, 1.705544, -1.719905, -1.636239, 0.444315, 1.631316, 0.237500, -0.990477, 0.722567, 0.369905, 0.455114, -0.234677, 1.544214, 0.010035, -2.114593, -1.869019, -0.484050, -0.806391, 0.271742, 0.286472, 0.689310, 0.330565, -0.775901, -1.212435, -0.795118, -1.528587, -0.239839, 0.798094, 0.878294, 0.721996, -0.247964, 0.299384, 0.834919, -0.940462, -0.889167, 0.256584, 0.166233, -0.913947, 0.257069, -0.693560, 0.274110, -1.095540, -1.138444, 1.178309, 2.197699, 1.231934, -0.716416, 0.094879, -0.535117, -0.235680, 0.963843, 0.693461, 0.354859, -1.951049, 0.695489, -0.111126, 0.805758, -1.095965, 0.895157, 0.052954, 0.941177, -0.434166, -0.403882, 1.602525, 1.321342, 0.019659, 1.719970, -1.234313, -0.415838, 0.027629, -0.624495, 0.806576, 1.199266, 0.022902, 0.271181, -0.720649, -0.372576, 0.282901, 0.671660, -0.067669, 1.254568, 0.464117, -0.956669, 1.768708, -0.981018, -1.634513, 0.977878, 0.571035, -1.014793, -1.114021, 1.342866, 0.118520, -0.648012, -0.981292, 1.587563, -0.603370, -0.476831, -0.651664, 0.268886, 0.222579, -1.207132, 0.274576, -1.535163, 1.672279, 1.041076, 1.829667, 0.160395, 0.019549, -1.057220, 0.481870, -1.080187, 0.730474, 0.852357, 0.271900, -0.850585, 0.104664, -0.868777, -0.151250, 0.320333, -0.171258, -0.178508, -0.090091, 0.016050, 0.641610, 1.399266, -1.207521, 0.063560, -1.126837, -0.750128, 0.431695, 0.648339, 0.025406, -0.186404, -0.601247, -0.014920, -0.141077, 1.512372, 0.014823, -0.467640, -0.470565, 0.857452, -1.345808, -0.039423, 0.562787, -2.212435, -0.381147, 0.441628, -3.139030, 0.915106, -0.379794, -0.445968, 0.486448, -0.768498, 1.469221, -0.330846, -0.941496, -1.160222, -0.246010, -0.213206, 2.406422, 0.681248, -1.783142, -0.767410, 1.704415, -0.451864, 0.686015, -0.496022, -1.293758, 0.144424, 0.505526, -0.205168, -1.639819, -0.414931, -1.794943, -0.265367, 1.144409, -0.844765, 1.530019, -0.236714, 0.375512, -0.438605, -1.058092, 0.237714, 0.321695, -0.858939, -0.320476, -0.665091, 0.306542, -0.609934, 0.611263, 0.087265, 0.024723, 0.162028, -1.797718, -1.318625, -1.054334, -0.520702, -0.909815, -0.781718, -0.908923, 1.121070, 1.239078, -1.472121, -0.985432, 0.485584, -0.365651, -0.945598, -0.045432, 2.474636, -1.295494, -1.115126, 2.285769, 1.909908, -0.058226, -2.355661, -0.310305, -0.693946, 0.041466, -0.361893, -0.742374, -2.710838, -0.543960, 0.761441, 0.519598, 0.859976, -1.175118, 0.160989, -0.843009, -0.643818, -0.451043, 0.113457, -1.105057, 0.043851, 1.350913, -1.585491, 0.267387, -0.866994, 0.018115, -0.261888, 0.229849, 0.566232, 0.223388, 0.135254, 1.542743, -0.588135, 1.081777, -0.160107, 0.460362, 1.335092, -0.702964, 1.384560, -1.814902, 0.821111, 1.015757, -1.600689, -0.359878, 0.483935, -0.177527, 0.539820, 0.078470, -1.001130, 0.089451, 1.315600, -0.230437, 0.300769, -0.483248, -0.398708, -0.591322, -1.904049, 0.767959, 0.960107, 1.245484, -0.828119, 0.884363, 0.393901, 1.025945, 0.343532, -0.572946, -1.054310, -0.552449, -0.429007, 0.856342, 1.316770, 0.425394, -1.214908, 1.434746, -0.274775, 0.830779, 0.765349, 0.434867, -0.553615, 0.471733, -1.772158, -0.108032, -0.562055, 0.393262, 1.149402, -0.248138, -0.058569, -0.102629, -1.053732, -1.525646, -1.605503, -0.317426, -0.300456, 1.505236, 0.230283, 0.215174, 1.104605, -0.524340, 0.929776, 1.494221, -0.065469, -1.386543, -1.557096, 0.230938, 1.898633, -0.807449, -0.396737, 0.473917, 1.044068, 0.568269, 0.729260, 0.863082, -0.273321, -1.685378, 0.396150, 1.112643, 0.900336, -0.382537, 0.402834, -0.549428, 0.491953, -1.115485, 1.753430, -0.238812, -1.586390, -0.556953, 0.533577, -0.490598, 1.026821, 0.573757, -0.065992, 0.608130, 0.282710, -0.960774, 0.045640, 0.657832, 1.763500, 1.332469, 0.844769, 0.444769, 0.296056, 0.128627, -0.993037, -0.652334, 0.715801, 0.824528, 1.903906, 0.012615, -0.336774, -1.541809, 0.568936, -0.239318, 0.683953, 0.175478, 0.459859, 0.176219, -0.911236, 0.956840, -0.341742, 0.672891, 0.100581, 0.454326, 1.436460, -0.057637, -0.840042, 0.173243, -0.300461, -0.179025, 1.040181, 0.314383, 0.353963, 1.324432, -0.249695, 1.460329, -0.394267, -0.908176, 3.519607, 0.931430, -0.773403, 0.282989, 0.245004, 2.198965, 0.754157, -1.016852, -0.964242, -0.432444, -0.913298, -0.380747, 0.688152, 0.731114, -0.487267, 0.457628, -0.754775, -0.542510, 0.964001, -0.424062, -0.575031, -1.009011, 0.283669, -1.632675, -1.081024, 0.405929, 0.913498, -0.957288, 0.063618, 0.410084, 0.751725, 0.316464, -0.266139, -0.923071, 0.526265, -1.727600, -0.049592, -1.549057, -1.253188, -0.146271, -0.978189, -0.352279, -0.037580, 1.092048, 0.404153, 0.751678, 0.939947, 0.635343, -0.181044, 0.127638, 1.376194, 0.412008, 0.295745, 0.431696, 0.580316, -0.245036, 0.328633, 1.072151, 0.011214, 0.737107, 0.641669, -0.272074, -1.332081, 0.670853, 1.293334, -1.803168, -0.565272, -0.715295, 1.071769, 0.378036, 0.584261, -1.115840, -0.362657, -0.017809, 0.154506, 1.692304, 0.017419, -0.167461, -0.029298, -0.409173, -0.286013, 0.942225, -0.245485, 0.154658, -0.477232, -0.119695, 0.050861, 0.967000, 1.116743, -0.975016, 0.166561, -1.240957, 0.894585, -0.074516, -0.815448, -0.167714, -1.162505, 0.686933, -0.615414, -1.255976, 0.328320, -0.275673, -0.098712, 1.495568, 2.057344, 0.228320, 0.094049, 0.754552, -0.139389, -0.910035, -0.108081, 0.069732, 0.277711, -0.917879, 0.182366, 0.656270, 0.120618, -0.781743, 1.225559, -1.768723, 0.673439, -1.308574, 1.350429, -1.262379, 1.322503, 0.433229, 0.424920, -1.226392, -0.596761, -1.302780, 1.241119, -0.743504, -0.002188, 0.904678, 0.438577, -0.224086, 0.679371, -0.537908, 0.629917, 0.214296, -1.394609, -0.961223, -0.508731, 1.591525, -0.741228, -0.315695, -0.480300, -0.120089, 0.661369, -0.297296, -0.555660, 0.227276, 0.419884, -0.805337, -1.004137, -1.040979, -0.318128, 0.372706, -0.619154, -0.732511, 0.345320, -0.802126, 1.124454, -0.181602, -0.854222, -0.949487, -0.553111, 1.375972, -0.581183, -1.976784, -1.477165, -0.334667, -0.724406, -0.435450, 0.264027, -0.180969, 1.698670, 1.558877, -0.711566, -0.868455, 1.417809, -0.547200, -0.347732, 0.805752, -0.228958, -1.542462, 0.669390, 0.626546, -0.752939, 0.007821, -1.994178, -1.473917, -0.749204, -0.220853, -1.012404, 1.414068, 1.626473, -0.843035, -0.054966, -2.178320, -0.690586, 1.577583, -0.760826, -1.341318, -0.004949, 1.233898, 1.566918, 0.052289, 0.241267, 0.767643, -1.293950, 0.696877, 0.127411, -0.243792, -0.296408, 3.345861, -1.505508, -0.028482, -0.972535, 0.109777, -1.470371, -0.275607, 0.324863, -0.453502, 0.645635, -0.073283, -0.520253, -0.860078, -0.794735, 1.641998, 1.967670, -1.494145, -0.681636, 1.161976, 1.005642, 0.081988, -0.734240, 1.509219, -0.662713, 1.183335, -0.133132, -1.876567, 0.094306, 0.817966, -0.417917, 0.365058, -1.627878, 0.455535, 1.392051, 1.643981, 0.197345, -0.170064, -1.709669, -0.700571, -1.379081, 0.751406, 0.216152, 0.454993, -0.682532, -1.857143, -0.840635, 0.663565, -1.489406, -0.569106, 0.353643, 1.520445, -2.315645, -0.924451, -0.321969, -0.285109, -1.641949, 1.055386, 0.525760, 0.577533, 0.757220, 0.552565, -0.152541, -1.070704, -0.569435, -0.809966, -0.829861, 1.328143, -0.373996, 0.664785, -0.816450, -0.334321, -0.014777, -1.312515, -0.862641, 0.731539, -0.202056, 1.631033, -1.274118, 1.197626, -0.814118, 0.793116, 0.201980, -1.711944, 1.090983, 0.327173, -0.887079, 0.317311, -1.411439, 0.775029, -0.182200, -0.630495, -0.913486, -0.368232, 1.223858, 0.317185, 0.236993, 0.004916, 0.433357, 1.560200, -0.171705, -2.463668, -0.159252, 1.335183, -0.681400, -0.276373, -0.536459, -1.446698, 0.184870, 0.835257, -0.960716, -0.501188, 0.698194, -0.321683, -0.434941, 1.201105, -0.316958, 1.339501, -1.604707, -0.336800, -0.181974, -4.342203, 1.497898, 0.880348, 0.133422, 0.365856, 0.189339, 1.115095, -0.932376, -0.802968, -0.128491, 0.817978, 1.279624, -0.910673, 1.157411, 0.421010, -0.197130, 0.149639, -0.003807, -2.544418, -2.270015, -1.449824, 1.961611, 0.465849, -0.520380, 0.222495, -1.577964, 0.329281, 0.590828, 0.298448, -0.629349, -0.608633, 1.068808, -1.107581, 1.555622, -0.177787, -0.108409, -0.508880, -0.662452, -0.290413, 0.146576, 1.482064, 1.381492, -1.059543, 1.199365, -0.028044, -0.344174, -0.541299, -0.676746, 1.922809, -0.078949, 1.323102, -0.110083, -1.616125, 1.199939, 0.151555, -1.699992, 1.523828, -1.003789, 1.199547, -0.023658, -1.400681, 0.062584, 0.691769, -1.293470, 1.084037, 0.622075, 0.831451, 1.595581, -0.484486, -1.130726, 1.911968, 1.762751, 0.695078, -1.275114, -0.618976, 0.611859, 1.573652, 0.875265, 0.155229, 0.817660, 1.156775, 0.508435, -1.519821, 0.545433, -1.578190, 0.693183, -1.100134, 0.163265, -0.302073, 0.373249, 0.600213, 0.063063, -1.763098, -2.243574, 0.790842, -0.271946, 0.464308, -0.975373, 0.602892, -0.438298, 0.080586, 0.147245, 0.062602, -0.328985, 0.260321, 1.113006, -0.566009, -1.789162, -0.162353, 0.617137, -0.942267, -0.234453, 0.951426, -0.808673, 0.938470, -1.792327, -0.301855, 1.073306, -0.370970, 0.597410, -0.583410, 0.965183, 0.484474, 0.050509, 1.057956, -1.684060, -0.835116, 1.079136, 1.038046, -1.236283, -0.013095, -0.242072, 0.493514, -0.882332, -0.132067, 1.072049, -0.517261, -0.652990, -0.272935, 0.766965, 1.944211, -0.134076, 0.887988, 0.108314, -0.198348, -0.480514, -0.618331, 1.050164, 0.343630, -0.965649, 1.223340, -1.393962, 1.520255, -0.517594, 1.401671, -0.604645, 0.218336, 0.519592, -1.552592, 1.044794, 0.242693, 0.603444, 0.931581, -0.468444, 0.131811, -0.779461, -1.268532, -1.075551, 0.187341, 0.163274, -1.484697, 0.344066, 0.909136, -0.087106, 0.742039, 1.245227, -0.208903, 0.854498, 0.594840, 0.933873, -0.291349, -0.747122, -0.710068, -0.625521, 0.245131, -0.794486, 2.063449, -0.170674, 0.118782, -0.294617, -0.018525, 0.614879, -1.317549, 2.412173, 0.159055, 0.656507, 1.354490, 0.064887, 0.857280, -1.397829, -0.861987, 1.102649, 0.792736, 1.422438, -0.800374, 0.825360, -0.852424, 1.464432, 0.574031, 1.232624, 1.030421, -0.485707, -0.363458, -0.366079, -1.110260, -1.446113, 0.829015, 0.294908, 1.135634, 1.329028, -0.322123, 0.582697, 1.688789, 0.175549, 1.105221, -0.331164, -0.410355, -0.263288, 0.657792, 0.558188, 0.913043, 0.792805, 0.451593, -0.124163, 0.561272, -1.776511, 0.181316, 0.175552, 0.323214, 1.005008, -1.261408, 0.655904, 1.909115, -2.584715, 0.730793, 1.089442, -1.512992, -0.510728, -0.050339, 0.900420, 0.720054, 0.884839, -2.230974, -0.709427, 0.636922, -0.449884, 1.083237, 0.313725, 0.893059, 1.195028, -0.798888, 2.234076, -0.448723, -0.422435, -0.728828, -0.626996, 1.037192, -0.438602, -1.099299, 1.606322, 0.409898, -1.113315, -0.015678, 0.853761, 0.972631, 0.756586, 1.605372, 0.401303, -1.832319, 1.512244, -0.191919, -0.542879, -0.088593, 0.608095, 0.123325, -0.286824, 0.764513, -1.304955, 0.097481, -0.478585, -1.292890, 0.788395, -0.816355, 0.335072, 0.505091, 2.087141, 0.734570, -0.069303, -0.297971, -0.428286, -1.049409, 1.667005, -2.267017, 1.778667, -0.777760, 0.386349, -0.727869, -1.166549, -0.398559, -0.826940, -1.537028, -0.125218, -1.599008, 0.083260, 0.682975, -0.417245, -1.201377, 0.587790, -0.227110, 0.505581, -1.698706, -0.488232, -0.906653, -0.488293, 1.202217, -0.665082, -1.267281, -2.376643, -0.593841, 2.626250, -1.176957, -0.387459, 0.095499, -0.271302, 0.238201, -0.797213, -0.414411, -1.484238, -0.573813, -0.724053, -0.085884, -0.217930, 1.715197, 2.228914, -0.638126, 0.571546, -1.442097, 2.659422, 1.189435, 0.065155, 1.287011, 0.477728, 0.423314, 0.145276, 0.182032, -0.476234, -0.139449, 0.444810, 0.678152, 1.557245, 0.430629, -0.158028, -0.250696, 1.165950, 0.061139, 0.829975, 0.816999, -2.053664, -0.706578, -0.104364, 0.775714, 2.193231, -0.413559, -0.697779, -0.513652, -2.250425, -1.283986, -0.841279, -0.221181, 0.528657, -0.570407, 0.025061, -1.059959, 1.245546, 0.407518, -1.039692, -0.567225, 0.330413, 0.110639, 1.423879, -0.290724, -0.848348, 0.094914, -0.923972, -0.121975, -0.434780, -0.351903, 1.736391, 0.844575, 0.361996, 0.467964, 1.881055, 0.015923, -0.355325, 0.903035, -1.627623, -0.701568, -1.160279, 0.439823, 0.512599, -0.387310, -0.657832, 0.711979, 1.440345, 0.759822, 0.819317, 0.129645, 0.620790, -0.426793, 1.140812, -0.930938, -0.402499, -1.282456, 1.522394, 1.327045, -0.740557, -0.992133, -0.021651, -1.021709, -0.879490, -0.861100, 1.497500, -1.978784, -0.293274, 0.776286, -0.422252, 2.343773, 1.379636, 0.186265, -1.375379, -0.813981, 0.639198, -1.017841, 1.327326, -0.658919, 0.552423, 0.764777, 0.946053, 0.852388, 1.682750, 0.530288, 0.107676, 1.304824, -1.240078, -1.216016, -0.504044, 1.199566, -1.665497, -0.614082, -0.586999, -0.295391, 1.138398, -0.794723, 0.690661, -0.831014, 1.356671, -0.907613, 1.752246, 1.436281, 0.539888, -0.855990, 0.611230, -1.437628, 0.089767, 0.527468, 0.781959, 0.547762, -1.479149, 1.592530, 1.008261, -0.421596, 0.417231, 1.311400, -1.266045, 1.316692, 1.030668, 2.332782, 0.263523, -0.264550, 0.941672, 2.441823, -0.985447, -0.288321, -0.055236, -1.085416, 0.983165, -0.406880, -0.267202, -0.190021, -0.837177, -0.528613, -0.489009, -0.244137, 2.094201, 0.379778, 0.514492, -0.344827, 0.594875, -0.125360, 1.562630, -1.577518, 0.326389, -0.741001, -0.840845, 1.338398, 0.371679, -0.393995, -2.789667, 1.539743, -0.217465, 1.806697, 1.484426, -1.383210, -0.454424, 0.479457, -0.239263, -1.481966, -0.194036, -0.799470, 0.211621, 0.710188, -0.690821, 0.237875, -0.473931, -0.255977, 0.196964, -0.777732, -0.781373, -0.093950, 0.227325, 1.007274, 0.924086, 0.819746, -0.520902, -0.438459, -0.741928, 0.338526, 0.376719, -1.465829, -0.000069, 0.259945, 0.353617, 1.858091, 2.049830, 1.435193, 0.702739, -0.810952, 1.030838, -1.029264, 0.807791, -0.667732, 0.029984, -0.771149, 0.303049, -0.783939, 1.266466, 1.140532, 0.922993, 1.560091, 0.609204, -0.724542, -0.849846, -1.834091, -0.008430, -0.910383, -1.734511, -0.741114, -1.626110, 0.763844, -1.485456, 0.952323, -0.175598, -0.032825, -0.360920, -0.140047, -0.938435, -0.842926, -0.256038, 1.017142, 2.124318, 0.670853, -1.085590, -0.075834, -1.136380, 0.056260, 0.005068, 1.308929, 1.919652, -0.757899, -1.764913, -0.961051, -0.524224, 0.744277, -0.398694, -1.685907, -1.250800, 2.620742, 1.426673, 1.531390, -0.549234, 0.039749, 0.816418, 0.874773, 0.593548, 0.341890, -0.720886, 2.045592, 1.059100, -1.585793, 0.117364, -1.400060, -0.271679, 0.300556, 0.429157, -0.048594, 1.825605, -0.187789, -1.988871, -0.278569, -1.196944, -1.196450, 0.377815, -0.264347, -0.096423, 1.694368, 0.064553, -0.601419, 1.795633, -0.738385, 0.862033, 0.112950, -0.171884, -1.117588, 0.027495, 0.501018, -1.714589, 1.029197, 0.595869, 0.387927, -0.210674, 0.080798, -0.243546, 1.389446, 0.108643, -0.484494, 1.065108, 0.363851, 1.662277, 0.311918, 0.507250, -0.922529, -0.121635, 1.133666, -1.246856, -0.369330, -0.880998, -0.322306, -1.283084, 1.346089, 0.411234, 0.074877, -0.655707, -1.423186, 1.047097, -0.137224, -0.244123, -1.552637, -1.174878, 0.145798, 1.972366, 0.448230, -2.426219, 1.045725, -0.167561, 0.825940, 0.016251, -0.064962, 0.263064, 0.672724, 1.177806, 1.542517, -0.563189, -0.044366, 0.360106, 0.832831, -1.260959, 0.230434, 0.784450, -1.034084, 1.870543, -2.031155, 0.417170, 0.560812, -1.195829, 0.612845, 0.899163, -1.401152, 2.247113, -0.571610, 1.203252, 1.117235, 0.135989, -0.523813, -1.513594, 0.059353, -0.616792, 0.304000, 0.866493, 0.354767, -1.745976, 0.022276, -1.697727, 1.487375, 1.695194, 1.046364, -1.174724, -0.473907, 1.501516, -0.048170, -0.490079, -0.282869, 0.503165, 0.701989, 1.311882, 0.618559, 0.680050, -0.446768, 1.140182, 0.191640, 0.295782, 0.555668, -0.875195, -0.571442, -0.027852, -0.182835, -0.357811, 0.422866, 2.659298, -0.925558, 1.770730, 0.509582, 1.120448, 0.398149, 1.599319, -1.093991, 0.713760, -2.153341, -1.756727, 0.405604, 0.624687, -0.133475, -0.353797, 0.452039, 0.041864, 0.235650, 0.163002, -0.918103, 1.255851, 0.667441, 0.128435, -0.694677, -0.045580, 1.365972, 2.156691, -0.676666, -1.416819, -0.541165, 0.350744, -0.532238, 0.336493, 0.027174, -0.520343, -0.681970, 0.201024, 1.257810, 1.273888, 1.516947, -0.530718, -0.405307, 0.492541, 1.234501, -1.045775, -0.582748, 0.645102, -2.354389, -0.026803, 1.464793, 0.252427, -1.213451, 1.868762, 0.099340, 0.516361, -0.027075, 0.896106, 1.777730, -1.297897, 0.217806, -1.072757, -1.791463, 0.478229, -0.262014, 0.871807, -0.822417, -2.204701, 2.201253, 1.646366, 0.011076, 0.231048, 0.051667, 0.317684, 1.205150, 1.224000, -1.492571, -0.584738, 1.034569, -0.879367, -0.319339, 0.006979, -0.713181, -0.386667, -0.024886, 1.284186, 2.160216, 0.240886, -0.242978, 0.267425, 0.236014, -1.177807, 1.788776, 0.388052, 1.355316, 1.202642, -2.108034, -0.178778, 0.484912, 2.020209, 0.208876, -0.839602, -0.001457, 0.858376, -0.664001, 0.782215, 0.892171, -3.486394, -0.238300, -1.358946, -0.820373, -0.145348, -1.102256, -1.003469, 0.278931, 0.630064, 0.787201, 1.933461, -1.147023, -0.295931, 0.748785, -0.647723, 0.533334, -0.310129, -0.179045, 0.145234, 1.811146, 1.355955, 0.390284, 1.069475, 0.325421, -2.135230, -0.020433, -0.500284, 0.860384, 0.743186, 0.295881, 0.628899, -0.346291, 1.131162, -1.370288, 0.537378, 0.556443, 2.123634, -0.337618, -1.103233, 0.841430, -0.622306, 0.527918, 2.053566, 1.972059, 1.444224, -0.399629, -2.606618, -0.983245, 0.513070, -0.659332, 1.074633, 1.540106, 0.368485, 0.282860, -1.572254, 0.855067, 0.946966, 1.116395, 0.831266, 0.623982, -0.145844, -0.504979, -0.553257, -1.404503, 0.383837, -0.741783, -0.957648, -1.081386, -0.612159, 0.453004, -0.094359, -0.335615, -1.062051, -0.825065, 0.074077, -0.103761, 0.497510, 0.178691, 0.692956, 0.562621, -0.363759, -2.542845, -0.824791, 1.200854, 1.026071, 0.913099, 1.773230, -0.187374, 0.291012, -0.517393, -0.131871, 0.829050, 0.876603, 0.203171, -1.341479, 1.005138, -2.543976, 1.478246, 0.290934, -0.668041, 0.439939, -0.083805, -0.039357, -0.340271, 0.232416, -0.529113, -2.221887, 0.590986, -0.223164, -0.519457, 0.985801, -0.900997, 0.027715, 1.044646, -0.167321, 0.253717, -0.026195, -0.668991, -0.399222, -0.151615, -1.054431, 1.610175, -0.543483, 0.031371, -0.043453, 0.883878, -1.894013, -0.233904, 1.581851, 0.851205, 1.092366, 0.163676, 0.501960, -0.350069, -1.045353, 0.861670, -0.032071, 0.914802, -0.057646, 0.231605, -0.300880, 0.326650, -0.008892, -0.388310, 0.177972, 0.704197, 0.995981, 1.300314, 0.326089, 0.813780, 0.233365, -0.263435, -1.192464, 0.333589, 1.137856, -1.659672, -1.717216, -0.267989, 0.759201, -1.769788, -1.083718, 0.359388, 1.404924, 0.505105, 2.148224, -0.226877, 0.220850, 1.595149, 0.677654, -0.273742, -1.116363, 0.533439, -1.131895, -0.083043, 0.009359, -0.713210, 0.904571, -0.377484, -0.259710, 0.289089, -0.759640, -2.310809, -0.681866, 1.006340, -0.510767, 0.081574, 1.587115, 0.499985, 0.843698, 1.137990, -0.266377, -1.732516, 0.245492, -0.507909, 0.034757, 0.501414, 2.122741, -1.783386, -0.824589, 0.058314, -0.792995, -0.304616, -0.071426, 0.439923, -0.541762, -1.084263, -0.835186, -0.529249, 0.174476, 0.079394, 0.851824, 0.727211, 1.708769, 1.110857, -1.161085, 1.188909, 0.798624, -1.010497, -0.986937, -1.299667, -0.890559, 0.282513, -1.041545, -0.202859, 0.859216, 0.468167, 1.032627, -0.857366, 0.262470, 1.242952, 1.690676, -0.387463, -0.183820, -0.159102, 0.804471, 1.468494, -0.316948, 1.057467, 0.507451, 1.030553, 1.394510, -0.831239, -0.443699, -2.422860, 2.197684, 0.387557, -0.098316, -0.264361, 0.852804, 0.846519, 0.069427, -1.962598, -0.656433, 1.284654, 0.508004, 1.712550, 0.927746, 1.389929, -0.841263, 0.016287, 0.414592, 0.459253, -1.315293, 1.522476, -1.992829, -0.122206, 0.141310, -1.506999, -0.213535, 0.637311, 0.374217, -0.785084, -0.367165, -0.340933, 0.268664, -1.854117, -0.843193, 0.799745, 0.439042, -0.479027, 1.816216, -0.796959, -0.098352, 0.184122, -1.440329, -0.102162, -0.564956, 0.564681, 0.152534, -1.126705, -0.906848, -0.899947, -0.771803, -0.359773, -1.455259, 1.607004, -0.669347, -1.238559, 1.235367, -1.357100, -1.189019, -0.724682, 1.156731, 0.048757, -1.040167, -1.028633, 0.750722, 0.494954, -0.580926, 0.770503, -0.597188, 1.279355, 0.022229, -0.582185, -0.184246, -1.289871, -0.780704, 0.630001, -0.586566, 0.935058, 0.194947, -0.318858, 0.078360, 2.083672, 1.231861, -0.458267, -0.227005, 0.328669, 0.245391, 0.976296, 0.158726, -0.477292, 0.711520, -0.387961, 1.317555, 1.333111, -0.961027, -0.188374, 0.692679, -0.544031, -0.709286, -0.244919, 1.496764, -0.025646, 0.986766, 1.168125, -0.595671, 0.217039, 0.277739, 1.199381, -0.070320, 0.250028, -1.336457, 1.843609, -0.215886, 0.736907, -0.203953, 1.386194, -0.214016, -1.542832, -0.638177, 0.567472, 1.397976, -1.605796, 0.958391, 0.832555, 0.602144, 0.509741, -0.418007, 0.921719, 0.248481, 0.137095, 0.789245, -1.211174, 1.911187, -0.412046, 0.603171, 1.063943, -0.278437, -0.769195, 0.287495, 2.051998, -0.479221, 0.533581, -0.653648, -0.098721, -0.663854, 0.036260, -0.405052, 0.109031, 0.096428, 0.249980, -1.259190, -1.150468, 0.031320, 0.580037, 2.193632, 0.324798, 0.192339, 0.280329, 0.330147, 0.983635, -0.667907, 0.818469, 0.934790, 0.849882, -0.365725, -1.267613, 0.156959, -0.044795, 1.298946, 0.247159, 1.582988, -1.091138, -0.303229, -0.217528, -0.761491, 0.430233, -0.486407, 0.780267, 0.408464, -1.697137, 0.390405, 0.432335, 1.848342, -0.014690, 3.594646, -0.974307, 0.608917, -0.992444, 0.658290, 0.946928, 1.229365, 0.700444, 1.380353, 0.691599, -0.057171, 0.347853, 0.670604, 0.542095, -1.577688, -0.746156, -1.153263, 0.511808, -1.187092, -0.771359, 1.072229, 0.243213, -0.556381, 0.532394, -0.457471, -1.479988, 0.457262, -0.639867, 0.969652, 0.114051, 1.801936, -0.804699, 0.010311, 1.543735, 2.623457, 0.156024, 1.204083, 1.816475, 0.588982, 0.637043, 0.282141, 0.435359, -1.616788, -0.706342, -0.027826, -0.880148, -1.677258, -0.836543, 0.020959, 0.009057, -0.647312, 0.019581, 1.882719, -0.408950, -0.234068, -0.533497, -0.681023, -2.475870, -0.469468, -1.796521, -0.120333, -0.651184, 0.448509, -1.394689, 0.994358, -0.578582, -0.567651, -1.770417, 0.267634, 0.453618, 0.634913, -0.806666, -1.150350, -0.635624, 0.207138, 1.162990, -0.285097, 0.185609, -0.510208, 0.663534, 0.574028, 0.808348, -1.014700, 0.089086, -0.244672, -1.382213, -0.509395, 1.282191, 1.554063, -0.829955, 0.145912, -0.482962, -0.205015, 0.538843, 0.489712, 0.101529, 0.353511, 0.412944, -0.824558, 0.366786, -0.139633, -0.483821, -0.324442, 0.607414, -0.248164, 0.350758, 1.608775, -0.762118, 0.229355, -0.529545, -0.622731, 0.264658, -0.815949, -0.185741, -1.615415, 1.813414, 1.076483, -0.923580, -0.074933, -1.110330, 0.387532, 1.658190, 0.951168, -0.607105, 0.679919, 0.837082, 0.402120, 1.949409, -1.939731, 0.126738, 1.067769, 2.484756, -0.814055, 0.122260, 0.798773, 1.432381, -0.456432, 0.442155, -1.545693, -1.356212, 0.446468, 1.058376, -0.768244, -0.156811, -0.221207, 1.477942, -0.442173, -1.270613, 1.634986, -0.461853, -1.703266, 0.756903, -0.244684, 0.283595, 1.364254, -1.692368, -0.562980, -0.180642, -1.089304, 0.881124, -0.871777, 0.076382, 1.939426, 1.507148, -0.304122, 0.186827, 1.748091, 1.121333, -2.656331, 0.202387, 0.549560, 0.831033, 0.365285, -0.447290, 0.359085, -0.096740, -0.034068, 1.027380, 0.084311, 1.679274, 0.373474, -2.310339, -0.416224, 0.763384, -1.951930, -1.160674, -0.377321, -1.109153, 0.262089, -0.663581, 0.005880, 0.379989, -0.162827, -1.932418, -0.136805, 1.290428, -1.519886, 1.574226, 0.127737, 1.960765, 0.460804, 1.575808, 0.471605, 2.033948, 0.373401, 0.980521, 0.313608, -0.504606, -0.369123, -2.741306, -1.706731, -0.228772, 0.030666, -0.538705, -0.988796, 0.156074, -0.274832, -0.860200, -0.495591, 1.038669, 0.678009, 0.677749, -0.779947, 1.779969, -2.416335, -1.392135, 0.281791, 1.439030, -1.487667, -1.359390, -1.093486, -0.251534, -0.713205, 1.789663, 0.245621, 0.647931, -0.600348, -0.543535, 0.855971, -1.222039, 0.857654, 2.951690, 1.376172, -1.066797, 0.991269, 2.114067, -0.535081, -0.575661, -0.248383, 0.946289, -0.819401, 0.776518, 0.464894, -0.001004, -0.921444, 1.056179, 1.021483, -1.777421, -0.545783, 0.486535, 1.187328, 0.635788, 0.266434, -1.306484, -0.097334, 2.922371, -0.758654, 1.567345, 1.127049, -1.692283, 0.045857, 0.416272, -0.682225, -0.072619, 2.377651, 1.017149, 0.310075, 0.049830, 0.675044, 1.048628, 0.566722, 0.186939, 1.353577, -0.711909, 0.386419, 0.251786, 0.616942, -1.446534, -1.456601, -0.333292, -0.431912, 0.532326, -1.495514, 1.671598, -0.144631, -1.749288, 0.285810, -2.707436, -0.562123, -1.155789, -0.193516, 0.802959, -0.755592, 0.692580, 0.741737, -0.962325, -0.377792, -0.003544, -0.650631, 1.497965, -1.000162, -0.946808, 0.807187, 1.434334, 1.113368, -1.449937, -0.075801, 1.140664, 0.585813, -0.129373, -0.154028, 1.085698, -0.670071, 0.955436, -0.675689, -1.143279, 0.778601, 0.381148, 0.607549, 1.028283, -0.480574, -0.703178, 0.459562, 0.140238, -2.022008, -0.361047, 0.736690, 0.060397, 1.325158, 2.016467, -1.506137, 0.500613, -0.099738, 0.384120, 0.561974, -0.171857, 0.535518, -0.503470, -0.861594, 0.837458, -2.551442, -0.649355, 0.145722, -1.688057, 0.472963, 0.609509, 0.781601, 0.204907, -0.153220, 0.192658, 0.890520, -1.119550, -0.102251, -2.426784, 0.402485, 0.412407, 0.782917, 1.484947, -0.037251, -0.182209, 0.818755, -0.752826, -1.361026, -0.224473, -0.786495, -0.337032, -0.024335, 1.476177, 1.558745, 0.730699, 0.898962, 0.208134, 0.625520, -0.626367, -0.705826, -0.328081, 0.605201, -0.160502, 0.539831, 1.972374, -0.034331, 2.050551, -2.461537, 1.340929, 0.987335, 0.077570, 0.964674, 0.060022, 0.401048, 0.562366, -0.164197, -0.853479, 0.060564, -1.169291, -1.393309, 0.036078, 0.291377, -1.114785, -1.375868, -0.173506, -1.047170, 0.719237, -0.574785, 0.465380, 1.485833, 0.444959, -0.111356, 2.094701, -0.796435, 0.949621, -0.387097, 0.615823, 0.223979, 1.412757, -1.753966, -0.854528, 0.195152, -0.072121, -0.408125, -0.639675, 1.640380, -0.264383, 0.942384, -1.105404, 0.636892, -2.126686, -0.398001, 1.145781, -0.566528, 0.019865, 1.177432, -0.404812, -0.078592, -0.842312, -0.977921, 1.036064, 0.211817, -1.278424, 0.867370, 1.773746, -0.138783, 0.775386, -0.226110, -2.122933, -1.414846, 0.860200, 0.192827, 0.615382, -1.662209, 0.683720, 1.351479, -0.501524, -0.602880, -0.562767, -1.421763, 0.613905, -0.160742, -0.451996, 1.373596, -1.448803, 0.791751, 0.954087, 1.505326, -0.489842, 0.278651, 0.133711, 1.198739, -0.596750, -1.191966, 0.322845, 0.209959, -0.263423, 1.192762, -0.247592, 0.313061, -0.111129, 0.190426, -0.274155, 1.239091, -0.795242, 0.489753, -0.657899, -0.637458, -0.420472, 0.124802, 0.491656, -0.369999, 0.491144, 1.184396, 0.728578, -0.249263, 0.131374, -1.403980, -0.823579, 1.057944, 0.864929, -1.006140, 0.400170, -0.952953, 0.455485, 0.456473, 0.596633, -0.935910, 1.635045, -1.180352, 0.011210, 0.462678, 0.305256, 1.843430, -1.836093, -0.064625, -0.701225, 1.593321, 0.342594, -0.499462, 0.457017, 0.626418, 1.378629, 1.039347, 0.106710, -0.054440, -1.148081, -1.424614, 0.907090, -0.699315, 0.585000, 0.201226, 0.962739, -0.439679}, + { 1.010416, -0.309043, 1.204260, -0.509250, -0.243453, -0.304250, 0.890589, -0.069237, -0.347434, -0.074926, -1.067423, 0.192790, 0.342207, 1.649058, -1.355424, -0.985628, 0.231938, 0.226418, 0.851564, 1.461408, -0.294262, 1.242378, 0.408768, 0.050244, 1.266880, 1.243934, 0.480212, -0.555638, 1.137895, 0.777227, -0.542142, -0.290013, 1.253020, -0.073015, -0.041742, -0.838141, -0.515762, 2.065937, -1.567724, 0.004215, 0.456660, -1.553581, -0.395120, 0.178893, -0.606070, 1.127735, -0.873622, -1.919711, 0.536308, -1.121117, -0.513417, -1.242096, 0.097661, -0.287035, -0.091048, 0.504286, 0.267257, 0.524297, -1.253473, 2.057532, -0.179194, -1.746351, 0.430002, -1.655340, -0.958785, -1.788257, -1.084069, 1.391134, -1.217832, -0.473744, 0.115082, -0.245269, 2.285121, -0.151225, -0.322988, 0.918793, -0.752371, 1.050677, -0.491103, -1.104802, -1.630058, -0.852692, 0.300839, 1.131455, 1.387815, -1.689473, -0.986665, 0.049414, -1.362607, -0.621823, -0.401429, 0.760414, -0.273486, -0.887414, -1.535449, 0.511934, -0.929861, 0.540893, -0.279906, 0.802243, 0.292376, -0.965930, 0.949230, -0.546341, -0.781126, -1.077312, -0.949399, 1.314570, 1.659268, -0.748283, 0.259723, -0.340441, 1.441039, -0.791230, -0.263753, 0.892493, -1.030681, 1.131898, 0.580527, 2.000997, 0.975002, 0.839327, -1.587929, 0.630512, 0.002391, -0.074393, 0.608571, -0.142330, 0.952709, -0.874363, 0.696845, -1.815330, 0.656817, -1.486761, -1.534300, -0.701957, 0.943310, 1.042855, 2.358797, 0.416700, -0.017034, 0.433069, -0.011004, -0.173236, -0.115596, 0.051128, 0.663712, -0.548174, 0.872363, 0.145439, 0.285777, 1.566287, -0.238297, -0.006885, -0.774382, 0.366424, -0.080734, -2.710001, 0.439383, -1.002456, -0.970384, -0.961890, 3.490964, 0.809727, 0.353984, 1.477589, -1.467686, 0.020331, 0.503404, 0.536891, 0.696897, -0.395359, 0.115709, 0.150898, -0.031312, 0.225935, 0.020565, -0.542556, -0.114886, 1.732591, 0.326515, 1.062555, -2.410397, -0.866161, 0.208505, 0.010224, -0.489790, -0.514825, 0.534689, -1.110567, -0.256419, -1.165121, -0.304879, -0.167284, 0.255534, -0.315703, 0.504279, -0.942896, 0.567892, -0.047614, 1.399009, -1.589057, -0.862849, 0.455270, 0.558508, -0.785139, -0.707202, -0.258170, 1.988394, 0.935582, -0.071434, -1.880812, -1.282884, 1.029053, -2.880106, 0.488955, 1.022291, 1.500410, 0.260480, 0.020532, -0.444004, -0.375660, -0.502270, 0.753304, -0.406186, -0.074191, -1.072201, -0.897618, 2.885920, 1.723169, -0.358783, 0.066630, -0.757659, -1.462883, -0.099514, -0.781888, -0.163763, -0.942756, 0.870715, 0.216274, 0.900797, 0.441015, 0.201028, 0.096693, -1.345433, 0.379103, 0.099227, -0.432822, 3.191398, 0.541971, 1.613225, -0.349525, -0.656382, -0.138081, 1.126396, -0.956076, 0.981902, -1.798026, -0.484808, -0.327029, 0.987955, -2.120864, 1.276514, 0.166492, 0.170288, 0.748443, 0.865300, -1.319565, -0.861134, -1.036145, -0.812188, 0.586185, -0.943297, 0.052543, 0.318141, -0.596764, -0.990043, 0.508671, 2.002311, -0.078523, 0.777366, 1.667504, 0.572665, -0.247519, -0.155144, 0.788749, -0.204256, 0.507869, -0.522305, -0.084260, -1.252190, -0.405599, -2.904880, 0.866473, 0.807213, -1.101755, 0.083207, 0.243147, -0.177316, 1.830771, -1.146695, -0.543339, -0.860428, 2.267442, -0.820892, -1.197848, 0.083810, -0.010950, -0.609573, -1.276636, 0.437712, 0.604366, 0.008873, -0.960727, -0.070219, -0.815834, -0.986378, 0.640244, -1.569330, 1.293904, 0.421855, 2.012494, 0.209163, -0.497484, 0.937448, 0.319405, -1.394444, -1.720089, -0.918215, -0.985651, 0.200978, 0.032662, 2.146677, 0.040047, -0.273101, 0.641028, -2.034189, 1.873661, 0.342198, 1.407326, 0.044908, 0.492146, 1.636077, -0.035151, -0.442977, -0.077730, 0.134376, 0.310273, -0.200068, 0.592712, 0.162397, 0.254787, -1.377385, 0.094739, 0.962069, -2.171408, 2.162844, 0.690210, 1.388234, 0.005580, 0.342907, -0.349609, 1.667774, -1.066359, -0.238641, -0.780886, -0.539105, -0.991823, 0.255495, 1.042573, -0.658925, -0.967421, -0.178829, -1.322513, 0.420673, -0.093762, -1.528491, 1.015406, 1.081974, -0.654101, 0.981567, -0.791851, 0.237913, -0.282481, -0.353879, 0.583476, -1.119684, 0.186188, -0.189118, 0.947353, 0.223708, -1.960695, 0.139627, 0.586785, 0.764663, 2.363238, 1.484291, 0.198049, -0.420543, -0.735407, -0.736592, 0.431002, -1.498423, 0.426982, -0.397435, -0.046128, 1.021015, -1.644024, -0.943688, 0.239698, 0.999267, 1.369292, -0.529599, -0.509496, -1.287670, 0.657737, 1.846742, 0.325806, -0.695332, 0.203885, -0.615502, -0.926867, -0.550214, -1.127624, -0.750949, 1.449595, -0.968377, -0.300917, -0.131462, -0.938599, -1.472992, 0.264710, 0.426847, -0.377507, 0.774005, -0.954702, 0.858345, -1.091208, 1.021650, -0.966927, -0.017607, -2.281462, 0.694478, -0.219036, 1.151983, -1.491888, 1.730335, -0.233411, -2.592901, 0.513393, 0.739484, 0.114455, -0.832838, 1.741856, -1.559417, -0.774695, 2.040797, -0.513673, 0.109287, -1.782382, -0.910661, -0.640022, -0.499033, -0.936387, -0.334772, 2.180211, 0.207142, -2.018575, -0.251810, 0.617202, 1.474643, -2.439727, -0.425456, 0.779463, 1.000111, -0.949827, -1.597802, -0.093590, -2.137631, -2.357876, 0.276592, -0.524417, 1.264088, -0.303140, -1.017319, 1.798368, 1.219235, -0.320192, 0.521272, -0.588582, 0.768489, -0.452129, -1.092483, -0.418890, -0.421347, 2.300022, 0.317742, 0.835321, 0.264652, 0.556346, -0.570816, -0.507506, 1.522434, 1.569268, -0.162226, -1.202582, -0.595115, -0.351121, 2.119761, 0.278577, -0.660400, 0.003418, 0.192745, 1.515761, 0.148002, 0.363835, -0.954189, -0.088879, -0.003313, 0.045289, 0.243789, -0.383563, 1.576286, -0.667901, 0.659780, -0.798888, 0.159219, 0.226763, 0.200147, -0.774538, 0.426037, 1.979842, -0.205188, -1.222286, -0.578782, 1.437691, -0.065428, -0.053226, -0.286024, 0.952052, 0.214028, -0.375307, 1.022640, -0.723889, -0.845210, -1.581881, 0.611915, -0.669099, -0.704683, -1.868947, 0.538739, -0.569290, -1.133737, 1.699531, -1.026460, 1.083185, -1.867240, -0.363077, 1.097485, -0.092088, 0.244652, 0.794236, 1.793932, -0.053678, -0.950334, -0.333902, 0.706719, -1.946591, -0.649317, -0.707172, -1.545130, 2.081714, -1.454231, -2.440954, -0.054485, 0.351992, 0.465739, -1.089909, 1.598644, 0.819923, -0.835225, -0.389187, -0.941232, 0.236264, 0.728013, 0.519689, 1.364658, 0.273281, -1.466224, 0.223009, 0.174374, -1.082851, 0.335955, 0.376991, 0.403246, 0.452208, -1.205466, -0.210634, 2.257762, 0.038373, -1.617309, 0.815829, 0.839546, -0.292490, -0.025208, -0.686145, 1.452747, 0.748356, -1.212110, -0.951310, 0.451716, 0.208185, 0.002344, -0.184100, 1.092598, 2.034609, 1.186808, 0.596469, 0.812490, 1.312180, 0.402173, -1.333587, 0.797609, 0.979228, 0.479650, -0.601317, -0.773677, 0.864561, -0.156502, 0.578619, 0.002637, 0.302770, 1.475414, 0.102147, 0.650406, -0.542641, -0.498662, -0.688441, 1.057207, 0.680153, -0.164897, -1.589375, -0.626532, -1.350541, 0.094207, 0.024144, 0.033231, -2.116893, -0.139615, 0.633968, -0.392008, -0.621979, -1.031888, -0.006171, 0.341959, -0.304727, -0.675608, 0.373853, -2.475079, -1.425560, 1.673913, 1.008796, 0.016358, -1.151680, 2.144601, 0.477443, -0.887749, 0.980220, 0.166570, 0.206412, -0.513800, 0.436815, 0.405896, -0.040816, 1.110727, 1.600247, 1.465791, -0.788530, 1.201879, -0.366949, 1.394733, 1.070748, 0.150472, 0.659714, -0.757924, -0.172787, -0.609503, 1.250226, 1.298262, 0.451066, -1.359456, -0.117556, -0.794953, 0.310740, -1.004179, -0.945177, 0.520098, -1.132981, -0.797592, -0.081408, 0.637807, -0.984319, 0.346406, -0.824686, -0.397321, 1.026535, -0.835315, 0.056043, -0.146760, 1.796133, -0.641363, -0.736158, 0.433930, 0.389400, 0.019762, -0.834503, -0.034398, 0.239323, 0.368093, 1.294903, 1.316761, -1.682339, -0.124992, 0.770280, -0.343303, 1.362679, 1.640580, 0.752038, -0.851014, -0.421579, 0.435795, -0.778787, 1.039243, 0.469155, 0.108753, 1.366291, 0.841241, 0.210745, 0.182440, 0.200677, 0.436389, -0.237686, 1.753419, 0.489163, 1.276351, 0.591933, 0.460519, -1.152828, -0.717730, 1.502052, -0.607565, 1.548253, -0.604468, -0.727911, 0.644048, -0.005045, 0.922403, 0.088790, -0.102192, 1.039948, -1.606114, -1.428640, -1.262117, 0.299861, -1.114343, -0.265729, 0.125110, 0.030758, -0.083524, 1.094934, -0.270417, 0.472369, -0.059708, 0.628177, -0.107136, -0.324765, -0.952523, -0.046930, 1.523735, 0.272287, 1.725026, -1.205695, 1.062197, -0.711978, -0.146690, -1.423114, -0.778422, -1.217096, 1.715939, 1.576324, 0.051942, 0.204556, -0.932816, 0.492694, 2.438417, 0.888981, -0.527529, -1.933757, 0.646135, -0.614193, -1.087856, -0.557064, 0.185985, 0.511061, -0.390883, -1.596592, 0.978180, -0.946558, 0.721499, -0.743225, 1.841631, -0.959513, -1.604350, -1.784055, 0.725962, 0.975490, 1.898428, -0.818010, -0.731995, 0.577568, 0.418148, -0.367793, -0.613654, -0.011497, -0.263782, 1.711323, -0.300193, 0.876097, -0.997962, 0.858011, -1.095400, 0.962259, 1.133087, -0.328039, -0.213810, 0.205992, -0.244006, 0.058983, 0.718961, 0.958461, -1.003019, -0.751842, -0.242856, -0.264801, 0.244261, -1.048357, 0.014919, 0.477452, 0.186028, -0.173006, 1.745380, 0.585445, -1.638158, 0.338894, -0.284006, -3.493119, 0.571100, -2.741557, 0.451146, -0.654038, 0.037411, -0.134293, -1.581769, -0.902480, 0.966946, -1.354360, 0.755069, -0.544637, 1.839966, -0.420417, -1.721993, -0.579371, 0.065471, 0.672800, -0.917232, -1.586558, 1.025455, 0.606238, -0.381239, -0.455500, -1.205888, 0.774092, -1.940934, -0.782034, -0.327826, 0.354076, -0.025557, 0.920551, -1.810738, -1.925011, -0.107626, 1.147085, -2.321892, -0.513339, 0.409429, 0.534713, -0.280586, -0.040125, -1.029857, -0.014253, 0.214418, -0.967326, -1.053586, 0.445565, 1.076704, -0.012910, 1.895640, 0.311183, 1.685511, 0.450028, 1.014505, -0.650555, -0.798246, -0.998815, 0.520359, -1.273114, 1.390960, -0.561613, -0.022688, -0.053627, 0.057131, 1.717007, -1.262933, 0.907290, 1.256241, -1.131723, 1.599953, -0.253555, -0.896650, -1.552177, -1.338289, -0.957251, -0.388387, -0.722031, 0.028977, 1.396168, 0.081871, 0.537319, 0.636286, 0.700353, -0.279753, -0.983189, 0.385888, 0.592412, 2.058786, -0.798062, 0.712257, -0.119313, 0.028472, -1.269644, 0.515530, -0.395772, 0.756266, 0.294836, 0.601913, 0.971878, 3.165786, 1.497066, 1.381218, 0.637049, -1.192745, 0.351044, 1.912264, 1.321968, 1.728423, -0.027998, -1.353320, -0.738639, 0.903697, -0.574246, 0.218770, -1.543242, -1.997329, -0.083894, -0.290574, 0.150222, -0.875749, 0.292958, 0.273309, 0.066613, -0.746650, -0.288609, 0.183678, 0.480538, -0.604838, -0.770552, -1.327995, 2.446121, 0.242837, 0.035695, 1.264200, 1.304335, -0.436617, -1.002368, -0.122616, -0.914776, 1.051786, 0.346259, 0.174848, -0.360196, 0.509331, -0.763519, 0.094443, 0.748851, -0.479733, 0.048598, -0.470991, -0.880891, 0.528085, -0.831811, -0.168548, -0.756303, 0.843103, 0.528023, -0.100302, -0.176102, -0.588082, -0.602964, -0.069620, -1.392507, 2.136610, -0.253163, 0.445596, -0.072787, 0.231489, 1.256343, 0.922688, 2.098324, 0.431670, -0.616264, 0.397559, 0.981272, -0.702541, 0.411561, -0.789860, -0.101933, 0.820929, -1.238067, -1.383445, -0.584946, 1.315012, -0.683212, -0.807401, 0.221157, 2.572555, -0.558486, -0.466617, 0.650243, 0.404331, -0.637288, -0.501941, -0.107137, -0.285530, 1.819867, -0.607296, 0.902662, -0.723361, -0.813568, 1.119328, 0.994681, 1.631943, -0.647467, 0.099469, 0.796308, -1.118404, 1.282666, -1.946691, -0.066002, -0.374988, 0.805715, 0.080832, -1.163378, 0.997132, 1.825287, 0.480180, 0.081590, 0.105172, -0.479911, 0.234662, 1.346949, -1.093379, 1.214430, -1.112203, 0.465987, 0.728168, -1.621110, 0.583074, -1.183695, 0.156311, 0.066771, 1.204989, 0.914211, 1.242568, -1.955169, -0.280042, 0.315662, 1.577902, -0.259655, -1.075322, 0.256076, 2.150965, -1.336083, 0.290708, 0.768369, -0.143799, -1.274200, 0.022063, -0.884434, -1.664843, 0.172083, 2.303315, 0.683597, 0.147329, -0.366698, -1.719324, 0.051357, -0.347740, 1.275837, -0.218232, 1.170323, -1.662511, -0.687318, 0.907392, 0.430589, -0.053352, 0.889480, -1.253622, 0.450284, 0.249036, 1.302276, 0.586593, 0.053065, 1.568096, 1.770037, 1.454865, -0.548367, -1.565844, 1.775465, 0.249632, -1.039956, 0.795342, -0.511277, 0.081967, 0.445284, 1.067112, 1.123052, 1.408181, -2.405706, 0.057144, -1.374030, 0.061260, 0.312595, 0.676322, 0.931774, -0.067539, -1.043824, 0.201093, 0.379765, -1.606246, -0.725767, 0.028409, 0.045244, -0.303882, -0.888580, 0.192998, 0.661582, 1.439774, 0.904899, -0.210575, 0.620243, -0.383762, 0.113186, -0.268947, 0.481107, -1.114118, 0.114565, -0.165559, -0.725235, 0.298934, 0.381351, 1.024736, -1.153659, 0.896177, -1.690750, 1.079421, 0.676033, -0.371577, 0.218614, 1.335192, -0.332709, -0.350457, 0.599502, 0.205720, 0.407148, -0.323578, 0.655907, 1.158795, -0.017071, 0.088476, -0.347644, 0.546670, 0.137762, -0.522284, 0.081650, 0.040479, 0.203716, 0.827086, 0.796083, 0.814420, 1.816166, 0.220131, 2.391267, 0.221054, 0.447738, 0.709133, -0.157327, 0.935208, 0.268604, 0.940662, 2.119045, 0.634606, -0.404540, -0.171930, 0.677152, -0.771961, -1.217854, 1.265833, -1.457031, 1.158979, 0.612943, 0.231427, 0.650473, -1.515571, 0.606932, -0.109494, 1.376330, 0.432135, 0.660849, 0.462841, -0.738863, -0.796471, -0.540915, -1.058321, -0.234455, -0.413326, -0.652293, -0.346293, -0.330266, 1.018993, 1.047712, -0.030798, 0.832906, -0.588213, -1.710313, 1.144080, 0.357935, 1.446213, -0.685933, -0.681213, 0.642061, 0.689908, 0.172521, -0.118253, 1.743970, -1.124316, 0.751217, -0.952258, 2.134021, 1.000273, 0.051863, -0.683537, -0.394543, 0.059142, 0.806354, 0.655425, 0.216655, 1.658706, 1.077564, 1.337428, 1.173931, -0.376355, -0.718538, -1.263968, 0.124676, 0.628591, 0.649896, 0.984522, -1.142577, -1.047129, -1.069562, 0.510604, 1.082319, -1.788132, 1.654094, -1.035538, -0.450806, -0.138076, 1.795855, 0.547535, -1.066553, 0.701321, 0.646998, -1.165189, 1.381142, 0.224558, -0.814839, -0.257461, -0.317717, 0.791956, -0.521247, 0.182536, 0.476384, 0.662352, 0.868469, 0.499103, -2.276606, -0.700339, -0.799431, 1.791469, -1.278518, -1.327601, -0.224936, -0.342351, 0.316049, 0.778886, 1.051512, -1.335621, -1.149686, 1.686925, -0.254368, 0.635095, -1.187148, -1.010278, -0.492819, -1.169926, 0.682603, 0.053245, -0.503127, -0.189006, -0.779797, 0.485712, -0.416719, -0.221808, -1.254290, -1.792164, 0.619780, 0.047934, 1.480217, 0.872310, 1.030734, 0.379362, -1.452760, -1.212062, -0.870231, -1.038103, 0.057124, 0.022883, -0.468857, 0.218550, 0.576703, -0.831564, -0.286510, 0.397877, -0.748201, 0.555598, -0.909750, -0.509538, -1.310334, -1.292420, -0.525875, -0.786236, -0.624085, -0.385486, -0.801028, -0.009571, -2.257022, -1.588910, -0.528587, -0.828641, 0.644814, -0.142657, 0.957285, -0.780736, 0.592382, 0.070177, 0.684669, -0.107393, 2.244922, 1.474520, -0.684866, 2.321015, -0.442424, -0.730348, -0.938591, -0.458850, -0.923669, -0.693816, -0.894782, 0.506693, 0.379831, 0.129668, -0.836614, -0.506009, 2.072190, -1.019043, 0.188217, 1.001233, -0.508240, -0.736047, -0.980374, 1.593231, -0.206044, -0.012771, -0.188056, -0.340899, 1.454946, 1.451661, -1.756262, 0.466374, 0.096658, -0.114193, -0.883717, 1.762851, 0.023497, -0.395106, -0.023293, -0.685980, 1.715271, -0.710072, 0.244675, -1.650159, 1.470560, 0.044509, -0.056639, 0.292866, 0.350013, 0.444982, 0.943564, 0.160168, -0.228492, -1.001426, -0.134507, -0.844040, -0.357401, -0.605854, 0.355575, 0.505713, -0.134223, 0.028477, -0.382544, -0.423431, -0.910372, -0.209491, 0.495415, -0.032237, 2.009180, 0.147206, 0.717580, 1.622344, 0.940787, -0.381611, -0.541310, 1.625242, -0.099227, -1.857770, -0.106963, -0.214531, 1.949480, -1.704526, -0.662712, 0.514992, 0.575963, 0.093116, 1.884132, -1.016716, 0.067718, 3.525071, 0.722898, -1.378108, 0.731708, -0.635515, 0.602832, 1.663256, 2.197930, 0.257048, 2.505107, 0.566762, 0.979314, 1.213718, -1.514245, 1.260772, -0.879602, -0.064179, -0.955029, 0.156186, 0.711772, 2.095929, 1.221367, 1.021019, -1.947429, 0.053563, -1.571172, -1.712534, -1.337238, 1.826482, 1.555171, -0.361187, -0.705218, 0.431315, 2.707319, 0.156639, -2.006769, 0.266519, 2.519930, 0.064009, -0.398410, 0.552100, 0.077366, -1.404637, -0.117074, -0.383022, 0.652414, 1.471821, -1.685982, -0.765709, -0.215678, 0.869112, 0.550228, -0.767380, -1.664271, -0.183127, -0.474050, -1.057527, -0.801472, 0.136443, 0.518924, 0.837671, -0.700037, 0.457764, -0.575128, -0.568784, 0.192139, 0.339454, -1.129597, -0.342714, 0.669315, -0.354307, -0.901839, -0.793999, -0.439380, -1.260784, -1.059923, 0.807124, -1.475509, -0.997639, 1.061441, 1.780895, -0.833064, 1.202443, 0.153890, 1.120824, -0.952271, -0.640651, 0.888717, -0.749905, 0.980772, -0.165455, 0.840177, 0.506043, -0.074439, -0.646241, -1.196535, -1.473457, -1.025843, 1.384802, -0.205239, 0.933269, 0.852717, -0.631608, -0.605848, 2.204123, 0.899414, -0.812970, -0.281677, 1.452321, -0.339074, 0.472734, -1.125468, 1.179123, 1.223917, -0.570790, 0.776367, -2.283300, 1.614032, -0.165724, 1.079280, -0.474152, -0.786561, 0.160983, -0.176196, -1.804664, 2.097442, -1.171600, 1.923921, 0.509796, -0.559737, 0.319586, 0.958536, -0.678699, -0.386368, 0.027626, 1.265167, -1.345930, 0.254827, -1.527831, 0.141637, 1.593094, 0.156084, -3.056865, -0.245565, -0.465173, 0.727681, 1.416753, -0.983813, 0.874930, 1.614263, -0.031769, 1.114022, -0.389009, -0.147253, 0.392513, 0.602372, 0.213457, 0.505253, -0.745142, -0.377469, 0.915819, -0.554277, -1.101924, -0.025209, -1.138321, -0.523159, 0.088973, 0.581748, 0.911635, 0.805386, 0.190995, -1.566399, -0.871323, -1.646309, -2.083198, -0.699157, -1.936154, -1.039101, 0.351493, 2.543581, 0.380145, 0.636793, -1.232949, 0.223535, -0.658429, 0.393315, 1.096874, 0.389380, -1.570974, 0.563085, 1.026896, 0.109118, 0.579006, -0.678324, -1.216875, 1.789480, -0.229035, -1.392942, -0.950321, -0.088313, 0.400355, 0.280385, 0.505757, 1.058196, -0.443377, 1.683682, 1.278953, -0.216402, 0.697448, -0.274509, 0.748989, 0.398882, 0.231902, -1.297925, -0.232622, 0.001290, 0.306747, -0.281876, -1.783599, 1.066509, 2.259376, -0.599245, 0.296969, -1.174173, -0.658929, 1.784487, -1.824762, -2.342735, 0.196985, -0.489315, 0.714056, 1.609772, 0.474250, 0.233969, 0.538214, 0.174779, -0.372400, -0.485277, 1.761914, -0.679665, -1.650604, 1.172769, -1.172119, -0.890124, 0.904746, 0.702208, 0.035457, -0.995319, -0.538248, 0.490332, -0.525949, 0.780202, 1.046797, -0.530066, -0.426790, -0.908589, 0.427402, -2.026588, -1.563893, -1.427157, -0.580784, 0.542865, -0.152298, -0.781005, -1.404719, 1.548622, 1.025263, -0.377098, -1.015003, -0.313740, -0.914655, 0.060810, -1.219147, -1.970471, -0.330691, -1.191620, -1.711774, -0.739467, 0.072992, -1.195651, -0.395240, -0.254014, 0.261251, -0.900271, 0.167436, 0.827294, 0.470323, 0.484870, 0.545093, 1.111824, -0.399583, -0.044468, 0.666031, -1.789258, 0.257656, -0.811399, -0.462023, -0.579402, 1.022489, -0.251694, -0.989028, 0.134830, -0.886865, -0.871208, 0.229175, -1.430037, -0.883812, -0.450496, -0.607847, 0.393400, 0.481358, 0.226084, 0.283049, 1.575148, 0.307526, -0.218971, 0.021006, 0.819853, -0.019379, -0.094840, 0.731058, 0.131002, -1.785889, -1.045723, -2.418310, -0.029961, 1.103737, 0.942718, -0.632671, 1.848520, 0.420746, -1.888876, 0.552942, 0.566347, -0.718096, 0.712276, -1.828897, -0.499452, 0.116303, 1.315645, 0.884146, -0.323418, 0.463636, -1.514444, 2.352086, -1.365315, 1.239967, 0.588737, 1.638455, 1.129810, -0.438809, -0.394888, 0.653613, -2.868885, -0.838789, -0.823126, -0.196717, 0.202075, 0.552049, 1.482252, 0.075047, -0.418021, -0.281258, -0.142049, -0.114351, 0.475819, 1.024567, -1.324666, 0.157907, 1.319639, 0.095391, 0.946895, 0.500446, 0.880789, -0.247725, -0.323405, 0.370860, -0.254428, -1.458892, -0.402498, -0.987412, -0.332088, -0.220281, 0.403325, 1.553383, -1.556870, 0.351992, 1.844337, 1.698081, 0.375805, -1.070631, 0.784901, 1.909826, 1.023797, -1.802303, -2.211247, -1.431070, 0.467244, 1.438755, -0.427119, 0.380609, -0.415295, 0.995989, -0.840233, 0.583054, -0.333990, 1.139243, -1.187958, 0.129554, -0.474073, -1.841934, 0.728499, -2.114883, 0.472777, -0.971807, 0.806532, 0.016578, -0.662566, 0.052372, -1.091360, 0.426197, -0.371913, -2.076143, -1.251437, 0.004846, -0.717205, -0.172040, -0.128197, -0.507114, -0.676108, -0.402204, 0.421484, -0.224705, -0.431267, 0.358302, 0.252345, 0.196528, -1.468621, -0.296069, -0.170987, -0.397447, -0.022102, 0.325280, -1.296807, 1.482439, -1.817771, 0.571995, 0.149197, 0.202421, 0.509201, -0.134834, -1.096534, 1.098068, -0.033935, -1.436609, -0.213835, -0.501434, -1.048211, 0.205513, 1.223317, 1.716906, -1.105310, 0.729498, -0.203941, 0.827914, -0.378645, 0.011730, -0.875761, 1.080804, -0.706079, -0.345244, -1.040379, -0.165118, 0.389640, 1.530612, -0.123796, -0.672278, -1.786623, -1.908797, -1.568014, -0.479456, 0.500370, -0.066324, -0.336116, -0.015939, -1.132344, -0.374028, -0.663659, -0.464168, -0.394359, -0.998954, -0.312372, -0.747966, -0.418536, 0.658967, 0.164697, 0.695017, -0.893809, -0.711494, 0.143180, -0.318031, -1.098444, -0.874813, -1.384449, 0.432204, 1.213473, 0.835967, -0.384356, -0.441638, 1.099433, 2.306718, -0.693518, -0.625641, 0.683555, -1.544752, -0.243667, 0.639205, 2.021758, -1.080002, -1.088442, -0.313440, -0.644608, -0.300581, -0.652714, -0.806812, -1.068784, 0.046435, -2.118585, -1.115179, 0.182071, -0.558630, -0.702132, -0.137491, -1.977500, -0.461848, 0.751477, 0.994610, -1.775799, 1.104487, -0.330515, -0.909022, 1.179385, 0.035512, 0.437703, 1.633006, 0.182793, -0.691155, -0.152167, 0.990307, -0.233173, -0.497868, 1.240438, 1.607911, -0.900660, -0.646264, -0.811764, -1.207551, 1.981435, -1.008740, 1.519909, -0.522556, 0.084641, -0.759907, -1.892481, 0.031610, 0.473053, -1.412629, 0.500290, 0.231998, -0.605847, 0.161867, 2.002990, 0.542543, -0.321592, 0.711354, 0.380658, -0.139414, 1.558352, -1.020395, 0.987752, 0.965388, -0.047861, 0.290719, 0.996668, -0.416594, 0.596539, 1.280106, -0.254135, 0.973754, -1.101897, 0.702517, 1.910838, -1.472545, -0.045363, 0.229224, 0.301390, 0.670903, -0.952184, -1.607860, 0.072578, -1.581107, 0.443338, -0.222851, 2.756876, -1.310119, -0.020809, 0.791069, 0.861844, 0.734797, -0.392561, 0.854192, -0.659934, -0.003381, 2.028399, -0.708423, 0.013903, 2.381469, 1.181861, 0.618737, -0.293065, -0.506139, -0.097306, 0.073013, 0.344808, 0.914580, 0.127076, 0.590228, -1.261667, -0.371993, 1.151965, 1.141296, 0.410996, 0.351491, 0.064431, -0.838813, 0.972374, 1.053544, -0.002942, 0.714476, -0.322011, 1.801567, 1.384604, -0.836596, -0.046222, 0.191870, 1.642402, -0.096622, 0.282654, 1.375070, -0.477836, -0.661633, -0.120481, -1.583234, -1.006868, 0.183058, 1.083475, 0.698355, 1.979010, 0.540444, 0.961085, 0.324660, 0.147543, 2.509147, 1.010739, -0.683794, 0.500731, -1.610149, -0.871616, 2.896942, 0.924603, 1.219212, -0.044985, 0.637004, -1.119053, -0.294312, -0.747165, 0.960623, 1.028422, 0.649897, -0.378474, -0.445009, 2.368332, 0.457036, -0.937630, -0.854273, 0.696293, 0.129350, -0.366837, -0.396054, 0.261006, -0.925259, -0.456275, -0.001663, -0.517747, 0.303678, 0.533820, 0.920562, -0.138332, 1.458676, 0.439266, -1.523234, 0.684625, 0.245576, 1.128591, -0.651955, -1.335039, -0.297670, -1.723721, -1.224969, 0.960434, 1.007089, -2.137786, -1.267744, -0.262784, 0.990362, -0.555036, -0.793861, 0.872762, -0.207125, -1.447256, 1.369942, -0.816625, 0.044462, -0.616905, 0.695319, 0.004452, 0.448508, -1.543660, -0.683089, -0.201652, 2.196388, 1.030919, -1.469105, 0.602515, 2.539225, -0.089296, -0.508063, -0.031555, 1.035785, 0.169931, -0.986887, -0.385489, -0.817233, -0.031580, -0.626486, 0.200654, -0.182102, -0.351826, -0.187926, -0.383140, -0.385970, -0.585135, -0.163542, 1.713342, -0.921847, 0.167827, -0.805821, 0.548464, 1.375206, 0.921165, -0.575711, -0.440952, -0.683945, 0.338662, 0.565328, -0.364061, -1.173212, -1.258109, -0.390788, -0.818243, -1.455010, -0.524701, 0.740669, -1.490082, -0.741762, -0.119025, -0.893809, -1.392061, 0.332242, 0.382190, 0.641684, 1.529958, -0.659197, 0.334477, 1.125260, 0.413570, -0.346402, -0.007930, -0.737436, -2.397323, -2.118458, -0.552373, -0.937271, -1.579488, 0.203219, -0.290763, 0.094903, 1.809901, 0.799022, -1.141322, 0.394433, -0.196285, -2.278059, 1.603311, 0.297939, -0.114695, 0.502298, 1.005838, 1.324990, 0.487013, 0.987532, 0.463202, -0.157926, 1.739709, 0.155327, 0.343587, 0.029521, 0.140078, 0.155230, -0.561813, 1.011946, 0.007880, -0.128152, -0.319394, -1.001673, 0.808477, 0.710711, 0.635156, -0.531456, -1.079610, 1.531201, -1.183632, 1.119258, 1.566969, 0.455719, -0.043641, 0.129101, 0.066554, -0.116065, 2.492334, 0.243415, 0.990687, 0.224493, -0.051058, 0.167348, 0.657801, 0.932677, 0.252847, 0.510985, -3.157595, 1.625633, -1.275724, 0.005677, 0.751649, -2.079681, -0.140341, -0.248205, -0.477035, 2.683731, 0.255939, -1.219899, 1.245760, 2.048002, 0.559533, -1.503335, 1.179665, 0.350367, -0.248408, 0.650341, 1.280945, -0.862085, -0.593117, 0.783220, 2.210081, -1.099606, 0.913108, -0.788223, -0.414219, -0.367210, 2.356318, -1.025373, 0.451879, 1.041746, 1.205814, 2.762030, 0.266384, -1.372844, 1.837037, 0.433872, -0.025650, 0.283814, -1.612595, -0.100760, 1.025159, 0.293806, 1.239109, 1.023700, -0.289077, 0.222629, 2.065078, -0.175527, -0.116824, -0.864729, 0.227295, -1.914245, 1.564581, 2.536207, 0.276864, -0.425854, 0.084087, 1.500714, 0.725067, -0.392997, 0.214902, 0.324331, 0.179123, 2.785388, 0.888026, -0.525624, 1.469832, -0.349266, -0.274373, -1.148010, 0.579981, -0.692619, -0.040625, -0.993343, -0.406150, 1.506176, -0.497475, 0.789098, -0.035790, 0.990151, -0.039079, -2.705557, -1.094666, -0.625143, 0.804866, 0.219521, 0.081206, 0.511616, 0.726750, 0.152445, 1.195558, 0.426885, -1.665915, 0.375987, -0.350676, -0.564595, 0.339522, 0.427084, 1.657469, 0.568936, 3.105310, 0.765127, 0.788472, 0.370094, 0.804437, 0.592568, 1.480782, -0.709450, 0.465543, -0.667039, -0.368412, 0.476881, 1.994036, -0.982412, -0.684944, 0.431290, -1.330208, -0.848735, 0.612638, -1.417809, -0.007506, 0.773699, 1.428895, 0.691483, 0.830463, -1.282452, -0.566430, 0.026518, 2.121457, 1.746775, 1.906468, 0.396993, 0.159653, -1.335027, 0.584783, -0.294817, -1.022833, -0.174066, -0.783860, 1.334226, -2.058365, 0.461409, 1.824046, -1.420278, 0.421575, 1.330390, 0.021946, 1.271346, 1.073289, -0.105101, -0.769342, 1.104624, -0.229109, -0.346910, -0.249460, -1.416018, 0.504529, 1.904952, 1.211589, -0.627354, -1.145866, -2.263822, 0.023647, 0.537481, 0.625102, 0.166266, -0.458749, 0.852503, -1.423139, 0.572783, -1.070083, -0.914595, -0.632868, -0.384522, 1.447742, 0.305189, 0.987366, -1.565554, -0.627675, -0.259939, 0.005226, -0.907356, 0.646443, 1.209102, -0.529064, -1.343631, -0.919577, 0.518216, -0.818729, -0.660674, -0.002334, 0.152368, 0.430964, -0.908601, -1.041438, -1.008916, 0.369467, -0.651854, -0.537265, -0.574869, -0.261072, -2.369316, 0.229630, -0.322115, 0.325665, 0.050208, -1.428625, -0.671835, 1.119180, -0.391970, -0.254049, -0.291748, -0.491692, -0.143579, 0.327894, -0.086655, 0.688373, -1.438234, 0.041709, 0.678302, 2.927514, -0.987963, -0.216131, -0.995992, -0.615756, 1.755934, -0.006421, 1.098392, 0.324436, 1.007182, 0.368347, -0.592884, 0.088959, -0.563451, 0.485165, 0.992092, 2.499524, -0.623244, -0.018389, -1.874109, -0.738346, 0.181017, 2.217338, -0.683366, 0.620883, 1.017413, 1.040897, -0.979345, 2.010843, 0.792239, -0.297833, 1.220630, -1.694964, -0.612575, 0.796962, 0.549168, 0.620890, -0.571573, -0.570756, -0.906425, -1.012280, -1.518525, 0.588146, -0.044602, -0.206276, -0.228919, 0.141782, -0.215266, 1.747399, -0.909909, 0.987336, 1.915157, -0.867561, 0.060568, 0.885174, 1.395962, 0.550065, 1.581690, -0.164328, -0.459357, 0.990657, 1.457520, 0.238631, 0.411438, 0.089105, 1.345971, -2.658618, 0.135135, 1.049907, -1.694229, 0.177401, -0.248113, -0.291922, -0.261910, 1.064905, 0.456701, -0.250302, 1.075610, 0.421758, 0.962856, -0.984678, -1.382609, 0.803392, -0.333360, -0.215848, 0.871534, 0.849590, -0.722227, 0.013032, 0.314628, 0.446570, -0.774570, -1.025838, -1.132255, -0.456291, -1.881487, 0.452940, 0.834990, 1.214516, 0.425363, 0.682928, 1.140494, 0.971782, 1.246880, 1.059481, 2.242805, -0.522573, -0.171542, 1.104010, -0.245134, -0.413827, 1.077239, 0.080880, 1.530349, -0.927708, 1.878834, -1.520821, -0.723451, 0.117842, 1.087706, -1.102160, -0.041194, 2.224988, -0.534364, -0.029992, 2.730592, 0.420793, -0.204795, -0.889640, 1.034558, -0.814875, -0.111423, -1.609026, 1.293927, -1.170157, -0.899608, -0.678674, 0.576887, 0.292821, -0.396618, 0.248343, 0.100238, -0.578918, -0.306456, -1.071213, -2.044917, 1.086225, -1.354019, -0.466433, 0.196035, -0.721771, 1.054357, -0.543856, -0.162560, 0.394111, 0.376948, -0.288080, -0.113722, -2.283901, -0.007702, 0.284499, -0.314419, -0.204461, -0.249654, 0.302865, -0.020056, -1.126304, -1.943631, 0.414700, 0.033138, 0.850032, -1.056158, -0.984817, 2.012539, -1.162767, 0.036114, -0.123424, -0.286858, -2.160591, -0.655729, 1.186937, 1.005903, -1.537253, 0.245097, -0.480056, 1.414874, -0.409645, 1.219627, -0.008330, 1.037111, -1.878316, 0.539800, -1.676014, 0.382768, 1.174856, -1.649877, 0.052651, -0.030654, -1.212355, 0.925200, 0.383778, 0.182420, -0.404893, 1.877626, 1.750972, -0.250133, -0.550591, 0.357721, 0.659463, -1.695663, -0.358620, -0.502560, 0.028817, -0.886939, 0.655762, 2.196385, -1.005713, 0.434417, -0.058091, -1.195793, -0.239609, -0.272780, 0.786638, -0.184375, 0.102892, -1.295292, -0.209359, -0.617078, 0.386488, -0.311778, 0.136317, -0.097341, 0.925262, 0.548278, 0.267836, -0.753031, 0.039780, 0.393223, 1.533396, -0.700570, -0.177551, -0.479102, 1.300496, 0.270123, -0.605122, 1.346603, 1.735063, 0.558938, 0.331713, -1.125230, -1.433617, -0.433647, -0.787385, 0.605659, 0.637913, 2.521290, 1.358994, -1.368538, 0.399753, 0.456260, -3.023672, 0.617869, -1.571912, -0.761572, 0.080310, 1.729928, 0.867082, 0.459157, -0.547153, -1.356668, -0.009079, 0.627500, 0.687771, -1.691219, 0.389028, -0.627658, 0.336266, -0.791690, 1.674377, -1.870130, 0.392219, 0.206221, -2.770966, 0.430380, -0.326570, -1.941549, -0.680329, 0.038956, -1.129796, 0.102337, -1.017789, -0.454172, 1.625192, 0.133464, -0.386068, -1.962193, -0.543869, 3.229228, 1.006537, 0.075903, -1.022170, -1.696462, 0.121248, -0.098383, 1.102084, -0.329555, 1.556723, 0.176763, 0.166727, 0.174999, -0.902615, -0.179858, 0.589487, -0.563771, -1.519436, 0.462207, 0.571710, 0.333565, 0.565644, 0.707029, 0.110245, -0.197771, -1.519380, -0.374365, -0.850962, -0.618874, -0.840363, -0.681834, 0.237797, 0.454331, 2.300648, 2.177878, -0.170240, -0.974967, 0.768538, 1.017157, 0.482455, 0.544419, -0.929654, 0.337360, 0.109592, 1.589580, 0.092464, -0.107643, -1.024489, -0.784592, -1.902071, 0.051787, 0.236157, -0.076378, -0.613753, -2.189075, -0.036911, -0.896163, 1.064895, -0.318347, -1.663570, -0.730439, 0.243153, 0.926481, -0.135915, 0.408778, 2.341446, 1.402325, 0.433459, -0.406470, -1.704017, -1.506342, 1.745454, -0.979293, -0.391387, 1.269153, -0.822313, -1.316674, 0.208462, -1.266113, -0.197000, -0.138077, 0.361245, -0.991852, 0.643091, 0.862622, 0.514414, -0.684923, 0.400014, 0.372363, 0.237329, 0.690028, 1.389023, -1.183007, -0.496359, -0.240756, 1.402574, 1.365471, -0.706577, -1.590050, -0.468826, -0.429029, -1.035070, 1.182868, -0.095812, 2.214039, -1.061791, 0.964292, -1.674021, -1.432026, 0.531377, 0.264864, 0.383192, 0.700450, 0.218761, 0.680145, 1.332157, 1.554132, -1.147946, -1.541285, -0.236223, -0.239067, -0.997370, 1.091664, -0.158923, -0.992974, 0.674797, 0.564022, 0.020085, -0.175621, -0.492040, 0.718887, 2.247444, -0.779793, -0.459320, -0.704878, -0.742369, 0.494698, -1.567200, 0.999634, -1.530236, 1.176230, 0.013777, 1.696121, 2.266544, 1.154337, -1.664384, -0.017695, -0.067958, -0.814701, -0.420535, 1.080683, -2.071410, 1.082735, 1.463830, -1.226632, 0.608441, 0.342547, -1.119508, 0.950543, 0.783880, 0.537984, -0.649137, -0.140676, -1.036698, -1.017165, -0.561600, 0.968917, -1.208144, 2.054611, 0.040074, -0.360119, -1.252352, -0.141828, 0.438467, -0.147142, -1.929617, -0.125146, 0.253362, 1.048105, -0.585618, -0.424878, 0.311184, -0.408742, -0.914687, -1.744090, 0.072903, 0.052567, 0.978871, -0.886133, -0.284516, 0.273249, 0.404913, 0.649349, -1.088217, -1.308082, -0.126900, 1.271768, -0.846192, -0.709852, -0.734048, -0.074744, -1.895451, 0.068283, 1.643967, -1.231534, 0.207526, 1.787302, 0.449402, 0.254738, -0.281204, 1.986037, -0.513545, -0.701200, 2.271109, -1.010963, -1.541573, 0.016110, 0.000358, -0.457372, -0.332379, 1.443973, 0.964581, 1.240194, -0.359747, 2.603577, 0.543551}, + { -0.107564, 0.567111, 1.507631, 0.089833, 0.253529, 0.260600, -0.521284, -0.767698, 0.098728, 0.351691, -0.664017, 0.848860, -0.426352, -0.692066, 0.764174, -0.947062, -1.025621, 0.769093, 0.717698, -1.419516, 0.048386, -0.134874, -1.191155, -2.653970, -2.372529, 0.100891, 0.345958, 1.523596, -0.069364, 1.092213, 0.019611, 1.726048, 0.129839, 0.974656, 0.473685, 2.006704, 0.409018, 0.168479, -2.377246, 0.313185, 0.855228, -0.949149, -1.138021, 0.295935, 0.098001, 1.314375, 0.240212, 0.028415, -0.801537, 1.333266, -2.177311, -1.797675, 0.924819, 0.163660, -0.303012, 1.213384, 0.380437, -0.174758, 0.659786, 0.332976, 0.893246, -0.662980, -0.607364, -0.475822, 0.030489, -0.747158, 0.207286, 0.582691, -0.168465, -2.063632, 1.027128, 0.943647, -0.484116, -1.570549, -0.112206, 0.125662, 0.459646, 1.095626, -0.264228, 0.060333, 1.012859, 0.470118, -0.987023, -0.571565, 0.890113, 0.603376, -1.715657, -0.161555, 1.803733, 0.021172, 1.830827, 0.921867, -0.585876, 0.399375, -1.234494, -0.286208, 0.951111, -1.905643, -0.130471, -0.314198, 1.224183, -0.253138, -1.066632, -0.887175, 1.481041, -1.717460, 1.216404, -1.558310, -1.849459, 0.465998, 1.161974, 1.063456, -0.083399, -1.128171, -0.157984, 0.824466, 0.561641, 0.854676, 0.750576, -0.573834, -0.580197, -0.280071, 0.467827, -0.068779, -0.339943, -1.105056, -0.363187, 0.811319, -0.541042, -0.858928, -0.108769, -0.344523, -0.231413, 1.041363, 0.154795, 1.079924, -1.340443, -1.719497, 1.144853, 0.335797, -0.661882, -1.547137, -0.599678, -0.631224, 0.721768, -0.569869, -0.220296, -0.594271, 0.196788, 0.126424, -0.132890, 0.917555, 2.919824, -0.326509, 0.299645, 1.932699, 1.470799, -1.076151, -0.940767, 0.820784, -0.586004, 0.280202, 1.339391, 0.372885, 0.609882, -0.670580, 1.229919, -0.449302, 0.092249, 0.964588, -2.366810, -0.835183, -0.804362, -0.350424, 1.166668, -0.383383, 0.771987, -0.865056, -1.375879, 1.720355, -0.815208, -0.419583, 0.307390, 1.847089, 0.734753, 1.275452, -0.548501, -0.506838, -0.407166, -0.242758, 1.570517, -0.452768, -0.279476, -0.978788, 0.915423, -0.253402, 0.134892, 0.072617, -0.466987, 1.168253, 0.004817, 0.320259, -1.123081, -1.341465, -0.082952, 1.576307, -0.039958, 0.634998, 0.728488, 2.110096, 0.649783, 0.124882, -1.121643, -1.055215, 0.132611, -2.026237, -1.707300, 0.450669, 0.671282, -0.009472, 1.744705, -2.087952, -1.059036, 1.644153, 1.170978, 0.698382, 1.691275, 0.573809, 0.937123, -0.639981, -1.225010, -0.440868, -2.317004, -0.982818, -0.599471, 0.102466, -2.558308, -0.383315, 0.946435, 0.363056, 1.189015, 0.170644, -1.278785, -0.147227, 0.279878, 0.111118, 0.179203, -0.217147, 0.786375, 0.394571, -0.239909, -1.123003, 0.160728, 1.052199, 0.591157, -0.346886, 1.073154, 0.519690, -1.553831, 0.806229, 0.810919, -0.576034, -0.924473, -0.619924, -0.940108, -0.871045, -1.286237, 2.153194, -0.429805, 0.647924, -1.389153, 0.587985, 0.627389, -0.032581, -0.265747, 0.059682, -0.585344, 0.083364, 0.407399, 0.056894, 0.150550, -0.291422, -0.618604, -0.964097, 0.557800, 1.495255, 0.460985, 1.105772, -0.033014, 0.753507, -0.185367, -1.941703, -0.267666, -0.127336, -1.303198, 1.617847, 1.252837, 0.347011, -1.762125, -0.381366, -1.640321, 0.932442, -0.394437, 0.408265, 0.825253, -0.759669, 1.162629, -1.089117, 0.915868, 0.208844, 0.853875, -0.210703, 2.087829, -0.485120, 0.252189, 0.843117, -0.575198, 1.186742, -0.542850, 1.957941, -0.855651, 0.581289, -0.881204, 1.414971, 1.828974, -1.590112, 1.022291, -0.240954, 0.502831, -0.645713, -0.573912, 0.582151, 0.651937, 0.284228, -1.090852, 0.536112, 0.972902, 0.578545, -0.512860, -1.033079, 1.009932, -1.782424, 1.585972, -0.469910, -0.913712, -0.215104, 0.886212, -0.695154, 1.336107, -0.642250, 0.037515, -1.028773, 0.205241, 0.111050, 0.432218, 0.701086, 1.300497, -1.327512, 1.298314, -0.162390, 0.713141, -0.601166, 0.713671, -2.778200, 0.892948, 0.042329, -2.027648, -0.021793, -0.129801, -0.956841, 0.103627, -0.383032, -1.159092, 0.745385, -0.333663, 0.127354, 0.669309, -0.793391, 0.626571, -1.018438, 0.855159, 1.050925, -0.589540, 0.436837, 0.985532, -0.460413, -1.918710, -0.426365, -1.700912, -0.104674, 0.894770, 0.494039, 1.551795, -1.791339, 1.047061, 0.194365, -3.164350, 0.204653, 0.314568, -0.288502, -2.033651, -0.634604, 0.175062, 2.002624, 0.246801, 0.432259, -0.576299, -0.004973, -0.327138, 0.349449, 2.386581, 1.160786, -0.077858, -0.201286, 1.613384, 1.830168, 1.045279, -1.240590, 0.303245, 0.035713, -0.471562, -0.839015, 1.630957, -0.776562, 1.041517, -0.529833, 0.145379, -0.229662, -1.399546, 0.933848, -0.824862, 0.697725, -0.544501, 2.436984, 1.006368, 0.333027, -0.220171, 0.155245, 0.369798, 0.139770, -1.760627, -2.052159, -1.162144, -1.575735, -0.920760, -0.094226, 0.069217, -0.944024, -0.137223, -0.524219, -1.851330, -0.130540, 0.526208, -0.111871, 0.531441, 1.984888, 1.149945, -0.066938, 0.161827, 0.106163, -0.126390, 3.024917, -1.838640, -1.081043, -0.866902, -0.918155, -0.900351, 0.401163, -0.226729, -0.432282, -1.826365, 0.840420, 0.180251, 0.752581, -0.661255, -0.168041, 2.080487, 0.668378, -0.233470, 0.733336, 1.919203, 0.476853, 0.236222, -1.707350, -0.796978, 0.019973, -1.041423, 1.018395, -0.107299, -1.444325, 0.791442, -0.788191, 0.591638, -0.991558, 0.534095, -0.712121, 2.341809, -0.177906, -0.709765, -0.842983, 0.257565, -1.427867, -1.205549, 0.264839, 0.184064, -0.589042, -0.490605, 0.446971, 1.769823, 0.287042, 1.181455, -1.265639, 0.562373, 1.423353, 0.079957, 1.588951, -0.917558, -0.411528, -1.494327, -1.771370, 0.336357, 0.342872, 0.658012, -0.950980, -0.574546, -0.243331, -0.314933, 0.051272, 0.535575, 0.919668, -0.007354, 0.445684, -0.082029, 0.304456, -0.872931, 0.432695, 0.516440, -0.133272, 0.808826, -2.086042, 0.343427, -1.374223, 0.604816, 0.692821, -0.839644, -0.911351, 1.429460, -1.804764, -0.096803, 2.065164, -0.218181, 0.308553, 0.382982, 0.944473, 0.561943, -2.089864, -0.673406, -2.759019, 0.200081, 0.575476, 1.579116, 0.899565, -0.221501, 1.351479, 0.096794, 1.243194, -1.474891, 0.654180, 0.064298, -0.835662, -0.194806, -0.367746, -0.228220, 1.231606, -0.894331, -0.101611, 0.381977, 1.192542, -1.467655, -0.058888, 2.153271, 0.061435, 1.226431, 1.515339, 0.182197, 1.519458, -0.231026, -0.487254, 0.392141, 1.589703, -0.408195, -0.553761, 1.964831, -0.229460, 0.351706, 0.408573, -0.471520, 0.622909, -0.324242, 1.426097, 0.890638, -1.741549, 0.461812, 0.018615, -0.801842, -0.541091, -0.210843, -2.291299, -0.362839, -2.076929, -1.018306, -1.199963, 1.818083, 1.648525, -0.801061, 0.080513, 0.202764, -0.759549, -1.717946, 0.218564, -1.081691, -0.699631, -0.868473, 0.317636, 0.485838, -2.115855, -0.294260, 0.287382, 2.124204, -0.388793, -1.695107, -0.902897, 0.441529, -0.012548, -1.506019, -1.252866, -0.026424, 1.226648, -0.293096, 0.203289, -0.756098, 1.047191, 0.982714, 0.628749, 1.116323, 1.349611, -0.335788, 1.347674, 0.190967, -0.498005, 1.629062, -0.843257, -0.030271, 0.930623, 1.425032, 0.590393, 1.395356, -0.624263, 1.033477, -0.696789, 0.001762, 1.519758, 0.818181, 1.074804, 0.189180, 1.667274, -0.381048, 0.830547, 0.124273, -1.612885, 0.781029, -0.359811, -1.223480, 1.187759, 0.418474, -0.101242, -0.056971, 0.259009, -1.039807, 0.546360, -0.297666, -0.688955, 0.811319, -1.250016, -1.931627, -0.583212, -1.157971, -1.324602, 0.095786, 0.027765, 1.445417, -1.332329, 1.547683, -0.597663, 0.537965, 1.423062, 0.221477, 0.521012, -0.350880, 0.366148, -0.292342, 0.021799, -0.692396, 0.077772, -1.338284, -0.487567, 1.081337, -0.159286, 0.626035, -0.192806, 0.380465, -0.125549, -0.263307, 1.228543, 0.479255, 0.558255, 0.992493, -2.064684, -0.590775, 0.475399, 0.808970, -1.079263, 0.819858, 0.001053, 1.713279, -0.441459, -0.550008, 0.275009, 0.578480, -1.909862, 0.903774, -0.179690, 0.626672, -0.320327, -0.186131, -0.082795, -3.109381, 0.654981, 0.037561, -0.171945, -0.445913, -0.689320, 0.086894, -1.278882, 0.562797, 1.472451, 1.642338, -1.250318, -1.137734, -0.629939, 0.907227, -0.342787, -0.411368, -0.663720, 1.296885, 1.027811, -1.927894, 0.926883, 1.424112, 0.534358, 0.905297, 1.511685, 0.377599, -0.886907, -0.421989, -0.911743, 1.000193, -1.038782, -0.006770, -1.659163, -0.079689, -1.208335, -0.281989, 1.138968, -0.556572, 0.859251, -0.668976, -1.658532, 1.155972, 2.354597, 0.069028, -1.308192, 0.488072, 0.638325, 0.404602, 1.578895, -0.511252, -0.894019, 0.399280, 0.023934, 0.688264, 0.784093, -0.604418, 1.478099, 1.185932, 0.590855, 2.482460, 1.078722, 0.335556, -2.164707, -0.718133, -0.083929, 1.264312, 0.596210, 0.122359, 0.636054, -1.683981, -0.817120, 1.510286, -1.320647, -0.585404, 0.191411, -0.480665, 1.367395, 0.993017, 2.074307, 0.303111, 0.863781, 0.615300, 0.725178, -1.041963, -0.202601, 0.464231, -0.251837, 0.775464, -0.758715, -1.613629, 0.055123, -1.644216, 1.362099, 0.138816, -0.167410, 0.884396, -1.099416, -0.768541, 0.153765, -0.562399, -0.048826, 0.409359, -0.247760, 0.423644, -0.332858, -1.149836, -1.530859, 0.051066, 1.164228, -0.218592, 0.469758, -0.270103, 0.874498, -0.141658, -0.525855, 0.275665, 1.935651, -0.822094, 1.356794, 0.989574, -1.130628, 0.636094, -0.732825, 1.926735, 1.339513, 0.771204, -1.057297, -0.352365, -0.682190, -1.583295, 0.197261, 0.538025, 1.598909, 0.622875, -1.351804, 0.440459, 0.247602, 1.633335, 0.801167, -0.144609, -0.209023, -0.936720, 2.060589, -1.345932, -1.122756, -2.108896, -0.500439, 0.763176, 0.891038, 0.015775, -0.752514, -0.661973, -0.289178, 1.630489, -0.500762, 0.070115, 1.506407, -0.981540, -1.588406, 0.992498, -2.481605, 0.057981, 0.388419, -0.039999, 1.383976, 2.661830, 0.397678, -0.835880, -0.329375, -2.280789, -1.895880, 1.424873, 1.359007, 0.729401, -0.157402, 1.628273, 1.844476, -0.010730, -0.327102, 0.373267, -0.731033, -0.963579, 0.455399, 0.535462, 0.052567, -0.728972, 1.218651, 0.752671, -0.066791, -1.105672, -0.111076, -0.393103, -1.266070, 1.068630, 1.265227, -0.932089, 0.778385, -3.302621, -0.895119, 0.075585, -0.777410, -0.462299, 1.105099, -1.384574, -0.807010, -0.015771, 0.558033, 1.144656, -0.240984, -0.698494, 0.202620, 1.114896, 1.018613, -0.681215, 1.013868, -0.826554, -0.258071, -3.049321, 0.626657, 0.076328, -1.252243, -0.464053, -0.906678, -0.443308, -0.020463, 0.496904, 0.682432, -0.359242, -2.157911, 0.756843, 1.138582, -1.222610, -0.652022, -2.332255, 0.423948, 0.909839, -0.617476, 0.824549, 0.800059, 1.237592, 0.525611, 0.534927, -0.345931, -1.043367, -1.053603, 1.098188, 0.478464, -0.663188, -0.859529, 0.472558, -0.219958, -0.274905, -0.673648, -0.853832, 0.934617, -0.702375, -3.233822, -0.773592, 3.805918, -1.140535, 0.623434, 0.510648, -0.418119, 0.079674, -0.326342, 0.643506, -0.702112, -0.284825, 1.878356, -0.861996, -1.820630, 0.778575, 0.511991, 1.203326, -0.040828, 1.744495, 1.192491, 0.555848, -0.052246, -0.753323, -0.325756, -1.308429, 0.974147, -0.644903, -0.706800, -0.297981, -2.069843, -0.345973, -1.214355, -0.917852, -2.155937, 0.927861, 0.474878, 0.247987, -0.908771, 0.272681, 2.615279, -0.549072, 0.185536, -0.757504, 0.735709, -0.585245, -0.550818, 0.039396, 0.347881, -0.619996, 1.185706, 0.347206, 0.840082, -0.105743, -0.377565, 0.394268, 0.358868, -0.836091, 0.372199, -0.650276, 1.643714, 0.290317, 0.772565, 0.015490, 1.953443, -0.106934, 0.892257, 0.238899, -2.405387, -0.411437, -0.516776, 0.184538, -0.350451, -0.690542, 0.689651, -1.176242, -0.246449, -0.662618, -0.896708, -1.036163, 0.707453, -0.273457, -1.063009, -1.437992, -0.075853, -0.725216, -0.501038, -1.620955, 0.090590, -0.174102, -0.151916, -1.001883, -0.397621, 0.804467, 0.419073, -0.502699, 0.553882, -0.306174, -0.886734, 1.160123, 0.867753, -0.166415, 0.373206, 0.300597, 0.217621, -0.280384, 1.059431, 0.470278, 0.547095, -0.780942, 0.499592, 0.094520, -0.787875, -2.602450, -2.181004, 0.132215, -1.299746, 0.811831, -0.223914, -0.837817, -0.061314, 0.827029, -0.245986, -0.572435, -0.448406, -1.094119, 0.361295, -0.373553, 0.563738, -0.177414, 0.410312, 0.276365, -0.827044, 0.531996, 0.892704, -1.571435, -0.814432, -0.274162, 0.723977, -0.249889, -0.755724, -0.350416, -1.397094, 0.738375, 1.219680, -0.802848, -0.299505, 0.917300, 0.556091, -0.637355, 0.773169, -0.612296, 0.138151, -1.082792, 0.562419, 1.761884, 0.030639, 1.638407, -1.397408, -1.364331, 1.176498, 0.634336, -0.194025, 0.940187, -0.252420, -1.828030, -0.179653, -0.738313, 0.742925, 0.606607, -1.758966, -1.040130, 0.998192, 0.519292, -0.055416, 3.207140, 1.069309, -1.528195, 2.234299, 0.387162, 0.357318, -0.204103, -0.241818, -0.917731, -0.523849, -0.415264, -0.645009, -0.323789, 0.799123, -0.016987, 0.573841, 1.856380, -0.559798, 0.991535, -1.142989, -0.235376, -1.837207, -0.855456, -0.922816, 0.450375, -1.353277, 0.898918, -0.288346, 0.467588, 0.654611, -1.782100, 1.124761, 0.776079, -0.988945, -1.778324, -2.117336, 0.358062, -0.130207, -0.811923, 0.502498, 0.626336, 1.208242, 0.984898, 0.228393, -1.049579, 0.161324, 0.362087, 1.311942, -0.166878, -0.477098, -0.929323, -0.430653, -0.214376, 1.124906, -0.449445, 1.772658, 1.141216, -1.001936, -0.190634, -1.281548, 1.241780, 1.622071, -0.460086, -0.745039, 1.202176, -0.785963, 0.804039, 0.413862, -0.122444, 0.421866, 0.265635, 1.752928, -0.993530, -0.711548, 0.320945, -0.055180, -0.394550, -0.750249, -1.149343, 0.365351, 0.434388, 0.088906, -0.694951, 0.981878, 0.793615, -0.931234, 0.535146, -1.026275, 1.010923, 0.021420, -0.213139, -0.236093, -1.368470, -0.655869, 0.172209, 0.032734, -0.488071, 0.808566, -0.433427, -0.060827, -1.965714, 0.070618, 0.600481, 0.173012, 0.674546, 0.029860, -0.655894, -0.124122, 0.246052, -0.389779, -0.081781, -0.185768, -0.024249, -1.716403, -0.512165, -0.351471, 0.224897, -1.183628, 0.109501, -0.793467, -0.597978, -0.577084, 1.959314, -1.446712, -0.529356, 1.420988, 1.529441, 0.407820, -0.656533, -0.905987, 0.515898, -0.468324, -0.923903, -0.535808, -0.987676, 0.045621, 0.407210, 1.016581, 0.930367, -0.324103, -1.133288, -0.708613, -1.169798, 1.318494, -0.356025, -0.023998, 1.558696, 0.816003, -0.279802, -0.920872, -0.363216, 1.344983, -0.107922, -1.623679, 1.404346, 1.777517, -0.750628, -0.713083, -1.147685, 0.966753, -0.041751, -1.502047, 0.883965, -0.730740, -1.077998, 0.158465, -0.116612, 1.224050, 1.309583, 0.826712, 0.983826, 1.270001, 0.310710, 1.510927, 2.382328, -0.000902, 0.041274, 2.735659, -0.066203, -0.814038, -0.802178, 0.439242, -1.216922, 0.851209, 1.000077, -0.305806, -0.492769, 2.255749, -0.141859, 0.750780, -2.359170, 0.642869, 0.313425, -0.891790, -0.098996, 1.101291, -0.759878, 1.075486, -0.490473, -0.820665, -0.995053, -0.922446, 1.747772, -0.613273, 0.893366, 0.289253, -0.066392, -0.803604, 1.744654, -2.255174, 0.148827, 2.021037, 1.022240, 1.007952, 0.801586, -0.909874, 2.294297, 0.049368, 1.925730, -0.270507, 0.600846, 1.432848, -0.619982, -0.614845, 1.599297, -0.280981, 0.517332, 0.630006, -1.062021, -0.014945, 0.402061, -0.395856, -0.639617, 0.584767, 1.319841, 0.395448, -0.017575, -0.371125, -0.246029, 1.850864, -1.960001, 1.392138, 0.984169, -0.210737, -0.247878, 0.033473, -1.111829, -0.577707, -0.733114, 0.822389, -1.150163, 0.447327, -0.259996, 1.046438, -1.770565, 0.319892, -0.715800, 0.205306, 1.272071, 0.987176, 0.030316, -0.253312, -0.099272, -0.232358, -1.708404, -1.120504, 0.919319, 0.401601, 0.312614, 1.335582, 0.076183, 0.203855, -1.584023, -1.035830, 1.139204, 0.765218, 0.031543, -0.533452, 0.585556, 1.230109, 1.014089, 0.670554, 1.268316, -0.319874, -0.314153, -0.206030, 0.628749, -0.057120, -0.509198, 0.796401, 0.167990, 2.272425, -0.147684, 0.542837, 0.977357, 1.924800, 0.250516, 0.221005, -0.333065, -0.155052, -1.294611, 0.648327, 0.862543, 0.154885, -0.007419, -0.854444, 0.569946, -1.360445, 0.704909, -1.429923, 0.173357, 0.346192, -1.177145, -0.059209, 0.185367, -1.702045, -1.289479, 0.733104, 0.157064, -1.199674, 0.149991, -0.529433, -0.443646, -2.808384, 0.724962, -0.646890, -0.966995, 0.270013, 0.587279, -1.050124, 0.435028, -0.661419, 1.777073, 0.476565, -1.148175, -0.178329, 1.180552, -1.422006, -1.155634, 1.346725, 0.669341, -0.307069, -1.453850, -0.239823, 0.141012, 0.730409, 1.174524, 1.934903, 1.567414, 0.318436, 0.146101, 1.869871, -0.578380, 0.940971, 0.310458, 0.783878, -0.492146, -0.870231, 0.108325, -1.982088, 1.504868, -0.462011, 0.118853, -0.293633, 0.084887, 0.663833, 0.403392, 0.854684, -0.227954, 0.028410, 1.840226, 0.607773, -1.173648, -0.064040, -0.583499, 1.618328, 0.071072, -1.626230, -0.011821, -0.383874, -0.418588, -0.096689, 2.323421, 0.225080, 0.324341, -1.629578, 0.026556, -0.804914, -1.068436, -2.736597, 0.712015, 0.589092, 0.942102, 0.258438, 0.702188, -0.268564, -1.871912, 1.404576, 0.044787, -1.779821, 0.519663, -1.350010, 1.448736, -0.390655, 0.231175, 0.265064, -0.525599, 0.032990, 1.381009, 0.095031, -0.718115, 0.833363, -1.937235, -1.118470, 0.046609, -1.124443, -1.317206, -1.583491, 0.849224, -0.108660, -1.031552, 0.811566, -0.445433, 0.289940, -1.404132, -0.755131, -0.414514, -1.618126, 0.512221, -1.156794, -0.288971, 0.302929, -0.085393, 0.499911, 0.159987, 0.489384, -0.693839, -0.283784, 0.681522, -1.361003, 0.543945, 0.937520, 0.399524, -0.371339, -0.902652, 0.272578, -0.055631, -0.183270, 1.156942, 0.281662, 0.115839, -0.645140, 0.139170, 0.776727, 1.004202, -0.106977, 1.143089, 0.347144, 1.683088, 1.550169, -0.113883, -0.992220, -0.455807, -0.993603, -0.020708, -1.346534, -0.490946, 0.756130, -0.582306, -1.540389, -0.005888, -0.335026, 0.146218, -0.519971, -0.486755, -1.122320, -0.067730, 0.338864, -0.534193, -0.662877, -0.420708, 0.175634, 0.591055, -1.054769, -0.658740, 1.814753, -1.817313, -1.267231, -1.002523, -0.677531, -1.301317, -1.152116, -1.000671, 0.005572, -0.459156, 0.974113, -1.993809, -0.263506, 0.540411, -1.940319, -0.013229, -0.488975, -0.244513, -0.768648, -0.281655, 0.783187, 0.388086, -0.777248, -0.550460, -0.187943, 0.175566, -0.401522, -0.081917, -0.173469, 1.641702, 0.871165, -0.787113, -1.262874, -0.068490, -0.137980, -0.341973, -1.322604, 1.330316, 1.009725, -1.023710, 0.814989, -0.591393, -2.354148, -1.441840, 1.014541, -0.502014, 0.278830, -1.249648, -0.112477, -0.977346, -2.307748, 0.997052, 0.102829, 1.077729, 0.479538, -0.123308, 0.718891, 1.445119, 0.697008, 0.597984, -0.478706, -1.774553, -1.248201, 0.065591, 0.073310, 0.521728, -0.200182, -0.194445, -0.238299, -1.840125, -1.631188, 1.591232, 1.397854, 1.476983, -0.730668, 2.352803, 0.663133, 0.552681, -1.896815, -0.740749, 0.405772, -0.436305, -1.061285, 1.535298, -0.512250, 0.260357, -0.141387, 0.507852, 1.447780, -0.668943, 0.332079, -1.080486, 0.149391, -0.617735, -0.289660, -0.914916, -1.644613, 1.489698, -1.538270, 1.315164, -0.183876, -0.251486, -1.866595, 0.094795, 1.408429, 0.547489, -2.115978, 0.847040, -0.715976, 0.806206, -0.088310, -0.136833, -0.200722, 0.195276, 0.525913, 0.767167, -0.411600, -1.105277, -1.436909, 0.916397, 0.477115, 1.871990, -0.154352, -0.587433, 0.985598, 0.382853, -0.172665, -0.835553, -0.665614, 0.427174, -0.149810, -0.903475, 1.466565, 0.068006, 1.747021, 0.223858, 1.070161, 0.645742, -2.280433, -0.380478, -0.498307, 0.822889, 1.275234, -0.613344, -0.350186, 0.102877, 0.292518, -1.003881, -0.056888, 0.241053, -0.917144, 0.053113, 1.310974, -0.637512, 1.016618, 0.279675, -1.197254, 0.085086, -0.447436, 0.295744, 2.210416, -0.770011, 1.792212, 2.311360, 1.167731, 1.330203, -0.808207, -1.101343, 1.024797, 1.042803, 0.820114, 0.806664, -1.016447, 1.443351, 1.825768, -0.566427, 0.330723, -0.910790, 0.488024, 0.739712, 0.592021, -0.820084, -0.006164, -0.090102, 1.853698, -0.214966, -0.847784, -0.890158, -0.022381, 1.309506, -0.855636, -0.016341, -0.846609, 0.985509, 0.178801, -0.249532, -1.187278, 0.325259, 0.197964, -1.524272, -0.483460, 1.806156, 0.361941, -0.805512, -1.131736, 0.797872, -1.014111, -0.991461, -0.489029, -1.294251, -0.991199, 0.165233, 1.658220, -0.618318, 0.503729, 0.192132, 0.404518, 0.220815, 0.780041, 1.987371, 0.036581, 0.815013, -0.603414, -1.480355, -0.400756, 0.509935, 1.701668, 0.313328, 0.620078, -1.182466, -0.193842, 0.037920, -0.691340, -0.766950, 0.206816, 0.479469, -2.096840, 0.779050, 0.201829, 0.076898, -0.175906, -0.514583, 0.421943, 1.716999, -0.526207, 1.259227, 1.305424, 0.190156, 1.163256, 0.824654, -1.628281, 0.008107, 0.845876, -1.004947, -1.126282, 0.953920, 0.020620, 0.656683, 0.675162, 0.978281, 0.216812, 1.191213, -2.605651, 0.003369, 0.523004, 0.788878, -1.412201, -1.478939, 0.348571, -1.280308, -0.303001, 0.318950, -0.760154, -1.029954, -0.550735, -0.162843, 0.870245, 0.100532, -0.281056, -0.418812, 0.537552, -0.319880, 0.570967, 0.280753, 1.926064, -0.463513, 2.491880, -0.401976, 0.702363, 0.908380, 1.704498, 0.334124, 0.217783, -0.983164, -0.791485, -0.629922, 0.404028, 0.140059, 0.606994, -0.602667, 0.024615, 0.597163, -0.825542, 0.869445, 0.304274, 1.629945, -1.224490, -0.199955, 0.018748, 1.268401, 0.453636, 1.873566, 1.606205, 0.607918, -1.008349, -0.275071, 0.657667, -0.744228, -1.012348, 2.101786, -0.589109, -0.627253, -0.363777, 0.154706, -2.271258, -0.815534, -0.024603, 0.222578, 0.316409, 0.453494, 0.426001, 0.124252, -0.528458, 1.266649, 1.068653, -0.912916, 0.954285, -0.388931, 0.745443, -2.132591, -0.673448, 0.204056, -1.050105, 1.521965, 0.119597, -1.368317, -1.629230, 1.425418, -0.471962, -1.147773, -1.014542, -1.009912, -0.267185, -0.152594, -2.620589, -0.243907, 1.383747, -0.919638, 1.386119, -0.216461, -0.259555, -0.804526, -1.275133, -0.407622, 0.490195, 0.791647, 1.053413, -1.761286, -0.557885, 1.158737, -1.086519, 0.495737, 0.190078, -0.135025, -1.536238, -1.349438, -0.043111, 0.292565, -0.651148, 1.102894, 0.316687, -0.433201, -0.415638, -0.720638, 2.060442, -0.619170, -1.507656, 0.165067, 0.248506, -0.909373, -1.325403, 1.221633, 0.763337, 0.729908, -0.321685, 1.281433, -0.317217, 0.485598, 0.531396, 0.118371, 0.719347, 1.861064, 1.039500, 0.747790, 0.870797, -0.024604, -2.014132, -0.301681, -0.487303, -0.187357, 0.056168, -0.253799, -1.602449, -0.508815, 1.208079, 1.025732, -0.251645, 0.407351, 1.091536, 0.129968, -0.356357, -1.132946, 0.703549, -0.782255, 0.154718, 0.612335, -0.639361, -0.777031, -0.362677, 0.443419, -0.012522, -2.208537, 0.561620, -0.860781, -0.754275, 1.596550, 0.296669, -1.122033, -0.166325, -0.634739, 0.107694, 0.196174, 2.631574, 0.538163, -0.944013, -1.327978, 1.082618, 2.067123, 0.031306, -1.473334, 0.879581, 0.507148, 2.107082, 1.834868, -0.162772, 1.459002, -0.060417, 1.324060, 0.207282, -0.125801, -0.615198, -0.876727, -2.088589, -0.686336, -0.280585, 0.867516, 0.114097, -0.991352, 1.396835, 1.419892, 0.376463, -1.218500, 2.636140, 1.290523, -2.019356, 0.013485, 1.521289, -0.239322, -1.229477, 0.755279, 0.346502, -1.725243, -0.373774, -0.185386, -1.256591, -0.716859, 1.530833, -0.547870, -0.792679, 1.284569, -0.849781, 2.087775, 0.928601, 1.579072, -1.907241, 1.532603, 0.106727, -1.284357, 0.633744, -0.214437, -0.598696, 0.892944, -0.423007, 1.162389, -0.411785, 0.298251, -0.567272, 0.386300, -1.698400, 1.617787, -1.874614, 0.489987, 1.426808, 0.229579, 2.157564, 0.823678, -0.072082, 0.197448, 2.305283, -0.765087, -1.126161, -0.772202, -0.845635, -0.331419, -0.273276, 0.060459, -0.637235, -0.349673, -0.321448, -0.121112, 0.179084, -0.284457, 1.289270, -0.691972, 1.599460, 0.040287, 0.273503, -0.349427, 1.213746, 0.479931, -0.758232, 1.002408, 0.075547, 1.540622, -0.718118, 0.894200, 0.814410, -0.525514, -0.717878, -1.667925, -1.142663, 0.942690, -0.455577, 0.952267, -1.452215, -1.505591, 1.257140, -0.838728, -0.453117, 0.169693, -1.768633, -0.609335, 0.562158, 1.431190, 0.760952, -0.652992, -2.118331, -0.538564, -1.052189, 0.591901, -1.179337, -2.085239, 0.926827, -1.104892, 0.485520, 0.020562, 1.924255, 0.208637, 0.545395, -0.409915, 0.161968, 0.849357, -0.031988, 0.839613, -0.528238, 0.014944, 0.567819, 0.111748, 0.336812, -0.206228, -0.385773, -1.012973, 0.622410, -0.757589, 1.367026, 0.479709, 0.038670, 0.796081, 2.785017, 0.580535, -0.559753, 0.204537, -1.229785, -1.241883, 0.645685, -0.734728, -0.755703, -0.199049, -2.094187, -1.236351, -0.274289, -0.884606, 0.009774, -0.285483, -0.597581, -1.133268, -1.102430, 0.447045, -0.102915, -1.481799, -1.694370, -1.303291, 1.184157, 1.720630, -1.393385, 0.115161, 0.757673, 1.210708, 1.439353, -0.430967, -0.031543, 1.027018, -0.781191, 1.169615, -1.828181, -1.755098, -1.107190, -1.422109, -1.124997, -1.175631, -0.395011, 0.363351, 0.198148, -0.587296, 0.138670, -1.113483, 0.658757, 0.712638, 0.605732, -0.147572, -0.833572, -1.130678, -0.967752, -0.487512, -0.651392, 0.232531, -0.115976, 0.981971, 1.799198, -0.098867, 0.399773, -1.520884, -1.010132, -1.559080, 0.926588, 0.066911, -1.498431, 0.547994, -0.435648, -1.230667, 2.092605, -0.024036, 0.978000, -0.563770, -0.322303, -0.973571, 0.880973, -0.667366, 0.455789, -0.070619, -0.035130, 0.045618, -0.609802, 0.440498, 2.592303, -0.142025, 1.797056, 1.004021, -2.086756, -0.798908, 0.237025, -1.451838, 0.859163, -1.212549, -0.665609, 0.614962, -1.223996, -1.765464, 0.548116, 0.776485, 0.910847, 0.128251, 0.740647, 1.275919, 0.284085, 0.219603, 0.467999, -1.296522, -0.001087, -0.676528, -1.242467, -0.357404, 1.091398, -1.368510, 1.185922, 1.005026, 0.899833, 0.067455, 1.431986, -0.775499, 0.306814, -0.903485, 0.752950, 0.241810, -0.645906, 0.257904, -0.299932, 0.412832, 1.258728, 1.948945, -0.268560, -0.874764, -0.850795, 0.292095, -0.176906, -0.093073, -1.566247, -2.351848, -0.905502, 1.026085, -0.718833, -0.018663, -0.056301, -1.636670, 0.057381, -0.383973, -0.915739, 0.628095, 0.677738, -0.085996, 0.036286, -0.014617, -1.613212, -0.919135, -0.390502, -0.446022, 0.389920, -0.317840, 1.401184, 0.087298, 0.658124, -0.957850, -1.913147, -0.918599, -0.222273, 0.749725, -1.026116, 0.259407, -0.185653, 0.185036, 0.534258, -1.097639, 0.522325, -1.253131, -0.079999, -2.094013, 1.752958, -1.195079, 0.901390, -1.416690, -0.775104, 0.816481, -1.889798, 2.032199, -1.526717, -0.558021, -0.815927, -2.371063, 0.941630, 0.026241, -0.269571, -0.469445, -0.874656, -1.177608, 0.193295, 0.509403, -0.862372, -0.375989, -0.723301, 0.578435, -1.737902, 1.210322, 0.404326, -0.293490, 0.720651, 1.890200, 0.662484, -0.238169, 0.253854, 0.173990, 0.084363, 0.192557, -0.046405, 0.318103, 0.329699, 0.473887, 0.951854, -1.245950, 1.937155, 0.196658, -0.250798, 0.798175, 0.538733, -1.044797, 0.022274, 2.198480, -0.856320, -0.629280, 1.559641, -1.680933, 1.271451, 0.873796, -0.532085, -0.654765, -2.168516, 0.884313, 0.090337, 0.849958, 1.207093, 0.152257, 0.009740, -0.208236, -2.609198, 2.061538, 1.325143, 1.805175, 0.827573, 0.056863, -0.731216, -0.986358, -0.080354, 1.158901, -1.233143, 1.264878, -1.029511, -0.896161, 0.033642, -0.947122, -0.807268, -0.623787, 1.400838, 0.003921, 0.757574, 1.690927, 0.209808, -0.084645, -2.099220, -2.020415, -0.649347, 0.309620, 0.405811, 0.124559, 1.428699, -1.652138, -0.998053, -0.557753, -1.223353, -0.742789, 2.533580, -2.142363, -0.884314, 0.049913, -1.120534, -0.763611, 0.970614, -2.240328, 0.627627, -0.287621, 0.080011, -0.857303, -0.587362, 1.769972, 0.250884, -0.685031, -0.510253, -1.251109, 0.094093, 0.917295, 0.314743, -0.421084, 0.195974, -1.709798, -0.740959, -0.853345, -1.482002, 1.480777, 0.355833, 0.005076, -0.250395, -2.166262, -0.142214, -0.565482, 1.136327, -0.197039, -2.373229, -0.127625, 1.020798, -0.657364, 1.115904, -2.570700, 1.026366, 1.278767, -0.418978, -0.057048, 0.869859, -0.663286, 0.898531, -0.223066, 1.486685, 0.489365, -1.584574, -0.816816, -0.486191, 1.111680, 0.457316, -1.765196, -1.634078, -0.189959, 1.978119, 0.900515, 2.517114, -0.742463, -1.256565, -0.730360, -1.878909, -0.354420, 0.929377, -0.257609, 0.049031, -0.345426, 0.737248, 0.547592, 0.002927, -0.942150, 0.464087, 2.779146, 1.691355, -0.546461, 0.290752, -0.486222, -0.896839, 1.518797, 1.297184, -0.700622, 1.197714, 0.482543, -0.263684, -0.414116, -2.521549, 0.189030, 0.017566, 0.839219, -0.725358, -1.657703, 0.317549, 0.773451, -0.007418, 1.096505, 0.451132, 1.548481, -1.370949, -0.857440, -0.184710, 1.764203, -0.072071, 1.997427, -0.739326, 1.610971, -1.316181, 0.771234, 0.505205, 1.352388, 0.591027, -0.132216, -0.416094, 1.213004, 0.279762, -1.326275, -0.175405, -1.908029, 0.942670, -0.115008, -0.288672, -0.038149, 1.308604, -0.574296, 0.571406, -0.519974, -0.890585, -0.983541, 0.889347, -0.380232, 2.277617, -0.382938, 1.389186, 0.282886, 0.264755, 1.318817, 0.282370, -0.568136, -1.377339, -0.061422, 0.846803, 0.439605, -0.385605, -0.344363, 1.221155, 0.465028, -0.856782, 0.149611, 0.288386, 0.571397, -0.327895, 0.118745, -1.735471, 0.014765, -0.975883, 0.440234, 0.552339, 0.288764, 0.339089, -1.134826, 0.313895, 0.011407, 0.691833, 0.300344, 1.498545, -0.902266, 0.425485, 1.074022, 0.657239, -0.650429, 1.174462, 0.512151, -0.758514, -0.068893, -0.071205, -0.581869, 0.512698, -0.549456, 0.386034, 0.288174, -0.728801, 2.676464, -1.091006, 1.608164, -0.083419, 0.175058, -0.699406, -0.190567, 0.532987, 1.108742, -0.447822, -0.069891, -1.970983, 1.218043, -0.420008, 0.537785, -1.973844, -1.483689, 1.538642, -1.347552, 0.060081, -0.978870, 0.392604, 1.134322, -0.495217, 0.425980, 0.585597, 0.553828, -2.100334, -1.212780, 1.972681, 1.163086, 0.395078, 0.387860, 0.728238, 0.666341, 0.003480, -0.236001, -1.265750, -1.010418, -0.665997, -1.037360, 1.126242, 0.562326, -0.210542, -1.540785, 0.466182, -1.093710, -0.962843, 1.150839, 0.585028, 1.624890, -1.762433, 0.304113, 0.208924, -0.183446, 0.812668, -1.955194, 1.004379, -1.536352, -0.150135, 0.795853, -1.301719, -0.460793, 0.729530, 0.270970, -0.068024, -0.246545, -0.813112, 0.728013, 0.100125, 0.748525, 0.064918, -0.792546, 0.107315, -0.020264, 0.299685, -1.940080, -0.788187, -0.105019, 0.382124, -0.657053, 0.161678, 1.105560, -0.600307, -0.717401, 0.997373, 0.038190, 0.109503, -1.089637, 0.246236, -0.301493, -3.264527, 1.636711, -0.861160, -0.267561, 1.092990, -0.229627, -0.491280, -1.598319, 0.759445, 0.117207, 0.129530, -0.469744, -1.350616, -1.926867, -0.949650, 0.070641, 0.298443, 0.433077, -0.947646, -0.527008, 0.089824, 1.270172, 0.964362, -0.144135, -0.450047, -0.988775, 1.314416, 0.154784, 1.387101, 1.687699, 3.596269, 1.537083, -0.098029, -0.323389, -1.188715, -1.517913, -0.223319, -0.118122, -0.926387, 0.487475, 2.383470, -0.283019, -0.400344, -0.112688, -1.349477, -1.780964, 1.040826, 2.748192, 0.124874, 0.537890, -0.705610, 0.843095, 0.698634, 0.989788, -0.223561, -0.173949, 0.280473, -0.630229, 0.511718, -0.097223, -1.114586, 1.921694, -0.635164, 0.362479, -1.253753, 0.201949, -0.283309, -0.409199, 0.176409, -0.690641, -0.699860, 1.546965, -1.123447, -1.823177, -1.202144, -0.861633, 0.007818, -1.298542, -0.263731, -1.198128, -1.429087, 0.513127, 0.146896, -2.327325, 1.296689, -2.426564, -0.172250, 0.801628, -1.292855, -0.336581, -0.260524, 0.296005, -0.626776, 1.630137, -0.957424, 1.177334, 0.178275, -2.176285, 0.056313, -1.155005, -0.578800, 0.028200, 1.247363, -0.827695, 0.146231, -0.344793, -0.500478, -0.467940, 0.625746, -0.361763, -1.017070, -0.251144, 0.628470, -2.471546, 0.116703, -0.757431, 1.852242, -0.969632, -0.472526, -0.303243, 1.104279, 1.167389, 0.076012, -0.439053, -1.523277, -0.484451, 0.531800, -0.428981, -0.258849, -2.205991, 0.385688, 0.183251, 0.433802, -1.451632, -1.384850, 0.335081, 0.383205, 1.699160, -0.673376, 1.032370, 1.741185, -0.243792, 0.370460, -1.771130, 1.974270, 1.189003, -1.131988, 0.180605, 0.113789, 0.067022, -1.013460, 0.421401, -0.590726, 0.798718, -0.741132, -0.376481, 0.535617, 1.174118, -0.061616, -0.202595, -0.018271, -0.802477, 2.087790, -1.295037, 0.955921, 0.534792, 0.122142, -0.108656, 1.292931, 0.547753, -0.152389, 0.359308, -0.973856, -0.430421, 1.296211, -0.088916, -0.989754, 0.936799, -0.909156, -0.536777, 0.405138, -1.382602, -1.654568, 0.131954, 1.449889, 0.328693, -0.726607, -0.735402, 1.051588, -0.889100, -0.434141, 0.912239, -0.920116, -1.615823, 0.231242, 0.177643, 1.130218, 0.832464, 2.574803, -0.901728, -0.790664, 0.874165, 0.358299, 1.401991, -0.180211, -2.717999, -0.762370, 0.612589, -0.134878, -0.124942, -1.148724, 1.201162, 0.734334, 1.366560, 0.520797, -2.299033, -0.253356, -0.053072, -2.320358, -0.469110, 0.972471, -1.129791, 0.363801, 1.071229, -1.279661, -1.014263, -0.787167, -1.446681, -0.134930, 0.817895, -0.102662, -1.779658, 0.200723, -0.232941, -1.385099, -0.525363, -0.770101, -1.761763, 1.078271, 0.196937, 0.020912, 0.639272, -0.108485, -0.512531, 0.041192, 1.270116, -0.420989, 0.024729, -0.754243, 1.449031, 0.320928, 0.095170, 0.456532, 0.888621, 0.521723, 0.002547, 0.720049, 1.672881, 0.016955, 0.614825, 0.966077, -2.309270, 0.701263, 0.191821, -0.158496}, + { 0.237429, 0.036207, 0.170178, 0.797165, 2.247735, 0.762628, 1.695215, 0.179764, 0.107884, 1.401716, 0.118783, 0.396777, -0.573262, -0.053026, 0.451858, -1.387177, -0.496034, 1.285475, -0.314170, 0.871655, 1.018006, 0.623334, -1.377680, 0.000609, 1.036218, -1.547680, -1.150199, -0.685959, 1.469401, 1.189373, 1.277094, -1.193407, 0.467198, -0.204093, 0.463451, 0.132450, -0.695997, -0.207751, -1.612716, 0.887903, 0.862200, -0.113317, -0.442108, -0.162169, -1.686292, -0.287985, -0.757401, 0.170118, -0.336267, -2.417512, -0.944149, 0.162170, 0.702621, -0.229793, 0.069156, 1.221997, -0.537081, -1.066808, -1.161291, 1.000325, -0.837620, -0.352367, 0.746348, 1.859223, -0.919172, 0.532138, 0.313898, 0.496248, -2.153785, 0.941953, -0.411732, -1.184928, -2.066584, 0.005830, -0.928376, 1.677056, -0.908078, 1.511182, 0.483482, 0.025510, -0.344490, -0.629932, 0.769671, 0.959558, 0.064419, -0.148827, -0.406658, -0.538059, -0.199050, 0.310685, 0.565743, -0.699625, 0.845187, 0.833213, -0.395563, -0.868878, -0.552028, 1.531941, -0.042967, 0.085281, 0.003465, -0.488826, -1.533944, 1.700975, -1.172057, -0.746709, -0.530326, 0.237733, -0.876734, -0.727487, -0.295899, -0.747297, -0.318546, 1.199982, -0.746348, 1.215892, 1.596415, 0.170175, 2.494813, 0.196207, 0.107324, 0.334852, -1.195463, -0.377760, -1.049419, -0.460512, -1.640958, -1.110334, -0.021205, -0.986685, -0.649331, 0.877051, 3.305753, -1.066090, 0.060100, 0.661818, 0.455688, 0.822043, 0.344724, -0.688586, 1.371350, -0.610717, 1.293444, -0.093719, -0.339504, 0.813812, 0.419576, -0.083704, -1.111274, 0.654443, 1.078722, 0.289181, -0.063308, -0.839566, 0.262663, -0.800015, 0.387299, -0.238128, -1.158125, -0.209619, -1.242725, -1.584083, 0.828589, 0.457091, -0.274895, -0.694111, 0.709431, 0.516085, 0.069079, -0.733614, -0.806151, -0.538284, -0.647072, -0.946808, 0.469631, -1.347350, -1.366493, -0.775190, 0.468495, 0.362607, -0.699727, -1.212706, 2.003768, 0.349725, -0.101829, 1.910978, -0.069325, 1.440664, -0.484399, 1.292219, 0.268669, -1.466407, 1.025713, 0.255034, -0.760812, 1.515317, -0.844193, 0.268279, -0.946102, 0.890672, 0.132923, -0.882272, 0.594691, 1.587638, 0.224771, 1.978239, 1.762840, 2.388043, 0.037380, 0.441240, 1.250304, 0.025152, 0.249358, 0.392456, 1.730677, -0.231981, 2.482982, 1.126362, 0.310809, 0.077117, -0.162147, 0.560386, 0.433253, 1.631264, 0.292132, 0.332519, -0.146775, 0.009235, 0.915202, -1.747407, -0.596440, 2.005790, -0.167761, -1.835304, -0.667613, -2.620935, -0.735262, -1.138687, 1.260839, 0.435639, 1.814098, -0.125535, -1.737392, -0.475644, -2.366360, 1.191784, -0.543974, 2.615327, -0.187524, -1.548169, -1.495711, -0.770668, -0.981798, -0.133163, 1.969709, 1.043554, -0.282137, -0.852043, 0.731650, -0.312119, 1.198903, 0.490420, 2.429288, -1.280920, -0.186278, -0.077968, -0.179502, 0.454609, -0.438815, -0.940049, 0.957835, 1.021041, 0.392023, -0.948017, -0.139217, -1.801187, -0.111287, -0.271425, -0.950677, -0.842602, 0.158475, -0.685660, 1.709432, -0.045783, 0.158530, -0.654599, -0.459567, -0.563228, -1.539074, -0.226351, -0.707942, 0.094478, -1.725252, -0.194163, -0.155360, 0.889516, 0.404917, -0.006352, -0.944886, -1.360645, 1.137401, 0.563502, 0.219997, 0.679181, 0.567056, 0.088674, -0.530732, -0.973153, -0.492149, -0.262830, -0.206852, -1.567610, -0.835913, 1.662297, 0.572741, -1.514802, -2.418319, 0.460558, 1.418065, -0.751994, -0.672925, -1.516377, 0.429053, 0.124248, 0.322388, -0.041107, -0.392260, -0.300986, 0.217923, -0.204659, 1.201205, -0.327780, -1.205651, -0.013395, -0.279521, -0.210300, -0.270474, -0.436408, 1.194474, 0.202888, -0.188345, -0.857626, -0.311250, -0.677455, -0.696846, 0.070788, -1.601218, -1.154248, 1.084514, 0.779079, -0.415054, 0.682295, 0.397982, 0.863780, 0.814659, 0.229477, 2.375683, -0.881831, 1.539157, 0.967817, 0.308703, 0.166941, -0.148126, 0.613478, 1.598588, -0.974850, -1.086411, -0.449022, -0.324196, 1.507111, -1.523172, 0.456678, -1.201547, -1.270609, -1.600395, -0.505143, -0.008295, 0.753743, 0.115072, -1.422017, -1.318800, -0.475003, 0.097035, 0.914327, 0.108784, -0.023104, 0.871674, -1.256824, 0.668713, 1.114089, -1.144836, -0.832361, 0.366648, -1.133086, -1.580149, 1.110052, -0.124718, -0.302036, -0.558129, -0.793288, -0.841145, -0.319164, 0.768013, -0.017239, 1.400503, 0.782184, -0.962497, 0.542011, 0.281466, -0.868157, 1.584023, 0.915578, -0.346062, 0.981487, 0.379233, -0.383938, 0.490509, -0.694487, 0.058922, -1.025502, 0.775176, -1.021044, 0.168719, 0.607974, 0.807320, -0.077393, -0.320238, -0.759927, 0.208228, 1.956432, 0.569721, -0.698428, -1.608649, 1.114261, -0.556347, 0.444212, -1.463019, -1.000961, -0.699855, -0.233743, 1.090061, 1.100374, 1.242559, -1.052207, -1.446385, 0.260593, -0.406810, -0.281416, 0.611809, 1.596244, -1.619151, 0.037717, 0.020077, 1.672577, -0.099615, -0.831728, 0.721507, -0.502619, 0.335931, -1.270412, -0.325466, -0.304966, 0.213241, -0.819071, 1.301881, 0.332778, 0.550717, -0.189521, 0.475336, -1.257535, 0.407658, -0.195769, -2.353637, 0.810361, -0.514266, 0.816347, -0.849322, -0.457634, 0.046967, 1.375837, 0.112218, -0.730826, 1.883348, 0.843562, 2.132451, 1.130500, -0.527635, 0.550611, -0.700010, -0.453894, 0.118528, 0.082422, -0.245736, -0.521939, 0.212282, -0.604056, 0.828924, -1.621631, -1.148466, 2.715471, -0.194293, -1.052866, -0.210427, -0.379142, -0.058798, 0.470061, -0.418351, 1.427138, -0.112402, 1.433455, 2.364151, 1.770907, 1.097285, -1.091067, 1.459116, 1.116784, -0.845082, 0.461609, 0.569674, -0.052283, 0.719844, -2.384084, -0.720572, -1.180478, -0.768671, -1.935248, -0.276154, 1.632026, -1.773042, 0.072972, 0.521104, -0.101603, -0.177485, 1.417623, -1.772698, -0.206859, 0.754268, 1.347237, -1.057786, 0.097802, -0.940982, 0.417529, 0.185986, -0.735676, 0.439542, 1.687156, -0.580199, -0.275856, -0.479627, -0.921422, 0.050109, -0.666796, -0.307468, 0.770171, 1.294457, -1.801306, -0.906793, -0.621919, 1.657506, -0.395447, -0.945877, 0.675160, 1.712584, -1.018744, 0.632536, 1.555457, -1.164229, 0.640897, 0.353852, -1.558861, 0.243933, 0.344210, -1.483537, -1.768085, 0.560242, -0.595480, 1.867102, -1.814743, -0.450151, 1.007109, -0.404371, 0.563027, 0.192455, 1.219025, -0.009092, -0.118139, 1.092750, 1.526717, -0.905331, -0.200892, 2.456664, 0.043931, -0.518768, -0.393819, 1.034930, 0.571556, -0.518858, -0.011335, -0.466693, -0.093804, 1.541148, -0.168327, -0.939273, 0.996658, -0.897461, -0.233417, 0.315373, 0.548961, 1.447793, -1.337659, 0.580016, 2.421964, 0.066469, -1.215874, -0.164449, 1.319452, -0.769011, -0.008867, 1.005000, 2.099801, -0.853823, 1.152142, 0.105454, -0.913867, -0.620991, -2.427041, 1.400466, 2.125224, -0.055889, -1.191258, 0.551979, 0.713841, 0.387868, -1.125966, 1.540008, -0.648885, -0.142143, 1.913658, -0.149879, 1.536719, 0.580911, 0.604792, -0.762086, 0.131252, -0.391432, 0.664207, -0.201966, -1.347529, -1.251703, 0.031784, 0.760357, 1.108825, 0.694945, 0.390445, 0.545526, 0.227678, 1.612996, 0.829655, 0.709803, 1.729710, -0.032897, 1.054966, 0.210327, -1.764524, 0.405456, 0.328926, 0.285000, -0.642883, 2.509196, 0.481533, 1.337929, -1.308089, -0.840773, -0.290386, 0.204563, -1.502129, -0.739531, 0.304670, 1.033222, 1.042105, 1.039835, 0.139154, -1.392847, 0.998138, 0.856762, 0.247243, 0.289361, -2.526719, 0.124243, -0.660092, 0.520902, 1.110468, 0.126548, -0.620655, -1.516286, -0.126231, -1.185972, -0.854406, -1.301233, -0.016201, -1.167295, -2.183323, -0.297657, -1.153764, -0.804865, 0.413040, -0.048695, 1.138412, -0.351207, -0.038916, 0.473554, 0.947540, 0.486278, -0.754696, 0.387188, -1.302586, 0.226947, -0.042358, 1.148210, -0.038086, 0.177076, -0.914857, 0.308711, 0.950330, 0.594185, -1.560007, -0.794939, 1.250015, -0.967713, -0.337593, -0.739347, 1.546408, -0.541268, 0.168746, 1.156784, 0.555119, -0.926817, -0.507955, 0.927509, 0.613468, 0.952773, 1.526311, 0.520637, -0.398400, 1.130089, -1.276649, -1.238777, 0.380867, -0.822129, -0.442929, -0.398811, -2.096432, -1.404884, 0.540664, 1.687043, -0.583804, 0.153261, 0.029303, 0.112254, -0.566705, 0.101301, 0.629721, -0.395532, -0.133956, -1.767737, -1.777634, -1.615054, -0.480876, -0.422454, 0.370107, -1.262268, -1.115635, 0.048942, 0.953216, 0.990189, 0.131743, 0.650479, 0.784656, 0.275637, -0.495687, -0.283969, 1.291458, -0.937392, -0.002043, -1.165209, -1.257326, -0.635020, -1.815606, 0.190856, 0.057961, 1.036053, -1.100283, -1.248644, 2.220673, -0.047841, -0.455522, -1.833264, 0.767754, -0.115221, 2.451406, -0.033865, 1.504966, -0.494619, 0.332978, -1.581571, -1.797052, -1.852742, -1.164988, 0.560709, -1.276341, -0.601197, -0.433118, 1.388932, -0.636623, -2.550299, 0.669065, -0.570578, 1.597686, 1.185549, 0.013596, -0.266203, 0.109882, -0.007819, 1.901724, -0.023999, -0.387580, -1.274216, -0.926645, 0.047066, -0.540213, -0.720577, -0.990622, 0.595696, -0.188052, -1.242935, -0.416630, -0.458695, 1.605381, -0.473463, -0.136126, 1.461162, 0.549109, -0.425634, 0.706629, -0.635252, -0.886422, -0.032880, -0.923406, 0.850824, 1.186680, -0.162992, -1.549456, -0.637766, 1.434281, -0.314265, 0.520807, -0.004400, 0.082634, 0.543019, 1.346470, 0.306678, 1.324519, -0.370980, 1.506980, 0.082665, 0.622092, -0.061754, -1.130520, 1.091406, -0.188994, -0.330673, 0.307618, 0.261024, -0.229834, -0.039021, -0.485873, -1.027845, 0.854139, 0.079914, 0.744075, 0.076829, -2.005447, 1.247298, -0.583585, -0.653857, -0.656817, -0.571299, 1.430982, -0.837672, 0.395887, 1.332065, 0.656966, -0.807966, -0.593014, -0.321133, 0.376936, -0.117866, 0.374299, 1.385166, -1.588126, -0.167318, 1.034354, 0.422459, 0.342215, -0.349315, 0.536595, -1.440883, -0.125770, -0.130746, 0.250557, -0.166976, -0.677153, 0.039940, 1.954916, 1.422694, 1.188944, 1.494219, -0.785555, -0.799106, 0.401545, 0.581000, 0.764819, 0.563240, 0.774591, 1.020441, 0.367803, 0.740933, -0.282611, -0.298468, 0.480698, -2.031199, 1.139147, -0.093320, -0.383101, -0.986790, 0.979822, 0.538403, 1.454899, -1.173149, -0.016912, -0.149399, -0.233323, 1.552843, 1.125745, -0.462105, 0.592730, 0.318040, -0.693666, 1.134550, -0.981709, -0.946578, -0.839783, 1.446025, 1.140728, -0.181096, 0.357964, -0.973983, -0.548765, 0.152554, 1.791113, -0.962089, -1.400092, 0.108051, -0.744789, 1.104461, 0.066465, 0.670984, 0.228946, -0.228081, -0.514658, 0.211695, 1.694436, 1.147824, -2.012793, 0.479878, 0.786010, 0.501543, -0.990653, -1.509478, -0.272430, 0.732214, -0.768868, 0.618061, 1.018416, -0.879489, 1.950328, 0.201477, 0.178338, -1.094310, 0.157199, 0.823573, -0.490699, -0.254490, -0.856756, 0.560719, 2.064696, 1.129321, -2.003862, 0.014570, 1.126847, 1.718217, -0.862145, -0.618164, -0.576339, 0.544482, -1.794832, 0.357945, 1.795571, 0.180150, 2.701961, -0.171882, -0.230233, -0.804759, 0.595939, 1.705228, 0.019359, 0.969452, 0.612489, 0.184784, -0.020158, -2.015258, -1.382209, 0.673566, 0.113735, -0.074582, 0.599515, 0.740758, 1.146993, 1.093152, 0.994351, -2.106071, 1.405222, 0.711180, 0.355850, -1.545787, 0.410849, 0.790711, -0.317974, 0.286885, 0.111164, -0.542961, 0.262706, 0.584002, 0.744072, -0.045745, 0.657269, 0.958030, 0.169097, -1.113148, -1.135377, -1.031732, -0.660938, 1.234074, 1.741170, -2.216555, -0.234096, 1.711781, 0.094237, 1.021347, -1.044457, -0.145120, -0.285383, 0.624376, 0.828133, -2.221461, -0.045349, -1.097088, 0.494627, 1.280747, -1.358941, -1.751984, 1.328903, 0.407856, -0.027654, 1.743824, 0.747551, -0.808955, -1.298367, 0.233747, -0.599042, 0.043964, -0.251869, 0.019598, 1.234699, -0.934498, 0.067141, -1.665326, -0.998603, -0.207111, -0.539838, 0.972577, -0.919306, -0.577319, 0.456733, 1.192723, 1.104430, -1.442934, -0.324942, 0.628582, 1.103101, 2.212177, -0.045895, 1.267199, -0.943038, -1.882331, 1.080317, 1.326610, 0.151784, -0.525481, -0.498116, -0.739762, -1.409595, -0.094053, 0.836724, -0.649309, 0.921898, -0.395112, 0.429497, -0.641880, -0.103575, 0.427862, 0.139703, 0.057224, -0.388280, -0.337625, -1.041605, 0.221582, -0.263535, 2.037030, -0.742563, -2.270913, 2.346075, 0.118577, -1.171063, -0.731750, -1.952111, -0.176273, -0.110220, -0.129157, 1.014085, 1.182874, 1.334751, 1.400536, -1.424198, -2.235116, -1.851122, -1.061405, -0.093812, 1.465288, -0.624171, -1.084116, 0.743641, -0.713719, -0.265065, -0.594104, 1.594437, -1.304890, 0.623692, 0.005911, 1.280861, -0.491436, 0.229141, -0.236123, 1.226382, -0.699465, 1.871035, 0.329421, 0.622686, -0.975632, -0.046113, 1.780525, 0.363723, -2.167054, 1.092384, 0.243597, 0.739488, 0.224270, 1.581776, 1.369229, -0.161342, -0.214571, -1.165359, 0.651694, 1.656967, 0.482906, -1.295965, -2.367965, -1.871920, -2.222027, 0.065696, -0.491896, 1.061709, -0.237257, 1.363829, -0.126657, 0.196929, -0.168743, -0.659666, -0.426595, 0.176556, 0.556157, 0.479762, 0.209638, 0.207038, -0.176007, -0.641103, 0.479830, -1.136748, -0.385672, -0.699587, -0.067503, 0.279339, 1.171830, -0.679675, -0.495360, 1.401152, -0.445348, 1.277776, 1.179693, 0.804427, -0.081584, -0.586594, -0.196189, 0.066647, -0.515654, 0.136597, -0.035835, -0.318656, 0.535623, 0.144150, -1.276669, -0.040948, 0.817314, -2.504807, -1.826441, -1.645646, 0.139678, -0.098703, 0.972423, 0.188005, -0.419835, -0.754058, 0.276226, 1.371681, -0.221573, -0.301881, 0.545020, -0.515075, -0.355258, -1.689081, 0.684416, -1.362229, -1.246212, -0.168877, 0.843768, -0.138134, 1.609788, 0.144742, -2.287593, 0.433120, -1.286314, 0.686438, 0.120627, -0.133054, 2.563104, -1.487040, 0.290942, -0.195065, 1.644616, 0.467028, -0.287061, -0.939900, 0.980684, 2.155346, 1.820843, -1.023333, 0.730884, 0.448628, -0.458294, 0.621563, 0.899107, -0.225227, 1.782818, -1.636713, -0.288283, 0.526413, 1.281066, 1.713014, -1.040797, 1.320967, 1.652301, 0.533781, -0.439906, 0.832975, 0.243931, 1.351717, 1.460085, -0.058944, 1.360205, -0.023769, 1.027919, 0.087172, 0.297364, 1.531555, 1.381519, -1.559484, 0.421254, -2.637443, 0.962586, 0.005174, -1.349319, -0.130419, 1.550003, -1.458881, -2.538156, 2.014421, 0.006288, -0.000392, 1.645375, 0.914276, 0.950871, 1.842769, -0.500503, 0.988505, 1.283428, 1.037391, -0.388893, -1.431552, 0.776845, -0.584454, -1.040875, -1.613064, 0.128908, 0.102206, 1.516153, -0.160012, 0.849983, 0.717188, 0.766496, 1.962352, 0.798451, -1.234346, -1.840303, 0.922705, 0.644601, -0.027783, 0.256206, -0.749286, -2.566145, 0.478332, 2.329304, -0.387126, 0.452113, 0.334681, -0.161096, -0.474441, 0.097963, -0.089322, 1.795847, -0.042073, -0.664181, 1.218360, -0.340899, 0.127724, -0.310126, -0.467156, -0.134546, 0.631132, -0.115809, 0.842562, -0.827829, 0.410518, -2.267316, -0.677930, -1.355690, 0.736319, -0.956608, 0.433630, 0.861399, -0.080333, -0.592559, -1.044974, 1.532568, 0.549087, 1.318178, -0.619991, 0.058392, -0.105493, -0.640378, -0.797693, 0.228172, 0.273271, -0.386240, -0.488218, -0.812232, -1.479618, 0.084559, -1.608190, -0.392993, -0.135440, 1.051904, -0.758152, 0.782038, -0.013720, 0.308988, 0.206684, -1.368502, 0.320797, -0.886831, -0.751650, 2.008631, -0.046126, 1.144558, 0.284991, -0.262887, 0.304015, 0.723817, -0.777725, 1.323353, -0.091943, 1.153696, 1.369051, -0.246026, 0.125179, -2.001673, -0.967672, -1.063490, -1.689584, 0.057977, 0.811127, 1.515392, -1.096781, -1.523741, -1.262561, -0.267381, 0.954845, -0.161730, -0.151312, -0.893880, -1.196546, 0.550800, -1.905365, -1.008899, -0.121742, 0.701880, 1.683473, 0.225014, 1.300599, 0.295760, -0.207321, -0.061736, -0.683567, 0.635483, 1.609004, 0.883267, -1.149683, -1.042239, 1.514341, 2.086975, 0.222563, 1.309463, 0.905558, 0.184328, -0.581612, 1.141284, -1.304625, 0.037925, 0.325785, -0.516631, 1.265680, 0.332239, 0.214298, -0.258917, 0.038521, 0.312495, 0.092683, 0.474036, 0.855979, 0.157309, 1.511145, 0.505412, 0.261702, 0.269582, 0.358300, 0.062938, -0.818899, 0.298368, -0.496253, -1.183660, 0.062120, -1.237283, 1.233745, 0.307924, 2.330193, 0.039410, 1.774418, -0.605162, -1.621506, -0.486021, -0.431777, 0.956441, 0.677082, -0.492795, 0.156117, -0.126876, 0.845277, -1.613050, 0.086365, -1.560184, 1.316918, 0.078003, -0.592927, 1.359921, 0.187715, -2.275469, -1.945789, 0.627408, 0.190939, -0.351133, -0.806264, 0.824668, -0.042405, -0.539143, 0.845285, -0.089379, 0.878481, 0.284867, 0.526382, 0.717980, 0.182401, -0.541348, 2.146397, -1.088773, -0.805541, -0.345570, 1.661477, -0.595325, 0.684363, -1.257376, 0.023344, 0.734125, -0.291072, 0.021747, -1.480637, 1.270376, -2.572407, 1.487658, 1.404333, 1.011047, -0.112893, -0.818397, 0.684824, -1.135044, 0.836326, 1.505343, -0.082388, 0.162997, 1.576062, 0.342984, 0.928601, -0.092185, 0.427191, -0.330527, 1.518596, -0.110537, -0.484779, -0.760054, 0.642975, -0.984302, 0.624481, -0.029567, -0.715952, -0.011263, -0.298227, 0.275849, 0.027355, 1.377666, -0.459477, 0.628080, -0.467787, -0.230906, 0.376572, -0.254964, -1.277388, -0.769468, 1.400092, -0.108365, 0.988826, 0.326570, -1.100671, -0.340571, -0.158031, 0.198375, 1.156926, -0.063378, -0.340940, 0.650776, 0.856718, -1.035267, -0.605709, -0.439031, 0.944178, -0.584561, -0.830534, -2.074365, 0.638715, -1.666310, -0.988617, 0.461472, -1.422760, -0.782912, -0.108792, 0.436112, 2.355002, -1.235402, 0.553558, -1.002286, -0.327474, 0.468100, 0.246924, 1.424677, 0.112156, -0.975042, 0.546593, 0.658777, 0.162809, -0.601280, 0.949157, 0.174315, 0.900946, 0.310925, 0.004629, -1.549297, 1.764501, 1.482424, 1.837905, -1.039484, 0.149062, -0.630529, -1.177024, 1.068171, -1.280590, -0.303332, 0.179451, 0.169287, -0.258005, -0.425908, -1.375083, 0.802648, 0.945771, 1.557162, 0.789797, -0.166533, -1.327571, -0.354711, 0.250401, 0.330310, -0.255542, 1.117533, 1.200644, 0.675179, 1.269475, 2.209169, -0.490429, 0.058046, 1.673916, 1.371790, -0.658589, -1.335027, -0.871297, -1.264020, -0.430797, -0.891011, -1.678566, 1.099850, -1.632559, 0.025650, 0.544013, 0.184016, 0.729281, 1.388570, 1.340584, 0.339048, 1.167266, -1.789571, 0.831025, 1.163045, -0.025695, -0.161610, 1.300793, 0.028544, -0.651811, 0.115253, 3.349280, -1.690522, -0.740014, 1.528751, 1.295427, -0.357770, -1.472315, -0.387015, 0.802045, -0.463119, 0.243177, 0.322240, 0.559485, -0.666426, -0.058537, 0.244202, -2.163990, -1.198063, -0.534933, -0.009042, -0.866583, -0.659367, -0.952750, 0.054395, 0.584717, 0.550764, -0.614824, 0.009172, -1.510656, -0.756845, -1.174699, 0.030239, -0.433201, 0.695211, -0.858020, -1.342123, -0.836211, 0.001272, 0.052203, 0.434733, 1.141701, -0.214443, 0.191977, 0.336118, 0.740006, 0.034802, -0.784479, 0.096711, 0.727342, 0.055901, -0.414428, -1.824772, -0.881200, -1.991755, -1.703310, -0.643475, -1.899000, 0.020451, 0.354152, -1.656891, -0.303586, -0.650279, -1.334365, -0.388828, 0.257294, 0.598919, -1.616676, 0.474919, -1.193735, -0.324456, 0.396999, -0.882466, -0.097478, 1.547611, -1.214700, 0.191804, -0.625332, 0.365946, -1.514317, 1.307281, 1.258358, -0.226794, 0.344606, 1.404790, -1.004501, -1.057374, 0.540663, 0.249152, -0.669035, 0.125867, 0.989408, 0.769806, -0.500591, -1.445798, -0.767357, 0.641463, 0.041894, 0.111889, -0.966250, 0.669621, -0.610478, -0.533989, -0.412872, 0.472221, 0.478693, 1.378050, 0.727697, -0.964777, -0.788726, 0.736311, -0.848335, 0.543806, 0.803697, -0.106663, 0.811208, 1.240668, 2.250139, 1.136069, 0.246242, -0.121398, -0.486841, -3.434912, -1.275332, -3.317612, 0.069645, -0.413039, -0.369937, 2.498012, -0.762144, 0.303670, -1.258046, -0.375193, 0.563762, 2.457668, 0.232275, -1.474267, -0.259822, 0.681628, 1.628089, -0.325477, -0.547176, 0.592477, 0.459258, 0.410981, -1.505520, -0.494426, -0.053370, 0.621976, 0.288695, -1.813272, -1.824858, -0.283255, -1.062194, 1.142938, -0.158747, -0.943995, -0.521847, 0.896608, 2.761982, -2.603445, -0.730379, -1.142341, 1.221350, 0.770996, -0.867309, -0.275855, 0.152357, 0.407490, 0.225373, 1.259988, -0.002450, -0.561185, -1.630228, 1.834839, 0.582425, -0.461999, 0.268939, -0.619384, 0.187173, -0.958496, -0.951235, 1.445309, -1.371066, 0.868823, 3.438059, -2.021828, 0.150146, 1.012159, 0.703892, 0.976942, 1.792319, -0.139234, -0.496251, -0.161439, -0.984238, 0.317302, 0.588664, -1.038444, 0.222212, -1.746588, -0.022362, 0.914479, 0.903137, 0.029670, 0.105203, 1.680549, -0.345040, 2.162678, 2.025294, -2.193341, -1.256435, -0.307806, 0.242472, 1.013520, 1.866294, -0.149441, 0.927305, 1.010147, -0.534185, 0.255325, 1.065936, 0.812453, 0.207904, 0.180286, -1.882265, 0.035907, 1.266762, 1.252696, 0.653087, -0.494835, 0.543472, 1.246732, 0.317398, -0.412244, -0.952608, -1.371530, 0.213726, -0.625257, 2.081142, 1.456245, 1.249835, 0.640521, 0.788754, -1.067846, -0.369250, -0.639954, -0.182088, 2.146137, 0.944911, 0.223942, 0.528069, 0.980094, 0.124984, -1.529407, -0.797045, -2.993440, -0.395360, 0.508714, -0.262211, 0.293014, 2.141667, 1.894343, 0.454155, 1.467839, -2.669097, -0.350502, -0.684777, 0.710954, 0.797875, -2.239517, -0.155615, 0.077360, -1.304273, -1.536844, -0.107262, -0.326350, 0.036435, 1.129485, 0.877583, 1.250684, 0.067639, 2.080853, -0.715323, -0.076841, 0.419071, 1.760842, -0.058199, -1.315183, -0.555080, -1.034938, 0.699692, 0.314024, 1.955158, -0.287106, -0.854205, -1.337740, 0.583237, -0.421642, -1.707369, -1.324745, -0.850404, -1.204480, 2.133568, -0.112033, -0.894717, -0.978355, 0.908738, 1.238484, -0.615850, -1.937458, -2.196863, -1.252127, -0.526694, -0.546125, -1.344850, -0.982168, 2.173167, -0.083702, 0.007026, -0.246081, 0.238767, -0.724481, 2.339514, 0.084985, 0.703273, 2.061641, -0.154204, 2.239408, 0.423678, -2.063623, -1.252790, 0.650013, -1.658404, -0.693257, 1.838595, -0.771602, -0.149477, 0.358082, 1.407910, -0.144467, -1.152889, 0.401631, 0.303263, 0.131443, -0.819018, 1.100724, 0.464732, 0.491105, 1.228458, 1.311138, -1.197644, -0.111242, -0.919881, -0.922855, -0.189304, -0.030848, -0.102934, 0.066671, 0.117949, 1.304459, 0.352791, 0.620185, 0.711346, -0.059455, -0.385455, -0.096255, -0.191275, -0.494043, 0.748575, 0.782187, 0.307755, 0.037504, 0.372293, -0.903534, -1.848378, 1.287887, -0.524687, 1.163189, -0.129975, -0.903640, 0.148251, 0.268857, -0.148171, 0.143643, 0.987272, -0.125844, -1.091078, -2.237172, -0.879773, 0.548873, -0.880634, 0.334975, -0.082319, 0.048774, 1.491770, -0.228632, 0.325660, 0.418687, -1.585747, 0.752094, 0.611305, -0.188517, 0.078357, 0.959069, 0.028140, -1.591887, 0.769817, -0.893864, 1.043248, -0.631661, 1.426773, 1.757035, 0.597649, -0.683081, 0.432780, 1.424747, -1.326275, 0.576361, 0.261461, 0.128965, -1.035025, -1.207932, -0.312072, -0.163825, 2.215348, 1.238384, 0.671489, 0.400612, -0.837736, -0.307870, 0.181347, 0.874091, -0.210893, -1.045678, -0.506004, -0.976173, -0.104124, -0.462819, 0.905066, 1.636724, 0.550073, 0.297225, -0.322061, 0.483991, 0.549717, -0.212938, -0.101067, -0.196911, -1.498795, 0.027274, 1.918654, -1.903753, 0.028858, 0.872454, 0.507493, -1.433596, 1.538476, 1.463245, 0.511314, 0.992367, -2.023561, -0.103634, -0.280758, 0.898937, -0.635816, -1.741027, -0.710854, 0.232806, 0.997186, -0.068699, 0.527735, -0.306612, 1.320259, 0.524979, 1.566026, 0.745433, -1.261684, 0.429688, 0.668823, -0.129410, 1.041267, -0.107695, 0.385024, -0.541924, -1.335704, 0.712109, -1.242640, 0.957900, -1.226049, -0.428987, -2.854677, 0.170167, 0.898194, -0.259911, 0.116624, -1.037295, 0.424726, -0.450664, -0.849981, -0.069518, -1.837021, -0.111621, 0.918603, -1.012827, 0.307816, -0.167160, 1.764189, -1.923860, 2.134014, -1.209289, -1.026325, 1.243077, -1.813199, 0.730852, -0.503545, 0.467283, 1.100372, -0.970210, -0.427993, -1.247147, -1.260334, 1.119235, 0.371673, -0.801661, 0.890992, -1.029953, -0.621906, -0.129162, -0.155884, 1.275557, 0.072217, -1.300900, 0.355759, 0.862411, 0.771433, -0.290071, 1.168941, -0.460358, -0.233635, -0.049346, 0.203962, 0.105250, 0.740352, 1.040948, 0.221734, -0.233648, -0.454181, -1.126288, 0.025229, -0.278310, -0.103982, -0.264373, 0.348480, 0.971696, -1.928843, -0.328395, 1.040008, 2.561056, 0.943739, -0.678772, -0.353803, 0.339516, 0.759326, 1.300684, -1.149924, -0.191907, 1.919679, -0.718326, -0.382216, -0.129293, -1.117456, 1.295387, -0.840581, 0.386809, -0.158824, 0.027075, -0.358692, 0.396634, 0.524984, -0.931175, -2.105458, 0.259047, 0.406823, 1.514007, -1.440626, 0.870172, 1.896048, -0.972844, 0.353884, -0.522369, 0.743633, 2.892678, -0.447871, -2.060688, 2.193885, 1.602998, 0.363908, 0.778097, -0.649055, -0.643641, -0.180242, 0.417444, 2.334388, 1.051741, -1.314835, 0.172733, 0.425691, -0.940487, 1.854761, -0.310319, -0.356594, 0.165421, 0.983026, -1.231497, 2.365194, 0.863807, 1.327166, -0.854160, -0.846990, -2.275567, -0.030467, 0.086538, 0.208191, 0.417749, -0.673133, 0.248403, -0.821390, 0.930110, -0.537681, 0.722272, -0.438084, 0.521775, -0.444775, 1.123706, -0.366154, -1.211334, 0.785763, -0.090212, 0.399610, -0.778955, -1.737424, -0.944608, 1.953097, -0.049402, -2.043326, -0.945736, 0.121193, 0.337845, -0.800513, 0.401829, 0.789317, -0.466685, 1.038434, 1.135158, -2.149812, -0.791029, -0.417211, -0.077371, -0.108307, -0.355600, -0.871421, -0.014547, -0.760972, 0.300661, 1.775042, 0.201609, -1.265828, 2.669960, -0.984106, 0.357699, -0.112097, -0.093051, 0.575159, -1.898535, 1.101097, 0.339002, 0.701391, 2.337458, 0.528637, 1.840637, 0.475147, -0.562820, 0.338753, 0.403679, 0.574363, -2.119347, 0.609968, -1.012849, -1.352962, 0.231849, 0.278812, -0.013616, 1.019185, 0.261277, 0.286280, 1.581873, 0.142259, -0.720907, 1.581380, -0.359791, 0.808249, -0.255167, 1.464218, -0.318399, 0.344273, -0.984958, -1.620986, -1.138884, 1.536932, -0.108202, -0.483328, -1.162456, -1.223146, 1.430757, -0.093890, -0.862485, 0.331000, 0.292759, -2.178923, -0.816021, -0.624117, 1.602224, -0.106339, 2.169772, -0.014278, 0.309661, 0.241634, -0.391667, -0.038346, 0.716072, -0.408375, 0.221501, 0.251063, 0.452108, -0.113625, 0.302859, 2.721525, -0.187321, 0.650628, 0.950048, 0.037648, -0.749137, -0.041241, -0.629328, 0.101210, -0.297283, -1.216799, -0.946815, -0.415470, 0.320461, 1.088325, -1.371601, -1.912377, 0.762343, 0.840408, -0.726547, -0.147991, -2.197295, -1.215911, 0.231504, -1.210398, 0.098692, 1.652076, 0.953677, 0.637737, 0.408459, -0.379354, 0.027540, -0.410371, 1.428545, -0.123122, -0.799414, 1.413017, 0.990663, 0.563771, -0.436278, 0.171840, 1.534318, 0.066921, -0.551868, 1.566881, 0.403103, 1.363561, 1.148942, -0.302120, -0.056281, -0.738906, 0.820263, 0.261098, -0.329456, 0.222278, -0.363365, -1.735313, 0.914271, 2.036753, -1.325607, 0.638314, -2.356230, 1.099741, -1.592053, 0.784023, 1.364543, -0.450988, 2.585830, -0.541140, -0.671554, -0.878177, 1.009884, 1.076272, 0.753052, 0.568429, 1.302246, 0.337833, 2.142000, 0.333981, 0.809878, 1.108388, -0.064714, 0.320127, -1.319582, -0.296741, -0.488517, 1.125798, 0.329502, -0.257559, 0.787120, 0.722466, 0.048714, 1.953891, -2.059062, 1.769919, 0.226752, 0.226126, 0.195641, -0.456240, 0.910647, 0.088730, -0.788780, 0.096395, 1.663035, 1.255488, -1.548699, -3.336155, 0.109129, -1.154656, 0.219741, -0.408942, -0.808253, 0.407780, 1.290327, 0.357330, -0.518125, -1.934839, -0.738774, 0.205591, -0.893549, 1.140193, -0.339865, 2.108851, -1.050804, -0.284021, 0.554164, 0.134279, -0.453211, 1.002542, -0.790829, 0.995897, -0.045379, -0.303787, -0.079004, 0.529985, 0.166934, -0.218553, 1.857520, -1.740195, 0.008362, 0.335930, 1.359018, 0.546026, -0.056666, -2.716472, 0.259483, 0.417710, -0.030669, 0.204734, -0.112383, -1.271630, -1.629727, 0.289883, 0.570985, 2.225081, 0.740098, -0.944959, 1.065357, -2.396979, 1.728588, 1.765830, 1.699483, 0.208346, 0.873128, -1.751580, -0.228863, 0.215537, 0.996368, -1.161910, 0.796919, 3.245623, 1.779665, -0.866491, -2.005794, -1.095217, -0.505462, 0.066627, -0.930149, -0.344587, 0.684385, -0.116935, 1.015545, -0.331658, -0.022402, -0.644539, -2.867691, -1.161617, 0.305834, 0.881094, -1.766287, -2.208297, 1.272215, 0.046028, -1.084531, -0.123789, -0.702800, -0.169766, -0.545750, -0.539380, 1.566526, -0.806409, 0.856156, 1.339557, -0.979540, 0.293885, 1.136141, -0.820292, -0.482555, -0.567841, 1.190734, 2.046194, 1.558453, 0.728943, 0.248332, -0.312406, -0.733023, -0.111732, 0.794256, 0.245471, -0.179121, 0.304966, 0.809319, 0.413332, -1.077685, -0.194387, -1.306237, 0.103199, 0.789988, 0.228082, -0.232963, -1.031974, 1.523923, 0.475141, 0.981131, 0.211370, 0.543180, -2.815670, -0.392107, 1.093994, -0.778228, -1.632739, 1.038689, -0.026396, 0.127708, -0.304561, -0.139410, 1.180005, 0.548800, 0.615076, -0.486102, 0.271175, -0.182000, 0.550931, 0.489203, 0.597428, 1.967353, 0.690271, -0.278638, 1.199280, 1.811475, 0.611303, 1.653204, 0.209449, -0.271386, -1.447027, -0.290825, -0.339195, 1.279329, -0.153505, -0.324407, -0.153552, 0.355896, 0.180559, 0.687147, -1.038141, 0.112882, 0.717571, 0.240427, -1.330195, -0.401013, -1.788596, -1.268662, -0.309635, -1.296623, 0.263301, 1.392039, -0.343556, -1.572679, 0.116925, 0.549390, 0.405567, 0.492136, 0.227724, 0.903605, -1.144802, 0.568041, 0.540512, 0.509992, -3.318491, -0.854823, 0.766625, 0.463274, 1.010227, 1.737680, -0.673925, 0.778945, 0.278941, 0.581580, -1.079286, -0.706330, 0.892325, 0.674350, -0.440848, 0.387607, -0.679627, -0.850609, -0.451993, -0.087611, -0.672285, -1.168569, 0.616856, 1.317201, 0.114958, -1.039682, -1.416106, -0.342592, 0.660260, 2.357647, 0.165979, -1.584079, 0.860112, -1.366584, -0.097526, 0.122607, 0.862487, 0.731924, 1.418219, 0.849132, -0.597117, 2.540466, -0.578632, -1.115295, 1.333190, 0.086513, -0.053591, 0.225131, -1.602764, 0.500208, 0.032654, 0.322420, -0.189129, -1.890881, -0.382670, -0.432913, 0.319351, 0.055069, 0.936737, 0.113776, 0.776327, -0.193125, -0.158743, 0.753608, 0.645885, -0.325324, 1.526171, 0.749130, 0.130848, -1.612800, 0.918753, -0.388036, 0.447818, -0.952199, 0.037843, -1.134077, 0.684074, -0.591570, 0.242446, -1.553247, 0.193325, -0.466172, 0.498750, -0.637181, -1.580025, -0.175192, -0.735099, -0.096882, -0.306228, 1.140357, 0.078491, 0.301933, 0.826565, -0.474013, -0.392096, -0.340153, -0.662475, -1.318035, 0.199364, 1.173646, 0.060547, -0.277690, 0.037742, 0.626429, 0.276228, 1.365709, -0.826479, 0.720810, -1.543668, -0.931893, -0.898319, 0.037826, -0.992644, -0.229341, -1.291530, 0.776097, 1.106078, -0.502102, -0.195784, 0.678352, 0.443396, -0.729560, -0.643773, 0.684174, 2.167852, -0.343895, -1.148394, 0.610099, 1.218483, -0.648867, -0.660539, -0.011589, 0.242672, 1.619911, 1.122103, -0.949625, -0.346093, 0.313354, -1.480383, 0.114799, -0.631290, 1.376870, 0.528655, 0.147564, -0.571892, -0.902503, 0.027523, -2.386206, 0.047019, 0.712340, 0.373050, -3.742981, -0.960977, -0.765825, -1.196275, 0.592246, -1.001031, -0.734095, 1.194421, -1.299737, 0.718205, 0.129740, 1.449906, 1.456795, 1.322775, -1.037488, 0.919950, 1.299589, -0.220103, 0.679789, -0.731794, -1.099227, 0.747064, -1.272311, -0.494790, -0.517814, -1.236414, -1.206991, -2.020248, 0.256161, 0.375244, 0.392100, -0.787414, -0.073884, -0.833548, -0.218742, -1.180919, 1.210457, -0.961551, 0.132198, -0.598840, -0.559707, -1.828597, -1.602170, 0.678783, -0.544020, 0.822751, 1.626201, 2.232374, -0.138779, -0.694156, 0.000847, -0.650478, -1.229205, 0.703766, -0.283488, 0.543350, 1.657942, -0.328912, 0.148650, -0.124798, -0.037360, -0.834730, -1.556607, 1.613294, -0.802447, 0.187936, 1.174586, -0.217522, -1.521824, -0.163067, 0.595951, 0.662811, -0.033540, 1.009212, -0.151565, -0.378193, -1.852612, 0.341086, 0.621315, -1.264951, -2.818332, 0.325491, 1.167756, -1.980884, -0.313517, -0.961457, -0.038815, -1.048902, 0.303013, 1.832546, 0.130136, 0.960339, -0.537327, -0.142277, -0.623377, 0.956756, 0.485942, 0.379199, 0.288153, 1.208403, 1.155517, -1.177368, 0.607068, 0.203230, 1.012689, 0.025322, 2.288601, -1.962106, -0.994810, 0.599504, 0.344037, -2.161122, 0.506686, 1.213832, 0.227534, 1.660662, -0.606905, -0.867402, 0.589378, -2.365501, 0.173724, -0.380677, 2.189913, -0.031614, -0.154074, 0.410991, 0.208099, 0.580851, -1.544862, 1.329000, -0.516037, 0.342867, 0.298892, -0.465886, -0.625069, 1.187250, 0.590677, 0.053370, -1.004794, -1.401529, -1.035537, -0.628932, -1.463349, -0.955950, -0.467803, -1.743691, -0.472147, 1.943463, -0.252482, -0.142277, -0.841892, 0.950755, -0.976874, -0.267182, 0.021924, -0.604220, 0.003174, -1.378690, -0.917260, 0.163232, 0.875701, 0.362346, -0.000697, 0.044516, -1.024250, -1.371196, 0.818301, -0.954579, 0.344323, -1.664236, -1.013830, -0.021952, -0.023982, 1.597108, 0.705133, -3.162140, 1.383527, 1.264118, 0.222059, -0.506200, -1.928744, 2.200409, -0.270185, 1.081008, -0.800158, -0.357231, 0.289235, -0.594162, 0.044104, 0.719819, -1.518946, -0.150641, -0.939045, -1.684735}, + { -0.075818, -0.591056, -0.203184, -0.000746, -0.297645, 0.391987, 0.301354, -1.067063, 0.503172, 0.718119, -1.699602, 0.882575, 0.744414, -0.829243, 0.975778, 2.207309, -0.688361, -0.303853, 1.611673, 0.289883, -2.782591, 0.178586, 1.731738, -1.109886, -0.591628, 1.219229, 1.127124, 0.650235, -2.183071, -0.734204, -0.283618, -0.773913, 0.242742, 0.658706, 0.569280, 0.855442, -1.795356, -1.059935, 1.629796, 0.221182, -0.168840, 0.429339, 0.019499, -0.222937, -0.676228, -0.876359, 0.264665, 0.499466, -0.215084, 0.434298, 0.497651, -0.714105, 0.513151, 1.114845, 0.529509, 0.363861, -0.784813, 0.106611, -0.234912, 0.582431, -0.509431, 0.463722, -0.745261, -0.652358, -0.116182, 0.686116, -0.093189, 1.176759, 1.526295, 0.130450, 3.006197, 0.467975, 0.830607, 0.741303, -1.302031, -1.225514, -2.744079, -1.262118, 0.595829, 0.377909, -0.110930, -0.076925, -0.061071, 0.356284, 1.418585, -1.080366, 0.678356, -0.536989, 0.286910, -0.477631, -1.817675, 0.750332, 1.055889, 0.603314, -1.094795, 0.164761, 0.795688, 0.470629, 0.011230, 2.731884, -1.098709, 0.371479, -0.399019, -0.399803, 0.726631, -0.420814, 0.875257, -1.715272, -0.001264, 1.897607, -0.528751, -0.464735, 0.362777, 0.697868, 1.138464, -1.077565, -1.506992, 1.755002, -1.332765, -0.533883, -1.300747, 2.041262, 0.507811, 0.176813, -0.470497, 0.008381, 1.005808, 0.111211, 0.529343, 0.408063, 0.157513, -0.876860, 0.292996, -2.088128, 0.150622, -0.699342, 1.632175, -1.677590, 0.685664, 1.318200, 0.275651, -1.542503, -0.216152, 1.512114, -0.978928, -1.662969, -0.809575, 0.134984, 0.356887, -1.125470, -0.894769, 1.228497, -2.276622, -2.345372, 0.903469, -0.426379, -0.589865, -0.061567, -1.824102, -1.675176, 0.587386, 0.129867, 0.269369, 0.924985, 0.223019, -0.281389, 0.539594, -1.069914, 0.706722, -0.299142, 1.657878, 0.423268, 2.812116, -0.358220, 0.426580, 1.636693, 1.169133, -0.242839, 0.815258, -1.559850, 1.379328, 0.569973, 0.843199, -0.708583, -0.269013, -0.614245, 0.003019, -0.891025, 0.600493, -0.395048, -0.602764, -0.920318, -0.230134, 1.074987, 0.685926, -0.588487, 2.000565, 2.150665, -1.063414, 0.548167, -0.233040, 0.378996, 0.446337, -0.580621, 0.020128, 0.418870, 0.189227, 0.417250, -0.265171, 0.991254, -0.186357, 0.305849, 0.643100, -0.201048, -1.147260, 0.059509, -0.205426, -1.176731, -1.871982, -0.152198, 0.753215, 1.328457, 0.949134, 0.336266, -1.634675, 0.802454, -0.013598, -0.500140, -0.354332, -0.056919, -0.527163, -1.528844, 0.219224, -0.596693, -0.660274, 0.436824, -0.528790, -0.404186, 0.479671, 1.660770, -0.228581, -0.938038, -0.865225, -0.120912, -0.869814, -0.631828, -1.611058, 0.717008, 1.212493, 0.822863, 0.946994, -0.287564, 0.318448, 1.790949, -0.345807, 0.084848, -2.735029, -0.622923, -0.135313, -0.023435, -0.273825, 0.137685, 0.581551, 0.275621, -0.980397, 0.104893, 0.910032, -0.746566, -0.557435, 0.536291, -0.697447, 0.081836, 0.402436, 0.467083, -0.179142, 1.197302, 1.476778, 1.147592, -0.325082, 0.084812, -0.949026, -2.120154, 0.436866, 0.585607, -0.455147, -1.077923, -1.667871, -0.534206, 0.255791, -0.084062, -1.288494, -0.794506, -1.418958, -1.956882, -0.326849, 0.761938, 0.188717, 0.161439, 1.925249, -0.638581, 2.167075, 0.379375, -1.080229, 0.339205, -0.312691, 2.167922, 0.574815, 0.885331, 0.493129, 0.294114, -0.344645, -0.715179, -0.302560, 0.573559, -1.868044, 0.693858, -0.715592, 0.768519, 2.493984, 0.777753, 0.362307, -0.101264, 1.609456, -0.292330, 0.591547, -0.901044, -0.395944, -0.687151, 1.213101, -1.420922, 2.208108, 0.547884, 0.762590, 0.242986, 1.115821, 0.926447, -0.657233, 1.236022, -0.309429, 1.399785, -2.227902, -0.003809, -1.089583, -0.155297, -0.858382, -0.994752, 0.361045, 0.459807, 0.737149, -0.130919, 1.203072, 0.356398, 0.655216, 0.013671, 0.962188, 0.868420, 0.082053, -0.334015, -0.427765, 0.735269, -0.691213, 0.488611, -0.326986, 0.489971, 1.652623, 0.291087, -0.040772, -0.420552, -0.056084, 0.277826, -1.883673, 0.468472, 2.054070, -1.610662, 0.183714, 1.102596, 0.772954, 1.693413, 1.445988, -1.137661, -0.141325, -0.622301, 0.006393, -0.884850, 1.002120, 0.645773, -0.090861, 1.080341, -1.500663, 1.320626, 0.669547, -2.595552, 0.845621, 0.327436, -0.355436, 0.516004, 1.854887, 0.700505, 0.671752, -1.354331, 0.980456, -0.427137, -0.927301, -1.820176, -0.981218, -1.194150, 0.315045, 0.021733, -0.744935, 1.131451, -0.421028, 0.857346, -0.963097, 0.323527, -0.297951, -0.302454, -0.141004, 0.211454, -0.736983, 0.027141, -2.570904, -0.004068, -0.520198, 1.228741, 0.608092, -1.163575, -1.200350, -1.906412, -1.316357, 0.435733, 0.314957, 1.463497, -1.726823, 0.411802, -0.995351, 0.328443, 0.589587, 1.161308, 1.269894, 0.000864, -0.669958, -1.170734, -0.306897, 0.813266, -0.054548, 0.575938, 1.372825, -2.078029, 1.361749, 1.028377, -1.300539, -0.841800, 0.018339, -1.158966, 1.465181, 0.503631, -0.557325, -0.017204, -0.645261, -2.052901, 0.294085, -1.344063, -0.071089, 0.542979, -0.686364, -1.704995, -0.016104, 0.013893, 0.416073, -0.060993, 1.281186, -2.285144, 0.925526, 1.325849, 1.240047, -0.965018, 0.355224, 0.885112, -2.308917, 0.022059, 0.398899, 0.540163, 1.244802, 0.106283, 0.318419, 0.308530, 0.136895, -0.426789, 0.171461, -0.247609, 0.030064, 0.797424, -0.771029, -1.640079, -0.112640, -1.347726, -0.856826, -2.681372, 0.658750, 0.894154, -0.560418, 0.459026, 0.011281, 1.107731, 0.759959, 0.349417, 0.604720, 0.759985, -2.042573, -0.797079, 0.118170, 1.519774, -0.549714, -1.447577, -0.408993, -1.586553, -1.357910, 0.370954, -0.093002, 0.983589, -0.026437, 0.356506, -0.144430, 0.813638, -0.406420, 1.071391, 1.616723, -0.668873, -0.343954, -0.879210, -0.811743, 0.173981, -1.712460, -0.788406, -0.734806, 0.384649, -0.128088, 0.047616, -0.017519, 0.653405, 1.587662, 0.489960, -0.461334, -0.217019, -1.117423, -0.150461, 0.155841, -0.462382, -1.244611, 0.486257, 0.137425, -0.142641, -0.218207, -0.773001, 0.234715, 1.768985, -0.744872, -1.355896, -1.477842, 1.497080, -1.373374, -1.635711, -0.184275, 0.880896, 1.301994, 1.176412, -0.514677, 0.756981, 0.974307, -1.050675, 1.166521, -0.188740, 0.125473, 0.879383, -1.720362, -0.158602, -1.192396, 0.522076, 0.173412, -0.008877, 0.213117, -0.625154, -0.733218, -1.747669, 1.417209, 0.112440, 2.183440, 0.684636, -0.054791, -0.196834, 0.371640, 1.224291, 0.213305, 0.697020, -1.245772, 0.901466, -0.446039, -0.818270, 2.708708, 0.423931, 0.042169, 0.577899, -0.482756, 1.680901, 0.513257, 1.740272, -0.539891, -0.934281, -1.668307, -0.245802, -0.244376, -0.222213, -1.308956, 0.366338, -1.845397, 0.410688, 1.036196, 0.413241, 0.409510, -0.352512, 1.055341, -0.124908, 0.867170, -0.357473, 1.585324, -0.042768, -1.009225, -1.615473, -0.474490, 0.576445, 0.955794, 1.079710, 1.555776, -1.477289, -0.199500, -1.313659, 0.606937, -0.544959, 0.043119, -0.775890, 0.344170, 1.208706, 1.908984, 1.482895, -0.528106, 2.143611, 0.485469, 1.680593, 1.362918, 0.730531, -2.102340, 0.044886, 0.544160, -0.875090, -0.101456, 0.568089, -0.433850, -0.151209, 0.613436, 1.428467, 1.306991, -1.066352, -0.149791, -0.903824, 0.805184, -0.893422, 0.892775, -0.178189, 0.109300, 0.269072, -0.230340, 0.929517, 2.082050, -0.011854, 0.867216, -0.237540, 0.611737, -1.173773, -1.749500, 0.334649, 0.138566, 0.124509, 0.080841, 0.036189, 1.504761, -0.100675, 0.554198, 0.313428, 1.524298, 1.859559, -1.169674, 1.325822, -0.652379, -0.516166, 0.134771, 1.181378, -1.690249, 0.248256, 0.184333, -0.523780, -2.413045, -1.053354, -0.306026, 0.236648, -1.572342, -1.047770, 0.751448, 0.339150, -0.494041, -1.893447, -0.235308, 0.064264, 0.046988, 1.981716, -0.127397, 0.315015, -1.628040, 0.076587, -0.573340, 0.321453, -0.521165, 1.273583, -0.966274, -2.114611, -0.536952, 0.144996, -0.780299, -0.935535, 0.088825, -0.040910, 2.084124, 0.936409, 2.810586, 0.124005, 0.127283, 0.694560, 0.502367, 0.148034, -0.621752, 0.070649, -0.440923, -1.171717, -1.031349, -0.521696, -0.887322, -1.839129, -0.774408, -0.066049, -0.038174, -0.588403, 1.423813, 1.474157, 0.535514, 1.615030, 1.225503, 1.152056, 0.516053, 1.089590, -1.066190, 0.192370, 0.523916, -0.179157, 0.105351, -0.947115, 0.716954, 0.015325, 0.288231, 0.424537, -0.753833, 0.027087, -3.675045, -0.090765, 1.092801, 0.430864, 0.561499, -2.256565, -0.597150, 0.889171, 1.397961, -0.733913, 1.385188, -0.001447, -0.950268, 0.227548, -0.764067, -0.202498, 0.749815, 0.313749, -0.266840, 0.017444, 0.959492, 0.188555, -2.141024, -0.940327, -0.965526, 0.026873, -1.213501, -0.377153, 0.392924, -0.829945, 0.292557, -0.454602, -0.693818, -0.096988, -0.322176, 1.159081, -0.798123, -1.747694, -0.373071, -0.132011, 0.706681, -0.747720, -0.855929, 0.620011, -0.016718, 0.231226, -1.114918, 0.834109, -0.363585, -0.857226, -0.663288, -0.589717, 0.256435, -0.964734, -0.217967, -0.088349, -0.280938, -0.727965, -1.746968, -1.106385, -0.147203, -0.140409, -0.164293, -0.309257, -0.431281, -0.598302, 0.064008, -0.271517, 1.109756, -1.691761, -0.430134, 0.318368, -0.344823, 0.272827, -1.121198, 0.745457, 0.897591, -0.706200, 0.209976, -0.035755, -0.613884, 0.890334, 0.642694, 0.890836, 1.631471, -1.431814, 0.148201, 0.892726, -0.399325, 0.959943, -1.109057, -1.368136, -1.520686, -1.267245, -0.742559, 0.143233, -0.853587, -0.306600, -0.758736, -0.414820, -0.652026, -0.478137, -0.253427, -2.231979, -1.075703, 1.202082, 0.592509, -1.947696, 0.803558, 0.294605, 0.492636, -0.341489, -0.760671, -0.745105, -1.362836, 0.462362, 0.505779, -0.985064, -1.380559, -1.815218, 1.416375, -1.074194, -1.587418, -0.103223, -1.703095, -0.779193, 0.074315, 0.026178, -1.345037, 0.891032, 0.204909, -0.586400, -0.600944, 0.751890, 1.196609, -1.016430, 0.716123, -0.068246, -1.096565, -2.116214, 0.300928, -1.712698, 0.286790, 1.497939, 0.786162, -1.614773, -1.860155, -1.052558, 0.624718, 0.052969, 0.931686, -1.406795, 0.720874, -0.232274, 0.705340, -1.493329, -0.018443, 0.038162, -0.883086, 0.361363, -1.416216, 0.284943, -0.947201, 0.597141, -0.153477, -0.030014, 1.032378, -0.442512, -1.189060, 0.873973, -0.695849, -2.213670, -0.882565, 1.924593, 0.385527, -1.826749, 1.356966, -0.939668, 0.452114, -0.861320, 0.646611, -1.654788, 0.105652, -0.977826, -0.262637, -0.785443, 0.537789, 0.621140, -2.139691, 0.356133, -0.129503, -0.677756, 0.394433, -0.155510, 0.951923, -2.544760, 1.474002, -1.682877, 0.361991, 1.079167, -0.440421, 0.605869, -0.727371, -0.943646, -0.003097, -1.570753, -0.079297, -0.938677, 2.082263, -1.459062, -0.026338, -0.038563, -0.993783, 0.561255, -0.309214, 0.227159, 0.446961, 0.248196, -0.246098, 0.310695, -0.044911, -0.677601, -0.018911, 0.048850, 1.031594, 0.497150, -1.340823, 0.183893, 0.128366, -1.711080, 1.115235, -1.229392, 0.032065, -0.025242, -0.460189, -1.997183, -1.656676, -0.732582, 0.802921, -0.247523, -0.609633, -1.208488, -0.339399, -0.359070, 0.556005, -1.588518, -0.321263, 0.832858, 0.022334, -0.315544, -0.841888, 0.965152, 0.220015, 0.370088, -0.423696, 0.370877, 0.193378, 0.292879, -1.624798, -0.103574, -1.441935, 0.767723, 1.239516, -0.708171, -0.424174, -1.046110, -0.478123, 1.578071, -0.911382, -1.260897, -0.389807, -1.355822, -1.183033, 1.375509, -1.063042, -0.388363, -0.493549, 0.210866, 1.899580, 0.773886, 0.186683, -0.428925, -0.730664, 0.375465, -0.085533, 0.089020, 1.035511, 0.670976, 0.218544, -1.035212, -0.642320, -0.920104, 0.106518, -0.396411, -1.157877, -0.591797, 0.031682, 0.272614, 0.022728, -0.500464, 0.037725, -3.046452, 1.252567, -1.729744, -0.382654, -1.596030, -0.787100, -0.145173, -1.346201, -0.501846, -0.962874, 0.310012, -0.920081, 0.515726, -2.139237, -1.199519, 1.517574, 1.064883, -0.669418, -1.426992, -0.322023, -1.160855, -1.319991, -0.249540, -0.345650, -0.535926, 0.124848, -0.120100, 0.762485, 0.188459, -0.250986, -0.046337, 2.474099, 0.689626, 0.265537, 0.257378, -0.706513, 0.895898, 0.570130, 1.254666, 0.162203, 0.510184, -1.048993, -1.618204, 2.051298, -0.834612, -1.243334, -0.507539, -0.997368, 0.045870, 0.011098, -0.296018, 0.334154, -1.750444, -0.176534, -1.769745, 1.107860, -0.492425, -0.166301, 0.491276, -0.263682, 0.685303, 0.280421, -0.897950, -0.447638, 0.088219, -1.180396, -1.071527, 0.212744, -0.668130, -0.525322, -0.659127, 0.762409, 0.057134, 0.600757, -1.520167, -1.413539, 1.944629, -0.791205, -0.447695, -0.011525, 0.303494, -2.708285, 0.638961, 0.249727, 1.184608, -1.231511, -1.262940, -0.111445, 0.691747, -0.959549, -0.762079, 1.687524, 1.510708, 0.210334, 0.272234, 0.184174, 0.181007, -0.206666, 1.007502, -0.324370, -1.335822, -0.480793, -1.842633, 0.889679, -0.541488, -1.895418, 0.421949, 0.309808, -1.855416, -0.394806, -0.041118, -0.159588, -0.824810, -1.376193, 0.388323, -0.125261, 0.087424, 0.578072, -0.161669, -0.206666, -0.000901, -0.794746, 1.184063, 1.564185, -0.026446, -0.119892, -0.512899, 1.232171, -0.344044, -1.130769, 0.886468, 0.930687, 0.273673, -0.591044, 2.895325, 0.788515, -0.386483, 0.577774, -0.169166, -0.471177, -0.991231, -0.885463, 1.090140, -0.982257, 1.352726, -1.693375, 0.362623, -0.492076, 0.946487, -0.130451, 0.639254, -0.707612, -1.138114, -0.390362, -0.249415, -1.171884, 0.153889, -0.361292, -0.916888, 0.419279, 0.335560, -0.396742, -2.169792, -1.046930, -0.499992, 0.672447, 0.119241, -0.543357, 0.330962, -0.134297, -0.381561, 0.310227, -0.392893, -1.720807, -0.234639, 0.556892, 0.546144, -1.113599, -0.685624, -0.800096, -0.381167, 0.804749, 1.173142, 0.684220, 1.722527, -0.347309, 0.079430, -2.097420, 1.220698, 1.919348, -1.220601, -0.500909, 1.096617, 1.079036, -1.391160, -3.083988, 1.168284, -0.991734, -0.220750, 0.656736, 0.184796, 0.416914, 0.811207, -0.846886, -0.622048, 1.193362, -1.342224, -1.473104, 0.832949, -0.040353, 1.221314, 0.208736, 0.874326, 0.151801, 0.162985, -0.670745, 0.626361, -0.967524, -0.220985, -0.146030, 0.177744, -0.870385, 0.517654, 0.129671, 0.598079, -0.062657, -0.285816, -1.259093, 0.876722, 0.925887, 0.597017, -1.648818, -0.489811, -2.439874, 0.121074, -0.407178, 0.546370, 0.973699, 0.015731, 0.337310, -0.903763, -0.286117, -0.614001, 0.968098, 0.876372, -0.036632, -1.747042, -1.282208, 1.261094, -0.988761, -1.116189, 1.575006, 1.010292, 0.290900, -0.292176, -0.253057, 0.224972, -0.337883, 0.005757, 1.137743, 1.109346, -0.451816, 0.757448, 1.482964, -1.638232, -1.277956, 1.493354, -0.592169, -0.277191, 0.076587, -0.035848, 0.677240, 1.012707, 0.405492, 0.605020, 0.225234, 2.521533, 0.947664, 1.061697, -0.384343, -0.972024, 0.131999, 2.022173, 1.059384, -0.488363, -1.617576, -0.014261, -0.732568, -1.028268, -2.290382, 1.329463, -0.169677, 0.019459, -1.401621, -0.581824, 0.455100, 0.868947, 0.090089, 1.376154, -1.042156, 0.933030, 1.422728, -0.802212, -0.747890, -0.804913, -0.264717, 1.004431, -0.111982, -0.044602, 0.304564, 0.254894, -1.860408, -0.486249, 1.028236, 0.340723, 3.047611, -0.684780, 1.342468, -2.472524, 0.451482, 0.425573, -2.275865, 1.497084, -1.298511, -1.709691, 0.679781, 1.229960, -0.433712, 1.877490, 0.793857, 1.954033, -0.698140, 1.568206, -0.022005, 0.076450, -1.149271, -1.821467, -0.220102, -0.201767, 0.044970, 0.764303, -0.069851, 1.106191, -0.379200, 1.449744, 1.660439, -0.482123, -0.304538, 0.037902, -0.210253, -0.050149, 1.594593, 0.492205, -0.288568, 0.041845, 0.983835, -0.916269, 0.455563, -0.566204, 0.950589, 0.646441, 0.548964, 0.407556, 0.307062, -1.227505, -0.709472, -0.149893, 0.510432, 0.413103, 1.173523, -0.660993, -1.056819, -0.102123, 1.012297, 0.141917, 1.009825, -1.134005, -0.461669, 1.171521, -1.318070, 1.692350, 0.475427, -0.820688, -0.880813, -0.142301, -0.844139, -0.841167, 0.159084, 0.141464, -1.362352, -0.671180, 0.100479, 1.517085, 0.524847, 0.175662, 0.275842, -0.905782, -0.324609, 0.284645, 0.832123, 0.666395, 0.222120, -1.141387, 0.727903, 0.045130, 0.488142, -0.212239, 0.487966, -0.754320, -0.260107, 0.382926, 1.616069, -0.716543, 1.260595, -0.041568, -0.814031, -0.165971, 0.084740, 0.205446, 0.050175, -1.261618, -0.353256, -0.718868, 0.661163, 0.272589, -0.882800, -0.191929, -0.067958, 0.597570, 0.346665, 0.957152, -0.300808, 0.858213, -0.745969, 0.633791, -1.832026, 0.538740, 1.538278, 0.948613, -1.397874, 1.267650, 0.231879, 1.215656, -1.784792, 2.027219, -1.100480, -0.341697, -0.476907, 0.469314, -0.454101, -1.391549, -0.914652, 0.136423, -0.043894, 0.105271, 0.787583, -2.736787, 0.876073, 1.825613, -0.971365, 0.527591, -0.026089, 1.205358, 0.936230, 1.045423, 1.694508, 1.129753, 0.313584, 1.499306, -0.265604, -1.571710, 0.134713, 0.814008, 0.198352, -0.366126, -0.700297, 1.084885, -0.071790, -1.068945, 1.576784, 0.734362, -0.711401, -0.228013, -2.928062, 0.468969, -1.264188, -0.225184, -0.377279, 0.914456, -1.237966, -0.567818, -0.555914, -0.631102, -1.157279, -0.213071, 0.450072, 1.346997, -0.033324, 0.789134, -1.662441, 1.276019, -0.894285, 0.407313, 0.887254, -0.779422, 2.004203, 1.028558, -0.620035, 0.225015, -1.677583, -0.095121, -1.175099, -0.573074, -0.304635, -0.731464, 2.122812, 0.874244, -1.087295, -0.942071, -1.083327, -1.127135, -0.754511, -1.284704, -1.981655, -0.866103, -0.199541, 1.605151, -0.166845, -1.096004, -1.930730, 0.412878, -0.390717, -1.401817, -1.251059, -1.566991, -1.096548, 0.646112, 0.607761, -1.935379, -1.165243, 1.585131, 0.257150, 1.808403, 0.086640, -0.048395, -0.842602, -0.301244, -0.620573, 0.587174, 0.172419, 0.208644, -1.612760, -2.095382, 1.522686, 0.599714, -0.708396, 0.632872, 0.961131, -1.175685, -1.261553, 3.415161, 0.169983, -0.104753, 0.319112, 1.410486, 0.145205, 0.071399, -1.056122, -1.924997, -0.167837, -1.162837, 1.216714, -0.063863, 0.699949, 0.277748, 0.672244, 0.721502, 1.372695, -0.507591, 0.487367, -0.867242, 0.545261, 0.871342, 0.077829, 1.814803, -0.863385, 0.183913, -0.562954, 1.561878, 0.584509, -0.030514, -0.712794, 0.978965, -0.021822, 0.043779, 1.620364, -0.704684, -0.827396, 0.289949, -0.971657, -0.140514, 0.195789, 0.648104, 0.179484, -1.001529, 1.924112, -1.602037, -0.928144, 0.420025, -0.917936, 0.803733, -1.142172, -0.188048, -1.184683, 0.275593, -1.316129, -0.118010, -1.129870, -0.725636, 1.796310, -0.057981, 1.484004, 0.114383, 0.114117, 0.603914, 0.714446, 1.877501, -1.353178, 0.202151, -0.221773, -0.254065, -0.958124, 0.129955, 0.219788, 1.715067, 0.920766, -0.131310, -1.248116, 1.671395, 0.022640, 1.429746, 0.303731, -1.720618, 0.240166, 1.259839, -0.921569, -0.165145, 0.759344, 0.989586, 0.647752, 0.107819, 0.993330, 0.457475, 0.005494, -1.594286, 1.148626, 1.149115, 0.279188, 0.653253, 1.705159, 0.305919, -0.402713, 0.349680, -0.539183, 1.066644, -0.071285, -0.316347, -0.577238, 1.381330, -0.260807, -1.498562, -0.122145, -0.563380, 0.653984, -0.801267, 0.158307, -1.941762, -0.751918, -0.389394, 0.254528, 1.301172, -0.625870, -1.028864, -0.634810, -1.930789, -0.331867, -0.047626, 0.655002, 2.108449, -0.776421, 1.649689, 0.198283, -1.421047, 2.327541, -0.629022, -0.279321, 0.415714, -1.249274, 1.122512, 2.083090, -0.393452, 2.563719, 0.479450, 0.145998, -2.357371, 0.288567, 0.840443, -2.047362, -0.461986, 0.878108, -0.226359, -0.222260, -2.572335, 0.736007, 2.017128, -0.687887, 0.938935, -0.859391, -0.982199, 1.287959, 0.062654, 0.492705, 0.275411, -0.150736, -1.892570, -0.029135, -0.043017, 0.894850, -0.877438, 0.351613, 0.628031, 1.094157, 1.084340, -0.770707, -0.731155, -0.278358, -0.172389, -1.146052, 0.238804, -0.040969, 0.718151, 2.043048, -1.311332, -0.624905, 0.541602, -0.586132, 0.052475, 0.893489, -0.804338, -0.387510, -0.573959, 0.315601, 0.773308, -0.885552, 0.293446, -0.242503, -0.928720, -0.503570, 1.100616, -1.032455, -1.628769, -0.042108, -0.019853, -0.738972, 1.366961, 0.563828, 2.640649, 0.596482, -1.137360, 0.175252, -0.620212, -0.723550, 0.990794, 0.247558, -0.301077, 0.123412, -0.056271, 1.653553, -0.858767, -0.307647, 0.265298, -0.185962, 1.363818, -0.879795, -1.478590, -0.074724, 0.360432, 0.065027, -1.610073, 1.111246, -0.347380, 0.204331, 1.221726, -0.312249, -0.874413, 0.803924, 0.064427, 1.105186, -0.748914, -0.746336, 0.929088, -0.905738, 1.343876, -0.001172, 0.136742, 1.934662, 3.150151, -0.798899, 1.362113, 1.041329, 0.455618, 0.315998, -0.696032, 0.192649, -1.044719, 0.255112, 1.092784, -0.944510, 0.159147, -0.273536, 0.712169, 0.058739, -0.919032, -1.069123, 0.013313, 0.900948, -1.179680, 1.123940, 0.220330, 1.129012, 0.701180, -0.015543, 1.395214, 0.369544, 0.642706, -1.249181, 0.212995, 1.179969, 0.054417, -1.589687, 0.399382, -1.726101, 0.472572, 1.800372, -1.357050, -0.079374, 0.799958, -1.312552, -0.513878, 0.233168, 1.161842, -1.094785, 0.369547, 1.714236, -0.263661, -1.507267, 0.353039, -0.578635, -0.277923, 0.021170, -0.362338, 0.948991, -1.368173, 1.647924, -1.472080, -0.016196, -0.177558, -0.394813, 1.957538, -0.055152, -0.145461, 1.200067, 1.367057, 1.641809, -0.644549, 0.641574, 0.285099, -0.664347, 1.010943, 0.465759, 1.716424, 0.565441, -1.163611, -0.212965, 0.205402, 1.288685, 0.530526, 0.671905, -0.105072, -1.135145, -0.064551, -1.107730, 1.725507, -1.657628, 0.856442, -2.391062, -0.957406, -0.404597, -1.017910, 1.564189, 0.684785, -1.019658, 0.290997, 1.904313, -0.993336, -1.105065, -1.515707, -0.548524, -1.175112, -0.298375, -1.049333, 1.031558, 0.427376, -0.823241, -0.563910, -1.435000, 0.515427, -0.049848, 0.991135, 1.500111, 0.186583, 0.553531, 0.581259, 1.233875, 0.802887, 0.572360, 1.375407, -1.157420, 0.125060, 0.461825, 0.596607, 1.534893, 1.574667, 0.271506, -1.427169, 0.046462, -0.176918, 0.061816, -0.506091, -0.678542, -1.339521, 1.100562, 1.344152, -0.960403, -0.278467, -1.062182, -1.314608, -0.011052, -1.245140, -0.276169, 2.021185, 0.563738, -0.644156, -1.064438, 0.624931, 0.584426, -0.563866, 0.340167, 1.762778, 1.371897, 1.419641, -0.907380, 0.035263, 0.097068, 0.939155, -1.656281, 0.127050, -0.703998, 0.493076, 0.685896, 0.665403, 0.595804, 2.588446, 0.155018, -0.284598, -0.522437, 0.766980, 1.138201, -1.230030, 0.110804, 0.060141, -1.352180, -0.899369, 0.682701, 0.305924, 0.096397, -0.445926, 2.199063, -0.672741, 0.040332, 0.146922, 0.401178, 0.858765, 0.697275, -1.060959, 0.126470, 1.377174, 1.253311, -1.261162, 1.564206, 2.271658, 0.988629, 1.844125, -0.992662, 1.350860, 0.164341, 1.293733, 1.618906, 0.630063, -0.816075, 0.280282, 0.051895, -0.640232, -1.150002, -3.080724, -0.498267, -0.470859, -1.315557, 0.340118, 1.018165, 0.140445, 1.129642, 0.498629, 0.541341, 0.644215, -1.644060, -0.098696, 0.828206, -1.067134, -1.844585, -0.608242, 0.611572, -0.388459, -1.041062, -1.412708, -0.134792, -0.122579, -0.757064, 1.132478, 0.215656, 0.062299, 0.876984, 1.311026, 1.174293, -0.069191, 0.178443, -0.324862, 0.029224, -1.075424, 1.200888, -2.571353, -1.002923, 0.230659, -1.446932, 1.008186, 0.533513, -0.221080, -2.187396, 1.087559, -0.015153, -0.092345, 0.994260, -0.225294, 0.505484, 1.089592, -0.491557, -0.284194, 0.708267, -0.169160, -1.178633, -1.179001, 0.271299, 0.929075, 0.639085, 1.777936, -0.830756, 1.033938, -0.061123, -0.992942, -0.598720, 0.944533, -1.956956, 0.543540, -1.295239, -0.562628, -0.802752, -0.072292, -1.135609, -0.037172, -0.272980, -0.324959, -1.248582, 0.649931, 0.406174, -1.289498, 1.782808, -1.622212, -0.382329, 0.236415, -0.331627, 0.403486, 1.419194, -2.588876, -0.527585, -1.034215, 0.211263, 0.372151, 0.812252, 0.104390, 0.624087, 1.089527, 0.432375, 0.739598, -0.970199, 0.594113, 1.093161, -0.288740, -0.160297, 1.437057, -0.148633, 2.567780, 1.011771, -0.828158, -1.201101, 0.989310, -1.629129, -1.165482, 1.246788, 0.935957, 0.027147, -0.675624, -0.177684, -1.424364, 0.624798, 0.155815, -0.380471, 1.182673, 0.928967, -0.958184, 0.911680, -0.014899, -1.926187, 0.682967, 0.605108, -1.637383, -0.374624, -0.500326, -0.181313, 0.422237, 1.006675, -1.134395, 1.219744, 0.655412, -1.245753, -1.365429, 0.387908, 1.050710, -1.071248, -0.380033, -0.587971, 1.110402, 1.065151, -1.454789, 0.582347, 0.662052, -3.565404, -1.196262, -1.132220, -0.227955, -1.347359, -0.734206, -0.138054, -0.082716, 0.568702, 1.673525, -0.124625, 0.473618, 0.713585, 1.139749, -0.045842, -0.827239, -0.577113, -1.674940, 0.223915, 0.076205, -1.002675, -2.001907, 0.420844, 1.228567, 1.433535, -0.180279, -0.159862, -1.109201, -0.349067, 1.075758, -1.765161, 0.061335, -0.002015, -0.519528, 0.266577, 3.075597, -0.982695, 0.626364, -1.309960, 0.933386, 0.260442, -1.596889, -0.332377, -0.856043, -1.780646, 0.949066, 1.224838, 1.253429, 0.581929, -0.976370, 0.691330, 0.942890, -1.146879, 0.973846, -1.096758, 0.571349, 0.353609, -0.553145, 0.220460, 0.184108, 0.217372, -0.264821, -0.595082, 0.080119, 1.349929, 0.027105, -0.027121, 0.054263, -0.982975, 1.446170, 2.331579, -0.759880, 0.853705, -0.432689, 0.476077, -0.995481, -0.768857, -0.180961, -0.228097, 1.353094, 1.048855, 0.979230, -0.047234, 0.850025, -0.503473, -2.035920, -0.313841, -0.547903, 2.376536, 0.734173, 0.339800, -0.380841, 0.264354, 1.214792, 0.935403, 0.270869, -0.477737, 0.250155, 1.353561, -0.521893, 0.990114, -2.849964, 0.108214, -1.129583, -2.077878, -1.281634, -1.994060, -0.167327, -1.245368, -0.722166, 0.044723, 0.276775, -1.719943, -0.173245, -0.295598, 1.996413, -0.646564, 0.345526, -2.659988, -0.253053, 1.581224, -0.810070, -1.273080, 0.115906, 0.304241, 1.065867, 0.925326, 0.310196, 1.217457, -1.108867, -0.425747, 0.040085, 1.439721, -0.502158, 0.486769, -1.126464, 1.885642, -1.185868, 1.393428, -0.405540, 0.761226, -0.377442, 1.831328, -0.374368, 0.934902, 1.483621, -0.407181, 0.332821, 2.564792, -0.588145, -0.616430, 0.441118, 0.762081, 1.253380, 0.526200, 0.001138, 1.033337, 0.457189, 1.456730, 1.011832, -1.610564, -1.335127, 0.538580, -2.329069, 0.334858, 0.306899, -1.379403, -0.874540, 0.895054, -0.173407, 2.950027, 0.971631, -1.451143, 0.453958, -1.714846, 0.168847, -0.295778, -0.621256, -0.682408, -0.349149, -0.207716, -0.506704, -0.909843, 1.437497, -1.492183, 1.342605, 0.979898, 0.123058, 1.993252, 0.736258, 0.167455, 0.346111, 1.255046, -0.426396, 0.415413, -0.925741, 1.198061, -1.563860, -2.812731, -0.427487, 0.808061, -0.399791, -0.636045, -0.166330, 0.506937, -0.195267, 0.802221, 2.710629, 0.351318, -1.696857, 0.102946, -0.332469, -2.173164, 0.574663, 0.286648, 0.332205, 2.505264, -1.407676, -0.248154, -0.074637, -0.372474, -0.168848, 0.551458, -0.436748, -0.785700, -0.615975, -1.463746, 0.618240, 1.172318, 0.719314, -0.706190, 0.619601, 1.672925, -1.006650, 0.291401, -0.403922, 0.185660, 0.628145, 0.289075, -0.540787, -1.473052, 0.662369, 1.942811, -0.976873, 0.791022, -0.468271, -0.722179, 0.887671, 0.462926, 0.168636, -0.111884, 2.179097, 0.006878, -2.150818, 0.979276, -1.293147, -0.074581, 0.711296, -0.122852, 0.877658, -0.044725, -0.557662, 0.917786, -0.568293, -0.333207, 0.618101, 0.920110, -0.218275, -0.960238, 0.446125, 1.195297, 0.892561, -0.543786, -0.476612, -0.332735, -2.045561, 0.525798, -0.488994, -0.511668, 0.766189, 0.320238, 1.192662, -1.408691, -0.199886, -0.453609, 0.476752, 0.387769, 0.349363, 0.512665, 1.072424, 0.202521, -3.094417, 0.978829, 1.320110, -1.099669, 3.760933, -0.868246, 0.970421, -2.039010, 0.128818, 0.614204, 2.883813, 1.009524, -1.260296, 0.323732, -0.288636, -0.039334, -0.331054, 0.466141, -0.019847, 0.315500, 0.946303, -0.701186, 0.208868, 1.905578, 1.813530, -0.406877, 0.756561, -1.263388, 0.526564, 0.905555, -0.134575, 1.493412, -1.782325, 0.455414, 0.169842, 1.062688, 0.125256, -0.137948, -1.418954, 0.563231, 1.467403, -1.734277, -2.149393, 1.765377, -1.069711, 0.250284, 1.955204, 0.056126, -0.578536, 0.495374, -0.581583, -0.634974, 0.237446, 0.718248, 1.093879, 0.026230, -1.528573, 0.203226, -0.559380, 0.896533, -0.830164, -1.336144, 0.985746, 0.755703, 0.336177, -0.652567, -1.192332, -0.262274, -0.816787, 0.801439, -0.620404, -0.129530, 0.975235, 0.592630, -0.184600, 0.575761, 0.726673, -0.565054, 1.453449, 1.685595, 0.032512, 0.389116, -0.248480, -0.622384, 0.729515, 0.628035, 1.294047, -0.715810, 0.566967, 1.540521, 0.390523, -0.589072, 0.273522, 0.746850, -0.958943, -1.404668, 1.155863, -0.061324, -0.094209, -1.279766, 0.620800, -0.373147, 0.749646, -0.374297, -1.341863, -0.732700, -2.753261, 1.004262, -0.388252, -0.961750, 1.525378, -0.700466, -1.034341, -1.490526, 0.761863, -1.286224, -0.509527, -1.837048, 0.730076, -2.229025, -0.965252, -0.992688, -0.624744, -1.930007, -0.703721, -0.157936, -0.878294, 1.383294, -0.851993, -0.486904, -0.819725, 1.408491, 1.992350, 0.330946, 0.065642, -1.090164, 0.312453, -0.671054, -1.732722, 0.386495, 0.360509, -2.479034, 0.738454, 1.864550, -2.404187, -0.840974, 0.016088, 1.276416, 0.224159, -0.558924, 2.318322, -0.500173, -0.007499, 1.157529, 0.408084, 0.558226, 0.391427, -0.894135, 0.374559, -0.246438, -0.794939, -1.658494, 0.198752, 0.150165, -0.733977, 1.360330, -0.422883, -0.825078, 1.249488, -0.503430, 2.928321, -0.970940, -0.238422, 1.105674, 0.268645, -0.757536, -2.832117, 1.159778, -0.680744, 0.545722, -0.618019, 0.426964, 0.659525, -0.364003, -0.557914, 0.128287, -0.885962, 0.746591, 0.220739, -1.686320, 1.409848, -1.198848, 0.414005, -1.289015, 0.039071, 1.442726, 0.119119, -2.721095, -0.255724, 1.155655, 0.450205, 0.959781, -0.548513, -0.159625, 1.268709, -0.402405, -0.584743, -1.953841, -0.358458, -0.063988, 0.321273, -0.633728, -0.635546, -0.645367, -1.162710, -1.873105, -1.761609, 0.400040, 1.024582, 0.535850, -1.133397, 0.185719, 0.049218, -0.851100, -0.349522, 1.882402, 0.508832, 0.378816, 1.768009, -0.615872, 0.188629, 0.418927, 1.611827, 0.846372, -0.649961, -0.576610, -0.109461, 1.213409, -0.444213, -0.402615, 0.002401, 0.017294, 2.214653, -1.525667, 0.533940, -3.034938, -0.460777, -0.608046, 0.830330, 0.175598, 0.913385, -0.988328, -0.213475, -0.911910, 0.298693, 3.005962, -0.212154, 0.444440, -0.473383, -1.745708, 0.960744, 1.191932, -0.420916, 0.621711, 1.021961, -1.601436, 0.918531, 0.139949, 1.481416, -0.061062, 0.053439, -0.519220, 0.871188, 0.513302, 0.266515, 0.853800, -0.881407, -0.290305, 0.743577, 0.601252, 0.549321, -0.445788, -0.355887, 1.400722, -0.672777, 1.057535, -1.233429, 1.094780, 0.965736, -0.310853, -1.678528, 0.619529, 0.793998, 1.398361, -1.662440, 0.856883, -0.448439, -0.494303, -0.231334, 0.405108, 1.856014, -1.669587, 0.095830, 0.240024, -0.081665, 0.703771, -1.326431, 1.203215, -0.540652, 0.586635, 0.405935, -0.129015, 1.709634, -0.594532, 1.196396, -0.810765, -0.898486, -0.071709, 0.274741, 0.522168, 1.036472, 0.283235, -2.342389, -0.718954, -0.724378, 1.057270, 0.040996, 1.079504, 0.155778, -0.543263, 0.488636, 0.835416, 1.129733, 0.045717, 0.769714, -0.689369, 1.411262, 0.053424, -0.320722, 3.737025, 0.334115, -0.546718, -0.401194, -0.093908, -0.627543, 0.441268, -1.078475, -0.099997, 0.791467, -0.549693, 1.726522, -1.363197, 1.009899, 0.470967, -1.025000, -0.039468, -0.063946, 0.809110, -0.131282, 1.050846, 0.236913, 1.290191, -0.414093, -0.196181, 0.161538, 0.000324, -0.512244, 1.178116, 0.559787, -1.255154, 0.012575, -0.182269, 0.481208, 1.452533, 1.996540, 0.237765, -1.373747, 0.694297, 1.338212, 0.056376, -0.643675, 0.089394, 0.658110, 0.801983, 0.654715, -1.295524, 0.649866, -0.185472, 0.883040, -1.665356, 1.524109, 0.993325, -1.131085, -1.507919, 0.027679, -0.431438, -1.304939, -0.597322, 0.875573, -1.776028, -0.806748, 0.365096, 1.099873, -1.329986, -0.409661, -0.611411, 0.584560, -0.425469, -0.192923, 1.074816, 0.410060, -0.075563, 0.451203, -0.304552, 0.856291, -2.022831, -1.491387, -0.794346, -0.054649, 0.162545, 1.042509, -2.013751, -0.948257, 0.661606, -0.650751, -0.457412, 1.092160, -0.289327, 1.670884, -0.861488, -0.591204, -0.187137, -1.193776, 1.215790, 1.147436, 1.071922, -1.774488, -0.675497, 0.020242, 1.699264, -0.011231, -0.333199, -1.276701, -0.412578, -0.221402, 0.494323, 0.297903, 1.705337, -0.953069, 0.622685, 0.502630, -1.629097, 1.255001, 0.994979, 0.401801, -0.034957, -1.494329, -0.275720, 0.354249, 0.694323, 0.841273, -2.125783, 2.278531, 0.315798, -0.107364, 2.079105, 1.692243, 0.612938, -0.893820, 0.543899, -0.892344, 0.675757, -1.231271, 2.586736, 0.082063, 0.256327, 0.137135, 0.696548, -3.044806, 0.485734, 0.511301, 0.835762, 0.972800, 0.772034, 0.160139, 0.321373, 0.923421, 0.472582, -0.154076, 0.207681, -0.660596, -0.222122, -0.435287, -1.143711, -1.292466, 0.259114, -1.448504, -1.483679, -0.457159, -1.510673, 1.513370, -1.326769, 0.093488, -0.485474, -0.224536, -0.119058, 1.135986, 0.571311, 1.076806, 0.064273, -1.800631, -0.070383, 1.340873, 0.022232, -1.405145, 1.304409, -0.175222, 0.700726, -0.313308, 0.301398, 0.025638, 0.412665, 0.110587, 0.451591, 0.923826, -0.219210, 0.211712, 2.477168, -0.085771, -0.427976, 2.043479, -1.397180, 0.010947, -1.855130, 1.131352, -1.571261, -0.176521, -2.018724, -0.402290, -1.580851, -0.310350, -0.410448, -0.332347, -0.899330, 2.239630}, + { 0.215526, 0.409687, 1.090577, 1.284390, -0.443895, -0.714152, 0.315767, 0.888568, 0.661879, -0.378118, 0.491394, 0.381146, -2.141651, 1.659848, 0.274731, -0.042401, 1.469519, -2.239749, -2.884779, 1.371669, -0.242489, 0.618739, -0.570531, 0.812054, 0.403573, -0.736863, -0.607307, 1.559896, -1.401298, -0.096459, -1.228971, 0.525430, 0.029999, 0.888707, 0.318898, -1.716522, -1.438573, 0.131450, -0.207859, -1.537542, 0.437631, -0.964826, 0.942356, -0.485371, 1.239270, -0.705258, -1.657876, 1.358001, -0.981108, 1.574241, -0.239172, 0.025372, -0.591218, 1.421114, 0.276982, -0.741328, -1.946845, -1.316428, 0.098014, -1.208354, 0.949621, 1.258478, -0.917418, 1.090733, -0.434793, 0.209628, 0.087473, 1.699378, 0.677657, 0.290364, 0.487393, 0.359777, 0.168883, 0.157982, 0.116802, 0.430311, -1.595249, -0.242194, 1.038691, -0.121876, 0.342756, -0.134744, -1.266627, 0.429234, 1.108338, 0.844087, -0.793448, -0.595734, 1.908631, 0.023103, 0.224546, -0.467459, 0.203309, -0.487532, 0.327334, -0.172252, -0.097251, 0.722738, 1.358439, -0.625426, 0.551813, -0.885152, -0.036480, -1.561506, 0.969890, 0.314954, 1.270357, -0.908786, 0.626644, -1.183423, 0.495238, 1.294053, 0.262642, 1.773470, 0.739000, 0.604913, 0.249998, -1.579724, 0.131188, -0.421640, -0.661127, 0.194651, -1.287361, -0.727889, 1.336216, 0.567445, -0.242576, -0.834003, -1.084175, 1.338661, -0.289822, -1.501823, -0.225768, 0.803003, 1.277666, -1.051206, 0.718759, 0.773232, -0.344757, -0.589868, 1.761656, -0.386543, -0.485531, 0.284223, 0.317253, 0.080206, 0.680562, -0.561424, -0.307939, 0.399227, -0.571094, -1.235802, -1.406009, -0.195667, 1.482581, 1.638587, 0.210167, 0.806809, 0.654165, 2.281445, 2.721549, -0.397153, 0.152589, -2.169064, 0.073077, 0.398147, -0.826443, -0.444460, 0.887338, 0.744228, 0.689237, 0.515575, -2.476143, -0.847941, 1.280272, 0.949733, -1.523935, -0.862421, -0.595863, 0.373389, 1.517710, -0.122849, 0.533561, 0.304920, 1.962725, -2.324195, -0.536958, -0.710560, 0.847652, -0.075265, 0.630369, -0.847557, -0.275667, 0.589812, -0.088120, 0.184348, 1.373408, -2.342404, 0.590128, 2.212539, -0.748013, 0.286825, -2.621174, -1.965343, 1.485601, -0.775098, -0.737873, 0.177286, 0.724211, -0.484656, 0.665422, 1.447445, -0.304960, 1.784384, 1.218602, 1.531587, 0.290660, 0.338470, -1.146192, 0.130562, 1.913726, 0.841451, -0.896783, -0.061932, 0.196068, 0.985695, -0.285203, -0.919384, 1.206259, -0.824310, -0.594661, 0.368886, 0.279368, -0.724930, 1.702239, -0.165275, 2.310662, -1.160809, -0.654894, -0.973199, -1.714792, 0.106092, 0.362688, -0.501025, -2.444887, 1.329903, 0.425645, 0.547992, -0.594307, 0.619151, 1.220065, 1.261557, 0.529601, 2.124057, -0.890005, -0.578615, 0.843695, -1.269988, 0.911076, -2.132953, 0.944229, 1.238164, 0.877048, -1.880674, -0.302004, 0.237351, 1.398038, 0.648374, -2.184474, -0.817304, 1.594838, -0.492204, 0.963722, -1.084733, -0.491696, -0.541098, -0.539125, -0.840530, 1.209343, 0.024555, 0.377189, -0.804931, 0.750597, -0.505189, 0.838862, -0.732263, 1.575088, -1.572310, 0.303244, 0.875091, -0.013350, 0.384593, -0.192259, 0.027669, 0.324050, 0.141739, 0.773219, -0.507072, -1.411694, 0.716698, -0.605801, -1.219265, -1.373423, 0.696819, -0.549891, -1.106304, -0.468183, 0.829981, 1.125888, 0.514679, 0.389891, -1.035506, 1.626298, 0.479780, 1.553569, -0.139646, -0.039229, -1.672482, 0.332797, 0.658391, 0.248132, -1.151248, 0.183991, 0.592306, 0.118701, -0.731253, -0.957688, -0.444323, 0.087313, 1.254458, 0.024000, 0.311122, -0.023393, 2.856555, -0.444776, 0.351659, -0.126721, -0.370785, 0.172592, -1.251775, 0.019289, 1.744605, 1.730600, 0.573293, 0.526800, -0.545828, 1.191950, -0.450589, -0.464514, 0.787549, 1.442910, 0.633606, 0.266706, -0.729220, 1.059399, -1.269086, -1.980263, -1.133950, 0.766747, 0.808979, 0.507097, -0.321702, 2.328300, -1.054596, -0.840321, 0.446925, 1.644660, 1.123069, 0.084649, -0.628663, 0.251455, 0.321945, -1.282532, 0.472390, -0.221070, -0.925060, 0.517071, -1.907875, 0.977885, 0.046137, 0.198761, 0.655464, 1.650469, 0.526895, 0.333946, -1.207398, -0.354559, 2.111474, -1.124213, 0.569844, 0.791649, -0.349399, 0.013586, 0.423925, -0.285861, -0.776608, 0.392645, -1.757199, -2.091754, -1.639829, -0.687267, -1.510223, 0.562150, -0.586711, -0.255652, -1.218108, 0.820028, -0.149810, -0.264409, -1.614063, -0.788424, 0.319706, 2.455064, 1.815266, 1.791533, 0.056187, 0.504798, 0.696144, -0.760468, -0.580104, 0.379410, 0.008530, 0.024751, -1.494168, -0.630858, 0.184618, 1.128394, 0.975188, 0.484422, 1.461507, 0.580571, 0.383921, -0.208277, 1.209061, 1.441022, 0.824912, -1.184958, -1.296562, 1.095398, -0.084726, 1.096537, 0.952094, -0.967616, -0.210287, -1.315215, -0.178997, -0.717847, -0.414805, 0.382811, 0.643747, 0.770611, 0.447813, -1.089983, -0.817322, -0.265966, 1.426679, -0.320748, 0.124349, -0.274980, -0.327261, 0.168765, 1.875293, 0.108007, 2.061271, 0.367762, 0.048799, 0.280124, -0.985575, -0.391178, -1.255338, -0.245916, 1.342777, -0.006230, 0.748332, -0.630073, 0.391469, -1.078841, -0.750995, 0.017830, -0.424541, 2.703267, -0.801087, -0.007799, -0.928106, -0.764780, -1.052843, -1.950055, -0.977156, 0.597246, -1.323303, 2.779191, -0.043662, 0.741630, -2.045099, 1.160139, -0.043264, -0.232956, 0.460806, 1.174063, 1.328879, -0.746572, 1.134981, -0.242134, 0.046758, -0.292247, -1.137849, -1.321586, -1.608515, 0.344015, 1.348575, 0.528033, -0.734853, -0.152848, 0.505122, 0.645917, -1.228281, -2.010693, 0.610686, -1.266320, 0.201763, -0.250365, 0.094915, -0.186679, 1.469444, -1.496231, -0.522801, 2.402463, 0.567516, -0.009150, -0.523192, -0.444408, -0.210184, 0.608853, -0.243902, -1.027415, 2.256664, 0.225927, -0.409782, 1.603983, 0.639988, -1.444623, 1.215515, 0.370909, -2.659801, -0.133965, 1.211606, -0.552721, -2.004376, -0.534112, 0.948225, 1.533206, -0.109470, 1.053581, -1.558025, 1.001784, 1.315789, -1.869034, -0.464723, -0.514585, -1.475670, -0.390842, -0.800514, 1.035593, -0.453677, -0.693146, -0.300582, 0.286678, -1.212606, 0.506452, -1.257111, -0.257762, -1.685929, -0.605514, -0.165717, 2.056473, 0.690541, 1.117693, -0.116535, 1.341526, 0.081507, -0.847239, 0.870075, 0.125081, 2.057704, -0.471227, -1.446838, -0.323346, 1.169628, -1.865229, 0.109203, 0.897338, 1.013952, -0.790778, -1.430827, -0.089008, 1.125302, 0.885649, -0.622544, -1.191232, 1.171044, -0.293059, -0.953648, -1.724933, 1.667446, 0.117274, 0.580746, -1.088211, 0.400539, 1.989319, -1.089085, -1.721010, -0.454090, -2.126140, 1.762848, -0.044468, 0.730620, -1.003890, -0.133218, 0.923187, -0.275271, 0.955659, 0.762678, -0.617991, -0.502057, -0.330033, 1.109693, -0.405314, 0.941613, 0.297915, -0.316818, -0.334987, -2.128098, 0.760758, -2.404556, 0.694712, 1.006909, -0.806457, 0.429200, -0.135113, -0.428558, -2.391591, 0.520649, -0.134281, -0.552818, -0.590171, 0.959968, -0.347834, -1.641266, -0.315221, 0.238038, 0.642173, 1.702436, 0.503674, -1.460577, 2.077308, -1.210378, 0.648018, 0.219434, -0.387740, -0.045143, -0.255279, 2.180543, 0.392957, 0.606058, 0.042986, -0.133739, 0.079767, 0.728225, -0.369480, 1.990511, 1.951053, -1.796045, -0.437872, 0.220161, 2.258023, 1.164245, -0.964507, 0.327755, 0.586533, -0.321083, -1.278273, 0.038869, 0.979405, -0.196651, 1.142382, 1.647521, -0.512052, 0.032099, -1.014324, 1.763835, 0.554408, 0.773176, -0.877646, -0.202161, 0.168884, -0.805045, 1.684020, -0.113639, 0.968029, 0.193183, 1.008574, -0.881452, 0.533242, -1.502287, 0.874110, -2.268507, 0.039742, 0.178377, 1.938643, -0.483449, -0.424959, 0.262304, -0.063234, 1.110842, 0.909550, -1.274071, -0.384946, -1.642151, -0.370299, -0.395374, -0.432394, 0.026096, -0.297272, -0.492284, -1.172588, 0.242709, -0.671642, -2.635369, 0.065189, -0.924473, -0.461338, 1.017893, -0.288359, -0.381257, 1.757639, -1.244236, -1.955964, -1.094910, -0.863250, 2.525353, -0.847405, 0.157933, -2.216475, -0.229354, -1.765684, -0.286490, 1.390844, 0.448352, -0.123708, 1.667295, -0.224747, -0.290958, 0.127682, -0.431860, -1.520321, -0.855510, -0.098453, 0.707583, -1.565375, -0.592337, 0.717365, 1.006152, -0.285100, 1.055439, -1.208744, 1.158231, -0.102353, 1.110858, -1.680240, -1.241536, -0.090199, -0.535791, -1.232482, 0.333296, 0.792687, 0.258559, -0.808445, 0.017835, -0.458580, -0.993009, 0.016877, -1.052566, -0.180243, -0.274847, 0.249871, 0.854491, -0.542793, 1.281983, 0.060651, 0.882659, -0.972052, 0.368850, -1.472626, -1.398788, 0.569506, 0.135378, 0.661532, 0.960308, 0.346836, 1.322929, -0.769475, -0.946452, -0.137453, -0.255544, 0.345758, 0.054648, 0.768222, 1.321258, 2.193244, 0.157683, -2.097032, -0.308244, 0.994474, -1.465687, -0.816525, -0.059932, -0.910100, -0.924102, -2.501485, -2.023931, -0.089502, 0.118357, -0.642399, -0.459127, -1.448807, -1.331231, -2.319405, -0.672232, 1.675503, 0.414436, 0.475847, 0.342908, 1.383391, 1.022649, 0.259385, -1.300424, 0.032352, -0.361868, -0.401489, -0.561796, 0.891509, -1.144855, -0.203157, -1.069639, -0.026518, -0.032882, 0.202650, -0.021077, 0.332323, 0.202566, -0.996003, -0.143474, -1.708193, -1.178839, -0.677753, 0.770777, -2.808321, -1.723194, -1.114263, 0.935693, -0.756451, 1.096376, 0.115079, -1.848553, -0.311637, 1.057739, 0.285823, -1.033255, 2.255218, 1.166718, -1.921084, 0.445740, -0.969527, -0.283456, -0.519922, -0.768153, 1.191599, -0.608625, -1.323167, 1.197788, -1.339941, -1.580676, 0.389420, -0.081545, -0.163071, 0.856741, -1.025109, 0.034694, -0.623315, -0.426157, -1.430034, 0.517623, 0.069557, -0.803295, 1.232607, 0.937826, -1.197361, 1.051320, 0.111778, -0.001501, -0.599958, 1.131125, -0.683545, 0.582016, 0.372488, 0.064898, 0.448231, -1.881346, -1.385846, 0.358479, 1.215059, 0.423351, -0.412440, 1.577109, -1.023484, -0.658138, 1.277607, -0.218418, 0.806153, -0.437055, -1.515893, -0.800413, 1.738311, -1.632171, 1.488078, -1.186968, 0.798200, -1.494786, -0.826610, 0.432156, -1.376811, -0.194391, -1.111517, -0.997802, -1.341224, 1.130931, -1.788718, -0.361256, -0.516990, -0.858377, -0.382740, -0.352580, 1.519040, -2.463658, -0.688308, -0.500208, -0.705716, 0.526880, -0.007087, 1.155106, 1.236264, 0.501416, -1.005087, -0.556965, -3.246709, -1.401517, -0.091952, -0.742592, -0.322930, 0.353769, 1.162223, 0.061415, 0.614157, -1.296113, 0.641029, -2.000750, 0.457017, -0.621151, -0.373225, -0.300704, 1.588292, -0.164885, 1.343357, 0.823190, -1.586133, -1.329151, -1.388770, 1.012856, 0.048738, -2.252189, 1.230156, 0.245486, -1.433923, -0.781839, 0.525623, -0.216360, 1.378616, 1.474120, 0.324505, 0.432831, -0.478019, 0.361902, -0.879731, -0.702594, 0.918976, 0.264621, 1.413158, -0.081483, -1.573399, 1.158298, -0.551471, 1.253169, -0.185677, -0.107998, 0.770443, -0.376316, -0.838529, 0.433162, 0.026594, 2.466477, -0.003319, 0.571013, 0.252861, -1.138378, -0.053517, 1.686115, -0.398142, -0.788622, -2.212894, -2.485452, 0.163717, 1.372369, -0.156663, -0.817710, 0.134928, -0.288723, 1.579318, 0.862981, 1.475901, 0.642998, 1.942027, -0.247006, -0.209726, -0.565866, 0.746501, -2.180773, 1.830703, -0.735790, -0.687317, 0.151874, -0.892058, -0.625031, -0.073330, 0.457156, 0.604909, -0.573194, 0.296077, -0.817185, 0.086462, -0.067895, -0.039239, 2.036558, 0.659676, -1.750774, -1.657719, -0.342077, 0.828040, -0.218217, 0.341273, 0.768648, 1.638704, 0.480082, 0.163326, -1.009666, 1.127986, 1.652022, -0.926505, -0.415893, -0.502100, -1.487358, 0.943948, -0.582394, -0.006399, 0.020851, -1.035298, -0.025250, -0.273905, -0.808316, -0.896657, -0.594424, 0.132331, 1.214450, 0.955524, -0.028458, 0.700578, 1.578847, -0.248341, -0.043361, -0.744196, 0.491708, 0.451855, 0.486870, -0.183737, 0.219905, -1.143850, 1.566988, -0.071987, -0.700852, 0.477891, -0.071482, -0.636200, -0.393090, -0.694712, 0.521038, -0.210377, -0.820508, 0.749455, 0.400095, -1.316975, 0.195551, -0.060133, 1.725454, -0.509454, -0.189660, 0.015514, 0.513824, -1.241690, -0.139606, -0.389594, -0.521856, 0.659106, 0.091151, -0.063307, -0.926116, -1.067691, 1.094069, -1.472976, -1.206515, -0.652420, -0.645442, 0.882400, 0.509408, -0.268381, -2.229294, -0.013026, -0.250545, 0.587841, 0.598210, 1.030295, 0.203128, -0.074070, 0.148443, -0.255762, -1.353261, 0.259660, 0.109063, -0.834556, -1.678485, -0.081257, 1.847502, -0.793448, -0.671264, -0.609430, -0.225229, 1.194668, -2.142647, -0.301831, 0.144198, -0.286981, -0.227017, 1.146484, 0.969552, 0.444497, -1.499727, 1.202141, 1.892412, 1.057104, 0.069021, 1.010058, -0.056464, 2.582227, 1.587931, 1.066392, 0.075603, -0.926556, -0.503028, 0.613689, 0.759321, 0.040764, 0.152003, 0.645159, -0.580707, -0.392102, -0.124450, 0.785647, 0.361350, 0.147895, 1.394039, 0.194579, 0.307239, 0.383617, 0.758921, 0.414603, 0.165687, -0.584064, 1.170731, 0.405003, 0.685907, 2.390799, -0.868503, -0.098989, -1.712308, 1.194371, -0.048315, 0.614916, -0.489928, 0.346802, 1.451657, 1.975864, -0.800130, 2.121416, -0.307172, -0.824498, 1.686137, 0.549244, 0.379609, 0.442180, 0.373309, 1.043499, -0.021378, 1.379571, 0.000267, -0.451712, -0.351838, -0.866344, 0.819697, 0.122006, 1.096637, 2.056359, -0.362726, 0.191419, 0.870262, -1.457161, 0.248544, 0.855738, -0.012741, 1.478993, 0.184996, 1.234769, 2.167047, -0.939672, 0.602766, 0.934562, -0.014570, -1.999102, -3.062107, 0.836055, 0.041882, -0.437758, -0.484503, 0.994074, 0.697129, -0.443108, 0.162213, 0.325198, 0.124355, -0.460723, 0.339314, 0.134089, 1.551752, -0.095550, -0.063724, -0.015791, -0.276509, 0.052369, 2.603693, 0.670819, 0.655814, 0.082338, 1.764855, -1.679282, 2.586894, 0.418570, 1.323765, -0.046842, -1.016706, -1.532464, -3.083884, 0.880264, 0.985276, -1.691294, 0.490612, -0.864165, -0.677113, -0.030039, 1.048128, 0.669624, -0.913215, -0.499514, 0.615481, -2.045200, -0.076723, 0.655092, 0.669336, -0.884637, -1.511737, 2.484194, 0.248792, 1.828093, -1.529002, 0.489484, 0.176503, 0.282867, -0.353277, -1.530048, -0.754777, 0.889164, 1.411853, 0.733316, -0.997560, -0.118776, -1.831560, -0.293512, 0.567134, -1.239579, 0.092686, -0.383221, 1.106445, -2.029706, 1.227761, -0.065230, -0.070819, 0.063700, -1.545889, -0.609804, 0.103543, -0.361434, -1.413659, -0.792959, 0.693514, 0.204043, -1.018965, 0.333156, -0.692810, -0.177673, 1.074405, 0.931773, 0.178869, -0.026446, 0.292933, 0.125466, -0.383934, -2.292668, 1.262278, 0.587652, 1.168831, -0.529552, 0.420525, -0.244645, -1.461413, -0.232143, -0.854636, 0.691233, 1.143959, -0.345770, -0.760621, 0.896223, 1.021508, 2.118889, 0.235334, 0.752007, 1.085539, 1.505048, -0.239947, -0.429589, 1.805496, -0.850099, 0.039863, 0.277523, 0.308294, 0.507762, -0.124795, 0.228292, 0.589119, -0.626600, 0.302390, 1.000681, -1.110624, 0.011245, 0.555126, -0.124923, -1.315564, -0.803948, 0.754076, 1.209961, -0.748276, -1.142321, -1.109545, 1.134664, -0.691139, -0.821681, 0.369507, 0.335223, 0.920039, -1.395745, -0.081197, -0.135818, 0.670715, -0.300580, -0.293027, -0.335465, 0.772664, 0.520559, 0.442321, -0.467094, -2.086877, -1.358403, -0.736647, -0.826193, -0.599340, -0.709136, -0.131113, -0.926805, 0.235563, -0.101005, 2.132939, -1.129712, 0.961447, -0.070056, 0.975534, -0.728768, -0.292780, 0.193257, -0.754030, -0.965858, -1.042966, -0.358241, 0.471086, -1.460669, 0.659803, 2.253143, 0.136926, -0.747529, 1.854699, 0.634318, 0.783782, -0.223771, -0.983902, -0.280566, 2.059870, -0.477349, -0.925735, 1.333361, 1.089206, 0.010783, -1.390652, -0.381102, 0.647599, -1.066928, 0.034040, -0.736709, -0.951869, 0.626464, -1.797066, 1.115187, 0.249182, 0.081012, 0.169224, 1.151347, 2.275723, -1.046090, -0.341469, 0.348073, 1.847364, 0.050262, -0.833690, -0.127317, -0.057094, -0.859533, -0.121262, -1.323238, -1.576253, -0.441365, 0.459771, -0.655628, 1.179278, -0.022809, 0.184701, -2.242171, -0.907094, 0.489172, 0.067545, -0.780055, -2.549345, 0.184071, -0.491682, 0.223546, -0.783855, 0.201982, -0.637991, -0.876240, 1.252950, 0.871007, 0.957187, -1.346993, -0.005290, 0.312164, -1.137911, 0.163860, 0.103693, -1.206473, 0.009878, -0.560544, -0.699462, -0.431874, 2.119383, 1.884245, -0.310283, -0.239128, 0.773550, -0.809804, 0.022359, -0.339350, -0.951088, 0.013271, 0.843047, -0.568087, 1.865957, 0.420166, -1.683779, 0.119009, -1.618859, -0.010193, 0.718180, -0.323054, 1.349273, -1.210256, -1.202170, 1.161680, -0.070676, -0.455043, -0.452460, -0.077578, -2.125447, -1.221543, 1.133323, 1.134496, 1.269879, -0.660881, -0.708263, -2.589172, 0.003032, 1.374543, -0.291193, -0.763558, 2.049241, -1.635722, 0.826477, -1.069943, -0.385124, -0.390756, 0.021900, -0.150958, -0.081160, -0.250842, -0.232988, -0.769619, -1.206194, 0.849727, -1.970435, 0.130768, -0.255192, 1.358436, 0.241943, -1.576258, 0.766893, 0.069999, 0.111474, 0.972710, -0.098071, 0.070465, 2.133102, 1.403134, 0.416877, -1.710649, 0.693160, -1.163625, 0.838613, 0.289775, 0.417074, -1.815509, -0.825076, 0.150734, 0.899996, -0.032763, 0.698843, -1.519382, 1.281217, 0.477165, 0.407152, -0.779808, -0.087592, 0.376436, -0.467222, -0.168517, -2.635919, -0.443967, 1.371368, -1.887900, 1.305160, 0.873235, 0.562571, -0.092908, -0.487836, 0.110391, -0.569558, -0.002502, 0.526793, -0.248105, 1.168055, -0.698943, 0.513245, 0.728842, 0.937866, -0.917170, -1.378272, 0.036771, 1.026837, 1.016515, -0.501218, -0.383180, -0.477574, 0.668696, -0.017425, -0.826452, 0.152596, -0.647734, 0.356314, 1.151152, 0.346476, -0.929904, -0.770230, 0.171785, 0.825979, 0.835939, -0.077715, -2.662733, 1.606701, -1.052464, 0.925932, -0.317228, 0.371747, -0.668617, -0.889411, -1.118494, 1.404940, 0.321819, -0.989746, 0.355479, -0.969718, -0.282688, 0.354737, 0.996871, -1.775097, 1.196968, 0.175402, -0.196606, 0.720390, -0.564264, -0.199813, 0.830804, -0.718857, -1.115281, -0.367434, -0.590242, -0.884453, -1.167186, 0.362664, 1.193130, -0.134935, 0.040016, 0.471594, -0.029202, -0.079935, 0.470370, 0.773220, -0.944670, 0.011659, -1.037966, -0.355533, -0.245826, -1.105482, -0.393431, -0.685624, -0.447764, 1.314059, 0.583516, 0.863686, 2.407028, 1.963878, 1.249560, -0.603713, 0.136930, -1.960294, 0.764152, -1.764827, 1.600102, 1.402238, -1.930404, -2.069935, -0.323020, 1.434861, -0.024505, 1.639371, -0.869789, 1.477323, 1.135863, -0.275957, -1.427724, -0.474597, -0.697166, 0.031444, -0.182610, 0.580252, 1.378908, -0.592142, -1.013766, 0.708260, -0.411173, -1.669188, 0.214352, 0.530379, 0.384734, -0.467388, 0.152544, -1.126870, 0.751713, 0.825835, -0.856399, -0.349525, 0.596411, 0.209471, 1.048846, 2.011240, 0.869305, 1.688344, 0.481364, -0.674637, 1.655523, -0.504955, 1.375414, -0.899070, 0.921803, 0.668855, -0.575212, -1.217952, -0.684426, 0.776293, 0.655341, -0.178579, 0.254072, 0.642273, 1.294120, -0.456202, -2.401520, -0.570037, -0.284565, 0.925649, -0.328716, -0.477087, 0.555397, -0.898981, -1.219818, 1.142041, -0.992577, 0.963866, 0.745103, -0.917099, -0.803860, -0.425954, -1.770569, 0.821092, 0.023804, 1.394199, 0.062054, 0.293096, -1.161723, 0.553333, -0.382304, 0.651286, 0.051147, -0.910003, 0.716218, 0.986469, -0.406245, 1.451947, 0.642835, 1.089073, 0.034317, -1.462316, -1.143331, -0.237661, -0.208912, 0.305806, 1.452965, -0.879447, 0.729194, -0.606299, -0.608398, -0.595802, -0.578015, -0.962638, -0.155991, 0.036153, 0.041575, -1.836295, -1.002044, -0.932044, -1.943924, 1.097203, 0.500498, 0.260159, 0.262574, 0.054241, 1.267477, 0.629421, 0.157334, -0.170415, -0.711940, 1.492200, 1.699990, 0.100161, 0.092665, 0.045178, -0.167723, -2.228888, 0.690801, 3.178783, -0.471750, 0.979191, -0.091581, 0.878568, 1.013884, -1.499635, 0.190814, -0.523611, 0.574730, -0.228934, -0.612265, -1.111084, 1.006232, 0.168245, -1.586754, -0.198956, 1.359465, -1.532432, -0.020501, 0.444119, -1.031989, 1.943666, 0.915422, -0.528047, -1.319455, 1.476458, -0.114648, 0.260942, -0.290624, -1.365153, 1.220013, 1.739173, -0.884591, -0.311935, 0.895139, 2.124000, 0.809081, 0.122250, 0.900173, -1.107341, -0.382639, -0.868294, 0.267172, -0.193652, 1.249253, 1.334527, 1.212083, 1.424260, 0.238047, -1.102748, -1.130090, 1.109188, 1.292264, 1.105654, -0.646433, 0.206001, 0.448993, -0.848331, 0.227715, 0.255743, -0.994256, -0.586690, 0.332206, -0.060952, 0.237096, 0.153788, 0.039904, 0.013875, 0.935502, 0.797832, -1.658050, -0.004258, -0.599840, 0.907895, 2.584532, 0.226527, 1.493728, 0.859255, 1.742152, 0.198928, 0.715648, 0.621666, 0.167731, -1.255455, -0.083675, -0.316686, 0.409321, 0.670470, -0.658500, 0.683854, -0.118325, -0.397763, 0.243729, -0.724450, 0.027943, 1.225274, 0.390489, 0.114298, -0.628702, -0.727040, 1.297067, -0.452637, -1.055542, 0.357361, -0.341779, 1.232228, -2.378134, -0.676153, -0.651552, -0.583518, 0.580130, -0.627089, -0.518449, -1.272684, -0.480655, -0.851650, 0.923456, 0.047600, -0.311547, 0.542470, -1.479399, 0.502507, -1.252304, -1.736591, 0.510541, 0.849439, -0.175782, 2.194941, 0.420460, -0.330983, -1.207235, 0.348202, -0.761330, 0.535848, -0.622559, 0.504933, 0.707736, 0.228179, -0.596705, 0.145535, 0.064016, -0.239805, -0.869842, 0.505505, -0.819694, 1.017025, -1.457328, -0.388074, -1.254925, 1.345761, 1.075628, 1.126306, 1.318628, 0.517584, 0.583347, 0.119370, 1.084038, -0.536976, 0.932438, -1.333803, 0.780143, -1.716030, -0.746357, 0.569783, 0.690122, 0.624560, 0.288446, -0.357612, 0.275874, -0.231410, 1.159869, -0.232078, -1.045614, 0.326911, 0.010868, -0.261499, 0.588526, -0.455283, 0.834353, -0.322870, -0.520326, -1.866695, -1.389329, 0.785433, -1.594460, -0.224048, -0.645424, 0.152975, -1.531449, 0.025476, -0.456286, 0.615203, 0.446318, 1.364365, -1.190657, 0.297397, -0.327780, 0.601037, 0.204353, 0.921812, 0.623565, -1.373476, -0.205644, 1.579392, -1.848161, -0.224851, -0.240060, 0.298799, 1.583137, -1.163625, -0.644821, 1.342111, 0.240797, 0.155692, -0.042242, -0.099019, 0.363295, -0.903435, -0.763621, -1.219778, -0.002932, -0.004644, 0.511764, 1.010026, 1.182569, 1.839652, -0.883435, 0.699895, -0.753271, 1.210875, 0.313228, -1.005221, -0.009763, 1.319516, 0.271890, -1.649399, -1.554593, 1.078896, -0.584072, 0.719301, -0.049780, -0.411100, 0.581009, 0.588794, 1.255456, 0.211355, -0.295650, -0.832455, -1.573096, 0.479604, 0.593566, -0.007378, 0.561407, 0.174641, -0.601172, -1.420507, 0.396548, 1.086147, 1.227184, -0.969450, -1.034578, -1.328464, -0.701328, 0.948463, -0.536291, 0.741851, -0.646355, 1.021293, 0.014685, -0.468256, -0.762503, -0.521679, 2.090613, -0.627514, 0.044559, -0.660399, -0.050978, 0.520121, -1.608869, 0.466022, 0.774560, -0.084939, -0.237280, -0.817611, 0.097433, 1.780326, -0.042369, 0.218104, -1.924261, -2.453564, -0.783244, -0.609415, -0.691479, -0.432772, 0.127424, -0.118426, 0.230674, 0.376825, -0.240952, -1.366481, -0.558497, 1.531982, 0.312676, 0.872276, 0.812003, 0.112635, -0.250098, 0.911172, 0.334255, -0.140110, 1.243345, -0.042916, -1.327921, -1.005275, -1.759005, -0.409960, -1.298047, -0.212342, -1.939041, -1.371567, 1.240323, -0.156768, -0.030067, -0.892907, -1.637912, 0.947901, -0.893309, 0.944868, 0.061281, -1.313328, -0.273755, -1.008788, -0.189900, -1.112637, 1.055042, -0.251166, 0.300634, 1.076443, 0.216106, -0.979619, -0.943813, 1.527772, -1.776765, -0.572363, 1.575817, -0.354269, -0.366452, 2.317779, 1.963819, 0.438990, -0.009267, 0.752277, 0.294481, -0.475410, -0.126440, 0.520476, 0.872037, 0.102665, 0.550963, -1.597754, -0.239744, 0.536493, -0.059908, 1.464155, -0.365598, 2.081636, 1.046194, -0.697959, 1.316137, -0.207011, -1.426455, -0.066890, -1.811115, -2.248960, 0.495439, -0.862826, -1.048286, 0.016982, 0.857296, -0.655038, 0.430638, -1.224254, -0.292219, 0.236193, -0.227442, 0.068886, -0.176626, -1.211392, -0.686670, -1.399701, -0.317798, -0.041195, -0.415086, 0.215100, 0.253729, 0.984783, -0.892666, -0.670144, 0.636513, -0.651808, 0.239026, 1.166360, 0.195195, 0.065416, 0.457298, 0.256362, 0.373982, -1.019415, -0.482686, -0.733508, -1.427073, -0.351301, -0.015488, -0.454394, -0.555732, 0.693100, 1.045300, 0.251824, -2.150941, -0.408488, -1.130578, 0.132782, -1.222120, 0.145286, 1.414029, 1.586272, 1.149507, 0.916164, 1.288986, -1.145974, -0.569088, 1.095419, -0.108150, -0.174729, 1.512104, -0.006734, -0.869491, 0.895498, -0.811957, -0.217575, 1.637164, -1.634348, 0.620743, 0.888118, 1.892549, 0.773420, 0.598146, -1.852917, -1.056665, -1.662740, 0.255003, 0.310103, -0.644412, 1.604974, 1.427575, 0.130699, -1.869343, 0.854463, -0.653925, 0.555020, -0.130678, -0.122508, -0.965340, 1.138242, 0.024706, -0.413502, -0.977291, -1.410377, -0.644195, -0.360841, 0.596111, 1.242855, -0.714326, -1.001468, -0.624330, 1.584285, -0.261695, -0.186246, -1.561328, -1.339776, 0.498851, -0.705343, -1.252191, -1.015443, -0.339083, 1.125707, 0.860839, -0.456129, 1.127978, -0.093683, -0.853182, 0.271991, 1.544041, 0.385966, -0.552438, -0.826700, 0.039950, 0.486117, -0.055656, -0.508313, -0.386223, -1.781433, 0.941494, -0.592670, -0.732907, -0.981484, -0.978035, -0.044344, 1.359935, 1.122442, 1.061323, -0.056971, -0.746469, 0.945427, 0.582139, -1.849123, 0.024323, -0.679553, 1.661885, -0.673908, 0.333670, -1.303043, -0.697432, -1.543814, 0.755402, -0.732005, -0.609869, 0.024949, 0.197553, 1.185196, 0.069908, 2.070246, 1.600696, -0.395498, 1.830148, 0.428590, -0.269128, 0.252366, 0.189775, -0.288149, 0.329578, -2.089698, -0.137646, -1.531805, 1.486898, -0.571482, 1.388253, -0.864255, -0.232366, -0.501235, 0.968501, 0.476637, 1.052884, 0.619504, -0.327639, 2.021117, 0.823085, -0.813734, -1.443214, -0.476092, 0.474827, -1.032771, 0.716678, -0.279465, 0.156513, 0.040222, -0.278429, -0.817530, 0.302085, 0.012087, 0.759180, 1.162755, 0.725857, 0.861115, 1.809386, 0.189444, -0.862537, -2.019403, 1.737620, 2.273687, -0.471675, 1.257850, -0.333957, 1.050470, 1.073569, -0.368401, 0.574880, 0.218980, 0.881007, 0.205540, 0.417014, -1.045070, 0.405112, 1.143455, -0.851155, 0.163187, -0.713153, -0.824800, -0.677649, 0.419207, -0.044194, 0.904325, 0.361816, 1.237960, -0.084671, -0.457539, 2.137868, -0.651512, 0.119583, 0.095580, -0.706505, 0.672408, 0.034789, -0.202316, -0.293749, 0.814040, -0.176213, 1.163455, -1.395970, -1.259473, -0.360192, -0.872294, -1.320841, -0.586296, -1.679480, 0.070189, -1.681707, 2.148804, 1.263430, -0.997677, 0.892254, -0.582487, 0.119697, 0.408570, 0.337620, -0.034242, -0.135178, 0.468472, -0.150095, 0.179880, -0.393807, -0.298719, -0.893199, 0.097906, 1.704552, -0.106102, -1.682609, -0.001165, -0.871014, 0.676982, -0.057556, 0.350105, 1.229497, -1.660906, -0.284743, -0.785707, 0.996753, 0.027921, 0.366087, 1.697635, 0.920058, 1.003479, 0.940503, 0.492025, 0.520869, 0.274150, -0.539325, -1.139099, -0.568214, 0.291964, 0.516073, -0.994434, 0.117096, -0.739131, 0.273728, -0.043684, 0.473670, 0.123353, -0.835332, 1.952643, 0.461936, 0.756102, 1.131996, -2.325601, 0.144159, -0.210208, 0.650898, 0.115322, -1.121759, 0.496250, -1.309874, 0.719618, 0.939504, -0.689501, 0.325573, -0.019311, -1.463487, 0.426812, -0.656452, 0.620304, -0.214105, -0.791543, 0.639607, -0.579832, 1.511132, -1.921710, -0.667541, -0.232645, 0.233391, 1.506898, 0.044548, 1.492787, -0.011968, -0.735064, 0.528656, -1.058878, -1.420150, 0.281208, -0.911660, -2.482220, -0.309171, 0.466939, 1.435056, -2.126456, -0.711082, -0.647985, 0.736647, -0.819562, -2.065506, 0.290806, 1.071992, -1.302422, 0.201957, 0.403350, 0.930369, 1.994595, -1.094654, -1.168588, 0.590359, -0.815489, 0.874194, 0.273626, 0.440372, -0.333655, -1.022662, 0.458211, -1.093762, 0.966380, 0.216216, -0.304417, 0.862420, -0.035982, -0.677469, 0.414306, 0.140019, 0.991254, -0.586161, -0.302892, 0.136783, -0.455145, -1.316959, 0.450435, -0.917744, 1.279734, 0.010010, -0.449727, -0.158288, 0.277216, -1.380270, -0.705990, 1.898329, 1.633801, 0.797343, 0.333826, -0.916517, -0.343819, -1.941551, -2.659954, 0.899938, 1.646713, 0.240902, 0.930502, 1.896860, 0.822185, 0.376799, -1.321127, -0.177624, 0.442824, 0.168674, 0.181087, 0.910120, 0.716105, 0.176247, 0.523385, -1.585621, -2.269039, 1.365178, -0.000903, 0.439503, 0.823428, 0.105879, -0.319020, -1.256909, -0.091339, 0.470377, 1.826246, 1.049592, 1.058657, 1.147809, 0.005518, -0.229537, 0.751820, -0.600997, -0.475272, 0.040907, 0.940435, 1.010874, 0.172369, -0.338131, -0.002675, -1.900991, -0.249206, -0.061160, 2.119178, -0.562272, 1.355101, -0.153558, -0.173012, 0.629839, -0.287610, 1.092384, 2.102783, -0.240033, 1.108734, -0.414165, 0.521104, 1.469408, -1.506161, -1.031272, -0.820187, -0.470265, -0.251875, -1.109841, 0.575056, 0.753598, -0.682367, 0.761866, -1.722160, -0.186837, -0.678390, 0.411942, 1.241272, 0.055214, 0.008162, 2.022293, -0.855282, 1.381054, 0.932051, -2.634721, -1.812392, -0.629672, 0.906354, 0.131617, -0.219392, 0.436579, -0.575038, -0.449251, -0.099989, 0.980274, 0.816991, 0.993293, -0.150170, 0.700800, 1.470074, -2.663074, -1.169814, -0.214794, -1.351583, 0.119720, -0.308005, -1.755427, 1.405712, 1.739113, -1.767692, -0.761572, -0.996369, 1.599346, 2.062212, 0.998300, 0.465828, -1.459449, -1.149142, -0.495526, 1.057950, 0.409852, -1.400118, -0.108800, -1.567302, -0.448069, 1.259582, -0.509495, -0.211012, -0.791084, -0.664852, 0.482233, 0.364763, -0.332307, 0.778693, -1.105056, -0.193468, -1.587775, -0.516265, -1.775565, 0.442435, -0.592751, 0.358167, 2.195438, 0.945585, 0.922516, 0.655586, -1.268811, 0.704422, -0.826508, -0.408747, -0.613750, 1.005483, -1.348624, -1.602620, 0.245705, 0.908893, -0.437051, 1.016272, -0.014419, -0.672794, -1.119709, -0.666124, -0.878984, 1.375063, -0.313656, -0.363759, 0.405344, 0.106491, 0.546738, -0.257917, 0.175730, -1.764664, 0.182478, 0.515303, -0.785181, 1.763464, -2.880225, -0.980999, -0.938217, -1.212937, 1.281045, -1.720786, -0.457808, 0.144417, -0.550054, -0.191556, 2.251851, 1.513575, -2.429590, 0.101762, -3.759408, 1.280609, -0.539650, 0.135571, -0.548838, -0.225000, -1.078143, 1.464744, 0.404280, -2.346449, -0.783903, 1.049154, 1.820471, -2.347962, 0.573997, -0.555419, 0.507236, -0.154260, 0.434660, -0.871840, 2.120586, -1.256035, -0.017529, -0.559575, 0.421102, 0.585003, 0.585159, 0.908434, 0.514332, -1.128788, 0.401680, -1.013912, 1.067575, -1.516495, 0.169177, -0.097426, 0.192956, -0.718959, 0.582367, 1.360153, 2.147080, -0.720380, 0.981351, 0.097823, 0.379249, 1.726984, -0.504502, 0.427244, 0.162551, 0.186997, 1.235908, 0.173754, 0.327032, -0.435981, -1.166288, 1.764825, 0.599417, 0.931381, 2.012013, -1.481371, -1.087629, 1.364344, 1.001370, -1.018495, -0.736548, -2.134489, -0.812104, -0.757629, 0.905960, -1.872599, 0.386431, 1.029242, 1.192792, -0.454748, -2.690569, 0.874195, -0.029691, 1.300324, -1.085132, 0.403398, -0.207355, 1.230123, 0.577793, -0.955572, -0.406727, -0.063125, -1.764886, 0.934884, 0.099197, 1.120223, 0.560783, -0.238207, 0.328889, -0.167509, 1.067484, -0.740136, -0.270884, -0.735030, -1.025883, 1.346156, -1.032623, -1.090146, 0.369653, -0.374994, -0.071139, 0.429560, -0.937073, 0.067470, 1.753754, -2.189332, -0.230147, -0.576506, 0.984958, -1.346845, -0.889718, 1.055733, 0.173711, -1.043351, -0.092081, 0.204624, 0.029544, 0.333585, 1.015987, -0.190098, 0.306731, 0.924562, 0.600304, 1.036391, -0.121117, -0.294259, -0.357607, 0.036491, 0.105124, 1.149403, -0.532418, -1.417174, 0.036239, -1.812491, 1.110548, -1.518699, 0.105785, 1.249620, -2.066090, 0.274301, 0.269194, -0.186939, -0.446635, 0.060505, -2.277602, 0.009507, -1.032385, -0.225275, -0.629420, 0.522340, -0.199028, -0.982369, 0.780459, 1.764165, -0.470174, 0.851934, -0.796089, -0.540451, -0.148242, 0.186572, 0.715156, -0.060060, -0.871258, -0.154651, 0.873260, 0.818201, -1.213716, 1.221143, -0.940491, -0.793235, -2.034941, -1.772504, 0.047780, 0.590210, -0.335933, -0.192690, -0.308205, -0.022371, -0.075514, -0.251876, -1.060925, -0.827893, -0.734465, 1.083451, 0.678851, -0.748360, -0.579405, -2.043067, -0.205387, -0.222139, 0.729636, 1.684441, 0.283943, -1.150393, -0.871965, -0.881961, 1.203945, 1.553315, -0.619045, -0.125554, 0.121248, 0.528419, 1.363936, 0.812072, 0.302559, 0.018770, -0.769241, 0.453390, -0.016566, 1.008043, 0.131184, 0.089034, -0.645575, -0.334990, -0.530296, -0.916719, 0.054930, -0.323717, -1.172135, -0.059878, 0.398895, -1.165693, -1.252991, 1.062225, 0.668890, -0.287053, 0.686392, 0.021130, 0.800252, 0.087858, -0.547733, -0.556327, 1.588500, 0.784886, 0.893107, -0.581933, 0.429863, -1.584400, 0.628144, 0.777813, -0.786816, 0.234226, 2.222605, -0.132825, 0.011211, 0.040131, 0.588700, 0.058501, 0.487232, -0.745702, 1.351873, -1.771446, 0.781601, -0.917594, -0.993617, -0.076136, 1.091963, -0.037647, 0.773636, 0.104507, 0.361208, -0.096246, 1.525120, 1.477642, 0.206207, -0.385964, 0.368721, -0.362713, 1.241820, 1.328871, -1.369378, 0.211334, 0.999504, 0.315272, -1.256159, -0.769664}, + { 2.202407, 0.501290, -0.755820, 0.416613, 0.756057, -0.509687, -2.362441, 1.446230, 0.022124, 0.291915, 1.068703, 0.956692, -0.063365, -0.189200, -0.561635, -1.088576, 1.083949, -0.077018, -0.867175, -0.084837, 0.324703, -0.508849, -1.619539, -1.609367, 1.065280, 0.069153, 0.325631, -0.527621, 1.367229, 0.383812, -0.453832, -0.995964, 0.898697, 0.648746, 0.756521, -1.617740, 1.158094, 0.137592, 1.139043, -0.074633, 0.960908, -0.852070, 0.022085, -1.107504, -1.033909, -0.987106, -0.179843, -0.893372, 0.235343, 1.356839, -1.137402, 0.351645, -0.582341, 0.488301, -1.102853, 0.126407, -0.393851, -0.573073, 0.161375, 0.298289, -0.576586, 0.794551, -0.176779, 0.375813, 0.858207, 1.664762, 0.793062, -0.857777, 0.000556, -0.473162, 0.835018, 1.719433, 2.057390, -0.082182, 0.053926, 1.049116, -0.363114, 0.104333, 0.218432, -1.162856, -2.730109, -0.127826, 0.390132, 0.048729, 1.094793, 0.547145, 0.661964, -0.879199, 0.279034, -0.005527, -0.736870, -1.101948, -0.459373, 0.015395, 0.177593, -1.668108, -0.842849, 1.680795, -1.520088, -0.257050, -0.335250, -2.939787, -0.922862, 0.347944, 0.300520, -0.632114, 0.307643, 0.424108, -1.815464, -0.229956, -0.201791, -0.199655, -0.239248, -2.471761, 0.041952, 0.791646, 1.930681, -0.860339, 1.056446, 0.762751, -1.976380, 0.659719, 2.008522, -0.007085, 0.033454, 0.909128, -0.342495, 0.552609, -1.718059, -1.808342, -0.241020, -0.782643, 1.260443, -0.664975, 0.704856, -0.068836, -2.651599, -0.861826, 0.314262, 0.582512, 0.877312, -0.567826, 0.092596, 0.551238, 0.089075, 0.652096, 1.129130, 0.138396, 1.243777, -1.160959, 1.059795, 0.328778, 0.760383, 0.592309, 0.781342, -0.397990, 0.958648, 0.616753, 2.392642, 0.725613, -0.192992, -1.099511, -1.765582, 0.744881, -2.037528, 2.166214, 0.026850, 0.850753, 1.344465, 0.936954, -0.382028, -1.085827, 1.723600, -1.689354, -1.287933, 0.563178, 0.822514, -0.087595, 1.179597, -0.803092, -0.578637, -0.268331, -0.500977, 1.474237, -1.505034, 0.080563, -0.895748, 0.239534, -0.457207, 1.731004, -2.058022, 0.604015, -1.813185, 1.381655, -0.736304, -1.428878, -0.494533, -0.341142, -0.186191, 0.096191, 1.350293, -1.456329, 0.841529, -1.093756, -0.172708, 0.320089, -0.223409, 0.532690, -0.239650, -0.057809, 0.187439, 0.825705, 1.634498, -0.199457, 0.643074, 0.470114, -1.448523, -1.432276, -0.251043, 0.169201, 0.736676, 1.127620, -0.664626, 0.173055, -0.537373, -0.055242, 1.428576, -1.227188, 1.256439, -0.037856, 1.497849, 1.028515, -0.736346, -0.102228, -1.922901, -1.297662, -0.566416, -0.173954, 0.046899, 1.563084, 0.179148, -0.294485, 0.769807, -0.723559, 0.185583, 0.581581, 2.186070, -1.802907, 0.134842, -2.350676, -0.546042, 0.861289, 3.103399, -0.189959, -1.865096, -0.618156, -1.128880, -0.513095, 1.478035, 0.302390, -1.559745, 1.617525, 1.264067, -0.475702, -0.400622, 0.732602, -1.022744, -0.025244, 0.099215, -1.153135, 1.236335, 0.980163, 0.132217, 1.075014, -1.397059, 0.195444, 0.247156, 0.927562, -1.456905, 0.902314, -0.322951, 0.664101, 1.746017, 0.106319, 0.440355, 0.067194, 0.970329, -0.814279, 0.452210, -1.551295, 0.032255, 0.398329, -1.496538, -0.993922, 0.111641, 0.589097, -0.468227, -0.898702, -0.092102, -0.345804, -0.685853, 1.816402, -0.409107, 0.258531, -0.618784, -0.769211, -0.397859, -0.225178, -1.058101, 3.017122, -0.590296, -0.343442, 1.073830, 1.530886, -0.753589, 0.390734, -0.693601, 0.541365, -0.380499, 0.229588, -1.355997, 2.172126, 0.698642, 0.192071, 0.330922, -1.699427, -0.419567, -1.295911, -0.216370, -0.146987, -0.434581, -0.312853, -0.406282, -1.490115, 0.067122, 2.079941, 0.764382, 0.405363, -0.928500, -0.000144, 1.064079, -1.328800, -3.615869, 0.806618, 0.046166, 1.816744, 0.970818, -1.191103, 0.431961, -0.391314, 0.363185, 0.396323, -0.348027, -0.128458, -0.419685, 1.089288, 0.890837, -0.917780, -1.652598, 0.281118, 0.379080, 0.298193, -0.794344, 0.722422, 1.008522, -1.657440, 0.938869, 0.583926, -1.321133, -0.520227, -0.185865, 1.174213, -2.251489, 1.583295, 0.052728, 0.245859, -0.449765, -1.615052, -1.223050, -0.218382, -0.858382, -0.344699, -0.329322, 0.704617, -0.642459, 0.017687, -1.200845, 1.053833, 1.682868, -0.278476, -1.087214, -1.305353, -0.754506, 0.610204, -0.944692, 0.943746, 0.876142, 1.838447, -0.532211, 1.323353, -1.061883, -0.067915, 0.205757, 0.396139, -0.102436, -1.778368, 1.361760, 1.850200, 1.250291, 1.103465, -0.291772, -0.170900, -0.492872, 0.336753, 0.281053, -1.475272, 0.519157, 0.266176, 0.009043, 1.438090, 0.792370, -1.907820, 0.778639, 0.459271, 1.102649, 1.164672, -0.972662, -0.227863, -2.119545, 0.295237, -1.343501, 1.178069, 0.134134, 0.044030, 1.287581, -0.184811, 1.391160, 0.286470, 1.854419, 0.502874, 1.678322, -0.368422, 0.432593, -1.865800, 0.023897, 0.318362, 1.739973, -1.463982, 2.169323, 0.059196, -1.398651, -1.175324, -0.334314, -0.471122, 0.160991, -0.429977, -0.883911, -1.897437, -0.928531, 1.122813, 0.322474, -0.929582, -1.067089, 0.057222, 0.332761, 0.566720, 1.838192, 0.215767, -0.333877, -0.003687, 0.115884, -0.424043, 0.274618, -0.733945, 0.677529, -1.480495, 0.959548, 1.436143, -1.327167, 0.658075, -0.223388, -0.958140, -0.017099, -1.657934, -0.212187, -1.515853, 1.971891, 0.800620, -0.919113, 0.778743, 0.148008, -0.114556, 0.858995, 0.430111, -1.950643, -1.073631, -2.820686, 0.467041, 0.656771, -1.140318, 0.137241, -0.102636, -0.770215, -0.687964, -1.907871, -1.153601, -0.635367, -0.771967, 0.225260, -1.058244, -0.592758, -1.120356, 0.635770, 2.007467, -1.542176, -1.810625, 0.887673, 0.852083, 0.029702, 1.911922, 1.728125, -1.109058, 0.916240, 0.702629, -1.177386, 0.774753, 0.440182, 1.090317, 0.591267, -0.488971, -0.337695, -0.838134, -0.809259, 0.297127, -1.319407, 1.771996, 0.505534, 1.001547, 0.076197, 1.197425, 0.490718, -1.372669, 0.088512, 0.078226, 0.751533, 0.530102, -1.388455, 0.213656, -0.863598, 1.124646, 0.117048, 0.668450, 0.142299, 0.083431, -0.691457, 0.350426, -1.530275, -0.544576, 0.166745, 1.838863, 1.621041, 0.605296, 0.148060, 1.866453, -0.896192, 0.822422, -0.774788, 0.596514, 0.530877, 0.830130, 0.538515, -0.627216, -0.059944, -0.332596, 0.105710, 0.029467, -1.814086, 0.937604, -1.706427, -1.027913, -0.819241, -0.160659, -1.156907, -0.914204, 0.531718, -0.814348, -0.871615, -0.506692, 0.220928, 0.439352, 2.126628, -0.953973, -1.063376, -0.048008, -0.626177, -0.058277, -0.949783, -2.113424, -0.212806, -1.144282, 0.510841, -0.886486, -0.825515, -1.678878, -0.418237, 1.492856, 0.613246, 0.366567, 0.580646, 0.395945, -0.454201, 0.195667, 0.899577, 1.140460, -0.604149, 1.429128, -2.609872, -0.513908, 0.363900, -0.726305, -0.863113, -0.517918, 0.113200, 0.507809, 0.276648, -0.879074, 1.010420, 1.092461, -0.417503, 0.100037, 0.260289, 0.914943, -0.336199, 0.455709, 1.314833, -0.717222, 0.650409, 0.703595, 1.597296, -0.573642, 0.057845, -0.032949, 1.440785, -0.973496, 0.126981, 0.551354, -0.860516, -0.184644, -0.775622, -0.324282, 0.601371, -0.509432, -2.026147, 0.633660, -0.611010, -1.451099, 0.460755, -0.268770, -0.060278, -1.253776, -0.745375, 1.781469, 0.331207, 1.026964, -0.960810, 0.642603, -1.025680, 1.292920, 1.007717, -1.896157, -0.744296, 1.128173, -1.216311, 0.824177, 0.337031, -0.099763, -0.251727, 0.728793, 0.564296, -0.332292, -0.163496, 1.213536, -0.236846, -0.429757, 0.197628, -0.567817, 1.499762, 0.250484, -0.132269, 0.916284, -0.619486, -0.064591, -0.222087, 1.066619, -1.166298, 0.067988, 0.587567, -0.960461, 0.244057, 1.229079, 1.049206, 1.044654, 0.812387, 1.425235, -0.549290, -1.268198, -0.566072, 0.355135, 2.312342, -0.433800, -1.023334, -1.659927, 0.510776, -0.809476, 0.187178, 1.057458, 1.042592, 1.696877, -0.893494, -0.987421, 0.712230, 1.695499, -0.159557, 0.084446, 0.847372, -0.140588, -2.095881, -2.033877, 0.018781, -1.582547, -0.125429, -0.410043, -1.481174, 1.776911, -0.314229, 0.105683, -0.537980, -0.589903, -1.786572, -0.289869, -0.016978, 0.332514, -0.369476, -1.095598, 0.251477, 0.299563, 1.185398, 0.884376, 1.909467, 0.893577, 0.144957, -0.867949, -0.000211, 1.287146, -0.494185, -1.534174, 2.174720, -0.593022, 1.115512, -0.213000, 2.606250, 1.672317, -0.153430, -0.871178, 1.135893, 0.186539, 0.963108, 1.800604, -1.252765, 0.945403, -0.191125, 0.424643, -0.444271, -1.093414, -2.144698, -0.613608, -0.101511, -1.443099, -1.925681, 0.939602, 0.504715, 0.162747, -3.124796, 0.307271, -1.045741, 0.355322, -0.445353, 0.659352, 0.206921, 1.708674, -0.269690, 0.715581, -0.421048, -1.086826, -0.818724, 1.870610, -0.895063, 1.723959, -0.574418, 0.936743, -0.352284, -0.252792, 0.491579, -0.145222, -2.058807, -0.013346, 0.595458, 0.851863, 0.003092, 1.262228, -1.785903, 0.716500, -0.122812, 1.069616, -1.393052, -0.886496, -0.810450, 0.297144, 0.829052, 0.572732, -0.744420, -0.168369, 0.711610, -1.670300, 0.701286, -0.419277, 0.791709, 0.239788, 0.648806, -1.420125, 1.059813, 0.832197, -1.039155, 0.979023, 0.584910, 0.563655, -0.644088, 1.066292, 1.291532, -0.541206, -0.270904, -1.350010, -0.241990, 1.318519, 0.617874, -0.902196, 0.237991, -0.011197, 0.128171, 0.837205, 0.793140, -1.552267, 0.880716, -0.994971, -0.421702, 1.235023, -0.711111, -1.111321, 0.469355, 1.841557, 0.295743, -1.317714, 1.028625, -0.570413, -1.829334, 0.832905, 0.997229, 0.007728, -0.785173, -0.991446, 1.950897, 0.289048, -2.616466, -1.192948, 1.261504, 0.359284, 0.554619, 1.241305, -0.964094, 1.887028, 2.254318, -0.391291, -0.072041, 0.052330, 0.622949, 1.639181, -1.776636, -0.473023, -1.593499, -1.642527, 0.433863, 0.673157, -0.609619, -1.853486, 0.429450, 1.067076, 0.297582, 0.723383, -0.081191, -0.319166, 2.516265, -1.217585, 0.041377, -0.517084, 1.615324, 0.120481, -0.717347, 0.430065, -2.233584, -1.424153, -1.506614, -0.847092, -1.130765, 0.664158, 0.013785, 0.559790, -0.076069, 0.085170, 1.070377, 0.417302, 0.386577, -0.209964, -0.524383, 1.014307, -1.245314, -1.592469, -0.729273, 0.318690, 0.891281, -0.781488, -0.182286, 2.087186, 1.024650, 0.649086, -0.492290, -0.385178, -1.324224, 2.323074, 0.142645, 0.044801, 1.813416, -0.460890, -2.260847, 1.016192, -0.877366, 0.542984, 0.302267, -1.408820, -1.195458, -0.300297, 1.082836, -0.237345, -0.618278, 1.383891, -0.501467, -0.178305, -0.215956, 1.055894, 0.116965, 1.591748, -1.884014, 0.123407, -1.440592, -0.610890, 0.681107, 0.691364, 1.849546, -0.334262, -0.354661, 2.421940, -0.972354, 1.453511, 0.045909, -0.214678, -1.255557, 0.630261, 0.681819, 0.932965, 1.139026, -0.756976, -0.719851, -0.644845, -1.138043, 1.001685, -1.478760, 0.562928, -0.123489, -0.689885, 0.626220, -1.193764, 0.455518, 2.634384, -0.319684, -0.572873, -1.288928, -1.263664, -0.499159, 0.478507, -0.528077, 0.918218, -1.303074, 0.048690, 0.392543, 0.164890, 0.304358, 0.195399, 0.415675, 0.918434, 0.404910, -0.829623, -0.756533, -1.019927, -1.438446, -1.143142, -0.979558, 2.738326, 0.071265, -0.187456, 0.318744, -0.470631, 1.660982, -0.798867, -1.798954, -0.497250, 0.640604, -1.251535, 1.295683, -1.612830, 0.659311, 0.474363, 0.910734, 1.096985, 1.213389, 2.183885, 0.064826, 0.262037, -1.633800, -1.231014, 0.939177, 0.119651, -0.645659, 0.533343, -1.170916, -0.920674, 1.924088, -1.463035, 2.482004, 0.468507, -0.004691, 0.945189, 0.041997, -0.218707, 0.257864, 0.923200, -0.838496, 0.667791, -2.307730, -1.392105, 2.031344, -0.748605, 1.823367, -0.527525, 0.048480, 1.280545, -0.480234, -1.392508, 0.406107, -1.999963, -1.077629, 0.945935, -0.084997, -0.543797, 0.427892, -1.782325, 1.300475, -0.819628, -2.690083, -2.093628, -2.074759, 0.734750, -0.116643, -2.227761, -0.007943, -1.056612, 1.803950, 0.327142, -0.001042, -0.528581, -0.359555, 0.740857, -1.875843, -2.613689, 0.675776, 0.806259, 0.151694, -0.692624, -1.647680, 0.464204, -0.296819, 0.818035, 0.972600, 0.079753, -0.903515, 0.732821, 0.389616, 0.699909, 1.058385, 0.594587, 1.123021, -1.047240, -0.774516, 1.266542, 0.469522, 2.280334, 0.141043, -0.914176, -0.827567, -2.056981, 0.838257, 0.120797, -1.155867, -1.078389, 2.576058, 0.872422, 1.856925, 0.076125, 2.090398, -0.260619, 0.796658, -1.339563, -0.333744, 0.354095, 0.223890, -1.791985, -0.708607, 0.665593, -0.215186, -1.394499, 1.223856, 1.844529, 1.435116, 0.233361, 0.513057, -0.185318, 1.591415, 0.394695, 0.279339, -2.476651, -0.987594, -0.251599, -0.787169, 0.247308, -0.218426, -1.179014, -0.637258, -0.800324, 0.106372, -0.744466, 1.347601, -1.244057, -0.274364, -0.973317, -2.492704, 0.184428, -0.595952, 2.160734, 1.670366, 1.036692, 0.348936, -1.745845, 0.587199, 0.002137, 0.394041, 0.241950, 0.237771, -1.248925, -1.259061, -0.210407, -0.026451, 0.107485, -0.849833, 0.044733, -0.806286, -1.563649, -0.481359, -1.603732, -0.858170, -1.519709, -1.202094, -1.261256, -1.141943, -1.509268, 1.020517, 0.579615, -0.923427, -0.012640, 1.881362, -1.632399, -0.728439, -1.054691, 0.128681, 1.364909, -0.682774, -2.148727, 1.448452, -0.953598, -0.063042, -1.608997, -0.544602, -1.179325, 0.482936, 0.000697, 0.980347, 1.165115, -2.575654, 0.836068, 0.085019, 1.430900, 0.147359, -0.680586, 0.595726, -1.381233, -0.776833, -0.606949, 0.462725, 0.704626, -0.225730, 0.466783, -0.365826, 1.899861, 0.167444, 0.368994, 0.153482, -0.029003, 0.645890, 1.422182, 0.628400, 0.789337, 0.852450, 1.738077, 0.959545, 1.129276, 1.628401, -0.776447, 0.053559, 1.490628, 0.802581, -0.237694, -0.371874, -0.885957, 2.021629, -0.440965, -0.800877, 0.035742, 0.374294, 0.506557, 0.122600, -0.112882, 0.206508, -0.939945, -1.121023, -0.456585, -0.423641, 0.373846, 1.216651, 1.636300, -1.167319, 0.167324, -0.400765, -0.704040, 0.324556, 1.111552, 2.326811, -0.436892, -0.301385, -0.399669, 0.046622, 1.224228, -1.061941, -0.688071, 1.163274, 0.402946, -1.390913, 1.077437, -1.367930, 0.450956, 0.038306, 0.643800, -0.127053, -1.928394, 0.326124, 2.664683, 0.128408, -0.136195, -0.416258, 0.130770, 2.160097, 0.983741, -0.470414, 1.820268, 0.960124, 0.745732, -0.588889, 1.244781, 0.408043, 0.080386, 1.397256, -1.203826, -0.540076, -0.796453, 0.568963, 0.452896, -1.448485, -0.766937, 0.830600, -1.552641, 0.133805, -0.351979, 0.797156, 1.832321, 0.669573, -0.709533, -0.396206, 0.778707, 0.471994, 0.329589, 0.818608, -0.232575, 0.565614, 1.134063, -1.022236, -0.496688, 1.315336, 0.015484, 1.049227, -0.857126, 0.503429, 2.087516, 0.210734, 1.443229, 0.910938, -0.793429, -0.042967, -1.023748, -0.482345, -0.755361, 2.970853, -0.228552, -0.436625, -1.851197, 0.425291, 0.458503, -0.090371, 0.535489, 0.886618, 0.547152, 0.256644, 1.777673, -0.674148, -0.927113, 0.288900, -0.845258, -0.944981, -1.220020, 1.514492, 0.182120, -3.756649, -0.208861, -1.010421, 1.205937, 1.300032, -2.276371, -1.842820, 0.682560, 0.741234, -0.501142, -1.782638, 1.133644, 1.647879, 0.573028, -0.925674, 2.483126, 0.237496, -0.165725, 0.935442, -0.340224, 1.599633, -1.368496, -1.595820, -0.718638, -0.839121, 0.653930, 0.131952, 0.106256, -0.070298, -0.645755, -0.739307, -0.278981, -2.855678, 0.507035, -0.103785, 0.815554, -0.580113, 1.638769, -0.867058, -0.199520, -1.683357, 0.500225, -1.368108, -1.284506, 0.058674, 0.509563, 0.783058, -0.244039, -0.056425, 3.320653, -0.900288, 0.179321, -0.177915, 1.376266, -0.371139, 0.363165, -0.280526, -0.221007, -1.057832, 0.203489, 1.794716, 0.082012, -1.595992, -0.106797, -1.905074, 1.985795, 1.554948, 0.097611, -0.651485, 0.301302, -1.192711, 1.114309, -0.516214, -0.497162, 0.109354, 2.003018, 0.102989, 0.318612, 1.106055, 0.474257, 0.689162, -0.083156, 0.487659, -1.768587, 0.192268, 1.307945, -1.308160, 0.555713, 0.645254, -1.871958, 0.018137, -0.757258, 0.075946, 1.044980, -0.277332, 0.059850, 1.601884, -0.279850, -0.509645, -0.999124, -0.037248, 1.172676, -0.156926, 0.950647, 0.829209, -0.085911, 1.566731, -2.708151, -1.191436, 1.987267, -0.483372, -2.520565, -0.159729, 0.534954, -0.865477, -1.704186, 0.503034, 3.504074, -0.690176, -3.722202, 0.624042, -0.982603, 0.439505, -0.334546, -0.119677, 0.534427, -0.189035, 0.029513, -0.137330, -0.133384, 0.159185, 0.514432, -0.820320, -1.774685, -0.148505, 0.647669, -0.058415, -0.403893, 0.715670, -1.841835, 0.440822, -0.109641, 0.177988, 0.083022, 2.059491, 1.349646, 0.281904, -0.895638, -0.117824, -1.351033, -1.389770, 0.427715, -0.431622, -0.253923, 0.956189, 0.528233, -0.982272, 0.223964, -0.053232, -3.309626, -0.636650, 0.717865, -0.692247, -1.023844, -1.324425, -0.256643, 0.503877, 1.038669, 0.142504, -0.894046, -2.052362, -0.345772, -0.586966, 0.036835, 0.327582, 0.701447, 0.336753, 2.108620, -0.091931, 0.714448, 0.269548, 0.486497, -0.608005, -0.612613, 0.132957, 0.499744, 1.868914, -0.110051, 0.845306, 2.089033, 0.754106, 1.045020, 1.019071, 0.661720, -0.049419, 0.891359, 1.278212, 0.172122, -2.455968, -1.729682, -0.116407, -0.323602, -1.885185, 0.346469, 0.713560, -0.178947, 0.411131, 0.473657, 0.137240, 0.004600, -1.453665, 0.387103, 1.131503, -0.060398, -1.026671, 0.271284, -0.135000, 0.872050, 2.335425, -1.463629, -0.635835, -1.170255, -0.978006, -0.222761, 1.269978, 1.013824, 0.712431, -0.797002, 0.988050, 0.895173, -0.137772, 1.639617, 0.272233, -0.150640, 0.881611, 0.844577, -1.507226, -0.679848, 0.170616, -0.063381, 0.612472, 0.900862, 1.542817, 0.367615, 0.122778, 2.814967, 0.314117, 0.595116, 0.114589, 2.088732, 0.053141, 0.341778, -2.266651, 0.162414, -1.514784, 0.507374, 0.047483, -1.676361, 0.798636, 0.367801, -1.354663, 1.476619, 0.183036, 1.069503, 0.262476, 0.124234, 1.219253, 0.750142, -0.951980, -0.014617, 0.353776, -0.609075, -0.440896, 1.503247, 0.155515, 0.578884, 0.954638, 0.494237, -0.618991, -0.739220, -2.709824, -1.225917, -0.041313, -0.289322, 0.743831, -0.658827, -2.827656, -1.433807, 0.800753, -0.543397, 0.206533, -0.406691, -2.001334, 0.193953, -2.055019, 1.584675, -1.799314, -0.554538, 1.235732, 0.255502, 2.108980, -0.772655, -0.422786, -1.900994, 1.624016, -0.598351, -0.429577, -0.225256, -0.115965, 1.258746, 1.382367, 0.548029, -1.865437, 1.855697, -0.813085, 0.149920, 2.251776, -1.691024, 0.813107, 1.253356, -1.187044, -1.757091, -2.019655, 1.207907, 0.362207, -1.321627, -0.885213, 0.640244, 0.839037, 1.742690, -1.611078, 0.668315, -0.852199, -1.026696, 0.080945, 0.480555, 1.154014, -2.739587, -0.381532, 0.205749, -0.688489, -0.141637, 1.849398, -0.916934, -1.264959, -1.370011, -0.006671, 0.627378, 1.401355, -1.095207, 1.048437, -1.832132, -0.792077, -2.943996, 0.246667, -0.442815, 0.977543, 0.404871, 1.026999, 2.394586, -0.885092, 1.013617, -0.720094, -0.881698, 1.087516, -1.340583, 0.486865, -0.940303, 0.872775, -0.253423, -1.726625, 0.344542, -0.531941, -0.456384, 0.379359, -0.215022, -0.224754, -2.456322, 1.908696, -0.679590, 0.074308, -0.711004, -0.735616, 1.091135, -0.052534, -1.070793, 0.130976, -1.908431, 0.041099, -0.819977, 0.976177, 0.973414, 0.043108, -1.318488, 0.286330, 0.331819, 0.325604, -0.735757, 0.555598, 0.640339, -1.806676, 0.437116, -0.354780, -0.514365, -0.349750, -0.965982, -0.810985, 0.315748, 0.251990, 0.968556, -0.697874, 0.270377, 1.028001, -0.121850, -0.048529, 0.759572, -0.798235, 0.450303, 1.209232, 1.287215, 0.736628, -0.320684, -0.017798, 1.387886, 0.410671, -2.089627, 0.211727, -0.704497, -0.400250, -0.780119, 1.323815, -0.998117, 1.738493, 1.225846, 1.579372, -0.755191, 1.882717, 0.174798, -2.895694, -2.241069, 0.478110, -0.913512, 0.623818, -1.593714, 1.050625, 0.334868, 0.650025, 1.844604, -0.097674, 1.089659, 0.213554, 0.408026, -0.534483, 0.200220, 0.781483, 1.385418, 0.731045, 1.942252, 0.758991, 0.943697, 0.333975, 1.433700, -0.096569, 0.650949, 0.670062, -0.077623, 0.456808, -1.020862, -0.866931, -1.391849, -1.594173, -1.343600, 1.471665, -1.205426, -1.551051, 0.787579, -0.820027, -0.531795, 0.160303, -0.552002, 0.039174, -1.042516, -1.100737, 0.221017, 1.676202, -0.742451, 1.223978, -0.940187, 0.204964, -0.279585, -0.584146, -0.170544, -1.716305, 0.316820, -0.159871, -0.637017, 1.074986, -0.539383, 1.376580, 0.892451, -0.363723, -0.144646, -0.232654, 0.509979, -0.186264, 0.325335, -0.361472, 1.409343, -1.833847, -0.762621, 0.743815, -1.142141, -0.594710, 0.468526, -0.994251, 0.703567, -0.554034, 0.389144, 1.407173, -1.436839, -0.150065, -1.225387, 1.419068, 1.707044, 0.153756, 1.521535, 0.866590, 0.680812, -1.480789, 0.273826, -0.492680, -0.145707, 0.975589, -0.748282, -0.157891, -1.527124, -0.102752, -0.261935, 0.618276, -0.359328, -0.708638, 0.489765, -0.112005, -0.162444, -0.703104, -0.874094, 0.512092, -0.637987, -1.316424, 0.225509, -1.275537, -0.023827, 0.743995, -1.415476, 0.261494, -0.437169, -0.301049, -0.316213, -0.229617, -0.269858, 0.175845, -0.558457, -2.014599, -0.371651, 0.257052, 1.647324, -0.704553, 0.797086, 2.433834, 0.640240, 2.581459, 0.323005, 1.944852, 0.380274, -1.989039, 1.480016, -1.339141, 0.708475, 1.580062, -0.045464, 0.677710, -1.824744, -0.889016, -1.317852, 1.048593, 1.706404, -1.304262, -2.730358, 0.217899, -1.601091, -0.058532, -0.399825, -1.494852, 1.788317, -0.354862, 0.163999, 0.106352, -2.093994, -0.428917, -1.102260, 1.186914, 0.687905, -1.286555, 0.123024, 0.893400, -0.606771, -0.909105, 0.774096, -2.528580, -0.240026, -1.012785, 1.722732, -0.211943, 1.226095, -0.415078, -0.640543, 0.347469, -1.004663, -0.368267, -0.519077, 0.612018, 0.026284, -0.913291, -0.483627, 0.623407, 0.708546, 1.056631, -0.633303, 0.968666, -0.344148, 1.227963, -1.039902, -1.586162, 1.665446, -1.914994, -1.791969, -0.999968, -0.759027, 0.369693, -0.413312, -1.249696, 0.237251, -0.399640, 0.558933, -0.653205, 0.502370, -0.383883, -0.071334, 0.594192, 1.503336, 0.217856, 0.917178, -2.155702, 1.074507, -0.899861, -0.768825, -0.889441, 0.252241, 1.021087, -0.073918, -0.786716, 0.512181, -0.405504, 0.080028, 1.797519, 1.159522, -0.130962, -0.489820, -1.260310, -1.153670, 0.157666, -0.050374, -0.205562, 0.275873, 0.272609, 1.788926, 0.191621, -2.243406, 2.394803, 2.030279, -0.008380, 0.616333, -1.093910, -0.618523, -0.772706, 0.214202, 1.090486, -0.056821, -1.000049, 1.120457, 0.471925, -0.017474, -0.932191, 2.448223, 0.312786, -0.570233, 0.103254, 0.412084, 2.138385, -1.424234, 0.526878, -0.030993, -0.483080, 0.711400, 1.570059, -0.045757, -0.615562, -0.202112, -0.186906, -0.355662, -1.499499, 0.452176, -1.306366, -0.060845, 0.687419, -0.426334, -0.677161, 0.953849, -0.246114, 0.283662, 0.052363, 0.888625, -0.648133, -0.883023, 0.132355, 0.617834, -0.801756, -0.206490, 0.834138, -0.069569, 0.827816, 0.530390, 2.583523, 2.378686, 0.231530, -0.472425, -0.718416, -0.074558, 0.844882, 0.238385, -1.061172, -2.141033, 0.346715, 1.455691, -0.064735, -1.897900, -0.340222, -0.082148, -0.198286, -0.184554, -0.026063, 0.196635, -0.120027, 0.445230, 0.725064, 0.323062, 0.549894, -1.247355, 2.445707, -0.786796, 0.601871, -0.051169, -1.119982, 0.614433, 0.299321, -0.284203, 0.574165, -0.197308, 0.133723, 1.427952, -1.244693, 1.909488, 1.582976, -0.571251, -0.845582, -0.267984, -0.754143, 0.310975, -1.059667, -0.298561, -1.076711, 1.052108, 0.776001, -0.213370, 0.319792, -1.109760, 0.671688, 0.119422, -0.543591, 0.551007, 0.480275, 1.771482, -1.293824, 0.229311, 0.025143, 0.149236, -0.442184, 1.412518, 1.674555, 0.197456, -0.223144, -1.409458, -1.389691, -1.039414, 0.695984, 0.566634, -1.385879, 1.405706, 0.645872, -1.035509, -1.245561, -1.928605, -1.469069, 0.098430, 0.251602, 1.207269, 1.962450, 0.053232, -0.848431, 0.026797, 1.035832, -0.508173, -0.274124, -0.876143, 0.489302, 0.057040, -2.049574, 1.810043, -1.783591, -0.727251, 0.748529, -0.143345, -0.321486, 0.967581, -0.616159, 0.389917, 0.631891, 2.819839, -0.569773, -0.439533, 0.785680, -2.140511, 1.281066, -0.974431, 1.287095, 0.315956, 1.357504, 0.468886, -1.152190, 0.376193, -0.322438, -0.553610, -0.652906, -1.298764, 0.942262, -0.206670, -0.610650, -0.254701, -0.484246, -0.748808, 1.358993, -0.551174, -1.054484, 1.363765, -0.459157, -1.385064, -0.723829, -0.900977, 0.316384, -1.416369, -0.844753, -0.199117, -0.359055, -1.533950, 0.921003, 0.567535, -0.821189, 0.791639, -1.716919, -0.980149, 0.257582, -1.279201, -2.002789, -0.585638, -0.481773, 0.161000, -0.099305, 0.116177, 0.173858, -0.087902, 0.050081, 1.041255, -1.268709, -2.377311, 1.615988, 2.395039, -0.573038, -1.580473, 0.642813, 2.576947, 0.664358, 0.960551, 0.260078, 0.716135, 0.189141, 0.458350, 0.702744, 0.162669, -0.562829, 0.658312, -0.269642, -0.793999, 0.310773, -0.899019, -1.766469, -0.400017, -0.952291, -0.014443, 0.470082, 0.284529, 0.652241, 0.455674, -0.733946, 0.539400, 0.920863, -1.504751, 0.255409, -0.741640, 0.694701, -0.445413, 3.122810, 0.386979, 0.687063, 1.034158, 1.582009, 0.877097, 0.355180, 0.168807, 0.667832, -0.256917, -0.189042, -2.753169, 0.461727, 1.014557, 0.938720, -1.102713, -0.315307, 0.632602, 0.780972, 0.268898, 0.283712, 2.984571, 0.249064, -0.918872, -0.443747, -0.288149, 0.854929, -2.419526, -0.024338, -0.124747, -0.389400, 0.381251, -1.563854, -0.404464, -0.027618, -0.358348, -0.437135, -0.109179, 0.656523, 1.233804, -0.053291, 2.064710, -0.302933, -1.014404, -0.350766, 0.976182, 1.157565, 0.544869, -1.216118, -0.035945, 0.526483, 0.761278, -0.093863, -0.023768, 1.057672, 0.601090, 0.761974, -0.073394, -0.718574, -0.661424, 0.716005, 1.262573, -0.166284, -0.165801, -0.763309, 0.907407, -1.746724, -0.264277, -0.276137, -2.132658, 0.253038, -0.961316, 0.503105, 0.059558, -0.179085, 0.687936, -1.450311, 0.836182, -1.552948, -0.850773, -1.069188, -0.222868, 0.880518, 0.116282, 0.128223, -0.415909, 0.722790, -0.165264, -0.263296, 0.996883, 1.574473, -1.517527, 0.724709, -0.702674, -1.815968, -1.890065, 0.628119, -0.335020, 0.381691, -1.995636, 0.839345, 0.395197, -1.636671, 0.006266, -0.162563, 0.665479, 0.634188, -0.770526, -0.218571, 2.700738, 0.092893, -0.120705, 0.858537, 0.092137, 0.395640, -2.096134, 1.172338, 1.842091, 0.365980, -0.022981, -1.065968, -1.085350, -0.255632, -0.063124, -0.862086, 2.061833, -1.214078, -1.426198, 0.979296, -0.732898, 0.548372, -1.650792, 0.274925, -0.397693, 1.030965, -0.347018, -1.014469, -2.042359, -0.190615, -0.913491, -0.478975, -1.890718, -0.507786, -1.067903, -2.522357, -2.697023, -0.916697, 0.312874, 0.971749, 0.145942, 1.476816, -1.272319, 0.455715, 0.173124, 0.424844, -0.632877, -1.846036, 1.000657, 1.383268, -0.409663, -0.511002, 0.228873, 1.308887, 0.117155, -0.569325, -0.457979, 0.796540, -0.602732, 1.742786, 0.181494, -1.128430, 0.866648, -0.008198, -0.755870, 0.553129, -1.182762, -0.968411, 0.430716, 0.696532, -0.453921, -0.515100, 0.567421, 0.203976, 0.635604, -0.040386, -2.086328, 0.104618, 1.849123, -0.983445, 0.294923, 0.975473, 0.269779, 0.275598, 0.194512, -1.254995, -2.214264, 0.017599, -0.793475, -1.272358, 0.296770, 0.441972, 0.032215, 1.948137, -0.199612, 0.631908, 0.167630, -0.219031, -1.019063, -0.936647, -1.601210, 1.035708, 0.914466, -0.021400, 0.972169, -1.198022, 0.664877, 0.417958, -0.549424, -0.431941, -1.367107, 0.595558, 0.808811, -0.079015, -2.231074, 0.542931, -0.570214, 2.557182, 0.029229, -1.111075, 0.817198, 0.506270, -2.572650, -0.205799, 0.714069, 0.905818, 1.059992, -0.099123, -0.759091, -0.058292, 0.804693, -0.678893, -0.124130, 0.227400, -0.114052, 0.290914, -0.672628, -0.416457, -0.107799, 0.582565, -0.538141, -0.891721, 1.339715, -0.530201, -1.542516, -0.217258, -1.436383, 0.591169, 0.252790, -1.475958, 0.554232, -0.758492, 0.643670, -0.719136, -1.145808, -0.971530, 0.855600, 0.492393, 1.859212, 0.619952, 1.124673, -1.176322, 0.956296, 0.676405, -3.005822, -1.100873, 0.216065, 0.084559, 1.800594, 0.687811, -0.821150, -0.671863, -0.065151, -0.433684, 1.322238, 0.246229, -0.133013, -0.624855, 1.189197, 0.598540, -0.588955, -0.878977, -2.154656, 0.383747, -0.571774, 0.966242, -1.617877, -0.294130, 0.474843, -1.378153, -0.402337, -0.657712, -0.355810, 1.911092, 1.806948, -0.646646, 0.264055, 0.306268, -1.586184, -0.210411, 1.024532, 1.273616, 0.508824, 0.311745, 1.121528, -1.325789, -0.118821, -1.082738, -0.429775, 0.068407, 0.172191, -1.688624, 0.677475, 0.114101, 0.174666, 0.877175, 0.358579, 0.388201, 1.055913, -1.361012, 0.247648, 0.120634, 0.996759, 0.072905, -1.242962, -1.242010, -0.243775, 0.361070, 0.347500, -0.447048, 1.609029, -1.206522, -0.448835, 2.303598, 1.233788, 0.682812, -0.758433, 0.537724, -1.045537, 0.487396, 1.312670, -0.557142, 1.039417, 0.105405, 0.964287, 0.222252, 1.578494, 0.337669, -1.570955, -1.441346, 0.612728, -2.067993, 0.427430, 0.390304, -1.274493, -0.470260, -0.053443, -1.244934, -0.038436, 0.932271, -1.057389, -0.841705, 0.005869, 1.499803, 1.515065, 0.342324, -0.321612, 0.571636, -0.094475, -0.662625, 0.963008, -0.320264, -1.696618, 1.184545, -0.969765, 1.421304, -0.413662, 0.751396, 0.870260, 0.119614, 1.433314, 0.187571, 0.482808, 1.574479, -0.065548, 0.109305, -0.859730, 0.363374, 0.528040, -0.215061, 0.397912, -0.763185, 0.988961, 1.160911, -0.053102, -0.606195, 1.095434, -0.692076, 0.671270, -1.205575, 0.144518, -0.533849, -2.461264, -1.232280, -1.695626, 0.320749, 0.497435, 0.461227, 2.040773, 1.470384, 2.262313, 1.575332, -0.422186, 1.048181, 0.410031, 0.693048, -0.971745, 0.756518, -0.685695, -2.265130, 0.102192, -0.805292, 1.271520, -1.189375, -1.208521, 0.119064, -0.082353, -0.062604, 0.583199, -0.734485, -0.011299, -0.309595, -1.249067, -0.168101, -0.073886, -1.928694, 0.119868, 0.589827, -0.696624, 1.735564, -0.776031, -0.223677, 0.204086, -0.605697, -1.032657, -0.790152, -0.851046, 0.109058, 0.577901, 0.153441, 0.963552, -0.393585, 0.552297, 0.537398, -0.519305, 0.930691, 1.214716, 0.424321, 0.880533, -0.944533, 1.783358, -0.456452, -1.404230, 1.021792, -1.223593, -0.663051, -0.014047, -1.249957, 0.884051, -1.099918, -0.970737, -0.972150, 0.347681, -0.291815, -0.477583, 1.096438, 0.224036, -0.812916, -0.100534, 0.095870, 0.582518, -0.781115, -0.027749, 0.002074, -1.083760, -0.204547, -0.410241, 0.252550, 0.036799, 1.079212, 1.187525, 0.066114, 0.957340, -0.325493, -0.562176, -0.805265, 0.792827, -0.203212, -1.241583, -1.591024, 1.017288, -0.105552, 1.174423, -1.202687, -0.360328, 0.995262, 1.171603, -0.138051, -0.037817, -0.292088, 0.653707, -0.772936, 0.575747, -1.408628, 0.038211, -0.851917, -0.871240, 0.456340, 1.088471, -1.208210, 0.794887, -0.026783, 1.501776, 1.008402, 1.327928, -0.685640, -0.313839, -0.240896, -1.642584, -1.481331, 1.130448, -1.058729, -1.207120, -0.591751, 0.093304, -0.133169, -0.299287, 2.423010, 0.653286, 0.594701, 0.204569, 0.852043, -0.208294, -1.191066, -0.817401, -0.878747, 0.172002, 0.146648, 0.540305, -2.096557, -0.478583, -0.465355, 1.783981, -0.210733, 1.199453, 0.483422, -0.626852, -1.221009, 0.160450, -0.865561, 0.165649, -0.143489, 0.216056, 0.047132, -1.423612, -0.210721, 0.525906, 0.276112, -0.467089, 0.562238, -2.271231, 1.219086, 0.119222, -0.823306, -0.609421, 0.009412, 1.741470, -0.995418, 0.902640, 0.378936, 0.149090, 0.569097, 1.831045, -0.150073, 0.435419, -0.970630, 0.745214, 0.362934, -0.602778, 0.892790, 1.212886, -0.535595, -0.095723, 0.258318, -0.565528, 0.130863, -0.636893, -2.203274, 1.941860, 0.636706, -1.689915, -0.753445, -0.138319, 1.469374, -1.483642, -0.143226, -0.068979, -0.033960, 1.240809, 0.145407, 1.308154, 0.160239, 0.335553, 0.026599, 0.846044, -1.029148, 0.651536, 0.615950, -0.560944, -0.545467, -1.053978, -0.626967, -1.094171, -0.801897, -0.544148, 0.386038, 0.506968, 0.388224, 1.951980, 0.747297, 2.460152, -0.370456, -0.630324, 0.490673, 0.409630, 0.702227, 0.423207, 0.121961, 1.298426, -0.665022, -0.268486, 0.367943, -0.318143, -1.197364, -1.087145, -1.284371, 0.193698, 0.764441, -0.358747, 0.217584, 1.368642, 1.682070, -0.656644, 2.121108, 0.140474, -0.542248, -1.315086, -0.321160, 0.254592, -0.611636, 0.494306, -0.441404, -0.230432, 0.242161, 1.094802, 0.304504, 1.049116, -0.995623, -0.031750, 0.865594, -0.595591, -2.007646, 0.228565, 0.851940, 0.996282, 0.012932, 0.097732, -0.055978, -0.068229, 0.452398, -0.087864, 1.856238, -0.158062, 0.230057, 0.485353, -0.942492, -0.380043, -0.816379, 0.995688, -0.872643, 1.285164, -1.911689, -0.943544, 0.792354, -0.171818, -2.967786, -0.990091, 1.190321, -0.433448, -0.971406, -0.981417, -0.471746, 0.283640, -0.480423, 0.338877, -1.099430, -0.410402, 1.026978, 1.925956, -1.210134, -0.587294, 0.890915, 1.964697, -1.618644, 0.598483, 0.161867, -2.640347, 0.422235, 1.855615, -0.686472, 0.878173, -0.955851, 0.735719, 1.537305, -0.624413, 0.769929, -1.639714, 2.081826, 0.293566, -0.253718, -1.571105, -1.678064, -1.024081, -0.960972, 2.148795, 0.429450, 0.789889, -0.546483, 2.601382, -1.037341, -0.772325, 1.159914, 1.414944, -0.531199, -0.709725, -1.056136, 0.072706, -1.138966, 0.426360, 0.453583, 0.189144, 0.174739, -2.751483, -0.862172, 0.703835, 0.690066, 0.871391, 1.386454, -0.508981, -0.686251, 0.985681, -0.616873, -0.412116, -0.659893, 0.497967, -0.562584, 2.579193}, + { 0.403650, -1.014357, 0.574913, -0.445437, 1.094661, 1.134115, 0.288358, -3.385571, 0.796048, -0.249780, -0.558531, -0.122649, -0.784038, -0.550558, 1.465000, 2.474917, -2.028365, 0.037672, -1.641080, 2.301788, 2.071623, 0.529941, -1.252949, 1.237254, 0.581403, -0.412883, 0.124912, 0.372891, -1.263205, -0.131711, -0.016222, 0.011139, 0.032905, -0.899638, -0.115517, 1.845425, -1.015900, -0.241577, 0.755320, 1.847321, 1.040070, 0.645562, 0.458842, 1.458119, 0.492040, 0.553860, -1.059370, 0.916266, -0.071800, 0.298681, 0.924285, -0.578455, 0.852463, -2.131735, -1.582429, 0.266644, -0.066622, -1.542669, 1.645423, 0.162123, -0.861890, 0.204836, -0.949205, -0.534554, 0.187803, 0.319879, -0.461831, 0.973578, -0.110314, -0.245235, 0.296543, -1.703765, -0.904522, 0.698099, 0.408387, 0.474978, -1.206558, -1.632827, 0.700368, -0.393521, -0.479803, 1.813555, -0.199872, -0.132172, 0.177989, -0.350155, -1.085370, 0.329317, 1.423793, -0.597576, 1.364015, 0.026374, -0.347868, -1.509244, 0.412236, -1.668170, 0.335332, -0.205457, 0.000051, -0.995482, 1.260030, 1.582177, -2.220616, 0.018139, -0.070463, -1.000663, 0.738686, 1.008254, 0.791168, 0.457487, -0.511023, 0.654914, -1.290303, 0.233504, -1.667212, -0.580289, -1.596230, 0.121505, 0.119900, 1.126179, -0.776565, -2.421473, 0.913234, -0.512228, 0.156020, 0.242267, -0.156494, -0.352227, 0.568852, -2.372196, -0.558408, -0.814404, 0.803400, -0.450912, -1.039012, 1.618778, -0.928862, 0.124976, 0.313682, -0.113927, 1.977735, -0.319704, -1.107360, 0.145451, 0.636119, -0.118886, 1.906191, 0.576585, -2.355120, -1.030013, 0.398517, -0.249832, -1.228368, 1.194110, 0.999952, 0.335488, 1.686971, -1.345639, -1.161981, 0.321674, -0.010277, 0.621946, -0.543480, -1.836735, 0.252794, 0.207638, -1.201019, -0.569695, -0.869720, -0.024617, -0.319028, 1.334856, 0.202437, 0.156878, -0.675716, 1.020870, 1.567374, -2.376426, -0.006889, -2.060126, 0.289579, 0.646099, -0.299576, 1.220229, 0.699140, -0.316892, 0.279181, 0.645902, -0.917055, 2.099333, -0.108554, -0.588589, -0.262278, 0.076212, -0.900526, -0.588247, 0.277803, -0.862968, -0.556489, -0.720162, 0.836842, -0.458211, 0.407476, 3.323483, 0.102982, 1.435021, -0.107586, 2.581338, 0.884011, -0.151865, -0.985982, 2.176918, -1.975165, -0.709848, -1.878093, 1.787065, 1.624997, -1.110798, -0.035640, -0.286764, 0.573791, -1.434333, 0.330872, 0.001660, -0.349379, 2.340239, 0.384685, -0.383720, -0.524242, 0.446390, 1.453213, 1.073712, 0.367489, 0.854753, 0.401788, -0.268169, -0.795803, 1.344657, 1.914867, 0.060212, 1.342665, 1.844248, 0.683149, 0.844919, -1.045163, -0.749471, -0.938539, 1.070481, 0.216803, 0.276765, -1.007369, -0.094269, 1.749082, -1.110859, 0.876878, -0.720469, 1.077733, 0.797991, 0.598824, 0.367988, -1.418543, 0.805829, 0.141320, 0.816281, -0.102348, 0.544938, 0.949649, -0.041311, -0.848627, -0.167435, -1.061705, 1.722685, 1.909846, 0.945638, 0.383591, 0.481468, -0.980928, 0.801423, 0.775630, 0.118020, -0.707412, -0.690296, -0.623419, 0.476887, -2.095384, -0.170983, 0.268854, 1.187011, 1.044914, 0.860511, -1.358630, -0.401680, -0.106810, 0.366891, 0.110413, -1.553775, -0.005772, 0.179523, 1.446954, 1.863318, 1.373255, -0.296341, 0.531260, 0.763358, 0.856919, 0.251658, -0.874166, -0.297233, 0.612500, -0.404567, 0.358791, -0.794084, 0.358868, -0.479656, 0.432944, -1.300818, -0.007985, 1.816262, -0.320376, 0.716702, -1.205585, -0.434012, 0.308615, -1.479865, 0.218971, 0.648748, -0.316473, 1.573821, -2.559482, -1.362501, -0.559912, 2.069263, 1.614291, 1.455573, -1.171642, 0.189204, -0.316051, -1.499253, -0.572555, -0.057391, 1.766878, -0.515420, 1.623991, 0.963558, 0.531500, -1.596240, -1.151685, -0.775070, 0.196245, -1.126315, -1.547278, -0.810357, 1.497284, 0.670666, -0.493768, 0.259942, -0.285163, 0.452725, -0.943477, 0.819788, 0.523223, -0.898829, -0.041125, 1.404306, 0.002926, 1.286466, -1.065030, -1.354182, -0.218270, -0.474482, -2.351792, -0.119771, -1.437854, 0.402988, -0.829463, -0.336072, 0.104880, 1.382572, 0.832138, -0.826629, -0.441240, -0.957771, 0.449953, -0.016467, -0.127841, -0.461525, 2.356978, 0.397976, -0.370878, -1.734662, -0.017854, -0.048064, 1.897087, 0.141245, -1.561147, 1.435536, 0.324683, 1.141221, 0.045720, 1.228539, 0.786667, 0.322392, -0.145924, -0.433266, 0.668625, -0.337349, 0.469963, -0.821507, 0.361637, -0.185504, -0.226764, 1.463808, -1.170744, 0.962554, -1.067644, 0.680177, -0.352000, 0.766491, 0.368286, -0.041368, -0.185891, 0.572279, 0.475622, -0.015614, 0.595553, 0.312691, -0.444387, 0.858805, -0.714035, -0.860998, 1.232973, 0.746909, -0.146962, -0.097159, 0.017668, -0.773621, -1.153864, -0.551942, 2.250875, 0.417342, 1.060219, 1.964819, -1.127420, -0.828311, 0.896610, 0.378337, 1.623264, -0.317616, 1.352037, 0.434727, 0.917286, 3.294066, 1.122401, 0.039238, 0.805987, -1.854270, 1.640013, -0.823682, 0.548888, -1.544348, -0.260741, -0.160354, -0.800431, 2.378434, -0.331215, -0.166094, -0.193455, -0.147849, 0.551494, 0.756349, 0.387109, 0.814995, -0.801545, -0.932988, -0.046805, 0.264169, -0.673894, -0.563174, 0.634202, 0.199476, 0.222129, 0.324260, 0.438683, 0.689621, 0.473255, -0.577350, -1.890997, -0.498742, -1.030212, 1.960762, 0.426586, 0.799986, -0.304973, -1.334436, 0.441415, -0.361671, -0.153559, 0.279821, -1.035372, -0.395245, -1.655331, -0.484320, 0.327468, -0.816196, 0.403930, -1.319878, 0.138421, 0.289832, 1.316994, -0.656594, -1.419364, 0.461996, -1.002195, -0.715450, -0.714658, -0.315496, 0.496665, 0.684950, -1.976423, -2.019666, -2.141942, -0.067594, 0.115619, 0.227518, -1.205330, 0.339143, 0.594462, 0.806198, -0.402049, 0.289432, 0.012881, 0.352648, -0.279749, -0.061365, 0.388821, -0.358784, 0.764064, -0.321759, -0.625129, 0.261736, -0.345302, 0.798635, -2.688097, -0.993953, -0.338664, -0.069779, -0.597257, -1.847885, 0.280960, -0.002756, -1.244031, -0.313816, 0.144402, 1.648641, 0.496644, 0.579856, -1.757140, -1.638650, -0.629387, -1.456585, 0.692796, 2.217984, -0.594434, 0.437397, 0.405732, 0.033633, -1.318801, 0.384458, 0.451332, 1.184789, 1.466613, 0.327402, -0.603376, 1.002395, 1.427166, 0.494772, -0.720510, 1.444688, 0.093412, -0.252758, 0.298626, -1.023951, 0.757852, 0.265532, 0.522633, -0.577624, -0.223571, -0.424457, -2.437884, 0.037673, -0.313798, -0.877012, 0.058171, 0.299391, 0.457107, 1.108758, -1.004998, 1.108680, 1.092108, 0.347071, 0.561858, -0.309738, -1.961865, 0.067770, 0.208781, 1.406564, 0.079408, 0.292537, -1.290361, 0.522549, 0.417226, -0.124813, 0.921581, 0.995435, 1.536781, 0.655386, 0.403072, -0.741236, 0.258980, 0.920533, -0.233766, -1.730940, -1.213816, -0.171870, -0.270637, 0.124970, 0.417329, -2.067523, -0.100395, 0.346188, 1.321396, -1.070765, -0.207533, -1.659396, 1.943506, -1.032507, 0.448917, -1.258586, -1.352016, 0.256929, 0.078243, 0.199747, -0.261881, -1.095747, -0.041415, 2.314274, 0.125063, -0.875276, 0.007655, -0.224708, 0.067192, 0.510492, 0.054327, 0.309587, 1.689233, 0.332936, -0.663006, 0.508924, -1.402498, 0.113803, 1.751177, 0.089091, -0.581800, -0.690685, -0.698377, 0.789543, -0.264834, 0.819967, -0.179253, 0.597610, 1.024996, 1.777037, -0.101047, 0.818741, -1.127099, 0.202876, -0.545788, -1.996230, 0.285502, 0.739056, 0.348153, -1.570766, -0.845416, 0.577325, 0.532560, 1.448241, 0.951012, 1.601069, 0.562329, 0.912995, 2.233775, 0.242845, 0.827675, 0.323510, -1.859925, -1.202888, -0.476400, 0.429710, -1.308589, 0.295224, 0.612134, -1.331652, 1.018703, -1.283876, 0.760105, -0.676802, 1.605096, 0.842045, -0.210628, 0.240826, -0.633423, 0.516157, 0.184192, -0.200448, -0.744881, 0.551060, 0.694408, -1.253124, 0.203826, -0.277176, -0.320803, -1.490409, 0.798990, -0.853038, -1.508126, 0.559247, -0.055065, -0.525157, 0.703393, 0.964516, 0.226263, 0.087568, -1.247614, -0.031154, 0.372990, -0.008329, 0.671473, -0.466580, -0.984668, -0.266251, -1.040791, -0.328515, 0.523336, -0.061269, 0.136050, 1.734326, -1.684678, 0.097109, -0.033681, -1.866523, -0.114286, 0.483032, -0.783239, -0.848321, 1.238794, 0.073016, 0.990971, -0.305485, -0.471023, 0.419819, 0.859822, -0.822961, 0.733795, -0.627316, 1.533442, 0.441122, -0.011299, 0.125103, -0.028121, -0.354656, -0.321765, 0.612309, -0.623230, 0.699508, -0.671007, 0.173559, -0.634868, -1.128972, -0.529348, 0.551161, 0.127342, -1.614116, -1.543403, 1.040704, -0.874271, -0.323190, 0.791401, -1.117346, -1.268923, -1.496959, -0.322501, -0.691180, -0.878479, -0.389889, 0.224996, 1.052182, 0.814613, -0.203115, -1.430450, -1.156906, 0.093334, 0.268751, -1.231103, 0.358831, 0.717739, -0.526319, -0.871801, 1.118623, -0.286269, 0.807651, -0.171898, -0.244346, -0.292616, -0.312339, -0.778441, 2.283582, -1.153663, 0.010582, 0.292626, 0.637879, -0.395363, 0.652680, -0.170944, 0.261480, 1.018349, 0.420863, -1.273513, 0.226659, 0.211982, 0.768227, 0.624927, -0.387252, -1.259928, 1.280543, 1.144495, -0.764596, 1.433049, 0.012981, 0.835417, -0.245949, -0.243545, 0.144518, -0.992883, -1.044753, 0.438425, 0.253992, 0.453029, 0.501885, 1.681062, -0.684413, 1.024482, -1.231547, -0.223500, 1.481364, 2.259431, -0.010872, 1.206360, -0.518804, -1.566448, 0.224529, 1.407457, 0.205682, -1.231488, -1.093900, -0.864383, -0.470304, -0.283235, -1.523998, 0.588132, 0.799795, 0.540549, 1.298360, 0.432368, -1.537464, 0.926389, -0.242382, 0.376326, -0.084512, -0.614499, 0.592639, 0.924944, 0.553291, 1.157093, 0.221752, 1.283735, 0.506319, -1.305093, 1.103942, -0.066378, -0.649467, 0.468847, -0.823644, 0.677119, 0.257429, 0.052998, -1.195108, -0.225365, 1.553572, 0.409460, -1.194006, -0.572291, 0.947205, 1.586773, -0.563282, -0.075441, 1.123739, 0.475328, 0.334366, 0.414407, 0.373830, -0.429325, -0.905962, 1.032345, 0.849797, 0.199190, 1.287890, -1.264970, 0.501707, 0.598815, -0.456416, -0.820294, 0.189219, -0.780710, -0.884509, -1.518949, -0.315514, 2.512309, 1.348925, -0.220670, 0.183711, -0.129030, 1.156924, -0.672819, -0.987780, 0.147582, -0.565920, -1.716531, -0.224108, -2.168154, 1.186326, -0.930835, -0.512965, 0.973275, 1.725040, -1.534523, -1.010800, -0.701094, 0.520839, 0.597366, 0.391436, 0.460181, -1.120708, -0.081569, -0.907186, -1.543816, 1.838788, -0.772729, 0.153728, -0.081366, -1.700483, -1.361371, -0.268214, -1.442124, -0.541602, -1.692319, -1.569642, 0.638361, -1.876925, -1.571427, -0.450344, 0.960780, 0.253591, -1.229348, -0.841928, -0.613002, 2.213668, -0.902062, -0.537889, -0.204258, -0.207101, -0.240051, -0.698893, 1.015808, -0.788519, 0.090246, -1.647101, -1.219294, 0.371430, 0.608064, -1.007720, -0.716862, -1.317105, 0.370004, -0.503596, 0.233341, -0.576625, 0.049660, 0.310022, 0.207220, -1.493660, 0.074741, 0.043931, 0.241622, 0.183654, 0.433645, 0.856215, 0.987696, 0.526214, -1.911603, 0.701377, 0.199308, 0.161817, -0.049446, -0.958827, -1.441590, -0.922162, -0.459064, -1.387224, -1.526984, 1.527146, 0.832633, 0.728032, 0.160987, -1.868734, 2.432333, -1.181181, -1.075494, 0.168446, 0.258317, 2.488678, -0.857732, -0.264983, -0.092322, -1.020084, -0.417596, -1.739162, -0.284714, -0.278035, -0.912109, 1.192221, -2.834740, 1.489730, -0.990097, -0.749150, -0.168077, -1.074848, -1.793903, -0.215131, -0.387670, 0.984328, -0.581987, -1.598644, -0.155541, 0.828786, -0.025096, -1.434835, 0.269190, 1.554233, 0.956460, -1.707802, 0.942780, -0.044878, 1.581209, 0.589502, -0.656406, -0.273697, -0.694312, -0.804025, -1.068324, 1.002741, 1.254451, -0.241819, -1.008920, 0.190989, 0.531043, -0.172930, -0.721633, 0.157305, -0.574001, 0.618801, -2.038373, -0.530031, -1.931389, -0.718863, -0.379351, 0.325355, -0.592091, 0.983623, -0.773068, 0.234150, 0.286031, 0.331320, -0.480235, 0.465021, 0.915267, 0.262110, 0.844248, 2.533713, 0.277368, 0.150545, -1.431177, -0.495116, 0.534041, -0.728234, -2.267874, 2.226621, -1.051680, -0.308458, -0.170056, 0.651044, 0.751770, -0.786996, -0.252661, -0.073379, -0.309679, -1.085102, 0.141903, 1.199780, -0.167697, -0.828849, -0.933525, -1.206744, -0.994324, 0.618158, 1.827536, 0.011788, 0.549670, -0.082109, 0.295925, 0.687917, 0.158110, -0.425561, -0.562384, 0.056593, 0.060151, 1.945135, -0.558745, 0.291663, -1.522245, -0.425124, 1.756151, 1.150879, 0.876375, -1.069071, -1.506176, -0.391403, -0.481686, 0.952427, -0.979452, 0.181769, -0.235477, -0.694768, 0.409172, 0.041034, -0.592468, 0.821789, 0.654778, 1.333243, -1.323900, 1.275142, 0.466929, -1.028773, -0.752241, 0.316623, 0.989202, -0.946536, -0.016043, 1.382814, -0.641642, 1.937514, -1.397096, 0.774539, -1.020369, -1.626969, -1.614144, 0.063889, -2.955909, 1.438022, -0.121510, -0.326616, 0.646469, -1.078933, -0.611948, 0.993523, 0.585306, -0.615415, 0.792652, -0.846684, 1.232522, -0.447847, -1.078540, -0.759884, -0.178300, -0.424913, -0.106878, -0.029422, -0.570760, 0.416001, -1.114337, 0.419540, -1.296435, 0.057007, 1.049508, -0.445451, -0.920846, 0.933629, -1.290948, 0.597998, 0.191925, 0.478656, 0.404023, -0.098274, 1.008412, -0.231724, 0.077271, 2.410440, 0.114034, -0.833849, 0.083616, -1.800023, -1.332195, 0.436132, 0.880319, 0.543931, 1.060894, -0.555089, -0.467839, -0.504384, 0.691468, 0.813803, -0.757775, -0.922457, 0.806198, -2.327282, 0.209234, 0.795627, -0.093983, 1.289781, 0.594643, -0.719695, 0.433027, -0.284932, -1.542211, 0.900129, -1.230149, -1.902017, -0.441231, -1.210279, -0.197998, 0.282436, -1.650350, -0.199126, 0.838268, 0.249907, 1.528176, 1.499617, -0.824535, 0.011667, 1.582711, 0.025462, 0.407588, -0.424479, -0.355147, 1.418948, 0.190102, -0.229875, -0.823422, 0.656396, -0.802241, -0.539804, 1.084687, -1.191797, 0.032747, 0.854266, 1.138491, -0.727793, -0.744864, 1.115566, 0.787275, -0.245471, -0.887163, -0.306688, -0.773476, -2.166873, 0.675027, 1.941835, 0.378349, 0.271412, 0.613518, -0.573172, 0.335306, 2.135315, -0.194711, -0.731636, -0.703300, -1.779873, 1.021432, 1.722873, -0.100871, -1.051369, -0.612717, -0.362892, -1.261449, -1.470752, 0.116421, -1.879108, -1.051846, -0.058405, -0.248763, 0.630028, -0.427359, 0.370717, -0.380314, -1.685083, 2.028761, -0.627172, -0.736063, -0.000232, -0.378465, -0.320739, -0.702141, -0.851224, -1.683412, 0.275351, 0.765837, -0.056659, 0.490378, 0.579577, -0.789724, 1.422014, -0.854742, -1.209662, 0.969723, -0.812093, 0.088157, -0.433541, -1.857995, 1.764611, -0.560070, 0.921676, -0.128485, -0.641978, 0.089977, -1.137541, 0.851115, 1.717667, 0.204153, -1.386338, -0.012240, 0.538882, 0.316104, 1.279872, -0.343778, -0.550929, -0.157596, -0.831566, -0.736403, -0.728087, 1.325507, 0.223421, -1.793291, -0.561975, -0.090290, -0.645108, 0.190792, -0.997602, 0.918327, -0.977693, -0.693141, 0.863141, 0.496938, 0.797128, -0.837729, 0.116220, -0.645902, -0.244782, 1.608342, -0.599335, -0.656318, 2.884092, 0.839951, -0.704683, -0.946596, 3.295261, 1.409860, -0.536865, -1.355396, 0.710234, 0.969652, -1.663202, -0.964779, -0.938305, 1.159045, 0.836793, -1.099281, 0.116668, -0.801463, -0.670267, 0.087341, -1.858877, 0.168464, 0.413383, -0.738234, 1.079499, 1.444205, 2.041893, 1.291946, 0.784241, -1.111100, -0.644108, -1.241789, -0.491682, -0.166509, 1.551962, -0.450500, -0.845400, -0.729360, -0.345683, 0.837829, 0.478985, 0.678351, -1.389608, 0.534791, -0.089142, -0.114093, 0.093009, -0.340041, 0.250614, -0.151415, -1.652256, -0.853159, 0.774902, 1.958038, -1.450961, -0.859910, 0.546809, -0.477893, -0.211489, -0.876248, -0.821221, -2.123207, -1.492650, 1.156059, 0.895164, -0.738948, 0.233253, 1.905542, -0.079593, -0.155136, 2.305882, -0.273484, -0.566885, 0.279136, -0.395144, -1.230924, 0.272750, 0.270651, -0.571963, 0.910520, 0.725947, -0.309072, -0.023248, -0.562326, 0.640770, -0.278303, 0.731448, -0.351787, -0.960881, 0.942895, -0.472951, 0.529909, -0.355112, 0.847091, -0.494718, 0.429351, 0.483058, 1.133634, 1.167801, -0.264509, -2.373041, 1.109496, -1.287663, 0.294950, -0.287150, 0.939537, -1.278916, -0.620015, -0.146790, 0.294089, 0.609734, 0.119335, 0.123527, 0.130386, 0.734867, 0.234173, 0.659366, 0.238540, 0.579723, 0.680795, 0.246009, -0.951645, -0.795111, -0.065673, 0.544346, 2.934424, -0.533174, 0.977978, 1.103460, 0.868221, 1.463206, -1.697608, 0.287286, 0.334054, -0.649849, -1.654191, 0.684923, 0.523903, 1.758263, 0.877924, -0.934760, 0.274968, 0.213620, 0.001457, 0.056218, -0.555498, -0.270374, -1.752823, 1.047068, 2.734392, -0.466875, 0.287841, 0.737404, -0.647578, 0.417001, -0.542664, 0.527525, 0.459630, 0.172339, -1.172532, 0.509536, 0.621444, -0.610799, -0.415070, -0.509843, -1.658756, -1.093467, -2.126905, -0.518205, 0.067556, -0.553795, -2.878675, -1.575168, 0.319597, 0.574191, 0.078536, -0.180321, 0.247530, 0.967652, 0.925374, -0.160885, -0.844323, 1.234135, 0.336521, 0.661189, -0.542232, 0.670142, 0.683886, -0.436394, 1.447906, 1.129992, -0.634565, 0.082254, -1.142330, -0.096293, 0.767680, 0.893264, -1.237613, -1.126703, 0.728170, 0.575194, 1.240174, -1.768852, 0.536677, -0.252502, 0.486789, -0.171011, -0.257381, 1.307250, 0.229467, -1.236534, -0.787848, 0.061045, 0.031829, -1.014912, 1.439787, -1.135896, 0.291074, 0.018218, -0.963381, 0.878649, -0.205836, -0.046363, 0.759615, 0.043303, 0.178095, 0.652399, -1.565304, -0.659674, 0.454158, 0.224785, -0.039544, 0.466910, -1.408313, 0.039009, 0.668789, -1.829626, 0.164978, 0.965653, -1.894616, -0.171453, 0.575807, 0.311404, -0.256240, -1.144235, -0.314146, -0.101274, 1.469922, -1.595728, 0.688351, -0.058753, 1.599472, 1.346916, 1.141347, 0.402206, 0.509964, -0.447592, 2.039549, -0.264526, -0.483366, 0.212342, -1.211447, 1.127557, -0.175670, -1.582539, 1.916948, -0.418697, -1.361261, 0.701625, 0.836808, 1.694200, -1.922272, 2.785683, -0.001746, -0.582601, 0.569545, -0.059714, -0.413965, -0.237097, 0.410471, 1.614576, -0.518125, -0.150064, 0.185868, 1.248381, 0.290936, -1.017554, -0.546839, 1.598038, 1.252281, 0.408563, -0.105386, -0.918977, -2.108553, -0.873579, -0.054834, -0.482299, -0.023416, -1.716354, 1.028809, 0.106077, -0.867786, 2.341866, -0.244537, 1.083142, -0.780861, -0.114854, 0.281570, 0.657147, -0.745454, -0.118075, 0.224655, -0.130497, -0.018081, 0.594210, -0.880708, -0.736090, 0.405108, 0.248463, -0.103432, 0.804367, 0.050547, -0.297901, -0.106650, -0.665342, -0.607072, -1.426338, -1.312137, 0.316742, 0.857733, -1.819282, -1.744692, 0.193747, 0.303592, 0.545289, -0.216144, -1.621939, 1.609917, 0.008518, -1.416048, -0.386168, 0.811665, -1.138723, -0.719371, -1.223980, -0.565182, -0.620800, 0.978672, -0.265252, -0.147947, -0.574011, 1.317613, 0.550122, -0.927371, 0.267496, -0.434137, -1.126929, 0.222792, -0.093836, 0.573814, 0.684660, -0.289461, -0.673617, 0.031222, -0.390207, -1.875464, 0.650939, 0.063618, -0.018508, 0.385772, 1.324701, 1.379135, 1.818650, -1.064153, 0.362183, 0.341372, -1.406471, 0.069905, -0.350700, -0.223056, -1.918347, -0.652705, 0.292548, -0.410094, -1.077892, 0.156263, -0.972401, -1.905446, -0.268428, -0.407302, 0.500146, -0.625782, 1.044492, -1.250173, 0.863476, -0.215112, -0.108704, -1.235056, 0.944494, 0.107667, 0.589667, -0.117342, 0.155034, -1.884534, -0.539770, -1.125896, -0.883840, -0.611908, 2.753627, 1.652613, -0.767095, 0.385451, 0.051766, -1.323072, 0.049867, -0.512946, 0.827393, 2.294214, 1.477571, 0.716674, 0.679587, 1.309817, -0.388980, 1.676723, -0.992685, 0.623931, -0.577933, 1.296038, -0.282157, 0.776775, 0.124468, 0.907620, 1.804456, -0.895438, -0.740157, -0.380904, -0.495472, 1.646763, 1.178004, -0.521876, -0.624476, -0.080065, -0.095494, 0.968431, 0.473506, -0.457273, 0.994473, -0.367438, 1.373465, 1.127022, -0.316771, 1.893742, 0.446486, -2.047539, 0.031481, -0.257734, -0.253363, 1.331671, -0.839316, 0.805521, -1.042728, -1.186315, 0.001378, 0.486470, 1.802370, 1.272869, 0.183356, -0.741275, -0.151712, 1.621823, 0.934742, -0.702545, -0.673393, -2.141491, -0.376082, -0.301698, -0.468269, -0.848141, -0.757061, -0.441397, -1.714403, -0.864817, -0.567808, 0.395281, -1.035108, -1.244881, 0.982442, 0.234864, 0.657748, 0.201716, -0.239845, -0.170057, 0.923069, -0.515938, 0.736369, -0.373563, -0.594491, 1.300918, -0.057348, 1.134259, 0.608627, -1.007348, 0.478846, 0.580348, 0.017821, -0.072000, 0.517446, -1.714189, 1.895427, -0.555520, 1.415054, 0.982356, 0.232862, -0.075252, -0.119670, 0.116894, 0.035425, -2.981077, -0.642234, -0.490223, 0.949176, -0.492867, 0.386664, 0.604940, 0.153660, -1.455345, -0.360739, -0.516151, -0.742326, -1.070877, 0.902510, -1.352179, 1.136226, 1.352921, 0.699752, 0.359441, 2.592792, -0.887433, -0.123843, 0.503732, -0.683479, 0.591829, 0.616676, 0.893981, 1.239937, -0.835748, -0.921213, 0.471332, 1.959629, -0.712119, -0.876056, -1.461577, 0.725497, -0.433947, -0.280278, -0.759501, 1.579697, -0.242384, -1.185813, 1.214715, 0.841201, -0.943776, 0.155406, 0.286934, -0.252360, -0.349418, 0.310711, -1.282880, 0.383753, -0.354927, 0.549806, -0.237914, -0.019383, 0.008966, 0.795499, -0.132362, -0.315418, -0.290750, 0.201498, -1.654917, -1.539167, 0.193551, -0.167884, 0.742253, 0.493177, 1.316069, 0.696697, -0.343644, -1.723649, 1.641208, 1.192964, -0.551287, 1.309234, 0.366176, -0.507910, -0.549484, -1.331046, -0.077263, 0.817586, -0.582795, 0.197074, -0.293068, -0.179441, 1.826765, 1.214504, -1.421991, -1.394491, 0.509878, 0.302011, 0.726037, 0.486916, -1.390760, 0.129507, 0.246152, 0.542568, -0.243816, -0.920033, -0.022152, -0.122849, -0.034907, -1.010447, -2.115669, -0.921480, 0.363158, 0.298078, -0.264359, 2.521276, 0.469212, 1.964345, 0.562863, -0.565281, 0.617093, 1.008149, 0.614923, 0.670064, 0.662407, 2.162896, -1.506033, -1.414300, 0.915611, 1.129178, 1.151091, -0.407912, -1.311165, -0.946797, -1.872198, 1.717881, -0.220359, -0.915865, 0.937339, -1.567913, -0.452273, -0.573111, -1.037161, -1.147535, -0.398549, -0.245396, 0.223974, 0.712700, -0.396805, 1.659639, 0.258945, 0.061332, -0.099915, -0.386359, -0.138077, -2.285939, -2.107903, 0.260845, 0.260295, -0.107461, -0.277447, 2.913926, -0.736411, -1.028210, -0.176374, 1.521541, 0.700929, -1.935581, -0.639139, 0.602713, 2.188656, -1.247290, -0.937184, -0.474168, -0.052560, -0.472749, -1.427891, -1.642530, -0.554331, -1.323366, 0.146956, 0.226637, 0.744074, 0.353701, 1.127897, -0.526748, -1.164095, -0.289418, 2.689822, 2.136349, -0.656709, -0.761043, 1.388401, -1.598813, 0.418309, -1.421558, 0.657747, -0.536230, 0.059853, -0.261367, -0.154115, -0.116551, -0.782348, -0.531219, -2.741324, -0.194774, -0.808758, -0.230346, -1.052592, 0.773294, -0.099241, -1.002693, 0.590679, 2.288377, -0.341220, 0.657274, 0.383222, -0.548760, 0.813253, -0.348239, -0.295838, 0.405406, -0.401578, 1.629204, 1.016865, 1.820713, 0.620749, -0.422787, 1.370819, 0.437397, 2.728343, -0.665351, 0.360643, -2.952486, 0.726280, -0.464092, 1.564664, 1.183746, -0.140077, -1.609305, 0.388781, 1.805430, 0.673783, 0.847742, -1.429641, -0.364561, -0.782296, -0.461391, 0.945367, -0.002263, -1.951044, 0.163468, -1.216889, -0.347887, 0.603077, -2.571118, 0.402727, 0.833914, 2.043092, -1.134621, 0.657550, 0.646142, -1.701417, 1.505809, 0.744325, -0.160547, 0.038150, 0.878490, -0.487961, -0.023531, -1.338219, 0.644638, 1.212874, -0.601670, 0.312677, 2.061152, -0.540609, 0.364667, 0.634646, 0.868277, 0.793666, -0.742269, -0.544547, -1.302459, 0.560828, -0.551382, -0.789269, -1.880177, 0.948593, 1.310579, 1.261896, 1.073440, 0.898310, -0.179731, -1.141158, 0.942666, 0.270296, 0.439961, -0.897617, -1.544970, -0.234612, 0.575016, 1.305525, 0.636647, 0.177148, -0.734641, -2.059326, -2.203162, -0.030725, -2.377880, 0.681216, -0.833386, -0.125028, 0.325196, 0.850329, 1.069324, -0.901739, 1.796688, -1.703425, -0.970516, -0.348875, -0.188258, -2.238509, -0.275880, -0.084813, 0.224025, -0.134691, 0.297070, -1.479561, 0.473431, 0.199697, 0.984612, 0.427675, -1.427747, 1.524924, -1.267863, -0.303976, -0.980761, 1.242003, 0.084785, -0.789370, 0.576805, 0.949141, 0.171224, 0.923626, -0.894551, 0.293951, 2.999224, -0.695536, -0.657224, -0.370457, 0.289485, 0.376630, 0.327050, -0.658003, 1.224362, -1.173111, -0.103859, 1.353293, 0.492534, -1.136925, -0.405728, -1.831111, -1.460551, -0.596232, 0.419152, -0.047052, 0.010094, -1.293542, -0.473344, -1.735135, -0.444567, -1.151635, 2.254477, -0.105680, -1.138938, 0.232102, 0.893697, 0.481107, 0.129821, 0.828834, 0.012631, 2.125962, 0.770060, 1.416905, -1.365304, -1.116700, 1.928549, -0.482531, -1.659604, 1.427824, 0.913770, -1.967791, 0.763760, 1.051851, 0.091184, -0.640880, -0.682313, -1.194793, -1.060970, -0.300702, -0.927257, -0.211245, -0.421115, -0.908739, 0.978105, 1.454828, 0.504301, -1.917201, -1.165814, 1.727954, -2.046449, -1.813825, -2.800429, -1.574381, -0.035876, -0.534210, -1.861530, 0.230464, 1.751231, -0.204038, 0.674686, 0.390044, 0.464456, 1.548922, -0.645087, -1.020081, -0.746528, 0.060918, -0.384667, 0.439998, 1.210240, -0.900052, -0.242748, -0.896840, 1.320688, 0.704749, 0.144492, -1.536981, 0.022620, -1.078140, -0.121028, -0.396926, 1.431968, -0.037225, -0.215811, 0.198981, -0.337709, -0.495669, 0.537513, 0.226481, -0.051115, 1.409801, -0.447711, 1.142646, -0.417949, 0.710524, -0.535885, -0.889719, 1.272967, -1.810272, 1.876250, 0.530862, 0.017543, -1.715143, -0.873434, 0.861819, 0.648042, 0.380872, -0.246158, -0.874763, 1.175764, 1.598093, 1.319488, -1.803118, 0.310229, -1.354173, -0.176996, -0.644531, -0.431836, -1.553841, 0.676229, -1.967339, -0.360646, -1.452337, -0.408455, -0.636573, -0.611551, -0.342793, 0.144527, -1.094639, 0.376491, -1.941913, 0.095123, 0.083729, -2.190884, 0.508485, -1.253052, -0.453907, 0.522360, -0.150098, -0.928572, 1.523357, 0.033463, 0.021376, 0.171265, 0.635548, -0.619018, -1.182319, 0.276227, 0.195062, 1.003434, -0.326149, -0.233598, 0.506441, 0.586626, 1.094506, 0.732796, -1.038504, -0.032688, -0.223191, 0.706378, 1.385335, -0.736105, 1.505928, 0.576942, 1.102368, 0.342808, 0.232175, 0.329078, -0.281622, -0.268113, 0.297442, -1.654862, -1.387284, 0.347010, -0.427002, 1.435983, -0.211988, 1.432677, -0.137043, 0.868494, -1.438739, -0.432645, 0.180190, 0.166272, -1.941954, -0.654251, 0.159904, 0.735305, 1.289666, -0.491510, -0.360136, -0.625220, -0.622546, 0.038664, 1.307312, -1.072097, 1.644663, 1.395235, 0.335790, -2.346597, -1.453871, 0.124641, 0.979782, -0.187530, -0.402526, 1.596517, -1.249949, 1.381190, 1.153673, -0.646039, -1.135743, -2.064886, 0.443188, -0.392404, -0.183575, -0.595350, -0.373553, -1.731477, 0.293917, 0.464925, -0.131654, 0.338280, 0.971592, 0.544083, -0.593729, 0.581391, 0.049570, 0.665698, 1.554073, 2.051040, 1.264994, 0.284753, -0.223940, 0.013025, 1.578663, 0.397423, 0.338771, 0.948901, -0.255468, 0.543271, -1.441572, -1.017584, -2.343974, -0.892020, -1.164765, 0.890379, 0.677515, 0.566318, 2.722571, -0.175620, 0.733549, 2.479710, -1.086199, 1.976917, -0.240016, 0.958143, -0.305520, -0.028627, -0.959700, 0.456449, 2.217017, 2.160115, 0.797643, 1.160221, -0.220677, -0.294599, 0.427451, 0.273464, -0.793952, -1.726198, 0.103973, 1.275484, -0.916343, -0.213839, 0.346862, -0.066235, -1.658777, 1.847968, 0.442934, 0.646220, -1.019012, 0.130128, 0.672232, 0.406632, 0.282525, 1.111466, -0.610471, 0.913907, -0.569503, 0.668567, -0.492053, 0.752004, 0.593907, 1.273272, -1.709688, -1.420430, 0.402947, 0.238491, 1.901797, -1.429218, -1.065302, -0.423841, 0.184660, -1.154388, -1.728662, -0.433297, 0.031642, -1.399173, -2.610458, 0.684569, 0.443293, 0.284231, -0.775240, 0.727082, -0.141152, -1.259207, -0.813588, 1.201866, 1.065534, -1.061569, 0.112190, 0.371255, -2.560068, -1.674337, 0.580230, 1.545776, -0.202455, -0.330252, 0.165186, 0.659836, 0.455610, 1.060875, 0.377072, 0.704615, 0.137726, -0.406939, 0.721694, 2.010913, -0.650981, 0.044983, 1.758263, -0.172722, 1.729487, 0.658749, -1.807022, -0.071710, 0.299541, -0.406716, 1.708485, -0.078615, 0.874915, 0.721516, -0.562142, 0.444970, 0.030435, 1.062719, -0.009797, 0.331812, -0.257507, -0.642826, 1.489980, -1.078856, 0.505459, -0.208200, 1.489289, -1.108806, 0.086110, -1.148330, 0.318746, 0.528346, -1.276897, -1.077130, -1.821224, -0.198135, 0.425110, 1.357034, -1.416233, -1.208188, -0.440489, -2.295060, -0.307250, -0.473740, -0.637878, 0.095922, 0.204680, 0.858249, -0.728034, -0.259860, 1.365026, 0.038359, 1.619341, 0.641033, -0.848915, -1.765775, 0.434685, -0.485445, 0.620264, 0.233168, 0.496633, -0.635425, -0.444807, -0.293892, -0.478920, -0.056509, -0.207709, -0.136660, -0.903967, -1.348821, 1.734755, 0.031791, -2.587564, -1.821445, -0.308052, -0.578963, 1.397245, 0.374941, -1.060330, -0.507319, 0.208604, 1.536535, -0.398829, 1.179931, 1.059424, -0.509376, 0.139877, -1.214148, 1.960906, -0.437455, -2.009377, -2.032501, 1.029385, 0.170179, 0.449437, -0.450656, -0.991511, 0.349132, 0.299581, 1.826763, -0.655495, -1.309017, -3.002771, 0.224369, -0.670101, 0.213385, 0.016603, 0.961343, 0.711519, -0.624134, -0.021240, 0.150877, -0.735731, -0.675393, 1.166867, -0.269430, -1.837347, -0.327538, -0.292053, 0.297637, 1.412328, 0.464034, 1.005424, -0.688567, -0.220827, 0.474712, -1.795709, -0.663337, 0.870004, 0.356175, -0.744858, -0.579476, 1.464894, -2.458880, -2.249442, -0.462045, 0.217238, 0.999104, -0.355552, 1.226544, 2.202270, 1.994216, -0.442910, 0.269814, -2.211737, 0.240029, -0.805894, 0.925663, 0.390079, 0.386544, -0.357518, -1.425346, -0.356111, -0.918788, -0.937429, -0.628619, 0.987202, 1.011958, -0.040734, 1.572538, -0.916034, 2.142630, 0.323526, 1.590794, -0.807134, -0.596215, 0.258800, -0.790889, 0.779883, 0.138611, 0.484443, -0.168145, -0.268714, -0.806645, 0.946017, 0.591252, -1.167035, -0.064037, 1.010003, 0.563049, -1.123573, 1.294540, -0.051518, -0.677284, 1.036607, 0.531620, 0.018017, -0.559476, -1.076060, -0.489468, -0.018593, -1.474160, -1.086951, -0.921499, -0.164137, -0.887251, -1.057573, 0.151256, 0.260231, 0.698099, -0.030594, -1.768641, 1.466413, 0.388410, 0.932538, -0.505031, -0.783742, 1.102085, 0.610680, 0.635592, 0.101899, -0.463534, 1.837103, 0.763778, -0.777260, 0.678067, 0.397137, -1.613219, 1.638842, 1.561704, -1.408138, -1.536592, 1.031409, -2.367192, -0.646976, -1.477342, 0.692510, 0.740599, 0.570904, -1.396710, 0.152288, -0.246136, 1.575269, -0.718980, -0.691288, -0.581177, 0.111762, -0.696594, -1.287438, 0.232954, -0.648621, -1.013484, -1.421856, 0.120184, 1.421674, -0.360872, -0.531505, 0.151806, -0.274982, 2.109722, -1.779857, -1.680797, -0.934375, 0.594241, 0.779384, -2.626769, -2.076733, -1.155985, 0.105148, 0.452280, -0.040999, -0.709963, -0.939537, 0.499941, 0.180139, 0.310072, 1.806872, -1.756247, 0.144770, 0.233338, -0.135717, 0.326980, -1.926322, -1.848879, -0.900480, 0.355452, 0.311934, 0.372904, -0.712604, -0.756677, 0.075465, 1.003045, 0.948611, 0.462486, 0.047251, -1.408994, 0.144499, 1.576225, -2.117524, 0.098124, -0.085894, -0.195769, 1.879621, 0.130960, -0.452396, 0.667443, 1.466419, 1.820750, -0.161807, 2.002359, 0.659923, 0.297108, -0.459391, -1.134038, -0.343862, 0.777568, 0.889402, -0.766731, 1.259474, -0.071255, -0.056483, -1.013449, -0.229199, 1.679355, 0.360851, -0.735641, -0.556593, 0.757427, -0.123547, -0.908905, -0.366782, -0.265149, -0.905410, 1.303287, 0.269712, -0.324711, -0.782275, -0.314567, 0.770087, -0.615491, -0.502674, -1.111622, 1.272049, 0.341114, 0.850730, -0.189032, -0.442412, 0.828035, -1.326719, 1.966919, -0.974363, 1.238002, 0.687884, 1.501663, -0.562896, 0.242446, 0.403003, -1.794563, -0.956314, 0.594500, -0.219098, -1.063674, 0.077278, -0.096761, -1.331001, -0.385402, 2.303776, -0.174691, 0.843084, -0.558374, -1.760521, -1.111174, 0.748879, -0.625377, 0.121835, 0.331567, 0.883143, -0.324301, 1.132352, -0.038810, 0.220479, 1.980888, -0.589401, 1.040358, 0.135460, -0.554857, 0.726069, -0.462902, -0.043163, 0.417688, 0.265841, -1.294165, 0.812285, 0.526812, 1.840654, 0.239063, 0.294933, -0.487954, 0.692051, -1.269333, 0.745254, 0.223149, 1.056486, 0.031604, -0.857991, 1.029837, 1.733909, 1.192550, 1.580611, -0.746985, 0.134219, -0.050879, 1.376632, 0.748439, 1.244129, -1.376228, 1.563825, -0.012375, 0.441585, 0.476368, -1.023567, 0.259841, -0.551011, 0.759149, 0.381059, -0.272999, -0.559508, -0.409139, 0.636831, -0.248852, -0.137838, 0.781860, 0.141871, 0.200331, -1.981182, 0.465103, 1.055211, 0.094747, 2.063927, 0.351936, -1.149270, 0.897396, 1.751979, 1.120999, -0.026925, -0.490009, -0.445049, -1.543464, 1.282042, -0.739783, 0.719865, -1.592278, 0.937762, 0.201059, -1.547987, -1.255977, 0.885717, -0.522399, 0.220323, 0.037051, -0.069133, 0.788517, -1.048137, -1.492292, -2.161613, 1.505137, 0.740686, -0.133142, -0.172486, 1.256635, -1.400967, 1.242837, -0.559335, -1.077442, 2.187645, 0.990782, -0.179737, 0.078305, 0.626391, -1.163145, -0.724571, -1.287627, -1.283305, 0.950602, -1.361256, 0.170686, 0.602111, 1.473908, -0.046966, 1.093398, 1.192551, 0.377511}, + { -0.881922, -0.441475, 0.095216, 0.277822, 1.187204, -1.899612, -1.098378, -0.188219, -0.271675, -1.551891, -0.694090, -0.453620, -0.786726, 1.505944, 1.583824, -1.574230, -0.304759, 0.082964, -1.178429, -0.629984, 2.040542, 0.266754, 0.645194, -0.043418, -0.621926, -1.786077, 0.353232, 0.872558, -0.198297, 1.423826, -2.951744, -0.838225, 0.016662, -0.878651, 0.130458, 1.204120, 0.066266, -1.226935, 0.349790, -0.720848, -1.161333, 1.963225, -2.628083, 0.531781, 1.282090, -1.424954, -1.642135, 0.369479, 1.144751, 0.628271, 2.102018, 1.675541, 0.036108, -0.094256, -0.484588, -0.324516, -0.267067, -1.708106, 1.456672, -0.512451, -1.771174, -0.496636, -0.203187, -0.209032, 1.417528, 0.201170, 0.054343, -2.352902, -0.171269, -0.287056, 1.479919, -0.272208, 0.584413, -0.601323, 0.727503, -0.037182, -0.312569, -0.635195, 1.601334, -0.317933, -1.028278, 0.793352, -0.553760, 0.686380, -0.153927, -0.516167, -0.268562, 0.578627, 0.000580, -0.656903, 0.650811, -0.293908, 0.090713, 0.988020, 0.118716, 0.568436, 1.097589, 0.480402, -0.497558, -0.189817, -0.484848, 2.097325, 0.618577, 0.307531, -1.179443, -0.745780, -0.141165, -1.032444, -0.472793, -1.637769, 1.155855, -2.265675, -1.459298, 0.429757, -1.820618, -0.976688, 0.583280, -1.109002, 0.413996, -0.201739, 0.098282, -1.434527, -0.821132, 0.263854, -0.403834, -0.214608, 0.195771, 0.508480, 1.015544, -1.334033, -0.772913, 0.230757, 3.171164, 0.801644, -0.984648, -0.408775, 0.892276, -0.084682, -0.262540, -0.343953, 0.642774, -1.517211, 0.940200, -1.896136, 0.661245, 1.461544, -0.757805, 0.558368, -1.080584, -1.347332, 1.331923, -0.660617, 0.573280, -0.064832, 1.460700, -0.746018, 0.185523, 0.413879, 0.677270, -0.897426, -1.920292, -0.003490, 1.192940, -1.437579, 0.483549, -0.106602, 0.252345, 1.694844, 1.560199, -0.210364, 1.719331, 0.905494, -0.497101, -0.240751, -0.306421, 0.300991, 1.412517, -0.933404, -1.695450, -0.062303, -0.181337, -1.980962, 0.218808, 0.477373, 0.216669, 1.302895, -1.221518, 0.516993, -0.137677, 0.861115, 0.804766, -0.933367, 0.705496, -0.172357, -0.194780, 0.133321, 0.351466, 0.255344, -0.946124, 0.246271, -0.521414, -0.119903, -0.252033, -2.999929, 0.311372, 0.270962, 1.132810, -1.223415, -1.326929, 0.800213, -0.263988, 0.902403, 0.434560, -0.847739, 0.840797, 0.049833, -2.186665, 0.994462, 1.004662, 0.174228, -0.339594, 0.704017, 0.014614, -1.282498, 0.544331, -0.208560, -1.191696, -0.388204, -1.030882, -0.092887, -0.504820, -0.957989, 1.733145, 1.145290, 2.039025, -1.800519, 0.250587, 0.222131, -1.224767, 0.515113, -0.414525, -1.387028, 0.572231, 0.778980, 0.008108, -0.583075, -0.444417, -0.388208, -0.339023, 0.195905, 0.169182, 0.000530, -2.999993, 0.425017, -0.492439, 1.106103, 1.214372, -0.636495, -0.623705, -2.252326, -0.505196, 0.387389, 0.648679, -0.301876, 0.759134, 0.649238, 1.572919, 0.352764, -0.476879, 1.293139, 0.741614, -0.625515, -0.998262, 0.394698, -0.559627, -0.623834, -0.597203, 1.062729, -0.217285, -0.083428, -0.791258, 1.285348, 1.547900, -0.833103, 0.266786, -0.348633, -1.148197, -1.081452, -0.633465, -0.219719, -0.603646, -0.432448, 2.414271, 0.521440, -0.969086, -0.778761, -0.632293, -1.418125, -0.664495, 0.678055, 0.149162, 0.826395, 0.953730, 1.915789, -0.635126, -0.507180, 0.874297, 0.941489, 0.139489, -1.183554, -0.565548, -1.180420, -0.375897, 0.077466, 0.857649, 0.318530, -0.080861, 0.792615, -0.022289, 0.502704, 0.473651, -0.080403, 0.815462, 0.114641, -0.324211, 0.287149, -1.638044, 0.832413, -1.156925, -0.738518, -0.043875, 0.900965, 1.144693, 0.173568, 0.123190, 0.067719, -0.333825, 0.267890, -1.058012, 1.336774, -0.450500, 0.561924, 0.340607, 0.124565, -0.123169, -0.558627, -0.643291, 0.178710, -2.703767, 0.900895, -0.133826, 0.534285, 0.772143, 0.709713, 1.960788, -0.863720, -0.945287, -1.015019, -0.270637, 0.853249, 0.263402, -0.417374, -0.469738, 1.077232, -0.789801, 0.254249, -0.244236, 0.374345, 0.077507, 4.163978, -0.214677, -0.660921, -1.183298, 0.843937, 0.190921, 1.076918, -1.637761, -0.540155, -0.870821, 0.501623, 0.234239, 0.802983, 0.965028, 0.526389, 0.623481, 0.645466, 0.517610, -0.027501, -0.126191, -1.393792, -1.366363, -1.586830, 0.162576, 0.014585, -0.089766, 0.798340, -0.382945, -0.442585, -3.508447, 0.053691, -0.261107, 1.081604, -0.713828, 0.651608, -0.537735, -0.725444, -0.893032, 0.818583, -2.692069, -0.181880, 1.471898, -2.103962, -0.923691, -1.294132, 0.846215, 0.863169, -0.868037, -0.216476, 1.026033, -0.597380, -0.400197, -0.157312, -0.242278, 0.750249, -0.697439, -0.653707, 1.269485, -0.184855, -0.268337, 0.452186, -0.704510, -0.733193, 1.460170, 1.037376, 0.483194, -1.254678, -0.839436, 0.367864, -0.027925, -3.197841, -1.427614, -0.066117, -0.463247, 2.727879, 0.454125, 0.863162, 1.697308, -1.554835, 1.234633, -0.406632, -1.904808, -0.705320, 0.749228, 0.451145, 2.181263, -1.069893, 0.775668, -1.233840, 0.852005, -0.448346, 0.509341, -0.352564, 0.633048, -1.190605, 0.223186, -0.150575, -2.856350, -0.149040, 1.205862, -0.612369, 0.998939, 1.319145, 1.458498, -0.996119, -0.504002, 1.215494, 0.804158, 0.664033, -2.198613, 0.472915, 0.969556, -0.433604, -1.165602, 0.845389, 0.456149, -0.710381, 1.178303, 0.612422, 0.266654, 1.348515, -1.705691, 1.605785, -2.178704, 0.512979, 0.582276, -1.361259, 0.204127, -0.367851, 0.856941, 0.398114, 0.569099, 1.548776, -1.025822, 0.049280, -0.245633, 1.692654, -0.109666, 0.536395, 0.171944, 0.154791, -0.797560, 0.089322, -0.083234, 1.634436, 1.184060, 0.438092, -0.155353, 0.271874, 1.208094, -0.450600, -1.658713, 0.370131, 0.648125, 0.548693, 0.818451, 0.912229, -0.788066, 0.194086, 1.276482, -0.112466, -1.151196, 1.513922, -3.711241, 0.092354, 1.463342, -0.099834, 2.668918, 0.693174, -0.514847, 1.459478, 0.176794, 0.092626, 0.071760, -0.267300, 1.083152, 1.080383, 0.201979, 0.825793, -0.302209, -0.435496, 0.901130, 0.774261, 1.473601, 0.125915, 1.015194, -1.321496, -1.338176, 0.606074, 0.229791, 1.174267, 1.004795, -1.409657, -1.064941, 2.499508, 0.083731, -1.130139, -0.997475, 0.742749, 1.674309, -0.414880, 0.230781, -0.494016, -1.281798, -1.272924, -0.755912, 1.140988, -0.288875, 0.624233, 0.124953, -0.926546, -0.927038, -0.107384, -0.259576, -1.107491, -0.117098, 0.462850, -0.798517, 1.409912, 1.704733, 0.570611, 0.329553, -0.674943, 0.046271, 0.793233, -0.345799, 0.749524, 0.329532, -1.011016, -0.763064, -0.168968, -0.056861, 1.066920, 0.893196, 2.185479, -0.794679, -0.427544, 0.070849, 0.433064, 0.077359, 0.003436, 0.162383, 0.983868, 0.554784, -0.691311, -0.826291, 1.643626, 0.854292, 1.125333, -0.017044, -1.224044, -1.075267, 1.208748, 2.325320, 0.449146, 1.184311, -0.371697, -0.099171, -1.223464, -1.574479, 0.104012, 0.518046, 0.087771, -0.859436, 2.244544, -1.370255, -0.552702, 0.078036, 1.237150, 0.013732, -0.710365, 0.176021, 0.486684, 1.407215, 1.646811, 0.262505, 1.551575, 3.188217, -0.770889, -0.077134, 0.089741, 1.206549, -0.822351, 1.054732, 0.102670, 2.206458, 1.445395, 0.833297, 2.457510, -1.728800, 0.599150, -0.582643, 0.097194, -1.136378, -0.688553, -0.195513, -0.245099, 1.844040, -0.105100, 0.853352, -0.309574, -0.563897, -0.441236, 0.237346, -0.408479, -0.138365, -1.625808, 0.868811, -0.280192, 0.493001, 0.674456, -0.343582, 0.434312, 0.669937, -0.175451, 1.365134, -2.892808, -1.183394, -0.091017, 1.387830, 0.703267, -0.623548, 0.942164, 1.632241, -1.306528, -2.749374, 0.276803, -0.745572, 0.798255, -1.000637, -1.458244, 0.491269, 0.959132, 0.346337, 0.075468, 1.185422, 0.271902, -1.419956, 0.282057, 1.918228, 1.089584, -0.010469, 0.458757, -0.767412, 1.301465, 1.389624, -1.260870, 1.180853, 0.484705, -2.188981, 0.792479, 0.714185, 0.605025, 0.952898, 0.134912, -1.235238, 1.607226, 1.451735, 0.415238, 0.077623, 0.470180, -0.342912, 1.028479, -0.055690, 1.028239, -0.900879, -0.427759, -1.243175, -0.115151, -0.929140, 1.427196, 0.653424, 2.145258, -0.476897, -3.224758, -1.172282, 1.368746, -1.494570, 0.231549, 0.024774, 0.033839, 0.337740, 0.186950, -0.421734, 0.350482, 1.797337, -0.688539, -1.145910, -0.454249, 1.222528, 1.535292, -0.005720, 0.010158, -0.123753, -0.332244, 0.398909, 0.412471, -0.544447, 0.578117, 0.075340, 1.343170, -1.052085, -1.049295, -1.226794, 0.967907, 0.793526, 0.301906, -0.256535, -0.841373, 1.313865, 1.160292, 0.562957, -1.555518, 1.409643, 0.154059, 1.303371, -0.594280, 0.305819, 0.683273, 0.292133, -0.189054, 1.152105, -1.326082, -0.190841, -1.361771, 1.867669, 0.529327, -0.184337, -0.951420, 0.844195, 0.548164, -0.329046, -0.298008, -1.232516, -0.848725, 1.039243, 0.677688, 1.754691, 0.211559, -0.421213, -1.451701, -1.075094, 1.433823, 0.589598, -0.592737, 1.001268, -0.164301, 0.831514, -0.851337, -0.319376, -1.188594, 0.490024, -0.953329, -0.328743, 1.067372, -0.092798, -0.148887, 1.048740, 1.668782, 0.073771, -0.642713, 0.178989, -1.247878, 0.969800, 1.126590, -0.214965, -0.651847, -0.848796, 2.386024, -0.627260, 1.843457, -0.396643, 1.590733, 0.084648, 0.679973, 1.752495, -1.346202, 1.198498, 0.286413, 1.400917, -0.832526, -0.309414, -1.580427, 1.645774, 0.375651, -0.988303, 0.244476, 0.875341, -0.132433, -0.104962, 1.059073, -0.170972, 0.113055, 1.083726, -0.863104, 1.060560, -0.286064, 0.378833, -0.699312, 0.195520, -0.062180, 0.062546, 0.670877, -0.187040, 0.549768, 0.723665, 0.158522, -1.080894, -2.022463, -1.330280, 0.769321, -0.623390, 0.589122, -2.603539, 0.077963, 2.492569, 0.949839, 0.028214, 0.908321, -0.472304, -0.312787, 1.152931, -1.700557, -0.314476, 1.546729, 0.487628, -0.798660, -0.341185, 0.025688, 0.095764, 1.328377, 0.245065, 0.553417, 1.078881, 0.106080, -0.560438, -0.789023, 1.021754, -1.279406, 0.637431, -1.054778, 0.191064, 2.140608, 2.750964, -2.403914, -0.623919, 0.523767, -0.960161, -1.645391, -0.678351, 0.649959, -1.282536, -1.647174, 0.155191, -0.026512, 1.405654, -0.398208, 1.053135, 0.816466, 0.857483, -0.168654, 0.207787, -0.568376, -0.009338, -0.023136, 0.318650, 1.315814, 0.058477, -1.807736, -1.965529, -0.862158, 1.125721, 0.973043, 1.557969, 1.440967, -0.703748, -0.248196, -1.045089, -1.163703, 0.253765, -1.475202, 1.137774, 0.364498, -0.152420, -1.089788, 0.210508, -0.554863, 2.076716, -1.219146, -0.893798, 0.206912, -0.047258, 0.132269, 0.337451, 1.204410, 1.146869, 0.169324, 0.405697, -1.026699, 0.051197, 0.885041, -1.310795, 2.922701, 1.224093, 0.150798, -0.434110, 1.899445, -0.531133, -0.305585, -0.030248, 0.763784, -0.911392, 0.485970, 0.098812, -0.394887, 0.791757, 1.350301, 0.017140, -0.551452, -0.066585, 1.045994, 1.823092, 1.926965, -1.074952, -0.277081, -0.344379, -0.291810, 0.053751, -1.126909, -0.075890, -1.087656, -0.714200, -0.296798, 0.246123, 0.852739, 0.037882, 1.301080, 1.259783, 0.612830, 0.429907, 1.390299, -0.677781, 0.362874, -2.233999, -0.234516, -1.888978, -0.064577, 0.960304, 0.166318, 0.802973, -2.222100, -1.414177, 0.085681, 0.104343, -1.633848, -0.008128, 0.000967, 1.283816, 0.708171, -0.971977, 0.670413, -0.159861, -0.371016, -0.086713, 0.121429, 1.349553, 0.692302, 0.186588, -0.056225, -1.605362, 0.158325, 0.105081, -0.441081, -1.171210, -0.824036, -0.425089, -0.780167, 0.467271, 1.477060, -0.186394, 0.933010, 2.070554, -1.843193, -1.774896, -0.797813, 2.149390, 1.135622, -1.018471, -0.415634, 0.653175, -0.891686, 1.067191, -0.007165, 0.496180, -0.787690, 0.568704, 1.638926, 0.070631, 0.920519, 0.349549, 2.156247, -1.983065, 0.290679, -0.677541, -1.760506, -0.715745, 1.116771, -1.209096, -1.816491, 1.033952, -0.362942, 0.884537, 0.827786, 0.730876, -0.669978, 1.813718, 1.402303, -1.700528, -1.013634, -1.820079, 0.095952, -1.035872, -0.480061, -0.379839, -0.912898, -0.264880, 1.517827, -0.463551, 0.352251, 0.130164, 2.332497, -0.028922, 0.443766, -1.304958, -1.472410, 1.035763, -1.101846, 2.901433, -0.354998, -0.450480, -1.216262, -0.603764, 0.160699, 0.274182, -0.533108, -1.080594, -0.985764, -1.257313, 0.407175, 0.123992, 0.313562, 0.495335, 0.280934, -1.395029, -0.447972, 0.913930, -1.448814, 1.679359, 0.104837, -0.427140, -0.224953, 0.068672, 0.067730, -0.823906, 1.118350, 0.437090, 1.245209, 1.410232, 0.487148, -0.367850, -1.282146, 0.739470, -0.508719, 1.249100, 0.503872, 0.249262, 0.815700, -0.972942, 0.397513, 1.485023, 0.799986, 1.096092, -0.624241, 0.767271, -1.491576, 0.600328, 1.144898, -0.068248, -2.020988, 0.592130, -0.951313, 0.840826, 0.333156, 0.667291, 0.855686, -0.347796, 1.322176, 1.204352, 0.114998, 1.027900, -1.777248, -1.778332, -2.412091, -0.205883, 0.973647, -0.284563, 1.261633, 1.501836, 0.866648, 2.017867, 0.175566, -0.166357, -0.128714, 0.820255, 0.142926, -1.543707, -0.039183, 0.135456, -0.871004, 0.960942, 0.806418, 0.072109, -0.466384, 0.119727, 0.599797, 1.930298, -0.119280, -0.311788, -0.162368, -1.588966, 0.301218, -0.670223, 0.188717, -0.365654, 2.227688, 0.153143, 0.670092, 0.786637, 0.830828, -0.266765, -1.964233, 0.729069, -0.375852, -0.249783, -1.414957, 0.586597, -0.352794, 0.327521, -0.237322, 0.818482, 0.984688, 1.711303, -0.125945, 1.197571, 1.483743, -0.378969, -0.119920, -0.560513, 0.287176, -0.530987, 0.601947, 0.218575, -0.237280, -0.610846, -0.466199, 0.224395, -0.517297, -0.516917, 0.857552, -0.037768, -2.095469, -0.531140, 0.017974, 0.560206, -1.164554, 0.664445, -1.406126, 1.565798, -0.444494, 0.445471, 0.265461, -1.283813, -0.202963, -2.097519, -0.551163, -1.068015, -2.491025, 2.381917, -1.443396, -0.116319, 0.016134, 1.145433, -0.622011, -0.195866, -0.191009, 0.066968, -1.522375, 1.116776, -2.081887, -0.698877, -0.004324, 0.103909, 0.797424, 1.602896, 0.201399, 2.134752, -0.065543, 1.055553, 0.561204, -0.413320, 0.779557, -0.508724, -0.834424, -0.361137, -0.057420, -0.094977, 0.672547, -0.680201, -1.257418, -1.960751, -0.898814, -0.573116, 0.334908, -0.098769, -0.248138, -0.790284, 0.846287, 0.221012, 0.913824, -0.931201, 0.051975, -0.547636, 1.206176, -2.326738, -1.325514, 0.808084, -1.077789, -0.422059, 0.323329, 0.102727, 1.970550, 0.675910, 0.769067, -1.165315, 0.233005, 0.274330, 1.146954, 0.299627, -0.040996, 0.269804, -1.162999, 1.291527, -0.889786, -0.230086, -0.825445, 0.576964, 0.108649, 0.436685, -0.479446, 0.033433, -0.534048, 0.335921, 1.894276, -1.233628, -0.308310, -1.675360, 0.311542, -0.921139, 0.736703, 0.212206, 0.386166, -1.441360, -1.438089, 0.760145, -0.530970, 1.732343, -0.820658, 0.465698, 0.519485, 0.624739, -1.027241, -1.386933, -1.280267, -0.946869, 1.603771, -0.353522, -0.793781, -1.118903, -0.598790, -1.947302, 1.257481, -0.339479, -0.512596, -0.573824, -1.003128, 0.752786, -0.476255, 0.397884, -0.999493, -0.804579, -0.075201, -0.628777, 0.175562, -0.983386, -0.602899, 1.126484, 1.068613, -0.030540, 1.262273, 0.413888, -1.618262, 0.977425, -0.265147, -0.863149, -0.961986, -1.949951, 0.130440, 0.945878, 1.186437, -0.983058, 0.443571, 0.790726, -1.478379, 0.034085, -1.128010, 1.074454, 2.588352, 2.328054, 0.643465, -1.744763, 0.382313, 0.657340, -1.932727, 0.145758, 1.837286, -2.810978, 0.657765, 0.276446, -1.058729, 1.101085, -0.085697, 1.163795, -0.710919, -0.164517, 0.028117, -0.214978, -1.008693, 0.347523, 1.274251, 0.135901, 0.535375, 0.375694, 0.942406, 0.141696, -0.161005, -1.511698, 1.916786, -2.035104, 0.244508, -0.420288, 1.057638, -0.175824, 0.791098, 0.092408, 0.827614, 0.204406, -0.639299, -0.291948, 0.367686, 0.349552, -0.367517, -0.720946, -0.890992, 0.076202, 0.436535, -2.071006, -0.973718, -0.879978, 0.079384, 1.485519, 0.149479, 0.502984, 2.798131, 1.392370, 0.384372, -0.677758, -0.250453, -0.965124, 0.564233, 0.361695, 0.585218, -0.951781, 0.093972, 1.075999, 0.183504, 0.235872, -0.309443, 0.413366, 0.634793, -0.892458, 0.404762, -1.802691, 0.476768, -0.040187, 1.110379, 0.932290, 1.122344, -0.120403, 0.397679, -0.455845, 0.236457, 1.410093, -0.601208, -0.207682, -1.858027, 0.142867, -0.060832, 0.820478, -0.599163, -0.367270, 1.446840, -1.186845, -1.432450, 1.343965, 0.363510, 0.206087, -1.130621, -0.028088, -0.879500, -2.348903, -0.439495, -0.312865, -0.344653, 2.273295, -0.746024, -0.087415, -0.181760, 0.583880, -0.650429, 1.308432, 1.021131, 0.909715, -2.342439, -1.470911, 0.074364, 1.616066, 0.008424, 0.347278, -1.907093, 2.279639, 0.912322, 2.629043, -0.812293, -1.213392, 0.839442, -1.164493, 0.413603, -0.114130, 0.041607, -0.863448, 2.116364, 1.222635, 0.632420, -0.820922, -0.650576, -1.854771, -1.236575, 1.568214, 0.046729, 0.881926, -0.835425, 0.205124, -0.053262, -1.305565, 0.114088, 0.371250, 0.095793, 1.054353, 0.814413, -0.467907, -0.456350, -0.185025, 0.313252, 0.218872, 1.577726, -0.845508, 1.090848, 0.662741, -2.960680, 0.996808, -0.884228, -0.473740, 0.354764, -0.000670, 0.174945, -2.637402, -0.605583, 0.255331, 0.375933, 1.762564, 1.516608, 0.095531, 0.192385, 0.800741, -0.568484, -0.587810, 0.343944, 1.446319, 0.117862, -2.636307, -0.763755, -2.891528, 1.025460, 1.124344, -0.412155, 0.327251, 1.236045, 0.653691, 2.154784, -0.514347, -0.058963, -0.231906, 1.314250, -0.496456, 0.177061, 0.347333, 0.268927, 0.020891, 0.710353, 0.587201, 0.921417, -0.498401, -1.720635, -0.385663, -0.098711, -1.433234, -1.423126, -0.349140, 0.205020, -0.502561, -1.178710, -0.022038, -0.532369, -0.460549, 0.682050, 2.387576, 0.563303, 0.400730, 0.313201, 0.816143, -0.223170, -0.046886, 0.578917, -0.841060, 0.458140, -0.506423, -0.922431, -1.175617, -0.191638, -0.784792, 0.380983, -0.385590, 0.318427, -0.037819, 0.556483, -0.957075, -0.235619, -0.187277, -0.346809, -0.855409, 0.628025, -1.509265, -0.293857, 0.620634, 1.059672, -1.475793, 0.412013, -0.064256, -0.441233, 0.817410, 1.097804, 0.360774, 1.068397, -1.353745, -0.455986, 1.384126, 0.690355, 1.221958, 0.557418, 0.103649, 0.186476, 1.080419, 1.008509, -0.388546, -1.912660, -1.048290, 0.361955, 0.037930, 0.790550, -0.977382, -0.355440, -0.169698, 0.266259, -1.558135, 0.202029, 0.273389, 0.553430, -0.194001, 1.321441, 1.320206, -0.127143, 0.567237, -0.820418, -2.475253, 0.492874, 0.260979, 0.812465, 0.291753, 0.244083, -0.289416, -0.861417, 0.297614, -0.868261, 0.122020, -0.106085, 0.018623, -1.082180, -1.642747, 0.811081, 0.234866, -0.067180, -0.553996, 1.602895, 0.747538, 0.299346, 1.356720, -0.386431, -0.039293, -0.496731, -0.255590, -1.123560, -0.650510, -0.650795, -1.063649, -0.215478, -0.676532, 2.112758, 0.568889, -0.682662, -1.789211, 0.526914, -1.885903, -1.231516, -0.929049, -0.839145, -0.305659, 0.362864, -0.140336, -0.555466, 1.150828, -0.002115, 0.640784, -0.367025, 0.365086, -0.358707, 2.868566, 2.837660, -0.162320, -0.779964, 1.670955, -0.512765, 0.386066, -0.220777, 0.278390, 0.556234, -0.852708, 1.064032, 0.131845, 0.335708, -3.166561, -0.094939, -0.106683, -1.019679, -0.065065, -0.087549, 0.165368, 0.642381, 0.888100, 1.388455, 0.506448, -0.261452, 2.180812, 0.334105, 0.935125, 0.018916, -1.284985, -0.612871, 0.181584, 0.575108, -0.855314, -2.471379, -0.735328, 1.129301, -1.127553, -0.432614, -1.112375, -0.980567, -0.877408, -1.185331, 0.385646, -0.470406, 1.998922, 1.550787, 0.192449, -1.433948, -0.069114, 0.492900, 0.862598, -0.616737, -1.135970, 2.375081, -0.059984, 1.459782, 0.418617, -1.053723, -0.584916, 1.427206, 0.353895, 0.358891, -0.216249, -2.002320, -0.699313, 0.880428, -1.882237, -1.312622, -0.295044, -0.537725, 0.283550, 1.139247, -0.660279, 0.536278, -3.170810, 0.048857, 1.062004, -1.229809, 0.561541, 0.065720, 0.665227, -0.766287, 1.114112, 1.236612, -0.290817, -0.957704, 1.304326, 0.849858, -0.212679, -0.832184, -1.035586, 0.228477, -0.200378, -0.122340, -0.182645, 1.115644, -0.440816, -1.823129, -0.745467, -0.645722, 0.590903, -1.514485, -1.391965, -1.841697, 0.875155, 1.276177, 2.152644, 0.684107, -1.539459, -0.911951, -0.119516, -1.217774, 1.515266, -0.863684, 0.593592, -0.514919, -0.410263, -0.549296, 1.425411, -0.169282, 1.148017, 0.410914, 0.406741, 1.707894, 0.375225, 1.572652, 0.866476, 0.004789, 0.552830, 0.065118, -0.176754, -0.440454, -0.640308, -0.436749, -0.252697, -0.332317, 1.201348, 0.107903, 1.792038, -3.274158, 0.750333, -1.506759, 2.618268, -1.248676, -0.141491, 0.877191, 0.514080, -0.165380, 1.550525, -2.908632, -1.051421, 0.878593, 0.041384, 1.314228, -2.015728, -0.244169, 0.566571, 0.201047, 0.020901, -1.015448, 0.781054, -1.337709, 0.121043, -0.138398, 2.351187, -0.384905, 0.008869, -0.818706, -1.377856, -0.146257, -2.092710, -0.153646, -1.014776, 0.739208, -0.270509, 1.120150, -0.328009, 1.010280, -0.963525, -0.785014, 1.135739, 0.870727, -3.178505, 0.996472, -0.029343, -0.971175, -0.702670, -1.902041, 0.599985, -0.096797, -0.583084, 0.726020, 0.856930, 1.178495, -0.286306, 0.742989, -0.284985, 1.536316, -0.171397, -0.057572, -1.511549, 0.147823, -0.023687, 1.879345, -0.704230, -1.450555, -1.108542, 0.295747, 0.819734, -1.537456, 1.019990, 1.466569, 2.083033, -0.549885, -0.896451, -1.078444, -0.509836, 0.640672, -0.281184, 0.886987, -1.296474, 1.278729, -0.018402, -0.314649, -0.572640, -0.765351, 0.462305, 1.378988, 0.741147, -0.813850, 0.353960, 0.253429, -0.790994, -0.196322, -0.980238, 1.093953, 0.951914, 1.094002, -0.436871, 1.620881, -0.115925, -1.079942, 0.664795, 1.525141, -0.024042, 0.006837, -1.452153, 1.166962, 0.541562, -0.152434, 0.028712, 1.242315, 1.324968, -0.555496, -1.129462, 0.878241, -1.046364, -2.105438, -0.114743, 0.694103, 0.312592, 0.101893, -1.369664, 0.373999, 1.629687, -0.169910, -0.247077, -0.778456, 0.283832, 0.674214, 0.321660, 1.486508, 1.387328, -0.380597, -1.191547, 0.026962, 1.032993, -1.044210, 0.672911, -1.174432, -0.798523, -0.154865, 0.290119, 0.816309, 0.287407, -0.707331, 0.663273, 2.229958, 1.819381, -0.238843, -0.800596, 0.250382, 0.174613, 1.394184, -1.011165, 1.831030, -0.199448, 0.373930, 0.079597, -0.156153, 1.948584, -2.309557, -0.499350, -0.380272, 1.550372, 0.566938, -0.784970, 0.840266, 0.802237, 1.034324, -0.951168, -0.151087, 0.521729, -0.160848, -0.098417, -1.941358, -0.852052, -0.513054, 1.574704, -1.931041, -0.576806, 0.620982, 1.923834, 0.442249, 0.048758, -1.171994, -0.018641, 1.177161, 0.749860, 0.304717, -1.281929, -0.981491, -1.673674, 0.075436, 2.060573, 1.588352, 0.224248, 0.908720, 0.648349, 0.917754, 0.712913, -0.727731, -0.281513, -0.236952, 2.066495, 0.839659, -0.084867, -1.344536, -1.276762, -1.844733, 1.164718, -0.414993, 0.269311, -0.388316, 0.341097, -0.074387, -0.992266, -0.516338, 0.846021, 0.109766, -0.229995, -1.422504, -0.733193, -0.170473, 1.472753, 1.210416, 1.107681, 0.077759, -1.064770, 1.143862, -1.366929, 1.362047, 0.580229, -0.932737, 0.119755, -0.238056, -1.601105, 0.928629, 0.708296, 1.233007, -0.490027, -1.536985, -0.165683, 0.477898, 0.494831, 0.738171, 1.702583, -1.009274, -0.340488, -0.017557, 0.110842, -0.822950, 0.855275, 0.174597, 0.495674, -0.056231, -0.181632, 1.068847, 0.312378, 0.868944, -1.295914, -0.379480, 1.407339, -0.962619, 0.786099, -0.156102, -0.648525, 0.830405, -0.345259, 0.777856, -1.412597, -0.848113, -0.960953, -0.461577, -1.029847, 0.432415, 1.743716, 1.190725, 1.268154, -2.553616, 0.583195, 0.719288, 0.019859, -0.245786, -0.277849, 0.134980, 0.327712, 1.535849, 1.322112, -1.625558, 3.074630, 0.378514, -0.900456, -0.658942, -1.291657, -0.384568, -0.024976, -1.985516, 0.667845, -0.198051, -0.641738, 0.286313, 1.213348, -0.364882, -0.845175, -0.085825, -0.909018, -0.796189, -1.846105, -1.029620, 1.686773, -0.288002, -0.456407, 0.229126, -1.012804, 1.256675, 0.395701, 0.334437, 0.373426, 1.752798, -0.332288, -1.175152, 0.125282, 0.609567, -1.460314, 0.868646, -0.141740, 0.755100, 1.958667, -0.756435, -1.349188, -0.345672, 0.789610, 1.683662, 0.390632, 1.546828, -1.073412, 2.021458, 1.050944, -1.338132, -0.518155, 0.444027, 1.820359, 0.167465, -0.329012, 0.785518, 0.900773, 0.417825, 1.815703, 0.311853, 1.441529, 1.700556, -1.423484, -1.373104, -0.980469, -0.303256, 2.071674, 0.248387, 0.033582, 1.127916, -0.906861, 0.643511, -0.100844, -0.250065, -1.165741, 0.941070, -0.072895, 1.609546, 2.089129, 1.503252, -1.138760, 1.022542, -0.665060, 1.591020, -0.802288, 0.723045, -0.690499, -1.689816, -0.243705, -1.210942, 0.259324, -0.418267, -2.126488, 0.396425, -0.617675, 1.079907, 2.122475, 0.293392, -2.595889, 0.369907, 0.441051, -0.187928, -0.326055, -0.219322, -0.971088, -0.151217, 1.278926, 0.220847, -0.677934, 1.100636, -0.345281, 0.418767, -0.966717, 0.348046, 1.376881, 0.381549, -0.339071, 1.217970, -0.998819, -0.598224, -0.346389, -0.029439, 0.590923, 0.533556, 2.042408, 0.032883, 1.132560, 0.766818, 1.299712, -0.934534, -0.178002, -0.026773, -0.859456, -0.790302, 0.253254, -2.049632, 0.300394, -1.250193, -0.321342, -0.572749, -2.804044, 0.372897, 1.441523, -1.456649, -0.145398, 0.403655, -1.302139, -0.323873, 0.034422, -0.359558, -0.258767, -0.269207, 0.033304, -0.489046, -1.988850, -0.901370, 0.881076, -0.364360, -0.445980, -1.085344, 0.347185, 0.644059, -0.691416, 0.617382, 0.287261, 0.940514, -0.604116, 1.026581, -0.371150, 0.336167, -0.361897, -0.079658, 0.915591, -1.702460, 0.857129, -0.706100, 0.267868, -0.172295, 0.445122, -1.952904, -1.252272, -0.085508, -0.553325, 0.374018, 0.222693, -0.471334, -0.717840, -0.884423, -0.628685, -1.102572, -0.100826, -0.633390, 0.002218, -0.890179, 1.437047, 1.182940, 0.796394, 1.408563, 1.635527, -0.146837, 2.552778, 0.617330, 1.544822, 1.892926, -1.118390, -2.215963, -0.023060, 0.111138, 1.516372, -0.606042, -0.449226, -1.944569, -0.458289, -0.179059, 0.656626, -1.054081, -0.909960, 0.107664, 1.842379, -1.018586, -0.119134, 0.705051, -0.195532, 1.658544, 0.788681, -0.152538, 0.492369, -0.293989, -0.521998, -1.616632, 0.479045, 0.877403, 0.645449, 0.378188, 0.759829, -0.063468, -1.933527, 0.457304, 1.080467, -1.573578, -0.699171, 0.420302, -0.328182, 1.447962, -0.828517, 1.064114, -0.542364, 0.290381, -0.538679, -0.466245, 1.199234, -0.273288, -0.967941, 0.659453, 1.968379, -1.417598, -0.136527, 1.184574, -1.074898, 0.214242, 0.290383, -0.206632, 1.582061, -0.384771, 0.788284, 1.450816, 0.451441, -2.061872, 0.940121, 0.576555, 0.336989, -1.127818, -0.163571, -0.517262, 0.420306, -1.206828, 1.039765, 2.896665, -0.598912, 0.439686, -1.166044, -1.357214, 0.049388, -1.494847, -0.889396, 0.955254, 3.130605, 0.991595, 0.701981, -0.886781, 0.548963, 1.486610, 0.820349, 0.462546, 0.162739, 1.030247, -0.249395, -0.443981, 0.400527, -1.249348, -0.204139, 1.501553, -0.710105, -0.180677, 0.761653, -0.123226, 0.705874, -0.536304, 0.296038, 1.341150, -0.083476, 0.444904, 1.502023, -0.313660, 0.213639, -0.060028, 0.791046, -0.313777, 0.015319, -0.089583, -0.166763, 2.203184, 0.639267, 0.221027, 0.079686, 1.154981, 1.232699, -0.538654, -0.772357, -1.974569, -0.505430, -0.129025, 1.895915, 0.424560, 0.428099, -0.133725, -0.885217, 0.203022, -0.589729, 1.784148, -0.381472, 1.232490, 0.047793, 0.429282, 0.517375, -0.018025, -0.118813, 1.050464, -0.120960, 0.580269, 0.330632, -0.528192, -0.893002, 0.353178, -0.061197, 0.540435, 1.016047, 0.513322, -0.378343, -0.471803, -0.573490, -1.760579, -0.852294, 1.015304, -0.797230, -2.240814, -0.934675, 0.452018, 0.539630, 0.755198, 0.054010, -0.628689, 0.676392, 0.908796, -0.737947, -0.173215, -0.154435, 0.061049, -1.820747, -1.069377, 0.333487, 0.768496, -0.467100, -0.735552, 0.674373, -0.621329, -0.118467, 0.181377, 0.119910, -0.523939, 1.098148, 0.912044, 0.413595, -0.550656, 0.174836, 0.984044, 1.052446, 0.901621, -1.784663, 1.402209, 1.525380, -0.689647, 1.202817, -0.272716, 0.697391, -0.958346, -1.232387, -0.391263, -0.531669, -0.874702, -0.111323, 1.586736, 0.541447, 0.112361, 0.002850, -0.640366, 0.110621, -0.892347, 0.651657, 0.622092, -1.197867, 0.171882, 0.955913, -0.420170, 1.076496, 0.031850, -0.483227, 0.130544, -0.259519, 0.892904, 0.745312, -0.623183, -0.194230, -0.848095, -0.730427, 2.440153, 1.313519, 0.313307, -2.304621, -0.114957, 0.038365, 0.230991, -0.221570, -0.051813, -0.968248, -0.382071, -0.185296, -0.916142, 0.764156, 1.207455, 0.110737, -0.697520, 0.004359, 0.497101, -1.246626, 0.776336, -0.971389, 0.900781, 0.545013, 0.221045, -3.624343, -0.179332, 0.416681, 0.714520, 0.410994, 0.485850, -1.827451, -1.734341, 0.395246, -1.177950, -0.011145, -0.116578, -1.290493, -2.975739, 1.029267, 0.165221, 0.215991, 0.166056, 0.186584, -0.419394, -0.990354, 0.914803, 1.207179, 0.633648, -0.463292, -1.601626, -0.012953, -0.114577, 1.629724, 1.697032, -0.842245, 1.901347, 1.172064, 1.655557, -1.022669, -0.252382, -0.217159, -0.243679, -1.881943, 1.437304, -0.073220, -0.171109, 0.178968, -0.465553, -1.169522, -2.048234, 0.660666, 0.016530, -1.399306, 0.079903, -0.395331, -0.606240, -0.717732, 1.035233, 0.578479, -0.766344, 0.291540, 0.828631, -0.264489, 0.252914, 0.839953, -0.914266, -0.939197, -0.086787, -0.174329, -0.899346, 0.226852, 0.952315, 0.042178, 0.919733, 0.893023, 1.232539, 0.092457, 1.005046, -0.610252, 0.923529, 1.004334, 0.917837, 0.075240, 2.234123, -1.893703, -2.066901, -0.624758, 2.226923, 0.123714, 0.557044, 1.287487, 1.768175, -0.225645, -0.512870, 1.710537, 1.232614, -1.126071, -2.332517, -0.867636, 1.429713, -1.425202, 2.742917, 1.561269, 0.701638, 0.207679, -0.467569, 0.083176, -0.998672, -0.563386, 0.229913, -0.811327, 1.042571, -0.472220, 2.402308, 0.173181, -1.338089, -0.385145, -0.847959, -0.715156, -0.631694, 1.531796, 1.614695, 0.176082, -0.189494, 0.674136, 0.012790, -0.646178, -0.023701, 0.708185, -1.934791, 0.064592, 1.265034, -0.199290, -0.644541, -2.007693, 0.380045, 0.483091, -1.903050, 0.780035, 1.473295, -1.773733, -0.773828, -0.076878, 0.037464, 0.684390, 0.847965, -0.297854, -2.373667, 1.096025, -1.019376, 0.183695, -1.261570, -0.969170, -0.265311, 1.463061, 0.091775, -0.394271, 2.185644, 0.176432, -0.883051, 0.538685, 0.430007, 1.328085, 0.070688, -0.158855, -0.556540, -0.809787, -1.169645, 0.823804, 0.259492, -0.570716, -0.278238, 0.649705, -0.286741, -0.513373, 0.991930, -1.117432, -0.518094, 0.779473, 0.374975, -1.663482, 0.946010, -0.587003, 0.826821, -0.604905, -0.606628, 1.373131, -0.942280, 1.070948, 0.202506, -1.152681, -0.424173, -1.606313, 0.279731, -0.316660, 0.629499, -0.136853, 0.903446, -1.553894, -0.333378, 2.138888, 0.403615, -0.702710, 1.018782, 2.481591, -0.184669, 1.198353, -0.623040, -0.381351, 0.506452, 0.721207, 0.516375, -1.011259, -0.242117, 0.776201, -0.370294, -0.518844, -0.514973, 1.091080, 1.669463, 0.385912, -0.411481, -3.000129, 0.195795, 0.901197, 0.478825, -0.158952, 0.608984, -1.523480, -1.077663, -0.553221, 0.990451, -1.360416, -0.684818, -0.193963, -0.736405, 0.524206, -0.014413, 0.482968, -0.535576, -0.515588, 0.055106, -1.915295, 1.780386, -0.216515, 0.408402, 0.747409, -1.107107, 0.504950, 0.813346, -0.084400, 0.980024, -2.523302, 1.185954, -1.412941, 1.958553, -0.471887, 0.935598, 0.226762, -0.823328, -0.381229, -1.545965, 0.239025, -1.339292, -1.204573, -0.038170, 0.162243, 0.284924, 0.160284, -0.075831, -1.204118, 1.950845, -0.027041, 0.502562, -0.233833, 0.228521, -1.324953, 0.641207, 0.440546, -0.616214, -0.981713, -0.189221, 0.155695, -0.435234, 0.425463, -0.475733, 0.356660, 0.599701, -0.514314, -0.268036, -0.539240, 0.207156, 0.207203, -1.093896, 0.773720, -0.624260, 0.960475, 0.351199, 0.699440, -0.229281, 1.198004, 1.792920, 0.842821, -0.761879, -0.676045, -1.111442, 0.747222, 0.755971, 0.589334, 0.794957, 0.006024, -1.026940, -1.240171, -0.304907, -1.389341, 0.744292, -0.513514, -0.130207, 1.222011, 1.379931, 0.116939, -1.799626, 0.631320, -0.205399, -0.539173, 1.766677, 0.076616, -0.900857, 0.685288, 0.844339, -1.400584, -0.302496, 1.957520, -0.247281, 0.443760, -1.317921, -0.272959, 0.941583, -0.579566, -1.597064, -0.122253, 0.887002, -1.851339, -0.841908, 0.473235, 1.037434, 1.445248, 0.743396, 0.395094, 1.225506, 1.662126, 0.316668, -0.798783, -0.772848, -1.142628, 0.819518, -0.564070, -0.870163, -0.991737, 1.391020, -0.457231, 0.614237, 0.019516, 2.037912, 1.358165, 1.281120, 0.427062, -0.265299, 0.620793, -1.141888, 0.685051, 1.018313, -0.281270, 0.207921, 1.894215, -1.636014, 0.414347, -0.541211, -0.817818, 0.674079, 0.868940, -0.428386, 0.658202, 0.262049, -0.301668, 0.146478, -1.107759, 0.708071, -0.049975, 0.184183, -0.932660, -1.709101, -0.309602, 0.101522, 0.360043, 0.763528, -0.700444, -0.183832, -0.069885, 0.201585, 1.075564, -0.458042, -0.350673, 1.389256, -1.479800, 0.682230, 0.289885, 0.703015, 1.683242, -0.147036, -0.828292, 0.984562, 0.477242, 0.485064, 0.112665, 0.622281, 0.492070, -0.263405, 1.163628, 2.010934, -0.506844, 0.695653, 1.263529, 0.366341, -0.936147, 0.015777, 0.133691, 0.311393, 0.069390, 0.495545, -0.837437, 1.649048, -0.167114, 1.328848, -1.609527, 1.558907, 0.277797, 1.925958, -0.386554, -0.381685, 0.047441, -0.293147, -0.587781, 1.382169, 0.304343, -0.658820, 0.439627, -1.144301, 1.420872, -0.927780}, + { 0.292891, -1.708510, -2.185706, -0.244947, -0.821272, 1.450950, 1.424964, -0.431861, -1.383292, -0.716461, 1.974213, -0.894689, -1.719556, -1.356400, 0.231541, -0.966506, 0.083534, 0.242377, -0.191265, -0.197449, 1.660832, -0.311673, 0.313023, 0.351125, -0.925571, -0.193178, 0.025055, -2.324670, 0.107742, -1.632257, -0.297190, 0.291926, 2.664977, -0.664031, -0.569963, -0.408873, -0.460503, 1.598926, 0.868365, -1.450154, 1.005934, 0.375826, -0.670606, 0.637593, 0.332802, 1.373593, -0.475296, -0.819583, 0.977991, 0.735534, -0.966828, 0.148544, 0.024582, 1.390121, -1.102279, -1.688447, -1.119557, 0.650295, 0.639350, -0.312520, -0.507114, -0.779926, 1.957356, 0.567040, 0.146519, 0.783273, 0.818639, -2.491803, -2.004623, -0.529808, 1.483119, -2.366978, -0.249309, 0.287323, 1.506401, -0.792854, -0.397687, -0.917683, -0.316980, -0.599443, 1.357496, -0.301975, -0.111516, -1.229903, 0.169000, 0.046529, -1.357439, 2.156298, 1.600920, 0.405498, 0.443675, -1.054478, 0.377440, -0.396471, -0.497906, 0.869869, -1.064701, -0.513512, 0.964440, 0.421268, 0.323402, -0.111356, -0.265792, 0.769441, 0.335623, -1.308464, 1.009527, 0.145549, 0.929947, 0.357812, -0.814115, -0.209047, 0.787138, 0.300938, 0.633906, -0.431068, -0.047960, -0.515060, -1.067042, -1.460882, -1.047530, -2.632407, 1.237485, -1.945593, -1.211345, 0.132771, -0.536113, 1.009678, 0.085230, 0.753992, -0.583521, -0.460307, 2.059750, 1.285325, 1.032129, -0.269690, 0.257610, -0.158392, 0.280761, 0.682041, 1.159714, 1.618063, -1.309796, 0.956775, 1.018945, -1.336185, 0.464816, -0.561561, -0.831023, 1.262633, 1.327701, 2.373687, 4.542273, -0.097010, -0.556613, 1.112400, 0.738165, 0.742581, -0.564402, -0.011848, 0.171923, -0.719148, -1.576356, -1.121765, 1.115668, 0.737594, -0.938355, -0.435746, 0.190921, 0.658826, 0.303713, -0.730322, -2.438232, 0.114269, 0.078303, 0.958724, -1.934861, -1.423180, 1.351432, -1.647877, -0.331842, 1.111123, -1.560790, 0.065268, -2.271621, -1.275978, 0.779194, 0.933272, -0.017336, -1.952305, 0.283716, -0.739312, -0.530806, -2.005578, -0.161424, -0.371535, 1.898929, -0.527492, 0.463612, -0.655326, 0.218653, -0.406655, -0.559668, 0.790860, 1.301448, -1.465441, 0.403506, -1.223558, 2.100382, -0.829208, -0.502725, 0.151171, -0.778230, -1.695609, 0.294853, 1.518498, -1.350138, 0.775311, -0.329676, -3.415075, -0.219203, 1.971403, 0.075180, -0.369401, -1.542137, -0.530304, -1.474646, 1.582011, -0.917005, 0.538405, 2.114314, -0.124029, 0.477711, 2.336969, -0.396765, -1.123354, 0.039216, 0.112787, -0.139218, -0.944495, -0.763684, 0.997287, 1.417784, -0.345995, -0.423057, 1.397287, 0.376601, 1.267979, 0.745433, -0.854055, 0.164431, 0.566650, 0.773948, -1.213448, 0.919028, -0.003071, 0.302285, -0.363874, -1.382851, 1.801374, -1.493086, 0.558097, 1.105853, 2.173006, -1.676891, -0.299052, 0.538238, 0.201006, 0.723465, 0.977900, -0.182530, -0.005362, 1.795848, -0.182832, -0.493448, 1.452400, 0.064221, -1.466771, -0.126108, -0.107220, -0.994895, -1.085001, -0.026704, -1.339095, 0.963092, 1.384430, -0.246086, -0.797056, -0.454069, 0.027056, -0.603872, 1.452029, 0.030280, -1.217478, 1.798160, -0.712081, -1.012086, 0.923644, 0.164759, 1.287082, 0.347788, -1.712420, -0.173141, 0.401047, -0.406398, 0.034959, -0.680275, -0.206232, -0.613904, 0.649680, -1.152045, -1.048357, -0.193687, 0.852478, -1.478935, 0.208540, 1.292965, 1.498585, 1.795307, 1.266239, 0.568582, -0.403831, -1.284378, -0.338240, -0.632272, 0.410119, -0.371463, -0.140562, -0.419117, 0.005570, -0.760282, 1.208550, 0.646112, -1.974479, -1.757854, -1.413260, 0.002034, -0.921508, -1.019410, -0.091603, 0.310681, -1.665338, 0.553750, 0.545329, -1.001807, 2.265850, 0.963306, -0.438406, -0.117895, -0.607653, 1.448049, -0.041341, -0.565033, 0.592700, -0.557312, -0.321587, 0.423004, 0.701197, -1.261603, 0.462973, -2.714076, 0.554875, 0.359922, -0.739469, -0.805084, -3.426799, 0.847265, 2.208081, 0.789774, 2.150444, 0.624629, -1.038113, -0.413425, 2.454882, 2.626144, -1.102012, -0.950069, 0.030648, 1.271111, 1.061401, -1.165392, -2.327266, 1.014271, 0.475691, -0.625056, 1.027901, -0.475552, 0.031236, 1.309724, 0.736699, 0.218125, 0.541387, -0.677458, -0.307832, -0.486233, -1.526194, -1.661415, -0.944457, 0.644331, 2.167019, 0.215784, 0.601616, -0.430486, 0.818222, -1.794037, 0.982718, 0.291569, -2.085956, -0.386507, 0.056042, 0.785065, -0.369807, -0.300279, 1.382001, 1.241396, 0.226918, -0.534698, 0.281058, 0.790899, 0.704463, 1.104488, 0.206228, -0.115892, 1.362966, 2.040797, 0.930832, -0.499394, 1.308533, 0.038474, -0.481727, 1.271917, 0.093185, 1.027524, -1.058642, 1.453905, -0.119899, 0.282057, -0.797613, -0.613116, 0.598727, -1.978262, 1.581403, 1.768274, -1.371727, 0.596770, 0.483326, 1.248562, -2.072330, 0.345192, -1.130156, -0.413975, 0.308699, -0.999458, 2.000450, -0.727893, -0.799304, -1.748235, 0.342308, 0.572691, 1.094910, -0.131486, 0.391579, 0.856615, -0.379866, 0.709835, 2.301630, -0.295983, 0.366237, 0.095394, -0.943021, 0.072385, -0.692351, -0.491897, -1.942546, -0.209199, -0.976951, 0.703390, 0.882315, -0.140885, 0.971320, 1.046713, -1.833827, -0.848040, -0.902475, 1.206739, -0.186708, -0.513700, -0.636293, 2.189780, 0.099314, 1.396261, 0.999723, 1.206330, 0.201980, -0.236837, 0.551101, 0.020832, -1.287175, -0.012679, -1.168575, 0.952123, 1.187614, 0.174262, -1.833502, -0.788792, 0.284911, -0.923546, -0.701950, 0.579197, -1.288502, -0.934693, -0.531277, -0.550297, 0.424981, -0.481678, -0.568877, 0.165475, -0.398001, -0.655614, -0.660530, -0.722770, 0.104100, -1.557982, -1.216011, 0.578792, -1.123166, -0.152202, -0.610867, -0.235874, 1.436928, 0.664378, -0.069716, 1.190115, -1.484155, 0.055556, 0.776146, 1.890962, 2.352409, -0.996553, 2.278443, -0.186201, -0.685986, 1.368316, -0.555180, -1.442758, 0.050701, 0.189587, 1.115584, 0.712029, 0.383487, -0.474714, -0.819532, 0.553201, -1.006239, -0.470012, -0.794397, 0.592416, 2.015376, 0.563762, -0.525463, -1.046815, 0.415018, 1.023756, -1.226087, -0.715211, -0.457262, -1.475429, 2.053750, -0.817486, -0.144130, -1.408412, 0.312953, -0.045965, -0.742768, -0.592396, -0.498212, -1.161338, -1.123862, 0.868017, -0.387588, -1.149278, -0.098976, -0.538908, -0.275223, -0.673831, -0.236932, 0.522214, 1.862571, -0.724714, 0.113470, -0.030180, 0.867167, 0.615528, -1.491319, -1.245311, -1.653809, -0.112606, -0.309782, -0.473697, -0.819074, -0.448935, 0.030836, -1.095170, 0.165387, -0.503660, 0.866712, -0.346152, -0.314465, -0.677123, -0.177118, 1.267335, -0.212055, -0.268177, -0.576133, 0.959965, 0.608411, 0.252166, -0.227027, 0.455450, -0.163730, -0.945263, -0.564231, -1.475780, 0.120220, -0.554524, 0.060990, 2.423817, -0.213706, 0.001410, -0.711890, -0.680973, -0.383531, -0.290049, -0.507651, -0.031594, 0.905885, -1.816476, -0.468269, 0.796781, 0.322228, -0.528841, -0.723818, 1.211553, 1.105538, -1.433756, -0.644082, 0.647983, -1.180568, -0.752597, -0.704020, -0.505185, 0.885326, 0.005479, -0.550318, 0.615822, -0.873853, 1.142081, 1.184152, 0.103964, 1.647361, 0.967744, 0.673536, -0.536562, 0.056784, -2.077467, -1.919048, 1.252205, -0.718282, 1.116761, -0.242194, 1.143201, -0.026847, 0.608832, 0.708688, 0.079831, 0.134089, 0.930380, -0.729393, 0.367778, -1.318354, 1.522532, 0.085972, 1.593959, -1.981243, -1.378361, 0.286758, 0.762529, 0.939118, -0.244318, -0.451555, -1.183896, 0.107928, 0.533478, -0.840499, 0.133740, -1.422853, -0.343426, 0.597483, -0.107674, 0.321853, 0.546763, -0.114930, 1.183602, 1.846683, -1.481568, -1.713139, -3.027448, 1.102476, 0.065993, 0.029244, 0.775203, -0.562777, 0.868315, 1.638600, -1.509365, 1.186059, 0.303477, 0.109088, -0.152322, 0.866439, -0.117734, 0.640226, 2.034814, -0.601030, -1.161561, 0.304143, 0.969342, -0.643773, -0.408139, 0.760046, -1.843315, 0.162190, 0.477456, -1.710225, -0.604101, -0.194816, -0.678343, 2.378602, 0.442871, 0.590240, 1.190987, 0.387996, -0.652592, -0.349694, 0.269263, -0.257546, 0.489823, -0.005972, -0.523285, 0.461713, 0.983745, 0.966786, -1.214870, -0.449246, -0.158108, -1.027027, 0.905758, 0.485926, 0.311863, -0.954620, -0.370001, -0.983756, 1.309037, -0.993112, -1.464900, -0.453496, -2.169531, 2.327251, 0.766307, -0.365884, -2.178003, 0.042199, 0.228299, 1.827621, 0.205068, 0.928119, -1.129028, 0.215187, -0.667648, 0.544146, -0.642307, -1.216451, 0.282151, 0.417768, 0.095059, -0.581879, 0.840889, -0.420691, 1.167246, -0.645507, 1.426113, 0.933374, 0.865025, 0.166366, -0.188546, 0.959291, -0.056122, -0.008197, -1.415343, -0.548600, -0.943413, -0.807224, 0.233624, -1.630257, -1.002499, -1.024861, 0.396569, -0.302054, 0.021819, -1.061831, -0.471147, -2.242388, 0.194980, 0.174102, -1.419076, -1.179402, 0.649922, -1.579208, -0.460712, 0.367351, 1.100219, 0.520826, -1.114273, -1.879597, -0.530805, -0.831654, 0.631768, 2.452335, 1.131999, -1.081673, -1.136642, -1.465356, 1.305989, 0.789847, 0.042800, 0.076241, 1.658439, -0.647155, -0.896072, 0.481696, 1.797639, 0.159411, -0.248198, -1.460728, -0.404525, -1.654078, 0.924408, 1.771791, 0.476497, -0.491226, -0.720338, -1.234394, 0.202733, -2.122692, -1.149185, 0.056084, -0.517622, 0.752513, -0.225029, -0.269667, -1.196974, -0.218352, 1.093614, 0.208290, -2.412891, -0.397495, 1.140108, 1.019041, -0.478599, 0.294369, 0.419145, -0.760007, 0.592244, 0.151055, 0.755161, -2.210251, 1.506074, 0.305659, 0.331512, 1.957274, 0.769484, -0.872395, -0.340453, -0.484196, 0.430044, -0.374944, -0.064067, -0.484668, 1.451902, 0.290851, 0.345923, 0.408974, -1.741815, -0.977260, 1.117456, -0.851607, 0.013538, 0.361242, -0.049036, -0.836200, -1.665353, -0.655521, -0.486741, -0.961460, -0.867219, -1.151246, 1.509381, 0.241365, -1.168545, 0.120289, 0.723778, 0.265600, -1.524131, 0.359123, 1.800541, 0.296537, 0.779271, -0.543676, 1.626263, 0.497753, 0.534732, -0.432103, 0.636541, 0.593076, 0.413430, -0.493843, -0.099982, 0.467438, -0.593307, 1.405572, 0.607467, -1.963034, -0.210452, 0.091405, -1.174371, 1.468553, -0.268140, -1.708917, -0.723537, -2.672091, -0.733406, -1.562848, -0.925071, -0.116377, 0.973578, -1.873076, 0.606714, 0.939712, 0.876750, -0.895680, 0.043429, 1.002743, 1.204138, 1.141840, 1.552457, 0.516442, -1.020007, -0.064621, 0.626035, -1.588657, 0.686750, -1.730330, -0.769423, 1.731730, -0.298637, -0.818697, 0.644770, 1.986733, 1.005610, 0.444123, 0.217915, 0.534630, 0.347506, -0.252165, -0.419583, -0.231749, -0.454531, 0.217733, 0.019112, 0.820521, -1.840944, -0.333867, 0.662126, -0.593705, 1.470261, 0.470701, -0.160169, -0.792550, 0.312170, -0.617706, -0.217511, 0.056290, 0.417560, -0.738338, -1.057764, -0.678686, -0.511943, 0.087805, -1.178904, -0.020077, -0.735312, 2.225171, 0.800270, 0.307776, -0.867212, -1.096273, 0.326317, 0.557982, -0.679935, -0.191818, 0.175686, -1.618904, -0.590567, -0.570022, 0.781748, 0.462327, -0.040145, -0.855343, -0.115104, 0.041352, -0.382528, -1.040630, -0.754828, 1.059888, 1.446273, -2.367270, -0.393964, 1.498215, 0.949906, -1.220955, -1.028000, -0.646646, 0.597771, -1.376758, 2.454723, 0.547693, -0.644849, -0.266013, -1.838894, 0.593752, -0.462218, 1.172756, -2.429083, -1.188214, 0.680437, -0.962133, -0.182934, 0.995955, 0.785354, -0.182547, 0.997651, 1.069256, -1.853381, -1.233168, -0.086025, -1.636772, 2.082049, 1.851984, 1.205178, 0.451759, 0.889009, 0.999693, -0.248210, 1.156428, 1.004071, 1.532621, 0.079613, 0.445009, -1.388159, 0.520110, -0.819688, 1.848428, -1.377076, 1.085867, -0.141614, 0.861770, 0.276234, 0.035827, 1.225758, 0.684828, 1.369979, -0.410746, -0.820309, -0.377636, -0.423588, 0.595391, -1.244304, -0.390997, 0.778996, -1.181772, 0.299752, -0.354254, 0.125417, -0.625872, -1.942388, 0.825644, -0.059739, -0.513850, 0.616186, -0.580190, 1.449074, -0.495146, -0.127389, -1.154311, -0.067258, 1.918328, 0.588570, 1.920000, -1.576218, 1.528751, -1.122871, -0.134969, -0.946113, 0.089608, -1.008826, -0.221527, -0.143156, -0.100505, 0.446338, 0.169057, 1.698623, 1.607382, 0.188724, 1.018286, 0.905217, -0.102444, 0.475338, 0.193732, 1.070050, -0.063235, 0.435163, -0.417609, -1.132598, -1.638451, 0.048354, 0.495399, -0.425564, 0.595727, 0.606261, 0.475582, -0.847307, 0.389538, -0.885340, -0.389737, 0.611642, 1.989955, 0.228534, 0.282527, 0.208047, -0.338404, -0.477009, 0.123264, -0.511459, 0.634120, -0.609135, 1.334642, 2.303862, -1.827268, 0.043426, 0.304302, -1.076522, -0.034358, 0.643726, 0.186605, -0.361674, -0.387850, -0.196510, -3.149267, -1.358457, -1.089782, -0.776390, 0.519703, 1.502051, -2.449704, -1.217901, 0.622746, -0.046500, 0.561773, -0.721465, 0.417034, -0.146263, 0.255638, 0.343702, 0.162747, 1.131130, 0.547638, 0.686442, -1.400053, 0.611963, 0.041466, 0.625173, -0.287345, 0.764026, 0.499103, -0.848533, 2.211276, 0.318991, 0.369081, -0.419225, 0.461029, 0.673602, 0.190658, -0.626521, 0.955305, 0.829342, -1.397739, -0.032750, -1.406936, 0.803207, -0.557970, 0.175772, -0.794910, 1.165292, 1.091059, 0.380290, 2.041073, 1.646045, 1.178117, -2.504400, 0.332805, -0.694430, 0.105917, -0.774951, -1.343382, -0.100343, -2.266622, -0.623679, 0.254797, -1.548932, 2.874456, -1.521962, 0.131839, 1.147142, -0.138694, 0.032951, -1.226551, -1.464446, 1.581435, 1.407592, 0.603723, 0.853720, 0.399882, -1.098830, -1.262822, 0.311992, -0.454619, 0.048546, -0.403091, 0.479674, 1.122055, -0.863642, -0.572461, 0.307126, 0.134515, -1.134196, -0.697220, 1.503836, -0.612185, -0.134003, 0.851509, -0.426730, 0.518561, -0.692058, -0.254887, -0.442444, -2.284838, -1.922591, -1.090347, 0.265984, 1.055776, 0.247543, -0.035070, 0.697355, -1.213801, 0.701310, 0.651835, -0.124529, 0.508516, 0.862556, -0.741192, 2.027012, -1.202887, 2.278743, 0.107991, -2.065218, -0.301215, 0.255792, -0.305803, -0.591421, 0.437408, 0.755406, -0.651447, -0.786370, -0.446447, 0.689408, -0.914871, 1.561946, -1.494240, 1.000568, 0.156876, 3.194226, -0.252239, -1.588185, -0.142343, -0.903314, 0.303029, 0.809735, 2.731235, 1.064802, 1.342311, -0.890441, 1.049239, -1.544716, 0.609665, -2.905241, 1.280152, 1.009786, -0.211146, 0.432507, 0.109842, -0.196329, 0.650985, 0.411019, 1.910696, 0.489661, 0.914273, 0.305095, 0.131587, -0.639844, -1.057865, -0.415362, 0.763949, -1.743765, -0.887085, -1.587725, 0.803191, -1.211341, 0.415068, 0.681620, -0.248724, -1.734414, 0.061383, -0.150479, -0.791074, -1.264693, 1.038573, -0.654671, -2.685874, 0.286722, -0.986716, 1.278460, -0.263806, -1.095659, 0.710411, -0.436489, 0.346448, -0.846777, -0.403399, -0.136516, 0.610977, 2.001507, 2.172742, 0.212230, 0.655414, -0.475522, 0.491290, 0.985538, 1.673805, -0.552468, -1.057271, -0.756938, -0.276423, -0.122831, 0.063485, -3.406634, 0.056409, 0.500615, 0.296047, -0.893557, -0.470523, 0.265109, 0.051965, 1.235011, 0.133661, 0.644713, -0.340267, -1.117079, 0.020120, 0.093797, -0.439721, -0.612145, 0.766791, 0.245905, -0.015878, 0.474079, -1.062378, -1.446133, -0.353047, 0.077878, 2.559675, -1.040980, -1.128039, -1.611361, 0.386166, -1.455491, 0.648884, 1.013590, -0.666501, 0.747269, -0.789928, 0.271830, -0.177431, 2.176266, -0.714339, -1.270784, -1.934228, -0.788925, 1.342962, 1.440324, -1.150443, -0.209699, -0.180819, -0.242046, -0.695413, -0.408575, -0.386395, 0.561054, 0.937899, 0.387918, 1.350737, -1.682938, -0.131034, 0.162744, -0.669833, -0.260482, -1.658021, 0.501010, -1.059402, -1.902739, 0.600738, 0.510977, -0.960409, -2.073417, 0.526822, -0.161208, -0.218772, 1.431358, -0.133447, 2.009278, 2.163928, 0.428371, 1.429709, 0.487019, 1.312181, 0.139452, -1.344984, -0.753194, -0.601805, 0.952805, -1.213544, -0.735502, 0.222692, 0.503392, 0.591962, 0.220531, 0.067417, 0.009803, 0.033539, -1.374292, 0.786708, 0.314891, 1.504740, -1.166156, -0.717198, 0.819826, 0.071165, -1.149643, 0.864733, -0.810493, -0.077067, -1.190500, -0.601995, 0.297059, 1.709856, 0.513614, 0.685256, -0.886553, 0.590667, 0.781852, 1.515978, 0.541267, 0.972015, 0.515594, -0.755665, -1.196803, 0.129995, -0.280775, -0.886776, 2.097949, 0.263299, 1.317637, 1.840404, 0.984385, -1.069731, -1.216292, -0.886254, 0.271411, 0.694655, -1.284353, -0.758446, 2.365119, -0.573235, -0.657749, 1.394524, 0.254811, 0.659707, -0.896089, 0.412251, 0.201681, -0.870381, 0.672244, -0.029943, 0.637134, 0.256491, -0.420665, -0.956037, 0.234495, 0.969257, -0.537339, -0.738158, -0.312571, 0.058444, -0.657838, 0.413471, -0.320519, -0.059049, -2.792986, 1.537826, -0.752734, 0.886925, -0.330531, -2.573396, 1.461152, -1.668271, -0.540423, 0.512467, -0.488480, -0.314196, -0.167764, 0.185336, 0.747084, 1.717574, 0.066471, 0.615602, -0.717860, 0.459512, 0.328669, -0.116149, -0.221468, 0.408906, -0.143066, -0.767844, 0.938640, -0.321025, -1.378388, -0.234962, 1.094633, -0.868932, 2.986082, -1.126683, 0.734696, -0.402107, -1.252201, -1.532368, -0.664881, 1.087629, 0.448883, -1.888391, 1.375879, -0.516788, 0.172639, -0.009919, 1.044257, 0.022091, -0.859001, -1.243192, -0.647605, 0.446667, -0.338769, 0.988514, -1.210149, -0.330996, -0.533625, -1.863738, 0.190243, 1.692262, -1.524095, -0.566387, 0.620357, 1.142895, -1.699816, 0.288415, -0.056193, -1.227904, -0.219258, 0.623016, 0.846967, -0.259036, -0.081195, -0.308153, -1.394274, 0.934198, -0.545730, -0.161737, 0.638075, -0.049673, 1.265629, -0.598267, -1.390629, -1.036259, -1.067406, 0.123528, 0.305077, 0.856855, -0.897730, -0.960500, 1.943170, -1.833273, -1.636155, 0.912541, -1.169834, -0.651926, 0.950193, -0.896680, 1.220830, 0.834673, 1.222897, 2.003617, -0.532680, -0.137615, -0.546514, 0.075600, -1.336629, 0.983891, -0.364252, -0.089601, 1.253298, 0.254480, -0.471829, 0.867606, 1.176369, 0.062034, 1.178102, -0.525081, 1.161275, -0.193067, 0.139609, 2.463785, 1.461310, 0.766934, 2.281673, 1.209999, 0.519513, 0.068587, 0.097167, -0.108971, 0.207804, 1.257828, 0.774688, -0.381719, -0.269692, -0.720154, -0.781548, -0.903291, 0.555728, -0.552487, -0.352502, 1.527233, -0.753100, 0.269822, -0.851738, 1.662200, 0.644648, 1.797857, -0.549966, 1.246007, -1.445524, -0.299174, -0.925746, -1.467359, 0.041498, -0.519567, -0.323140, -1.069878, 1.555201, -0.502747, 1.765482, -1.828932, -1.256124, 1.881498, -1.290076, -0.514382, -0.990444, 1.528788, -1.345397, -2.085680, 0.546039, -0.997838, 0.420786, 1.091363, -1.921797, 1.417968, -1.588256, -0.349233, -1.880143, 0.609446, 0.183582, -0.277156, 0.501461, 1.545049, -0.754368, 0.242740, -0.393583, -0.006779, 0.859682, -0.008279, 1.328433, -0.226712, 0.256763, 0.763203, -0.585298, -0.600372, 0.608268, -0.224290, -0.075229, -0.944613, -1.421874, -0.220666, 0.347021, -1.926725, 0.872041, 0.439350, -0.300862, -0.262054, 2.043514, -0.448024, 0.052036, -0.377657, -0.577341, 0.252018, 0.234727, -0.031186, -0.869760, -0.766313, -2.689955, -0.218688, -0.450176, -1.216507, -0.045255, -0.266067, -0.626529, 0.480286, 0.748951, 0.491928, 1.459725, -1.750205, -1.251004, -1.203791, 0.321140, -0.299866, -2.022978, 1.052269, 1.147653, -1.040212, -1.489554, -0.367603, 1.223913, 1.129208, 0.435260, -1.644381, 1.047900, -0.632342, -0.286455, -2.216182, -0.501942, -0.649034, 0.270376, -0.239904, -1.695754, 0.863139, -0.215888, 0.498591, -0.807422, -0.619186, -0.352490, -0.987165, 0.922463, 0.630104, 0.155820, 0.712317, -2.025440, 0.739338, -0.827246, -0.877744, 0.333282, 0.093306, -0.353306, -0.573530, -1.720615, 0.164724, 0.277571, -1.539407, 0.696843, -1.314282, 1.279053, 2.097290, 0.329142, 0.860229, 0.171302, -1.209728, -0.065187, 1.025886, -0.994287, 0.364668, -0.851759, 1.422363, 1.255699, -1.245092, -0.836066, -0.075105, -0.186672, -2.514777, 1.378517, 0.512229, 2.281718, 0.005549, 1.252450, -1.458085, -0.535434, -1.911853, 0.818133, 1.546728, -0.629296, -1.448725, -1.028722, 0.370583, 0.630838, -0.662629, -1.851900, 0.278069, 1.609316, -0.278265, -0.423641, -0.771315, -0.233973, 1.117934, 0.723387, -0.442049, -0.469074, 1.741392, -1.077910, 0.278056, -0.384259, -0.026249, -0.610386, 0.979903, -0.030335, 1.789018, 2.301672, 0.414716, 0.491515, 0.858355, 1.432340, -2.232933, -0.963937, 0.764947, -0.081959, 0.734473, 0.871468, -0.901378, 0.113705, 0.759349, -2.049533, -0.195830, -0.264110, -0.215689, 0.453122, 0.713367, 1.182610, 1.142626, -1.766239, -0.340621, -0.629056, 0.622529, -1.480955, -0.563009, 0.475270, -1.613631, -0.832101, 0.013527, -1.105328, -1.753744, 1.104966, 1.055996, 0.624471, -0.427321, -0.008244, 1.360452, -0.038796, -1.834075, 0.735670, -0.125000, -0.216410, -0.601347, 1.004473, 1.165247, -1.688021, 0.811148, 0.906928, -0.922489, -1.562956, 0.908931, 0.316262, -1.135446, -0.081845, -0.321890, -0.462137, -0.308414, 0.191668, -0.229555, -1.248932, -0.389092, 0.727887, -1.090106, -0.145516, 1.049549, 0.374020, 1.151163, -0.504337, -1.112494, -0.450709, 0.987908, 0.576634, 0.307261, 0.129751, -0.108852, 1.563658, -1.571587, -0.234733, -0.519843, -0.793486, 1.354939, 1.461516, -1.112439, 0.924630, -0.076241, -0.665127, 0.885971, 1.368419, 0.862948, 0.060260, -0.820589, -0.321140, -0.192278, -0.616737, -0.774871, -1.585511, -1.034324, 1.178423, -0.465963, -0.926429, 0.842551, -0.639459, 1.311219, 0.576606, 1.643043, -0.932883, -1.403570, -0.332349, 0.722983, -0.865942, -1.071464, -0.072637, -0.220877, -0.161178, 0.144614, 0.941853, 0.776319, -0.972007, 0.721637, -0.536685, 0.137130, 0.015957, -0.760158, -0.212186, 0.441671, -0.196893, -0.292674, -1.033663, 1.574584, -1.936772, 0.077969, 1.389032, -0.734494, 0.810573, -0.782792, 2.121448, 0.486889, -0.981116, 1.450077, -1.331966, -0.404402, -0.270852, 1.152673, -1.875978, -0.340984, 0.470770, 0.016166, 0.326169, 1.503670, -0.178025, 1.045433, -0.843477, -1.352006, -1.027982, 0.791837, 1.460205, -0.831909, -0.644491, -0.320261, 1.320606, 0.950770, 0.556535, 0.295401, -1.306557, 0.422963, 0.123349, 0.503248, -0.744786, 0.486533, -2.408756, -0.614059, -1.272639, -0.154480, -0.243890, 1.063763, 1.465359, 0.554328, -0.746714, -2.018773, 0.237961, -0.392855, -0.797780, -0.484219, 0.853947, 2.007815, 1.459001, -1.731505, -0.423916, -2.136174, 0.047897, 0.560132, 1.690631, 2.392580, 0.549979, -0.333159, 0.152302, 0.524191, 0.699575, -0.922877, -0.368055, -0.698793, 0.214048, 1.026225, 0.977724, -0.476521, -0.850956, -0.312651, -0.363223, -0.049452, -0.799464, 1.108645, -0.335565, 1.339667, -0.621804, 2.614281, 0.373765, 0.307237, -1.778127, -0.203879, -1.504643, 0.652233, 1.033645, -0.152112, 0.477987, -1.046903, -0.558052, 0.970424, 0.545387, -1.861901, 0.250406, -0.260694, -0.589204, 0.656227, -0.107706, -0.039342, -0.053218, 0.153837, -2.135235, 0.602633, -1.993757, -1.052201, -0.036309, -0.651222, 0.061159, -0.492028, 0.700293, 1.410145, -0.465270, 1.123876, -1.209428, -1.693274, -1.699338, -0.882237, -0.149133, 0.834647, -1.018124, 0.822442, 1.003223, 0.245477, 0.593216, -0.607539, -0.236567, 1.727665, 0.784726, -1.500339, 1.546760, -0.498538, -1.562123, 1.501674, -1.648893, 0.715318, 0.743820, 0.376845, -0.522694, 0.759597, -0.825380, -0.608655, 0.050804, -2.316278, 2.008482, 2.394639, 0.109615, -0.993553, -0.053334, -1.049782, 0.769240, -0.700958, 0.300825, 1.492070, 0.283139, -0.846569, -0.950123, -0.914549, 0.232677, 0.712320, -1.799841, -0.331977, -0.912701, 0.821955, 0.935060, -2.244362, -0.115074, 0.435303, 0.526526, -0.162080, -0.086235, 1.172745, 0.904955, -0.095507, 0.813715, -1.288053, -0.763342, 0.363022, 0.965670, -1.281185, 0.317115, -0.416058, -0.898607, 0.922693, -1.696935, 0.217736, -0.228798, 0.248914, -0.751413, 0.133102, 0.908114, 1.528758, 1.147066, -0.957855, 0.132555, 0.093994, -0.262816, 0.976301, -1.537189, 0.424576, 0.304050, 1.880432, 2.122470, -0.812044, 0.514938, -1.749113, 0.309892, 1.862914, 0.836823, 1.110028, 1.015239, -0.588796, -1.747168, 1.251882, 2.337649, 1.198727, -0.694477, 0.390293, 0.722892, 0.261920, 0.549463, 0.576119, 0.599389, 1.344038, -0.879712, 1.393368, -0.780667, 1.195700, -0.246208, 0.719912, -0.007648, 1.961045, -1.453336, -0.002449, -0.141741, 0.427325, -2.422113, 0.695441, 2.022704, 0.017737, -0.596918, 0.155318, -0.858020, -0.520189, -1.453613, 0.816655, -0.593158, -0.844048, 0.358683, 1.632988, -1.399397, -1.344688, -0.917759, -0.030035, 0.234188, 1.358806, -0.101600, -0.474973, 0.369328, 1.646710, 0.121548, 1.602458, 0.780981, -0.593549, 0.417278, -2.432728, 0.249042, 0.660860, -0.345129, -0.760740, 1.199562, 1.023778, 0.529702, -0.183113, 0.623992, 0.794430, 2.513446, -0.012140, -0.662494, 0.246767, 0.311046, -1.491785, 1.067445, -0.938982, -0.831476, 0.919879, -0.853041, -0.764526, -0.351859, 0.311569, 0.738344, -0.028153, 0.539080, 0.779188, 0.964853, -1.733557, 0.682349, 0.388291, 1.695299, 0.760431, 0.173611, -0.273504, 0.244218, -0.345069, -0.105760, -0.984397, 0.209721, -0.203139, -0.677633, -1.332104, 0.814355, 0.378778, -1.209317, -0.487814, 0.339988, -0.475619, -1.345430, 1.914988, -0.571983, 0.277617, 0.639979, -0.046215, -1.771259, -0.154392, 1.341459, -1.466065, -1.013458, -0.281309, 0.309099, -0.214550, 0.084995, 0.491035, -0.531771, -0.450929, -1.461833, 0.219309, 0.773946, -0.467971, -0.641384, 0.310318, 0.540565, -2.837778, 1.528794, 0.307575, -1.057888, 0.635492, 0.451333, -0.322562, 1.752682, 0.974493, -1.201776, -0.405035, -1.488871, 0.300513, -2.175068, 0.955324, -2.212816, -1.864128, -0.857669, 0.940579, -0.630297, -1.123194, -0.651623, 0.629504, 0.520490, 0.110960, 0.572056, 0.577275, 1.597715, -1.006731, -2.229998, -0.761004, 2.592788, 0.836680, 0.307343, -0.201454, -0.206884, 0.429721, -2.511901, 0.963045, -0.660989, 0.169770, -0.883397, -0.108154, 0.903001, 0.222154, 2.461946, 0.322017, -1.059526, -0.376265, 0.742527, -0.827880, -0.278785, -2.317195, 0.637021, 0.022313, 0.641768, 0.421516, 0.499739, 0.522512, -0.086299, 0.058879, -0.215715, 0.290025, 0.499986, 0.619287, -0.829891, -1.387232, 0.347831, -0.095727, 0.640363, 0.024536, 0.626070, -1.131388, -0.510303, -0.753886, 0.917931, 1.644192, -0.231398, 0.446463, -0.506301, -0.096248, 0.388652, 0.286085, -0.429816, -0.597529, 1.362114, 1.021289, 0.965536, 0.849185, -0.899132, -1.131406, -0.216204, -0.825323, -1.056397, -0.473163, 1.462392, 1.551040, 1.251491, -0.088721, 0.701875, 0.709237, -0.637144, -0.195304, 1.949687, 0.996440, -0.111126, 0.016823, 0.623643, 0.844338, 2.228092, 0.611183, 0.644143, -0.230474, 1.764777, 0.784049, 1.328226, 0.964108, -1.940537, -0.430083, -0.382930, 1.268362, 0.250581, 0.924466, 0.420056, -1.198357, -0.581462, -0.184268, 0.207480, 0.637975, -2.098031, -1.343645, 0.395007, 1.135976, 1.579757, -1.502006, 0.337460, -1.034233, 0.216000, 0.776910, 1.052276, -2.708989, -1.037782, -0.139173, -1.382878, 0.895287, -0.016969, -0.744158, 0.052344, -1.415435, -0.635015, 0.497164, -1.186337, -1.922488, 1.289869, -1.855075, 0.909266, -0.245163, -1.540543, -0.122026, 0.656166, 0.633519, 1.043577, -1.132829, 0.497291, -0.222675, -0.143908, 1.135145, 0.197856, -1.297522, -0.662142, -0.879106, 0.201731, -0.323394, -1.486506, -1.170497, -0.903873, 0.262275, 0.106676, 0.344558, 0.274238, -1.682186, 0.483856, 2.086176, -0.318197, -1.650790, 0.158982, 0.013069, -0.447818, 0.865378, -0.260138, 0.362155, -1.190720, 0.084464, -1.095194, -0.373772, 1.029437, -0.130929, 1.509885, -0.221927, -0.442260, 0.924319, 0.846035, 0.424969, 1.427361, -0.475618, 0.000885, -0.230159, 0.045590, 1.162345, 1.985336, -0.841627, -0.426462, -0.678987, -0.948554, 0.417560, -0.086297, 2.054386, -0.535873, -0.244189, 1.089798, 1.488903, 0.095581, 1.405582, 0.959342, 0.412968, -0.865895, 0.502475, 0.759015, -0.053159, 1.474974, 3.311616, -2.726684, 0.201715, -0.776050, -0.654310, 0.922350, -0.732019, -0.243712, -0.918842, 0.407679, -0.172024, 1.252879, -0.700771, 2.686821, -1.067172, 0.365555, -0.391219, -0.300030, -0.578497, -1.978502, -0.776273, -0.625032, -1.051527, -0.399244, 0.710774, -0.562948, -0.223699, 0.492573, 1.007358, 0.972846, -1.387209, 0.582019, -1.426677, -0.008003, 0.265598, 0.552070, 0.777388, 0.818219, -0.136261, 0.039044, 0.246083, 1.091513, 0.778749, 0.633168, 0.109980, -0.013590, 0.897413, -0.463689, -0.896730, -0.036204, 0.032072, 0.997550, 0.055774, 0.232243, -1.368917, -1.291377, 0.784231, -0.574608, 0.746839, -0.066957, -1.259130, 0.031658, 1.024423, -1.309216, 0.044281, -0.522100, -0.537462, 0.200850, -0.233059, -0.410379, 1.988236, -0.199114, -2.977719, -0.556046, -0.932151, 0.857484, -1.064307, -0.300298, -0.525847, 0.968885, -0.269495, 1.587986, 1.478272, 0.099931, 1.095847, -0.447675, -0.630767, -0.014909, -0.404349, 0.092116, -1.904968, 1.620780, 0.685424, 0.166678, -1.116913, 1.176257, 0.955548, -0.005178, -0.889623, 1.759122, 0.098328, -2.833148, -0.843227, -1.122339, 0.372779, 2.148740, 0.148913, -2.040244, -1.440733, -2.519475, -0.819943, -0.801535, -2.454587, -0.123305, -0.974747, 1.020552, 1.183795, 0.963816, 0.211812, -0.717252, -0.977562, 0.258807, 0.050002, 0.538316, 1.429791, -0.708449, 0.378926, -0.905112, -0.148238, 0.425067, 0.144572, 1.625686, 0.796075, 0.640701, -0.705840, 1.034225, -0.299034, 0.590012, -0.861962, 0.641564, -1.355265, 0.086982, 0.607299, -1.406732, -0.071551, -0.646230, -2.016154, -0.228500, 0.135832, -0.893615, 0.980445, 0.667505, 1.059190, 1.273170, 0.923153, 0.233411, 0.705158, 0.681301, -0.639919, -0.680036, -0.845177, 2.011084, -1.515560, -1.787846, 1.719361, 1.001815, -1.299586, 0.204942, 0.900031, 0.796488, -0.498832, -0.912853, 0.414596, 0.389513, -0.385443, 0.736788, -0.181731, 1.634039, 0.514451, -0.300646, -0.132658, -0.421377, -1.448779, 2.394668, -0.960910, -0.529001, -0.655801, 1.013660, 0.103203, 2.503516, -0.041665, 0.070174, 0.502330, 1.330866, 0.326154, -3.084213, -0.461131, 0.576619, -1.394261, -0.616433, 0.155895, -1.259295, -0.458393, -0.537426, -0.156774, 0.066851, 2.088616, -0.448071, 0.222122, -1.649537, 0.907412, 1.730049, 1.451952, 1.402704, 1.228492, 1.188904, 1.755113, 0.071429, 0.869794, 1.189267, 0.856337, 1.923983, 0.855815, 0.326022, 1.167820, 0.010653, -0.397656, 0.698905, 0.258567, 0.003295, -1.432642, 0.810588, 1.081931, -0.202994, 1.039256, 1.166966, -0.521562, -2.195156, 0.338812, 0.435148, -0.129992, 0.667046, 0.917094, -0.022450, -1.697108, -1.048027, 0.449520, -1.876792, -1.001283, 0.710211, -0.763948, 0.491031, -0.338711, 1.397417, 0.237465, -2.064210, 0.740985, -0.517271, -2.677195, 0.437818, -1.215550, -1.539046, 1.286696, -0.870245, -1.476366, -1.034659, -0.087172, 0.034080, 0.513004, 1.121356, -0.927337, -0.690235, 0.186683, -0.723085, 0.368796, -1.374483, 0.741311, 0.137899, -0.693621, 1.293474, 1.113973, 0.725431, -0.513985, -0.386443, 0.322043, 0.261640, 0.887429, 1.252439, -2.384531, -0.040552, 1.336827, 0.641073, 2.312727, 2.210737, -0.104167, -1.625606, -0.453935, 0.611962, -0.836001, 0.847648, -0.692852, 0.065729, 0.502129, 1.794014, -0.603319, 1.993123, 1.125630, -1.480434, 0.678249, 1.059124, 1.125257, -0.012855, 0.330655, 1.537045, -0.890942, 1.340598, -0.658356, 0.593778, 1.176481, 1.247908, -0.786720, -2.270212, 1.765034, 1.028400, 0.456530, -1.584285, 1.720204, -1.113021, -0.302439, 1.228953, -1.397177, 0.977870, 0.239450, -1.525943, -1.123345, -0.658571, -0.988388, -0.248297, 0.146819, -0.318589, 1.350987, 0.239436, -0.742782, 0.233791, -1.043852, -0.105036, -0.632381, -0.515999, -0.918480, 0.357263, 0.604040, 0.240700, 2.000727, 0.115686, 1.306229, -0.255383, -0.642580, -0.860596, -0.926360, -1.364598, 2.063289, -0.267165, 0.367679, -1.777664, -0.826145, -0.069895, -0.167629, 0.207241, -1.065631, 1.309244, -0.617902, 1.454542, 0.153149, -0.036952, 1.227826, 1.243757, 1.261898, -0.066420, 0.476860, 0.155793, -0.358413, -0.064075, -0.908484, -0.293375, 0.536978, -0.392840, -0.789004, -1.823451, -0.980039, -0.356630, -0.122844, -0.955951, -0.048716, 1.080556, 0.437407, -0.720724, -0.379348, -0.255609, -0.962648, -1.698318, -0.677181, 0.779339, 0.945545, 1.508962, 0.498305, -0.900018, 0.074643, 0.313226, -0.577610, 0.128087, -0.971260, 0.712669, -1.011854, 0.703006, 0.457057, 1.455630, -0.145059, -0.389027, -0.530551, 0.217589, 0.142119, 2.125057, 0.566416, 1.359129, 1.166560, 0.110256, 2.295379, -0.667212, -0.561118, -1.343902, -2.398419, -0.728303, 0.108555, -0.611231, -0.029871, 2.319218, 0.068388, -0.996810, 0.829313, 0.823211, 1.255286, -0.107265, -0.166906, 1.591236, -0.630983, 0.646015, 0.076722, 0.054033, -3.119606, -0.389339, -1.723783, 0.630847, 2.791872, 1.028374, 0.523483, 1.315657, 1.991441, 0.383832, -0.307406, -1.206428, 0.065238, 0.640835, -1.728876, -1.836075, -1.003828, -0.589259, -0.745668, -0.355166, 1.269328, -1.036189, -0.141874, -1.332710, -0.403485, 0.385235, 0.963984, 0.003028, -1.178468, -0.609446, -1.105644, -1.372298, -1.101461, -1.390052, -0.308819, 1.102935, 0.179133, 0.830299, 0.496424, -0.090244, 0.517730, -0.428464, -1.391725, 1.220459, 0.550446, -0.036274, 0.209970}, + { -0.873797, -0.848738, 0.434394, 0.165952, -0.101749, -1.035490, -0.313941, 1.901035, -0.700648, -0.075471, -0.845506, -1.490779, -0.059166, -0.216956, 0.965000, -2.053168, 1.183160, -0.124705, -0.073124, -0.964602, -1.012523, 0.175003, -0.593043, 0.837658, -0.948471, -1.660789, 0.364952, -0.619076, -0.205556, 1.231340, -0.032919, -0.623376, 2.630106, 1.001652, -0.541699, 0.510936, -0.844868, 0.333981, 0.590360, 1.539893, 0.121047, -0.326439, -1.142898, 0.100881, 0.001682, 0.226457, 0.455227, -2.178535, -1.930263, -1.940689, -0.535355, 2.456134, -0.842179, -1.431153, -0.341559, 0.826787, -0.870120, -0.224147, -0.630461, 1.170811, 0.061555, 0.332346, 0.344112, 0.467991, -1.455549, 0.901558, 0.609355, 0.004234, 0.045178, -0.775070, -0.056467, -0.186505, 0.102892, -0.162622, -0.107156, -0.855904, 0.212941, -0.592138, 2.223728, 0.567127, -1.973265, 2.420116, -0.155879, 0.123229, 1.717498, -0.907038, 0.156527, 1.441655, 0.738692, 0.514639, -0.253390, 0.309961, 0.525147, 1.214306, 0.966114, -0.212056, -0.028691, -0.959778, 1.220209, -0.392920, -0.583386, 0.549408, 0.567118, -0.388875, 0.510404, 1.207088, 1.067818, 2.785378, 0.119904, -0.309696, 0.085133, 1.613665, -0.213364, 2.088050, -1.747495, 0.512213, -0.739886, 1.429557, 1.183244, 0.359349, 0.699110, -0.229758, 0.394552, 0.850096, 1.506585, -0.150035, -0.664259, 0.077857, -0.115529, -0.198777, -0.324835, 0.440172, -0.410794, 0.064644, 2.482541, 0.663723, -1.026647, -0.753733, 0.606273, 1.908399, 2.288875, -2.382905, 0.185754, -1.359612, 0.526965, -0.336724, -0.301072, -0.192350, -0.911742, -0.914910, -2.069892, 0.448750, 2.022995, 0.292217, 0.689663, 0.857953, 0.857013, 0.496406, 0.330190, -0.334918, -1.269139, -1.219388, -1.287231, 0.126139, 0.248839, -0.006057, 0.286530, 0.283814, -0.029719, 2.597322, -0.232601, 0.035984, 0.453491, 0.259375, 1.594944, 0.299652, 1.063329, -0.428121, 0.883773, 1.323527, 1.469233, 1.079023, 1.544922, -0.796412, 0.317603, 0.594706, 1.502108, 0.713799, 1.263587, -0.051119, 1.575659, -0.559676, 1.466976, 1.303368, 0.794425, -0.056557, 0.437781, 1.135189, -0.171401, -0.503153, -0.258255, 0.282217, -0.229790, -0.443361, -0.133894, -1.271598, -1.086809, 1.053922, 0.362512, 1.625527, -1.131755, -0.154455, 0.215111, 0.157766, -0.339994, -0.134817, -0.163873, 0.070482, 0.822340, 0.501798, 1.239665, -0.178244, 0.194652, 1.483102, -0.376957, 0.165967, 0.348799, -0.184718, -0.123104, -0.004752, 0.349809, 0.808950, 1.053163, -1.154732, 0.397341, -1.790398, 1.952309, 1.133645, -0.549162, -0.380406, -0.249190, 0.542042, 2.855514, -0.419409, 0.691657, 1.575807, -0.110361, 0.263098, 0.032790, 1.337082, -1.250040, 0.763334, -1.417936, 0.787585, 0.012291, -0.114913, -0.870507, 0.763329, -0.397274, 0.591245, -0.537081, 1.551406, -0.536766, -0.740443, 0.586634, -0.971348, -1.399864, -0.398851, -0.730361, -0.006105, 0.126774, -0.945285, 1.812753, -0.850067, -1.243495, -1.297913, -0.222988, 0.534580, 0.825200, 1.004085, 0.887223, 1.258721, 0.404682, -0.341614, -0.728742, -1.276063, -1.446142, -0.308469, 0.522140, -0.706649, 0.385457, -1.652104, 0.377075, -0.587679, -0.060075, 0.435365, 0.636048, -1.143908, -0.051553, 1.598327, -0.177369, -0.519292, -0.888987, -1.278914, 1.128265, 1.716922, 0.322868, 0.615016, 0.255010, 0.929196, -0.587114, -0.093149, 0.670374, 0.013461, -1.869998, 0.879745, 0.165750, 0.410311, 0.617640, -0.098478, -0.043505, 2.344395, 1.043987, -0.188261, 0.381790, 0.042312, -1.256711, 0.370431, 1.242003, -0.689607, 1.101824, -0.694310, 0.494667, -0.819248, -0.591947, -1.423812, -0.368861, -0.260623, 0.692585, -0.014712, 0.321562, -1.137205, -1.942794, 0.173974, 1.239827, -0.255088, 0.515221, 1.069920, -0.179254, -0.624410, 0.998396, 0.463096, -1.133941, 0.200623, 0.982487, -1.282192, 0.531911, -0.150898, 1.157475, 0.737805, -0.138015, -0.038034, -2.561984, 1.240103, 1.580067, 1.360010, 0.274650, -0.419968, 0.258068, -0.019160, 0.284717, -2.363257, 1.246648, -0.068826, -0.189712, 0.301607, -0.430255, -1.701566, -1.662705, 0.336265, 1.188985, -0.277080, 0.038711, 1.753275, -0.354583, -0.030541, -0.635535, -1.350001, -0.453627, 0.485518, -0.310117, -1.991418, -1.394487, -1.204275, 1.385730, 1.532049, -0.743426, 1.726983, 1.107863, -0.855946, -0.961546, -0.495941, -0.735220, 0.434227, 0.100410, -1.540966, -0.993406, 0.162378, 0.485831, -0.807926, 0.786809, -0.013933, -0.182386, -1.773660, -0.409443, -0.300064, -1.691005, -0.700845, 1.251145, -0.515880, 3.084770, -0.196229, 1.341347, 0.695394, -0.392186, -1.540710, -0.785667, 0.029593, 0.518960, -0.179704, 0.086364, 0.228524, 1.096202, -1.575037, -0.534947, 0.325853, 0.882455, -0.051859, 1.480205, 0.590740, -1.057869, 0.001325, 0.270726, 1.132633, -0.782542, 0.312935, 0.896330, 0.507983, -0.365484, -0.712971, 3.394018, -2.490313, -1.125502, 0.206467, 1.599721, 0.657169, -0.283679, 1.124174, -2.348284, 1.158276, -0.729405, 1.331504, 0.728637, -0.010471, 0.853176, -0.540158, 0.710491, -0.648670, -1.261007, 0.659760, -1.602068, 0.385471, 1.236530, -0.373931, -1.216723, 0.782166, 0.518858, 0.741126, 1.181222, -0.452245, -0.310623, -1.592700, -0.840693, -0.190214, -0.913470, 0.343869, -1.387528, -2.146013, -0.244781, -0.831834, -0.837137, 0.244755, 2.495455, -1.153015, 1.277186, -0.971267, 0.588025, -1.154546, 0.336293, 0.926829, 1.499895, 1.330487, 0.631662, 0.131026, -1.181064, 0.394847, -0.757980, 0.679984, -0.890153, 0.533177, -1.126614, -0.925741, 0.253237, 0.810413, 0.449212, 0.714676, 0.255307, 0.330430, 0.954011, 0.548512, 0.848720, 1.380340, -0.641731, 0.287658, 0.502756, 1.067452, 1.856128, 0.385449, 0.763073, 0.279837, -1.192479, 1.987592, 2.017749, -0.596425, 0.702303, 1.582034, 0.259425, 1.140055, 0.230562, 0.741972, 0.074263, 0.458920, 0.199115, 1.359564, -0.839329, -2.541946, -0.491798, 0.371719, 1.352471, -1.210687, 0.491899, -0.475649, 0.507362, -0.791749, 0.517009, -0.384639, -1.172105, -1.063940, 0.921971, 0.444174, 1.094059, 0.287988, -1.274336, 1.197093, 0.114402, -0.392596, -0.334581, 0.742851, 0.230382, -1.044681, -0.260198, -1.060002, 0.161679, -1.366182, 1.715493, 0.209306, 1.106504, -1.441134, 1.291332, 1.787589, -1.581039, -1.660450, 0.856094, 0.173957, 1.193662, -0.010061, -1.120459, -0.234718, -0.649268, -0.587739, -1.134397, 1.177334, -0.167345, -0.857602, -1.271244, 0.274089, 0.694503, -0.852496, 1.864025, -1.209389, -1.311375, 1.830360, -1.357040, 0.234062, -2.102948, 1.517784, -0.943160, 1.044338, -0.350490, 2.443066, 1.127010, -1.708234, 1.092864, 0.236638, -2.241469, 0.971953, 0.949029, -1.333067, -0.687228, 0.603503, 0.878563, -0.973861, 0.838152, -1.061702, -0.198305, 1.495856, -0.649506, 0.272413, 0.521770, -0.132953, -0.037420, 0.106475, -0.344337, 0.492315, 0.446872, -2.509764, -0.670762, -0.960145, -0.816795, -0.053331, -1.027300, 1.226148, -0.033900, 2.407965, -0.221452, 1.425465, -1.311877, 0.013489, 0.008113, -0.191251, 2.021773, -3.252783, 1.689220, -1.509074, -0.916271, 0.623727, 1.759822, 0.701114, 0.231413, 1.493022, 0.053286, 0.194039, 1.398027, 1.552581, -1.376504, 0.588012, -0.956358, 3.370157, -1.695171, 1.505114, -0.276534, -0.484877, -0.974936, -0.570646, 0.780547, 0.365633, -1.182399, 1.681789, 3.150536, -1.725887, 1.237103, 0.383390, -0.462370, 1.023093, 1.177954, 0.082964, -0.684876, -0.939594, -0.162199, -0.418712, -1.879254, 0.320162, -2.534414, 1.286754, 0.486903, 0.199877, 2.164792, 1.028128, -0.485419, -0.596682, 1.829474, -0.985803, -0.179419, -0.466334, -0.067507, 0.013825, 1.129545, 1.016373, 0.237486, -0.015376, 0.120091, -0.069139, -0.409013, -0.222964, 0.354003, -0.469577, -1.378805, -0.463160, -0.193178, -1.071038, 0.935398, -0.468805, -0.565995, 1.398633, -0.682929, -1.204336, 0.394559, -0.448119, 2.308041, -1.190700, -2.944988, 0.503053, -0.861273, 1.403163, -1.010805, 0.062732, 0.931844, 0.701437, -0.312693, 0.835784, -1.129111, 0.414414, -0.001500, -0.908178, 1.339091, 1.351958, 1.430699, 0.872436, -1.369176, 0.460138, 1.954497, -0.434556, 1.318717, 0.158252, -0.553733, 0.567646, -2.140976, 0.427230, -0.587030, -0.065860, 0.340750, 0.793745, 0.026856, 0.932550, 0.574330, 1.644600, 0.056040, 2.007151, -0.868476, 1.326848, -0.577642, 1.320018, -0.026505, -0.936118, -1.411375, -1.504570, 0.027733, -2.179797, 1.987123, -0.363308, 0.034969, -0.154959, -0.672077, -1.134341, 0.653236, -0.377601, -0.231364, 2.208291, -1.377131, 0.375767, -0.867021, -1.167802, -0.510440, 1.779801, -0.548639, -0.062339, -0.371849, -1.968101, 2.398468, -1.447563, 1.790997, 0.017191, 0.028676, 0.024980, -0.623947, -1.332594, 0.118911, 0.493238, 0.152728, -2.150569, -0.439688, -1.828365, 2.434748, 1.759992, -0.310606, -0.013625, 1.051821, -0.827251, 0.326990, 0.589416, -0.096940, 0.338640, 1.035044, 1.343994, -0.331351, 2.242577, -1.399551, 2.062928, -1.202526, -0.481986, 0.371684, -0.408488, 1.638926, 0.356934, 0.290026, 1.014995, -0.480828, -0.059920, 0.469033, 0.818101, -1.861719, -0.427206, -1.553181, -0.111263, -1.027036, -0.273159, -0.293965, 1.437975, -1.677643, 1.511291, -0.464462, 0.083231, 1.444706, -0.690580, 1.430769, -0.107777, 0.290893, -1.815149, -0.360414, 0.844302, -0.638143, -0.056138, -0.127960, -0.699033, 0.494976, -0.217468, 0.931234, 0.748696, -0.236775, 1.116828, -0.909744, -0.041435, -0.260521, 0.927551, -1.006051, -0.731290, -0.867307, 1.167866, -1.071291, 1.119445, -0.163502, 1.031572, -0.553013, -0.062647, 0.677530, 1.237563, 1.131280, -0.829031, -0.313977, 0.744128, 1.602186, 0.740259, 0.273573, 0.110629, 0.803115, -1.319286, 0.537474, 0.343758, 0.750090, -0.225904, -1.282854, -0.244730, -1.796310, -0.042886, -1.348148, 0.726813, 0.780839, -1.283072, 0.898169, 1.196588, -0.528897, -0.426531, 0.095184, 0.282711, -0.267767, 1.532729, 1.115751, -0.145530, 1.657048, 0.429187, -0.080514, 0.122684, 0.684693, 0.789753, -1.426426, -0.189109, -0.688439, 1.737359, -3.321473, -0.441590, 0.155393, 0.945181, -0.122142, 0.151183, -1.243692, 0.658338, -0.739791, 0.479664, -0.867412, -0.647682, -1.436106, 0.097294, -0.762940, -1.316606, 0.929163, 0.294908, -0.150324, -1.508457, -0.574610, -0.507425, 2.037915, -0.985695, -0.572796, 1.252800, 0.977083, 0.329874, -0.276343, -0.343509, 1.197196, 0.186276, -2.006528, 1.563665, 1.140794, -0.866908, -0.161542, 1.071668, 1.752032, 0.583046, -0.253452, -1.027896, 0.099582, -0.507812, -1.285015, 0.363874, -1.059797, 0.702654, -0.325248, 0.490160, -0.659730, 0.780183, -0.216917, -0.245822, 0.689520, 0.025683, 0.711573, -1.346126, -0.555475, 0.012099, -1.599186, 0.469211, -0.120177, -1.124876, -0.861453, -0.292163, 1.975580, -2.214300, 0.855478, -1.891435, -0.679762, 0.610162, -0.352326, 1.538534, 0.588692, -1.623438, 0.250309, 0.933469, 0.328425, -1.483896, -1.599679, -0.351933, 0.151970, 0.117031, -0.649682, -0.131687, -0.779215, 1.688697, -0.918232, 1.200791, -0.151135, 0.099577, -1.721239, 1.901751, 0.181824, 1.044146, 0.434374, -0.519283, 0.608095, 1.933566, 1.488835, -1.741835, -0.937609, -0.018013, 1.345228, 0.273830, -1.149869, 1.121986, -1.263159, 0.477750, -0.092138, -1.863020, 0.496620, 1.065773, -0.503982, 0.388646, 2.007415, -1.375215, -0.184766, 0.910255, 0.056525, 1.144221, -0.057490, -1.091968, 0.492871, 0.968269, 0.324450, -0.669989, -0.537623, -0.045442, 2.118505, -1.169907, 0.137405, 0.104216, -1.343479, -0.134893, -0.448355, 1.556915, -0.892209, 0.073962, -0.311453, 0.948830, 0.220449, 0.056991, -0.682761, 0.393614, -0.735674, 1.198820, 0.945771, -1.015016, 0.837880, -0.736158, -0.279484, -1.033231, -0.774380, -0.225892, -0.117209, -0.803421, -0.216841, -0.372019, 1.668499, -0.303796, 0.199436, 0.602118, 1.160118, 0.132227, -0.966832, -0.248106, 0.682929, 1.887359, -0.485334, -0.435572, 0.926605, 1.921098, -0.456458, -1.021343, -1.167305, -0.217193, -0.296922, 0.598713, 0.135461, -0.851969, -2.482450, 0.719498, 1.871426, 0.447754, -0.729774, -0.064988, -1.305964, 0.142061, -0.417794, -0.958928, -0.554571, 0.913503, 0.056664, 0.758304, 0.407414, -0.799513, 1.865229, 0.137471, -0.935868, 0.499112, 0.840425, 0.200003, 0.212648, -0.282735, 1.887994, -0.956180, 1.131944, -0.882155, -0.934613, 1.165504, 1.199214, 0.679276, -1.120585, 0.602116, -1.896793, -1.706442, -0.703670, -0.947852, -0.840680, -0.234873, 1.326432, -0.153049, 0.201148, 0.787004, 1.347252, 0.499391, -0.057229, 1.624402, 0.987720, -0.414107, 0.012290, 0.004895, -0.752822, 0.711551, -0.557629, -0.810728, -1.731287, 0.195009, 0.629647, -1.200022, 0.311762, 0.508083, 0.567836, -0.641662, -0.928611, 0.545434, -0.948312, 0.207666, -0.850181, 2.400131, 0.134273, 0.074509, -0.686494, 0.277727, 1.153168, 1.032671, 0.987121, 0.678164, -0.977768, -0.052123, -1.717382, -0.509175, -0.463965, 0.652137, 1.443825, 0.640481, -2.073364, -0.619372, -0.735560, -0.851541, -2.002999, 1.286310, 0.034971, 0.150300, -1.160925, -1.258954, 0.422683, 0.427521, -0.679861, -0.454075, -0.197073, -0.635795, 0.784844, 1.820831, 0.945207, -0.384067, 2.049506, 2.184735, -0.329881, -0.854281, -0.113531, 0.659425, 0.777964, 1.120278, 0.246555, -0.748567, 0.694933, -0.033036, 0.472583, 0.353728, -0.683101, -0.053967, 0.832413, 1.176380, 2.500025, -0.058649, -2.196164, 0.082696, -1.409087, 0.794452, 0.729199, 0.803465, -1.026470, -0.857664, -0.886748, 0.782177, 0.523280, -0.379187, 0.772289, 0.324344, -0.266541, 2.075259, -0.752601, 1.725607, 1.632782, -1.057611, -1.094484, 0.898664, 1.329297, -0.724967, 0.295164, -0.780565, 1.676351, -1.121012, 0.777508, -1.112347, 0.181298, 1.917919, 0.392110, 1.008776, -1.475828, 0.701189, -1.211434, 0.998752, 0.106608, 0.409920, 0.341130, 0.290987, 1.876673, 0.529106, 0.040157, -0.570756, -0.074173, -1.214770, 0.615687, 1.121859, -0.907450, -0.568124, -0.424018, 1.042878, -0.975851, -0.550150, 1.892082, 0.720620, -1.169587, 2.019148, 0.440019, 0.073882, 0.884144, 0.918236, 0.327920, 0.658107, -0.303924, -0.383038, 2.123507, -1.153664, 0.560738, -0.419070, 2.195846, -0.120590, -0.617304, 0.196093, -1.322234, -0.956740, -0.035418, -0.068704, 0.886061, 1.812267, 0.716877, -0.484067, -1.702875, -2.159582, 0.615750, -0.857899, 0.719776, 1.226220, 0.308468, -1.369228, -0.690921, -0.446609, 0.855350, 0.456788, 1.420410, -0.420214, 1.412506, -1.570202, 1.082759, 0.365710, -1.007448, 1.037896, 0.769644, 0.536410, -1.276756, -1.274338, 0.612264, -0.629952, -0.504407, -0.199097, -0.481339, 1.450813, -0.409533, -0.188472, -0.631239, 0.862969, -0.098147, -0.964330, 1.252065, -0.093279, 0.137864, -1.199482, -1.788731, 0.769994, -0.400072, -1.830476, -1.394949, -1.278353, -0.563996, 0.618985, -0.062313, 0.296633, -0.040673, -0.136020, -0.328873, 0.041308, -0.059497, -1.289437, -0.204424, -1.230821, -0.593215, -0.055707, -1.353388, -1.085863, -0.361064, -0.836223, -1.297228, 0.227810, -0.662086, 1.700719, -0.150082, -1.231130, 1.889481, -0.309077, -1.080283, -0.877697, 0.450691, -2.065777, 0.473671, -1.005220, -0.685562, -0.209055, -0.297017, 1.234457, 0.599300, -0.207727, 0.408132, -0.888000, 0.809001, -0.258091, 1.156533, 0.562945, 0.423880, -0.206558, 0.236992, 0.708378, -1.079169, 0.786600, -1.449186, -0.616572, -0.340739, -0.521175, 0.488493, -1.822978, 0.262799, -0.251985, -0.534117, -0.753024, 0.859978, 0.462873, 2.527222, 0.227939, 3.183127, -1.767398, -0.837983, 0.326343, 0.784119, 0.222906, 1.294762, -0.445501, -0.071532, -0.423394, -0.046706, -0.347847, -0.298138, -0.079034, 0.403114, -0.145433, -1.924442, 0.106588, -1.465761, 1.869713, 0.549044, -2.200667, -1.284504, 0.828727, -0.189690, -0.621107, 0.128566, 1.462825, -1.125143, 0.122825, 0.666666, 1.579664, -2.042778, -0.735023, 0.883986, -0.966238, 0.281108, -1.446397, -0.223070, -0.707126, 2.315877, -0.092012, -1.102111, -1.108305, -1.030284, 1.539808, 0.455301, -0.356866, -0.598221, 0.956522, -1.436536, -1.484100, -0.004964, -0.200254, 0.666967, -0.116351, -0.086557, 1.248488, -0.494315, -1.005199, 0.472840, 1.267421, 1.562253, -0.693598, -0.550248, 0.216879, -1.292486, 0.247419, 0.237888, -2.072490, -0.139263, 0.407916, 0.689437, 0.590112, -0.463972, -0.068615, -0.178135, 0.253229, -0.451894, -1.941185, -1.022730, 0.973522, -0.966210, -0.948426, -1.234626, -1.155081, 0.743852, 0.956592, -0.547490, 1.782894, 1.317237, 0.477779, -0.919065, -0.321530, -1.749841, -1.050047, 0.266870, 0.499318, 0.154896, 1.397807, -1.208349, -1.314981, -0.111247, -0.716556, -0.545996, -1.147961, 0.927733, 1.395322, -1.108331, -0.390796, 0.538215, 0.532420, 0.197091, 0.366025, 1.122880, 0.355584, -1.520536, -1.471314, 0.102963, -0.739418, -0.152815, 0.625759, -0.477605, -0.543125, -0.533872, -1.256792, -2.013792, -1.821953, -1.129859, -0.698191, 0.222712, -0.350098, 1.535496, -0.652162, -0.921907, 0.157317, 0.491219, -1.133797, -0.251725, 0.770432, 0.069771, -1.747186, 2.412967, -1.034829, -0.444732, -0.981540, -0.224378, -0.911424, 1.578627, -0.767356, 0.335464, 1.712580, -2.346518, -0.361063, 0.126530, -0.726743, 0.778664, -0.022063, 1.452461, -0.194446, -0.726396, -1.224825, -1.057556, -1.125874, 0.722100, -0.871614, -0.020428, 0.324345, 0.268552, 0.832808, 0.319075, 0.431505, -0.800401, -0.038801, -2.086641, 0.649966, 1.235451, -4.070897, -1.339530, 1.289486, -0.722219, 0.565223, 1.034162, 1.303374, -0.990778, -0.414443, -0.746867, -2.194612, 0.711904, -1.192039, 0.514182, 0.143451, -0.766785, -0.255545, 0.928006, -1.898451, 0.714790, 1.152362, -1.035173, 0.315182, 0.243698, 0.901493, 0.248293, 0.168933, -0.423861, -0.978658, 0.691964, -0.798738, 0.154340, -0.175135, 1.116433, 1.405095, 0.679093, -1.813615, 1.019598, -0.870041, 0.794375, -0.738155, 0.696922, 1.056967, 0.434083, -2.276902, 0.821846, -0.917113, -0.744667, -0.806971, 1.013628, 0.509641, 1.162024, -0.655226, 1.574152, 0.690670, 0.742796, 0.178534, 0.818483, -0.313130, -0.221297, -1.424399, -0.745591, 0.707514, 0.970455, -0.014214, 0.156618, -1.155821, 1.255942, 3.028221, -0.489321, 0.050097, -0.152184, 1.291576, -0.459446, 0.708037, 0.475632, -0.316036, 0.458191, 0.745359, 1.435928, -0.338627, 1.819806, -0.761714, 0.747827, 0.367706, 0.266772, 0.344456, -0.901315, 0.576411, -0.387344, 0.014081, -0.322828, 0.685115, 0.776365, 1.589674, -0.268129, -1.650495, 0.848776, 0.413434, -0.768873, -1.680851, 0.997750, 0.942062, 1.376000, -0.345001, 0.892045, -0.758244, 1.953168, -1.764911, -0.679837, 0.424989, 0.991842, -2.356953, -0.813163, 1.398479, 0.378674, 0.504555, 1.506965, -0.413046, -0.442354, -0.867619, 0.076633, 0.602498, -0.341242, -0.320856, 1.622438, 0.126537, 0.514419, -1.166277, 0.875710, 0.077184, -1.256653, -1.438137, 2.148986, 0.335838, 0.835136, -1.388356, 1.474581, -0.197286, 0.482615, 0.996656, -1.405659, -1.418190, 0.749739, -0.867667, 0.485051, 0.456310, 0.831420, -0.668103, -0.568000, -0.330922, -1.074203, -0.774532, -0.643523, -0.102030, -0.806592, -0.770076, 2.659268, 1.016761, -0.571417, -0.311601, -0.885764, -0.296915, -0.288180, 1.147856, -1.023605, 0.031077, 1.436114, -1.375351, -0.433529, -0.039206, 0.038817, -0.304904, -2.759342, 0.371967, 0.723791, 1.044183, 0.367574, -0.355216, 1.785020, 0.031121, 0.075485, 1.493547, 0.213006, 0.294329, 0.829292, -0.406182, 0.372803, 0.527657, 0.016925, -0.739515, -0.989221, -0.722495, 1.819109, -0.896739, -0.659261, 0.100044, 0.451640, -0.308397, -0.223542, 1.298188, 0.968934, 0.037445, 1.430147, 0.416938, -0.079124, 2.172876, -0.421029, -0.663412, 0.067004, 1.032880, 0.280201, -0.241083, -1.814517, -0.125518, 0.770768, -0.958126, -0.325494, 1.666037, -0.369086, 0.515020, -0.160673, -0.162137, -0.346009, 0.433268, -0.857580, -0.373611, -0.586818, -1.405049, -0.563264, 0.351220, 2.014155, -1.868559, -0.911191, -0.029116, 0.020609, 0.663296, 0.249491, 0.315867, -1.744432, 0.941553, -0.789900, -0.051125, -1.083393, -0.961400, 1.331433, 1.483558, -0.423383, 2.454194, 1.514235, 0.376916, -1.131882, -0.895033, 1.956283, -0.309296, 0.004177, -0.422090, -1.001029, -1.235326, -1.575620, 0.553659, 0.619426, -0.432587, -1.210699, -0.562986, 0.937443, 0.495339, -1.617236, -0.675779, 1.006997, -0.897973, -1.865404, 0.254398, 1.652028, 0.003558, 0.445099, 1.600728, 1.887262, 0.337496, 0.028757, -0.438310, -0.518615, 0.189860, 0.225079, 0.475631, -0.616208, -2.361126, 1.381669, 2.546078, -1.069124, 1.203774, 0.064036, -0.177754, 0.187311, 0.292041, -1.980481, 0.569163, 1.275161, 0.229022, -0.434644, -0.186941, -0.806234, 0.457997, -0.345218, -0.650751, -0.262977, 0.549816, -0.235493, -1.573061, 0.274166, -0.045476, 0.104714, -1.065665, -2.423514, 0.362955, -0.199590, 0.168000, -0.158713, 1.103296, -0.878555, -0.496114, 0.822615, -0.084075, 0.658370, 0.567438, -0.230872, -1.978313, -0.093761, 0.123903, 0.555242, -1.062465, 0.848796, -1.509971, 0.461129, -0.658232, -0.559032, 1.128587, 0.636297, -1.425189, -0.067258, -0.845536, -0.415927, -1.578033, -1.620856, -0.324745, -0.891440, -2.679261, -0.817751, -1.106844, -1.082666, 0.275680, 1.100832, 0.252276, -0.336593, 0.814005, 0.637513, 0.794632, 0.206239, -0.040442, -0.818978, -0.366419, -0.109293, 0.368692, 0.876775, 1.090275, -0.389706, -2.402212, 0.984706, 0.700412, -0.661401, -0.441826, -1.419492, -1.409017, 0.560914, 1.029681, -0.602908, -0.982583, 0.263798, -1.025388, -0.780952, 1.625930, -0.073587, 0.885151, -1.980669, 2.042013, 0.842933, -0.390833, -0.601025, 0.807707, 1.254403, -1.052967, -0.365726, -0.694004, -1.081829, -0.479693, -0.609262, 0.744993, 0.882722, 0.926648, 1.249139, -0.253078, 0.457072, -0.383332, 1.265803, -0.172052, -0.365335, -1.200692, -0.057059, 1.577216, -0.958708, 2.119287, -0.002816, -0.211187, 1.230592, 1.087342, -0.127134, -0.490526, -1.253417, -0.097866, -3.023724, 1.004901, 1.301354, -0.286095, 1.543983, 0.421830, -0.326886, -0.017270, 0.766024, 1.246374, 0.257410, -0.644069, 0.832286, -0.149492, -0.175627, 1.709921, 1.261924, -0.713043, 0.827875, 2.204624, -0.456179, 0.290482, -1.062459, 0.090632, -0.100989, -0.518460, -0.075443, -0.004797, -0.184420, 0.194285, -1.157088, 2.513550, -0.894272, -1.771312, 0.124259, 0.005337, -0.027383, -1.438518, -0.633817, -0.635977, -0.780004, -0.835784, 0.240183, -1.122456, 1.110533, -0.551751, 0.387411, 0.920062, 0.051877, -0.154550, 1.371476, -0.750778, 0.051156, 0.699646, -0.143831, 1.361109, 0.011445, 1.288524, 0.897092, -0.168982, 0.672107, 0.434787, -0.495754, -0.587873, -0.202011, -0.872038, 0.147401, 1.562312, -0.128341, -2.550588, 1.082401, 1.406234, -0.017021, 2.685938, -1.381512, -1.386910, 0.115679, -0.957897, 0.047144, -0.084572, -1.183553, -2.155967, 0.748992, -0.394829, 1.378111, 0.181634, 1.443300, 0.984785, -1.698986, -1.787799, 0.480374, -1.247162, -1.450890, 0.010151, 1.331369, -1.185209, 1.567533, 0.176878, 0.006673, 1.509334, 0.656064, -0.208520, 0.790275, 1.287370, -0.988057, 1.352323, -0.965644, -0.226695, -0.747641, 1.267734, 1.194362, -0.937150, 0.746607, -0.066101, -0.018767, -0.559041, -0.092517, 0.267197, -0.251746, -1.465711, -0.751503, -0.102418, 0.376199, -0.935842, 0.297394, 0.061692, -0.409963, 0.348228, 0.939848, -0.416218, 0.543367, 2.159775, -0.183789, -1.399992, -1.619005, -0.266010, 0.225379, -1.257629, -0.534396, 0.911954, -0.914061, -0.486434, -0.459721, 0.407377, 0.156536, 0.246381, 0.712111, -0.178444, -0.330799, 0.391883, -0.150403, -0.321764, -1.634665, -0.589779, -0.576479, 1.604025, 0.044423, 0.504510, 0.289461, 0.226769, -0.998265, 2.690823, 0.613966, -0.140237, 0.679621, -0.197719, 1.236124, -0.960280, -0.015742, -0.897404, -0.168263, 0.815817, 0.977649, 0.343593, 0.050616, -0.158133, -2.074888, -1.612293, -0.339457, -0.050051, -1.126577, 1.861130, -0.452999, 1.338810, 1.283842, -0.450604, 0.866034, -0.228560, 0.194316, -1.797786, 1.455428, -1.355997, 0.285064, -1.415562, -1.932892, 0.081709, 0.714059, 1.371520, 0.379305, 2.052870, -2.220613, 1.345166, 0.464530, 0.153611, 1.036399, -0.034561, -1.411508, 0.501317, -0.418068, -1.607486, -0.265424, -1.061974, 0.415014, -0.649094, 1.600215, -0.249604, 0.178480, 0.260814, -3.084882, -1.084545, -1.489688, -0.361095, 1.684645, 0.097904, 1.256284, 0.555350, 1.316304, 2.437455, 0.291673, 0.329692, 0.933851, -0.414571, 0.691242, 0.430749, -1.042392, -0.649095, -0.415587, 1.178646, -0.217135, 0.060029, -0.297771, 0.088406, -1.205931, -2.160835, 1.332246, 0.284249, 0.529039, -0.594714, 0.984719, 0.797587, 0.581423, 0.104946, 1.455793, -1.910314, 0.504864, -0.321062, 0.121363, 0.281242, 1.108340, 0.700861, 1.095647, 0.535462, 0.262465, -0.025890, -1.750286, -2.005204, -0.424577, -2.246840, 0.214356, 0.831948, -0.444376, 0.817716, -0.143438, 0.429254, -1.760056, 0.413482, 0.214755, 1.273360, -0.246099, -0.810043, 0.890382, -2.385448, -0.130046, -1.297735, 0.371049, -0.913487, 1.407911, -0.257704, 1.337519, -0.081812, 0.480331, 0.192156, 1.260653, 1.096467, -0.127971, -0.886982, 0.894815, 0.968389, -0.301500, 0.387681, -0.387086, 0.684037, -1.555130, -0.633499, 0.512972, 0.385627, 1.611803, -0.464580, -1.364141, 0.652880, -0.643743, 1.007357, -1.016502, 0.295243, -0.489078, 0.682236, -1.220332, -1.109950, 0.704243, 0.475046, 0.444595, 0.848337, -0.582109, -0.500207, 0.819681, 1.372505, -0.293911, 0.006119, 0.982636, 2.509520, -1.590701, -0.516746, 0.689921, 0.027434, -0.251855, 1.205500, -0.607565, 1.177772, -0.220909, 0.046881, 0.247935, -1.024456, -0.055081, -0.986375, -0.293950, -1.565924, -1.082573, -0.370663, 0.979864, 0.566557, -1.663469, -0.726270, -0.961424, -0.504228, -0.721721, 0.234565, 0.538642, -0.789872, 0.868366, 1.041327, 0.172043, 1.314795, -0.457944, -0.613631, 1.322537, -0.030772, -0.624614, -1.096802, 1.396122, 0.086538, 1.805860, 0.861613, 1.297135, 0.852249, -0.964579, -1.412429, 0.482533, -0.351218, 1.300716, -0.423286, 0.908448, -0.000239, 0.030886, 0.715455, 0.406061, 0.082275, 0.393866, 1.795231, 0.202189, -0.375593, -1.054657, -0.541270, 1.456591, 0.795750, 0.002464, 0.842138, -0.695211, -1.249563, -0.509197, -1.205473, 1.295496, 1.894109, -2.063459, -0.444362, 1.328915, 1.459168, -0.053515, -1.585185, 0.678189, 0.526809, -0.953041, -1.016779, 1.018460, -0.452276, 1.970402, -0.244466, 0.206433, 0.334839, 0.534692, 1.338601, 0.795001, -0.009104, 0.532033, -1.029491, 0.093857, -0.211267, 1.504938, 1.320888, 0.349648, 1.773109, 1.159588, -1.789474, 1.503369, -0.229268, 0.285640, 1.318248, -0.193005, 0.186943, -1.435524, 0.196402, -1.075722, -0.511935, 0.649947, -0.621740, -1.034519, 2.135831, -1.077765, -0.200548, 2.065387, -1.597836, -0.249370, -1.934236, -0.330658, -1.191767, -0.076250, 0.150176, 0.406204, 0.323697, 3.698026, 0.211789, -2.661479, 1.602004, -1.266778, -0.664475, 1.356215, -1.584628, 0.092662, 0.344788, 0.873712, 0.658920, 0.100393, -0.893233, 0.258816, 0.056905, -0.422986, -0.705525, -1.541934, 0.411968, 0.587822, -0.856278, -1.149795, -1.372157, 1.993783, 0.417225, 0.249678, -0.501093, -1.052675, 1.509805, 0.729904, -1.524687, -0.587286, -0.241062, 0.229873, 0.873946, -0.374790, 0.167224, -0.710537, 0.706672, 0.609731, 1.501700, -0.872201, -0.264805, 0.308999, 1.120724, -0.467259, -1.403144, -0.171249, 0.027821, 1.402304, 0.437091, 0.300520, 0.428991, -0.417355, -0.860895, -0.078252, -0.338569, 1.243772, 0.139089, 1.237436, 1.046122, 1.758577, -0.056001, -1.080089, -0.318887, -0.165384, -0.659895, 0.929234, 1.041019, -0.270315, -0.547705, -1.190991, 0.840146, -1.577911, -1.255538, 0.141685, -1.121234, 0.354572, -0.597731, -1.384831, -0.240799, -1.942411, -1.046672, 0.720966, 2.493818, 0.879957, -2.212848, 0.111741, -0.267388, 0.934117, 0.089279, -0.000436, 0.107630, 0.143939, -0.819166, 1.700851, -0.471980, 0.310459, -0.178048, 1.128049, -1.592222, -0.693166, 2.404939, -0.129209, -0.127624, -0.104250, -0.244974, -0.614714, -0.048168, 1.135242, -1.841301, 0.444470, -0.369818, -1.147391, 0.854430, 1.825092, -2.209159, 2.176996, -1.346555, -0.384842, -0.474091, -0.343165, -1.344626, 0.451168, 0.129410, -2.659615, -0.912160, -1.285282, 0.654044, 1.643453, 0.028151, -0.349026, 1.439204, -0.518539, 0.757308, 1.491009, 0.223655, -0.702354, -0.353384, 1.156588, 1.766105, 0.509288, -0.477258, -1.016374, 2.185866, -1.464329, 0.804440, -1.149002, -0.115668, -1.518874, -1.132489, -0.547996, -0.355139, -0.037153, 0.138885, 0.448524, -0.643943, 0.768945, -0.028494, 1.330506, 1.342354, 1.309262, 1.002246, -0.872878, 1.984760, -0.266478, 0.566562, -1.007468, -0.306489, -1.001227, 0.589821, -1.682174, -0.843755, -0.846889, 0.644372, 0.950076, -1.954880, -0.622601, 0.808321, 0.211067, -0.099052, 1.187003, -0.134028, 0.750249, 0.238632, -0.361291, 0.986631, 0.092130, 1.326910, 0.413339, -1.180656, -0.673874, -0.054493, -0.196562, 0.928118, -1.231475, -0.247857, 0.219444, -0.477481, 2.117707, -0.154310, -0.788292, 1.126048, 0.608914, -0.085963, 0.452387, 1.516219, 2.029900, 0.110328, -0.552955, 1.371373, 1.015613, -0.870824, 1.305929, -1.351783, 1.183690, 0.557685, -2.189965, 1.307642, 0.575329, -1.316755, -0.545651, -0.733798, 1.549197, 0.982687, 0.552113, 0.620669, 0.432007, -2.005233, 0.830597, 0.192245, 0.279492, 0.541324, 0.554233, -0.604246, 1.188891, -0.565041, -0.111041, -0.133189, 0.465130, 0.287658, 1.154719, -0.115181, 1.699646, -1.027687, 0.177179, 0.940629, -1.050065, 0.924721, 0.015353, 0.056962, -1.470531, 0.692122, 1.031810, -1.298798, -0.094780, -0.542055, 0.453849, 0.019877, 0.275461, 1.306992, -0.387133, -0.720945, -1.384032, -0.776934, 0.800107, 0.297293, 2.844329, -1.404095, 0.017348, -0.124833, -0.795513, -0.331723, -1.333538, 0.999705, 0.696514, 2.221155, 0.953933, 0.946105, -0.272155, -0.687570, 0.722434, 0.932711, 0.306941, 0.729121, -0.954006, 1.687498, 0.066421, -1.249341, -0.003440, 0.774590, 1.373644, -0.021675, 1.202662, -0.525433, 0.254912, -1.717258, 1.595962, -1.250993, 1.840066, 0.776272, -0.053064, 0.827546, 1.317726, 1.787302, 2.163496, 1.430301, 1.907054, 0.694875, -0.280525, 0.260386, -0.352011, 0.458037, -1.110236, 1.267851, -0.534593, -0.588764, 0.309135, -1.879492, 0.035352, -0.139536, -0.742433, 0.742947, 0.745155, -0.704302, 0.784523, 1.054547, -0.421769, 0.011103, -1.998637, 0.119192, 0.124622, 2.825203, -0.460627, -0.430910, 0.366712, 1.041711, 1.476939, -1.608557, -0.261650, 0.064011, 0.246476, -1.521877, 0.431569, -0.218499, 1.881978, -0.419796, 0.227128, -0.213425, -0.831999, -0.696144, -1.488770, -0.249433, -1.439417, 0.888266, 0.692098, 0.734017, -0.763255, 1.502400, 1.066486, -0.234031, 0.623760, -1.265111, -0.223055, -1.584564, -0.982820, 1.074746, -0.432197, -0.063675, -0.634958, -0.919212, -0.433748, 0.339003, -1.147149, 0.155465, -0.803854, 0.480936, -1.530631, 0.639619, -0.584894, -0.881128, 1.382256, -0.568161, -0.601746, -1.697621, 0.585114, -1.891512, -1.233945, 2.312901, -0.286202, 1.023677, -0.833774, 1.562487, 0.888749, 0.846609, -1.384236, -1.249270, 0.611012, -0.319369, 0.185535, -0.684286, 0.963202, 1.487249, 0.932574, -0.919274, -0.107438, -0.201333, -1.151745, 1.627880, 1.440148, -0.573841, 0.038769, -0.037364, 0.731012, -0.882477, -1.442649, 0.647167, -1.522481, -0.268122, 1.323239, 0.621295, 0.141608, -0.516510, 0.406066, 0.239028, 0.695781, 1.016956, -0.869642, -0.024607, 0.124703, 0.321867, 0.365313, -1.692990, -1.110927, -0.524307, 0.070632, 0.326163, 0.397645, 1.022518, 0.509502, 0.741798, -0.534563, -0.909392, 0.710225, -0.793412, 1.015276, 0.203276, 0.048521, -0.520939, -0.599181, 0.169474, 0.712557, -0.146814, 0.790916, 0.262489, -1.183904, -0.414311, -1.456739, -0.532087, 0.492914, 0.443717, -1.224561, 0.652479, -0.381101, 0.631142, -0.951389, -0.748055, 1.958987, -1.621339, 0.219838, 0.953179, -0.549319, 1.214279, 0.600105, 0.616500, 0.474453, 0.352334, 1.781357, -0.131343, 1.826006, -0.397309, -0.879419, -0.981829, -1.032522, -0.999648, 2.178363, -0.077233, -1.956051, 1.457633, 0.382946, 0.860043, 0.571539, -1.925714, 0.738957, -0.411493, -1.556813, -0.678739, -0.880405, -0.111712, 0.134208, 0.861920, -0.127082, 1.562567, 0.687603, 1.027770, -1.012644, -0.862965, 0.228224, 0.867151, -1.607630, -1.615450, 0.520643, 0.905501, 0.017299, 0.609877, -0.301121, -2.213011, 0.350527, 1.106638, 0.482060, -1.072284, -1.693080, 1.429630, 0.164684, 1.160576, -0.980296, -0.126100, 0.674160, -1.052648, -0.317049, 1.049771, -0.466878, -0.358464, -0.931413, 0.668481, -0.850745, -0.305409, 0.465397, 0.167509, -0.839169, 1.125066, -0.916545, 0.104113, -0.034595, 0.699454, -0.119113, -0.397297, 0.925237, -0.534460, 0.340951, -1.038565, 0.331929, 1.531489, 0.765263, -0.388036, -0.233204, 0.151217, 0.694961, 1.053589, -0.201690, -1.535868, -1.294136, -1.335026, 1.431389, 0.020607, 0.918079, 0.529109, 0.678749, -0.822431, 0.068077, -0.914206, -0.181805, 0.288102, -0.427557, 0.481091, -0.438777, -0.602720, -2.422925, 0.266526, -0.887787, 0.715369, -0.006406, -0.550246, -0.040513, -2.680595, -0.973400, 1.081469}, + { -1.832720, -1.832301, -0.858971, -0.068511, 0.015957, 0.290116, 1.971678, -1.818348, -0.171814, -0.607553, -0.728880, -0.441366, 0.858876, 2.170838, -0.364291, -0.829784, 0.012024, 0.694301, -0.471728, 0.533645, -2.756962, 0.344333, -0.424362, 0.119773, -0.122927, 0.057514, -0.004152, -0.039561, -0.612580, -0.230801, 0.137849, 0.240761, -0.169301, 0.456201, -0.721595, -0.872174, -0.288688, 0.255072, 1.326190, 1.211307, 0.513432, -0.468443, 0.373509, -0.792299, 1.450765, -0.415729, 2.088330, -0.106131, -0.043062, 0.968273, 2.410419, -0.235828, -0.797940, 0.751688, -1.564137, -0.640848, 0.212215, -1.039907, 0.185821, -1.470347, 0.349961, -0.207751, -0.378918, -0.753879, -0.930603, -0.345121, -0.229026, -1.150897, 0.066851, 1.770378, -0.543972, 0.184164, 0.398250, 0.929519, 0.023276, 0.484811, -0.624795, -0.665576, -1.271366, -0.751242, -1.510183, -0.701861, -1.110028, -1.332270, 0.358947, 0.886726, 1.266427, 0.979999, -0.016413, -1.086805, 1.895910, -0.121508, 0.554533, 0.862734, -2.948685, -1.875964, 0.898773, 0.562024, -0.484180, 0.442920, -1.016102, 0.427959, 0.664658, 0.519379, 0.699151, -1.260125, -0.394596, 0.767132, -1.205431, 0.354781, -0.356781, 0.193565, 0.510048, -0.572174, -1.350218, -0.129569, 0.242325, -0.105176, -0.226456, 1.051061, 0.158634, -0.200009, 2.841508, -1.140844, -1.462400, -0.907046, -1.141460, -1.085693, -0.960574, -1.226325, -0.471773, -0.280140, -0.505682, -1.638406, -0.631178, -0.614763, -0.446756, 0.718442, 0.693146, 0.435755, -0.638107, 0.797300, 0.179674, -1.070701, -0.541512, -1.400111, 1.144544, -1.396786, -0.492346, 0.752622, 0.066662, 0.914564, -1.012139, -1.494793, -0.521299, -1.873981, 1.265147, 1.512550, 2.974113, 1.182032, 0.759378, -0.690800, 1.808796, 1.401083, 0.847649, 0.802560, -1.396436, -0.315149, 1.822089, 0.725991, -0.004979, 0.968417, 0.416611, 1.363325, 0.466866, -0.077580, -0.095541, -1.406930, -1.484723, -0.915263, 0.072917, -1.466353, -0.065023, -0.658928, 0.576274, -1.147621, -1.056663, -0.068673, 0.880450, -1.145829, -0.193310, 0.661180, 0.573130, 0.269451, 0.513838, -0.596401, 0.246365, 1.414554, -0.090303, -0.613901, -0.840856, 0.653172, 0.613870, 2.125894, 1.610134, -0.471377, -1.230640, -0.007436, 1.088735, -0.195634, -1.577360, 0.007677, 1.062298, -0.128449, 1.264510, 0.597773, -1.096283, 0.475706, -0.733746, -0.687970, 0.796791, 0.256732, 0.722035, 1.082146, 0.423609, 0.577310, -0.365878, -0.496381, 1.341201, 1.129766, 1.175709, 0.580556, 0.136516, 0.746958, 0.872743, 0.233471, 0.912820, -0.818716, -0.209696, -0.231288, -1.115904, -0.707770, -1.173894, -0.683225, 1.008227, -2.021586, 0.215633, -0.395726, -1.350853, 1.054856, 0.036285, 0.592611, 1.490920, -0.306426, -1.733382, 2.096300, -1.702142, 0.794681, -0.573523, -1.543606, 0.251101, -0.814978, 1.209185, 0.257427, -0.467054, -0.231642, 1.365641, -0.022341, -0.195658, 0.929227, -2.461080, 0.277429, 0.806286, -0.119442, -0.151015, 0.138489, -0.139592, 0.344145, 0.723801, 0.078990, 0.372359, 0.139291, -0.112992, -0.262053, -1.438716, 0.526531, 0.164840, -0.365649, 1.257863, -0.163226, -1.424476, 0.085861, -0.065369, 0.054693, 0.015411, 1.315456, 0.948639, 0.494314, -1.497777, 0.469180, 0.760513, -0.167401, -1.211327, -0.206842, -2.275510, 0.406543, 0.138142, -1.265705, 0.004515, -1.475990, 0.499026, -0.161267, -1.581079, -3.206524, 2.897883, -0.532960, -0.166146, 0.554681, 1.294470, -0.625242, -0.379908, -1.071774, 0.636361, 0.381188, 1.096051, -0.346525, -0.466328, 1.722085, -1.031056, -0.601266, 0.544335, 1.931753, -0.551171, 1.320578, -0.840517, 1.393607, -1.427305, 0.202009, -0.568021, -0.225273, -0.586006, 1.125578, 0.015065, -0.066697, -1.185297, 1.081961, 0.488671, 0.233902, 0.880454, -0.500196, -1.530206, -0.475919, -1.061961, -0.901775, -1.407697, 0.194499, -0.067511, -0.435849, 0.167759, -0.046169, -0.082012, -0.922595, -0.726355, -0.185417, -0.137887, 0.127443, 1.373420, 0.658410, 1.215808, -0.813472, -0.684199, 2.648791, 0.441740, 1.938400, 0.109648, -0.236162, -1.431709, 0.582799, -0.389025, 0.277761, -0.337447, -3.193700, -0.221675, 0.663196, -0.607676, 0.117341, -0.691970, 0.891802, -2.124604, -0.379848, -1.323032, -0.176311, -0.288646, -0.587781, -0.559636, 0.294699, -0.766015, -0.464369, -1.888323, 1.668840, -0.135138, -0.911677, -0.798953, 1.501290, -0.088101, -1.330508, -0.729768, -0.795864, -0.719788, 0.856310, 0.218073, -0.139238, 0.248479, 0.704901, -1.052365, 0.106043, 0.192382, 0.482444, -1.383192, -0.417042, -0.279515, -0.420451, -0.950209, 0.565158, 0.107145, 1.493626, 1.135680, -0.384439, 2.292500, -0.852784, 0.033379, -0.823245, 0.275555, 0.840976, 1.467319, -0.046799, 0.593424, 0.179664, 1.275595, 0.441259, 0.189890, 0.755776, 0.062193, -0.030754, -0.147529, 0.038369, -1.106183, -0.758992, 0.807666, 0.147525, -0.360158, 0.756533, -0.815082, -1.088857, -1.195562, -0.625136, -1.546773, -1.907767, 0.491687, 1.402890, -0.836658, -0.556929, -0.357503, 1.039553, -0.315287, -0.862386, -1.647083, -0.207310, -0.588979, -0.442073, 0.213923, -1.506858, 0.283633, 0.500758, -1.495604, -0.346149, 0.315409, -0.221715, 0.127251, -0.462193, 0.097718, 0.905177, 0.539254, 0.542988, -0.699242, -0.768073, 0.478406, -1.973436, 1.005495, 1.411217, -0.376640, 0.914643, 2.122389, 0.179373, 0.335835, 1.605174, -1.332542, 0.560720, -1.304283, -0.214007, -0.368071, -0.361121, 0.088270, 0.852277, 0.676035, -1.668912, -1.088159, 0.728319, 0.070816, -2.142621, 0.133536, 1.304933, 1.604591, 0.364144, -0.918253, -0.889311, -0.772152, -0.109712, -2.507555, 0.612365, 0.922212, 0.269101, -1.306834, 1.662199, -0.952345, 0.080564, 1.261690, -1.065717, 0.447004, 0.578322, -0.605190, 0.405597, 0.208439, -1.513911, -0.967321, 0.662348, -2.511435, 2.148412, -1.824987, -1.407923, 0.207946, 0.465404, 0.111866, 0.568392, 0.663037, -0.573058, -0.252268, 1.180791, 2.533222, -0.982789, -2.392091, 1.514748, -0.786343, 1.256342, 0.690187, -0.519451, 1.145276, 0.627233, -0.046189, -0.292440, 0.167778, -1.281944, -1.418141, -1.294809, 1.703806, -1.274521, 0.433678, 1.340039, -1.085837, -0.419466, 0.392586, -0.076883, -1.202521, -0.254105, -0.129938, -1.213844, 0.215077, -0.577627, -0.576037, -0.395255, -0.432890, 0.065108, 0.385916, -0.421567, 0.680867, 0.050080, -0.038231, -0.579365, -0.376047, 0.047513, 1.822100, 0.348665, -0.237937, -0.250587, -0.216700, 1.285351, 0.673508, -0.332168, 0.485875, -1.115937, -1.933738, 0.092374, 0.113479, 1.871990, -2.083959, 2.236064, -0.596336, 0.753577, -0.370309, -0.974957, 0.154728, -1.722148, 1.599687, -0.599239, 0.047513, -0.263175, -0.138233, 0.657799, -0.104442, 0.226136, -1.586790, -0.978153, 1.350703, -0.256937, -0.381376, -1.441363, 0.487806, 1.699068, -0.319092, -2.177988, -0.953121, -0.973794, -1.070862, -1.698470, 0.541639, 0.668873, -3.107235, 1.655452, 0.794379, -2.353640, 0.237908, 1.039634, -0.620145, 1.731915, 0.969508, -0.116990, 0.537241, -0.796226, 0.099674, -0.715086, -1.882007, -0.071374, 0.215035, 0.575879, 1.360723, 0.561983, -0.036119, -0.954396, 1.044683, 1.550348, 2.127364, 0.943453, -0.297135, -0.218404, -2.061828, -0.445342, -0.894547, 0.544565, 1.451985, -1.014841, 0.579430, -0.726554, 1.344709, -0.550160, -0.303196, -1.198609, 0.077399, 0.768315, -0.999268, 0.519522, -1.051224, 0.931482, -0.395536, 1.162513, 0.278089, -0.425839, -1.166338, -0.359470, 1.594578, 0.081606, 0.541795, 0.268801, 1.330165, -0.149018, 0.796014, -1.124921, -2.210028, 1.153039, -0.019499, -0.427745, 0.112874, 0.343361, 2.295793, 1.582641, -2.030160, -0.641952, 1.653663, -0.835255, 2.106245, -1.253538, -1.021218, 0.132782, 0.920243, -1.913165, -1.480320, 1.390349, 1.405211, 0.447508, -1.130453, -1.836359, -0.142439, -1.110296, -0.316201, 1.062991, 1.171153, -0.605924, -0.183538, 0.573447, -0.804833, -0.380529, -1.068994, 0.819859, -0.156425, -1.132608, 0.970302, -0.877054, -0.968523, -0.759535, -0.204436, -1.202424, 0.450419, 1.451980, -0.895043, -0.252793, 0.042345, 0.171996, -0.431470, -0.194020, 2.010751, 2.093337, -1.276787, -1.818508, -0.883565, 0.725713, 2.360842, 0.103035, 0.218545, 0.184122, -0.337625, -1.713123, -0.259713, -0.068365, 0.750867, -0.289981, 0.293062, 1.460979, -1.428279, -1.602283, -0.519933, 0.291780, -0.541845, 1.944392, -0.848068, -0.055059, -0.575102, 1.139731, 0.300089, 1.244637, -0.444968, -0.473716, 1.352966, 1.002676, 0.518000, 0.045769, 0.742580, 0.213750, -0.288912, 1.460568, 0.904971, -0.332375, -1.212083, 1.191515, -0.313142, 0.525902, 0.314540, 1.430933, 0.901913, 1.119165, 1.287069, 0.097020, -1.333638, 0.025993, -1.795957, 0.227036, 0.901899, 0.731792, 0.448340, 1.146886, -1.029467, -0.749836, 0.385661, 0.227530, 0.541757, -0.285274, -1.029459, 3.143156, -0.673093, 0.183598, 1.170165, -1.265325, -0.110300, 1.668278, 1.304225, -0.197501, 1.205860, -0.525641, 0.832874, 0.096193, -0.015025, -0.402876, -0.892037, -1.435559, -1.131844, 0.887976, -0.362663, -0.795465, -0.288803, 0.954447, -0.290530, 1.531746, 0.288380, 0.057554, 1.145870, -0.629790, 0.606378, -0.031671, 0.860599, 1.394345, 0.559602, 0.708591, -0.352719, -1.275779, -0.816685, -0.798901, 0.236109, -1.024711, -0.820713, -1.596872, -0.270651, -0.966266, 0.926692, -0.145946, 0.854088, 0.835014, 1.099812, -0.318658, -1.557490, 0.915004, -0.210137, -0.887933, 0.276610, -1.697332, 0.285334, -0.021032, -1.857608, -0.700330, 1.589297, -1.511928, -2.671510, -0.685265, 1.029548, -0.107692, -0.299445, 0.502867, -0.720859, 2.159889, 0.025626, 0.450715, 1.272231, -1.585154, 2.098454, -0.924828, -0.004269, 2.454919, -0.534183, 0.252459, -0.596137, -0.403467, -1.860237, -0.488636, 1.001635, -0.401582, 2.360323, -0.355156, -0.274386, -0.343852, -0.300800, 0.250864, -0.462338, 0.264199, 0.559447, 0.395857, -0.473311, -0.956768, 0.180765, -1.820016, -0.930589, 0.537459, 0.136038, -0.543921, 1.116435, 0.628245, 1.916098, -1.992828, -0.287836, 1.293815, -0.772859, 0.338769, -1.437588, -0.526812, -0.458092, -0.381313, -0.095355, -1.235589, 0.393244, -0.065132, -1.077925, 1.595350, 1.835047, -0.562597, -0.483414, 1.095102, -0.367654, -1.105523, 0.633395, -0.194306, 1.364053, 1.124175, -1.737561, 0.869281, -0.734572, -0.149817, 0.485881, -0.345455, -1.151689, 0.547390, 0.432561, 1.336705, -1.884141, -1.135753, -1.585466, -1.011228, 0.554296, 2.381828, 1.025961, 0.912554, 0.861448, -0.080987, 2.130682, -1.874841, -0.864526, -0.187719, -0.498674, -0.211500, -0.595008, 0.034636, 1.181810, 0.361560, -0.475286, 1.743335, 0.193003, -1.352088, -1.713440, -1.195427, 0.567539, 0.277035, -0.860542, -0.776021, -1.035137, -1.112260, 1.138129, 1.493088, 0.776855, -0.733063, -0.106431, -0.670845, 0.057474, -1.047425, -0.932289, -0.255616, -1.421560, -0.034466, -0.807775, 0.436437, 0.112443, -0.125924, -0.247341, -0.696251, 0.690554, 0.062915, -0.291037, 1.614712, 1.802697, 1.747259, 0.359763, 2.167287, 0.721800, 0.553362, 1.585231, -1.219909, 0.292659, -0.175155, 0.250576, 0.433762, 0.978129, -0.192516, 0.926476, 1.709025, -0.196189, -1.419010, -1.610725, -1.139151, 0.418477, 0.030781, 0.428467, 0.955228, -1.329049, 2.136544, -0.753554, 0.144378, -1.309009, -0.319252, 0.107476, 1.100365, -0.912521, -1.695622, -0.812841, -1.670146, 0.165089, -2.167830, -1.395043, -0.240092, -0.956234, 2.072348, 1.244422, -0.367778, 1.155234, 0.255655, -2.433108, 1.811857, 0.465015, -0.801403, 1.000156, -0.738690, -0.758785, -0.720474, -0.360317, 0.259860, 0.884560, 0.272492, 1.525586, -0.576470, 2.047932, 0.135484, 0.551894, 2.383303, -0.955489, 0.178403, -0.092787, 0.223843, -0.771744, -0.261845, 1.081957, -0.977109, 0.019251, -0.546238, 0.274337, -1.248699, 0.676887, -0.349812, -1.017841, -1.433567, -0.248887, 1.819039, 0.184725, 1.013275, -1.002464, 0.608662, -0.671547, 0.889142, 0.821296, -0.301276, 0.167438, -1.690382, -0.594733, 0.181993, 0.024378, -0.840144, -0.440406, -0.995634, 2.284890, -0.954848, -0.549651, 1.281924, 0.398530, 0.214604, -1.571814, -0.723159, 1.025694, -0.131527, 1.511320, 0.101087, 0.379709, 1.005073, 0.219690, 1.867635, -0.602519, -0.175249, -1.208021, 1.990277, 0.305184, 0.312529, -1.529788, -1.648523, 0.458170, -0.047002, -0.167763, -1.502900, -0.736849, 0.057294, 0.191503, 0.028819, 0.871960, -0.075299, 1.080283, -1.097980, 0.553851, -1.281829, 1.702711, 1.489629, -0.467573, 0.651820, 0.080584, 1.232225, -1.631917, -0.707350, -0.820758, -0.550567, -0.114626, -0.980827, 0.215939, -0.888754, -0.044568, 0.021106, -1.694772, -1.290123, -0.449361, 0.201360, 0.307135, -0.236631, -0.497062, -0.008269, -0.079835, -0.477083, -1.013636, -1.081288, -0.650827, -1.004003, 1.938105, 0.910352, 0.125397, -1.068286, -0.932632, -1.579465, -0.369639, -0.247112, 1.062374, -0.408199, 1.482614, -0.460721, 0.186753, 1.481219, -0.489907, -1.337796, -0.699971, 0.808863, 0.330573, 0.796773, 0.493474, 1.002080, 1.190109, 1.285149, -0.342454, 0.004594, -0.810426, 0.256017, 2.175907, 0.478686, -0.974704, -1.650560, -1.919799, -0.806684, 1.051057, -0.607070, 0.663752, 0.270259, -0.430638, 1.120565, 0.087927, 2.074924, 0.341147, 2.966357, 0.593779, 0.663429, -1.682544, 0.139702, 0.506686, -0.941655, -1.716694, -0.806997, 0.248225, -0.081305, -1.143662, -1.654156, -0.653636, 0.912851, -0.017424, -1.201388, -1.235504, -0.580401, -1.734266, -0.500781, 0.232107, -0.233127, 0.353267, 2.143698, -0.892033, 1.679429, 0.409703, 0.692034, 0.135149, -0.127969, 1.853854, 0.666951, 0.854184, -0.262366, -0.888163, 0.425473, 0.125431, 0.536852, -0.433712, 1.129834, 1.142447, 0.964107, 0.475582, -0.869154, -1.984985, -0.461826, -0.958307, 0.428953, -0.349023, -0.722149, -0.506030, 1.771888, 0.811316, -0.173751, -0.491654, -0.636194, -1.172714, 1.070790, 1.203398, -0.137311, -0.855569, -1.357612, 0.378279, -1.863734, 1.382591, 0.011161, -1.917006, 2.309142, 1.009754, 0.280754, 0.611907, -0.911189, -0.995606, 2.437438, -1.078067, 1.152842, 0.310598, 1.330012, -2.374388, 0.508518, -0.003723, -0.536883, -1.564876, -1.709864, 0.211008, -1.114856, -1.267503, 0.804683, 0.595315, -0.210372, -1.404252, 2.588056, 0.606274, -0.851993, -1.447979, -0.348797, -0.229041, -0.514998, 1.409166, -0.407386, 0.679208, -1.228353, 1.360178, 0.324280, 0.649254, -0.012220, -0.707265, 0.131290, -0.467987, 0.640930, -0.559834, -0.252676, -0.597875, -0.562935, 1.400386, -0.424715, -0.513280, 0.855115, 0.191991, -0.964520, -0.352933, 1.081527, 0.190430, 0.749862, 1.467684, 0.727411, -0.477440, -1.095180, 0.179929, -1.044553, -0.830838, -0.363329, 0.575085, 0.461175, -0.688499, 0.429750, 0.402037, -1.836882, -1.343481, 1.654838, -1.162995, 1.352182, 1.885412, 0.471842, -0.214834, -1.703495, 0.202681, 0.709370, -0.447599, -1.471250, 0.199692, 0.875522, 1.048451, -0.065706, 1.700373, -2.122299, -0.090670, -0.201647, 1.091765, -0.379659, 0.401704, 0.833976, 0.731895, 0.709447, -0.716736, 1.911557, -1.902063, -0.518437, -0.797185, -0.235644, 1.499953, 0.308034, -0.259524, -1.326812, -0.966541, 0.738371, -0.642539, 0.572851, -1.120586, 0.427213, 0.299291, 1.581746, -1.596753, -0.973999, 0.965577, -0.479069, 0.557041, -0.319204, -0.217317, 0.091067, 0.094040, -1.680667, 0.072046, 0.373416, 1.088088, -0.062071, 0.105099, 0.786048, -1.472981, -0.201788, -0.110247, -0.124703, 1.582004, 0.138461, -0.182415, -1.592387, 0.741989, -0.558639, -0.519499, 0.115620, -0.566589, -0.851491, 0.051869, -2.199328, 0.093601, 0.315632, 1.293925, -1.664142, 1.020213, 0.606874, 0.803589, -0.082597, 0.499662, 0.228775, -0.448975, -1.426017, -0.140244, 0.716109, 1.553304, 0.719433, 0.975645, 0.837441, 1.120692, -0.498690, 0.216276, -1.416430, 0.547602, 0.884554, -0.883310, -0.177371, -1.273554, 1.098291, 1.180377, 1.756399, -0.333211, -0.435881, 0.519508, 1.114167, 1.609321, 0.071498, 0.581950, -0.299901, -0.765122, -0.488867, -0.035351, -0.826499, -1.425051, 1.434185, -2.210378, -0.940950, 1.816813, 0.063278, 0.753839, 0.144365, -0.979390, -0.045419, 0.297778, -0.383652, 0.864681, -1.206591, 1.243333, 1.348250, 1.174847, -0.953818, 0.840999, -0.557367, 0.314909, -1.597800, -1.079209, 0.089300, 1.671589, -0.808067, 0.076293, 0.096278, -0.324097, 1.691696, 1.088688, -0.102197, 0.713123, -2.436126, -1.598818, -0.794874, 0.210923, 1.283019, 0.547768, -0.579813, 0.036665, -0.833858, -1.421240, 0.138998, -0.325604, 1.347060, 1.670095, -1.604636, -1.615392, -0.460504, 1.857504, 1.631746, 1.057933, -0.055917, -1.313222, -0.422599, -0.455539, 0.352716, -2.021872, -0.631336, -1.906826, 0.767665, 0.506621, -0.745368, -2.332947, 0.296637, -1.559323, 0.071974, 0.169996, 0.840164, 1.604448, -0.374057, -0.587066, -0.986345, -0.414328, 0.850159, -0.583975, -1.069348, 1.588573, -0.591482, -0.796043, 0.680985, 1.771477, -1.231028, -0.448036, -1.177586, -1.279473, 0.321128, 1.709116, -0.429261, -0.260985, -0.207789, 0.436985, 0.088741, 0.429940, -0.731834, 0.052336, 1.085671, 0.893380, 0.509342, -1.013332, -1.639478, -1.357020, 1.414649, -0.899549, -0.376484, -0.306010, -0.792559, -0.055293, 0.482073, 0.641750, 1.808035, -0.040113, 0.704865, -0.915666, -0.265766, -0.023698, -0.925227, -0.746802, 0.304658, -0.184038, 0.726465, -0.155801, -0.556488, 0.655451, 0.320722, 0.093133, -0.784770, -0.076329, 1.074745, -1.257506, -0.258270, -0.301241, -0.722143, 0.731017, 0.167733, 0.636896, 1.598458, 1.704751, -1.142440, -0.685851, 1.584837, -0.626776, -0.328650, -1.091329, 0.971738, 1.043644, 0.636459, -0.312368, 1.026271, -1.633195, 0.539821, -0.964621, -0.400355, 0.132008, -0.179207, 1.159695, 0.955293, -0.303751, -0.217484, 2.513990, 0.006818, 1.458397, 1.128086, 0.183672, -0.298289, -1.102964, 0.110033, -0.208438, -0.686324, 0.899560, -1.023875, -0.859286, -0.054482, -1.038903, 1.151221, 2.548196, 1.908477, 0.645170, -0.369748, 0.810512, -0.793427, -0.527577, -0.077106, 1.186085, 0.483219, -0.320033, 0.698668, 1.683920, 0.120677, 0.988550, -1.493364, -0.723505, 1.647273, -0.100119, 0.438654, 0.719387, 0.246423, 0.010835, -1.617130, -0.479237, 0.434476, -0.064019, 0.166649, -0.006954, 0.024624, -0.196386, 0.907595, -0.046163, -1.095835, 0.691906, -0.998547, 0.673572, -1.293808, 0.368095, -2.459684, 0.205549, 0.994630, -0.035405, 0.655553, 0.210941, 0.881665, 0.522077, -0.416486, -0.501087, -1.235737, 1.380430, -0.896689, -1.126449, -0.861117, -1.431397, -2.374008, -0.185161, -0.301201, 0.348443, 0.192501, 1.046262, -0.469976, -0.498890, 0.674246, 0.308645, -0.763818, 0.463878, 0.370435, 0.017343, 1.601899, -0.941614, 1.008298, 1.594859, 0.178323, 0.637547, 0.078154, -0.958955, 1.312140, 0.096965, 0.933447, 0.181134, 0.097072, 0.052523, -0.295644, -0.979182, 1.415053, -0.556326, -0.102701, -0.510035, 0.550682, 0.363609, 1.633884, -0.310255, 0.013011, 0.593944, -1.758845, -1.518336, -0.633596, -0.383157, 0.163710, 1.571116, 1.590887, 0.072846, 0.871000, 0.914114, -0.498564, -1.488947, 1.305893, 0.905593, -0.227759, 0.241577, 0.191664, 0.456879, -0.794243, 1.409171, -0.744751, 0.360987, 0.473105, -0.391104, -0.905041, 0.197796, 0.320883, -1.731515, 1.453186, -1.293101, -1.584068, 1.283133, 1.476748, -0.405433, -0.493755, -0.052667, -0.204378, -0.541118, 0.492995, 1.250793, 0.172867, -0.667022, 0.677376, 0.179161, -0.777011, -2.078700, -1.441447, 1.048290, -1.487841, 0.294937, -0.452218, -0.472494, 1.731985, 3.650026, -0.748173, -0.511208, -0.744948, 0.017124, -1.601023, 0.232189, -0.721906, -0.198432, 0.396972, -1.718849, -0.180867, -0.529996, -0.838769, 1.875711, 3.127018, -0.494097, 2.461127, -0.644371, 1.168177, -0.150548, -0.736924, -0.582264, 1.461116, 0.402506, 0.569627, 1.566779, 1.184108, -0.874220, -0.039653, 0.212669, -0.989231, -0.177178, -0.326706, 0.289737, -0.194158, -0.352394, 1.279422, -1.613065, -0.546365, -0.947715, -1.307459, 0.228799, -0.325311, 1.857904, 2.367548, -2.143504, 1.185711, 0.023310, -0.245319, -0.053544, -0.714797, -1.207599, -1.017377, -1.153081, 1.471800, -0.533222, -0.106148, -0.435499, -0.688528, 0.656703, 0.574933, -0.005387, -1.395935, -0.104269, -0.041974, -1.274262, -2.136190, 0.863266, -0.901615, 1.035668, -0.844594, 1.283889, 1.755277, -1.890345, -0.731781, 0.709649, -0.313370, 0.332204, 1.560688, 0.055312, 0.138974, -0.560567, 0.677662, 1.751913, -0.258554, 0.290400, -1.187742, -0.071480, -0.079336, 0.250645, -0.204532, 0.252637, 1.147611, -1.279423, 0.355029, -0.927427, 0.858100, -1.442043, -2.436779, -0.571746, -1.054116, 1.802603, 2.568276, -0.159607, -0.859052, -1.755104, -0.075094, 0.429452, -1.066747, -0.327732, 0.900284, 1.293475, 0.276533, -0.250297, -1.543613, 0.290647, 0.933780, -1.894013, 1.612368, -0.305038, -1.473978, -0.414879, -0.597143, -1.643668, 0.926439, 0.284534, 0.730527, 0.589243, 1.370415, 0.247107, -0.581779, -0.423290, 0.896937, 0.578896, 0.511773, 0.637184, 1.315664, -0.373985, 0.337739, -0.314847, 0.928552, -1.051257, -0.182437, 0.619872, 1.506933, -1.069797, -1.396807, 0.876967, -2.091229, -1.156655, 2.691005, -0.585278, -0.225732, -0.034191, 0.634141, 1.449422, -1.051603, 0.026337, 0.924095, -0.585849, -0.333940, 0.320869, -0.078419, -1.023535, -0.673724, -0.946902, -0.576454, -0.123051, -0.696129, 0.947458, 1.158253, -1.118220, -0.088368, 1.723133, 0.866373, 1.321266, -0.190917, -0.354790, 0.016682, 0.199741, 0.076106, -2.472578, -0.491191, -2.213902, 0.196228, 2.089944, -0.411776, 2.540997, -0.091430, -0.098488, 0.489360, -0.307179, 1.029859, 0.807510, -1.159881, 0.117357, -0.490907, 0.707053, 0.678481, 1.080089, 0.715684, 0.392280, 1.221960, 0.265962, -0.557330, 0.048529, 1.294021, 0.719138, -0.532130, 0.813531, 0.469985, 0.261738, -1.594005, -0.788719, -0.911482, -0.952686, -0.764332, -0.574385, 1.037331, -1.486272, 0.428177, 1.293537, 1.290042, 0.406969, -0.124457, 2.316815, -1.143812, 0.641655, 1.688069, 0.462520, 1.728105, -2.043435, 1.850362, 1.750298, 1.289351, 0.872667, 1.511825, -1.111976, 0.591458, -1.504478, -0.400845, -2.375541, 0.574131, 1.670279, 0.082997, -0.891840, -0.406302, -0.698602, -1.408785, 0.481809, -0.187033, -0.097334, -0.633844, -0.185018, -0.273898, -0.073878, 1.428934, -0.053016, 0.264499, 0.102886, -0.643190, -1.125247, -1.210615, 0.318774, 0.647272, -0.335101, -0.642515, -0.202426, 0.977787, -0.303940, -1.143692, 0.081544, 0.612070, -0.146524, 0.035038, 0.376637, 0.528662, 0.028879, -0.666669, -0.328715, 0.782662, -0.252001, -0.690979, -0.469470, -0.708381, -0.923942, 1.304723, 0.370498, -0.702136, 2.529210, -0.054950, -1.187487, -0.773994, 0.278975, -0.066161, 0.794054, 0.504187, 0.416453, -0.379658, -2.723108, 1.534548, 0.762826, -1.756781, 0.547000, -0.091992, 0.610848, -0.860154, -0.568627, -0.950247, -0.804920, 0.094614, -1.800706, -0.957929, -0.320965, -0.430799, -0.273611, 0.908135, 1.306168, -0.062194, -0.090874, 0.912942, -0.646390, -1.807085, -0.933588, -0.043086, -1.305417, 0.050470, -0.895961, 1.310764, 0.325361, -0.191396, -0.824477, 1.590671, 1.758281, -0.422506, 1.825948, 0.476100, -0.775445, -0.588464, -0.446426, -0.199340, -0.919906, 0.858454, 1.077656, -1.283093, 0.956044, 1.074878, 0.652241, -1.355035, -0.212005, -1.201545, -0.353020, 0.531426, 1.915986, -0.965934, 0.190336, 0.986044, 0.037555, -0.529147, -0.311364, 0.181307, 0.533788, -1.400613, 0.775118, 0.701766, 0.295929, 0.886815, 0.687763, -0.114143, 0.539465, 0.115756, -0.460651, -0.316303, 0.939736, -3.304141, 0.450156, -0.150967, 2.590709, 0.475691, -0.205907, 1.243305, -0.637208, 0.222785, 0.748470, 0.327467, 0.099044, 0.032882, 1.738621, 0.283333, -0.374721, -0.404877, 1.469799, -0.053844, 1.463576, 0.215078, -0.376748, 0.739035, 1.232927, -0.653800, 1.776496, 0.890157, 0.706800, -0.507877, -0.380121, 0.118047, 0.689611, 1.743918, -0.404770, -1.151464, -1.695880, -0.247196, 3.640188, -1.533481, -0.319891, 0.076200, -1.185571, 0.724319, -0.097713, -0.008245, -2.476176, -1.042394, -0.678655, 0.153472, 0.218226, 0.139165, -0.681017, -1.256133, -0.485314, 0.202880, 0.737773, 1.368623, 1.149944, -0.349254, -0.539458, 0.673286, 0.197265, -0.546732, -0.936812, 0.438582, -0.255539, 1.015393, 0.830016, -1.748915, 0.401725, 1.051908, -0.120281, -0.238244, 0.804372, 0.132807, 0.436494, -0.404823, -0.035251, -0.534760, -0.289785, -0.845962, -1.671271, -0.229290, 2.076859, 2.112873, -1.734705, 1.491760, -1.510347, 1.728574, 0.348427, 0.931202, -0.590530, -0.623766, -0.825722, -2.842976, -0.180604, 0.063132, 0.524808, 0.880048, 1.452389, -1.411420, 0.406923, -0.009063, -0.083285, -0.258333, -0.411093, 0.422656, 0.351526, -1.174328, -0.700595, 0.957094, 0.464154, 0.961940, 1.651793, -0.459023, 0.032361, 1.719693, -0.214426, -1.066313, 1.203414, 1.512252, -0.013053, 0.078026, -0.355100, -1.151602, 0.038365, 0.746541, 0.082617, 1.483096, 0.532986, -0.779316, 0.470299, 0.304849, -1.239046, 0.833531, -0.991812, 0.001219, 0.173022, -0.671808, 0.625388, 0.298280, 0.077275, -1.210524, -0.468787, -0.921020, -0.478186, -0.619984, -1.110261, 0.231596, 0.518341, -0.374246, 0.364306, -0.562572, 0.492916, 0.312070, 0.588313, 1.482537, -0.015267, -0.783096, 0.834487, -1.457625, 1.100386, 1.968092, 1.456164, -0.946590, 0.203014, 0.477965, -1.088596, 0.540124, 0.629137, 0.011425, 0.905091, 1.384760, -1.472135, 1.190629, 2.056539, -0.319791, 0.130147, 1.271055, -1.372692, -1.440046, 0.155413, -0.549882, -1.216933, -0.015819, -0.415747, 0.416547, -0.130419, 1.552997, -1.359725, 0.513762, -0.531440, 1.063322, -0.155506, 0.520833, -0.800494, 0.013978, -0.176839, -0.779325, 0.078672, 0.725792, 1.546884, -1.768456, -0.794239, 1.242195, -0.893333, -0.502014, 0.070600, -0.002877, -0.731447, 0.871525, 0.182300, 0.421710, -1.074521, 0.645462, 0.754332, -1.022830, 1.445887, 0.281259, 1.092868, 0.415702, 0.041165, -0.861055, -0.345498, 0.856263, 0.615832, -0.432934, -0.813447, -0.851235, 1.111349, -3.271591, 1.546055, 1.239123, -1.086900, -1.780178, -1.544458, 1.873742, 0.374872, 0.415019, 0.469029, 0.937666, 0.049280, 0.529974, 0.003972, -0.480289, -0.680859, 0.451785, -1.514718, -1.901561, -1.334306, -0.493515, 0.337956, -0.781422, -2.140366, 0.328653, 0.174495, -1.144279, -0.566132, 0.672687, -0.089142, -0.648147, 0.545837, -0.986966, -2.011614, 0.259612, 2.211427, 0.211769, 0.397450, -0.224143, 0.499279, -0.465039, -0.018928, -0.256960, 1.115301, 1.085668, 0.455206, -0.426466, -0.145627, 0.715345, 0.300405, -1.221085, -0.755768, -2.435087, -0.035126, -2.416443, 0.488851, 1.770282, 0.528806, -1.465314, 2.651483, -0.128389, -0.417145, -0.577149, -1.435889, 0.905378, 1.964585, 0.894539, -1.143834, -2.072651, 1.425874, -0.124561, 0.389397, -1.235276, -0.594976, -1.501140, -1.478278, 0.740822, -1.062056, -1.572316, -2.148202, -0.152699, -0.186795, 1.114281, -0.963079, 0.069280, -0.894024, -1.605450, -1.513596, 0.530406, -0.645352, 1.083404, 0.359742, 1.405155, 0.044220, -1.192332, 0.917870, 0.855886, -0.670823, -0.254677, -1.302230, -1.053527, -0.272081, 1.250596, -0.953726, -1.029437, -0.859062, -0.629846, 0.961099, -1.023370, 0.629703, -0.341659, -1.246644, 0.595643, -0.020413, 1.129626, 0.275426, -1.704722, 0.773559, -0.604371, -0.377520, -0.792514, -0.408869, 1.876892, -0.904421, -1.188380, 0.658271, -0.445619, -0.551301, 0.335250, 0.279356, -0.326728, -1.484962, 0.847658, -1.794759, 0.811666, 1.128677, -0.788439, -1.644893, -1.258992, -1.379385, -1.906459, 0.497265, 1.033804, 1.151994, 0.456040, -0.774154, -0.012932, -1.069791, 2.342337, 1.340138, -1.019621, 0.425536, 0.735433, -0.142667, -0.560009, -0.683843, 1.341919, 0.859628, 0.137526, 0.492168, 0.054559, 0.083764, -0.791269, 0.056748, -0.414487, -0.863183, 2.167135, 0.286823, -0.313111, 0.553862, 0.000764, 0.187081, 0.415014, -0.025802, -0.304829, -0.418926, -1.503555, -0.728779, 1.791107, -0.841265, -1.676302, -0.522063, 0.116286, -0.168111, 1.006858, 0.101588, -0.587156, -0.705265, 0.165976, -0.946316, -2.553041, -1.526274, 0.298436, 1.922130, -0.205348, -2.022770, -0.205359, -1.507347, 1.873686, 0.673701, 0.306206, 1.039660, -0.038807, -0.043503, 0.350892, -2.025926, 0.437385, 0.458255, 1.634356, -0.854927, 0.371193, -0.254437, 0.073511, 1.285112, 0.519757, -0.228653, 1.085662, -0.791520, -1.802710, -0.449006, -0.484930, 0.119999, 0.560412, 0.440483, -0.542622, -1.215385, 0.284334, -0.250832, -0.322118, -0.851089, 1.981881, 0.650384, 0.415281, -0.822203, 0.005297, 1.911241, -1.385507, -0.036001, 0.816934, -0.378025, 0.169822, -0.399903, 0.239210, 0.001490, 2.054050, -0.406740, 1.091864, -0.547333, -1.399578, 0.162506, 0.490285, 0.052707, 1.901091, 0.474383, -1.488865, 1.136825, -2.066674, -0.006272, -0.850482, -0.035556, -0.235673, -0.218231, 0.282727, 0.491038, 0.287284, -0.097007, 0.115075, 1.457639, -3.244357, 0.470283, -0.098323, 1.030281, -0.464562, -0.475466, 0.046398, -0.243231, 1.409080, 0.194063, -0.350261, 0.745933, 0.467701, 0.776280, 0.235805, 0.157086, -0.076641, 0.586459, 0.434680, -1.791565, 0.026298, 0.676300, -1.933337, 0.501824, 1.718093, 1.288899, 0.260463, 1.045297, -1.146577, 0.918897, 0.953756, -0.042108, -2.098849, 0.199197, 0.322978, -0.817203, -1.332367, 2.005766, -1.458670, 0.591116, -0.432035, -0.049552, -0.598772, -1.272601, -0.008249, -1.420874, -0.134552, 1.230841, 1.296471, 2.309085, -0.049947, -0.267413, 1.373158, -1.519797, -0.545450, -0.721523, 1.381696, -1.716540, 0.787918, 0.554416, -0.070415, -0.762030, -0.824556, 0.283408, -0.479842, 1.808094, -0.094731, -1.870258, -1.043470, 0.024725, 0.248764, 0.703275, -1.028994, -0.107399, -0.053329, -2.229501, -1.665794, -0.031335, -0.125519, -0.599666, 0.731239, -0.421697, 0.417807, 1.440879, 0.735590, -2.647292, 0.874610, 0.068902, -3.034189, -1.514768, 1.375592, 0.138118, 1.404842, 0.102398, -0.253506, -1.386411, -0.538118, -0.184038, 1.438215, 0.493969, -0.344355, -1.197392, 1.258777, -0.539622, 1.933346, 0.174602, -0.641495, 2.560009, 0.559602, 0.081997, 1.169597, -1.220777, 0.234462, -0.656987, 2.071997, 0.665757, 1.414597, 1.569744, 0.661390, 0.028050, -0.450470, 0.289979, -1.190956, 0.048685, 0.806834, -0.217576, -0.051532, 0.061492, -1.341624, 0.204468, 0.275311, 1.015437, 0.390251, -0.190717, -0.765341, -1.368739, -0.462784, 0.637006, -0.131510, 0.360640, -0.004806, -0.531379, 0.609566, -0.608923, -0.201313, -1.309795, -0.631704, 0.626638, 0.900704, 0.671277, -2.451971, 0.267234, -0.331389, 0.085007, -0.389346, 0.581410, 1.572095, -0.876835, 0.656450, 1.103068, 2.145412, -0.329937, -0.144463, 0.489393, -0.236403, -0.864358, 0.506528, -1.366651, -0.288515, -0.242011, -0.249457, -0.689139, 1.594921, 0.178823, -0.543440, -0.212464, 0.580742, 0.784289, 0.682584, -1.622043, -0.654385, 0.722397, 0.800628, -1.158074, 0.123853, 0.264135, 1.566360, -0.495162, 0.559053, 1.675383, -0.264058, -1.245865, 0.682013, 0.000450, 0.147345, -0.998236, -0.175671, -0.534080, 0.808792, 0.319772, -0.367929, 0.974291, -0.049030, -1.117112, 1.419691, -0.501245, -0.725041, 1.341914, 1.344847, 0.253530, 0.158335, 1.682190, -1.131622, 0.167605, -1.342492, -0.446232, 0.349514, 0.185182, -0.928107, -1.647748, -0.625048, 0.311100, -2.428436, -1.072399, 0.715704, -1.987772, 0.292917, -2.224710, -0.744249, -0.702430, 1.110776, 1.642087, 0.232296, -1.799583, -0.788508, 0.667428, -0.747804, -0.234830, -0.306652, -0.182916, 2.065650, 1.100246, -0.033264, -1.415357, -0.515378, -0.811896, 0.025481, -1.196895, 1.921172, 0.185095, -0.489697, 0.986528, 0.013538, -0.041245, 0.219131, -1.576243, -0.437772, 0.696383, -0.081948, 0.215104, 0.455184, -1.427389, -1.780960, 2.597677, -0.157039, 0.020257, 0.820653, 1.046425, 0.050160, -0.094993, 1.200100, 0.346938, 0.850390, 0.367304, -2.310000, 1.211297, 0.150482, 0.043871, -0.508709, -1.609964, -0.297195, -0.181224, 0.111775, -0.982257, 0.678733, 1.204637, -0.920422, 1.300763, 1.967843, 0.612005, 0.491201, -0.360247, -0.975194, -0.668533, 0.805851, 0.523935, 0.195248, -0.130975, -1.337807, -0.786042, 0.599628, 1.169225, 2.658781, 1.300806, 0.177758, -0.573090, -0.419563, 0.170684, 1.118638, -0.425810, 0.999040, -0.059230, -1.428994, -0.652792, 0.191031, 0.170650, 0.706141, 1.963883, -0.381524, 0.169058, -0.872359, -0.993459, 1.201042, 1.368303, 0.624524, -2.418988, 0.149065, 1.952251, -1.809313, 1.548608, 0.564970, 0.469068, 1.563380, -0.134034, -0.510471, 1.281595, 1.207709, -1.528424, -0.044249, 1.197483, -0.093338, -1.051536, -0.398160, 0.772390, 0.157586, 2.020971, -0.659765, 1.254528, 0.567158, 0.622205, -1.150470, 0.139632, 0.142316, -0.064545, 0.260148, -0.534607, -0.931033, -1.101969, 0.532323, -0.767783, -1.608334, -0.313577, 0.086653, 0.291630, 0.036925, 0.030688, -0.117193, 0.185717, 0.623620, -0.210230, -0.096605, -0.283992, -2.347278, -1.262812, 1.042450, -0.429306, -2.661640, 0.675233, -0.607473, 1.390264, -1.861211, -0.134102, 0.901294, -1.293585, 0.742760, 0.391332, 0.926030, -0.426751, 0.337803, 0.991124, -0.618245, -0.664740, -0.103559, -0.255470, -0.502952, -0.043288, -0.672390} +} +}); + +#endif /* EXPORT_PARAMETERS_INPUTNODE_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode.hpp new file mode 100644 index 000000000..e82011643 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode.hpp @@ -0,0 +1,7 @@ +#ifndef EXPORT_ATTRIBUTES_OUTPUTNODE_H +#define EXPORT_ATTRIBUTES_OUTPUTNODE_H + +#define _OUTPUTNODE_IN_CHANNELS 16 +#define _OUTPUTNODE_OUT_CHANNELS 10 + +#endif /* EXPORT_ATTRIBUTES_OUTPUTNODE_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_b.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_b.hpp new file mode 100644 index 000000000..cc150ee13 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_b.hpp @@ -0,0 +1,11 @@ +#ifndef EXPORT_PARAMETERS_OUTPUTNODE_B_H +#define EXPORT_PARAMETERS_OUTPUTNODE_B_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> OutputNode_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 10> { +{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } +}); + +#endif /* EXPORT_PARAMETERS_OUTPUTNODE_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_w.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_w.hpp new file mode 100644 index 000000000..303ae8366 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_w.hpp @@ -0,0 +1,22 @@ +#ifndef EXPORT_PARAMETERS_OUTPUTNODE_W_H +#define EXPORT_PARAMETERS_OUTPUTNODE_W_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> OutputNode_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 10, 16> { +{ + { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630}, + { 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164}, + { 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481}, + { -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, + { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876}, + { -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245}, + { 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104}, + { 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, + { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258}, + { 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219} +} +}); + +#endif /* EXPORT_PARAMETERS_OUTPUTNODE_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/dnn.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/dnn.hpp new file mode 100644 index 000000000..3a4d5c02e --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/include/dnn.hpp @@ -0,0 +1,17 @@ +#ifndef DNN_HPP +#define DNN_HPP +#include <aidge/graph/GraphView.hpp> +/** + * @brief This file contains all of what is related to the construction of the + * neural network + * + */ + +/** + * @brief This function generate the exported Aidge::GraphView. + * + * @return std::shared_ptr<Aidge::GraphView> + */ +std::shared_ptr<Aidge::GraphView> generateModel(); + +#endif /* DNN_HPP */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/main.cpp b/aidge_core/unit_tests/dummy_export/__cache_export/main.cpp new file mode 100644 index 000000000..640fc1fe6 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/main.cpp @@ -0,0 +1,23 @@ +/* +Example main.cpp used to test aidge export. +This file is copied in the test export. +*/ +#include <iostream> + +/* Register default cpu Tensor implementation */ +#include <aidge/backend/cpu/data/TensorImpl.hpp> + +/* Include model generator */ +#include "include/dnn.hpp" + +int main() +{ + + std::cout << "BEGIN" << std::endl; + + std::shared_ptr<Aidge::GraphView> graph = generateModel(); + + std::cout << "END" << std::endl; + + return 0; +} diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/project_name.txt b/aidge_core/unit_tests/dummy_export/__cache_export/project_name.txt new file mode 100644 index 000000000..eade0289a --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/project_name.txt @@ -0,0 +1 @@ +dummy_export \ No newline at end of file diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/python_binding/pybind.cpp b/aidge_core/unit_tests/dummy_export/__cache_export/python_binding/pybind.cpp new file mode 100644 index 000000000..6514fe0d5 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/python_binding/pybind.cpp @@ -0,0 +1,14 @@ +#include <pybind11/pybind11.h> + +#include "dnn.hpp" + +namespace py = pybind11; + + +void init_dummy_export(py::module& m){ + m.def("generate_model", generateModel); +} + +PYBIND11_MODULE(dummy_export, m) { + init_dummy_export(m); +} diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/src/dnn.cpp b/aidge_core/unit_tests/dummy_export/__cache_export/src/dnn.cpp new file mode 100644 index 000000000..69a5269b6 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/src/dnn.cpp @@ -0,0 +1,232 @@ +/******************************************************************************** + * This file has been generated by the Aidge export. + ********************************************************************************/ + +/*** STD INCLUDES ***/ +#include <memory> // std::shared_ptr + +/*** AIDGE INCLUDES ***/ +#include <aidge/graph/GraphView.hpp> // Aidge::GraphView +#include <aidge/graph/Node.hpp> // Aidge::Node +#include <aidge/graph/OpArgs.hpp> // Aidge::Sequential + +/*** AIDGE OPERATORS ***/ + +/*** OPERATOR ATTRIBUTES & PARAMETERS ***/ +#include "aidge/operator/Producer.hpp" +#include "attributes/InputNode_b.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/InputNode_w.hpp" +#include "aidge/operator/FC.hpp" +#include "attributes/InputNode.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/FC1_b.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/FC1_w.hpp" +#include "aidge/operator/FC.hpp" +#include "attributes/FC1.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/FC2_b.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/FC2_w.hpp" +#include "aidge/operator/FC.hpp" +#include "attributes/FC2.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/OutputNode_b.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/OutputNode_w.hpp" +#include "aidge/operator/FC.hpp" +#include "attributes/OutputNode.hpp" + +/*** HEADER ***/ +#include "dnn.hpp" + + +std::shared_ptr<Aidge::GraphView> generateModel() { + /*** BUILDING GRAPH ***/ + std::shared_ptr<Aidge::GraphView> graph = std::make_shared<Aidge::GraphView>(); + + /*** INPUTNODE_B ***/ + std::shared_ptr<Aidge::Node> InputNode_b = + Aidge::Producer( + InputNode_2, + "InputNode_b" + ); + graph->add(InputNode_b); + + + + /*** INPUTNODE_W ***/ + std::shared_ptr<Aidge::Node> InputNode_w = + Aidge::Producer( + InputNode_1, + "InputNode_w" + ); + graph->add(InputNode_w); + + + + /*** INPUTNODE ***/ + std::shared_ptr<Aidge::Node> InputNode = + Aidge::FC( + _INPUTNODE_IN_CHANNELS, + _INPUTNODE_OUT_CHANNELS, + "InputNode" + ); + + InputNode_w->addChild(InputNode, 0, 1); + InputNode_b->addChild(InputNode, 0, 2); + + graph->add(InputNode); + + + + /*** RELU0 ***/ + std::shared_ptr<Aidge::Node> Relu0 = + Aidge::ReLU( + "Relu0" + ); + + InputNode->addChild(Relu0, 0, 0); + + graph->add(Relu0); + + + + /*** FC1_B ***/ + std::shared_ptr<Aidge::Node> FC1_b = + Aidge::Producer( + FC1_2, + "FC1_b" + ); + graph->add(FC1_b); + + + + /*** FC1_W ***/ + std::shared_ptr<Aidge::Node> FC1_w = + Aidge::Producer( + FC1_1, + "FC1_w" + ); + graph->add(FC1_w); + + + + /*** FC1 ***/ + std::shared_ptr<Aidge::Node> FC1 = + Aidge::FC( + _FC1_IN_CHANNELS, + _FC1_OUT_CHANNELS, + "FC1" + ); + + Relu0->addChild(FC1, 0, 0); + FC1_w->addChild(FC1, 0, 1); + FC1_b->addChild(FC1, 0, 2); + + graph->add(FC1); + + + + /*** RELU1 ***/ + std::shared_ptr<Aidge::Node> Relu1 = + Aidge::ReLU( + "Relu1" + ); + + FC1->addChild(Relu1, 0, 0); + + graph->add(Relu1); + + + + /*** FC2_B ***/ + std::shared_ptr<Aidge::Node> FC2_b = + Aidge::Producer( + FC2_2, + "FC2_b" + ); + graph->add(FC2_b); + + + + /*** FC2_W ***/ + std::shared_ptr<Aidge::Node> FC2_w = + Aidge::Producer( + FC2_1, + "FC2_w" + ); + graph->add(FC2_w); + + + + /*** FC2 ***/ + std::shared_ptr<Aidge::Node> FC2 = + Aidge::FC( + _FC2_IN_CHANNELS, + _FC2_OUT_CHANNELS, + "FC2" + ); + + Relu1->addChild(FC2, 0, 0); + FC2_w->addChild(FC2, 0, 1); + FC2_b->addChild(FC2, 0, 2); + + graph->add(FC2); + + + + /*** RELU2 ***/ + std::shared_ptr<Aidge::Node> Relu2 = + Aidge::ReLU( + "Relu2" + ); + + FC2->addChild(Relu2, 0, 0); + + graph->add(Relu2); + + + + /*** OUTPUTNODE_B ***/ + std::shared_ptr<Aidge::Node> OutputNode_b = + Aidge::Producer( + OutputNode_2, + "OutputNode_b" + ); + graph->add(OutputNode_b); + + + + /*** OUTPUTNODE_W ***/ + std::shared_ptr<Aidge::Node> OutputNode_w = + Aidge::Producer( + OutputNode_1, + "OutputNode_w" + ); + graph->add(OutputNode_w); + + + + /*** OUTPUTNODE ***/ + std::shared_ptr<Aidge::Node> OutputNode = + Aidge::FC( + _OUTPUTNODE_IN_CHANNELS, + _OUTPUTNODE_OUT_CHANNELS, + "OutputNode" + ); + + Relu2->addChild(OutputNode, 0, 0); + OutputNode_w->addChild(OutputNode, 0, 1); + OutputNode_b->addChild(OutputNode, 0, 2); + + graph->add(OutputNode); + + + + return graph; +} diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/version.txt b/aidge_core/unit_tests/dummy_export/__cache_export/version.txt new file mode 100644 index 000000000..77d6f4ca2 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/__cache_export/version.txt @@ -0,0 +1 @@ +0.0.0 diff --git a/aidge_core/unit_tests/dummy_export/cmake/PybindModuleCreation.cmake b/aidge_core/unit_tests/dummy_export/cmake/PybindModuleCreation.cmake new file mode 100644 index 000000000..217a48351 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/cmake/PybindModuleCreation.cmake @@ -0,0 +1,22 @@ +function(generate_python_binding name target_to_bind) + + find_package(Python COMPONENTS Interpreter Development.Module) + + Include(FetchContent) + FetchContent_Declare( + PyBind11 + GIT_REPOSITORY https://github.com/pybind/pybind11.git + GIT_TAG v2.10.4 # or a later release + ) + FetchContent_MakeAvailable(PyBind11) + + message(STATUS "Creating binding for module ${name}") + file(GLOB_RECURSE pybind_src_files "python_binding/*.cpp") + + pybind11_add_module(${name} MODULE ${pybind_src_files} "NO_EXTRAS") # NO EXTRA recquired for pip install + target_include_directories(${name} PRIVATE "python_binding") + + # Link target library to bind + target_link_libraries(${name} PRIVATE ${target_to_bind}) + +endfunction() diff --git a/aidge_core/unit_tests/dummy_export/dummy_export-config.cmake.in b/aidge_core/unit_tests/dummy_export/dummy_export-config.cmake.in new file mode 100644 index 000000000..f0be5e076 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/dummy_export-config.cmake.in @@ -0,0 +1,8 @@ +@PACKAGE_INIT@ + +include(CMakeFindDependencyMacro) +find_dependency(aidge_core) + +include(${CMAKE_CURRENT_LIST_DIR}/aidge_backend_cpu-config-version.cmake) + +include(${CMAKE_CURRENT_LIST_DIR}/aidge_backend_cpu-targets.cmake) diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC1.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC1.hpp new file mode 100644 index 000000000..db45424cb --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/FC1.hpp @@ -0,0 +1,7 @@ +#ifndef EXPORT_ATTRIBUTES_FC1_H +#define EXPORT_ATTRIBUTES_FC1_H + +#define _FC1_IN_CHANNELS 64 +#define _FC1_OUT_CHANNELS 32 + +#endif /* EXPORT_ATTRIBUTES_FC1_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC1_b.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC1_b.hpp new file mode 100644 index 000000000..7bbef95ae --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/FC1_b.hpp @@ -0,0 +1,11 @@ +#ifndef EXPORT_PARAMETERS_FC1_B_H +#define EXPORT_PARAMETERS_FC1_B_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> FC1_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 32> { +{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } +}); + +#endif /* EXPORT_PARAMETERS_FC1_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC1_w.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC1_w.hpp new file mode 100644 index 000000000..ccdc12470 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/FC1_w.hpp @@ -0,0 +1,44 @@ +#ifndef EXPORT_PARAMETERS_FC1_W_H +#define EXPORT_PARAMETERS_FC1_W_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> FC1_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 32, 64> { +{ + { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164, 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, + { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245, 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, + { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219, -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365}, + { 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620, -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814}, + { -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116, -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061}, + { 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394, -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534}, + { 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535, -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270}, + { -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022, -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879}, + { -0.483628, 0.272165, -0.921403, -0.867794, 0.253838, -1.017495, -0.035984, -0.680159, -0.116601, -1.917364, -0.293144, -1.680917, 1.482456, -2.643867, -0.589814, 1.864317, 0.810974, 0.449891, -0.523071, -1.701221, 1.129147, -0.414783, 0.039269, -1.340263, 0.165569, -0.458461, -0.978111, 0.656720, 0.531054, 0.426182, 0.701776, 1.073439, -0.749516, -0.560629, -0.634230, -0.186059, -0.122258, 0.021843, 0.543000, -0.314648, -0.946935, -0.333649, 0.596433, -0.647178, 0.790704, -0.074659, -0.043766, 1.429068, -0.058342, -0.809171, 1.030495, 0.050716, -0.116684, -1.944978, -1.793352, 1.627739, -0.369663, 2.177690, 1.651580, -2.036985, -1.240169, 0.036523, -1.150051, 0.116815}, + { 1.104999, 1.341058, 0.309679, -1.755930, -0.378678, -0.806254, -1.054984, -0.320765, -0.266736, -0.225193, 0.169121, 0.865690, -0.885389, 0.095123, 0.870764, -0.091391, 1.401193, -0.193103, 0.621627, 0.369497, -0.816600, -0.202823, -0.159167, 0.872668, -0.273115, 1.938011, 0.684697, 1.704309, 1.204039, -0.959246, 1.359703, 0.799502, 0.776908, -0.756584, -0.640936, 0.990894, 0.256858, -3.137142, 0.545601, 0.109409, 0.181050, 1.120293, -0.914028, -0.097133, 0.133803, 0.496900, 1.070259, 0.223329, -0.368285, 0.345049, 1.432678, 1.382178, 0.558631, -0.126281, -1.479764, -2.136274, 0.879013, -0.931591, 0.460165, 0.663047, -0.782686, -2.017072, -1.219782, -1.615018}, + { 0.023152, -0.351595, 0.384548, -0.350487, 0.861079, -2.343885, 0.206722, 0.492284, 0.227113, -0.832889, -0.669958, -0.069160, -0.609277, -0.255370, -0.752728, -0.765413, 1.094080, 0.368862, 0.024828, -0.518220, 0.009554, -0.353964, 1.897386, -0.901690, 0.077136, -0.747170, 0.407625, -1.418082, 0.823818, -0.750032, -0.318462, -0.949275, -0.005721, -0.311060, -1.375086, 0.638032, -0.070481, 0.265967, -1.677426, -0.803207, 0.331928, -0.337461, 1.145064, 0.517522, 2.248859, -0.155701, -0.185320, -0.430223, 0.633950, 0.594881, -0.373053, -0.183769, 0.781241, -1.100458, -1.127900, 1.536747, 0.694964, -1.317671, 0.552416, 0.214635, 1.172117, 0.057319, -0.083945, -2.744316}, + { -2.083668, 1.579024, 0.846874, -0.559092, 1.025974, 0.889658, -1.337327, -2.154229, 0.283269, -0.084246, -0.448027, 1.076064, -0.171827, 0.712631, -0.291771, -1.532148, 0.525627, -0.182083, -0.584263, 0.758026, -0.011926, 0.048968, -0.683809, -0.367121, -0.808110, -0.745193, -0.025946, -0.974672, -0.667272, -1.253634, -0.933169, 1.543063, -0.558194, 0.333470, 0.300683, 0.875321, -0.650058, -0.402874, -1.479110, -1.422508, -1.490082, -1.066710, 0.818719, 1.130872, 0.726068, -0.644154, 0.015556, -1.297712, -1.807793, -0.449898, 0.678534, -0.343751, -0.438977, 1.005177, 0.789181, -0.868195, 2.963583, 0.127910, 0.762864, 2.106842, 0.059183, 1.106624, -0.173846, 0.506085}, + { -0.803235, 0.456489, 1.792648, -0.413096, 0.174623, -0.670578, 1.004736, -1.211046, -0.177172, -1.173558, 1.704121, -0.717132, -0.315196, -0.955144, -0.844640, 0.219873, 0.439474, -0.111900, 0.382651, 0.037409, -0.715340, -0.458230, -1.518173, 0.580286, -0.180067, 0.251145, 1.541854, -1.799514, 0.415876, 0.045524, -0.935430, -0.941019, 0.476378, -0.045153, -0.346679, -0.071810, 0.468796, -0.303942, 1.868755, 0.052552, -1.115326, -0.951675, 0.823079, -0.264655, -0.460295, 0.024275, 0.681858, 1.360035, -1.231762, -1.203111, -0.181563, 0.198488, -0.813774, -1.178844, 0.972454, -0.134574, 0.030472, -0.967580, 0.152757, -2.177683, -0.678582, 1.439619, 0.329668, 1.977801}, + { 0.547752, 0.150742, 0.597613, 0.320251, 0.629068, -1.048041, 1.226918, -1.397015, 0.530945, 1.934914, -0.360577, 0.601554, -1.164239, 0.144575, 0.725861, -0.442685, 0.083200, -0.289393, -1.016526, 1.067162, -0.018115, -0.224101, -0.241866, -0.064766, 2.522637, 1.326687, -0.214645, 0.652540, 0.005862, -0.888118, -1.111310, -0.301777, -0.060108, -0.383830, 0.692486, -0.268334, 0.663172, -1.008340, -1.682795, 0.617490, 0.376519, 1.881652, 1.198976, 0.919806, -0.134369, 0.542711, -0.636402, 2.075232, 0.367750, 0.078205, 1.175514, 0.312489, -0.545571, 1.806641, 0.572128, 0.969595, 2.196302, 0.144951, -0.069890, -0.024643, 0.096254, -0.913089, 0.207929, -0.024540}, + { -2.364928, 0.403653, 0.957075, 0.605313, -0.084031, -0.881650, 0.617897, -0.514700, 1.021071, -2.341326, 0.867535, 0.276200, -1.536776, 1.063557, -0.265884, -1.019689, 0.034769, 0.374245, 0.308205, 0.941602, -2.383936, 0.053763, 0.080351, 0.805516, -1.034883, 0.112969, 0.225962, 0.529344, -0.533202, 0.826293, -0.530990, -0.941042, -1.409687, -0.616595, 0.083008, 0.597792, 0.564483, -0.277788, 0.275536, -1.167859, 0.234086, 0.923334, -1.550176, -0.317221, 0.167047, 0.842336, -0.197037, -0.189047, -1.258022, 1.233136, 2.043196, -0.972316, -0.211159, -0.644789, 0.550668, 0.263230, 0.510620, -0.340782, -0.076202, -0.532805, 0.028492, -0.711909, -0.041329, -0.716095}, + { -0.438745, 1.613258, 1.203239, 0.964917, 2.008562, 2.526586, -1.076117, -1.172786, 1.202410, -1.702984, 2.141656, -0.421657, 0.506291, -1.005197, -1.210642, -1.006717, -1.024502, 0.616641, -1.584712, 0.891012, -2.477347, -0.572187, 0.864046, -1.402610, 0.412339, -0.276108, -2.752150, 0.592655, 0.632535, -0.195088, 2.281385, -1.077261, -0.790374, -1.883068, 0.079064, 0.400938, -0.359422, -0.905535, 0.275971, -0.708639, 1.268833, -1.304649, 1.220814, 0.345417, -1.035277, 1.694809, -0.453738, -0.100811, -0.711486, -2.032043, 0.247771, 0.125351, 1.414129, 1.130891, -0.594405, 0.797592, 0.053162, 0.395181, -0.421787, 0.288705, -1.071319, 0.932462, -0.609468, -0.239886}, + { 0.426226, -0.566084, -0.555236, -0.395055, -1.607937, -0.454888, 1.086999, 0.064433, -0.630807, 0.537331, -0.079178, 0.544384, -0.345341, -0.755680, 0.194209, -0.915100, 0.664959, 0.136650, 0.145284, 0.658129, 1.353991, -0.482921, -1.267343, -0.525734, 0.427054, -0.567577, -0.977804, 0.581563, 0.731378, 0.287522, 2.394391, -0.044662, -1.842992, 1.271125, -0.347839, -0.222826, -0.068077, -0.131304, -2.144952, -2.350498, -0.053892, -1.022586, 0.598608, -3.063631, -0.889890, -0.169715, -0.043919, -1.031522, -0.314142, -1.721556, -1.423945, -0.517471, -0.617123, -0.140159, -0.793929, 0.361729, 0.918396, -0.399743, -0.736005, 1.568120, -1.300957, 1.526744, -0.297900, -0.062842}, + { -1.966952, -1.071676, 1.570217, 1.112780, 0.185776, -0.637180, 1.313317, 1.172860, -0.915400, 1.177792, -1.942183, 0.390201, 1.388212, -0.477988, -1.579742, -0.683059, 1.172021, -0.980434, 0.059954, -0.457660, -0.634426, 1.500102, 0.078013, -0.986448, -0.762938, 0.195547, 1.015367, 1.245432, -0.282828, 0.081046, 0.307498, -0.669810, 0.721569, 0.057625, 0.501820, -0.104848, 1.437235, 0.117299, -0.523084, -1.118009, 1.560399, 0.104631, 0.489168, 0.760339, 1.449355, -1.377321, -0.715611, -1.029579, 0.073359, -0.825450, -0.229307, -0.421830, -0.666367, -0.440156, 0.023840, -0.751700, -0.361373, 0.986500, 0.851569, 0.123599, 0.390027, 0.277061, 0.940906, -0.103239}, + { -0.445279, -0.919782, 0.639714, -0.902529, -1.874779, -1.719761, -1.893759, 0.269624, -0.578221, -0.202651, -0.392257, 1.412725, -0.629082, 1.413975, -0.064950, -0.204246, 0.975600, -0.282429, 0.352274, 0.795323, -0.966890, 0.600321, 0.459449, 1.495051, -0.693799, -2.130963, 2.241615, 0.016742, -1.380529, -0.693764, 0.788271, -2.084727, -0.605345, -0.393199, -1.431592, -0.019263, 0.154902, 2.003049, -0.505429, -0.279594, 1.178694, 0.081671, -0.253501, -0.928567, -0.470637, -0.599760, 0.105334, -0.558767, 0.306641, -1.247424, -1.136135, 0.388699, 0.240216, -0.539604, 0.748712, 1.514203, -0.053900, 0.146477, 1.415987, 0.035719, 0.852351, -0.505780, -2.203605, 1.287532}, + { -0.138672, 0.707916, 0.732445, 0.034828, 0.916650, -0.960419, -1.104703, -1.910655, 0.738577, -1.784924, 0.377324, 0.942214, -2.147115, -0.657372, 1.937143, -0.640029, 0.813896, -1.856751, 0.293933, 0.407355, 0.828903, -0.258431, 0.651304, 1.024936, -1.113730, 0.727588, 0.244997, -1.608019, 0.678481, -0.704592, 0.512401, -0.693952, 0.200313, 0.382440, -0.155662, -1.873614, -1.368903, -0.209850, -1.454814, -0.029855, 0.192369, 1.508715, -0.212503, 1.176330, -1.738381, -0.637968, 0.576972, 0.808788, 0.434982, -0.529857, -1.056989, -0.818170, -1.858517, -1.504275, -1.812055, 1.817686, -0.827064, -0.970820, 0.661065, 0.146447, 0.291060, -0.408877, 0.068819, 0.295079}, + { 0.663102, -0.166278, 0.770570, -1.142846, -0.806847, -0.730912, -0.447671, -0.015643, 0.619293, 0.202428, 1.665242, -0.790555, 1.475059, -0.881476, 0.390759, 1.258389, 0.324598, 1.822245, -0.058715, 0.600523, 1.136708, -1.679807, 0.288505, 0.744363, -0.611639, 1.300585, 1.380471, -1.169925, -0.777400, 2.193714, -0.475082, -0.242079, -0.336258, 0.471824, -0.658170, -1.063402, 0.417935, -1.189927, -1.703003, -1.247581, 0.862522, 0.934985, 1.998402, 0.301988, -1.167236, -0.040485, -0.692792, -0.118653, -0.085074, -0.157554, -0.597173, -1.148901, 0.479436, -1.334729, 0.435822, 0.728494, -0.447077, 0.395057, -0.449488, -0.970525, 1.506991, 0.701021, 0.331930, -0.781135}, + { 0.695741, 0.447304, 0.814847, 2.051350, -0.694026, -0.032321, 0.024414, -0.642007, 1.006013, -0.816746, -1.214119, -2.295536, 0.402007, -0.404793, 0.312364, -0.727692, 0.190903, 1.319342, 2.484523, -0.751330, 0.517379, 1.607649, -1.566784, -1.809135, 1.457683, -0.908496, -2.220334, 0.243166, 0.595011, 0.379217, 1.088163, 1.147452, 0.633369, 0.346038, 0.347236, -0.325225, 1.888308, -3.072945, 1.297680, -1.506335, 0.205380, 0.664307, 0.979495, -1.097883, -0.745897, -0.303797, -0.563891, 2.451149, 0.088773, 0.480402, -0.445841, -0.637341, -0.792031, -0.643933, 0.330410, 0.895335, 1.612401, -0.050137, -0.272140, 0.770629, 0.586540, -0.882999, 2.427387, 0.907571}, + { 1.020693, -0.572768, -1.022579, -0.633937, 1.401881, -0.251258, -1.633224, -0.467908, -1.371026, -0.969493, -0.825524, 0.605472, 0.183619, -1.847969, -1.878521, 1.177194, -0.710708, 0.769348, 0.636449, 1.019374, 1.298586, -1.192946, 0.573427, 0.357284, -0.348353, 0.929739, -0.583619, -0.075304, -2.041761, -0.158822, -0.179691, -3.007082, -1.240545, 0.256757, -0.732539, 0.213922, -3.068860, -0.118184, 1.317333, 0.639406, -1.638411, -0.856709, 0.936945, -0.200855, 0.592933, 0.934265, -0.506393, -2.097188, -0.686307, -0.841321, 0.113067, -0.659559, -0.225567, 0.278005, 0.185259, 0.321431, 1.222981, -1.271038, 0.553208, -0.798184, 0.259451, 0.417953, -0.004145, -0.694951}, + { -0.227405, -0.808163, 0.415147, 0.657638, 1.917061, 1.630171, -1.438121, -0.981062, 0.436875, 1.518751, 0.353086, -0.147144, 0.741269, 1.950936, 2.739364, 0.733956, -0.655084, -0.021943, 2.113906, 1.009407, 0.544371, 0.768170, -0.927640, 0.817491, 0.744725, 0.843117, -0.691860, -0.747689, 0.265487, 0.741109, -0.117990, -0.336553, 1.219656, -0.894997, 0.185234, -0.876471, 1.620419, -0.154121, -0.562478, 0.724263, 0.392547, -0.183256, -0.952905, -0.482131, 0.056012, 1.362304, -0.669158, -1.197868, 1.035019, 0.921444, 0.293030, -0.064290, 0.039056, -1.971230, -0.748615, 1.521501, -1.063615, -1.614336, 0.859108, 0.664434, 0.582681, 0.891293, -0.682233, -1.063711}, + { 1.022504, -1.064391, -0.238194, -1.287860, -1.136086, -0.599646, 2.083999, -0.251891, 1.635609, 0.142861, 0.311812, 1.059390, -0.011250, 0.999566, -0.376215, -0.275687, 1.269079, 0.547754, -0.021728, -1.003898, 1.155573, -0.133892, -0.820203, -0.399042, 0.011735, -0.004630, -1.624290, -3.214955, -0.302276, 0.162449, -0.165589, -0.324434, -0.858639, 1.214711, -0.088071, 0.692165, -2.298264, 0.109115, -0.152067, -1.400125, -0.798508, 0.065675, 0.840315, -0.535997, 0.989161, -0.666881, 0.422332, 2.565203, -0.348443, 0.292504, 0.955866, 1.009752, 2.071980, 1.349440, 0.222731, 0.470191, -2.257708, -0.124012, 0.316573, 0.914732, -0.237629, 1.217734, -0.413807, -1.373763}, + { -0.449355, 1.434391, -0.433576, -0.174979, 0.556502, -0.430827, 1.936127, 0.067958, -0.865320, 0.760247, -0.580725, 0.018868, -0.033391, 0.721388, 0.462043, -1.425273, 0.678470, 0.302006, 0.756002, 0.167077, 0.766390, -0.043001, 0.394925, 1.800999, 0.090170, -0.554982, -0.095026, 0.112222, -1.022792, 0.053468, -0.428305, -0.314164, 1.135005, 2.346780, 0.916245, -0.659896, -0.498403, -0.046144, -0.553811, -0.108004, 0.122168, -0.002586, 0.768014, -0.692886, -1.433461, 0.473015, -0.064335, 1.647390, 0.779012, -0.843045, 1.077922, 0.382245, -1.250200, 0.643778, 0.443442, 0.904600, 1.065371, -0.027124, -0.566289, -0.665816, -0.354307, -0.877381, -1.659182, -0.191498}, + { 0.162333, 0.498699, -0.395470, 1.743060, -1.321712, -0.936546, 0.274050, -0.159812, -0.355672, -1.676516, -0.600875, 0.034010, 0.114026, -1.140778, -0.492318, -1.908774, -1.484320, 1.081611, -0.934511, 1.064218, -1.353714, -0.314849, -0.105485, 2.178031, -0.409103, 0.933178, -2.048981, -0.298461, -2.592589, -0.488420, 0.835982, -1.151600, -0.189469, 1.288512, -0.699727, -0.624615, 0.460098, -0.202874, -0.346232, 0.267220, -0.158052, 1.825733, -0.869135, 0.123580, -0.991966, 0.750955, 1.741264, -0.764096, 0.010258, -0.192117, 0.027155, -0.265093, 1.277057, 0.043134, 0.090176, 0.277584, 0.372338, 0.948639, -0.836552, -0.589544, -0.745397, 0.382427, -0.232827, -0.892618}, + { 0.882999, -0.799134, 0.054087, 0.408222, 1.345659, 0.814261, -1.389691, 0.093555, -1.494835, -1.735067, -0.009094, 1.548697, -0.411162, -0.575812, 0.405427, 0.855615, 0.896117, 0.274727, -0.114478, -0.488888, 0.450323, 0.212904, -0.196283, 0.326608, -1.224662, 0.087978, 1.183714, -0.601534, -0.298352, -0.654938, 0.161118, 1.607924, -0.909086, 0.273687, -2.044743, 0.746246, -1.040757, -0.908652, -0.731929, -0.509273, 0.037672, 0.032804, 0.348324, 0.257188, 0.500905, 0.020275, 0.119230, -0.704439, -2.530083, -1.678277, -0.676852, -2.791788, 0.164539, -0.123641, -1.377383, -0.361288, -1.299663, -1.483092, 0.434668, -1.035801, 1.730346, -0.469573, 0.417228, 0.019251}, + { -0.072003, -0.198577, -0.569901, 0.935016, 0.314889, 0.034155, 0.430543, 0.898514, -0.164523, -0.214377, -0.653906, 0.201249, -1.524915, 0.701587, -0.324459, -0.917747, 1.476484, 0.469838, -0.381519, -1.311817, 0.720365, -0.310191, 1.025053, 1.889874, -0.966916, -0.871145, -0.383549, 1.698432, -0.956719, -1.682718, 1.309966, -0.491572, -0.018925, -1.528414, -1.133854, 1.203479, -1.144830, -0.353264, -0.932797, -0.802824, -1.524664, 0.034604, 1.323310, -0.947217, 0.987849, 0.756220, -0.057331, -0.199653, -1.039496, 0.408915, 0.663561, -1.235246, -0.877334, -1.213858, -0.555124, 0.169166, 0.415630, 0.262026, 1.884413, -1.458849, -0.292172, 0.790321, 1.437780, 0.489940}, + { 1.181251, -0.222410, -0.539658, 1.178497, -0.118368, 0.197939, -0.060905, -1.908541, -1.067447, -0.342585, 2.388675, -0.280412, 1.539183, 0.566500, 0.411963, 0.188143, 1.485968, -1.613623, 0.613969, -1.523564, 0.413067, -0.666758, -0.972755, 0.970277, 0.681646, 0.277529, 1.423990, -0.392149, 0.430833, -0.371182, 1.011777, -0.384506, -1.010383, 0.828187, 1.044202, 0.477430, 0.180531, 0.352829, -0.393196, 0.816648, 0.551559, 0.998243, 0.261241, 0.620633, 0.858043, -0.634724, 1.524376, -1.243713, 1.891966, 0.661525, 0.833298, 1.810750, 0.947274, -0.728384, -1.603718, -0.813418, 1.071318, -0.801694, -0.168650, 0.474758, 0.241127, 0.903248, 0.334180, 0.991895}, + { -1.314739, 0.998850, -0.519051, -2.067554, 1.896067, 0.501201, 0.556987, 0.641588, 0.272504, -0.742982, -0.470703, 1.240292, 1.259373, 0.565328, -0.720676, 0.004026, 0.600226, 0.090100, 0.011061, 0.369402, 0.011070, 0.233415, -0.282847, -0.903427, -0.816539, -0.871172, -2.226825, -1.740848, -0.339944, 0.215897, 0.323387, -0.254469, -0.515725, 0.073948, 0.563910, -0.653186, -0.306754, -0.546975, 1.372907, -0.970252, -0.487223, -0.078836, -1.081625, 1.588108, 1.202025, -2.122401, -0.237531, -0.685333, 0.173563, -0.576237, -0.297172, -1.762223, 0.460683, -1.041090, 0.097664, 0.414681, -0.378730, -0.441698, -0.569381, 1.072555, -1.684300, 0.737147, 0.341000, 0.049181}, + { -1.632741, 0.077021, -0.530017, -0.163073, -1.158130, 2.668592, -0.433849, 0.091581, 0.232981, -0.300411, 0.835452, -0.168550, 0.713216, 0.851907, -1.087314, 0.900005, -0.786708, -0.618744, 0.001694, -3.176547, 0.126415, 0.362694, 0.369459, 0.931487, -1.290275, -0.717392, -0.335578, 0.703348, 0.756063, 0.260056, 0.778826, -0.129166, 0.101717, -0.342590, -0.295437, 0.198471, -1.717762, 0.015128, -0.576792, 0.512532, 0.672616, 1.389580, -0.476444, 0.404700, -0.532910, -1.795952, 0.241228, 1.383689, -1.515232, 0.271979, -1.543068, -0.150854, -1.174402, 0.882491, 0.149071, -0.917308, -0.689293, -0.382830, -1.111705, -1.484126, -0.148355, -0.445174, -0.362349, -2.037557} +} +}); + +#endif /* EXPORT_PARAMETERS_FC1_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC2.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC2.hpp new file mode 100644 index 000000000..a2b18e037 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/FC2.hpp @@ -0,0 +1,7 @@ +#ifndef EXPORT_ATTRIBUTES_FC2_H +#define EXPORT_ATTRIBUTES_FC2_H + +#define _FC2_IN_CHANNELS 32 +#define _FC2_OUT_CHANNELS 16 + +#endif /* EXPORT_ATTRIBUTES_FC2_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC2_b.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC2_b.hpp new file mode 100644 index 000000000..6a2087cc8 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/FC2_b.hpp @@ -0,0 +1,11 @@ +#ifndef EXPORT_PARAMETERS_FC2_B_H +#define EXPORT_PARAMETERS_FC2_B_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> FC2_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 16> { +{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } +}); + +#endif /* EXPORT_PARAMETERS_FC2_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC2_w.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC2_w.hpp new file mode 100644 index 000000000..07e90c19f --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/FC2_w.hpp @@ -0,0 +1,28 @@ +#ifndef EXPORT_PARAMETERS_FC2_W_H +#define EXPORT_PARAMETERS_FC2_W_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> FC2_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 16, 32> { +{ + { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164}, + { 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, + { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245}, + { 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, + { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219}, + { -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365}, + { 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620}, + { -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814}, + { -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116}, + { -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061}, + { 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394}, + { -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534}, + { 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535}, + { -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270}, + { -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022}, + { -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879} +} +}); + +#endif /* EXPORT_PARAMETERS_FC2_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode.hpp new file mode 100644 index 000000000..d6da9ad65 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode.hpp @@ -0,0 +1,7 @@ +#ifndef EXPORT_ATTRIBUTES_INPUTNODE_H +#define EXPORT_ATTRIBUTES_INPUTNODE_H + +#define _INPUTNODE_IN_CHANNELS 3072 +#define _INPUTNODE_OUT_CHANNELS 64 + +#endif /* EXPORT_ATTRIBUTES_INPUTNODE_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_b.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_b.hpp new file mode 100644 index 000000000..e5b492ced --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_b.hpp @@ -0,0 +1,11 @@ +#ifndef EXPORT_PARAMETERS_INPUTNODE_B_H +#define EXPORT_PARAMETERS_INPUTNODE_B_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> InputNode_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 64> { +{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } +}); + +#endif /* EXPORT_PARAMETERS_INPUTNODE_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_w.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_w.hpp new file mode 100644 index 000000000..e18c700f3 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_w.hpp @@ -0,0 +1,76 @@ +#ifndef EXPORT_PARAMETERS_INPUTNODE_W_H +#define EXPORT_PARAMETERS_INPUTNODE_W_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> InputNode_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 64, 3072> { +{ + { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164, 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088, 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245, 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640, 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219, -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365, 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620, -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814, -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116, -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061, 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394, -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534, 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535, -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270, -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022, -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879, -0.483628, 0.272165, -0.921403, -0.867794, 0.253838, -1.017495, -0.035984, -0.680159, -0.116601, -1.917364, -0.293144, -1.680917, 1.482456, -2.643867, -0.589814, 1.864317, 0.810974, 0.449891, -0.523071, -1.701221, 1.129147, -0.414783, 0.039269, -1.340263, 0.165569, -0.458461, -0.978111, 0.656720, 0.531054, 0.426182, 0.701776, 1.073439, -0.749516, -0.560629, -0.634230, -0.186059, -0.122258, 0.021843, 0.543000, -0.314648, -0.946935, -0.333649, 0.596433, -0.647178, 0.790704, -0.074659, -0.043766, 1.429068, -0.058342, -0.809171, 1.030495, 0.050716, -0.116684, -1.944978, -1.793352, 1.627739, -0.369663, 2.177690, 1.651580, -2.036985, -1.240169, 0.036523, -1.150051, 0.116815, 1.104999, 1.341058, 0.309679, -1.755930, -0.378678, -0.806254, -1.054984, -0.320765, -0.266736, -0.225193, 0.169121, 0.865690, -0.885389, 0.095123, 0.870764, -0.091391, 1.401193, -0.193103, 0.621627, 0.369497, -0.816600, -0.202823, -0.159167, 0.872668, -0.273115, 1.938011, 0.684697, 1.704309, 1.204039, -0.959246, 1.359703, 0.799502, 0.776908, -0.756584, -0.640936, 0.990894, 0.256858, -3.137142, 0.545601, 0.109409, 0.181050, 1.120293, -0.914028, -0.097133, 0.133803, 0.496900, 1.070259, 0.223329, -0.368285, 0.345049, 1.432678, 1.382178, 0.558631, -0.126281, -1.479764, -2.136274, 0.879013, -0.931591, 0.460165, 0.663047, -0.782686, -2.017072, -1.219782, -1.615018, 0.023152, -0.351595, 0.384548, -0.350487, 0.861079, -2.343885, 0.206722, 0.492284, 0.227113, -0.832889, -0.669958, -0.069160, -0.609277, -0.255370, -0.752728, -0.765413, 1.094080, 0.368862, 0.024828, -0.518220, 0.009554, -0.353964, 1.897386, -0.901690, 0.077136, -0.747170, 0.407625, -1.418082, 0.823818, -0.750032, -0.318462, -0.949275, -0.005721, -0.311060, -1.375086, 0.638032, -0.070481, 0.265967, -1.677426, -0.803207, 0.331928, -0.337461, 1.145064, 0.517522, 2.248859, -0.155701, -0.185320, -0.430223, 0.633950, 0.594881, -0.373053, -0.183769, 0.781241, -1.100458, -1.127900, 1.536747, 0.694964, -1.317671, 0.552416, 0.214635, 1.172117, 0.057319, -0.083945, -2.744316, -2.083668, 1.579024, 0.846874, -0.559092, 1.025974, 0.889658, -1.337327, -2.154229, 0.283269, -0.084246, -0.448027, 1.076064, -0.171827, 0.712631, -0.291771, -1.532148, 0.525627, -0.182083, -0.584263, 0.758026, -0.011926, 0.048968, -0.683809, -0.367121, -0.808110, -0.745193, -0.025946, -0.974672, -0.667272, -1.253634, -0.933169, 1.543063, -0.558194, 0.333470, 0.300683, 0.875321, -0.650058, -0.402874, -1.479110, -1.422508, -1.490082, -1.066710, 0.818719, 1.130872, 0.726068, -0.644154, 0.015556, -1.297712, -1.807793, -0.449898, 0.678534, -0.343751, -0.438977, 1.005177, 0.789181, -0.868195, 2.963583, 0.127910, 0.762864, 2.106842, 0.059183, 1.106624, -0.173846, 0.506085, -0.803235, 0.456489, 1.792648, -0.413096, 0.174623, -0.670578, 1.004736, -1.211046, -0.177172, -1.173558, 1.704121, -0.717132, -0.315196, -0.955144, -0.844640, 0.219873, 0.439474, -0.111900, 0.382651, 0.037409, -0.715340, -0.458230, -1.518173, 0.580286, -0.180067, 0.251145, 1.541854, -1.799514, 0.415876, 0.045524, -0.935430, -0.941019, 0.476378, -0.045153, -0.346679, -0.071810, 0.468796, -0.303942, 1.868755, 0.052552, -1.115326, -0.951675, 0.823079, -0.264655, -0.460295, 0.024275, 0.681858, 1.360035, -1.231762, -1.203111, -0.181563, 0.198488, -0.813774, -1.178844, 0.972454, -0.134574, 0.030472, -0.967580, 0.152757, -2.177683, -0.678582, 1.439619, 0.329668, 1.977801, 0.547752, 0.150742, 0.597613, 0.320251, 0.629068, -1.048041, 1.226918, -1.397015, 0.530945, 1.934914, -0.360577, 0.601554, -1.164239, 0.144575, 0.725861, -0.442685, 0.083200, -0.289393, -1.016526, 1.067162, -0.018115, -0.224101, -0.241866, -0.064766, 2.522637, 1.326687, -0.214645, 0.652540, 0.005862, -0.888118, -1.111310, -0.301777, -0.060108, -0.383830, 0.692486, -0.268334, 0.663172, -1.008340, -1.682795, 0.617490, 0.376519, 1.881652, 1.198976, 0.919806, -0.134369, 0.542711, -0.636402, 2.075232, 0.367750, 0.078205, 1.175514, 0.312489, -0.545571, 1.806641, 0.572128, 0.969595, 2.196302, 0.144951, -0.069890, -0.024643, 0.096254, -0.913089, 0.207929, -0.024540, -2.364928, 0.403653, 0.957075, 0.605313, -0.084031, -0.881650, 0.617897, -0.514700, 1.021071, -2.341326, 0.867535, 0.276200, -1.536776, 1.063557, -0.265884, -1.019689, 0.034769, 0.374245, 0.308205, 0.941602, -2.383936, 0.053763, 0.080351, 0.805516, -1.034883, 0.112969, 0.225962, 0.529344, -0.533202, 0.826293, -0.530990, -0.941042, -1.409687, -0.616595, 0.083008, 0.597792, 0.564483, -0.277788, 0.275536, -1.167859, 0.234086, 0.923334, -1.550176, -0.317221, 0.167047, 0.842336, -0.197037, -0.189047, -1.258022, 1.233136, 2.043196, -0.972316, -0.211159, -0.644789, 0.550668, 0.263230, 0.510620, -0.340782, -0.076202, -0.532805, 0.028492, -0.711909, -0.041329, -0.716095, -0.438745, 1.613258, 1.203239, 0.964917, 2.008562, 2.526586, -1.076117, -1.172786, 1.202410, -1.702984, 2.141656, -0.421657, 0.506291, -1.005197, -1.210642, -1.006717, -1.024502, 0.616641, -1.584712, 0.891012, -2.477347, -0.572187, 0.864046, -1.402610, 0.412339, -0.276108, -2.752150, 0.592655, 0.632535, -0.195088, 2.281385, -1.077261, -0.790374, -1.883068, 0.079064, 0.400938, -0.359422, -0.905535, 0.275971, -0.708639, 1.268833, -1.304649, 1.220814, 0.345417, -1.035277, 1.694809, -0.453738, -0.100811, -0.711486, -2.032043, 0.247771, 0.125351, 1.414129, 1.130891, -0.594405, 0.797592, 0.053162, 0.395181, -0.421787, 0.288705, -1.071319, 0.932462, -0.609468, -0.239886, 0.426226, -0.566084, -0.555236, -0.395055, -1.607937, -0.454888, 1.086999, 0.064433, -0.630807, 0.537331, -0.079178, 0.544384, -0.345341, -0.755680, 0.194209, -0.915100, 0.664959, 0.136650, 0.145284, 0.658129, 1.353991, -0.482921, -1.267343, -0.525734, 0.427054, -0.567577, -0.977804, 0.581563, 0.731378, 0.287522, 2.394391, -0.044662, -1.842992, 1.271125, -0.347839, -0.222826, -0.068077, -0.131304, -2.144952, -2.350498, -0.053892, -1.022586, 0.598608, -3.063631, -0.889890, -0.169715, -0.043919, -1.031522, -0.314142, -1.721556, -1.423945, -0.517471, -0.617123, -0.140159, -0.793929, 0.361729, 0.918396, -0.399743, -0.736005, 1.568120, -1.300957, 1.526744, -0.297900, -0.062842, -1.966952, -1.071676, 1.570217, 1.112780, 0.185776, -0.637180, 1.313317, 1.172860, -0.915400, 1.177792, -1.942183, 0.390201, 1.388212, -0.477988, -1.579742, -0.683059, 1.172021, -0.980434, 0.059954, -0.457660, -0.634426, 1.500102, 0.078013, -0.986448, -0.762938, 0.195547, 1.015367, 1.245432, -0.282828, 0.081046, 0.307498, -0.669810, 0.721569, 0.057625, 0.501820, -0.104848, 1.437235, 0.117299, -0.523084, -1.118009, 1.560399, 0.104631, 0.489168, 0.760339, 1.449355, -1.377321, -0.715611, -1.029579, 0.073359, -0.825450, -0.229307, -0.421830, -0.666367, -0.440156, 0.023840, -0.751700, -0.361373, 0.986500, 0.851569, 0.123599, 0.390027, 0.277061, 0.940906, -0.103239, -0.445279, -0.919782, 0.639714, -0.902529, -1.874779, -1.719761, -1.893759, 0.269624, -0.578221, -0.202651, -0.392257, 1.412725, -0.629082, 1.413975, -0.064950, -0.204246, 0.975600, -0.282429, 0.352274, 0.795323, -0.966890, 0.600321, 0.459449, 1.495051, -0.693799, -2.130963, 2.241615, 0.016742, -1.380529, -0.693764, 0.788271, -2.084727, -0.605345, -0.393199, -1.431592, -0.019263, 0.154902, 2.003049, -0.505429, -0.279594, 1.178694, 0.081671, -0.253501, -0.928567, -0.470637, -0.599760, 0.105334, -0.558767, 0.306641, -1.247424, -1.136135, 0.388699, 0.240216, -0.539604, 0.748712, 1.514203, -0.053900, 0.146477, 1.415987, 0.035719, 0.852351, -0.505780, -2.203605, 1.287532, -0.138672, 0.707916, 0.732445, 0.034828, 0.916650, -0.960419, -1.104703, -1.910655, 0.738577, -1.784924, 0.377324, 0.942214, -2.147115, -0.657372, 1.937143, -0.640029, 0.813896, -1.856751, 0.293933, 0.407355, 0.828903, -0.258431, 0.651304, 1.024936, -1.113730, 0.727588, 0.244997, -1.608019, 0.678481, -0.704592, 0.512401, -0.693952, 0.200313, 0.382440, -0.155662, -1.873614, -1.368903, -0.209850, -1.454814, -0.029855, 0.192369, 1.508715, -0.212503, 1.176330, -1.738381, -0.637968, 0.576972, 0.808788, 0.434982, -0.529857, -1.056989, -0.818170, -1.858517, -1.504275, -1.812055, 1.817686, -0.827064, -0.970820, 0.661065, 0.146447, 0.291060, -0.408877, 0.068819, 0.295079, 0.663102, -0.166278, 0.770570, -1.142846, -0.806847, -0.730912, -0.447671, -0.015643, 0.619293, 0.202428, 1.665242, -0.790555, 1.475059, -0.881476, 0.390759, 1.258389, 0.324598, 1.822245, -0.058715, 0.600523, 1.136708, -1.679807, 0.288505, 0.744363, -0.611639, 1.300585, 1.380471, -1.169925, -0.777400, 2.193714, -0.475082, -0.242079, -0.336258, 0.471824, -0.658170, -1.063402, 0.417935, -1.189927, -1.703003, -1.247581, 0.862522, 0.934985, 1.998402, 0.301988, -1.167236, -0.040485, -0.692792, -0.118653, -0.085074, -0.157554, -0.597173, -1.148901, 0.479436, -1.334729, 0.435822, 0.728494, -0.447077, 0.395057, -0.449488, -0.970525, 1.506991, 0.701021, 0.331930, -0.781135, 0.695741, 0.447304, 0.814847, 2.051350, -0.694026, -0.032321, 0.024414, -0.642007, 1.006013, -0.816746, -1.214119, -2.295536, 0.402007, -0.404793, 0.312364, -0.727692, 0.190903, 1.319342, 2.484523, -0.751330, 0.517379, 1.607649, -1.566784, -1.809135, 1.457683, -0.908496, -2.220334, 0.243166, 0.595011, 0.379217, 1.088163, 1.147452, 0.633369, 0.346038, 0.347236, -0.325225, 1.888308, -3.072945, 1.297680, -1.506335, 0.205380, 0.664307, 0.979495, -1.097883, -0.745897, -0.303797, -0.563891, 2.451149, 0.088773, 0.480402, -0.445841, -0.637341, -0.792031, -0.643933, 0.330410, 0.895335, 1.612401, -0.050137, -0.272140, 0.770629, 0.586540, -0.882999, 2.427387, 0.907571, 1.020693, -0.572768, -1.022579, -0.633937, 1.401881, -0.251258, -1.633224, -0.467908, -1.371026, -0.969493, -0.825524, 0.605472, 0.183619, -1.847969, -1.878521, 1.177194, -0.710708, 0.769348, 0.636449, 1.019374, 1.298586, -1.192946, 0.573427, 0.357284, -0.348353, 0.929739, -0.583619, -0.075304, -2.041761, -0.158822, -0.179691, -3.007082, -1.240545, 0.256757, -0.732539, 0.213922, -3.068860, -0.118184, 1.317333, 0.639406, -1.638411, -0.856709, 0.936945, -0.200855, 0.592933, 0.934265, -0.506393, -2.097188, -0.686307, -0.841321, 0.113067, -0.659559, -0.225567, 0.278005, 0.185259, 0.321431, 1.222981, -1.271038, 0.553208, -0.798184, 0.259451, 0.417953, -0.004145, -0.694951, -0.227405, -0.808163, 0.415147, 0.657638, 1.917061, 1.630171, -1.438121, -0.981062, 0.436875, 1.518751, 0.353086, -0.147144, 0.741269, 1.950936, 2.739364, 0.733956, -0.655084, -0.021943, 2.113906, 1.009407, 0.544371, 0.768170, -0.927640, 0.817491, 0.744725, 0.843117, -0.691860, -0.747689, 0.265487, 0.741109, -0.117990, -0.336553, 1.219656, -0.894997, 0.185234, -0.876471, 1.620419, -0.154121, -0.562478, 0.724263, 0.392547, -0.183256, -0.952905, -0.482131, 0.056012, 1.362304, -0.669158, -1.197868, 1.035019, 0.921444, 0.293030, -0.064290, 0.039056, -1.971230, -0.748615, 1.521501, -1.063615, -1.614336, 0.859108, 0.664434, 0.582681, 0.891293, -0.682233, -1.063711, 1.022504, -1.064391, -0.238194, -1.287860, -1.136086, -0.599646, 2.083999, -0.251891, 1.635609, 0.142861, 0.311812, 1.059390, -0.011250, 0.999566, -0.376215, -0.275687, 1.269079, 0.547754, -0.021728, -1.003898, 1.155573, -0.133892, -0.820203, -0.399042, 0.011735, -0.004630, -1.624290, -3.214955, -0.302276, 0.162449, -0.165589, -0.324434, -0.858639, 1.214711, -0.088071, 0.692165, -2.298264, 0.109115, -0.152067, -1.400125, -0.798508, 0.065675, 0.840315, -0.535997, 0.989161, -0.666881, 0.422332, 2.565203, -0.348443, 0.292504, 0.955866, 1.009752, 2.071980, 1.349440, 0.222731, 0.470191, -2.257708, -0.124012, 0.316573, 0.914732, -0.237629, 1.217734, -0.413807, -1.373763, -0.449355, 1.434391, -0.433576, -0.174979, 0.556502, -0.430827, 1.936127, 0.067958, -0.865320, 0.760247, -0.580725, 0.018868, -0.033391, 0.721388, 0.462043, -1.425273, 0.678470, 0.302006, 0.756002, 0.167077, 0.766390, -0.043001, 0.394925, 1.800999, 0.090170, -0.554982, -0.095026, 0.112222, -1.022792, 0.053468, -0.428305, -0.314164, 1.135005, 2.346780, 0.916245, -0.659896, -0.498403, -0.046144, -0.553811, -0.108004, 0.122168, -0.002586, 0.768014, -0.692886, -1.433461, 0.473015, -0.064335, 1.647390, 0.779012, -0.843045, 1.077922, 0.382245, -1.250200, 0.643778, 0.443442, 0.904600, 1.065371, -0.027124, -0.566289, -0.665816, -0.354307, -0.877381, -1.659182, -0.191498, 0.162333, 0.498699, -0.395470, 1.743060, -1.321712, -0.936546, 0.274050, -0.159812, -0.355672, -1.676516, -0.600875, 0.034010, 0.114026, -1.140778, -0.492318, -1.908774, -1.484320, 1.081611, -0.934511, 1.064218, -1.353714, -0.314849, -0.105485, 2.178031, -0.409103, 0.933178, -2.048981, -0.298461, -2.592589, -0.488420, 0.835982, -1.151600, -0.189469, 1.288512, -0.699727, -0.624615, 0.460098, -0.202874, -0.346232, 0.267220, -0.158052, 1.825733, -0.869135, 0.123580, -0.991966, 0.750955, 1.741264, -0.764096, 0.010258, -0.192117, 0.027155, -0.265093, 1.277057, 0.043134, 0.090176, 0.277584, 0.372338, 0.948639, -0.836552, -0.589544, -0.745397, 0.382427, -0.232827, -0.892618, 0.882999, -0.799134, 0.054087, 0.408222, 1.345659, 0.814261, -1.389691, 0.093555, -1.494835, -1.735067, -0.009094, 1.548697, -0.411162, -0.575812, 0.405427, 0.855615, 0.896117, 0.274727, -0.114478, -0.488888, 0.450323, 0.212904, -0.196283, 0.326608, -1.224662, 0.087978, 1.183714, -0.601534, -0.298352, -0.654938, 0.161118, 1.607924, -0.909086, 0.273687, -2.044743, 0.746246, -1.040757, -0.908652, -0.731929, -0.509273, 0.037672, 0.032804, 0.348324, 0.257188, 0.500905, 0.020275, 0.119230, -0.704439, -2.530083, -1.678277, -0.676852, -2.791788, 0.164539, -0.123641, -1.377383, -0.361288, -1.299663, -1.483092, 0.434668, -1.035801, 1.730346, -0.469573, 0.417228, 0.019251, -0.072003, -0.198577, -0.569901, 0.935016, 0.314889, 0.034155, 0.430543, 0.898514, -0.164523, -0.214377, -0.653906, 0.201249, -1.524915, 0.701587, -0.324459, -0.917747, 1.476484, 0.469838, -0.381519, -1.311817, 0.720365, -0.310191, 1.025053, 1.889874, -0.966916, -0.871145, -0.383549, 1.698432, -0.956719, -1.682718, 1.309966, -0.491572, -0.018925, -1.528414, -1.133854, 1.203479, -1.144830, -0.353264, -0.932797, -0.802824, -1.524664, 0.034604, 1.323310, -0.947217, 0.987849, 0.756220, -0.057331, -0.199653, -1.039496, 0.408915, 0.663561, -1.235246, -0.877334, -1.213858, -0.555124, 0.169166, 0.415630, 0.262026, 1.884413, -1.458849, -0.292172, 0.790321, 1.437780, 0.489940, 1.181251, -0.222410, -0.539658, 1.178497, -0.118368, 0.197939, -0.060905, -1.908541, -1.067447, -0.342585, 2.388675, -0.280412, 1.539183, 0.566500, 0.411963, 0.188143, 1.485968, -1.613623, 0.613969, -1.523564, 0.413067, -0.666758, -0.972755, 0.970277, 0.681646, 0.277529, 1.423990, -0.392149, 0.430833, -0.371182, 1.011777, -0.384506, -1.010383, 0.828187, 1.044202, 0.477430, 0.180531, 0.352829, -0.393196, 0.816648, 0.551559, 0.998243, 0.261241, 0.620633, 0.858043, -0.634724, 1.524376, -1.243713, 1.891966, 0.661525, 0.833298, 1.810750, 0.947274, -0.728384, -1.603718, -0.813418, 1.071318, -0.801694, -0.168650, 0.474758, 0.241127, 0.903248, 0.334180, 0.991895, -1.314739, 0.998850, -0.519051, -2.067554, 1.896067, 0.501201, 0.556987, 0.641588, 0.272504, -0.742982, -0.470703, 1.240292, 1.259373, 0.565328, -0.720676, 0.004026, 0.600226, 0.090100, 0.011061, 0.369402, 0.011070, 0.233415, -0.282847, -0.903427, -0.816539, -0.871172, -2.226825, -1.740848, -0.339944, 0.215897, 0.323387, -0.254469, -0.515725, 0.073948, 0.563910, -0.653186, -0.306754, -0.546975, 1.372907, -0.970252, -0.487223, -0.078836, -1.081625, 1.588108, 1.202025, -2.122401, -0.237531, -0.685333, 0.173563, -0.576237, -0.297172, -1.762223, 0.460683, -1.041090, 0.097664, 0.414681, -0.378730, -0.441698, -0.569381, 1.072555, -1.684300, 0.737147, 0.341000, 0.049181, -1.632741, 0.077021, -0.530017, -0.163073, -1.158130, 2.668592, -0.433849, 0.091581, 0.232981, -0.300411, 0.835452, -0.168550, 0.713216, 0.851907, -1.087314, 0.900005, -0.786708, -0.618744, 0.001694, -3.176547, 0.126415, 0.362694, 0.369459, 0.931487, -1.290275, -0.717392, -0.335578, 0.703348, 0.756063, 0.260056, 0.778826, -0.129166, 0.101717, -0.342590, -0.295437, 0.198471, -1.717762, 0.015128, -0.576792, 0.512532, 0.672616, 1.389580, -0.476444, 0.404700, -0.532910, -1.795952, 0.241228, 1.383689, -1.515232, 0.271979, -1.543068, -0.150854, -1.174402, 0.882491, 0.149071, -0.917308, -0.689293, -0.382830, -1.111705, -1.484126, -0.148355, -0.445174, -0.362349, -2.037557, -0.949282, -1.611513, -0.153610, 0.424405, -0.395808, 1.023179, 0.975042, -0.311931, 0.324270, 0.113626, 0.309115, -0.332104, -0.238800, -0.368156, 0.400204, 0.779575, -1.039874, -0.180268, 0.655636, 0.785250, -1.127972, 0.777665, 0.016652, 0.727648, -1.386528, 0.678570, 0.272134, -0.734405, 0.346691, 0.710352, 0.413029, 1.777285, 0.155423, -0.484363, 1.320690, -1.946193, -0.524754, -0.771088, -0.524043, 0.604248, -0.816410, 0.472590, 0.311729, 0.459517, 0.275026, 1.501116, 0.012700, 0.194177, -1.557604, 1.287073, 0.858426, -0.366481, -0.492214, 0.540634, -0.216906, 1.056813, 0.108197, 0.326910, 0.087416, -0.722098, -0.256490, 0.602468, 0.997557, -0.674882, -1.212450, 0.208286, 0.332696, -2.512025, -1.130804, 0.673082, -1.404227, -0.519971, 0.151259, 1.565283, -0.179690, 3.395982, 0.026674, -1.768538, -0.786760, -0.626921, -0.460870, 0.031497, -0.499570, 0.244112, -0.106123, 0.594928, 0.170613, 1.934060, 0.623652, 1.197117, -0.110753, -1.273471, 1.488819, -1.185202, 0.929832, -0.626908, 0.888896, -1.537817, 1.271557, -0.716535, -0.464746, 1.185983, 1.854573, 1.425654, -0.058017, -0.799256, 0.199133, -0.372743, -0.782147, -0.250217, -0.433804, 0.302341, 0.958295, 0.577269, -0.597675, 0.314995, 1.007424, -1.008409, 1.329026, 2.672855, 0.998121, 0.112067, 0.621820, 0.410118, 0.875217, -0.653587, 0.630092, 0.656486, 0.819713, 1.881184, 1.612515, 0.570351, -0.235872, 1.513090, 0.096251, 0.057704, -2.665689, 2.195297, -0.780487, -0.533711, -0.066655, -0.448292, -0.190116, 1.032401, 1.406327, -2.502980, -3.354525, 0.273516, 1.866227, 0.377479, 0.603672, 2.100813, 0.560821, -2.054955, 0.294400, -0.702300, 0.245335, -1.990072, 1.331997, 0.240215, -1.157135, -0.986040, 0.094928, 0.310835, 1.343763, 0.611746, -1.530175, 0.958943, 0.312722, 0.799592, -0.721303, 1.173564, -0.672806, -1.797724, 1.004274, -0.386549, 1.453313, -0.063464, 0.013326, 0.878770, -0.071918, -0.329081, -1.047271, 0.103185, -1.203935, 1.063529, -1.318201, 0.814826, 0.313617, -0.437196, 0.199292, -1.691726, -0.373155, -0.320716, 0.369388, 0.154613, -0.500642, -0.215388, 0.843930, -0.794182, -0.562701, 1.475003, 1.817497, 0.291827, 0.101184, 0.643614, -1.082114, -0.320927, 0.268631, -0.829719, 1.740005, -1.009110, 0.260317, -0.119149, -3.099813, -0.484698, 0.170382, 2.142591, 0.884803, -0.084357, -0.333901, 0.542875, 0.408539, 0.191847, -2.333756, -0.190223, 0.353178, -0.478883, -1.652882, -1.062859, -0.973991, 0.706297, -0.987439, -1.111054, 0.016979, -0.965271, -0.126417, 0.185341, 1.020485, 0.927526, -0.687493, 0.186440, 0.258571, 1.418577, 0.272011, 1.191018, -1.985886, -0.178206, 0.025245, 0.853979, -0.219570, -0.115001, 1.075246, 0.332232, 0.646989, 0.038275, -1.700743, 0.274573, -1.093827, -0.999136, 0.973571, -0.102699, 0.525674, 0.577398, -0.752118, 1.026548, 1.114586, 1.369077, 0.584804, -0.621655, 1.168142, 0.804781, 0.343986, 1.096203, 1.070783, 1.806614, -1.190219, -0.198395, -0.963841, -1.604436, -1.206218, -0.090030, -1.204958, 0.051241, -0.064168, -1.143898, -0.845679, 0.557284, -0.452700, 0.498488, 0.110566, -0.650531, -0.372469, -1.809649, -0.047768, 0.590213, -1.239304, 1.075142, 0.102358, 0.349711, -1.567159, 2.841117, -1.355863, -0.675081, 1.360123, -1.135762, 0.580593, 0.215153, -1.305609, -0.741612, 0.289778, 0.528629, -0.038775, 0.165159, -0.281788, -0.230657, 0.741059, -1.011146, -1.999856, -0.688773, -0.393231, 0.423286, -0.524114, -1.335793, 0.485363, -0.006235, -0.169893, 0.060844, 0.587908, 0.591803, 1.300798, 0.207293, -0.011734, 0.396885, 0.493708, 0.094967, 0.129666, -0.461424, 0.391614, -1.299748, 1.165409, -0.333323, -0.674106, 0.604386, -1.632012, -0.666379, -0.449477, 1.772636, -0.359355, 0.276887, 0.825800, -0.419506, 1.212223, 0.669444, 0.077342, 2.958738, -0.544855, 0.346167, -0.758018, 0.907585, 0.426352, -0.546804, 1.497249, 0.320760, 1.542374, -0.436480, -0.165733, 0.735464, 0.376609, 0.727380, 1.467214, -0.045451, 0.828314, 0.557330, -0.704539, 1.426054, -0.143571, 1.415633, -1.029139, -0.685039, 3.734304, -0.399661, 0.973099, 1.363623, -0.412255, -0.825430, -0.093730, -0.072947, -2.813968, -1.236721, -0.114895, -1.899929, 0.377031, 0.503660, -0.724370, 0.146165, 1.325534, -1.177018, -0.133923, 0.132714, 0.598730, 1.007868, 0.204387, 0.205703, -1.167212, -2.288567, -0.344970, -0.482560, 0.473897, 0.614909, 1.272410, -1.425560, -1.296793, 1.514753, -0.035810, 1.974070, -2.745449, 2.172904, -1.414158, 2.639008, -0.768351, -1.916167, -0.194903, -0.439431, 1.382882, -1.183044, 1.417865, -0.319718, 0.439528, 2.562625, -0.835081, 1.387452, -1.035946, -1.466946, -1.200867, -0.906393, 0.036630, -0.374630, 0.871451, 0.833122, 1.253911, 0.567000, -0.537273, 1.376860, 0.760199, 0.838544, -0.320509, 1.032247, -0.955733, 1.140584, -0.409046, 0.075324, -1.463270, 0.494432, -0.210940, -1.047624, 0.827575, 1.219817, -0.300007, 0.269813, -1.480722, -1.200738, 0.135519, -1.401633, 0.244732, -0.801174, -0.847630, 0.914612, -1.664178, -0.329912, -0.222111, 0.668047, -1.233335, -0.340507, 0.017628, -1.942019, -0.024778, 0.153863, 0.374352, -1.316392, 1.012054, 1.741003, 1.305630, 0.891019, 0.507232, 0.600619, 1.130118, 0.891952, -1.102907, -0.258095, -0.862249, -2.186176, -1.528700, -1.588713, -1.748829, 1.373339, -0.400587, -0.378748, 0.338176, -0.666251, -0.590839, -0.664750, 0.961008, -0.424795, 2.517701, 0.161817, 1.337533, 0.683717, -0.877583, 0.743000, 0.295750, 0.458967, 0.521527, 2.021405, -0.682616, 1.116257, 0.790794, -1.669943, 0.658199, -1.551574, 2.174583, -2.009853, -1.172726, 1.735298, -0.597603, 0.248709, 1.080414, -2.354634, 0.674898, 0.030266, -1.799594, -2.267624, -0.204637, 0.157424, -0.226376, 1.397952, 0.599074, 1.006063, -0.147075, -0.676597, 0.430587, -0.950560, 0.621860, -0.730571, -0.411861, 0.024380, 1.017599, 1.600327, 0.673456, -0.044896, -0.793557, -0.825355, 0.581568, 0.436996, -2.016153, 0.972259, 1.955608, -0.487107, 0.776204, 0.179620, -0.871618, -0.153258, -0.775054, 2.840904, 1.402854, -0.415008, 1.684875, -1.129291, -0.732454, 0.383098, 0.392689, -1.109019, 0.519680, 1.383790, 0.847850, -0.589012, -0.036424, 1.344046, 1.363295, 1.761992, 0.377844, -1.436695, -1.970094, -1.180632, -0.809178, 1.797209, -0.149285, 0.132401, -0.713662, -1.275082, -1.197905, -0.748634, 0.237209, -1.333120, -2.745325, 0.713881, 0.232845, 0.831090, -0.296095, -0.867552, 0.485242, -0.616120, -1.055965, 0.820971, -0.939916, 0.157495, -0.177354, -2.702216, 0.453328, 1.668784, -0.167276, 0.238334, 0.286401, 1.521507, 0.465304, 0.746890, 1.281111, 0.059721, 1.142529, -0.279406, -0.601295, -1.321091, 0.383939, -0.168319, -1.025849, -1.156128, 1.139910, -1.696016, -0.286395, -1.129498, 0.473730, -0.407834, 0.158420, -1.677758, 0.256852, 0.911341, -0.564925, -1.183455, -0.526705, 0.483374, 0.300456, 1.321482, 0.093388, 0.770189, 0.450334, 0.274731, -0.973051, -0.801585, 0.306781, -0.287825, -1.279992, -0.071329, -0.236271, -0.894338, -0.507214, -1.932352, -1.815300, -0.761447, -0.059965, -0.388040, -1.562640, -0.924461, 0.056389, -0.907379, -0.577252, -0.008059, 0.336369, 1.204455, -0.359990, 0.330235, 1.671894, 1.162308, -0.792580, 0.901545, 0.270950, 0.401148, 0.307969, -0.746227, 0.023639, -0.225019, -0.274379, -1.332720, -0.787131, -0.559917, -0.376785, 0.093683, 0.256641, -2.401024, 0.135685, 1.889152, 0.411340, -0.997004, -1.039582, -1.404646, -0.049727, 1.022393, -0.051089, 0.572572, 0.660656, -0.977950, 0.032098, 1.482607, -0.801451, -1.397866, -0.157505, 0.200904, -1.141862, 0.692075, 0.212825, -0.726461, 1.048337, 1.177044, -1.594877, 0.436792, 1.541752, -0.130615, 1.517058, 1.184071, -2.406118, 0.688700, 1.849778, -0.274477, -0.802801, 0.945356, -0.556384, -0.892448, -0.354862, -1.172656, -1.878773, -1.678301, 0.555834, -1.905515, -0.186236, -0.680109, 0.143936, 0.139477, 0.623513, 1.273880, 0.851637, 0.090370, -0.037056, 0.132823, 0.770665, 0.972567, 0.880003, -0.766449, 1.112240, -1.871778, 0.387332, -0.286746, -0.159725, 0.114820, 0.390126, -0.495996, 0.443110, 0.990618, 0.958876, 0.454360, -0.153635, 1.360347, 0.392153, 0.108345, 0.565794, 0.381280, -0.268314, 0.033666, -0.953113, -0.862205, 2.132107, 0.768619, -0.382404, -1.818438, 0.090521, 0.379119, 0.424749, -1.435447, 0.571269, -1.929907, 2.909792, 0.121825, 0.076226, -0.391732, -1.454764, 0.306095, 0.375485, 0.765917, 0.665369, 0.192011, 0.396967, 0.389895, 0.404369, 0.093362, 0.454103, -0.011704, -0.021997, -0.312407, 1.611869, 1.352119, -0.519063, 0.566702, -0.644022, -1.989684, -0.459097, -0.640570, 0.490471, 0.395119, -0.138599, 0.161169, -0.907985, 0.125904, 0.023362, -0.950623, 1.168311, -0.054330, -0.629465, -1.824191, -1.735295, 0.091745, 0.686547, -0.356245, 0.020564, 1.221096, 1.105374, -1.289991, -0.635291, 0.144271, -1.884302, -0.829538, -0.211958, 0.785631, 0.023984, -1.370053, 0.818047, 0.463937, -0.461188, -0.398834, -0.945416, 1.490969, 0.065619, 1.524260, 2.470697, -0.218250, -1.038640, 0.320372, 0.679273, -0.994275, 0.987532, -0.059098, -0.255913, -0.359327, 0.437101, -1.957016, 2.023776, -0.777541, 0.544046, -0.634359, 0.202622, -2.537697, -0.880690, 0.262395, 0.022746, 0.670331, 0.382700, -0.550049, -0.225985, -0.658639, -0.845300, -0.038983, -1.177553, -0.153436, -1.193876, -0.664998, -2.020264, -2.023222, 0.324771, 0.407006, 0.097901, 0.239137, 2.563511, 0.554227, -0.773526, 2.304720, 0.661692, -0.240537, -0.570215, -1.067428, -1.571948, -1.857316, -2.437285, 0.541499, 0.110785, -0.521269, 1.400451, 0.523955, 0.587476, -0.483776, 0.441642, 0.510013, 0.337857, -0.129384, 0.182896, 0.464079, -0.293459, -1.041778, -0.409600, 0.818222, -0.446246, -0.276326, -1.245914, 1.087373, -0.799157, 0.486454, -0.031705, -1.009549, -0.654358, 0.085969, 0.855879, 0.598715, 0.624939, 0.736916, 0.979428, 0.997864, 0.307965, 0.286235, -0.849707, 1.034841, -1.771177, 0.096200, -0.576832, -0.052888, 0.459083, 0.048119, -1.041326, 1.098587, -0.644037, 0.174581, -0.173699, 0.959956, 0.925711, 0.603697, -0.198832, -0.475749, 1.521169, 0.004493, 0.952271, -0.742357, 0.296712, -0.146022, -1.299515, -0.769878, 0.790328, -1.721681, 0.724551, 0.132630, -1.088783, 0.753908, -0.644844, -0.408361, -0.307816, -0.953280, 1.544019, 0.468724, -0.086609, 0.769120, 2.025079, 0.452213, 0.269482, -0.521790, 0.184583, 1.194644, 2.081644, -0.790718, 0.092783, -0.234092, 1.369498, -0.629570, -0.023905, 1.019000, -0.330552, -0.373826, -0.539825, 0.928078, 0.010203, -0.041057, 0.529640, -0.048649, -1.111100, 0.514363, 1.565414, 1.223987, -0.003894, 0.686597, -0.402719, -1.054044, -0.717959, 0.476371, -0.934562, 0.268760, -0.264276, -0.225479, -1.619312, 0.203887, -0.164995, 0.509049, 0.579713, 0.193660, -0.168138, 1.828611, 2.593979, -0.172799, 1.210807, 0.301616, 0.094140, 1.051921, -0.351484, 0.228479, 0.759428, -1.627644, 0.256001, -1.516263, -0.324057, -0.895028, -0.698632, 1.030831}, + { 0.498600, -0.630364, -1.934851, 1.978740, 1.297702, -0.366390, 0.396950, -0.474528, 0.365379, -0.384767, 1.053095, -0.796208, 0.118948, -0.200839, -2.280172, -0.828167, -0.266828, -0.326641, -1.628112, 0.359216, -0.532697, 0.297303, 0.886123, 0.536909, -0.502440, -0.563721, -0.318734, 0.163537, 0.738058, -0.406623, -0.650341, 1.666817, 0.316455, 0.172766, 1.239138, -1.374082, 0.306644, -2.331464, 0.929375, -1.947381, 0.708352, 2.265958, 0.512173, -0.975597, -0.143397, 0.167462, -0.501506, 0.183967, 0.549654, -0.103497, -0.466289, 0.386910, -0.752389, 0.483060, -0.773666, -0.035798, -0.975706, 0.400843, 2.763508, 0.066222, -0.512881, 1.116536, 0.748304, -0.041251, -2.250712, 0.389888, 0.192828, -0.112889, -0.606110, 0.144230, -1.006171, -0.708104, 1.159180, 0.261429, -0.346232, -0.340050, -0.492282, -0.699225, -1.828571, -1.178086, 1.848835, -1.606901, -0.689881, -1.485548, -0.396604, -0.630256, -0.016148, -0.569914, 0.029803, -0.444130, 1.975413, -0.428265, -0.836023, 0.614451, 1.597898, -0.153646, -0.392575, -0.371178, -0.781775, -0.327638, -1.684671, 0.623956, 0.449735, 0.809483, -1.333013, -1.194109, -0.457923, -0.262625, 0.170568, -0.575261, 0.531945, 0.621200, -1.347152, -1.707142, 1.850222, 0.793587, 0.046903, 0.254743, -0.243458, -1.104970, -0.124515, 1.517588, 0.520323, 0.504096, 0.464529, 1.435610, -0.901409, 0.082204, 0.269690, -2.488350, 0.983689, 2.245436, 1.562155, -0.611086, -0.915243, 0.741547, 0.733133, -0.652388, 0.156579, 0.538230, -1.072847, 0.751287, 0.137664, -1.842280, -0.748604, 0.774597, 0.224907, -0.422822, -0.004653, -0.644180, -0.597642, -0.403732, -0.211798, 1.645996, 0.501405, 0.034623, -0.313537, -0.821324, -1.109246, -0.346518, -1.183343, -0.477077, 1.565661, 2.162567, 0.463808, 0.584915, -2.479038, -0.063887, -1.344777, -0.524891, -0.443048, -0.756877, 0.548129, 0.551165, 1.415485, -0.476431, 1.599387, 0.112393, -0.604599, 0.238660, 0.342879, -0.347186, -0.811838, -0.407510, -1.161911, 0.332919, -0.143734, -0.003872, 0.331830, 1.909795, -0.461120, 1.125101, -1.160524, -0.037597, 0.021065, 1.190991, -1.867031, 0.925425, 0.230105, 1.687341, 0.911828, 0.603531, 0.733339, -0.410497, 0.691719, 1.662063, 1.328381, -1.544447, 1.470204, -1.736659, -0.725563, -0.701414, -1.063086, -0.526010, -0.033144, 0.656060, -0.941699, -1.359735, -0.808648, -0.792566, 1.688558, 1.727384, 0.639528, -0.434445, 2.609233, -1.220485, 0.760613, -0.945875, 0.891968, -0.163294, -1.261257, 0.467184, 2.259121, 1.180275, -0.049289, 0.161012, 1.137014, 0.841523, -0.345265, 1.652922, -0.083475, 0.443857, -1.080949, -0.259055, -1.338761, -1.331164, 0.116265, -0.316040, 0.037631, -1.354656, 0.116217, -1.596441, 0.507521, -1.084110, -0.822434, 0.934781, -1.503291, 0.193167, 0.148730, 0.053301, -0.273592, 0.242086, -0.105414, -0.067733, 1.200888, -1.026494, 0.946440, 1.340357, -1.607273, -1.335891, -1.691025, -0.498899, 0.138916, -0.025839, 1.236057, -1.061116, -0.029666, 0.213228, 0.652542, 0.224519, 0.965390, -1.976661, 0.302520, -0.569860, 0.034934, 1.485381, 0.853022, 0.543659, -0.429706, -1.382558, -0.678502, 1.548906, 0.590621, -0.588423, 0.277246, -0.109895, 0.531839, 1.036831, -1.907868, 0.398361, -0.013880, -0.619297, -1.700102, -0.260177, -0.638563, 1.833697, 2.153433, 0.597775, 1.823454, 0.758914, -0.704724, -1.094395, -2.033701, 1.016783, -0.847457, 1.450119, -0.051495, 0.282050, 0.481209, -0.074188, 0.320197, 0.060417, -1.101019, -0.853074, 0.831001, -0.867891, -0.808916, -0.553487, -0.305298, -1.977615, 0.700406, 1.495796, -1.270270, 0.274327, 0.235669, 1.443637, 0.530089, 0.732876, 0.456071, 0.934206, 1.806708, -1.179482, -0.987963, -0.204915, -0.890853, 0.401321, 0.194023, -0.725235, -1.076367, 0.122571, 0.584353, -2.119283, 0.784755, 0.215461, 0.896773, 1.264879, -0.379028, -1.793941, -0.031743, 0.453713, -0.357120, 0.445265, -1.947280, 1.359870, -0.340473, 1.061085, -0.864080, 0.299490, -1.367263, 0.172260, 0.229675, -0.305726, -1.734245, 2.508320, 1.056079, 0.412452, -0.107441, 0.276507, -1.801411, 1.311701, 1.064675, 0.499074, -1.454018, 0.029158, 2.093279, -0.459083, 0.082882, 0.984361, 0.286337, -0.414942, 0.170918, -0.901985, 0.471364, 1.500944, 1.241543, -0.849459, 1.275193, 1.591275, 1.182822, 2.080917, -0.049049, -2.429894, 0.586602, 0.040475, -1.208794, 0.629368, -0.096037, 0.673191, -1.795674, 1.672328, 1.348753, 1.782115, 0.196033, -0.460948, 2.572930, 1.168051, -0.940551, -0.191133, -0.872147, -0.960073, 0.379402, -1.676307, -0.233545, 1.432444, -0.985572, 2.047824, 1.958467, -0.765291, -0.104188, 0.317891, -0.529768, -1.303015, 0.985363, 0.076202, -1.467007, 0.472621, -0.443107, -0.203267, -0.894790, -0.432701, 0.778032, -0.014877, -0.351363, -0.899447, 0.871419, -0.655006, -0.335003, -0.860796, 1.174089, -0.123632, 0.230959, 0.681467, -0.615895, 1.942438, -0.086646, -0.770541, -0.955458, -1.032896, 1.415443, -1.145293, 0.653932, 0.594903, -0.094169, 0.383691, -0.727563, -2.290730, 1.054179, 1.383306, 0.859246, 0.905080, 0.974548, 0.373188, 0.079963, -0.808236, 0.233153, -0.089717, -0.241619, 0.456371, -0.361749, 1.074772, 1.292462, -0.654600, -1.401936, 0.134937, 0.385610, 0.034410, 0.999438, 1.056893, 1.428685, 0.079046, 0.746196, 0.916434, -0.443332, -2.537755, 0.990478, -0.992442, -0.757811, -0.554858, 0.599378, -0.238326, 1.822607, 1.696197, -0.246041, 0.850187, -0.526443, -0.625866, 0.908694, -0.706092, 0.420556, 0.072978, 1.682558, -0.326236, 2.142879, -1.027462, 0.207436, 0.415592, -2.821089, -1.211530, -1.119491, 1.176020, -0.545044, 0.527122, 1.075734, 0.052872, 1.039222, -0.959000, 0.132693, 0.038326, -0.742397, 0.148741, -0.293556, 0.636246, -0.122293, -0.585191, 2.393996, 0.907956, -1.273070, -0.862822, -0.945147, 0.874301, -2.142893, -0.157647, 0.664078, -0.116931, -0.924814, -1.690552, -0.489379, 0.525611, -2.022288, 0.620293, -1.005329, 0.602536, -0.618161, 0.773970, 1.153424, 0.767592, -1.490730, -0.441524, 0.378543, -0.714283, 1.795595, 1.543324, 1.474025, -0.453359, 0.606984, 0.004696, 0.441260, 0.116171, 0.520404, 0.839695, -1.738653, 0.538265, -0.051506, 0.225686, 0.823927, -0.898231, 0.277226, 0.132438, -1.014787, 0.013427, 2.744513, -1.379169, -0.159827, -1.622324, 0.312074, -0.801969, -0.132457, 1.199220, 1.762816, 2.614702, -1.251020, -0.292932, -0.650674, -0.366716, 2.432578, 0.034004, 0.364269, 0.638649, -0.951142, -1.007079, -3.639020, 3.559285, -0.202650, -0.070716, -0.588417, -0.689876, 1.259315, 0.279627, 1.322981, -0.703149, -0.320339, 0.591559, -0.248742, -0.603587, 1.447409, 0.854169, 1.176190, 0.462784, -0.163880, 1.225252, -0.188107, 0.474241, 0.722550, -1.386720, 1.805160, -0.728132, 0.744601, -0.859084, 2.809067, -1.140650, -0.280099, -1.631087, 0.347477, 0.517512, 0.981620, -1.607984, -0.064968, 0.381553, 0.119513, -0.012089, 0.725931, -0.740354, 0.990801, -0.786111, 0.942182, -0.930947, 1.047784, -0.359566, -2.470492, -0.535079, -1.882133, 1.415739, 0.755526, -0.785738, -0.422217, -2.157502, -0.075675, -1.724756, -0.214210, -0.316398, -0.448632, -2.191588, -0.337842, 0.635482, -0.869785, -0.289716, 0.008577, 0.685914, -1.767045, 0.130024, -0.699719, 0.703842, 0.266145, -0.954319, 0.998666, -0.091582, 0.173133, -0.994769, 0.673786, -1.245531, -0.436189, -0.709814, -1.404860, -1.015782, -0.020176, -2.400612, 0.095698, 0.624370, 0.329876, -1.679498, -1.694843, -0.194741, -0.363958, 0.320114, -0.474492, 1.137740, 0.791094, 0.697049, 0.721421, -1.592182, -1.344499, -0.021251, -0.570454, -0.670966, -2.020386, -1.248654, 0.660396, 0.445477, 0.421517, 0.023469, -0.303631, 0.826053, -0.583889, 2.743410, 0.896533, 0.252610, -2.119778, 2.325007, -0.394109, -0.319441, -0.154400, -0.493423, -0.245623, 0.044359, 0.674579, 0.609360, -0.289882, 0.199548, 0.082043, -0.402017, -1.526817, -0.597538, -0.454720, -0.293778, 0.607726, -0.936898, 0.293511, -0.213769, -0.439017, -0.158604, -0.962467, -0.980164, -0.100530, 0.457554, -0.137260, 0.943699, 0.436898, -0.428960, -0.784887, 0.945776, -0.051841, -0.714418, 1.290290, -0.147452, -0.588972, 0.699039, 0.053845, -0.516412, -0.414229, 0.298465, 1.241984, -0.644308, 0.237210, 0.408205, 0.790844, -0.459350, 0.922009, -0.214878, 0.720270, 0.281951, -2.078843, -0.187262, 0.484475, 0.206875, 0.408172, -0.964247, 0.770193, 1.189002, -0.875251, 1.355666, 1.606735, 0.390186, 1.775172, 1.465068, 0.050377, -0.071914, -1.097418, 0.318219, 1.179317, -0.444139, 0.402958, 0.663078, 0.466497, -1.897668, -1.576414, 0.502513, -0.882007, -0.160975, -0.042891, 1.064051, -0.627360, -0.434418, 0.095608, -0.153836, 0.218954, 0.128237, 1.235171, -0.335874, -1.734261, 0.911400, 0.350893, 0.809636, -1.171943, 0.464698, 1.175104, -1.900901, -0.025425, 0.406024, 1.093599, 0.741210, -1.074187, -0.113963, 0.054027, 0.499148, -1.934338, 0.359452, -0.330697, 0.084156, 0.548030, -1.615265, -0.516798, -0.110019, -1.258339, 0.225121, -0.029273, -0.352252, 0.038000, 2.922897, 0.860672, 0.023219, -0.371106, 1.357774, -0.929375, -0.181150, -1.519803, 0.301891, 0.209642, 0.875006, -1.522879, -1.262935, 0.885418, 0.229146, -1.094486, 1.068061, -0.284890, 0.226158, 0.591172, -0.165347, 0.466614, 0.181490, -2.115568, -0.387427, -0.865010, 1.320431, -0.496358, -0.479626, -1.233676, 0.855247, 0.364460, 1.018782, -0.329787, -1.532578, 0.806446, 0.881082, 1.401609, 1.368758, -0.063228, 0.144286, -0.853197, -1.161441, 0.393941, -0.456803, 0.331404, -1.935883, -0.576243, -0.374308, 0.500627, 1.482619, -0.650121, 0.418620, 0.829698, 0.381839, -0.416514, -0.318647, 0.401735, 0.857991, -0.925324, 0.072773, 0.432449, 2.136667, 0.591740, 0.000894, -0.989923, -0.964892, -1.002391, -0.979134, -0.312657, -1.947916, -0.433204, 0.678539, -1.548827, -0.221351, -1.182740, -0.520955, -0.108246, 0.676326, 0.642880, -0.579660, -1.172029, 0.180481, 0.145567, -0.553995, -0.123572, -1.377090, 1.649688, 1.172847, -1.009557, 1.696461, 1.489116, 0.464210, -0.386753, 0.798605, 2.423591, -1.067660, 0.428387, 1.063113, 0.068168, -1.043389, -0.152927, 1.994861, -1.278035, 0.070708, 0.546025, -0.937271, 0.077218, 0.343963, 0.646248, -1.974246, -1.533420, 0.914345, -0.263439, 0.945293, -2.819857, 0.282333, 0.325182, -0.794679, 0.574447, 0.810553, -1.356496, -1.064521, 0.038704, 0.162952, -0.293545, 0.869195, -0.049179, 1.175396, -0.663484, -0.228122, 0.460879, 1.506221, 0.619085, 0.035940, -2.057078, -0.364081, 0.341804, 0.412966, -0.827478, -1.010396, -1.733934, 0.004979, -0.055362, -0.882838, -1.690594, -0.648414, -0.823177, -1.247144, -1.409382, -0.489024, 2.222220, -1.552172, 0.138275, 0.313593, -0.085941, -1.136765, -2.510321, 0.187420, -0.367543, -1.117285, -0.870430, -2.042670, -0.820943, 0.707323, 0.499850, -0.081534, -0.323482, 1.315124, 0.636423, 1.616224, -0.166473, 0.458523, -1.577853, 2.771953, -0.939610, -0.500617, 1.134954, -0.596695, -0.884782, -2.324834, -1.523583, -0.558413, 0.308515, -0.656419, -1.630020, 0.121766, -0.321717, 0.738284, -0.150970, -0.319377, 1.694014, -0.369920, 0.957237, -0.774793, 0.683244, 0.723942, -0.984938, 0.869628, -0.407774, -0.527981, 1.419893, 0.916213, 0.359340, 0.281274, 0.532969, 1.358405, 1.112822, 1.247943, 0.736070, 0.448360, 0.064406, 1.131104, 1.018164, 0.021234, -1.008104, -0.101913, -0.098800, 0.404524, -0.653387, 0.919976, -1.151311, 0.192772, -0.900603, -0.435119, -0.195076, 1.178728, -2.195306, -1.699499, 0.689685, -0.070511, -1.645161, -0.353244, 0.920113, 0.268945, 0.010245, 0.158192, -0.397984, 0.372596, 1.122764, 0.398309, 0.355010, 0.314810, -0.362476, -0.001019, -1.118581, 2.261982, -0.829255, 1.313405, 0.419686, 0.975783, 0.077348, -0.680541, -0.646671, 1.215562, 0.298133, -0.032200, -0.822940, 1.872837, -0.091985, 1.590571, 2.189615, 0.671482, 0.959947, -0.227700, 0.121324, -0.777780, 1.105815, 1.191487, 0.564404, 1.170724, -0.678744, -0.174674, -0.791007, 0.160115, 0.617460, -1.771890, -1.014007, 0.108575, -0.094883, -0.041363, -0.698639, 1.431201, 0.055950, 0.522269, 0.782784, 0.329436, -0.081920, -0.749310, 0.721772, -0.919258, 0.228491, -0.094053, -0.151695, -1.453414, -0.111173, 0.193356, 1.298390, 1.302749, -2.400853, 0.089225, -1.948672, 0.695801, -1.082552, -1.382506, -1.364050, 1.763154, -1.346791, -2.205111, -0.487307, -0.439755, 1.296285, 1.151645, 1.061861, -0.393782, 0.699981, 0.851676, -1.661902, -1.748502, -1.270151, 0.031468, 0.688376, 0.934216, -0.642324, -0.074840, 0.002208, 0.528916, -0.477442, 1.049474, 0.637585, -0.163023, -0.965330, 0.201402, 0.884500, 1.568763, 0.682966, 1.875984, -0.008904, 0.628444, 0.096640, -1.850374, -0.765162, -1.577299, -0.594107, 0.613427, 1.222398, 0.258605, -1.217890, -0.656070, 1.179256, -0.225954, 0.805915, 0.146057, -1.989709, -0.370744, 0.803784, 1.112917, 0.684902, -0.102059, -1.119677, -0.630912, -1.063871, 0.331905, -0.199834, 0.135074, 0.223982, -0.562146, -0.459546, -0.936665, 0.336523, 2.065681, -0.994555, 0.233976, 0.044739, 0.311842, -1.869856, -0.004827, 0.181460, -1.088715, 0.775957, 0.390985, 1.644371, 0.967996, 0.634975, 0.130202, 1.647675, 0.310514, 0.016864, 0.719848, -0.460764, -0.883501, -0.720083, -1.272417, 1.220531, 0.353710, 0.078132, 2.441542, 0.122551, -1.573647, 0.147233, -0.003191, 2.267303, -0.303616, 2.241765, -1.264280, 0.491044, 0.454064, -1.194816, -0.097203, 0.561550, 0.402088, -0.519705, -0.739811, -1.837483, 0.281988, 0.527873, 0.965765, -0.110451, -0.093962, -1.316626, -0.144071, 0.366697, 0.085085, 0.463985, -1.153225, -0.807744, 0.842997, -0.155893, 0.462589, -1.204939, -0.110900, 1.867847, -1.724745, 1.217191, 0.777816, -0.665992, -0.330855, 0.103533, 1.251164, -0.899884, 0.357965, 0.641076, -0.691929, -0.427051, -0.489703, -0.173351, 0.256565, 0.358023, -0.332414, 1.024814, -1.391588, 0.254832, -0.975139, 0.621087, -0.052536, 1.105053, -0.202236, 0.178073, 0.686421, -0.238463, -0.742911, -0.916062, -0.115710, 1.721554, 1.318805, -1.935127, 0.393952, 0.371033, 0.081142, -1.242742, -0.843665, 0.526875, -0.376163, -2.277156, 0.175020, -1.010671, -0.854628, 0.479450, -1.374991, -0.960397, -0.845392, -0.423776, -0.104226, -0.938695, -1.074392, 0.681518, -0.929067, -0.325328, 0.222046, -1.217866, -1.036856, 0.134252, -0.982169, 1.443324, 0.202745, -0.980911, -1.893088, 0.058971, 1.033726, 0.915244, -0.321112, -0.526253, 2.219343, -1.490468, 0.076183, 1.302339, 0.846440, -0.347658, 1.005859, -0.027592, -0.907004, -0.753489, 0.641079, -0.223017, 0.093323, -0.393854, 0.817221, 0.271533, -0.801750, -1.095142, -0.979342, 0.813610, 1.313003, 0.146132, 1.132320, -0.089613, -0.008423, 1.188470, -0.229290, -0.660246, -1.580706, 0.005675, -0.197319, 0.592839, -0.825189, 0.299222, 0.369708, -0.550421, -0.333250, 0.923634, -0.330064, 0.660208, -0.346987, 0.420864, -0.966817, -0.290246, 0.553422, 1.117027, -0.705553, -0.998050, 0.749883, 0.896945, -0.415782, -0.023040, -0.970122, -1.378783, -0.553771, 0.500768, 0.055368, 0.575297, 0.845588, 3.163929, -0.206427, -0.645871, -1.290812, 0.951909, 0.230984, 0.640766, 0.687113, 1.130615, -0.729285, 0.064664, 1.905062, -0.534741, -0.084036, 0.064332, 0.512932, 0.559215, 0.435457, 0.112609, -2.229610, -0.363946, 2.104479, 0.269953, -1.365839, -0.194544, 0.442989, -0.916018, -1.102157, -0.432396, -1.845771, 0.250807, -1.205893, 1.555903, -0.248013, -0.390279, 0.566889, -0.430657, 0.203078, 0.051656, 0.049730, 0.752098, -0.953414, 0.888385, 0.754414, -0.226461, -1.796367, -0.436016, 1.887462, 0.086257, -2.540550, 0.460174, -0.230777, -0.238524, -0.077088, 1.097227, -0.358950, -0.852384, -0.108136, 0.089569, 0.197142, 0.191996, 0.417871, -1.934974, -0.252158, 0.012013, 1.815527, -0.797995, -0.422927, 0.163177, -0.678507, -1.223878, -0.574484, -1.077810, 0.982228, 0.942096, -1.082984, -0.315990, 0.379165, -0.675427, 0.929860, 0.985859, -1.661204, -0.533872, 0.667684, 0.482606, -0.323883, 0.934162, -1.721741, -1.165999, -0.657639, 1.436376, 2.145906, -1.250238, -0.419071, 1.441633, 1.048542, -0.410452, -0.233101, -0.196294, 0.801836, -0.776944, 0.769657, -0.408917, 0.312041, -0.815606, 1.295848, 0.283211, -0.371126, 1.828149, 0.844474, -0.477986, -0.250453, 0.339010, 0.171278, 1.247593, 0.457815, 0.861051, 0.496436, 2.031770, -1.045570, 0.690956, -0.209337, -0.130950, 0.677668, 0.726198, -0.310236, -0.052020, -0.571697, 1.354022, -0.476486, -0.123084, 1.464579, 1.342380, 1.010569, -0.075310, 0.516703, -0.255226, -0.846005, 0.250577, 0.678318, 1.250262, -0.581924, -0.837191, -0.052001, -1.609562, -0.487951, 0.220230, -0.952890, -0.828554, -1.013836, 0.519786, 1.554351, 0.063381, -0.387435, 1.151662, 0.418503, -0.473609, 0.341987, 0.095320, 0.373941, -1.509981, 0.544070, 0.867939, -0.895089, -1.476093, 0.348520, 0.876986, -0.460812, -0.455791, -0.608436, 1.968207, -0.685293, -1.311222, -0.019769, 0.027398, 0.163930, 0.004945, -0.595132, 0.627187, -1.747154, -0.340727, 1.042050, 0.548571, 0.203586, -0.531577, 0.916435, 0.674560, 0.264932, 0.795920, 0.835980, -2.293107, -0.121481, -0.199880, -1.424760, 0.269736, 0.224302, -1.276516, 0.270943, -0.044360, -0.046254, 0.296121, 1.339972, -0.001777, -2.171376, 0.843261, -1.511411, 0.211905, -0.704402, 1.254118, 1.085893, 0.096693, 0.255339, -2.751762, -0.609475, -1.233330, 0.898609, -0.404407, 0.705861, -1.037741, -1.661959, -0.173625, -0.108401, -0.145233, 0.896454, 2.550848, 0.224521, 0.608556, 0.149591, 0.311065, -0.383015, -0.437713, 0.904401, 1.137051, -0.566618, 0.905288, -2.012599, 0.773460, -1.388191, 0.036844, -0.908313, 0.827142, -0.564213, -2.279496, -0.523770, 0.406829, 1.196736, -1.000412, -0.123413, -1.063237, 0.118590, -1.730392, -0.800990, -0.295268, -1.539280, 1.074800, 0.990241, 0.938344, 0.008648, 0.270552, 1.504636, -1.992391, 0.840412, 0.114271, -0.818257, 1.016207, -0.065419, 0.719255, -0.422184, 0.967049, -1.198595, 1.379827, 0.209556, 0.899116, -0.459669, 0.305595, 0.263592, -1.081652, 1.019637, 1.788260, -1.029073, -0.774219, 0.248703, -0.282321, 1.095758, 0.188455, 1.324632, 0.014700, -1.270554, 0.446974, 1.079532, -0.687912, 0.200267, -0.074585, -0.090963, -1.538364, 1.634101, -0.862753, -1.604892, -1.786448, -0.668017, 1.077949, -0.742842, -0.908906, 0.001696, -0.204625, 0.047484, -0.755280, -0.414966, -0.126783, 0.424308, 1.520521, -1.531182, -0.197597, 1.911759, 0.258339, 0.073342, 0.252828, 0.589639, -0.292894, -0.320263, -0.142690, -0.819674, 0.607538, 0.818658, -0.848856, -0.014286, 1.060685, 0.765401, -0.151427, -0.697303, 0.359113, -0.261557, -0.120428, -1.176533, 1.626248, 0.878618, 0.634200, -0.831657, 0.003904, -0.714046, 0.723078, -0.382527, 0.981350, 1.594958, -1.187487, 0.275221, -0.455454, -2.006084, -1.692158, 0.452176, 2.030479, -0.253968, -1.625709, -0.359816, 0.296818, -0.308585, -1.835828, 0.039642, 0.548832, -1.542726, 1.216405, -0.419782, 0.793618, 0.589789, 1.527137, -0.610310, 1.612953, 1.678237, 0.769253, 0.624159, -1.450371, -0.467088, -1.247703, -1.614081, -1.038799, -1.450659, -0.579249, 0.505138, -1.520023, 0.782548, 1.715204, -0.914999, -1.236802, 2.692922, -2.258207, -1.305801, 0.302295, -0.179105, 1.138938, -0.408856, 1.093325, -0.381717, 0.724882, -0.127229, 0.199732, 1.090881, -0.243553, 1.390858, 0.480334, -0.428308, -0.233091, 1.193697, -0.832480, -0.978503, -0.105364, -2.142534, -0.211938, -0.646781, 0.112030, -0.627763, 0.012003, 2.016760, 0.063875, 0.805672, -0.588321, -0.008961, -0.461640, 0.606676, -0.622125, 1.080776, -0.714583, 0.295806, 0.062171, 0.301859, -0.488713, 0.446270, -0.703305, -0.446033, -0.064286, 1.478045, -0.590927, 1.806130, 1.675596, -1.228243, -0.039367, 1.441270, 0.725322, -0.579056, -0.786712, 1.662601, -1.004281, -0.059023, 1.017297, 2.551392, -0.541552, 0.133698, 0.470523, -0.950493, 0.925239, -0.842815, -1.016801, 0.917952, 0.244602, -1.583197, 0.068994, 1.085170, 1.278637, -0.848786, -0.409601, -1.183971, -0.127387, -0.332900, -0.955443, 0.240069, -0.230033, 1.265599, -0.921187, -1.160511, -0.643802, 0.492340, -0.178216, -0.459460, 1.385097, 0.345105, 1.424889, 0.337604, -0.873427, -1.799328, 0.994206, -0.107136, -0.390023, -0.992338, -0.043299, -1.259286, -1.526205, -1.148374, -0.462512, 0.291424, -0.344562, 1.166278, 0.705970, 0.551753, 1.148313, 0.748673, -0.193060, -0.728595, -0.079233, -0.073007, 0.315085, -1.327685, 0.096009, 1.024534, 1.037750, -0.643653, 1.089484, 0.332034, -1.921824, 0.825178, 0.281066, 0.044033, -1.029022, -0.775630, 0.812846, 0.241263, 0.438447, -1.523057, -0.390679, -1.181283, 1.435409, -0.463888, 0.820352, 0.496726, -1.506960, 0.976491, -0.026568, 0.534467, 1.358570, 1.132596, 0.431385, -0.781128, -0.497669, -0.844447, -0.432680, -1.227080, -1.693156, 1.067945, -0.235915, 0.869937, 1.374782, -1.931202, 0.041417, 0.004889, 0.596894, 0.718105, -1.105204, -1.226033, -1.544991, 1.755095, 1.399246, -0.107737, 0.251172, -1.247777, -1.792983, -2.513066, -0.981324, -2.235411, -1.497458, -0.373662, -0.816140, -0.924858, -0.401730, -0.828722, 0.251567, -1.579836, -0.954801, 1.205989, -0.674743, 2.553820, 1.274381, 2.445274, 0.169583, -0.749331, -0.361765, -2.167931, 0.116224, -1.612522, 1.437178, 0.518369, 0.925946, 1.244001, -0.287581, 1.533695, -1.254095, 0.607090, -1.852139, 0.968363, -1.566348, 0.753822, -0.212007, 1.061535, 1.432382, -0.655633, -0.512329, 0.455304, 0.808479, 0.319832, 0.550245, -1.810582, -0.038852, -0.242902, -0.396533, -0.311935, 0.871135, 1.531660, -1.758956, 0.768577, 0.947164, -0.925342, 0.392665, -0.054169, -1.051204, 0.540079, -1.371150, -0.312267, 1.528846, -1.971221, -1.083212, 0.125064, -2.283222, 0.387995, -1.171463, -0.507675, 0.789502, 0.908121, 1.597176, -0.549736, 0.645642, -1.586370, -1.211177, -0.505284, -0.197607, 1.748958, 0.618762, -1.501589, -0.506183, -1.400233, 1.660637, -1.228425, 0.114984, 1.479920, 0.515851, -0.750474, -1.709443, 0.932454, 1.151439, 2.728647, -0.591449, 0.780029, 0.807998, 1.180349, 0.362442, -1.069364, 1.860791, -0.210566, 0.137039, 0.688006, -0.826477, 0.856380, 0.035750, 0.318166, 0.076763, -2.678424, -1.146179, -0.484830, 1.078147, -0.732110, -0.876544, 0.725752, -0.229854, -0.178575, -0.401983, 0.593291, -1.134600, 0.299971, -0.080647, -1.355316, 0.075274, 0.176714, 0.041601, 0.547252, 2.035405, -1.610458, 3.304648, -0.688604, 1.342285, 0.676487, 0.635658, 1.234083, -2.906488, -0.936661, 0.646795, 0.229119, -0.338055, 1.679101, -0.275683, 1.685993, 0.289674, -0.702806, -1.067165, -0.438921, -0.167604, -0.386343, 1.515304, -0.890131, -1.560939, -0.888819, 0.180830, 0.739056, 0.385542, 0.054245, -0.247060, 0.904239, 0.914448, -0.132387, 0.240149, -0.116692, -1.323525, -1.292280, -1.146213, -0.576850, -1.234097, 0.729883, 0.931078, -1.232934, 0.291481, -0.579669, 0.584854, 0.001575, 0.165488, 0.735198, -1.034704, 2.057282, -0.356086, -0.276032, 0.835456, 0.426434, 0.864435, -0.439887, -1.931927, 0.698827, 0.612898, 0.273311, 0.222419, -0.215456, -0.390212, -0.039740, 0.264148, -1.326302, -1.669482, -0.109314, 0.275399, -1.197135, -0.737204, -0.667844, -1.696526, -1.024282, -0.838153, -0.140210, 0.257477, 0.357491, -0.774643, 0.262323, 0.840553, -0.133754, 0.006898, 0.310085, -1.470412, 0.740721, -0.497280, -0.205097, 0.936296, 0.563652, -2.475411, -0.098824, 0.302977, 0.544696, -0.702273, -0.224016, 1.488240, 0.340930, 0.770135, -0.559111, -0.799438, 0.253213, -0.483138, 0.575897, -1.438512, -1.167161, 1.028894, -0.317772, 0.367781, -0.175546, 1.144240, -0.947621, -1.261444, -0.037873, 0.405451, -1.824173, -1.013213, -1.812381, 2.083658, 0.146819, -0.548985, -0.849855, 0.075940, -0.252510, 0.799214, -0.152363, 0.591349, 1.570370, -0.816732, -0.612182, -0.773485, -1.673563, -1.008755, -1.378837, -1.820998, 0.599782, 0.855464, 1.294876, 1.170179, -0.721917, 0.473666, 0.335093, 1.213475, -0.514751, -0.312647, 0.667063, -0.955969, -0.332286, 2.051668, 0.560123, -0.872217, -1.153726, 1.150429, 0.583915, -1.059292, 0.155215, 0.066745, 1.824363, 1.725572, 0.351913, -0.255321, 0.213747, 0.544924, 1.070085, 0.967913, 1.209858, 1.285793, 0.165512, -1.205263, 1.027338, 1.200385, -0.099305, -0.359821, 0.958892, -1.164842, 2.059499, -0.293423, -1.681142, 1.485179, 1.167770, 0.259798, -0.490254, -0.173270, 1.494035, 0.865552, -1.037125, -2.299628, 0.857576, 0.664129, 0.706929, -1.808215, -0.032979, -0.025548, 0.436533, 1.800980, -0.019184, 0.273754, -1.771974, 0.192992, -1.912216, 0.678894, 0.482888, 1.946389, -0.801648, 0.652475, -0.120300, -0.613245, -0.298331, -0.278718, 0.319872, -0.538019, 0.526453, 0.355085, 1.615025, 0.010841, -0.433678, 0.074101, -0.372801, -0.996397, -0.628399, -1.600311, -0.156809, -0.296482, -0.072060, -0.922985, -1.350325, 1.570328, 0.453621, 0.249506, 0.517055, 0.839752, 1.212247, -0.355969, -0.834899, -2.256092, 1.508950, 0.958231, 0.627800, -1.119957, -0.445233, -1.314693, -1.156792, 1.222933, 0.056463, 1.139011, 1.133834, -1.954986, 0.911514, 0.284220, 0.146273, 1.283033, -0.541273, -0.206320, -1.315816, -0.724174, -1.779215, -0.726110, 0.751588, -1.242158, -0.935277, 1.231239, 1.132305, -0.978927, -0.800345, 0.592947, -0.771981, -0.289251, -1.884033, -2.330992, -0.975545, 0.685898, -0.646062, -0.795275, -0.383030, 0.000804, -0.148897, -0.712477, 0.581027, 1.094729, 2.210095, 0.216186, 1.224661, -1.028130, -1.278383, 0.169229, 0.292108, 0.877600, -1.117363, 1.673167, 0.023445, -0.452841, -2.543711, 0.470517, -0.231038, -0.193303, 0.648278, -0.477477, 0.331214, 0.755570, 0.045610, 0.533408, 0.660642, 0.596556, -0.054480, 2.405887, -1.561524, 0.735585, -0.010487, -0.642784, -0.511849, 0.872943, -1.049492, 0.366129, -0.304031, 0.400193, -0.258380, -0.672031, 1.229638, -1.581198, -2.069448, 0.399057, -0.778449, -0.407193, 0.510858, 0.525076, 1.312252, 0.735877, 0.790376, -0.319886, -0.118436, 1.215148, -0.493103, 0.478139, -1.259715, 0.936273, 0.765667, -0.930100, 1.902143, 0.371726, -1.246367, -1.849395, 1.108525, 0.478887, -0.037993, 0.073749, -1.424276, -0.618281, -0.189405, 2.227087, 0.792688, 1.111051, 0.458507, 1.006177, -0.060704, 0.029167, 0.476807, -0.072299, -0.594517, 1.224957, 1.403397, -0.681391, -0.750033, 0.641810, 1.321338, 2.481421, -0.326549, 1.089872, 0.274751, -0.140629, 0.240780, 0.470571, -0.660207, -0.972413, 0.572010, 0.540627, -0.099027, -0.424190, 0.470737, 0.958158, -2.573777, 0.944992, 1.288011, -1.236674, 0.248440, -0.276320, -0.920838, 0.925885, 0.723091, -1.035724, 1.069552, -0.325077, -0.801796, -1.388701, 0.290580, 1.181303, -0.750910, -1.579917, -0.249554, -1.615275, -0.544449, -0.022362, -0.969041, -0.384764, -0.426919, -0.122412, -0.187072, 0.354822, 0.413978, 1.759249, -0.604203, -0.529838, 1.174600, -0.167540, -0.893276, 0.745195, -0.985655, 0.837010, 0.623226, -1.297125, 0.809458, -1.255280, 0.242493, -0.228881, -1.250483, -0.658232, 0.780472, 0.321582, -0.379518, -0.160174, -0.176678, -0.623748, 1.062364, -1.170764, -0.499050, 0.613400, -1.617004, 1.092308, -0.682719, 1.044111, -0.523858, 1.079999, 1.125256, 0.782317, -0.773193, -0.615507, -1.905080, -0.372791, 0.266970, -0.232541, 0.421497, 1.106063, 2.054860, 1.944606, 0.449349, -1.150533, 0.466411, -0.369180, -1.936198, 0.353288, 0.343445, -0.206814, 0.144677, -0.779067, 0.139409, 0.726236, 0.383863, -0.166169, 0.920671, 0.842909, -0.940188, -0.708426, 1.132965, -0.567276, -1.776396, 1.000999, 0.324230, -0.286391, -0.709427, -0.506209, 2.008922, -1.408515, 1.697712, 1.427112, -0.764681, 0.503639, -0.857550, 0.137164, -0.393988, -0.645424, -0.466057, -0.263195, 0.188539, 1.348784, 1.076512, 1.817029, 0.657550, 1.261102, 0.609959, -0.740831, 0.196078, -0.743779, -1.184573, 0.650455, -1.960792, 1.084642, -0.279466, 0.145483, -0.997303, 0.080009, 0.499684, 0.062574, 0.405807, 1.946896, -0.646038, 0.874223, -0.946148, 0.076162, 0.187738, -0.289608, 0.254565, 1.167982, -0.126705, -0.758044, -2.476125, 0.623089, 1.213360, -1.738868, 0.146560, 1.000399, 0.486940, 1.993934, 1.306430, -1.001753, 0.895397, -0.800027, -0.243823, -0.517256, -0.703311, -0.749954, -1.189894, -0.313332, -0.249444, -3.232671, 0.300845, -0.092155, 0.460650, 1.927405, 0.187557, 0.940361, 0.523489, -0.762684, -0.534927, 0.320713, -0.626661, -0.532747, 0.805675, 0.527081, -0.502156, -0.318472, 0.107356, -0.880202, 0.561103, 0.118711, -0.116539, 1.601423, 0.526576, 0.658094, -1.072707, -0.604475, -0.067742, 0.201239, 1.058724, 1.070100, 1.358473, -1.740627, -0.509498, 0.196283, -0.296208, -0.237573, -2.243055, 0.380953, 0.431689, -0.335545, -0.112867, -0.422986, 0.450012, 1.100065, 0.163314, -0.653564, 0.590977, 0.019812, -0.782144, -1.281447, -0.949235, -1.068316, -0.059770, 0.111876, 0.622994, 1.885855, -1.205939, -0.143202, -0.881391, 1.709445, -1.305343, 1.705924, 0.260919, -0.212098, 0.328828, -1.038350, -0.926027, 0.663006, -0.322986, 1.267319, 0.574209, 1.779133, 0.040785, 0.587367, -1.047119, 0.063418, -1.164881, -2.262731, -0.172727, -0.516903, 1.334643, -0.228500, -0.055950, 1.088091, -0.340928, -0.416462, 0.435197, 1.259548, 1.501645, 0.076284, 1.566954, 2.186026, -0.456482, -0.215436, 0.674405, -0.181536, -0.973145, -1.401503, -1.558267, 0.219778, -0.721509, -0.837303, 0.135807, -0.316957, -1.438389, -0.485605, 2.274061, 0.057356, 0.771073, -0.524855, 0.976812, -0.721963, -0.574090, -0.139908, -0.211448, 0.897787, -2.094179, -2.007833, -0.469451, 0.262724, -0.286139, -0.211648, 1.842703, -1.731299, -0.696976, -0.563637, 1.106420, 0.191047, 0.030182, 0.116623, -0.330102, -0.949236, -1.734516, 1.071167, 0.761497, 0.946811, 0.344153, -0.932545, 0.474702, 1.261517, 0.438154, -0.312641, 2.218739, -0.636284, 0.177427, -0.891629, 0.073059, 0.432573, 1.519030, -1.342308, -1.574174, -0.776080, -0.044776, -1.306273, -2.023080, 0.622893, -0.619993, -1.069019, -0.668112, 0.062935, -0.125840, -0.766712, -1.815272, -1.599102, -1.021402, -0.171320, -0.847002, 0.602906, -1.240145, -0.651905, -1.394652, 0.188672, -1.536856, -0.607298, -0.213942, 0.415434, -0.899680, -0.679669, 0.442699, -1.006434, -0.478302, 0.370300, -0.711353, 0.037286, 0.007108, -0.066142, -0.686171, -0.503276, -0.859378, -1.450166, -2.110347, 0.560666, 1.816826, -1.325563, 0.794742, 0.449122, -0.166732, 1.159933, 0.922354, -1.629065, -1.071650, -0.473958, -0.462836, 0.771678, 1.811227, 0.667743, -0.405866, -0.446916, 0.091320, 0.307196, 0.775608, -0.596851, -0.285515, -0.122423, 0.254493, -1.624426, -1.347769, 0.013939, 0.922401, -0.519619, -0.198171, -0.989232, -1.601648, -0.030778, 0.627954, -1.264892, -0.876560, -0.416890, 0.950213, 0.262130, 0.729413, -1.816510, 0.768735, -0.922000, -0.625709, 0.346602, -1.325937, 1.182077, 0.093946, 0.289798, 0.108753, -0.873945, 0.889817, 0.512309, -0.940536, 1.293848, 0.142711, -1.416883, -0.313962, 0.060443, -1.465414, 0.889088, 0.116119, 0.671001, -0.412079, -0.284037, 0.020374, 0.502909, -1.214663, 0.263673, 0.778859, 1.570789, 0.919372, 0.109478, -1.041236, -1.134445, 0.463988, -0.933648, -0.902000, -0.674116, -0.165772, -0.136524, 0.030182, 0.512634, -1.308213, 0.408942, 0.839246, 0.495097, 0.462561, 0.192995, -1.624213, -0.618026, 1.414266, -0.878879, -0.090491, 0.492939, 0.628859, 0.525880, -0.039021, 0.617737, -1.267245, 0.956660, -1.720725, 0.385655, 1.282341, 0.084000, -0.150844, 0.866546, -1.516527, 0.851712, 0.471689, 2.531880, 0.542086, 0.100295, 1.398098, -1.109739, 0.617787, -0.284909, -1.231408, 0.406820, -1.410199, 0.329036, 0.944494, 1.259406, -1.009261, 1.611839, -0.339957, 1.574730, -1.418461, 0.378514, 1.829653, -0.790625, 0.074517, 0.881604, 1.710198, -1.543031, -0.617113, -0.434464, -1.234593, -1.610144, -0.568606, 0.755789, 1.969215, 1.434471, 0.121619, 1.816659, -1.294432, -1.519971, -0.125081, 0.103685, -0.099768, 0.272657, 0.046338, 0.803169, 1.364452, 0.089515, 0.636846, -0.435049, -1.817132, 1.656341, -1.197036, 0.520743, -1.056417, 0.150290, 1.026894, 0.536498, 0.663240, -0.645223, 1.216482, 2.042433, 0.856201, -0.703970, -1.208082, -0.091632, -0.108666, -0.098345, 1.509354, -0.230640, -1.448274, -1.886524, 0.007456, 2.477842, 0.707337, -2.054148, -0.091582, 0.153579, -0.460725, 0.198817, 0.987613, -1.813821, -1.239454, 0.204163, 0.322734, -1.487123, -0.019094, 1.265777, -0.271168, -0.951826, -0.662571, 0.189142, -0.743110, -0.982357, -0.619117, 0.957933, 2.201865, -0.159187, 1.589898, -1.510805, 0.223414, 0.481670, 1.486963, -0.445288, -0.545946, 0.282803, 2.658768, 0.453831, -0.351686, 0.658675, -1.217944, -0.229624, 1.645123, 0.558230, 1.028391, 0.734674, -0.596569, 1.089123, -0.629326, 0.777236, 2.115886, -1.612976, -0.850611, 1.502406, 1.180521, -0.393392, -0.002920, -0.450433, 0.914858, -0.239300, 1.055565, 0.939469, 2.186308, 1.500550, 0.776769, -1.219393, -0.181543, -0.077796, -0.296048, -1.050082, -1.164428, -1.626741, -2.193989, 0.945202, 0.239424, 0.338808, 2.003991, 0.485541, -0.476657, 0.608667, -1.516347}, + { 0.971813, -0.920174, 1.846539, 0.629848, 0.343860, -0.418023, 0.196509, -1.013686, -1.319651, -1.013042, -1.224583, -1.107630, 0.744378, -0.328667, -1.674248, 1.161416, 0.972131, -0.569480, 0.743796, 0.751730, 0.022005, -0.893676, 0.611287, -0.259918, -1.227763, 1.042601, 0.325731, -0.480853, 1.523066, -0.348158, -0.975072, -0.611629, 1.136848, 0.474921, 1.187678, 1.289511, 1.501528, -2.782071, 0.803552, -1.408013, 0.730737, 1.321385, 0.382434, -0.342034, -0.436544, -0.560894, -1.522092, -0.041509, -0.969737, 0.041066, 0.337097, -0.748090, -1.187868, -0.786850, -1.258359, 0.060814, 0.773434, 0.433587, 0.896879, -0.001600, -0.512817, 0.910728, -1.512975, -1.102233, -0.035423, -0.467501, -1.068874, -0.216873, 0.368641, -1.982073, -0.058476, 1.155416, 0.506792, -1.439055, -1.501287, -1.194824, -1.634018, -0.485168, -0.565400, 0.421402, -0.066977, -0.534743, 1.346970, 1.597382, -0.959063, -0.213779, 0.906425, -1.332859, 1.143031, -0.034087, 1.032573, 0.942437, 0.304260, 0.028277, -1.107901, -0.795919, 0.300141, -0.319785, 2.304236, 0.966513, 0.418149, -0.588981, -0.032505, 0.715881, -1.054713, 0.112103, 0.450980, -0.472431, -0.897862, 1.297535, 0.189193, 1.541018, 1.662518, -2.520785, -0.395973, -0.608422, 0.239942, -1.757357, 0.061939, 0.614363, 0.684749, 0.002828, 0.408846, 0.002571, 0.270919, -0.584605, 0.827381, 0.641225, 1.003051, 0.048399, 1.097997, -0.207120, 0.925233, -0.347599, -1.346167, 0.254696, -0.771559, 0.019891, 0.077092, -0.390164, -0.542696, -2.276683, -0.165124, -0.591951, -0.053938, -2.427174, 0.549246, -1.046526, 1.143240, -2.201089, 0.249985, -0.325234, -0.369794, -2.147344, 0.030667, -2.855161, 0.499867, 0.601390, -0.039920, 0.755047, -0.754678, -0.390014, 1.947499, 0.904867, 0.798818, -0.309321, 0.005252, -0.670809, -0.075017, -0.018729, -0.335959, -0.566311, 2.013777, 1.496688, -1.387787, 1.153324, 0.106980, -0.082899, 0.587804, -1.155205, 1.085579, 0.369825, 0.417089, 1.021712, -0.669302, -0.758896, 0.210923, 0.253470, -0.212504, 1.052913, -0.834339, -0.955122, -1.501965, 0.044251, -0.089116, 0.154636, -0.468314, 1.942479, 1.130711, 1.554711, 0.897517, 0.133241, 0.767225, -0.541034, 0.952236, -0.127024, -1.076128, -1.306692, 0.139515, 1.760366, -1.612195, 1.024336, 1.058249, -0.530043, -0.659581, -0.332121, -1.381470, 0.717139, -1.315567, 0.023098, -0.430636, -0.297089, 0.113438, -0.623983, -0.043908, -0.347067, 0.769097, 0.578816, -0.549213, -1.051440, 0.863544, -0.719289, 0.040030, -0.225305, 0.455594, -0.848245, -0.083824, 1.066442, -0.809301, -0.935748, -0.506573, -0.691330, 0.452970, -1.568340, 0.095337, 1.097788, 0.484391, -0.076441, 0.918378, -1.009492, -0.861432, 0.487705, -0.307148, 0.776054, 0.300242, 1.140218, 0.645286, 0.916950, -1.916275, -0.076287, 1.318896, 0.290422, -0.894996, -1.127544, -0.964298, 0.413565, 0.533709, -0.028855, 1.717943, -1.305980, 0.366002, 1.339150, -0.114969, 0.703352, 1.129595, 0.358759, -0.974376, 0.655035, 0.971618, 0.478921, 0.870140, -0.688404, 1.579125, -0.486345, 1.295197, 0.246409, 1.380043, 0.396221, -0.566857, -0.554473, -1.665938, -0.365643, -1.619207, -0.176565, 0.014242, -0.294738, 0.436808, -0.685948, -1.435917, 0.806713, 1.312199, 0.904785, -0.466605, 1.105168, -0.663831, -2.719723, 1.384892, 0.507204, -0.623716, -0.521850, -1.347116, -0.380209, -0.355050, -0.144522, -1.331080, 0.827650, -0.997355, -2.578861, -0.311889, -0.630814, -0.149935, -1.488386, 2.417150, 0.009275, 1.545489, 1.421100, -0.299038, -0.857799, -1.470489, 0.631914, 0.356574, 1.123001, 0.661686, -1.220224, -1.751932, -0.033867, -0.479748, -1.062558, -0.161204, 0.237046, -1.089888, 1.117793, -0.897274, 1.024702, 0.481106, 0.821814, 1.698008, 0.284859, -2.886798, -0.601113, 0.846343, 0.115336, 0.986459, 0.950422, 0.894066, -0.251326, 0.367570, -0.491369, 0.984153, 1.201833, 0.134712, 0.298497, 0.370454, -0.542984, 0.844034, 0.603911, -0.817840, -1.607979, -0.636919, -1.321260, -0.442724, 0.847497, -0.139469, 0.853183, 0.863377, -0.355089, 0.198343, -1.283811, -0.650588, 0.682261, 0.190765, 0.987441, -0.583438, -0.255676, -0.655559, 0.241466, -0.201111, 0.244188, 0.388859, 0.948580, -1.755311, 1.834091, -1.680032, -0.727987, 2.572913, 0.719841, -0.186008, 1.287947, -0.299030, 1.760421, -2.423195, 0.026613, -1.619953, -0.077301, 0.746800, -1.073566, -0.750002, 1.798259, 0.717453, 1.662824, -1.126805, 0.218205, 0.619591, -1.511202, -0.942170, -1.394857, -1.411789, 0.676113, 0.366643, -1.712855, 0.297478, -0.000230, 1.145733, -0.716335, -1.835205, 0.089205, 0.008892, -1.566904, -0.402140, -1.292695, 0.187779, 1.725797, 1.543179, -0.920616, 0.719518, -0.668737, -1.601129, -0.767975, -0.341658, -0.746770, -0.970000, -1.065336, 0.665581, 0.098309, 1.094631, 0.406114, 0.602856, -0.335420, 0.386918, 0.199210, 1.615882, -2.408951, -0.380376, -0.069536, 1.405371, -2.024847, -0.386590, -1.046656, 2.673621, 0.920108, 0.471663, -0.281005, -0.793354, 2.093169, -1.379986, -0.513385, -0.386928, 0.968884, -0.301650, 1.508372, -0.148648, -1.161270, -1.733997, 0.974015, -0.314582, 1.800069, -2.159910, 0.203225, -0.343901, -0.665765, 1.140197, 0.010250, 1.164854, -0.226451, -1.194389, -0.963590, 0.920885, 0.193840, -0.783899, -1.798317, -0.707328, -1.207207, -0.844507, 0.697535, 0.691267, -0.939020, 0.059549, 0.283004, -0.443326, -0.055189, -0.593534, 0.892826, 0.406508, 1.316018, -1.844848, 0.148372, -0.559569, -0.364895, -0.469858, -0.941906, -0.099158, 0.831627, 1.189852, -0.976663, 2.835562, -0.127476, -0.548714, -0.079719, -1.930110, -0.811902, -1.033335, 1.896706, 0.109211, 0.505187, 0.607807, -0.817037, -0.670715, 0.315486, 0.302596, 1.796894, 0.568534, 1.437424, 1.223598, -0.910170, -0.350935, -0.905451, 0.953954, -0.856089, -1.593141, -0.191105, 0.431107, 0.084841, -0.032016, 0.900846, -1.074397, -0.139936, -0.107714, 0.090016, -0.099433, 0.374506, -1.302671, -1.236478, 1.501433, 0.300742, 1.589936, 1.893235, -0.277069, 1.365385, -0.004377, -0.004247, -0.177179, 0.170261, 0.937936, 0.795878, -1.595454, 0.439143, 0.028638, -0.471835, 1.336467, -0.014874, 1.259495, 0.407983, 1.405498, 1.327009, -0.822830, -0.488193, 0.250268, 0.253280, 1.340945, -0.205361, 1.224654, 1.227148, 0.327843, 1.307411, -0.952049, 0.914469, 0.606254, 1.096813, -0.813158, 0.281851, 0.152936, 0.846013, 0.857708, -0.410271, 0.060223, 0.434891, -0.489143, 0.125288, 0.353961, -0.003488, -0.028117, -1.571742, -1.519079, 0.193470, 0.122562, -0.700344, -1.355346, 0.237293, -0.443501, 0.662822, -1.198535, -1.069011, 0.487202, 2.241471, -1.375819, -0.934614, -1.675911, -1.713843, 0.974879, -1.738360, 1.601777, -0.105966, -0.377980, -0.469952, 0.562329, -0.558756, -0.186445, -0.333349, -0.998854, -0.083348, -0.449209, 0.923690, 0.268688, -0.611534, 1.254464, 1.308631, 1.126693, -0.257512, 1.420009, -1.121793, 0.787145, 0.424889, -1.497740, -0.636727, -2.255743, 1.646417, -0.712464, 1.075660, 0.396806, -0.584058, -2.412119, 0.711252, 0.381605, -0.842922, 0.376938, 0.229876, -0.046180, 0.289171, 0.827664, 0.194347, -0.001255, -1.991791, -1.303784, -0.558858, 0.473175, 0.886602, 2.228929, -0.535967, -1.766033, 0.005980, -1.272594, 0.579264, 1.129129, -1.179870, -0.653437, -0.328890, -0.285420, -0.354478, 0.977197, 0.113783, 0.226503, -0.665439, -1.370713, -0.239997, 1.174984, -1.134012, -0.581365, 0.539099, 1.524967, -1.312458, -0.153321, 0.217497, 0.602811, -0.876007, -0.234869, 2.577600, 0.343239, -0.805436, 0.073816, 0.000318, -0.646728, -1.523271, 0.743044, 0.594229, -0.750330, 0.285405, 0.464418, -0.082225, 0.250548, 0.900854, -1.744746, -1.234793, -0.294216, 1.651288, 1.633520, 0.015482, 0.052410, 0.653854, 0.936157, 0.087540, 0.562775, 1.357288, -0.031579, 0.468495, 0.647439, 1.540446, 1.867660, 1.021137, -1.439585, -1.180619, 0.122432, -0.428441, -1.893297, -0.794879, 0.832536, -0.178663, -0.522226, 0.608327, -0.591676, -0.717490, 0.869065, 0.878123, 0.038759, 1.013347, 1.233262, 1.121326, -1.818453, -0.855657, -0.875917, -0.764359, 0.498708, -1.105016, 0.738071, 2.519559, 0.910957, -0.208716, -0.085094, 1.695150, 0.955911, -0.671634, -1.259013, 1.454198, -1.542137, -0.478988, 0.051290, -0.582529, -0.847671, 0.247783, -0.497812, -0.151810, -0.558376, -0.033536, 0.203148, -0.802974, -1.374078, 0.731130, 0.527886, 0.030048, 3.744859, 0.087207, -0.158493, 1.009677, 0.258204, 0.125366, -0.337034, 0.054513, 0.407245, -0.250819, 0.915709, -0.488188, 0.056892, -1.411888, -0.923479, 0.080322, -0.991549, -0.298401, -0.490447, 1.223770, 0.299586, 0.162116, -0.898755, 1.599583, 2.296298, 0.045946, -1.799554, -0.709610, 1.954485, -0.008311, 1.066191, -0.150060, -0.774191, 0.300882, 0.059664, -1.699009, 1.096290, 0.010271, -0.034781, -0.171092, 1.085680, 0.268309, -0.962462, 0.105220, -0.044777, -0.248024, 0.102901, -0.942928, 0.339519, 1.140226, 0.953310, -0.114524, -0.368990, -0.772944, -0.576804, 2.357136, -0.634191, -0.265064, 0.461750, 2.215632, 0.304108, -1.139323, 0.424672, -0.601927, -0.594569, 1.377077, 0.124884, -0.180933, 0.437936, -0.882867, -0.621552, -0.073142, 0.430129, -0.704793, 0.471346, 1.557045, 0.843472, -0.024710, 0.415605, 0.898428, 0.147821, -0.144825, 0.367620, -0.142628, 1.009105, 0.028088, -0.682879, -0.755734, 0.216086, 0.711905, 1.269009, 1.052855, -0.954055, -1.217704, -0.076662, -0.041843, 0.510446, -0.947420, -0.283176, 0.226060, -0.466057, -0.061122, 0.946984, -0.855128, 0.540702, 0.525191, 0.161850, 0.028560, -0.409095, 1.284615, 0.325593, -0.847021, 0.513871, 0.205773, 0.582434, -0.245673, -1.126008, 1.128173, -0.716222, 0.946040, -1.303834, 0.272117, -0.759836, 1.294235, -1.801852, -0.264292, 0.761123, -0.488240, 0.030704, -0.576573, -0.799884, 0.382460, -0.326242, -1.020764, 2.012962, -0.493112, 0.777578, 0.338564, -0.096767, 0.975525, 0.738551, 0.193163, 0.648066, -0.617337, -0.805184, -0.049253, 1.032000, 0.552918, 0.389483, 0.217783, 0.784359, 0.949948, -1.573999, 0.132809, -0.210008, 0.227654, -0.222163, -1.515145, 2.102382, 0.530020, -0.140866, 0.187320, -0.397628, 0.347515, 0.487305, -0.376161, -1.595558, 0.486900, -0.299084, -0.115807, 1.076742, 1.647478, -2.662083, 0.931876, -1.473537, 0.945647, -1.537945, 1.006837, 0.872007, 1.154192, -0.135422, 1.421912, -0.006298, -0.726809, 1.638857, -0.768131, 0.059250, -1.286659, 0.223529, 1.472108, -1.562910, -0.516101, -0.978386, 0.261524, 0.067219, -1.549361, 0.547936, -0.104764, -1.216422, -0.378732, 0.564135, 1.452287, 1.876404, -1.680602, -0.822061, 0.937479, 0.615516, 0.599575, 1.533458, -0.890088, 0.522776, -2.854117, 2.320244, 0.388879, -0.389888, 0.455235, 0.295684, 1.563179, -0.871747, 0.309036, 1.594712, 0.210101, -0.492190, -0.662566, -1.338976, 0.566235, -1.288773, 0.718287, -0.876564, 1.182189, 1.034080, 0.542032, -1.434643, 0.647351, 1.308984, 0.658362, 0.341634, 1.367687, -1.035447, -0.756976, -0.831769, -0.312966, -0.260625, -1.389426, -1.250990, -0.160787, 1.137220, -0.299648, -0.248941, -0.581429, -0.631343, -0.475784, 0.360374, -0.618511, -1.569376, 0.332820, 0.575447, -0.972190, -0.953109, -1.652333, -0.416522, 1.190706, -0.916058, 0.166155, -0.086494, 0.003397, -0.188485, -0.024024, 0.333510, 0.529733, 1.768549, 0.754436, -1.503722, -1.835428, 0.548523, -2.067754, -0.148840, 0.883645, 1.827315, 0.647267, 0.849674, -0.953655, -1.808820, 0.161266, 0.632572, -0.453001, 0.123088, -1.612214, 0.442415, 0.193868, -0.012294, 1.517930, 1.124382, -0.756879, 1.162058, -2.235952, -0.367381, 1.364506, -0.040604, -0.181010, 0.886222, -1.775406, -0.933216, -1.519562, 1.422214, 0.209427, -0.155873, 0.210300, 0.134160, 1.211529, -1.802308, 0.515630, 1.641126, 0.689008, 0.043007, 0.589520, 0.935665, -0.813095, -0.720976, -0.693965, 0.682387, -0.047922, -1.558724, 1.987596, 0.932124, 0.887283, 1.912086, -1.299665, -0.077051, 0.126033, -1.148273, -0.120544, 0.578289, 0.801707, -0.304225, -0.469446, -1.017890, -0.962110, 0.806902, 1.311600, 1.187824, -2.629572, -1.202088, 1.273359, 1.887361, -0.642433, 1.306468, 0.766928, -0.950644, -0.303460, 0.169253, 0.698658, -1.105081, -0.058064, -0.883515, -0.198951, 0.560059, -1.973132, -0.167510, 0.157681, 1.615469, -0.314562, -0.772741, -0.298139, 1.643603, 1.720051, 1.530203, -0.623360, 1.214878, -0.970001, 0.910209, -1.006051, -0.090853, -0.036730, -0.022288, 0.576968, -0.012129, 1.735744, -0.043744, 2.147399, 1.423504, 0.888891, -0.941176, -0.914758, -0.264422, 0.154247, -1.014878, -0.011012, -0.062793, -0.365773, 2.523519, 1.783464, 0.368886, 0.680752, 2.454685, 0.716968, 0.712061, -0.053589, 0.593336, -0.427347, 0.580925, 0.588111, -0.363578, 0.477619, -0.970110, 0.653638, -0.255987, 0.537856, -0.322035, 0.018959, 1.341503, 1.378237, -0.518096, -0.291986, -2.383266, 1.354055, 0.322570, 0.474119, -2.190690, -0.235221, 0.932107, 0.223629, -0.605306, -0.010049, 0.399634, -0.443307, 1.176211, -0.708537, 0.787653, 0.024496, 0.225631, 0.697763, -0.303147, 0.394061, -1.406711, 0.933753, -0.417042, -1.621655, -0.005629, -0.104089, -0.018177, -1.396924, 1.182165, -0.915042, -0.989190, -0.931818, 0.199863, -1.164411, 0.035943, -1.123842, -0.726692, 0.475951, -0.101742, 0.674788, 0.847375, 0.148091, 1.000266, -1.646230, -0.378429, -1.106680, 1.467531, -0.083979, -0.752996, -0.011458, 0.715144, 0.761876, 1.115057, 0.086972, 0.590307, -0.649086, -0.589264, 0.866955, -0.418955, -0.923752, 1.245276, 0.106807, 0.634579, -2.190740, 0.652071, 1.903773, 0.280164, -0.324085, -0.354360, 0.018221, -2.151176, -0.498744, 0.230777, -0.569936, -0.036628, -1.789605, -0.856402, -0.853208, 0.730745, 0.190610, -0.229136, -0.504730, -1.447500, 1.542168, 0.150378, -0.891806, 0.984614, 0.882121, 1.240062, -0.189251, -0.336081, 0.882380, -0.469770, 0.186600, -1.199768, 0.883424, -0.361033, -1.321942, -0.153831, 0.770083, -0.426436, -0.964800, -0.953939, 0.299613, -0.793931, -0.787713, 0.153326, 0.575251, 1.056142, -0.630192, 1.135133, 0.296740, -0.362268, -0.515882, -1.379330, -0.091961, -0.801024, 2.285999, -0.117616, 1.558606, -2.038399, 0.856770, -0.980715, 1.326690, 0.429703, 0.666089, -1.557004, 0.324893, 0.588794, 0.370877, -2.240965, -1.030808, -0.363712, 1.606537, 1.056159, -0.225490, 1.362141, 0.952315, -1.919861, -0.534532, -0.962749, -0.553841, -1.181948, 1.173754, -1.570500, -0.806858, 0.989303, -0.132119, 0.356266, 0.430132, -0.821426, -0.616771, 0.794070, 0.227103, 0.165308, 1.187267, -0.605798, 0.945808, -0.514199, -0.363247, -0.275213, -0.141464, -0.554355, -0.753045, -1.087246, -0.962494, -2.295231, 2.494291, 1.174601, 0.621080, 1.303096, -1.748542, 0.657429, -0.911710, -1.794990, 0.662236, -0.751830, 0.629277, 0.847901, 1.597533, -0.212010, 0.227406, 0.279594, -1.693786, 1.231303, 0.010829, 2.509286, -0.287808, 1.092718, -1.409460, -1.129427, 0.939660, -0.619020, 0.917412, -0.103279, -0.335687, -1.525955, -1.494753, 0.542674, 0.129437, 1.894534, -1.294623, -0.498218, 0.176489, -0.110692, -0.420677, 0.713729, -1.598181, -0.957914, -1.337547, 0.023698, -0.285161, 0.232140, -0.781073, -0.040973, 1.183703, -0.692324, 0.670933, -0.414949, 0.242312, -1.121752, 1.063712, 0.071522, -0.790074, -1.060368, -0.967597, 0.667568, -0.512581, 0.508028, 1.216053, 0.298135, 0.101781, -0.197221, 0.223722, -0.952113, 1.767540, -0.716713, 1.029834, 0.094344, -1.914947, -0.432848, -1.600961, 0.524762, 0.199797, 1.255647, 0.243163, 2.695452, 0.189915, -0.518012, -1.006203, 0.754227, -0.808953, 2.201628, 1.221990, -1.157120, -0.308827, -0.029266, 0.072014, 2.096768, 1.621062, 1.756547, -0.599873, -0.129024, 0.323896, -0.628606, -1.562733, -0.946005, -0.414196, -0.384258, 0.472222, -0.699227, 0.618444, -1.038929, -0.762177, -0.296663, 0.950127, -0.057706, -0.720077, 3.099193, -0.478931, 0.511509, 0.180634, 0.667542, -1.792011, -0.303764, -1.652293, -1.280203, -0.062729, 0.596576, -0.263964, -1.193720, -0.303549, 0.216534, -0.796900, 0.040397, -0.251684, 0.297526, 0.912297, -1.034247, -1.017054, -1.206869, 1.352986, 0.969517, -1.595762, 1.099380, 0.543110, -0.479170, -3.358348, -0.127788, -0.558697, -0.456841, -2.552514, 1.062199, -1.648405, -0.676737, -0.572096, -0.510583, -0.111546, -0.774599, -0.382882, -0.827536, -0.272139, -0.176061, 0.757217, 1.647794, -0.819430, -0.867901, 0.838656, -0.361105, -1.078085, 2.461106, 1.291247, 1.366076, -0.027307, 1.716192, 1.454110, -0.984450, 0.562563, -0.404285, 0.570545, -0.616408, -1.294423, -0.260217, -2.380855, -1.358480, 0.665907, 1.369127, -0.519710, 0.425237, 0.089161, -0.558228, -1.228448, 1.984715, 0.326622, 0.560814, 0.179908, 1.102964, 0.634109, 0.836891, 0.298898, -0.430326, -0.394783, 0.579352, -1.177464, -0.198226, -0.121994, 1.923454, -0.006262, -0.706024, 0.305504, 0.588560, 0.601342, -1.400091, 2.379891, -0.824755, -0.056605, 1.274209, -0.408111, -0.527862, 0.041188, 0.380470, -0.451442, 0.363334, 1.402236, -0.232648, 1.329393, 0.402984, 1.173035, -0.467945, 0.522728, -0.533722, -0.656040, 1.288262, 1.193023, -1.313586, -0.340013, 1.489951, 0.474619, 0.362209, 1.583132, -1.180411, -1.787519, 0.829754, 0.722097, 0.873255, 1.238939, -0.517981, -0.229627, -0.422582, -0.624532, -1.337405, -0.737128, -1.412669, 0.986173, 0.438277, -0.019205, 1.021370, 0.598993, -0.148298, -0.763043, 0.579651, 0.422510, -0.509580, 1.072799, -0.983634, -1.027078, 0.749448, -1.316331, -2.035858, -0.902220, -1.118457, -0.350836, -3.290744, 1.538079, 0.593238, -0.548930, 1.220102, -0.021955, 0.441516, 1.193944, -0.977958, -0.792941, 0.333881, 0.459984, -1.270217, -0.316534, -0.474043, -1.435200, -0.098169, -0.146348, 0.302231, 0.018440, 0.451915, -0.408195, -0.160546, -0.148002, 0.170020, 0.577289, -1.218128, 1.333437, -1.782829, -0.953887, 0.193308, 0.009397, -1.558472, -1.079982, 0.967111, 0.935985, 1.104000, 0.306498, 0.048959, -1.535052, 0.218331, -1.639868, 0.246992, -1.486356, 2.848007, -0.181802, -0.927040, -0.666915, -0.692319, 0.473089, -1.191594, 0.467454, 0.529816, 1.023217, -0.796036, 0.664019, -0.996616, 0.182204, 0.242223, -0.030521, 0.794364, -0.692690, 1.744260, 0.251815, 0.283903, -0.590698, -0.774000, 1.273107, 1.231728, -1.476550, 0.349324, -1.163586, 0.503046, -0.708940, -0.720347, 0.795058, 0.933600, 1.018722, -1.971080, -0.157388, -0.907509, -1.537901, -1.533309, -0.783092, 0.334103, 0.536473, 0.074305, -1.499410, 1.870492, 0.188172, 0.301038, -0.524217, -0.600346, 0.296362, 1.886847, -0.532337, -0.120864, 0.855696, 0.948470, -0.873934, 0.411673, -0.108981, 0.239930, 0.517267, -1.673661, 0.630848, -0.781659, -2.124833, -0.147121, 1.412322, 0.066195, 0.024525, 0.491079, -1.417892, 0.594024, -0.105015, -2.475106, -0.323457, -0.111461, -0.727591, 0.477356, -0.840608, 0.328171, -0.234355, -0.424616, -0.526582, 0.626653, 1.784402, 0.362903, -0.267303, -0.782190, -0.909535, 1.244296, -0.407208, -0.119454, 0.389337, 1.345816, -0.735962, -0.924169, -0.607997, -1.319383, -1.333291, 0.722979, -0.680176, 0.220947, -0.298770, 0.852112, -0.611865, 0.895760, -1.391772, 0.390544, 0.453035, 0.344289, 1.386752, -0.419754, 0.070027, 0.901925, -0.629054, -0.525925, -0.224853, -1.738995, 1.056784, 0.283250, 1.673737, -1.492004, -0.807594, 1.616719, 0.059522, -0.525472, 2.103395, 0.618304, 0.048548, 0.434617, -0.442420, 0.647397, -0.853310, -0.183788, 0.047155, 0.066744, -0.433075, -0.912800, -0.345984, 0.969438, 1.108527, -1.094352, 0.927107, 0.654865, 0.999573, -0.500909, 0.234292, 0.298394, 0.071158, -0.753990, -0.024070, 0.394929, -0.313079, -1.811564, 0.674493, -1.397763, 0.922982, -0.267128, -0.957053, 1.480111, 0.353777, -2.088970, 1.858404, -0.040560, -1.235375, 0.139376, -0.983130, 0.240955, 0.714288, 0.885126, 0.220309, -0.792366, -1.187943, 1.461065, 0.183228, 0.423110, -0.580854, -0.690032, 1.093411, 0.662932, -0.005757, 0.767360, 0.520753, -0.617891, 0.317027, -0.373111, 1.942600, 0.854538, 0.127914, -0.318061, 0.339670, 1.777531, 0.867699, 1.043440, 0.221468, 0.447914, -0.200078, 0.199318, 0.551104, -2.190970, 0.255184, -1.608382, -1.278952, 1.571371, 0.249518, 1.058376, -0.789240, 2.812099, 0.725047, 0.542104, 0.256587, 0.239273, -0.114991, -0.099124, -1.114297, 0.628005, 0.082941, 0.307606, 1.056695, -1.765013, -1.586355, 1.027566, -0.065029, -0.635301, -1.667406, -0.513803, 1.136289, 0.122947, -0.146331, -1.145963, 1.184713, 1.233809, 0.176630, -0.593536, -0.962742, 0.508538, 1.265618, -1.282028, -1.208776, 0.736253, 1.441993, 0.852333, 0.540907, 0.275650, -0.861491, 0.549781, 0.364437, 1.706620, 0.551301, 1.011261, 0.667913, -0.666879, 0.505472, -1.109132, -0.019596, 0.736578, -0.261241, -0.603579, 0.487883, -1.498205, -1.385296, 1.253567, 0.527889, 0.072070, -1.229519, 0.021725, -0.232425, -0.457872, 1.274671, 0.864985, 0.141963, -0.103384, 0.625382, 0.850684, 0.098495, -0.889554, -1.130785, 0.031865, 1.588821, 0.963561, 0.442547, 1.164780, 0.754968, -2.020823, -0.621038, -0.944792, -1.131911, -0.987944, -0.638715, -1.900232, -1.561238, -0.561367, -0.448166, -1.050050, 1.056443, 0.441451, -1.391055, -0.816149, 0.776623, 0.159550, 0.692669, 0.344331, 0.042670, 1.713334, -0.364159, -0.390255, 1.319268, 0.933050, 0.309050, -0.592574, -1.628771, -1.857893, -3.068927, 0.214256, 0.302144, 0.254882, 0.438567, -0.278715, -0.955446, -1.259480, -0.479821, 1.476324, -0.152102, -0.076762, 2.891149, 1.164605, 0.449336, 1.181607, -0.761865, -0.339467, -0.930732, 0.267239, -0.159446, 0.077732, -0.145504, 0.879262, -1.327493, 0.737494, -1.304277, -0.824024, -0.479485, -1.208102, -0.622517, -0.598328, 0.673618, -0.330795, -2.187228, 0.322942, -0.373992, 0.803198, -0.039636, 1.115615, -0.060927, -0.688936, 1.059522, 0.224974, -1.749339, 0.182948, 0.100304, 0.058683, -0.416857, -0.123788, 0.216024, 0.295013, -0.640923, 2.268791, -0.326884, 1.283744, -0.624295, -0.712606, 0.246953, 0.354621, -0.986225, 1.007678, -1.115502, 0.878721, 1.689297, -0.383738, 1.043325, 1.691676, 1.486106, 2.696296, 1.178405, 0.221530, -0.908419, 0.328012, -0.374297, -2.623704, -2.309197, -0.716143, 1.266856, 0.346911, -0.265984, 1.047110, -0.112382, 1.365114, -0.030201, 0.533709, -0.332707, -0.261632, 0.946086, 0.064392, 0.794587, 0.437872, 1.562116, 1.256813, 0.574278, 0.349693, -1.506280, 0.465180, -0.268917, -0.551112, -0.632856, -1.891182, 1.499568, -0.671930, -0.080869, -0.487188, -0.337470, -0.673157, 1.129903, 0.031568, -0.437237, -0.576593, -0.897238, -0.104980, 0.087607, 2.342418, 0.864323, -1.211711, 0.640604, 1.931100, -1.033041, 1.807031, -0.609410, 0.192863, -0.230001, -0.204107, -1.257146, 0.235375, 0.497319, -0.522283, -0.047603, 2.247055, -0.472672, -0.742728, 1.887584, 0.297853, 0.019960, -0.346045, 0.642405, 0.908946, -0.190561, -0.903710, -0.200454, -2.026911, -1.987453, 0.441738, 0.803257, 1.005574, 0.304628, -0.810955, 0.719511, -0.061451, 1.819792, -0.801520, 1.559348, -0.082772, 2.704689, -0.026683, 0.844406, -0.694418, -0.047838, -0.671424, 2.624848, 1.394493, -0.180582, 0.721058, -0.125405, -0.871509, -0.265418, -0.435092, 0.514038, 0.000100, -0.302822, -0.822031, -0.010094, 0.864020, -0.714704, -1.123714, 0.660663, 0.336561, 1.147660, -2.273621, 1.129006, -0.178031, -1.377156, 0.792094, 1.170925, -2.218573, 0.337177, -0.612150, 0.719061, -1.819574, -0.947904, -0.242153, -1.994135, 0.836154, -0.569495, 0.998790, 1.436393, 0.080266, 0.314516, 0.891994, -1.376253, 1.360397, -0.165339, 0.866988, 2.559131, 0.777232, -1.187380, 1.287731, 0.094124, -0.730634, 0.485846, 0.513444, -0.818649, -0.455261, 0.580234, -0.878480, -1.731625, -0.131472, 1.166456, 0.910154, -0.902469, 0.590506, 0.428243, 1.010460, 2.472925, 0.255461, -0.858515, 1.170253, -0.357613, -1.214351, -1.245906, 0.238280, 0.082317, 1.852567, -1.318894, -0.858178, 0.339556, -0.643254, 0.907428, -0.033898, 1.877326, 1.533348, 0.975519, -0.446442, -1.541719, -0.984386, 0.018960, -0.697507, 0.559199, 0.723013, -0.773009, 0.493163, -1.300100, -0.493068, 1.902532, 1.547151, -0.303401, -0.508648, 0.270874, 0.507754, -0.616424, 1.134995, -0.937899, 0.238074, 2.290282, -0.390994, -0.975604, -0.155326, -0.178728, 0.511132, 0.398456, 1.100996, -0.757965, 0.870789, 1.209118, 0.617684, -0.132987, 0.129870, 0.179757, -1.401115, 0.496647, 0.496407, -0.901952, -0.121360, 0.549526, -1.048672, 0.090208, 0.596081, -0.445324, -1.725782, -0.956257, 0.226075, -0.248751, -0.247744, 1.002601, -0.774292, 0.167107, 0.533074, -0.040924, -0.157621, 1.437727, 0.304615, 0.319718, -0.303391, 2.116110, -0.405676, 1.252120, -0.037453, -0.008630, -1.969046, -0.692743, 2.409692, 0.126349, 0.636677, -0.437878, -0.823856, -0.162109, 0.868169, -0.689817, 0.275756, 1.306606, -0.073079, -1.154076, 1.638784, -0.192958, -1.113801, 2.071736, 0.495999, -0.046639, 0.236917, -0.719900, -1.269621, -0.803141, -0.634999, 0.167393, 1.458770, 0.944166, 0.217359, 0.934394, -2.149999, -0.102730, 0.291910, -0.483770, 1.106285, -0.261264, -0.495627, -0.504177, 0.268520, -0.197266, 1.430473, -1.499636, -1.068286, 0.035220, 1.113044, -1.479456, 0.756326, 0.319994, 1.437050, 1.778368, 0.761751, 0.188487, -1.126828, -0.167963, 1.391164, 0.626894, 0.996698, 0.342408, 0.252847, -0.223673, 1.989495, 0.206736, -1.098589, -0.939435, -1.544804, -0.940315, -0.814343, 1.727745, -0.211864, 1.713724, 0.622814, -1.097588, -1.328360, 0.464264, -1.404117, -2.184486, 0.319263, 0.412176, 1.341600, 0.036501, -1.143893, 1.207517, -0.743986, -0.225329, 1.573940, -1.041914, 0.389225, 1.620758, -2.315213, -1.738401, 0.077456, -1.885578, 1.180387, -0.651181, 0.169728, -0.838826, -2.134971, -0.867158, 0.502595, 0.142177, 0.049358, 2.363822, -0.887378, 2.034538, 2.519930, 0.049951, -0.876273, -0.980878, 0.456311, 0.778226, -0.144836, -1.291349, -0.797972, -1.301330, -0.309712, 0.826805, 0.580028, 0.551396, 1.410279, -0.236090, 1.064316, -0.379266, 1.010815, 0.765353, 0.612462, 0.533685, -0.734670, -0.702826, 0.902122, -1.025042, -1.077872, -0.280234, 0.768349, -0.873531, 0.617642, 1.164467, -0.982887, 1.284477, 0.507335, -0.189306, 0.837987, 2.037528, 0.484350, 1.602050, 0.263021, 0.097864, 1.608288, -1.080719, -1.339452, -0.861968, -2.282254, 0.797448, -0.025785, 0.823465, -0.930541, 1.080138, -0.105426, -0.149637, 0.728237, 0.958368, -2.512169, -0.648876, 0.450217, 0.471417, 0.069004, -0.112511, -0.836981, -0.780356, -0.401388, 0.631717, -0.709272, -0.169853, -0.867400, -0.114735, -0.250278, -0.589930, 1.565497, -0.242609, 0.531088, 0.315663, 0.459644, -0.195170, -0.230764, 0.378899, -0.062841, 0.695626, 0.121692, -0.879932, -2.399155, -1.839934, -0.566015, -0.406802, -0.996987, 0.963469, 1.014006, 0.270777, 0.619836, 0.330515, -0.433092, -0.610199, -0.454567, 1.874223, -0.812274, 1.479860, 0.293079, 1.079191, -1.665428, 0.698277, 1.251763, 0.217812, 0.816184, -0.205709, -0.452428, 0.672523, -0.922743, -2.879743, 0.675595, -2.220519, -0.298541, 1.404589, -0.509544, 0.204987, 1.988579, -0.843112, -1.309876, 0.018853, -0.272084, 0.799356, 0.050541, 1.056019, -0.222319, 0.227980, 1.184379, 0.032781, -0.264699, -0.110375, -0.215949, 1.965842, 0.170879, 0.928995, -1.201973, 0.418469, 1.172599, 0.950635, -0.945837, -1.105076, 0.811742, 0.990821, 0.042311, -0.959333, -0.666812, -1.304557, 0.475595, 0.002756, -0.720316, -1.420150, -0.341490, 0.796456, 0.070078, -0.053087, -0.748564, 0.117776, -0.935660, -0.978098, 0.656585, 2.443043, 1.158344, 1.581965, 0.849176, 1.335384, -0.821780, -1.552891, 0.134091, -0.475488, -0.316487, 0.493461, -0.685609, 0.750872, 1.335694, -0.058513, 1.445563, 1.201822, -0.946800, 0.281683, -1.246872, 0.130106, -1.172482, 0.874065, 1.029111, 0.337881, -1.866338, 1.405511, -0.405088, -0.902345, -0.362323, 0.481963, 0.789111, 1.150148, 0.088632, 2.682568, -1.272945, 0.844879, -1.080114, -1.274087, -0.026501, -1.314465, -1.031805, 0.299062, 0.808069, 0.628225, -0.547387, 0.714948, -0.247041, -0.120229, 0.284313, 0.693740, 1.314882, 2.263302, 0.319014, 0.165651, 0.571691, 0.623252, 0.260181, -1.833646, 0.990031, -0.289431, -0.409693, 1.082961, 1.152201, -0.348899, -1.637911, -0.213421, -0.178989, -0.492583, -0.347373, -0.099031, 1.177058, 0.062711, -0.416057, 1.449955, -0.251558, -1.009918, -1.014540, -3.107098, -0.343748, 1.482357, -1.136439, -1.685111, -2.002580, -0.130317, -0.088109, 0.261270, -0.539753, 1.846484, 0.450707, -0.319699, 0.858138, -0.786194, -0.413516, 1.465221, 0.812131, 1.751616, -0.586267, 1.053182, -0.389006, -1.207141, -0.456188, -0.682035, -0.113984, -0.218750, -0.813892, -1.150459, 0.365009, 0.257702, -0.808845, 0.332905, 0.330440, -0.733580, -0.621455, 1.069198, 0.232972, -0.173688, 1.089804, 1.077080, -1.537364, -1.160265, -0.827133, 2.969784, -0.380828, -0.174024, 0.895129, -0.595677, 1.369341, -0.742931, 1.821479, 0.840993, -0.288871, 0.458630, 0.666277, 0.241158, 0.191612, 0.036389, -1.152994, 0.349647, 0.611416, 1.108040, -0.449885, -1.075631, -0.057494, -1.911325, 0.083033, -1.049838, -0.432355, 1.244782, 0.986063, 0.436598, -0.085157, -0.472627, -0.655530, 1.098706, 0.290803, 1.287088, -1.332629, -1.046975, -1.254226, -0.197748, 0.446187, 0.338644, -0.701213, 0.828524, 0.645492, -0.813817, -0.697010, -0.083626, 0.874070, 0.631169, 0.167962, 1.979197, 0.518246, 0.002537, -0.093608, 2.074943, -0.969589, -0.767457, -0.626315, -1.170803, 0.365757, -0.286812, 0.310755, 0.644034, 0.386650, 0.026644, 0.668145, -0.023332, -2.174154, -0.590257, 0.185610, -0.279616, 0.150596, -0.533425, 0.325675, -2.208292, 1.302406, -0.350507, 0.749857, -1.247586, -0.024519, 0.832427, -0.210042, 1.213729, -0.692158, 1.393602, 0.496035, -0.017001, -0.157795, 0.422846, -0.690903, -0.478644, 0.271725, 1.028905, 1.307697, -0.873003, 0.375732, 0.223415, 1.521141, -0.103832, 0.845385, -0.902537, -0.191197, -0.520706, 0.715710, -0.144872, -1.069634, 0.228421, 3.094215, -0.241571, -0.174412, -1.226843, 0.841745, -0.277049, 0.227562, 0.667720, -2.239697, -0.793509, -0.910455, 0.027401, -1.830518, -0.243316, 0.168970, -2.414641, -0.147897, -0.620089, 2.558652, -0.000057, 1.661484, 0.677712, 2.488127, -0.568762, -1.201332, -1.723140, 0.158921, 0.460419, -0.740550, 0.564684, 0.171478, -0.563114, -0.109429, 0.823484, -0.738401, 0.920455, 0.791381, 0.334914, -1.621531, -0.847671, -0.130315, -0.537176, -0.700846, -0.494190, -1.096820, -0.056814, -1.836258, -0.896149, 1.626858, -0.272714, -0.551725, 0.166678, 1.343282, -0.211742, 0.018142, -0.362325, 0.464796, -1.238167, -0.684141, 0.535091, -0.758839, -1.982718, -1.209737, 0.433154, 0.338704, -0.048311, 0.069631, -0.278169, 0.595718, -1.162647, 0.163905, -0.128582, -0.887832, -1.531715, -0.481626, 0.628036, -1.796754, -1.570508, -0.604021, 0.234261, 0.320008, -0.765202, 0.087421, -0.393904, 0.234731, -0.405125, 0.246564, -0.172009, 0.076080, 1.493095, -0.827760, 1.292185, 0.130032, -1.630737, -1.161111, -0.390723, 0.211540, -0.496253, 1.050335, 0.183662, -0.347180, -0.676433, -1.164106, -0.195154, -0.222503, 0.711885, -0.718925, 0.764717, 0.081814, -1.651702, 0.639418, -1.388937, 0.500354, -0.029187, -1.250546, 1.773692, -0.272374, 0.326819, -0.261313, -0.738117, 2.001954, -0.761357, 0.362197, 1.516437, 0.196018, -0.989632, -0.910374, -0.223146, 0.504880, 0.336588, 1.570307, 0.663175, -0.365961, 0.720082, 0.255691, -0.398342, -2.252949, 0.896608, 1.016340, 0.307385, -0.019093, 1.362621, 0.333366, 1.089450, -0.792678, -0.048040, 1.142190, 0.357204, -0.004240, -0.250458, -0.798590, 0.417309, -1.303907, 1.389667, 0.522712, 0.006600, 0.370091, -1.109512, -0.357632, -2.379878, 0.603968, 0.018663, 0.055206, 1.358885, -1.209405, 0.025900, 0.356927, 1.959827, -0.287294, 0.896338, -0.218103, 0.970927, 0.712794, 0.578861, 1.404701, 0.318558, 1.164792, -1.409568, 0.973918, -0.815496, -0.214010, -1.409923, -0.925293, -0.357835, -0.667657, -0.276477, 0.486161, -0.874614, 0.180940, 0.532994, 0.121336, 1.054200, 0.760681, -0.078399, 0.621015, 0.607999, 0.352320, -0.106320, 0.320432, 0.383911, 0.266024, 0.697116, 0.867710, 0.080710, 2.035456, -0.281142, 0.025039, 3.302772, -0.296941, -0.190671, -0.173798, -0.834814, -1.201109, -0.434305, 0.405013, 0.308712, -0.711574, 1.803364, -0.070834, 1.233203, 1.552413, -0.285635, -2.380870, 0.480311, -0.107579, -0.458753, -1.096381, -0.210808, -0.199755, -1.408006, -0.482792, 0.724200, -0.050026, -0.055566, 0.018171, -3.453251, -1.452587, -1.605376, 0.473555, 0.836121, 2.006517, 0.919471, -1.828668, -0.215271, 0.910352, 0.224749, 0.486680, -1.428302, -1.787159, 0.171893, -0.737114, -0.275540, 0.247846, -0.354593, -0.260594, 1.422811, 0.609530, -0.197687, 0.843860, -0.856948, 1.198039, -0.882144, -0.249322, 1.893704, 0.853703, -2.073418, 0.648907, 0.765741, -1.588450, 0.612558, -1.239891, -1.501171, 1.242420, -1.883491, 0.718154, -2.456889, 0.451654, -0.135719, 0.519739, 0.491944, 0.277727, -0.680570, -0.075004, -1.013855, 0.577856, -0.443291, -1.673644, 0.092935}, + { 0.940526, 0.887387, 0.309132, -0.937364, -1.405484, 0.042481, 0.992950, -1.340081, -0.015140, -0.574928, -0.507835, -1.142446, 0.824822, 0.993765, -1.133806, -0.390372, -1.992765, 0.898597, -0.583480, 0.876658, -0.876132, 0.407157, 1.640619, 1.006239, 1.135340, 1.241958, -0.240657, -0.799536, -0.768057, 0.199818, -1.315046, -1.600416, -0.012148, 0.130446, -0.235852, 0.205656, -1.484646, 1.288140, -0.068559, -0.228333, 0.831898, 1.768803, -1.585690, 0.652062, 0.209220, -1.771986, -0.978867, 0.586275, 0.402439, -0.043299, -0.306034, 0.159427, -0.006557, -0.690996, 2.300789, 0.587313, 0.391062, -0.940961, -0.674125, 0.700082, -0.681964, -0.615783, -0.081372, -0.896282, 0.232699, -0.255126, -0.100263, 1.214195, 0.723305, 0.152433, -0.257539, 1.419703, 0.872340, -0.987622, -0.251330, 2.327261, 0.103543, 0.931798, 1.312482, 0.138533, 0.394271, 0.695938, -0.409393, -1.399902, 0.139501, -0.231048, 0.711327, 0.608661, -0.646272, -0.920056, 0.253304, -0.339334, -2.043987, 1.514823, -0.045538, -2.004462, -0.722375, -0.989673, -1.623197, -0.410901, -0.757147, 2.119746, -0.101556, -0.050354, 0.871860, -1.343920, -0.971318, 1.069508, -0.281959, -0.156714, -0.699701, 0.676886, -0.394877, 0.124446, 0.867944, 0.155741, -2.323891, -1.117519, 0.544463, -1.448807, -1.599253, 1.022935, 0.071111, 1.069493, 0.049684, -0.485061, 0.917281, 0.970418, -0.040711, 1.045886, -1.508376, 0.866566, -0.839336, -1.175106, 0.599689, -0.208608, 0.807379, 0.724269, -1.442641, -1.123863, 0.241164, -0.353247, -0.858006, -0.582642, 1.563841, -0.825886, 1.132508, -1.809314, 0.126486, 1.387790, -0.437504, -1.401641, 0.506998, 0.522143, -0.190632, 0.141195, -0.618607, -1.077614, 0.522254, -2.197108, 0.423611, -0.505221, 0.261767, -0.512533, -1.937629, 0.620771, 0.739900, -0.349168, 2.972752, 1.011305, 1.081848, 0.267255, 0.891520, 0.242948, 0.160616, 0.571391, -0.556764, -0.416337, 0.228978, 0.847622, 0.083379, -0.288222, -0.146149, -0.190783, 0.937473, 0.374239, -0.862612, 0.063180, -0.503953, -0.821632, 0.865393, 0.061638, -0.558521, -0.667048, -0.549572, -0.348509, 0.093502, -1.038754, 0.584890, 2.492065, -0.064212, 0.784852, 0.048595, -1.606579, 2.401086, -0.642349, 0.523450, 0.266800, 1.871073, 0.260841, 0.759216, 0.263080, 0.840160, 1.298602, 0.931528, 0.902908, 2.401204, -0.315305, -0.823406, -1.437014, -0.329049, -1.381237, 0.133680, 0.798418, -0.584474, -0.225122, 1.117085, 1.080177, -0.304421, 2.512603, -1.522030, -0.388842, -0.142835, -0.931814, -0.232359, 1.911014, 2.263468, -0.272604, 1.236671, -1.331730, -1.247643, -0.540547, -1.933454, -1.061987, -0.178697, 1.992812, 0.504918, 0.111620, -0.189832, -0.631413, -0.156127, -1.206439, -0.385447, 0.463096, -0.801485, -0.162023, 0.000562, 1.128822, 0.339864, 0.416473, 0.700814, -0.223725, -0.827491, 1.097825, -1.265630, -0.727988, 0.227635, 0.912893, 0.008795, -0.074968, 0.898770, 0.161034, -2.745800, 0.992101, 0.407895, 0.598136, 0.674322, -0.398716, 1.326816, -1.694708, 1.716335, -0.180579, 0.244268, 0.209196, 1.331395, 0.434155, 1.600800, 2.192872, 0.673845, -0.221391, -0.884999, -0.659403, -1.614005, -0.136580, 0.761343, -1.303276, 0.867821, -0.380751, -1.114501, -0.185373, 0.282322, 1.141597, -0.192928, 1.257557, -2.113192, 0.346356, 0.656475, 0.366368, 0.507368, -0.192517, 2.086732, -0.568287, -1.367349, -1.128475, 0.292438, -1.225625, 1.716491, -0.203610, -1.175708, 1.574390, 0.032061, -1.078944, -1.076593, -0.907408, -0.026308, 0.037099, -0.987890, 0.539579, -0.708428, -0.743176, -1.488049, 0.649591, -0.826594, 1.874313, 1.620186, 0.145343, 0.223312, 1.592611, -1.291578, -0.008859, -0.172940, -0.723387, 0.876983, -0.499470, -0.969061, 0.200791, 1.098158, 0.281714, -1.343299, 1.843204, -1.119645, -1.434076, 0.787892, -0.889741, 2.804718, 0.338952, 1.360404, 0.316914, -1.903448, -1.491209, -0.955582, 0.313923, 1.715639, -0.388586, -0.565613, -1.265825, -0.966466, -0.326571, 0.232721, -0.688230, 1.451941, -1.432288, 1.382565, 0.718879, 0.806800, -1.294727, -0.101493, 0.836169, -0.704357, 0.345892, -1.012159, 1.463798, 0.891712, 1.576033, 0.004615, -0.091832, -0.591403, 0.890560, -0.115643, 0.182762, -0.663205, 0.150053, 1.185333, 1.123098, -0.548641, -1.125101, -0.497673, 0.857784, 0.651230, 2.220247, 0.562432, -1.319893, 0.692175, -0.998087, 1.177240, 1.077739, -2.617096, -1.158213, 0.587090, 1.622966, 0.009008, -0.932717, -0.280580, -0.215901, 0.529568, -1.321549, -1.732153, 0.427205, 0.966982, -0.143685, 0.431669, -1.479178, -0.212818, 1.526083, 0.730856, 1.036207, -0.082696, -0.319906, -1.602095, -1.370153, -0.471111, -0.554854, -1.283618, 0.594372, -0.245750, 1.083385, -0.566870, 1.287830, -0.669923, -1.949077, 0.265545, 0.965428, 0.717874, 0.039618, 0.706706, -0.038704, 0.060564, -0.059399, 0.158943, -0.804668, -2.431096, 0.658742, 1.113609, 1.388871, 1.146664, 1.961212, -0.277887, 0.351079, -0.640366, 0.244719, -0.438159, 0.469400, -0.387198, -0.510851, 0.327828, -1.195682, -0.223334, 0.429879, 0.392374, -2.173770, -0.252019, -1.467999, 0.082957, 0.865147, 0.971516, 0.376630, 1.457638, -0.690048, -0.507254, 0.225998, -0.402772, -0.926409, 0.297716, -0.083123, 0.502191, 0.628109, 0.449516, -1.853666, 0.808515, -0.244907, -0.759893, -0.693971, 0.030414, -0.686166, -0.197380, -2.518680, 1.144789, -0.573087, 0.004007, -0.735187, 1.022803, -2.045648, -0.896991, -1.840741, -0.027391, 2.213709, 0.085896, 0.996516, 0.416912, -0.576612, 1.160453, 0.390934, -0.556056, 0.419952, -1.255214, 0.141892, -0.438810, 1.275985, -1.540116, -1.836285, 0.283771, 0.102123, 0.621224, -0.709577, -1.257253, -1.274538, 2.539695, 0.545706, 0.624028, 0.353077, -1.227228, 1.218095, -0.421982, 0.415457, -1.597139, -0.495200, -0.225658, 0.396558, 0.555077, -0.616111, 0.507593, 1.899810, 0.307952, -1.633628, -0.312383, -0.309716, -0.330314, 0.755856, -0.019170, 0.114432, 0.206483, 1.082221, -0.122932, 0.136367, 1.134921, 0.458193, -0.137511, -1.534386, -0.600983, 0.620910, 0.147590, -0.536225, -0.452255, 0.079495, -1.580624, -2.265837, 0.730491, -2.283147, 2.364879, -0.472926, -1.422249, -0.442355, -0.165429, 0.826578, 1.255601, -0.117737, 0.162070, -1.660082, -2.475524, 1.087775, -0.177648, -0.475232, -0.992624, -0.760889, -1.267435, 0.688817, 1.405906, 0.341179, 0.638841, -0.601002, -0.065936, 0.254887, -0.083637, -1.078369, 0.831542, -0.238792, 1.761856, -0.076984, 1.029634, 1.175075, 0.302846, 1.139395, -0.084567, -1.104801, -0.964944, -0.815327, 1.425555, -0.513680, 0.483789, -1.008315, -0.195667, 0.860141, -0.338004, 0.290731, -0.719580, 2.240007, 0.912252, 0.089787, -0.614922, 0.531358, -0.822009, -1.720064, -1.398278, 1.162112, -1.184831, 0.265589, -0.231697, -1.234419, -0.598225, 0.766560, 2.398124, -0.191674, -1.411627, 1.602533, 0.431152, 1.507087, -2.247573, -1.700305, 0.879822, 0.853328, -0.650790, 1.225139, 0.584583, -0.052447, 0.031025, -1.371664, -1.200770, 0.363609, 1.953235, 0.642444, -2.453701, 0.010915, -0.700079, 1.076349, 1.184752, 0.131645, -0.651101, -2.714039, -0.368345, 1.243199, 0.788225, -1.401640, -1.382137, 1.285882, 1.057002, -2.120762, -0.670265, -1.731633, -0.830834, -1.144851, 2.464682, -0.333216, -0.461933, 1.221566, -0.304211, 0.834752, 0.275251, -2.751639, 0.241242, 1.261281, -2.620539, 1.753883, -0.741609, 0.584930, 0.786554, 0.035789, 2.115420, 0.575085, 0.138786, 0.472845, 0.813167, 0.651782, 0.652535, 2.741705, 0.850771, -0.229544, -0.506982, -0.861370, -0.978247, -0.681520, -0.866314, 0.492584, -0.611082, -0.869338, -0.401526, -0.708807, -0.052963, -0.815406, 0.409059, -0.269102, -0.970492, -0.285170, 1.434604, 1.360422, 1.798268, 1.158577, -0.208801, 0.419049, 0.658380, 0.300169, 1.945927, 0.779334, -0.996911, 0.857130, 0.967446, 1.727473, -0.763530, 1.001292, -1.170105, 0.247736, -0.545548, 1.099868, 0.088913, 0.930548, 1.015224, 1.341713, 1.040489, -0.443463, 0.940143, -1.202178, -1.401692, 0.956253, -1.453889, 1.138730, 0.047507, -0.408518, 0.663838, 0.477821, 0.126877, -1.521904, 0.234010, -1.152321, 1.251971, 1.355889, 1.157867, 0.074907, -0.204920, 1.165760, 0.319168, -0.636174, 0.359267, 0.354501, 1.300310, 1.321581, -0.102251, 1.723456, 0.595957, 1.505832, -0.323219, -0.602265, 0.684557, -1.479206, 0.750292, 0.257895, 1.410151, -1.613866, 1.342770, 2.885222, -0.440332, 0.736052, 0.093906, -0.988739, 0.911747, 0.937869, -1.038208, -0.096772, -0.531313, 0.022134, -0.777897, -0.554110, 0.303482, -0.256398, -1.409659, -0.781860, 0.429085, -1.503121, -0.551766, -1.060799, -1.454215, -2.513233, 1.058468, 0.651489, 1.303681, -0.607029, 1.667378, 0.523476, 1.010740, -0.002082, -1.395638, 0.614751, -0.773249, 1.464555, -1.065634, 0.571230, -0.753449, 1.132764, -0.408891, -0.528530, 0.556729, -0.209366, 1.546020, -0.102627, -0.721234, -1.034548, 0.653230, 1.218829, 0.153500, 0.241851, 0.231240, 1.742368, -1.082954, 1.578017, -0.916967, -0.206152, 0.294879, -1.667612, -1.546908, 0.720675, 1.068973, -1.147804, 0.784052, 0.056616, -0.536692, 0.089015, -2.053860, 0.359396, -0.017881, -0.279121, 1.298982, -0.874506, -0.569842, 0.520096, -1.149758, -0.607831, -1.190130, 0.031831, -1.082223, -0.532112, -0.640784, -0.854931, -1.395686, 0.769793, -0.129004, 0.708788, 0.695424, -0.126532, -1.364286, 0.817777, -2.114746, -0.435771, 1.179339, -3.188931, -0.872089, -0.097222, -1.413917, 0.715516, 0.038682, -0.862494, 0.061328, -0.753394, -1.080710, -2.193052, 1.655002, 0.707736, 1.727937, -0.569483, -0.365498, -0.805186, -0.586932, -1.201593, 1.585724, 0.853430, -2.148236, 0.788765, 0.970394, -0.506235, 1.191214, -1.078663, -1.103025, -0.325589, 0.311707, 1.580385, 0.044905, 1.724720, 0.692422, -1.084512, 0.336065, -1.489352, 0.717867, 2.175291, 0.165281, 2.174848, 1.463336, 0.320850, -0.326204, -0.547052, -0.793737, -0.501631, -0.520167, 0.369639, 0.533181, 1.126470, 0.210579, 0.400558, 0.229428, -0.729577, 0.038107, 0.058491, 0.004158, 0.127478, -0.713990, 0.763348, 0.566215, -1.552309, -0.559973, -1.568112, 1.126845, 1.074668, -0.048499, 2.022139, -0.255659, 0.088336, 1.320908, -1.341480, 1.842938, 0.172599, 0.999700, -1.349347, 0.780501, 0.182180, -0.699305, 1.141438, -1.015053, 0.741596, 0.424962, -2.789942, 1.388358, 0.111885, 0.728245, 1.062062, -0.416011, -1.476984, -0.577584, -0.484234, -1.281961, -0.058160, -2.860554, -0.265195, -1.655357, 1.810852, 0.686490, -0.129861, -1.023600, 2.480591, -1.204899, -0.842177, -0.596075, -0.580947, -0.383060, -1.889659, -0.077926, 1.122478, 0.233547, 0.023356, 0.656460, -1.625884, -0.998433, -1.348194, 0.455943, 1.586826, -0.249676, 0.611781, 1.694345, 0.938767, 0.934505, -1.139524, -0.535455, -1.371842, -1.531794, -1.655446, 0.664407, -0.360252, 1.356037, 1.292781, 1.694829, -0.694999, -0.289380, -0.611472, 0.014235, 0.786110, -0.210534, 0.160611, -0.986672, 0.828771, -1.060977, -0.437840, 1.073428, 0.686817, 0.507301, 0.945078, 0.563399, 0.587414, -0.919150, -0.492664, -0.249485, -1.309486, -0.942244, 0.103900, 0.242000, -0.140187, 0.678244, 1.038158, 1.591696, -0.498914, -0.713459, 1.011112, -0.418695, 0.179414, -0.744385, -1.061182, -0.639207, -0.309561, -1.107782, 0.442813, 0.733172, -0.312097, -0.008863, 0.217318, -0.309280, 0.703689, 2.082483, -0.025158, -0.217275, 1.111380, -0.312404, -0.501761, -1.319379, 0.843017, -0.491185, -0.328615, -2.157022, -0.982700, -1.233174, 0.275016, 0.237246, 0.543454, 0.147259, -1.825428, -0.831559, -2.241464, 0.317358, -0.254904, -1.063616, -0.528527, 0.381869, -0.717303, -1.327763, 0.202781, 2.040626, 0.940327, -0.417828, 0.111837, -1.937566, -1.524740, 1.079186, -0.812008, 2.728725, -0.401091, -1.100778, 0.968973, 0.780684, 0.753094, -1.602348, -0.769126, -0.668304, 0.515670, -0.835429, 0.621628, -1.149018, 0.488431, 0.411247, -0.569995, 0.243786, -1.822899, 2.100520, 0.463380, -1.167050, -0.340112, -0.076574, 0.460609, 1.245818, 1.144194, -1.073804, -1.336356, 1.926519, 0.732360, -1.477801, -1.316168, 0.047259, -0.627070, -0.229594, -0.805999, 0.600884, 0.990705, -0.609192, -0.798750, 0.872692, 0.937063, -0.323447, 2.871616, -0.531921, 0.827662, -0.006886, 0.049655, -0.063115, -1.192432, -1.169224, 1.762000, -0.044798, -0.534325, -0.298343, -0.077906, -1.000037, -0.274247, -1.775476, 0.674259, -0.760887, -0.306521, 1.018695, -0.761243, 0.398712, -0.323686, 0.615993, 1.630701, 0.619615, 1.300986, 0.462491, 0.108679, 0.301135, -1.545958, 0.753607, 0.398092, 0.490709, -0.738653, 0.147129, 1.026423, 0.620080, -2.907449, -0.490195, -0.025168, -0.651507, -0.951932, -1.363866, 0.599453, 1.740867, 0.934134, 0.227936, 2.163285, -0.721143, -1.596901, 1.157426, -1.317045, -0.511804, -0.484685, -1.596244, 0.088449, -0.062781, -1.180691, 1.495677, 0.861199, -0.980752, -0.087046, 1.043560, 0.374902, 0.310324, 0.837729, -0.975785, -2.076079, 0.569342, -0.530965, -2.392098, 0.015678, -0.966770, 0.621173, 0.651022, -0.252235, 0.785422, -1.648217, -1.193201, 0.743098, -0.149356, -0.229308, -0.339430, -2.255997, 2.705487, -0.961928, 0.382274, 0.251098, -1.162365, -0.830047, 0.612514, 1.117482, 0.709976, 0.887568, 0.255098, -0.210429, 0.879077, 1.887006, -2.056711, -0.046913, 1.394084, -1.040551, 1.216761, 0.513911, -0.009769, 0.054156, 0.669614, -0.875619, -0.879960, -0.315495, -2.181774, 1.323698, 1.235317, 0.906991, 0.692222, -0.232224, 0.711802, -1.121761, -0.319626, -1.265987, -0.285759, -0.503947, 0.959616, -0.522615, -0.227509, -0.612520, 0.474007, -2.526826, 0.278075, -1.205121, 0.771113, 0.149123, -0.809881, -0.247451, 0.233745, 0.069097, -0.290915, 1.488276, 0.040352, -0.858144, 1.932050, -0.433662, -1.524598, -0.171841, 0.673445, 1.157464, -2.525804, -0.234460, -0.590567, -1.880041, -1.514791, -0.621075, 0.174272, -0.346065, -0.907222, -0.426922, -0.906698, -0.003719, -0.750335, 0.567493, -0.691667, -0.332419, -0.410227, 1.144540, 0.294669, -0.479069, 0.076921, -1.068625, -0.000040, -1.271460, 0.453549, -0.811271, 0.396292, 1.337204, -0.505309, 0.504452, -0.056127, -0.049573, -0.224637, -0.924415, -0.226021, 2.767811, -0.499822, 0.238916, 1.455410, 2.409404, 0.765089, 1.027142, -0.732396, 0.438889, 0.540349, 1.687249, 0.592111, -0.569481, -0.204368, -0.561730, -0.118713, -0.005295, 0.645404, 0.395124, -0.067770, -0.917294, -1.681609, 0.033654, -1.418023, 0.019211, -0.194692, -1.008386, -1.202643, -0.645315, -1.046724, 0.728620, -0.643703, 1.528484, -0.717905, -0.357343, -0.665428, 0.735647, 1.848674, 1.453481, -1.512419, 0.185966, -1.806614, -1.814222, 0.590736, -0.556669, -1.859202, -1.599929, 0.457145, 0.593688, 0.925193, 1.006301, 1.100023, -0.180675, -0.089713, 0.405569, 0.696484, 0.818583, 0.079157, -0.571366, 0.137363, 1.651717, -0.977439, 0.925075, 0.012146, -0.643164, -1.013904, -0.086907, -0.138112, -1.602633, -1.814572, -0.466615, -0.923824, 2.305109, -0.626958, 0.013557, -0.768376, 0.344966, -0.114292, -1.708193, 0.729413, 1.646970, -0.284462, 1.268415, 0.023695, 1.447427, -0.678493, 0.487337, -1.429773, 1.420931, 1.029969, -0.108640, -0.249168, -0.124584, 0.516319, -1.761558, 0.054916, 0.309581, 0.074176, -0.313250, 0.265805, -1.171613, 2.206824, -1.806538, 0.357016, 0.689345, 1.089329, -1.147482, 0.168832, 0.650902, -0.314960, 0.979762, -0.631349, -0.366186, -0.747488, -0.112594, 0.184929, 0.702753, -0.322038, -0.882463, -0.379425, -0.336891, 0.731327, -1.013576, 0.553206, -0.687139, 0.077979, -0.440938, 0.741133, 1.535822, -0.505320, -0.755037, -0.767538, -2.991638, -1.325684, -1.547404, 1.603531, -1.495010, -0.232593, 0.713062, -0.440391, 1.802875, 0.115387, 0.165683, -2.459484, -0.248380, -0.233782, -1.236610, -1.616550, -0.686213, 1.212663, 0.352518, -1.867745, 0.391217, 0.295719, 0.507461, 0.714676, 0.154403, 0.840564, -0.761439, -0.263041, -0.239408, -2.464345, -0.595947, 0.198922, 1.846304, 0.012942, 0.000918, 0.393114, 1.918203, 1.096173, -0.188537, -1.477900, 1.120755, -0.486376, 1.604251, 0.076044, 0.711321, 0.509937, 0.745275, 0.012120, 0.571369, -0.099875, -0.121695, 0.001356, 0.291662, 0.644422, -0.873065, 0.149963, -0.248319, -0.937181, 1.812800, 1.000859, 1.604721, -0.694614, 1.166088, -0.891790, -0.245980, -1.044806, 0.291431, 1.229583, 0.437321, 0.662905, 1.269442, -1.843804, 1.120986, -0.550116, -0.139720, -0.644274, 0.290627, 0.456884, -1.493160, 0.888222, -1.902829, 0.103934, -0.755085, 0.559701, 0.973925, 0.382425, -1.846877, -0.056663, 0.794203, 0.969839, 0.148291, 0.661202, -0.645339, 0.004266, 0.238014, -0.179047, -0.372602, 0.524936, -0.394560, 1.274504, 1.534236, 1.634632, 0.243235, -0.119428, -1.256966, 2.107261, 0.426591, -1.705651, 0.221400, -1.060943, -0.740140, 1.469806, 0.721159, 0.454433, -0.387493, 0.063305, 0.793529, -1.926678, -0.745509, 1.547774, -0.415599, 0.679532, 0.742551, -0.262276, 0.483877, -0.552918, -0.007194, 0.532652, 0.406929, -0.372980, -1.602074, -0.636809, 1.777902, -0.188021, 0.667559, -0.293030, -0.878388, 0.270273, -0.320048, 1.608794, 0.198568, 0.616044, -1.253145, 1.057194, -1.034038, 1.543244, 1.063046, 1.340640, -1.009972, 0.001709, 0.012912, -0.706588, -1.131786, 0.235221, 0.991750, -1.701807, -0.482821, 0.983203, -0.923239, 1.311897, 0.282940, 1.035744, -0.070229, 0.462706, 0.982819, -1.089813, -0.245042, -0.648462, -0.964822, -0.644799, -0.447359, 1.037254, 1.664551, -0.396625, -0.434554, 0.786647, -0.067926, 1.339954, 1.791237, -1.683401, 0.035166, 0.289901, 1.443648, -0.257986, -1.787606, 0.865624, 0.159365, 2.366563, 1.300579, 0.149055, -0.927566, -0.495982, -0.556095, -0.307571, 0.188555, 1.559767, 0.203126, 0.414107, 2.202690, -0.296530, 1.277944, 1.397699, 0.416067, -0.870662, -1.643675, 2.525369, 0.669229, -0.997304, 0.460952, -0.320531, 0.513951, 0.102732, 0.368117, 0.152434, -1.486880, 0.713778, 0.577108, 0.633847, -0.061359, 0.127291, -0.227663, -0.565365, 0.533232, 0.570740, 1.041588, 0.940619, 1.167342, -0.002836, 0.164584, 0.537048, -0.629868, 0.654777, 0.943004, -1.230325, 0.809898, 0.329693, 0.175072, 0.685910, -2.340250, 0.181857, 0.520950, -0.826398, 0.505053, -0.253696, -0.019515, 0.364053, 0.180645, -0.918615, 0.763246, 1.551783, -1.093729, -0.425336, -0.013297, -0.499103, 0.052858, -1.049092, 0.668183, -1.476376, -0.276600, -1.240288, 1.358208, -0.468263, 0.132595, -0.782875, -1.053637, -0.289345, 0.168417, -0.167430, -0.335913, 1.761245, 1.757716, -0.560587, -0.760889, 0.470775, -1.170096, 1.260187, -1.879163, -2.770560, 1.029848, -1.214506, 0.843518, -1.180444, -0.005717, -0.301006, 1.740381, 0.074337, -0.305847, -0.738706, 0.338764, -1.078533, -0.664572, -0.102138, 0.120747, -0.403462, -0.533463, -0.119733, -0.664668, -2.002666, 0.247811, 0.502806, -1.313671, 0.370975, 0.232601, 0.132243, -0.598320, -0.664703, -0.552567, 0.130383, -0.383350, 0.576975, 0.518866, -0.330835, -0.722144, 0.037399, 1.227627, 0.657799, 0.651969, 1.623170, -0.809349, 0.651820, -3.065103, 1.507050, -0.707046, 0.383874, -0.297895, -0.030726, -1.551289, 0.815146, 0.436793, 0.843672, -1.413977, -0.707373, -0.966325, -1.009925, 0.726912, 0.368701, -0.074487, -0.952476, -2.084474, 2.028796, -0.164717, 0.052187, -1.718413, -0.667007, -0.222215, 1.319468, 0.404146, -0.725416, -0.775996, -1.765674, -0.304063, -0.442627, 0.070624, 0.168125, -1.103981, 0.369296, -1.896372, -1.317223, 0.217692, 1.546734, -0.681958, 0.720146, -0.680538, 0.208336, -0.012354, -0.376611, 0.355713, -0.429052, -0.827290, -0.314084, 0.597497, 1.839279, -2.118891, -0.941276, -0.047448, 0.017547, 2.282560, 0.942305, 0.099224, -0.211880, 1.282972, 0.562168, -1.003576, 0.122679, -0.137638, 0.852672, -1.207618, -0.291122, -0.674193, 2.067981, 0.387535, -0.598566, 0.492513, 1.566337, 0.316197, 0.803851, -0.910228, -2.760594, 1.022515, -0.902013, 0.990269, -0.650464, -0.033795, 0.260880, 1.231654, 0.916473, 0.115825, 1.058442, 0.302749, -1.317326, 0.055116, -0.646666, 1.149097, -0.291527, 0.431140, -0.063607, 0.216260, -0.350655, -2.117795, 0.242829, -0.050827, 1.230035, -0.566987, 0.076513, -1.326295, 1.032293, -0.259736, -0.620771, 0.954626, 0.766084, -1.069348, 0.112920, -0.822272, 1.267524, 0.971574, -0.133473, -1.507629, 0.569266, 0.060907, 0.008979, 0.381692, 1.056639, -0.028541, 0.050194, -0.647694, 0.176354, 0.007581, -1.848455, -0.158585, -1.281686, -1.067409, 0.444980, 1.513490, 0.931571, -0.274106, 2.300519, 0.887455, -0.386968, -1.207925, 0.822575, -0.913211, -0.445866, 1.593749, 0.320163, -0.428290, 1.162631, 0.158736, -0.179814, -1.145749, 0.105351, -0.467657, 1.769470, -0.652457, -1.808436, -1.667299, 0.897776, 0.414695, 0.842697, -0.233000, 1.119390, 0.225108, 0.709879, -0.869811, -1.369341, -1.636471, -0.822347, -1.080083, -0.830137, 0.329208, 0.350142, -0.821055, -0.531446, 0.198401, -0.352964, 0.966670, -0.108505, 0.120679, -0.487222, -0.713007, 1.284985, -0.128009, 0.218244, 0.883929, -0.866034, 0.694990, -0.408727, 0.712352, -0.794204, -0.221023, -0.659065, -0.001451, -0.051257, 0.966171, 1.533197, -2.153540, 0.957859, 1.683044, 1.548128, -0.469343, -0.912069, 0.623761, 0.459791, 2.378263, 1.379164, -2.479560, -1.381770, 0.223994, 0.581903, 2.462769, 0.357460, 0.580593, -0.679694, 0.302157, 0.993067, 0.885331, -0.006423, 0.497747, -0.177228, -0.369860, -0.564683, -0.638989, -0.881432, -1.665654, -0.130389, 0.585423, -0.753778, -0.932322, 1.898966, 0.756286, -0.284318, -0.895073, -0.636077, -0.395144, 0.622954, -1.594219, -0.855068, 0.547991, 0.138027, 0.083437, -0.793249, -1.639088, 0.706620, 1.457656, -0.699871, -0.224520, -1.793717, -0.726605, 0.382871, -0.692738, -0.288011, -0.794972, 1.579095, 0.253690, 0.997295, 1.925212, -0.220757, -0.360908, -0.055112, -0.153784, -0.233199, -1.201126, -0.545576, -0.439421, -0.971251, 0.605837, 0.776413, 0.394598, 1.656441, -1.544852, -2.957562, 0.228542, -0.983380, -1.292152, 0.459452, -0.197741, 0.998687, 0.308993, 0.655450, -0.493743, -1.486049, 0.382888, 0.631073, -0.371239, 0.514159, -0.097317, 1.225145, -0.638378, 0.342363, -1.580652, -2.446595, 0.769604, -1.444124, -0.657230, -0.113286, 0.577576, 0.238484, 2.364442, -1.381381, -1.207125, -0.899980, 0.419608, 0.689530, 0.208504, -0.266494, 1.227303, 1.123001, 1.237160, 0.056717, 0.654519, -1.299933, -0.400978, -0.623902, 0.525421, 1.187168, 0.031041, 1.871590, -1.473323, -1.173467, 0.694392, 0.310131, 0.998769, -0.093835, -0.361254, -0.128190, 0.630134, 0.327430, 0.517911, -0.355291, 0.844662, 0.960411, 0.386081, 1.041679, -0.091655, -0.027101, 1.410294, 0.411787, -1.332057, -0.459408, -1.070325, -0.614363, -0.825695, -0.928216, 0.604325, -1.460609, -0.192262, -0.004410, -0.524866, -0.179887, -0.309788, -0.139984, 0.717091, 0.223635, 0.128181, 1.414812, 0.219963, 0.256240, -0.190217, -0.388563, 1.462272, 0.875212, -0.481109, -0.684982, -0.994921, 0.517506, -0.950163, -0.492670, 0.475388, 1.314657, 1.750620, -1.213376, 1.648163, -0.195402, 0.664914, -0.094891, 0.973404, 0.454690, 0.188792, -0.737362, -1.051652, 0.193673, 0.706130, -0.814144, -1.296558, -0.068961, 0.239795, -0.205138, -1.516257, -0.930584, -0.772402, 0.242668, 2.736581, -0.333195, -0.351602, 1.468608, 0.715578, 1.155788, -0.091197, 1.564632, 1.249670, -0.126512, 0.786249, -1.518057, 1.600814, -1.204734, 0.009395, 1.148951, 0.589218, 0.032962, 0.491163, -0.600983, 1.023351, 0.581409, 1.100210, 1.244052, 0.901803, 0.265863, 0.707759, -0.485055, -0.043618, 0.857998, 0.006887, -0.425407, 1.041564, 2.396044, -0.339230, 1.347777, 0.112678, 0.341312, -1.573165, 0.904727, -0.439225, -0.704625, -1.605155, -0.132223, -0.414968, 1.809788, 1.380576, -0.445033, 0.962185, -0.690909, 0.627085, -0.819576, -1.038175, -1.797299, 1.142296, -2.796450, -0.397238, -0.548388, 1.001740, -1.052414, -0.471114, 0.105292, -0.391651, 0.233797, 0.917240, -1.001446, 0.532974, -0.490091, -1.097559, 0.659390, -0.942814, 1.192824, -0.376587, -2.398330, -0.522802, 0.104258, -2.075186, -2.474453, 0.375520, 0.852840, 0.286258, 0.437765, -0.125125, -0.427362, 0.757399, -1.009901, 0.703712, 0.349340, 0.068894, 2.156740, 0.232376, -0.222264, -0.385089, -0.251131, 0.048317, -1.095175, -2.171664, 0.480706, 0.051593, -0.311058, -0.422785, -0.399902, 1.382518, -2.428111, 0.259279, 0.195612, 1.250679, 0.476466, -1.284679, 0.859136, 0.165677, -0.075955, -0.795367, 0.011942, 0.044537, 1.854053, -1.176886, -0.249800, 0.568523, 1.325002, -1.483092, -0.199339, 1.658340, -0.645532, 1.746280, -1.907639, -0.081327, -0.491918, -0.079938, 0.165468, -1.028362, -0.282269, -1.389076, 1.354632, -0.646270, 0.400435, -0.700321, -2.046731, -1.270018, 2.537819, -0.195418, 1.616142, -1.002783, 1.938049, -0.231846, -1.275888, 0.975771, 1.867821, -2.517521, -1.055571, -0.979233, 2.479350, 0.423528, -2.692297, -2.634333, 0.075809, -1.943608, 0.091067, -0.511079, 0.211322, -0.560384, 0.531533, -0.711254, -0.992869, 0.377976, 0.663449, -0.207054, -0.161622, 0.783406, -0.054875, 1.458825, 1.144048, -1.265718, 0.020294, 0.323040, -0.845896, 1.813638, 2.005624, -0.434095, -0.109263, 0.161651, -0.624304, -1.716682, -0.819730, 2.222390, 0.926520, 0.196876, 1.408468, -1.334636, -0.137650, -0.019383, 1.261439, 0.618483, 1.216183, 0.582504, -1.212431, 1.625142, -0.990585, -1.418532, 0.977245, 2.328674, -0.887481, -2.217097, -1.159147, -1.240270, 0.308745, -0.818975, 1.308973, 0.506362, 0.159078, 0.110513, -0.680036, -0.120664, 0.097619, 0.149916, 0.342207, -0.487246, 2.650337, -0.390253, -1.253697, 0.671902, 1.799849, 0.673474, -0.277662, 0.847310, -1.149167, 1.045030, -0.450937, 1.099226, -1.101415, 1.581423, 1.290898, -0.945054, 0.699864, -0.449924, -1.330844, -1.199549, -1.037826, -0.261741, 0.322473, 1.208010, -0.108038, 1.853039, 0.263362, 1.242270, -0.269046, 1.301799, -0.140519, 0.375859, -0.459513, -1.946383, -1.168694, -0.387385, 1.079513, 0.224769, 0.464253, 1.877396, -1.981441, -0.395818, -0.614816, 0.584426, 0.024514, 2.307854, -0.367066, 0.074375, 0.109017, -1.159713, 0.498944, -0.986801, -0.619723, -0.286456, 0.079653, -0.129912, -0.075097, 0.535491, 2.374083, -0.480849, 0.906860, -0.145243, -0.429104, 0.535679, -0.106580, 1.272346, -0.395097, -0.587267, 0.153514, 0.003306, 0.275903, -2.010791, 0.369468, 2.565899, 0.658069, 0.625572, -0.292657, 0.426859, -0.039537, 0.466782, -0.213646, -0.998102, -0.432814, -0.096134, -0.400232, 0.118353, -0.250267, 0.347886, 1.054453, 1.375482, -0.749868, -0.200890, -0.533132, 1.440839, 0.078127, 1.293177, -0.800576, -0.372939, -0.823248, 1.142839, 0.779238, -1.025555, -0.528999, -0.489301, 0.002016, 1.384675, -0.063106, 1.580018, -0.511192, 0.515575, -0.242889, 1.597541, -0.449379, -2.313836, 0.433332, -0.328102, -0.348891, 0.049113, 1.143714, -0.606944, -1.021334, 1.020627, 0.463043, 0.211384, -0.167821, -1.121984, -0.741784, 0.682838, -0.582474, 0.085909, 2.029262, 1.135633, -1.250152, -1.223211, 0.007997, -1.245446, -0.435278, -1.105139, 0.616406, 0.753225, 0.854637, 0.823325, -0.422497, 0.593634, -0.593916, 0.304636, 0.280708, 1.694358, 1.329585, 0.247179, -0.279895, 0.651856, -0.102773, 0.913088, -0.440420, 0.123232, -0.863050, -0.171629, 0.400619, -1.512546, 0.062961, 1.398601, 0.088090, 0.279573, 1.282322, -0.080128, -0.004702, -0.976383, -1.642297, -0.616974, -1.043240, 0.229035, 1.730206, -0.600759, -0.164065, 0.716513, 0.730629, 1.054250, 0.866217, -0.216470, 0.993549, 1.460599, 0.591707, 0.314538, 0.796852, -0.332350, 1.264228, 1.797137, -0.195246, 0.113306, -0.728226, -1.068509, 1.119313, 0.174270, 1.602209, -1.230554, -2.169655, 1.684373, 0.943918, 0.861171, 2.066307, -0.161146, 0.467258, 0.210221, -0.902464, -1.913673, 0.977871, 0.298279, -0.112413, -0.010105, 0.669705, 0.935085, 1.659433, 1.734217, -0.008280, -0.437842, 0.058607, 0.304021, 2.458997, 0.169586, -0.968576, -0.972189, -0.327630, -0.573669, -0.846364, -0.359719, 1.043108, 1.911941, -0.662465, -1.018908, -0.816293, -0.568155, -0.420614, 1.480624, 0.229438, -0.493321, -0.645297, -0.603714, 0.961630, 1.163723, 0.556973, 0.403312, -0.282806, 0.806484, -0.551240, -0.499907, -0.639638, 1.585647, -1.076977, -0.494800, 0.345501, -0.081872, -2.397432, 0.169326, 0.149086, -1.075565, -1.189096, -0.578485, 0.052927, -1.336818, 0.820895, -1.699156, 0.161837, 0.128269, -0.682065, -0.511034, -0.302649, -0.297757, -1.770633, -1.402995, -1.574083, -0.802078, -0.808154, 0.853138, 0.929639, 1.234076, 1.021366, -0.612301, 0.939807, 1.422796, -0.055038, -0.376734, 1.556973, 0.607052, 1.083412, 0.130041, 0.255501, -1.094005, 0.352081, -0.584930, 0.159433, 0.296823, -0.740273, 0.008519, 0.141079, -0.384061, 0.442857, -0.865421, 0.474803, 1.979470, -1.906425, -0.224100, -1.591969, 0.741749, 2.277313, -0.934287, -0.549533, 0.762357, -0.000739, 0.719938, -0.831228, 1.335212, 0.000618, 0.084169, 0.634156, -0.037498, 0.061090, -0.708419, -1.107336, 0.218445, -0.798154, -0.077214, -0.041986, -0.365435, 1.920474, -1.003709, -0.575926, -0.896164, -0.977762, 0.950663, 0.385647, 0.026513, 0.007574, -0.604650, 0.076311, -0.566295, 1.767049, 3.196131, 0.000131, 0.377919, 1.602773, -1.779870, -1.514597, 1.440958, 0.117473, 1.601819, 0.558959, -0.792584, -1.261061, 0.562293, -0.410142, -1.819307, 2.783495, 0.003900, 0.673560, -0.801667, -2.213346, 1.375020, -0.761294, -0.158954, -0.151664, 1.487704, -1.573357, 0.171300, -0.873633, -0.510119, -1.462343, -0.283168, 0.697521, 1.124460, 0.945671, 1.712378, 1.721964, 0.230917, 0.194659, -1.396264, -0.576336, 1.537436, 0.237531, -0.597759, -0.738369, -0.601753, 0.230585, -0.543026, -1.382452, -0.767581, 0.539591, 0.658891, 0.370795, -1.123319, -1.128508, 0.431978, 0.390993, 1.178774, 0.410019, -1.303392, 0.942956, 1.327732, 0.186054, 0.021305, -0.880841, -0.017911, 1.762350, 1.378189, 0.279522, -0.326773, 0.180000, -1.097935, 1.209249, 0.694255, 0.680515, -1.146881, 0.528379, 0.655943, -1.664021, -0.675777, 1.142683, -0.055859, -0.378568, -0.579741, -0.408200, 0.269103, -1.362701, 0.873458, -1.072699, 0.108220, -1.072228, 0.052957, 0.972322, -0.670796, 0.771325, 0.698519, 1.662428, -0.955793, 1.267732, -0.884990, 1.103815, 0.349899, 0.689126, -0.697367, -0.279191, 0.159953, 0.278799, -0.830304, -2.486086, -0.809876, -0.907824, 3.074993, -0.528381, 0.608962, 0.808748, 0.064482, 0.459938, -0.666045, 1.579249, 0.464766, -1.973515, -0.097804, 1.183425, -0.403961, 0.463900, -0.902652, 1.469840, -0.164329, 1.171188, -0.075618, -0.079109, 0.857114, 0.537591, 0.135858, 1.139763, 1.885059, 0.848467, 0.975857, -0.187125, 0.493947, 2.722894, -0.259751, -0.103315, 0.634920, -0.185781, -0.055063, -0.477004, 0.268640, -0.061299, 0.722828, -0.000579, -0.363334, -0.006565, 0.831911, -0.347205, 0.652493, 0.303242, -1.390029, -0.324232, -2.590419, -0.347550, -0.520888, 0.712762, 1.347832, 0.712340, 0.749463, -1.300805, -0.239872, 1.426470, 0.879974, -0.317680, 1.114858, 0.177073, -0.842019, 0.071504, -1.036478, -0.425654, 0.409760, 2.089564, -1.131355, -0.224425, 0.176514, 0.003063, -1.022606, -0.607528, -0.184959, 0.140400, -0.029518, -0.184174, 1.240667, 1.911520, 0.093550, -1.106623, -0.234596, -1.186179, -0.143543, -1.053546, -0.259176, 0.310255, 0.031607, -1.377744, 1.302794, -1.220217, 1.900659, 0.008092, -1.108560, -1.359943, -2.354624, -0.107920, 0.966216, 0.408460, -0.676664, 0.640905, -1.063868, -1.801584, -0.803397, 0.999650, -1.071502, -0.228426, -0.557674, 0.424089, -0.020392, 1.626072, 0.518945, -0.644892, 1.410088, -1.076187, -0.183477, -1.476076, 1.066781, 0.045591, -0.708241, -1.061886, -0.069735, 0.268439, 0.996012, 1.577090, 0.652477, -1.169383, -1.877606, 0.241385, -0.716275, 1.076989, -0.004071, -0.144108, -0.737553, 1.776167, 0.247408, 1.470623, -0.401614, 0.798566, 0.999228, 0.117658, -1.185933, -0.383031, -0.383739, -0.988735, 0.924957, 0.884045, 1.678148, -2.295000, 0.313245, -0.216504, 0.230821, -0.622617, 0.251752, 0.110113, 0.717413, -0.804830, 0.851634, 0.558755, 0.247025, -1.310933, -1.333926, -0.185024, -0.328081, -2.074067, -0.726968, -1.285351, -0.159432, 0.630274, -0.164899, 0.601325, -0.641290, -1.510466, 0.923575, 0.155575, -0.893360, -0.445703, -0.851990, 0.099344, -0.922377, 0.313641, 0.205622, -0.349394, 0.608267, 0.285746, -0.392929, 1.175276, 1.965447, 0.558696, 0.150607, -0.748425, -1.521350, 0.488068, 0.093578, 0.510095, -0.073489, 0.137762, -0.180477, -1.113647, 0.757016, -0.357791, -0.407108, -0.507146, 1.248808, 1.846160, -1.376829, -0.176339, 0.661752, -0.797810, 1.703219, -0.303573, -1.071365, 0.953577, 1.271903, 2.462126, -0.535654, 1.303970, 2.613081, -0.456449, 1.181750, -1.107752, -0.163638, -1.374968, 0.879616, 0.322532, -0.224062, 0.194928, 1.504785, 0.020028, -2.529463, 0.324772, 0.003576, 0.012668, 1.084877, 0.289536, 0.448849, 0.605379, -0.097210, 0.098546, -1.305508, 1.396452, 1.264388, 0.792639, 0.323461, 0.638596, -0.358651, 0.956730, 1.160253, 1.653206, -0.309618, 0.080314, 0.671156, -1.409953, -0.235518}, + { 0.382059, -0.756124, -0.268898, 0.670647, -0.722895, 1.233612, 0.019898, -0.227095, -1.047232, -0.102094, 0.262718, -0.056508, 0.047468, 0.031591, -1.147398, -1.131913, 0.837965, 2.021922, 0.763104, -2.425157, -0.823654, -0.121762, -0.793927, -0.604823, 0.498514, 1.295028, 2.282117, -0.730465, -0.112153, -0.351011, 2.763001, -0.115223, 2.129663, -0.188060, 1.015183, -0.469658, -1.064144, 1.883169, -1.472189, -0.583824, -0.351299, 1.601087, -0.158024, 1.030751, 3.135841, -1.037427, -0.452121, 2.110509, 1.046477, -0.982384, 1.466126, 1.351951, -0.949733, 0.354520, -1.524563, 0.065414, 0.497113, -0.734463, -0.492778, 1.666764, 0.200520, -2.004752, -1.030668, -0.323292, -1.114985, 0.788598, 1.704072, 0.513804, -0.234502, -0.427492, 1.331277, 1.338116, 1.600348, -0.896026, -0.305012, 1.462368, -1.064661, -1.037984, -0.448500, -0.467702, 1.689152, 1.115221, 0.822431, -0.364413, 0.233804, -0.574877, 0.631714, 0.503844, -1.209398, -0.035902, 0.519446, 2.187777, 1.488170, 1.956980, -0.775304, 0.054704, -1.033544, 1.270657, 0.650151, 0.066474, -0.165130, 0.741537, -1.244502, 0.193526, -0.345141, 0.291083, 0.470458, 0.798296, 0.374880, -0.304612, 0.416809, -2.090556, 0.086823, 0.934948, -0.457083, -0.809578, 1.342113, -0.041538, 0.398531, -0.472814, 0.200100, 0.036538, -0.440097, -2.455165, -0.916274, -2.536629, 0.406445, 0.006890, -1.014239, 0.500616, 2.705946, -0.022637, 0.538087, -2.044204, -0.353036, -1.296478, -1.523036, -0.196764, -1.287256, -0.577633, 0.544843, 1.022733, -0.013695, -0.347855, -0.550234, 0.084698, -1.354719, 1.720470, 0.342556, 0.599860, -2.525371, 0.469707, 0.371450, -1.794418, -0.027776, -0.228502, 0.049353, 1.204295, 0.049864, 0.437735, 0.222994, 1.888575, 0.998941, 0.282273, 1.345065, 0.513661, -1.163260, 1.623799, -1.164773, -1.830389, -1.062759, -1.548091, 0.132407, 0.071544, -0.536221, -2.505579, -0.189660, -0.498596, 0.814257, -0.289688, 0.113668, -0.128814, -0.085521, -0.494300, -1.048639, 0.675048, -0.048130, -0.416781, 0.697961, -0.118799, 0.308944, -0.957638, 0.682217, -0.083334, 0.345109, -2.258950, 1.311002, 0.742619, 1.338444, 1.137395, -0.247233, 2.207792, 0.034036, 1.122454, 0.001738, -0.477747, -0.664504, 0.034436, -2.298915, -0.688178, 0.485656, -0.155005, 0.699738, -0.182813, -0.277011, 0.269205, 0.277718, 2.345576, -0.119955, -0.212371, 0.079055, -0.675778, -1.075429, 0.082380, 1.528678, -1.655458, -0.668242, 1.481890, -0.733430, 2.166434, 0.178931, 1.212819, -1.575392, 0.445340, 0.367124, 0.454937, 1.617629, -1.830756, 1.902955, 0.325177, 0.015093, -0.829517, 1.900083, -0.315760, -0.705444, -0.337590, 0.347599, 0.562739, -0.551997, 0.711850, 0.552669, -1.563068, -1.330176, -1.040038, 1.064567, 1.614874, 0.934245, -1.642661, 0.717998, -0.610720, -0.983824, 0.859206, -0.964966, -0.320549, -0.388639, 1.195694, 0.817436, 0.664509, 1.687307, 1.669409, -0.014416, -0.914878, 0.045907, 0.197022, 1.022861, 0.055055, -0.066334, -1.712152, -1.004981, 0.279715, 0.674143, 1.665503, 2.384454, -0.790930, -1.360469, 0.899800, -0.093856, -0.120326, -0.282830, 0.955345, 0.289944, 1.986020, 0.486134, 1.398686, -0.266424, -0.888304, -1.435087, 0.093107, 0.759727, 0.396672, -2.664654, 0.911650, 1.075412, 2.049538, 0.621762, 0.665132, 0.008100, 0.143697, 1.156016, 0.227429, 0.108149, -1.560778, -0.660750, -0.143933, 0.024302, -0.978624, 0.993727, -0.227724, -0.162943, 1.215951, 1.270337, -0.470716, 1.143346, 0.728295, -0.709416, 0.355111, 0.605511, -1.026261, -0.385031, 0.340678, 0.862034, -0.613504, -0.750120, 0.097246, -0.962190, -0.602672, 0.453841, 1.866659, -1.427991, -1.492646, -0.692929, 1.255367, -2.168110, -0.237477, -0.608745, 0.199082, -2.008715, -1.333466, -0.210509, 3.017457, 0.697097, 0.351825, -0.019699, -1.488519, 0.090121, 0.795999, 0.102292, 0.204322, -0.630613, 0.929686, 1.323448, 0.162824, 0.465104, 0.562041, 1.001537, -0.109705, 1.105437, -1.957387, -0.924382, 1.440254, -0.616247, -1.104835, -0.361146, -0.126514, -0.364270, -0.641116, 0.389182, 0.487654, -0.632764, 0.258316, -0.065638, -0.232363, 0.934742, 3.004745, -0.466283, -0.856876, -1.719915, 0.081078, -0.733059, 0.745355, 0.922169, -0.205358, -1.573404, 0.700384, 2.055251, 1.944711, -1.240147, 0.297236, 1.653817, -3.043529, 0.369082, -0.376191, -0.793096, -1.058544, 0.202065, 1.702075, 0.980632, -1.538775, -0.087307, 0.224487, 1.661905, -0.435689, 0.944074, 2.596069, 0.586904, 0.357412, -0.029610, -0.701129, -0.596044, 0.049660, 1.366184, 0.236003, -0.385317, -1.325649, 0.525150, 1.503238, -0.034382, 0.393256, -1.117113, -1.050756, -0.430850, -1.681886, 0.913539, 0.075520, -0.858186, 1.138578, 0.592154, -1.308793, 0.060918, -1.914763, -1.781331, -0.494782, 0.879823, 0.009281, 0.705704, 0.662487, -0.562745, 1.685661, 1.204443, 0.261912, -1.174259, -0.820031, 0.179824, -0.362322, 0.878144, -0.908297, 0.331722, -1.319254, -0.717314, -1.085246, -1.958957, -1.296220, -1.099202, -0.391190, 1.254537, -0.964507, 0.348543, 0.766253, -0.495980, -0.439942, -0.261941, -1.351386, 1.509463, 0.418022, 1.429536, -1.450138, 0.902776, 0.124037, -0.610596, 0.203545, -0.498523, 0.776397, 1.514069, 0.039039, 1.017294, -0.563437, 0.679385, 0.169064, 0.269506, 1.080527, -0.465674, 0.874369, -0.219138, -1.489180, -2.615988, -0.367151, -0.055648, 1.501447, -0.619220, -2.449960, 0.464516, -0.000535, -0.326176, -0.110683, 0.811327, -1.274049, 0.881897, -0.248487, 0.325582, -1.875550, 0.062114, -1.237213, 0.087808, 0.173102, 1.246930, -0.271178, 0.651691, 0.212459, 1.478099, 0.398686, -0.281847, -0.963581, 0.734263, 0.990676, -0.841449, -0.198852, 1.382271, 0.178462, -1.368272, -0.349254, -0.378986, -0.271455, 0.736766, 1.163576, 0.563409, 0.368660, 1.346949, 0.981946, -2.272106, -1.379623, 2.029833, -0.428224, -1.055603, -0.931259, 0.782737, -0.577287, 0.360062, 0.964592, 0.327885, 0.167229, 0.213906, -2.060635, 0.223158, 0.437575, 0.559332, -0.398564, -1.245556, -0.964019, 0.780927, 1.239923, 0.089169, -0.149114, -0.919069, 0.634949, 0.909422, 0.462337, 0.659830, -1.744606, 0.495139, 1.736703, -0.263927, 0.747554, 1.943027, 0.180411, -0.330468, -0.943574, 0.058006, 0.979571, 0.387951, -0.008286, -1.581976, -0.657403, -1.084765, 0.140902, -0.449816, -0.357501, -1.147356, -1.487937, 0.348165, 0.195799, -1.942437, 0.807144, 0.785277, 1.015885, 0.826304, 0.899044, 0.347857, -0.413957, 0.224523, 2.176913, 2.646751, -0.710003, 0.081168, -0.705328, -0.196207, 1.229838, 0.258339, -1.479319, -0.109133, -0.681406, 0.153488, 0.663806, -0.324739, -0.363910, 1.700875, 0.141772, -1.249241, -1.696840, -0.119858, -0.497950, 1.025684, -1.448539, -0.192165, -0.060901, -1.692251, -0.045484, 0.630726, 0.335616, 2.048478, 0.221174, -0.103263, 0.652923, -1.804758, 0.228436, 1.222847, 0.358293, 0.421496, -0.791960, 1.947306, 1.248854, -0.867100, -0.666459, -1.531495, -0.390254, -1.437477, 1.594514, 1.038594, -0.745096, -0.080827, -0.299325, 0.066211, -1.634254, -2.234896, -1.152932, 1.052401, 0.329964, 1.335873, 0.432223, -2.088759, -1.020118, 0.948494, -0.485056, -1.492027, -0.113937, -1.343985, -0.829372, -0.268781, 0.662770, 0.599540, 0.833252, -1.501010, 0.533089, -1.754615, 1.959507, -0.498201, -0.002809, -0.110131, -0.902340, -0.876667, 0.481718, -0.998151, -0.347933, 0.936260, 0.865499, -0.200296, -1.041223, 0.610695, 1.061170, 0.375502, -0.219200, 1.789266, 1.308462, 1.543149, 2.161704, 0.119549, -1.309706, 2.051585, -1.100319, -0.434722, -0.603976, -1.127354, 1.992013, -0.191003, 0.032470, 1.004440, 0.549231, 0.705583, 2.208463, 0.717833, 0.167186, 0.275973, -0.776252, -0.781164, -0.903851, -0.887587, -0.078421, 1.166423, -1.426779, 0.595513, 0.527694, -0.052090, 0.019514, -1.108611, -0.882998, 0.141618, 0.453112, 0.749485, 0.269211, -0.308234, 1.104774, 0.553994, -1.128259, -1.135981, -0.345478, -0.729224, 0.149570, 1.639662, 0.110621, -1.922511, -0.746145, 0.187155, -1.725436, 1.352881, -0.396462, 0.665984, 2.734129, -0.786993, 0.650727, -1.645926, -0.365741, -0.928118, -0.162804, 1.215651, -0.105507, 0.215606, 1.080293, 1.194821, -0.554374, -0.255487, 0.349845, 0.853962, -0.972678, -0.285763, 0.480039, 0.166039, 0.335910, 0.671465, -0.829052, -0.160457, -0.111635, 0.820356, 0.863077, -0.267192, -0.078685, 0.631299, -0.669211, -0.204799, -0.136229, -0.202992, -0.087659, 0.128671, 1.260443, -1.249178, -2.798633, 0.340411, -0.473649, -1.299904, -0.622390, 0.506174, -0.208705, -0.346622, 1.211028, -1.634334, -0.447706, -1.037892, 0.841851, -1.264424, -0.969955, 0.168473, 0.612454, -1.405871, 0.003603, 2.402675, -0.561010, 0.485877, -0.151942, -0.061614, -2.191525, 0.458814, -0.276728, 0.530174, -0.751052, -0.846799, -1.531303, 0.041635, -0.243618, 0.740602, -0.027810, 0.034180, 0.096023, -0.979097, -1.048058, 0.381958, 2.025718, -0.117946, 0.235742, 0.237039, 0.239039, 0.058563, -0.835180, 1.450489, -1.070995, 0.833846, 0.740038, 1.778937, 0.490873, 0.439209, -3.230690, -0.610515, -0.118432, 0.229473, 0.061777, 0.217299, 0.704839, 1.528250, -0.485037, -1.411039, -0.631554, -0.582107, -0.186172, -0.522741, -0.490199, -0.416542, 1.086767, -2.098762, 0.936904, 0.065106, -0.229315, -1.983214, 0.037280, 1.661507, -0.906222, 0.156427, -0.715053, -0.573588, 0.783703, -1.645982, -1.512202, 1.449465, -0.897894, 0.982410, 1.627641, -1.316233, -0.236404, 1.291026, -1.694265, -1.829128, 1.919201, 0.906396, -0.339507, 0.503020, 0.346296, 0.815150, 1.020208, -0.261457, 1.428235, 1.713231, 0.324184, -0.311596, 0.280373, 0.167352, -1.741678, 0.142945, 0.224572, 0.790027, -0.187601, 1.810110, 0.254688, -0.511187, -0.879314, 0.136074, -0.201431, 0.487789, 1.411333, -1.584449, -0.569379, 1.030299, 0.312562, 0.464376, -0.750697, 0.151506, 0.147195, 0.819245, 0.249036, 0.490367, -2.129723, 0.197688, 0.209628, -0.522797, 0.270370, -1.839541, -1.225898, 1.291117, -0.680506, 0.530471, -0.653734, 0.539361, -0.056638, -1.450216, -1.272983, -0.170609, -1.956840, -2.456795, -0.531451, 0.451671, -1.162901, 0.138955, -0.130039, -0.200198, 1.309971, -1.170939, 2.640239, 0.961979, 0.007073, -1.018755, -0.139291, 1.483178, 0.267623, -0.341609, -0.531584, 0.086517, -0.751275, -0.554852, -0.333852, -2.284164, 1.769114, 0.231000, 0.598336, 0.526093, -1.110846, 0.600715, 2.275986, -0.018750, -0.080620, 0.217101, 0.538192, -0.194818, -0.916838, -0.157432, -0.596418, 0.353062, -1.293293, 0.925400, 0.268169, 1.704831, -0.148937, -1.045687, 0.097606, -2.001956, -0.772268, 1.257815, 0.137249, 0.891564, -1.183802, -1.063159, 1.238094, 0.973459, 0.757664, -0.192597, 0.008110, -0.692726, 1.954843, 0.305383, -0.004067, 0.347564, 1.098256, -1.411022, 0.428267, 0.288067, 1.355488, -0.122372, -0.536689, -0.545794, 0.485193, 1.661622, -1.237771, 0.380034, 1.757733, -0.966951, 0.446081, 0.826341, 0.034387, -0.344282, 0.122601, -0.133951, -2.647708, 0.240524, -0.244076, 1.557510, -0.505505, -1.457286, -0.112656, -1.023001, 0.599384, 0.884535, -0.626787, -1.346594, 0.935042, -0.775457, -0.930951, 0.590213, 0.452432, -0.938790, 0.805782, -0.350595, -0.592970, 1.680689, 0.843593, 0.132452, -0.841636, -0.930182, -0.427818, -0.022887, -0.397914, 2.337185, 0.066307, 0.029618, -1.055913, -1.327883, 1.010142, 0.423029, 0.818162, 1.112986, -1.100333, 1.129665, -0.521119, -1.009762, -0.176153, 0.954177, -0.238755, 0.163068, 0.721406, -0.406305, -0.371310, -2.167452, -0.383150, -2.178418, -0.211284, 0.632274, 0.428763, -0.549847, -0.077475, 0.358896, 0.935344, -0.116820, 0.042490, 0.632999, -1.496621, 0.294719, 0.251196, 0.211936, -0.272773, 0.505324, 0.468646, -0.416746, 0.517494, -1.180855, -0.334057, 1.065670, 1.088631, 0.071595, 0.451374, -0.556994, -0.640171, 0.358023, -0.127145, -0.316040, -1.022120, 2.401750, 1.335340, 1.412372, 0.557954, 0.337608, 0.535724, 1.725849, 0.556922, 0.272821, 0.385750, -0.413290, -0.131951, -0.150539, -0.113936, 2.031130, 0.307317, -1.013190, 0.082152, 0.260691, 0.508713, -0.268346, 0.295205, -0.475464, 2.412240, -0.018501, 0.716163, -0.862697, 0.939820, -1.338693, -1.532533, 0.870847, 2.036955, -1.457022, -1.033978, -0.226362, 0.612688, 0.019719, -0.394044, 1.351239, 0.240877, 2.110411, 0.094527, -0.445468, -0.412644, -1.391369, -0.344252, -0.623643, -0.322644, 1.117232, 0.687389, 0.755359, 0.641025, 0.632983, 1.263062, -1.549328, -1.566109, 0.508483, -0.499566, 0.934570, -1.388095, -1.972671, 0.383109, -1.554389, 1.282048, -0.314249, 0.244176, -0.929808, 0.750151, 0.538923, -0.903286, -0.702035, 0.512179, -0.291152, -0.419729, -1.037791, 0.706775, 0.235843, -0.323291, -0.307070, 1.163700, -1.123638, 1.339157, 0.422202, 0.211622, -1.802166, -0.102486, -0.482759, 0.110254, 1.695480, -0.573106, -1.885119, 1.681647, -0.317307, 1.407837, -0.340345, -1.341479, -0.127103, 1.046783, 0.876001, -0.507508, 0.063203, -1.178663, -1.428701, 1.024696, -0.896592, 0.053648, 0.580304, -1.716423, -0.604713, 0.178515, 0.226823, 1.818136, -0.396441, -0.216096, 0.241328, -0.935681, -2.599711, 0.298774, 0.142816, -2.043109, -2.757879, -0.226371, -0.856734, 0.685580, 0.032610, -0.314795, -1.044021, -0.059882, -0.347866, -0.517393, -0.738436, -0.167800, 0.061006, -0.612486, -1.202937, -0.586060, 0.263318, 1.325335, 1.538581, 0.464627, 0.250619, 1.180136, -0.062583, -1.311607, -1.173635, 1.181178, 0.739139, 1.322723, -1.272996, -1.303412, 0.873488, 1.008013, -1.498082, 0.113426, -0.553117, -0.036235, 0.374515, 1.103926, 3.328024, -1.022932, -0.421770, 0.262564, -0.503790, -1.633372, -0.007215, -1.793562, -0.599036, -0.574131, 0.307367, -0.578097, -0.603297, 1.036978, 0.525538, 0.255428, -0.734761, -0.206187, -0.929634, 0.815794, -0.976295, -0.084094, -1.288993, -0.045804, -2.553293, 1.341587, 0.834528, -0.658100, -0.330164, -1.596242, 1.379503, -0.051641, 1.338710, 0.003061, -0.975803, -0.772650, 0.789224, 0.155685, -0.470558, 1.422664, 0.922696, 0.539045, 0.334621, -0.382806, 0.986372, 0.403048, 1.097702, -0.343614, -2.157048, -2.003753, -0.301641, 1.385413, 0.345771, 0.541487, 0.982265, 0.973675, 0.545239, 1.334835, 0.145104, 0.694036, -1.940873, -0.155251, 0.952639, -0.828553, 1.449055, -0.963560, -1.566589, -0.452516, 1.144256, -1.138718, 1.058887, -1.227144, 1.352370, 0.893869, 0.553074, 0.590197, 0.919767, 0.739209, -1.018547, 0.619404, 0.222069, -1.122920, -0.389960, -0.872692, 0.329413, 0.535901, -0.037393, -0.184809, -0.768187, 1.777426, 0.580693, 1.055400, 0.585909, 0.327382, -0.704963, 0.240446, -1.395908, -2.819053, -0.384524, 2.115703, 1.038788, -0.386047, 0.394414, 0.014153, -1.083468, -1.268366, 0.536117, -0.926263, -1.745804, -0.126100, -0.330795, -0.002477, 0.006076, -1.751601, -0.414086, 0.342491, -1.246699, 0.227819, 0.104210, 1.963027, -0.973180, -0.072700, 1.289908, -0.525466, -0.194186, -1.123758, -0.028480, 0.140284, -0.449811, 0.249794, -1.954564, -0.501909, 3.107896, -0.537157, -0.615363, 0.833358, 0.130818, -0.470886, -0.598067, 0.485613, -1.002959, 1.054358, 0.922946, 0.493656, -1.295034, 0.178383, -1.298867, -0.902897, -0.186459, 0.297287, -2.278912, -2.306244, -0.553346, -0.810070, -0.692834, -1.223441, 0.102538, 1.072940, 1.420007, -1.079470, 0.556298, -0.017055, 1.374812, 0.117503, -0.497939, 0.429562, -0.742376, 0.205753, 0.201880, -0.481039, 1.490959, -0.947261, 0.971029, -0.108493, 0.720250, 0.440317, -0.416947, 1.383560, 0.471141, 0.100752, 0.262796, 0.253040, 0.246668, -1.583514, -0.908608, -0.432621, 0.734936, -0.704864, 0.372885, 0.865412, 0.654514, -0.335699, 0.875965, 0.966441, 0.043451, 1.130952, -1.448211, 0.084560, 1.562433, 0.897327, -0.478653, -1.555636, -0.342984, 0.141601, -1.480922, 0.727107, 0.155291, 0.729729, -0.341500, 0.277332, 0.986748, -0.353078, -2.394480, -0.337447, 1.226549, -0.903471, 1.040266, 0.818542, 0.224118, 1.912971, -0.540235, -0.104006, -0.276808, -0.636575, -0.188062, -0.769401, 1.244844, 1.113535, -0.103677, -0.230933, -0.026137, -0.319776, -0.008241, -0.280197, 0.163175, 0.409097, -1.531480, -0.212707, 0.993851, 2.238241, -0.430772, -0.664651, 2.236682, -0.194209, -2.817317, 1.369213, 0.691955, -0.065841, -1.836263, 1.580153, 0.463895, -0.451494, -0.019339, 0.793518, -0.698635, 0.743865, -1.935537, 0.746649, -0.273229, 1.496653, -0.932133, 2.122871, 0.348416, -0.715187, 0.284995, -0.826647, 1.210554, 0.192236, 1.027849, 0.741061, -0.105768, 0.676569, 1.511936, 0.625080, -0.573357, 0.089922, -0.754655, 0.933946, -0.907716, -0.902172, -0.382202, -0.279071, 1.007410, 1.360056, -0.338614, -0.656702, -2.972382, -0.343269, -0.068953, -1.184716, -1.570419, 1.230470, -0.034472, 0.413933, 0.421515, -0.829905, 0.430061, 0.842059, 0.522409, -2.363926, 0.270115, -0.462297, 0.609779, 0.810664, -0.397330, -0.301961, 1.102627, 0.336136, -0.949634, -0.075748, 0.942352, 1.969863, 1.222832, -0.315211, -0.182519, -0.541826, -0.394947, -0.434682, -0.212007, 0.315701, -0.988780, -0.032872, -0.346798, -1.302104, -0.794423, -0.408617, -0.107816, -0.783035, -1.310212, 1.584678, -0.236133, 0.548946, -1.954693, 1.183554, 1.385798, 1.144646, -0.662593, -0.360306, 0.667431, 1.659822, -0.131879, -0.379783, 0.656328, -1.123773, 0.082908, 0.712996, -0.554024, 0.563332, -0.199654, -0.591824, -0.561203, -0.426122, 1.403884, -0.903585, 0.605969, -0.267066, 0.394250, -1.134614, -0.140413, -1.815379, -0.376101, -1.036198, 0.119113, 1.289139, -1.048372, 0.056461, 0.210852, -1.502173, 0.430627, 0.942377, 0.948156, -0.288107, -0.331095, 0.346218, 1.452065, 1.446460, 0.310730, -0.599100, 1.074394, -0.277119, -0.100676, -0.755747, -0.604814, -0.135194, -0.147059, -0.320600, 0.565933, -0.601891, 2.256898, -0.966677, 1.544399, 1.176373, 0.523012, -1.033173, 0.019421, -0.847849, 0.383928, 0.668527, 1.245495, 0.262286, -0.543192, 1.228638, -0.524260, -0.818620, 1.324099, 0.864988, -0.441179, 1.662709, -0.438737, 0.214887, -0.483506, -0.834040, 0.807325, -0.454915, -1.349250, 0.223666, 0.062603, -0.182985, -0.822051, 1.002139, -0.292325, -0.025453, -0.661704, 0.985902, -0.182107, 0.287878, -1.975922, 1.205834, -0.228720, 0.679974, -1.008461, -0.223986, -0.548418, 1.051901, 0.692890, 0.719782, -0.303480, 0.153221, -1.393792, -0.441942, -1.498185, -0.169126, 0.742102, -0.474701, 0.888013, 0.472060, 0.637395, -1.894348, 0.084049, 1.787478, -1.303280, -0.771379, 1.150421, -1.216579, -1.432280, -1.126357, -0.680823, 0.239725, 0.110651, 1.101968, 1.195594, 0.492082, 0.003649, -1.672103, 0.973431, 0.208777, 1.851184, 0.745595, -1.197848, -0.554000, -0.700665, 0.582748, 0.519406, 0.948609, -0.406675, -0.375352, 0.068398, 0.035967, 0.229828, 0.328180, -0.659148, 1.003073, 0.138572, -0.698168, -0.617026, -0.445099, -0.157105, 1.164395, -0.938300, 0.675986, 0.603065, 0.266605, -0.626078, -0.078041, -1.407729, 0.369928, 0.626755, -0.414400, 0.729216, 0.155342, 1.095113, 0.825624, 1.569832, -1.084364, 0.102525, -1.174111, -0.105123, 0.633358, -0.028924, 0.228623, 0.130390, -0.236850, -0.144029, -0.573546, -1.032795, -0.417168, -1.504977, -1.354221, -0.403611, -1.461983, -1.129268, 0.892131, -0.335983, -0.676187, 1.446193, 1.193494, 0.306674, -1.055063, 0.704590, -0.435023, -1.763519, -0.550816, 2.047600, 0.822127, 0.040306, -0.033598, -0.242002, 0.147377, 0.250908, 2.251618, -0.041361, -0.358791, -0.181501, -0.591130, 0.254489, -0.714953, -0.740986, -1.279546, 0.949467, -0.873217, -0.467208, 0.190946, -1.008175, 1.801631, -0.126082, 1.067338, 0.288161, 0.249066, -0.617229, 0.593719, 1.530435, 1.884994, -0.081046, -0.968992, 0.160153, 1.969566, -1.053953, -0.836548, 0.139843, 1.494685, 0.352406, -0.926121, 1.569402, 1.523643, -0.278746, 0.898174, 0.658881, -1.684113, -0.701539, -1.447959, 0.663772, 1.112158, 0.061477, -0.059743, -1.103660, -0.182346, -1.185428, -1.876082, 0.655456, 0.558117, -2.022881, -1.520818, 0.347973, -1.594027, -1.155989, -0.045850, 0.731735, -1.289687, -1.541892, 0.210944, -0.625924, 0.199930, -0.080277, 0.903839, 1.231986, 1.067262, -0.068049, -0.699953, 0.822718, -0.296499, -0.221543, -0.278970, 0.513237, 0.827613, 1.713596, 2.597856, -0.140316, 0.362628, -0.821054, 0.157040, 0.118295, 0.553996, -1.485809, 0.258481, 0.355334, -1.177092, 0.103126, 0.398919, 0.190596, -0.803824, -0.397641, -0.372418, -0.009174, 0.162730, 0.611300, 1.236188, 1.789484, -0.232265, -1.521689, -1.170176, -0.831056, -1.337540, 0.137027, -0.417757, 1.164534, -0.801658, -0.389173, -1.443340, -0.920076, 0.441733, -0.040641, -0.035823, -2.645470, -1.232161, 0.147755, -0.421072, 0.532214, -0.856269, -0.634907, -0.403554, -0.346834, 0.839574, -0.087193, 0.441669, 0.738109, -1.393023, 0.478111, -1.067152, -2.588732, 1.711142, 1.215224, -0.728539, 1.647228, -0.973777, -0.713173, -0.077688, -1.157092, -0.827909, -0.856171, 1.090561, 1.046554, -0.058885, -0.559543, 1.384331, 1.161126, 1.337533, 0.097788, 0.670159, 0.911006, 0.529475, -1.536989, 0.349344, -0.096134, -1.219789, 0.046755, 0.823575, -0.009236, 0.107935, -0.477113, 0.648281, -0.213923, -0.803146, -0.329485, -0.572589, 0.652331, -0.207981, 0.727378, 0.381030, 0.022028, 1.303343, -0.468149, -0.477167, 0.456223, 0.125330, 0.478265, -0.628370, -0.159488, -0.967702, 2.533384, -1.029571, 0.114859, 1.126299, -0.223379, 0.059862, -1.161115, 1.011638, -1.229890, -2.005553, -0.727579, -1.437629, -1.777161, -1.213175, 0.875985, 0.028471, 0.050240, -0.783120, -0.064472, -0.759533, 0.589579, 0.430470, 0.649749, 0.209732, 0.040350, 0.941712, -0.323346, 1.486470, -0.150771, 0.344093, -0.475365, -0.936564, -0.502017, 0.144467, -0.759579, -0.750176, 1.734031, 0.114979, -0.829583, -0.024601, -0.897302, 0.670654, -0.412803, 0.400521, 0.668734, -0.957613, -1.484817, -0.345223, 1.250503, -0.535899, -0.009035, -0.528449, 1.986513, 2.060075, -0.130140, 1.040218, 1.052733, -1.392318, -0.435285, 1.826712, 0.505820, -1.051085, -0.080287, -0.617848, 0.883152, -0.647066, -0.396832, 0.743422, 0.887783, -0.697282, -0.544166, -0.702491, -0.623455, 0.374829, -0.785628, 0.003286, 1.263164, -2.329807, -0.614077, -1.238433, 0.891699, 1.553901, 0.704964, -0.671187, 1.504610, -2.033374, 1.953688, -0.124666, -1.080682, 0.884962, -1.197730, -0.583376, -0.131424, 0.280526, 0.926353, -1.122543, -0.911031, -0.265768, -0.019021, 1.521266, 0.602850, 0.893976, -0.913951, 0.292408, -0.037936, 1.372991, 0.969045, 0.231774, -1.618405, 1.453707, 0.110059, -0.115255, -0.276925, 0.413341, -0.438483, -0.553558, -2.901073, 0.260692, 1.145421, -1.203136, 0.948973, -1.298123, -1.958885, 2.066862, 0.112493, 1.208171, 1.674916, -0.020802, -0.838846, -0.305266, -2.597898, -2.074761, -0.180108, 0.895331, 0.244444, -0.338277, 2.188682, 1.884206, -0.598579, -0.558468, -0.410476, -1.159934, 0.309216, 0.381153, 1.448310, -0.998552, -0.910545, -2.139353, 0.663926, 2.045503, 1.095219, 1.955748, 1.028688, -0.651780, 1.632300, -0.943432, 0.911641, -0.684423, -0.327019, -0.505193, 0.135176, -0.888351, -1.751179, -0.208985, -0.932757, 2.598347, -0.609779, 0.307194, -0.886524, 0.034716, -1.398090, -0.614924, 0.288838, -0.632283, -0.272610, -0.929351, -0.378669, -0.077282, -0.006521, -0.058322, 0.491247, 0.351092, -0.072483, 0.992031, -0.283934, 0.642206, -1.271951, 0.840728, -0.348995, -0.172767, 0.194900, -0.274372, 1.686866, 0.365430, -0.762178, -1.689258, 0.396351, -1.103336, -0.433077, -0.610659, -0.476620, 0.920566, -2.285129, -0.080145, 0.183470, -0.357605, 0.029375, -1.174137, 2.090874, -0.468729, -0.646514, -0.704356, 0.751061, 2.093110, 1.365408, -0.647215, -0.607229, 0.553309, 1.028274, 0.500955, 0.044174, 0.391770, -0.964070, -0.389583, -1.040431, -0.149200, -1.870575, -1.083602, 0.407257, -1.515209, 0.945394, -0.877288, 1.202483, 0.329300, -0.414634, 1.363362, 0.701967, 0.021943, -0.336957, 0.563201, 0.362663, -0.096563, -0.352436, -0.313084, 0.774509, -0.292444, 0.235398, -1.047354, -0.217255, 1.224749, 1.198082, 0.243714, 0.413656, -1.563167, 0.009253, 1.336108, 2.276343, -0.816204, -0.609763, -0.106606, -0.211859, -0.419947, -1.252650, 0.678270, 0.364397, -0.303829, -0.496633, 2.521461, 0.444512, -0.690825, -1.091630, -0.674005, 0.256683, -0.522537, -1.058666, 0.717487, 0.029575, 0.583096, -0.262566, 0.638153, -0.294252, 0.399917, -1.033148, 0.216968, 0.547010, -0.973192, -0.242378, -3.080508, 0.707494, 0.985695, 2.193674, -0.246119, -0.737012, 1.426696, 0.295096, 0.250086, -0.610012, 0.053014, -0.253414, 0.018542, -1.049275, -1.513752, -0.445451, -1.492897, -0.601685, 1.208795, 0.409892, -0.361743, -0.293387, -0.145330, 1.127861, -1.852282, -1.495407, 1.223743, 1.118501, -0.598514, 1.016503, -0.598052, -0.816620, -0.111217, -2.164274, -1.506453, 0.848012, -1.684716, 0.397399, -0.025137, -0.082389, -1.592093, -0.931004, -0.053304, 1.186109, 0.241978, 0.001271, 1.244314, 0.253956, 1.508187, 0.336085, -1.638505, 0.342083, -0.468752, -1.653105, -0.983859, 0.236307, 1.104780, 0.414965, -0.465309, 0.983627, -0.832675, 1.590554, 0.267019, 0.442295, 0.089077, 2.132010, 0.776167, 0.638996, -0.450323, 0.347643, -0.923947, 0.255782, 0.168298, 0.509174, 0.443585, 0.944438, 0.087974, -0.828370, 0.002427, 2.078786, 0.805401, -1.471338, 0.357937, 0.164135, 0.867548, -0.882660, 0.310870, 1.745017, 0.497361, 1.018385, -0.306170, 0.729058, -0.505483, -0.030711, -0.949488, -2.127658, 0.498005, 0.361026, -0.372618, 0.036155, -1.172335, 0.421863, 0.232184, -0.246218, 0.118726, 1.610804, -1.378174, 0.283408, -0.947898, 0.004621, 0.352545, -0.418786, -0.284877, 1.156360, -1.784031, 0.586838, -1.190856, -1.825560, 0.391753, 0.204176, 0.679014, 1.117311, -0.053043, -0.381388, 0.225296, 1.156356, -0.565207, 0.946840, -0.772552, -0.281142, -0.716169, 1.183331, -0.462058, -0.133600, 2.386313, -0.954903, 1.617639, -1.990874, -0.503741, 0.805940, -1.798753, 1.018242, -0.069681, 0.768632, 0.829163, 0.248769, 0.473693, 2.759011, -0.175960, -1.088549, 0.090859, 0.868354, 1.221065, 0.098714, 0.504231, -0.488036, 2.065358, 0.424258, 0.932790, 1.445589, -0.535498, 0.323761, -1.241941, 0.770135, 1.600767, 0.377585, -1.561460, -0.315027, 0.809735, 0.208054, -0.680719, 0.951335, -0.057570, 1.001270, -0.167095, -0.205945, 1.083783, -0.006386, 0.507432, -0.509077, -1.529743, 1.234340, -1.826191, 0.331366, 0.708026, 0.112583, 0.828184, 0.093870, -1.045377, -0.439622, -0.689164, -1.625109, -1.033484, 1.300538, -1.205164, 0.735395, 1.848574, -0.412589, -0.460112, -0.654017, 0.824179, 1.737731, 1.692008, 0.217702, -0.920894, 0.289846, 0.489996, -2.763100, -1.476797, -1.584765, 1.324330, 0.241056, -1.376677, 0.798251, 0.989410, 0.486622, 0.432964, -0.127954, 0.255011, 0.235208, 0.324400, 0.242507, 0.850728, 1.853686, -0.769172, -0.676401, 0.981819, -0.665699, -0.436257, -0.746578, 0.719598, 0.670031, -1.617423, -0.765698, -0.130638, 1.339001, -0.250610, -0.233239, 1.887988, 0.395393, 0.443265, -0.357346, -0.932440, -0.041591, 1.545087, -0.827120, -0.328962, -0.258529, 0.272733, 0.755365, 0.316440, 0.583357, 0.307030, 1.749242, 0.128056, 0.731642, 2.486978, 0.222047, -1.213414, -1.748090, -0.666311, -0.726829, -0.102644, -1.158301, 1.226055, 0.189799, 0.249707, 0.297159, 1.648256, 0.602773, -0.078200, 2.368379, -1.029276, -0.031718, -0.060050, -0.106025, 0.208640, -0.297482, -0.594718, -0.536860, -1.618080, -0.012819, 0.665794, -1.306326, 0.329952, -0.384732, 0.471170, -0.692423, 0.352658, -0.353765, -0.624031, 1.618181, -0.117278, -0.160651, 0.133729, 0.416183, 1.741488, -0.132032, -0.096393, -0.667343, -0.126846, -1.023001, 0.756026, -0.216776, 0.307320, 0.185616, 0.765330, 2.698803, 0.155681, -0.284734, -0.049457, 1.226896, 1.321137, 2.105102, -0.024803, -2.351218, 0.955395, 1.623109, -2.593519, 0.880723, 1.366364, -0.453704, -0.169199, 0.101298, -0.339878, 0.669135, 0.084879, 0.898043, -0.671916, -0.210344, 1.651739, -0.314424, 1.108827, -1.167360, -0.458726, -0.480828, -1.032212, -0.385593, 0.958898, -0.979084, -1.761650, -0.311020, -0.663789, 3.002856, 0.500758, 1.869690, -0.009320, 0.976446, -1.649059, -0.016867, 1.788669, -0.281528, -0.820604, -0.935893, -1.498471, -0.762326, -0.425157, 0.495993, 1.540421, -0.284625, 0.385401, 1.375196, -0.032166, -1.812318, 0.580485, -0.579971, 0.569041, -0.324428, 0.429991, 0.747618, 1.127255, 0.482443, -1.583986, 0.003698, -0.794320, -0.131490, -1.469137, -0.287240, 2.368807, 1.997617, 1.975032, 1.281578, 0.030255, -0.206150, -0.613783, 0.652650, -0.132643, 0.566216, 0.201846, -0.410452, -1.550183, 1.027754, 1.109950, 1.231980, 0.117048, 0.026106, -1.141737, 0.522628, 0.560496, 1.075405, -1.829545, -0.032200, 0.580612, -0.329021, -0.479999, -2.144433, 0.689593, -0.942547, 1.524227, 1.470467, -0.180339, -0.560179, -0.947481, -1.483103, -2.078937, 0.546303, -1.200161, 0.443168, 1.246248, 0.467015, 0.041833, 1.185161, -0.327042, -0.262802, -1.070756, 0.465227, 0.014188, -1.044144, 0.186583, -1.184165, 1.554506, 1.030036, 0.886680, 0.014195, -0.589994, -0.918017, -0.297715, -0.964505, -0.339930, -0.349669, -0.342444, 1.181813, -1.065601, -0.118944, -0.326901, -1.334548, -0.159863, 0.837796, 0.027617, 2.080922, -0.133526, -0.319612, 1.616086, -0.166965, 0.420309, 0.407471, -0.707876, 0.146836, -0.485669, -2.241846, 0.058797, 1.638197, -0.281664, 0.363624, 0.224746, 0.347689, 1.504757, 0.867705, -1.058335, -0.757657, -0.233610, -0.605775, 0.103034, -0.782511, 0.484143, -0.614415, -0.849009, 0.009519, 0.851913, 0.783826, -0.705088, 1.500142, -0.516031, -0.475369, -1.390907, -1.310930, 1.388639, 1.468088, -0.862605, 0.641629, -1.331897, -0.420069, 0.996633, 2.415989, -0.690723, -0.248493, -0.120515, -0.383829, 0.621671, 1.196772, -0.290069, -0.656415, -0.050779, 0.442847, -1.222851, -0.512616, 0.694622, 2.135243, 1.632016, 0.463504, 0.163877, -0.432316, -0.074746, -0.036560, -0.136754, -0.902811, -1.496528, -0.072025, -0.228463, 1.702090, -0.363793, 0.074235, 1.243025, -1.659096, -0.603901, 0.414347, -1.563740, 0.905980, -2.441795, 0.378857, 0.365431, -2.931975, -0.640035, 0.491280, -1.182243, -0.057325, -0.705213, -0.623949, 0.589179, -0.011464, -0.339350, 1.278987, -0.350046, -2.259562, 1.156975, 0.431198, -0.448226, 0.181641, 0.884539, 1.563273, -1.797369, 0.938881, 0.276529, 0.733857, 2.082041, 1.287495, -0.493925, 1.098816, 0.598159, -0.414070, -0.519057, 0.482735, 0.509668, -1.662336, 0.028147, -1.365872, -0.233200, -0.490152, 0.327856, -2.546453, -1.171195, 0.957049, 2.172434, -1.613645, -0.725649, -0.333343, 0.723008, -1.046704, 0.184869, 0.302755, 0.632297, -0.213238, 0.131648, 1.907775, 0.501460, 1.272059, 1.344904, 0.474290, -0.362896, 0.230117, 0.467075, 0.454175, 1.339638, -0.595783, -1.008737, -0.238725, 0.480643, -1.216938, -0.362692, 0.718953, -0.532518, -0.293144, 0.455388, -1.204346, -0.509517, -0.672102, -0.347790, -0.355769, 0.668932, 0.450684, -0.464111, 0.428428, 1.070328, -0.769980, -0.040134, 0.211202, -0.117045, -1.614071, 0.612755, -0.749004, -1.503798, 2.681678, 0.526501, 1.302395, 1.850410, -1.570418, 0.552783, 0.555774, 0.647278, -1.540283, 1.126552, 0.716625, -0.805623, -0.784180, -0.457727, -1.494954, -1.800645, -0.247513, 0.770136, -1.755537, -0.064888, 0.334915, -0.438589, 1.378984, 0.304287, -0.828168, -0.082067, 0.025025, -0.641677, -0.957067, 0.192324, 1.713293, -0.198615, -0.430762, -0.307394, 0.108820, 2.067800, 1.753175, -0.175777, 0.380387, 0.287044, 0.822855, 1.312685, -0.011331, -1.184620, -0.706590, -0.960235, -0.371950, 0.484617, -0.307238, -0.415538, -0.450592, -1.798892, -1.024896, -1.962870, 0.383872, -0.945319, -0.546227, 0.143008, 0.885236, -1.415447, -0.607128, -0.073790, 0.839108, 0.095335, -0.612102, 0.131944, 1.497239, 0.703147, -0.762010, -2.455624, -0.550255, -0.527730, -1.200463, -1.335213, 0.198714, -0.853133, -0.108890, 0.778238, 0.519175, -1.099018, 1.044160, 0.064686, -0.248143, -1.123017, -0.104113, 0.593299, -0.328193, 1.238760, 0.289982, -0.120638, 0.543488, 1.481058, -1.728156, 0.557878, -0.564819, -1.294336, -0.365197, -0.903325, -0.736969, -0.593731, 0.231700, 2.312100, 0.044761, 0.605234, -0.402889, 0.293846, -0.238520, 0.792277, 0.399851, -1.271464, -0.143157, 0.817546, -0.414382, -0.584692, -1.231259, -0.610151, -1.301072, -0.960832, 0.844918, -0.394307, 0.091667, 0.049415, -0.228930, 1.193390, 1.165965, 0.239050, -2.000160, 0.563655, 0.524789, -0.323701, -0.288131, 0.586101, -1.919066, 0.788416, 1.076393, -0.267581, -2.066545, 1.361658, 0.192215, -0.268293, 0.685415, -1.066501, -0.890900, -0.753302, -0.943416, 0.136978, -2.134350, -0.177144, -2.083099, 1.529065, -1.324988, -0.713418, -1.698089, -0.951384, -0.528493, -0.824585, -2.350519, -0.055867, -1.488417, -0.436066, 0.015655, 0.713698, -0.390350, -0.624259, 1.473821, 1.544823, 0.261959, -0.437874, 0.531292, 1.669885, 0.309119, -0.113530, 1.824166, 0.706350, 0.716046, -1.927026, 0.799317, -1.153619, 0.480715, 1.901056, -0.734579, -0.028224, -2.146215, 1.224755, 0.135683, 0.707858, 0.074689, 0.815132, 0.006397, -0.226859}, + { -1.775708, 1.577773, -1.357120, -1.948466, 2.379937, 0.974103, -0.075040, 2.195132, 0.891181, -0.713695, -0.795392, 0.952692, 0.562669, 0.395196, -1.223407, 0.087385, -0.574228, -0.018478, -0.592905, 1.485322, 0.147479, 1.544212, -0.067118, -0.527288, -1.324014, -0.092526, 0.218096, 1.054857, -0.207179, -1.471871, -0.072510, 0.128589, 0.313770, 0.527617, 0.781455, -0.560813, -0.497827, 0.763926, -0.081313, 1.627997, 0.422461, -0.470420, 0.163412, -0.515582, 1.152705, 1.348188, -1.169136, 0.777720, -0.124728, 0.823216, -0.321754, -1.199779, -1.373755, 0.059612, 0.408166, -1.728657, -0.574989, 0.558442, 1.049780, -0.651828, 0.478471, -1.564489, 1.136657, 1.178832, 0.361032, 0.250224, -1.324271, 0.368622, 0.609381, 0.041441, 1.023976, -0.317153, 0.008926, 1.497955, 1.331776, -1.366921, 1.694042, 0.319073, 1.243736, -0.275788, -1.386266, -0.239738, -1.453370, -3.428048, 0.438705, -0.963804, -0.878525, -0.583121, -1.116015, 0.049740, -0.222268, -0.115479, 0.255961, 0.240079, 1.159971, -0.515537, -0.405841, 0.556940, 1.876047, 1.499914, 0.318520, -0.357236, 0.616091, 0.319665, -0.036077, -0.409389, 2.053128, -0.509843, -0.178014, 0.089493, 0.768478, 0.241166, 0.286690, 0.398833, 0.478272, 0.465642, -1.566303, 0.228673, 0.268823, -0.600708, 0.250576, -1.016163, 0.510160, 1.088357, -1.432796, -1.336184, -1.323552, 1.956550, 0.650685, -0.353928, -0.315436, 0.735578, 0.247915, 0.539326, -0.048299, 0.596354, -0.172272, 0.679505, 1.323684, 2.440036, -0.953941, 2.264165, -0.857901, -0.282070, 1.451947, 1.021027, 1.484610, -0.326566, 1.162769, -1.563729, -0.125484, 0.731224, 1.693233, 0.546951, 1.626992, -0.224999, -0.349068, -1.081630, -1.393522, 0.187838, 2.066783, -0.542921, 0.555104, 2.261391, 0.445907, 0.630637, -1.327879, -1.552196, 0.495191, -0.901314, -2.284741, 0.505776, -0.772807, -0.435042, 1.676813, -0.687331, -2.071118, -1.328349, 0.025718, 0.102198, -1.748192, -1.294535, 1.859533, 0.864871, 0.344695, 0.195630, 0.000184, -1.547332, -0.790501, -0.568389, 0.756407, 0.561980, -0.585830, 0.653992, -1.078229, -1.255563, -1.558588, -1.028194, 0.143493, -2.542594, -0.032492, 0.019688, -0.150061, -0.345382, -1.687949, 0.772111, 0.063768, 0.599223, 0.593575, 0.103457, -0.040748, -0.232488, 0.090344, 0.048193, -0.810328, 1.002816, 0.856849, 1.381180, -0.230105, -0.805479, -2.013278, 0.432458, 2.037941, 0.659237, -0.259172, 0.392761, -1.393723, -0.267069, -1.790866, 0.528086, 2.181783, 1.148085, -1.356451, 0.083570, 0.046276, 0.663066, 0.199981, 0.755376, -0.627783, -0.792499, 0.361999, 0.498776, -0.480737, -0.203732, -2.370168, 0.786610, -0.194616, -0.831342, -3.450214, -0.093845, 0.401587, 0.471217, -1.019708, -0.591133, -0.353336, 0.370283, -1.552086, 1.005746, 1.153766, -0.595319, 1.459991, 2.573270, 0.350138, -1.293580, -0.739786, -0.737980, -0.458690, 0.994674, -0.650658, 0.809190, 0.253029, 0.273181, -2.272073, -0.374725, 0.861526, 0.381432, 0.638572, -0.059434, -0.392367, -1.576198, -1.080680, 1.085267, 0.581584, 1.250279, -0.270705, 0.907434, 0.204817, -1.132815, -0.312156, 0.325631, -0.068137, 1.716925, -0.569874, 1.850344, 0.140704, -1.427467, 0.519566, 2.054110, 0.238838, -0.338579, 0.426959, 0.788494, 0.231708, -0.179429, 1.521585, -0.346507, -0.639987, 0.708528, 0.055052, -0.138056, 1.218998, -0.040668, -1.703094, 2.910345, 0.515357, 0.775643, 0.537399, 2.486140, -0.158430, -0.652643, -1.694820, -0.671851, -0.432173, 0.155075, -1.529571, -0.912793, -0.039052, 0.300161, 2.178182, 0.957360, -1.162344, -0.119158, 1.773908, -0.912277, -1.059169, 0.230747, 1.762620, -0.648301, 0.746444, -0.210026, -2.037598, -0.063281, -0.662760, 0.634799, -0.725785, 0.010431, -0.767840, -0.923967, 0.006651, 0.660096, -0.345080, 0.551504, 0.236843, -0.259468, 0.400491, -1.287899, -1.383754, 0.323031, 0.167118, 0.666256, 1.135421, 0.207733, -0.476413, -1.314378, -0.184729, -1.721126, -0.643044, 1.427276, 1.711674, 1.453249, -0.969912, -1.113708, 0.534715, -0.571263, -1.024817, 1.747044, 0.565119, -0.441453, 0.132921, -1.238919, -0.862933, 1.144910, -0.989436, 0.832204, 0.206228, 0.601980, 0.735158, -0.530706, 0.454795, 0.087421, -0.110428, -1.532028, -2.125558, -0.732246, -0.095187, 0.314524, 2.072491, 0.141578, -2.154202, -0.996405, 0.154052, 0.386981, -1.527894, 0.662735, -0.728092, -1.277087, 1.947863, 0.176360, -1.577321, 0.470118, -1.595076, 0.330754, -1.172099, -0.333187, -0.295277, -1.073788, -0.182389, 1.065091, -0.422886, -0.648396, 0.001978, -0.573041, -0.319242, 0.563175, 0.190408, -1.009268, -1.572550, -0.229680, -1.521161, -1.606081, -0.186338, 1.084512, 0.767137, 1.324980, 0.294943, -1.189233, 0.840304, -1.238156, -0.515402, 0.684759, -0.514806, -0.035721, 0.423411, -0.939540, -0.027619, -0.170692, 0.607354, -1.620211, -0.028658, 0.451254, 0.062468, -0.687237, -0.712231, 1.869627, -0.853865, -1.928953, -0.855752, -0.092192, 0.251865, -1.488517, 1.201767, -0.762946, 1.061949, -1.292997, -0.980431, 0.764382, -0.321076, 0.423421, 1.114901, -0.291273, -1.751577, 0.198999, -0.393977, 1.105855, -0.220299, -0.149601, -0.976882, -2.059405, -0.264161, 1.898186, -0.281793, 1.114171, 1.217944, -0.076797, -0.038639, 1.210367, 1.624460, 0.317270, -0.168522, 0.248750, 1.351528, -1.778224, -0.007352, 1.591936, -1.030857, 0.068813, -0.931847, 1.498091, 0.340230, -0.715672, -0.810611, -1.280811, 0.904199, 0.994395, 2.076841, 1.768701, 1.654172, -1.064972, -0.471928, 0.319467, -0.027157, -0.431668, 0.541589, 0.588718, -0.657105, 1.404547, 1.463650, -1.647953, 0.033319, -0.228811, -1.716704, -0.084922, 1.160699, -1.855660, 0.486622, -0.448874, -0.534979, 0.538831, 0.398621, 1.816244, 0.617336, 0.509768, 0.278272, -0.407466, -1.102746, -0.640729, 2.204052, -1.090603, 0.428259, 1.131038, 0.484830, -0.219091, -1.273546, 2.582221, 0.129235, 0.225636, -0.446631, -0.947427, 1.641930, 0.001540, -0.222013, 0.516219, -0.217888, 1.285172, -1.654165, -0.400398, -0.263518, -0.577081, -0.614662, -0.034810, 1.151575, 1.481600, 1.029548, -1.324441, -0.033114, -0.464003, 0.746416, -1.513239, -0.557277, 0.613971, 0.323732, 1.050647, 0.454061, -1.844451, 0.506889, 1.338220, 0.263406, 0.014499, -0.399012, -0.244619, -0.058918, -0.545773, -0.612247, 0.460900, 0.033688, -2.438305, 0.830354, -1.647037, -1.478666, -0.471272, 0.275862, 0.658311, 1.516656, -0.435511, 0.083734, 1.399203, 0.297462, -1.815983, -0.623867, -1.854946, 0.668973, -2.180854, -0.364391, 0.081705, 0.823075, 1.776006, 0.067504, 0.224016, -1.491039, 0.748698, 1.074837, 0.131548, -1.422208, -1.920705, 1.442040, 0.222505, 0.046959, -0.564873, -0.932313, -0.873606, -0.200770, -0.425828, -1.369458, 2.656986, -0.879825, -1.926587, -1.297984, -0.591694, 0.624829, 1.122620, 0.371118, -1.125153, -0.211166, -0.105891, -2.217010, -0.442485, -0.340532, -0.656841, -1.088273, -0.361514, -0.770818, -0.421875, 0.334398, -1.338224, -0.958271, 0.872752, -0.808662, 0.255063, -1.515681, 0.493300, -2.064736, -0.552958, 0.626030, -0.549370, -1.835676, -0.196684, -0.050138, 0.269438, 1.094259, 0.135782, -1.033487, -1.065508, 1.876711, 1.126448, 1.844628, 0.980747, -2.225693, 1.555722, -0.480570, -0.482708, 1.575417, 2.144323, 0.720656, 0.341507, -0.451255, -0.423274, -1.030605, -0.895396, -0.963350, -1.078762, -0.261076, 0.218953, 0.991210, -0.844975, 0.154304, -0.726847, 0.198680, -0.486901, -1.515643, -0.716145, -0.628174, -0.907404, -0.451294, -0.314370, -0.051817, -1.352604, -1.062598, -1.005519, 3.518583, 1.019941, 0.668420, 0.945828, 0.293143, -0.273200, 0.386627, 1.298502, -0.742222, 0.434938, 0.206664, 0.817568, -1.004614, -0.172594, 0.959674, 1.426990, -0.500679, -0.283698, -0.720258, -0.188524, -0.504126, 0.778705, 0.545453, -0.376503, 0.294048, 1.174140, -0.089970, 0.642154, -0.150266, 1.027822, 1.254247, -0.507758, 1.931679, 0.434283, -0.349654, 1.071715, 0.989825, 0.959410, 0.691310, 0.179832, 0.795462, -0.460646, 0.271950, -0.210593, 0.990797, -0.306692, 0.789792, 0.609754, -0.840308, -0.719276, -0.467790, 0.607719, 0.210216, 0.737544, 1.578652, -0.332656, -0.369550, -1.562057, 0.406025, -0.072135, 0.705253, 2.786014, -0.782209, 0.144101, 0.027090, 0.411446, -0.103862, -0.794118, -2.550025, -0.794052, 1.197102, -0.070774, -2.141302, 1.142176, 0.571104, -0.106905, 1.215271, 0.411307, 0.322397, -0.143596, -1.489449, -0.012869, -0.030781, 0.289805, 2.102154, -0.468891, 1.575945, -0.154692, 1.109218, 1.013330, -0.850630, -0.691914, 1.364860, -0.484503, 1.456156, 1.014713, 0.734903, 0.449798, 0.716608, 0.162605, 0.186169, 0.215676, -1.057875, 1.186841, -1.372339, 0.688239, 1.331015, -0.296080, -0.676232, -1.943690, 0.173155, -2.314358, -0.320911, -0.085317, 1.200871, 0.103588, 0.201949, -0.215095, 0.357064, 0.688957, 1.057573, 1.973270, 1.274735, -0.571417, 0.226696, 1.014030, -1.502967, 0.707380, 1.203169, -0.515187, 1.283324, -0.620082, -0.051055, -0.089619, -0.117189, -2.145127, 0.826318, 0.567406, 1.020097, -1.139863, 1.425147, 2.643832, -0.201424, 1.463312, 0.842408, 0.771046, -0.658888, -0.638513, 1.154166, 0.506405, -0.269198, -1.747310, 0.748471, -1.039160, -1.183894, -1.773082, 1.734395, -0.218093, -1.189979, -0.639931, -0.287645, 0.479232, 0.375571, -0.884342, -0.646296, -0.627006, -0.175362, -0.523969, 0.968641, 1.286379, -1.329833, 0.122692, -2.351994, -2.193979, -0.104421, 0.457688, -0.122849, 0.118144, 0.721333, 1.005934, -0.030132, -1.142573, -0.811456, 1.625021, 0.472148, -1.774473, 1.366981, -0.061792, 1.655075, 0.823839, -0.406401, -0.709887, 0.263895, -0.582684, -1.147522, -0.243877, -1.173104, 0.715198, -0.135716, 0.970815, -0.506302, 1.256250, -0.304273, -0.622631, 0.774186, -0.098001, 0.511715, -0.653205, 0.405905, -1.144706, -0.762377, 0.104969, -1.191963, 0.436752, -0.486578, -0.738273, -0.218448, 0.677714, -0.140663, -0.176665, -0.231104, 0.824045, -1.405195, -1.396788, -0.678873, 0.932869, 1.584708, -0.859148, -0.525673, 1.603462, 0.185084, 1.146181, -1.679175, 2.919252, -0.378511, -0.078541, -1.639030, -1.181860, 1.001962, -0.226263, 0.300445, 0.952903, 0.349240, -0.018386, 1.339089, -0.852537, 1.293326, -1.234429, -1.259413, -0.574849, 0.341944, 0.635390, 1.248488, -0.518246, -0.009616, -0.395374, 0.335589, -0.391057, 0.967579, -0.431392, -0.244620, -1.216109, -0.676797, -1.929863, -1.927927, -0.145844, 0.203886, -1.372941, 0.613168, -1.291676, -1.549550, -1.404324, 0.543865, 0.743535, 1.588470, -0.780898, -0.366438, 1.637097, 2.270249, 0.516151, -0.650590, 1.958283, 0.533614, -0.362792, -0.280270, -0.472363, 1.033453, 1.194234, -1.257510, 0.269215, -0.458214, 0.383964, -1.431215, -0.533049, 0.633671, -1.486081, -0.395552, 0.883551, -1.189532, 0.229135, -1.089706, -0.079819, -0.131758, -0.042324, -1.633988, -1.674003, -0.630605, -1.468850, 0.382644, -0.553704, 1.748937, 1.870357, 0.231930, 0.566580, 1.053156, 0.482045, 1.192855, 0.770437, -0.205162, 0.221310, 0.384379, 1.852206, -1.237267, -1.810564, -0.175734, -1.025309, -0.719673, 0.014981, -1.054880, 0.129170, 1.155245, 1.084922, -0.131768, -0.778565, -0.683912, 1.632237, -0.270281, -0.515743, 0.554145, -1.552635, 0.728398, -0.513917, 1.028731, 0.946778, 0.101074, -0.222134, -0.453484, -0.157685, 0.686110, -2.657552, 0.213809, -0.570501, 0.398271, -0.034616, 2.299735, 0.617206, -0.009037, 0.489672, 0.259026, 0.982366, -0.916636, -0.835163, 0.452656, -0.636508, -0.837199, 2.029793, -1.028072, 0.241387, 0.490390, -1.198617, 0.827183, -0.101270, 1.271432, 0.647919, -0.252802, 0.025678, 1.099627, -0.192586, 0.382749, -0.229662, 0.425308, -1.479770, -0.144008, 0.926339, -0.078180, -0.442595, -0.084503, -1.174988, 2.062048, 0.220858, 1.023074, 0.629293, -0.758778, -0.161750, -0.801879, -0.903283, 0.944132, -0.906454, -0.522810, 2.106923, -0.956492, 0.746447, -0.041929, 0.477438, 0.883054, 0.558895, -1.335454, -0.346808, 0.259823, -0.158528, 2.285153, 1.922114, -0.490711, 1.660747, -0.132825, -0.163069, -0.080119, -0.153927, -0.650564, -1.200334, 1.385344, -0.390135, -0.207605, 2.078298, 1.237065, 0.141470, 1.033145, -0.540462, -0.494870, -0.071068, -1.664295, -0.274671, -1.468852, -0.578119, -0.396694, -0.442577, 1.973585, -0.069533, -1.006045, -0.315918, -0.726714, 0.706754, 0.468841, 0.083514, 1.290425, 0.190972, -0.139193, -0.506232, 0.982724, 0.544418, -1.815975, 1.874176, 0.871083, 0.033521, 0.629592, 1.304928, -0.700882, 0.789623, -0.586080, -0.848986, 1.135839, 0.634214, 1.201540, -0.870741, 1.944623, -0.496977, 1.444003, -0.405687, 0.822867, 1.676593, -0.520585, 0.578250, -1.194576, 1.823117, -0.996548, 2.402521, -1.021042, -0.027274, -0.354823, -1.500319, 0.931279, -0.417669, -1.397350, -0.182041, -0.048365, 0.996540, -1.742504, 1.150031, 1.341433, 1.367734, -0.822363, -2.223567, 1.100254, 0.653989, -0.807970, -0.189016, -0.804092, 0.213814, -1.485453, 2.800562, 0.110801, -1.951356, 0.363166, -0.586134, 1.883338, 1.420361, 0.034059, -0.056076, -0.755489, -0.082437, -0.258651, 0.796638, 1.511878, 0.495026, -0.059032, 0.371131, -0.809234, 1.961914, -0.189696, 0.467770, 0.473456, -0.160251, 1.425941, 0.161275, 0.331375, 1.081585, 1.100084, -1.512353, -0.023201, -0.144617, 0.521923, -2.516715, -0.221022, -0.908016, -0.541444, 1.576889, 0.516303, -0.896864, 1.080233, 1.054607, -1.323635, -0.506084, 0.737874, 0.682534, -1.312657, 1.105786, -1.857938, -1.067394, -0.134948, -0.358176, -0.440916, -0.085567, 0.083360, -0.361560, -1.121371, -0.293974, 0.835560, 0.161648, -0.763389, 0.137067, -0.369772, -0.363351, -0.014890, 0.637033, -0.383004, -1.248646, -0.349934, -0.491336, -0.234832, -2.255174, -1.491752, -0.360289, 2.037044, 0.770860, 0.579947, 1.045691, -0.754107, 0.800637, -0.685494, -0.155525, 0.324770, -0.844874, -0.242755, 1.075303, -0.881917, -1.878024, 0.241259, 1.222231, 0.224661, 0.574867, 0.216944, 0.264035, 0.650297, 0.722769, -0.080460, -0.660219, 0.617302, 0.885114, 1.609503, 0.535712, -0.732011, 1.418941, 2.063185, 1.824984, 1.660638, 0.896825, -0.029203, 1.372220, -0.952185, -1.322015, 0.556037, 0.580473, -0.104982, 0.046964, -0.117813, -0.705521, -0.646329, -0.173694, -0.131886, -0.087059, 1.104625, -0.242121, -0.307542, 0.093469, -0.619114, -0.004495, -0.096606, 0.822098, -1.272659, 0.418360, 1.847186, 1.086269, -0.424036, 0.467723, -0.494768, 0.950519, 0.387744, -0.350703, -0.700662, -0.125557, 0.555294, 0.678339, -0.080568, 1.735546, 0.174262, 1.191062, 0.136239, -0.154005, -1.542194, -2.308535, -0.596132, 0.315933, 0.819645, 1.340121, -0.660858, 0.370789, 1.327930, -1.018899, -1.055663, -0.815302, -1.597600, -0.958477, 0.813381, -0.443054, 1.867535, -0.765669, -0.894600, 1.424273, -0.097083, -0.098563, -1.085633, -0.058550, 0.554588, -0.377396, 0.119660, 0.711123, -0.026442, -1.025043, -0.376491, 0.119248, -1.533973, 0.095374, 0.617827, 0.987291, -2.183068, 0.027208, 0.221829, -3.005217, 1.090522, -0.993239, -0.445808, 2.030088, 0.922485, -1.083660, -1.347993, -0.880972, -0.724366, -0.340507, -1.374918, 0.967600, -0.512508, -0.616746, 0.766628, 1.796489, -0.300281, -0.428366, -0.245438, 2.327469, -0.597833, 0.103056, 0.595945, -0.848635, -0.154962, 1.697285, 0.553511, -0.408970, 0.226626, 0.156645, 0.170564, 0.553376, -0.706542, 0.822720, 1.343730, -1.500968, -1.947354, 0.107539, -0.651983, 2.212274, 0.544837, -0.326758, -0.064990, 1.426269, 0.385979, -2.018229, 0.389803, -0.614532, 0.857144, 1.853422, 0.333639, -1.681254, -0.127935, 1.169867, 0.743258, 0.812147, -0.013091, -1.023290, 1.279952, 0.218842, -0.052876, 0.494333, 0.518687, 0.655237, 0.224787, 1.017037, -0.862203, -0.755503, 0.874073, 0.676425, -1.137551, -1.548401, -0.509317, 0.612588, -0.290280, -0.496163, 1.142411, 1.085601, 0.784212, 2.014164, 0.055325, -1.718364, 0.263004, 0.073543, 0.055354, 0.879918, -0.334428, 0.081678, 0.578851, -0.897087, 0.412534, -1.877735, -1.256565, -0.733116, -1.046757, 0.679224, -1.610478, 0.024093, 1.440681, -0.838338, 0.126584, -0.343775, 0.547078, 0.375123, 1.018756, -0.730928, 0.328524, -1.705947, -1.048713, 1.091643, -0.028292, -1.224218, -0.089561, 1.217982, -1.989449, 1.088431, 0.252731, -0.162801, 0.768207, -1.699195, 1.247580, -0.220136, 2.589546, 0.660711, -0.565806, -0.054828, -0.553599, 0.884829, 0.188387, -0.076428, -0.506129, -0.551856, -1.062665, 0.738606, -0.427905, -0.987469, 0.245128, -1.223548, 0.091279, -1.566992, -0.265303, -0.134684, -0.682425, -0.756457, -1.467724, 0.660941, 2.109020, 0.143626, 0.428602, 0.143336, 1.300321, 0.748056, 0.432438, 0.847719, 0.947533, 0.139024, -1.571151, -1.071211, -0.468524, 0.384259, -1.189497, 0.406632, 0.681126, -0.440703, -0.773902, -0.838168, -1.208226, -0.988567, 0.150959, -0.643446, 0.856990, 0.980113, 1.162811, 1.596140, -0.724479, 0.105303, -0.186950, 0.283084, -0.064893, 1.990701, -1.785999, -0.864643, -1.870263, 1.107410, 0.504602, -0.732027, -0.570880, -1.302793, 1.154628, -0.054597, 0.399226, -0.225317, -0.212890, -0.855952, 2.569160, 0.545390, -0.824547, 1.599204, 0.058183, -0.919645, -0.917455, 0.832989, -0.170566, 1.908245, 0.001603, 0.627770, -1.670792, -0.301800, 0.935163, -1.255118, 1.568303, 0.005433, 0.449391, -0.077267, -0.647444, -0.168594, -0.784819, 0.187211, 0.134343, -1.045220, 0.826532, -0.677676, -1.064600, -1.007895, 0.002193, -0.934753, 0.455572, 1.054577, 0.325151, -0.727604, 0.948810, -0.040443, 1.009822, -1.099845, -0.685704, -0.577473, 1.042355, 1.585365, 0.508017, 1.250269, 0.834853, -0.187163, -0.974382, -0.558890, 0.751242, 0.520268, 0.563874, -1.592970, 0.392170, 0.749258, -0.909995, -0.609332, 0.145706, -0.495422, 2.282540, -0.553180, 1.030593, -1.251119, -2.292460, -0.680006, -1.029058, -1.053776, -1.431870, 0.712730, -0.193627, 0.298942, -1.077898, -1.324547, 0.561727, 1.385163, 1.295232, -0.768190, -0.172363, 1.791400, -0.230682, -0.779946, -0.612985, -1.317359, 0.680402, -0.902588, -1.318383, 0.624819, -0.360594, -1.340570, -0.789035, -0.505029, 0.517947, -1.639783, -0.098554, 0.615573, 0.362778, 1.149147, 0.900741, -0.108052, 1.909900, -0.094781, 1.451123, -1.404963, 0.405052, -3.160711, -0.217405, -0.236148, 0.559246, -0.330710, 0.530316, -0.571844, 0.323980, 0.478754, -0.385131, 1.908600, -0.399630, -0.617568, -0.445279, -0.065905, -1.197955, -1.117299, 0.422909, 0.249833, -2.023288, -0.905316, 1.100531, -0.474970, 0.398178, -0.009706, -0.923664, -1.106093, -2.069996, 0.094279, 0.199192, -1.646251, 0.115020, -1.870811, -0.610377, -0.101928, -1.591876, 1.248467, -0.967401, -0.958078, -0.983985, -0.525775, -0.238477, 0.073324, 0.690220, -1.192351, 0.706804, -1.027691, 0.445164, 0.445526, 0.507654, 0.458278, 1.214694, -0.991027, 1.694324, -1.962804, 1.587605, 0.267685, 0.597028, 1.384048, -1.207393, 1.402665, -1.002188, 0.542966, 0.205386, 0.161106, -0.490303, 1.384367, -1.525820, -0.147554, -0.579420, 0.132134, 0.437392, 1.344328, -1.230314, -0.423900, -1.136409, -0.975552, 1.292045, 0.059140, 0.513426, 0.204706, 0.137762, 0.752766, -0.074565, -0.323963, 0.981965, -1.418644, -1.048476, 1.083746, 1.441313, 1.109894, 0.686279, 1.962865, -0.585661, 0.404725, 0.501347, -0.741332, -1.222185, 0.062794, -0.990662, -1.739711, -0.393303, 0.218227, 0.775324, -0.120361, -0.379616, -0.023608, -0.567983, 1.541468, -1.188268, -0.009361, 1.022319, 0.100692, -0.764004, -1.399661, -0.101892, -1.273206, 0.306998, -0.100859, 0.968483, 1.012353, -1.814927, 1.443665, 0.329604, 0.226099, 0.420079, 2.182723, -0.706210, -1.743484, -0.223990, -0.981296, -1.344207, 0.026827, 1.165722, 0.080950, -1.436192, -0.727950, -0.335521, 0.016692, -1.943586, 1.010619, 0.863864, 0.555188, -1.724232, 1.179763, -0.652402, -1.187410, -1.128296, 0.034642, -0.470956, 0.579688, 1.028719, -0.029948, -2.009375, 0.160249, 0.183795, 1.233182, 1.465205, -0.782515, -1.590237, -0.384087, -0.240510, 0.091320, -2.005267, 0.477657, 0.151191, 0.108872, 1.003721, 0.339393, 1.325678, 0.393562, 0.088816, -0.309190, 1.301266, -1.186674, -0.019479, -0.799372, -0.677829, -0.390775, -0.247341, 0.382879, 0.638548, -0.637109, 0.594272, 1.228869, 1.298967, -1.971720, 0.344073, -0.096511, -0.454820, 0.920726, -0.285646, -0.051787, 0.050206, 0.262606, -0.152623, -1.407591, 0.733645, -0.491175, -1.989340, 1.805234, -0.303618, -0.425677, -0.078338, -0.177448, 1.035850, -0.380796, -0.909890, -0.026420, 0.506166, -0.346338, -0.110518, -0.353320, -0.851201, 1.400690, 1.005261, -1.665477, 0.541884, -0.815251, -1.433695, -0.054924, -1.830152, 0.618322, -0.024651, 0.556516, -0.083552, -0.099854, -0.531426, -0.592710, -0.924229, 1.361632, -1.784960, 0.541107, 1.805802, -1.070639, 0.324827, -0.538632, 1.372235, 0.399999, -2.064262, -1.449957, -0.770128, 0.344969, 0.359928, -0.164216, -1.695213, -1.053622, -0.406078, -1.306273, 0.862667, 0.016658, -0.522787, 0.670778, 2.279625, -0.249720, 0.159726, 0.094341, 1.340139, 0.734755, 0.019777, 0.170436, -0.502489, -0.723570, 0.899053, -1.660418, 0.618812, 0.026541, -1.285614, 1.535885, -0.316763, -2.671963, -1.499371, -2.017975, -0.054807, 0.063276, 1.133049, 0.382705, 0.581800, -0.365803, -1.150293, -0.891006, 0.575040, -0.572197, 0.694885, -0.471478, -1.217547, 1.155872, 0.807433, 0.283096, 0.465342, -0.278141, 1.816866, 0.345605, 0.411659, 0.593769, -0.324959, -1.703209, 0.036549, -0.434589, -0.863085, -0.645012, 0.020649, -0.402335, 0.328794, -0.854237, -1.490313, 0.519622, 0.260884, -0.622462, 2.225539, -1.734284, -0.708441, 0.891565, -0.320693, -1.241685, 0.922951, -0.616811, 1.213397, 0.883570, -0.577842, -0.254065, -0.660441, 0.416066, 1.458002, 0.262960, 1.419493, -0.733050, -1.214074, 0.471576, 0.604537, -0.610646, -0.568204, 0.895381, -0.224940, 1.307829, -1.066282, -0.278069, -1.010297, -0.085463, -1.070483, -2.524631, -1.657709, -0.328665, 0.196075, -1.536689, -0.269993, -1.468156, 1.200014, 1.317859, 0.496922, -0.821136, -0.750105, 0.734596, 1.882009, 0.258236, -0.506153, 0.805853, -1.016002, 0.072952, 1.331897, 0.914816, -0.782357, 1.472884, 0.090339, -0.145303, -0.811489, 0.532729, -0.032703, 0.450639, 1.463354, -1.675764, 0.561146, 1.615618, -1.071429, -0.794066, 0.541196, -1.009295, -0.953484, -0.319365, 1.330206, -0.263253, -0.106828, -0.085058, -0.342887, 0.204592, -0.961015, -1.119459, -0.403068, -0.781531, 0.350601, -0.563330, -0.333154, -1.629797, -1.377713, -2.357569, 0.616803, -0.863318, -0.279692, -0.138355, 0.489389, -2.114235, -0.566127, -1.161819, -1.795574, 0.332270, -1.024892, 0.190045, -0.714724, 0.981877, -1.083411, 1.132376, 0.779131, -0.701695, -0.457713, -0.580509, -0.257548, 0.752325, 0.356168, 0.341560, -0.915911, -0.025256, 0.119849, -1.390833, 1.626216, -1.821793, -0.610723, 0.219096, 0.846793, -0.442989, -0.173498, -1.037215, -1.003763, 0.815575, 0.990365, -1.440434, -1.308487, -0.299982, 0.146772, 1.355022, 0.459104, 0.650038, 0.437847, -1.841343, 0.806706, 0.404297, 1.577582, -1.052571, -0.204794, -1.621402, -0.039549, 0.528580, 1.951219, 0.582628, 0.328794, 0.096244, -0.978636, -0.490978, -0.655558, 0.902283, -0.156434, -1.272759, -1.105615, 0.541369, -0.494170, 0.661613, -1.141477, -0.250881, 0.775980, 0.377850, -1.538527, 0.568645, 0.422027, 0.142389, -1.120289, -0.949990, -0.975085, 0.012336, 0.080454, -0.798149, -0.140873, -1.567917, -1.678914, -1.199589, -0.240739, -1.167511, 0.474352, -0.615202, 0.432346, -0.431418, -0.973709, 0.128807, -2.114420, -0.752288, 1.514651, 1.201147, 1.381283, 1.833200, -0.684496, -0.644019, -0.032498, -1.739330, 0.604950, -0.668583, 0.731599, 0.935346, 2.529008, -0.080260, -1.535189, -1.623080, 0.472362, 0.112937, 0.034706, 0.108317, 1.351220, 0.384778, 0.270590, 0.004455, -0.060803, 0.962521, 1.806219, -0.382347, 1.010272, 0.610690, 0.321843, 1.995162, -0.925456, -1.426959, -0.503160, -0.859878, 0.997869, 0.180420, 0.022802, -0.543608, -0.395936, 0.384772, 0.731211, 0.643875, -1.024770, 1.055487, -0.209147, 0.483721, -1.921153, -0.330497, 1.164398, 0.841495, 1.261328, 0.811130, 0.465430, -0.060005, -0.599450, 0.396830, -0.042464, 1.646814, -0.393928, -0.663650, -0.203225, 1.342105, -1.615342, -0.955749, 0.132427, 0.349548, -0.172642, -0.381730, -0.674794, 0.004365, 0.885937, -0.744909, -1.050710, 0.114999, -0.017450, -0.140872, 0.368162, -1.381751, 2.223168, -1.247892, 1.309157, -0.992121, -0.406124, 0.600386, -0.523733, -1.714635, 0.957007, -0.521903, -0.381957, -1.151117, -1.468466, 1.366095, 1.416929, -0.569795, -0.189906, -0.528922, 0.140109, 0.104641, -1.388965, -0.374247, -1.695187, 1.141310, -0.354672, 0.367612, -0.681574, 0.742611, 2.481385, 0.117414, 0.639853, -1.632688, -0.802826, -1.183616, 0.162699, 1.067759, -0.219933, -0.467832, 1.759198, 1.095757, 1.927000, -0.106438, -2.846754, -0.373539, -1.139454, -0.983262, -0.404448, 0.405138, 0.488139, -0.594759, -0.794701, 0.825140, -1.023294, 0.586792, 0.533998, 1.212344, -0.001632, 0.077263, 0.811187, 0.409740, -1.464570, 0.079236, 0.672090, 1.719249, 0.727476, 1.228663, -1.702258, -0.287894, -0.626606, -0.522534, 0.097011, -1.508073, 0.061058, -0.259103, 0.417731, 1.522940, 0.910828, -1.885467, -0.016602, 1.623869, -0.295934, -0.371918, 1.205788, 1.157457, 0.007835, -0.599605, 1.144053, 0.316588, 0.369770, 1.872153, -0.509227, 1.261109, 0.572774, -2.557551, 0.638096, -0.217323, 0.145953, -1.567689, 0.119539, 1.160691, 1.642228, -2.761168, 0.829417, 0.250574, -0.284405, -1.078680, -0.087639, -1.283276, -0.880838, -1.095592, 0.292243, -0.113082, -0.120326, 0.152604, 1.391578, 1.480961, 0.689682, 0.384452, -0.976138, -1.013940, -2.097892, -0.689014, 1.334035, 0.802433, -0.775227, -0.331985, -0.134870, 0.386745, 0.926449, 1.966517, 0.002414, 0.225337, 1.830822, 0.087287, -0.191044, -1.228650, -1.103200, 0.535576, 0.448832, -0.882940, -1.389402, -0.474648, -2.912386, -0.321580, 1.491610, -0.027717, 0.322831, -0.197970, 1.970081, 0.647669, -2.086119, -0.719397, -2.231312, 0.280339, -0.064404, 1.711110, -0.193742, 0.236382, 0.896318, 1.831130, -1.704295, 1.253539, 1.391618, 0.713065, -0.850322, 1.207138, 0.981926, 0.464186, 1.251897, 1.556553, 0.524986, 1.014675, 0.055805, -0.235241, 0.076670, 0.538526, 1.730335, -0.587256, -0.473110, -0.247164, -1.197966, -0.035639, 0.155089, 0.593809, -0.185745, 0.323978, 0.018321, 1.346498, 0.707829, -1.064135, -0.775178, -1.528107, 0.203195, 0.183634, -0.930529, 0.398016, 0.015713, 0.017203, 1.094427, 0.154613, 0.986109, -0.668638, 0.045320, 0.624950, 1.218392, -0.590207, 0.039290, -0.939700, 0.347518, -1.080879, 1.109423, 0.459649, 0.808434, 0.860789, -0.147751, -0.549967, -1.264631, -0.115886, -1.017183, 0.071367, -1.792004, -0.873864, 0.356028, -0.335641, -1.232728, -1.179856, 0.662938, -0.380446, 0.972452, -1.985803, 0.596918, -1.288895, -2.476754, 0.367720, 1.158958, -0.287308, 1.612499, -0.639899, -0.992828, -1.023186, -1.277189, 0.228138, 0.430396, 0.708025, 0.857596, 0.401366, 0.385236, 1.049906, -0.728567, 0.602123, 1.514122, 1.434843, -0.691096, 0.505747, 0.700124, -1.047528, -1.404575, -1.183536, -2.092552, 1.644240, -1.167867, -0.720097, 1.379291, 0.192405, 0.245716, 0.701627, -1.780863, 0.176897, 1.108580, 0.837794, -0.717489, 0.014237, 1.514900, 0.832846, -0.058489, -0.006861, -0.957518, 0.630517, -0.896191, 0.183444, -0.537597, -0.048099, -0.163294, 0.353119, -0.480711, -0.476088, 0.077457, -0.921198, 1.196173, -0.161084, -1.282600, -0.011753, -0.202328, 0.111695, 0.334534, 0.529977, -0.176867, 0.296759, -0.031366, 0.867123, -1.197649, -0.797153, 1.227730, -1.936863, -0.475364, 1.146740, 1.550781, -0.188952, -0.118396, -0.117279, -0.568768, -0.056729, 1.434670, -1.344079, -0.012801, -0.864768, 0.263012, -2.174557, -0.079170, 0.198756, 1.080901, 0.213995, -0.138920, -0.184450, 0.736849, -1.015848, 0.591306, -0.868033, 0.175184, -1.353097, -1.088848, -0.391434, -0.238016, -0.762331, 0.096874, 0.618679, 0.615525, 0.474266, -1.956552, -0.886348, 0.065288, -1.279955, -0.396800, -0.054905, -2.140511, 0.720317, 0.111989, -0.188230, -0.904910, -0.699197, -0.753609, -1.370695, 0.522442, -1.144708, -0.824139, 0.578492, 0.032596, 1.234211, -0.140526, -1.204944, 0.414282, 0.672143, 1.386806, -1.174552, 0.260907, -0.101144, -0.688084, 0.334148, 0.658840, 1.339427, 0.866108, 0.251280, 0.849447, -0.296863, 0.813822, 0.592182, 0.666626, -0.417604, -0.704341, 1.805481, -1.085395, -1.471843, -0.526046, -0.798585, 0.461616, 0.455374, 0.198808, 0.643054, 0.848528, -1.025526, 0.251955, -0.684070, 0.987381, 0.010578, -0.552161, 0.433957, -0.049865, -0.379219, -1.249383, 1.708083, 0.379515, -0.785636, -0.829067, 0.712277, -1.557817, -0.938206, 0.702534, 0.575845, 1.052007, 0.765936, -2.690529, -1.018806, 0.973163, 3.894614, -0.141342, -0.212867, -0.998326, 0.434509, -1.221487, 1.642527, 0.505829, 0.527765, -0.139643, -0.485151, 0.571778, -0.990793, -0.776317, 1.889388, -1.816237, 0.467499, -1.211371, -2.260401, 0.889239, -0.600719, 1.246642, -1.670895, 1.030508, -0.120777, -0.910964, 0.101612, -0.078331, -1.618454, 0.660884, -0.001900, 0.029511, -1.436794, -0.871114, 0.107618, 1.334153, -0.084568, 0.108842, -0.409169, -1.805117, 0.198104, 0.001397, -0.151294, 0.652565, -1.538362, -0.244384, 0.518996, -1.674269, -1.726131, 1.548832, -0.212926, -0.494182, -2.498331, -0.789039, 0.615790, -1.651339, -0.992343, -1.785200, 0.087360, 0.932293, 0.696440, -2.408025, 0.947396, 0.075647, 0.333008, 0.124958, 0.141207, -1.117673, -1.637799, -1.466103, -1.280784, 0.944840, 1.777779, -1.163379, -2.880063, -0.994002, 0.141081, 0.020690, 0.484998, -0.466470, 0.095529, -1.180752, 1.111776, -0.517998, -1.325843, 1.735500, 1.548226, 0.734140, 0.983640, 0.709410, -1.586697, -0.354250, -0.886171, 0.968904, -0.064094, 0.926899, 0.880921, 1.188696, -0.207731, 0.049663, 0.001441, -1.286147, -0.098486, -1.176948, -1.014778, 0.787811, 0.806721, 1.149112, -0.071881, 1.469494, -0.535219, -1.081428, 1.659162, 0.475277, -0.088917, -0.190097, -0.213815, -2.845499, -1.058624, -0.097921, -0.076876, 1.143328, -0.266844, -0.438507, -0.237990, 1.942492, -0.883034, 0.129053, 0.948352, 0.028201, -0.830583, 0.816437, 2.073250, -0.101159, 0.851635, -0.541708, -1.613257, 0.287060, -0.805527, 0.541621, -2.505954, 2.066478, -0.667170, -0.183563, -1.245635, 1.305435, -0.893380, 1.530889, -0.682172, -0.610702, -0.313108, 1.001325, -1.068051, -0.658278, -0.119745, 0.785136, -0.169412, -2.839016, 0.780181, 0.098738, 0.045568, 0.198376, -0.309532, -0.135328, -1.202397, 0.030464, -0.922725, -0.047256, -0.486867, -0.472834, 0.520375, -0.608999, 1.027450, 0.056838, -0.386279, 1.171524, -1.253464, 0.357801, 2.306967, 0.046679, -1.295139, -0.111503, -0.720255, -0.486340, -0.702307, 0.826913, 0.317037, 1.154962, 0.479846, -0.901476, -1.106205, 1.195696, -0.304677, 1.885280, -0.197662, 0.184613, 0.755152, 1.122081, 0.763658, 1.124159, -0.798773, 0.714035, 1.183381, 1.764612, -0.484801, 1.711390, 0.852786, -0.798011, 1.922672, -0.174849, -2.038882, 1.979155, 0.006627, 0.284280, -0.488100, 0.211718, 0.213431, -0.075562, 0.602582, -0.076912, 1.226605, 0.102534, -1.087868, 0.622465, 0.362372, -0.594104, 0.752425, -0.316477, 0.256494, -1.782364, -0.602093, 1.136649, -0.009733, 1.606517, -0.463423, 2.587354, 0.294361, 0.586736, 0.822519, 0.262047, 0.314503, 0.007418, -0.351994, -0.505615, 0.196448, 1.035212, 0.369256, -1.052827, 2.105798, 0.590610, 1.458264, -0.889388, 0.788536, 0.300303, -0.490584, 0.777276, 0.469276, 1.157301, -1.181388, 0.537685, -1.172405, 0.048209, -0.203005, -0.366984, 0.869575, -2.246902, 1.876398, 0.729724, 0.518105, -0.711057, -0.877547, 0.374919, -0.744996, -0.385429, -1.044250, -0.603253, -0.397732, -1.148584, -0.559165, 0.630078, -0.083826, 0.101190, 1.158692, 0.884957, 1.146484, 0.305474, 0.672290, 1.127642, -1.219168, -0.732483, 0.583748, -0.594153, 0.557610, 1.322005, -0.759000, -1.780601, 0.195723, -1.692121, -0.291109, -0.694366, 0.205620, 0.773941, 0.543874, 0.232398, 0.722553, -0.320214, 0.055977, -1.867450, 0.440543, 0.545316, -0.360690, 0.939106, 1.926783, -0.458366, 0.258509, -0.718722, 0.262705, 0.160377, -0.503539, -0.469412, -1.173705, -0.644112, -0.482584, -1.015266, 0.536556, -0.749363, -1.061847, 0.516571, -0.823574, 0.581866, -1.664287, -1.022961, -0.521343, 0.776000, -0.501781, 0.828502, 1.419262, 1.959566, 0.963908, -0.116325, -0.939014, 0.029349, 2.198124, 0.877653, 1.002720, 2.497785, -0.268468, 0.287738, -0.329702, 0.580366, -0.803510, -0.988516, 0.131645, -0.897182, -0.275945, 0.680384, 0.735429, 1.126706, 0.176773, 0.055237, 1.057445, -0.178276, 0.073145, 0.472411, -0.685040, -0.087068, -0.118235, -0.782402, 0.283651, -2.162942, 0.551814, 0.803555, 0.609387, 1.664766, 0.387063, 0.518703, -0.298149, 0.135753, 1.455144, -0.764563, 1.029194, -0.840962, -0.164008, 0.191356, 0.648072, 0.812507, 1.492637, 1.504805, 0.661302, 0.865894, -0.309037, -0.112874, -0.073699, -0.562879, 0.251284, -0.223203, 0.344566, -0.567345, -0.128516, 0.264010, -0.740563}, + { 0.686786, -0.412827, -0.954384, -0.250036, -1.279124, -0.388454, 0.772480, 0.265782, 0.239731, -0.320993, -0.236322, -0.213086, 0.483063, -0.963978, -0.512312, -1.003315, -0.715501, -0.460491, -1.350278, 0.292528, 0.761338, -2.479331, -0.365349, 1.054416, 0.636595, -1.082940, 0.138221, 0.633486, 0.956523, -0.367531, 0.190268, 0.227681, 1.191601, 0.235072, 0.462468, 0.577388, -0.374628, -1.099212, -0.855962, -0.272587, 0.200696, 0.546901, -0.517906, -0.684247, -0.410653, -1.310561, 0.013227, -1.526165, -0.188351, -1.117439, -0.434290, -0.651184, -0.507773, -0.091448, 1.411584, -1.198217, 0.795058, -1.118065, 0.069142, 0.909652, -1.140848, 0.282164, -1.091999, -1.669020, 0.019183, 0.874124, 0.223936, -1.417213, 0.303794, 0.084386, 0.944091, -1.135258, -0.156557, -1.306080, -1.545901, 0.760520, -2.129505, -0.680492, -0.379109, -1.060158, -1.884403, 0.970512, 1.085505, 1.550855, -1.069825, 0.829637, -0.848534, -0.885269, -2.420554, 0.418745, -1.232314, -0.856177, -0.500907, -0.020048, 1.892329, 0.868363, 1.321794, 0.129578, 0.770199, -0.730568, -2.257548, -0.293321, 1.740305, -0.370603, 0.350315, 0.161306, 0.204819, 1.780152, -2.041967, 0.321083, 2.138391, -0.504547, 0.171929, -0.001936, 1.164255, 1.210264, -0.418027, 1.150411, 0.259347, 2.006141, 0.276597, -0.079845, 1.802190, -0.177237, 1.440719, -0.165683, -0.115821, 0.360355, -1.609864, -0.428472, 0.256303, 0.567704, 0.089992, 0.876491, 0.809326, 0.707831, 0.635360, -0.986334, -1.337440, -0.331593, 1.338936, 1.320294, 0.865981, -0.872283, -0.162961, -1.218794, 1.324572, -0.073147, 1.053123, 2.220264, 0.567374, 0.193227, 1.079667, 0.349257, 0.894225, -1.426330, -0.763945, -1.976367, 1.339014, -0.582789, -0.626101, -1.051183, -0.666207, -0.801345, -1.051876, -0.116021, -0.329459, -0.442221, -0.089336, -0.984451, 0.993044, 0.013954, -0.035889, -0.626623, -1.307395, -0.431291, -0.843793, 1.016768, 1.678853, -0.000837, -0.335257, -0.390500, 0.705424, 0.566030, -0.302734, -0.327476, 0.848161, -0.945110, 0.808173, 0.427212, 0.883622, -1.986534, -0.787966, -0.063913, 1.011009, 0.156580, 0.846975, -0.210390, 0.441976, -1.721662, -1.546866, 0.290919, 0.445625, -0.313846, -1.069270, -1.714673, -1.980601, 0.009956, 0.789273, 0.483036, -0.823980, 1.208253, -0.964687, -0.072437, 1.668113, 0.743317, -0.271165, 0.168597, -0.007601, 0.740105, -0.504425, 1.276407, 1.038000, -0.704446, -0.144954, -1.012597, 0.087733, -0.230432, 1.409416, -1.760558, 0.283564, 0.158769, -1.019383, -0.129060, -0.239653, 1.723891, -3.909227, -1.239985, 0.014286, -0.342466, 0.376859, 0.798029, -0.993885, 0.271538, -0.394079, 1.854243, -0.610577, 0.298628, 0.162271, -0.791895, 1.019610, -1.524958, -1.039182, -0.845453, 0.453652, 0.561561, 0.640124, -0.052841, 0.374167, -0.241185, 1.117634, -0.173280, -0.137072, 0.552920, -0.552898, -1.432745, 0.511922, 1.363761, 0.550298, -0.763824, -1.243657, 0.656262, -0.740492, -0.851194, 0.657613, 1.222592, 2.190613, 0.753660, -0.142028, 0.950250, 0.311732, -0.544070, -0.454233, -0.426882, 1.224790, -1.297737, 0.788370, 0.454713, -0.357497, -0.467719, 0.203628, -0.255674, 1.075629, 0.008185, -1.093055, -0.272300, -0.416621, -0.422433, 0.222307, 2.056519, 0.674456, -0.130661, 0.712831, 1.779856, 0.709882, -2.260879, 1.420516, 0.373098, 0.540918, 1.067045, -0.526540, 2.264968, -0.834754, -2.032719, -1.506854, -1.534465, -0.483309, 0.456616, -0.105632, -1.294574, 1.209211, 0.528366, 0.564573, 1.516921, -0.336675, 0.384380, 0.755788, 0.885710, -1.328422, -0.347906, -0.373588, 1.385492, -0.997038, -0.753151, -0.101377, 0.754270, -0.157166, 1.728030, -1.003422, -0.242540, -2.582107, 0.281566, 1.718961, 0.105754, 0.567749, -0.458978, 0.441752, -2.504363, 0.747901, 0.443635, -0.986823, 0.543094, 0.758128, 0.276799, -0.838422, -0.254628, 0.154302, 0.023075, -0.620657, -0.531672, -1.173659, 1.179663, -0.183430, -0.446886, -0.061832, 0.705365, -0.773264, 0.088834, 0.509560, 0.919250, 0.962761, 0.049566, -0.535423, -0.072359, 0.533825, -0.355980, 0.166492, -0.550328, -0.832446, 0.678626, -1.229817, -1.259421, 0.421155, 0.630249, -0.800549, -0.808628, -0.966701, 0.202434, 0.271819, -0.332733, -0.414194, -0.663516, -1.349441, 1.137386, -0.742321, -0.914946, 0.413743, 0.269309, -0.139922, -0.115573, -1.027439, 0.016030, -0.590604, 0.311563, -0.476149, 0.020791, -1.659814, 0.400162, 1.366274, 0.521312, 1.199674, 0.272051, -0.244506, -1.702876, 0.519922, -0.251876, -3.415838, -0.123890, 0.490404, -1.402815, 0.919506, 0.289372, -0.532127, -0.258929, -0.070306, 0.943063, -0.808710, -2.718118, 0.153334, 0.564909, 1.000353, -0.227652, 0.631858, -0.947609, 0.895864, -1.980478, 0.184859, 1.177037, 0.235448, -2.432657, 0.619778, 0.698334, -0.212454, -0.515430, -0.172867, 1.027052, 0.977117, -0.205310, 0.507572, -0.201579, 1.140437, 0.317274, 0.370059, -0.119170, -0.959528, 0.390766, 0.539213, 1.710125, 1.329072, -0.370380, -0.468552, -1.006907, -0.696435, 0.410752, 1.709874, -1.336538, -0.737561, -0.657240, 0.606588, -0.705513, 0.507796, -0.916452, 1.412139, -1.740738, -0.970704, -0.169924, -0.599638, 0.771926, 0.790928, 0.790850, 0.113795, -0.283163, -1.028869, 0.430322, 0.019492, 0.504161, -0.621251, -1.716833, 1.359194, 0.559757, -1.119485, -0.154378, 1.299095, 2.195402, 1.545555, 0.369028, 0.903856, 1.088053, -0.970528, -0.542894, 0.663104, -0.101616, 1.339739, 0.354353, 0.880610, -0.713797, -1.697795, -0.097082, 0.743069, 0.465664, 0.278032, -0.799819, 0.890183, 1.288068, -1.110344, 1.255000, -1.001724, 1.127172, -0.716119, -0.992804, -0.162644, 1.304924, -0.710251, -0.582232, 1.376230, 0.431043, -1.098114, 0.037602, -1.773925, 0.785106, -1.060948, -0.320657, -0.724032, -1.467829, 2.076141, -0.536129, -0.415248, -0.627632, 1.345590, 0.610116, 0.515450, 0.051921, 1.018772, 1.585701, -1.408608, 1.159209, 0.175208, 0.318945, -1.725426, 0.125371, 0.318990, 0.462319, -0.208388, -0.988782, 0.930157, 0.919493, 0.292909, -0.389948, -0.102549, -0.390623, -2.126758, -1.574990, -0.235185, -0.208250, -0.942776, 0.869169, 2.481962, -0.035201, -0.304398, 1.126150, 0.141366, 0.315819, 0.704915, 0.104685, 0.105298, 0.098470, 0.955901, -0.320000, 0.620367, -0.000443, 0.616779, -0.264065, -0.451803, 0.714067, 1.659721, 0.822508, 0.562821, -0.090356, -1.948032, 1.066526, 0.129443, -0.544590, -0.320278, 0.809754, -2.441317, -0.719177, -0.919938, -1.384614, 0.241870, -0.694270, -0.170047, 0.206789, 0.905787, 1.251660, -0.624036, 0.964863, 0.224957, -0.307109, -0.161758, 1.728824, -0.764930, 1.011986, 0.400483, 0.263698, -0.485156, 0.540260, 0.098768, -0.846968, -0.475801, 0.503877, -1.005066, -1.509396, 0.439936, -1.346023, 0.193136, -0.151591, 1.484433, -0.008946, 0.499975, 1.317144, 1.196448, 0.652226, 0.597085, 0.481827, -0.925874, 1.096406, -1.180965, -0.314917, -0.270137, -0.934176, -0.782880, -0.231976, -1.231468, -1.270191, 0.863512, 0.065505, -0.842318, 0.226728, 0.205516, -0.260108, 0.714896, 0.649742, 1.094028, 0.023332, -1.544193, 0.562718, -0.275914, -1.453496, 1.526585, -2.339322, -0.254268, -0.386339, 0.627062, 0.388599, -0.563492, -1.261876, 0.520191, -0.162895, 0.674523, -1.395587, -0.452683, 0.865333, 2.106666, 0.462597, -0.640847, -0.678950, -0.698807, 0.135454, 0.619530, -0.975410, 0.799226, 0.862220, -0.065348, -0.095913, 0.316879, 0.518147, -0.366385, 0.850906, 0.088455, 0.417005, 1.256919, -0.877705, -0.145089, 0.186268, 0.212057, -0.549067, 0.376268, -0.965200, 0.832861, -0.117663, -0.336138, -1.705418, 1.285777, 2.040204, 0.217795, -1.043740, -1.497164, -0.616132, -0.217728, -0.868704, -1.033684, 0.482896, 0.441117, 1.330352, 1.082108, -0.076171, -0.038633, -0.743616, -0.774865, 0.212039, -0.695159, -0.575788, -1.359800, -0.630690, -0.521749, -1.137597, 0.800093, 0.285926, -0.512262, 1.054841, -0.722327, 1.090069, 1.612239, 0.299381, -1.331767, 0.238730, 0.021873, -1.443125, 0.041261, -0.204166, 1.149507, 0.194036, 0.698985, 0.363813, -1.576851, -0.807296, 0.696471, 0.241355, 1.124999, -0.743816, -1.344677, -1.230981, 0.941631, -0.305382, -0.443746, -0.374589, -0.053789, 0.488511, -0.409527, -0.241075, -1.027440, -0.024958, -0.410471, -1.608270, 1.693856, -0.158322, -1.077427, -0.309164, 0.922232, -0.308500, 0.997683, -1.328948, -1.737507, -0.384962, 0.653399, -1.463339, 0.592553, -0.740229, 0.418823, -0.487712, -0.191475, 0.038117, -0.799629, -1.302999, -0.175122, -1.704433, -0.012633, 0.212992, -1.363732, 1.203866, 1.435550, -0.318578, -1.213288, 0.912331, -1.773704, 1.330481, 0.314178, -0.894960, -0.815668, 0.859242, -0.799324, -0.913832, 0.605599, 1.674654, 0.366161, 0.000371, 1.778550, -0.667728, -0.480150, 0.413115, 0.942118, -2.385074, -0.332675, 0.139496, -0.053274, -0.398646, -2.203224, 1.022387, 0.707606, 0.461915, 1.584127, -0.536401, 0.309274, -0.685028, -1.776032, -0.213263, -1.847616, 1.542393, -1.295443, -1.393740, -1.276267, -0.046056, 0.296055, -0.946070, 0.143859, -0.134447, 0.557150, -0.851634, 0.987143, 3.034742, 1.179105, -0.840504, 0.758509, -0.853593, -1.303635, -1.527710, -0.425551, -0.518229, -0.408586, 0.657220, -1.793430, -0.155493, 0.340596, -1.117213, 0.766365, -0.615975, -0.308872, 0.904717, -0.708467, 0.496372, 0.232802, -0.555202, -1.007697, 0.336694, -0.839170, -1.200312, 0.355497, -1.055986, -0.367983, -1.803417, -0.885488, 1.251403, -0.270784, 2.308097, 1.079320, -0.760809, 0.078073, -1.058863, -1.019223, 0.312140, 1.264329, -0.094438, -0.669735, -2.188102, 1.082121, -0.019285, -0.686093, -0.461736, -0.340094, 0.877557, -1.095224, 1.099599, 0.561499, -0.102243, 0.125279, 0.798579, 0.335828, 0.041117, -0.443373, 1.078746, 0.938751, 0.227797, -0.614971, 1.235823, -0.057603, -0.137368, 0.473112, 1.191525, -0.308574, 0.162644, 1.329305, 2.044406, -0.247064, 0.584813, -0.590792, -0.139225, 0.918273, 0.766051, 0.722334, -0.524138, -1.700157, 1.659801, -1.543023, -0.358191, -0.628182, -0.511199, 0.862120, 1.053664, -0.755867, 0.376711, 0.183212, -0.765554, 0.961003, -0.870851, 1.764497, -0.290330, -0.047319, 0.007996, 0.486137, 1.393689, 0.324664, 0.374559, -2.226274, 0.561006, -0.450550, -0.375078, 1.095775, 1.105933, 0.156463, 0.393381, -0.125902, -0.508615, -1.187574, 1.635680, -0.931458, 1.939179, 0.527625, -0.098392, -1.436941, 0.855899, 1.395831, -0.593924, -2.774503, -1.404459, 0.511385, 0.998486, 0.180451, 0.362988, 0.454479, 1.598041, -1.196180, 1.071723, 0.299573, 1.856691, -0.196294, -0.228442, 0.538361, -1.626858, 1.200136, -0.148306, -1.102481, -0.235780, -0.297007, -1.166779, -1.179737, -0.967552, -0.993188, 0.920322, -0.155835, -0.425178, -1.199717, 0.539237, -0.222480, -2.277026, 0.656393, -0.362945, 0.087165, 0.387593, -0.492040, -0.410881, 0.213712, 0.309292, 0.685655, -0.333987, -1.880259, -0.604153, 1.240811, -0.249888, 1.905823, 0.103252, -0.147296, -0.390929, 0.082614, 0.409527, 1.635633, -1.906732, 0.310449, 1.177089, 0.098295, -1.950454, 0.176045, -1.834756, -1.159774, 0.366167, 0.715917, 1.104433, -1.160204, -1.352480, 0.651027, 1.491238, -0.317499, -0.621631, 0.203636, -0.424024, 0.190574, -0.803283, 0.983866, -0.953901, 1.660653, 0.143466, 1.063439, -0.939690, 0.723419, -0.387405, 0.562349, 0.003468, -0.040658, -0.580987, -0.527315, 0.767364, 0.096242, 2.815122, -0.998191, -1.139517, 0.498806, -1.421889, -0.387422, 0.828329, 0.813944, 1.146248, -3.228796, -2.094913, -1.050164, -0.102330, -0.224840, 1.780088, -0.896367, -0.887257, -0.770723, -1.796928, 0.631518, 0.178172, -0.662787, 1.282492, 1.930620, 0.344506, -1.731976, 0.944697, -0.477242, 1.441443, -0.694415, 0.392576, 0.199819, -0.060354, 0.720098, 0.729184, -0.361049, 0.722444, -1.086976, 1.490175, -0.662072, -0.095159, -1.506942, 0.277037, -0.747569, -0.881556, -0.551217, -0.931725, -0.009303, 0.673059, -1.078026, 1.703707, -1.050703, -1.027260, -0.107057, -1.340918, -0.973599, 0.285315, -1.935603, 0.198716, 1.192959, -0.945462, 0.416709, -0.421329, 1.464060, -0.692199, -0.277998, 1.180237, -2.403859, 0.665797, -2.041831, -0.879629, -0.745589, -0.279683, -0.786548, 0.594801, 0.459740, -1.148127, 1.332565, 0.799983, 0.154175, -0.594357, 0.927541, 0.817094, 0.012064, 1.550141, 0.338382, -0.928847, -0.809447, 1.201927, -0.218417, 0.389575, -1.073272, 1.782594, 0.790329, 2.690952, -0.854106, 0.605478, 0.397799, -0.292042, -0.545598, -1.796967, -0.033556, 1.271666, -1.494714, 0.516119, 0.215435, 0.283051, -0.026076, -0.845024, -0.529101, -0.719377, 0.533285, 0.513572, -1.270989, 1.749668, -0.610834, -0.521547, -1.498350, -2.216109, -1.674349, 0.602783, 0.085579, 1.919086, -1.049912, -1.840025, 0.742700, -2.070721, 1.616043, -1.205884, -0.499156, -0.680976, -0.078202, -0.552070, 0.760756, 2.213746, -1.204720, -0.139873, -0.454880, -1.731420, -1.926642, -0.568161, 0.216731, -0.340966, -1.555043, -1.333619, -1.227993, 0.479945, -2.477036, -0.039328, 0.155679, -1.630847, 0.747141, -2.849936, -0.282815, -1.446722, 0.270661, 0.539898, -0.145862, 0.699798, -0.626077, 0.437131, 1.885929, -0.658615, 0.459139, 1.084074, 1.658282, 0.753585, -0.990620, -0.613555, -0.061971, -0.397148, -0.197585, 0.245847, -1.653196, 0.816565, -1.008766, -0.760112, -0.917557, 2.789919, -0.195072, 1.892358, -1.432319, 1.541289, -0.079494, 0.985417, 1.910793, -1.697142, -0.180906, -0.352929, -2.099798, -0.367024, -0.908286, -0.272068, -1.437038, 0.258898, 0.636025, -0.269686, 0.056963, -1.607519, 0.041652, -2.093534, 0.905654, -1.398328, -0.715254, 1.272977, 0.710819, 0.687911, 0.001742, -0.221029, 0.209738, 1.141345, 1.988818, -0.668183, 0.193601, -0.849359, -1.522522, 1.050579, -1.128853, -0.800873, 0.600003, 0.665269, -0.365811, -0.369379, -0.117044, 1.544924, -0.812353, -1.177569, -1.005114, -1.080506, -0.229261, 1.664228, -0.827576, 0.741223, 0.678941, -0.847511, 0.229853, -0.740431, 0.542731, 1.688227, -0.239932, 0.114038, -1.296318, 1.800347, -1.497541, -1.353060, 1.242992, 1.041044, 1.524270, 0.823733, -0.508059, -1.218891, 0.922841, -0.551410, -0.342022, 0.865529, -1.248247, -1.209369, 0.598614, 0.324598, 0.235621, -1.418816, -0.621824, -0.505364, -0.411728, -0.019689, 0.105613, 0.935643, 0.646233, -2.496740, 1.380557, -1.091092, -1.940543, -0.512763, -0.790937, -0.644819, 1.347443, 0.213199, 1.282681, -0.271331, 2.417922, 0.571479, 0.749029, 1.067326, -0.632802, 0.539238, -0.633065, 1.522586, 0.554098, -1.174882, 0.211887, -1.244379, -0.026399, -0.231448, -0.645496, 1.363875, -0.660919, -0.859490, 1.550215, -0.391130, 0.256604, -0.714977, 2.365872, 1.091650, 1.455415, -0.512348, -0.236868, -0.123357, -0.451179, -1.887984, 0.299722, 2.047120, 0.057376, 0.523066, 0.120305, 1.919198, -0.983197, 1.497362, 0.893917, 0.365696, -1.749394, -1.047617, 0.572081, -1.369414, 0.124660, 0.434574, 1.350827, 0.958559, 1.471701, -0.901075, 0.710243, -0.768128, 1.631744, 0.255488, 0.194679, -0.149011, 0.928359, 1.968508, 1.017136, 0.464226, 0.780892, 0.940171, 2.191196, 0.396962, 2.175486, 2.812886, 0.186325, 1.145789, -0.248121, -0.314955, 0.297093, -1.034387, -0.399280, -0.707100, 0.271872, 0.075209, 0.039129, 2.262311, -0.929207, -0.277004, 1.315781, -0.271506, -0.858215, 0.035157, 1.715799, -0.168779, -1.442646, 0.950059, -0.370277, -0.256212, -0.226615, 2.825429, -0.758130, 0.111143, 0.558345, -0.399092, 0.675165, -0.942873, 1.110861, 0.090156, -1.076805, -0.371468, -0.391298, -1.827450, 0.101201, -0.580944, 0.365027, 1.258143, -2.037072, 1.875970, 0.800073, -1.105441, -0.754599, 0.167846, 1.134017, 0.310822, 0.567510, -0.493330, -1.017928, -0.252374, 0.163640, -1.008037, -0.437007, -0.870018, -1.429713, 0.914931, -0.877254, -0.470576, -1.016514, -1.321604, 1.130046, 0.333676, 0.520429, -0.350936, 0.045528, -0.240283, -0.756092, -1.684721, 0.108907, -0.085249, 0.283357, 0.105023, 3.114342, -0.614636, 1.369744, 1.002582, 1.532972, 0.807571, 0.776130, 0.766981, 0.223366, 0.380151, -0.421675, -0.185594, -1.240574, -0.607701, 0.443978, 0.893475, 0.516036, -0.041775, 0.784014, 0.888409, 1.795471, 1.333600, -1.716295, 0.444112, 0.531101, 0.438343, 0.488325, -0.123772, -1.777215, -0.429330, -0.805608, -1.365521, 0.294407, -1.637442, -1.508557, 0.294235, 1.154034, 1.373750, -1.216943, 0.117971, -0.207947, 2.667760, 1.193870, 0.170425, -2.861491, -0.920327, -0.401834, 0.051076, -0.763792, -0.419237, -0.253164, 0.548181, -0.260666, 1.114218, -0.472359, 0.000777, 0.942669, 0.274244, -0.804280, -0.920966, -0.479232, -0.896244, -1.296808, -0.485839, 0.256575, 0.472418, -1.099501, 1.083782, 0.175227, 1.739817, 0.086799, 1.452611, 1.473743, 0.236520, 0.894751, 0.539812, 0.228592, 1.260415, -0.235119, -1.538888, 1.089239, -0.557788, 0.434740, 1.238091, 0.699313, -2.177261, -0.346899, 2.130578, 0.534032, 0.606903, 0.342108, 1.473813, -0.673447, 0.163659, 0.198401, 0.669836, -1.735455, -0.613109, -0.497421, 0.373850, -0.666279, 0.539778, -0.012893, 2.137125, -0.172673, -0.203354, 1.786115, 1.621231, 0.153345, -0.687931, 0.042081, -0.240865, -1.153801, 2.108947, -0.088081, -0.627526, 0.220326, 0.520893, -0.197772, 0.859140, -0.030755, 2.204912, -0.088261, -0.322531, 1.113869, 0.192430, -0.091217, -0.799817, 0.356725, -0.570216, -1.129366, 0.090061, -0.492572, 0.070809, -0.721441, 1.008628, 0.002018, 1.507723, 1.058046, -1.074672, -1.881438, -1.998306, 1.115537, 0.026094, -0.220509, 0.273241, -0.548247, -0.002409, 1.650509, 0.601163, 0.106623, -1.572271, 0.718868, 1.036136, -0.067851, -2.264058, -1.075715, 0.733057, 1.856139, 0.139983, -0.464700, 0.619518, -0.595357, 3.258187, 0.330511, 0.351369, 0.822868, -0.378564, -1.044285, -1.769115, -1.022173, 1.098753, -0.365373, 0.158807, 1.058372, -0.762679, -0.268012, -0.988236, -0.376957, -1.499588, -0.650633, -0.195035, 1.215868, -1.784685, 2.135588, -1.465462, 0.204122, -0.401013, 1.004250, -0.366283, -0.796044, -0.268670, 0.175652, -0.995022, -1.143925, 1.574796, 0.731559, 0.384915, -0.840597, 0.482574, 1.150213, -0.167820, 0.398102, -0.093998, 0.105793, 0.677898, 1.613358, 0.815593, 0.827124, -1.223293, 0.683526, -1.235659, -1.675279, 0.077846, 0.101757, 0.669349, -0.619003, 0.834292, 0.246638, 0.387830, -0.205522, -0.997976, 1.503187, -0.620129, -0.506207, -0.591371, 0.114501, -0.730490, 1.271365, 0.745807, 1.632571, 0.220765, 0.357309, 0.672587, -0.469215, -0.881775, -0.814130, -1.942472, -1.011197, 0.224068, 0.097396, -0.817933, -0.194047, 0.919817, -1.466467, 0.195265, -0.072863, 0.063559, -0.859960, -0.017212, 0.960897, -2.295446, 1.322414, 0.105254, 0.815768, 0.617768, -1.321106, -0.252745, -0.671972, 0.339428, -1.348388, 0.737005, -0.237628, -0.465819, -1.030587, -0.530554, 0.087951, -0.199632, -0.318314, -1.073532, -1.698142, -1.671828, 1.344701, 0.003553, -0.559478, 0.811507, -0.555669, 1.308364, -0.620497, -0.000049, -0.415008, -0.181747, 2.221251, -1.662945, -0.519566, 0.136829, 0.079531, 0.033857, -0.620097, 0.423572, 1.017152, -0.024860, -1.670799, -0.497549, -0.621389, 1.408771, 1.131663, -0.504252, 0.018398, -0.678687, -0.154862, 1.336222, 1.276668, 0.838400, 1.464020, -0.208965, 1.182976, 1.161914, 0.684418, -0.248047, -2.366961, 1.694174, -0.274180, 0.206851, -0.105770, 1.171527, 1.552044, 0.610508, -0.196718, -0.371139, -0.746466, -0.227213, 0.494243, -0.182971, 0.233854, -1.703848, -0.128566, -0.505413, 1.051162, -0.095104, -0.446183, -0.998096, 1.572434, -0.435290, 0.304048, -0.238648, 1.034630, 0.199094, 0.498759, 0.308008, 0.567423, 0.535799, 1.247896, 1.101454, -0.512195, 1.708025, -1.160282, 0.399715, 0.342799, 0.860835, -0.981930, 0.966950, 0.176748, 0.114596, -0.465750, -0.720403, 0.912818, -0.634569, -0.015950, 1.681451, 0.796052, 0.161531, 0.115802, -0.037630, 0.506112, 1.203614, -0.722811, -0.321431, -0.292871, 0.021080, -0.267876, 0.649199, -0.087122, 0.238224, 0.117405, -0.796072, 0.043822, 0.106367, -0.858445, -1.923243, 0.001214, -0.383780, -0.793290, -0.298617, 0.711272, 0.673491, 0.314610, -0.888251, -0.679692, -1.327119, 0.275225, -0.920021, -0.496445, 0.875245, 0.535981, 0.114400, -0.299781, 0.403232, 0.294880, -0.923130, 0.825482, 1.730328, 1.532264, 2.092793, -0.391504, 1.081222, -0.524529, -0.022091, -0.328772, -1.802426, -3.191733, 0.810919, -1.148615, -0.073164, 1.119239, 1.209517, -0.137190, 0.591770, 1.159989, -0.503019, 1.082312, 0.211661, -1.352652, -0.939927, -1.410106, 0.278397, 0.204997, 0.343849, 0.527669, -0.209864, -0.159209, 0.667135, -0.663653, 0.568100, -0.943844, 0.968383, -0.584700, 1.035199, -1.330756, 0.185383, -0.287200, -1.398206, 0.987634, -0.948540, -0.761210, -0.476222, 1.679815, 0.190751, -1.774180, -1.118783, -2.163490, -0.681097, 0.886447, -0.393574, -0.156353, 0.806331, 1.445205, 1.760609, 0.775289, 0.476010, 1.406761, 0.448653, -0.668189, -1.231927, -0.653629, 0.500012, 1.325792, -1.548845, -0.483784, 0.831622, -1.314894, -1.561311, 1.811731, -0.912836, 0.630485, -1.403108, -0.391168, 1.268278, 0.168812, 0.088604, 0.130069, -1.499388, -0.849860, 0.208970, -1.548968, 2.431698, 1.501798, 1.145675, 0.511107, -0.294855, -0.445006, -0.125896, 0.834638, 0.352165, -0.801772, -1.507155, 0.771091, -0.598979, 2.869002, -2.871846, 0.155109, -0.123399, -0.539084, 1.917127, 0.622973, 1.223195, -0.088143, 0.041642, 0.925027, 1.111906, 0.792184, 2.656297, -0.209163, 1.669466, 0.717435, 0.243146, -0.051716, 0.683014, 0.899531, 0.134089, 1.159671, 1.415220, 0.827601, -0.047416, -1.872233, 0.506747, 0.800150, 1.101284, -0.003516, 0.047211, 1.433037, 0.230170, -1.622533, -0.698518, 0.122633, -1.203151, -0.474861, 0.508189, 0.346365, 0.240614, 0.322376, 0.639400, 0.626123, 1.446888, -1.370581, 0.497816, -0.946326, -1.198888, -0.194216, 0.220833, 0.813054, 0.750587, 2.132821, 0.410698, 0.202643, -0.262041, -0.029299, 0.835202, 0.721498, -0.739723, -0.103559, 0.746257, 0.012022, 0.637422, 0.180977, 0.425005, 0.810973, 0.094005, -0.425275, -1.144537, 1.509941, 1.235870, 2.426218, 0.950339, -1.697245, -2.842267, 0.088028, -0.943818, 0.118406, 1.056480, 0.873825, 0.694412, -0.380172, 0.728019, 1.598631, -1.262186, 0.456457, 2.355905, -1.225146, -0.073613, -0.029739, 0.348293, 1.389075, -0.585340, -0.531548, 1.049350, -1.524120, 0.565031, -0.878409, -0.475034, 1.708689, -0.821485, 0.091255, 1.589056, -1.197163, 1.336935, 0.235905, -0.938052, -0.624809, 0.531845, 2.105759, -0.549775, -0.960220, -1.652345, -1.301098, -0.605823, 0.361772, -0.868646, -1.089649, -1.282840, 0.854270, -0.087551, -2.123483, 0.386107, 0.028299, 0.206407, -0.835850, 0.057705, 1.393362, -1.547544, 1.418833, -0.726110, -1.609997, 0.284366, 0.133282, -0.113803, -0.246302, 0.385716, -1.342819, 0.802481, -0.747192, -0.168460, -0.410725, -0.676639, 0.501431, 0.701874, -1.112610, -2.127012, 0.844464, 0.120311, 0.335041, -1.169146, -0.486243, 1.991832, -0.725771, 0.414585, -0.013879, 1.460312, -1.775961, -1.494349, 1.276276, -1.334565, 1.342523, -1.006457, 0.451700, 0.538312, -0.642308, 0.988902, 0.344799, -0.993196, -0.566174, 0.839782, 2.086088, 2.044614, -0.435779, 1.037257, -0.408007, -0.928194, -0.576962, -0.507459, -1.375975, 0.077665, -0.321384, -0.037849, -0.523371, -0.321993, -0.764563, -0.491723, 0.738228, 0.704627, 1.607469, -0.927576, -0.394017, 0.249020, 0.479376, -0.730120, -0.214330, 1.451152, 0.789474, -0.656674, -0.436832, 1.409303, -0.169377, 0.031340, -0.195310, 0.072180, 1.309401, 0.438797, -1.208211, -1.192136, -0.115447, 0.850717, 1.463341, -0.321036, -0.198649, 0.141033, 1.239271, -0.785351, 0.832252, -0.552908, -1.609960, 0.197240, -1.632666, -0.047350, 1.204379, 1.903071, 1.023687, -0.402241, 1.194819, -1.232732, -0.171118, -0.218171, -1.127609, 0.001241, 1.623563, -0.833868, 1.034040, -0.272128, 1.444232, -0.414683, -0.794986, 0.457525, 2.211998, -1.412703, -0.882442, -1.041413, -0.894098, -0.015035, -2.559808, -1.231526, -0.334869, -0.409786, 0.502894, 0.563420, -1.208762, -0.756070, -0.564320, 1.080210, 1.122943, -1.392264, 2.110693, 1.787055, 0.262440, 1.456286, -1.393583, -0.105681, -0.820904, -0.504632, -0.052866, 1.159623, 0.032887, -0.250310, -1.119535, 0.247586, -0.605135, 0.511148, 0.005030, -1.153227, 0.147900, 0.797783, -1.144099, 0.571842, -1.287317, -0.639211, -0.143556, -0.862830, -0.170144, 0.563183, 0.230548, -0.112485, 0.517635, -0.557753, -1.331880, 2.015481, -1.005509, -0.845512, -1.196353, 1.349394, -0.672747, 0.168585, 1.240524, -2.042310, 1.634272, 0.277167, 2.580223, 1.310991, -0.113471, -0.213667, 0.546703, -0.659731, 1.408466, 0.215727, -0.125880, -0.415096, 0.589020, 0.963551, 1.390151, -0.568232, 0.010769, -1.282196, 0.731194, 0.691128, -0.168497, 0.636977, 0.169990, -0.554185, 0.509476, -0.018903, -1.392492, -0.390973, 0.039503, 0.540164, -1.239303, -0.195522, -0.710986, 0.407797, 1.338748, -1.045769, -0.547504, -0.618966, 1.000677, 0.641639, 1.665834, -2.476673, 1.194500, 0.244884, -0.612303, 0.963516, 0.822845, -1.977967, 2.666875, -0.240559, -1.600907, 0.041680, 0.145598, -0.276400, 1.129459, 1.092059, 1.278152, -0.221769, 1.133793, 2.168534, -0.069488, 1.005401, -0.874005, -1.124220, -0.741599, 1.837862, 2.094641, 1.319952, -1.770013, 0.332870, 0.012995, 0.736634, 1.339620, -0.820453, -0.105114, -0.732068, -1.169210, -0.668723, -0.017110, -0.141183, 0.310239, 0.283326, 0.031051, 0.226616, 0.591523, 0.896183, -0.592901, 0.576669, -0.948299, 0.386607, -1.387453, 0.362097, 1.726283, 0.560772, 0.975516, -0.245287, 0.839740, 0.340040, 0.745198, -0.750384, -0.718762, -0.001350, 1.366076, -0.972330, 1.569860, -0.466808, -0.709081, 2.652749, 0.874044, -1.134175, -0.071458, -1.567075, 0.088887, 1.004075, 0.550873, 0.350425, 0.015071, -1.363464, 0.341334, 1.126974, 1.112274, -0.022050, 0.358191, 1.264031, 0.338957, 0.185863, -1.360988, -0.836657, -1.608280, 1.500583, -0.971778, 0.257653, -0.227526, 0.465699, 0.188826, -0.849953, 0.491701, 0.676032, -1.168220, -0.381367, -0.022353, -1.842891, -0.171064, -1.284449, -0.072340, -0.876003, -0.720632, -1.405663, -0.620966, -0.076243, 0.982724, 1.181013, -0.562688, -1.019681, 0.669343, -0.161448, -0.552471, 0.340967, -0.536234, 0.679144, 0.232275, -0.178437, -1.231996, -0.985292, 0.866831, -0.297292, -0.984240, -1.611099, -0.713850, 0.090579, -0.859244, 0.522835, 1.511846, -0.287760, 0.003001, -0.091751, 0.879735, 1.096157, 0.522097, -1.202111, 1.220460, 1.514596, -0.214418, 0.293782, 1.305268, -2.114405, 0.372568, -1.816376, -0.872256, 0.696825, -0.960278, 0.419332, -1.002015, -1.223839, -0.103561, -1.248187, 0.313550, -1.053969, -1.706059, 0.881536, -0.310815, -0.925452, 0.566417, -1.073520, -1.011073, -1.163271, 0.915884, -0.233023, 0.860841, 0.493819, -0.174333, 0.106531, -0.472695, 0.132618, 1.326250, 0.086093, -0.179486, -0.582379, -0.303287, -0.027709, 0.339106, 0.334272, 0.888361, -0.586072, 1.521095, -0.621835, -0.163574, -0.544514, -1.551514, -0.491152, 0.876617, 0.339755, -1.271527, -0.011788, -0.285099, 1.249713, 0.961025, -0.261550, -0.046599, 0.644335, -0.462460, 1.060666, 0.056946, 1.487455, 0.331886, -0.360921, -0.131251, -1.610050, 0.929308, -1.871521, -0.400929, -1.189950, 0.067779, -0.792719, 1.218581, -2.228314, -0.004547, -0.560896, -0.115964, -1.301079, -1.561295, -0.008356, -0.172635, -0.908535, -0.341397, 0.685877, -0.158706, -0.130564, 2.384541, -0.098827, 0.449443, 0.950520, 0.761160, 1.653470, -0.202540, -0.390809, -0.329936, 0.055520, 0.231570, 1.532906, -1.252980, -1.216625, 0.262683, 0.058548, 0.093706, -0.035446, -0.202067, -1.954899, 1.235684, -1.118334, 0.987205, 1.836035, -0.827753, 0.245321, -0.236708, 0.432973, -0.434754, 0.427317, -1.766231, 0.804420, -1.451646, 0.729757, -1.556782, 0.313522, 1.132205, 0.790076, 1.132085, -0.244644, -0.048008, 0.520618, 0.507019, -0.517541, 0.349050, -1.029242, 1.620831, 0.704765, -0.257112, -0.996632, -0.348176, 0.293673, 0.463793, 0.599818, 1.126504, 0.629891, 0.003862, -2.478686, -0.876447, 0.937444, -1.476415, -1.158235, 0.922548, 1.686318, 1.073159, 0.838935, 0.868073, -0.268444, 0.074560, -0.494903, -0.974432, -0.043104, 1.536741, -0.984721, -0.019144, 0.337097, 1.113034, 1.128949, -0.688006, -0.971811, 0.663827, 1.976121, -0.612086, -0.830535, 0.801822, 0.976767, -0.073481, -0.413936, -1.723152, -0.708928, 0.553123, -0.268435, -0.458164, 0.337600, -0.015853, -0.430938, 0.482120, 0.632976, 0.855297, 0.369161, -0.350407, 0.119413, -0.654142, 0.283021, -0.249341, 1.927499, -0.089492, 0.805017, -1.127186, -0.993823, 0.694021, -0.099729, 1.335679, 1.833143, -0.536073, -0.002318, 1.607860, -0.431108, 0.624783, 0.760140, 2.909349, 0.479077, 0.739320, 0.523408, 0.036420, 1.204480, 1.006408, -0.668286, -0.100322, 0.780936, 1.131848, -0.248103, 0.865610, -0.439550, 0.668874, 2.303895, 0.428077, -0.798268, -0.240835, 0.712137, 0.539072, 0.477924, -0.319070, -0.455309, -0.359487, 0.795799, 1.450555, 0.935734, -0.115616, 0.076071, -1.013090, 0.661341, -0.035756, -0.839959, 0.697285, 1.181995, -0.957671, 1.467023, -0.415440, 0.670669, 0.050084, 1.101031, -1.796386, -0.383964, -0.506647, 1.700881, -1.474094, -0.887938, 1.086542, -0.236236, 1.501965, 0.661134, 1.084216, -0.529496, -0.599299, -0.167001, -0.627688, -0.971668, -0.613478, -0.057687, 0.140727, -0.671385, -0.280310, -0.329909, 0.144409, -0.048162, 0.719904, 1.569735, 1.270838, -0.551058, -0.316185, -0.026704, -2.606563, -1.123548, -1.389630, 1.857853, 0.453112, -0.537148, -0.119366, -0.188593, -0.133040, 0.570386, -0.689890, 1.261455, -1.203871, 0.118285, 0.673056, 0.314670, -0.467185, 0.890509, -0.640167, 1.316349, 1.760802, 0.381836, 3.156204, -0.548873, 0.309878, -1.721900, -1.461609, 0.323998, -1.449580, 0.419490, -1.025768, -2.196789, -0.427061, -2.127100, 0.495228, -1.407256, -0.768990, 2.156069, -0.253221, -0.436109, 1.126936, -0.981917, -0.607818, -0.136395, -0.233681, -0.758238, -1.968764, 0.513559, 0.650059, 0.363139, 0.297366, 0.645142, -0.177422, 0.951003, 1.610096, -1.260217, -1.041405, 0.349460, -0.053213, -0.879416, 0.704586, -0.495656, -1.164474, 0.749899, -0.358014, -0.684477, -0.233709, -2.041568, -0.401728, -1.567360, 0.744014, 0.657171, 0.049838, -0.093999, -0.701229, 1.605713, -1.157617, -0.276461, -1.111061, 0.588042, -0.509359, -1.521079, 0.715904, 0.424626, -1.572558, 0.863950, -0.847231, -0.819362, -0.234975, -0.205080, 0.244306, 2.532727, -0.282346, 0.813899, 1.237427, 1.316864, -0.595758, -0.438923, -0.192364, 0.651349, -1.155411, 1.332552, 0.365111, 0.287079, 1.388856, 0.784964, 0.962629, -0.067794, 1.554280, 0.133279, 0.045459, 0.076014, -0.041055, 0.392661, -0.229723, 0.226269, 0.170076, -2.228773, 1.195458, 0.160948, -0.448022, -0.306435, -0.433887, 0.647301, 1.566533, 1.025537, -1.856659, 1.369221, -0.332818, -0.416411, -0.685193, 0.142815, -2.053967, 0.479696, 1.388820, 0.072373, -0.165684, -0.723197, -1.120170, 0.721519, 0.694942, -1.327925, 0.852870, -1.270574, -1.671023, 2.365201, -0.429087, -0.264616, 1.305838, 0.051837, -1.489186, -1.379524, -0.267827, -1.513242, 0.206231, -1.226853, 0.262906, 0.804098, -0.662063, -0.737027, 0.006400, -0.097888, 1.409563, -0.005622, -0.265703, 0.430784, -0.374082, -0.353639, 0.498409, 0.634408, 0.423830, 0.794608, 0.230726, 1.496160, -1.248603, -1.345097, -0.461340, -0.594938, 1.276330, 0.049087, 2.877397, -0.155074, -0.402770, 0.395112, 2.750214, -1.599486, 1.171930, -0.626030, -0.359968, -0.526952, 1.355983, -1.127950, 0.562453, 0.803102, -1.026099, -1.751319, 0.910812, -0.138222, 0.039850, -0.588132, -1.006941, 1.155574, 1.700764, 0.533998, -0.594966, -0.045537, 0.042856, 0.142323, -0.689567, 1.367362, 0.793721, -0.318274, -1.230443, -0.804394, -1.556826, 1.295637, -0.410950, -1.001370, -0.142660, 0.011917, -2.000602, 1.701693, -0.204075, 2.126241, 0.571278, 0.213523, 0.273277, 0.711628, -0.644814, 2.377962, 0.067837, -0.203787, -0.492727, 0.825123, 1.750371, -0.056338, 0.152948, 2.230357, -0.698760, 0.077599, -0.029802, -0.571621, -0.258995, 0.154825, -0.607714, 0.042422, 1.871377, -0.459544, 0.204277, 0.902499, -0.681999, 1.033516, 0.134362, 1.066330, 0.626885, -1.045229, 1.773388, -0.070718, 0.272405, -2.291435, 1.153380, -0.936707, -0.686482, -1.712940, -0.250838, -1.797788, 1.208108, 2.012615, 1.753916, 0.404781, -0.871592, -0.479848, 1.139744, -0.567713, -0.342623, -0.658585, -1.999230, 1.718585, -0.937630, 0.722913, 0.748836, -0.649737, -2.078196, -0.152699, 0.548236, -0.728365, 0.325118, 0.566414, -0.077661, -1.900146, -0.146621, 1.614005, 1.609826, 0.110968, -1.507258, 1.761579, 1.040985, 1.095699, 0.164434, -1.315387, 1.237369, 0.115449, 0.342713, -0.205608, 0.290848, -0.450209, -0.384163, 0.453791, 0.773005, -0.344453, 0.751582, 1.051541, 0.773914, 0.514508, -0.866921, 2.373794, 1.549060, 0.868504, 0.940303, 0.037269, 1.596310, -1.622590, -1.321213, 0.422387, -1.556589, 0.278207, -0.715823, 0.442452, 0.611006, -1.406512, -0.400933, -0.036381, 0.682282, 0.440410, 0.337547, 1.054140, -2.370662, 0.500439}, + { -1.557117, 1.354714, -0.507189, -1.677046, 2.251007, -1.236535, -2.730527, -0.135517, 0.426629, -0.840740, -0.484746, -1.135077, -0.431187, 1.055289, 0.722851, -0.033690, -0.104293, 0.511147, -1.845357, 1.101776, -1.811933, 0.339437, 0.540583, -0.475171, 0.639632, -0.340200, 2.074263, 0.891054, -0.257403, 1.878608, 0.436490, -0.221761, 0.107039, -0.395112, 0.723690, 2.195958, 1.373352, 0.191767, 0.965378, 0.134876, -0.511638, -1.963900, -0.601847, 0.888348, 1.360059, -1.005337, -1.352559, 0.275802, -0.996586, 3.429792, -0.089151, 0.671209, -1.229815, 2.154351, -1.125775, 1.665587, 1.796281, -1.711791, -0.930979, 1.180638, -2.721949, 0.367663, -1.339680, 1.915345, 0.653384, 0.853967, -1.278708, 0.210739, 0.496017, 1.707879, -0.676035, 1.144740, 0.241170, -0.088847, 0.894312, -0.015625, 1.366835, 0.855726, 0.146110, 0.439883, 0.526952, 0.463049, 1.613597, 0.931085, -0.005703, 0.176923, 0.200233, 1.221886, -2.212358, 0.244618, -1.479742, 0.157874, -1.162725, -0.935696, 0.654720, 0.802513, -0.598277, -0.626279, -0.992366, -0.009777, -1.218925, 1.364486, -0.350957, 0.921134, 1.114492, 0.866894, -0.703489, -0.684720, -1.438787, -1.062744, 0.357847, -1.529508, -2.131406, -2.031877, 0.099589, -0.392503, 1.824714, -0.434718, 0.283077, -0.821671, 1.593158, 0.891252, 0.344510, 0.950365, 0.122338, 0.235416, 0.070577, -0.591245, -0.544214, 0.048842, 0.493935, 1.145389, 1.823551, -0.779781, 0.339646, -0.679694, -2.653334, 2.521782, 2.455108, 0.610537, -1.119245, -0.202094, -0.355687, -0.778566, 0.002674, -0.544540, -0.318923, -0.780856, 0.707767, 0.345975, -0.617952, -0.596359, 2.635500, 1.579006, 0.259500, 0.323165, 2.359543, -0.594938, 0.068492, 0.549249, -0.512844, -0.190790, 0.595400, -0.590486, -1.031470, -0.524377, 3.203436, -0.281427, 1.053369, 0.065607, -0.721295, 0.919299, 1.060299, -0.661467, -0.107674, -0.576129, -1.235150, 1.660981, 1.133712, 0.287339, 0.287246, -1.554665, -0.787339, -1.351613, -1.062265, -0.455838, 0.038943, 1.090834, -0.414549, 0.426604, 0.106733, -1.156028, 0.792491, 0.414883, 0.984235, 0.527139, 0.293199, 0.899923, -1.988108, -0.444575, -1.584547, 0.422906, 0.194498, 1.025737, 0.828271, -1.456154, 0.117757, 0.066355, -0.211340, -0.518127, -1.217674, -0.178295, 0.704854, 0.483708, 0.294321, 0.526501, -1.291551, -1.874611, 1.592156, -1.805152, 0.266123, -2.492696, -0.868882, 0.479426, -0.023887, -0.316269, 2.259561, 1.800243, -0.758295, -0.150794, 0.780820, -1.185125, -1.673051, -0.047029, -0.266093, 0.890193, 1.160271, 0.772067, 0.528865, -2.118247, -0.731128, 1.012658, -0.319670, 0.551970, 1.067810, -1.249290, -1.229468, 2.821555, -1.244210, 0.298691, -0.381823, -0.315208, 1.066915, 0.879789, 0.276744, 1.559746, -0.424278, -0.031569, -0.061117, 1.112057, -0.164522, -0.667368, -0.406287, 0.502148, 1.479977, -0.718784, 1.329454, 0.365968, 2.085443, 0.904310, -0.472464, 0.304797, -0.022248, -0.718791, -0.443014, 0.357514, 1.831675, -1.094502, -1.025506, -0.365520, 1.171117, 0.328614, -0.655944, -0.755994, 0.373699, 0.845346, 0.283553, -0.768500, 0.031940, 1.364133, -1.017221, 0.676596, 0.187238, 0.099184, -0.763140, -0.222902, -0.219223, 1.826233, 1.093794, -1.138860, -0.418974, 0.317812, -0.395524, -0.838842, -0.399299, 0.882260, 1.344751, -0.557243, -0.890126, -0.708344, -0.170535, 1.518636, -0.398429, -0.349143, 0.182937, 0.644080, 0.293535, 1.330478, 0.042729, 0.713383, 0.670294, -1.489232, -1.952641, 1.089116, 0.766679, 0.260208, -0.092512, 0.722679, 0.971277, 2.077432, 0.688735, -1.332670, -1.730159, -0.281100, 1.178166, -1.937678, 0.121702, -0.959751, 0.380197, -0.126586, 0.660441, 0.096211, 1.854894, -0.148417, -0.486456, -0.668114, -0.692463, -1.034927, -0.111797, 0.648791, -0.568638, -1.028907, -0.716304, 0.046795, -0.030656, 0.504981, 0.063141, 1.611272, 0.801220, 1.375850, -1.128715, -0.191421, -0.477263, -0.473041, -0.558201, -1.297186, -0.522119, -0.257538, -0.114766, -0.259126, -1.069742, 0.269224, 0.245706, 0.948744, -0.731799, 1.502836, -0.898101, 0.093258, -0.898092, -1.043162, 1.211760, 0.724990, 0.967940, 1.255183, -0.689236, -0.829589, 0.429128, 1.443109, 1.570252, -0.740298, -0.316961, 0.536463, 0.199828, 0.121909, 2.004791, 0.756453, -0.507309, -0.730538, 1.615830, 0.445823, 0.877933, 0.155118, 1.033334, -1.077395, 1.656990, 1.328022, 0.191761, -1.031495, -0.584851, 0.797350, -0.634260, 0.835749, -0.358748, 2.032304, -0.591092, 0.223780, -1.314651, -1.699066, -0.239608, 0.020907, 0.160940, -2.688284, 0.658536, 1.486791, 1.620062, -2.104166, 1.188102, 0.370384, 0.059716, -0.252538, 0.579343, 0.462017, 0.295460, -0.229596, 0.256024, -0.244064, -1.136943, 0.187441, 1.188502, 0.057767, -1.243613, 0.071384, 1.709040, 1.539935, 0.934083, 0.649864, -0.236786, -2.584575, -1.431453, -0.517931, 0.321816, -2.963837, -0.718307, 0.924068, -0.789880, 0.751059, -0.214046, -1.650300, -0.094235, -0.208179, 0.887398, 0.425317, 0.836094, 1.120878, 0.777292, -1.955840, -2.196150, -0.366979, -0.323786, 0.098094, -1.240425, -0.153496, -0.368574, 0.323803, 0.422725, -0.383971, 0.486266, 1.912627, 1.069989, -0.835923, -0.688125, 1.032788, 1.070619, -0.608596, 1.254905, 0.085726, 0.105570, -1.843710, 1.407650, -1.347667, 2.621028, 1.587248, -1.376651, -0.653023, 0.707422, 1.455100, -0.831775, -1.663748, -1.495220, 0.571127, -2.077593, 1.572516, 1.161790, -0.313553, 1.834049, 0.544914, -1.143451, -0.702849, 0.885798, -1.707950, 0.410130, -1.565802, 0.165077, -0.549966, -1.959193, 1.167866, 1.802445, 0.431422, 0.885983, 0.600516, -1.363368, 0.510890, -0.554945, 0.048845, 0.737844, 0.663687, -1.842748, 0.811965, 0.853685, 1.683111, 0.482860, -0.208920, -0.515260, -1.023627, 1.893778, 0.929339, 0.550755, 0.818082, 0.502538, 0.725463, -0.246349, -0.238920, 0.952603, 0.569799, -1.001931, 1.969856, 0.716774, -1.137192, -0.798399, -0.965910, -1.612037, 0.749674, 0.280505, -0.516543, -0.854051, -0.574175, -0.813508, 0.360200, 0.170275, -0.329160, -0.876415, 1.163529, 1.020010, 0.275865, 1.429493, 0.206745, 0.669694, 0.988536, -0.111673, -1.064488, -1.381906, 0.054743, 0.094889, -0.177771, 0.803945, 0.576841, 1.221266, 0.325914, -0.372008, 2.111483, 1.932752, -0.565688, 1.122114, -1.310081, -1.008726, -0.338272, 0.277182, 0.642604, -1.775700, 0.739044, -0.906823, 2.325243, 1.046948, -0.423112, -2.036797, -1.761800, -0.975541, 1.134551, 1.344011, -0.117449, 0.172826, -0.823505, -0.143463, 0.863610, -0.210688, -0.619058, 1.870949, 0.063990, -0.651090, 0.195268, 0.501306, -0.607498, -0.710503, -1.635040, 1.027606, -3.069799, -0.638853, 0.540163, 1.745569, 0.567150, -0.134887, 0.158715, 0.410833, -0.526851, 0.454765, 0.716343, -0.623224, 0.695090, -0.598681, 1.241086, 0.683083, -0.041679, 1.525075, -0.962389, -1.307760, 0.675192, -0.578039, 0.245004, -1.231397, -0.829305, 0.115689, -2.717426, 0.144028, 1.032865, 0.148114, -0.952908, -1.504366, -2.247828, 0.406948, 2.433513, -0.463547, -0.020855, 1.089980, 1.915876, -0.780706, 1.175394, 0.066952, -0.950170, 0.834358, -0.846286, 0.016857, 1.175339, 0.215610, -0.584048, -0.401780, -0.832289, -0.202046, 0.711954, -1.264368, -2.883734, -0.423156, 0.936798, -0.289677, 0.709213, 0.479675, -1.788116, 0.398553, -0.343703, -1.613222, -0.507234, -0.480106, -0.091324, -0.299687, -2.786705, 1.600875, -0.662804, 1.011639, 0.092112, -0.066656, 1.343879, -1.046727, -0.410463, -1.168224, -1.704453, 1.066022, -2.321124, -0.224048, -2.070347, 0.694574, -1.826250, -1.852257, -1.834839, 0.343259, 0.656732, -2.709880, 1.514210, 1.956066, -1.795674, -1.797701, 0.592806, -0.607482, -1.512448, -0.090299, -0.638567, 0.687265, 0.252648, -0.057771, 0.418299, 0.324606, 0.880168, -0.114430, 1.441478, -1.031433, 1.357451, 1.081684, 0.073322, 0.385400, 1.574116, -0.838686, -0.562279, 2.803296, -0.062337, -0.715824, -1.483479, 0.697064, -1.511971, 0.622425, 1.685541, -0.185731, 0.977569, -2.076476, 0.372813, 0.019008, -0.659924, 0.837051, -0.646133, -0.279275, -0.313328, -0.301571, -0.288674, 0.040925, 0.691603, -0.455363, 0.381743, 1.438290, -0.958760, -0.402769, -0.331764, 0.213186, 0.493733, 0.604938, 0.149029, -0.182319, 0.764589, -0.690511, 0.395842, 0.433151, -1.657155, 0.999666, -1.443099, 1.285412, -0.236826, 0.579664, -0.935998, -0.233323, -1.267898, 0.026270, -0.775491, 0.257070, -1.378352, -0.907157, -2.086672, 0.873207, 1.008371, -0.623795, 2.244254, -1.394387, -0.493002, -1.006927, 0.900087, 0.526529, -0.408201, -0.909291, -0.412598, -1.666606, 0.336379, 1.937729, -0.072592, 0.678691, -0.614418, 0.250235, 1.045207, -0.581390, 0.755579, -1.646924, -1.423800, 0.230081, 1.003887, -0.725993, 2.114760, 0.806880, 0.096856, 0.559407, 0.107620, -1.821931, 0.121767, -0.515205, 0.172496, -1.398159, -0.312484, -0.835134, -0.092868, -0.714001, -1.111573, 1.999733, 0.130829, 0.798623, -0.440334, 1.082063, -1.787091, 0.127145, -0.937345, 0.413789, 2.730453, -0.905496, -0.800846, 0.027002, 1.017213, -1.605840, -2.170621, 0.333026, 0.989201, 0.322813, -0.144388, 0.788195, 1.910774, -0.027260, 0.648311, 0.398361, 0.110731, -0.267675, -0.614838, 1.994243, 0.494190, 0.428123, 0.933699, 1.799689, -0.682839, 0.278480, -0.196905, 0.478146, -0.801117, 0.827211, -0.208584, 1.749742, -0.309020, 0.550399, 0.029851, -1.455646, 0.604909, -0.079668, -2.667139, 0.087649, -0.460940, 0.762463, -2.313522, 0.324131, -0.051233, 1.416637, -1.459987, 0.823470, 1.385938, -0.935317, 0.286730, 1.344583, -0.171006, -1.096904, 1.473253, 0.965604, -1.496269, -0.178862, 1.717303, -0.583761, 0.113950, -0.018208, -0.327182, 1.401059, 1.389596, -0.796274, 0.020972, 1.471807, -0.812743, 0.257384, 0.751148, 0.047724, 0.700667, 0.265306, -2.105040, 1.943851, 0.336538, 0.061315, -0.880601, 2.034990, 0.390806, -0.251553, 0.949620, 0.569913, -1.127480, -0.133491, -0.360130, 0.507190, -0.120065, 0.239050, -0.186229, -0.451519, -1.754476, 0.374530, 0.611022, 0.789310, -0.348057, 1.140915, 0.085280, -2.326496, 0.418783, 0.016176, 0.686528, -0.627661, -2.044782, 0.762335, -2.777923, -0.539664, 0.490943, 1.338368, 0.666821, -0.109984, -0.242139, 0.338926, 0.599906, -0.988994, 0.075134, 0.612756, -0.137218, -0.329234, 0.209015, -2.814755, -1.220983, 1.693280, 0.505602, -1.028624, -1.108691, -0.708004, 0.897789, 0.116973, 0.676235, 1.243742, 0.574093, 0.568279, 0.204379, 0.320489, 3.624524, -0.107981, -1.071918, 0.476256, 0.647188, -0.725657, -0.683423, -0.150823, -1.443447, 1.602178, 0.200285, 0.649823, -1.720011, 1.414100, -0.197545, 0.515355, -0.374684, 0.283812, -0.470898, -1.063043, -1.816326, 0.250095, 0.935557, -1.139354, -0.466160, 0.405362, -0.622125, 1.001775, 1.485674, 1.143600, -2.325331, -0.168706, 0.076381, -0.256243, 0.727384, -0.405000, -0.397265, 2.091771, 0.961732, -0.555531, 1.535828, -0.058543, 0.309129, -0.454639, -0.373124, -0.027610, -0.002329, -1.562552, 0.450250, 1.854350, 0.136018, -1.061123, 0.668776, -1.319662, 0.071643, 0.671723, -1.192360, -0.847854, -0.117530, 0.658111, -1.046560, -1.172832, -1.027798, 0.205758, 1.142023, 1.912734, -0.143382, -0.007215, -0.348592, -0.052300, 0.602616, 0.149774, 0.986381, 1.471414, 0.300240, 1.089306, 1.396079, 1.683783, -0.992930, -1.046782, -1.896329, 0.023814, -0.529550, 0.032748, 0.078279, -2.043210, -0.488937, -1.731646, 0.052488, 0.245970, -0.086917, -0.119635, 0.661894, 2.422866, 0.264647, 1.130475, 0.825577, -0.210446, 0.789719, 0.806348, 0.487728, 1.400573, -0.602437, 0.084405, -0.589990, 0.158884, -0.442584, 0.780902, 0.867537, 0.161949, 0.543853, 0.588014, 0.573093, 2.175162, -1.271450, 1.267353, -0.965747, -0.371463, -1.254071, 0.676379, 0.064895, -1.493244, -0.402029, 0.549497, 1.876008, 0.531956, 0.855622, -0.113579, -0.856276, 0.550516, -1.477120, 0.125452, -0.081384, 0.451109, -0.396976, -0.067359, -0.695863, 0.102945, -0.662459, -0.344884, -0.912358, 1.044545, -0.038694, -0.989957, -0.876553, -0.233115, 1.001486, -0.033651, -0.073757, -0.031075, -0.008064, -1.806170, 0.047935, 0.193671, 1.413952, 0.040483, 1.190362, -0.462616, 2.006792, -0.942195, -0.404081, -0.688151, -1.438415, 0.360901, 0.442568, -1.319612, 0.296704, -1.096544, 1.121205, -1.854651, -1.497170, 1.133617, 0.176775, -0.322742, 0.632726, 2.031226, -0.141536, -1.193344, -0.719150, -0.907301, -0.302887, 1.501997, 0.222989, 0.607424, 0.715540, 0.135347, -0.180373, 0.872393, 0.302123, 0.621171, 0.565502, -0.865762, 1.556385, -0.639774, 0.770244, -0.289162, 0.909540, 0.198509, -0.406314, 1.114900, 1.965350, 0.376352, -0.487214, 0.252000, -1.466713, -1.148095, -0.376994, 0.142340, -0.733264, -0.264959, 0.718959, -1.021395, -0.760192, 0.573613, -0.240009, 0.920737, -2.227340, 1.754826, -0.455740, -0.071718, 0.527629, -0.288560, -1.655325, -0.214926, -1.059318, -0.110169, 1.234615, -1.071158, -1.332628, 1.193424, -0.052697, -3.007507, -0.231441, -0.501489, -0.097044, 1.156758, 1.010388, -0.699723, 0.011532, -0.366105, -0.354938, 0.706469, 1.324823, -0.723851, -0.765305, 0.104078, -0.152778, -1.760532, 0.108150, 0.417053, -0.240973, -0.631443, -0.842603, 0.085735, -0.642529, 1.114929, -1.277776, 0.069594, -1.270295, -0.762618, -0.099499, 1.846426, 0.813036, 0.018230, -0.703635, -1.385186, 0.787865, 0.149337, 0.922254, 1.058334, -1.488605, 0.733014, -1.218047, 0.062609, -0.080778, 0.922523, -0.317111, 1.008965, 1.554433, 0.315259, -0.477063, 0.615799, 0.560589, 1.504575, -0.779535, -0.156815, -1.290895, 1.693081, -0.978720, 0.512226, -0.009672, -0.435017, -0.708193, -0.773288, -0.470815, -0.014696, -0.098243, 0.889275, 0.518527, 1.333418, 2.264540, -0.357673, 1.677651, -0.796292, -0.421162, -1.647305, 0.941487, -0.896379, 0.661574, 0.953356, 1.050237, 1.914091, 0.551282, 0.489249, -0.597443, 1.130541, -0.318466, 0.830834, -0.953340, 0.086149, 1.435785, 0.604072, 1.209609, 0.774671, -0.592657, 1.467651, -0.351216, -1.484281, 1.343407, -1.611825, -0.332055, 0.723110, -1.139692, -1.001073, -0.325930, 1.749366, -0.148873, -0.610217, -0.543498, 0.691570, 0.888235, -1.561314, 1.459599, -0.535249, 0.541400, 0.009179, -1.395937, -1.128175, -0.649366, -2.114625, -0.065877, 0.312541, 0.018073, -0.647090, -1.427603, -0.124610, -0.474331, 0.632228, 1.363993, -1.584020, 0.068125, 0.103750, 0.936805, -1.948344, -1.349068, -0.072204, -0.331641, -0.963022, 1.867544, -0.187147, -0.352917, -0.375159, -0.799938, -1.031288, 0.619725, -1.233922, 0.823035, 1.129496, -1.508481, 0.391089, 0.034143, -1.486469, -1.511410, 1.540567, -0.317665, -0.751800, -0.848927, 2.832581, -0.103704, -0.566887, 0.323637, -0.135427, 0.105963, 0.002972, -0.731210, 1.706718, 0.280686, -0.847416, -0.587071, 0.208485, -1.240083, -0.850757, -1.066710, -1.459347, -1.611627, -0.793716, -0.393560, 1.027389, -0.439485, 0.268820, -0.862088, -1.119811, 0.318000, -0.260147, 0.325984, -0.622883, -0.669476, 0.408702, -1.056129, -0.584641, 0.000201, -0.752587, -0.787775, -1.164250, -0.723832, -0.746187, -1.927120, -0.840254, 1.385708, -0.078547, -1.140047, 0.166102, -1.191008, 1.178601, 0.959276, 0.618510, 0.405589, 0.196847, 1.581025, 0.967423, -0.514203, -1.092266, 2.248667, -0.973327, 1.737345, -1.705929, 1.422695, 1.555662, 1.207116, -0.733619, -0.009778, 1.435663, 0.167343, -0.979807, -1.046875, -0.735424, 0.845894, 0.153676, -1.047022, 0.701910, 1.023052, 1.084728, 0.371670, 2.275627, -0.458659, 1.762021, -0.151062, -0.459453, -0.346671, -0.439336, 0.138806, -0.071424, 1.075717, -0.707650, -1.222287, -0.326649, -0.365195, -0.631663, -0.452039, 0.076999, -0.453122, -0.758912, -0.603327, -0.946270, -0.568353, 0.655457, 0.228447, -1.157819, -0.140629, -0.815454, -0.364001, -0.907113, -0.252045, -1.557672, 1.351852, -0.024363, -0.142018, -0.672413, -1.739248, -1.996266, 0.644202, 0.169764, 0.561553, -0.785866, -0.596929, 0.816867, -0.039996, -0.239989, -0.885165, -0.459998, 0.368302, -0.012020, 1.504429, 1.469093, 1.607059, 0.214752, 0.528592, 1.533930, -0.534178, -0.160462, 0.810724, -0.253174, -0.118833, 0.692363, -0.085343, 0.265335, 2.406784, 0.634014, -0.260212, -0.024009, 0.971677, 0.807658, -1.138677, 0.453462, -0.757718, -0.680201, -0.436209, 0.276405, -1.000322, 0.249727, -1.897274, -1.480437, 0.476978, -0.360568, -0.847952, 0.348301, 0.162966, 1.566202, -0.367893, 0.860830, 1.780864, -0.369717, -0.078052, -0.871633, 0.089699, 0.194816, -1.254903, -0.435643, 1.155469, 0.630962, 1.598219, 0.578034, -1.298599, 0.152819, -1.568090, -0.751830, -0.978385, -0.454237, -0.846124, -0.385268, 0.042639, 0.610340, -0.833527, -1.874566, -0.595565, 0.412910, -0.488504, -1.235172, 2.326921, -0.177846, -0.577322, 0.351844, 0.326709, -1.063931, -0.535155, 0.011826, -0.945323, 2.371784, -0.027007, 2.269670, 0.383736, -1.519508, 0.935869, 0.732636, 1.390427, -0.078902, -0.449151, -0.488681, 1.094915, -0.202084, -0.287595, 0.142216, -0.898288, 2.426931, 0.845492, -0.003604, -0.077900, -0.072413, 0.543166, 1.372370, -0.550238, -0.903998, 1.768091, -1.157348, -0.973716, -2.085474, 1.285981, 0.297159, -0.563190, -0.990179, -0.928343, 0.036833, -0.132404, -2.793431, 0.140091, -0.561387, -0.766239, -0.463243, 0.720224, 2.433175, 0.577626, -0.102106, 0.453248, 1.149690, 0.060122, 0.184904, -0.086450, 0.222498, -0.269881, -1.756782, -0.212303, 0.348684, 0.063343, 0.479133, -0.627331, -1.242213, -0.885179, -1.534372, -1.079785, -1.334267, -0.946222, 1.621160, 0.765204, -1.648988, 0.154881, 0.588840, 0.001410, -0.856360, -0.693779, -0.593685, 0.636250, 0.527808, 0.391954, 0.056132, -0.915853, -0.785997, 0.354604, 0.048352, 0.482858, -1.549876, 1.140285, -0.729221, -1.000013, -0.238574, 0.009340, -0.850482, -0.096991, -1.063285, -0.254214, -0.269767, -0.314655, 0.538193, 0.731428, -0.129746, -1.956473, 0.700639, 0.620613, 0.330232, -0.752340, -0.109973, 0.342319, 1.606716, 0.399675, 0.540330, -1.416298, 0.053976, 1.417298, -1.874458, 1.070427, -0.199754, -1.608628, 1.103573, 1.588237, -0.520360, 2.218319, 0.946560, 0.782908, 1.249461, 1.181448, -1.122672, -0.953556, -0.140751, 1.528455, 0.497748, -1.076518, 1.041024, 0.312284, -0.210207, -0.169994, -1.827092, 1.115518, -0.652308, -1.621547, 1.297407, 0.709014, -2.372253, -0.410997, 0.167149, 1.097231, -1.976804, 1.373858, -0.905328, -0.057656, -1.195878, 1.042341, -1.602360, 0.462578, -0.849047, -0.932067, -0.823945, 1.781272, 0.363393, 0.286439, -1.312072, 0.100421, 0.864303, -1.370142, 0.512092, -2.117177, 2.141616, -0.741381, -0.326326, -0.652323, 0.911839, -0.490780, -0.167039, -0.325924, -1.554214, -0.287802, -0.376901, -1.526887, 1.817247, 0.668049, -0.201002, 1.068239, 0.614162, -0.688809, 0.617680, -2.282654, -0.369808, -0.868731, 1.832154, -0.112420, 2.153309, -0.472138, 1.746971, -0.158361, -1.330890, -1.004652, -1.304650, 1.164770, 0.598732, -0.678409, -0.649571, 0.374289, -0.366423, -0.830665, 1.085109, -0.147578, -1.173575, 1.365459, -0.240607, 0.585568, 1.074867, -1.771816, 0.350242, 0.542322, -0.903360, 0.779767, -0.455828, -1.087029, 1.143988, -1.087878, -0.338279, -0.006980, 0.206698, 0.573161, 0.405787, -0.170474, -0.435998, -0.853423, 0.626173, 0.954629, -0.851737, -1.767429, 1.012765, -1.027125, 0.084180, 1.653846, -0.017657, -2.041177, 0.478052, 0.301108, 0.794047, 0.326979, -1.696737, 1.239793, 0.817544, -0.544289, -1.079586, 0.480169, 0.697885, 0.029189, -0.157003, 0.244460, 1.471116, -0.058096, -0.335356, 0.846185, -0.706565, 0.893403, 0.064045, 0.599305, 0.777811, -0.327337, -1.161725, 2.090903, -1.326161, -0.725093, 0.899056, -0.310031, 0.595842, -1.982696, -0.449979, 0.321119, 0.298156, 0.428420, 1.595750, -0.426936, -0.019715, 0.544453, 0.529716, 0.950191, 0.161947, 0.216113, 0.021033, -0.859725, -0.311713, -0.044644, 1.123937, -0.388754, -0.457174, -1.975546, 0.253457, -0.143959, -1.257514, 1.608866, 0.903306, -1.594638, -1.004951, -0.747047, -0.465666, -1.048783, -0.784695, -1.166549, -0.079232, 2.567748, -1.117581, 0.466456, 1.777307, -0.754517, 1.052868, 0.842280, 0.407805, -0.438280, 2.096974, 1.599941, -1.144482, 0.706852, -1.079994, 0.446117, -1.588874, 0.153943, 0.146844, -1.031799, 0.044539, -0.077193, 0.546758, -0.220017, -0.961376, -0.194828, -0.623218, -0.677772, 0.770816, -1.187404, -0.468903, -0.558702, 0.077340, -0.589303, -3.303533, -1.043170, -0.552415, 1.136450, -0.528130, 2.127850, -1.585950, -1.345437, -0.114537, -4.300495, 0.925318, -0.632387, -0.778907, 0.161790, 1.695711, -0.044800, 0.293022, 0.606354, -1.381420, -1.688716, -0.366741, 0.739439, -0.851905, 0.077586, -0.817667, -0.648724, -0.079391, 0.092442, -1.654611, -0.380085, -2.359384, 1.422481, 0.341910, -0.367495, 0.139648, 0.648311, 0.002428, -0.543509, 0.638240, -0.719029, -0.973774, -0.585278, 0.887388, 0.623954, 0.637385, 1.235658, 0.536885, 0.840931, 1.843361, 0.016616, 0.186860, 0.748575, 2.052685, 0.946707, 0.714075, -0.867320, -0.349556, -0.232103, -0.788715, -0.059042, -1.367973, -0.816085, 0.363620, 1.263519, -1.900187, 1.133963, -0.170226, 0.395506, -0.050084, 1.661634, 0.187009, -0.275987, 0.532311, -0.792247, -2.209967, -0.174388, -0.503377, 1.043901, 0.377315, 0.878469, 1.666189, 0.166155, 0.959415, 0.293677, -0.547424, -1.362808, -0.224272, -0.881520, -0.981233, -0.608290, -1.230971, -1.684822, -0.285943, 1.015244, -0.462072, -0.906668, 1.921854, 0.834137, 1.904203, 1.734076, -2.155846, 0.447119, 0.113841, -0.105290, 1.140077, -0.635905, 1.161924, -2.251748, 0.265711, -0.485624, -0.335880, -1.445401, -0.090981, 0.506388, -1.738436, 1.396771, -1.923806, 0.108555, -0.403277, -0.952693, -1.975905, -0.589969, 1.068580, 0.474613, -0.207443, -0.941785, 0.313337, -0.338199, -0.504333, -1.717215, -1.175869, 0.506519, -1.085890, -0.807780, -1.406470, 0.812941, 0.715761, -0.760918, -1.890742, -1.925585, -2.049034, -0.331508, -1.221669, -0.160516, -0.069893, 0.004622, 0.969929, -2.446832, 1.740517, -0.695053, 0.477487, 0.505786, -0.566565, 0.045836, 0.561914, 0.082420, 1.275409, -0.079680, 1.554209, 0.297980, 1.545889, 0.056693, 0.929750, -0.800087, 0.174759, -2.121391, -0.425979, 0.494141, 0.410757, 0.484254, -1.115728, 0.595760, -0.141025, 0.215541, 0.069802, 0.710761, -1.362658, -0.911008, -0.997132, -0.309394, -1.834935, -1.014773, 0.265875, 0.023405, -0.946596, -1.590703, -1.228491, 0.870008, -0.340985, -0.070390, -0.818430, 0.343354, 0.487150, -1.982794, 1.011562, -0.285269, -0.328664, 0.065852, 0.708075, -0.077594, 0.242811, -0.212249, -2.497117, 0.048809, 0.660148, -1.865733, -0.975017, 0.949623, 0.690463, 0.848092, 0.969258, 1.463848, -0.822141, -1.599392, 0.067922, -0.156459, 0.479083, 1.138052, -1.001565, 0.013482, -0.712189, -0.382242, -0.509447, 0.208836, 0.049709, -0.843975, 0.715524, 0.547512, 1.015411, -0.172784, -1.112108, -0.776726, 0.966446, -0.159367, -0.589542, -0.596102, 0.307302, -0.255558, -0.316782, -1.974549, 0.160857, 0.911458, 0.035802, -0.674841, -1.071291, -0.951451, -0.506916, -0.336920, -1.328063, 1.967865, 0.092645, -1.456744, 0.276830, -1.130429, 1.217138, -1.679936, -0.630305, 0.825974, -1.209480, 1.591581, -1.723964, -0.816020, -1.048776, 0.490735, -0.475880, -0.437219, 0.188528, 0.137812, -0.544941, -0.067159, -0.739706, -0.552998, -1.000327, 0.402042, 0.407939, 0.525162, 0.731016, -1.266692, -1.411585, -0.306509, -1.058082, 0.033268, -0.255101, 1.359707, 1.967774, 1.511500, 0.762854, 0.118548, 1.599814, -0.615524, -0.048723, 0.488591, 0.375427, -0.038320, 0.288628, -0.103925, 0.464141, 1.240456, 0.272748, -0.596565, 0.223885, -0.735085, -0.188305, -0.797489, -1.422948, 0.304770, 0.208513, -1.319620, -1.178728, 0.792189, -0.454396, 0.621427, 0.750056, 0.046164, -0.571839, -2.198831, -0.557676, 0.504787, -0.340769, 1.155886, -0.602151, -1.350994, 0.183326, 0.093178, 0.139263, -0.499876, -0.481268, -0.954176, 0.126912, 0.116863, 0.765332, 0.205981, 1.341605, -0.257970, 0.183472, -1.824464, 1.337553, 0.334509, -0.061754, -0.234325, -0.100152, 0.330343, -0.424811, -1.439790, 1.195658, -0.595843, -0.259344, -2.044168, 0.064204, -1.652589, -0.321069, -0.553556, -0.832698, 0.446229, -0.861846, -1.806791, -0.617371, -0.742199, -2.485753, 1.249662, 1.421692, -0.797433, -0.802611, -0.225920, -0.261215, 1.820470, -1.821068, 0.966022, -1.272230, -0.142168, 0.865661, 0.848400, 0.611056, 1.000821, -1.189157, -0.380715, -0.641966, -0.008629, 0.268261, 0.722904, -0.659296, -0.685737, 1.440202, -0.573664, -2.913980, 0.933113, -1.917645, 1.351861, -0.616408, -0.477297, 0.862531, -0.572179, 0.874445, 0.260035, -1.265886, -1.105464, 0.865375, 1.365638, -0.292919, -1.419697, 1.938201, 2.356994, -0.044798, -0.973055, -0.167109, 0.351039, 0.340722, -1.461834, 1.426527, -0.185248, 0.773286, 0.484805, 0.819893, 0.211411, -0.651001, -0.355170, 1.774631, -0.358988, -1.109809, 1.330151, -0.355999, -1.124707, 1.063322, 0.345758, -1.876200, -1.120688, -0.767086, -2.450008, -0.501714, -0.528775, -0.575405, -0.828807, 0.855159, -1.767087, 2.053926, 0.211529, -1.357369, 0.573687, 0.828535, 1.517782, -0.308071, 1.303685, -1.689624, -1.065987, -1.741522, -0.897759, -1.484677, 0.306969, 0.512068, 0.467876, -1.774692, 1.742781, -0.482540, -0.769283, -0.361696, -0.446929, -0.018232, -0.818328, -0.384064, 0.238841, 1.017175, 0.797651, 0.862126, -2.394478, -0.685041, 1.141945, -1.219869, 0.749380, 1.208255, -2.420062, 0.082417, -0.605711, -1.090430, -0.634442, 0.291487, 0.551130, 0.146109, 0.966412, -0.377455, 1.150829, -0.249140, 0.102413, -1.299381, 0.847570, -1.151470, -1.402707, -0.280173, -0.329089, -0.632742, 0.609246, 1.443998, -1.252176, -0.142825, -0.991600, 1.400027, 0.861248, -0.296644, 0.744214, -0.754783, -0.625774, -0.463525, -1.249192, 0.158552, 1.489001, 0.334800, -0.329807, -0.135256, 1.075552, -1.358308, 0.929805, -0.376771, 0.826095, -0.954144, 0.478493, 0.585142, 0.269756, 0.157139, -0.620211, 0.310792, -0.256908, 1.776156, 1.336898, -2.289882, -0.446814, 1.089413, 1.598865, -1.099717, -0.899428, -0.107001, -0.314352, -1.160159, -0.378809, 0.466047, -0.309189, 0.615682, -2.061841, 0.157211, 0.341351, -0.894049, -0.513637, 0.988657, -1.150672, -0.489670, -1.102414, 0.056941, 0.766576, 0.763492, -0.840921, -1.135290, -0.262023, 0.935517, 0.589387, 0.312873, 1.666263, -1.146234, -2.163281, -0.942766, 0.158120, 0.307408, 0.262979, 0.047560, -0.015414, -0.118879, 0.557691, -0.383128, -0.575649, -0.123407, -1.248606, 0.351627, -1.961615, -0.475022, -0.082092, 0.756998, 0.481618, -0.933765, -0.387378, -1.044283, 0.444688, -2.110740, 0.882128, -0.192984, 1.581900, -1.505186, 0.938435, 0.799770, 1.165289, 3.024083, -0.206379, -0.100118, 0.782040, -0.444366, 0.636295, -0.461406, -0.136020, -0.479741, 0.048873, 1.005753, -1.541248, 0.492095, -1.258456, -0.883361, -0.198476, 0.733936, 1.512280, 1.325008, -0.690003, 0.674963, 0.021092, 0.464440, 1.246704, 1.231883, 0.238418, -0.820233, 0.393607, -1.380600, 1.094744, -0.556734, 1.299303, 1.089489, -1.127183, 0.193055, -1.021661, -2.162528, -0.238160, 1.853278, -0.535029, 1.064245, -1.025247, 0.030453, -0.970250, -0.726249, 0.522500, 0.625467, -1.975249, 1.210737, 0.727929, 0.852778, 1.331287, -0.025068, -0.089720, 1.173838, 0.356005, 0.021698, 1.572658, -0.701724, 0.001808, 0.326351, -1.064895, 0.335627, 1.420564, -1.447721, 0.048674, 0.120460, 0.192077, -0.159222, 0.620979, -1.132691, 0.885596, -0.672108, 2.108951, 0.590129, 0.004810, 0.551644, -1.410655, -0.591229, -1.774089, -0.472742, 2.436532, 0.016593, 0.762421, -0.294313, 0.128433, 0.176181, -1.316388, 0.476815, -2.096947, -0.504716, -0.338564, -0.966901, 1.216820, 0.153871, 1.074961, 0.282674, -1.091407, 2.347421, -1.042338, -0.022819, 0.318516, 0.057826, -0.165713, 0.266254, 0.697009, -0.816301, 0.192424, 0.605237, 0.893806, -0.442881, -1.431923, 2.216052, -0.541955, 0.140457, 0.630794, 0.658994, 0.063157, 0.007512, 0.287694, 1.829861, 0.775708, -0.179263, -1.828487, 2.307510, 0.584948, -1.051735, -0.635638, 0.529219, -0.275500, -0.477878, 0.151203, 0.033712, 0.784343, 0.564970, -0.387843, -1.125990, -1.917728, 1.454181, -1.629448, 0.192831, 0.745016, 1.751915, -0.179042, -0.819542, -0.095948, -2.742397, 0.653421, 0.982961, 1.460629, -1.362661, 1.510778, 0.824519, -0.275595, 0.354997, 0.488819, 2.258819, 0.359619, -1.283820, 0.897959, -1.922831, -1.211657, -0.786508, -0.335672, -0.066206, -1.885398, 0.106196, -1.075324, -0.130771, 0.936019, 1.199241, 0.818597, -1.295691, -0.252380, -0.580393, 0.718272, -0.219422, -0.083880, 0.817375, -0.477985, 0.342383, 0.880923, -1.288045, -0.107524, -0.291669, -0.782096, 0.243727, 0.085524, -0.525933, 0.431572, -0.983014, -0.880919, -0.301686, 0.111170, -0.353627, 0.147223, 0.644625, -0.010997, 1.672121, -0.647457, 0.854281, 0.129677, 1.886402, -1.613103, 1.083120, 1.666750, -1.137492, -0.193517, 0.481021, -0.777120, -0.636568, 1.088941, 0.169902, 0.514698, 1.019902, 0.618131, -1.584765, 0.950636, 0.091505, 1.036228, 0.804537, -0.568730, 0.419557, 0.424344, 0.613427, -0.565812, -0.561972, -0.450024, -0.150461, -2.487002, -0.772121, -0.789989, -0.601415, 1.164385, -0.989414, 0.172397, -1.331528, -0.946586, 0.646704, 0.481265, -1.474057, 1.019306, -0.378230, 0.152290, 1.763388, -1.424848, 1.907498, -3.040169, 1.664067, 0.629568, 0.703467, -0.895947, 0.097275, -0.199917, -0.108095, -0.778527, -1.699217, 1.018501, 0.375550, 1.372404, -1.116008, -1.420740, -0.423042, 0.221206, -0.534473, 1.665612, 0.037007, -1.744174, -0.168484, -1.889772, -0.253912, -0.865062, 1.123276, -0.171041, -0.557752, -0.544259, 2.175464, -0.924443, -0.868644, -0.204754, -0.421062, 0.173582, 0.311574, -0.250844, -1.658209, -1.277540, -1.286674, 0.520298, 1.740611, -0.238448, -1.193111, 0.238622, 1.807017, 0.273297, -1.451350, 0.320300, 0.034210, 0.409694, -0.019713, -0.729223, 1.203844, -1.094943, -0.065545, 0.478520, -1.504856, 0.309317, 1.420546, -0.193712, 0.880712, 1.616937, -0.234721, -0.619091, 1.839139, 1.640983, -0.153224, 0.299766, -0.196582, 0.604506, -1.481387, -1.129494, 1.480800, 0.483069, -0.181322, 0.633865, 0.468024, -1.259344, -0.772260, -0.090819, 0.045058, 1.221004, 0.309356, -0.795301, -0.322054, -0.747134, 0.942645, -0.855732, 0.571040, 0.418151, -0.311619, 1.451395, -1.253479, -0.816530, -0.844545, 0.465934, 0.142660, -1.574321, -0.607416, -0.865954, -1.985933, -0.357751, -2.003364, -0.165155, 2.120625, 0.424884, 1.625462, -0.635548, -0.828839, 0.962227, -0.458569, -0.263883, -0.003447, -0.811828, 1.466801, -0.861442, 1.817312, 0.763435, -0.077283, 1.171337, 1.852980, -0.825663, 0.380816, -0.763107, -1.273469, 0.050053, 1.128880, -0.529200, -0.491573, 0.518026, -3.078030, 1.453127, 0.168322, -1.354980, 0.054666, -0.483361, 0.086041, -1.201428, 0.910132, 1.136404, -0.822585, 0.583446, -1.146909, 1.098380, 0.492739, -1.194805, -1.016227, -0.906808, -0.923640, 0.064073, -0.993246, 0.267169, -2.204418, 0.137569, -0.545028, -0.088738, 1.513250, 0.174449, 0.795486, 0.742522, -0.746636, 0.508116, -0.132021, 1.098349, -0.252487, -0.686360, 0.895944, -2.132263, -0.394777, 0.741522, -1.430188, -0.150352, -0.534067, -1.836780, -0.145386, -1.950096, 0.612955, -0.126225, -1.251469, 0.652834, -2.065746, 0.217627, -1.366868, -1.038746, 0.078324, 0.008992, -0.592714, 0.004255, -0.615789, -0.054335, 1.936118, -1.043879, -0.680675, -1.986930, 0.177496, -0.491806, -1.685774, 1.324623, 2.353280, -0.011818, -2.221364, -0.197860, 0.934152, 1.032305, -1.041719, 1.736700, -0.724483, 0.039847, -1.148865, 0.377469, 0.367587, -1.228222, 0.845540, -0.122739, 0.534080, 0.826322, -1.324016, -0.306079, -0.528325, -0.233354, 1.066766, 0.501423, 1.135994, 0.214983, 1.068522, 0.537713, -0.859421, -0.100945, 0.367885, 0.100765, -0.446465, 0.467550, 0.195550, -0.795318, 0.723142, 1.315103, 0.113011, -0.803484, -1.844653, 1.593148, -0.679890, 0.633723, -0.651584, 2.387120, -0.559977, 1.153716, -0.117818, -1.709053, 0.537448, 1.140011, 0.388794, -0.586205, -0.652244, 0.582954, 0.572474, -0.486873, 0.469235, -0.835635, 1.059082, 1.087970, -0.869034, 0.550068, -1.201545, 1.172184, -1.311114, -1.168822, -0.854887, -0.988639, 0.652909, -2.012884, 2.881532, 0.385573, 1.328973, -0.406575, 0.357078, 1.203155, 2.004030, 0.168714, -0.185673, -0.900449, 0.198355, -0.666205, 0.589277, 0.590101, 1.282242, -0.965786, 1.271261, -1.952521, 1.558415, -1.673966, -0.533179, 0.121260, -2.861208, 0.223961, 0.209302, -1.273812, -2.248562, -1.150613, 0.657367, 3.058783, -1.890622, 1.149055, -0.726599, 2.517329, -0.804355, -1.732042, -0.665235, -1.699141, -0.006095, -1.908328, 0.113505, -0.279544, -0.390446, -1.757928, 0.572983, 1.184147, -0.133289, 0.097485, -0.538614, 0.174600, 0.167428, 0.201676, -0.526435, -2.325884, -1.249860, 1.076213, 0.046791, 1.713099, 2.231667, 0.122428, -0.492444, 0.103533, 1.546822, -0.242880, 1.092226, -0.194675, -0.230519, -0.396828, 0.395040, -2.256280, 2.101752, -1.612372, -1.471967, 0.567622, -0.362724, -0.822732, 0.051362, 0.232761, -1.345580, -1.438230}, + { -0.310151, -1.641493, -1.683665, -1.581617, -1.556019, -0.116435, -1.287109, -0.966370, -0.089292, -0.211547, 1.763310, 0.579855, -1.045628, 0.436643, 0.261845, 0.733646, -0.396500, -0.378268, 0.603173, -0.280098, 0.924935, -4.027768, 0.153613, -1.119465, -2.695040, 0.877621, -0.015011, 0.379179, -0.697479, 2.227116, 0.843324, -2.411422, 1.100514, -0.646175, -0.407407, 0.774470, -0.059263, 0.068859, 0.807068, -1.031870, -2.000034, -0.105345, -0.559362, -0.083196, -0.427561, -0.935833, -1.558999, -0.303375, -1.066436, -0.134515, 0.720490, -0.393071, -0.245085, 1.327125, -0.220163, 1.293344, 0.650545, 0.319051, -0.240703, -0.727662, -0.031034, 0.061075, -0.110715, -1.196082, 0.593898, 0.346634, 0.876513, -0.117547, -2.411158, 0.597994, 1.512122, -0.912695, 1.315173, -0.781762, 0.978962, 0.268485, -0.372545, 0.076102, -0.866315, 0.589567, 0.888052, 1.358490, -1.514236, 0.230478, 1.034699, 0.546458, 0.358096, -2.007857, -1.543755, -0.772075, 0.052994, -0.933745, 1.866748, -0.558237, -1.004363, -1.252712, 0.315357, -0.203742, 0.345551, -0.349825, 1.221299, 0.301064, 0.390154, 0.019005, 1.667327, -0.377088, -0.297350, -0.162071, -0.491520, -0.870485, 0.703710, -0.439612, 1.075361, -0.748508, 0.315140, -2.672870, -0.294738, -0.310354, 1.946445, 0.253400, -0.375124, 1.511451, 0.686464, 0.911366, 0.194062, -0.458325, -0.196889, -1.567737, -1.187004, -0.275806, 1.240922, -0.791952, 0.950935, -0.873036, 0.328712, 0.308279, -0.582859, -0.854740, 0.950263, -0.151132, -1.356655, 1.183778, 0.756249, -0.154072, 0.190848, -0.870682, 1.205910, -0.332975, -0.005420, 0.610894, 1.967734, -0.371011, -0.502420, 0.905882, -0.475590, 0.275417, 1.430607, 1.296125, -0.067216, 1.404206, -0.383606, -0.569027, 0.193384, -0.510845, 0.203063, 0.571223, -1.494977, -0.609065, -0.087508, 0.493762, -0.042944, 0.731347, -0.927992, -1.050806, -0.152273, -0.121183, 1.115768, -0.292373, -0.725986, 0.748516, -0.569663, -0.390570, -0.300701, 1.460526, 0.147317, -0.035903, 0.984443, -0.143064, 0.380947, 0.498990, 1.140561, 0.255050, -1.428924, -0.580013, -1.232750, 0.225186, -1.279091, -1.844107, 0.519803, -0.271412, -0.793659, 1.333586, 0.676960, -0.887825, -0.287264, -0.407759, 0.565029, 0.834353, 0.070054, -0.105081, 2.022605, -1.062835, -0.273014, -0.825507, 0.485221, -0.128918, 0.569196, -0.073302, -0.614044, -0.231966, 1.473376, 1.065993, 0.120870, 0.340169, 0.551432, -1.128610, 1.066085, 1.443780, -0.081021, 0.627802, 0.627782, 0.698831, 0.410732, 0.737487, 1.662959, -0.625680, 0.769234, -0.871365, 0.155800, 0.334328, 1.124731, -1.542722, -1.143543, 0.054246, 0.932913, 0.838537, -0.614754, 1.241706, -0.848885, -1.055196, 1.483312, -1.149844, -1.305572, 0.203506, 1.807135, -0.227899, -1.209714, -0.097224, -1.331722, -0.123500, -0.204608, -1.271745, -0.573085, -0.325283, -1.784665, 1.137962, 1.286999, -0.635914, 0.011226, 1.555348, 1.911332, -0.388874, -0.789669, 0.344745, 1.082035, -0.172750, -1.410603, -1.313485, -1.390669, 0.511204, -0.260211, -0.386496, 0.206977, -0.975190, 0.584153, -0.695019, 0.594575, -0.596553, -0.136340, -0.153377, -0.994783, 0.907626, -0.642956, -2.737844, -0.656160, 1.322876, 0.403209, 0.367092, -0.727361, -0.079238, 0.616475, 0.482636, -0.492358, -0.670880, -1.324560, 1.606926, -0.481022, -0.234074, -0.603051, -1.673742, 0.896434, -2.246106, -1.000184, -0.468452, -0.965423, -0.821975, -1.904006, -0.878640, 2.397516, -0.990474, 0.514271, 0.091049, 0.446070, -0.521314, 1.093349, -1.001414, -0.954734, 0.370627, 1.362720, -0.669483, 0.300900, 1.034795, -0.198767, 1.066936, -1.675233, -0.109229, -0.685550, 1.011421, -1.617687, 0.572178, 0.140233, -0.134989, -1.772660, 0.681099, -1.634689, -1.012262, -1.148095, 0.529883, -0.407684, 1.062071, -0.113872, 1.945737, -0.575557, -0.264226, -0.020241, -0.602449, 1.246558, -1.544465, -0.512249, -1.066577, 0.093703, 1.682195, -1.705918, 0.580953, 0.196687, -0.540479, 0.122659, -1.501659, 1.405684, -0.613692, -1.392747, -0.131502, 0.691649, 0.472306, 1.002877, -1.098071, 2.402353, 1.660777, -2.961617, -0.357633, -1.701014, -0.183279, -0.408472, 0.051728, 0.533615, 0.009234, -0.010222, -1.194633, 0.321439, -0.278805, -0.181466, 0.744299, 0.351215, -1.382850, -0.161837, -1.342715, -0.574785, 0.010487, -0.449983, 0.385413, 0.600294, 1.524382, -0.397665, -0.597690, 0.940345, 1.160229, -1.168342, 0.253787, 0.030955, -0.611624, -0.120345, 1.550938, -1.101529, 0.081941, 0.441206, -1.908851, 0.581606, -0.956610, 0.397061, 0.554236, 0.633761, 0.602822, -0.515505, 0.028329, -1.087766, -1.004993, 0.332241, -0.362820, -0.880724, 1.039595, 0.694672, -0.564924, -1.217957, -0.491260, 0.291386, -0.519124, -0.206957, 0.570894, -0.550539, 0.325174, -0.116496, 1.018754, -0.119980, -0.422186, -0.911080, -1.127013, 0.557183, -0.741349, 0.417320, -1.845168, -0.476819, -0.428370, 0.908760, 0.309934, -0.175018, -2.417913, -0.181377, -0.118255, -0.828087, 0.033081, -0.891520, -0.734479, -0.881171, 0.197650, -1.576140, -0.103693, -0.046928, -0.889378, 1.213214, -2.124298, 1.053849, 2.803650, -1.182848, 2.114977, -0.897833, 0.737297, 1.267197, 1.323833, 1.463259, -0.261870, 0.221097, 1.595391, -0.131520, 0.568046, -0.790963, -0.822192, -0.835176, 1.614148, 1.067247, 1.303380, 2.334189, -1.938402, -0.778444, -1.239119, 0.720032, -1.162438, -1.092555, -0.763218, 0.525978, -1.553559, -1.526637, -0.095601, 1.053814, 0.441394, -1.123411, -0.164210, -0.486548, 1.166285, 0.288927, 0.407736, -0.051392, 1.205685, -0.443430, -2.251801, 0.139248, -1.504257, -0.583445, -1.534388, -0.230572, -0.196783, -3.209231, 0.612040, -0.200021, 0.677319, -0.774423, -1.594781, 0.500904, 1.427571, -0.002244, -1.288796, 1.020730, -1.391180, 0.816931, -0.563466, -0.890417, 0.087841, -1.058150, -0.094071, -1.714016, 0.705109, -1.059075, -0.520994, 0.684637, -0.679719, 0.969776, -1.003722, -0.196672, 0.472371, -0.340139, -0.212567, 1.521100, -0.479488, -2.244764, 1.353559, 0.211539, -0.911525, -0.291194, -1.369187, -0.255942, 0.014644, 0.206609, -0.447558, 0.179153, -0.600172, 1.487605, -0.046165, 0.633974, 0.741361, -1.266746, 0.669063, -0.465436, 0.950921, -1.228601, -0.463809, -0.464304, 0.499068, -0.201404, -0.748462, 1.770598, -0.281201, -1.431788, 0.258918, 1.616739, -0.327229, -1.762581, 0.756684, -1.270479, -0.703220, -1.431333, 0.156219, 0.233116, -0.581765, 1.769609, 0.135386, -0.524163, -1.748615, 0.760809, -0.687220, -1.236011, -1.140508, 0.511009, -0.152677, 0.681075, 0.221346, -0.565020, -0.662267, 1.448199, 0.579600, -0.859085, 0.641966, -0.329431, -0.033679, 0.855319, 1.574513, -1.373427, -0.222315, 0.279325, 0.810730, -0.596319, 1.562196, 1.070140, -0.071247, -1.385282, -0.776424, -0.929720, -0.240324, 0.572532, 0.566468, 1.043381, -0.766918, -0.433388, -0.824041, 0.105005, -0.426479, -0.476288, -1.379433, 0.328408, 1.025340, 0.545463, -0.760219, -1.181240, 0.977242, 0.409170, -0.423137, -0.059377, -2.025424, 1.280215, 1.248784, 1.458418, -0.662637, 1.229671, 0.638619, 0.098351, -0.059211, 0.464381, 0.865670, 0.388890, 3.230340, 0.875133, -0.109925, -0.147007, 0.396882, 0.413388, -0.135330, 0.067621, -0.748232, 1.022368, -0.002326, 0.176242, 0.983975, 0.444501, 1.375921, -0.176766, -1.201070, 0.002097, 2.248635, 0.647923, -0.196902, -0.902357, -0.887038, 2.005423, 1.208699, 2.898546, 1.236021, -0.581685, 0.278169, -0.581965, 0.241766, -1.703681, 0.929086, -0.256205, -0.402781, -0.078960, -1.494719, -0.304907, 0.689507, -0.104299, -0.444205, -0.519252, 1.121699, -0.574500, -0.247439, -0.355541, -0.130872, -1.393619, 0.165875, 1.164973, 0.252271, -1.702936, -1.327904, -0.471345, 0.094060, -0.379685, -0.119167, 1.536727, 0.232353, 1.401327, -0.345654, -0.551768, 0.286880, 0.977198, -1.085671, -0.335262, 1.388834, 0.309359, 1.463658, 1.031883, -0.103777, 0.957895, 1.358527, -0.307526, 1.054264, -1.478447, -0.711435, 0.451137, -2.019896, -0.811723, -0.208723, 0.734780, -1.706889, 0.079485, -0.111662, -0.434619, -2.141463, -0.024723, -0.239503, -0.872730, -0.017037, -0.112162, 0.268361, -1.524560, -0.170977, -0.917587, 0.645516, 0.984182, -0.223178, 0.524829, 0.299534, 0.217136, -0.910675, 0.668189, -0.803499, -0.349058, -0.367616, -2.212027, -1.494074, 0.202834, 1.204517, 0.505635, 0.453109, 0.371346, 1.300557, -0.529976, 0.190081, 0.938478, -1.940067, -1.391734, -1.617529, 0.928458, 0.054658, 0.335628, 0.001279, -0.244629, -0.038825, 0.448149, 0.269513, -2.270245, 0.082001, -0.426183, 1.473616, 1.191829, -0.364693, 0.973891, -0.233262, -0.507476, 0.299866, -0.863028, -0.660551, -0.239455, -1.072409, -1.834458, -0.497106, -0.513471, -0.566059, -0.792595, -0.508657, -1.449835, 0.116803, -0.717022, 0.890431, 0.889788, -0.350094, 0.986653, 0.015442, -0.956295, 0.226685, -0.740512, 0.413079, 0.860112, 1.236905, -0.630845, -0.931731, -0.147487, -1.422998, 0.402559, 0.579921, 1.271513, -0.963529, -1.024402, -1.439640, -0.393807, 0.467550, 0.797238, 0.108384, -0.390986, -0.262875, 0.654479, 0.856139, 0.232487, 0.767878, 0.924483, -0.531363, -0.740987, 1.066798, -0.561043, 0.740392, -0.566895, -0.363379, 0.247682, 0.644484, -0.344641, -0.804242, 2.148025, 0.217033, -0.153000, 0.950998, 0.551147, -0.610186, -0.177180, 0.909568, -0.343768, -0.670508, 0.718671, 0.490303, 0.170217, -1.490391, 0.593561, 0.436733, 0.499217, -0.836626, -1.197528, -0.588773, -0.597544, -1.802702, -0.029295, 1.081923, 1.588356, -1.588753, 0.240571, -0.445431, -0.046116, 0.271433, -0.131587, 0.806012, -1.463762, -1.134691, -1.386343, 0.810560, 1.020875, 0.007190, -1.056850, -1.568949, -0.059256, -2.179584, -0.483692, -0.217182, 0.328203, -0.684399, -1.970007, -0.324724, 1.307183, -0.140845, 0.203176, -0.111262, -0.023455, -0.020441, 0.917440, -2.455155, -0.914688, 0.817847, 0.435525, 0.174985, 0.438944, 0.485137, -0.186118, 0.160377, 0.081294, 0.406003, -1.665644, 0.999643, 0.631962, 0.812076, 0.630455, -0.253524, 0.227897, -0.598656, -2.095248, -0.657193, 1.101583, 1.349289, -1.815911, -1.092206, -1.926853, -1.295744, -0.099835, 0.048909, -0.184993, -1.185609, -0.301085, 0.379236, -0.124415, 0.555805, -0.304434, 0.109467, -0.333628, -0.686461, 0.869904, -0.703766, -0.489518, -0.139309, 0.016252, 1.215338, 1.332435, -0.714926, -0.623521, 2.100325, 0.958336, 0.597919, 0.285964, -0.302350, 1.134882, 1.264198, 0.058059, -2.245315, -0.982188, 1.426329, -0.930261, 0.427298, 1.099799, 1.612976, -0.998279, -0.119997, 1.255413, -0.428746, -1.137348, -0.043879, 0.215420, 1.824946, 0.303328, 2.110681, 0.408459, 0.002890, 0.439512, 0.879812, -0.590043, 0.799313, -2.001028, -0.679687, 0.110229, 0.030804, -0.598085, 0.963913, -0.205722, -0.528403, 2.269712, -0.631607, 0.389748, -0.046796, 0.974459, 0.153934, -0.382556, 0.152428, -0.859834, -2.198076, 0.212276, -0.108004, 0.895122, -0.748592, -1.785119, -1.272737, 1.385509, -1.542201, -0.282588, 1.646902, 0.394683, -0.345625, 1.255681, -1.489733, 1.278147, 1.789601, -0.116686, 0.276218, -0.576014, 0.480398, 0.564563, 0.090023, 0.342563, -0.659904, 0.646081, -1.617043, -0.127928, -0.179244, -1.258273, -0.339893, 1.884799, -0.314919, -0.647343, -0.675543, -1.846914, -0.205921, -1.041431, -1.602912, -1.013722, 0.202905, -0.427558, 0.480325, -0.265356, 0.691178, -0.841844, 0.595422, 0.257490, -0.211061, 0.443674, 2.164342, -0.964128, -0.610492, -0.394115, -1.044007, -0.702231, 0.163212, -1.083503, -1.427791, -0.544006, 1.351743, 0.023961, -0.858073, 0.405021, 0.203585, 0.399556, 1.308953, 0.370530, 0.778679, -2.003744, -0.490781, -1.137240, -1.093967, -2.007708, 1.014723, -0.303606, -0.950006, 0.086146, -0.619831, 0.055449, -0.339410, 1.257595, 0.448026, 1.419038, 0.202594, 0.487320, 0.948779, 1.788145, 0.305789, -0.121315, -0.575190, -2.008777, 2.231899, 1.415720, -0.520328, 0.408420, -0.876427, -0.047159, -0.251633, -2.315549, 0.443662, 0.022653, -0.051200, -1.455249, -0.305578, 0.704665, 0.218667, 0.036960, 0.606606, 2.255737, -1.572563, -0.415935, 1.001221, 0.188568, -0.723376, 0.173396, -0.801289, -0.139955, 0.606574, 0.606333, -0.918415, 0.084749, -0.771950, 0.878474, -0.113157, -0.679438, 1.498421, -1.075501, 1.023144, -1.234719, 0.980799, 0.164045, 0.414859, 0.551970, 0.128727, 0.115802, -1.212982, 0.473085, 1.188062, -0.302362, 1.039614, -0.717064, 2.174548, -0.139021, -0.889077, 0.364911, -1.019333, -2.179367, -0.236315, -0.606734, -0.880041, -0.038874, 0.246082, -0.049309, -0.309367, 0.353062, -0.950315, 0.832331, -0.796088, -1.044570, 0.893077, 0.854818, 0.134419, -0.399943, -0.396154, 1.005236, -0.042738, 0.848694, -0.055694, 0.132425, -0.350843, 0.821841, 0.610316, -0.282661, -0.292886, 1.793833, -0.577801, -1.402546, 0.994330, -0.449941, 1.533199, 2.157122, -0.170263, 1.691110, 0.809207, 0.837475, 0.404157, 1.172644, -0.856839, -1.302981, 0.553534, 0.435473, 0.555584, 0.251128, 0.363303, 0.183690, 2.546469, -1.365064, -0.993427, 0.446809, -0.209524, 0.027349, -0.677232, 1.718123, 0.093526, 1.223074, 0.003940, 1.341304, 0.256256, 0.453635, -0.477263, -0.257878, -1.252648, 0.124172, -0.648575, -2.087541, -1.018370, -0.079769, -1.798382, -0.206057, -0.289375, -0.256719, -0.677412, 0.144033, -0.336674, 0.246354, 0.450361, -0.417430, -0.420206, -0.502874, -0.308524, 0.887787, -1.253018, 0.705646, 2.798658, 0.810133, 0.615424, -0.945940, -0.108846, 0.602770, -0.242829, 0.494183, -0.723774, 2.298913, -2.140609, 0.167969, 1.731453, 0.798705, 0.833450, -1.081802, 0.896913, -0.553075, 1.281635, -0.463550, 0.603082, 1.334096, -1.198750, -0.549820, 0.260556, -0.860542, -0.797400, -0.277765, -1.915504, 0.825628, 0.337622, -0.351585, 2.237904, -0.241973, 0.053173, 1.222113, 1.083499, -0.415134, -0.947996, -0.465939, -1.502165, -0.053548, 1.496980, -0.656529, -0.149603, 0.605857, -1.023077, -0.573270, -1.280582, -0.557406, -0.146291, -0.038841, -0.216691, -1.577769, -0.196704, -0.904112, 0.584148, 0.649687, 1.968806, 0.288819, -0.525708, -2.805209, 0.901529, -0.523971, -0.051543, -0.480624, 0.665921, -0.524600, 0.417170, 1.019296, 1.705064, 0.449199, 1.202385, 0.200063, 0.587563, 0.707577, -0.194253, 0.411877, 0.459522, -0.976448, -0.492446, -0.119110, 0.999352, -1.018420, 1.033762, -1.123915, 0.072348, -1.551234, 0.032980, 0.013613, 0.279831, 0.575874, -0.552735, 0.992108, -0.338639, 1.669724, -0.205140, -1.432228, -0.213240, -0.203441, 1.256557, 0.381836, 1.317111, -1.252723, 0.605235, -2.336290, 0.450344, 2.135969, 1.632366, -0.703203, -0.103031, -1.083230, 0.324939, 1.380566, 1.518380, -1.286865, -0.396283, -0.686912, 0.043801, -0.171330, -2.167181, 0.106603, -0.073512, -0.709928, 0.496409, -1.606301, -0.082459, -0.522890, -0.258991, -1.465826, 0.285836, -1.252133, 1.644876, 0.458423, -1.120672, 0.495272, 0.860859, -0.862916, 0.493858, 0.231052, 0.333055, 1.078423, -0.430531, -0.426262, 0.739665, -0.051367, -1.536554, -2.138158, 1.224571, -0.416434, 1.642096, -0.306261, 0.854513, 1.630692, 1.299029, 0.785019, -0.128641, 0.878071, -0.430557, -0.661864, -0.463054, 1.450376, -0.778230, -1.100004, -0.691200, 0.060367, 0.433526, -0.314556, -0.895461, 0.902982, 0.694510, 1.841522, -1.441770, 2.002311, -0.209057, -2.192071, -0.295782, -1.235335, -0.570194, -0.187680, -0.538743, -0.314282, -0.969063, -1.213279, -0.702292, -0.595821, 1.987409, 1.436946, -0.236897, -0.621210, -1.929375, 2.243590, -0.180490, 0.905122, -0.272006, 0.724476, 0.881353, -0.497596, -1.092774, 2.150041, -0.723889, 0.332220, -0.146065, 0.921359, -0.250293, -2.020249, 1.197382, 0.100955, -0.347675, -0.356890, 0.779672, 0.722382, -0.478699, -0.109197, -0.533204, -0.881675, 0.214805, 0.433422, 1.055058, -0.148328, 0.662964, -0.307062, 0.303768, 0.113056, -0.678854, 0.960057, -0.684778, -0.601479, 0.642987, -1.016820, 0.919149, 0.027752, 0.040127, -0.400100, -1.700941, 0.327812, -0.960601, 0.066818, -0.868953, -1.226377, 0.813049, -0.125870, 2.407048, 1.660116, 0.307024, -2.974072, 0.016078, -0.598350, 1.093386, -0.557983, -0.474581, -0.268793, -0.941962, -0.546879, 0.344974, -0.937501, 1.950975, -0.916045, 1.245198, 1.504125, -0.189757, 0.745054, 0.063587, -0.765522, -0.779060, -0.765481, 0.371388, -0.232414, 0.734661, 0.484605, 0.923389, 0.946756, 0.767741, -1.552785, 0.247190, -0.942871, -1.426758, 0.105174, 0.583194, 0.342345, -1.668015, 1.322648, -0.543859, -0.592447, 0.177456, -0.965898, -0.375638, 0.884468, 0.064959, 2.742650, 1.124398, -1.718729, -1.031690, 1.620995, 0.535332, -1.034079, -0.745892, -1.957268, 0.361841, 0.504717, -0.255257, -0.819853, 0.548913, -0.088541, -0.107280, 1.124136, -0.366217, 0.764901, -0.439781, -1.687703, -0.359027, 0.056989, -0.652481, -2.371082, -2.023236, -1.138334, 1.095922, -1.061795, -0.077270, 1.112138, -1.757375, 1.879672, 1.005198, -0.003898, -0.302811, -0.362128, -2.424897, -0.204675, 0.369157, 2.291474, 0.279842, -2.648222, 0.281477, -0.292614, -0.609326, -1.584215, -0.577252, -1.414526, 0.234824, -2.030697, -0.261067, -0.611428, 0.965207, -0.134344, 0.678341, 0.343700, 0.483760, 2.277985, 0.248091, 0.068842, 0.847192, -0.021343, 0.010816, -1.063793, -0.157371, 0.213674, -0.644417, -0.411241, 0.025639, 0.384020, -0.868608, -0.505267, -0.448896, 1.591835, 0.448985, 0.122964, 1.176225, 0.308975, -0.051793, -2.101740, -0.041024, -0.466685, -1.528628, -0.939093, -2.123558, -0.087205, 0.301431, 0.302289, 0.648901, -0.455770, 1.454976, -0.026293, -0.110300, -1.185548, 0.162560, 0.340710, 1.294543, -0.749508, 1.169249, 0.424025, 0.271612, -0.059737, -0.589331, -0.020771, 0.730268, -0.882745, -0.287966, 0.154120, 1.157551, 0.922601, 0.579842, 0.089463, 1.590788, -1.666092, 0.727716, 0.414143, -1.515764, -0.551236, -1.228522, -0.151851, -1.213655, -0.435873, 0.242595, 0.088702, -0.689951, -1.055395, 1.238220, 0.127997, 0.965761, -0.283036, 0.147813, 1.754206, 0.405498, -1.992561, 1.762365, -1.084132, -1.073596, -1.878363, -0.839287, -1.099495, 2.436202, -1.300402, -0.064908, 0.098924, -0.151576, -0.415735, -0.261413, -0.575746, 0.343917, -0.979946, 1.461867, 0.279795, -0.053731, -0.700137, 1.116902, 0.445720, 0.519343, 1.301252, -0.824556, 0.290675, 0.471464, -1.664197, -0.587274, 1.773432, 0.076869, -0.478612, -0.997378, -0.608230, -1.146604, 0.612330, 0.587869, -0.467863, -0.830914, -0.434591, 0.823486, -0.307968, 0.803833, 0.356400, 0.119798, 0.994389, 1.646933, -0.319657, -1.143077, 0.238084, 0.073254, 0.290750, -0.496784, 0.127839, -1.134333, -0.475590, 0.342793, 0.561700, 1.083739, -0.621562, 2.007190, -0.749681, 0.306245, 1.410570, -1.027610, -0.607160, 0.526426, -1.053345, -0.662391, 0.999669, -0.267399, -2.100553, -0.107248, 0.428875, 2.392276, -1.260995, 0.838607, -1.438173, -1.543364, -0.173887, 1.161157, -1.656016, 0.768624, -0.503136, 0.242731, -0.797137, 1.457012, 1.194033, -0.219754, 0.787140, -1.074659, 1.075281, 1.488120, -1.631383, -0.880727, 0.903084, 1.710677, -1.608465, -2.258219, -0.760839, -1.488068, -1.009893, 0.316453, 0.247425, -0.436649, 0.594081, 1.520355, 0.365858, 0.479449, 0.396479, -0.317011, -1.829359, -0.861024, 0.389624, -2.236999, -0.998257, -0.436500, -0.646010, 0.255605, -0.108665, -2.391119, -0.715518, -0.306217, -0.129100, -0.773214, 0.124885, 0.053684, -1.027598, -0.439747, 0.971525, -0.586588, -0.654349, -0.224725, 0.881898, -0.926858, 0.036545, 0.577139, 0.646965, -0.760576, 1.764605, 1.315793, -1.383656, -1.295657, 0.567028, 1.313968, 2.156826, 0.622794, -0.577323, 0.966672, -0.162567, -0.166342, 1.071267, 1.346142, 0.631020, -0.446261, -1.328898, 0.313343, -0.147901, -0.841389, 0.222595, -1.015563, -0.361185, -0.544159, -0.780957, -0.306144, 1.295227, -0.198116, 0.595291, 2.193578, 1.139577, -0.948389, 0.779828, -0.104870, 1.307266, -1.220165, 1.471168, 0.529367, 0.376907, 0.104109, -0.652195, 0.989544, -0.643177, -0.699260, 0.071478, -1.316203, -0.715383, 0.034564, -0.225686, -0.417212, -0.932655, -1.355596, -0.543498, 0.549977, 0.665187, -1.051346, -0.024952, -1.021750, 0.908657, 0.396883, -0.666521, -0.919344, -0.933225, -1.349254, 1.280828, 0.300822, 1.487108, 0.073654, 0.798379, 1.840953, 0.096050, 0.251136, 0.426554, 0.075867, 0.818025, -0.702888, -1.547570, -0.297522, -1.040091, -0.622535, -0.548506, -1.736907, 0.281682, 1.684424, 0.412191, 0.257385, -0.985927, 1.380737, -0.621087, 1.157389, -0.921362, -0.752636, -0.214531, 1.910784, -1.778952, 0.945402, -0.432019, 0.984830, -0.943382, 1.006706, 1.012294, 0.261448, -0.510279, 0.201624, -1.683555, 0.890802, -0.211688, 1.077732, -0.639263, -1.678163, 1.711292, -0.100516, 1.304589, 0.604852, -0.365599, -0.010730, -0.952301, 0.107426, -0.070798, -1.157372, 1.055539, -0.391167, 0.345501, -0.060577, -0.913950, -1.936471, -1.686686, -1.226831, -0.343731, 0.042320, -0.698214, -0.471303, -0.060837, -0.004004, -0.807956, -0.639474, -1.626745, -0.777022, -0.167135, -0.716723, 0.211603, 0.701444, -0.079420, 0.765703, 0.172018, 0.487554, 2.338663, 0.204641, -0.628556, -0.908164, -1.524089, 0.895699, -3.181342, 1.838353, 0.941070, -0.181201, -0.077085, -0.037133, -0.745765, -0.341597, 0.358737, -0.607055, -0.960976, 0.341276, -1.718026, 0.507012, -0.185008, 0.496628, -0.115866, 0.254557, 0.858412, 0.452447, 0.068163, -0.948059, -0.867992, -0.294745, -0.171641, 1.307509, -0.536352, 1.572355, -1.285495, -1.583022, 0.609885, -0.545417, -0.567351, 0.017278, -0.472687, -0.539322, -0.738005, -0.040125, 0.238187, 0.225476, 0.195657, -1.121244, 0.524517, 0.867339, -1.223749, 1.100164, 0.192512, -0.424814, 0.213192, -0.726144, 0.057377, -2.277452, 1.454617, -0.431642, 0.968204, 0.286864, -0.864763, -1.835117, 1.137366, 0.855414, -0.805245, -0.415130, -1.920147, 0.101846, 0.071377, -0.995996, 0.113731, 1.397568, -0.154424, -0.559770, 0.017713, 1.083274, -0.217913, -1.286497, -2.510026, 0.198235, 0.440841, -0.588075, 0.286140, -0.129562, -0.532723, -1.131228, -1.967916, -0.562502, -0.595027, 0.692927, 1.506119, 0.927660, -1.429361, -0.352394, 0.063303, 1.241069, 0.821308, 0.580679, 0.342259, 2.192977, -0.061027, -1.330248, 0.371904, -0.709655, 0.258159, 0.435750, 0.059419, -1.496021, -1.258572, -0.884779, -1.229493, 1.417518, 0.922647, -1.193793, -0.556581, -2.006065, -0.915661, -0.080225, -1.148947, -0.587301, -0.902605, 0.946050, 0.233480, -0.090540, 0.440161, 2.058893, 0.516855, 0.627407, 0.361430, 0.745026, -0.914920, 1.360206, 0.516031, -1.467430, 1.161816, 1.197780, -2.351098, -0.139326, 1.524526, 0.923400, 0.489121, -0.993048, -1.734001, 0.945297, 1.220334, 0.331749, 1.684402, -0.353123, 0.175850, 0.168414, -0.172173, -0.998616, -0.875388, -1.447039, -0.846360, -1.000666, 0.415238, 0.615538, -0.618100, 1.020172, 0.565845, -0.592145, -1.146130, -1.457018, 1.207882, 1.496605, -0.849828, 0.508080, 0.003622, 0.328261, -0.701423, -2.800366, -0.183583, 0.355335, 0.481280, 0.507019, -0.085662, -0.721476, 0.699493, -0.177184, 0.195426, 1.372931, 0.829205, -1.648045, -0.080820, 0.233745, 1.047875, 1.427457, -0.909939, 0.744946, 0.475579, 0.333252, -0.263291, 1.990240, -1.365667, 0.917134, 0.441225, 0.673682, -0.916110, 0.405118, -0.474774, 1.917762, -0.697735, -0.036623, -0.980998, 0.263049, 1.467996, -0.034055, 0.349727, 0.678725, 0.158301, 0.803709, -0.507814, -0.038403, 0.307919, 0.857095, -0.097496, 0.924752, 0.025445, -1.237824, -0.214348, -0.027085, -1.736331, -1.239600, 0.248293, 0.509233, -0.386509, -1.181276, -0.152069, 1.553040, 0.696582, 0.525683, 1.597154, 1.901917, 0.805370, -0.698043, 0.649477, 0.602392, -0.016678, 1.092806, -1.774571, -1.435562, 1.890936, 0.086065, -0.924814, -0.591353, -1.121881, 0.197200, 0.238419, 0.279097, -0.100666, 0.264216, -1.421075, -0.454308, -1.724634, 0.282924, 1.083129, -0.838754, 0.225976, 1.307797, 1.058809, -0.031642, 0.645758, 0.317284, 0.724163, -0.198597, -0.906990, 0.213882, -1.088142, 1.040360, 0.821178, -1.045283, 2.308885, -2.524420, 1.119177, 0.076171, 1.262248, -0.446808, -1.195896, 0.075890, -0.900165, -1.757358, -0.718774, 2.174259, -1.032000, 0.096615, 0.157903, 0.791328, 1.081137, -0.885764, -1.850947, -1.183055, -1.507301, 0.712992, 1.732668, 0.901277, 0.016435, -0.280354, 0.840882, -0.210382, 0.142032, -1.124885, 0.127261, 0.672604, -0.363000, -2.047144, -0.855219, 2.181710, 1.751058, 0.153848, 0.438194, 0.697085, 0.420518, 0.038862, -0.221947, 0.122238, 1.160154, -2.507385, 0.933318, 0.083480, -0.243918, -0.462833, -1.409920, 0.273440, -1.463539, -0.835774, 0.111227, 0.909224, 0.835322, 2.172103, -0.918187, -1.175444, 1.129680, 1.078784, -0.153537, -1.893563, -0.960224, 0.538696, -0.871992, -0.067772, 0.758162, -0.883632, -0.842116, -1.591063, 0.083256, -0.171992, -0.981999, -1.731926, -0.688443, 0.998944, 0.501271, 0.958474, -0.555670, -1.501655, -0.075017, -0.461104, 0.255650, 0.704346, -1.337912, -0.823977, -0.244628, -0.687529, -0.098329, 0.074311, -0.598204, -0.076985, -0.120871, -0.990464, 0.770631, 0.611492, 0.268503, 1.004112, -0.033537, -0.533634, -0.190868, 0.246541, 0.721708, -0.159107, 0.971243, -0.508424, 0.050478, -0.373519, -0.608556, -0.462618, 0.352636, 0.034063, -1.038757, 0.112267, 0.508388, -0.985115, -0.906600, 0.477189, 0.114287, -0.497110, 1.734062, -0.070026, 1.023882, -0.248691, 0.300448, -1.759610, 1.276085, 0.857557, -0.072614, 1.019292, 0.237518, -0.888582, 0.097059, -1.039182, 0.076510, -0.590849, -2.305364, 1.030212, 0.864798, -0.430117, -0.408832, -0.242595, -1.267063, 0.795501, -1.928859, 0.376409, 1.295978, -1.117510, 0.280895, -0.876879, 0.091945, -1.255657, 3.164684, -0.845828, -1.349402, 0.988130, -1.029804, -0.195219, 0.075179, -0.632267, 0.017759, -1.341069, 0.822836, -0.283893, -0.406789, -1.505872, 0.927258, -0.622945, -1.971337, 0.077713, -0.038158, 1.411234, -0.694144, 2.075378, -1.479411, -0.003131, 0.868766, 1.517291, 0.307990, 0.541939, 0.453360, -0.144542, -1.692116, 1.079328, -1.769774, -0.618976, 0.555567, -0.791216, -0.428293, -0.256351, 0.653905, 0.386770, 0.817421, -0.549590, 1.713343, 0.201976, -0.434063, 0.225663, -0.269358, 1.769395, 0.956612, 0.420838, -0.443193, -0.257455, -0.426874, 0.050375, -0.423207, 1.757968, 0.799518, -0.000807, -0.056956, 0.896834, 0.719281, 0.561073, -0.191542, 0.415154, -1.456944, 2.303187, 0.217195, -0.493105, -0.334977, 0.566781, 0.521812, -1.376313, 0.278076, 0.030406, 0.015732, -0.661941, 0.298692, -0.880820, 0.914317, -0.399431, 0.626608, 0.038130, 0.152455, 0.445241, -0.365663, 0.076561, 0.717730, 0.161654, -1.670412, 1.087152, -0.023482, 0.950588, -0.775232, -0.612186, -1.959710, 0.313728, 1.046517, -0.985566, -0.193551, -1.296268, 0.925013, 1.223331, -0.776702, 0.575320, -0.083190, 0.072640, 0.769301, -0.923038, -1.320054, 0.082854, -1.710474, -0.372311, -1.412019, 1.723844, 1.000924, -0.467507, -0.484589, 0.036566, 0.313383, 1.179591, 0.020684, -1.160053, 1.247307, -0.807505, 0.020688, 1.742298, 2.024711, 1.184497, -0.008964, 0.609727, 0.490184, -0.202058, 0.258400, 1.085185, 0.833418, -2.779565, 0.555570, -2.094595, -0.186561, 1.142307, -0.918973, -0.149209, 2.213779, -0.920077, -0.025114, -0.520302, -0.393919, -1.789394, 0.880283, 0.356621, -0.221776, 0.586213, 0.904796, 0.838269, -0.760575, 0.743000, -0.919198, -0.184044, 0.415012, -0.271382, -0.646863, -1.523698, 1.051963, -1.069894, -1.012604, -0.236637, 0.915695, 0.138098, -0.053403, 0.523349, -1.830911, -0.696539, -0.001436, -0.920409, 1.509446, 0.024678, 0.310692, -0.042820, -1.470886, -0.340588, 0.680679, 1.090556, -0.748067, 0.626648, -1.431427, -1.539084, -0.003610, -0.619504, 1.573656, -0.173368, -0.424501, -1.383728, -0.566086, 0.335188, -1.185907, 0.049138, -0.005151, 0.837219, 0.624121, 0.006286, 0.429383, 0.712850, 0.089235, 0.698854, 0.525458, 0.760112, 0.688253, 0.205123, 0.837281, -0.446258, -1.340193, 0.380758, 0.035583, -0.819312, -1.087095, 0.556273, 0.011733, 0.139557, -0.317590, -0.611950, -0.571309, -0.264010, 0.440053, 0.727609, -0.344671, 0.909651, -0.884586, -0.578869, -0.234492, 1.454889, 1.430487, 1.378302, 1.598956, -1.083427, -0.310009, -0.155737, 0.374251, -1.429693, 0.430718, 0.081822, 0.190631, -1.557784, 2.139986, 0.704301, -0.080527, -0.488847, -0.180615, -0.825121, 0.797745, 0.070422, -1.379337, 0.770112, -0.201300, 1.257681, -1.559767, 0.954702, 0.262251, -0.390231, -0.453681, -0.534720, -1.245797, -0.808851, -1.323062, 1.197518, -0.367002, -0.404558, -1.260693, 0.498798, -2.126786, 0.699288, 0.844992, -1.062545, 0.554952, 1.029685, 1.534529, -1.016991, 0.796071, 0.322459, -1.053258, 0.172888, 1.664207, -1.116758, 0.820305, 0.537864, -0.358862, -0.167093, 0.234392, -1.219927, 0.799502, 0.155219, -1.551043, -0.470551, 0.215138, 0.726536, 0.755432, 1.197583, 0.000180, 0.270339, 0.559760, 0.091093, -0.958068, 0.497680, 1.529384, -0.919723, -1.789068, 0.821277, 1.786879, 0.830937, 0.365744, -1.024045, 0.396144, 1.451209, -0.177993, 1.148332, -0.754967, -1.498588, 0.878133, 0.255672, -0.929071, -0.174194, -0.241098, 0.216625, -1.421072, 0.258611, -0.006258, 0.001316, -1.967351, -0.911126, 1.642749, -0.194109, 0.446810, -0.511681, -0.366206, -0.894649, -2.520897, -1.271178, -0.061469, 0.525111, -1.054646, -0.477613, -0.037780, 0.264983, -0.670012, 0.193640, 2.239022, 0.782237, 0.093453, 1.217922, -1.125239, 0.186524, -1.217536, 0.387808, 0.651438, 0.228257, 0.493827, -0.857188, -0.422560, -1.046046, 1.994965, 0.955670, 0.277036, -1.562797, 0.263950, 0.649883, -0.358410, 0.036053, -0.464641, -1.852338, -0.067981, -0.286028, -1.326705, 1.640515, -0.624299, -0.191637, -2.227155, 0.815211, -0.207173, -1.084288, 0.814027, 0.043674, -0.340180, -0.587977, -1.414120, 0.365860, 2.202248, -1.857453, 0.345494, -1.445607, 0.042674, 0.928611, -0.789138, -0.041123, -0.806838, 0.408333, 0.711270, -1.676877, 1.006731, -0.741377, 1.658223, 0.589143, -1.066477, 0.018940, -0.587039, -0.708912, 0.363412, -0.062402, -0.180554, 0.908121, -0.222007, 0.698433, -1.838004, 2.588210, -0.701208, -3.094547, 0.113705, 0.340981, 0.351077, -1.757313, 0.042251, -0.747120, -0.598821, -0.767167, -0.981324, -0.265951, -1.473342, -0.744741, 1.115091, 1.427784, 1.449736, -0.561037, 0.856597, -1.670493, 0.383029, -0.470917, 0.260866, 0.738071, 1.077008, -0.441587, -0.558199, -0.738047, 0.844971, 0.085258, 0.286147, 0.000820, -0.986124, 0.186742, -0.669454, -0.438728, 0.791371, 0.523009, 0.797874, -0.641454, -0.438565, 2.624934, -0.907067, 0.218986, 0.752567, 0.201835, -0.356921, -1.209756, -2.072974, -0.269782, -0.906181, -0.723429, -0.913182, 1.081401, 0.366046, -0.514189, 0.866532, -0.002830, -0.438531, 0.114696, 0.534298, -0.514706, 0.073194, 1.388721, -0.035413, 0.719548, 0.579709, 1.387984, -2.423218, -1.576603, -0.732477, 2.100616, 0.570651, 0.738533, -0.543864, -1.255042, -0.655080, 1.399053, 1.169010, -0.504083, 1.312875, 0.408026, -0.409128, 1.085221, 0.851448, -1.116794, 0.983143, -0.560507, -0.303669, 1.019848, 0.018468, -0.780123, -0.954622, -0.399165, -0.048510, 0.355284, 1.066423, -0.664636, -0.814613, -0.955034, -0.086364, 0.584881, -0.723788, -1.248137, 0.296047, -1.910484, -0.965900, 1.701747, 1.668487, -0.118189, 0.422676, -0.846454, -1.045484, 0.343870, -0.447060, 0.292989, -3.203964, -0.327839, -0.434155, 0.874992, 1.161777, -1.142981, -0.792215, 0.152357, -1.935103, -0.573060, -0.429037, -0.155364, -0.638707, -0.349531, 0.166698, -2.132177, 1.008922, 0.327766, -0.561583, -1.204961, -0.112316, -0.738355, -1.066753, 1.036466, 0.970635, -0.270422, -1.670643, 1.391918, 0.317374, 0.375373, -0.015045, 1.008280, 0.670953, -1.171077, -0.595101, -1.363801, 0.356327, 0.073796, 0.544178, -0.537264, 0.712877, -0.976084, 0.080749, 0.174769, -1.004800, -0.152914, -0.740234, 0.239566, 0.462955, -0.133066, 0.491680, 0.348344, 0.686421, -0.072592, -2.053041, 0.307036, -0.035607, -0.246717, 0.801397, 1.787263, 0.131559, 0.658268, -0.457083, 2.907004, 1.559669, -1.232428, 1.958302, -1.127388, -0.366609, 1.465390, -0.153982, 1.393130, 0.120811, -0.454076, -0.333829, 0.216967, 0.459765, 1.119988, 0.727001, 0.473132, 1.994609, -0.910677, -1.239176, 0.857230, -0.747760, -1.601133, 1.279362, 0.014875, -0.179844, -2.320856, 0.956510, -0.352767, -0.206347, -0.872153, 1.218439, -0.017155, 0.025791, -1.473008, 2.048477, 1.054912, -1.111531, -1.165017, -1.164368, 0.932443, -0.044897, 1.022811, -1.594181, 0.989384, 0.501250, -0.589144, -1.352458, -0.268539, 0.049744, 1.325826, -0.062814, 0.336177, 0.055328, 1.848644, -0.833365, 1.594352, 0.027282, 0.289210, 0.047497, 2.022735, 0.717957, 1.995398, -0.195936, 0.707879, 0.633227, 0.706728, -0.231926, 0.156454, -1.090426, 1.174006, 0.361361, 1.231607, 0.316276, -1.048609, 1.149534, -1.185685, -1.035447, 0.027341, -0.932903, -1.118645, 0.230071, -1.587508, 0.320556, 0.262587, -0.539882, 1.216443, 0.208325, 0.845333, 1.121565, 0.192880, -3.140594, -0.418211, 0.417657, 0.604396, -1.241822, -0.710761, -0.536584, 0.075336, -0.186761, 0.511881, -0.177559, -0.480942, 0.169375, -0.371069, -0.627916, -0.362166}, + { 0.143918, 1.209518, 1.415510, -0.205715, -0.936060, -1.237411, -0.550202, 0.353154, -1.200365, 1.122263, 0.051693, -0.242302, -0.423628, 0.457544, -1.246581, 0.056824, -0.501337, -1.175486, -1.992990, 1.536908, -1.326588, 0.369966, 0.888753, -0.370986, -2.471787, 1.719236, 0.214642, 1.686835, -0.614896, -0.971546, 0.843978, -1.383184, 1.441207, 0.613419, -1.833871, 1.638187, -0.534332, -1.698133, -0.572502, -0.189408, -1.674664, 0.625750, 0.734396, -0.836157, 1.706086, 0.513340, -0.701658, -1.403919, 0.266223, -0.062718, 1.810517, 0.228098, 1.830545, -1.476762, 1.306687, 1.103031, 0.535736, -0.657251, 1.088705, -0.459884, -1.079125, 0.280869, -0.242346, -0.240299, 0.698342, 0.648797, -1.159735, -0.234159, 0.979236, 0.506642, 1.702918, 0.677144, 0.560954, 1.171368, -0.347971, -0.902574, 1.580047, 1.084753, -0.054096, 0.806028, -0.511310, -0.799868, -1.636023, 1.932105, 0.223907, -0.891992, 0.042282, -0.392356, -0.768495, 0.126914, -1.136937, 0.882718, 2.173886, -1.358792, 0.968487, -0.341842, -0.539973, 1.378629, 0.365335, 0.271343, -0.068264, 1.730835, 0.478729, -0.465711, -0.027898, -0.203940, -0.003608, 0.280007, -0.189025, 0.476227, 0.834066, 0.038117, -0.070393, -1.541939, -1.693667, 0.973008, 0.464555, -0.318185, -0.404033, -0.063626, -2.232232, 0.114086, 0.356333, 1.004483, -1.832418, 0.465320, 1.570264, -0.366883, -0.463609, -0.788944, 0.015914, -2.478295, 0.570409, 1.439167, 1.545094, -0.722282, -0.104137, 1.477334, 0.776044, -0.401765, 1.417226, -0.054772, -2.109218, 0.498766, -0.746104, -0.754237, 0.523962, -0.534865, -0.711868, 1.287099, -2.812712, -0.388172, -0.958290, -0.049340, 0.039339, 0.069759, 0.270166, 0.481200, -0.216221, -1.089272, 2.103500, -0.105479, 1.080820, -0.010104, 0.752620, 0.629320, 1.407724, 2.823805, -0.083349, 0.390308, 2.006799, 1.829215, -0.620298, -0.285180, -0.496323, -2.107688, -0.781278, 0.420345, 0.128184, -0.248174, 0.246796, -0.489934, 0.502627, -0.047097, -0.467564, -1.481424, 1.808712, 0.401177, 1.625860, 1.393245, -1.362942, 1.661454, 1.332333, -0.696751, -0.196716, 0.096774, 0.024129, -0.138905, -0.645495, 0.497227, 0.259457, 1.249452, -0.478036, 0.997549, 0.261659, 0.195590, 0.570529, 1.352992, 0.418749, -2.513577, -0.062813, 1.950935, -0.285982, 1.124080, -0.297805, -0.366265, 0.617152, -0.680090, -0.791329, 0.353119, 1.280112, -0.272498, 0.772698, 0.545199, -0.262263, -0.511896, 0.043836, 0.760013, 1.099155, -0.894746, -0.402218, -0.303505, -1.390923, 0.582289, -0.262984, -0.352570, 0.206513, -0.715337, -0.119958, 0.734848, 0.252623, -0.907771, -0.270547, -1.466006, -1.062064, -0.000257, -1.590410, 0.534492, 0.354389, -1.255308, 0.141845, 0.411606, 0.042744, 0.438899, 0.432145, -0.393618, 1.632343, -0.119138, -0.462697, -1.693901, 0.214942, 0.013048, 0.677745, -0.059431, 2.389953, -0.518742, -0.332149, 0.905615, -0.032889, -0.809388, 0.362643, 2.089731, 0.518698, -0.933710, 0.980651, 1.069113, -0.621232, 0.762645, 0.861475, 0.193316, 2.363846, -0.181789, 2.246472, 0.036937, 0.715949, 0.216091, 0.303439, 0.542813, 1.152276, -0.204929, 0.151618, -1.560658, -0.853676, 0.442658, -0.333495, 0.329665, 0.134486, -1.939936, 1.357361, 0.603543, -0.221472, 2.120132, 0.164142, -0.095962, 0.993437, 0.693298, -0.962013, -0.654571, 2.396662, -0.384940, -0.336034, -0.728558, -2.115731, -0.109374, 0.254983, -0.104400, -0.512464, 0.212592, -0.774205, 1.446622, 0.863379, 1.015948, -1.241960, -0.311417, 1.105041, 0.607457, 1.796587, 0.968534, -0.728675, 0.879589, -1.026476, 0.681945, -0.893970, -0.846563, -1.386097, 0.481104, -0.298373, 1.235945, -0.714278, 0.057681, -1.265714, 1.026161, -0.258595, 0.215059, 0.433780, 0.030152, 1.322083, -0.313523, 0.661436, 0.574634, 0.062002, 0.448030, -1.351823, -0.342904, -0.899390, -0.833402, -0.862040, 0.286503, -1.596009, 0.185339, -1.228744, -0.152450, -1.264958, -0.438211, -1.699029, 0.611233, -0.207356, -0.153936, -0.971623, 1.650841, -0.663815, -0.001463, 1.006120, -0.724176, 1.397104, -0.385031, -0.873603, 0.211383, -0.235104, 0.929222, -1.606893, 1.195198, 1.390564, 1.376394, 2.098204, -0.906723, 0.976047, -0.690193, -1.349634, -0.111960, -0.838166, 1.232577, 0.919637, -0.303729, -0.397418, 0.429518, 0.729866, -1.931267, -0.145646, 1.260670, -0.208229, 2.540711, 0.491056, 0.784049, 0.716853, 0.918358, -0.600872, 0.501814, 0.820461, 0.524352, 0.976756, 2.045748, -2.222711, -1.123774, -2.081546, 0.974690, 0.518746, 0.383969, 1.239864, -1.661525, 0.022700, 1.527257, -0.353291, -0.567537, -0.017469, 0.944910, 2.294375, 0.633391, 1.017232, -0.228991, 0.192200, 1.263752, 1.009429, 0.028072, -0.481217, -0.472747, -1.361700, 1.005212, -0.706737, -0.513133, -0.284827, 0.251549, -0.011069, -1.922108, 1.862506, 1.080771, -0.777661, -0.772122, 0.657934, 0.862764, -0.397629, 0.713396, -2.084646, 0.597535, -0.234314, 0.174427, -1.272333, 0.121910, 0.144938, 0.720131, -0.576369, 1.027848, -0.150313, -0.415464, -1.326369, 0.423022, -1.877166, -1.212137, -0.937541, 0.182630, 1.056029, 0.356087, -0.505843, 0.115067, -0.961201, 1.755523, 0.101426, -0.425238, 2.520553, 0.587572, 0.349178, 0.500825, -0.588090, -1.049082, 1.396782, -0.335828, -2.316049, 1.318304, -1.005887, -0.254008, 0.683383, 1.599672, 0.034560, -0.430784, -1.242570, -0.456116, 0.469624, -0.639228, 0.649453, -0.586729, 0.969864, -0.222494, -0.271476, 0.551550, -0.183159, -0.980633, -0.098881, 0.108335, -0.560834, 0.054874, -0.838989, 0.361214, -0.330196, 0.580019, -0.027323, -2.657912, 1.404254, -0.693355, -0.489336, 2.060231, 0.887965, 1.127442, -0.693249, -1.873725, -0.056001, 1.895301, -0.727537, -0.908226, 0.386019, 0.186846, -1.116179, -0.406045, -0.433380, 0.844938, 0.581732, -1.597412, 0.004275, 0.343639, -0.872025, -1.765925, -0.013071, -0.963240, -0.142272, -1.763152, 0.071830, 0.695810, -0.613795, 0.846098, -0.586315, 2.437475, -0.998368, 0.217887, 0.361830, -1.314214, -0.895564, 0.023789, -1.806738, -0.878966, -0.280102, -0.358086, -0.751641, -0.372304, -1.919498, -0.068374, -0.641328, -0.093263, 0.443248, -2.281028, 0.372234, 0.047600, -0.300436, 0.409499, -0.154587, 1.105725, 0.213204, -1.581790, 0.202304, 0.022584, 0.430704, 0.315257, 1.327084, -0.676229, -0.660351, 0.572701, -1.569216, -1.618231, 1.628285, 0.345966, 0.599971, -0.323887, 0.595413, 0.092189, -0.426243, -1.522186, 0.215856, 0.683957, -1.714237, -0.507090, -0.180805, -0.003548, -0.284993, 0.030777, 0.218056, 0.870802, -0.341984, 0.893762, 0.659915, -0.063454, -0.384196, -1.008250, 1.221139, 0.185160, -1.581144, 1.307092, 1.238129, -1.433739, 0.433266, -0.071964, 0.508833, 0.081763, -0.827419, 1.452268, -0.190060, -0.557385, 0.034104, -0.108170, -0.461960, -0.232610, -2.454894, 1.049523, 1.396392, 0.372988, 1.789103, 0.695052, 0.673884, -0.010802, 0.489616, -0.521052, 0.523827, 0.682258, 0.582782, 1.253322, -0.417443, 1.110823, -0.416431, 1.098492, -0.867697, -0.045616, 0.076892, -0.805973, -0.785036, 0.368724, -0.379459, 0.939626, -0.462018, 0.821758, -0.693737, -0.448729, 1.220697, -1.297246, -2.077047, -1.337539, 1.464895, -0.607275, -0.982364, 0.070545, 2.344499, 0.520427, 0.207627, -1.502672, 1.238815, 1.813022, 2.026497, -0.704383, 2.309919, -1.071715, 0.147977, 0.340072, -0.082867, 1.210100, 0.283416, 0.903177, -0.111705, 1.187372, 2.902369, 0.160699, 1.492474, 0.935065, 0.256235, -0.875925, 0.416311, 0.427472, -0.016680, -0.190924, 0.336898, -1.218016, -0.293958, 1.242140, -0.684970, 0.298323, 0.353376, -2.102941, -0.668866, 0.077764, 0.376080, -0.542232, -0.353828, 0.433790, -1.662959, -1.770191, -0.762407, 0.348892, 1.327524, 1.224735, 0.787652, 0.325507, -0.950806, 1.652738, 0.150331, -1.022907, -1.179663, 1.667096, 0.503125, -0.054708, 0.577142, 0.049615, 0.078269, 1.179773, 0.278827, -1.584616, 1.104613, -0.726730, 0.822010, 0.846132, 0.682486, -2.378982, 1.412871, 1.371286, -1.503497, -0.621429, 0.343486, 0.869514, -0.763580, 0.063196, -1.331506, -0.872145, -0.589685, 0.869377, -0.627132, -0.096647, 1.075544, -1.148070, 1.280006, -0.090411, -0.076110, 0.872075, 0.021528, -0.713879, -1.633595, 1.551635, -0.580211, -0.222397, -0.774978, -1.497328, 0.668740, 0.183756, -0.979620, -0.250338, 1.108617, -1.055104, -0.198191, 0.393876, -0.964888, 0.990976, 2.007022, -0.790667, 1.565048, -0.027922, 0.311114, 0.454034, 1.232266, 1.681190, -1.048765, 0.863171, -0.141154, -0.120735, 0.086368, 0.164663, -0.032055, 1.088944, -0.817960, 0.551714, -1.044344, -1.529323, -0.657256, 1.413873, 0.011763, 0.618154, 1.725017, 1.397573, -1.000053, 0.227320, -0.662110, 0.918212, -1.637119, -1.068358, 1.723664, -1.057421, -0.020259, 0.254529, -0.465879, -2.277395, -0.014294, -1.506582, 0.055501, 0.334060, 1.220469, 0.168996, -1.874954, 1.555025, -0.776264, -0.841947, 1.214907, -1.277503, -0.229906, -0.325316, 0.047284, -1.065174, 1.422059, 1.370473, 0.161496, 1.117566, -0.516433, -0.823126, 0.720307, -2.176265, -1.456730, 0.399478, 0.153443, -0.231652, -0.889814, 1.125761, 3.337486, -0.812580, 1.513475, 0.347073, -0.517041, 0.457599, 2.543773, -0.676577, -0.661725, 0.519489, -0.125325, -0.461115, -0.028126, 1.710458, 0.863779, 0.053281, -1.373120, 0.046816, -0.052169, -0.170530, 1.939812, 0.843303, 1.586381, 1.687643, -1.155204, -1.093468, -0.125768, -0.679091, -0.746591, 1.520703, -0.441585, 0.630180, 0.560079, -0.604709, 0.889147, -0.697132, 0.214768, -1.058395, 0.629487, -0.134298, -0.614105, 0.688999, -0.937614, -0.049793, -0.472484, -1.140216, -1.491043, 0.660714, -0.011643, -0.794925, -0.785080, 0.460955, 0.583837, -0.362863, 0.762094, -0.410582, 0.967799, -0.789362, -0.816914, 0.847880, 0.242090, 0.526234, 0.299295, -0.783677, -0.383676, -1.031198, 1.446156, -1.050907, -0.738330, -0.452281, 1.029508, 0.098506, 0.294438, -0.519765, 1.167788, 0.583584, 0.047951, 0.388703, 0.474761, 1.140131, -0.305717, -0.732303, 0.303618, -0.053867, -1.327068, -0.986698, 0.725678, -0.493701, 0.755276, -0.186091, -0.026841, -1.437410, 1.191415, 1.280375, -0.263418, 0.046663, 0.589329, 2.056455, 0.176193, 0.020132, -0.264343, -1.067982, 0.442591, -2.012205, 0.212100, -0.715966, 1.622531, 0.891194, -0.430566, 1.575854, -0.681447, 0.975758, 1.461304, 0.471763, -1.521512, -0.747590, -0.113143, -0.962984, -0.454598, 0.469894, -0.816372, 2.305019, 1.109768, 0.499653, 0.507731, 0.797073, -0.670619, -2.103842, -0.378361, 0.096315, -0.186113, 0.353704, 0.731541, 0.912456, -0.226365, 2.475935, -0.947046, -1.215867, 0.944136, -1.263590, -0.325788, 0.212705, -1.481161, 0.425147, -0.240799, -0.894787, -1.315372, 0.588340, 1.164927, -0.137595, -0.635644, 1.273758, -0.697351, -0.342219, 3.102881, 1.345796, 0.134191, 0.248090, 1.791207, 0.789727, -2.943933, 1.219192, 0.858836, -1.307881, -0.049507, -1.782492, -0.272808, 1.634433, 1.078393, 0.191553, 0.959971, 0.148198, 1.350678, 1.034535, -0.796547, -1.385673, 0.637981, 0.145088, 0.308295, -0.865624, 0.212762, -0.868204, -0.998864, 0.170664, 1.130297, -0.723851, -0.347515, 2.647883, 0.362370, -1.870187, 0.332791, 1.916221, 1.634928, 0.280556, -1.200652, 0.364559, 0.825790, -0.924397, 0.392393, 1.486134, 0.562158, -0.724153, 0.383157, 1.402983, -0.449497, 0.250040, 0.491233, 0.978817, -0.614823, -1.266325, 0.275805, 0.110052, 0.009780, -1.369228, 0.862445, 0.002470, 0.319805, -0.381020, 0.196468, -1.267349, -0.388345, 1.337526, -0.380834, 1.679628, 0.825904, 0.435964, -0.430529, 0.368636, -1.526051, -0.133137, 0.316569, 1.188769, -1.034041, 0.442261, -0.833932, 0.726919, 0.444092, 0.021020, -0.180114, 0.691879, -1.276975, 0.779742, 0.560705, 1.497143, 0.820534, -1.050074, 0.976326, 0.829330, -0.749170, 0.440191, 0.052696, -1.297568, 0.389543, -0.305468, -0.475802, 1.882753, 0.690292, -0.829858, -0.793177, 1.153632, -0.606419, 0.738836, 0.138331, -1.588802, 0.596538, 0.576173, 0.721506, -1.873809, 0.620846, 1.030279, 1.397279, 1.467184, -1.979299, 0.206453, 2.100982, 1.052231, -1.041611, 1.370476, 0.119844, -1.215214, -0.362735, 1.641905, -0.235563, 0.335580, 0.008142, 0.506156, -0.102518, 1.561611, -1.659342, -0.470413, -0.953792, 0.621376, -0.357466, 1.727999, 1.385200, -0.988300, -0.771211, 1.932962, -0.001637, 1.854878, -0.434222, -1.308446, 2.165843, 0.759218, -0.186683, 1.168201, 1.201224, 0.808716, -0.228364, 0.686502, 0.749201, -1.014981, 0.693725, -1.151095, 0.791120, 0.841981, -1.314296, 0.223916, -0.485333, -0.776303, 0.845748, -1.570707, 1.229241, -0.320438, 1.503051, 1.582160, 0.018349, -1.270061, -1.105981, -1.095752, 0.638423, 1.095289, 0.915528, -0.993148, -0.247416, 1.440400, -1.027800, 0.379999, 0.768198, -0.609642, -1.873906, 0.847325, 0.781594, 0.439981, 1.410181, -0.228625, -0.682470, 0.341436, 0.962507, -1.456151, 0.515019, -0.974384, 0.057340, -0.847645, -0.253236, -0.571886, -0.669795, -0.705352, -0.341011, 0.672880, 0.461658, 0.104177, 0.246889, -2.279662, -1.214561, 0.038690, 0.623432, -0.758409, 2.829443, 0.043046, 0.925939, -0.619343, -0.080817, 1.717057, 0.426861, 0.377949, 0.524727, -0.363203, -0.190493, -1.111771, -0.570682, -0.804020, 1.652374, 0.646142, 0.360384, 0.606764, -2.267877, -1.578426, 0.634695, -0.039773, -0.675857, -0.408203, 0.790941, -0.414555, -0.791152, -1.447742, -0.101123, 0.694835, -0.235019, -2.014651, -0.544846, 1.644013, -0.579032, -0.376821, -0.792559, -0.534888, -0.528000, 0.485593, 0.726400, 0.219275, -1.606865, -0.637418, -0.194022, 1.938055, -0.230561, -0.392530, -0.029433, -0.079863, 0.030547, -1.690866, 1.021236, 0.330774, -0.849816, -1.200827, 0.018342, 0.952855, -1.847905, -1.157915, 0.385315, 1.523961, 0.189226, 0.284901, -0.236001, -1.128477, -0.257783, 0.733517, 0.906165, -0.186465, 0.330822, -0.100674, 0.227714, 1.047101, 0.402691, 0.178935, -0.479966, -0.972547, 0.085684, 0.280473, -0.680743, -0.956101, -0.067043, -0.043444, -0.423860, -1.431487, 1.785578, -0.403868, 0.135247, 0.177338, 1.266297, -1.419286, -0.019987, -0.600000, 0.376572, 0.395711, 0.547185, -0.851191, -0.810450, 1.620857, 0.198021, -1.340421, -0.169411, -0.181947, 0.829641, 0.347308, -0.139790, 1.043162, 0.414267, -0.185098, -1.125200, 0.767852, 0.486725, 1.362585, 0.075763, 0.591354, 0.410808, -2.174905, 0.546123, 1.098918, -1.846365, 1.125447, -0.394972, 1.009875, 0.493997, -0.034090, -0.358880, -0.164017, 0.497917, -0.836251, 0.274598, 0.892336, 0.292421, -0.523671, -0.476477, 0.366224, 0.297864, -1.293940, 1.572629, 0.218977, -1.208299, -1.468921, -1.005271, -1.315076, 0.050478, 0.000118, 1.472276, -1.779780, -0.487180, -1.989578, -0.175389, -0.114721, -0.340563, -0.786085, 0.229292, -0.389049, 0.231493, 0.460837, 0.280056, -0.805843, -0.578639, -1.268060, 0.870908, 1.022897, 1.444145, -0.611573, -1.557369, 0.000382, -0.685728, 1.060017, 0.324899, 0.666328, 0.608093, -0.640875, -0.431135, 1.740098, 0.213174, 0.311500, -0.648503, -0.411613, 0.814678, 1.005494, 2.068207, -1.827732, -0.214563, -0.387490, 1.629509, -1.224637, 1.646266, 0.218674, 2.009914, 1.692994, 1.331669, -0.635512, 1.679007, -1.288978, -0.777167, 1.117640, 0.772795, 2.818392, -1.129921, 0.012129, 0.359697, -1.113243, 0.187010, -1.637286, -0.985339, -0.231506, 1.687171, 0.632401, -0.187848, 2.037420, -1.028750, 0.879615, -0.820166, -1.137429, 0.709749, -1.735245, -0.364049, 0.081651, 0.434274, -1.594779, -0.090954, -0.520978, 0.414483, 0.847307, -0.179835, -1.248063, 0.523093, -1.133471, -0.052280, -0.572817, -1.477456, -1.484785, 0.765020, 0.198138, -1.604406, 0.105591, 1.091369, 0.985142, -0.489852, 0.641059, 0.278474, 0.783888, 0.264552, -0.516150, -0.404999, 1.012161, -0.052900, 1.064197, -0.234965, -0.703951, -0.616026, -2.164735, -0.826753, 1.519988, 0.264698, -1.721244, -0.782308, -0.744139, 0.903597, -0.642493, 0.965614, -1.225115, -0.935501, -1.780527, 0.156984, -1.093822, 2.617778, -0.456001, 0.256682, -1.975094, -0.351159, -0.945742, -0.756613, -2.432863, 1.322113, 0.796331, 1.773006, -0.321627, 0.221067, 0.930219, 1.083945, -0.831533, 0.772991, 0.111766, 0.238352, -0.416830, 0.104399, 1.332182, -0.403450, -0.040660, -0.151557, -0.738574, 1.098338, -0.077803, 0.170047, -0.023169, -1.855730, -1.286719, -0.671617, 0.276023, 0.258835, 0.450115, 0.348014, 0.138224, 0.678333, -1.175952, -0.118125, -1.281212, 0.219560, -1.396473, -2.031704, 0.169597, -1.558197, -0.507837, -0.341647, -0.411748, -2.353515, -0.823815, 0.547196, 0.152572, 0.941773, -0.132502, 0.353957, -0.374074, 1.933327, -0.693691, 0.097224, 0.384921, 0.614135, 0.836104, 1.748898, -0.556862, 0.541714, 0.539119, 2.504559, -2.247921, -0.144833, 0.715338, 0.244103, -1.194156, 0.315205, -0.195992, -1.109842, -0.681922, 1.305083, 1.632660, 0.174473, 1.081053, -0.697581, -1.249751, 0.064262, -0.079740, -0.641816, 0.423762, 2.282303, 0.504471, 0.481696, -0.143376, 1.618654, -1.241618, -0.821932, -1.071982, -1.552989, -0.430421, 0.053239, -0.150558, 0.357365, -0.941143, 0.324645, -0.219965, -0.320421, -0.306399, -0.162997, -0.043216, -0.299875, -0.190169, -0.175823, 1.598249, 0.302305, 0.531722, 0.529184, -1.227818, -1.263368, 0.910903, -1.352136, 0.414417, -0.691839, 0.184465, -0.709986, -0.817126, -0.850985, -1.500053, 0.064047, 0.552074, -0.493353, 0.334505, 0.476269, -0.839961, -0.324028, -0.504277, -0.341015, 0.280118, -0.217858, 0.011077, 0.053562, -0.829168, 0.944967, -0.945398, -0.370070, -0.793656, -1.054477, 0.072705, -1.163156, 0.096346, 1.211309, 0.372250, -0.013209, -1.186569, -1.223648, -0.069903, 0.143383, -1.102027, 0.174251, 0.185013, 0.444361, 1.877374, 0.124881, 0.265931, 0.313493, -0.380179, 0.528459, -0.294885, 0.020683, 0.268312, 0.686996, -0.822764, 0.356774, -0.104993, -0.147408, -1.873306, -1.028076, 1.286824, 0.752496, -0.374466, 0.579663, -1.304120, -0.392455, -0.526908, 0.394459, -0.613859, -0.091887, 0.903183, -1.109726, 0.675838, -0.085295, 1.051192, -0.016866, 0.326990, 1.263379, -1.585195, -0.661578, 0.620993, 1.378048, 0.475401, 0.177983, -0.971243, 1.099195, -0.763719, -0.048398, 0.487208, 1.164095, -0.527009, -0.600236, 0.266523, -1.329845, -0.185820, -0.587015, 1.197968, 0.483367, 1.180162, 1.000607, -1.666219, 3.592965, 0.005810, 0.103460, -0.379997, -0.804158, -0.762023, 0.487444, 0.012350, -0.381975, 0.854549, 1.102220, -0.791890, 1.011859, 1.422311, -0.201551, 0.430874, 0.706137, -0.621989, -1.431359, -0.541830, -0.109603, -1.803321, 0.599062, 1.082363, -1.727323, 0.581667, -0.388399, -0.387510, -0.268347, 0.230137, -0.211202, 0.728521, 1.242526, -1.079046, 1.062484, 0.359966, -1.226313, 0.739156, 0.030655, -1.765626, -0.149636, 1.459785, 0.762530, -0.492712, 0.218338, -0.135339, 0.563411, -2.098810, 1.348681, 0.722642, -0.685129, 0.189547, -0.143518, 0.698839, -0.304914, 0.224611, -1.772923, 1.202020, 2.585183, -1.160130, 1.122913, -0.426645, -0.959485, 0.223545, 0.251159, -0.225319, -0.424503, -0.476923, -1.237562, 2.097269, 0.966247, 0.458852, 1.176988, -0.595764, 1.428310, 1.377048, 1.064520, 0.944863, -0.471240, -0.127947, -1.572854, 1.865792, 2.083482, 0.670633, 0.104540, -0.397667, 1.997226, -0.106271, -0.608268, -0.870572, 0.072127, 0.986973, -0.416156, -0.653851, 0.074068, -0.019042, -0.986571, -0.018002, -0.983321, -0.613986, 0.560652, 1.261426, -1.042631, -1.747539, 0.745243, -0.133538, -0.379869, 0.216768, 1.195644, 0.405613, 2.045917, 0.365249, -1.354414, -0.376270, -0.006553, 0.362668, -0.904080, 0.747589, 0.198446, -0.538016, 0.881561, -0.310994, -0.343918, 1.244070, 2.000613, -1.600150, 0.647509, -1.256487, 0.701125, 0.246671, 0.108562, 0.922212, -0.804351, -0.850594, 1.013685, 0.900552, 1.270867, 1.563839, 0.907486, -2.005560, 0.442177, -2.103153, -0.044940, -1.520954, -1.306385, -0.792545, 0.958612, 1.956637, 0.949954, -0.245294, 0.129125, 2.445799, 1.646368, 1.013799, -1.098808, -1.164370, 1.533652, 0.686235, 0.792318, -1.574291, 0.198587, 1.505112, -0.704153, 1.539799, -0.786237, 0.742085, 0.436683, 0.952655, -0.080700, 1.385913, 1.776141, 0.391914, -0.014451, -0.578049, 2.047994, 0.561269, -0.209200, -0.783461, -0.469990, -1.229856, -0.210625, 0.115914, 0.830101, 0.725687, -0.299943, 0.116684, -0.784304, -0.806670, -1.978712, -1.180928, 1.131475, 0.542189, 0.256547, 1.075608, -0.195630, -0.542400, -0.789014, -0.324209, -0.859475, 0.649801, -0.767602, -0.998245, 3.291083, -0.527494, -0.194860, -0.520921, -1.045487, 0.578567, 0.303074, 0.681786, -0.293648, 0.594617, -0.808306, 1.320991, 2.622552, 0.048417, -1.228960, -0.263984, -0.414892, 0.007103, -1.335975, 0.422645, -0.267703, -1.172696, -0.158137, 0.394125, -0.697199, -0.335698, -0.193902, 0.383253, 1.800366, 1.100667, -0.642460, 0.154940, -0.475391, 0.409989, -0.232179, 1.574244, 0.375923, 1.598368, 0.781955, 0.104189, -0.937510, 0.304039, -0.513409, 1.284597, -0.048314, -0.997324, -0.424721, 0.696322, -0.595087, -0.249153, -1.799990, 0.073800, -0.644472, 1.315935, -0.818653, -1.500680, -0.083754, -0.280041, 1.310595, 0.254121, 0.209215, -0.619412, 0.337245, 0.014890, 0.228921, 0.478691, -0.438901, -1.667995, -1.456345, 0.409701, 0.424796, 1.148928, -0.062927, 0.970516, -0.227197, 1.446486, -1.698990, -0.483551, -0.950690, -0.506982, -0.560694, -0.677606, -0.956363, 0.242048, -0.935352, 0.847280, 0.736683, -0.501086, 0.445259, -1.219422, -1.543004, -0.060447, -0.742367, -1.057063, 0.902699, -0.905459, -0.559891, -1.946507, 0.207084, -0.074622, -0.042401, -0.658913, -0.519988, -0.076985, 0.081014, 1.171612, -0.979588, 0.023708, -0.252099, 0.461627, 0.960544, -0.503724, -1.777104, 0.280910, 1.165504, -0.506259, -0.172485, -1.143889, 0.913221, -2.011524, -0.512824, -1.680265, -0.525892, 0.094003, 0.815813, -1.150683, -1.011090, 0.178379, -1.070876, 1.490121, -0.552821, -1.201117, 0.882974, -2.115034, -1.575595, -0.387130, 0.439784, 0.539421, -0.055772, 1.364372, 0.861246, 0.344243, 0.259153, -1.255549, 0.400312, -0.616561, -0.979032, 0.412833, -0.004636, -0.343319, -0.716839, -1.208622, 0.475568, 0.527625, -0.047370, 1.400738, -1.619014, -1.203610, -0.555936, 0.103826, 0.440331, -0.136716, -0.610684, 0.802815, 0.894211, -0.471609, 1.063656, 0.543890, 1.560269, 0.597948, 0.538398, 0.291025, 0.607748, -1.218361, -1.394040, 0.880483, -0.743415, -0.494944, -0.763028, 1.347232, 0.202154, -0.503577, 1.650189, 0.619100, 0.679815, 0.017464, -0.379545, 1.285849, -0.634801, 0.586431, 1.363330, -0.465049, -2.353583, -1.368040, -0.110282, -0.763812, -0.534703, -0.080556, -1.277511, -0.192667, 0.773091, 1.558537, -0.072994, 1.244117, -0.292472, -0.099457, -0.572902, 1.330516, 0.284130, 1.109900, -0.011437, -1.822190, 0.696207, 0.287361, 0.134555, 0.730946, 0.693094, 1.278310, 0.603130, -0.502733, -0.298057, -2.120405, -1.252650, -0.585504, -1.697913, -0.153409, -1.381612, -0.355373, -0.419217, -2.147746, 0.437598, 0.071903, -1.250967, 0.888995, -1.279496, -0.524999, 0.847654, 0.540934, 0.988537, 0.220426, -0.248349, 0.702039, -0.373690, -0.292794, 1.251551, -0.136726, -1.349951, -2.006402, 1.952456, -0.426821, 1.660869, -1.662619, -0.426596, 0.329979, -0.925119, 1.086507, 1.247635, 0.759971, 2.748834, -0.230738, -1.384721, -1.122254, -0.456420, 0.376815, 0.136528, 1.334217, -1.259515, -0.380063, 0.847187, -0.507247, 1.168831, -0.899540, 0.364901, -0.565273, -0.762716, -0.390254, -0.313475, -0.480110, -0.124875, 1.051658, -0.815459, 0.616314, -0.816195, -0.149589, -0.196263, -1.823787, -0.747584, 0.604710, -0.635718, 0.838170, 1.318557, 1.380034, 0.030648, 0.189420, 0.103005, -0.202615, 2.178581, 0.144942, 0.288130, 0.428349, -1.358391, 0.895738, 0.288058, -0.148462, -0.762656, -1.249119, -0.999641, -0.825954, -0.045740, -0.876863, 0.081127, 0.180492, -1.070712, 0.069462, 2.499226, 1.208066, -1.089126, -1.153212, -0.633523, 1.041080, 0.179309, -0.044136, -1.243529, 1.406187, -1.471448, -0.501115, 0.395088, 0.172486, 0.509783, 0.077203, 1.388737, 2.525844, -0.136487, -1.234559, 1.299042, -0.846108, 0.774194, 0.968037, 0.215330, -0.469177, 0.401849, -0.263293, -1.531249, -1.588852, 2.390583, -0.819375, -0.286632, -1.405893, 0.265913, 1.948279, -1.763698, -1.313349, -0.196341, 0.746557, -0.197265, 0.385748, -1.354313, 0.445977, 0.218553, -2.012631, -0.414542, 1.017698, -1.847814, 0.242002, -0.195827, 0.482920, -1.964476, 1.842669, -0.301600, -1.450880, -1.458653, 0.743479, -1.936708, 0.315710, -0.631097, 0.434831, 0.012618, 0.566895, 0.888040, -0.426595, -2.086709, -0.582593, 0.331953, 0.191696, 0.202003, -1.453614, -0.118366, -0.988162, 0.655168, -0.067755, -0.601428, 0.210343, -0.526311, 0.093570, 1.624383, 0.533583, -1.011251, -2.975027, -0.197862, 1.731261, -1.455112, -1.351827, -1.005466, 0.775502, -0.274310, -0.834313, 0.026578, -0.923564, -1.162562, -0.438935, 1.310981, -0.844952, -0.639270, -1.005501, -1.157427, 0.799392, 1.471006, 0.587484, 0.762854, 1.430742, 0.190146, 1.277148, 2.050369, 0.392673, -0.155007, 0.168144, -0.552254, -0.926370, -0.612983, -0.457701, 0.578693, 1.110674, 0.425022, 0.229803, 2.166550, -0.245349, 0.044718, 2.327867, -0.755978, 0.735073, 0.691000, -0.372918, 0.559897, -0.227446, 0.126589, 0.138772, 0.441423, 1.871359, -0.049067, 1.158514, 0.573930, 0.132841, 0.210897, -1.937643, 0.819365, -1.493229, 0.140068, 0.358949, 2.188984, -0.014209, 0.028942, -0.271618, -2.212539, -1.036573, 0.832698, 1.260570, 0.243328, -1.764464, -1.089780, -0.308576, -0.940177, -0.517370, -0.356109, 0.271797, -0.370817, 1.200888, -0.961231, 1.697590, 1.183354, 0.966891, 0.447719, -0.575066, -0.140690, 1.753668, -1.293170, -0.835097, 0.519911, -0.871805, -0.818254, -1.142053, -1.029756, -0.453165, 0.744701, 0.428048, 0.517613, 0.413268, -0.412662, -0.416161, 0.077534, -1.844502, -0.210068, 0.960682, 0.722467, 0.722120, 0.356762, 0.579144, 0.844782, -2.218417, 0.292815, 1.243716, 0.190755, 0.296549, 1.637157, 0.489667, 0.492616, 1.724824, -0.446847, 0.040712, 0.703715, 0.807092, 1.300552, 0.101970, -0.082710, -1.083100, -2.629662, 1.190288, 0.248348, -0.408591, 0.569903, -1.923930, -2.354898, -0.460324, -1.052738, -2.032039, 0.284669, 0.221328, -2.382770, 0.412199, -0.057338, 0.932570, 1.713927, 0.616716, 0.678924, -1.007089, -1.855047, 2.245682, -0.797435, 0.366729, -0.537063, -0.278747, 1.156163, -0.211522, 0.030367, 1.655177, -1.306086, 0.293756, -0.001744, 0.283854, -0.159195, 0.688433, -0.859293, 1.593975, -0.914517, 0.430648, 0.605256, -0.041184, 0.861674, -0.042582, 0.363541, 0.902050, -0.289410, 0.194056, -0.653735, 1.456413, -1.652748, 0.524409, 0.774439, -0.507796, -0.218706, 0.783481, 0.239214, -1.056154, -0.843452, -1.439239, 1.113900, 0.882122, -0.924865, 0.627621, -2.506988, -0.658403, 1.062265, -1.683057, 0.442730, 0.274948, 2.348994, -0.765417, 0.776610, 0.241322, 1.128288, 1.515094, -2.085134, 1.049170, -0.605473, -0.140245, -1.321326, -0.045581, 0.855986, -0.443743, -1.354501, 0.388817, 0.095488, 0.261038, 1.011495, -0.314717, 0.029782, -0.038697, 2.136642, 0.014697, -3.011778, 0.173705, 0.146129, -0.845379, -1.288893, 0.848944, 0.605097, 0.152458, 0.974621, 0.765603, 0.771062, -1.775870, -0.678981, -0.176923, -0.686449, 1.898232, -1.020612, -1.354837, -0.043068, -0.300015, 0.154585, 1.755027, -0.426490, -1.267349, -0.268653, -0.287218, -0.186931, 0.547677, 0.648549, 0.466099, 0.503078, 0.317238, 0.244550, 0.796795, 0.902169, 0.387778, 0.662838, 0.099500, -2.226891, 0.597740, 0.715034, -0.633031, -1.679369, 0.543111, -0.257643, -0.828987, 0.312307, 0.596694, -1.297439, -0.802969, -1.838572, 0.200758, 1.614324, 0.775535, 0.505559, 0.778013, -0.509092, -1.135050, -1.178565, 1.338580, 0.237240, 1.010507, 0.570691, 1.146659, -1.472037, 0.828128, 1.012029, -0.465989, 0.402074, -0.416875, -0.131153, -0.679788, 1.259486, 2.123017, 0.080991, -0.609785, -0.022760, 0.680924, -0.799098, -1.604908, -0.864820, -0.567600, 0.097648, 0.827421, 0.196851, 1.194387, -1.823332, 1.136009, -1.352971, 0.931056, 1.025733, 0.996780, -0.300885, 0.749047, 1.874420, -0.216025, 2.865738, -2.151413, -1.571273, -0.657617, 0.502213, -0.324155, 0.821925, -0.090171, 0.288615, 0.513541, 0.168332, -0.484436, -0.030806, -0.323216, 2.515737, -0.768082, -0.584409, 0.118621, -0.963008, -0.133828, -1.249792, -0.131978, -0.531103, 1.225566, 0.918561, 0.668808, -0.101127, 1.508622, 0.606976, -1.378289, -0.452788, 0.041343, 1.316459, 0.160414, 1.701994, 0.551498, -0.483048, 1.251926, -1.526237, -0.736546, 0.754953, -0.817343, 1.015382, -0.031105, 0.370372, -1.199750, 1.627179, -1.657286, -1.168224, -0.244165, 0.160987, -0.112550, 1.019035, 2.280782, -1.871327, -0.524802, 1.821679, -0.685914, 0.062724, 0.257558, -0.676704, 1.419979, 0.651204, -1.068474, -0.052351, 1.203416, -0.652589, 2.327816, -0.660048, 0.692844, 0.793130, 0.158290, -0.585633, -0.087601, 1.173301, -0.290935, 0.040166, 0.542299, -0.582586, 0.271306, 0.122196, 0.665061, -0.779517, -0.718081, -1.877276, -1.252328, 0.360431, -0.955324, -1.978227, 0.803410, -0.178430, -0.959295, 0.630731, -1.279081, 0.192315, -1.903189, -0.675285, 0.309240, -0.541594, -0.056293, 1.776019, -0.894201, 0.056392, 1.404103, 0.113519, 1.104897, -0.443649, 1.219918, 0.353797, -0.501165, 1.113912, 1.278034, -0.871461, 1.172982, 0.596697, -1.548223, 0.313286, -1.333420, -0.430893, 1.573169, -0.253580, 0.267122, -0.075675, -1.109400, -0.277010, -1.027555, -0.433901, 0.033297, -1.141899, 0.648755, 1.568496, 1.162342, -0.543404, 0.400204, -1.257169, -0.629579, -0.571377, 0.805252, -1.225040, 0.934275, -0.578302, -0.638888, -0.206949, 0.495699, 1.793069, 0.501017, 0.776776, 0.585656, 0.573843, 0.149676, -0.200380, -1.574862, 0.346256, 0.339128, -0.278733, -0.165454, 1.829574, 0.196033, 1.282044, 0.130789, 1.727596, 1.790129, 0.659798, 0.716811, 0.683067, -0.346571, 0.242042, 0.860938, 0.485511, 1.276565, -0.919079, -0.862969, 0.183405, 0.152476, 0.260639, -0.173565, 0.512594, 1.375960, -0.396851, -0.363907, -1.641055, -1.822389, 0.039212, 0.164753, 0.116395, -1.774030, -0.323417, -2.230603, -1.179728, 0.202419, 0.876117, 0.793657, 0.788611, -0.763736, 0.385331, -1.549563, -0.499845, -1.011770, -1.517638, 0.468193, -0.087922, -1.224269, -1.178208, 0.620655, 1.900572, -0.532846, 0.170689, 0.848457, -1.394555, 0.201337, 1.128630, 0.196815, -0.035499, -0.033795, -1.607241, 0.260005, 1.942873, 0.747811, 0.431182, -0.930874, -2.030816, -1.885500, -0.883294, -1.315229, -0.025818, -0.418902, -0.132735, 1.010110, 1.156663, 0.072571, -1.051639, -2.090901, -0.328538, 0.114635, 0.008651, -1.125049, 2.466474, -2.917685, 0.142033, 0.624541, -0.703083, -0.477289, 0.011147, -0.192426, -0.526601, -1.148287, -1.278181, -0.204467, 0.548412, 0.015905, 0.571718, 1.646519, 1.344547, -0.624031, -1.397568, -0.246429, 0.510796, 2.391095, -1.335905, 0.536445, 0.380635, 0.770062, 0.257350, 0.433161, 0.568259, 0.424748, -0.897766, -1.044633, 0.239560, -0.902328, 0.781752, -0.465627, 2.061125, 0.820822, -0.518875, -1.257676, 0.012471, -0.245483, -0.865950, 1.924137, -2.220682, 0.438959, -0.703392, -0.032280, -0.619949, -0.591307, -0.358743, -1.207613, -0.569484, 0.006838, 1.575664, -1.596865, 1.020027, 3.073270, 0.222619, -0.458251, 1.803644, -1.981149, -0.206486, 0.611732, -0.247545, 0.020892, -1.118521, 1.372310, -1.083308, 1.166251, -1.587290, 0.532322, 0.046277, 1.646540, 1.197983, 1.695619, 0.730179, -1.827557, 0.878910, 0.644323, -0.346873, 0.053954, -0.504006, -0.331597, -1.512858, -1.540880, -1.150630, 1.236867, -2.611885, 0.733829, 1.598033, -0.823751, -0.150936, -0.162573, 0.682289, 0.457879, 1.494980, 0.572642, 0.551503, -0.000152, 0.327813, -0.229658, 1.122496, 1.376082, -0.616302, 0.546517, 1.918280, 1.781606, 0.034718, -1.993492, -0.692250, -0.241492, 0.530820, 0.235702, 0.481145, -1.984227, 0.364654, 0.135874, 0.292133, -0.104011, 0.679996, 0.751805, 0.040565, -0.487294, -0.065285, -1.540447, -0.336744, -0.748744, -1.238833, -1.685375, -1.168528, 0.276482, 1.191660, 0.892987, -0.786405, 0.062498, 0.351929, 1.982254, -0.168346, -0.130996, 0.485008, -0.156850, 0.420248, -0.239325, 0.566120, 0.467160, -0.382663, 0.212102, -0.343557, -0.672544, -0.869294, 0.816820, -0.178021, 0.344465, 0.092975, -0.417941, -0.180374, 0.703312, 0.181560, 0.257753, 1.029101, 0.158804, 0.233925, -0.968973, -1.988769, -0.099716, 1.106740, 0.135644, 0.181653, -0.957438, 0.608039, -0.096022, -0.800750, -2.378509, 0.404807, -0.566938, -0.750786, -0.464362, -1.428267, 1.457952, -0.079389, -0.700990, -1.147858, -0.091208, 1.321306, -1.806182, -0.080394, 1.529596, 1.466066, -0.605815, -0.769387, -1.386900, -0.769394, 0.555541, -1.459008, 0.859010, 0.736189, 1.352214, -0.072282, 0.552458, 1.679355, 0.220488, 0.680177, -0.557058, -1.079371, 1.756279, -0.337515, 0.858185, 0.347230, 1.037756, 0.868605, 0.893179, 1.515999, -0.350862, 0.109698, -1.271031, -1.546041, -1.970385, 0.463732, 0.494671, -1.669773, 0.236069, -0.271946, 0.498189, 0.246775, 0.922381}, + { 0.913403, -0.295290, 0.086092, 1.005054, 1.725580, -0.133652, 0.342107, 0.357993, -1.589066, -1.048333, 0.238940, -1.376018, 0.188080, -1.612856, -1.934624, -0.467801, 1.277703, -0.948792, 0.674268, 0.123088, 0.316576, 0.237434, 0.979154, -0.574009, -0.795337, -0.240708, -0.113751, 0.081421, 0.008718, -0.347913, -1.123316, 1.777761, 0.883286, 0.590090, 0.171913, -1.182438, 1.350497, -0.361385, 0.017211, 1.504698, 0.313551, -0.844819, -0.618732, -1.577376, 0.061875, 1.193806, 1.537125, -1.725651, -0.242986, -1.837148, 0.931901, -0.073035, 1.073268, 0.077756, -0.756300, -0.829790, -0.974044, -1.524843, 0.713368, 1.474400, 0.910172, 0.446263, 1.585931, 0.679202, -0.658093, 1.826162, -0.009757, -0.232815, 1.243577, 0.091568, -0.167431, -1.431377, 0.030063, -1.932114, 0.316663, -0.944830, 1.162451, -1.131858, 1.491109, 1.691544, -1.329376, 0.139726, -0.804626, -0.022518, -1.044561, 0.420332, -0.743144, -1.822255, -0.437006, 0.400183, -0.317712, 0.693633, -0.564303, -0.098094, 0.760899, -0.110091, 0.403445, -0.315074, 0.066276, 1.978001, 0.437739, 0.995208, 0.282942, -0.233445, 0.073684, 0.410945, 0.387493, -0.173382, -0.985331, 0.575592, 0.679394, -1.915635, -0.500575, 0.799922, -0.200503, -0.149439, 0.762506, 0.649875, 0.194384, -0.425565, 1.513602, -0.583543, -1.442096, 0.553279, 0.256465, -0.683770, 0.798597, 0.662315, -1.552708, -1.651697, -0.261657, 0.028729, -1.660404, 1.625884, -0.622325, 0.314700, 0.095353, 0.081231, 0.293623, -0.206468, 1.204259, 0.358432, -2.016816, -0.265700, 0.478025, -1.895010, -1.461382, 0.785414, -1.590029, -0.082857, -1.039708, 0.250805, 0.874629, -0.080413, 2.482724, 0.172107, 0.792439, 0.187465, -1.579936, -0.794222, -0.636311, -0.889284, -1.921318, -0.657590, 1.778675, -1.843720, 0.325486, 0.043203, -0.713850, -0.728758, -0.968976, 0.727232, -1.064471, 0.878060, -0.008737, 1.160822, -4.114590, -2.042076, -0.611600, 0.127878, -1.159296, -1.170815, 0.117916, -0.272055, 1.234184, -1.810103, -1.356371, -0.376263, -2.450144, 1.233387, -1.217582, -1.679335, 0.457814, 1.050618, -0.544435, -0.368644, -0.232821, 0.043874, 0.935485, 0.454126, -0.906432, -0.304290, -0.159284, 1.410072, -0.236534, -2.195936, 0.789080, -0.632066, 0.486165, 1.460808, -1.166771, -0.242664, 0.770249, 0.891180, 0.852778, 0.752358, 0.833951, 1.350073, 0.604933, -1.119053, -0.316285, 2.170391, -1.073226, -1.425531, 0.811938, 0.054409, -0.976320, 0.114019, 0.460297, 0.913301, -2.035406, -0.970896, 0.731869, 1.361570, -0.797868, 0.169634, 0.462445, 0.358620, -1.109236, -0.403613, 0.209397, -1.120581, 0.164944, 0.411159, -2.269710, -1.255673, -0.666517, 0.536336, 0.995050, 1.141749, 0.019619, -1.227143, 0.278797, 1.348266, -1.650656, -0.183376, 0.281023, -0.662262, -0.604583, 0.302586, -1.789549, -1.043313, 1.654594, -0.282964, 0.249613, -1.353860, 0.972507, 0.514998, -0.460577, 0.081415, 1.438501, 1.162506, 2.461328, -0.342899, -0.099116, 1.703849, -0.799054, 2.250685, 1.002557, 1.032787, 0.366252, -0.088449, 0.578996, 0.309805, 0.080233, 0.034031, -1.366195, -0.889938, -0.942371, -0.715408, -0.073784, -0.614486, -1.335649, 1.281016, 1.416838, -0.793418, -0.183820, 2.226790, -1.275784, -1.301143, 1.175273, -0.645667, -0.094837, -1.158250, -0.176231, -0.563877, -1.035846, -0.530539, 0.461159, 0.791217, 0.132766, -2.418760, 0.059318, 0.267904, 0.566350, 1.005936, -0.034073, 0.214185, 0.054725, -0.173895, -1.022204, 0.593985, -2.160395, -0.791361, -0.835063, -0.063793, 1.239700, 0.004030, 2.958032, 0.050634, -0.426058, -2.227523, -0.748648, 0.845190, 0.981113, -1.794394, -0.652911, 2.441202, -0.200283, -0.847372, 0.230857, -0.958025, 0.390691, -0.494975, 0.606822, 0.236227, 1.278609, 0.504989, -0.348713, -0.768320, -1.662945, 0.738913, -1.376755, -0.720088, 1.546482, 1.591030, 0.769729, 0.568637, 0.230630, 1.194979, 1.088164, -1.099574, 0.892180, -0.036292, -1.117458, -0.308925, 1.214907, 0.240722, -0.204111, -0.333902, -0.299545, 0.202653, -0.827144, -1.210344, -0.584223, -0.527318, -0.713438, 0.553275, -0.154885, 0.821249, -0.650773, 0.268670, -0.610320, 0.917912, 1.157194, 0.768376, 0.161635, -0.141360, -0.893721, -1.227267, 0.715565, -0.738901, -0.359867, 0.205392, -0.916198, -0.206067, 0.791689, -1.651486, -1.188522, 0.612037, -0.572621, 1.337013, 1.317472, -0.536303, -1.465946, 0.732252, -0.775071, -1.521306, -0.707566, 0.200054, -0.926414, -0.193990, 0.938176, 0.753778, 0.133653, -1.589309, -0.230409, -0.818231, 2.010239, -0.541675, 0.645513, -0.577786, 0.219515, 0.316971, 1.299165, 1.183105, 0.476046, 1.353827, -0.547525, -1.224698, 0.179259, 0.737115, -1.128772, -2.165439, -1.049073, 1.585385, 1.247090, -0.453924, 1.617306, -0.702724, -0.171480, 0.062967, 0.106036, 1.561527, 0.251820, -1.065674, -0.309443, 0.452167, 0.307494, 1.753611, 1.577688, -0.735904, -1.224096, -0.611819, -0.387908, -0.739698, -0.704023, 0.006210, -0.727352, 0.742725, -0.705610, -0.237533, 0.670380, -1.012794, -0.690726, 1.418735, -0.466697, 0.052781, -0.175423, -0.421615, 0.346860, 0.023260, 1.570746, -1.280639, -0.467799, 0.225527, 0.704658, -1.811950, 0.252413, 1.139279, -0.461804, 1.275409, 1.531644, 0.795347, 0.580419, 0.745464, 0.858649, 0.676112, 0.131382, -0.684164, -0.191336, 0.379843, -0.087554, 0.820696, 1.686524, -0.113226, -0.008035, 0.548109, -0.147544, -0.631111, 0.597068, -0.065515, 0.349485, 0.842227, -1.377857, -1.018725, 1.181294, -0.497171, 0.902685, 1.457999, -1.685141, -1.146413, 0.237137, -0.471157, 2.239570, -0.841215, 0.537012, 0.105813, 0.419670, 1.262526, -0.825573, -0.319996, 0.514645, 1.022644, -0.245500, 1.401732, 0.137622, 1.096113, -0.386344, 0.135761, 0.515783, -0.303785, 0.042243, 0.648488, 0.231282, -0.385912, -1.805604, 0.169719, -0.084000, 1.922627, 0.880066, 1.794085, -0.012218, -0.369052, 0.169733, 1.229249, 0.546774, -1.153349, -0.162112, -0.395439, -0.799835, -0.934362, 0.379754, 1.143776, -0.854335, -0.465476, -0.129304, 0.194105, -0.479547, -0.172307, 0.570265, 0.144661, 0.897203, 1.067333, -0.171449, 1.230701, -0.521839, -0.529737, 0.148736, -0.717064, 0.291837, -2.632122, 2.647436, 0.708961, 0.428708, -1.842660, -2.135876, 0.965447, -1.783203, 0.710079, 1.166904, -0.408116, 0.488993, 0.106535, 0.763684, -0.171735, 0.221046, -1.703968, -0.563011, -1.429563, -0.650974, -0.876201, 0.635325, 1.594456, 1.123131, -0.734087, -0.333893, 0.165535, -1.229982, 0.088228, -1.286999, -1.878592, -0.665636, 0.949814, 2.002466, 1.301372, -1.208860, 1.186290, -0.315561, -0.784986, -0.783045, -0.160142, 1.492897, -0.139057, -0.220124, 0.086398, -3.372561, 1.073421, 0.171393, 1.089487, 1.343760, 0.672042, 1.825138, -0.476072, 3.042275, -0.315788, 0.815354, 0.595959, -1.188119, -0.762317, -0.880267, 1.719976, 1.014601, 0.659368, 0.335869, -0.243646, 0.610776, -0.996865, -0.471263, 1.047923, 1.439167, 0.520818, 1.570329, -0.068086, -0.646972, 0.401265, -0.225824, -1.905432, 0.372691, 1.056847, 0.362449, -0.395691, 0.290200, 1.286069, 0.419890, -0.215639, -0.948611, 1.051324, -1.628543, -0.178035, -0.641380, 1.323620, -2.443933, 1.262372, -1.519546, -0.798928, -0.805421, -0.123867, 0.872316, -1.505693, 0.574153, 0.017660, -0.349287, -0.639374, -0.200385, -2.029329, -2.302649, -0.783666, 0.654354, -2.658243, 1.251016, -0.106872, -2.195074, 0.155139, -1.320805, -0.207960, -0.989584, 1.087116, -0.688379, 0.405956, -0.359556, -0.555725, 0.420931, -1.102275, -1.355091, 0.153878, -0.316535, -0.095558, -0.299016, 0.775489, 0.141287, -0.204345, -0.118941, 0.039299, -0.485611, -0.592696, -0.994134, 0.094326, -1.561734, 0.167129, 1.455357, 0.639588, 0.663504, 0.356364, -0.145230, 1.663015, -0.951385, -0.645525, 1.364940, -0.239877, 0.756187, -0.262879, 1.380013, 1.571304, 1.042977, -0.316306, -0.016299, -0.584617, 0.130968, 0.769290, -1.686567, -0.884075, 0.127944, 0.804433, 0.297289, 1.242926, 0.949061, 1.883114, -0.112831, 0.105122, 0.102241, 1.948179, 0.021827, 0.589759, 0.136672, -1.136392, -1.032745, 0.051008, -0.380643, -2.210566, -0.699576, 0.380231, 1.438732, -0.270174, -0.383435, -1.272785, 2.043159, -0.870828, -2.338278, -1.844778, 0.746975, -1.230290, -1.002257, -2.078463, 1.853119, -0.910829, -0.270036, -1.715081, -0.338202, -0.614883, -0.425491, -0.735518, 0.633470, 0.297810, -0.360796, -0.122611, -0.608419, -1.504582, 0.355186, -0.399242, -0.590992, -0.652033, -0.552218, 2.013478, -0.698620, -0.189950, -0.818127, -0.764823, 1.078019, 2.396269, -0.299505, 0.696984, -0.808472, 0.190950, -1.212633, 1.043719, 0.602868, -0.089388, 0.061692, 0.824064, -0.348082, -1.172253, 0.142974, 1.221284, -0.318246, -0.069737, -0.451380, 0.493433, 0.311425, -0.827212, 0.315756, 1.180425, -0.589397, 1.388996, -0.732194, 0.942442, 1.578300, -0.379549, 1.172463, 2.034979, -0.405942, -1.561896, 0.784890, 0.548668, -0.220109, -0.243668, -0.079107, -0.645614, -1.801148, 0.620777, 0.017744, 1.159341, -0.184901, -0.670137, 0.551791, -2.393059, 0.317979, 1.178799, 0.422720, 1.431991, 0.638591, -1.123644, 0.832713, -1.074586, 0.449156, 0.129873, 0.795875, -0.964696, 0.728549, -0.286222, 0.714366, 0.837298, 0.498846, 0.128404, -1.170166, -0.420597, 0.472304, -1.232533, 1.454803, 0.230409, 0.082428, 0.624540, -0.464645, -0.000915, 0.218237, 1.222162, -1.074255, 0.687082, 1.180105, -0.132165, -0.095443, 0.203219, 0.781170, 1.306183, -0.226083, 0.682511, 0.620491, -0.813432, -0.302646, 0.946222, 2.840906, 0.028700, 1.533162, -0.037276, -0.239754, 0.400961, 0.624923, -1.481543, 0.647345, -1.516621, -1.841342, -0.542951, 0.599887, -0.890403, -0.630342, 1.803004, -1.111105, 0.753599, -0.379072, -0.848904, -0.882156, -0.887099, -0.494679, 0.189248, 0.890949, 0.498730, -0.412214, 0.441821, -0.456395, 1.671962, -0.077532, -0.549207, 1.112935, 0.418469, 0.547161, 0.467275, 0.060746, 1.100012, 0.376833, 0.577460, 0.343832, -1.308718, 0.732842, -1.251363, -1.595083, 1.503064, 1.999101, -0.382579, -0.304532, -0.091495, 0.475582, -0.381950, 0.187116, 1.152055, -0.748732, 0.188938, 0.488012, 0.225913, 0.129863, 1.541680, 2.369422, -0.637973, 0.055969, 0.411817, -0.667355, -3.527637, -0.984312, -1.048900, 0.202127, 0.819740, -1.334814, -0.070994, -2.014429, 0.361486, 1.130946, -1.602990, 0.000375, -1.476401, -0.935506, -0.353213, 1.010574, -0.942318, 0.950611, 0.764468, 0.695908, -0.623897, -0.458631, 1.035566, -1.608659, -1.857964, 0.698215, -0.010384, 0.651333, 1.090681, 1.635870, -2.248759, 2.289357, 1.205925, 1.089136, 0.065225, -1.380599, -0.387291, -0.513308, -1.740715, -0.773301, -1.163052, -0.939172, 0.082578, -1.920769, -0.092279, 0.460818, -2.234457, 0.375061, 0.277873, 1.579771, -0.894758, 0.176911, 0.798657, -1.262394, -0.318567, -1.264222, 1.332434, -1.653745, 1.659940, -1.865237, -2.056912, 0.077004, -0.578130, -2.308095, -0.302860, 0.624086, 1.000560, 1.467000, -0.104386, -1.291158, -2.436184, 0.490167, -0.329805, -1.290207, 0.136893, -0.151299, 1.218869, 0.778693, 0.088672, -0.370493, -0.177106, 0.175202, -0.231248, 0.515380, -1.190236, -0.334552, 0.021026, -0.995821, -1.295010, -1.116324, 0.811160, -0.870292, -1.672778, -0.593456, 1.443441, 0.446948, 0.452867, 1.664361, -1.341895, 0.240986, -0.436342, 1.704268, -1.324615, 0.945221, -2.050392, 2.912199, 0.494053, 1.687847, -0.013021, 0.127526, 1.051579, 1.388188, 1.653286, 0.440886, 0.346153, -0.194893, -1.179121, 0.080471, -1.478681, -0.124384, 0.185349, 0.042733, 0.608128, 1.920044, -0.333860, -0.033559, 1.288794, 0.568745, -0.601229, -1.724765, -0.158642, -0.753548, 0.411068, 1.313829, -0.555419, 0.642677, -1.193577, 0.321132, -0.413717, 0.821574, -1.962753, -2.132265, -0.524618, -0.433854, 0.165799, 0.927373, 1.492068, 0.537762, 0.649336, 0.569878, -0.321524, 0.967405, 0.338689, -0.238759, 0.496493, -2.441943, 1.996752, 0.991112, 0.039014, -1.018100, -2.082364, -1.607005, -0.071409, -0.580939, 1.907665, -0.776569, 2.208256, 0.017919, 1.100528, 0.517153, -0.090844, 1.060116, 0.569297, -0.304519, -0.067431, -0.889586, 0.614484, -0.205404, 0.189071, 1.549247, 1.650078, -1.481414, 0.481248, 0.282041, -0.191443, 0.505036, -0.090998, -2.091541, -1.710783, 0.663430, 0.355174, 0.762291, -0.143409, 1.294493, 0.015476, 0.759706, 0.367099, 0.018843, -0.728650, 0.670583, -1.792846, 1.239986, 1.203303, -0.531529, -0.255791, -0.000355, -0.248994, -0.679766, -0.087303, -0.690944, 2.031164, -0.139140, 1.190683, 0.300215, 0.467673, 0.691671, -1.315433, 0.189585, -2.325052, 0.156303, -1.952984, 0.537005, -0.923529, -0.775256, -0.539709, 1.403758, 0.260577, 0.661433, 0.145085, -0.384894, -1.017240, -1.627399, -1.203338, -1.201718, 1.885988, -2.356426, 0.494031, -0.420237, 0.051255, 0.092339, 1.825015, 1.059425, -1.181145, 0.569534, -0.023212, 0.204816, -0.298683, -0.974444, -0.688290, 0.131769, 0.659427, -0.830690, 0.460499, 1.831640, -1.254516, 1.366628, 0.113751, 0.077125, 0.213675, 0.830589, 2.167343, -0.330955, -3.130218, 0.898353, 0.787544, -0.905263, 0.298872, -0.001970, 0.610958, 0.342370, 1.357600, -0.695130, -1.377497, -0.888876, 0.208488, 0.177307, 0.531810, 0.133495, -0.944870, 1.062205, -0.090498, -1.051363, 1.793358, 1.033854, -0.542087, 0.731653, 0.571691, -0.330579, -1.357541, -0.478325, 0.933061, 1.731145, 2.090360, -1.411629, 1.028173, 0.493643, -1.119598, 0.216493, -0.073794, -0.309202, -0.424162, -1.916224, 0.228828, -0.258099, -1.626322, 0.916342, 0.847263, -0.955396, 0.028673, -1.430828, -0.202529, -0.238464, 1.353451, 0.943183, -0.178260, 1.037155, -1.494147, 0.800795, 1.586948, -0.692738, -1.992311, -0.014793, 0.378782, 0.298682, 0.681722, 1.348960, -1.024274, 0.803142, 1.416649, 1.359811, 0.275028, 0.949459, -1.038998, -0.352822, -0.162785, -0.111768, -2.208667, -0.120801, 0.785123, -1.899193, 0.742753, -0.435845, 0.503526, -0.850572, -0.920864, -0.937710, 0.115942, -0.065955, -1.682792, -1.768431, -0.286779, 0.189624, 1.275929, -0.183378, -0.987214, -1.360563, 1.742706, 2.509756, -0.027711, 0.573839, 0.787127, -1.858311, 1.299002, -0.128850, -0.610663, 0.843929, -0.062417, 0.863325, -0.085206, -0.351954, 1.739607, -2.504574, -0.896298, 1.701456, -0.050931, -1.881217, 1.616482, -0.482369, -1.394796, -0.041055, -0.859732, 0.325654, 0.524310, -1.166517, 0.432988, 0.207665, -2.117461, -1.600686, 0.613088, -0.332504, 1.597860, -0.365008, 0.175404, -0.417082, 0.982976, 0.675928, -0.171601, -0.481248, 0.560674, -1.444848, 0.788258, -0.402086, 0.011922, -1.333007, 0.326771, 0.249193, 0.574481, -0.352502, 1.395494, -0.461596, 0.822688, -1.617339, 0.058780, 0.652375, -0.360354, -2.080351, 0.952601, -0.837369, -1.335315, -0.582457, -0.725704, -0.736837, -0.891244, 0.576048, 1.019237, -1.325011, 0.508911, 0.730365, 0.043901, -1.410119, -0.079602, -0.143578, -0.217001, 1.783046, -0.833245, 0.684810, -0.460381, 0.605139, 0.303966, 0.920487, 0.865388, 0.871592, 0.868629, 2.036801, 1.348196, 0.713841, 0.456392, 1.632854, -0.644074, -1.069048, 0.181974, 0.374629, -0.405599, -0.316621, -1.517407, 0.046311, -0.522704, 0.146426, -0.819076, 0.534937, -0.681408, -1.548025, 1.521171, -1.032147, 0.120204, -0.157576, -0.330034, -1.335280, 1.551339, 1.018876, -1.583021, 0.728387, -2.541262, 0.760436, 0.788721, -0.114877, -0.337016, -0.531941, 1.012118, 1.881705, -0.392592, 0.260281, -1.752325, -1.128482, 0.148766, -0.099091, 0.353457, -0.996570, -0.161375, 0.528342, -0.303480, 1.929400, 0.799600, 0.573743, -1.254646, 1.702658, -0.134820, 1.186657, -1.662686, -1.583298, -0.874662, -0.209792, -0.291872, 1.698716, 2.325266, 0.521890, -1.472887, 1.142520, -1.312554, -1.397017, 0.260880, 0.705056, 0.134479, 1.996535, -1.591174, 0.374104, -0.885840, -0.385429, -0.964313, 0.489072, -0.065803, -1.330338, -0.914240, -0.857496, -0.109447, -0.927463, 1.819203, -0.155816, 0.454896, 0.712746, -0.417292, 0.311138, 0.197462, 1.205566, 0.648917, -0.755831, -2.616862, -0.163157, 1.237701, -1.230158, -0.016490, -0.637669, 0.465496, 0.001832, -0.143131, 0.705141, -1.023242, -1.268311, 0.381315, 0.841478, 0.293367, -0.782445, -0.756819, 0.592478, 0.364340, 0.918993, -1.262358, 0.664348, 0.304306, -0.560838, 0.027819, -0.366784, 1.045292, 1.412022, 0.708641, 2.108564, 1.287159, 0.591160, -0.302547, -0.585347, -0.585575, 0.006980, -0.903736, -1.349664, -0.700131, 1.001958, -2.518805, 0.167720, 0.657626, 0.312682, -1.384503, -1.132080, 0.485172, -1.407931, -0.835635, -1.141446, 0.963320, -1.220829, 1.045625, -1.488148, -0.229424, -1.416775, 0.733098, -1.353227, 1.484108, -1.001539, 0.399988, -2.312788, 0.141654, 0.279016, 0.359828, 0.291394, 0.436174, 0.740175, 0.788727, 0.075608, 0.218465, 0.818498, 0.410584, -0.552661, 0.464544, 1.005693, -1.013873, 1.999746, -0.424312, -0.732459, 1.196663, -1.775183, -1.129266, -0.998833, -0.431410, -0.776909, 0.006672, 0.562266, 0.140724, -0.197857, 0.331699, 0.422590, 0.568836, 0.671404, -0.136716, 1.271331, 0.079040, 1.413950, 0.556110, -0.669662, -0.350413, -0.076738, -1.461412, 1.384252, -0.121194, 0.574469, 0.639011, 1.118204, 0.995114, 0.641265, 0.132009, 0.411010, 1.086222, -0.787708, 0.313102, 1.534390, -1.489901, -2.595364, 0.374673, -1.182831, 1.544350, -0.136823, -0.698017, -0.607790, -0.563755, 0.230661, -0.114301, -0.618625, 0.049853, 0.206117, 0.702277, 0.671852, 1.904894, -0.743612, 1.052593, 0.355758, 0.996889, -0.787670, -0.141536, -1.666204, 1.784780, -0.360527, -0.111677, -1.495615, 1.082809, 0.239898, -0.442906, -0.235109, 1.110178, -0.822740, -0.133057, 0.435325, 0.472139, 0.638112, -0.340802, 0.829507, 0.482909, -0.061095, -1.193948, -0.046133, -0.298780, -0.203912, 1.019176, -0.566364, -1.467158, 1.190117, 0.443801, -0.460225, 0.907993, 0.467284, -1.487065, 2.425051, 0.981015, -1.344281, 0.481750, 0.065548, -1.250557, -0.678110, 0.384018, 0.040002, 1.665672, 1.390966, 0.847474, -0.019644, -0.443412, -0.284247, 0.408083, 0.861682, 0.143609, 0.200291, -0.091713, -0.220923, -0.438046, -0.060802, 1.797990, 0.516717, 0.216150, 1.730818, 0.534644, -0.813614, 2.036968, -1.081348, 0.101518, 0.595408, 1.428694, -0.681440, -0.633095, -0.067956, 0.637223, 0.314772, -1.136123, -1.453235, -0.999856, -0.636267, -0.154853, -0.132758, -0.524910, -0.413373, -0.533090, -0.009956, 0.585465, -0.025168, 0.372844, -0.852343, -0.710855, -0.161087, -0.106839, 1.096798, -0.139601, 0.519056, 0.296049, 0.392487, -0.405439, 0.147789, 0.193749, 1.401156, -0.734772, -0.107948, 1.605380, 0.104968, -0.422602, -0.777041, 0.097238, -0.786663, 0.257706, -1.290495, 1.498422, -1.034299, 0.637373, -1.815397, -2.048041, 1.175819, -1.321941, 0.003204, 0.571317, -0.020497, 0.647902, 1.045323, -0.633302, -0.303898, -0.756791, -0.535225, 0.257244, -1.160991, -1.097740, 0.821813, -1.143465, 0.367682, 0.736349, -0.594280, -0.104580, 1.026055, 0.917265, -0.204418, 0.307431, 1.100862, -1.032685, 0.513092, -0.127439, -1.795178, 0.110245, -0.171046, -1.159945, 0.138175, 1.005968, 0.451161, -0.365544, -0.237846, -1.096985, 1.616921, -0.057506, 0.480996, 0.073631, -1.042372, 0.257152, -1.713247, -0.451949, -1.209089, 0.080691, -1.942874, 2.342692, 2.698232, -0.873547, -0.849517, 0.041467, 0.769473, 0.882044, -0.388577, 1.141990, -0.269912, -0.659595, 0.952904, 1.648635, -1.364752, -0.389308, -0.998666, -1.255390, -0.910889, -1.814911, -1.248577, 0.409798, 0.430065, 0.204084, -0.257947, -0.882907, -0.606953, -0.364158, -0.116928, -1.727485, 1.094589, -1.583883, 0.275217, 1.427145, -0.785385, -0.479235, -1.862024, -0.665783, 0.583499, 0.571398, -0.418106, -2.161863, -1.477446, 0.530406, -0.969047, -1.540887, 1.313533, 0.393603, 0.739096, 0.122418, -1.559744, 1.223960, 0.458846, 1.578485, 0.517954, -0.684393, -0.125996, -0.763663, -0.327630, -0.473866, -0.816504, -0.202052, -0.295117, 0.518002, -0.557734, 0.457844, 0.830280, -0.635566, 1.040560, -0.777955, -0.173942, 1.855183, -1.757794, 0.421589, -0.055937, 0.884173, -1.334001, 0.421763, 0.273419, -0.168015, 0.605136, 1.488071, -0.275083, 0.379397, 0.403700, -0.061764, 0.339857, 0.504642, 1.650509, -0.345053, -0.261294, 0.597117, -0.351792, 0.304133, -0.279741, 0.102362, -1.167461, 0.766256, 0.764644, 0.433666, -0.345296, -0.624376, 1.427717, 2.154486, -0.143827, 1.928755, 0.031296, 0.182007, 1.531425, 0.252431, -1.038667, -1.353779, -0.404474, -1.818243, 0.484782, 1.430379, -1.886377, 2.537169, 0.064042, -0.699539, 2.435627, 0.790189, -0.551094, 0.598359, -0.559784, 0.011286, -0.724970, 0.774402, 0.064860, 0.331265, -0.131036, -1.218105, 0.321921, 0.302713, 0.000870, 0.414696, 0.762788, 0.205052, 0.701044, 0.153276, 0.286723, 1.738822, -1.576476, 0.825534, -0.356657, -0.320160, 0.306882, -1.225395, 0.791589, 0.308400, 0.903629, 1.263457, -0.329563, -0.560733, -0.568888, 0.500984, 0.324989, 1.538370, 0.302471, 0.056957, 0.788040, -2.308721, 0.352296, -0.180490, 0.558103, 1.132525, 0.872064, -1.893678, -0.395341, -0.418926, 0.379508, 1.203501, -1.386672, 0.040549, -0.624092, 0.842019, -1.006843, -1.550552, -2.426134, -0.378154, -0.098406, -0.035565, 1.493141, 0.644917, -1.433892, 1.209951, 2.090833, 1.332629, 0.070709, 0.290186, -0.118776, 0.518135, -0.726204, -1.063034, 2.350941, 0.692363, -1.412961, 0.764082, -0.046269, 0.905475, -0.187353, 1.153199, -0.069834, 0.254013, -0.922581, -1.785706, -0.561326, -0.226021, 1.481277, 0.056705, -0.792192, -0.787747, -0.310655, -0.487953, -0.266872, -1.206300, -0.309148, 0.171846, -0.270655, 1.219158, -1.363111, 0.166464, 0.114144, 0.478354, 1.160402, 0.469235, -0.653176, 0.808511, 0.285775, -0.212631, 0.293289, 1.425705, 0.576202, -1.441844, 0.426328, 0.543491, 1.350556, -0.158943, 1.055269, -0.198036, -0.351125, -1.079552, -1.893802, 0.432161, -0.133249, 0.302658, -0.351570, -1.234667, -0.626159, -0.664196, 1.037593, 1.155569, -0.522709, -1.077202, 1.002297, 0.585420, -0.217901, 0.198175, 0.318026, 1.768833, -1.058664, 1.492809, -0.302124, -0.421800, -0.678741, 1.878892, -0.774489, 0.755585, -0.106241, 0.904974, -0.504471, -0.829184, 0.555512, 0.585367, -0.191608, 1.262370, -0.277712, 1.431052, -0.508953, -1.756781, -0.001432, 0.495361, 0.342478, -0.805958, 0.946354, 0.186571, 1.636587, -0.219186, -0.406737, -1.108580, 0.139791, -0.493492, 0.347928, -1.138091, 0.741415, -0.353863, -1.019975, 0.595426, -0.611289, 1.147716, -1.071537, 0.350685, -0.640571, 1.872764, 0.735030, 1.654490, 0.034209, 0.850442, 0.765857, -0.620457, -0.015989, 2.013378, -0.022775, 0.099577, -0.697340, -2.879510, 0.372183, 0.243963, -0.043717, -1.029111, 0.336166, 0.127513, 0.019005, -1.102317, 0.491639, 1.571659, 2.176620, -0.012573, 2.280913, 1.064391, -0.324564, 0.832812, 0.078775, 0.020725, -0.159046, -0.028331, 0.715936, -0.096145, 0.579009, 0.053481, -0.164582, 2.100804, 0.972980, 1.361413, 2.197529, -0.816555, -0.157454, -0.318873, 1.079657, -0.314151, 0.054441, 0.222260, 1.165442, -0.298025, 0.144725, 0.784585, 0.199756, -1.003200, 0.888169, 0.654144, 0.934175, 0.103473, -0.640708, 1.178961, -0.304657, 0.887440, 2.279331, 0.453346, 0.603411, -0.531799, 0.130137, -0.565762, -0.134563, 1.156452, -0.288235, -0.852428, -0.194860, 0.777655, 0.334638, -0.437264, 1.376237, -0.992949, -1.716769, -1.366388, -0.315270, -0.490887, -0.127992, 0.841555, -0.251131, 0.671576, 0.302325, 1.012264, 0.123762, -0.127324, -0.968504, -1.480337, -0.746352, -0.531919, 1.302861, 0.831615, -0.182994, 1.218896, -0.080928, 0.723429, -1.217126, -1.356633, 1.432953, -1.152604, 0.106947, 1.471100, -0.181404, -3.568440, -0.316173, 0.435846, -1.916468, -1.512657, 0.009091, 0.426266, 2.402625, 1.567715, 1.496022, -1.168769, 1.047770, 0.179737, -0.348029, -1.098742, -2.063512, 1.027799, 1.780596, 0.612523, -1.574373, 2.524835, -1.374561, -0.778436, -0.957637, -2.054949, 0.145749, 0.175394, 0.505519, 0.977582, 0.345112, -2.037111, -0.927995, -1.212412, 0.223951, -0.989434, -1.294394, 0.242332, -1.101422, 0.008829, 2.642361, 0.601457, 0.511484, 1.104965, -0.740049, 1.032274, 1.521340, 0.418595, 0.186579, -0.254883, 1.787646, -1.254245, 2.032933, 1.517695, -3.545144, 1.183899, -0.270412, 0.487055, 1.166276, -0.438415, -1.514135, -0.554513, -0.617940, -1.687389, -0.227842, 0.106053, 2.023804, -0.363783, -0.996351, 1.135031, 0.936972, 0.565574, -0.095137, 1.578855, 0.446448, -1.758693, -0.473102, 0.426665, 0.593770, 0.236990, -0.408046, 0.421205, 1.228682, 0.012840, -0.083265, 0.476912, 0.923252, -0.467840, 1.300762, -0.556500, -1.642052, 1.630240, -0.708485, -0.633587, -0.762091, -0.508881, 0.398978, 0.447225, -0.830081, 2.413004, -0.451778, 0.526217, 0.909779, 1.075033, 0.831975, 0.446355, 0.287110, -0.845184, -1.169920, 1.174785, -2.768360, 0.957603, 0.324926, -1.586653, -0.290031, -0.083768, 0.382290, 1.231667, 0.136754, 0.297569, 0.574737, -1.223524, 0.300898, -1.867978, 0.650859, -0.201653, 0.144520, 0.749572, -0.326839, 0.139823, 0.148926, -0.838488, -0.730101, -0.449120, -2.092322, -1.563825, 1.270334, -0.294818, 0.328440, 2.064492, 0.804310, -0.095004, -0.131517, -0.188995, -0.716594, -0.249630, -0.399271, 0.062273, 0.197774, 1.688540, 0.560332, 1.966268, 1.862716, 1.274138, 0.853900, -0.409317, 1.301466, -1.221812, 0.588668, 0.512362, 1.194384, 0.354985, -1.861071, 0.853644, -1.465980, 0.553109, -0.618291, 0.463894, -0.929551, -1.479010, 1.760136, -0.877305, 0.483413, -0.574642, 1.050095, -0.762708, -0.920617, 1.307727, -0.324027, 0.306300, -0.430994, -0.632565, -0.319898, -1.390639, 0.527508, 1.719242, 0.060705, 0.347969, 0.894917, -0.202357, -0.230826, -0.811858, 2.757146, -0.234030, 0.955649, -0.304265, 1.015319, -1.160955, 0.469541, 0.508901, 0.670137, -0.957369, 1.033738, -0.481820, 0.869655, 0.535868, -0.018482, -1.741288, 0.293051, -1.637447, 0.388526, -0.228709, 0.372566, 2.362631, -2.146944, -0.713169, 0.592027, 0.787872, -0.162650, 1.708984, 1.409063, -1.025890, 0.841282, 0.405074, 0.801964, -0.327892, -1.275438, 0.926400, 1.357385, -0.073323, -0.485023, 0.021156, 0.243930, 0.091909, -0.068057, 1.403117, 0.467883, 1.400371, 0.805564, 1.889632, -0.118338, 1.764054, -0.736752, -1.122008, -0.377373, 0.009527, -1.623898, 0.836203, -0.363454, -0.640454, -1.875459, -1.092256, -1.441671, 1.558256, -0.750560, -0.373675, 0.865361, 1.234995, 1.125266, 0.395811, -0.022773, 0.197167, 0.007381, 0.923891, -0.831439, 0.226626, -1.099458, -0.926198, -1.339785, -1.544265, 0.580473, -0.285662, 2.265238, -0.139878, 0.789782, 0.579527, 0.168491, 0.422958, 0.186334, 0.372643, -0.812192, -2.483223, -0.916413, 0.259543, -0.433709, 0.727875, -0.208566, 0.240940, -1.575465, -1.074365, -0.254755, 0.045610, 0.746528, 0.374914, 1.528220, -0.341982, -2.043488, 1.321139, -2.265050, 1.655388, 0.682077, 0.991440, -0.027207, 1.412758, 0.151436, 0.369345, -0.590194, -1.095364, -4.028951, 0.159493, -0.166382, -0.298497, -0.057245, -0.620391, 0.338155, 0.659787, -0.863450, -0.429374, -0.414803, -0.156152, -0.683025, -1.155642, 0.950042, -1.293040, -1.672338, 0.717449, -2.059910, 1.487892, -1.812863, 0.278829, -0.120026, -0.717550, -0.731674, 0.433853, -1.116572, -0.840175, 2.280801, 0.609194, -0.992410, 1.731396, -0.473380, 0.932571, -1.212812, -0.081151, 1.184658, 0.611622, -0.938133, 0.275685, -0.481444, 0.541503, -0.432204, -0.232005, 0.614604, -1.562121, -1.478809, 0.076820, -0.402272, -0.762268, -0.013962, -0.380914, -1.118065, -0.343008, -1.202855, -0.710815, 0.398142, 1.036885, 0.041031, -2.082236, 1.602139, 0.876305, -1.633099, -0.288876, 0.916554, -1.215253, 1.698726, -1.858373, -1.112238, -0.450475, 1.107043, 0.388873, -1.135089, -0.927723, 0.999405, 0.014627, 1.744954, -0.238647, -0.972019, 0.559564, 1.442079, -0.196181, 0.891297, -1.127344, -0.902923, 1.016003, -2.524766, -1.043598, 1.100892, 0.217631, 1.653156, -0.422902, -0.076812, 1.116328, -0.349129, 0.877345, -0.715883, 0.722114, -1.184385, -0.439747, 0.143207, -0.267721, -0.091531, -1.265011, -1.159084, -0.788831, -0.468603, -0.421225, 1.402885, 1.165097, 0.864080, -1.194031, -0.895374, -0.461266, 0.254826, 0.973134, 0.038159, -0.167948, -1.066567, 0.435731, 0.768859, 1.089454, -0.147396, -1.752767, 0.413201, 0.120852, -0.228817, -0.547546, 1.313816, 0.883920, 0.198701, -0.954609, 0.892256, 1.188296, -0.127875, 0.281723, -0.730584, -0.515162, -0.576808, -0.669400, 0.747251, 0.922279, -0.451017, -1.312547, 0.488410, -0.015164, -0.630987, 0.244804, -0.023600, -0.110172, -1.688636, -1.099755, -1.264311, 0.605284, -1.047630, -2.270113, -1.160437, 0.188070, 0.929694, 1.638460, -0.407882, 0.553695, -0.133639, -0.752260, 0.000383, 0.027980, 0.374554, -0.805770, 0.326732, -0.811344, -1.801671, -0.882372, -0.308596, -0.745292, 0.369921, -0.389137, -0.139044, -0.982609, 0.673312, 0.709306, 0.836314, 2.148085, -0.919646, 0.987193, -0.713852, 1.128606, 1.217113, -0.448392, -2.102051, -0.990894, -0.444901, 0.141034, -1.249807, -1.233114, 1.871157, 0.213236, -1.498692, 0.977776, 1.237016, 0.619078, -0.648968, -0.534807, 1.062609, -0.941795, 0.570307, 2.201882, -0.750764, 1.029423, 0.593815, -0.183899, -0.391740, 0.691329, -2.525548, 0.075094, -0.541265, 0.199680, -0.548531, 0.365055, 0.991206, 0.809004, 0.578658, 0.060022, -0.096914, 0.296141, -0.135291, 0.710508, 0.197356, 0.245742, -1.228728, -1.098207, -2.686509, -1.169829, 0.597920, -0.632502, -0.139874, -0.400868, -0.011230, 0.599821, 0.382221, 0.048743, -0.525958, 1.026595, 0.601787, 1.415860, 0.129519, 0.708026, 0.435735, -2.330690, -0.389387, 0.776127, 0.584931, 2.257942, -1.515005, -0.511448, 0.303596, 0.595484, 1.656856, -0.771827, -0.994817, 1.422932, 1.332034, -0.149090, -0.265294, -0.397469, 0.379033, 1.694423, 0.447997, -1.570153, -0.089158, -0.086017, -0.967446, 0.067988, 1.695774, 0.701273, 2.164411, 0.463189, 0.903775, 0.511064, -0.401185, 1.571891, -2.644824, 0.016108, -1.617177, 0.322496, 0.000156, -1.160804, -0.139238, 0.773385, -0.098137, 0.260448, -0.053990, 0.698565, 0.577274, -0.294196, -0.941537, -1.247872, -1.111137, -1.100471, 0.323913, 1.138807, 0.514017, -0.239844, 1.716664, 0.955563, 0.086412, 0.091778, 1.886840, -0.134974, -0.412190, -1.321164, -0.014370, 0.441097, -0.275041, 0.776471, 1.532128, 0.009101, 1.068483, -0.324029, 0.726338, -0.363590, -1.251564, -0.151983, -1.621185, 0.603166, 0.472064, -1.021529, -1.300062, 0.117378, -0.221013, 0.826730, 0.258223, -1.540108, -0.299465, 0.389069, 1.826519, 1.375158, -0.610503, -0.640270, -2.128700, -1.361019, 0.304397, 1.268630, 1.982280, 2.374999, -1.582392, -0.859749, 0.202352, -0.311795, -0.123896, 0.191879, 0.058069, 0.558738, 0.520384, 0.004194, -0.602771, 0.142611, -0.054142, -0.357365, 0.969687, 0.361977, -0.196208, 1.106786, -0.627201, -1.801704, -0.782003, 0.155789, 0.041914, 1.272822, -0.090475, -1.188388, -0.233435, -1.427323, 2.346176, -0.142670, -0.266223, 0.008481, 0.723429, -1.186255, -0.008313, -1.798804, 0.570339, 1.121206, -0.364187, 0.054683, 0.422579, -2.383863, 0.265590, 0.846815, 1.370411, 1.080774, -0.085602, -0.474165, 0.257208, 0.617063, -0.582138, 1.476125, 0.650199, -0.733512, -0.556780, 0.028073, 0.408167, -1.229586, 0.676080, -0.981668, -0.143881, -1.260435, -0.672088, -0.400708, -0.762909, 0.841157, 0.584557, 0.514956, 1.394566, 0.871759, 0.435483, 1.880680, 1.308004, -0.430115, 0.690599, 0.741397, 0.758247, 2.519149, 0.634506, -0.317702, -0.560100, 0.300683, 0.412415, -0.188594, 0.221788, 0.763854, 0.138656, -0.309080, -0.223011, -1.008753, 1.995117, -1.077216, 1.147962, -0.118815, -1.661076, 1.628467, 0.283830, -0.556320, 0.478977, 0.191957, 1.100823, 0.210399, 1.011432, -0.092414, 0.659339, -0.723105, -0.415904, -0.033294, -0.897675, -1.369242, -0.355525, -1.128827, -0.753842, -0.125666, 1.182246, -0.477374, 0.802720, -0.339999, 0.507273, -2.108042, 1.246653, -1.355852, -0.072143, 1.443943, 0.960883, 2.195333, 0.602771, -0.970382, 0.647908, 0.128111, 1.487054, 1.909764, 1.827573, -0.343491, -0.326354, 1.239794, -1.149675, -0.388032, 0.474306, 0.931638, -0.165641, 0.302087, -0.050422, -1.193716, -0.732192, 0.660223, -0.639095, -0.872254, 0.949212, 0.575310, 0.867402, 0.522579, 0.407141, -1.567226, -0.792121, 1.232461, -0.077620, -0.046321, 0.421619, 1.094008, 0.829440, 0.212569, 0.523233, 0.873317, -0.599018, -0.787512, 0.913969, -1.591831, 0.360243, 0.088424, -0.626259, -0.550966, -0.004342, 0.285390, -2.558359, -0.298232, -0.596415, -0.584835, -0.399839, 0.145515, 0.553095, -0.391628, -0.534985, 0.407951, 1.708183, 0.883380, 0.049504, -0.461170, -1.496085, 2.129611, 1.130048, -0.381561, 0.184587, -0.020660, -0.257374, 0.792080, -1.234028, 0.520797, 0.656905, 0.857286, 0.021623, 0.608729, 1.949707, -0.081103, -0.291643, -2.045269, 1.410216, -0.762949, -0.374732, 1.181215, 0.858358, -0.084233, -2.348849, 0.000924, 0.376552, -0.658585, -0.636248, -0.728522, 0.990217, -2.061188, -1.423783, -1.120863, 0.137497, 1.061472, 2.002100, 0.309031, 0.922598, -0.642286, 1.010850, 1.215770}, + { 0.506871, -1.028086, 0.333454, -1.819913, -0.932727, -0.734647, 0.436107, -2.435479, -0.102241, -1.142667, 0.344360, 0.493277, 1.356089, -0.638260, 0.525237, 0.191718, -0.384910, -0.100187, -1.245053, 0.817766, 0.073222, -0.900262, -0.809003, 1.168447, -0.341697, 0.110161, 1.084642, -0.207496, 1.277462, -0.495653, 0.506607, -1.644226, 0.101372, 0.951081, 0.714621, -0.213582, 0.416974, 0.267479, -0.558939, 1.162816, 0.595401, 2.163417, 0.128427, -0.988476, -0.779671, 0.651281, 1.248581, 1.208375, 0.783666, -0.518446, 0.918311, -0.837449, 0.817109, -0.848641, -1.517951, -0.653286, 0.857924, -0.550692, 1.739208, 0.525253, 0.876505, 0.053974, 1.003027, -0.348235, 0.432844, 0.330946, -0.872178, 0.193459, 0.873235, -1.114055, -0.474327, -0.350354, 0.564311, 0.702254, 1.388021, -1.034526, -2.131092, -0.179557, -1.019807, -0.863690, 1.087397, -1.333162, 1.035943, 0.232971, 0.235359, 2.487620, -2.392188, -0.491525, 0.057287, 0.111865, 1.159882, -0.291180, -0.610021, -0.926663, -1.293061, 0.457060, -0.210178, 0.146676, 0.055559, -2.348365, -1.118778, -0.561984, 1.968548, -0.924064, -0.277752, 1.962906, -1.413839, -1.280119, 0.365970, 1.126217, -0.818652, 0.293583, -0.429567, -0.800594, -0.613970, -0.435983, -0.518738, 1.398532, 1.074233, 1.203743, 1.224673, -0.073099, 0.472020, 0.866863, 1.174188, -0.365996, -0.328835, -0.838208, 1.231001, -0.977838, -0.924533, 1.105622, 0.119830, 2.386402, 0.014295, 0.259958, 0.578555, -1.384730, 1.941279, 1.256005, -0.582506, 0.528746, 1.083225, 0.345880, 1.191796, -1.093438, 0.416329, -1.044629, 1.157839, 0.190983, -0.535723, 0.315568, 2.768559, 0.229484, 0.530878, -0.070951, -0.472648, -1.314054, 1.251120, 0.065611, -1.787489, 1.533268, -0.143985, -0.083775, 1.695184, 0.781711, 1.401290, -1.462094, -1.498528, 0.818587, 0.232110, -2.752134, 1.074952, -0.265990, 0.027901, -0.326848, -0.266229, 0.394909, 1.286935, 1.903423, 0.856421, -2.996159, 1.053779, -0.133058, -0.417529, 1.325012, 0.829651, -0.157210, 0.483997, 1.605611, -0.363794, 1.154716, 0.907180, 0.689966, 1.813809, 1.167121, -0.880650, -0.829636, -0.610522, 0.666763, -1.207582, -0.502017, -0.035137, -0.252211, 1.918513, -0.735611, -1.137445, -0.018183, -0.072106, 1.910286, -2.254370, -1.206579, -0.390499, 2.195765, -2.016397, 1.479767, 0.373619, -0.207920, -0.121880, 0.800550, 0.960348, 1.111823, -0.144936, -0.561242, -1.075166, 0.575082, 1.688228, -0.554783, 0.056927, -0.242473, 0.998442, 0.757760, -0.598126, 0.219568, 0.291908, -1.253682, -0.315116, -1.430570, -1.295462, 0.981643, -0.911552, 2.184510, 1.388381, 0.680599, -0.128096, 1.229210, -0.296642, 1.051676, -0.737744, 1.661701, -0.158732, 0.233756, 0.642761, -0.014594, -0.125602, -0.113192, -0.259449, -0.128961, 0.041865, -1.263608, -0.275140, -1.805762, -0.974947, 0.689844, -0.093764, 1.393099, 0.139042, -2.776862, 1.327671, -0.891649, -0.306699, -0.056004, 0.371399, 2.118679, 0.756505, 0.530864, 1.945587, -1.016823, -2.678065, 0.886110, 1.478257, -0.021938, 0.670166, 1.511554, 0.257807, 1.080266, 0.085661, 0.475338, 0.619186, -0.784234, 0.244970, -0.633055, -2.021925, -0.157997, 1.498005, 1.403562, -0.525906, -1.365122, 0.090063, -0.523221, 0.406834, -0.196108, 2.293954, 1.449968, 1.096979, 0.221007, -1.271333, -0.299820, -0.156128, -1.472537, 1.473026, 0.429491, 0.361121, -0.837088, 0.827901, 1.341356, -0.269251, 0.523660, -0.229372, -0.742076, -0.908911, 0.166586, -0.635219, -0.251923, 0.621899, -0.033928, 1.182387, 1.154744, -0.155309, 1.106757, -2.055408, 1.394407, 0.949440, -0.802971, 0.922736, 1.729809, -0.354811, 0.069899, -0.206281, -0.291407, 0.229849, -0.760588, -0.617826, -0.919752, -0.052122, -1.800281, 1.319551, 0.099214, 0.530939, 0.406997, -0.507261, 0.650796, -0.846924, 0.672875, 0.776650, 2.675063, -0.376680, -0.388394, 0.350965, 0.933035, 1.701591, 1.521972, 0.895261, 1.050842, 1.440968, -0.574800, -1.059955, 0.975209, 0.989358, -0.342347, -1.632231, 0.677422, -0.553473, 1.199497, -1.325147, -0.592882, 2.101669, -0.454906, -0.908048, 0.248221, -0.159892, -1.605081, 0.325971, 0.324244, 0.084135, -1.540794, -1.990782, 1.635770, 1.414592, -2.063030, -0.327807, 0.347032, 1.708667, -1.981109, -0.820924, 1.699660, -0.257613, 0.418403, 0.583817, 0.591380, 0.369215, -0.062806, -0.486724, 0.112751, -0.210611, 2.228692, -1.228723, 1.476886, 0.394358, -0.494808, 0.179041, -1.474099, -0.265910, -0.107076, 0.634432, 0.116593, 2.213573, 0.133815, 0.198002, -0.228198, -2.432275, 1.383376, 0.584339, 1.779321, 0.515977, -1.095016, -1.850108, 1.844631, 0.886836, 0.043783, -0.809067, 0.340003, 0.760413, 1.594715, 1.620687, -0.382691, -0.692038, 0.153532, 0.306218, -0.175919, 0.594845, -0.098605, 0.362574, 0.457859, 0.079462, 0.611952, -1.281256, -0.281107, -1.356612, 0.209347, -1.704631, -0.444404, 0.149201, 0.185288, 1.238491, 0.644852, 1.037144, 1.294864, 1.172776, 0.236729, -1.648224, 0.121968, 0.464514, 1.458154, -0.361933, -1.028064, -0.584922, 0.681206, 1.354488, 0.330542, 0.371674, 1.762697, -0.392456, -0.351427, 1.375817, 0.229419, 0.401568, 0.607066, -0.147476, -2.140150, 0.940149, 0.180005, -0.204660, -0.061595, 0.853025, -2.095792, 0.374727, -0.670594, -0.586398, -0.352146, -1.959643, -0.130573, 0.188901, -0.050050, -0.245464, -0.100226, -0.336154, 1.337047, -0.022380, -0.206537, -2.316825, 1.811419, -1.213860, -0.086513, 0.907867, 0.504951, 1.552537, 0.731573, 0.359746, -0.295048, -0.319915, -0.956043, 0.231407, -1.471618, 0.879083, -0.517082, 0.989525, -2.106552, -2.004617, 0.579055, -1.063423, -0.687609, -0.487427, 1.725849, 0.215699, 0.331319, 1.364488, 0.023214, 0.939430, 0.313982, -0.172831, 0.551678, -1.424885, 1.575445, 0.611882, -0.573376, 0.021266, -1.169879, -0.910127, -0.116495, -0.836225, -0.886003, -1.668261, 0.232375, 2.032125, -0.784490, -0.185926, 0.415972, 1.294493, -0.842082, 0.493804, 1.545032, 0.017830, -1.348155, 0.019232, -1.079451, -0.432134, 0.337105, 0.069256, 0.795754, -0.913074, 0.800524, -0.690408, -0.932996, 0.439641, -1.472380, -0.830286, 1.298978, -0.143003, 0.394168, -0.027879, -0.594239, -0.554857, -0.489994, 1.941572, -0.843086, 0.317650, 2.585401, -0.616249, -0.323175, 0.143159, -1.212935, -0.945922, 0.702520, 0.129841, -0.157044, -0.278909, 0.774934, -1.450155, 0.500172, 0.919218, -0.918897, 1.549385, -0.876927, -0.522283, 0.621508, -0.950915, 0.498941, 2.595968, -0.439244, 0.792227, 0.563457, 0.974904, 0.630945, 0.231264, -0.316774, -1.000644, -0.165804, 2.867201, -0.038242, 0.198213, -0.137874, 1.900393, 0.581758, -0.416139, 0.042761, -1.273061, 0.320319, -1.478072, -1.566672, 1.625317, 0.921591, -0.442340, -0.594859, 1.362286, -0.595977, 0.842920, -0.838669, -0.030282, 0.682832, 1.626037, -0.571340, -0.072957, -0.143661, 0.424387, -0.954722, -1.810794, 0.852989, 0.453505, 0.494626, -0.293041, 0.106772, 0.367856, 0.659164, 0.049241, 2.415543, 1.293567, -0.259524, 1.171583, 0.963811, -0.538546, 0.582951, 0.080358, 1.011190, 0.234570, -0.906878, -0.385064, 0.284654, -0.563148, 0.841669, 0.052451, -0.471298, 0.625580, 0.413415, 0.639706, -1.003508, -0.841501, -2.666129, -2.569904, -0.054244, 1.332208, -1.322868, -1.716580, 0.480922, -0.346452, 1.401289, 0.168639, -1.664780, 0.097196, 1.241899, -1.171405, 0.307442, -0.046475, -0.200474, 1.518368, 1.661219, 0.709184, 0.076947, 0.309252, -0.112947, 0.857385, -0.773066, 0.251622, -0.293660, -0.150191, 1.066686, -1.313290, -0.380943, 1.175184, -1.119341, -2.330105, 0.091631, 1.811531, 1.816462, 1.323631, -0.248926, 0.519820, -1.497895, -1.427420, -0.894503, 3.141955, -0.782951, 0.720175, 0.297401, -1.202899, 0.403146, 0.268448, -0.440790, 1.277633, -0.404780, -0.922715, -0.315402, 1.040566, 0.284810, -1.648353, 0.310636, -0.515322, 1.432741, -0.203496, 2.212134, 0.541273, 0.799907, -0.881617, 0.498619, -0.852932, -0.606683, -0.412065, -0.174265, 0.525445, 0.735102, 1.053567, 0.856562, -0.699227, -1.290829, 1.154974, 0.098077, -0.317221, -0.044988, -0.478438, -1.559106, 0.478874, 0.842738, 0.990144, 0.204637, 0.069872, -1.196687, -0.336675, -1.453377, 0.959646, -0.453675, -0.953995, -0.792530, 0.179286, 0.456367, -1.993210, 1.252418, 0.996201, 1.040510, 0.256077, 0.048956, -0.061825, -0.508976, 0.110576, -1.091321, 0.366939, -1.964138, 0.288748, -0.010288, -0.052438, -0.657884, -0.591872, -1.722020, 0.106935, 1.274984, -0.731850, -0.977478, 0.834308, -0.218229, -1.657773, 0.391947, 1.512284, 1.293613, 1.391057, -0.229947, -2.463298, -0.697818, 1.620220, -1.891001, -1.342276, -0.916236, -0.287045, 2.447347, -1.608303, -0.632753, -0.701817, -1.046284, 0.835508, 1.410092, -0.806470, -0.654273, -0.312000, 0.018473, 1.503586, -1.450711, -1.484290, -1.073414, 1.732454, 0.057267, -0.586281, -1.847580, -0.792489, 0.167536, -1.171918, 0.846681, 0.773065, 0.157679, -0.092978, -1.494971, 1.379326, -0.940499, 1.205699, -1.481086, 0.506050, 0.971329, -0.124867, -2.097896, 0.931591, 1.240504, 0.373941, -1.255740, -1.290441, -0.503910, -1.802223, 1.098247, -1.060801, 0.490538, 0.666955, -0.550195, -0.652218, -0.416328, 0.873299, -0.155807, -1.088966, -1.060395, -0.813621, -0.890119, 1.854597, 0.201048, -1.145748, -0.842745, -0.754172, 0.280163, 0.670149, -1.529600, 0.845964, 0.776126, 1.751540, 0.929870, -0.916049, 1.418379, -0.711054, 1.211871, 0.820014, -0.275866, 0.529241, -0.499945, 0.889727, 0.330485, -1.385394, -0.624781, 1.727812, 3.236132, 1.263788, 0.821377, 0.517941, -0.747952, -1.103399, 0.149550, -0.411932, -1.044878, 0.896470, -0.982389, -0.235136, -0.076455, 1.380224, 1.285976, -0.677620, -1.571596, 1.031534, -0.920591, 0.670592, -1.957642, 1.024900, -0.227494, -0.360212, 0.587193, -0.668121, -0.419393, 0.383979, -0.056639, 0.308851, -1.047747, 1.170383, -0.520963, 0.553909, 0.582051, -1.079941, 2.551904, -1.720110, 2.643331, -0.247719, 1.161635, -0.216542, 1.761458, -0.034812, -0.536079, 0.237921, -1.414752, -1.301362, 0.417568, 2.041728, 0.660027, 0.545726, -1.126332, 0.560860, 0.585227, 0.801462, -0.431444, 0.118115, -1.832895, -1.315447, -0.575500, 1.294888, 0.409696, 0.459431, 1.627473, -0.705610, 0.918548, 1.310587, 1.117737, 0.876004, -1.538982, -0.005994, 0.611343, -1.045217, -0.046796, -0.083676, 0.059462, -1.695141, -0.462115, -1.011114, 0.053949, 0.818080, 0.086923, -0.357674, 1.588792, 1.154733, 0.354007, -0.482375, -1.001638, 0.347242, -0.820048, -0.995227, -0.365395, 0.028502, 0.741760, -0.500802, 1.051582, 1.328797, -0.409088, 0.250948, -0.241273, -0.058813, 1.290199, 1.573330, -0.307897, 0.593547, 1.267628, 0.479333, 0.345604, 0.158933, 0.480968, -0.131331, 0.819696, -0.724365, 0.271693, 0.740934, 0.201645, 0.422690, 0.549102, -0.194907, 1.745630, 0.481871, -0.068105, 0.640891, -1.529325, -0.582696, -0.199383, -1.016337, -0.795540, -0.889001, -0.159208, -0.568989, -1.718636, -0.676042, -0.738582, -1.321692, 0.361849, -1.310735, -0.208890, 0.410868, -0.887178, 0.099447, -0.764170, 0.039897, -1.117652, -0.800166, 0.655029, -0.930351, 0.168240, -0.106752, -1.621915, 0.817746, -0.248909, 0.386667, -2.155398, 2.413433, -1.077559, -0.980679, -0.980901, -0.220881, 1.029266, -0.053464, 0.278127, -1.489136, 0.085160, 1.144071, -0.040595, 1.110302, 0.306260, 1.092719, -0.904907, 0.425772, 1.542143, 1.568737, 1.742242, 0.236294, -2.103586, 1.186467, -1.336452, -1.704430, -0.264710, 0.956143, -1.277454, 0.909651, -0.709555, 0.441285, -2.492730, 0.578628, -0.039776, 0.932590, 0.342762, 1.017311, -1.949276, 0.902927, 0.806446, -0.767128, 1.004084, 0.523543, 1.647147, 0.481824, -0.513073, 0.197556, -0.799432, 0.778539, -0.598990, 1.147692, -0.676291, -1.341436, -1.129938, 0.149855, -0.500207, -1.425462, -0.915792, -0.997488, 1.412546, -1.360756, 0.420496, 0.531553, 0.579871, 1.475505, -0.647488, 1.249395, -0.113180, 1.187444, 0.718361, -1.315768, -0.642989, 1.813761, 0.252616, 0.703685, -0.096955, 1.039348, 0.280344, -0.055094, 1.657718, -0.938784, 0.172565, 0.067420, 0.789561, -0.633658, 0.509149, 0.281715, 0.089393, 0.855006, -0.724415, 0.879228, -0.787023, -0.184318, -0.109537, 0.358242, -0.286756, -0.050717, 1.765066, 1.884827, 0.101998, 0.224162, -1.903940, -0.986853, 1.109637, 0.398010, 1.863332, -0.787027, 2.025484, 2.446731, 0.319619, 1.063879, -0.947871, 0.849518, -1.517322, -1.093576, 1.846027, 0.387379, -0.733536, 0.482120, -1.820065, -0.074766, 0.099638, 0.431822, -0.588051, -0.059725, -1.470170, 0.542445, -2.095173, -0.412288, -0.490622, -0.020717, 0.754266, -1.085695, -0.027239, -0.000256, -0.141635, 0.051191, -1.285789, -0.026179, 0.930485, 0.342043, -0.500810, -0.397122, -0.123563, 0.369116, 0.358340, 0.400340, 1.155835, 2.169096, -1.972283, -0.305014, -1.458149, -0.428184, -1.232554, -0.204267, 2.251776, 1.058856, -0.007572, 2.085565, 1.271874, 0.395161, 0.545344, -0.272638, 0.502239, -0.465174, -2.652681, 1.612404, 2.123525, 2.777124, -0.455072, 0.673251, -1.416709, 0.618070, -0.437798, -0.926230, -0.746872, 1.535608, 2.212188, 0.331347, 2.924891, -0.192770, 0.603248, -0.256141, -0.187339, -1.137936, 0.948356, -0.330431, 2.454799, -0.510886, -0.497687, 0.322173, 0.287284, -0.079310, 0.750227, -0.084722, -2.814213, 0.164766, 0.678554, 1.249843, 0.186978, 0.405097, 0.446662, 1.532967, 1.719244, -0.415792, 0.552896, 0.499597, -1.112121, 0.296269, -1.678740, 0.177937, 1.875700, 0.460890, 0.274979, 0.237006, 1.640100, 0.250203, -0.925616, -0.308156, -0.133147, 0.179228, -0.407543, -0.548646, 1.004794, -0.183196, -0.013951, 0.000581, -0.284944, -1.678542, -0.703226, -1.326370, -2.487555, 0.394824, 0.910227, 2.095461, -0.701369, -0.641264, 0.882170, 0.751649, -0.176613, 0.232415, -0.512985, -0.137294, -2.181886, -0.191429, -0.500312, 0.480463, -0.406384, 0.784873, 0.790667, -0.790792, -1.044979, -1.223992, -1.360119, 0.770312, 0.133672, -0.598479, -1.481717, -0.302640, 1.508606, -0.960015, 1.860304, 0.588767, 0.261833, 0.127649, -1.229028, 0.062990, -0.669371, 0.254091, 0.597324, -0.521907, -0.210969, -0.213732, -0.302381, -1.999495, 2.120083, -0.143616, -0.549552, -0.336638, -0.007274, -0.404452, 0.372276, 0.783185, 0.754677, -1.840979, -0.145493, -0.374200, 0.601742, -0.878945, 0.528481, -0.199148, 0.390582, 1.160950, 1.456968, -0.143279, 1.509058, 2.154591, 0.910885, 0.151467, -0.953222, 1.432171, -0.068581, 1.677911, 0.201722, 0.225224, -0.025024, 0.004803, 0.414296, -0.224015, -1.830733, 0.703402, -0.521498, -1.002795, -0.137668, -2.482194, 0.496311, 0.619543, -1.870157, -0.178087, 0.770708, 0.156051, 0.308312, -1.246587, -1.880291, 1.272365, 0.455820, 1.347884, 0.372269, -1.626357, 1.395024, -0.059604, 1.363501, -0.380455, -0.109333, -0.093111, 0.837738, 0.572406, -0.691148, -0.913825, 0.180630, 1.637246, 0.854042, 0.070308, -0.400941, 0.569554, -0.022394, 1.708702, 1.163423, -0.926487, -0.548629, 1.106915, 0.126070, -1.102774, 0.735142, -0.090377, 1.252778, 0.583071, 0.430026, 0.712146, 0.898740, 0.934713, -0.761003, 0.827986, -0.403717, 1.472393, 1.115206, -0.431013, -1.113927, 0.207012, 0.793702, -0.112140, 1.782927, 0.083311, -0.674532, 0.836910, 0.893381, 2.285878, 0.407556, 2.638236, 0.133887, 1.704314, 0.631884, -0.436137, 1.009384, -0.220273, 0.428627, -1.281090, 0.258248, -1.312715, 1.677697, -0.003655, -0.077159, 1.091310, 0.218095, 1.335132, 2.203062, 0.031074, 0.219608, -0.406351, -0.138634, -0.894790, 1.217463, -2.464502, -0.449169, 0.765943, 1.738895, 0.503656, 0.806471, 0.947300, 0.751978, -0.947777, -0.779963, -0.042770, 0.153708, 0.263995, 0.574917, 0.240454, 0.048193, -0.153488, 0.995589, -0.473756, -0.891060, 0.324455, -1.332687, 0.796229, -0.649612, -0.560629, 0.439378, -0.454064, -0.305545, 0.972624, 0.976789, -0.169617, 1.229982, 0.296208, -1.374517, 1.927219, 0.536131, -0.437695, 0.505251, 1.491130, 1.868266, 0.460997, -0.420729, -0.336885, 0.628547, 0.329609, 0.853064, -1.465502, 0.641196, 1.004532, -0.398041, 0.725100, 0.921336, 0.724147, -0.449764, 0.547855, 0.994646, 0.181740, -1.043676, 1.128018, 1.018493, -0.814496, 0.535093, -0.973439, -1.348941, 0.784595, -0.850829, 0.165486, 0.701197, 1.171839, 0.322300, -0.513352, 1.180496, -0.256156, 0.146038, 0.287136, 1.320017, 0.209384, 0.459464, -0.514783, -0.061917, -0.165566, -0.337388, -0.488494, -0.323833, -0.498187, -1.132023, 0.630765, -1.375017, -1.528158, -0.631622, 0.353248, 0.278390, -1.728644, 0.967450, 1.915133, 0.008400, 1.120531, 1.148627, 0.283694, -1.218961, 1.191173, 0.313243, 2.628294, 0.014973, -1.578803, 0.510189, -0.459030, 0.417873, 1.328510, 1.001685, 0.435731, 2.473753, 0.342514, -0.196086, 0.075623, -2.500268, 0.869280, -0.308600, -0.850861, 0.496634, -0.803739, 1.857542, -0.715025, -0.460637, -0.145001, 0.260115, -0.536407, -0.110595, -0.336350, 0.714081, -1.563972, 0.607812, -0.225697, -0.862958, -0.800225, 0.533645, -0.972355, 0.837920, 0.966941, 0.370413, 0.885577, -0.974826, -1.263638, 1.061987, -0.552872, -0.619585, 0.648594, 1.505130, -1.654396, 0.686558, -1.649517, 0.311883, -0.501729, -1.694383, -2.224716, 1.287914, -1.110329, 0.400074, -1.341282, 1.511002, 0.302405, -0.203600, -0.247756, -0.541213, -0.478103, 0.763005, 0.571285, 0.348176, 0.190957, -0.609966, 1.132619, -0.056162, -0.629209, -0.665975, -1.649907, -0.019061, -0.804076, -0.740870, -1.081288, -0.581413, 0.146947, -1.049989, 0.851972, -0.684561, 0.309312, 1.450863, 0.534242, -1.257457, 0.163640, -1.321139, 1.871381, 0.204001, 0.225022, -0.006182, -0.871379, -1.544991, 0.345622, -1.048773, 0.332245, 0.709824, 1.047056, -1.737401, 1.776759, 0.686156, 0.452645, -1.342992, -0.653955, -1.555712, 2.745269, -0.672848, 1.377458, -0.581897, 0.767704, -2.187953, -1.319155, 0.263353, -0.938119, 0.671757, -0.070144, -0.265803, 1.457119, -1.071312, -0.250789, 0.885817, -0.010378, 0.295291, -0.266068, -0.077381, 0.935330, 0.406207, 0.974234, -0.241043, 1.084916, -0.653807, 1.761725, -0.885310, -0.344039, -0.633939, -1.319513, -1.490815, 0.854836, 0.108802, 1.546312, 0.975535, -0.937013, -0.794646, -0.600795, 0.801212, 0.592837, 0.283805, 1.205427, 0.754122, -0.563656, -0.293502, 0.155604, -1.031581, 0.154729, -1.222623, -0.103622, -0.625553, 1.045250, -1.131021, 2.464154, 0.937471, -1.266288, -0.188779, -0.275916, -0.497747, -0.127946, -0.709713, -0.599648, 1.025313, 1.191717, -0.613292, -0.334053, 0.689072, 0.021405, -0.426098, -1.287400, -1.174470, -0.955824, -2.391423, -1.559399, 0.986952, 1.247572, -0.582415, 0.457641, 0.403906, 0.564281, -1.600985, -0.247129, 1.996557, 1.701653, 0.111502, -0.687072, -1.600166, 0.846035, -1.001467, 1.884078, 0.227117, 0.535211, 1.351557, -1.621079, 0.597410, 1.692688, 0.285438, -1.731304, -0.564751, -0.458676, -1.435193, -0.423758, -0.507657, -1.468365, -0.090999, -0.767928, -0.333034, -1.404603, -0.445295, 1.214692, -0.663413, -1.544612, 0.476879, -0.713801, 0.787993, 1.315051, 1.674923, -0.696790, 0.653380, 1.209520, 1.809957, 0.145681, 0.866202, -1.198370, -0.738158, 0.197560, 0.564865, 0.829181, -1.157142, 1.475927, 0.122292, -1.119002, -0.549447, 0.362558, 1.420274, -0.315410, -0.413908, 0.089396, 1.315787, 2.040618, -0.570274, -0.995665, -1.415478, 0.149018, 0.812447, -0.451894, 0.088294, 1.773157, 0.506789, -0.768359, -0.539299, 0.918118, 2.742515, 0.246748, -0.319611, 1.392044, -2.421969, -0.800373, 1.661154, 0.276272, -0.980296, -1.387524, 0.505219, -0.066690, -0.265554, 2.174703, 0.184386, -1.066870, -0.477847, -1.485337, -1.160334, 2.134926, -1.108147, -0.375237, 0.675928, -1.354667, 0.333366, 0.499028, -0.264162, 0.071411, 0.895376, 0.109540, -0.587700, 0.424386, -0.485216, 0.339988, 1.186576, -0.710255, 0.268619, 0.069845, 0.257942, 1.135555, -0.025192, 1.194465, -0.771367, -1.110150, 0.524895, -1.592030, 0.319311, -0.801286, 0.856355, -0.378300, -0.909329, -0.279168, -0.224338, 0.643724, -0.746465, -1.286630, 0.331874, 1.984558, -1.038907, 0.240234, 1.425839, 0.336086, 0.702880, -1.689978, -1.613898, -0.185241, -0.091918, 0.355665, 2.165458, 0.030535, 0.260799, 1.165721, 0.802152, -0.179855, 1.475334, -0.753776, -1.268127, -2.253018, -0.014508, 0.231118, -1.091745, 1.708748, 0.356360, 1.737976, -1.762605, -0.727196, 0.464652, -0.712995, 0.756724, 1.541533, -0.625384, -0.701337, -0.589535, -0.879455, 0.457790, 1.933675, 1.397282, 1.279628, 1.300772, 1.314083, -0.613075, 0.931141, 0.309561, -1.774472, 0.318761, 1.524575, -0.626034, -0.492233, -1.701324, 0.875026, 0.342994, -0.236374, 2.670813, 1.826012, 1.016830, -0.000991, 1.344566, -0.794488, 0.702906, -0.022783, 2.516826, -0.179120, -0.689675, -0.195425, 1.208217, 0.888653, -0.924768, 0.527770, 0.325938, 0.029111, 0.155565, -0.010599, 1.916196, -2.021047, 1.168798, -0.543831, 0.575642, 0.583487, -0.779686, -0.006324, 0.280509, 0.910827, 1.495097, 0.155135, -0.710840, 0.643256, -0.733887, -1.491193, -2.241921, -0.657447, 0.471319, 0.622343, -0.301092, -0.365548, -0.111016, -1.228983, 0.768110, 0.079455, -0.428603, -1.494595, -1.007126, -0.695683, -0.629224, -0.483811, 1.317885, -0.667013, -2.072384, -0.789599, -0.289670, 0.539358, -0.276089, -0.245423, -0.797629, -0.748536, 1.538998, 0.456474, 0.109480, 0.700305, 0.209454, -1.753698, -0.199737, 0.366180, -0.141180, -2.086135, 0.409999, 0.092900, 0.577046, 0.080824, 0.447036, 0.181249, 0.275332, 0.732036, 0.331610, -0.085078, -0.902146, 0.011851, 0.537836, -0.713226, 0.105185, -0.499172, 0.994670, -0.615682, -1.233502, -0.808508, -1.370478, 0.946874, 0.237686, -0.347345, -0.751645, 0.218581, 0.476560, -0.802249, 0.334654, -0.358024, -0.122794, -0.084316, 1.728971, -0.263379, 1.042413, -1.412475, 0.458972, 0.332932, 0.274856, 0.483925, -0.633042, -0.724539, 0.219797, 1.277416, -1.470168, 0.874251, -1.556984, 0.218211, -1.117856, 0.366932, 0.597500, 0.794865, 1.719607, -0.867824, 0.431786, -1.498545, 0.635509, 1.030200, -0.342009, -0.736825, -2.026460, -0.855395, -0.620872, -1.208344, -1.456857, -0.530180, 0.273012, 1.059494, -0.019405, -0.816723, 1.057766, -0.089720, -0.892084, 0.480461, -0.001814, -1.169565, -1.996294, 0.051384, -0.269828, 0.400033, -1.093477, 0.844433, -0.317918, 0.872635, 0.624898, 1.334590, 0.883614, -1.644275, 0.997656, 2.814571, -0.139504, 0.249623, -0.642635, -2.105332, 0.742291, -0.229777, 0.235703, 0.183855, -1.449033, 0.537369, 0.890137, 1.986003, 1.635879, 1.533882, -1.177689, 0.306512, -0.172724, -2.235410, 0.258579, 1.515709, 0.480840, -0.518566, -0.997434, 0.449247, 1.774214, 0.033595, 0.113604, -0.787320, 1.067512, 0.534114, 0.391503, 1.377359, 1.533713, 0.237806, -0.580997, 0.262743, -2.688823, -1.181593, 0.317966, 1.056735, -0.265381, -0.845975, 0.705788, -1.476477, 0.104007, -0.061571, 0.132525, 1.172665, -0.403183, -0.676646, 0.961702, -0.504385, -1.199482, 0.293052, -0.596697, -1.245085, 1.474648, -0.764356, 0.640714, -0.150225, -0.493172, 0.582959, 0.331081, 1.338902, 1.647818, 0.130065, 0.460612, 1.262606, 1.728806, -2.861237, -2.247664, 0.148536, -0.232905, -0.051161, -0.610389, -0.539013, 0.051441, 0.604580, -0.371963, -2.230177, 0.563327, -0.625428, 0.604905, 1.205526, -0.422607, 0.116579, 0.220437, -0.406820, -1.209645, 0.217361, 0.172896, -0.446617, -1.318840, 0.891240, -0.333473, -0.160212, 0.867340, -1.056876, 0.264609, -0.260226, -0.964260, -0.347383, -1.520069, 0.267511, -0.101279, -2.250854, 0.503038, -1.270890, 2.420293, -0.269200, 1.013116, -0.385248, 0.716852, -1.288336, 0.049615, 0.549253, 0.204417, 1.523709, 1.415952, -1.213428, 0.046334, 0.498685, 1.607935, -0.107502, -0.012489, 1.113093, -1.262372, 0.635310, 1.079105, -1.272005, -0.390408, -1.666804, 0.459862, 1.971103, -1.087889, -0.921188, -2.152943, 1.172582, -1.627422, 1.494756, -0.466420, -0.919285, -0.012257, 1.503815, 1.129391, 0.366269, 0.097845, 1.788218, 0.024079, 0.533088, -0.253594, 0.691081, -0.403347, -0.241545, -1.386020, 1.119385, 2.332255, 0.026364, -0.694972, -0.534860, 0.557126, 1.070677, 0.143742, 1.162118, -0.373626, 0.675855, 1.296753, 1.222787, -0.417039, 1.794739, -1.131771, 0.251165, -0.153850, 0.679615, -0.592602, 0.967419, -0.825761, 1.026805, 1.314102, -0.147767, 0.933058, -0.750476, -0.607121, 0.158971, 0.819274, 0.886966, -0.489672, -0.762964, -0.556662, 0.249269, -1.189935, 0.149237, 0.794543, 1.539583, 1.117802, 1.493570, 0.081249, -0.688845, 1.236806, -0.136323, -0.642509, 0.791909, -0.316187, -1.486396, -0.286044, 0.601812, 1.020883, 0.483257, -0.498491, 1.510354, -0.846811, 1.463543, 0.816403, -0.128102, 1.293291, -0.892125, 0.065162, 0.800300, -0.230737, -0.843545, 1.281737, -1.595139, -0.252319, -0.777570, 1.140861, -0.984396, -0.267249, 2.108263, -1.003959, -0.513135, 1.075903, 0.091835, -2.677899, -1.111084, 1.194312, 1.320407, -0.328568, -0.667354, 0.376435, -1.547423, -0.539298, -0.371540, -1.739619, 0.206203, -1.633796, 0.340958, -0.144559, 1.320986, -0.504530, 0.131376, -0.045478, -0.016382, -0.656809, 0.399018, -0.673054, 1.411125, 0.066629, 1.119156, 1.223984, -1.243670, 0.624111, 0.162919, 1.506701, 0.369993, -0.651917, -0.536100, 0.122017, 0.315836, 0.223999, -0.441284, 0.702756, 3.399359, -0.937984, -1.277279, -0.320646, 1.110265, 1.352486, 0.392803, -0.217718, 0.592121, -2.828296, -1.273913, 1.010857, 0.803452, 0.362336, 0.744039, 1.513910, -0.123968, -0.478849, 1.216170, -0.834086, -0.520943, 0.476857, -1.432903, -0.264333, 0.174768, -0.130957, -2.319249, 0.018810, -0.472043, -0.714302, 0.483415, 0.948798, -1.954869, 1.905223, -0.789518, -0.756109, 0.944602, 0.015665, 2.361336, 0.824000, 0.235085, 2.874695, 1.586301, -0.351636, 0.008695, 0.187248, -0.778460, 0.367337, -0.801179, -0.846551, 0.192538, 0.475482, -1.701226, 0.024326, -1.082116, 0.599711, -1.787788, 0.474537, -0.176982, -1.006472, 2.020376, -0.565137, 0.181229, 0.233631, -1.479626, -0.121306, 0.485107, -2.170983, -0.936832, 1.271556, 0.824126, 1.162649, -0.526079, 0.397148, 0.041766, 0.058662, 0.841343, 0.150001, 0.412063, -0.437563, -0.290072, 0.534768, -0.293810, 1.005391, 0.820057, 0.205259, 1.501838, 0.402394, -0.902669, -1.947405, 1.195238, -0.691564, -0.583608, 0.292778, 1.341641, 0.307124, -1.195522, 0.928294, 0.110196, -1.008178, -1.924284, 0.571656, 0.931630, -0.609255, 0.409721, 0.062547, -0.719543, -1.481461, -0.142414, -0.189412, -0.292694, -0.349087, -1.150324, 0.239773, -0.818704, 0.143214, 0.797478, -0.667021, -0.827515, -1.675469, 1.087868, -1.474185, 0.067507, -0.537100, -1.716275, -0.812033, 1.563121, -0.580177, 1.211277, -0.024871, -0.319198, -1.714087, 0.175352, -1.221683, 2.118346, -0.705239, -0.404739, -1.947605, -1.148222, -0.461689, -0.607428, -1.339699, -1.007118, -0.750962, -0.454246, -0.112804, 1.257235, 1.102586, -0.644324, 2.078511, -0.003431, 0.365301, 1.759221, 1.043148, -0.073328, -1.107175, 0.328991, -1.366089, 0.045647, 0.382893, 0.785101, -0.356169, -0.765107, -0.312606, 0.625214, 0.040221, -1.520915, 0.296356, 0.448759, -0.630433, 1.359117, -0.246462, -0.028595, -1.366253, 0.938096, -0.311617, 0.684739, 0.038732, -0.011837, 2.324516, 0.082977, 0.442350, -0.240775, -0.859987, -0.319721, -0.588970, -0.483831, -0.263322, -0.336983, 0.124937, 0.052341, 1.341358, -1.459795, -2.099358, -0.610480, 0.809997, 1.111102, 0.125458, 0.185947, 1.712147, 0.946655, 0.195306, 1.663208, -0.812384, 1.375934, -0.135452, -0.008247, -0.434778, -0.350705, -0.268835, -1.639927, -1.125024, -1.417332, -0.585967, -0.314052, -0.923774, 0.318371, 0.386757, -0.352994, 0.717880, -0.523875, 0.766112, -1.422297, -1.619022, 0.069192, -1.315972, -0.617964, -1.323193, 2.456321, -0.972811, -0.273706, -1.839287, -0.231148, 0.269941, -0.324045, -0.452531, 0.878415, 0.161730, 0.956676, -1.621601, 0.201484, -0.973074, -0.727023, -0.917278, -1.511942, 1.427847, 0.478701, 1.241028, -1.418374, 1.776652, 1.233867, -0.164416, -2.178570, -0.195001, 0.697629, -1.774063, -1.836039, 0.457045, 1.326695, 0.011643, -0.354881, -0.411363, -0.163280, 1.450767, -0.431097, 1.132592, 0.343753, 1.120846, 0.077151, -1.794622, -0.619901, 1.281413, -0.418432, 0.201495, 0.633136, 2.338012, 0.591667, 2.086289, -0.824611, -0.339316, 0.584931, -1.341490, -0.081706, 1.083835, 0.554222, -1.156499, 1.427610, 0.082780, -0.915099, -0.745243, -0.032628, -0.677012, -1.078401, -1.678155, 1.131563, 0.161781, -0.432355, 0.363152, -0.060627, 1.408744, 0.150847, -0.600754, 0.743023, 0.635570, -0.001342, 0.329122, -0.173368, -0.292805, 0.245684, -0.680523, 1.851528, 0.029777, -1.657625, -1.398327, 0.180173, -0.077970, -0.241042, -2.196875, 0.029724, -0.326221, -0.210451, 0.360744, -0.106676, 1.697662, -0.808074, -0.982597, 2.129099, -0.547203, 0.383010, -0.659713, 0.285108, -0.322815, -1.110508, 0.838579, -0.169701, -0.026920, -0.642277, 2.522694, -1.711465, -0.343259, 0.651668, -0.497310, 1.260940, 0.374315, -0.760889, -0.711834, -0.567988, -0.992907, -0.559066, 1.697468, 0.332616, 1.024768, 0.550566, 1.224745, -0.654200, 2.032773, 0.082563, -1.295397, -1.051432, 0.567468, -2.107276, -1.400129, -1.008241, -0.105041, 0.733549, -0.317511, -0.321361, -0.107378, 1.738176, -0.415773, -0.235396, 0.276437, -0.401816, -0.484924, 1.966882, 0.317909, -0.529905, 0.267830, -0.458091, 0.483079, -0.192916, 1.227695, -1.093794, 0.906393, -0.865770, -1.496917, 0.956625, -1.373152, -0.215082, 0.231005, 0.709967, -1.166990, 0.855483, 0.534399, 0.172511, -0.036255, 0.609297, -0.912030, 0.657148, 0.980654, 0.018551, 0.557849, 0.550249, 0.042714, 1.107041, 0.664145, -0.691010, 0.059476, 0.687923, -0.605355, 0.129882, 1.175040, -0.190449, 1.057329, -0.379636, -1.658650, -2.028174, -1.327957, -0.030442, -0.385998, -2.905207, -1.043786, -0.387258, -1.424118, 0.741109, 0.689532, -0.656806, 1.157464, 1.537871, 0.623958, -0.592050, 0.230121, -1.103302, 0.089339, 0.432980, 2.284280, 1.034716, -0.076819, 0.744677, 0.326310, 0.202031, 1.039770, 0.512596, -0.523637, -0.109553, -0.768347, 1.166721, 0.262571, -0.078743, 0.469324, 0.925129, -1.099557, 1.230837, -0.414925, 1.048999, -1.785126, -0.073170, -1.055125, -1.277047, -0.744703, -0.535291, 0.433479, 0.717865, 0.264718, 2.387341, 1.607247, -1.267971, -0.921362, -1.426878, 0.066004, 0.187551, -0.766656, -0.593011, -0.747655, 1.040539, -0.592087, 2.084353, 1.174902, -0.705021, 0.532277, -1.003524, 0.191509, -0.847932, -0.346876, 0.561315, -0.429310, 0.993986, 0.769355, -1.023120, -0.952315, 1.878818, -0.020951, -0.476551, -0.067435, 0.398025, -0.616951, 0.932660, 0.746036, -1.728409, -0.388349, 0.061211, -0.171022, 1.860426, -1.147508, 1.432770, 1.151326, 0.449021, 0.129542, 1.078047, 0.985745, -1.006536, -0.709188, -0.006087, -0.069743, -0.654086, -0.101824, -0.527980, 0.236388, -0.545744, -0.278505, 1.732982, 0.654190, -0.548465, -1.169641, -0.909830, -1.139532, -1.294405, 0.410543, 0.978736, -1.443742, 0.379763, -0.006065, -0.577878, 0.368109, -1.466094, 0.610852, 0.470614, -0.147005, 3.206289, -0.405871, 2.097315, -0.060147, -1.276298, -0.560039, 0.256024, 0.152755, -0.340687, -0.325523, 0.132116, -0.499273, -0.576767, 0.890889, -2.108584, -0.088569, -0.674214, 0.927033, -0.245145, 0.995695, -0.023889, -0.139383, -1.062445, -1.211801, 0.870238, 0.028575, 0.063234, 1.353849, 0.022134, 1.651862, 0.213931, 0.062244, -0.759874, -0.966781, 1.090717, -0.621585, 0.528606, 1.942844, -0.819251, 0.065602, -0.532211, -0.387889, 0.449216, 0.096665, -0.501901, 0.131407, 0.240525, -1.033219, -0.055638, 0.869617, -0.187925, 2.207625, 0.306278, 0.847202, 0.206908, 1.009583, 0.084580, -0.012668, -1.033329, -0.148545, 0.618870, 0.399428, -0.924602, -0.559469, 1.652509, -0.783998, -1.375497, -0.155683, 0.228549, 0.488797, -1.157642, -0.763601, -1.153309, 0.353518, -1.743940, 2.141547, 1.027402, -2.250444, -0.762393, -0.172657, 0.256640, 0.251934, -1.478273, -0.556554, 1.185991, -1.174300, 1.121918, 0.362458, 0.205066, -1.068521, -0.153926, -1.456109, 0.027802, 0.027177, 1.813897, 1.802821, -0.009907, 1.011838, 0.308289, 2.702428, 1.196861, -1.238380, 0.320980, -0.157653, -0.421377, 0.082636, -0.273268, -1.626294, 1.041722, 0.068328, 0.396877, -1.190137, 0.875380, -0.307799, -1.115998, -0.977425, 0.182764, -0.202348, 1.528468, 1.751493, -2.430546, -0.241253, 0.038598, -0.467628, 0.551568, -1.215156, -0.677621, -0.721341, 1.425326, 0.749313, -1.626045, 0.374403, 0.681429, 1.033166, -2.205969, -0.190492, -0.141536, 1.628953, -0.321825, 1.530588, 0.462488, -1.938315, 0.933523, 0.986000, 1.365227, -0.758421, 0.256652, -1.623406, -0.185373, 1.156479, 0.061563, 0.127256, 1.275467, -0.010870, 0.530133, -0.219159, -0.688762, 0.012882, -0.710524, -0.273936, 1.142749, 0.633708, -0.739569, -1.094733, -0.207656, 0.735874, -0.143747, -0.553577, -1.494831, -0.721280, 1.377119, 1.355121, 0.540618, -0.667525, 1.260628, 0.724238, -0.912280, 1.434365, 0.411682, 2.308520, 1.800172, 0.093727, -0.475210, -1.738169, 0.491769, -0.167128, 1.664286, -0.779238, 3.895680, 2.018933}, + { 0.369689, -1.453203, -0.084053, -1.002592, 0.326842, -0.440155, 0.567610, -1.035517, -0.302129, -1.156545, 0.710368, 0.572679, 0.885492, -1.743570, 0.795580, -1.307853, 1.321114, -0.786144, 0.537529, -0.516815, 0.538087, 0.602819, -0.975910, 0.228100, -0.969746, -0.928184, -1.092438, 0.875759, 0.501662, -1.771648, 0.055292, -0.512473, -2.446271, 0.530254, 0.227196, 0.151845, -0.449478, -0.177817, 0.214641, 1.499790, 0.340742, 0.684597, -1.554874, 0.240645, -0.102351, 2.457285, 1.096147, -0.856053, 1.101331, 0.716102, 0.094902, -0.477282, -0.395248, -1.171082, -2.174341, -0.737518, -1.428781, 0.333930, -0.695825, 0.521078, -1.043650, 0.956063, 0.254790, -0.402749, -1.005517, 0.288685, -0.275279, 0.724000, 1.223699, 0.716951, 0.656162, -1.087510, 0.393052, -1.563124, 0.818448, 0.390672, 0.534776, 0.405630, 1.792928, -0.096517, 0.710342, 0.911791, 0.115740, -1.416866, 0.037790, 0.042211, -1.457783, 0.651088, -0.906669, -0.334106, 1.045581, 1.064233, -1.034228, 0.649035, 0.651082, -1.155782, 2.747354, 1.452138, 1.761604, -0.510621, 1.129589, -0.585258, 0.332348, 0.874178, -0.065626, 2.074037, -0.188338, 0.267385, 0.446834, -0.390049, 1.293800, 0.744112, 0.553123, 0.065390, -0.501732, -0.329394, 0.848650, -1.109138, 1.143934, -0.516926, 0.497432, 0.616393, -0.642400, 1.392112, 1.192614, 0.863733, -1.111371, 2.384692, 0.183054, 0.674574, -0.724793, -0.749809, 0.455305, 1.035621, -0.777965, 0.897956, -0.493177, 1.170380, 1.035612, -1.126469, 0.035366, 0.407703, 1.058143, -0.465718, 0.163207, -0.208828, 1.162260, -0.148163, -0.805230, 0.200731, -0.753959, 0.771479, 0.874691, 0.051820, -0.709412, 0.914033, 0.140355, -1.430717, 0.339664, -0.111629, 0.308109, 0.592078, -2.115375, 0.000744, -1.145634, -1.039584, -0.045592, 0.596309, -0.537589, -0.780524, 0.431188, -0.567912, 0.342105, -0.628612, 2.060537, 0.016569, -1.505612, 0.945865, 1.807107, 0.217729, -0.644192, 1.000326, -0.125984, -0.157555, -0.505954, -2.400203, -1.221491, 0.288849, 0.697424, 0.423409, 0.013814, -1.543810, -0.268002, -0.664635, 0.619712, 1.110208, -0.993203, -1.761034, 0.560374, -0.683994, -0.088302, 0.919979, -2.354632, -0.697850, 1.519281, -0.557671, -2.558178, 0.054532, -1.284076, 0.478767, 0.992271, -0.955872, 0.631003, -1.427651, -0.268507, -1.414831, -0.677730, 0.022256, 0.192281, 0.761786, 0.092861, -0.740192, -0.588563, 1.363043, 0.401617, 1.379578, -0.109945, 2.016294, 0.527714, -0.602640, 1.241739, -0.812055, 0.726616, 1.081297, 0.515926, 1.523206, -0.189192, 0.571368, 0.768785, 1.261674, -0.034119, -2.127709, -0.487732, -0.350357, 0.775456, 0.320789, -0.674258, 0.047525, 0.742857, 1.614325, -0.353965, -1.353718, 0.777219, -0.031324, 0.070399, 0.268705, 0.075449, -1.261787, 0.973170, 1.088630, 0.421289, -0.350645, 1.061954, 0.510234, 0.621404, 0.932031, -0.641082, 0.120774, 0.371778, 1.158704, 1.550140, -1.215098, 1.148910, 0.395027, -1.140883, -0.913957, 0.785054, -0.017105, -0.058446, 0.261973, -2.248816, 0.487702, 1.356698, -0.058001, -1.663495, -0.332430, -0.359360, 0.139886, -1.463473, -0.526742, 1.175166, -1.473695, -0.380607, 0.732220, -0.431963, 0.291989, 0.527473, 2.854968, 1.150628, 0.422467, -1.975060, 1.717803, -0.237129, -0.831081, -2.234257, 0.778262, -0.297309, -0.215805, 0.384649, 1.561229, -0.088332, -0.354620, 0.215478, 0.208409, 0.038895, -2.122936, -1.292107, 0.947442, -0.857196, -2.921377, -1.244198, 0.293632, -0.651422, -1.018784, 0.459424, -0.591164, -1.016176, -0.152256, 0.546038, -0.989675, -0.912033, -0.264038, 0.400981, -1.121412, 0.472131, -0.219662, 1.155358, -0.024484, 0.372769, -0.114488, 1.655474, 0.528671, 0.086342, -0.781975, -0.455583, -0.123450, -0.396102, -1.506722, 2.484445, -1.636081, -0.531117, -1.927067, 0.342912, -0.293332, -0.581212, -0.850019, 0.861472, 0.250241, -0.332538, -0.594993, -1.560828, -1.727583, 0.839703, 0.301217, 0.240456, 0.069477, -0.257552, -0.284075, -1.083013, -0.279790, 1.222841, -0.512705, -0.006829, -0.853864, 1.189641, 0.354379, -0.909794, -0.507967, 0.574376, -1.091098, -0.458638, 0.383160, 0.863653, -1.296254, 0.973990, 0.882776, 0.541169, -0.293698, 1.621275, 0.367914, -0.498681, -1.000963, 0.991296, -2.331301, 0.835760, -1.083304, -1.718730, -0.168252, -2.017599, -0.213571, 0.827002, 0.218285, 0.233484, 0.765916, 0.789751, -0.636025, 1.087739, 0.065238, -0.696152, -1.524986, 0.794677, 1.975290, 0.937155, -0.079810, 1.483511, -0.819275, 0.229394, -0.360053, -0.313955, -1.227792, -0.156955, -2.156920, -0.259614, -1.165592, -0.248625, 0.922018, -0.606049, -0.517682, 0.471080, 0.879359, 0.785953, 0.643077, 0.029058, 1.029680, 0.226352, -1.837588, 0.842358, -0.188321, 0.135403, 0.376958, 0.722064, 1.456808, 0.489466, -0.187465, 2.473450, 1.244644, 0.970772, 0.370720, -0.172166, 1.910470, 0.493223, 1.390667, 0.248679, 0.137445, -0.106974, 0.552990, -0.230598, 0.419236, -0.228156, 0.464455, 0.976817, 1.362111, 0.387325, -1.610563, -0.746007, -0.525078, -1.092137, -0.648174, 0.884429, 2.360616, 0.821417, -0.785905, -1.561717, -1.872034, 0.926875, 0.255245, 0.513380, 0.409484, 0.293854, 1.215249, 1.229824, -0.634025, -1.116084, -1.047516, -0.688904, 1.566175, -0.463718, -1.161816, -0.061057, 0.232937, -0.129579, -0.701311, 0.096780, -0.134332, 0.705358, 0.535672, 0.678041, 0.791912, -0.842546, 0.562181, -0.196512, -0.262346, -0.472723, 0.817032, 1.041303, 0.941651, 0.728860, -0.711400, 0.253174, 0.827447, -0.823291, -1.206290, 0.120566, -0.799829, 0.442896, -1.101857, -0.660444, -0.251467, -1.663550, -1.417972, 1.453454, 0.052903, 1.315999, 0.675551, -0.789463, -0.514772, -0.831269, -2.765714, -0.133113, -0.948486, 0.609700, -0.034798, -0.016230, 0.114713, 0.155087, -0.922049, 0.454080, -1.631591, 0.897473, 0.589649, -0.747470, 0.036998, 1.470163, -0.088558, -0.294550, 0.631283, 1.234150, 0.718360, -1.683148, -0.039850, -1.046863, -0.232456, -0.058628, 0.865256, -1.650519, -0.419546, -2.025628, -0.357157, -0.595798, 0.232194, -0.754949, -0.247473, 2.242571, -1.137297, 2.155089, 0.379669, -0.320925, 0.380617, -2.125954, 0.708342, 0.443547, -0.573545, -1.398831, 0.882674, -0.535715, -0.377176, 1.228115, 0.223747, -0.239107, -0.724356, -0.042103, -0.127807, -0.821020, 0.049000, -2.140369, 0.090695, -1.261153, -0.352746, 1.598261, -0.699843, -1.375553, -0.841864, 1.771109, 0.533353, -1.364781, 0.137542, -0.312220, 1.471829, 0.993276, -0.827561, 0.218342, 0.500259, -1.013958, -0.532696, 1.884176, -1.321814, 0.216314, 1.655990, 1.626722, 0.746489, -1.364250, 0.557495, -0.460634, -1.216966, -2.173369, 0.996067, -0.996231, -0.429574, 0.018420, 0.910546, 0.318917, -1.408834, 1.934830, 0.779283, -2.334530, 0.164922, -0.397106, -0.309615, -1.370774, 0.144893, 0.577256, 1.341239, -0.217499, -0.408152, -0.025371, 1.929946, 1.550775, -1.020726, 0.211927, 0.892306, -1.474161, 1.173576, -0.568810, 2.267454, 0.597750, 1.029649, -0.368160, 0.042378, 0.386285, 1.410877, 1.063391, -0.848895, 0.708512, 1.241466, 0.465842, 2.189624, -0.467179, 0.828411, 0.554927, -0.804239, 0.119211, -2.023518, -0.781659, 0.847321, 1.018253, 0.636135, -0.628185, -0.830827, -2.747293, 1.192954, -1.463552, 1.768067, -1.150370, 0.518232, 2.337300, 0.929799, 0.209229, -2.126120, -1.720864, 0.360394, -1.192737, 1.091630, 0.324888, 1.090668, 0.632533, 1.164260, -1.782221, -0.375809, -0.635192, -0.110880, -0.821958, 0.856985, -2.019447, 0.140317, 0.109698, -0.523703, 0.552862, 0.457601, 0.807561, -0.176591, -0.176117, -1.953221, -0.712108, -1.130132, -0.207610, -1.210260, 0.743578, -2.072756, -0.317122, 0.113129, 1.186310, 0.417103, -0.512384, -1.529987, -0.948777, -0.004296, 0.306080, -0.212301, -1.632694, -0.312521, 1.621936, 1.300571, 0.118023, -0.551320, -0.606357, -1.596477, -0.778995, 0.221404, 0.518199, -0.284117, 1.595672, -0.033958, -0.071420, -0.764661, -0.230472, 0.678405, -0.305870, -0.667839, 0.889213, -0.188320, 1.298133, 0.126381, -1.557205, 0.130069, 1.207199, -0.087984, 0.111300, 0.418719, 0.188591, -0.115041, 0.660011, 1.822436, 1.389691, -1.272622, 0.995286, -0.719182, 1.142639, -3.092916, 1.772221, -0.518963, 0.783928, -1.039579, -1.171307, -1.247914, 0.403026, -0.211691, 0.258523, -0.247828, 0.143368, 0.566572, -0.576677, 0.059365, -0.288350, 0.100396, 1.180954, 0.519914, -0.149029, 0.367727, -0.524921, -1.528320, 0.178626, -0.217439, -2.139006, -1.557480, -1.343548, 1.402936, 0.101325, 0.621454, 0.499847, 0.990730, -0.467496, -0.777940, 0.096640, 0.287830, -1.330762, 0.152709, -1.408787, -1.934963, 0.895951, -0.086200, 0.023863, -0.516398, 0.750345, -0.829315, -0.406156, -0.000638, 0.464036, -0.225698, 1.260206, 1.484522, 0.562975, -0.690382, -0.865064, -0.700290, 0.346072, -1.015117, -0.524614, -0.409801, 0.178105, 1.662082, 0.245050, 0.347665, -0.796964, 0.633326, 1.212025, 1.381881, 0.402262, -0.054441, 0.205107, 0.459338, 1.292623, -1.203604, -0.664533, -0.919210, -0.003714, -0.964518, 2.054479, 0.387152, 0.791512, -0.923715, -1.564013, 0.605946, -1.075409, -0.158372, 0.066748, 1.545785, 0.510247, 1.272004, -0.607648, 0.403179, 1.146457, -1.219555, -0.833820, 1.379713, 1.346889, -0.856198, 1.831080, 0.352397, 0.688834, 1.052052, -0.326348, -0.703215, -0.677543, 0.587165, -0.315590, -0.919319, 0.137460, 1.328630, 0.597373, 0.825097, 0.247880, 0.513533, 0.012934, -0.712791, 1.027502, 0.599187, -0.149577, -0.173370, 0.734984, 1.201526, 0.736430, -0.725606, -0.118309, -0.579155, 0.790588, -0.147930, 0.262254, 0.980089, 0.021544, 0.147380, 0.121886, -0.186734, 0.313215, -0.261702, 0.190823, 1.429472, 0.073399, -1.515437, -1.734010, -2.191942, 1.859195, -0.725058, 0.328375, -1.534722, 0.877910, 1.584877, -0.363275, -0.330748, 2.467584, 0.575761, 0.091246, 1.482049, 2.058556, -0.715661, -0.839751, 0.168422, 0.125029, -1.080540, -0.482786, 0.504113, -0.451936, 0.119925, -0.844221, 0.777926, 0.593844, 0.004039, -1.019550, 2.652729, -1.378957, -0.570600, -0.821353, 0.454466, 0.325693, -0.190419, -1.854241, 0.326960, 2.373198, -0.798869, -0.334264, -0.494334, -2.656583, 0.534943, -0.924612, -0.343005, 0.729580, -1.925721, -0.585522, 0.350715, 1.727118, 2.076452, -0.382337, 0.388629, -1.030397, 0.075613, 0.327214, -0.171853, 0.563928, 1.466995, -1.367164, -0.609201, -1.196493, -0.978365, -1.155945, -1.099621, -1.396894, -1.201453, -1.820136, -0.310980, 0.071132, -0.493406, -1.507086, -0.809904, 1.475229, 1.411258, 0.815289, 0.246215, -0.187638, 0.050374, 0.065441, 0.950469, 0.094546, -0.298355, 0.949661, -0.164806, 0.640183, 1.393049, -1.420712, -1.135173, -0.629025, 0.446102, 0.409624, -0.752536, 1.054140, 0.912412, 0.438262, -0.337505, -0.885521, 0.396660, 0.882099, 1.244400, 0.583222, 0.541942, 0.046336, -0.375729, 1.259741, 0.694516, 0.822852, 1.150303, 1.813050, 1.196570, 1.532458, -0.112561, 0.765254, 0.734017, -0.200022, 0.495340, -0.179774, 0.193926, -0.365785, 0.251324, -0.628043, -0.491628, -1.613178, -1.098310, 0.819850, 1.621907, 1.731538, -0.531335, 0.830041, 0.873087, 0.418166, 0.613090, -1.081968, 0.334713, -1.092727, 0.924228, -0.168361, -0.219248, -1.515555, 1.613762, 0.196898, -0.320409, -0.020910, -0.414135, 0.293997, 0.313748, -0.948665, 0.595197, 0.985700, 1.884190, 0.953941, 1.559382, -0.845496, -0.541110, -1.037165, 1.355440, -0.240251, -2.945162, -1.690170, -0.583808, 0.565909, 0.324842, -1.581359, 1.335000, 0.540263, 0.821007, -0.811234, 0.640032, -0.517974, 0.905773, -0.212125, -0.811519, 1.160139, 0.248193, -0.337304, -0.311801, 1.309863, -0.655936, 0.578354, 0.230677, -1.260614, -0.206843, -0.129614, -0.319422, -0.063451, 0.410484, 1.054411, -0.507901, 0.621336, -0.094623, 1.689099, 2.085285, 0.949036, -1.062983, 1.475254, -0.133039, 0.796293, -0.541350, -1.175893, -0.309451, 0.467444, 0.322762, -0.637914, -0.174805, -0.526288, -1.071649, 0.182267, 0.291260, 0.391122, 1.824953, 0.807077, -0.554600, -2.606520, -0.543214, 0.708949, 2.355566, 1.211389, -1.691016, -0.236906, -0.064956, 1.235964, 0.311686, 1.345693, -0.423804, -0.176127, 0.487110, -0.320497, -0.262928, -1.055427, 0.952468, -0.291215, 0.235028, -0.701469, 0.471249, -0.241191, -0.312293, -0.231193, -0.596198, 0.303463, 0.593136, 1.235870, 0.248424, -0.101594, -1.645068, -2.480258, -0.587485, 1.231571, -2.174002, 1.286151, -0.076383, -0.951833, -0.103295, 1.017001, 0.129254, 0.126655, -2.584477, 1.033152, -1.816085, 1.082703, 1.941277, 0.142964, 0.381827, -0.485206, -0.474895, -1.376646, -0.864314, 0.586723, 0.388182, 0.883993, 0.180967, 0.910626, 0.533516, 0.177026, -0.256922, 3.074898, 0.472876, 0.594846, -1.658655, -0.037229, -1.298519, 1.702570, 0.574459, -0.229606, 0.628596, 0.237106, 0.835682, 0.422320, 1.230000, -0.903944, 1.288396, 0.349564, 0.735781, -0.098097, -0.364939, 0.522232, -0.883011, -0.485902, -0.881221, -1.338988, 0.479825, -0.836477, 0.083343, -0.148984, 0.324212, 0.591756, 0.147278, 1.276035, -0.361051, 0.940623, -2.598221, 2.397041, -0.191901, 1.962914, -0.038508, -0.382499, -0.887144, 1.162506, -0.012613, -0.504076, 1.165283, 0.234544, -0.384904, -0.222327, 1.167807, -0.870831, -0.369651, 0.955762, -1.401175, -1.504423, -0.020265, -0.679867, -0.935231, -0.056145, 1.868584, -0.594031, -0.527776, -0.554549, -0.514957, 1.516269, 0.116693, 0.473745, -0.102826, 0.513894, 0.932561, 0.027228, 0.623840, 1.032128, 0.104418, 0.741575, -1.679415, -1.192255, 0.321627, -0.828913, -1.349335, 0.632935, 0.890292, 0.437688, -0.227034, 0.335418, 0.049459, 0.724373, -1.671488, 0.176020, -0.374343, 0.254090, -2.075548, -0.484902, 0.296412, 0.523166, 0.768178, 0.087610, 0.926462, -2.186858, -1.198580, 1.643683, 0.234801, -0.486080, -2.117910, 0.603340, -1.004678, 1.682788, -0.961916, 1.797310, 1.884647, 1.475095, 0.584586, 0.165867, 0.272881, 1.133891, 0.556460, 0.742031, -0.275031, 1.235634, 0.932589, -1.053908, -0.257892, 0.332026, -1.056460, -0.145212, 1.533126, -0.120149, -0.113588, 0.050304, 1.456181, 0.407513, 0.237643, -1.416271, 1.533071, -0.165018, 0.336539, -0.661115, 0.800157, -0.398622, -0.868135, 0.267367, -1.306977, -0.879139, 0.079973, -1.219551, 1.697130, 0.373199, 0.858831, 0.652219, -0.565992, 0.338268, -0.154019, -1.419849, 0.738985, -1.254001, 1.941751, -0.593920, 0.675499, 0.004605, -0.289304, -0.512924, 0.632265, 1.450813, 1.609672, 1.046503, -0.909683, 1.554108, -0.235379, 1.712608, 0.795843, 0.401878, -2.291585, 0.743067, 1.316745, -0.024247, -0.817712, -0.372298, -0.379659, -0.217670, 1.053197, 0.204553, 0.684404, -0.375207, -0.039076, -1.894295, 0.605904, -1.081617, 1.279664, -0.292974, -0.052085, -0.705365, 1.019907, 0.763236, 0.044657, 0.424004, 0.987251, 1.066817, 1.515459, 0.836232, 1.188274, -1.554347, -0.177143, -0.519960, -0.198786, -0.855771, -2.644951, 0.025266, 0.772202, 1.190315, 0.108014, 1.866243, 0.029881, 0.387912, 0.907149, -1.359823, -0.669153, 0.259995, -1.987492, 0.193020, 1.035968, 0.501884, -0.938998, 0.691270, 0.969736, -0.139169, 0.159928, 0.542495, 0.417110, -2.229785, -0.378399, 0.205535, 0.379204, 0.248025, -0.284299, -1.812779, -0.624310, -0.696426, 1.225554, 1.653222, -1.563704, -0.070534, -0.643461, -1.572547, -0.442934, 0.146049, 1.130921, 0.361494, 1.430582, 1.323829, 0.438721, -1.404530, -0.647201, 1.195281, -1.732942, 0.106817, -0.627603, -0.502232, -1.020040, 0.090695, 1.215738, 1.850232, 2.119719, 0.336909, -0.866658, 0.884403, 1.424762, -0.658921, -0.200636, -0.105434, 0.525333, -0.651487, 0.444109, 0.936841, 0.200815, 0.300288, 1.481389, 0.636704, 1.063698, -0.446502, -0.481675, 1.295370, 0.195739, 0.571653, 0.803317, 1.365239, -1.033470, 0.273164, -0.603607, 1.246939, 0.397400, -0.111385, 0.149312, -1.333105, 1.599795, -1.049144, 1.605232, 0.480585, 0.019586, -0.170216, -0.539797, -0.611482, 1.022604, -1.543115, 1.575168, 0.900111, 0.619460, -0.379933, 0.812058, 0.716127, -1.386156, -0.285592, 1.645362, -0.122247, -0.984852, 0.181130, -0.897139, 0.577652, -1.846773, -0.792216, -0.459891, 1.237503, 1.218345, 0.507659, 0.401161, -1.580426, -0.645551, 0.431850, 0.272556, -0.640024, 1.501328, 0.097618, -0.226089, 1.357681, 0.642397, -0.301296, 0.238793, -2.028144, 1.237056, -2.047739, -0.003138, 1.279416, -0.013295, -0.040423, 1.273679, 0.095526, -1.510416, 0.338575, -0.897153, -1.574995, 0.667604, -0.647126, 1.297509, -0.189834, -1.735131, 0.346467, -0.387383, 0.334408, -0.731959, 1.659167, 0.328247, 2.043740, -0.727637, -0.471995, 0.107684, 0.451542, -0.212427, 1.032818, -0.396457, 0.967522, 0.026766, 1.060822, -0.410064, -0.651738, -0.635912, -1.324542, 0.042411, -1.248637, 0.632750, 1.088512, -0.955982, 0.060488, 0.205236, -0.236711, 1.644439, 1.388496, -1.038161, 2.250437, 0.582821, 0.243450, -0.330602, -0.126818, 1.711435, -0.306606, 0.562323, 0.758824, 0.332204, 0.564271, 1.549712, -0.077883, -1.043365, 0.874691, 0.419816, 0.472237, -1.799613, 0.582136, 1.221781, -2.275681, 0.210618, 0.161319, 1.805974, 0.618748, -1.602444, -0.202080, 0.308053, 0.912782, -0.831882, -0.519299, -0.479760, 0.647252, -0.447211, -0.330485, 0.549397, 0.636230, -0.175237, 0.647608, -1.060936, -0.834699, 1.573222, -0.771146, -1.445732, 1.544112, 0.989244, -0.222379, -0.980293, -0.358746, 0.631122, 0.024881, 0.493351, -0.980924, -1.496515, -1.476285, 2.123760, 0.448699, 0.324939, 0.889897, 0.827959, 1.053775, -1.215044, -0.028244, -0.414609, -1.750615, 0.418347, 0.122679, 0.500184, -2.390927, -0.272080, 1.344650, -0.025173, -0.100997, -0.338371, 0.323430, -0.920693, -0.305362, -0.621262, -1.168995, 0.169776, 2.018693, -1.086431, -0.039656, -0.189374, 0.718889, 2.486898, 0.609052, 0.520889, -0.706367, 0.130882, 1.321332, 1.355950, -0.275612, 0.417053, 0.157980, 0.870940, 0.811623, -0.284646, 1.687041, 0.128169, 0.466296, 0.021437, -0.492624, -1.213931, 2.175844, 0.577146, 0.821402, -0.549181, -0.638525, -1.552969, -0.270153, 1.053716, 0.069494, 0.161928, 0.727706, 1.820071, 1.300635, -1.880401, -1.011756, -0.704841, 0.444285, 0.700306, 0.153119, 0.063772, 0.341860, -1.218569, -1.562679, -0.092077, -1.086208, 0.230478, -2.428952, 0.433562, 0.615468, -1.023752, -0.019248, -2.004397, 0.858222, 0.131786, 1.063129, 1.460445, 0.640818, -1.843242, -0.161401, -0.609158, -1.728559, -0.291499, -0.586932, 1.159234, -1.059424, -1.761687, -0.620608, -0.757412, -0.666260, -0.644637, 1.136447, 0.977482, 0.100492, 0.496077, -0.873040, 2.891653, 0.533914, 0.813691, 0.377243, 1.158747, -0.384126, -0.305206, -0.062554, 3.634307, -0.449640, -1.742369, -0.722342, 1.064901, 0.370198, 1.479394, 0.087976, -1.801567, 1.414482, -1.734688, -0.119935, 0.789686, 0.800417, -1.191572, 0.481645, 0.921589, -0.697429, 0.481370, -0.332025, 0.239390, 1.008940, 0.717251, -0.358650, 0.973406, -0.046911, -1.341880, -1.490852, 0.799696, -0.166077, 0.018684, -1.533417, 0.313054, -0.209294, -0.525398, 0.600222, 0.453679, 0.332193, 0.277139, 1.375135, -0.792214, 0.922301, 0.334927, 0.368115, -0.952988, 1.288529, 0.046073, -0.049559, 1.533648, -0.769050, 0.124602, 1.396857, 0.131933, -1.433377, 1.153672, -1.283796, -0.743035, -0.736097, 0.819984, 0.188190, 0.238723, 0.777744, 0.715049, -1.457234, -0.149734, -0.871964, -1.722914, -2.343277, 0.756449, -0.469095, -0.105168, -0.102212, 0.519162, -0.949081, 0.317942, -0.008905, 0.880694, 0.768018, 0.102661, -1.424841, -0.067067, -0.293462, 0.962291, 0.212433, 1.118502, 1.148754, -0.412285, -1.022446, -0.700458, 0.979952, 1.919874, 0.398266, 0.490786, -1.626828, 0.648067, 1.135415, 0.311954, -0.292344, -0.652591, 1.160436, -1.128722, -0.738498, -2.548654, 0.439208, -0.123548, 0.806428, -0.385683, -0.381651, 0.492031, 0.554466, 0.306599, -0.317037, -0.657626, 0.276241, -0.799675, -1.135994, 0.025576, 1.524356, 1.779939, 0.075114, -0.698642, -0.285887, 1.285481, 0.215047, -1.027201, -0.284533, 0.380795, 0.706966, 0.366309, -1.011600, 0.631539, -0.282359, 2.982848, -1.153484, -0.189096, -1.137280, 0.818690, -0.171569, 1.042511, -0.632542, -1.102181, 0.689640, 0.422844, -0.547450, -1.131301, 0.312503, 0.637665, -0.751289, 0.155013, -0.328764, -0.792004, 1.417963, -0.160974, -1.402231, -0.932805, -0.685808, 2.398775, -0.471940, -0.547215, 0.908190, -0.265153, 2.262488, 1.384673, -0.840720, -0.701540, -0.172422, 0.850958, -0.153448, -0.278825, -0.757067, -1.187760, -0.043663, -0.570766, 0.154946, 0.594962, -1.070082, -1.765571, -0.712869, -1.771842, 0.046882, 1.024883, -0.347007, 0.098460, -0.061667, 0.656342, -1.433418, -2.280200, -1.835229, 0.225144, -0.485068, -0.486958, 1.327062, 1.548246, -1.496099, -0.968958, -0.224064, 0.028635, -1.441095, 1.091844, -0.795990, -1.443695, -1.037121, 0.192777, 0.233803, -0.780962, -1.293411, 0.707099, -1.497790, -0.846497, -0.494631, 1.074160, -0.013830, 0.174071, -0.201901, -0.486750, -0.362127, -0.267790, -0.270937, 1.111896, -0.046425, 0.310211, 0.538690, 0.246840, 1.603209, -1.006151, 1.399642, 0.516344, -1.119212, 0.011564, 1.032392, -2.137830, -0.458846, 1.076548, -0.421424, -0.030632, -0.934729, -0.518425, 0.651381, 1.247126, 0.972164, -0.214589, 0.053051, -0.642297, -0.753393, 0.697890, 1.972582, -0.065124, 0.659279, 0.207376, -0.546509, -1.274967, -0.065927, -0.419302, -0.251757, -0.638892, 1.805074, -1.801460, -0.108050, -1.346863, -1.705499, 1.452543, 0.755774, 1.092339, -1.012060, 1.814085, 0.545268, -2.122539, -0.280203, -0.426116, -0.256643, 1.048114, 0.155350, 1.364737, 0.395107, -0.022182, -0.653808, -1.266924, -0.426717, -0.359394, -0.179963, -0.773853, 0.089784, -0.740791, 0.367406, 0.407117, -0.689775, -0.731657, -1.155499, 0.893848, 1.235849, 0.320152, 0.059431, -0.604499, -1.350062, 0.125098, -0.814026, -0.506056, 2.164879, -1.353691, -1.011465, -0.685051, 1.104228, -1.157439, -0.485205, -2.497320, 0.604647, -1.420419, 0.602604, 0.278328, 0.150027, -0.138131, -0.050711, -0.841844, -0.070716, -0.595316, 0.010523, -0.203920, -0.225158, -1.402896, -0.126184, -0.593979, -0.145913, 0.167566, -0.596005, 2.164720, 0.217478, 0.742733, 1.029717, 0.628989, 0.806181, -0.248373, 1.520913, -0.438485, -0.566362, 0.652311, 0.866376, -0.269359, -0.113015, 1.266411, 0.594742, 2.423619, 0.543786, -0.115658, 0.857222, -0.940680, -0.214410, -1.496817, 0.500499, 0.141213, -0.806804, -0.237316, 0.447476, 0.168397, -0.172755, 1.882573, 0.240807, -0.297934, 0.611999, 0.966728, -0.078697, 0.168583, 0.205307, -0.952354, -0.320256, 0.832322, 1.666139, 0.631517, -0.506827, -0.551355, -0.657646, 0.575448, -1.135399, 2.069389, -0.841543, 1.787026, 1.482088, -1.690799, 0.524223, -0.594750, -0.077839, 1.278702, -1.026274, -0.978542, -0.393522, 0.004852, -1.052877, 1.080055, 0.734276, -1.044457, -1.639061, -0.755365, 0.800940, -0.184771, -0.412833, -0.531526, -1.402736, 0.940678, 0.166610, 0.144127, -2.324184, -1.375890, 0.537638, -2.428773, 0.509257, 1.208723, 0.928230, 2.237816, -0.288016, -0.211706, 0.966168, 0.021801, -0.601339, 0.686722, 0.120243, -0.109425, 0.983141, 1.350210, 0.351095, -0.580328, -0.471648, 0.837873, -0.419865, 1.950191, -1.676164, -1.986370, 0.535044, -1.917312, 0.519233, 1.278150, -2.637649, -0.931096, 0.118603, 0.208989, 0.886885, -0.091652, 0.377726, 1.055290, -0.649825, 0.433201, 0.086600, -0.017669, -0.332059, -0.156662, -0.450940, -1.142937, -1.463332, -0.243229, 1.614473, -0.170515, -1.079244, -0.849102, 1.475989, -0.930568, -0.487682, -0.630463, 1.860586, -0.264389, 0.156278, 0.447009, 0.016093, 1.353387, 0.646973, -0.220601, 0.994193, -0.775016, 0.351284, 2.529540, -0.645325, 0.582984, -1.466871, 0.789530, -0.782410, -0.199359, 1.063133, -1.527282, 0.697280, -0.916191, -0.797119, -0.148378, -1.099864, -0.918967, 1.772733, -0.293160, -0.175819, -2.873878, 0.210562, 0.133415, -0.447022, -0.369241, 1.551989, -0.777479, 1.698630, 0.308076, 0.278889, -1.220540, -0.180882, -1.663167, -0.552691, 0.126772, 0.002524, 1.350661, -0.513274, -0.644278, -0.488755, 0.066758, -0.210896, -0.287152, 0.636588, 1.123429, 2.485032, 0.986254, 1.648961, -0.075521, -0.548075, 1.986850, 1.357698, 2.300064, -0.284665, 0.543455, 1.592470, -0.184173, -0.111129, -0.580227, 0.220468, -0.208687, 0.448734, 0.032736, -0.966882, 0.317363, -0.481474, 0.684299, 1.336560, 0.027664, -0.437053, 0.020271, 1.879279, 0.982406, -0.496204, -0.909334, 0.454811, 1.069827, -1.622297, 1.827473, -0.816461, 2.020078, 0.805258, -1.092625, 0.198462, -0.714587, 1.197768, 0.916227, 0.396992, 0.253684, 1.290877, 1.118490, 0.079442, 1.900216, -0.119153, -0.384979, 0.524162, -0.592564, -0.999366, 0.199682, 1.003846, 0.474500, 0.327132, -1.394262, 0.752885, 0.283028, -0.360385, 0.428653, 0.014572, 2.063022, 1.644953, -0.036233, -0.295001, 0.869577, 0.983596, 1.707063, 2.156869, 1.711904, -0.502335, 0.147112, -0.873209, -0.035239, 0.523164, -0.462570, 0.900196, -1.329216, 0.601497, -2.313992, -0.413853, 0.438713, 1.284026, -0.428070, 1.461834, 0.398688, 1.465784, -1.900860, -0.729031, -0.142893, 0.168145, 1.704455, 0.512674, -0.244008, 2.288321, -1.461442, 0.456502, 0.660286, 1.396450, -0.079329, 1.148720, -0.483842, 0.477136, -0.125468, -1.041603, 1.084591, 1.639639, 0.376313, -0.469184, -0.598421, 0.442313, -0.119095, -0.946090, 0.831479, -0.121850, 0.701710, -0.260115, 0.230561, 1.623636, -0.190297, 0.415193, -0.057653, -1.480215, 0.053738, 1.113153, 0.218547, -0.671041, -1.507383, 0.717438, 1.844223, 0.630939, 1.625890, 0.127088, -0.071475, -1.260457, -1.249726, -0.959038, 2.164299, 0.507268, 0.194375, -0.568231, -0.606358, -0.074386, 1.034043, 1.147497, 0.100215, -0.636835, 0.568724, -0.068536, -1.281750, 1.593863, 1.938854, 1.019770, 0.663070, -0.956689, 0.100639, -0.398490, -0.916473, -1.039211, 0.554584, -0.261504, -0.073555, -0.130241, -0.882494, -1.379310, 1.844366, 0.617660, 1.127325, -1.575470, -0.154042, -1.422882, -1.155640, -0.707396, 1.282934, 0.003124, -0.224813, 0.284165, 0.232662, 0.929362, -1.390440, -1.287308, 1.866545, -1.010280, 1.712442, -1.134542, -0.303493, -0.868544, -0.916382, -1.447089, -1.748556, 0.324426, 1.156134, -0.435936, 0.033932, 0.515855, -0.717973, 0.027965, 1.252700, 0.997011, -1.459125, 0.939454, 1.253726, -1.565335, -0.006108, -1.643310, 0.873896, 1.374321, 1.225836, 0.564169, 2.153342, 0.162568, 0.651912, -0.418130, 2.703199, -0.767437, -0.534123, -0.294185, 0.285560, -1.023888, -0.096266, 1.327629, -0.547232, -1.165852, 0.056561, -0.068240, -0.574851, 2.475833, 0.610420, -0.604346, -1.104933, -0.095885, -0.108639, 1.184208, 0.000399, 2.368381, 0.941614, -0.641642, 0.324708, -0.957477, -1.203021, 0.813082, -0.150098, -0.296032, -0.135761, 0.870696, -0.107229, 0.634188, 0.866151, -0.081902, 0.325302, 0.842824, 0.390093, 0.025223, -0.203878, -0.570896, 0.164745, -1.844790, 0.520028, -0.023327, -1.829439, -0.456234, 1.800588, -0.199132, 0.992753, -1.584012, 1.606374, 0.349932, 0.682876, 1.050901, 0.870898, 1.312261, -2.837859, 0.733290, -1.073519, -0.025142, 0.738580, -0.574779, 0.580421, -1.445295, 0.138911, -0.580722, -1.430385, -0.628842, -0.905252, -1.387759, -1.177275, 1.764368, -0.966234, -0.530609, 1.081259, 0.225107, -1.078352, -2.185733, 1.035257, -0.793806, -1.409346, -0.784551, -1.106549, -0.126562, -0.905708, 0.269379, -1.128022, -0.242388, -0.423059, 0.105344, -1.024157, 0.202763, -0.063013, -0.088429, 0.655410, -1.110098, 2.428923, -0.502188, -1.386327, 0.226384, 0.604643, 1.620373, -0.364794, 0.778856, 1.857160, -2.043384, -0.325213, 0.132761, -0.545914, -0.417377, 0.042706, 0.209212, -0.701293, -0.149360, 1.221534, 0.417134, 1.092080, 1.184439, 1.789684, -0.040896, -0.480061, 0.916486, 2.427948, -0.111680, -0.231581, -0.041493, -0.379683, -0.015162, -0.145177, 0.646470, -1.081743, -0.558725, 0.075091, -0.658205, -1.520468, -1.368554, -0.435683, 0.404889, 0.623453, -1.698661, -0.045201, 2.583282, 1.622723, 0.515381, -2.472880, -0.349608, 0.761993, -0.425938, -0.247565, -0.165860, 0.578170, 0.214630, -1.104797, 0.237689, 0.099863, -0.344605, -0.584362, 2.300824, 1.934830, 0.870265, -1.091693, 1.200358, -1.127811, -0.624323, 0.413726, 0.279315, 0.453928, -0.681680, -0.627302, 0.258638, 0.344921, -0.623981, 0.562794, -0.215639, -0.856844, -0.794088, 1.259898, 0.237298, -0.622015, -0.548554, -0.502306, -0.174810, 1.027696, 0.806162, -0.467659, -0.239836, -1.998171, 1.063450, -0.718953, -0.139901, 0.545427, -0.714572, -1.050039, -0.315258, 0.345020, 1.039544, -0.948866, 0.298364, -1.238915, -1.511428, -0.610218, -0.938979, 0.377812, -1.114161, -0.372858, 1.207247, 1.328421, -0.238980, 0.268872, 0.167597, -0.487284, 0.463517, -0.361816, 3.039635, 2.437635, -0.044734, -0.258641, 1.838695, 0.080889, -1.251838, 2.388910, -0.033314, 0.069068, -1.440609, 0.259411, 0.343637, 1.518689, 1.273710, 1.182842, -0.750187, 1.290238, 0.002208, -0.352721, 0.390876, -1.150684, 0.119555, 0.282951, 0.501361, -0.069848, 0.949723, -1.317181, -0.989062, -0.088267, 0.520365, -1.843896, 0.089088, -0.195586, -0.311254, 0.659937, 1.233026, 1.125150, -2.106544, -0.356165, -0.779234, -0.691224, 0.484419, -0.931746, 0.809339, 1.002660, 0.370814, 0.853346, -0.548096, 1.514438, -1.187621, -0.662147, 1.479093, 1.327541, 1.307220, -0.234879, 0.403882, 1.447610, 0.589404, 0.694251, 1.343502, 0.272674, 0.695819, -1.971697, -0.448987, -0.082878, -1.171790, 0.567854, 0.177039, -0.769617, -0.249011, 0.916148, -0.773082, -0.621623, 0.152847, -1.794625, -1.364801, 0.501819, 1.037467, -2.247378, 0.861127, -0.657073, -1.112528, 1.174116, 0.983575, 1.945536, -0.734273, 0.342169, -0.452515, -0.989329, -1.565692, 0.567737, -2.375162, 1.539514, 0.180613, -0.231800, -0.754102, 1.981379, 3.051359, -1.317772, 1.254228, -0.000224, 0.684869, -0.271161, 0.132324, 0.312634, -0.484563, -1.966262, -0.647917, -1.647337, -0.648669, -1.341726, 0.174658, -0.761759, -0.014404, 1.944759, 0.014563, 1.354151, 0.974332, 0.585895, 1.500535, -0.562382, -0.906372, -0.462941, -0.996713, -1.512921, -0.180466, 1.329657, -0.379760, 0.280724, 1.320967, -0.749961, 2.008527, -1.209985, -0.731997, 0.308620, -1.720397, 3.468847, 1.166597, 0.364208, -0.477032, 0.365462, -1.407846, -0.146539, -0.430565, 0.746793, -0.504040, 1.846322, 0.308604, -0.199607, 0.464713, 0.967399, 1.176451, -0.954085, -0.310357, -0.312332, 0.376844, -0.141200, 0.626920, 0.526404, 0.487815, 1.620388, 1.133050, 0.610087, 0.787252, -1.111351, 0.080964, -0.643370, -0.551468, 1.412445, 0.110894, 0.437612, -0.533933, 0.197843, 0.660002, -1.448300, 0.303212, 0.222153, -0.010663, -0.377082, -1.287343, -1.244848, 0.992829, 1.138175, 0.372370, 0.172019, 0.384046, 0.685067, 0.370009, 0.150763, 0.040075, 0.499127, 0.037870, -1.727757, -1.036404, -1.291844, -0.674590, 0.435098, 1.315524, -0.050060, 0.092492, 0.867327, -0.280056, -0.815012, 0.058775, 0.279875, 0.304464, 0.336304, -0.606496, 0.249897, 0.147141, 0.326585, 1.065376, -0.200741, -0.024578, 1.711345, -1.081244, 0.254302, -0.493614, -0.766170, 1.137178, -2.513116, 0.477851, 1.114748, 0.535397, -0.476511, -0.349666, 0.930684, 1.363176, 0.299322, -0.473799, 0.240119, -0.145147, 1.566139, -1.574533, 0.856187, 0.557551, -1.186705, 1.320359, 0.925068, -0.289164, -0.113207, -0.469041, 1.077772, -0.092773, -1.313327, 0.292556, -1.077790, -1.116142, -1.835961, 1.567392, -0.789563, -1.157259, -0.066608, -0.020266, 0.295775, -3.064260, -1.619626, -1.247574, -0.333937, 0.639552, -0.738649, -0.343526, 0.413276, 1.288495, -1.008308, -0.294123, -0.610943, -0.259599, -0.501844, -0.520179, 1.200212, -0.934556, 0.989451, 0.180485, 1.793080, -2.066965, 1.462470, -0.795857, -0.960574, -0.416713, 0.013765, 0.915275, -0.294831, -0.220237, -1.689309, -0.923329, -0.069512, 0.005182, 0.564783, -1.919777, 1.912786, 0.417144, -0.031081, 1.462456, -0.391718, -0.624316, 0.173232, 0.252350, 0.016398, 0.595127, 2.154663, -0.027733, -0.755305, 0.187097, -0.971865, 0.063590, -1.592528, -0.266684, -0.138495, -2.285557, -0.799050, 1.624028, 0.547817, 1.956761, 0.141741, 0.388984, -1.128071, 0.169306, 0.129080, 2.300993, -1.876662, 0.113277, -0.157561, -0.498305, -2.280520, -0.410952, 0.207234, -1.054393, 0.599088, 0.355501, 0.107757, 0.097653, -1.604631, -0.844321, 0.464462, 0.658170, -0.357475, 1.042900, 0.223686, -0.420273, -0.090101, -1.214755, -1.180588, -1.094236, -1.393801, -0.637307, -1.002002, -0.755302, 0.072168, 1.117273, 0.103632, -0.369438, 2.210273, 0.170898, -1.366383, 1.044325, -0.513313, 0.389067, 1.236725, -0.929034, 0.783262, -0.005786, -0.271203, 1.839131, 1.016765, 1.187792, 0.323238, -0.113888, -2.164189, -1.405855, -0.274058, -1.355127, -1.506934, -1.182847, -0.370296, -1.614776, 0.297431, 0.052085, 2.701141, -0.926264, -0.659334, -1.514827, -1.096203, 1.766446, -1.792354, -0.516676, -0.970751, -0.610784, 0.214726, -0.105453, -0.081795, -1.493617, -0.187128, -0.801699, -0.350642, -0.525621, -2.161659, 0.584065, -1.357938, -0.521444, 0.499180, 1.660716, -0.291489, -1.528784, 2.352291}, + { -1.032016, 1.854591, -0.215522, -1.387603, 0.004889, 0.449155, 0.104728, 0.020874, 1.222272, 1.480285, -1.191374, 0.947607, 0.888379, -1.506574, -0.559701, -0.055621, 0.291745, 0.597127, 2.152806, -0.869542, 0.017395, 0.930051, -0.744311, -1.700843, 0.436947, -1.766412, 0.529422, -1.023080, -0.772948, -0.697452, -1.501460, 0.432844, 0.322991, 0.389627, -0.792569, -0.314687, 1.667322, -0.355861, 0.120736, -0.273842, -0.784053, 0.184458, 0.210351, -1.140201, 2.409621, 1.449104, -0.002138, 1.021659, -0.911501, -0.843906, 0.111113, 1.964941, 1.542510, 1.406612, 0.517131, 0.368924, 0.024763, -0.337369, -0.031090, 1.290943, 0.087439, -1.344030, -1.033239, -0.346714, 0.852564, 0.677325, -0.901013, 0.418104, -0.480731, -1.097337, -1.691154, -0.532958, 0.617703, 0.877878, -0.645001, -1.062746, -0.380974, -0.614441, 1.092631, -0.866036, -0.931524, -0.626952, 1.226366, 0.168713, 0.950177, -0.557153, -0.267041, 0.042744, -0.072765, -0.571458, 0.371207, -0.181331, -1.174651, 0.100353, 1.152169, -0.245983, 0.276579, 0.630689, 0.645390, -1.542664, 0.287892, -1.966227, 2.895799, 0.473836, 1.288372, 0.148612, 2.475049, 0.527445, 0.937163, 2.688011, 1.219828, 0.277092, -0.749727, 1.249389, 0.387824, 0.423623, 0.037290, 0.043830, 0.360338, -2.508510, 0.465263, 0.561708, 0.609726, 0.690628, -1.026875, -1.010403, 2.002129, -1.971392, 0.112570, -1.539712, 0.553410, 0.028059, -0.004749, -2.133714, -1.014866, 1.476596, 0.280019, 1.398513, 1.157147, -0.290232, -1.981096, 0.674028, -1.511503, 0.483117, 1.363053, -0.514163, -0.776454, -0.158192, -0.253181, -0.428754, -0.288293, -0.172351, -0.911873, -1.360609, 0.307155, 1.873235, -0.963907, -0.135169, 0.562139, 0.774167, -0.882563, -0.615164, 0.180195, 0.077910, 1.179424, -0.874645, 0.056420, 0.331574, -0.023752, 0.944618, 1.629864, -0.829140, -0.198809, 0.936105, 0.310516, -0.208277, -0.423705, -1.217533, -0.213382, -0.126103, -0.052538, -0.506724, 1.581277, -0.358663, 1.089691, 0.531895, -0.027278, 0.703215, -0.882655, 1.394934, 0.099182, -0.450208, -0.920682, 0.480102, -1.393848, 0.554102, 1.890914, -0.238349, -0.189114, 1.912245, -0.986157, -0.889509, 0.745610, -0.605612, -1.891715, 0.032407, 0.659069, 0.421151, 0.084908, 0.125713, -0.180533, 1.662164, -0.622092, 1.279968, -0.944012, -0.838864, 1.417750, 0.707576, -0.980073, 1.642846, -0.071000, 0.053094, 1.109880, 0.708380, 0.488305, -0.069913, -0.599691, -1.161746, 0.700080, 1.521088, 1.792642, 1.218995, 1.926570, -0.364577, -1.702465, 1.949011, 0.908122, 0.130924, 1.668756, 1.884508, 1.399567, 0.008585, 0.936778, 0.240411, -0.407272, -0.708686, -0.546560, 2.050210, -0.026404, 0.231036, -0.869428, -1.228726, -0.153557, -0.346251, 1.184444, -0.400680, 1.094365, -0.002089, -0.941457, 1.553974, -0.433057, 0.789555, 1.313542, 0.020200, 1.500007, -0.669353, -0.302262, 1.709308, 0.432081, 0.398792, -0.536806, -0.653943, -0.196166, 0.832619, -0.867496, -0.153895, -0.252974, -0.741366, 0.639479, -1.318888, -0.038313, -0.693417, -0.927080, 0.932684, 0.803425, -1.728262, 1.682792, -0.857272, 0.657629, 0.849434, 0.296028, 0.144598, 0.062429, 0.801032, -0.897822, -0.890341, 1.054406, -0.498566, 0.090428, -1.076260, -1.598137, -0.581367, -1.173660, 1.061905, 0.356659, 1.304267, -0.801799, 1.246165, 0.667837, -0.820372, -1.309478, 0.459676, 0.541285, -0.618476, -0.739771, 0.330440, 1.564528, 1.084407, 1.471269, -0.526647, 1.086766, -0.206993, -0.920489, 1.210893, 0.645602, 0.103009, 0.930268, -0.095701, 0.229570, 0.513355, 0.115237, -0.324102, 0.812715, 0.602063, -0.215722, 1.318895, 1.701331, -1.467334, 0.958047, 0.194303, 0.194073, -1.831349, 1.143847, 0.775388, -0.707565, -0.774336, 0.262818, -2.312440, 0.591929, -0.148091, -0.065918, 0.584594, 0.481410, -1.359851, 1.005084, 0.144354, -0.367480, 0.664287, 2.416342, -0.296834, 0.749579, 1.132690, 0.002088, 0.825948, 2.032626, -1.084534, -0.283351, 0.682833, 0.014223, 1.041453, 1.116392, -1.086432, 0.125484, -0.321226, -0.203686, 0.296916, 1.481791, -0.622020, 0.474773, 0.132598, -0.975393, -0.026756, -0.700388, 0.646137, 0.185499, 1.233930, 1.029603, -0.135610, -1.317337, 1.330919, 0.274546, 0.261772, 1.215554, 0.114212, 1.033923, 0.616942, 1.403023, -0.722602, 0.327544, 1.391384, -1.382234, -1.821349, -0.125506, -0.706927, 0.199987, 0.351954, 1.134098, 0.870109, -0.078746, -0.857906, 0.717979, 1.274832, -0.765643, 0.232387, -0.521633, 1.727670, -0.260526, -0.987254, -0.742446, -1.446580, 0.181792, 0.888987, 0.472363, 0.634425, -0.716143, 0.079465, 1.374539, 0.493535, 1.927585, 2.140982, 0.401549, 0.890757, 0.774744, 0.199304, -0.420552, -0.874384, 0.143213, -0.470475, -0.834608, -0.113475, -0.040145, 0.985630, 1.303231, 0.270954, -2.334831, 0.751316, -0.360642, 0.429777, -0.561546, 0.001370, 0.500387, -0.685473, -1.119624, 2.591336, 1.973171, -1.495251, 1.147286, -1.476510, -0.750757, 1.819601, -1.387690, -1.674675, -0.820915, -0.841003, -1.054115, -0.878545, 0.450059, 0.302665, -0.304095, -0.657107, -1.373809, 0.683586, 0.513120, -0.153538, 0.587214, -0.178789, -0.771145, 0.981733, -2.678084, -0.360978, 0.579160, -0.979916, 1.180557, 0.906121, -0.988775, 0.429118, -0.243366, -2.479257, 0.148848, 0.418409, -1.841728, 0.005940, 0.478099, 1.772866, -1.233891, -2.564396, -0.056156, 2.089041, 1.088386, -0.353672, 0.668447, 0.149646, -0.553954, -0.566497, 0.442340, -0.011381, 0.471670, 0.602019, -1.436193, -1.254965, 1.780027, 0.052386, 0.989152, -0.421028, 1.482023, 1.574207, -1.785544, -0.611356, 1.006527, -1.607428, 1.321297, -0.296010, -0.895521, 1.118481, -0.601377, -0.067650, -0.281833, 1.592834, -0.043791, 0.239481, 0.117711, -1.326522, -1.173818, -0.889782, 0.499607, -1.229618, 1.352457, -0.375628, -2.688049, 0.484384, -0.675598, -2.851353, 0.418927, -0.531147, -2.178747, -0.620355, -0.687873, -0.452168, 0.078381, -0.788451, -0.126407, -1.430971, 0.301005, -0.420261, -1.044814, 0.721834, -0.224389, 1.269181, -0.673290, 0.610022, 0.322914, 0.288976, 2.962226, 1.555213, 0.670430, -2.914404, 0.775814, 1.530241, 0.044895, -0.413111, -0.450824, 0.535644, -1.102416, 0.855280, 0.046259, -0.269084, 1.433368, -1.204725, -0.032151, 0.867805, 1.311642, 1.228350, -1.213409, -0.469054, -0.711696, 2.192108, 0.172786, 0.015074, 0.886867, -1.970909, 0.222367, -0.839810, -1.680780, -1.506236, 0.595583, -0.460526, 1.304477, -0.301202, -0.942746, 0.799834, -1.234622, 0.997966, -0.343350, 0.125635, -0.249554, -1.039301, 1.197757, -0.589366, -0.758682, -0.623128, -0.513029, 1.001507, 1.726441, 0.384944, -0.077365, -0.946518, -1.145625, -0.468252, -0.785403, -0.589111, -0.590267, 0.253627, 0.345603, -0.551738, -0.487664, -1.393245, -0.251796, -0.112630, -0.761932, 0.513099, -0.722046, -1.397475, -0.062571, -0.006208, -0.344936, 0.898064, -0.406844, -1.058608, -1.038658, -0.707946, 1.597920, -0.832562, -0.419433, 0.073509, 1.006773, -1.736862, 0.820719, 0.019082, 0.353860, 0.408105, -0.055810, -1.098349, -0.817160, -0.311048, 0.405275, -0.629797, 0.755819, -0.238527, -1.026413, -1.139971, -0.280944, -1.043725, 0.112288, 0.062357, -0.387122, -0.676964, -2.498029, -2.384445, 0.339674, 0.715561, -0.850102, 0.794963, 1.235157, -1.154691, -0.911378, -1.116083, 1.677790, -0.586472, -1.897209, 0.254429, 0.190187, -0.011855, -1.017788, 1.839750, -1.371098, 1.144897, -1.102128, -0.237888, -0.471465, 0.802670, 1.046923, -0.476656, 0.760300, 1.681519, -1.869753, -0.557502, 0.121166, -0.169569, -0.759741, -0.747529, -1.215231, -0.652986, -1.626459, -0.341549, 0.504136, 0.896154, -0.831009, -0.882100, -1.043559, -0.576469, -0.036531, 1.900556, 0.272033, -0.473085, -0.882971, 1.533360, 0.438491, 0.201686, 1.772072, 1.311067, 0.290760, 0.721544, 0.680458, 0.309648, -1.778819, 1.091028, 1.652424, -0.703120, -0.368153, -0.064626, -0.516528, 0.088144, 0.755239, 0.446299, 2.049288, 0.853415, 0.410563, -0.441081, 1.941374, 0.318625, -0.929125, 0.888702, -0.217404, -2.055099, -0.298698, 0.433219, -0.851539, 0.028616, -3.073194, 0.197669, -0.214431, 1.393304, 0.457332, 0.282850, 0.748774, -0.370778, 0.512766, -0.869590, 1.775725, -0.381640, 2.064993, -0.150312, -2.011588, -1.000874, -0.619422, 0.759872, 1.527296, 0.246786, 0.102310, 0.121937, -0.123196, -1.073119, 0.353966, 0.538203, -0.672015, -0.445545, 0.472643, -0.278015, -0.274855, 0.201580, -0.291376, 0.979554, 1.285204, -0.079972, 1.845073, 0.018455, -0.332106, 0.538070, 2.261812, -3.153538, -0.900794, 1.344540, 1.438202, 0.378637, 0.743369, 2.143876, 1.284867, -0.180881, -0.405424, -0.591861, 1.657997, -0.371613, 0.616362, 0.244465, 1.690240, 0.469006, 0.312795, -0.107786, -1.433827, 1.043196, 0.540520, 0.625573, -0.632253, 0.054265, 0.009328, 0.440699, 0.096355, 0.482888, 0.013599, 0.721417, 0.758791, -0.674839, -1.084236, 0.194385, -1.488305, -1.531361, -1.141776, -0.333379, -0.044094, -0.332861, 0.170944, -0.919710, 1.492268, -0.138132, -1.301799, 0.090258, 1.217156, 0.747416, 0.275898, -1.078026, -1.568503, -1.258780, -0.401220, -0.797802, 0.888903, 1.191863, -0.857255, -1.323898, -2.001235, 0.192529, -1.139978, -1.305345, 1.444400, 0.820702, 0.086833, 0.972912, -0.738201, 1.272847, 0.435851, -0.581540, -0.068129, -0.577289, 2.224838, 0.014232, -1.024243, 0.219190, 0.413199, 1.241418, -1.174235, 0.017577, 0.019241, 0.784325, 0.914175, -0.453461, 0.667504, -0.809297, -1.750080, -0.141297, -0.831413, -0.125206, -0.465609, 1.580447, -1.012284, -0.849111, 0.306523, -0.320722, 1.377635, 1.430311, 1.658944, 0.309130, -1.601476, -0.300309, 0.356393, -0.100079, 1.858357, 0.734674, -1.489920, -0.702290, -0.577557, 0.845826, 0.925556, -0.133251, -0.250079, -0.270773, -0.440477, -0.419883, -0.364977, -0.275343, -1.290047, -1.257682, -0.580341, -0.808149, -0.677219, 1.351719, -0.465671, -1.343446, 1.863603, 0.059346, 1.143813, 0.467443, 2.004931, -0.065551, -0.069550, 2.081304, -1.088374, -1.724354, 0.986678, 1.349470, -0.287666, 0.636318, -0.831416, -0.276590, 0.096441, 0.400207, 1.761069, 0.033869, -0.239444, 1.927289, 0.326985, 1.861964, -1.027518, -0.252546, -0.914581, -1.493719, 0.687954, 0.431235, 1.293586, 1.036075, 0.309026, 0.008513, -0.431012, 1.367234, 1.897807, 2.296672, 0.948918, 0.600105, 0.522261, -0.368362, 0.892143, 0.249466, 0.482641, 1.448118, 1.727586, 0.565913, -0.290096, 1.535042, -0.757973, -0.086502, -0.669223, 0.620891, 1.306139, 0.836862, -0.059012, 0.161054, -0.110510, 0.248580, 0.423718, 0.776868, 1.771792, 0.019362, -0.314416, 0.230599, 0.292728, -0.568906, -0.411275, -0.858015, -1.882231, -0.529734, 0.197664, -1.177380, -0.626984, 0.442823, 0.330114, -0.523000, 0.152460, 1.968234, -0.743490, 0.672194, 1.995935, -1.006615, -1.737551, -1.133825, 1.569160, -0.550759, 0.260316, 0.061030, -0.299893, -1.398609, 0.464938, -0.578189, -0.674429, -0.892877, -1.309711, 0.967669, -0.016976, 0.074026, 1.035867, 0.579666, 0.139395, -1.750185, -0.507347, -0.542170, 0.013362, 0.964037, 0.991608, -0.373843, -0.694114, 1.507900, -0.593654, -1.487798, -1.497645, 1.669663, -0.458306, -0.706962, 1.662581, -1.918587, 0.084422, 0.421538, 0.496799, -1.673889, 0.555501, -1.068548, 0.731318, 1.562805, -1.740687, -0.297419, 0.128330, -2.583031, 0.075735, -0.311489, -0.097381, -1.189062, -0.663472, 0.639390, 3.145621, -0.405558, 0.410006, 1.408620, 0.725816, 0.656646, -1.805473, -0.804754, 0.005580, 0.015301, 1.217217, -1.187022, -1.129431, -0.802469, -0.073172, -1.370412, 1.145019, 0.297423, -0.303112, -0.154936, -0.087705, -0.487541, 0.076855, 0.900322, 1.459603, -1.114173, -0.560727, 0.828400, 0.568284, 0.247648, 0.069986, 2.343649, 0.483855, -0.491534, 1.264371, -0.386331, 2.186863, 0.176023, -0.320987, 0.538502, 1.360584, 0.091475, 0.728556, -0.024649, 1.377089, -0.621904, 0.375754, 0.889572, 0.147274, 0.287843, -0.257625, -0.354862, 0.236499, -0.057406, -0.076215, 0.582610, 1.831080, -1.549489, 0.369506, -0.231272, -0.555946, 1.105228, 1.310853, -0.381417, -0.592675, 0.445043, 1.412374, 0.509445, 0.499025, -0.202159, -0.301325, -1.021279, -0.213811, -0.307318, 1.265393, 0.518794, -1.086239, -1.037994, -0.553106, 1.546336, -1.005629, -0.566092, 0.461581, 0.757976, -1.161483, 0.208647, -0.514475, -0.415844, 0.292909, -1.012986, 1.179868, -0.008937, -0.065337, -0.647396, 0.424811, -1.308007, -0.544268, 0.065002, 0.618984, -0.507736, -1.052013, 0.093192, -0.221534, -1.012366, -0.000609, -0.712374, -0.525488, -2.226508, 0.986113, 1.093016, 0.599521, 0.482077, -0.396838, 0.220787, 1.014042, -0.481698, -1.213871, 0.538134, 0.482876, 1.040492, -0.636604, -0.822290, -0.387025, -0.250082, 1.851348, -0.984867, -0.305903, 0.132120, 1.211872, -1.638612, 0.857618, 0.275511, 0.711673, -2.569485, -0.712061, 2.313772, 0.018603, 0.436174, 0.594517, 1.579452, 0.709101, 1.343971, -2.581629, 0.880758, 0.037315, 0.769113, -0.181262, -0.486842, 2.206519, 1.570604, -0.700580, -0.985305, 0.209329, -0.590215, -0.184059, 0.727232, -2.210170, -0.798697, -2.763262, -1.204549, -0.898423, -1.647859, -1.284928, 0.076998, 0.020094, -0.140689, -1.921330, 0.104324, 2.374990, 0.842787, 0.546089, 0.317766, -0.498612, -0.458068, -0.226340, 1.538769, -0.114176, -0.142312, -0.408754, 0.919678, 0.478961, -0.374630, 0.883696, -1.454080, 2.120202, -0.769070, 0.368273, -1.414514, 0.071525, 0.066694, -0.893816, 1.744107, -1.628857, -1.190436, 1.830014, 0.798957, 1.285507, 0.414290, -0.365950, 0.212305, 0.541625, 0.519255, 0.206425, 0.083886, 1.522180, 0.597596, 0.972386, -1.417210, -0.419069, -1.046872, -1.408441, 0.460918, 0.604269, -0.003579, 0.915099, 0.020660, 1.913400, 0.595366, -0.925062, 0.470077, -1.667605, -0.947630, -0.550432, -0.127000, 1.520927, -0.075824, 0.408459, 1.006025, -1.145472, -0.549303, 2.061292, 0.645890, -0.500019, -1.351231, -0.283737, 0.694273, 0.044929, 1.779419, -1.637010, 2.111714, 0.767379, -2.375297, 1.179533, -0.101051, -0.066479, -0.008702, -0.694684, 0.393051, 0.873756, -2.176816, -1.770323, 1.470756, -0.029126, 1.166746, 1.217988, 0.559861, -0.695957, -0.065061, -0.070542, 0.546533, 0.898012, 0.266859, -1.274410, 0.678097, 0.061996, -0.400796, -2.607193, -0.851315, -0.406411, -0.547298, 0.054909, 1.414761, 1.246948, 0.467590, 1.095844, 0.482120, 0.437341, 0.263228, 1.033184, 0.252267, 0.093054, 0.805185, 0.315904, -0.520940, -1.022251, 0.019651, 0.586666, -0.070927, 1.777155, 0.191013, 0.488259, 0.874730, -1.575678, 1.953128, -0.075579, 0.412057, -0.045897, -0.595760, -0.876899, -0.166518, 0.121110, -1.338137, -0.408745, -0.581085, 1.783476, 0.292805, 0.504644, -0.766789, -0.717569, 0.747268, 0.881905, -1.250172, 0.419696, -0.937994, -0.229856, -0.333113, -0.387024, -0.166988, 1.472329, -1.239947, 0.218135, -0.170028, 0.168799, 1.355003, -1.128460, 1.150250, -0.598744, 1.887246, -1.435522, 0.053824, -0.097469, -0.247719, -0.908708, 0.957033, 2.029927, -0.265685, 1.980939, -0.295662, -1.032470, -0.312848, 1.586759, 2.132348, -1.538381, 0.228691, -0.049835, -1.399582, -0.073877, -1.006920, -1.325234, -0.726887, 0.771350, 0.892443, -1.405279, -0.136513, 0.428208, 0.050376, -2.476303, 0.707187, 0.569651, 1.378333, -1.367301, -0.792259, 1.247573, 1.154033, -1.178072, 0.121984, -1.333111, 0.552416, 1.027333, -0.239504, 0.696476, -0.128553, -0.095029, -0.103731, -0.420336, -0.136789, -0.732562, 0.643649, -0.304384, 1.173717, 0.441279, 0.148747, 0.905687, -0.431355, -0.803931, 1.021063, -0.909395, 0.628105, -1.691992, 0.841441, 1.819508, -0.221426, -0.430381, -0.019026, -1.349211, 2.117701, -2.244253, -0.940768, 0.943783, -0.492540, 1.163696, 0.055375, 0.587787, -0.819144, 0.328868, 1.232107, -1.007656, -1.393181, -1.672471, 0.536193, -0.228995, -0.965492, 0.785634, 0.710431, 0.079519, 0.316411, -0.182454, 0.490831, -0.513063, 0.476037, 1.466525, 0.220559, -1.405481, -0.026434, 2.269587, -0.058644, 0.952468, 1.499490, 0.831637, 0.490270, 0.111448, -0.682964, 0.391554, 0.579796, 0.197869, -0.920101, 0.163704, 1.364783, 0.604521, 0.460194, -0.268582, -0.199590, -1.166637, 0.442435, -0.103673, -0.431949, 1.355813, -0.615516, 0.813909, 1.960588, -0.043940, -0.643737, 0.494287, -1.988429, 0.144331, 0.190850, -0.403714, 1.187951, -1.695865, -0.276980, 1.428582, 0.346514, 0.886400, -0.464825, 1.083113, 0.701988, -0.590220, 0.005318, 1.247763, -0.209317, 1.099862, 0.921660, 1.456642, -0.456111, 0.595674, 0.212764, -0.328237, -0.214248, -0.707355, -1.580833, -0.168709, 0.146383, 3.446459, -0.122041, -0.734542, 1.032795, 0.831277, -0.047282, -0.412163, 1.512903, 1.538750, 1.471705, 0.094461, 0.075108, -0.136330, 0.658774, 1.018835, 0.050999, 1.389396, -1.198546, 1.702388, -1.481226, 1.578812, -0.298361, -0.263696, 0.188468, -0.175714, 0.700729, 0.594524, 1.296757, -0.191567, 1.559525, 0.866800, 2.456388, -1.235216, 0.037084, -0.677195, -2.670623, 0.046851, 0.322372, -0.572669, 0.897736, 2.094399, 1.085917, 0.906435, -0.155260, -0.659601, 1.238277, 1.040122, 0.812068, -0.832285, -0.283456, 0.582074, 0.515003, -1.281442, 0.631931, 0.596915, -1.637752, -0.443029, 0.236002, -1.155528, 0.613431, -0.523756, 0.323791, 1.396541, -0.571049, 1.104737, 0.736704, 0.557855, 0.285693, 0.189533, 0.930596, -0.210904, -0.920275, 0.052844, 0.074781, 1.949393, -2.412667, 1.003973, -0.589588, -0.003506, -0.902035, 1.377478, -0.778610, -0.407606, 0.117293, -0.651661, 0.054945, -1.211458, 0.462582, 1.873424, 0.722806, -2.770347, -0.119273, -0.503750, 1.473681, 0.975476, -1.010413, 1.042296, 1.238433, -0.938008, -0.728560, 0.376925, -0.956081, 0.011466, 0.725805, 0.520027, 0.024736, 0.395166, 0.276382, -0.758967, 0.371791, -0.277016, -0.482217, 1.516854, 1.238215, 0.357917, 0.753775, -0.044133, 0.383709, 0.499183, 0.163549, -1.717057, -2.024710, -0.611703, 1.943177, 0.701638, 0.592317, -0.267938, 0.321441, -0.256890, 1.579996, 0.203618, 1.526209, 0.179004, -0.660084, -0.069916, -0.014608, 1.471248, -0.897747, -0.235631, 0.112548, -0.346779, -0.728746, 0.624949, -1.149650, 0.757305, -0.896338, 2.843814, -1.371808, -0.448464, 0.954617, -0.962784, -0.036211, 0.610669, -0.092109, 1.645823, -1.188056, -2.315273, -0.528662, -0.717103, -1.277390, 1.336446, -0.147532, 0.654006, 0.463884, -0.552874, 1.955063, -1.285863, 0.992872, -1.916208, -2.395226, -0.408732, -1.977409, 0.917685, 0.383861, -0.142092, -1.318711, 0.124619, 1.056977, 0.413814, 0.336144, 1.533921, 0.223313, 1.060642, -1.283249, -0.631323, -0.175790, 0.651299, -0.630352, -0.704957, 1.356616, -0.880676, -0.030906, 0.542885, 0.846886, 0.586080, 0.093319, -0.157209, 1.112800, 1.229595, 0.005031, -0.391875, 0.533880, -1.191926, -0.791639, 1.051172, 1.205914, 0.558227, 1.948544, 2.067349, 2.409107, 0.266498, 0.328651, 0.865006, 1.353431, -1.515322, -2.389339, 0.145200, -0.671403, -1.114850, -0.061807, -1.386645, 0.393648, -1.953225, -0.282228, -1.394624, -0.523367, 0.237623, -0.684228, -1.456224, -1.633033, 1.499257, -0.893801, -0.464386, -0.877572, -0.206085, -0.447041, 0.758949, 1.617575, 0.753378, -0.250988, 1.006753, -1.099142, 0.881237, -1.572938, -1.160119, 0.644720, 0.225622, -1.069600, -2.109837, -1.390318, -1.611650, -0.714760, 1.134972, 0.643940, 1.706788, 0.115340, -0.530326, -1.246605, 0.487469, -0.132878, 0.409373, -0.859713, 0.799765, -0.413604, 1.000953, 0.798361, -1.259677, 0.428005, -0.923447, 0.631390, -0.500858, 0.557168, -0.275840, 0.438324, -1.572771, 0.445342, 1.004666, -1.209943, -0.357591, 0.068273, 2.305620, 0.597706, -1.054057, -1.814628, -0.788999, -0.588640, 0.206967, -0.103477, 1.809712, 1.267682, -1.026873, 2.027195, -1.285425, -0.972916, 1.352830, -0.526871, 0.544960, 0.541204, 1.308058, 0.834290, -1.286143, -0.154372, 1.407742, -0.246564, 0.830907, -0.967135, 1.820153, -0.549792, -1.070620, -0.534266, -0.919116, -0.185253, 0.731539, 0.212810, -0.332154, -0.510626, -1.454790, -0.080025, -0.351333, 0.157283, -0.549266, -1.615344, 1.730455, -0.649297, 0.190744, -0.831886, -0.936667, 0.015948, 0.720576, -1.876699, -0.682965, -0.453794, -1.414689, 1.736050, 0.008561, 0.312144, 1.296210, -1.280944, -0.704392, 0.290724, 1.565238, -0.202578, 0.191801, -0.968651, 1.514850, -1.114058, -1.096789, -0.820385, 0.845176, 0.413650, 1.021525, 1.222043, 0.154778, 0.454504, 1.096233, 1.266801, 1.635947, -0.113073, 1.154464, -1.577966, -0.794192, 0.220213, 0.399331, -1.302455, -0.416022, -1.026614, -0.097876, 0.951085, -0.519640, 1.567650, -0.060696, 0.663175, -0.077574, -0.192225, -0.149003, -1.062935, -1.037653, 0.408102, 0.479170, 1.558305, 0.678527, -0.581692, 2.430110, 1.163041, -0.680079, 0.396466, -0.705365, 1.590397, -0.740765, 0.867322, 0.040142, -1.303725, -0.684827, 0.131530, -1.807243, 1.528909, -1.010846, 1.640436, -0.908713, 0.787411, 0.231352, -0.745874, 0.160292, -0.279531, 0.961012, -0.797647, 1.366180, -0.901171, -1.337296, -1.238572, -0.402956, 0.460458, 0.380735, -0.154166, 2.192153, 2.028020, 0.337790, -0.527919, 0.713404, 1.199757, -0.055861, 0.851719, 1.414778, -1.763312, -0.001033, -0.542141, 1.378675, 2.086765, 2.305128, 0.547403, -0.851679, -0.333418, 0.070833, 0.965707, 1.560105, 1.510050, 2.643993, -0.706800, 1.003849, 1.358109, 0.846680, 0.901954, 0.112089, -0.836486, -0.064886, 0.430954, 0.607838, 0.375196, 0.289134, 0.330539, -0.097550, 1.617773, 0.903045, 0.742820, 1.826865, 0.926677, -0.718733, -1.047407, -0.886977, 0.369895, -0.606141, -0.572282, -0.479812, -0.218184, -1.774815, -0.805873, -0.730471, 0.823628, 1.142655, -1.514761, 1.791532, -0.234077, 0.955067, -1.358827, 0.616646, -1.283117, 0.877659, -1.940242, -1.246764, 0.640437, 1.130462, 1.001348, -1.680912, 0.409822, -1.666909, -0.030885, -0.516816, -1.856195, 1.018544, -1.724585, 0.522068, 0.700098, -1.143859, 0.572873, -0.961349, 0.820750, -0.010485, -0.116311, 0.203981, 0.590563, -1.003838, -0.787620, 0.344983, 1.350685, 1.458603, 0.420328, -0.033227, 1.323458, -1.059601, -1.720771, 0.709019, 0.913253, -0.470768, 1.742693, -1.082031, -1.177111, -1.998001, -0.563768, 0.971397, 0.067253, -0.101241, -0.186177, -0.508653, 1.322866, -0.055172, 0.618867, -0.008830, 0.975024, 0.869386, 1.234461, -1.351817, -0.236427, -1.868688, 0.786276, -0.265823, -1.178222, -0.578450, 0.256279, 1.031529, -2.289628, 0.553063, -0.661698, -0.990158, 0.396663, -1.957404, 0.999205, -0.109836, -0.985665, 0.083380, -0.534359, 0.222067, 1.084438, -0.862686, 1.312481, 0.760783, -0.581048, 0.268677, -1.480391, -0.107075, -1.184436, -0.048022, -0.344521, 1.393321, 0.044444, -0.383481, 1.147731, 0.360637, 1.734339, 1.802311, -0.726881, 0.249944, -0.373506, 0.898014, -0.964003, 0.876672, 0.426642, -0.194719, 0.564961, -0.697050, -0.312073, 1.120262, 0.044470, 0.470137, -0.122352, -0.604833, -0.349258, 0.833419, 0.169384, 1.268513, 1.729769, -0.236001, -0.233723, -0.580897, -1.161469, -0.365901, 0.312669, 0.887875, 1.546978, -0.890675, 0.862030, -1.636754, -1.424074, 1.165398, -0.158082, 0.288339, -0.451497, 0.285630, -0.240152, 1.615812, 0.680265, 1.595659, -0.756025, -1.018565, 2.034748, -0.485651, 0.994230, -0.604563, 1.064825, 1.926302, 0.336396, 1.088176, 1.708239, 0.502367, 0.116351, 0.103977, 0.588522, 0.063292, 1.254127, 0.304198, 1.096845, 2.508130, 1.049502, -1.006886, -1.027467, 0.397627, -0.794067, 0.662102, 0.864420, -0.024122, 0.505713, -1.151320, 0.891628, 0.202978, 1.682321, 0.795602, 0.633982, -1.115798, -1.693797, 0.127936, -0.077949, 3.344180, 0.242363, 1.002810, -0.503455, -0.550001, -0.147092, 1.216906, -0.316945, -0.260383, -1.388100, -1.169067, -1.270534, -0.625484, 1.227430, 0.935123, 0.037409, 0.372030, -0.154392, -0.684856, -0.208470, -0.657843, 0.125208, -0.582134, 0.382061, 0.860177, 0.611998, -0.317250, 1.057534, -0.342993, 1.550719, -0.594171, 0.035464, -0.591165, 1.047574, 0.960892, -1.699322, 1.535361, -0.667340, -0.900123, 0.201211, 0.033034, 0.346498, -1.110052, 0.407570, -0.038033, 0.250053, -2.031626, 0.315210, 0.641723, 0.562864, -0.090892, -1.308061, 1.533030, 1.242754, 0.098800, -0.646152, -0.523367, 1.535242, 1.043365, -0.850727, -0.521824, -1.078189, 0.648358, -1.514060, 0.725995, 0.384459, -1.331182, -0.760957, 1.403442, 0.563748, -1.040899, -0.193141, -1.567497, -1.193108, 0.190353, 0.552560, -1.074500, 0.653699, 0.819858, 1.906865, -0.750278, 0.314379, -0.029354, 0.286899, -0.536086, 0.059802, 0.380686, 1.620046, -0.571762, 1.314672, -1.293426, 0.307908, 0.419348, 0.371080, -0.928048, 0.122027, -2.604293, 1.059884, 0.027451, 0.903947, -0.272890, 1.052297, -0.386181, -0.983350, -1.723490, -1.499208, -0.251930, -1.946835, -0.064450, -0.491760, 1.573286, 0.032768, 0.013694, -1.061894, -0.974271, -1.146702, -0.716149, -0.752461, 0.653892, 1.547198, 0.103832, 0.698579, 0.671568, 0.478396, 1.627655, 0.271561, 1.359593, -0.324283, 1.696703, -0.258062, -0.728895, 0.863040, -0.091661, -3.772455, 0.230892, 0.292104, 2.534233, -0.102419, -0.913761, 0.931531, -0.155057, 1.769632, -0.535695, 0.382460, 0.152282, -0.467083, -0.668859, 0.105002, -0.660106, 1.467721, -2.155798, -1.704149, 0.336524, 0.662871, -0.103230, 0.879865, 0.516020, 0.295518, -0.013646, 1.164235, -1.102249, -0.198510, -0.366394, -0.628972, 1.193508, -0.151948, -0.271104, -0.145160, 1.066895, -0.149989, -1.064653, -0.525015, 0.144321, -2.076643, 1.067538, 0.170173, -0.818574, -1.257330, -0.471032, -0.086021, -1.968988, -0.577781, 2.044721, 0.206383, 0.607284, 1.592395, -0.679272, 2.263664, -2.147050, 1.049730, -0.600864, -1.215987, -0.982422, -1.701561, 0.923156, 0.597927, 0.614331, 1.865459, -1.263711, -0.680304, -0.845397, 0.711188, -1.246963, -0.683299, -1.446251, 0.976431, 0.345499, 0.951938, -1.102222, -1.069594, 0.055713, -0.192610, 2.048524, 0.161287, -0.153846, 0.644674, 0.279740, 0.610724, -0.395827, -1.502689, 1.101688, 1.885468, -0.833984, -1.900289, 0.050612, -1.994453, -0.851452, -0.404429, -0.258913, -0.406011, -0.073366, -0.044755, -1.064263, 0.507616, 0.948567, 1.255216, -0.455703, 1.300927, 0.413346, -0.719824, 1.005476, -0.324980, -0.180993, -0.995937, 0.297535, -1.116001, -0.872563, -0.451288, -0.347697, 1.236664, -1.293019, -1.524871, 0.372686, 0.408280, 0.442732, 0.212313, 0.551812, -0.306874, 0.456919, 0.395687, -0.775057, 0.045567, 1.546288, 0.759643, 2.396427, -0.557435, -1.166623, 0.799720, 0.351509, 1.172748, -1.392950, 0.735341, 1.069346, 0.229549, -0.953077, 1.005276, 0.663233, 0.132659, -0.214504, -2.755625, 0.994023, -0.486711, -0.309840, -0.861233, 1.559172, 0.136010, 0.334843, 1.440723, -0.000989, 1.111148, 0.120530, -0.331084, -0.365218, -0.824321, -0.869514, -0.083013, -1.126565, 0.672072, -0.459549, -0.767582, 1.208314, -0.446348, 1.161726, -1.721873, -0.679274, 0.028978, 1.341399, -1.245065, 0.317287, 0.321357, 0.079317, -0.716698, 1.170179, 0.237163, 0.675552, -0.166115, 0.407111, 0.399885, -0.968576, 0.681371, 0.598661, -1.752539, -0.173853, -0.020455, -0.382180, -1.068781, -1.096903, -0.225546, -1.855226, -0.748854, -0.070013, 1.912014, 0.588166, 0.074576, 0.592623, -0.314434, -1.202972, 0.241658, 0.100086, -1.498520, -0.707393, -0.846801, -0.742180, 0.590103, -0.524420, 0.919087, -0.822203, -1.158576, -0.899081, 0.648302, -0.917771, 0.299502, -0.398934, -0.573695, 0.978786, 0.304536, 0.903239, 0.655523, -1.492181, 0.154611, -0.171831, 0.740646, -0.143299, -0.483662, 1.385643, -1.079088, 0.177135, -1.194415, 0.830433, -1.193854, 1.845001, -0.396713, 0.032579, 0.471722, -1.786436, 0.890630, 1.617960, 1.248826, 1.158249, -0.032984, -0.356479, -0.821236, 1.848518, 0.505010, 0.113255, -0.600625, -1.074236, 0.526376, 0.223529, -0.064476, -0.152476, -1.299967, 0.121514, 0.633766, -1.049633, -0.465552, -1.145384, 0.276140, 0.259913, -0.046988, -0.515279, -0.310216, -0.142159, -1.217004, -0.804346, 0.823779, 0.673845, 1.646384, 0.531953, -1.010857, 0.896076, -1.067919, 1.282693, 0.461994, -1.065891, -1.117791, 0.369392, -0.782354, -0.158739, 1.103918, -0.254131, 1.109031, -1.705459, -1.135567, 1.165624, -2.075440, -0.058033, 1.362951, -0.755137, 0.971397, -0.016074, 1.099171, -0.710694, 0.461655, 1.444956, -0.747823, -2.926803, 0.770790, -0.063315, -0.539705, -1.823800, 0.689401, 0.735259, 0.319308, 1.269656, -0.682643, -1.140455, 0.623030, -0.749413, -0.874429, 0.118068, 0.048593, -0.680377, -0.645648, -1.434522, -0.360171, -1.977347, -1.589783, -0.201440, 0.626622, 0.223287, -1.358728, -0.351137, 0.609879, 0.723918, 0.848012, -1.229136, 0.509654, -0.234734, 1.237493, 1.174296, 1.377581, -0.630168, 0.851766, -0.958202, 0.514781, -0.729680, 0.817819, -1.662856, -0.595757, 0.462144, 0.613390, 1.107780, -0.658617, 0.498097, 0.549595, 1.972459, -1.004603, -1.881727, -0.726333, 0.791114, -0.202812, 0.055109, 0.761539, 1.179312, -0.531588, -0.748678, 1.684076, 1.143644, 0.161425, -0.932355, -0.394319, -0.289218, 1.400532, -1.612496, 0.241063, -0.201612, 0.827243, -0.108612, -0.114052, 1.354226, 1.432404, -1.608047, 0.473381, 1.027832, -0.709460, 0.365425, 0.070829, -0.665322, -1.205278, 1.123336, -0.735939, 0.226728, 1.492900, -0.933165, -2.980941, -0.732041, 0.192348, 2.012847, 0.270914, -0.280728, -1.110859, -0.704557, -1.215169, -0.044518, -0.222197, -0.713530, 0.023918, -0.027181, 0.708304, -0.549459, 0.492234, -0.338531, -2.626127, -0.720413, -2.854406, 0.786457, -1.835711, 1.135623, -1.766952, 1.192702, -0.183353, -0.697780, -0.404982, -0.209856, 0.747576, -0.179077, -0.826658, 0.211499, -0.949399, -1.093148, 0.763003, 0.368006, 0.616929, 1.799301, -0.248912, 0.815946, -2.082269, -0.233851, 0.480418, 0.433150, 1.435929, 0.674256, -0.821936, -1.744937, 1.349838, -1.143740, -0.042019, -1.068779, -0.036604, -0.826578, -1.269788, -0.163324, 0.980576, 0.145160, -0.168131, -0.299735, -1.432980, 2.077291, -0.623178, -0.946511, 0.013062, -1.109483, 0.853656, -2.031153, -0.035052, 1.027674, -1.615746, 3.277532, -1.530270, 1.090109, -0.919569, 0.758519, 2.209165, 0.194935, 0.533125, 0.905261, -0.647402, 0.093282, -1.119283, 1.824330, -0.971285, -0.928625, -0.855520, -0.140929, 0.151129, 0.639285, 0.727474, 0.934177, 0.163255, -0.077864, 0.140581, -0.190447, 0.106935, 2.394971, 1.526551, -0.111116, -0.327693, 0.531850, -0.906037, 0.309561, -0.716739, 0.578917, 0.355348, -2.203720, 0.195933, 0.660357, -1.340626, 0.395982, 0.019702, -0.258033, 1.631359, 0.232673, 1.084207, -0.524542, -2.116215, 1.392312, -0.102300, 0.781665, 1.136476, -0.213952, 0.728676, 0.621558, -0.023629, -2.278256, 2.337897, -0.810747, 1.760615, -0.853349, -0.594865, -1.097098, -0.030849, 1.177287, -0.568098, -1.555266, -0.547187, -0.466962, -0.304102, -1.745990, 0.457723, -2.220311, -0.004086, -0.285437, 1.551086, -0.453740, -1.330529, 2.456252, 0.326602, 0.895571, 0.666339, -0.732530, -2.124988, 0.915875, 1.982891, 0.257027, -0.239658, -0.522056, 1.463049, 0.467841, -0.402214, 0.055518, -0.324530, 1.333185, -0.318277, 0.146713, 1.087032, -0.330806, 0.764165, -0.577693, 0.693955, -0.448005, 0.900752, -0.427641, -0.877528, 0.264105, 0.729760, -0.714564, -1.728755, -1.856451, -0.684253, 0.446021, 1.480096, 0.986339, -1.027836, 0.502443, 0.835218, 1.092301, -0.705589, 1.796223, 1.050501, 0.100831, -0.395559, -1.775399, 0.691389, -0.214155, 0.736650, -0.632579, -0.085798, 0.167135, -0.374284, 0.087788, -1.962084, 1.509764, -0.910973, 0.496838, -0.505171, 0.626436, 0.276608, 0.033155, 0.548369, -0.355129, 0.724806, -0.938911, 0.730872, -0.139884, -0.352924, 1.209760, -2.784087, 1.582661, -1.541018, 0.120211, -0.319449, 0.290768, -0.453909, -0.719737, -1.028474, -1.322815, 1.617754, 1.243056, 1.668473, 0.719025, -0.790461, 0.213352, -1.156175, -0.240148, -1.699316, -0.465595, -2.036089, 2.570208, 0.524211, -2.019296, 0.675555, 0.294202, 0.627027, 0.029701, 0.209171, 2.119109, -0.837285, -1.555292, -1.214675, -0.778165, -0.730934, -0.220054, -0.572724, -1.244467, 0.899617, -1.774891, -0.501535, 1.232534, 0.249357, 0.724067, 0.299136, 1.117942, 1.226046, 0.409235, -0.231697, -0.592938, 0.226446, -1.561394, 0.228419, 1.810575, -0.327771, 0.819889, 0.158609, 0.342542, 1.094945, 0.343868, -0.858801, -0.777628, -0.887488, -0.096936, -0.793064, -0.305448, -0.716926, -0.696180, -0.129663, 0.246629, -1.211957, -0.055691, -1.139108, -0.274116, -0.996722, 0.128087, -0.160157, -0.741477, 0.078587, -0.221049, -0.480052, -1.808400, -1.180372, -1.117711, -0.595097, 0.741232, 0.311395, 0.490400, -0.083445, 0.234577, -0.503631, 0.461917, 0.099144, 1.048437, 0.564109, 1.520398, 0.015736, -0.709918, -1.858296, 0.443715, -1.230118, 1.172389, 1.223183, -1.077773, 1.593823, -1.943502, 1.225823, 0.026566, -0.199898, -0.059304, 3.115885, -0.439566, -1.177517, -0.211195, 0.608833, -0.922508, 0.283197, 1.771180, -0.554386, 0.073628, 1.094411, 1.877895, 1.245303, -0.636822, -1.386112, 1.222266, -0.743528, -0.318297, -0.295041, 1.103942, -1.514988, 0.791654, 1.226119, 0.879487, -0.461865, 1.663185, 0.104435, -0.101085, -0.766770}, + { 0.689951, 0.097325, -0.842049, -0.408984, 0.681186, 0.431712, -0.574087, 0.153478, 1.313640, -0.851003, -0.033713, 0.634940, 0.363657, 0.784135, 0.926034, -1.200096, 0.831650, 0.371080, -1.426944, 1.458924, -0.105939, -0.756442, -2.004988, 0.770335, 1.108040, -2.033500, 0.312406, -0.534367, -0.031998, 0.559736, -0.961870, 0.932116, 0.687371, -0.400492, 0.507023, -0.341746, 0.965531, -0.048065, 0.375511, 1.402407, 1.079850, 0.406902, 1.444163, -0.033590, 0.275076, 0.263476, 0.054831, -0.794711, -1.773072, 0.029096, -0.901910, -1.457686, 1.229610, 0.042231, 1.098095, 0.186009, 1.943123, -1.130041, 0.269797, 0.755049, 0.417993, 0.333036, -0.329134, -0.693672, 0.511281, 0.268551, -1.040382, -1.149143, 0.502747, 0.067995, -1.342633, 0.436317, -0.314542, 0.488527, 0.920689, -2.299440, -1.353595, 0.015131, -0.671603, -0.018836, -1.529278, 1.005406, 1.503572, -1.575159, 0.413875, -0.287277, 2.131307, 0.870388, -1.705459, -1.411482, 1.323493, 0.869190, 1.635208, 0.637823, 0.630954, 0.578550, -1.111362, 1.848269, -0.947274, 1.111124, 1.254176, 0.210646, -0.164543, -0.523212, 0.671140, -1.610833, -1.249851, 0.533944, 0.196678, -0.734848, -0.156679, -1.202376, 1.310191, 1.402138, -1.031699, 0.438359, -0.126641, -1.756959, -0.898102, 0.084334, -0.126336, 1.198977, -1.002284, 0.889119, 0.139882, 1.493109, 0.537658, -0.732972, 2.012621, -0.502716, -1.080049, 0.457279, 0.674679, 0.076529, -0.745520, -0.158427, 0.375695, -0.601720, 2.490990, -0.445907, 1.225331, -0.961198, -1.169462, 0.154979, -1.580261, -0.734533, 0.294848, 0.850115, 0.247139, -0.294829, -2.265285, -1.089797, -0.588404, 0.475075, 0.647060, 0.169229, 0.249568, -0.208935, -1.153369, -0.845720, -0.371088, -0.662505, 0.123438, -1.839646, 0.699477, -1.214284, -1.246900, 2.034276, -1.397566, 1.146364, -0.028732, 0.512021, -0.888734, -0.122492, -1.622697, -0.834302, -1.547315, 1.126431, -1.158501, -1.691902, -0.650445, -1.907658, -0.027434, 1.058581, -1.730337, 1.705516, -0.687672, -2.149556, 1.591849, -0.293423, 1.101824, -0.625354, -0.186441, -1.600639, 0.429803, 0.868616, -1.646954, 1.413395, 1.753749, 1.716950, 0.101521, 0.937510, 0.457540, 0.202797, 2.227267, 0.334415, -1.323006, 1.549792, 0.196139, -1.021303, -2.404240, -0.785139, -1.401868, -1.681349, -0.091364, 0.031759, -2.506438, 1.650650, 0.292867, -1.181819, -1.076227, -1.223304, 0.246239, 0.646191, -1.189787, 0.294281, 1.147983, 0.413658, -0.235058, 0.414948, -0.837366, 1.328595, 0.388871, 0.532362, -0.004196, -0.971951, 0.406416, 0.208283, -0.517296, -1.595229, 1.520931, 2.184674, 0.283389, -1.169685, 0.856360, 0.690161, 1.157026, -1.294999, 2.405818, -1.000748, 0.547409, -0.779746, 0.297089, -0.357001, -0.585580, 0.549026, 0.171888, 0.298578, -0.350796, 0.310001, -0.497194, 0.098578, -1.898388, 0.975992, -2.216721, 0.995036, 0.364646, -0.974152, -0.316486, -0.955412, -1.513883, -1.036198, 0.313992, -0.639762, 0.794014, -0.212252, -0.767540, 0.520552, -0.982692, -0.920780, -0.048713, 1.626255, 0.282115, -0.777698, -0.835181, -0.418324, -1.680892, -0.934136, -1.537712, -0.113042, -0.060567, 2.078120, 0.544885, -0.647449, 0.950259, -0.272968, -0.078856, -0.524596, 0.843698, -0.075209, 1.782109, 0.564126, 2.029315, 0.111872, 0.599726, 1.980710, 0.662641, 0.566985, -0.355790, 0.326389, 1.348127, 0.985709, 0.230372, -0.374585, 0.889464, 1.538096, -0.545130, -0.357992, 1.251312, 0.631189, 1.612237, -2.079338, 0.015839, -0.134100, 1.345410, 0.490089, -0.424754, 0.760101, -0.493129, -1.728163, -0.579848, 1.294129, -1.945330, -0.149489, 0.054411, -0.164451, 0.393074, -0.835098, 1.108992, 0.424708, 0.006197, 0.540134, 0.073163, -0.270356, -0.866458, -0.806532, 0.701126, -0.125671, 0.992588, 0.676596, 1.043440, -1.011311, 0.075780, 0.453422, 2.106599, -0.241383, -0.619887, 0.623556, -0.498441, 1.641868, -0.887002, 0.218399, -0.210046, 2.037644, 1.125943, -0.249855, 0.684336, -0.159822, -2.276832, -0.780667, -1.900090, 1.240956, 1.778817, 0.888939, -0.852585, -0.751947, -0.045643, -0.484234, 0.675671, 0.444654, -1.022348, -1.149806, -1.031918, -0.324696, 0.656732, -0.258560, 0.986993, -0.772448, -0.217280, 1.702929, -0.201151, 0.452720, -1.056508, 1.474309, 1.341681, -0.958542, 0.635343, -0.555497, 2.146910, 0.826012, -0.544909, 1.457129, -2.649341, -0.169285, -1.786415, -0.786847, -1.254448, 1.459025, -0.254798, -0.366311, -0.742762, -2.138465, -1.182953, -0.184985, -3.140683, 0.375086, -0.189853, 0.684027, -0.744228, 0.826484, 0.455434, -1.718065, 1.518439, 1.249987, -0.523672, 0.211889, 0.684187, 0.355597, -0.027999, -1.737903, 0.849408, 0.461129, 1.120344, 0.424578, 0.528711, -0.055951, 0.291723, -0.779995, 0.151308, -0.634254, -1.199173, 0.108834, 0.550735, 0.381578, 1.151941, 2.402412, -0.177042, -0.228641, -0.339709, 0.766508, 0.767482, 1.088771, 0.052341, -0.169850, 0.856926, 0.346416, 0.623490, 0.867838, -1.582609, 1.580532, 1.158016, 1.064035, 0.987111, -0.544885, 1.192940, 0.394496, -0.212381, 0.191806, -0.255303, 0.491913, 0.494330, 0.767965, 0.836769, -0.740160, 0.041891, -1.748031, 0.422618, -1.368583, 0.201665, 1.486212, -0.336275, -0.562319, 1.679778, -1.023449, 1.101054, 0.108002, 0.365185, -0.200283, -0.775822, 0.247592, -0.800007, -1.416423, -0.280428, -0.196346, -0.617912, 0.740562, -0.076115, 0.662654, -0.968496, 1.273145, 0.082485, 2.339176, 0.672833, -0.376356, -0.170802, 1.277735, -2.182541, -1.006511, -0.561782, 0.439777, 0.106182, -2.161812, -0.548316, -0.208754, -0.135248, -1.427445, 0.149820, -1.952311, 0.522910, 1.175716, -0.470227, 0.620100, -1.549889, 0.354314, 0.733683, 0.121963, 0.961040, 0.121256, 0.216021, 1.257174, -0.037237, -1.156936, 0.251176, 0.395304, -1.017317, -0.744162, -1.268397, 0.614057, -0.699220, 0.012200, 1.765265, 1.458704, -1.509709, 0.406552, 0.716127, 0.851425, -1.653791, 0.699570, 1.925062, -1.628428, 1.492858, 0.441321, 0.219389, 0.091819, 0.612288, -0.361136, 0.142359, -0.515524, -1.096450, -0.260036, 0.466881, -0.531250, 2.186645, 0.087140, -0.575417, -0.879779, -0.794964, 0.693024, -0.075257, -1.420365, 0.218337, 0.059935, -1.002202, 1.266697, -0.341917, 0.187407, -0.205643, 1.535496, 0.018877, -0.603322, -1.064602, -0.515364, 0.793993, 0.322875, 1.075979, 2.021308, 0.864498, 0.572107, 0.838082, 1.576862, 0.979788, 1.207642, -0.382269, -1.507238, 1.256837, -0.535220, 1.090951, -0.761628, 0.814542, 1.118759, 0.785260, -1.302554, -1.003707, 1.032231, -1.104005, 0.563237, 0.801158, 0.402821, 0.572866, -1.589107, -1.475629, 1.309771, -1.013358, -0.359048, -1.917231, 1.301166, 0.304311, 0.134104, 0.693582, 0.226595, -1.053878, 0.374178, -1.396904, 1.537522, -0.722396, 1.115089, 0.192487, 0.591805, 0.297311, 0.495835, -0.059763, 0.710920, 0.688616, -1.242882, 1.064096, 1.164572, -0.381910, 0.333554, -0.165045, 1.385929, 0.118782, 2.058575, 0.752836, 1.546412, 0.421473, 0.388646, 1.197587, -1.006244, 0.061473, -0.052546, 1.931221, -1.155875, 1.083126, -0.481900, -0.173046, 0.266837, 0.538307, 1.738582, 0.138797, 0.302340, -0.208745, 1.494761, 1.121132, 0.676848, 0.799758, 0.091338, -0.121311, 1.291842, 1.227370, 0.100644, 1.029869, -0.356102, -2.536334, 0.017960, 0.747882, 0.820157, 1.579158, -0.239047, 0.625578, 0.287629, 1.486529, -0.897932, 1.621744, 1.505213, -2.509670, 1.147579, -0.531808, -0.303608, -0.027603, -0.229468, 0.769872, 0.127854, -0.570592, 0.020179, 0.220692, -1.323555, -0.059471, 0.879047, -0.278977, -0.780658, 2.081504, -0.644623, 0.702622, 2.190915, 1.435745, 0.251836, -0.189986, -0.513796, -0.645874, -1.168766, -0.004392, -0.363151, 0.763016, -1.795154, -0.731690, -0.755075, 2.421360, 0.829916, -0.135463, -0.607727, -1.120921, 0.315364, -1.230479, 1.653468, 0.319027, 0.204565, 1.467268, 0.456773, -0.851812, 0.213705, 1.676578, -0.285764, 0.301515, 1.332813, 0.600311, -0.476211, -0.137864, -0.823748, -2.163814, 0.450754, -0.239860, 0.503297, -1.392177, -0.549346, -0.320510, -1.252463, -1.234705, 0.296886, 0.001639, 0.974450, 0.811300, -1.426436, -0.296600, -1.480214, -1.838463, 1.361903, 0.378138, 0.683977, -1.236287, 0.972597, 0.883192, -0.817253, 0.349986, 2.450875, -2.369201, -2.049398, -0.804404, -0.242203, 0.236606, 1.158959, -0.073065, 1.111717, -0.238728, 1.079087, 0.028575, 0.594414, 0.649470, 0.648669, 0.684385, 0.067773, 0.427567, -0.716782, 1.404021, -0.115824, -1.273082, -2.014765, 1.929856, -0.255229, 0.759660, 0.263310, -1.848238, 1.487085, -0.567849, 0.780816, -0.866246, -0.295951, 1.953309, -0.274259, -1.010306, 1.530594, 0.620051, -0.096109, -0.168808, 0.150951, -0.627841, -0.589723, -0.356848, -2.310044, 1.103195, 2.360602, 0.062967, 2.556126, -1.037190, -1.382720, 0.606276, 1.624485, 0.484098, 1.379322, -2.310276, -0.236863, 0.602291, 1.895646, -1.477609, 1.495901, 0.504772, -0.444953, 0.048502, 1.356260, 0.725614, 1.486398, -1.264815, -0.473068, -0.371919, -0.589942, 0.128515, -1.200270, 0.517064, 0.676906, -0.657623, 0.820499, -0.711324, 0.635742, -0.639673, 1.414845, 0.047139, -0.017878, -1.020773, -2.526667, 1.287521, 0.717717, 0.959860, -1.130456, 0.946305, 0.704199, -0.281039, 0.137291, -1.262645, -2.493693, -0.062852, -0.705149, -1.149192, 1.416286, -0.480593, -1.014492, -1.023887, 0.822643, 0.644911, -0.211240, -0.926601, 0.774906, -0.123407, 0.141567, -0.892026, -0.396529, -0.881941, -0.203568, 0.110894, 3.105673, 0.003495, -0.922527, 0.633054, -0.586052, 0.179168, -0.146498, 0.591064, 0.480728, -0.457135, 0.440798, -0.411088, -0.523075, -0.934501, 1.007854, -0.212754, -0.204960, -0.657488, 1.611085, 0.705908, 1.407740, 1.056035, -0.865148, -0.143939, 0.106342, 0.055493, -0.383948, 0.984916, -0.150570, 0.470642, 0.691638, -2.718007, -1.176383, -0.891762, -0.525282, 1.187093, 0.429278, 1.726022, 0.012820, -0.625768, -1.200608, 1.957109, -0.941112, 1.144450, -1.827447, -1.078862, 2.438508, -0.642301, 0.007786, 0.530299, 1.263526, 0.418815, 0.948315, -0.227298, -0.793847, 0.691715, 0.041646, 0.681119, 1.270043, -1.327954, -0.484842, 1.424195, -1.109722, -0.159692, 0.874995, 0.130359, -0.935802, 0.028840, 0.575948, -0.032305, 0.568211, 0.742064, -1.990100, 0.840136, -1.255754, -1.452344, -0.147453, 0.506626, 0.041868, 1.424585, -0.722389, 0.041051, -0.666766, -1.011511, 1.511575, -0.787040, -0.790681, -0.956542, 0.626786, 1.726152, 0.510006, 0.923796, 1.032875, 0.513635, -2.553805, 0.364535, 1.132312, -1.804569, 0.399767, 0.054799, -1.521679, -0.401453, 0.044042, -1.831755, 0.155594, -0.748367, 0.001518, 1.972288, -0.053589, -0.501293, -1.346921, -0.129338, -0.562946, -0.918586, 0.702406, 1.186264, -1.062100, 0.809271, -0.918817, 0.202526, 0.702233, -0.536687, -0.584059, -0.398902, 0.765598, -0.658668, -0.306280, 1.355754, -0.529804, -0.341567, 0.307767, 0.677244, 0.613362, -0.833459, -0.740232, 0.538345, -0.613070, -0.978365, -0.297489, 0.180805, -0.181251, -1.378169, 0.055562, -0.160816, 1.337232, -0.687753, -2.501628, 0.493473, -1.618955, 1.936835, 0.967083, -0.466566, 0.766623, 0.662131, 1.018864, 1.967128, -0.460887, 1.665411, 1.033160, -0.145536, 1.289797, -1.046282, -1.369588, 1.851337, 0.128872, -0.188017, -0.525318, 0.055145, 1.856867, 0.166017, -0.706766, -2.313396, -0.946809, -0.162566, 0.148104, -1.655266, -0.480423, -0.186119, -1.706330, 2.677828, 0.671232, 0.676647, -0.270442, 0.061081, -0.224509, 0.528219, 1.092839, 1.327743, 0.451997, -0.569849, 0.254065, -0.221835, -0.159471, 0.534886, -1.036622, -0.934938, -0.403508, 0.947760, -2.413657, -0.529632, -3.518771, -0.614162, 0.796558, -0.012038, 0.319317, -0.663647, 0.967605, -0.143816, 0.319052, 0.084799, -0.587701, 1.410346, -0.264971, -2.232334, 0.135336, 0.963922, -0.809729, 1.572595, -0.407254, -0.122816, -0.245609, 0.859615, -0.629885, -0.893999, -0.615149, -1.866086, -0.211278, 1.048110, -0.899428, 0.653544, 0.223033, 1.338657, 0.975614, 0.848968, -0.903068, -0.895025, -1.147771, 0.979434, 1.089331, -0.134982, -1.813801, -0.203818, -0.431249, -1.030787, 0.363526, 0.336111, 1.125790, 0.511567, -2.156148, -0.022344, 0.511465, -2.458836, -0.561654, 0.685231, 0.890424, 0.326576, -0.915420, -1.477009, 0.049069, -2.777364, -1.107728, 0.473764, -0.356226, -0.209892, -1.305071, 2.297559, 0.007586, -0.477850, -1.209193, 2.437358, 0.673404, -0.313004, -0.629245, -0.008791, -0.201551, -1.665222, -0.117304, -0.017763, 1.321082, -0.607701, 0.361099, -0.407215, -1.353533, -0.404353, -1.718252, -0.563913, 1.225477, -1.522315, -0.431783, -0.793643, 0.195019, -0.229563, 1.363223, -2.131078, -0.142930, -0.559743, 0.331740, 0.096874, 0.846838, 2.282031, -1.967080, -0.412563, -1.370682, 0.426974, -0.164373, -0.172370, 0.173863, 0.659006, -0.106026, -0.780781, -1.142493, -0.780159, -1.046248, 2.660763, 0.198689, -1.165937, 1.556963, 0.136510, -0.482644, -0.249452, -0.828123, 0.898070, -0.600479, -0.054621, 0.882806, 0.324823, -1.185672, 1.566899, 0.165478, -0.279222, 0.024702, -0.115087, -0.302168, -1.511801, -0.315636, -0.066304, -0.946190, 0.938942, 1.837181, -0.422219, 0.057165, 0.549397, 1.205996, -0.957544, -1.536323, -0.483584, -1.170062, -0.926848, -0.430654, 1.581395, -0.518038, 0.935770, 1.254127, 0.178089, 0.203655, 0.261586, 0.062107, -2.089841, -0.714563, -0.605176, -1.277198, 0.902273, -0.002155, -0.692019, -0.391753, 0.925146, 0.634683, -0.370590, -0.620713, -1.964169, -0.143595, 0.657318, -0.526561, -0.833524, -0.217829, -1.072824, -0.220489, -1.422366, -0.308954, -0.148304, -0.280740, 0.802444, 0.829230, 0.519280, 0.922508, 0.306362, 0.697459, -1.468117, -0.012703, 0.212841, -0.377306, -2.176012, -1.094402, 2.020101, 1.120107, 0.918825, -0.167031, -0.647291, -0.759218, 0.344466, 0.786638, -0.241205, -0.355834, 0.069892, 0.606373, 0.697831, 1.725827, 1.032838, -1.722355, -0.671316, 0.999247, -0.962374, 1.379095, 1.612645, 1.459141, 1.556968, 1.585498, -3.151633, -0.114706, -0.185889, -0.728116, 2.369860, 0.712221, -0.246149, -0.442294, 0.745291, 0.615263, -0.671254, -0.630518, 1.009828, -0.709764, -1.163608, 0.481831, -1.160363, 2.209230, -0.365026, 0.420480, 0.350655, 0.476352, 2.650240, 0.475697, -0.125365, 0.018619, -1.398115, 0.303437, 1.336541, -0.423916, -0.783772, 0.544236, 0.244661, -1.407908, 1.927236, -0.119040, -0.044053, -0.156227, 0.618746, 0.658073, 0.896918, -1.494020, -0.645091, 0.070294, 0.104391, -0.529914, 1.384208, 1.843973, 1.561845, -0.370182, -0.195020, -1.277415, 0.299448, 0.620786, 0.577719, -1.003523, -1.381766, -0.258438, -0.257932, 0.434490, -0.320915, -0.705110, -0.811845, 0.405571, 1.544974, -0.619623, -0.527351, -0.147414, -1.136473, 0.285752, -0.259591, -1.401924, -0.217241, -0.008307, -1.197842, 0.365585, 0.029320, 0.280738, 0.755116, -0.949056, 1.016546, -0.782295, -0.173897, -1.507983, 0.700204, 1.636836, -1.015340, 1.655845, 0.756329, 0.937876, -0.421995, -1.837983, -1.179858, 1.532997, 1.784707, -0.295226, 0.620657, 0.392981, -0.374932, 0.551260, 1.432416, -0.978373, 0.646885, -0.180465, 1.124926, -1.300982, -0.623740, -1.019707, -0.045381, 1.889375, -0.473028, 0.640459, 0.662821, -1.809385, 0.163778, -0.617824, 0.042024, 0.086220, -0.474637, 0.803472, -0.416286, 0.296489, 0.824755, 0.624393, -0.311561, 1.394036, -1.291485, 0.225611, -2.085091, -0.481727, 1.666851, 0.807123, 1.517455, 1.078587, -0.310616, -0.414556, -0.323790, 0.676409, -0.633905, 1.680565, -1.117972, 1.486107, 0.345268, -0.431747, -0.352119, 1.991086, 0.542998, -0.555641, 0.986888, 0.363573, -0.269045, 0.518710, -0.017023, 0.156984, 2.848249, -0.870059, 0.971870, -0.095933, 1.733612, 1.204900, 1.162228, 1.587313, -0.957012, -0.584765, 1.356757, 1.539821, -0.329039, 1.113182, -0.349085, -0.414514, -0.156979, -0.792844, -0.911605, 0.066953, -1.407517, -1.014863, 1.556662, 0.606896, -3.144268, -1.199586, -0.251315, -0.828759, -1.633119, 1.911084, 0.459197, 0.483186, -0.715589, 0.238635, 1.184666, -2.090992, 0.799604, 0.390985, 1.881968, 1.116412, -0.993002, -0.093208, 0.837373, -0.048322, -2.225270, 0.566448, -1.836706, 0.044398, -0.379642, -0.268883, 0.382874, -0.358089, -0.993963, -0.473572, -0.068528, 0.301505, 0.549659, 0.042897, -0.911584, 1.309377, -1.215561, 0.646133, 0.232844, -1.036913, -0.045538, 1.467173, -1.858081, -0.595858, 0.998807, 0.226299, -3.177863, -0.510722, 0.552987, -0.761040, -0.864725, -1.621404, -0.300462, -0.901508, -2.554041, 1.624015, -0.526292, 1.161477, -0.821660, 0.759873, -1.390754, -0.058209, 0.330061, -0.559312, 1.406890, 1.227153, -0.792305, 0.073252, -1.438588, -0.342459, 2.938545, 0.542821, 0.001294, -1.261566, 0.028344, -1.068127, -1.072300, 0.112531, -0.199821, -0.210584, -1.354290, 0.702377, -0.130634, 2.363247, -0.666392, -1.546358, 0.032210, -0.809096, 0.170851, -0.406261, 0.384160, -0.562774, 0.129590, 1.274760, -0.482624, 0.424922, -1.824954, 0.680147, -0.398809, 0.936751, 0.785594, -0.940701, -0.410107, 0.953090, -1.661574, -1.745428, 0.120935, -0.388712, 1.169878, -0.816516, 0.748471, -0.021897, -0.522100, -0.820570, -0.063556, -1.127231, 0.514458, -0.449865, -0.635535, 0.522894, 2.497557, -0.250279, 0.487238, 0.228305, -0.585258, -0.336766, -0.232703, 0.115284, -0.337079, 1.522525, 0.737065, -0.444942, -1.397517, 0.768168, 0.055502, -1.169985, 1.449758, 0.753520, 0.924678, 0.918896, -0.299539, -0.900524, 0.592958, -0.518402, -2.105719, -0.878156, -1.889809, 0.661141, -0.848325, -2.232933, -0.553246, 2.054680, 1.349866, -0.076245, -0.319977, 0.007274, -0.149635, -0.877156, -0.463378, 0.992310, 0.427740, -1.385775, 0.577726, 1.186789, 1.481043, 1.057210, 0.202869, 0.383348, 0.699782, 0.123751, 1.495927, -0.071317, -0.955680, 0.396725, 1.279496, -0.625692, -1.375270, 0.433448, -0.088306, 0.214709, 1.825950, -0.963132, -1.618750, -0.089555, -0.385440, 0.651028, -0.142174, -0.003333, -1.358945, 2.038163, -1.844265, 1.127256, 1.312969, 0.005573, -1.026542, 1.435329, -0.864539, 0.458897, -0.596632, 0.004456, 1.714298, 1.571266, 0.355165, -0.492291, -0.359605, 0.956705, -0.219066, 0.838829, 1.262553, -0.893147, 2.071190, -0.819357, 0.144827, -1.180013, -2.675898, -1.801138, -0.271235, 0.091470, 1.578775, -1.810200, 2.211401, 0.341638, 2.131899, 0.226534, 0.574974, -0.134434, -0.901934, 0.802280, -0.630921, 0.385228, -0.528319, 0.623985, 0.226264, 0.045753, -0.609097, -0.266002, 0.923718, -1.537924, 0.443569, 0.326099, 1.380187, -2.034181, 0.129372, 0.575436, -1.013484, 0.018747, 0.574896, -1.858508, 0.240098, -1.518029, 2.389091, 0.300058, 0.487881, 0.651746, -0.861572, 0.237501, 0.961166, -0.477314, -0.634790, -0.073697, -0.983401, 0.798057, 0.441296, 1.441929, 1.120153, -0.003484, 0.646387, 0.164941, -1.334906, 1.703917, -0.677255, -2.028932, 0.115060, -2.429360, 0.158223, -1.164888, -0.553035, -2.236114, -0.369689, -1.362703, -1.044752, 1.059387, -0.765227, -1.785291, 2.649995, 0.544274, 0.272920, -1.149533, 1.052560, 1.285578, -0.623496, 0.632952, 0.918364, -1.832775, -0.173056, -0.934890, 0.611699, -0.289570, 0.472510, -2.247237, 0.401005, 0.832871, -0.532777, 1.305856, -1.178315, -0.445150, 0.185634, -1.907742, -0.237095, 0.907344, 1.133945, 0.400838, -0.118532, -1.553778, 0.708180, 0.034324, 0.185476, -0.035903, -0.362920, -0.124697, -0.215565, 0.918645, -1.223034, 0.649649, -0.413386, -1.055784, 1.002770, 0.347673, -1.149993, -0.591752, -0.047227, 1.150191, 0.680954, 0.754580, -0.362268, -0.046219, 1.320621, 0.358015, -0.425496, -0.948636, -0.515211, 0.488664, 2.220851, 0.152475, -0.322572, 1.507703, -2.554930, 1.702484, -1.232286, -1.689592, 0.452119, 0.114869, -0.806358, -0.966084, 0.665500, -0.064516, 0.283972, -0.591314, -0.984988, 0.035453, 0.807580, -0.241146, -0.003432, -0.669793, -1.684809, 0.931758, 0.339282, 0.001183, -0.548606, -0.242845, 2.112411, 0.613434, -0.868501, -0.630718, -0.985912, -0.040889, -0.559499, -0.549284, 0.262270, 1.482466, -0.779960, -1.958737, 0.679269, 1.513424, -0.230433, -1.309387, 0.440715, 0.022414, -0.457279, -1.279781, -1.294270, -1.067273, -0.328560, 1.370852, 0.280138, 0.122968, 0.083914, -0.603845, 0.383693, 0.272936, -1.075067, -0.216858, 0.460976, 1.051391, 0.145911, -0.483209, -1.644570, -0.477524, 0.450814, 0.014885, 0.377842, 2.794503, 1.442519, 0.365051, 0.009436, -0.497912, 0.943976, -0.007877, 1.186802, 0.567637, -1.015810, -1.237468, 0.872254, 0.268269, 2.360038, -0.118789, 1.185400, 0.078120, -1.349240, -0.452304, 1.073710, 0.239071, 0.118497, 0.422855, -0.637594, 0.825759, 0.816487, 0.752923, -0.237677, -0.321493, -0.588262, -0.801402, -0.193311, 0.753435, 0.951404, 0.445178, 0.449208, 0.068602, 0.068707, -1.773906, -1.241951, -0.567524, -0.412615, -1.361336, 1.106563, 0.524876, 0.735194, -0.041026, -1.473043, 0.456746, 0.169889, -0.343237, -0.823120, 1.665329, 0.011515, -2.577429, 0.441031, -2.770078, -0.341169, 0.571461, -0.499455, 0.275399, -0.655399, 0.824817, -1.152406, 0.884240, 0.724289, 1.334040, 1.169334, 0.732458, 0.959342, -0.114453, 1.314417, -0.515421, -0.894781, 0.193774, -1.490651, -0.561932, -1.739149, 0.257442, 0.160792, -1.424366, 1.032708, 0.587867, 0.434294, -0.357654, -0.575172, 1.507984, 2.734978, 0.082878, -0.624155, -0.326743, -0.852063, -0.232097, -0.248054, -0.700945, -0.077735, 1.555807, -1.781611, 0.649070, 0.404625, 0.686619, 0.945486, 0.801426, -0.170022, -0.568949, -0.464811, 1.400599, 0.950386, -0.339802, 1.250202, -0.386284, 0.520567, -0.032774, 0.587078, 1.241796, -0.004177, 2.710072, 1.444975, -0.206976, 1.840633, 0.363532, -1.494168, -0.030833, -0.282444, -0.601110, -0.776506, 1.584413, -1.534149, 0.204492, -0.344900, 0.837779, -0.308939, 0.566983, -0.664053, 0.270641, -0.465199, 0.337096, -0.272767, 0.746510, 0.444334, -0.691783, 0.749312, -0.069301, -0.798368, -2.546450, -0.363543, -0.163682, 0.264635, -0.279781, -0.663371, -1.244567, 3.110087, -0.139270, -0.361728, 1.099998, -0.234408, 0.008094, -1.763912, 0.047577, -0.378853, -0.478202, 0.566272, 0.534376, -0.201511, -0.375988, 0.670718, -0.160961, 0.640467, 0.162820, 0.545340, 0.197701, 0.785218, -0.022056, 0.792162, -0.445726, 0.567696, -0.846011, 0.015103, -0.264506, -0.365400, 0.953287, -1.125247, -0.958488, -0.771544, 0.060966, 0.102147, -0.881208, 0.401661, 1.216240, -0.669951, -0.518098, -0.683614, -0.817399, -0.612922, 1.249587, 0.307398, 0.264048, 0.503022, -0.853762, -1.377160, 0.223325, -0.038358, -0.681615, 0.085604, 0.660566, 0.236031, -1.199727, -0.670853, 0.783312, 1.498755, 0.788163, -0.605429, -0.386896, -1.421776, -0.150687, -1.219539, 0.349966, 0.408757, -0.032311, -1.265151, -2.531996, 0.133071, -0.910598, 1.658162, -1.244183, 1.776458, 0.165311, -0.791087, -0.082474, 0.658419, -1.115934, -0.868666, 1.047547, 1.602957, 0.057903, -0.268394, 0.757399, -0.376680, 1.852453, 0.320095, 0.044151, 1.871976, -2.021899, 0.103878, -0.180849, -0.972977, -0.118703, -1.323707, 1.255112, 1.085167, -1.054004, -0.560121, -0.445981, 0.628089, -0.053967, -2.152822, 1.367440, 1.422836, -0.484046, -1.330399, -0.374115, 0.016599, -0.904930, -0.567050, -1.219723, -0.315913, -1.724965, 0.028067, -1.198853, -1.035153, -0.372658, -0.474694, -0.729823, 0.665056, 0.958688, 0.412038, 0.207809, -0.467525, -0.119375, 0.285823, -0.651859, 0.009197, -1.533368, -0.684782, 0.740215, 1.365385, -0.345835, 0.749870, -0.118998, -1.814807, -1.650023, 0.664261, 1.546283, 1.710806, 1.337344, -0.386794, 0.831154, 0.548415, 1.182900, 1.234695, -0.394526, -0.175544, 0.086942, -0.933525, 0.771633, -0.619899, 1.017690, -0.904702, -0.687981, 2.384723, -1.210470, 0.183095, -1.678221, 0.551925, -0.016682, -1.395844, -1.084251, -0.846659, 0.739384, -1.225799, 0.174492, 1.699094, -1.427296, -0.275089, 0.058298, 0.622816, -0.584472, 1.262084, -1.181654, -0.136373, -1.233015, 2.687593, 0.608488, 0.500834, -0.527371, 1.103202, -0.099323, 0.387246, 0.120024, -0.580303, -0.370761, -0.371187, -0.416018, -0.882484, -0.154651, -0.859116, -0.231416, 0.824197, -2.102131, 0.615009, 1.071167, -0.911007, -1.963166, 0.849541, -1.177846, 0.065931, 0.320462, 0.868366, -0.089241, 0.982755, 0.322218, -0.909825, 0.013015, -1.921611, 0.111185, 0.964889, -1.733390, -1.655811, 0.486229, -0.824584, -1.668262, 0.253930, 0.327927, 0.426296, 0.748701, 0.220388, -1.759823, 0.550759, 0.824168, -0.551185, -1.091939, -1.426232, -0.617009, 1.231535, -0.846114, 1.745201, 0.549594, -0.411470, 0.074375, 1.105149, -1.036461, -1.134496, 0.984107, 0.284496, 1.538397, 0.327994, 0.024905, 0.509709, 1.778015, -1.385756, 0.355541, -1.329181, -0.379967, -0.242900, 0.356713, 0.585702, 1.434050, -0.794927, -0.686445, -0.112819, -0.393019, -0.019249, -0.463003, -1.827535, 0.137492, -1.410532, -0.470562, -1.694991, -0.349440, 0.280145, -0.141225, -0.510468, 0.600104, 0.991855, 0.339032, -0.084664, 1.306915, -0.394277, 0.965358, -0.703340, -0.572282, -1.652121, 1.804445, -0.239519, -0.394140, -0.708797, -1.359255, 0.429076, -0.515791, -1.702558, -0.294286, -0.541623, 2.477447, -0.057299, -1.470669, 0.923536, -0.490483, 0.195253, -0.624888, 0.685188, 0.028561, 0.190944, 2.229516, -0.860915, 2.602502, -0.306506, 0.534472, 0.008106, -0.843431, 1.349477, 0.676840, 0.128719, -1.345515, -0.956253, 1.838857, -1.022696, 0.093328, 0.282279, -0.503747, -0.273130, -0.622884, -1.087304, 0.287185, 0.745202, -0.464979, -0.697113, 0.310591, 0.490624, 0.755517, 0.542252, 0.619584, 1.020937, -0.910798, -1.786292, 0.190994, 1.826668, 0.317975, 1.002769, -0.323183, -1.529315, 0.175847, -1.264847, -1.109033, 0.589359, -0.388068, 0.571923, 1.426574, 0.532142, 1.347649, 1.333089, 0.855593, -1.258241, -0.799740, 1.098480, -0.600058, -0.245217, 0.429308, -0.615835, -0.636877, -1.949426, 1.431403, -0.654288, -0.657554, -1.772552, -0.593896, 0.822839, -1.210681, -0.389798, 0.490135, -1.151668, 0.279475, -0.615684, 0.540278, 0.047094, 0.641617, -2.142809, 0.065758, -0.029447, 0.290168, 1.181075, -1.233810, -0.114679, -0.635931, 0.533989, -0.338375, 0.139303, -0.660744, 0.207312, 0.399703, -0.232142, -1.156039, 1.081304, 0.464406, -0.225901, -0.111770, 0.335748, -1.823993, -1.073698, 0.129325, -0.797490, -1.016337, 0.160893, 0.933567, 1.084396, 0.541481, -0.339006, 1.983097, -0.518898, 0.026699, 0.656000, 0.411235, -0.668627, -0.310930, -0.791654, -0.688810, 1.431014, -0.277610, -2.575974, 1.433862, 0.803749, -0.614599, 0.413957, -1.207011, 0.247740, 2.347045, 1.125360, -0.936704, -0.183356, -0.103509, 0.947096, -0.995407, -0.281098, 0.970853, 0.985308, 1.059436, -2.079844, 1.233139, -1.118749, 1.872540, 0.293127, -2.942135, -1.317322, -0.548362, -2.202464, 2.041263, 1.225500, 1.013580, 0.344977, -0.919268, 0.185573, 0.382029, 1.421248, 1.135969, -0.056160, -0.841260, 1.705358, 0.602895, -0.122235, 0.914267, 0.476182, -0.148793, 0.332019, 1.452618, 0.298480, -0.818239, -1.029908, -0.706829, -1.726506, 1.356200, -1.368737, 0.483196, -0.946670, 0.491303, -0.826232, 1.000457, -1.353634, -2.040248, 0.874328, 0.844261, 0.022611, 0.503355, -1.224456, -0.475208, 0.788530, -0.835018, 0.967597, 1.911875, 0.675145, -1.343399, -0.718974, -0.083156, -0.140760, -1.125658, 0.488638, -1.121232, -0.426824, -1.330101, -0.425513, 0.796960, 0.079897, 1.614927, -0.401868, -2.133731, 0.231331, -0.826151, -1.860929, 0.573775, -0.514173, -0.607531, -0.228410, -0.995703, -1.491366, -0.519542, -0.025651, 0.256424, 0.037396, -0.685564, 1.791118, -0.832128, -0.113558, 0.785820, 0.949209, 0.641642, -1.150795, 1.338832, 0.239832, 0.944731, -1.324968, 1.678841, 0.002645, -0.077697, 0.195573, 0.432307, 0.954298, -0.406977, -1.277759, -0.907420, -1.806958, 1.234875, 3.014520, -0.799077, 2.742745, -1.324165, -0.255825, -0.541757, 0.482968, 1.721113, -1.522342, 1.163748, 2.403505, -0.509342, 0.483471, -1.428428, -0.061458, 1.587781, -0.783354, -0.050433, 0.629520, 0.864240, -1.395597, 0.107228, 0.823915, 0.005444, 0.499131, -0.339062, -0.295097, 0.991396, -0.322221, -0.530987, -1.197486, -0.753621, 1.670541, 1.436926, -0.411578, 0.339897, -1.289984, 0.061021, 0.209111, -0.348547, -1.259163, 0.894381, -1.279974, -0.439007, -0.299394, 0.637945, -0.519612, -1.145587, 0.571898, 0.041607, 0.885507, 1.553901, 0.023756, 0.872025, -0.811794, -1.424095, 0.086840, -0.689333, 1.187767, 0.865142, -0.339892, -0.243186, -0.645244, -0.773328, -1.231678, -0.086912, 1.713869, -0.144804, 0.393021, -0.089343, -0.279151, -1.799816, 0.602509, -0.268784, 0.588497, -1.190337, -0.787351, -1.882528, 0.659920, -0.724093, 0.775418, -0.675166, 0.000686, 0.428083, 0.463684, -0.476841, 1.469501, -0.654527, 0.327880, 0.879131, 0.248746, 2.101594, 0.122552, 0.276876, -0.001911, -0.957076, -3.208823, -1.615574, -0.433487, 0.226720, -0.420281, 0.965141, 0.095147, -2.242007, 0.300449, 0.076282, -1.365614, -1.870833, 0.054189, 0.827640, -0.661032, -0.210772, -1.194631, -1.017595, -0.752148, 1.116002, -2.304146, 0.951749, -0.110114, -0.844786, 0.494828, -0.260262, -0.674481, -1.129930, -0.215812, 0.546032, -0.466306, 0.644153, -0.147925, 0.867174, 0.045759, 1.034827, 0.426746, -0.423652, -0.162697, -1.408930, 0.475538, -1.071504, -1.037191, 0.298321, -0.976895, 0.700682, -1.893396, 2.326948, -1.282179, 0.209819, 2.152333, -0.192697, -1.056775, -2.076637, 0.480162, 1.810017, -0.928973, 0.737307, -0.032687, 0.888973, -0.071929, 0.032594, -0.660783, 0.907694, -0.257774, -0.232050, 2.377575, 1.621866, -1.180327, -2.478682, 0.091084, 0.154767, 0.741321, -0.688070, -0.753984, 1.973991, -0.734224, 0.814869, 0.547152, 1.889799, 0.601632, -0.644769, 0.022917, -1.941745, -1.630398, 1.299110, 0.339750, 0.351955, 0.805760, 0.913119, 0.313713, -0.005974, -0.044722, 0.019067, 1.481980, -0.043148, 2.381949, 0.681642, -0.979021, 1.069971, -1.382439, -0.396834, -2.139694, 0.203082, 0.770693, -0.126867, -2.356263, 0.322232, 2.007141, -1.794395, 0.592197, -0.643780, 1.823006, 1.518627, 0.885696, 0.766732, 0.099202, -0.195026, -0.948018, -0.879934, -0.757266, -0.760687, -0.520707, 0.458947, 0.204648, 1.474144, -1.286402, 1.345399, -0.013325, -0.260802, 0.562541, -0.342927, -1.058143, 0.114277, -0.180343, -1.749448, -0.835538, 2.076169, 0.090361, -0.890402, -0.036053, -0.994488, 0.322276, -1.521323, -0.151094, 0.153495, 2.220248, 0.383992, 2.816355, 0.456995, -2.097848, -1.012078, -0.130407, 1.508551, -0.538089, 0.716734, 0.062955, -1.580951, -0.665447, -0.141319, -0.178174, 0.369904, -0.545363, 0.533221, 1.376949, 0.354799, 1.810270, 0.813193, -0.225814, -1.114854, -0.696925, -2.085944, 0.119469, -0.108404, 0.826254, -0.901839, 0.476316, 0.552266, 0.561827, -0.622024, 0.646186, -0.088715, 1.228750, -0.670279, 0.545059, -1.626673, -0.369648, -0.730830, -0.500690, 0.106717, 2.246510, -0.528366, -1.766289, 0.757272, -2.234733, 0.646477, 1.300462, -0.217834, 1.427958, -2.461451, 1.260720, -0.558624, 0.475943, 0.538607, 0.075726, 0.582705, -1.335014, 0.997488, -0.067525, 1.061844, -1.603271, -0.383171, 1.668311, 0.221180, -0.912917, -1.163807, -1.211920, 1.597408, 0.585032, 0.040529, 0.357959, 0.345990, -1.053388, 1.458777, -0.223465, -0.201855, -0.986164, -0.968193, -0.488270, 1.007701, -0.811985, 0.304515, -1.169742, -0.855871, 0.919790, 0.219357, 1.091413, 0.807782, -0.083979, 0.324193, -0.947443, 0.053717, 0.936797, -0.562786, 1.660110, -0.462107, 1.672204, -0.311008, 0.728481, -1.537524, -0.438393, 0.905430, -0.666430, -0.074606, 0.193948, 0.979103, 0.185768, -0.841039, 0.947116, -0.648128, -2.545181, 0.229775, 1.931381, -0.429992, 0.836756, 0.669885, 0.167988, -0.232264, -0.136503, 0.868582, 0.082799, 1.170592, -1.664669, -1.246595, -1.272071, -0.198292, -0.392002, 0.347999, -0.360833, -0.486329, -0.348076, -1.260678, 0.542108, -1.889541, 1.900921, -0.437571, 1.135884, -0.008839, -0.709594, -0.312676, 1.010754, -1.775021, -0.090376, -0.374285, -0.010112, -0.325232, -0.481684, 1.135251, 1.191691, 0.073755, -2.006225, -0.958194, -0.416396, -0.866296, 1.725761, 0.957189, -1.396519, -0.400844, -0.555836, 2.281839, -0.811664, 0.280439, -0.663291, -0.250193, 0.003751, -1.002213, -1.056557, 0.281373, 0.489768, -0.576792, 0.705104, -1.671691, -0.103901, 0.354344, -1.342603, 0.283845, -1.798113, 0.608776, 1.885199, 0.114857, -0.508227, 0.679871, 0.991424, 0.494670, -0.737955, -0.387582, 0.563049, 0.333657, 0.402739, -0.412585, -0.710063, 0.130640, -1.366815, 2.520833, 0.900841, 0.079563, 0.603177, -0.111528, -0.043496, 0.882482, 1.217692, 0.460307, 0.999374, -0.063308, 0.084357, -0.800679, 0.078081, 1.235522, 0.101629, -0.119091, 0.080906, 1.461462, 0.065047, 0.341452, 0.151233, 0.011513, -2.571426, -0.348576, 0.716042, 0.209402, -1.981607, -1.342325, 1.406166, -0.787436, -0.833536, 0.745685, -0.156950, -0.429805, -0.344611, -0.001708, 2.021371, 0.113006, -0.248351, 0.943292, -0.157886, -1.143932, 0.333702, 0.569119, 0.997018, -1.264709, -0.389552, -2.655914, -1.382412, 0.008260, 0.294783, 0.322707, 1.110824, -0.204515, -0.295807, 0.497328, -0.256779, 0.281451, -0.202429, 0.566785}, + { -1.182033, -0.990724, 0.104045, -0.115285, -1.609855, 0.874568, 0.892411, 2.007296, -1.968755, 0.132095, 1.820703, -1.159879, 1.056728, -1.621238, -1.735622, 0.365577, 0.044551, 0.245102, 0.781900, -0.568182, -0.903664, -0.761595, 0.577774, 0.012518, 0.323001, 0.806387, -0.715938, 1.291085, -2.341664, 1.049098, 1.647642, 0.563267, -0.447792, 0.824436, -0.023639, 1.219416, 1.102642, 0.113489, 0.912743, 0.109638, -0.302463, 0.690598, -0.237857, 0.894208, -1.035659, 2.328670, -0.562059, -0.296181, 0.916796, -0.357272, 1.160758, 0.451315, 0.196456, -0.884296, -0.654022, 1.668492, 0.461198, 0.293342, 0.186362, 0.759364, 0.196021, -0.673123, 1.369451, -0.822186, -0.668167, 0.891107, 1.046052, 2.174824, -0.217663, 0.222540, -1.491159, -0.951655, -0.819255, 0.668112, -0.063466, 0.046701, 1.053596, 0.644253, -0.096507, -0.742529, 0.039552, -0.116341, -0.947332, -1.350485, 0.413847, 2.598992, 2.459606, 0.514045, -0.290478, 0.531872, 0.623313, 0.705847, -2.440353, -2.229876, -0.243842, -1.659471, -2.184856, 0.347365, -1.520216, 0.068324, 1.212021, 1.090282, 1.625544, -0.242690, 0.978063, -0.647997, 2.228631, 0.150888, -0.448686, 0.282191, -0.638558, 0.313404, -1.548489, -0.987350, 0.504220, 0.200817, 0.331415, 1.698722, -0.194588, -0.867004, 0.635534, -1.404777, 1.130592, 0.307063, -1.019221, -0.937982, -1.596464, 2.248796, -0.375377, -0.286856, 0.710374, -0.679039, 0.084932, -1.272005, 1.762173, 0.306859, -1.000013, -1.563703, 0.070367, -1.731430, -0.129567, 0.680612, -0.211895, -0.482885, -0.626461, -1.691782, 1.110358, -0.086106, -0.515570, -0.987962, 1.169888, -0.406341, -0.483877, -2.080735, 0.285999, 2.004029, -1.256048, -1.882583, -3.047656, 0.099457, -1.818615, 0.062210, -0.807041, 0.039765, -1.493414, 0.152758, 0.973733, 1.504650, -0.852136, -2.933638, 1.068753, -0.301381, -0.352158, 0.204912, -1.223965, -1.252604, 1.693246, 1.631687, -0.671105, 0.906412, -1.280496, 1.915374, -0.177969, 0.159518, 0.816535, 0.450977, -0.750484, -0.018431, -1.190060, 0.166193, -0.067318, -0.043534, 0.206740, -1.341822, 2.316914, -1.613452, 1.066080, 1.425543, -1.780641, 0.325450, -0.450151, -1.997296, -1.621558, 0.920813, -0.135516, -0.763896, -0.021063, -1.167069, -0.144444, -0.213741, 1.478804, -0.263028, -1.013180, 2.245053, -1.356859, -0.690404, -0.222947, -1.624552, -0.464506, -1.517442, -0.308159, 0.499479, -0.057061, 1.228032, 0.299066, -1.380981, 0.777070, -0.209613, 0.410636, -0.353264, 0.487815, 1.036224, 1.503528, 0.274954, -2.000251, 0.030772, 0.677885, -1.276899, -0.096168, 0.444528, 0.714932, -0.997932, -0.241405, 0.596798, 3.191526, -0.441197, -0.770703, 0.198933, -0.503894, -0.636223, 1.316053, -2.422652, -1.003362, -0.645443, 1.312824, 0.696529, 0.496544, 1.254918, 0.067976, 0.579736, -0.612679, 0.095804, 1.179636, -0.306940, -0.835429, -1.120113, -0.728495, 0.573919, -0.505831, -0.404828, 0.545294, -0.942293, -0.709087, -0.990315, -0.051144, 0.850603, -1.056156, 0.342539, -0.403991, 0.856288, 0.058781, -1.306745, -0.195350, -0.604557, 1.110527, -0.889690, -0.333949, -0.460623, -0.472012, 0.224678, 0.653727, -0.296846, 1.589186, 0.289251, 0.571712, 1.807680, -0.241117, 1.578081, -0.230120, -0.019002, -0.284344, -0.733357, -0.494227, -1.510475, -0.881025, 0.011355, -1.695467, -0.552732, 3.597214, -0.760997, 0.160454, 1.604971, -0.056311, 0.782432, 0.012931, -0.721449, -0.482569, -0.645418, -0.685215, 1.484420, -2.147895, 0.319111, 0.434472, 0.613192, -0.443633, 2.904831, -0.377940, -0.816888, 0.681861, -0.331878, 1.322679, 0.426241, 1.535460, 1.807671, -0.155240, 0.608807, -0.789376, 0.066064, 0.173941, 0.442881, 0.302427, 0.675783, -0.206586, 2.158039, 0.509036, -0.928564, 1.916680, -0.162566, 0.047139, -0.392633, 0.773404, 1.075810, -0.377545, 1.240136, -0.423998, -1.755018, -0.376135, -0.800686, -0.907901, 1.713279, -1.289116, -0.828548, -0.957205, 0.919591, 1.058795, -4.015570, 0.303151, -1.871327, -0.258658, -0.663640, 1.705543, -0.665959, 0.171985, 0.205161, 0.997869, 0.335844, -0.581812, 0.141911, -0.898024, 0.905078, 1.467683, -0.516611, -1.066879, -0.183614, 0.145401, 0.406541, -0.495786, 2.152388, -0.157968, -0.255234, -0.027002, 0.287821, 1.262139, -0.598631, 0.507232, 0.125771, -0.334446, 1.279116, 0.292011, 1.215638, -1.050658, 0.150421, 0.836198, 1.265561, -0.782982, -1.379708, -0.112104, 0.130101, -1.144690, -0.833199, -0.217920, 0.025572, 1.152740, -1.165658, 0.466775, 0.393018, -0.510852, 0.753150, 0.736648, 0.414469, 0.710530, 0.562602, 0.620719, 0.500728, 1.057322, 0.300625, 0.736402, -1.602048, -0.129288, -0.974479, -0.420793, 0.447426, 0.182499, -0.019345, 0.804603, -0.216000, -1.647184, -0.023763, 0.740351, 0.610837, 0.093540, -0.744371, 0.508537, -1.447733, -1.206406, -3.590968, 0.141688, 1.332558, 0.751247, -0.871550, -0.202231, 2.078777, -0.794069, 0.915636, -0.040179, 0.458278, -0.840516, 0.119802, -0.482384, -0.161426, 0.704770, 0.153015, -0.000750, -0.219447, 0.262337, 1.518239, 1.355411, -0.458673, 1.161361, -1.054924, 0.579480, -0.119109, -0.329629, 0.812682, 1.857557, 0.099020, 0.820302, 2.090000, 0.247340, -2.325257, 0.304030, 0.084419, -0.821864, 0.456438, 0.748984, 0.468434, -0.745492, -0.411619, -0.268436, 0.998883, -0.801896, -1.206509, 0.889848, 1.676262, 0.598750, -0.508465, 0.084038, -0.475236, -1.639909, 0.357904, -0.408079, -0.583212, -1.119743, -1.706453, 0.186840, -0.800573, 0.090565, 0.463982, -1.350953, 0.548916, -0.819529, -0.005303, 0.342667, 0.033524, 1.180686, -0.240149, -0.082084, 0.121012, 0.584651, -0.081447, 0.435425, -1.062111, -1.297010, -0.354924, 0.058040, -1.326069, -2.293762, -0.826101, 0.425946, -1.302736, -0.436073, -1.042596, 0.276245, 0.392518, 0.717258, 3.301770, -0.644866, 0.377213, -0.406736, -0.318716, -0.816595, 1.013310, 1.477392, -1.298086, -0.234732, 0.282106, 1.522305, -0.734220, 0.467740, 0.545424, 1.020615, 0.653171, 0.453015, 0.254356, 0.018373, 1.661917, 1.118822, 0.098586, 1.395874, -0.187699, 0.508652, -0.548066, 0.257491, 0.235350, 0.505458, -0.372710, 0.271288, -2.049830, -1.394902, 0.715808, 1.042062, 1.460668, 1.376373, -2.056576, 0.345659, 1.282268, 1.746942, -1.589097, 0.516501, 0.139361, -0.154290, -0.924339, 0.335194, 0.889294, 1.160918, -0.638914, -0.657616, -0.993357, 0.032571, -2.107877, 0.991383, 1.390078, -0.715143, 1.641153, 0.043067, 0.817948, 0.154437, -1.268595, 0.718767, -1.082909, 2.428075, -0.849468, 0.428728, -0.346973, -0.109188, 1.310439, -0.497318, -0.107854, -1.039751, -2.319314, 0.506966, 1.154441, 1.849161, -0.592776, 0.613116, -0.039152, -0.464128, -0.161897, -2.227032, 0.045890, -0.564227, 1.103639, -1.510715, -0.291276, 1.967509, 0.785963, -0.990884, -0.216925, -2.164696, -0.003942, 1.009959, -0.098606, -1.182608, 0.338989, -1.038732, 0.870748, -0.982860, -1.151487, -0.728321, 1.248880, -0.466434, 1.601769, 0.551422, -0.658448, 0.502653, -1.053988, 0.594415, 0.163925, -0.080079, 0.536887, -0.056005, 1.457503, 1.138792, 1.634425, -0.078903, 0.236324, -1.198733, -1.716764, -0.803560, 0.022557, -1.092070, -0.833702, -1.877477, -0.304326, 0.053183, 1.887550, -1.147866, -0.803854, -1.541034, 0.969796, 0.074783, 1.486452, 0.236390, -1.117702, 0.486334, -1.841179, 0.660699, 0.905663, 0.222406, 0.840630, 1.689011, 1.449841, 0.785060, 0.247622, -0.384732, 0.759199, 1.906931, 1.065960, -0.041626, 0.394889, 1.688113, -0.075546, -0.361648, 0.062103, 0.283601, 0.159933, 1.277289, -1.323852, -0.593494, 0.123995, 1.324236, -0.205210, -0.803219, -1.340778, -0.710786, -1.370338, 1.156267, -0.077055, -0.244050, 0.000291, 1.988200, -0.147974, 0.640865, 0.225355, -0.208274, 1.147141, 0.221391, 2.376750, -0.683141, -1.561707, -0.037740, 0.244160, -0.294200, -1.515108, 1.197305, 1.414708, -2.325714, -0.867730, 0.048080, -1.325000, -1.754054, -0.048702, 1.316129, -0.557108, 2.111063, 0.014839, 0.740811, 1.187295, -0.211452, -1.235271, -0.203892, 1.170752, -0.515556, 0.534500, -0.589873, -0.085859, 0.757107, -0.454449, -0.242475, 0.892581, -1.583763, 0.163886, 0.928978, 1.342655, 0.689295, -0.647056, -0.398740, -0.562487, -0.144457, -2.807038, -0.966036, -0.073517, -0.997487, -1.895521, -0.048410, -0.245080, 1.371564, 1.418200, 1.927510, 0.724537, 0.348282, 0.097457, -0.752247, 0.547111, 0.452678, 1.842658, -1.372846, -1.080536, -0.492402, -0.948238, 1.248988, -0.136566, 0.888306, -0.507940, -1.208086, -2.109605, 0.216898, 0.124905, -0.012725, -2.139055, -1.029584, 0.245014, 0.518949, -0.145007, 0.894423, -1.507149, 0.469880, 0.737765, 0.172519, -1.487251, 0.292384, -0.270667, 0.462509, 0.022113, 0.120434, 1.887821, -0.366725, -0.578942, 0.309197, 0.071899, 0.919132, 0.111711, 0.953862, 0.928987, -0.178857, 1.024506, 0.298323, 0.723635, -0.954093, -1.873633, 0.262402, 0.516609, -1.279220, 0.186461, 0.766670, -1.462925, -0.746575, 1.293203, -0.019324, 0.552474, 0.804343, 0.905144, -0.795691, 0.237082, -0.288253, -0.256831, -2.167557, 0.241622, -0.362114, 0.098529, -0.730083, 0.694702, 0.472205, -1.018633, -0.665194, 0.318752, 1.942694, 0.947298, 0.384414, -0.949530, -0.242625, 1.494762, 1.116680, -1.165330, -2.006563, -0.167549, 0.318343, 0.327429, 0.268683, -0.256726, -1.094689, -1.933067, 0.575581, 1.576788, -0.790888, -1.421626, 0.559636, 0.169084, -0.614721, 1.249090, -2.028653, 0.033302, 0.703858, 0.810570, 0.525806, 0.553967, 0.309991, 2.161190, 0.487782, -0.203454, 0.939968, 1.521396, 1.169673, -1.308519, -0.611268, 0.808024, 0.655301, 0.096592, -0.148393, 0.276038, 1.716933, -0.142533, -1.244457, -1.249490, -1.574976, 0.870563, -0.885578, -1.213086, 1.120872, -1.189445, -0.585305, 1.269445, 0.305883, -1.062068, 0.799435, -1.251410, -0.600416, 0.804726, -0.271234, -0.895507, 0.268118, 0.273714, 0.817049, 1.620739, 0.042687, -0.247700, 1.158443, -0.032706, 0.186347, -1.014765, 1.309911, -0.993179, 0.638214, 0.353942, 0.262249, -0.515910, 0.905912, 0.071666, 1.425258, -0.214364, -0.405860, 0.322082, -2.038569, 0.663869, 1.374939, -1.704746, 0.001251, -0.468250, -0.543265, 0.786153, -0.014665, 1.744427, -0.396289, 0.065601, -1.783098, 1.628016, 0.221392, -1.623130, 0.913457, 1.569945, 0.074148, 0.681321, 0.167484, -1.354388, 0.372236, 0.355057, -0.698553, 0.243511, 0.047298, 2.324381, 0.494232, -0.354383, 2.683529, -0.299160, -0.732044, 0.591202, 1.365810, -0.674266, -0.143102, -1.892520, -1.891342, 1.712276, 0.588573, -2.112565, 1.322950, -0.567429, -2.209439, -0.507957, -0.494205, -1.052432, 1.107759, -0.111659, -1.599427, 0.569260, -1.142308, -0.376497, -0.704686, 1.216245, -1.656430, 0.237153, -0.554729, 0.689873, 0.358264, 0.023091, -0.409037, 0.936587, 0.768994, 1.378372, -1.399549, 1.208693, 0.486285, 0.331197, -0.686468, 0.005126, -0.502025, -1.036639, -0.491039, 0.596697, 1.302914, 0.067185, -0.120411, 0.208858, -0.718485, 1.843144, -0.853323, -1.646446, 1.443056, 0.396544, -1.461868, -0.994024, 0.601044, -0.368966, 2.109496, -1.858449, 1.675221, -1.689736, 1.414936, 0.620734, 0.209911, 0.220183, -1.311763, -0.902506, 1.203832, -0.180132, -0.140792, 0.127870, 0.298109, -0.249634, 0.353379, -0.839347, -1.157898, 0.144337, 1.485741, -1.117781, 1.176339, 0.510259, 0.027923, -0.198288, 0.257066, 0.478007, -1.653934, 1.118124, 0.876101, -0.894446, 0.218383, -0.441243, -0.736363, -0.941684, 1.215643, 1.784836, -1.096164, 0.644597, -1.001155, 0.851863, 2.314310, 0.762955, -0.773405, -1.224005, -0.020442, 0.490393, -0.691299, 0.399926, 0.624403, 0.150433, 1.792048, 0.370861, 0.041537, -1.017301, -1.209133, -1.222578, -1.331111, -0.583000, 0.278368, -1.546722, 0.849334, -0.545177, 0.993589, 0.697411, -0.158505, 1.562587, -1.661492, 0.717039, -0.292506, 1.020398, 0.207425, -0.015711, 1.666373, 0.993838, -0.854248, -0.120354, -3.378056, -0.980753, 0.011066, -0.532348, 1.887271, -1.352068, 0.338103, 0.796058, -0.171730, 0.397031, -0.160426, -1.037023, 1.285795, 0.090821, 1.216535, -1.318853, 0.012382, 0.535242, 0.261766, 1.071842, 0.440831, 0.611455, -0.929570, 1.570926, -0.154514, -1.659442, -1.652807, 0.832240, -0.746617, -0.675656, 0.661198, 0.398967, -0.735796, -0.746877, 0.984032, -0.199201, -0.758471, 0.311492, 1.004689, 0.393983, -0.663058, -0.629355, 0.167509, -0.618294, 0.567620, -1.938332, 0.922270, -0.415272, 1.212559, -0.023118, -0.767115, -1.495589, -1.255184, 0.118539, -0.745166, -0.672295, -1.545429, -0.716545, -1.106630, -0.078553, 0.879629, 0.974308, -0.137689, -0.464611, 0.936891, 1.147917, 0.509769, 0.563796, 0.052862, -1.284131, -0.291096, 0.081777, -0.400073, 0.705509, -0.114025, -2.159276, -1.544984, 1.674441, -0.926547, 0.125256, 2.087236, 0.725663, 0.776126, -0.827905, -1.981602, 0.603253, -1.184810, -0.678212, 0.307489, 0.226716, -0.616348, -0.111767, -1.820482, -1.417757, 0.634413, -1.138639, -1.298559, 0.384734, 0.579211, 1.705501, 1.469555, 0.019641, -1.401232, -0.141805, 1.087576, -0.941758, -0.581052, -1.658015, 0.918930, -1.896925, -1.185906, -0.032664, 0.928568, -1.145188, -2.217072, 0.696880, -0.139694, 1.611320, 1.590444, -0.823083, -0.161521, -0.190495, 0.298279, 2.147478, -0.143921, 1.850659, 0.124507, -1.676375, 0.262602, 1.173930, 0.952699, -0.956552, 0.898254, 0.844637, -0.745090, -0.864909, 1.577642, -0.472348, 0.594579, 1.323665, 0.695430, -1.457288, 1.197672, -0.530519, 0.850585, -0.886207, -0.718863, -0.129478, 0.875762, 1.344030, 1.166345, 1.406504, -2.190434, 0.701644, 0.558108, 0.409784, -1.656140, 1.208338, -0.519180, 0.223482, 0.748124, 0.097323, 0.715970, -1.527134, 0.535389, 0.370611, 0.578901, -3.046126, 1.462143, -0.752133, 1.250911, -1.494899, -0.161154, 0.243344, -0.134417, -0.373131, -1.073105, 1.267560, 0.738967, 0.249464, -1.528957, 1.407050, 1.296934, 2.696871, -1.198885, 0.404112, -0.563298, 1.905446, -2.483317, 0.607973, 1.400213, 0.785318, -2.427183, -0.573498, -1.450760, -0.413151, -0.139899, 1.530708, 0.277043, -0.188913, 0.514852, 1.399172, -0.811467, 0.005990, 0.181239, 2.083996, 0.098943, -0.232644, 0.346235, 1.252002, 1.810240, 0.430197, -1.269393, 2.199245, 0.635753, -1.036215, -0.120450, 1.199328, 0.517621, -0.289110, 0.409783, 1.080916, -0.200301, 0.234920, -0.758630, -0.054944, 0.343013, -0.487173, 0.227276, -0.880040, 1.823280, 0.018873, 0.449070, 0.141262, 0.434751, 1.174268, -1.907374, 1.270779, 0.117235, -0.495601, 0.370781, 0.034318, 0.708558, -1.016281, -0.809590, -0.236292, 1.413989, -1.018390, -0.604388, 0.077290, -0.322879, 0.317386, 0.195364, -0.224596, 0.419801, -0.051214, -1.294279, -1.585191, -0.614829, 0.291316, 0.527026, -0.035368, 0.862249, 0.429781, 0.026719, 0.311587, 2.149591, -0.723808, 0.083928, -1.263941, 0.565994, 0.607109, 0.051392, -0.647140, 0.408378, -0.325048, 0.666051, -1.812193, -0.481149, -0.895440, -1.487628, -0.051724, 1.030995, -1.429187, 1.616624, 1.332899, 0.817643, -0.651819, 0.180374, -0.928031, -0.574170, -0.987816, 1.026662, -0.001211, 1.132437, -0.461924, 0.799407, 0.009504, -1.247738, 1.366446, 0.485234, 1.683592, -0.818062, 0.466098, 0.618622, 2.081132, 0.386411, -0.376256, 2.302080, -0.472404, -0.197619, 0.041499, -1.151170, -1.806785, -0.376674, 0.063492, 0.754902, -1.170045, -2.322990, -0.137742, -0.243928, -1.468925, 0.545148, -0.357012, 0.064328, -0.243415, -0.822864, 2.019027, -0.769357, 0.468290, 1.882418, 0.342787, -0.696157, -1.560195, 1.948524, -1.407121, -1.124421, 0.828790, -0.299129, 0.966997, 1.135263, -1.492739, -0.168288, 0.316350, 2.065712, -1.206027, -0.600245, 0.478660, -0.659134, 0.893908, 0.667413, -1.680572, -0.442523, 1.186590, -0.160877, -0.469502, -1.533293, 0.285390, 0.658302, 0.701033, -0.191945, -0.192662, -1.602242, 1.633399, -1.609775, -0.988848, 0.669548, 3.220970, 0.415837, -1.343026, -0.014933, -0.094364, 0.099381, -0.991866, -1.052532, -0.023157, 0.114131, -0.470556, -0.677907, 2.241443, -1.891253, 2.090881, -0.236475, -0.115302, -0.847335, -0.678742, 1.631226, -0.350954, 0.746013, 0.439496, 1.703137, 1.978385, 1.502600, 1.832951, 1.006809, -0.861861, 0.136237, 0.194582, -0.049889, 0.768008, 0.729039, -0.789408, -0.493955, -0.174524, 1.164600, -1.410962, 1.338335, -0.093167, -0.143927, 1.037471, 0.355913, 0.721230, -0.114761, -1.068794, -0.369482, 0.678685, -1.852772, 0.870384, 0.507279, -2.306766, -0.691351, 0.339238, 0.874056, 0.175721, -0.274644, 1.222448, 0.249203, 1.455549, -0.233866, 0.288981, 0.317599, -0.811498, -0.908194, 0.418703, -1.026886, 0.901506, 0.421606, -2.355229, -2.010783, 0.639056, -0.387780, 0.529579, -0.115747, -2.026635, 0.762252, 0.342841, -2.721693, 0.225247, -1.119844, 1.762495, -1.234644, -1.186285, -1.118980, -0.790823, 1.372955, -0.144790, -0.289554, -1.474859, 0.935327, 0.257315, 0.657742, -0.752228, 0.373652, -0.877215, -2.682745, -0.610774, 0.455652, -1.285036, 0.938585, -1.040668, -0.506063, -0.635054, 0.734377, -0.148222, -0.766240, -1.794213, 0.264920, -0.651568, -0.127556, -1.511425, -2.408001, -0.065094, -0.500168, 0.081581, 0.293386, -0.918540, 0.481355, -1.415078, -1.506683, -1.791014, -1.940797, -0.731344, -1.251695, -0.309286, -0.693743, -0.796699, 2.297995, 0.736554, -0.360015, -0.145277, 0.265324, 2.174685, 1.361956, 0.418747, -0.028816, 1.201867, 0.282520, -0.736020, 1.589420, 2.311612, -0.158355, -0.348948, -1.570364, -1.064447, -0.871774, 0.836884, -0.241113, 0.680196, -1.468255, 0.360123, -0.117796, -0.902268, 1.206016, -0.273557, 0.294911, -1.407273, -0.659960, 0.424815, -0.386988, -0.913246, -0.508748, -0.219080, -1.651974, 0.775883, -0.051616, 0.325976, -0.485320, 3.142784, -0.518282, -0.524431, 1.943767, 1.705564, 0.440877, 1.349568, -0.489779, -1.226827, 0.056258, -1.534418, 0.178679, -0.212164, 0.418668, 1.318532, -0.727790, 0.187988, 0.370431, 0.477882, 1.348819, 1.123202, 1.293542, -1.830254, -0.906303, -1.160818, -1.499872, -0.749063, -1.843293, -1.209419, -0.094008, 0.906350, -0.514163, -0.674518, -1.229189, -0.251380, 0.089014, -0.394945, -0.948207, 0.179413, 1.705880, 1.481214, -1.569964, 0.258922, 1.706765, 0.790410, 0.240023, -1.391616, 0.714121, -0.987433, -1.098027, 0.849551, -0.103418, 0.365080, -0.282595, 1.164164, 0.665270, 0.355595, 0.115689, 0.125766, 0.361181, 0.763215, 0.968049, -0.107044, 1.016707, 0.088473, 1.193165, -0.435059, -0.100778, -0.317268, -0.825614, -1.051258, 0.243711, 0.377545, -0.094623, 0.723646, 0.814205, -0.030798, 2.052617, -1.259441, 0.093852, -1.847167, 2.151407, -0.583909, -0.202982, -1.409784, 0.071909, -0.173323, -1.325530, -1.612066, 0.111486, 1.877957, 1.020731, -1.090581, 0.027436, 0.718217, -0.159228, 0.039074, 0.135114, 1.141439, -0.369754, 0.149730, -1.332786, 0.405130, 0.189829, -0.142822, 0.268124, -0.188454, 1.224434, -0.977509, 0.763707, -0.161697, 0.024968, -0.057457, -0.658942, 0.393707, 0.024037, -0.402251, -0.383377, -0.600593, -0.577664, 0.917264, -0.666357, -1.869187, -0.336415, -1.091990, 0.102598, 2.138619, 0.122753, -1.135455, 1.134380, -0.036447, -1.175676, 0.533750, 1.721340, 0.999408, -1.620160, 0.556890, 0.988642, -0.176587, -0.737106, -0.513593, -1.156436, -1.011539, 0.529095, -1.561689, -0.278184, -1.858055, -1.853150, 0.158110, -0.144312, -0.149990, 0.307596, -0.655647, -1.150726, 0.081073, 0.339135, 1.373845, 1.286314, -0.258182, -1.679334, -0.694605, -0.384283, -1.940498, 1.066846, -0.198975, -1.389420, 0.048676, 0.454977, -0.304671, 1.722365, 0.605073, 0.601758, -0.839313, 0.817142, -0.023608, 0.431783, 0.567458, -2.460163, -0.277263, -2.522150, -0.843465, 0.475266, 0.155524, -0.182731, 1.290886, -0.031742, 1.595315, -1.487618, 0.434404, -0.151036, 1.554354, -0.442486, -0.971564, 1.536515, 2.030288, -0.091330, -0.639896, 0.675043, 0.372680, -0.097302, -1.079158, 1.616633, -1.180672, -1.134611, 1.106823, -0.264735, -0.428301, 0.321761, -0.428073, 0.837635, 1.779821, 0.889562, 0.014049, -1.663147, -0.709730, 1.815853, 0.826502, -1.832997, -1.001730, -0.035752, -0.883202, 0.198855, -0.720034, -0.512378, -1.235309, 0.637103, -0.318085, -0.722293, -0.725155, -0.516654, 0.106518, -0.725105, 1.835024, -0.927853, -1.955561, 0.763174, 0.373548, 1.146230, -3.753366, 1.273680, 0.012062, 2.852662, 0.236338, -0.295475, -0.244922, 0.767836, 0.119353, 0.993934, 0.756175, -0.980474, 0.385351, 0.172012, -0.332472, -1.052266, 1.427503, -1.895816, -0.447396, -0.139730, -0.679052, 0.213772, 0.266755, -0.519739, -0.077430, -0.093825, -0.202419, -0.238314, 0.651187, 1.560948, -0.184705, -0.627118, -1.269736, 0.615082, -1.105759, 0.617015, -1.084346, 0.146138, 0.743565, 0.139173, 1.156885, 0.492462, -0.067773, -0.635241, 0.085324, 1.302415, 0.467737, -1.612368, -0.877104, -0.044858, 0.088059, -0.897877, 1.781092, 0.053566, 0.452692, 0.362189, 0.052842, 0.158434, -1.563583, -0.030714, 1.672257, 0.357928, 0.162656, -0.415725, -0.400887, -0.459514, -1.245656, 0.002331, -0.005904, 0.030327, -1.433488, -1.353397, 0.020028, 1.164917, 0.313599, 1.181723, 0.352966, -0.858882, 2.606408, -0.512971, -1.197124, 0.464680, 1.313213, 0.204163, -1.415648, 1.007134, 2.564667, -0.089119, 0.345481, -1.031982, -0.521176, 0.519781, -0.763010, 0.733503, 1.814899, -0.001072, -0.708667, -0.513932, -1.814224, -0.592833, -0.525615, 1.370029, 2.308789, -0.976814, -0.314422, -0.477806, 0.305997, -0.872631, -0.088829, -0.662893, -0.569024, -0.066163, 1.533401, 0.366497, -0.212668, 0.755595, 0.449040, -0.108833, -0.587931, -1.009151, -0.799894, -0.154522, 0.107163, 1.425453, 1.631916, -0.073408, -0.440364, 0.631786, -0.737705, -0.055127, 0.772019, -0.258056, 1.539292, 0.395897, -0.343193, -1.031211, -0.302418, 0.288518, -0.135447, 1.438798, 0.294601, 0.405512, -0.561546, -0.409586, 0.651017, -0.272401, 0.930303, -0.630249, -1.622772, -1.261243, -0.249885, -0.019325, 0.512813, 0.933841, -0.463988, 0.305396, 1.287911, -0.758046, 0.661103, -1.843919, -2.065572, -0.410313, -1.541864, 1.339012, -0.804902, 1.045279, -0.769203, -0.032602, 0.063275, -0.662296, -0.144066, -0.243627, 0.332526, -0.820790, 0.603103, 1.184764, 0.448711, 0.616243, 1.898227, 0.515180, -0.455631, -0.818757, 0.443795, 1.069992, 0.636242, -0.286327, -0.666330, -0.737574, -1.093274, 1.225394, -0.243206, -0.112195, -1.572394, -1.555291, 0.235222, 0.662835, -0.140926, 0.550963, -0.469103, 0.586619, -2.375870, 1.041302, 0.594935, -0.382474, 1.445974, 0.908579, 0.825926, -0.652322, 0.437661, -1.902363, 0.509471, 0.382050, -0.154797, 1.412613, 1.231123, 0.285335, 0.323703, 1.230827, -1.325370, -0.882106, -0.040444, -0.254714, -0.257117, -0.529394, 0.779346, 0.682189, 1.133347, 1.187395, -0.223462, -1.298226, -0.275506, 0.331544, -0.445988, 0.123823, 0.696435, 0.421639, -1.261232, 0.776110, 0.132655, -0.720933, -0.609152, -0.061301, -1.048410, 0.921329, 1.112192, 0.370525, -0.019465, -1.114954, 0.277303, 0.901529, 1.694158, 0.529833, -0.882069, -0.245371, -0.603769, 0.758759, 0.508264, -2.029322, -0.040732, -0.494105, -1.147427, 0.495379, -0.041708, 0.730202, -0.422939, -0.632949, -1.984159, -1.108105, -0.993817, 0.282263, -0.080835, -0.788011, 1.243930, 0.742627, -1.815206, 0.314197, 0.602959, 0.055921, 0.130547, -1.698285, 0.671603, -0.306370, -0.550947, -3.093813, 0.376060, -1.627970, 1.799160, -0.125827, 0.449279, 2.025550, 1.338993, -1.261597, 0.445731, 0.609896, -1.726927, -1.364881, 0.542433, -0.810466, 0.863934, -2.478897, 1.668358, -0.060390, -0.424467, -2.022434, -1.145987, -0.837309, 0.083879, -1.809817, 0.723728, 0.859393, 0.372108, -0.237508, 0.796737, -0.447039, -0.194162, 0.796565, 0.074311, -0.011911, 0.224484, 1.298364, -0.619427, 0.397665, 0.720958, -0.174028, -0.027007, 0.152947, -0.616935, 0.528441, -0.548607, -0.046968, 0.866270, 0.233197, -1.674556, 0.186067, 1.357813, 0.557800, -0.558316, -2.339965, 1.293808, -0.709143, -0.565500, -1.154304, 0.312092, -1.036005, 1.043651, -0.780841, -0.368151, 0.179745, -0.306073, 0.255710, 2.103900, -1.071129, -1.279216, -0.703963, 0.759521, -0.140323, -0.608581, 2.917427, 0.248669, 0.338649, 0.485611, -0.531817, 0.863207, 2.153741, -0.296518, -0.459129, 0.270417, 0.935235, 1.394564, -0.551661, 0.226926, 0.216715, 0.541608, 0.363598, -0.583128, -0.483484, 0.219572, 0.346102, -0.184419, -0.312754, -1.021271, -1.778001, -1.153524, -2.060209, -0.038508, 1.803398, -0.673404, 0.185306, 1.306659, 0.976398, -0.081853, -0.609699, 0.843565, 0.276698, -1.175775, -0.586864, 0.344750, -2.477780, 0.177836, 1.484502, -2.088840, -0.491484, 0.254499, -0.891253, 0.922149, 0.397272, 0.140329, 2.255648, -0.080438, 0.190627, -0.344085, 0.914310, -0.492837, -1.322400, -1.311848, -1.906278, -1.127237, -0.759115, 0.843289, 1.298117, 0.127567, 0.050809, -0.053783, -1.038648, 0.462915, -0.432071, 1.638138, 1.477372, -1.211059, -0.154430, 0.024262, 0.067581, 1.115890, 0.367321, 1.327273, -1.408346, -1.128287, -0.922713, 1.145809, 0.008678, -1.854904, 0.523576, -0.329485, 0.303820, 0.575895, -0.402776, -0.599858, -1.450637, -1.904945, 1.265459, -0.159827, 1.406783, -0.024990, 0.239961, -1.854666, 0.086036, 1.209725, 1.887180, 0.583309, -0.083836, 1.048282, 0.552419, -0.207426, -0.064380, -1.575963, -0.378237, -0.229650, -0.601722, -0.960228, -0.102083, -0.414764, -0.832576, -0.893981, 1.439118, 1.311700, 0.636207, 2.695851, -1.953427, -1.121281, 0.109427, 0.807637, -0.640741, -0.935607, -0.514951, 0.799321, 1.356677, -0.019797, 0.608427, -1.336663, -0.452547, 0.544517, 1.252920, 0.707849, -0.067403, 0.464638, -0.964007, -0.427682, 1.191631, -0.465947, 0.013992, -0.394630, -0.407368, -1.767068, -1.423715, 0.157861, 0.322349, -0.721958, 0.288086, -0.113849, -2.595654, -1.889727, -1.893902, -0.979257, 0.563037, 2.069219, 0.486238, 0.484894, -0.508484, -0.654682, 0.501518, 0.447948, -0.899938, 1.609891, 0.372200, -0.465811, -0.876349, -0.989570, 0.322810, -0.163933, 0.162493, 1.217476, 0.941825, -1.047924, -0.181836, -0.693214, 0.549036, 0.863952, -0.714402, 0.862002, -1.796094, -0.728835, -0.976425, -2.619379, -0.215380, 1.479812, 1.673869, -0.086293, -0.036034, 0.267581, 0.287811, -0.344847, -1.304700, -0.825427, -0.848370, -0.457317, 0.080942, -0.758908, 0.629612, -1.074773, 0.757741, 0.668105, -1.219031, -0.208474, -1.711361, 0.226617, -0.841018, 1.660807, -0.697073, 1.393023, -0.787531, -0.761010, -0.984526, -0.814087, -0.013918, 1.599091, -2.240978, -0.874549, 0.712055, 0.085046, 1.011351, 0.840473, -1.043489, -0.823256, 0.668104, -0.592289, -0.046664, 1.144287, -0.559592, -0.729162, 0.849113, 0.222759, 0.195738, -1.121981, -1.121979, -0.066825, -0.157941, -1.773485, -0.782219, 0.655074, -0.262132, -0.712077, 0.752541, 0.425039, 0.972398, -1.672732, 0.634087, -0.214051, 0.568499, -2.309596, -1.113105, 1.696879, -0.353259, -0.290204, -1.128185, 0.674188, -1.267031, 0.637262, -0.530526, -0.875749, 0.967556, -1.556293, -1.117577, 0.668908, -0.388012, -1.702704, -0.982943, 0.825036, 2.169169, 1.586789, -1.343200, 1.101355, 0.883851, -0.868814, -0.497662, -0.431353, 0.442203, 1.489853, -0.126395, -0.648795, -0.169522, 0.297527, 0.310265, -1.304085, -0.760477, -0.037992, 0.027178, 2.459609, -1.534498, -1.575119, -1.700460, 1.139519, -0.014968, 0.234533, -0.067230, 0.096728, -1.786536, -0.602227, -2.189427, 0.519104, -0.040212, 0.775011, -0.830357, -0.571322, 1.384906, 1.701390, -1.280063, -0.678924, -0.492366, -0.248255, 0.288810, 0.746716, -0.854638, -0.343785, -1.035924, -0.604085, -0.946944, -0.631828, 1.844068, -2.555476, -1.448799, -0.092470, 1.225179, 1.333341, -0.746759, 0.315804, -0.878796, -1.078185, 1.097040, -0.105570, 0.333994, -0.377507, 0.378326, -0.053087, -1.126848, 0.934960, 0.410731, 0.197805, 0.223323, 0.312033, -1.840421, -1.807174, -0.840043, 0.068570, 1.757604, -0.076322, -3.128909, 0.140312, 2.139157, -0.905102, 0.111514, -0.848952, 1.090445, -1.340872, -1.455730, 0.399908, -0.420877, 0.155199, -1.340483, 0.471297, -1.757322, 0.636677, 0.590320, 1.093107, 0.007619, 0.358078, -0.672528, -0.494688, 1.306112, 0.778751, 0.926516, 0.932918, -0.652896, 1.519377, 1.808176, 0.580447, -1.560422, 1.103326, -0.711911, 0.589932, -0.025245, 1.441283, 2.070462, 1.525393, -0.429804, -2.243278, -1.381306, 2.027807, -0.717750, 0.158620, 0.203938, 2.275288, -1.290036, -0.763332, -1.005744, -0.104188, 1.433085, 1.138323, 1.260414, -0.772884, 0.603607, -0.961641, -0.146728, 1.131142, -0.586622, -0.793266, 0.422120, 0.238596, 0.988546, -0.920935, -0.354626, -1.574340, 1.132674, -0.846445, -1.345843, -1.729672, -1.271401, 1.427218, 1.986580, 0.541635, 0.295550, -0.500550, -0.408490, 0.070781, 1.784228, -0.119234, -1.159608, -1.380432, -0.149607, 0.415031, 0.891507, 0.955257, -0.360345, -0.136555, 0.424249, -2.018592, 0.386525, 0.801126, 0.304958, 0.605012, -1.027500, 0.412363, -0.358259, 0.185826, -1.080077, 1.157918, -1.356224, 0.723348, -0.996599, -0.896110, 0.106722, 0.654700, -1.110127, 0.826412, -0.939684, 1.592098, -1.599002, -0.705636, 0.939622, -1.749310, -0.142900, 0.329500, 1.537404, 0.539679, 0.535866, 0.931259, 0.999876, -0.289414, 0.793408, -0.344457, -0.194481, 0.817257, -1.476450, -0.202502, -0.193899, -0.959493, -0.599850, -0.467182, 1.566532, 0.805961, -0.020652, -0.408956, -0.347758, -0.380462, -0.143103, 0.292589, 0.436122, 1.453586, -2.999577, 0.010084, -1.748454, 0.400327, 2.423968, 1.875613, 2.410515, 0.474966, -0.477082, 0.079202, -1.377004, 0.044919, 1.120112, 0.935645, 0.670242, 0.954505, -0.254576, -0.067505, 1.072077, 0.464383, -0.971635, -0.734305, 0.529991, 0.320964, 0.660038, -0.884118, 0.868322, -0.054656, 0.408413, -0.928430, -0.848887, 0.336249, -0.827988, 1.095226, -1.161564, 0.709723, -0.387843, 0.890326, -2.268380, -0.640441, 0.252365, 2.276407, 1.348281, 2.029460, -1.695108, 0.308716, 0.235891, 1.914263, 1.649640, -0.477879, -0.117208, 1.872425, 0.445807, -0.961056, -1.492970, -1.115844, 1.930394, 0.047135, -0.256759, 0.197470, 0.421923, -0.422296, 0.433128, 0.399215, -0.802778, -0.563040, 0.757818, -0.844195, -0.663983, 0.162023, 0.396168, 0.111668, 0.755298, -0.691091, -0.758507, -0.364105, -0.365148, -1.240560, -0.643815, 1.971015, -0.117173, 0.856542, 1.257437, -0.198269, 0.234995, -1.532506, -2.353866, 0.077296, -0.019384, 0.389523, -1.019283, 0.472070, -0.966912, 0.300588, 0.252483, -0.804045, -1.730821, -1.365752, -0.990922, 0.849213, 1.604441, -1.362975, 0.748139, 2.501775, -0.126310, 0.612473, -0.064447, 0.004416, 0.568888, -0.222759, 0.974630, -0.767727, 0.380578, 0.317705, -0.143703, 0.413208, -0.947242, 0.131730, 0.025382, -0.758325, 0.580607, 1.039693, -1.978096, -0.352989, -0.141092, 1.056524, 0.148448, 1.169638, -0.284465, -0.692905, 0.985378, 1.801891, -0.582393, -0.519100, 1.096080, -0.047229, -0.112265, -0.608350, -2.452482, -1.220425, 0.902638, 0.880592, -1.106066, -0.118210, 0.672128, -0.363375, 1.247757, 0.170906, -0.849769, -1.609034, -1.015062, -0.428678, -0.238637, -1.086833, -0.200252, -2.326732, -0.301218, -0.342991, 0.407981, 0.123120, -0.474811, 0.689556, -0.535312, -1.460389, -0.656256, -0.872668, -0.959749, -0.130226, 0.850948, -0.461050, -0.035449, 0.660750, -1.518566, 0.156001, -0.919434, -0.540750, -0.000871, -0.811852, 0.247025, -2.625853, -0.525114, 1.337842, -0.158807, -1.316601, 0.409387, 1.545733, 0.177541, 1.264480, -0.296738, 0.380318, -0.214996, -0.976262, -0.337425, -0.525910, -1.026923, 0.461673, 0.652946, -1.557104, 1.204365, -0.346271, -0.451315, -0.885818, 0.694764, 1.227606, -0.274514, -1.055869, 0.995573, 0.388055, 0.735920, 0.395819, -2.003695, -0.743029, -1.165036, -0.017400, -0.420809, 1.536804, -0.478933, -0.710430, -0.991006, -1.514194, 0.586450, 0.658552, -1.800328, -0.749451, 0.634071, 0.005889, -1.048293, 0.904292, -1.275187, -2.073517, 1.546540, 1.003061, -0.180415, -0.774517, 0.980949, 1.035466, -0.760792, -0.699135, 1.418587, -1.223056, -0.537477, 0.496585, -1.549317, -0.643062, -0.079485, 1.035337, -1.035709, -0.055925, -0.811267, 0.842547, -1.028167, 0.781426, -2.309164, -0.514714, 0.196260, -0.648122, 1.232203, 0.212556, 0.123973, -0.290506, 0.097181, 1.624703, 0.648933, -1.808541, -1.562539, 1.907293, -0.763823, -0.301554, -0.579386, -0.758413, 1.312228, 1.365965, -0.516405, -1.030932, -0.766624, -0.207938, 2.671840, 1.144630, -0.243363, -0.291062, 0.177277, 0.661588, 0.292051, 1.060794, 1.012830, 0.316930, 0.771680, -0.438249, 2.304440, -0.352412, -0.701439, 0.242441, 1.985065, -0.229084, -0.028268, 0.306352, -0.007879, 0.460231, 1.329044, 0.514899, -2.989984, -0.687685, -1.007076, 0.912048, -0.774717, -0.389092, -0.196883, -0.006537, 0.630364, 0.382722, 0.332988, 2.250091, -1.396306, 0.624280, -0.699713, 0.960984, 2.080729, -0.652034, -1.975734, -0.415395, -1.465640, 1.562211, -0.175790, 0.824711, -0.356191, -1.150109, -0.233485, 0.285365, 0.260212, -0.193945, 1.516209, -0.896587, 0.768712, 1.036168, -0.243662, 0.481208, -1.441876, -0.560259, 1.113345, 0.471965, -0.431091, -1.250092, -1.683304, -0.300121, 1.046572, -2.410199, -0.211774, 0.808844, -0.314220, 1.518381}, + { 0.128537, -0.670602, -0.941475, -2.075702, 3.765909, 0.102639, -1.360386, -1.352912, -2.199890, -0.356542, -0.548534, 1.083015, -0.219626, -1.837468, 0.307975, 2.474036, -1.179890, -1.226841, -0.035152, -1.388017, -1.100560, 1.459469, -0.322957, -0.382961, 0.962851, 0.544617, -1.090333, 1.191922, -2.301647, 0.082504, -1.564297, 0.133258, 0.024619, 1.143878, 1.393599, 1.292673, -1.089038, -0.879109, -0.815245, -1.486507, -1.627000, -0.363177, 0.734727, -0.906984, 0.140965, 0.228108, 1.041279, -0.104223, 0.782667, -1.843960, 1.740561, -0.013574, 0.694218, -0.155485, -0.521172, 0.752713, 0.998398, -0.833192, -1.114559, -0.794343, 2.989994, -0.872038, 1.513704, 0.629367, -0.925364, 0.304949, 2.170120, -0.046620, -1.439427, -1.969413, 0.007699, -0.622994, 0.360708, -0.186120, 0.513979, 1.093525, 1.388947, -1.641175, -0.434575, -2.174075, 0.568396, 0.369095, -0.962749, 0.636245, -0.749850, -0.312564, -0.439927, -1.049657, 0.715777, -0.830842, 0.336457, -0.458061, 0.361679, 1.312442, -1.349914, -1.373442, 0.466411, -0.321108, -0.987542, 1.310365, 0.459285, -0.259899, -1.179171, -0.526067, -1.657148, 0.510295, 0.151148, 0.373471, -0.181669, -0.628925, 1.297304, -0.709963, 0.627065, 1.784400, -0.514238, -0.331305, 1.821596, 0.667845, 0.706016, -1.452509, -0.192294, -0.168034, 0.145840, 0.009496, -0.120101, 0.383971, -0.783377, 0.499506, 0.009345, 0.352568, -1.011090, 0.796884, -0.738463, -0.462101, 0.439446, 0.765423, 0.012124, -0.360724, 1.710252, -0.876721, 0.634070, -1.742265, 1.081704, 0.714346, -0.651518, -0.124076, -0.834885, -1.095042, 0.815158, 0.481116, -0.464446, 1.367829, -0.565797, 0.548488, -0.730504, -1.194563, 1.524745, -0.156051, -0.411893, -0.480487, 0.840294, -0.338822, -0.240886, -0.628193, 1.357250, 0.036518, 0.377764, 1.100770, -0.501338, -0.084643, 0.718565, 1.343306, 0.786453, -0.286447, 0.056912, 0.764441, 0.167947, -1.104121, 0.937350, -0.488405, 0.077020, 0.572429, -0.363019, -1.137365, -0.072138, 1.179134, -1.281425, -0.162017, 1.292157, -1.460789, -1.169910, -0.695259, 0.781697, -0.757298, -0.186544, 1.030351, 1.226103, -0.061206, 0.741831, -0.205310, 0.336452, -0.418091, 0.256129, -0.589552, -0.016107, -0.528205, 1.183622, 0.274816, 0.948890, -0.883414, -0.823517, 1.601086, -1.625964, 2.577285, -0.010679, -0.614043, -1.524519, 0.492720, -0.712786, 0.010297, -0.166608, -0.737975, -0.776431, -0.407772, 0.217062, -1.372896, -0.251997, 1.635961, 0.384630, 0.942922, 0.007065, 0.083350, 1.269261, -0.470669, 1.239913, -0.952311, 0.856264, -0.709488, -0.092519, 0.712155, -0.731621, -0.132552, 0.097545, 1.907118, 0.396839, 0.974610, -0.636824, -0.714329, 2.447124, -0.217811, 0.034559, -1.698206, 0.287549, -0.361915, -0.151098, 1.223457, -0.121801, -2.212093, 0.351750, 0.820912, 0.369526, 0.842379, 0.029458, 0.699306, -0.019367, 1.311826, 0.005036, 0.975546, -0.801337, 1.417394, -0.553596, -0.905190, 0.543119, 2.164182, 0.184621, 1.121817, -0.094439, 0.538848, -0.764849, 0.234015, 0.350500, -0.353927, 0.915828, -0.795170, 0.578837, -0.446255, 1.414809, 0.040365, 0.543634, -0.414916, -0.396937, 0.083738, -0.305781, 0.162280, -0.422275, -0.515621, 0.919775, 2.824093, 1.883923, -2.059076, 1.156116, -1.033594, 1.424248, -0.129631, 0.993868, -1.338105, 0.121313, 1.424818, -1.360097, -0.845116, -0.698107, 0.603760, 1.111564, -1.650275, -2.248919, 0.635334, 2.317605, 0.492146, 0.769590, 0.498856, -0.280956, 1.201436, -0.498265, -1.181321, -0.131460, 1.644883, -1.362115, 1.204524, -0.677628, 0.914850, -0.835515, -2.359968, -1.756582, -1.616609, 2.451912, -1.037418, -0.519811, 0.333044, 1.110450, 0.725847, -2.335431, -0.912301, 0.304967, -2.190945, -0.511443, -0.334613, 1.204966, 0.165317, -1.656046, 0.755813, -0.594507, 0.623824, 1.212355, -0.852367, -1.451164, 0.557766, -0.184797, 0.524469, -0.788076, 0.158610, 0.473008, -0.703875, -1.824585, -0.955644, -0.482006, -0.244215, 0.268331, 0.883281, -0.112941, -2.095427, -0.683533, 0.059003, -0.399347, 0.006024, -0.900482, 0.378172, 0.125599, -0.637001, -0.056601, 0.046604, -1.389300, 0.816312, -1.187900, -0.388857, -1.456877, 0.365000, -0.437971, -1.506913, -0.720490, -0.626345, 0.025915, -0.827044, 0.561066, -0.641411, -0.005865, 0.958764, 0.582838, 0.720305, 0.711929, -1.257981, 0.755007, -1.731898, 1.240253, -0.644459, -1.490373, -1.524186, 0.063530, -2.491212, 1.069354, 0.375626, 0.466196, -0.737508, -0.642321, -0.965403, 0.181980, -0.012027, -0.947776, 2.623076, 0.902594, -2.090675, 0.066975, 0.684317, -0.092737, 0.433291, 0.151832, 0.306097, -0.439875, -0.807361, 2.468966, 0.910381, 1.491696, -0.354918, 0.663040, -0.519321, -0.639173, -1.514122, -0.080023, -0.674681, -0.513976, 0.491233, -0.019003, 0.380971, -0.949059, -0.325129, 0.395044, -0.551756, -0.531165, -0.194571, 1.537157, 0.051242, -1.280902, -0.015943, 0.643221, 0.579922, -1.336749, 0.112255, 0.247440, -0.087321, 0.568656, -0.795775, -2.210391, -1.045927, -0.018885, -0.503057, -0.792914, -0.078247, -1.250512, 1.242041, 1.075042, -0.321397, -0.307762, 0.565773, -0.505933, 0.825109, -0.239967, 0.039210, -1.164223, -1.883010, 2.009194, -0.177216, -0.572038, 0.181038, 0.955104, 1.457119, 1.829673, 0.958096, 0.467236, 1.799874, 0.387139, 1.599357, -0.938158, -0.379826, 0.992256, -1.682731, 0.445734, -0.014583, -0.065345, -1.549021, 0.857328, 0.288644, 0.613711, 0.704716, -0.860672, 0.845589, 0.698174, -0.811378, 0.652019, -0.311993, 0.977202, -0.322329, 0.994609, 1.411611, -2.117161, -1.039453, -0.920591, -0.364939, -0.918867, -0.360990, -1.502650, 0.063864, 0.308797, 0.174872, 1.420781, 1.441314, -0.427689, -0.453411, -0.026318, -0.470474, -0.306527, 0.415312, -2.049282, 0.112369, -2.217676, -0.605638, -0.797510, -1.266255, -1.149408, 0.565867, 0.294566, 0.398265, 0.205364, 0.573439, 0.655674, 0.224139, -1.184827, 1.444275, 0.742321, -0.205954, -0.508863, -0.416045, 2.000826, -1.183707, 1.119605, 0.636358, -0.284115, 0.835066, -0.671253, -0.492639, 1.653319, 0.361982, 0.261258, -0.765324, -0.704395, 1.489597, -0.409022, -0.684278, 1.296253, 0.262459, -0.594065, 0.892053, 0.113591, -0.186571, 1.419554, -1.146256, -2.032616, 1.269508, 0.417317, -0.368275, -1.037489, -0.577215, -0.468349, 0.295703, -0.806165, -1.034132, 0.055423, -0.565423, 0.256421, -0.310760, 0.160878, 0.669311, -0.276824, -0.278637, -1.085305, 1.311609, -0.214098, -0.774199, -0.952059, 1.702484, 0.254200, 1.105872, 0.164157, -0.548066, 1.451453, -0.267770, 0.924385, 0.202977, 0.663506, 1.385014, -0.830456, -0.163753, 0.023945, -0.970770, 1.295719, -0.908838, 0.153189, 2.110795, 0.030225, -1.121889, -1.222903, 0.905045, -1.277809, 1.038556, 0.249766, -0.403726, 0.539607, 1.684138, 1.831428, -0.976582, 0.087286, 1.290690, 0.492419, 0.369827, -0.124068, 1.040885, -1.491401, -0.150024, -1.300743, 0.655696, 1.271876, 1.837865, 0.477435, 1.515435, -0.783233, -0.079367, 1.605294, 0.970216, -0.595700, -0.830469, 0.157640, -0.442686, -0.176556, 1.183612, 0.767809, -0.992447, 0.227132, -0.580263, 0.558280, 0.785622, -0.351400, -0.722470, 0.239416, -1.377898, -0.399519, -2.971084, -0.523780, -0.843012, -0.511529, -0.732507, -0.208483, -0.682648, 0.488962, 0.392924, -0.490841, -0.770259, -0.916399, -0.044535, -0.348905, -2.096553, 0.312618, -0.069986, -0.031483, 0.567567, -1.575987, 0.072220, 0.509980, 0.680870, 0.394275, 0.687129, -0.155187, -0.126079, -1.355249, 0.386133, -0.252273, 0.343249, 0.486025, 0.289659, 0.845483, 1.056263, 1.247721, -0.023424, -1.230134, -0.358446, 0.201851, -0.730165, -0.326684, 0.864638, 0.705886, -0.443817, 0.673669, 0.155611, -1.365210, -1.179507, -1.099509, 1.135222, 0.315041, 1.890617, -0.793469, 0.640021, -1.046628, 2.068006, -0.242118, 0.350408, -1.485754, -1.386601, 1.522136, 1.177601, -0.592218, 0.230992, 1.630994, 0.777690, -0.354331, 0.189101, -0.649541, 0.507858, -0.273123, -0.182222, 1.928086, 0.702538, -0.033511, 0.429416, -0.243823, 0.205272, -0.179475, -0.182058, -0.926379, 0.124603, -1.114894, 0.330274, -0.523904, 0.137802, 1.168966, -0.571995, -1.514846, 0.209383, -0.621317, -0.213881, -0.664374, 1.449134, 1.103543, -0.289954, 0.906567, -0.111004, -1.436180, 1.670286, -0.372349, -1.003621, -1.277356, -0.137835, -0.488894, 0.084217, 0.626066, 0.565942, -0.303904, 0.659792, -0.780545, -0.124051, -0.571281, 1.183033, -1.458519, -1.106880, -0.473537, 1.644144, -1.017864, -1.598076, 1.190213, -0.836535, -1.568818, 0.788704, 0.927541, -0.752101, 0.313344, 0.281777, 0.636353, 1.549493, 0.280524, -0.264606, -0.610554, -1.919711, 0.653319, 1.424934, -0.785417, 1.224268, -1.180971, 0.165936, 0.487368, 1.153089, 0.517848, -1.275576, 0.726610, -1.368032, -0.237849, -1.126041, 0.173694, -0.490255, -0.432427, -0.624869, 0.133623, 0.312649, 0.185147, 1.707235, -1.720660, 0.609835, -0.307185, 0.204924, -0.701712, 1.179198, -0.783892, -0.523260, 0.046386, -1.268280, -1.503855, -0.650664, 1.492274, -0.145696, 0.415971, -0.241327, 0.466000, 1.157454, 0.128617, -1.629637, -0.637176, -0.664575, 0.364718, -2.124861, 1.196481, 1.774055, 0.431801, 1.150000, 0.361367, -0.085435, -1.240195, 1.132389, -0.378835, -1.600777, -0.462424, -0.336643, -1.316186, -0.326879, 0.076930, -0.547768, -0.604841, 0.077580, 0.066181, 0.227490, -1.619251, 1.118006, 1.595455, -0.125496, 1.191157, -1.634163, -0.075634, 2.262978, -0.312201, 0.515258, 0.059529, -0.595164, -1.324728, -1.227759, 0.136685, -0.417678, 1.203606, 1.439591, 2.726557, 1.459409, -0.739902, -0.317488, 0.967969, -0.362139, -0.659066, -0.695904, -0.686681, -2.677735, 0.777344, -1.215838, 0.780265, 0.556658, 0.494166, -1.660920, 1.788701, 0.522706, -2.010412, -0.590015, 1.350011, -0.693924, 0.975793, 0.428045, 0.305442, 1.107949, 0.438695, 1.007582, -1.087590, -0.046311, -2.461139, 1.658997, 0.161683, 1.753198, 0.412367, 0.545545, 1.314341, -2.367570, 0.031012, 0.660228, -0.236705, 0.021732, -0.669543, -0.594148, 0.791439, 0.076700, 2.471543, 0.138551, -1.947648, 0.959014, 2.217317, 0.270679, 0.313646, -0.479831, 0.162036, 1.416550, -0.540616, 0.345573, 1.087326, -0.274019, 0.261633, 1.301664, -0.922612, -1.272690, -2.031605, -0.894200, -0.816444, -0.671471, 0.555713, 0.716231, -1.667320, 0.375600, -1.005561, -1.016563, -0.206470, -0.204039, -0.530330, 0.278247, 0.152441, 0.632744, -0.877953, 1.200536, 1.551752, 0.609659, -1.628131, 0.050063, -0.728106, -1.397370, 1.346165, -0.684604, -0.447864, 0.772922, -0.998592, -0.058879, 0.142974, -0.137613, -2.175337, -0.113236, -1.786672, 0.895229, 0.560018, 1.781616, 0.172600, -0.875082, 0.699555, 0.790223, 0.351233, -1.690040, -0.995523, -0.980984, -0.099059, 1.840148, -0.617950, 0.226358, -0.388735, -0.199827, -0.321202, 0.568149, -1.226010, -0.780106, -0.809263, -1.057186, 0.286066, 0.912921, 1.170311, 0.294013, -0.430193, 0.471392, 0.093757, -1.789928, -0.690895, 2.009739, -0.440292, -0.591010, -0.752697, -1.950452, -1.905393, -0.016078, 0.197080, -1.915355, -0.416469, -0.995245, -0.788576, 0.645035, 0.560849, -0.753182, 1.994099, -0.453359, 0.954400, -1.021221, 0.359962, 0.574895, 0.378318, 0.035199, -0.097529, 1.596637, -0.248035, -0.520152, -0.016553, -0.048196, 1.020556, -0.086239, 0.387346, -0.935816, -1.278336, -0.076711, -0.745448, -0.327161, -0.881434, -0.218145, 1.767851, -1.983002, 0.028666, 0.343880, 2.552683, -0.219072, -0.098383, 0.990083, 0.680412, -1.582882, 1.289372, -0.805342, 1.432774, -0.316938, 1.768718, 0.044016, -0.737437, -0.660707, -0.188507, 1.201987, 0.941607, -0.345131, 1.336218, -1.189798, 1.262702, -0.401241, 1.290309, -1.823167, 1.585083, 0.838783, 0.774985, -1.042511, -2.090751, 0.124269, -0.795024, -0.797538, 0.931702, 0.329542, 1.208447, -0.228311, 1.111298, 0.810721, 1.645589, 0.250281, -0.065167, -0.745058, 0.202196, -1.090299, -0.384741, -1.819925, -1.375296, -0.100273, 0.740362, 1.074953, 1.535626, -0.319866, 0.463111, -0.870584, -1.058462, -0.681389, -0.740061, -2.142427, 0.528938, -0.781072, 0.002958, 1.170330, -1.476504, -0.206220, -2.350513, -0.752907, 0.953063, 0.112923, -1.140730, 0.846724, 2.043769, -2.252817, -0.419277, 0.604017, -0.336120, -0.034494, -0.548516, 1.441508, 1.305745, 0.602722, -0.092164, 0.584616, 0.048808, -0.273065, -0.275118, -0.965446, -0.760297, 0.412038, -0.827024, -0.898347, 0.406026, -0.989714, 2.746835, -0.216432, 0.831026, -0.007489, 0.968373, 1.007589, -1.638642, 0.871265, 0.876579, 0.449295, 1.561519, 0.625705, -2.217768, 0.386854, -1.517621, -0.547360, 1.097745, -0.657576, -0.595142, -1.737785, -1.320253, 1.135759, 0.851784, 0.417392, -0.438072, -1.083232, 0.358709, 0.355959, -0.169862, 1.822577, -1.977698, 0.937350, -0.380408, -1.800249, 2.085992, 0.641473, 0.133226, 1.167038, 1.099830, 0.680796, -1.563612, -1.261751, -0.710462, -0.329412, 2.099457, -2.715281, -0.834858, -0.762551, 0.383127, -0.280792, 0.822590, 0.228282, 0.383899, 0.634356, 0.249231, -0.888757, -0.533496, -1.086838, -1.790170, 0.806613, -1.106673, 1.808679, -0.420361, -0.288687, 0.471998, -0.538887, 0.698892, -2.139881, 0.671664, -1.375760, 0.662905, -0.293531, 1.370349, -0.114384, -0.886915, -1.549728, -0.347021, -0.104266, -0.268895, 1.002261, 0.684305, 0.204034, -0.467146, -0.475951, -1.880544, -2.424715, -0.641136, 0.450963, -1.094303, -1.325613, 2.193413, -0.889185, -1.324216, -0.108056, 0.925173, -1.317150, 0.560328, -0.294670, 1.143298, -0.710969, -0.850945, 0.667384, -0.540053, 1.411986, 0.413841, 0.524822, -0.422901, -0.054853, 1.599552, -0.569855, 0.414951, 0.030399, -1.218638, -0.238978, -0.524193, 0.861659, 0.005022, 0.673670, 0.484431, -0.174391, -0.629718, -1.380824, -0.597543, 0.282676, 0.452901, 0.476013, 0.117948, -2.397279, -0.136835, -1.860596, -2.529751, 0.582910, -0.868149, 1.069501, 2.023673, 0.414396, -0.423402, 3.365510, 0.682345, 2.005574, 0.586835, -0.568037, -2.197620, 0.713272, 0.157667, -1.136658, -0.923565, -0.857041, 0.027589, 0.946651, -1.166997, 0.141450, -1.764942, 0.616596, 0.203131, 0.892084, -0.411506, -1.488316, -1.520469, 0.589313, -0.289657, -0.695093, -0.967629, 0.240132, 0.580963, 0.492055, 1.604860, 0.708413, -0.896701, 0.609267, 0.324537, 0.875412, 1.689012, 1.316985, 0.200579, -1.525594, 0.979660, -2.835577, 0.492330, -0.059049, 0.998389, -1.816064, -1.491397, 1.616248, -1.500978, -0.246793, 0.128212, 0.979156, 0.338202, 2.115990, -0.929127, -0.001349, 1.908698, 1.466267, 0.336205, 0.633462, 0.319305, -1.143877, 0.871177, -0.322407, 0.946998, -0.151078, -0.004548, -0.565339, -0.756891, -1.881408, 0.379964, 0.905631, -0.059628, -0.718056, 1.111951, 0.822387, -0.864100, -1.088078, -1.815400, 1.055168, -0.649688, -0.520341, -1.995433, -1.554481, -0.435070, -0.034064, 1.131726, -0.579123, -1.347430, -1.141215, -0.124311, -0.086594, -0.281484, 0.476107, -1.748589, -1.068276, 1.647245, 0.069615, -0.078227, 1.208101, 1.241545, -0.111028, 0.345575, -0.682716, 0.432327, -0.096485, -0.401960, -0.610776, 1.025829, 0.959307, -1.235978, 1.031188, -1.574948, -0.227899, 0.584832, 0.760406, 2.469717, 0.256413, 1.655118, -0.180078, 2.644947, 0.652479, 0.981664, -1.701316, 0.163683, -0.139815, -2.065104, -0.207387, 0.480101, 0.835322, -1.683494, 0.612152, 0.981000, -0.326164, 1.324524, 1.090115, -0.761424, 0.210655, 0.072510, 0.363037, -0.048188, 0.261154, -0.355165, -0.379591, -0.408861, 0.069162, 1.571172, -1.384401, 1.039511, 0.113424, -0.766459, 1.245786, 0.531509, 0.887918, -0.974149, 0.066867, 1.294011, 1.488115, 1.599605, 0.477251, -1.103884, -0.393892, 1.252033, -0.151463, -0.504116, -0.202424, -1.702858, 1.006998, -0.249685, 2.179104, -0.154331, -2.121810, -0.891202, 0.515123, -0.564630, 1.267366, 1.372638, -0.376694, -0.448909, 1.245027, -0.475679, -0.172053, -1.242728, -0.869827, -1.112337, -0.743300, 0.174500, -0.662093, -0.482210, -0.019174, -0.613502, 0.451104, -1.466087, -1.546249, 0.481771, 0.901356, -0.586204, -0.160295, -0.139245, -1.274105, 0.254188, -1.718351, 0.891518, -0.537422, -1.102405, -0.069243, -0.461786, 0.956110, 1.053045, 1.169975, 0.460827, -0.627802, 1.079890, 0.688306, 0.621129, 0.540451, -1.079225, -0.359015, -0.101863, 0.766714, -0.731075, -1.282088, -0.469996, -0.526358, -1.218683, 0.319503, 0.650002, 0.248635, 0.156987, -0.036215, -1.264908, -0.349433, 2.733280, 0.605436, -2.182984, -0.535243, 0.137908, 1.634333, -0.032955, 0.070663, 1.881920, -0.015118, 0.094975, -0.840910, 0.338012, 0.370459, -0.851801, 0.954864, -0.324575, 0.957873, -0.385518, 1.634035, 1.096395, 1.313862, -0.982811, -1.718714, 0.327434, -1.758455, -0.099843, -0.542603, 0.931352, 0.615328, -0.209592, -0.138691, 0.952544, -0.803807, 1.022720, -0.995755, 0.469721, -0.639294, 0.423762, 0.983858, 0.334180, 0.099188, 0.194572, 0.117675, -0.307973, -0.052692, -0.887336, -0.048526, -1.203387, 1.136108, -1.284760, -0.711396, 1.423754, -1.286746, -1.063178, 0.293632, 0.071649, -0.948240, -0.666323, 0.295953, 0.005905, 0.948598, -1.290044, 0.045857, -0.198361, -0.376395, -0.672173, 0.285037, -0.058442, -0.813423, 1.315453, -0.747336, 0.123433, 0.318759, 0.868046, -1.456905, -0.366207, 1.892226, 1.258285, 1.083913, 1.103781, -0.450662, 0.373093, 1.912441, -0.323160, 1.196849, 1.032394, -0.489225, -0.611835, 0.646563, 1.305835, 0.314645, -0.895626, -0.259233, 0.101800, 1.312914, 1.129141, 0.343941, -0.692631, -0.685989, 0.044296, -0.424293, 0.498901, 1.196001, 0.213762, 0.515535, -0.523633, 0.063178, 1.522725, 0.532717, -1.690319, -1.239101, -2.257515, 1.777094, -0.909916, 1.293131, 0.264584, 2.153925, -2.007944, 0.552625, -0.763890, -0.562035, -0.953106, -1.863531, -1.204616, 0.091707, 1.100253, 1.077512, -1.864751, -0.048694, 0.440074, 0.365932, -0.187143, -1.357357, -1.749817, 0.693002, 2.213509, -0.562541, -0.956100, 0.296205, -0.342402, 0.016615, -0.714624, 1.392855, 0.398274, 1.376125, -1.112563, -2.039956, -0.501882, -0.628819, -0.274327, -0.069416, -1.093633, 0.774201, 0.095567, -0.170180, -0.667728, -1.652667, -1.280517, 1.217072, -1.523037, 0.237479, -0.681775, -0.670266, -0.385816, 1.015591, 1.445426, -0.430446, -0.278403, -1.610721, 0.380949, -0.643644, 0.282753, 0.424551, -0.410483, 0.455569, -0.464155, -1.521376, -1.357681, 1.755529, -0.450180, 0.578626, -0.360625, 1.117646, -0.320945, 1.237796, 0.596200, -1.057519, -1.374348, 1.234651, -0.738660, -0.596546, 0.169076, -0.254177, 0.094557, 0.611700, -1.091182, -0.767056, 0.812085, -1.293561, 0.433524, 1.517909, 0.311327, 0.255798, -0.159060, 0.021957, 0.033504, 0.721222, -1.024611, 1.300561, 0.522489, -1.989534, 0.350933, -0.475699, -1.926994, 0.794393, 1.638186, 0.131138, 1.596888, 0.351886, 0.811365, -2.126849, -1.773102, -0.385086, 0.288300, 0.422061, -0.127214, -1.815054, -1.704918, -0.628168, -1.850733, -0.279316, 0.623252, -0.632217, -0.434341, 0.589068, -0.051822, 0.658519, -0.747813, -0.879590, 3.326272, -0.961751, 0.730675, -1.017394, 1.260736, 0.300467, 0.560240, -1.309674, -0.420158, -0.369774, -2.090397, -0.565354, 0.046129, 0.849049, -0.460684, 0.091789, 0.205908, -1.132166, -1.973450, -1.186814, -1.622404, -1.758816, 1.202013, -0.377011, 2.403231, -1.590112, -1.032344, 0.972198, -0.654387, -0.351407, 2.172723, 0.626657, -0.219501, -0.203482, -0.720068, 0.695508, -0.680560, 0.350919, -0.009336, -0.602829, -0.523066, 0.687998, 0.761637, 0.007375, 0.551127, -0.640848, 0.760267, 0.996246, -0.988837, 0.118537, -1.512689, -0.967337, 1.052003, 0.335907, -1.059500, -0.181654, 0.338329, -0.803241, -0.196976, -1.121395, -0.975595, 0.374180, -0.605473, 1.275259, 0.432008, -0.588684, -0.929118, -0.009496, 1.351648, -0.300524, -0.351779, 0.103595, -0.490596, -1.535599, -0.437618, -0.531483, 1.320316, -0.746982, -1.977622, 0.274763, 0.659368, 0.265058, 0.393151, 0.948197, -1.527902, 1.070292, 0.531644, -0.025967, -2.585584, 0.109236, -0.349427, 0.714527, 0.081005, 1.599536, 0.364819, 0.504110, 0.134927, -0.042656, -1.741699, -0.427442, -0.570640, 0.570292, 1.048239, -0.738686, 0.886855, -0.218045, 0.644869, 0.126317, 0.176439, -0.186015, -0.142634, 1.140198, -2.284539, -1.304675, -0.825940, -0.591909, -0.024776, 0.638917, -1.677299, -0.661704, -0.230292, 0.168203, -0.132978, -1.292803, 0.600158, 0.141014, 1.583463, -0.652423, -0.430009, 1.442691, 0.811679, 1.069620, -0.649406, 0.064184, 0.138485, -0.521861, 0.966340, 0.315617, 0.746724, -0.507305, -0.424242, -0.379260, 1.918421, 0.404286, -0.063935, -1.416665, -0.802534, -2.562267, -0.019566, 0.646719, 0.482523, -1.075180, 0.549775, -0.805887, -0.448409, 0.810043, -0.201821, -1.662197, 0.781888, -1.562957, -0.251527, -0.135668, -2.216716, 0.572576, -2.239706, 0.507306, -1.782985, -1.791312, -0.365453, -0.201207, -1.364960, -1.356800, -1.161624, 0.901004, -0.053705, -1.299121, -0.758874, -0.464280, -1.956964, -1.210469, 0.290738, 0.357532, 0.098175, -0.914227, -0.410533, -0.063066, -1.431780, 1.307595, -0.255819, 0.920684, 0.839122, -1.104104, 1.509767, -0.205813, -0.154908, 0.767213, -0.094795, 1.296136, -0.443297, -1.138982, 0.501735, -0.852770, -0.812613, 1.194576, -2.665832, -0.799391, 1.358673, -2.086300, 0.499290, 0.748209, 1.179608, 0.699183, -0.616288, 0.183494, -0.904054, -0.491022, -0.143933, -1.115812, -0.189929, -1.065354, 0.046956, -0.822499, 0.701307, -1.420680, 0.181819, -1.173984, 0.105723, -0.447377, -1.163066, -1.672108, -0.566332, 0.326219, -0.011615, 0.604640, 0.181881, -0.291125, -0.262693, 0.532989, 0.243873, -2.278914, 0.378499, -2.177700, -0.050487, -0.423321, 2.964864, 1.611710, -2.748098, 0.055403, -1.072288, 1.405921, 0.622425, -0.810689, -0.105351, 1.467777, 0.238425, 0.699128, -0.790384, 0.429293, 1.989825, -0.325836, 0.475885, 0.963313, -1.548403, 0.989366, -0.977546, 1.001289, 1.094308, -0.061254, 0.716554, -0.259068, -1.026794, 1.200617, 2.348669, 0.884227, -1.173520, 1.361217, -0.132846, 0.886013, 0.755648, 1.097248, 0.904229, -1.964036, -0.677520, -1.076012, 0.531972, -0.285703, -0.220560, -1.324212, 0.676223, 0.889158, 0.211189, 0.201764, 0.195226, -1.678255, -0.592627, 0.944011, 0.102422, -1.166668, 0.691240, 0.816047, -0.466195, -0.215434, -1.532484, -0.525226, -0.541634, 0.331564, 1.496379, 0.007882, 0.267803, 0.116316, -1.200258, 1.241892, 1.654223, 0.501049, -1.001680, -0.232856, -0.534538, 0.816728, -0.733738, -0.379755, -0.028850, -0.293135, -1.180674, -1.255911, -0.362506, -0.343649, -1.515994, 2.508415, 0.628740, -0.091337, -0.210417, 1.485599, -2.606368, -0.152286, -0.355858, 0.616820, 0.214789, 1.067787, -1.462990, -0.220144, 0.323410, 0.554181, -0.247375, -0.619222, -0.097113, -1.130752, -1.059527, 0.354404, -0.867502, -0.574209, 1.064287, -0.701589, 1.160461, 0.079184, -0.769385, -1.034086, -0.402912, -1.754543, -0.496846, 0.996719, -0.437931, -0.465567, -0.087749, 0.803148, 1.478224, 0.069322, -1.048425, -0.156366, -0.911584, 0.189066, 0.382192, 1.911009, 0.425621, 0.850026, 0.846915, -1.179356, 0.727010, 0.827595, 0.410849, 1.371772, -0.606145, -0.080613, 1.102135, 0.026705, -1.231639, -0.953569, -0.448215, -0.915990, 0.762368, 0.827003, -0.029055, 0.762329, -0.579281, 0.249816, 1.436914, 0.228266, 0.483711, 0.918707, -0.732941, 0.974577, 1.192704, 1.304704, 1.280495, 0.454713, 1.910975, -0.420849, 1.500076, 1.232506, 0.397188, -1.325852, 0.177486, -0.520000, -0.754956, 0.958913, -0.681294, -0.229633, -0.346341, -1.254670, 2.325723, 0.929674, -2.462046, -1.923749, 0.181683, -0.518890, -0.296452, 0.824116, -0.189372, 0.500839, 0.203966, -0.498178, -0.859768, 0.249729, 0.139699, 0.399916, -0.036136, -0.679596, 0.636561, -0.736321, 1.960231, 0.282792, 0.173209, -1.663080, 0.966210, -0.275866, -0.434864, -0.298571, 0.274940, -1.463957, -0.428047, 0.327412, -1.420246, -1.283784, -0.072660, 1.565956, -0.782935, 0.218355, 0.324207, -0.289147, 1.158334, -1.163833, -0.824748, -0.999101, 1.269441, -0.267956, -1.118836, 0.709604, 0.309737, 1.385169, -0.189328, 0.299190, 0.224285, 1.104959, -1.813469, -1.524392, 0.350099, 1.329354, -0.484162, -2.297920, -0.826873, 0.801493, 1.033009, 0.405450, -0.230036, 0.116736, 0.131545, -0.186365, -0.042283, -0.932860, -0.690057, -0.741857, 1.065376, -0.759045, 0.068818, 0.353222, 1.617720, 1.114845, -0.608284, 1.118746, 0.724212, -1.559718, -0.173792, -0.313056, 0.074559, -0.603105, 1.789751, 0.595971, -0.819520, 0.281272, -0.476995, -1.010833, 0.229635, -1.849665, 0.864481, -0.216551, -0.034766, 2.420255, 0.349244, 2.043260, 0.427657, 0.932241, -2.422338, -0.805430, 0.021119, -0.426717, -1.000772, -0.633513, -1.831402, -0.333146, -1.220375, -0.191128, -1.276040, -0.770326, 1.576051, -0.271034, 1.414798, 0.832555, -0.266150, -1.477493, 0.857825, 1.804461, 4.130207, 0.239867, 1.543715, -0.496270, -0.017649, 1.490691, 0.328614, -0.138745, 0.413253, -0.522791, -0.744054, -0.205437, 0.620186, -0.344427, -2.035611, 0.849596, 0.948447, 1.025948, 0.996796, 0.196479, -0.790346, 0.804284, 0.280843, -0.703696, -0.082807, 1.527246, 2.337364, -0.767139, -1.486588, -0.585225, -0.496735, -0.196173, 1.656400, -0.755068, 0.721025, 0.505150, 0.093764, -0.214065, -0.644444, 0.762856, -0.267866, -1.162107, -0.433391, 0.006584, 0.469195, -0.530328, -2.336403, -1.424684, 0.452840, 0.921251, -0.048104, -1.530046, -0.008502, -0.678213, 0.596110, -0.804504, -0.099055, 0.260235, -0.252246, -1.425888, 1.595043, -1.171057, -0.530394, 0.700477, 1.433159, 0.647698, -0.310902, -1.127235, -1.803936, 0.973383, 1.165033, -0.934748, 0.489157, 0.463883, -0.172083, -0.405608, 0.316482, 0.767434, -0.668231, 0.076947, 0.958626, 0.608010, -0.731403, -0.576228, -0.387127, -0.179981, 0.193513, -1.338057, 0.193783, -0.792103, 1.634757, -0.785151, 0.602284, -0.028170, -1.098832, 0.350796, -0.936700, 1.519341, -1.453602, 0.800259, -1.211707, 1.356336, -0.219330, -0.023373, -1.704031, -1.104505, 0.226076, 0.040124, -0.948625, -2.774177, 0.617655, 0.447202, -0.987279, -0.634783, 0.103508, -1.135967, 0.517512, 0.291683, -2.054892, 2.244324, 1.370581, 1.970615, -0.939026, -1.674758, 0.257961, 0.225425, -1.919457, 0.476954, -1.071607, 0.611884, -1.612559, -1.132235, -1.026179, -0.533038, 1.272140, -0.257043, -1.253260, 0.245808, -1.014841, 0.279744, -1.814775, -1.127045, -1.419677, 0.376369, 0.591224, -0.458866, -0.716003, -0.964200, -0.383081, 0.179936, 1.216983, 0.958687, -0.994106, 0.778144, 0.251646, 1.697774, 1.387842, 0.813823, -2.525960, 0.370418, -0.205953, -0.084161, -0.832263, -0.541393, -0.574338, -1.120311, -0.872154, 0.035485, 0.053247, -0.053344, 1.038644, 0.712385, 0.794505, -0.030323, 1.516880, -0.390367, -0.199084, -0.394014, 2.235563, 0.092503, -0.302474, 0.115420, 0.120407, -0.425892, 2.012095, -0.292872, -0.326430, 1.081680, 0.102949, -1.784114, -0.973225, -0.387002, 0.820568, 0.045591, 1.530530, -0.565542, -1.143308, 0.021528, 0.156963, -0.732662, -0.751316, -0.089788, -0.635457, -0.040644, -1.117088, -1.937384, -1.243058, -0.114646, 1.289554, -1.441474, -0.484146, -0.798555, -0.457454, 1.190964, -0.641817, 0.564035, 0.106007, 0.094236, -0.753865, -1.042466, -0.989856, -0.295683, -0.706202, -1.169450, -0.460193, -1.657395, -0.841694, -0.995539, -0.358772, -1.664882, 0.570838, -0.396289, -1.731477, -1.115403, 0.620929, 0.061335, 0.399668, -0.068127, -1.585043, -0.701610, 1.284485, 0.952493, 1.419603, 0.247697, -0.100541, 0.713978, -0.006986, 0.702984, 0.159201, -1.497845, 0.154597, 0.162456, -0.939554, 1.490744, -0.332034, 0.977357, -1.559501, 0.866462, 0.694334, 0.087797, -1.824179, 1.325368, 0.730660, -1.234466, -0.703555, -0.656350, -0.652637, -0.902969, -2.319799, 0.871028, -1.552981, 0.833205, 0.895942, 0.251900, 1.552731, 0.354995, -0.553135, 0.710911, -0.582761, -0.638968, 0.066044, 1.636780, 1.402966, -0.262480, 0.059942, -0.771936, 0.458813, -0.581053, 1.514566, -0.373376, -0.635316, 1.723701, -0.319360, 0.079383, -0.695946, 0.552839, -1.008440, -0.413302, -0.011188, -0.671497, 0.217848, 1.610889, 0.494483, -0.155197, -1.746254, -0.218598, -0.824741, -1.004146, -0.259388, 0.950771, 0.998660, -0.069742, -0.789814, 1.255958, 1.008365, 0.720721, -1.145533, 0.297605, -1.335619, -1.139722, -0.754910, -1.285328, 1.704588, -2.935427, 0.558715, -0.207603, 0.019552, 1.065160, -0.670505, 0.118061, 1.883379, 0.194770, 0.455807, -0.454709, 0.875503, -0.072469, 0.336244, -0.134423, -0.324554, -0.140578, 0.657979, 1.918190, 0.633870, -0.296094, -0.039935, -1.658460, 1.233894, 0.438655, -0.562516, 0.589375, 1.154545, 0.953974, 0.406260, -0.346270, 2.092486, -0.226207, -0.323744, 1.271546, 0.326654, 0.620056, -0.088792, 0.687579, -0.610112, -2.305884, 1.035462, 0.957462, -1.229826, 1.101536, -1.357840, 1.136547, -0.033601, -0.560270, -0.718953, 0.175790, -1.112367, -0.348648, 0.767139, -0.647391, -1.114609, 1.195654, -0.250543, 1.967953, 1.025841, -0.476287, -0.211184, -0.899513, 0.831512, 0.330946, 0.703301, 0.475542, 0.206674, 1.011727, 0.720259, -0.710573, 0.453554, 0.596722, 0.921845, -0.487315, -0.605008, 0.772409, -0.191312, -0.690173, -1.238858, 0.438486, -1.187214, 0.537621, 1.885140, 0.403860, -0.171882, -0.238482, -0.383263, -0.632753, 0.339261, -1.671580, -0.111760, -2.289896, 1.533002, 0.618681, 0.996485, 0.614050, 1.264215, -0.790580, 1.127925, -0.038441, -0.200495, -0.322968, 0.642345, 0.931459, 1.031330, -0.087173, -1.137137, 2.167655, 0.053971, -2.000159, 0.250566, -1.785509, 1.340821, -1.530557, -0.324439, 0.588352, -1.982796, 0.707953, -1.464408, -0.056328, 1.742646, 0.175610, -0.190105, -1.070601, -0.511225, 0.131527, -1.180681, 1.042335, -0.776898, 0.895998, -0.313644, 2.331589, -1.112329, 1.270100, -0.366736, -0.434087, -0.810905, -0.026635, 0.497211, 0.684384, 1.741307, 0.616157, -1.282660, -0.120078, 0.987783, -0.168482, 0.723899, 1.038838, 0.100580, 0.029448, 0.144325, 0.073713, 1.574727, 1.177462, -0.051801, 0.865571, -0.324303, 2.109416, -0.107176, -0.376570, 0.686553, -0.262115, -0.150045, 0.978806, -0.265865, 1.750817, -0.519104, -0.418066, -0.484084, -0.821681, -2.023824, 0.641041, 1.435649, -1.512143, -1.894185, 0.067978, 0.559519, 1.192820, -0.225480, 2.114467, -0.097792, -0.461523, 1.083582, -0.597585, 1.228360, -0.321451, -0.659091, -1.595330, 0.058044, 0.350588, 0.021272, 0.487109, -1.692837, -0.806641, -0.212023, -0.066364, 0.739048, -0.062819, -0.733062, 0.803858, -0.623208, 0.404414, -0.731762, -1.420083, -0.025725, -0.398996, 1.446463, 0.863140, 0.314338, 0.133996, 2.370759, 1.478229, 0.425683, -0.752016, -0.879089, -0.643364, 0.110096, -0.991735, 1.316670, -1.112914, 0.563816, -0.654088, 0.473336, -0.009078, -1.340841, -1.323081, -0.686711, -0.235782, 0.225756, 0.293093, 0.127440, -0.069312, -0.511438, -0.119174, 0.278989, -0.257616, 1.174912, 1.910318, 1.846705, -0.485785, -0.110256, 0.174367, -0.134730, 0.725907, -1.468874, 1.246396, -1.046981, -0.594833, -1.276122, -2.771809, -0.721197, -0.482600, -1.567459, -0.481347, 0.674979, 1.274488, 2.423560, -0.267976, -0.793804, 0.001143, 0.736860, 0.107118, -1.235729, -0.577313, -0.734275, -0.347611, -1.187458, 0.919333, 0.560804, -1.156626, -1.012794, -1.061025, -0.532376, 0.083541, -0.132204, 0.129508, -1.381266, -0.240195, -1.444914, 1.165820, 1.439741, -1.324961, -0.654943, 0.655981, 0.243397, 1.198244, -0.486708, 0.560428, 0.137818, 0.823235, 1.164202, 0.077050, -1.022000, 0.558753, 1.074133, -0.575440, 3.846572, -0.861372, 0.878048, -0.443052, 1.340118, 0.546710, -0.702909, -0.145654, 0.811572, -0.272769, 1.172947, -0.046379, -0.627028, -1.117964, -0.399355, -1.573482, 0.089649, -1.009108, -0.747467, -1.852126, 1.218465, -1.799042, 0.420656, 1.315488, -0.044988, -0.329546, -0.729793, 0.165016, -1.077543, 0.190401, 0.498616, -1.555304, -1.564459, -0.649043, -0.621572, -0.901994, -0.437664, 1.572078, 1.090919, -0.347152, -0.097114, -0.008492, -0.088418, -1.314030, -0.852944, 0.515324, -0.138421, -2.133178, 0.257018, 1.494010, -0.666710, 1.053039, 1.119645, -0.233466, 0.926570, 0.628476, -0.732007, 2.396122, 0.764430, 0.452404, -0.781547, 1.157910, 1.192325, 0.069585, 0.440461, 1.527722, 0.724217, 0.015602, 1.229416, -0.284238, -0.283669, 0.043592, -0.231933, -0.428403, -0.755100, -0.398849, 1.700462, -1.345873, -0.182431, -1.399765, -0.186655, -0.409987, -0.649845, -0.045203, 0.429021, 0.262803, -0.399553, -0.871401, -1.168656, 0.738563, -0.049850, 0.892668, 0.132433, 0.610917, 0.137063, 0.433859, 0.514240, 0.695130, -0.335846, -0.581702, 1.686332, -0.009841, -1.626923, -0.814719, -0.487415, 0.580132, 0.447047, 0.999129, -2.298136, 3.174378, 1.590696, -0.602044, -0.655543, -0.064960, -1.081756, 0.217372, 0.213395, -1.828219, 0.915394, -0.687638, 1.220056, 0.645803, -0.522768, 0.291591, 1.527654, 1.557375, 0.140858, 1.160296, 0.570901, -0.350977, 0.075466, 1.235740, 0.417247, -3.039995, 0.729048, 0.148605, -0.266659, -0.124755, -0.319608, -0.222303, -0.540852, -1.181588, -0.313741, -0.477109, -0.314955, 0.297445, 1.841823, 0.674925, -0.054718, 0.447850, 0.370269, -0.639421, 0.665439, -1.082406, -0.446864, -0.012731}, + { 0.149201, 0.607848, 0.571009, -0.942545, 0.771453, -0.212226, 0.058464, 0.774646, -1.963408, -0.465182, 0.359998, 0.894922, -0.886981, -0.247132, -0.003471, -1.460085, -0.663854, 1.135019, -1.642478, 1.008311, 0.731790, 0.450006, 0.773482, -0.061462, 0.052153, 0.678651, 0.573115, -1.208215, 1.909858, 0.421693, 0.929735, 0.864259, -1.141738, 1.223686, -1.109217, 0.984746, -0.978247, -2.176719, 1.648515, -1.188535, 2.736112, 0.333844, 0.226158, 0.846350, 0.236238, -0.281712, -0.535999, 1.093299, -0.052205, 3.367359, -2.017437, 1.276153, -0.521063, -2.192487, -1.224024, -0.703188, -0.615570, -0.250131, 0.756666, -0.393562, 1.301098, 1.452987, -0.375948, 0.905563, 1.463920, 0.264936, -0.888188, -0.901797, 1.230940, -0.964646, 2.814580, 0.578438, 0.639298, -0.244537, -0.186156, 1.481897, -1.301719, 0.163302, 1.538474, -0.186097, 0.752612, -0.556733, 0.261054, 0.790453, 0.107251, -0.094122, 0.452418, -0.334284, 0.172710, -0.817803, 0.808597, -0.092870, -1.813319, -0.654746, -0.620809, -0.079379, 0.193466, 0.049231, 0.065597, 0.138429, -0.059022, 1.448003, 0.039527, -0.667836, 1.358580, 0.417994, -0.252500, -0.881600, 0.494864, 0.688595, 2.067117, -0.531967, 1.112465, 0.374695, 0.565772, -0.144289, 1.995160, 0.737967, 1.488846, 1.175379, -0.916523, 0.086072, -0.966446, -1.253574, -1.060612, 2.033441, -0.384185, -0.863025, 0.720623, -0.690059, 0.576666, 1.499698, 0.373314, 0.620510, 0.338523, -0.265990, 1.055906, 1.529830, -1.118868, -0.871804, -1.769321, 0.034801, 0.219992, -1.281552, -0.884433, 1.567363, -0.157295, -0.019330, -0.898638, -1.331085, -0.655498, -0.594928, -1.130312, 1.325868, 0.714797, -0.303128, 1.538395, -0.498912, 1.095302, 0.852048, -0.007978, 1.772600, -1.026688, 1.601207, 1.036925, -0.128326, -0.172162, 1.193384, 0.022913, 0.574300, 0.321012, -2.067840, -0.552600, 0.651050, 1.105677, 1.871612, 2.019039, -1.303980, 0.084590, 0.691413, -0.960544, 0.372917, -0.245415, -0.455332, 0.661441, 0.441852, -2.310091, 0.252972, 1.067785, 0.989216, 0.821433, -1.836955, -0.568899, -0.115600, 0.060218, -1.829445, 0.199915, 1.806750, -1.454021, -1.403841, -0.193774, -0.321435, -0.907775, -0.477136, -0.474733, 1.683291, -0.153215, -0.081198, 0.615531, 0.249131, -0.255322, -2.091997, 0.078301, 0.850972, 0.619311, -0.203184, 0.171706, 0.839984, -2.222275, 1.399564, -1.318785, -0.274813, 1.207025, 0.841960, 0.825615, -0.427766, 0.481194, 1.869943, 0.311663, 0.472879, 0.741636, 1.143243, 0.147972, -0.279252, 0.075799, -0.669681, 0.644069, -0.029855, -2.389512, -3.206553, 1.216014, -0.097270, -1.907906, 0.396996, 0.624075, -0.714592, 0.840651, 0.562035, -0.656425, -0.271064, -0.677881, -1.008011, -0.275070, -0.845542, 0.366825, -0.406152, -0.061023, -0.590583, -1.158842, 0.481301, 0.972210, -1.209690, -0.068309, -0.898814, -0.460966, 0.374733, 1.239942, -0.464876, -1.255529, 0.775415, -0.080818, 0.292881, -0.877401, -0.312969, -0.609988, -0.779694, -1.169048, 1.024208, -1.249409, 0.975934, -0.148221, 0.120674, -0.007175, -0.219167, 1.167609, -0.543154, 1.892106, -0.689056, 1.831157, -0.872480, 0.659092, -1.905825, 1.356023, 1.868800, -0.657159, 1.051402, 1.289349, 0.066189, -0.321068, 0.200492, -0.248553, -1.297939, -0.623279, -0.764325, 0.889382, 0.441994, 0.118719, -0.309078, 1.833939, 0.156771, 0.499061, -0.197711, -1.751932, -0.770309, -0.754101, -1.275840, 0.882715, -0.974121, 0.712038, -0.921530, 1.934155, 0.602529, -1.815789, -1.121674, -0.686113, -1.004526, -0.239342, 0.363483, 0.863386, -0.698767, -1.856703, 0.873302, 1.689974, 0.458752, 0.821154, -1.495647, 0.244811, -0.507818, 0.122410, -0.906406, 0.517280, 1.502776, -0.740901, 0.133321, 0.530318, -0.411730, -1.241181, 0.193992, 0.124217, 0.078860, -0.270026, -1.332654, 1.425538, -0.594217, -0.488097, 1.004978, 2.255169, 0.277357, 1.256154, 0.570166, 0.509349, 1.390481, -0.487943, -0.751929, 0.400332, -0.004789, 1.042529, 0.082396, -0.730154, 0.786876, -0.576375, -0.929996, -0.732195, -0.942859, 0.850259, 0.998232, 2.242853, 2.980645, 0.758255, 0.081561, -0.959155, 1.420790, 0.302579, 0.527391, -0.213157, 0.788526, -2.607101, 0.579846, -0.870390, 1.622177, 0.936404, 1.838332, -1.761127, -0.649259, 0.305144, -1.543134, -0.234822, -0.007515, -1.297053, 0.204279, 1.541178, -0.173477, -0.469038, 0.383388, -0.939410, -1.677596, 0.206556, -1.113159, -0.516805, 0.208911, -0.428605, -1.174720, -1.789550, 1.406195, 0.892721, -0.144223, -0.830940, 1.587967, -0.705649, 0.503895, -0.427511, -0.631396, 1.619334, -0.305129, 0.750430, 0.897113, 2.013000, 0.029861, 0.262749, -0.668467, -0.121179, -0.391992, 0.277025, -0.460582, -0.557721, 0.554165, -0.868609, 1.665734, 0.016450, -0.846482, 0.969759, -2.007837, -0.127694, -1.832206, 0.765123, 1.592913, -0.559585, 0.710764, -1.117246, 0.728141, -1.255409, -1.403969, 0.063065, 0.337141, -0.784380, 1.106666, 1.465880, -1.355253, 0.885339, 1.505471, -0.651014, -1.665309, 0.307230, 0.442420, 1.216134, 0.437539, -0.826053, 0.207671, -0.212459, 0.408485, 1.968118, 1.045585, -0.347560, -0.019622, -2.069206, 0.976641, 0.797163, -1.203767, 0.098658, -0.906575, -0.328720, -0.812596, -1.147026, 0.256450, -1.648167, 1.900817, -0.167441, 0.742017, 0.411506, 1.129699, -2.890979, -1.246854, -0.517934, -0.586635, -0.477197, -0.455523, -0.266780, 0.636626, 1.171635, -1.040942, 0.772996, 1.604347, 0.820293, -0.239571, -1.569811, 0.554919, 1.256917, -0.029403, -0.461808, -1.464663, 0.707973, -0.988706, -0.271798, 0.656110, 0.221315, -0.511569, 0.049245, -2.632035, 2.090562, -0.666088, 0.436966, -0.550321, -0.792834, 0.018997, -0.346333, -0.702599, -1.068031, 1.088632, 1.970409, -0.037554, -0.800670, -0.757214, -0.797822, -2.528800, -0.970495, 0.060879, 0.111033, -0.334404, 1.172868, 0.288381, 0.822279, 1.194054, 0.168564, -1.689323, -2.573836, 1.303644, 0.126792, 1.538782, -0.563871, -0.359045, -0.768851, 0.731580, -0.550312, -1.098872, -0.073123, 0.429948, -1.089006, -0.014579, -0.641638, 1.249358, 0.923591, 0.325363, 0.048936, -0.140937, 0.940481, -2.177061, 0.413712, -0.113942, -0.109343, 0.929529, 1.354857, -0.264771, 0.225420, 0.386258, -0.146628, 1.099721, -1.330830, -0.293051, 0.862432, -0.167110, 0.524110, -0.116484, 0.386106, 1.191900, -0.347398, 1.892673, 1.150784, -0.715381, -1.152122, -0.104430, -0.092699, 0.539072, -0.281348, -0.860378, -0.791183, -0.367574, -0.169019, 0.731042, -0.348181, -1.302638, 0.772865, -0.343593, 0.384028, -0.632844, -1.505481, 0.117213, 0.743553, -0.267846, 0.015909, -0.422074, 1.379979, -0.159648, -0.486311, -1.567048, 0.800332, 1.029405, 0.047318, 1.640302, 0.871179, 0.373822, -1.415608, -1.521852, -1.163931, 0.756666, -0.241035, 0.948581, -1.587851, -0.780195, -1.124518, 1.415949, -0.498076, 0.840156, -0.351807, -0.823556, 0.087739, 1.069030, -0.615327, -1.719704, -0.450357, 1.284308, -0.236312, 1.133519, -0.318956, 1.154290, -1.389853, -1.205672, -0.012555, -1.205553, -0.637079, -1.156984, -0.197456, 0.141278, 0.367560, -1.127421, 1.330321, 1.129526, 0.261183, -0.462119, -0.888573, -1.259332, -1.395158, 0.535289, 0.713098, 0.761988, -0.167740, -0.544483, -0.837973, -1.138644, -0.175192, -0.712883, -0.406908, -2.441294, -0.661088, 0.094047, 1.590959, -1.042496, -1.725298, 0.848982, 1.612410, -0.227921, -0.080204, 1.175641, -0.679755, 0.638943, -1.603580, 1.430700, -0.891440, 0.439303, -1.065962, 1.672859, -0.007660, -1.387395, 1.641540, -0.295314, -0.819496, 1.323874, -0.053013, -0.056089, 0.775836, 0.987990, 1.530613, -0.564851, -0.030366, -1.585126, -0.028851, -0.188450, -0.480429, 1.039645, -0.776626, 0.144817, 2.396612, -0.528075, -1.227692, 0.299480, 0.093125, 0.629944, -2.456309, -0.453557, -0.475528, -1.229707, 1.229101, -1.008786, -0.880102, -1.077733, 1.803171, 0.212662, -0.848684, 0.167281, -1.137621, 0.439724, 0.631176, -0.598245, -1.577634, -0.596036, -0.365109, -0.295102, 1.920111, -0.359934, 0.276507, 0.961542, 0.257167, 0.167061, 0.858438, -0.322175, -2.071193, -0.980438, 0.987964, -0.052062, 0.604191, 0.855799, -0.494034, 1.588121, -0.032285, -1.015721, -1.651904, 0.078028, 0.915060, 0.828652, -1.146578, 0.070168, 1.461110, -0.151155, -1.137509, -0.761922, -0.950942, 1.997504, -0.361643, 0.491155, -0.040032, 1.260619, -0.251878, -0.290040, 0.382053, 0.083459, -1.050812, -2.145545, 0.279021, -0.067025, -0.161817, -1.446462, -1.217072, 1.204879, -0.592065, -1.081154, -0.850625, -1.173197, -0.062487, 2.118081, 0.506652, -0.449009, 1.751553, -0.321272, 1.507819, -0.314958, 0.134979, 1.384565, -2.955125, -0.283867, 0.078814, -0.211898, -0.226967, 0.573109, 0.200208, 1.605955, 0.248580, 0.757331, -0.255479, 1.307199, 1.010151, -0.326622, 0.792750, 0.051186, -0.376606, -0.317637, 0.447989, -0.723224, 0.554832, 0.640609, -0.056975, 1.801513, 0.414428, 1.088714, -0.283683, -1.499129, 1.398144, -0.296018, 0.610458, 0.884158, -0.836216, -1.489107, 0.431303, -0.359063, -0.007515, -1.010872, -0.453721, -0.374391, 0.994950, -1.359902, -0.786621, 0.318597, -0.386631, 0.185353, -0.350736, 0.185003, -0.637703, -0.480557, -0.409032, -1.106753, 0.483084, -1.171951, -0.105414, -0.555543, -1.197392, 0.651101, 0.045685, 1.834311, 1.104711, 0.999883, -1.422899, 0.270038, 0.174272, 0.312557, 0.598122, 0.427074, -0.036128, -1.154482, -0.866233, 1.695838, -0.316850, 0.158765, 0.187985, -1.011472, -1.478120, 0.137634, -0.338142, 1.644206, 0.902956, 0.521377, -0.511349, -0.945625, 0.121090, 0.620034, -1.820078, -0.105173, -0.675237, 0.864920, 1.067501, -1.228684, -0.755016, -0.628408, 0.375815, -0.697170, 0.220100, 0.399190, -0.211824, 0.130923, 0.044351, -0.282484, 0.952266, 0.611868, -0.007632, 1.163557, 1.955808, 0.758852, -0.990990, 1.202379, -0.529358, 1.166041, -1.224939, -0.558407, 0.464950, -0.245553, 0.981848, -2.755735, 1.109626, -1.092044, -0.535157, -1.187582, 0.437637, 0.340411, 0.207799, 1.382684, -0.099487, -0.924974, -0.604575, -0.280310, -1.924818, 1.730679, -0.099489, 0.927105, -0.524098, -0.702229, -0.150720, 0.543267, -1.093150, 0.711867, 1.621031, -0.368971, -0.494024, 1.224635, -0.462169, -1.248082, -0.022194, 2.379237, 1.748775, -1.734834, 0.320724, -0.048801, -0.890791, 0.093482, -0.845531, -0.502929, 1.363672, 0.521064, 1.767126, 0.911220, -1.470797, -0.681921, 1.018354, -1.042110, -0.281185, -1.131075, -0.927553, 1.241408, -0.544769, 0.829601, 1.602589, 0.646913, 0.034951, -1.645524, -1.019176, -1.466121, -0.248557, -0.117175, -2.106003, 1.169941, 1.660831, -0.747520, -1.270801, -0.124126, -0.095915, -0.607709, -0.780736, -2.290315, 0.974936, 0.537196, -0.670478, -0.211151, 0.309119, 0.959258, 0.174146, -0.517605, -0.834903, 0.372601, 1.456180, -1.258510, 0.151260, 1.379354, -0.231260, -1.185922, -0.346028, -0.621739, -0.584649, 0.847721, -0.388086, -0.218502, 1.172472, -1.234970, -0.317102, 0.286069, -0.152869, -1.730038, 0.938823, -0.452470, -0.150653, -0.751000, -0.861125, -1.673548, 0.015942, -1.769763, 0.342681, -1.033299, -0.884228, -0.241775, -0.852191, -0.986658, -1.880001, 1.335850, -1.067870, -0.275532, 1.219326, -1.242037, -0.846159, -0.168420, 0.196826, -0.529145, 0.365818, 0.227110, 0.408198, -0.494421, -0.831610, -0.471365, 0.774180, -0.226798, 0.570199, 0.529078, -0.542267, 1.450386, 0.592933, -0.379372, -1.425411, 0.144318, 0.179941, 1.041530, -0.774547, 0.463808, 0.673805, -0.004938, -0.122694, 0.497543, 2.568955, -0.083913, -0.155812, -0.217187, -0.810842, -1.603720, -1.248545, -0.645904, 0.075846, -1.061958, 0.088274, -0.765172, -0.405291, 0.790168, 0.475921, -0.337083, -1.641051, 0.119987, -0.530493, -0.614599, 1.330474, -0.674055, -0.839359, 0.851403, -0.684143, 0.260262, -0.606028, -0.211830, 0.954393, -0.559420, 2.421412, 0.692107, 0.797535, -0.995547, -1.262061, 0.111319, -0.203991, -0.062493, -0.994530, 0.492733, 1.917762, 1.462497, -0.478587, 0.299400, 0.414351, 0.750356, -1.117146, -0.048830, -0.498265, 1.264890, -0.574407, -0.262815, 0.242167, -0.459163, -1.072892, -1.047095, 1.023642, -1.051941, -0.132526, -0.597137, 0.958617, -0.491855, -0.688306, 0.612433, 0.573038, -0.862718, 1.242017, -0.903679, -0.746634, -2.584370, 0.613286, 0.084027, -0.585794, 0.810032, -0.340284, 0.116032, -0.085611, -1.260334, -0.048354, -0.240084, -0.666387, 0.847188, 3.106357, 0.113349, 0.328906, -1.138530, 1.591675, 1.320039, 0.934805, -2.541944, -1.011793, -0.969712, -2.413254, -0.123661, 0.177802, -0.636519, -0.382558, 0.199456, 0.749215, -3.064507, 0.347773, -0.327088, -0.247124, 0.965566, -0.607548, 1.062786, 0.122809, -0.199329, 0.556261, 1.823568, 1.468847, 0.397709, -0.784720, -0.575994, 0.586440, 1.047005, -0.123366, -0.363057, -2.624258, -0.767382, -1.728837, -1.500550, 0.083723, 0.492181, -1.649778, 0.235831, -0.300202, -0.049904, -0.127694, -0.253886, 1.372372, 0.519919, 0.134778, 0.077695, -1.845336, 0.799809, -0.102759, 0.820715, 1.719161, 0.958062, -1.652676, -1.991410, -1.017608, -1.036588, 1.057431, -0.602496, -0.277506, -1.259548, 1.066618, -0.711275, -0.425878, -2.139620, 0.822112, 0.163018, -0.511526, 0.325567, 1.446156, 0.389453, 1.072211, 0.221189, -0.123412, 0.164455, -1.445186, -1.096777, 0.413386, -0.445980, 1.196981, 1.041197, 0.334185, -1.063610, -0.149294, 0.064874, 1.285635, 0.285338, -0.631886, -0.597928, 1.613712, -1.026082, 2.722634, 0.227651, -1.630924, -0.771793, -0.176722, 0.457608, -0.337623, 0.508725, -1.155671, 1.195770, 0.728704, -1.860535, -0.356027, 0.626465, 0.721880, 0.073398, -0.818486, -0.390084, 0.207500, 1.366954, -0.748259, 1.525421, -1.260207, 0.875698, 0.500301, -0.731830, -0.820801, -0.410863, 0.421485, 0.898028, 1.548518, 2.117296, -1.593225, -0.723634, 0.306897, 1.033075, -0.021910, -1.038486, 0.666074, 0.591077, -0.865629, -1.137821, -1.350243, 2.461920, 0.068409, -1.146083, -0.458541, -0.070093, 1.263338, -0.706218, -0.957105, -3.294787, -2.299563, 0.131921, -0.154168, 1.196194, 0.584646, 1.283428, 0.103624, 0.774664, -0.654099, -0.202629, -0.357849, 0.730825, 2.051115, 1.437440, -0.310151, 1.856034, 1.297169, -0.392272, 0.338569, 0.639314, -0.343742, -0.318258, 1.642427, 0.901359, -0.267214, 1.213424, 1.844536, 1.260031, 0.911591, -1.231594, -1.330641, -0.131112, 1.345875, 0.442911, 2.489695, -0.174064, -0.922050, 1.498562, 0.095677, -0.388545, -0.728232, 0.967035, -1.047480, 0.117068, -0.055944, 0.517253, 1.520160, 0.765177, -0.168312, -1.970597, -0.042346, 0.897118, 1.020232, 0.057082, -0.373285, -2.071722, 0.068116, -0.825410, 0.292560, -0.193112, 1.234488, 0.267386, 0.330797, -0.183826, -1.654482, -0.266647, -1.299870, 0.953848, 0.483609, -0.083428, 2.536303, 0.250108, 2.370729, -0.547940, -0.609660, -0.058822, 1.443196, 0.685863, -0.432354, 0.961740, 1.264327, 1.196046, 1.057996, -1.309299, -0.305432, 2.316704, 0.672968, -0.776782, -1.221628, -0.050847, 1.243562, -0.392993, -1.600202, 1.322430, 0.925353, -0.829251, -0.985898, 0.016973, 1.116976, 0.618889, 1.421038, 0.433715, 0.439900, 0.233164, 0.188565, 0.488959, -0.732365, -0.749850, 0.524333, -0.565628, -0.575503, 1.169017, 1.283895, -1.652527, -1.043620, -0.716208, 0.385822, 1.072892, 1.396946, 1.140387, 1.969026, 0.398739, 1.797070, -0.692053, -0.423477, -0.027239, -1.167946, 0.738102, 1.550322, -1.279032, -0.520762, 0.117092, 0.450279, 0.781322, 0.445715, -0.840788, -1.668623, 0.546266, 0.101741, -0.836997, 2.093446, -0.390265, -0.493358, -0.858428, 0.870861, -0.541845, 1.318626, -0.229913, -2.302627, -0.107648, -1.349221, -0.064091, 0.505872, -0.518531, -0.872966, 2.338731, -0.515348, 0.296947, 1.061729, 0.440155, 1.055311, -1.477064, 0.428967, 1.933912, 1.163326, 1.555506, -1.086426, -0.730437, 0.107253, -0.684363, 0.720184, -0.309668, -1.337294, -1.773575, -0.563587, -0.222956, 0.889119, 0.067291, -0.902921, -0.657469, 0.587936, -0.159503, -1.372482, 0.307291, -0.044918, -0.532010, 0.334640, -1.165935, 0.174595, 0.808977, 0.214787, -0.413598, 0.206775, 2.155323, 0.971580, -1.243864, -0.190765, -0.917861, -0.998484, -1.769660, -0.333549, 0.696826, -2.299335, -0.519640, -0.899774, -0.925672, -0.576504, 0.440411, -1.345894, -0.203047, 0.036914, 1.642719, -0.778267, 0.253421, -1.691178, -1.274574, -1.298600, 1.419747, 1.787647, 0.115205, 1.721722, 1.435250, 0.836909, 0.818980, -1.156009, 0.525674, 0.713775, 0.218713, 0.061268, 0.549883, 1.018396, 0.032054, -1.040015, -1.298242, 1.291810, -0.829988, 1.453031, -0.081897, -0.488900, 0.482968, -1.202772, 0.690761, 0.357578, 0.717751, 0.312866, 0.377382, 0.911278, -0.017509, -0.917956, 0.146617, 0.591575, -1.079441, 1.351288, 0.416063, 1.266100, 0.486867, -1.351142, -0.543511, 0.201936, -0.115333, 0.246885, 0.812562, -2.725627, -0.903915, 0.056077, -0.688293, 0.955303, -0.042529, -0.435986, 0.995610, -0.537746, -0.646035, 1.985819, -1.440160, -1.212804, -0.303726, 0.184776, -0.204591, -1.577412, 1.409813, 0.931170, 1.869951, 0.642564, 0.473252, 0.045894, 0.327160, -1.022547, -0.226534, -0.046579, 1.541723, 0.559081, 0.198642, 2.653671, -0.470270, -0.056498, -1.815817, -0.695746, -0.390758, -1.059136, -0.287565, 0.500386, -0.453675, -0.214689, -1.314294, 2.124161, -0.481870, -1.221630, 1.518887, 0.310977, -0.166154, -0.538045, 0.320023, -0.373452, 0.684540, -0.541411, 1.175937, -1.548541, -0.815471, -0.419730, -1.818922, -0.812239, 0.651535, 0.246888, 0.909491, 0.757587, -0.878225, 0.720263, 0.788756, 1.894143, -0.183486, -1.147772, -0.321078, -1.568437, -0.575769, 0.314336, 0.064963, -0.920860, 0.739571, -0.799163, -0.020605, 1.069005, 0.221032, 0.033306, 0.722869, 0.217193, -1.125440, -0.286937, 2.593075, -0.324396, -0.021025, -0.147873, -0.108357, -1.017214, 0.167601, -0.100800, -0.641358, -0.148384, 1.146581, -0.172189, -0.079754, -0.337982, 0.264845, -0.667049, 1.522982, 0.068352, -1.421352, 0.553754, -1.029660, -1.389621, -0.650323, 0.608450, 0.765460, -0.480427, 1.719323, 1.530837, 1.352147, -0.539452, -0.728205, -0.289440, 1.238384, -1.859709, -0.164917, 0.611183, 0.333272, 0.043235, 0.107394, -1.506761, 0.630302, 0.670784, -1.485462, -0.885507, -0.857629, -0.544483, 1.226999, -1.398027, 1.976142, 1.945029, -0.717879, 1.083131, 0.601411, 0.616302, -0.555335, -0.555318, 0.711178, -0.244854, 1.047159, 0.193479, -0.468753, -0.082854, 1.945026, 0.908903, 1.613671, 1.244805, 0.285969, 0.699130, -1.232457, 0.407800, 0.720733, 0.778562, -0.603465, 1.162670, -0.255111, -0.017728, -1.314711, 0.217689, 1.497094, 0.818944, -0.234143, 0.072500, -0.410634, -2.607684, 0.921220, -0.037439, 0.246088, -0.605548, 0.439275, -0.795736, 0.797346, -0.716717, 0.339123, -2.019090, -0.182187, -1.335673, 0.259978, 1.653428, 0.675601, -0.922123, -0.166392, 1.249810, -0.997363, 2.208431, -1.242374, -0.534548, -0.993581, 0.500817, -0.392681, 1.652644, -0.069704, 0.640649, 0.537264, -0.967187, 0.549753, 0.989922, -0.522108, -0.756870, -1.516896, -1.469859, 2.094418, 1.084111, -0.184690, 0.714410, 1.446437, -0.759202, 0.921436, 0.136870, 0.481108, 2.348843, -0.335309, -1.350474, 0.717339, 0.702010, 0.224093, -1.692914, -2.196663, -0.451444, -0.871143, 1.985705, -1.197093, 2.628658, -0.855127, 0.078917, 0.712711, 2.063890, 0.345424, -1.713913, 0.053198, 0.097076, 0.084486, 1.085831, -2.942844, 0.908334, 0.160938, 1.023398, 0.366058, -0.060187, -0.575407, 0.639791, -0.088645, 1.604726, 2.927742, -1.082644, -0.270145, -1.335198, 0.338717, -1.821043, 0.964323, -1.625552, 0.780702, 0.477826, -0.800376, 0.523111, 0.369025, 1.245785, -0.381496, 0.148221, 0.274938, 0.518518, 0.358801, 0.433234, -0.654964, -2.137191, 2.364537, 0.213943, 0.424608, -0.333920, 0.064086, 1.331688, 1.487929, 0.564217, -1.056354, 1.114637, -1.033250, 0.834008, 0.077213, 0.735597, -0.385114, 1.233065, -0.404703, 0.975694, 1.953189, 0.710061, 0.874974, -0.873350, 0.734087, 0.015294, -0.428246, -0.221910, 2.749456, -1.303687, 0.254639, -0.320381, 1.185232, -2.557705, -0.854437, 0.095059, -0.247995, 1.111029, 0.682240, -0.507852, -0.019989, -0.192194, 0.475778, 0.839589, -0.051492, -1.493541, -0.504765, -1.407140, -0.463491, 1.611016, 0.777079, 0.756655, 2.298157, 1.279991, 0.054396, -0.929516, 0.280770, 0.063491, 2.124701, 1.032480, 0.242202, -0.784070, -0.164317, -0.752295, -0.311986, 0.357116, 0.646169, 1.211834, -1.153229, 1.638067, -0.909612, 0.040453, -0.760889, -0.728214, 0.624168, 0.233724, -1.486220, -0.936797, 1.810260, 0.095250, 0.642192, -1.078182, 1.228718, -2.251075, -0.787528, 0.674758, -0.452898, -1.450645, 0.075598, 2.195413, 0.120605, 1.675799, 1.028607, 1.133095, -0.687797, -1.330897, 1.906713, -0.421618, 2.282566, 1.650577, -1.571260, -0.022753, -0.813847, -0.700581, -0.612438, -1.962804, 1.206240, -0.317857, 1.085146, 1.409747, -0.796394, 0.233119, -1.212614, -0.019540, -0.104782, 0.065606, 0.568877, -0.370864, 1.514297, 0.911852, 0.852035, 1.382020, 1.206218, 0.388230, -0.109975, -1.643510, 0.219096, -1.823825, 0.708963, -1.286280, -0.108092, 1.715523, -1.250175, 1.374728, 0.435218, 1.874771, -1.587252, -0.573409, 1.062077, 0.200179, 0.160916, -0.054276, -0.441074, 0.668816, 0.635072, 0.706346, -0.515625, 0.969951, -1.836677, 0.664553, 0.161248, -0.504426, 0.418334, -0.766124, -1.631492, 0.060867, -1.556152, 0.110655, 0.237738, -0.076750, -1.897029, 1.301633, 0.103754, -0.023509, -2.091118, 1.593171, -0.798912, -0.241198, 1.177807, 0.847342, 0.754564, -0.702858, -0.953498, -1.067529, 0.480264, -2.544836, -1.025979, 0.261932, -0.990739, -0.352954, -1.576018, -0.674583, 0.573619, -0.348575, 1.430100, -1.359205, 1.160196, -0.475650, -1.418547, -0.724067, 0.052394, 0.241321, 0.189390, -0.458566, 1.715675, -0.259126, -0.560336, -0.336420, 0.307523, 2.103936, -1.086089, -0.941402, 1.360882, -0.078568, 1.069642, 0.406190, 1.228448, 2.080045, 1.710971, 0.703004, -0.022652, -2.304456, -0.728997, -1.795338, -0.498077, 0.540722, 0.187551, 0.529428, -1.151801, -0.310114, 0.153387, -1.404219, -1.813480, 0.794346, 0.352173, 1.338165, 0.850162, -0.225038, -0.167416, -0.404632, 0.270419, -0.687981, 0.535449, -0.101477, -0.165800, 1.069551, 0.437195, -1.463546, 0.317318, -0.042081, -1.874462, -0.234735, -0.158075, 0.468044, -1.225636, 0.021927, -0.692164, -1.240567, -0.238586, -0.321754, 0.058038, 1.749179, 0.780722, 0.899346, -0.362388, 0.512818, -0.347653, -0.122173, 0.486668, 0.254972, 1.060605, -3.330893, -0.848603, 0.169145, -1.903979, 1.658314, -0.142390, 0.109099, 1.521919, -1.099334, 0.510142, 2.015790, -0.887881, -3.088587, -0.731992, -0.640893, 0.273448, -0.649989, 1.281792, -0.469102, -0.908237, -0.281290, 0.418677, -0.350093, 0.175188, -1.346333, -0.135523, -1.242874, -1.599269, 0.946620, 0.933084, -0.986967, -1.475112, 0.337279, -0.759522, 0.773863, 0.360864, 0.375795, 0.342019, -2.193547, -0.591675, 1.099452, 0.050526, 0.596584, -1.589102, -1.447948, 0.294333, 0.198311, -0.207655, 1.063678, 0.712125, -0.250338, -0.830990, 1.454679, -0.078153, -0.182746, 0.729893, -0.756329, -0.727408, 0.030368, -0.518128, -0.737160, 2.216797, 1.075264, 0.689296, 0.195180, -0.688191, 1.085504, 0.484290, -0.135030, 1.927774, -1.130193, -0.083181, -0.914206, -0.051457, 1.147075, -0.114333, -1.065647, 0.612540, -1.855985, 0.077113, -1.758529, -0.575775, -0.198210, -0.136353, 0.983723, 1.167087, -1.282908, 0.394032, 0.441478, 0.706853, -0.153504, 0.570595, 0.700878, 1.926696, 0.689210, -0.759217, 1.123449, -1.755343, 0.433145, 0.322592, 2.163970, 1.764772, -0.221501, -0.077027, -0.344597, -1.229059, 0.675558, 1.354935, -0.357937, -0.018455, 0.539297, -0.094365, -0.670102, 0.208960, -0.470608, 2.131201, -0.409162, 1.196678, -0.916581, -0.993127, -0.507149, 0.831271, -0.217001, -0.361255, -0.133153, -0.879703, 1.018339, -0.127916, 1.704769, -1.338772, -0.445393, 0.153549, -1.881477, 0.600847, 1.509023, -0.249080, 0.160151, -1.344914, 1.182460, 1.177651, -1.666785, -0.151305, -0.815749, -0.844017, -1.054972, -0.797645, -0.878460, 1.161515, 0.988742, 1.637632, -0.205189, 1.118304, -0.170133, -0.295434, 1.443829, -0.514089, -0.433477, 0.170094, 0.321378, 1.147670, 0.260662, 1.086005, -0.196800, -0.434707, -0.758094, 0.926730, -0.015249, 0.179387, 0.107703, -0.965584, 0.358516, 0.804347, -0.299195, -0.882999, -0.861585, 0.561087, 0.702533, -1.874868, -1.656486, 0.951960, -0.738889, -0.552069, -1.125096, -1.702933, -0.259888, -0.557553, 0.126570, -0.200831, -0.343166, -0.423782, 0.465506, -1.730303, -1.379234, 0.274824, -0.120863, 0.141093, 0.468650, 1.307742, 0.496847, -0.963365, 0.147135, -0.726274, -1.249636, -1.665222, -2.323496, 1.251643, -0.394400, 0.126252, -0.527650, 0.060189, 2.206653, 1.133147, 1.196164, 1.536704, 0.284010, -2.522779, -1.372270, -0.116722, -0.942591, -0.881784, 0.298016, 0.166188, 0.008092, 0.768952, -1.035638, -0.553823, -0.689117, 0.522422, 0.838712, 1.828365, -0.250781, 0.059916, -1.611368, -0.192312, 0.914720, -1.490616, 0.515060, 0.686156, -0.624570, -0.493592, -1.710923, 1.098963, 0.945378, -0.248058, 3.227589, 1.793707, -0.370564, -1.237949, -1.176003, 1.107723, -1.281360, -0.949722, -1.525117, 0.445103, 0.464639, 0.721906, -0.524428, 0.153295, -0.967464, -0.300795, 1.672709, -0.343525, -0.664938, -1.266006, 0.948389, -0.019081, -0.536341, 0.628003, -0.111193, -0.378715, -0.315987, 0.315329, -1.416956, 0.937942, -1.096324, 0.264338, -1.493933, 2.323896, -0.438985, -0.441054, -1.118096, -1.283621, 1.418447, 1.701715, 1.145482, -2.225544, 1.807544, 0.456759, 0.287953, -0.886350, -2.127660, 0.521931, -1.014119, -0.665152, -0.955395, 0.332580, 1.345558, -0.150654, -1.806973, -0.382947, -0.383030, -0.547349, 0.740724, 0.195575, -0.758256, -0.194345, 2.613254, -1.474896, -1.161848, 2.464419, 0.164068, -0.518511, 0.430016, -0.889948, 0.528219, 0.833695, -1.688696, -2.375681, 0.918920, -0.916112, -0.615052, 0.280241, -0.362451, 1.744795, -1.067756, -0.897074, -0.602246, -0.041602, -0.230906, -0.984118, 0.215107, 1.356938, 0.641882, 0.827869, 1.879166, -0.009978, -0.706269, 2.123842, -0.610725, 1.391842, -0.114912, 0.436658, 0.419251, -1.192562, -0.296644, 1.623204, -0.128263, 0.890636, 1.002930, -0.322791, 1.575811, -0.866970, -0.247719, -0.285896, -0.044846, 0.399279, 0.485904, -2.111681, 1.458884, -0.686243, 1.017792, 0.181967, 0.160032, -0.363940, -0.789405, -0.045901, -0.398053, 1.482738, 0.174865, 0.133076, -0.831572, -0.626974, 0.004535, 0.538366, 0.179657, -0.720387, 0.156853, -1.069117, -1.158555, -0.574731, -1.823767, 0.160691, 1.385460, 1.804040, 0.068777, -0.169229, -0.895321, 0.736519, 0.943490, 0.276774, -0.544262, 1.934911, 1.100312, 0.135381, -0.208266, 0.805393, 0.895910, 1.220592, 0.839968, 0.656904, -0.947809, 0.250160, 1.327527, -0.275230, -0.896859, -1.552629, -0.122891, 0.514040, 0.908310, 0.806895, -0.138531, -0.325118, -0.857067, 0.660311, -0.781029, -0.211677, 0.735403, 1.297556, -0.123127, 0.345860, 1.141471, 0.766391, -1.926411, 0.262821, -2.196987, -1.157269, 1.083074, 0.480122, 0.613028, 1.002370, 1.016511, -0.260060, -0.704010, 0.499189, -0.261603, -1.223492, -0.328900, -0.166102, 0.650941, 0.419420, -0.039127, 1.132943, -0.864713, -0.610824, -0.889720, 1.274654, -0.360884, 0.430137, -0.082666, 0.631616, 0.826398, -0.352772, 0.123987, -1.163990, -0.395595, 0.490041, -0.518836, -0.543182, -0.884489, 0.502251, -1.325089, 0.688049, 0.760975, 0.866051, -0.955380, 0.082390, -0.653710, 0.618073, -0.373580, 0.162492, 0.981884, 0.296001, -2.428015, -0.014876, 2.027094, -1.382469, -0.695400, -0.028213, 0.128615, -0.561253, 0.185778, -0.484359, 1.215579, -1.691350, -0.030627, -0.571790, -0.580195, -0.055000, 0.455679, -2.040278, 1.605490, -1.308529, 0.593147, -0.387072, 0.236456, -1.525982, -0.787845, -1.501738, 1.479215, 0.762102, -0.551032, 0.727081, -0.692409, 1.064490, 0.573914, -0.039996, -1.015630, 1.066914, 1.166375, -1.948346, -1.364063, -0.570753, 1.871874, -0.005461, -2.582093, -1.056135, -1.215165, -0.015245, -0.030541, 1.367074, -1.094980, -0.421514, -1.409598, -0.080573, -1.109689, -0.170495, -0.701886, -1.663771, 0.504651, -1.730618, 0.814758, -1.189907, -0.022678, -0.900925, -1.282092, 1.036108, 1.286971, 0.146561, -0.104122, -0.900358, 1.194999, 1.085071, 0.245473, -0.344552, 1.136613, -0.222807, -0.039748, 1.226650, -0.477331, -0.306240, 0.009091, -1.133449, -0.478763, -0.027651, 0.548283, -0.265791, -0.506056, -0.455783, -0.531620, -0.555388, 0.045440, 1.051072, 0.820059, -1.720696, 0.085284, 0.954460, 1.756948, 1.133869, 2.490584, 1.392225, 1.155582, 1.258072, 1.336534, -0.048626, -0.184858, -0.478615, -1.935108, 1.392227, -0.606312, -0.414760, 2.026889, -0.219457, -0.172333, 0.781231, -0.698827, 0.875314, 1.233227, -1.634788, -1.039862, 0.117942, 0.849633, 0.863716, -1.065377, -1.686738, -0.598673, 0.771012, -0.885423, 0.289281, 1.727263, 1.318882, 0.274868, -0.906274, 1.264238, 0.468178, -1.039663, 1.496806, -0.417078, 1.272921, 0.630650, -0.438431, -2.277566, -1.210622, -0.473948, -0.899909, -1.035093, 0.051717, 0.911415, 0.192445, 0.155345, 1.762306, -0.973867, -0.376061, -1.763172, 1.802793, -0.291311, 0.669337, -0.928726, -0.157349, 0.044624, -0.820466, 0.637974, -1.097872, 0.332506, -0.760951, 1.372918, -0.663406, 0.168231, 0.171713, 0.367454, 0.449412, -1.563049, 1.201667, -0.465472, 0.631889, -1.641761, 0.653492, 0.605014, -0.406481, -0.343667, -0.678263, 0.781456, -1.912179, -0.539338, 0.841557, 0.054534, -0.263837, -0.024809, 0.414199, -1.054561, 1.104222, -1.499765, -0.781907, -0.478213, -0.881519, 0.383298, -0.529201, -0.104214, 0.120789, 1.019846, 0.487809, 0.482114, -0.323590, 2.476811, -1.636494, -0.444597, -0.866103, 0.611504, -0.239812, 2.578005, -0.164232, 0.218792, 1.885903, 1.183741, 0.914319, -0.233472, 0.475280, 0.534430, -0.980125, -0.801128, -0.879462, -0.745111, -1.004103, -1.354266, 0.326177, -0.630928, -0.000771, -0.559626, -0.307599, -0.788990, 0.301350, -0.658314, 0.440005, 0.001909, 1.008989, -2.232125, 0.863060, -0.304955, 0.945003, 0.884038, -0.175643, 0.372697, 0.946738, 1.915100, 0.993498, 0.284672, -1.038963, -1.358843, -1.153239, 0.320318, -2.755738, -0.352300, 2.253395, -1.447105, 0.692975, -0.868532, -1.236475, -0.502317, 0.531573, 1.502469, -2.444619, -1.179295, 0.601001, 0.311607, 0.395198, 0.755518, 1.976267, 0.204615, 1.106207, 0.561237, 0.387203, -0.837171, 0.077322, 1.821755, 0.565255, 1.198347, -0.004862, 0.416905, 1.302956, -0.599332, 0.485901, -0.151075, -0.020921, -1.034141, -0.806071, -0.029095, 1.188493, 0.258671, -0.978080, -1.268929, -1.063724, -1.467195, 1.252039, -0.386705, 0.711198, -0.920883, -2.420926, -0.290539, -0.062117, 2.074835, -0.374069, 0.878367, -0.205094, 0.256383, 1.434138, -0.183714, 0.539224, -0.861300, 0.859191, 0.136592, 1.724366, 0.280813, -1.047397, 0.639498, 0.721197, 1.109048, 2.530865, 0.172151, 0.992468, 2.380822, 0.705975, -0.259773, 0.281196, -0.699031, -1.064526, 1.441540, -0.521743, -1.387615, 0.687498, 0.200466, 1.723945, 0.186570, -1.188742, 0.736814, -0.855797, -1.308723, -0.238915, 1.852911, -0.664917, 0.973878, 0.461865, 0.916721, 0.540135, 1.163384, -0.082009, 1.349012, 0.345283, -0.369935, -0.295485, -1.424258, -0.949818, -0.678800, 0.311844, -0.727653, -0.826054, 2.215930, 1.217589, -0.425064, 1.584409, -1.576904, -0.501944, -0.437954, -0.227501, -0.470265, 1.538283, -0.999006, -1.588923, -0.701121, 0.652228, 0.547492, 0.330306, 0.745149, 0.445952, -1.599581, 2.355876, -0.259323, 2.147191, 0.789432, -1.193722, -0.308272, 0.905792, -0.237533, -0.420663, 0.186424, -0.060277, 0.329435, -0.251988, 1.206661, 1.455311, -0.102099, 0.439973, 1.874725, -0.875383, 1.538812, 0.151283, 0.754883, 1.218416, -0.307863, 0.362797, 0.556609, -0.206668, 1.156604, -1.623848, -0.121572, -0.527849, 0.296861, 0.523361, 1.128567, -0.085918, 0.635616, 0.176748, -0.708314, -0.687628, 1.695505, -1.628185, -0.483821, -0.545136, 0.909749, 0.300384, -0.824013, 1.799047, -1.172044, 1.656234, 1.297919, -0.493350, 1.103375, 0.392184, 0.994335, -0.259227, -0.649651, 0.896740, -0.138826, 0.765243, 1.909679, 0.049780, -0.237862, -0.258180, 0.298850, -0.028429, 0.910624, 0.474021, -0.298196, -0.061631, -0.135204, -1.599762, -1.395628, 0.669363, 2.177910, 0.030061, -0.343063, 0.546187, -1.514810, -0.286909, -1.139559, 0.235273, -0.019798, 1.206490, 2.374522, -0.375667, -1.670095, 1.552036, -0.523969, -0.670330, 0.555415, 1.334496, -0.423447, 1.411823, 0.487578, 0.696663, -1.266013, 1.235226, -0.235227, -0.962345, -1.845408, 0.859036, -0.757812, 0.046500, -0.466294, -0.979230, -0.743074, -0.780998, 0.641689, 0.707992, -0.872524, -0.029345, -0.086639, -0.134237, -0.634409, 0.147895, 1.344257, 0.274307, 1.013566, -1.450009, 0.159792, -0.694519, -0.119801, -0.315509, -0.391460, 2.225720, -0.613707, -0.501829, -0.538628, 0.585139, 0.894433, -0.090804, 0.632710, 2.402012, 0.381078, 1.504487, 0.519381, 0.664636, -1.680124, 0.150588, -0.772539, -1.055521, -0.926961, 0.892638, -1.844589, 0.208582, 1.267388, 1.237923, 1.799750, 1.482798}, + { 0.866080, -0.625056, 0.121576, 0.683522, -0.202481, -0.031306, 1.427738, -0.488166, -0.186778, 0.894950, 0.925825, -0.191137, 0.717836, -0.879052, -1.100222, 0.353360, -0.417645, 0.605303, -1.253296, -0.669116, -1.194778, 0.623267, 2.341286, -0.657832, -0.878181, 1.181717, -1.897064, 0.811238, -0.730155, -0.570854, 0.767517, 0.119827, 0.534865, 0.272399, 1.227020, -1.742613, 1.004194, -0.442072, 0.670814, -1.506767, -0.752951, 0.486330, 2.335784, -0.555937, -2.128456, -1.597014, -0.329895, 1.121284, 0.738840, 0.243518, 0.375629, -0.170737, 0.763442, 1.587682, -0.692817, -0.936445, -0.194823, -0.074044, -0.404243, 0.471099, 0.186785, 0.421224, -1.671246, 0.968159, 0.758238, 0.142311, -0.077029, -0.051229, 1.091731, -1.126450, 1.034504, 0.072515, 0.795068, 0.023054, 0.600066, -0.256137, -1.477674, -0.442686, 0.308367, -0.813398, 2.630720, -1.785801, 2.496218, -0.892052, -0.833671, -0.637926, -1.563931, -0.068708, 1.009903, 0.239129, 1.387142, -0.877682, -0.097589, -1.138588, -1.256634, -2.490517, 0.166882, -0.445716, -1.342862, -1.024068, 0.699409, -0.604573, 0.696067, -1.088224, 1.358951, 1.520175, 0.056891, -1.030266, 0.454259, 0.851122, 0.178090, -0.044059, 0.723282, -0.632171, 1.512396, -0.272019, 1.413195, -2.408789, -0.609614, -2.469491, -1.568153, 0.098862, -0.503856, 0.836568, 0.604145, -1.944672, 0.070242, -0.238194, 0.113773, 1.589729, 0.025282, 2.289331, -2.281631, 0.535196, -0.324952, -1.049516, -0.989250, 0.162283, -0.760608, -0.279558, -1.365060, -1.015585, -1.531056, -0.537421, -1.016214, -1.166797, 0.941740, 1.365052, 0.518987, -0.261628, -0.632740, 0.533625, 1.756043, 0.500323, -0.156668, -1.423898, -0.079336, -1.659259, -0.235127, 0.530761, -0.551240, 1.344640, -0.138553, 0.055545, 0.945635, 1.249807, -0.246087, -0.167804, 0.036563, -0.701682, 1.880804, 0.044013, -0.588649, 0.857985, -1.601004, 1.568145, -0.004795, 0.513520, 1.473438, -0.240329, -0.940371, -0.406401, 0.527143, -0.619889, 1.161171, 0.994367, 1.144915, -1.411791, -1.105600, 0.124040, 1.229793, 0.006724, -0.329356, 0.338324, -0.373046, 0.316355, 0.253644, -0.591294, 1.157036, 2.007112, -1.217574, 1.344516, 1.483402, -0.261257, 0.014705, 2.063675, 1.919235, -0.004932, -0.530673, -0.684331, -0.780340, -0.473427, 1.812634, 0.115207, 1.092782, -0.705669, -0.465017, -0.430005, -0.150851, -0.698143, -0.145435, 1.191302, 0.947306, -0.422873, -0.636114, 0.596539, 0.930528, 1.250969, -0.194961, -0.421729, -1.357245, -0.291536, -0.471628, 0.210783, 1.466112, -0.812788, -0.597556, 0.831338, 0.128582, -1.379366, -0.823598, -1.109293, -0.927909, 0.117315, -0.482314, -0.975568, 1.141278, 1.009733, -0.754042, 1.562002, 0.436963, 1.514210, 0.234493, -0.849063, -0.383298, 0.483355, 0.501147, 0.959971, -0.389813, -0.195204, 0.158393, -0.706217, 0.369670, 0.457643, 0.012449, 0.032779, -0.606546, 0.151965, 0.116383, 0.304348, 0.737343, 0.945559, 1.946601, 1.404633, -1.637507, 1.189380, -1.143859, 0.634591, 1.429753, 0.077491, -0.608245, -1.815699, 0.481323, -0.283573, -1.637408, -1.551261, -0.515094, -0.202550, 2.245906, -0.621128, 0.558414, 1.476321, 0.513519, 1.627048, -0.818652, 0.777813, -1.993592, -0.728490, -1.123018, -1.066344, -0.022479, 0.282836, -0.385306, -1.049368, -0.098289, -1.206473, -0.299108, -0.534904, 0.965860, 0.171924, -0.284782, 0.306616, -1.007264, -0.478522, -0.137854, 0.730069, -1.743119, -0.077908, -0.209660, -0.599580, 1.872925, -0.592893, 0.938033, -0.153283, 0.324590, -0.993903, 1.162394, -0.440835, 0.281423, 0.701583, -1.295074, 0.227009, 1.732142, -0.791053, 1.133152, 0.409532, 1.334237, -0.536727, -1.378523, -2.128803, -0.992456, -0.288152, 0.783170, -0.599178, 0.079859, 1.314679, 1.168192, 0.555146, 0.117692, -1.584788, -0.796828, 1.045045, -0.391945, 0.743054, 0.034987, -1.627516, 0.281056, -0.434273, -1.226724, -1.755962, -0.305257, -1.636569, -0.038305, -1.202151, 0.803421, -1.357541, -1.492121, 0.930937, 0.393656, 0.491163, 1.866477, -0.092015, -0.545907, 0.386556, -0.372691, 0.808851, -0.971420, 0.551977, -1.222459, 0.674766, -1.729624, -0.372694, 1.424360, 0.516517, -0.993228, -1.156948, 1.193111, -0.346497, 0.512757, 1.610829, -0.049649, -0.106986, -0.241958, -0.158423, -0.164717, 2.527416, 0.685740, -0.674470, 0.260833, 0.500579, -0.220337, 0.048914, 0.682433, 0.518936, -0.353085, 0.232056, 1.231053, 1.279112, -0.305579, -0.749819, 0.746049, 1.289129, 1.575381, -0.218919, 1.365493, -0.808482, -0.121943, -1.112036, 1.540329, -1.934186, 0.420315, 0.240255, -0.129204, 0.429837, 0.476000, -1.351878, -0.854836, -0.059540, 0.167376, -0.567624, 0.395599, -0.672338, -0.784793, -0.648753, 1.263464, 0.338883, -0.087137, -0.343555, -1.367965, -0.774313, 2.242901, -0.820300, 0.092045, -1.530808, 0.123239, 0.314421, -1.061623, 0.598152, -0.061931, 0.486039, 0.153387, 0.461348, -1.587206, -0.788664, 0.332952, 0.155265, -0.141890, 0.397604, -1.084012, 0.090640, 0.853002, -0.426816, 0.212600, 0.607898, 0.740935, -0.658008, 2.020804, -1.354068, -1.085039, 2.034110, 0.073370, 1.119913, 0.925678, -0.121731, 0.169471, -1.021834, 0.554295, 0.304618, -0.285245, 0.050441, 0.320287, -2.384048, -0.872404, -0.169052, 0.557579, -0.527850, 2.183009, 1.661903, 0.247150, -1.697130, 1.474665, -0.896336, 0.590937, -1.740218, 1.095348, 0.088326, 0.598268, -0.989111, -0.498938, 1.754319, -0.734885, -0.475523, -0.441134, -0.282573, 0.259958, -0.803159, -1.139269, -0.009103, -1.187762, -1.011415, -0.985840, -0.865901, 2.678457, -2.276532, -0.855305, 0.972495, 1.283762, -1.111560, 1.442450, -0.711381, -0.570406, 0.906598, -0.770528, -1.061474, -0.673857, 0.147451, -1.082723, 1.180839, -0.436853, -0.524940, 0.601215, 1.179201, -1.050460, 0.405990, -1.458281, 0.793042, -0.711795, 0.406700, 0.018243, -0.370712, 0.654176, -0.302028, 0.393976, -1.058034, -0.902753, 0.381339, 0.692187, -0.738020, 1.057761, 0.015325, -1.110343, -0.656409, -0.055695, 1.310873, 0.750534, -1.363022, 1.175762, -0.120519, -1.031137, 1.140029, -0.329029, 0.025319, -2.087813, 0.247282, -1.452162, 0.827695, -0.739062, -0.529970, 1.102839, 1.530424, 1.055784, 2.305816, -1.632225, 0.709391, 1.464674, -0.102572, -0.365037, 0.071583, -0.831253, 0.858458, -0.545418, -0.939763, 0.136604, 0.362291, 1.180735, 0.282425, 0.258424, -1.024531, -1.023833, -0.465537, 0.641825, -0.754757, -0.470048, 0.553161, 2.572747, -0.452273, -0.082609, -0.484712, 0.709840, -0.347187, -1.283469, 0.726399, -1.376245, -1.017341, -0.769386, -1.460398, 0.756859, 0.074215, -0.883605, -0.085961, 0.513298, -0.887467, 1.093229, 0.786730, -0.889586, -0.439322, 0.566151, 0.682972, 0.966316, 0.762452, 2.145279, -1.417722, -0.399061, 0.312206, 0.876386, -1.744653, -0.326833, -0.975932, -0.125209, -0.025324, 0.392906, 1.547869, 1.431672, 3.566266, -0.212317, -1.933719, -1.742438, -0.443646, -0.386387, -0.649715, 0.316112, 0.720124, -0.621040, 2.019113, -1.868344, -1.204657, 0.592919, -0.719526, 0.080945, -0.120886, -0.212831, -1.136993, -0.489251, 0.087271, -1.557861, 0.010958, 0.735884, -0.088227, -0.302970, -0.471382, 1.537142, 0.216014, 2.509764, 0.797699, 0.193308, -0.544166, 0.018125, -0.644585, -0.393085, 0.533862, -0.223951, 0.716247, -0.072976, 0.089957, 1.529737, 0.309489, 0.960230, -0.202549, -0.409538, -0.362624, 0.773931, -0.143382, -0.983237, 0.925479, 0.290366, -0.771150, -1.087026, -1.597768, 1.495027, -1.862602, -0.963893, -0.448775, -1.895035, 0.518529, -0.284084, -0.560165, 0.124057, 0.371273, -0.432069, -1.086086, -0.546512, 0.833328, 1.623601, 0.536892, -0.147260, -2.005611, 0.629331, -1.469961, -1.097785, 1.662673, 1.141078, -0.563562, 0.627441, 0.302879, -1.433626, -1.259479, -1.558900, -0.501172, 1.432016, 0.205649, -0.231006, -1.392617, 0.455032, -0.521806, -0.011940, -0.171073, 1.289475, 1.278206, -1.023689, 0.697618, -1.264072, 0.277073, -2.001110, -1.683971, -1.146299, -0.871609, -0.253327, 0.363848, 0.861232, -0.715006, 0.512186, -0.145668, 0.370110, -0.571338, -1.151515, 1.232720, -0.793683, -0.741712, 1.055755, -0.694236, 0.810106, 2.199485, 0.140183, -0.963557, 0.845009, -0.987688, 0.990250, -1.577770, 1.431587, -1.301437, 1.239062, -0.677719, -0.522684, 1.874665, 1.225909, 0.928061, 0.052261, -0.684423, 0.221779, 1.707296, -1.300179, 1.240287, -2.429695, -1.032099, -0.421101, -1.879222, 1.260394, -0.293095, -0.325011, -0.555053, 1.830536, 0.237767, -0.631116, -0.230862, -0.462782, 0.476752, 0.352012, -1.417231, -1.111102, 0.646558, -2.226050, 0.349928, -0.754827, -1.185599, 1.020158, -0.674111, -1.444716, 0.513836, -1.380571, 2.237895, -0.915158, 0.852023, -0.089503, 1.688970, 0.427471, -0.894534, 0.497518, -1.223063, -0.319078, -0.626563, 0.443969, -1.835064, -0.085767, 1.786129, -0.490578, -1.494761, -0.111281, 1.525945, 0.627078, -0.479635, 0.392405, 0.830649, -0.979098, -0.880157, -0.741741, 1.788440, -0.059044, -0.096899, -0.289844, -0.864377, -1.861610, 0.887553, -0.243750, 0.682854, -0.818693, -0.403739, 0.407293, 0.952543, 0.184516, -0.264644, 0.603370, 0.157254, -0.265024, 0.506363, -0.970555, -1.871022, 0.046592, -1.393637, 0.469394, 0.368070, -0.205906, -0.437604, 0.580834, 0.987258, -1.476638, -0.007926, -0.533343, 0.857065, 0.402322, 1.555581, 0.628366, -0.079442, 0.467065, -1.277888, 0.871195, 1.789343, -0.761707, 0.306273, 2.548108, 1.391456, 1.624150, 0.260732, 0.682083, -0.562809, -0.024022, -0.594007, -0.878409, 1.621674, -1.316073, 0.593073, -0.740887, -0.468724, 0.459892, -0.665582, 0.858507, 1.290915, -1.296884, -0.300729, 0.048045, -0.031714, 0.063180, -0.086559, 1.021989, 0.798749, -0.036070, 0.526889, 0.267839, -0.555943, -0.170009, 1.871376, 0.179436, -0.414829, -1.182134, -0.632216, 1.612467, 0.067326, -0.477916, 0.362054, 0.133632, 0.457566, 0.471967, -0.416417, 1.944087, 1.588940, 0.945364, -0.712993, 0.359503, 0.768896, -1.333828, 0.289991, -0.095798, -1.194459, -0.340439, -0.380044, 0.788486, -0.841882, 0.432185, -0.257383, 0.226356, 0.800804, -1.746093, 1.833542, 0.129083, -1.562647, -0.674053, -0.872678, 0.409536, -0.417973, 1.468005, -0.654525, -0.738618, 1.283969, -0.106187, 0.673474, -1.587501, -0.176866, -0.057429, 1.063939, 0.371306, -2.029183, 1.153850, -1.476369, 0.490714, 0.735153, 2.296438, 0.383435, -0.337478, -0.127492, -0.083371, 1.315445, -1.657943, 0.333524, 2.280654, -0.179751, -0.560651, -0.851302, 0.447417, -2.058154, -0.462227, -0.284589, -1.198078, -0.754108, 0.698126, 1.636841, -0.265110, 0.370307, 0.799386, -0.893016, -2.349732, 1.437648, -0.693910, 1.043736, 0.643352, 0.207635, -0.142330, -1.384235, 0.128748, -1.065996, 0.371468, 0.293711, -0.043013, -0.917557, 0.214133, -1.264201, 0.809578, -0.720514, -1.374734, 0.461260, -0.840797, -0.591591, -1.010133, 0.431669, -0.002577, 0.561860, -1.076547, 1.551711, -0.954878, -0.174032, 1.381817, 0.836243, 0.335142, -0.778518, -1.642962, 0.049834, 0.564255, 0.004090, 1.947392, 2.338240, 0.718297, -1.833553, 0.058871, 0.271972, -0.175633, 1.629816, 0.700878, -0.288959, 0.592680, -1.515393, 0.472875, 2.112240, 1.162787, -1.495415, 1.190261, -0.393630, 0.253107, -0.464610, 0.492040, -0.097936, -0.817057, -1.044482, 1.897956, -0.808720, -0.135495, -0.107551, 1.302777, 0.240345, 1.090704, -0.839641, 0.158970, -0.907895, 0.722996, -0.266976, -0.082540, -1.054283, 0.028118, 0.241373, -1.243846, -0.054739, 1.537156, -0.099751, -0.084943, 0.340408, 1.221556, -1.409493, -0.387700, -0.415074, -0.342647, -0.929319, 2.220125, -1.464192, -0.165621, 1.047390, -1.715423, -1.594238, 2.273807, 0.655294, 0.479319, -1.015210, 0.806681, -0.209447, 0.204576, 0.258196, -0.483063, -1.681366, 0.008328, -0.219593, 1.909453, -1.053701, 0.396671, -1.061971, 0.363481, 0.330236, -0.226809, 0.018982, -0.037943, 0.023632, 1.074286, -0.839933, -1.674575, 0.147764, 0.454554, -0.538546, 1.224776, -0.966047, 0.394956, 0.683762, 0.223490, -1.441312, 0.101555, 0.122068, -0.368579, -0.438313, 0.897250, -0.679879, 0.354355, -0.261714, -0.887968, 0.379458, 0.563363, -0.032173, 0.460656, 1.790193, -0.411473, -0.398949, -0.313208, -0.696975, -2.386993, 0.560689, -0.918726, 0.273229, -0.506375, 0.535167, -0.039461, -1.288077, 2.248814, -0.342561, -0.795268, 0.453964, 0.473058, 0.727831, -0.089775, 0.432799, -1.112878, -1.938059, -1.390420, 0.948197, -0.090147, -0.284371, 0.590925, 0.134578, -0.291504, -0.505787, -3.847496, 0.176390, 0.282504, -1.096974, 0.610727, 1.086551, -0.199676, 0.111785, -0.300103, 1.174017, 1.694637, 0.817853, 0.242458, -0.527984, -0.185254, -0.777582, 2.046369, 0.882931, -0.876828, -0.604258, 0.986735, -0.603645, -0.032872, -1.423635, -0.195754, 0.166335, -1.298287, 0.276551, 0.723668, -1.974046, -0.813926, -0.021943, 0.486148, -1.429870, 0.626000, -1.124876, 0.273593, 0.823846, -0.253530, -0.431954, -0.761624, 1.459349, 1.799130, 0.391437, -1.278682, 0.004817, -0.503401, 0.722611, -0.250671, -0.602714, -0.437887, 0.572359, 0.142011, -0.427153, -0.828514, 0.011911, -0.717657, -0.030854, -1.313396, -0.507176, 0.785684, -0.712978, -0.564218, 0.804374, -0.581219, -1.211383, -1.014890, -0.752703, -0.860390, -0.100982, -1.224481, -1.636135, -0.010095, -0.717337, -0.549612, 1.428019, -0.709451, 0.403979, -0.687782, -0.622907, -0.139188, 0.216700, 1.714843, 0.539288, 0.683704, -0.663875, -0.793943, 0.624918, 0.676490, 0.208840, 0.962314, 0.362820, 0.772940, 1.606428, -0.122450, 0.216362, -1.182223, -0.969204, 2.276088, 0.195578, -0.861958, -0.064710, -0.252919, 0.072252, -0.297379, -1.139888, 0.615842, -0.797196, -2.362969, -0.425130, 2.479320, -0.502803, -0.189390, 0.741748, -0.491664, 0.951242, 0.827396, 0.178470, -0.641742, -1.533794, -0.593862, -1.626103, 1.130744, 1.131827, -3.772321, -0.559363, 0.719245, 1.122014, -0.287638, -1.169031, 0.651085, -0.510943, -1.510822, -0.063816, -0.722222, 0.255818, 0.697665, 0.320904, -1.289394, -1.224787, -0.347790, -0.166135, -1.791772, 0.258354, 0.498435, -0.539995, -1.567683, -0.865629, -1.814919, -1.128370, 0.790603, -0.132310, -0.448530, 0.145025, -0.244010, 0.224476, -0.890154, 0.306108, -1.298195, 2.108936, -0.582208, 1.452610, -0.312109, -1.236338, 0.094996, -0.009935, -0.470598, -0.403244, 0.204501, -0.428012, 0.439674, -0.128136, 1.276248, 2.559436, -1.016343, -2.112634, -1.441053, -1.185648, 0.039115, -0.228886, -1.430952, -0.515052, 0.167344, -0.604830, -0.284895, -2.520651, 0.054911, 0.325911, 0.411236, -0.324748, 0.013136, 1.646319, 0.022821, 0.785766, 0.320375, 1.178190, 0.918574, -2.096366, 1.599525, -1.156967, -1.291589, 0.173924, 0.544679, -0.099780, 1.046660, -1.000173, 1.632640, 1.536410, 0.752063, 1.089912, 0.600260, 0.988167, -0.059682, 1.664781, 1.607080, -0.383973, 0.715836, -0.588035, -0.171650, 0.724845, -0.009811, 0.144272, 1.485045, -2.468019, -0.625782, 0.629748, -0.149571, 0.094794, -0.720417, 0.466368, 0.839744, 2.813787, -1.109426, 1.788474, -0.152154, 0.011179, -0.493324, 1.116369, 1.123329, 0.789971, -0.980939, 0.410504, -1.580570, 0.170416, 0.543618, -0.843891, -1.015638, 0.719766, 1.441691, 0.216968, -0.667386, -1.094302, -0.794691, 0.723954, -0.464506, 1.488797, 0.747929, 0.359773, 0.292485, -0.207020, -0.427866, -0.325735, 0.776294, 2.377958, -0.225268, 0.528907, -0.123222, -0.741996, 0.379008, 1.084395, -0.455357, -0.113783, -1.016427, 0.333656, 0.022496, 0.578530, -0.791001, -0.036372, -0.098465, 1.911017, 0.755293, 0.160291, -1.019335, -0.021960, -1.173783, 0.158222, 1.221956, 0.391605, -0.688374, 0.674036, 0.162344, 1.607492, 1.079123, -0.963116, 1.791465, -0.381475, -1.076895, -0.942434, 0.183333, -1.544643, 0.186308, 1.006477, 0.028194, -2.687652, -0.497943, 1.155251, -0.160850, 1.779146, -1.038186, -0.027444, -1.656326, -0.070191, 0.226612, -1.105460, 0.838924, 0.424065, -1.230931, 0.398621, -0.039785, 0.628192, 1.014558, -0.377979, 0.373647, 0.531381, -0.379779, -0.599680, 0.399506, -0.812143, 0.041911, 0.599747, -1.560446, 0.080338, -0.541123, -0.727403, 0.038486, -1.330103, -0.046058, -0.335335, 0.368983, -0.448917, 0.682676, 0.568725, -1.714079, 0.921011, -0.206732, -0.368350, 1.321718, -0.020491, 0.531012, 0.021592, 0.339343, -1.140593, -0.391564, -0.107119, -0.236683, -1.034557, 0.100708, -0.449282, 0.030256, -0.465716, -0.455046, -1.184186, 1.723527, -0.258237, -1.290475, -1.421946, 1.294195, 1.379051, 0.136141, 0.351948, -0.018266, 0.847237, -0.021566, -0.931318, -2.056534, 0.365122, 0.997505, 2.602920, -0.761167, 1.264392, 1.830410, -1.213272, -1.553209, 0.234176, 0.323397, -0.725278, 0.526702, 0.226803, -1.958645, -1.091297, -0.011619, 0.684826, -0.009424, 1.215389, -0.909560, 0.050839, 1.758763, -1.407746, 0.423231, -1.959009, -1.254847, 1.125488, 0.552132, -1.654553, -0.554040, 0.637097, 0.696657, -1.386460, -0.505970, 0.740580, 0.850192, -0.161729, -0.587337, -0.218720, -0.599069, 0.804794, -0.057150, -1.209704, -1.395190, -0.767662, -0.064794, 0.372170, 1.135837, 0.429881, 0.525413, -0.352796, 1.233959, -0.973516, 1.073572, 0.593402, 1.543265, -1.188478, 2.123628, -0.248787, 0.491973, -0.494814, -0.762773, -0.033604, -0.534293, -0.310574, 0.036215, -0.064379, 1.902932, -0.277711, -0.855579, -0.859116, 2.425140, 1.447875, 0.651337, 1.091749, 1.120395, -1.221832, 0.112273, 0.024132, -0.983881, 2.035450, -0.567740, -1.363777, -0.499334, -1.012821, 0.094597, -0.852352, 0.655773, 0.239259, -0.877779, 0.228158, -1.236552, 0.320742, 1.445940, -0.025044, -0.003785, 1.563272, 1.172344, -0.884234, -2.289657, 0.830618, 0.327599, 0.157927, -1.882563, -1.508342, 0.382493, -0.994105, -1.779637, -0.350338, 0.644919, -0.162481, -0.561791, -0.292453, 1.661347, 2.744623, 0.508979, 1.267254, 0.387200, 1.116384, -0.153209, -0.353780, 1.885726, -0.446143, -0.996422, 1.312443, -0.348828, -0.179586, 0.226335, 0.340366, -0.251821, 0.824876, 0.775029, -0.116069, 1.221625, -0.649652, -0.262559, -0.189682, 0.340743, 1.709756, 0.585655, -0.661662, 0.342280, -0.232525, -0.562666, 0.174523, 0.066243, -1.599213, 2.531471, -0.142645, -0.125509, -0.915869, 0.308407, -1.158598, 0.408644, -0.083824, 2.681291, -1.546395, -1.523349, -0.304321, 2.641508, -1.475251, -0.817083, 1.122185, 0.612842, 1.328678, -0.526128, -0.234835, -0.679203, 0.369675, 1.542627, 2.138129, -1.202362, -0.275408, -0.319938, 0.769256, -0.899474, -0.128025, 0.727383, -1.950824, -0.532140, 0.577920, 0.544175, -0.275512, -0.661959, -1.184935, -0.539799, -1.251001, 1.061214, 0.987375, 0.952338, 2.106361, -0.445452, -0.102870, -0.987018, 0.796406, -1.589291, -0.984786, 2.175890, 0.878986, -1.303779, 1.381738, -0.382568, 1.545153, 1.120980, -2.607963, -0.742678, -0.797142, 0.054504, -1.254030, 0.531856, 1.495502, -1.095563, 1.238427, 0.145039, -2.147918, -0.614304, 2.304283, 0.572977, 1.878409, -0.820310, -1.299808, -0.251479, 0.402326, -1.094128, 0.419399, -1.453472, -0.353842, 0.449488, 1.035677, 0.602080, -1.049608, 0.215506, -0.370363, 0.614483, 0.213826, -0.110799, -1.268846, 0.550292, 0.488564, 0.650422, 0.094543, 1.400128, 1.085979, 0.078700, -1.454187, -0.659944, 0.808809, -0.898729, 0.486505, -0.660853, -0.663082, -0.753350, 0.122708, -1.486485, -1.044857, -0.462478, -0.629648, -1.037736, 0.523050, 1.289400, -1.188837, 0.345922, -0.079748, 1.544174, 0.825203, 1.494623, 1.013468, -0.493277, 0.190401, -1.227905, 1.450422, -1.793353, -0.669938, 0.444625, -0.687635, 1.703094, -1.738284, -0.975158, -0.883730, 0.117322, -0.653096, 1.693622, 1.288797, 1.490813, -1.174640, -0.157626, 1.514826, 0.431111, 0.490108, 0.365193, -0.330806, 0.257561, 0.162109, -0.956062, -0.678524, -0.696529, 1.573911, 0.260740, 0.734999, -1.957596, -0.469499, -0.468998, 0.991787, 0.380781, 0.421273, 0.178817, 0.751496, 1.052312, 1.117894, 0.159977, -0.107782, 1.719500, 0.774930, 0.556565, -0.318402, 1.262776, -1.698784, -1.735955, 0.483090, 0.155759, -0.920446, -0.593141, -0.464839, 1.747810, 0.574726, 2.271998, 1.096809, -2.022347, 0.486468, -0.310964, 0.979258, -0.299639, -0.662594, -1.161256, 0.826822, -0.482803, 0.848660, 0.000758, 1.692897, 0.235913, -1.935236, -0.346001, -0.353184, -2.144652, 1.034221, -0.673041, 0.287329, -0.777888, 0.351853, 0.490109, 1.474277, -0.183182, 0.319611, -0.456337, 0.133169, 0.467387, -0.565013, -0.421942, -0.193670, -1.332679, -0.874967, 1.613541, -1.136294, 1.854410, -0.556349, 0.548563, -1.671199, -0.043325, 0.817063, -0.128590, 2.412078, 1.331446, 0.378804, -0.043284, -0.286320, 0.848561, 1.278577, 1.773656, 0.911615, -1.805698, 0.234705, -0.181564, 0.121394, 0.466954, 1.267693, -0.371449, -0.020568, -2.171257, 1.000126, 1.061159, 0.505495, -0.969288, -1.152498, -0.182558, -0.628118, -0.373315, 2.211878, 1.285323, 1.186292, 0.845856, 0.427614, 0.721105, 0.031726, 0.776502, 1.512902, -1.046481, 0.904783, 1.308605, -1.539528, -0.040557, 0.361875, -1.012259, -0.940666, 0.037068, -0.065892, -1.155974, -0.841934, -2.347145, 0.075728, -0.316108, 0.972830, -0.589255, -0.191023, 0.463864, 0.390986, 0.181009, 0.190874, 0.766675, 1.032602, -0.593371, 0.503112, -1.045168, 0.550146, -1.900579, -0.272935, 1.148232, -0.245716, 0.754492, 0.157743, -0.063951, -0.912690, -0.323499, 1.655576, 0.727205, 0.337494, -0.746560, 1.979771, -2.154375, 0.238954, 0.674898, 0.290035, 0.508623, 0.238075, -0.746953, 0.917649, -1.644612, 0.502363, 0.089401, 0.508571, 0.623569, 0.477996, 0.387759, -1.172721, 0.970701, 0.733727, -0.125840, 1.773905, -1.121656, 1.333812, -0.251404, -0.896054, -0.381041, 0.118461, -1.629806, 0.067714, 0.061594, 0.321507, -0.050412, -0.278915, 0.627870, -0.044515, 1.287073, -0.979405, 0.685551, -0.380886, -1.643892, 1.313650, 0.141613, -0.970911, 1.184946, -2.157228, -1.459640, 0.538561, 0.699558, -0.303640, -0.108299, 1.245393, -1.913161, -1.542441, -0.163104, -0.324393, -2.242914, 1.630139, 0.948557, 0.426050, -1.618316, -0.696065, 0.586882, -1.018793, -0.437240, 0.745870, -0.316719, -1.665113, -1.242550, -0.814925, -0.325437, -1.117700, -0.212810, -0.756375, 0.390049, -1.004653, -1.651104, -0.871851, -0.698587, -1.425555, -0.811383, 0.642577, 0.310604, -1.859788, -1.692393, 0.238403, 0.386056, -0.340491, -1.001342, -0.593708, -0.064249, 0.659165, 0.187226, -0.772300, 0.453423, 0.841282, 0.934110, 0.864331, -0.940953, 0.345837, 0.103412, -0.027145, -0.227788, -0.300733, 1.372915, -0.477588, 0.031030, -1.770696, 1.731423, 1.594679, 0.596607, -1.023487, 2.074233, -0.666359, 0.644589, 0.841822, 0.277574, 1.564192, 0.863628, 0.836216, 0.870658, -1.265987, -0.124717, 0.600019, -0.471383, 0.269590, -0.919838, 0.523051, 1.549593, 2.487397, -0.595452, -0.166794, -1.103905, 0.878145, -0.211910, -1.791964, -0.838534, -0.957797, 2.505346, -1.169337, -0.472157, -0.388990, 1.302714, -2.537949, -2.488113, 0.853702, 1.182353, -0.000154, -2.121131, -0.028600, 0.761508, 1.429013, 1.292225, 0.204175, 0.752785, -1.226625, 0.351576, -1.568331, 0.702363, 1.777936, -1.854469, -1.040808, 1.192233, -0.013438, -0.512396, -1.555198, -1.442163, 0.892473, 1.234882, 1.289877, 0.280704, -0.169063, 1.375754, 0.857097, 1.336896, -0.441673, -1.566456, 0.778496, -0.695970, 0.006153, -1.720969, -0.889830, -0.763117, -0.528502, -0.097321, 0.195173, -0.625830, 0.195705, 0.940522, 0.773672, -0.100510, 0.918883, -1.060731, 0.131079, 0.828299, -0.624251, 0.127454, -0.978299, -0.323283, 0.334632, -1.449966, -1.445615, -0.293141, -1.611847, 0.023450, -0.024560, -0.114500, 0.120742, 0.012154, 0.433593, -0.967235, 1.190966, -0.358853, -0.510341, 1.171354, -0.738971, -0.500408, 0.152481, 1.438761, 1.207522, 0.901185, 0.800722, 0.160888, 0.186841, 0.692368, 0.073113, 1.058602, -1.590634, 0.515061, -2.049998, -0.465840, -0.693507, -2.183272, 0.524993, 0.423880, 0.408038, -1.054390, -0.880862, 1.538043, 0.909203, -0.725540, -1.434025, 0.403302, 0.587620, 2.974963, 0.931787, 0.173392, -1.230264, 1.998399, -0.359904, 1.391133, 2.113743, -0.386662, -0.621082, 0.300080, -1.373614, -0.209795, 0.667779, -2.221721, 0.754526, 0.022138, 0.135022, 0.803149, 1.884429, 0.606001, 2.013745, 0.112433, 0.133606, 1.429963, -0.960882, -1.305413, -0.140874, -0.856742, -0.701118, 0.315902, -1.346026, -1.838305, 2.523635, -0.460362, 2.023920, -1.283741, 0.247436, 0.372712, -0.120169, 0.459905, 0.575902, -0.389160, -0.998085, 0.207795, -0.550396, -0.222576, 0.658455, 1.385007, -1.329448, 0.186255, 0.186056, -0.203054, -0.372280, -0.871205, 0.104640, 1.582643, 0.337969, -0.476638, -0.096993, 0.509839, 1.311044, 0.267209, 0.547898, 0.606629, 0.661469, 1.478996, 0.303150, 1.054283, 1.963517, -0.701416, -0.644236, -0.670002, 1.485709, 0.867337, 0.330906, 0.310329, 1.293163, 2.306950, 0.512658, -0.694413, 0.068148, -1.136732, -0.810269, 1.395791, 0.997877, -1.143858, -1.089280, -0.496521, -0.050454, -1.358466, 1.567171, -0.141172, -1.363225, 2.074891, 0.231248, -0.591231, -1.028763, 1.302356, -2.111721, 1.336129, 1.147171, -2.028263, 0.841178, 0.102087, 1.241837, 0.512563, 0.467606, -0.240968, 1.268157, 0.389327, 1.278809, -0.102705, 0.408528, -0.488802, -0.377720, -2.062289, -0.370082, -0.420057, -0.001716, -0.112779, 1.504343, -0.853454, -1.042517, 0.212851, -0.472853, 1.170080, -0.541422, -0.039304, 0.933957, 1.357692, -0.429652, -1.702277, -0.159772, 0.001983, 0.000002, -0.543599, -1.698953, -1.104731, 0.698160, 0.442014, 0.421941, -0.584926, -0.385530, -0.571799, -0.154162, 2.106135, -1.281321, -0.289063, -0.004227, -1.236964, -0.364015, 0.404688, -1.278293, -3.094613, -2.402176, -0.350939, 0.559308, 1.620555, 0.702482, 0.313948, -0.120019, 1.820701, -0.209859, 0.034231, 1.009775, -0.240234, 0.641508, -0.830939, 0.047171, -0.461867, -1.351455, 0.045219, 1.273847, -0.067354, 1.777573, 0.194085, 1.382331, -2.380929, 1.322756, 0.066846, -0.443359, 0.844103, -0.182564, -0.321789, 0.525938, 1.558613, -1.000298, 2.095170, -1.273995, -1.048167, -0.047360, -0.398325, 1.345394, 1.237966, -2.107172, 1.281710, -0.688015, 0.340963, -0.761513, 0.036355, 0.751413, 2.138854, 0.837824, -0.661121, 2.223464, -0.024160, 0.258210, -1.262901, 0.101704, 0.886722, -1.530659, -2.376492, 1.471753, -1.091717, -0.080357, 0.328669, -0.709377, -0.627621, 0.200232, -0.399206, -0.985927, -0.316829, -0.887110, 0.441063, -0.730294, -0.483783, 0.309477, 2.657938, 0.741498, -0.014179, 0.548736, 0.297112, 0.053352, -0.534102, 0.675665, -2.457662, 1.756811, -0.656191, 0.648414, 2.293105, -3.063736, -0.371508, 0.669888, 2.075385, -1.055540, -0.389699, -0.202379, 1.000234, 0.851372, -0.286208, 0.386047, 1.082359, 1.027662, 0.695166, -1.019722, 1.415310, -0.850611, 0.228916, -0.172337, 0.788785, -0.490355, -1.012435, 0.779454, 0.867956, -0.622320, -0.090468, -1.180841, -0.527309, 0.799429, 0.602665, -0.816127, 0.165748, 0.310293, -1.297851, -2.127904, -1.053795, -0.662907, -0.250302, 1.088920, -1.113692, 1.543742, -0.576911, -0.213999, 2.256395, 1.962789, -0.383080, 0.069965, 0.347551, -0.185584, 1.376954, 1.159101, -0.256020, -0.125754, 0.057725, -0.205835, -0.687395, 0.268903, -1.814178, -0.008433, 0.397908, -0.419803, 1.289426, -0.781659, -0.554355, -1.473182, 0.696459, -0.066383, 0.987544, 0.880593, 0.066657, 0.378186, -1.038281, -0.351476, 0.993799, 0.353034, 1.967381, -1.244548, 0.979393, -1.938769, 1.197030, 1.552737, -1.013856, 0.278807, -0.776079, -1.393610, 0.417863, 1.896697, -0.583991, 0.845668, 0.072539, 0.416493, 1.224551, -1.032908, -0.800929, -0.257251, -0.341851, 0.654992, -0.062871, -0.126248, 0.638023, 0.411336, -1.146026, -0.871349, -0.107819, 0.159237, 1.084878, -0.096234, 0.008714, 0.363630, -0.885676, 0.824603, -0.348342, -0.290375, 1.992267, -0.944929, -1.033954, -2.124754, 0.306700, 1.568433, 0.237954, 1.011253, 0.890108, 1.137032, -0.970933, 0.323666, 1.409332, 0.634482, -1.863711, 0.136564, -0.031205, -0.990787, 0.078272, -0.388315, 1.529234, -0.180333, 0.654552, -2.241537, -1.685225, 0.276770, 0.787062, -0.951388, 1.494093, -1.052059, 1.363340, -0.606494, 0.435609, 1.032341, 0.854363, 1.151113, -1.584345, 1.533453, -0.254832, 1.204281, 0.745791, -1.491793, -0.078630, -0.463900, 1.553098, 0.563620, 0.278828, 1.504271, -0.418872, -2.625763, 0.123032, -1.236659, 1.284504, -0.158240, 0.797906, -0.748526, -0.288808, 1.613181, 0.715834, 0.409639, 0.231675, -2.486954, 1.359262, 0.693055, -0.053956, 0.688209, -0.542796, 0.917013, -0.156186, -0.733029, 1.300479, 0.103335, -1.143418, 0.927558, 0.673648, -2.786823, 0.630348, -0.596049, -1.192626, 0.397885, 0.935736, 0.360845, -0.102760, 0.171726, -0.122494, 0.717100, 0.825085, 1.096298, -0.337822, -0.632185, 1.125006, 0.330534, -0.448444, -0.118234, 1.081982, -0.706928, -1.447757, 0.784149, -1.080579, -0.007369, -1.275368, -2.074418, -0.341810, 0.625092, 0.693246, 0.013951, 0.951710, 0.833433, -0.562873, -0.379527, 0.339144, -0.118447, -0.630108, -0.064035, -0.243146, 2.724359, 0.696421, 0.882557, 1.114483, 0.474649, -0.078484, 0.923468, -1.233502, 0.081886, 0.561078, 1.546341, -0.227950, -0.476978, -0.602240, 0.058573, -0.939124, -0.895486, 0.703519, 1.507734, 1.295597, 0.444187, -0.967023, 1.312898, 1.001435, -1.094791, 0.311407, 0.544028, 1.649227, -0.539164, -0.748347, -1.037615, -0.085585, 0.944574, 2.846277, 1.472078, -0.338934, 0.938910, -1.315354, 0.807254, -1.851259, 1.563321, 0.552499, -0.790993, -0.083347, -0.822957, 1.003915, -0.061260, 1.095248, -1.742030, -0.688430, 1.127627, -0.263740, 0.733030, -0.540750, 0.238349, 1.293281, 0.870832, 0.997744, 0.185250, -0.110307, -1.537922, -0.365415, -0.039089, 0.982837, 0.319798, 1.032417, -0.576030, 1.310834, 0.136676, 1.127323, -0.089150, 0.896282, 0.417950, 0.070422, -0.157127, 1.234319, -0.978378, 1.476864, 0.538272, 0.385858, 0.320429, 0.022871, 0.392842, 0.177457, -0.332814, 1.390906, -0.397742, 0.112415, -0.340343, -1.330629, 0.912444, 0.346352, -0.483079, -0.433957, -0.328288, 0.074146, 0.337486, 0.741707, -0.383569, -0.563149, -0.218291, -0.517675, 1.377026, 1.542241, -0.767136, -1.118123, -1.837940, -0.696887, 0.324369, 0.830081, 0.464813, -0.125971, -1.908897, 1.403316, 0.166996, 0.582172, 0.572374, 0.348029, 1.436253, 0.242459, -0.271409, -1.317343, -0.374362, -1.281095, 1.020371, 1.681033, -0.711967, 1.158792, 2.966699, -0.125565, -1.093711, -0.243393, -1.654180, -0.591599, 0.718302, -2.049595, -0.703539, 0.167982, -1.420567, 0.662354, 1.062625, -0.681258, 0.888918, 1.372472, 0.330192, -0.557152, -1.373163, -1.256078, 0.872913, 1.500677, -0.400971, -1.098439, 0.752767, -1.375299, -0.704750, 0.398118, 0.120716, 1.290664, -0.248734, -0.061709, -0.315851, 0.413841, -0.991105, -1.510866, -0.408108, 0.405287, -0.293155, 0.179160, -1.653138, 0.990054, 0.711607, 2.209724, 0.325221, -0.042293, 1.082162, -1.343456, 0.150146, -0.968255, -1.531807, -0.504254, -0.317111, -0.196447, 0.191399, -0.762299, -2.040827, 1.885169, 1.282522, 0.962386, 0.280749, -0.036098, -1.639054, 1.170920, -1.492695, 0.143669, 0.650995, 0.234237, 1.230955, 0.057640, -0.214090, -0.534227, -0.578776, 0.125763, 0.019438, 2.150549, -1.869604, -0.313717, -0.314017, 0.486108, -1.115248, 0.462417, 1.098508, -1.190247, -0.727925, 0.669302, -0.021880, 0.807131, -0.897302, -0.413006, -1.143647, 0.747145, -0.446139, -0.165424, 0.761598, -1.464150, 0.308694, -0.945917, -0.416103, -0.305428, -0.898248, -0.159927, -0.425741, 0.027930, -0.645810, -0.023443, 1.363165, -0.682764, -0.867862, -1.430043, 0.673272, 0.214845, 1.537753, -0.012069, -0.946378, -0.503318, 1.903265, -0.604833, -0.912314, 0.350789, 1.039350, 0.201091, -0.759496, -0.787621, -0.507002, -0.951064, -0.133818, 0.853275, 0.360311, -0.057158, 0.810785, 0.417495, 0.018208, -1.632295, -0.809766, -1.169716, 1.522623, 0.568319, 1.102799, -0.209293, -0.215655, -1.167315, -0.206248, -0.816123, -0.874441, -0.190806, 0.378056, -0.895094, 2.001792, 0.279251, -1.649177, 0.514400, 1.805737, -0.539054, 0.846530, 0.238871, -0.573209, 1.738087, 0.746235, -0.279255, 0.450477, -1.008486, 0.495469, 0.077325, 0.477148, 0.261582, -0.645051, -0.633761, 0.032262, 0.253078, -0.305077, -0.837905, 1.051906, -0.275461, -0.468255, 2.785873, 0.995899, 1.418191, -0.675931, 0.529137, -0.604013, -0.395066, -1.748740, -1.505819, -0.289815, -1.232342, -0.690178, 0.448758, 0.124130, -0.210617, -0.672301, -1.221108, 0.537656, 0.654851, 0.032209, 0.592418, 0.254624, -0.710136, -0.086747, -0.622997, -1.310471, 1.036720, -0.903373, -0.959263, 0.262379, 0.998065, -0.182319, 1.007750, 0.356757, -0.022003, 0.824459, -0.359133, -0.017737, -1.407765, -1.187161, 1.273830, 0.118736, -0.700377, -0.752612, 0.450680, 0.089769, 0.594245, -0.793705, -0.084685, -1.136831, -0.721463, -1.679135, 0.053687, 0.193615, 1.107299, -0.015698, -0.156326, 0.076302, -2.239511, -0.128651, 1.292904, -0.779378, -0.786066, 0.832118, -0.525856, -1.994214, -1.537125, -1.580682, 0.208293, 0.372145, -0.463928, -1.100816, 0.726475, -1.400278, -0.435401, -0.748394, 0.314515, -0.398082, 0.045251, -1.189218, -0.538288, -1.333592, 0.439772, -0.373387}, + { 0.445119, -0.473154, 1.043832, 0.777392, 0.336832, 1.607917, -1.256141, 0.886497, -0.493596, 0.676463, 0.012833, 1.039813, -0.030301, -0.612872, -0.133890, -1.667399, 2.916224, 0.100309, -1.667854, 1.436229, -1.732758, -0.453935, -0.285197, -0.322268, 0.601576, 0.176054, 0.811950, 0.836817, 0.551970, -1.137375, 0.317023, 0.097334, 0.680212, 0.770360, -0.797717, -0.379524, -0.795399, 0.194768, 1.628859, -0.217443, 0.030528, 0.945046, 0.292479, 0.136449, -0.635604, -0.628854, 0.572396, -1.108107, 0.805043, -0.575554, 0.191515, -0.600326, -1.467304, -0.160230, 0.968471, -0.371370, -0.642809, 0.517223, 0.645355, -0.865668, -1.973043, 1.192697, -0.546544, 0.234783, 0.831680, 1.071745, -0.306672, -1.219912, -1.655767, 0.471195, -0.732462, -1.356594, 1.425433, 2.090956, -1.082446, -0.234593, -0.601599, -0.647650, -1.406416, -0.080426, -2.663863, -0.766313, 1.641921, -0.352298, 0.745640, 1.491805, 2.281355, 0.514820, 2.185823, -2.314241, -0.169153, -0.298561, 0.334818, -0.491147, 0.328098, 0.915667, 0.402621, -0.746891, -0.946256, -0.144328, 0.227210, -0.478551, 2.912821, 0.470826, -0.404351, 0.548383, 1.860363, 1.211489, 0.244203, 0.065883, 1.231655, -0.481459, 1.409605, 0.744219, 0.665025, 0.692379, -0.019274, 1.339805, -1.001782, 0.111468, -0.955685, 1.245185, -0.316737, -0.090949, 0.013979, -1.520471, -1.386841, -0.411242, 0.920072, 1.776073, -0.082401, 0.157874, 0.091302, 1.025784, -1.359340, 2.027332, -1.349896, 0.385464, 1.905441, -1.127224, 0.482441, 1.913600, -0.617968, -0.898145, 1.119693, 0.358507, 0.019756, -0.191372, 0.703550, -0.547417, -0.346055, 0.184678, -0.111272, 0.619518, -1.948512, 1.083403, -0.085566, 0.281789, -0.864147, -1.348143, 1.721284, 0.542809, -0.605238, -0.662774, 1.618685, 0.026117, -0.999879, 1.073480, 1.695607, 0.686530, -0.070985, 0.067097, 0.441073, 1.058383, 0.236613, -0.122160, 1.226766, -2.121287, 0.864963, -0.906502, 0.788784, -0.114583, 1.716322, -0.140293, 0.803576, 0.097291, -0.079516, 0.731232, -0.179123, 1.447323, -0.404925, -1.159394, -0.096744, -1.058249, 0.324214, 0.032134, -0.915288, -0.892403, 0.035589, 0.410577, 1.733285, -1.554785, 0.734351, 1.227558, 0.417913, -0.278726, -0.123782, -0.533453, -0.519297, 0.603304, 0.008567, 0.197589, -0.304968, -0.619938, -1.508928, 0.842970, 0.388260, 0.965970, 1.615622, 0.037578, 1.321452, 0.570423, 0.837113, 0.959701, -1.785599, -0.118456, 0.440891, 0.390267, -1.246232, 0.388323, -0.359202, -1.526424, 0.649643, 1.248093, 0.444873, -0.876070, 0.588197, 0.516607, -1.146631, -1.477178, -1.867158, 2.048766, 0.583620, 1.099906, 2.005556, -0.154881, -1.377580, 0.992883, 1.499071, 1.408246, -0.754189, 0.809171, -0.463964, 1.036659, 0.407151, 0.182255, 0.859734, -1.040145, -0.393154, 0.304349, 0.099052, -1.669704, -0.059810, -0.115147, 0.681644, -0.035526, 2.093822, 0.374111, 0.966913, -0.711796, 0.558377, 0.004689, -0.236323, -0.015492, 0.507350, 0.884238, 0.796181, 0.407894, -0.651447, -0.297920, -0.675614, 0.080077, -0.546734, -1.485716, 0.356631, -0.381172, 0.228533, 0.689613, -0.165249, 0.874549, 0.522173, 1.338984, 1.683538, -0.858577, 1.715507, 0.962570, -1.854659, 0.301397, 0.777961, -0.168081, 0.822478, -0.091549, -1.307847, 0.395082, -0.734842, -0.908345, -0.106309, 0.795496, -0.989138, -1.035424, -1.028767, 0.794088, -0.556766, -0.578390, -0.205136, 0.407657, 0.192795, -0.004476, 1.330971, -0.460468, -0.340379, -1.404826, -0.268784, 0.009571, 1.271649, -1.710451, -2.075173, -0.264577, -1.691788, -1.099675, -0.527835, -0.724047, -0.771612, 0.636082, -0.496467, -0.230907, 0.097217, 1.231677, 0.824362, -2.003355, -0.411184, 0.420341, -2.203910, -0.119704, 0.429810, -1.679386, -3.574735, 1.227788, -1.065000, 0.838933, -0.033208, -1.115704, 0.435834, 0.217366, -2.191301, 0.511384, -0.355264, -1.158450, 0.633463, -0.307346, -1.324384, 0.483216, 1.122067, 0.806615, -0.219632, -0.830491, -0.489634, -1.658145, -1.419990, -0.975801, 1.988137, -0.428863, -1.211944, -0.293354, -1.890205, -1.864249, 0.203997, -0.729941, 0.339944, 0.927718, 0.412664, -1.409777, -0.503725, 0.092292, 0.320979, -0.275510, -1.846167, -0.503700, -0.970977, -0.069228, 2.064976, -0.323504, -0.362595, -0.580841, 0.037430, -0.225678, -0.667707, 0.380894, 0.849483, 1.021359, -0.606119, 0.590615, 1.082592, -1.106674, -0.707658, -1.296561, 0.507987, -0.871183, -1.377768, -1.984335, 0.667969, 0.564089, 0.734477, 0.454342, -0.127853, 0.197681, -0.559246, -1.551669, 0.099377, 0.199236, -1.410957, 0.504269, 0.490630, -0.682557, -1.050351, -1.410082, -1.629301, 0.134012, 0.986930, -0.266827, -0.221795, -0.283894, 0.313460, 0.394926, 1.339049, 1.207692, -1.325734, -0.874716, -0.585774, -1.138751, 0.250473, 2.165983, 0.299551, -0.024552, 0.108212, -1.080102, 0.019353, -0.506037, -2.250953, -0.536788, -0.036371, -0.158025, 0.243695, 0.110131, -2.970728, -0.546735, -0.859855, -1.213565, 0.507321, -0.255617, -0.908084, -0.119083, -0.500949, 2.417475, -0.944488, -0.943858, 0.644891, 0.213952, -1.412248, 0.336780, -0.360798, 1.631748, -1.572463, -0.632524, -0.041980, -1.419299, -0.828942, -1.567378, -0.039727, -1.079625, 0.229201, 0.540608, -1.194643, 0.285663, 0.272545, 0.363028, -0.602567, 0.052341, -0.505195, 0.834541, 0.050153, -1.553528, -0.205532, -1.577365, -1.215052, 0.251855, 0.168267, 1.217532, -0.197365, 0.899619, 1.246372, 0.827659, 0.357098, -1.029141, -0.294885, -0.659836, 2.170795, 0.805875, 0.861501, 0.261309, -0.389645, 1.508403, 0.762291, 1.077466, 0.703692, 1.135156, 0.057295, -0.376282, 0.938975, -0.858866, 0.142821, -0.523899, -2.285423, -0.385617, 2.811867, 0.627690, -0.462247, 0.901901, 0.652575, -1.488570, -2.032548, -0.527948, -2.175511, 1.228637, -0.651459, -0.586265, 0.714938, -0.275992, -0.686925, 0.436959, 0.353218, -0.917387, 0.509369, -0.352333, 0.446812, 0.287032, -0.433148, 0.039009, -1.966737, 0.444408, -1.744633, 0.709875, 0.766815, 0.899542, -0.524911, -0.297837, -0.605165, 0.231073, 1.080600, 0.954147, 0.922436, 0.708972, -0.384127, -1.495357, 0.662669, -1.454976, -0.962301, -0.710635, -0.384602, 0.167715, 1.860776, 0.481277, -0.582406, -0.336220, -0.270634, 0.990622, -1.391581, -3.308254, 0.077200, -0.967182, 0.031076, 0.106201, 1.324206, -0.474467, 0.123622, -1.284238, -0.843066, 2.506301, -2.289709, 0.357971, -0.450290, 0.875618, -1.589743, -0.279220, -0.075697, -0.579546, 2.264063, 0.607433, 0.802204, -0.261092, 0.572771, -0.056676, 1.260767, -1.387489, -0.186559, 1.016351, -1.186001, -0.347246, 1.183536, 0.875133, -0.934673, -0.797560, 0.499391, -0.046449, 0.073275, -1.042153, -0.701949, 0.622057, 2.408287, -0.153173, 0.227560, 0.666372, 1.134668, -1.259363, -1.148901, 0.522791, 0.140595, -0.210053, -0.518753, -1.677094, -1.660687, -0.459667, 0.360807, 0.423693, -0.220381, -1.114191, 0.369428, 1.140286, -1.218788, 0.061807, 1.683959, -0.396777, 0.454495, 0.458192, -0.365413, -1.974917, 0.164067, -2.237991, 0.145513, 0.410231, 1.428426, 1.624179, 0.442423, 1.449412, 0.140301, 0.167444, 0.751907, -1.105274, -0.235989, 1.810214, -0.823111, -0.947231, -0.499959, -0.269678, -0.939640, -0.300699, -0.125594, -0.147036, -0.782391, 1.741470, 0.556263, 1.613137, 1.857892, -0.212925, 1.286526, 0.622445, 0.629121, 0.271868, 1.189664, -0.555635, 1.137723, -0.283038, -0.152573, -0.305756, -0.922141, 0.139124, -0.452746, 0.783817, -2.224815, -0.988587, 0.438941, -1.346850, -0.383588, -1.076174, 2.017057, 0.830436, -0.072499, 0.771816, 0.089721, 1.127169, -0.849913, -0.851651, -1.179918, 0.365567, -1.575183, -0.690552, -0.600083, -0.244377, 1.494794, 0.186040, -0.528508, -0.187898, 0.277297, -0.467606, -2.656732, 0.029013, 0.049409, -0.345733, -0.695619, -0.515020, 1.230146, 1.424461, 1.045369, -1.072933, -1.221967, 1.483192, 1.375120, 1.096154, -1.019855, -0.547238, 0.484669, -0.213334, 0.407507, -1.138925, 2.211552, 1.364770, -0.897791, -2.195113, -0.002323, 0.508676, -0.652900, 1.036706, -0.986855, -0.272933, 0.716294, 0.225263, 0.850050, -0.175702, 0.277604, -0.394775, 1.173868, 0.170788, -0.537138, -1.400774, -0.924265, -0.772661, -1.254959, -1.068254, 0.039644, 0.625782, -0.678057, -0.314933, -0.375694, -0.128456, 0.595554, 0.684521, 1.157750, 0.591429, 1.338761, -0.049339, 0.523924, 0.949159, -0.364290, 0.594550, -0.277029, -2.544848, 0.979828, -0.054113, 0.466571, -1.441097, 1.128570, -0.627319, -0.152311, -0.074559, 0.521714, -1.244803, -0.544302, 0.031556, -0.352984, 0.219783, -1.295021, -0.461377, -0.678573, 0.594697, -0.232036, 0.965991, 0.671720, 1.197810, -0.177209, 1.668815, 0.852600, 0.667697, -0.954891, -1.164466, 0.876681, -1.099380, 0.863135, -1.590830, 0.387270, -0.627818, -0.282209, 0.092205, 0.259731, -0.436475, 0.666336, 0.862636, -1.418429, 1.028954, 0.633128, -0.344502, -0.445413, -0.917772, 1.067161, 1.033806, -0.736623, -1.232848, -0.000046, 1.670158, 0.830659, -0.947006, -1.655568, 2.115228, -0.204682, -0.317320, -0.259247, -2.256614, 1.768609, -0.940352, 2.617489, -1.161082, 0.488415, 0.160001, -0.462501, -1.547884, 0.061177, 1.531977, 0.885637, -0.115703, 0.110924, -1.409144, 0.480873, 0.066116, 1.202956, 1.374884, 0.055035, -1.198477, -0.552291, -0.982413, -0.388546, 0.495215, 0.732222, -0.372056, -0.402332, 0.740621, 0.382441, -2.032376, -0.336690, -0.559466, 0.160377, -0.150932, -0.333271, 1.341663, 1.160145, 0.076670, 0.170253, -2.123780, -0.558750, 0.138413, 2.014167, -1.759145, 0.869138, 0.123394, 0.076442, -1.298242, 0.437281, 1.676512, 0.162649, 0.832893, -1.591976, -0.819439, 0.214216, -0.911420, 0.139072, 0.532018, -0.780894, -1.067391, 1.148767, -1.122494, -1.501490, 0.805299, 0.517967, 1.044873, 1.127760, 0.503342, 0.116609, 0.905633, -0.056781, 0.468285, 1.822238, 1.779784, -1.304204, -0.787120, -2.216815, 1.331130, -0.342338, -0.419741, 0.605828, -0.010802, -0.285163, -0.026632, 1.611123, -0.061228, -1.101793, -1.718956, 0.203809, -1.272315, 0.616155, 1.924212, -2.224122, 0.411870, 0.814128, 0.080769, -0.490324, 0.918461, -1.869735, -0.878138, -0.159494, -0.926811, -0.062024, 1.141993, 0.880375, 0.625960, -0.429581, -0.936075, 1.072202, 1.320746, 0.404902, 0.113128, 1.007151, 1.177857, -1.744764, -2.508235, 0.014618, -0.115547, 1.815358, -0.316185, 1.275342, 0.061115, -1.660781, 1.610791, 0.327311, 1.821667, -0.435296, 0.474132, 0.231506, -0.397195, -0.019476, 0.320195, -0.158928, 0.184390, 0.227816, 0.591366, 0.338935, 0.481443, 1.192742, 0.464517, -0.188714, 0.137157, -1.042174, 0.812147, 0.420455, -0.501368, 0.361881, -0.514902, 0.803301, -0.321871, 1.194072, 1.162477, -1.042911, -1.043543, 0.194267, -1.305863, -1.247235, 1.296510, 0.273247, 0.259932, 0.485477, -1.181866, 0.951560, -0.387023, 0.276561, -0.363700, 0.727754, 0.278888, 1.496657, 1.174182, -0.662167, 0.397465, -0.097367, 0.556628, 0.890196, -0.827231, 2.505127, -0.322196, 0.318376, 2.180679, 0.461050, 1.313473, -0.404756, 0.094558, -0.258227, -0.430046, 0.029090, 0.308702, 1.467458, -0.377381, 0.183779, -1.228246, 2.507902, 0.770001, -0.483459, -0.709113, 0.679286, 0.300974, 1.381046, -1.338413, 0.169533, -0.152893, -0.731757, 0.317206, -1.132385, -0.171978, -1.593291, -0.277441, -1.082818, 0.058690, -0.743156, 1.375419, -0.175848, 2.298379, -0.758842, -0.344876, -0.065156, 1.701633, -2.291595, 0.911433, 0.163927, 0.067509, 0.430522, -2.050629, -0.985868, 0.031607, -1.156353, -1.942840, -0.734165, 1.143682, -0.747089, 0.378977, 0.719969, -0.257888, -1.444776, -1.299187, 0.081402, -0.380061, 0.411510, 0.920972, -0.648182, -0.610466, 1.554721, 1.295226, -1.258189, -1.439284, -0.200945, 0.208935, -0.978033, 1.031139, -0.753402, -0.789891, -0.215346, -1.658424, 0.375993, 0.139050, -0.689565, 1.005204, -0.023334, -0.191030, 0.289306, 0.178403, 0.579095, -0.040404, 1.720090, 0.394306, -0.913215, 0.662100, 0.754405, 0.853628, 0.605991, -0.933922, -0.647689, -0.105286, 0.363477, -0.108114, 0.732689, 0.425879, -0.043327, 1.814529, 0.155269, 0.289706, 0.035651, -2.006486, 1.632694, 1.373249, 1.345818, 0.053766, -0.923442, -0.344884, -1.671897, 0.915645, -0.498141, -0.127691, 0.706245, -0.814765, 0.781381, 0.045203, 0.972048, -1.784395, 1.173390, -0.494823, 1.487358, 1.446239, 0.034313, 1.603450, 0.074342, -0.816015, 1.586687, 0.386678, 0.737776, -0.601382, 0.171102, 0.522108, 0.543032, 0.335067, -1.505013, 0.282409, -0.654412, -0.847894, 2.247601, 0.933468, 1.241868, -0.776326, -1.514374, 0.447895, -0.259333, -0.842128, 0.384512, 1.351975, 0.062370, 2.568610, -1.990075, -0.951339, -0.262280, 0.596171, 0.663489, -1.177934, 0.492811, -0.886424, -0.797710, -0.121154, 1.552999, 0.313108, -0.298076, -0.156315, 0.351074, 0.125582, -0.207448, -0.178823, 0.785584, -0.126075, -1.112788, 2.490072, -0.473838, -2.842844, 0.868082, -0.833170, 0.195383, -0.932486, -0.794868, -0.266260, 0.985101, -1.522821, -1.158494, -0.722767, 0.514334, 0.015415, -1.122106, -2.154212, -1.518069, -0.541851, 0.768034, -0.803622, 0.427963, -0.841106, -0.670725, -0.382748, -1.333887, -2.448131, 1.174273, 0.730021, -1.206206, 0.584151, -0.865172, -0.302115, -0.690067, -0.446726, 1.575567, 1.058657, 0.520960, 0.914414, -0.061830, 0.128361, -0.782718, 0.370507, 1.194851, 1.343405, -0.061607, 0.263703, -0.652339, 1.207498, -0.716345, 0.846537, -0.473825, 0.042430, 0.041640, 1.234389, 1.338405, 0.738119, 0.666933, -1.267039, -0.390895, 1.062140, -1.118198, -0.846442, 0.342947, 0.351610, -0.115796, 0.016200, -1.098224, 1.091577, -1.057773, 0.007015, -0.902867, 1.813186, -1.782957, -1.121155, 0.121229, 0.404375, 1.084698, -0.607494, 1.489850, -2.232066, 0.879626, 2.396561, -0.743366, 0.602817, 0.249033, -0.224385, -1.027244, 1.475202, -0.346287, -0.354360, 0.668195, 0.288366, -1.143454, -0.254986, 1.019211, -0.883886, 0.669895, 0.335771, -2.501511, -0.000678, 0.521951, 0.926404, 0.026464, -0.100591, -0.481409, 0.446169, -0.695211, 0.140362, -0.311028, -0.651785, -0.623096, -1.360713, -0.489672, 0.549583, 0.755439, -0.260836, -0.567216, 0.030241, -0.140121, 0.246393, 0.975419, 1.382190, -0.798915, 0.239506, -0.268295, -0.159122, -1.585953, 0.747272, -0.532467, -0.285113, -0.796293, 0.356058, 1.319108, 0.757863, 0.239226, 2.130827, -0.449856, 0.101542, 2.613616, 1.723821, -0.108323, -1.593893, -1.280913, 0.795403, 1.258569, 1.309434, 0.655668, 1.482746, 0.649095, 1.144722, -0.820602, -2.744595, 0.634148, -1.483733, -0.641179, 0.551660, -0.910362, 0.473238, 0.932652, 1.372759, -1.544250, -1.516462, -0.560264, -0.238196, 2.254369, -1.064274, -0.566798, 1.100560, 1.121158, -1.439244, 0.164573, 0.082947, -1.576217, 0.359215, 0.519583, 0.277496, -2.064572, -0.553201, -0.472310, -0.531897, -1.262510, -1.490321, -0.184336, 0.213583, -0.082576, 0.712710, 0.889190, -0.184382, -1.018899, -0.865866, 1.028713, 0.255126, -1.152397, -2.668563, 1.884888, 1.037127, -0.129276, -0.983769, 0.578943, -0.315907, -2.392622, -2.068044, -0.711312, -0.699440, 0.713103, 1.154616, -0.193342, -0.056196, -0.715936, -1.829736, -0.843283, 0.291382, -0.332320, 1.464449, -0.077736, -0.179879, -0.519876, -0.884140, 2.269854, -1.099012, -0.826958, 1.547832, -1.126261, -0.877795, 0.028225, 1.254288, -1.516589, -0.016362, -0.556604, -1.370548, -0.709287, -0.253742, 0.732590, -0.269497, 0.677645, -1.076326, 0.936983, -0.153014, 0.443587, -0.371669, -0.521957, -1.564137, 0.236757, -0.856678, 0.502733, -0.034335, -0.123695, 0.031425, 0.604081, 1.792542, -0.002419, -1.149064, 2.582753, 0.757973, 0.879873, 1.036599, 2.350180, -0.481103, 1.953600, 0.519668, 0.982878, 0.373251, -1.823076, 0.935773, -0.058210, -1.619501, -1.008537, -0.111197, -0.279499, 0.020806, 0.474039, 0.510868, 0.330736, 0.789774, -0.993991, -1.225134, -0.023239, 1.798303, 0.101420, -0.145706, -1.219598, 0.717533, -0.065697, 0.081663, -0.379192, -0.822726, -0.791134, 0.618944, 0.589658, -1.060974, -0.535595, -0.849699, -0.372148, 0.165658, -1.706431, 0.246088, -0.666787, -0.649115, 1.886058, -2.048868, 0.073428, -0.127120, -0.194877, -0.895977, -0.131984, -0.452674, 0.353178, -0.872516, 0.311068, -0.992896, -0.029525, -0.354854, 1.361940, -0.156905, 0.398816, -0.410035, 2.640672, 0.195255, 1.105745, 0.591894, 1.178438, -1.658445, -2.114143, 1.353203, 1.882879, 0.647577, -0.130688, 0.182636, -0.299645, -0.836746, 1.852175, 0.260973, 0.848115, -0.445454, -1.415326, -0.682726, -0.062508, -1.373027, 0.284194, 3.046700, -0.270779, -0.485439, 0.379177, -0.533127, -2.622355, -0.305153, -2.990642, -0.382298, -0.952272, -0.564787, 0.633838, -0.497530, -1.150794, 0.521476, 0.647438, 0.982146, 0.144940, -1.737650, -0.189878, 1.814182, 0.044093, 0.250311, -0.393888, -0.646298, 0.282796, -0.546004, 0.950596, -1.219468, 0.101956, -0.329027, -0.893116, 0.382298, -0.835156, 0.455222, -0.810042, -1.728659, 0.070281, 0.522243, 0.149543, 1.081405, -2.061179, -0.342778, -1.242144, -1.000491, -1.606063, 0.400750, 0.344441, 0.475442, 0.023703, -0.817914, 1.335303, -1.244611, 0.919742, -1.430083, 0.284198, 1.519820, 1.193296, 1.914698, 0.280096, -0.082116, -1.293697, 1.806942, 0.233742, -1.727113, 1.325746, -0.125245, -1.457025, 0.440654, -0.518948, -0.542313, 0.803286, -1.918487, -0.392634, 0.309334, -1.286398, 0.642813, -0.708413, -0.980393, 0.256864, 0.895897, -0.982714, 2.412287, 0.639417, 0.296300, -0.432270, -1.326373, -1.386119, -0.859217, 0.339147, -1.205001, 2.308950, -1.297361, -1.555357, 0.871930, 1.075600, -1.038596, 0.174123, -1.466021, -0.887464, 0.439317, -1.723472, -0.773080, 1.229570, 0.724867, -1.200188, -0.651788, 1.682758, 0.623271, 0.819648, 1.764677, 1.634892, -1.234713, -1.525173, 0.033753, -1.208368, 0.772260, 0.550460, -0.752932, 0.570802, -0.145400, -0.515983, 0.929833, -0.670029, -1.338948, 0.810665, -1.075947, 3.239363, 1.214045, -0.173753, 1.086475, -2.183919, -0.727514, 0.878490, -0.231816, 0.098383, 1.069742, -0.139798, 1.383972, -1.431137, -0.155524, 0.107187, 0.818522, -0.419686, 0.090750, -0.165686, -0.032497, -0.772933, 0.675015, -0.051851, 0.604939, 0.383417, 0.006427, 0.747382, -0.786682, 0.337299, -0.811814, -0.214729, 0.046527, 1.570973, 0.590468, 1.954929, 1.115029, 0.126530, 0.151831, 1.720756, 0.185496, 0.164751, -0.716055, 1.646703, 0.470563, 0.826827, -0.707098, -0.869494, -1.056069, 1.706341, -0.947747, 0.311783, 0.850451, 1.021112, 1.052958, -0.824862, 0.359316, 0.645330, 0.836770, 0.408352, 0.783425, 0.448322, 0.118488, -0.123785, 0.543083, 1.254135, -2.438142, -0.046303, 0.687505, -0.725906, -1.399050, 0.666024, 0.020835, -1.425929, -0.504805, 0.004117, 0.251806, 1.806840, -1.289493, 0.948377, -0.173118, -0.450858, 0.899437, 0.829159, 0.648834, -0.695746, -0.500749, 0.106845, 0.643378, 1.969162, -0.384268, -1.237373, 0.657158, 1.141960, 0.576006, -0.154924, -0.522245, 0.235861, -1.251629, 1.227190, 0.124610, -0.106148, 0.882952, -1.566059, 0.394798, 0.631748, 1.561614, -0.857375, -0.298411, -0.114183, 3.107838, 0.634903, 1.697383, -1.368094, 1.414419, 1.685980, 0.469506, -2.339400, -0.470354, -0.539957, 0.752268, 1.948096, -1.299947, 2.209646, -0.972365, 3.123261, -0.499789, 0.411832, -2.754864, 0.050477, 0.469501, -2.038935, -0.878044, 0.855652, 0.199876, -0.703543, 0.374343, 1.167835, 1.153715, 0.544666, -0.532937, -0.307288, -0.517039, 0.244624, -0.107869, 0.543769, 1.484097, 0.553920, -0.599081, -0.033657, -0.389028, -0.929977, 0.167219, 1.342763, -0.579549, -0.480978, 0.014840, -1.950127, 1.157626, -0.364853, 0.077331, 0.296183, -0.877377, -0.394357, -0.290307, -1.573712, 0.192010, 1.525145, -1.233198, -0.878320, -1.396172, -0.843371, -0.083626, 1.278501, -1.203108, 2.158181, -0.338898, -0.520221, -0.763082, 0.554311, -0.414722, -0.489690, 0.903157, 0.946642, -1.763235, -0.709302, 0.733793, 2.099186, -0.430129, -1.053120, -0.707658, 0.187597, 0.870224, 0.329374, 1.564309, -0.113607, -0.449934, 1.140110, 1.148917, 0.261029, 0.854663, 1.254778, 0.149178, 1.697518, 0.218603, 1.414580, 0.662400, 1.188810, 0.866572, 0.966318, -1.228429, -0.558151, -0.775880, -0.321728, 1.015275, -1.177651, 0.624961, 1.592404, 0.658400, -0.961794, 0.788909, -0.298850, 0.474365, -0.305631, -1.274752, -0.247920, -0.565445, -1.110976, -0.094393, 0.128003, 1.523329, -0.592129, -0.273271, 0.338141, 0.164882, 0.140703, 0.856759, 0.557581, 0.725007, 0.887878, -1.575801, 1.082501, 0.802525, -0.846624, -2.450380, -0.027417, 1.160120, -0.876875, 0.665872, 0.056115, 0.678734, 0.522773, 2.375005, -0.570240, 0.351812, -1.215094, 1.496298, 0.466337, 0.004833, 1.362081, -0.665827, -0.345820, 0.240475, 0.971472, 0.138472, 0.699409, -0.897390, 0.145269, 0.442312, -0.800023, 0.691540, 0.519334, 0.839232, 0.124278, 2.193990, 0.970328, -0.130000, 1.355692, -0.177570, 0.394085, 0.140887, 0.317281, 1.499767, 1.116584, 1.466801, 0.156931, 0.172191, -0.366363, -0.816484, -0.484801, -0.394532, 1.492783, 1.097460, -1.346779, 1.065015, -0.409580, 0.587696, 0.302069, 1.053640, 1.240212, 1.116937, 0.823102, 0.532479, 1.161337, 0.534540, 1.329467, -1.635893, 1.344311, 1.031487, -0.465008, 0.011091, 1.317150, -0.706851, -0.482200, -0.555220, 0.970122, -0.915416, 0.337366, -1.188465, 0.823592, -0.280394, 1.129206, 1.262385, 0.206818, -0.958472, -0.403096, -1.960969, -0.156436, -1.817728, 0.058621, -0.937661, -2.574958, 1.196240, -2.174734, 0.660575, -0.098401, -1.124977, -0.405538, 0.262015, -1.301079, 0.054430, 0.463855, -0.392882, 0.718025, 0.927174, -0.943939, -1.886439, 0.287906, 0.142918, 0.624646, 1.909642, -0.890252, -1.237076, -0.431491, -0.385939, -0.159040, -2.060808, -0.563694, 1.703303, 0.171865, 0.610756, -1.339435, -1.033214, 1.193579, -0.112958, -0.840296, -0.875586, 1.571828, -1.117643, -0.326746, -0.642918, 1.172195, 1.261208, 0.506327, -0.973180, -0.623980, 1.680725, 0.664086, -0.557622, -1.325644, 1.221144, -0.243666, 0.273273, -1.167349, -0.277732, 0.215382, 0.296523, 1.369266, -1.529631, 1.278960, -1.446984, 0.898180, 1.610570, 0.420249, 1.580500, 0.741431, 0.415944, -0.271828, -1.327712, -0.858541, 1.980369, 0.433231, -1.345234, -0.136021, -0.712164, 0.719573, 0.002668, 0.126652, -0.225729, 1.442768, -0.005062, 0.278475, 0.548349, 0.333459, 0.569977, -0.229757, 0.542157, -0.003927, -0.229945, 0.465486, -0.338063, -0.256578, 0.621886, -1.155744, -0.989504, -0.059479, -0.681969, -0.278101, 0.844314, -1.111082, -1.351723, -0.448149, 0.024706, 0.570856, -0.816887, 1.129449, -0.586894, 1.377468, -1.419398, 0.824789, -0.553485, 0.429284, 0.072544, -0.091782, 2.559306, 1.280580, -0.053309, 1.017680, 0.011755, -0.557787, -1.749623, 0.506322, -1.244153, -0.635163, -0.052143, -0.007948, -1.450335, 0.031427, -0.445962, 0.751267, -0.226573, -1.339501, -0.697049, -0.301933, 0.741104, 1.593529, -1.635407, 1.043478, 0.560015, 0.461283, 0.577739, 0.767304, 0.563988, 0.167180, -0.716158, -0.911206, 0.059151, 1.285289, -0.023074, 0.461194, -2.312461, 0.746139, -1.397856, 1.760796, -0.265294, 0.453073, 1.694083, -0.042914, 0.141447, -1.393602, 0.203397, 1.395482, -0.538113, -0.289765, 1.915001, 1.538113, -1.045848, 0.787230, 1.567099, 0.553045, 0.923660, -0.443930, 0.190700, -0.724304, 1.197513, -1.023009, -0.517609, 1.231048, 0.311936, 0.163326, 1.128081, 1.660442, 0.910080, -0.204356, -2.158100, -0.347869, -0.281085, 0.050793, 0.504579, -1.155712, -0.036819, 0.916988, 0.121339, 0.177754, -1.907408, -0.894663, -0.528765, -2.300378, -0.314587, 0.214344, 0.199457, -0.956849, 0.338651, 0.372935, -0.230400, 0.947612, -1.382138, 0.235219, 0.578544, 2.782571, -0.931137, 0.262602, -1.670414, -0.930342, -1.986811, 0.536506, 1.707789, 1.316520, -0.279316, -1.736040, -0.094301, -0.278340, -1.575139, 2.010543, 0.125107, -0.190962, 0.947005, -0.044107, 0.902201, 0.020473, 1.511117, -0.527767, -2.871304, 0.276488, -1.317324, 0.492933, -1.073972, 1.797996, -0.489012, 0.056658, 0.511585, 1.054746, 0.137984, 1.035550, 0.467196, 0.749252, -0.161535, 0.729445, -0.623730, -0.127494, -0.320258, 0.162846, -0.790931, 0.639133, -0.409762, 0.426748, 0.311413, -1.838424, 1.447363, 1.086839, 0.781768, -1.108313, -1.115052, 0.835288, 1.382072, -0.015458, -0.245803, 0.968015, -1.123724, 0.494564, -0.038508, -0.387131, 1.106225, 0.009442, 1.200671, 0.528790, -0.144378, -0.606111, 0.371866, -0.468716, 1.733440, 0.869307, -1.476297, -2.006900, 0.705579, 0.841590, -2.070354, -0.555132, 0.746545, 0.100803, 0.814912, 1.536637, -0.787772, -0.042370, -0.310165, 1.355631, -0.719627, 0.342789, 0.973230, -0.611076, 0.906250, 0.261213, -0.369027, -0.301825, 1.835713, 2.119118, -0.865479, 0.560915, -0.812310, 1.026368, 2.041843, -0.175875, 0.574802, 0.954238, 1.171314, 0.235029, 0.002576, 0.949293, -0.143947, 0.648565, 0.677570, 0.466369, -0.045866, -0.067830, -0.182763, 0.241196, -0.589831, 0.641594, 0.469336, -0.704943, 0.765208, 1.405321, -2.586930, 0.504387, 0.923522, -0.413934, -1.287781, -1.170544, -1.276405, 2.573697, 0.866409, -0.392593, -0.611072, 0.064542, 0.500189, -1.838727, -0.045371, 0.303432, -0.228493, 0.024984, 0.247104, -0.176999, 1.729159, -0.183860, -0.322647, -1.273515, -0.431710, -0.407515, -0.529484, -0.539063, -1.531165, 0.396057, 1.322986, -0.226699, 0.099704, 0.082171, 0.573679, 1.620993, -1.754027, -0.031096, 0.159269, 1.283569, 0.132250, 2.616592, -0.027288, 0.878672, -0.852922, -0.017852, -0.068829, 0.337308, -1.504776, -0.626574, 0.482235, 0.037153, 0.766060, 0.138370, -0.782014, -0.051792, 0.035599, -0.451657, -1.357122, 0.204080, -0.537314, -0.851261, 0.625139, 1.466073, 0.450127, -0.179821, 0.829165, -0.225354, 0.510498, -1.195154, 1.283967, 0.556581, -0.196188, 0.239925, -0.251414, 0.218577, 1.006958, 1.481866, 0.618208, -1.579377, 0.209141, 2.507805, 0.643082, -0.349892, 0.210590, -0.055031, -2.033960, -0.196276, 0.563640, 1.146144, 0.533118, -1.008577, 1.259767, -0.679221, -1.768842, -0.691799, -0.050704, -0.064375, 1.203347, -1.261703, -0.029635, -1.267219, 1.261616, 1.540422, 2.697761, 0.936547, -1.383151, 1.185941, -0.784177, 0.480951, -0.088694, -1.873029, -1.000411, 0.288119, 0.026073, 1.486634, -0.368049, -0.008690, 1.211875, -0.181960, 0.052896, 0.157682, 0.413803, -0.047971, -1.276602, -0.137402, -0.932968, 1.203422, 1.985214, 0.173327, 0.826649, 1.216570, 1.537049, -0.095690, 0.894564, -0.577314, -1.067967, -1.616430, -0.892332, -0.100268, -0.162172, 0.037294, 2.931959, -0.390638, 2.476921, -0.850866, -1.880034, 0.940545, 1.168214, -0.372699, -0.997372, -1.344309, 0.366253, -0.414391, 0.806214, 1.105949, -1.735690, -0.749426, 0.442343, 0.356426, 1.309756, 0.239795, -1.498293, -1.174952, 2.026730, 1.274727, -0.631073, 0.218077, 0.842128, 0.715973, 0.513658, -1.332315, 1.421439, 0.075649, -0.485636, -1.100232, -0.425527, 1.913609, -0.424338, -0.125630, 0.826761, 0.868808, -0.515694, 0.420084, 0.837584, -0.256476, 0.462730, 2.109076, -1.325152, -2.614274, 0.381084, -1.864672, 1.062618, 0.796504, -0.548352, 0.412650, 1.802110, -0.455621, 0.653162, 0.205297, 1.088083, 1.418042, 1.840997, -1.000186, -0.129693, 0.710866, 0.349496, 1.624947, 0.663476, -0.930858, -0.764883, 0.844605, 0.344576, 1.894931, -1.110100, 0.055522, 1.457486, 0.175511, -0.673116, -0.825865, -0.312506, 0.085200, -1.005920, -1.338646, -0.968501, 1.783331, -0.033418, 1.337914, 1.354819, -1.150176, 0.542002, -0.819032, -0.929293, -0.886023, 0.540529, 0.529881, 0.461316, 2.198988, 1.039596, -0.381874, 0.994611, -0.097990, -0.618171, 1.036063, -0.128804, -0.059572, -1.422507, -1.616396, -0.567453, -1.684671, -1.154930, -2.122177, 0.020472, 0.188448, -0.281856, -0.614978, -0.861772, 1.371670, 0.963873, 1.440382, 0.819237, -1.466511, 0.046215, 1.027821, -1.062101, 0.870284, -1.170438, 1.002682, 0.128588, -0.362307, 1.194106, 1.529350, 1.079643, -0.867110, 0.173117, 1.753436, -0.384962, -0.210062, -1.211264, 0.914321, 0.831748, -0.289767, -0.393380, -1.045292, -0.218983, 0.162850, 0.576392, -0.747760, -2.132529, -0.374764, 1.075252, 1.368446, 0.614433, 0.784159, 0.998922, 1.402115, 0.413642, 0.853606, 0.307536, 1.018278, 1.186868, 0.308069, -2.051404, -0.209297, -0.007471, 0.113945, -1.181682, 0.397277, 1.547440, 0.454210, -1.422295, -0.274718, -0.886599, -2.117491, 0.094100, -1.408151, -0.910527, 0.202663, -2.111931, -0.667701, 0.016120, 0.423472, -0.129547, -0.685574, 0.277973, 0.664660, 0.154029, -0.002274, -0.112638, -0.220912, 0.710863, -1.155411, -0.602838, 0.525730, -0.493204, 0.066081, 0.762007, 1.808286, -1.491509, -1.653607, 1.320863, -1.017336, -1.597963, 0.503794, -0.552158, -0.380628, -0.232112, 1.900824, 0.449515, 0.805114, 0.281926, -1.072548, 0.304914, 0.241748, -0.147825, 0.739446, -0.575660, 0.078954, 0.503776, 0.402500, -0.871709, 1.995089, 0.141639, -0.321793, 2.458877, 0.791777, 0.213938, -0.801643, -1.176360, -1.628903, 0.227337, -0.202964, 2.377225, -0.414948, -0.212604, -0.029952, 1.667230, -0.648748, 0.793706, 0.315122, -0.127790, 0.157811, -0.023022, 1.127182, 0.690497, -0.080774, 1.389231, 1.388951, 0.315906, -0.941514, -0.668299, 0.626686, 0.366315, 0.761998, -1.691397, -0.567768, 0.782920, 0.087398, -0.989534, -0.089442, -1.112205, -1.655602, 0.845405, -0.979932, -0.621913, 0.341469, -0.841533, 0.763129, 1.964652, 0.641574, 0.125370, -0.248421, -0.119691, 0.094154, 0.187117, -0.325465, 1.033841, 1.367824, 0.035982, -1.074745, -0.205548, 1.107619, -0.639589, -0.566624, -0.071150, 1.873251, -0.414732, -0.043120, -1.491350, 0.132143, -0.795502, 1.011363, -2.610685, -1.372581, -0.216076, 1.264477, -0.814401, 1.357369, 0.830488, -1.478731, -0.739502, -0.501687, -0.126677, 1.461818, 0.332628, 1.763559, -2.403701, 1.248663, -0.115690, 0.544353, 0.911584, 0.172331, -1.461996, -1.146678, -0.504065, 0.353899, -0.222511, -0.319474, -0.712997, -0.933359, -0.259083, 0.220278, 0.984686, 0.806947, -0.352082, 0.478239, 0.540776, -0.302879, 0.218109, -0.402735, 0.043845, -0.257444, 1.330354, 0.685986, -0.628673, -0.786473, 0.451059, 0.223090, 2.746953, -3.192045, 1.050389, 1.312766, 0.185920, 0.204864, -0.980669, 0.945794, 0.469161, -0.845435, 0.295456, 0.364052, -0.432265, 1.109849, -0.645794, 0.211575, 0.035461, -0.271523, -0.934340, 1.081102, 0.399726, -1.789979, 1.380088, -0.775216, 0.308756, 0.296923, 0.621531, -0.398855, -1.944472, 0.135696, 3.078555, 1.633316, 2.472620, -0.027389, -1.379917, -1.213266, -0.552189, -1.117704, -0.627201, -0.474243, 0.233880, 0.858701, 0.597096, 0.995571, -0.149394, 0.131599, 3.023540, 0.990320, -0.387559, 0.194157, -0.661549, 0.992530, -1.085806, 1.088710, -0.492843, -0.220814, -0.586818, 1.303468, -1.165376, -0.915063, 1.198294, -1.412731, -0.014002, 0.427326, 0.613732, 1.466150, 1.146561, 0.081403, -0.760330, -1.727830, 0.764730, -0.843078, 0.992430, -0.045395, 0.474261, 1.422835, -0.962950, -0.041529, -0.922869, 0.187789, -0.711709, 0.324116, 0.454405, 0.385090, -0.869315, -2.257521, -1.488564, -1.072348, 1.090927, 0.381059, -0.805549, -0.611456, -0.237535, -1.480893, -1.207193, -1.068438, -0.626834, 1.455436, 1.616093, 1.336291, -0.844376, 1.005406, 1.957869, -0.104202, -0.074938, 0.298070, -0.459832, 1.485114, -0.101477, 0.634632, 1.515647, -0.275526, 0.030645, 1.433441, 0.666253, -1.690786, -1.178418, 2.547283, -0.257785, 0.439092, -1.469637, 0.077075, 0.431684, 0.189967, -0.494375, -0.861028, -0.332260, -0.410466, 0.989876, -1.999406, -1.827448, 1.385238, -0.346283, 2.047734, -0.404249, -0.219221, -0.085152, -0.624391, -0.257860, -2.415328, -0.952369, 0.894287, -0.984438, 1.569269, -1.042673, 0.221111, -1.406157, 0.543850, -0.633184, 0.059251, -1.574110, 1.425475, 0.077419, 0.403313, -0.536827, -1.515825, 0.789457, 1.179071, 0.953108, 0.821623, -0.973314, 0.401178, 0.229556, 0.262362, 1.087518, 0.873532, 0.379720, 0.381720, -0.085807, 0.896269, 0.461447, 2.463325, -2.518463, 0.851560, -1.329320, 0.092004, 1.578780, -0.572657, 0.767601, -1.079418, 1.168974, -0.627887, -0.011383, -0.118989, 0.531131, 1.143228, 1.902901, -0.200627, -0.486797, 1.641399, 0.608356, -0.216496, 0.725261, -0.162895, 0.330982, 0.820958, -0.921749, -0.733622, 0.310342, 0.553115, 1.359880, 0.082874, -0.149544, -0.742177, -1.103584, 0.393630, -0.398683, 0.626538, 0.424161, 1.507152, -0.502384, 1.191880, -0.234665, -1.903783, -0.023994, 0.784056, -0.657606, 0.406854, 2.338391, -1.410067, -0.127203, 0.532538, -1.027586, -0.244461, 0.232750, -1.394837, -0.424207, -0.734668, -1.031211, 0.169774, -0.503059, -2.034449, 0.502734, -1.014961, -0.293693, 1.015388, 0.374324, 0.943302, -1.221246, 0.824060, -0.720302, 1.723397, 0.505406, 0.704047, -1.924815, 0.199160, -1.213922, -2.698929, 1.703014, 0.470391, 0.648153, 0.360156, 1.165374, -1.145570, -0.052626, 1.174861, -0.747914, -1.843718, 1.308031, 2.207995, -0.748276, -0.513953, -1.100582, 0.595030, -1.228178, -0.579758, -0.033902, 0.625216, -0.004651, 2.388036, -0.914000, 0.016502, 1.338437, -1.013636, 0.240145, 0.016415, 1.743971}, + { -1.050104, 0.851740, 1.760948, -0.260951, 0.773147, -0.085042, 0.984130, -0.694930, -0.848098, -0.303356, 0.486844, -0.036915, 0.756838, 0.270384, -0.096876, -1.705442, -0.875968, 0.148035, 1.944572, 0.137014, 1.051771, 0.101055, -0.591238, 0.228010, -0.222546, -0.522328, -0.279744, -1.260191, 0.411245, -2.832319, -2.845732, -0.403106, 1.321160, -1.301782, 0.283506, -0.170718, -0.337379, 1.025586, 0.947707, -0.013840, -1.617493, -1.872769, -0.494146, -0.277383, 0.426942, 0.222001, -0.989461, 0.235463, -0.326515, -0.326163, 0.925300, -0.695288, -0.055403, 1.661719, 2.754292, 2.063362, -0.452832, 0.441295, -0.094271, -1.358375, -1.358480, 0.286429, -0.310945, -0.391619, -0.611637, 1.299027, 1.484519, -1.884884, 0.822183, -0.131740, 1.548682, 1.914729, 0.121496, 1.034936, -0.829079, 0.135968, -1.233624, 0.468950, -0.739665, 1.052215, 0.231715, 0.835897, 0.146238, -0.596226, -0.952935, 0.705589, 0.462045, -0.749679, 0.734601, 0.164376, -0.632611, -0.839422, -0.625897, -1.060581, 0.942459, -0.782899, -0.507493, -0.553138, -3.155368, 0.325823, 1.181858, 1.834368, 1.259962, -1.352813, -0.804411, -1.289760, -0.856301, -0.447351, -1.797498, -0.244937, 1.902796, 0.586957, 0.558029, 0.044265, 0.219389, -0.799320, 1.020997, -0.389787, -2.005269, -1.162310, 1.277081, -0.024593, -0.536412, -0.627559, 0.701306, 0.564163, -1.055129, 0.891800, 1.832375, -0.482354, 1.175039, -0.345960, -0.085098, 1.101402, 0.342817, -0.387280, 2.258290, -0.428307, -0.437184, 1.238583, 0.208886, -0.501958, 1.711706, -0.514997, -1.170438, 0.790473, -0.138227, 0.454635, -0.911892, -1.027287, 1.166656, -0.945643, 0.753910, 0.671653, 0.963674, -1.020669, 0.240791, 1.571823, 0.320863, 0.288264, -3.088539, 0.217848, 1.370296, 1.675737, 0.951504, 1.233946, -2.394449, -1.489108, -0.831133, 1.126583, 1.759461, 0.604534, -1.883522, 0.729702, 1.428674, 1.247608, 2.020521, 1.785367, 2.022477, 0.282335, -0.225219, -0.899817, 1.134865, -0.012182, -0.356991, -2.958370, 0.528379, -0.091994, 1.612938, 0.177113, -0.174741, -0.820671, -0.050537, -0.334556, -0.558426, -1.262703, 0.813752, 0.532830, 0.102357, -0.585148, -0.554758, 0.855231, -0.708542, 0.354830, 2.242085, -0.837441, -0.308129, 0.672828, -0.067562, 0.608800, 1.137189, -0.208148, -0.238313, 0.524548, 0.919691, -0.553098, -0.423979, 0.452772, -0.399442, -0.718471, -0.751696, 0.642043, -1.399958, 0.835269, -0.832004, 0.873779, 1.670800, -0.305059, -1.683703, 1.194154, 0.971555, -1.267333, 0.384064, -0.408261, -1.253819, -0.855192, 2.680749, 0.031036, 1.109628, 0.315149, 0.785434, 1.392679, 0.451148, -0.705222, -0.594100, -1.729232, -0.870825, 0.242882, 0.737568, 0.405518, 0.958272, 0.857112, 0.763798, 0.029028, 0.234864, 0.763468, 0.039577, 0.668616, 0.563011, 0.862598, 0.355550, 0.822836, -1.030874, -0.614458, -0.175062, -1.544618, -0.085549, 0.437895, 1.150567, 0.935721, -1.012053, 1.238802, -1.052835, 0.509425, -0.662986, -1.055440, 1.885569, -0.595978, 0.700366, 0.035828, 0.608206, -0.180353, -0.157545, 0.820219, 0.527421, 1.513075, -0.119157, 0.136759, -1.303168, 0.208308, -0.399784, -1.406116, -0.205548, -1.623276, 1.193833, 0.359449, -0.913725, 0.608309, 0.418733, -0.746842, -2.197005, -0.555930, -0.610731, -0.127108, 1.005005, 1.805324, -1.007350, -1.075301, -1.207348, -0.706700, 0.987397, 1.020994, -0.750428, 0.584071, 1.748245, -1.332641, -0.238638, -0.269564, 0.355541, 1.727980, 0.442839, -0.099061, 0.366921, -2.100170, -0.179568, 0.160748, -0.802068, -0.026250, -0.546199, -0.093223, 1.209833, 1.119917, 0.145115, 0.363496, -1.858578, 0.524531, 0.125150, 0.113246, 0.132912, 0.077245, 0.818551, 0.308586, -0.293372, 0.667801, 0.673581, -1.345068, 1.026106, -0.015549, -1.997613, -0.316884, 0.788533, -0.654679, 0.758228, -0.403889, 0.185800, 0.046381, 0.316637, 0.340012, -0.162078, 1.098674, 0.039271, -0.957268, 0.332483, 0.273801, -1.566557, -0.176081, 0.175404, -0.864928, 1.414942, 0.310111, 0.685319, 0.116172, 0.430560, 2.224497, 1.927643, 1.832579, -1.691567, 0.955506, -0.463715, -0.088780, 0.908587, -0.178115, -0.021907, 0.847479, -0.959113, 1.409545, 0.024926, -0.902441, -0.100101, -1.183805, 0.693638, -1.956918, 0.308475, -0.492400, 1.656146, -0.538849, -0.449507, 0.116587, -2.057016, -1.341323, 1.935542, 0.229906, 0.633852, 1.607449, -0.113654, -1.453684, -0.177316, -0.388556, 0.337893, -0.399097, 1.178495, 0.433103, 0.068697, -0.934139, 0.551306, -0.509546, 0.986441, -1.254727, -0.152533, 0.922647, 1.704715, -0.516479, 0.984688, -0.222721, 0.621025, -0.290732, -0.133148, 0.748114, -1.188029, 1.492964, 1.800189, -0.321394, 0.017701, 0.271388, 1.519788, 0.325735, 0.369316, -1.117259, 0.558981, 0.026964, 0.821030, -0.540670, -1.410102, 0.393539, 0.907437, 0.285348, -1.244247, 0.457723, 0.449056, 1.896329, 1.051571, 1.353777, 1.092753, -0.289386, -1.517437, -0.447366, 0.610817, -0.415439, 0.282971, 0.415185, 0.209349, -0.119361, 0.598789, -0.246369, -2.540778, -2.157437, 1.039342, 0.176405, 0.202913, 0.401381, -0.096723, -1.802381, 1.067456, 0.060001, -0.155005, 0.100308, 1.399262, -1.737475, -2.401234, -0.244674, -1.802676, 0.415239, 0.284430, -0.262086, 1.569243, 1.363004, 1.014927, 0.126073, -1.263765, 0.927902, 0.202006, 1.323096, 0.540385, 0.012786, -0.068971, -0.291507, -0.238783, -0.232579, 1.374966, 0.534851, 0.030856, 1.688450, 0.069913, 0.739804, 2.261253, -1.111018, 0.091270, -0.173607, 0.424485, 0.924848, 0.693890, 0.849674, 0.334656, 0.919878, 1.374691, 1.137824, -1.188757, 0.456192, 1.517513, -0.699862, -0.471799, -0.307264, -1.127343, 1.504756, -1.595168, 0.745482, 0.719533, -0.279094, 0.186277, 1.080644, 2.017308, -0.026321, -0.064334, 0.715085, 1.963507, -1.674630, -0.467564, 0.354547, -0.003942, -1.293154, -0.696808, 0.282367, 0.022179, 0.867287, 0.348183, 0.047591, 1.155602, -0.183960, -1.733841, -0.011869, 1.697129, 1.585940, 0.533170, -0.053558, 0.712089, 1.049178, -0.764531, 0.933778, -0.619964, -0.673276, 0.755021, -0.550821, 1.002476, 0.655378, -0.521221, -1.231635, 0.810712, 0.498618, 1.592913, -1.874308, 0.767303, 0.423292, -0.110988, -0.038420, -0.768042, -0.003506, -1.356288, 0.171800, -0.235799, 0.671319, -0.575070, -0.771590, 3.047997, -1.891565, -1.081929, -1.215924, 2.047206, 0.717007, -0.801868, 0.411989, 0.118208, -1.344364, 0.239152, -0.631539, 1.334027, -0.706374, 1.589629, 0.997319, -0.556157, -0.417240, 1.038071, 0.062831, -1.203538, 0.784616, 0.155421, -0.097677, -0.729028, -0.912433, -0.516493, 0.905656, -0.297156, -0.672749, 0.364179, -0.688422, 2.347499, 0.238138, -0.260670, -2.338491, 1.791093, -2.554378, -0.060427, -1.297048, 1.181877, -0.946683, -0.945687, 0.993629, -1.734293, -1.096941, -0.358513, 1.112343, -0.521198, -0.437314, 0.025110, -0.113967, -0.992061, -0.713330, 0.681993, -0.225123, 2.293878, 1.403153, 0.739554, 0.310456, -1.291777, -0.328176, -0.683770, 0.238519, 0.254914, 0.153806, -0.987748, 0.513807, 0.424743, 0.945607, -0.220656, -0.490016, 0.738459, 2.185630, -0.059705, 2.373328, -0.602771, -0.845253, -0.462983, 0.403368, -0.064104, -1.280047, -0.293702, 0.335559, -1.489431, 0.180948, 1.100480, -0.782283, -0.460562, 1.113970, -0.097187, -1.283036, 1.244986, -0.236520, 0.367219, 1.059567, 0.461540, -1.434444, 0.608749, -0.017703, -0.264461, 2.668455, -0.805338, -1.732785, 1.052351, -0.205993, -0.384507, 0.917261, 1.330197, 1.114638, 0.363902, 2.749459, -0.606039, -1.512052, 1.364934, 0.401135, 0.283434, -0.178777, -0.940149, 0.401252, 0.191250, -1.052515, -0.673125, 1.348890, 0.418493, -0.690067, 0.002045, -0.974710, 0.894730, 0.229738, 1.047669, 1.274858, -0.337723, -0.370015, 0.306857, 0.625710, -0.400371, -0.358819, -0.755431, -0.898174, 1.017288, 2.520072, 1.242687, 0.361563, -0.596693, -1.447858, -0.629902, 0.396876, 0.959751, -0.064345, 0.206358, 1.876887, 1.201578, 0.999628, -0.057378, -1.434791, -2.983628, -0.654079, -1.426744, 0.564790, -0.033222, -0.246810, 2.335053, -0.062262, 1.784829, 0.602693, -1.550762, -0.032094, -1.045864, -1.888092, 1.812221, -1.009752, -0.058859, 0.113872, -0.188944, 0.845872, 0.727605, -0.369217, -0.467735, -0.903551, 0.230362, -0.968503, -0.119049, 2.130219, 1.992388, -0.064370, -1.146456, -0.771580, -0.600606, 0.094632, -1.308043, 0.386780, 0.218758, -0.354974, -0.600921, 0.197313, 0.802285, 1.828176, -0.215307, 0.369628, 0.635802, 0.717933, 0.181594, 0.209398, 0.314150, -0.212557, 1.022041, 0.525169, 0.546904, 0.692528, -0.908854, 0.014867, -1.394348, 0.141442, -0.030332, 2.840991, -0.778409, 0.016614, -0.138869, -1.199519, 0.222956, 0.800841, -0.865870, -0.389325, -0.106275, 0.489065, 0.250935, -1.539800, 1.393391, -1.455775, -0.976652, 0.895871, -0.326881, 1.014845, -0.472287, 0.764726, -0.564137, -0.188655, -0.135541, -0.837198, -2.076240, 0.241777, -0.068509, 0.901481, 0.197587, 0.622280, 1.084918, 0.470674, -0.262295, 0.068701, 0.172609, -0.682893, -0.621625, 0.063194, -1.208267, -0.704549, -0.861561, -1.730424, 1.212334, -1.769090, -0.962524, -0.723652, -1.349620, -0.187003, 0.410022, 0.661138, -0.707714, 1.260247, -0.414381, 0.758798, 0.683419, -0.261396, 0.061901, 0.149950, 0.266812, -0.726238, -0.486876, 0.062698, 0.553897, 0.479294, -1.448374, 0.507636, -2.346486, 1.063414, -0.822606, -0.340498, 0.236981, -0.075136, -0.677558, 1.116128, 0.449878, -0.399137, -1.245261, -0.580172, -0.677592, -1.399622, 0.945854, -0.337612, 0.562182, 1.480059, 1.390533, -0.972220, 1.013287, -0.725117, -0.990412, 1.211104, 0.519324, -1.656554, -2.638333, 0.651821, 0.624165, 1.270033, 1.258196, 0.494269, 0.238732, 0.531198, -0.072483, 0.557525, -0.322904, -0.074844, -0.907902, -0.221786, 0.457757, -0.598915, -0.322739, 0.346953, 0.868127, 0.360280, -1.678912, 1.452304, -0.019834, -0.458903, -0.216007, 1.091661, -0.807372, -0.424735, 1.225945, 0.385545, 0.412738, -0.239363, -0.507021, -0.435201, -0.048752, -1.630993, 0.818481, 0.760323, -1.176984, 0.197156, -1.038101, -1.067224, -0.401381, 0.214429, -0.766218, -0.645589, -0.651632, -0.519759, 0.022447, 0.386456, 1.680880, 1.296471, 1.238824, -0.425002, 0.798854, 0.584602, -2.378628, 0.511520, -0.582259, -0.446778, -0.332894, 0.970097, 0.296599, 0.043734, -1.178687, -0.943815, 0.051011, -1.188565, -0.437895, -0.551500, -0.216011, -1.440180, 1.300131, -1.522742, -0.535919, 0.245617, -0.456483, -2.186481, -0.749511, -0.902191, 1.478058, -0.919501, -0.274592, -0.227791, -0.141516, 0.058764, 2.225221, -0.870458, -0.967629, -1.771994, 0.326383, 0.241432, 0.171822, 1.426217, -1.480473, 0.341936, 1.966583, -0.791514, -0.081857, -0.202100, 0.369928, 1.058743, -0.611827, 0.921819, -0.604249, 0.995822, -1.046986, -0.484409, -2.316767, 0.399777, 0.957714, 0.314163, -0.965273, 0.961739, -0.733071, 1.106458, 1.793095, 0.039524, 0.979612, 0.306513, -0.522191, -0.504139, -1.036884, -0.280283, -0.254177, 1.065350, 1.816050, -2.005032, 0.161313, -0.285361, -0.977616, -0.109072, -0.696342, -0.256539, -0.180186, 1.430899, 0.838463, -1.061960, -1.592524, 0.441530, 1.366050, -0.685318, 0.233680, -2.311427, -0.308096, 0.555344, 0.048981, -0.752526, 0.585936, 0.370827, 0.352839, -0.462694, 2.730259, 0.318348, 0.066214, -0.342504, 0.586782, 1.457488, 1.856496, -0.605141, -0.535174, -1.999769, -1.668622, -0.408905, -2.378285, -0.016774, 1.287151, -0.719079, -0.548583, -0.337331, 0.862812, -0.605760, 1.648520, 0.094051, -1.951560, 0.089223, -0.780328, -1.075616, -0.501557, 0.207018, -0.984979, 0.505881, -0.957748, 0.292560, -0.654020, -1.521583, 0.399999, -0.875850, -0.427864, 0.104920, -0.284185, -0.279061, 0.311303, 0.824885, 1.477813, 0.126833, -0.169382, 1.263168, 0.565827, 0.294153, -0.041792, -1.703477, -0.882949, -0.164699, 0.015699, -0.194581, -1.209354, 1.462874, -1.141294, 1.590655, 0.811364, 0.573021, 1.166842, 1.156637, -0.505591, 0.096107, -1.026647, -0.179227, 1.679374, -1.184700, 0.711789, 1.047191, -0.182652, 0.970459, 0.419897, 1.290955, 0.810446, -0.581004, -0.595683, -0.139267, -0.498031, 0.048846, 1.505327, -2.143813, -0.629577, -0.252255, 1.028242, -0.765101, -0.390921, -0.217402, 0.479872, 0.011424, -0.157042, 0.734651, 0.189349, -0.119298, 1.560242, 0.612179, 1.302071, -1.198902, 0.618100, 1.676716, -0.772555, 1.220210, -0.166774, -1.177870, -1.177902, 0.809546, -0.799127, 1.034321, -0.145202, 0.367323, 2.489962, 0.425243, -0.464740, -0.234826, 0.207980, -0.911901, 0.744626, 0.640711, 0.294641, 0.312020, -0.100161, 0.023665, -0.569919, 0.539226, 0.144603, -1.384257, -1.079836, -1.278033, 0.736026, -0.544919, 0.176548, -1.709892, -1.411979, 0.782916, -0.097198, 0.229842, -1.588447, -0.459033, -1.412327, 1.015274, -1.276133, 0.435498, -0.278965, -0.074937, -0.172663, -1.084600, -0.630960, -1.487925, 0.528229, 0.569579, 0.083534, 0.460871, 1.379124, 1.016671, -0.118298, 0.973762, -0.136367, 1.315556, 0.668521, 1.814967, -0.771829, -1.384105, 0.990654, 0.841416, 0.029240, -0.691763, 1.171851, 0.370924, 2.733368, -0.568443, 0.673389, 0.869627, -1.045340, 0.497292, -0.280144, -1.036110, 0.847121, -1.130689, -0.820482, -0.430357, -0.123934, 1.888240, -0.527257, -0.351635, 1.423017, -0.339125, 1.102714, -0.315699, -1.104933, 1.008917, 1.342390, 1.458689, -0.385539, -1.016880, 0.581250, -0.196346, 0.931329, 1.164288, -0.247903, -0.228536, 0.835217, -0.144650, -0.090957, 0.760739, -0.809166, 0.947617, -0.212802, 1.281088, 1.101748, -0.716830, 0.043255, -0.528309, -0.763206, -1.506980, 0.974319, 1.138049, -0.803519, 0.176812, 0.286667, -0.104673, -0.741020, -0.625206, -0.330992, 0.198928, -0.594688, 1.396620, 0.016673, -0.815823, 1.664508, -0.170367, -2.500268, -1.219836, 0.695559, 0.165445, 1.588555, -0.695296, -0.489465, 0.150997, 0.493484, 0.101510, 0.126520, -1.573688, 1.159101, -0.364522, -0.688085, -0.312782, -0.898272, 0.450867, -0.435013, 0.246921, 0.034450, -0.439975, -1.804829, -0.068320, -0.499654, -1.826085, 1.732197, -0.619400, 0.793144, -3.463029, -0.440606, -0.850981, 0.305892, 0.090604, 2.434437, 0.655124, -1.372699, -0.517537, -2.463883, 0.722855, 0.572804, -0.627829, 2.062758, -1.756823, -0.522275, 0.222496, -0.085869, 0.692665, -1.785366, 0.613105, 0.260673, -0.204498, 0.250998, 0.330212, 1.385464, 1.499173, -0.244544, -0.602137, 1.724807, 0.963152, 0.882231, 1.284749, -0.290747, 0.870654, -0.187853, 0.296364, -0.582804, 0.539557, 1.500398, -0.396130, -0.506023, 0.698999, 0.630518, -0.378596, -1.396902, 0.533503, 0.287936, 0.448920, 0.647826, 0.107994, 0.816036, -0.317601, 0.478552, 1.790181, -1.788593, 1.631016, -1.079836, 0.811293, -0.628658, -0.580595, 0.401982, 0.569849, 0.770866, 1.332316, -2.743430, -1.254921, -2.446743, -1.056456, 0.141758, 1.556393, -1.090519, -1.363106, -0.351823, 0.029793, 1.169748, 1.378610, 1.711351, 0.828068, -1.074599, -0.223655, 1.107016, -0.445439, 1.903487, -2.814875, 0.002307, -0.847779, 0.247274, -0.564948, 1.217887, -0.495183, -0.762937, -0.862757, -0.286405, 0.728582, -0.400891, -0.404757, 1.617295, 1.799583, -0.067192, -0.436241, 0.422387, -1.409052, 0.743152, 0.668135, -0.848996, -0.770020, 0.151187, -1.119343, -0.254092, -0.980843, 1.428326, -0.139192, -1.632969, -0.997932, -1.298561, 1.268624, 2.015321, 1.566318, -0.090312, -0.145650, -0.077887, -0.331785, -2.126774, 0.079247, 0.516671, -0.244639, -1.618103, 1.007665, 0.011055, 1.087784, -0.376843, -0.384728, 1.290764, 1.057104, -0.913489, -0.522801, -1.892181, -2.794821, -0.715227, -1.903783, -0.198911, -0.320695, -0.648763, 1.287908, -0.448754, -0.276334, 2.333137, -0.236980, 1.518776, 0.618936, 0.308806, 0.251606, -0.141605, 2.084855, -1.516574, 0.067112, 0.015472, -1.164162, -0.728226, -2.385466, 0.314487, -0.851540, 0.300903, -0.784852, 2.687056, 1.665760, -2.083869, 0.309880, -1.947824, 2.580373, 1.132692, -0.078935, 0.463516, -0.873756, -0.788863, 0.549656, 0.721034, 1.474422, -1.952553, 0.190517, 1.041629, -0.596603, -1.905171, 1.129173, 1.251417, -1.817391, -1.061355, 0.915165, -2.123946, 1.236051, -1.228409, -0.159711, -0.655804, -0.560730, -0.562828, 0.721478, 0.010690, 0.437009, 0.495920, -0.703829, -0.775189, -1.194754, 0.337509, -0.932305, -1.271299, 1.027621, -0.460641, 0.388271, 0.972452, -0.280572, 1.885038, -0.460650, 1.480823, 1.766066, -2.534727, -1.046588, 1.150445, -1.914867, -0.549929, 0.261702, 1.594321, -1.445070, -2.427070, 1.437757, 0.409672, 0.482781, 1.634529, 1.790684, -1.029307, 1.098532, 0.883415, -0.304889, -1.273391, 0.828298, 1.039949, -0.276642, -1.955131, 0.748213, 0.948770, -1.751379, 0.170211, -0.348103, 0.778671, -0.327411, 0.727372, -1.308437, -0.417400, -1.118454, -0.017688, 0.265638, 0.399090, 1.092914, -1.671373, 1.553571, -0.320174, 0.149660, 0.292985, -0.452985, 0.167332, 0.048975, 0.332529, 1.156851, -1.803404, -0.612971, -0.344844, -1.345627, -2.173171, 0.337222, -0.340274, 1.470315, -0.465364, 0.777066, -0.059724, 0.540948, -0.924273, -0.498785, 0.130303, -0.024488, 0.771386, -0.888127, 0.409938, -1.327856, -0.271714, -1.612004, 0.112701, -1.986177, -1.149349, 0.642528, -0.603705, -1.515244, 1.840038, 1.147426, -0.108651, -0.384249, -0.392141, -0.767295, -0.649777, 1.895359, -1.430295, -0.272704, 0.969845, 0.256234, -1.367562, 1.372657, 1.148524, 0.804224, 0.250775, -0.543023, 0.044346, -0.176317, 0.356183, 1.804415, -2.931144, -1.303446, 0.215903, 1.559797, 0.164174, -0.177832, 1.081160, 0.829425, 1.429229, 0.314129, 0.639403, 0.049648, -0.150397, 1.223584, 0.068886, -0.871838, 0.250440, -0.121434, -0.790761, -1.551351, 1.957268, 1.425010, 1.720424, -0.140462, -0.292308, -1.145658, -1.090995, 1.442057, 0.771168, -1.421402, 1.924043, 0.042159, 0.440960, 0.084090, 0.792587, 1.623435, -0.848524, -0.410371, -1.910007, 1.114971, 0.113813, 0.384190, -0.343022, 0.901978, 1.780175, 0.165075, -1.235795, -0.973140, -0.684883, 1.378608, -1.556359, 1.389666, 0.125180, 1.432838, -0.367771, 0.348334, -1.170123, 0.894740, -0.892537, -0.429992, 0.041033, 1.725004, 1.691471, 1.270950, 2.368528, -0.649795, -1.793756, 0.648308, 0.390791, 0.100766, 0.439901, -1.116386, -1.336909, 1.158723, 1.261636, -1.846923, 1.178719, 0.118388, 0.982257, -1.036349, -1.180894, -0.245587, -0.129389, -0.053290, -0.077119, 0.049128, 0.302768, -1.212949, -0.297443, 1.020663, 0.864797, 0.907904, 0.281368, 1.169923, 0.056198, 1.455476, 0.487488, -1.467424, -0.509325, -0.081169, 0.189246, 2.273947, -1.102465, -2.270064, 2.581475, 0.243144, -1.425038, 0.786366, 1.204281, -1.225804, 0.664714, 1.304731, 0.208075, 1.271172, 0.358766, -2.539291, 2.170035, 1.003199, 1.000141, 1.153371, 0.376017, 0.245331, 0.119319, 0.170506, 0.468791, 0.845317, 0.880419, -0.182267, -0.351487, 1.221351, 1.109485, -0.122763, -0.441408, 0.397473, -0.692110, -0.958655, -0.890841, -0.165561, -0.669242, -0.960004, 1.029351, -1.827937, 0.344003, 0.487598, -0.509466, -1.950244, -0.986274, -0.754782, 0.490325, -2.561658, -0.364866, 0.115597, -0.835832, -0.680565, 1.116448, 1.034222, 1.156194, -0.462367, -0.646126, 1.490184, -0.092126, -0.985075, -1.204694, 0.966325, -0.439018, -0.291853, -0.972802, 1.684901, -0.306335, -2.867162, 0.840268, 0.047128, -0.484602, -0.361164, 0.529141, 0.253967, -0.279505, 0.301664, 0.908830, 0.570776, 0.450165, 2.010303, 0.977634, 0.450457, 1.897397, 0.130140, -0.472491, -1.332368, -0.590533, -0.236377, -0.171133, 0.685940, -0.456521, 1.388796, 1.351646, 0.170174, -0.382853, -1.348521, 0.691629, -0.278505, -1.271869, -1.342085, -0.139426, 0.329207, -0.708711, 0.017592, 1.484468, -1.975322, -0.854597, -1.040721, 0.085031, -1.284979, -1.059245, 0.839824, 0.931990, -0.163811, -0.008066, 1.313868, 0.631472, 1.869960, -0.307023, 0.555135, 0.174737, -1.814567, -1.491072, -0.252474, 0.213044, 0.238095, 1.161464, -1.684574, 0.313886, -0.216870, -0.618215, 2.270164, -3.519725, -0.367013, -1.231144, -0.811809, 0.219825, 0.315066, 0.814039, -0.233066, 1.959956, 1.282328, 0.152132, -1.447953, -0.359744, -0.127220, 0.547382, 0.621872, -0.243756, -0.680312, -1.452631, 0.674617, -0.882651, 0.505583, 0.574320, -0.724038, 0.208307, -0.758440, 0.037523, -0.436246, -1.103913, 0.605163, -1.203271, -0.349048, -0.590220, -0.587942, -1.742100, -0.122615, -2.138384, 1.205681, 0.268602, -0.364161, -1.191892, 0.407916, 1.239345, -0.703523, -0.360744, -0.711938, -0.320934, -0.523445, 1.561669, -0.743672, -1.076270, -1.210861, -0.827123, 0.340647, -0.034845, -0.560500, -0.123075, 0.673215, 1.025805, -0.163507, 0.118245, -0.172347, 0.829372, 0.959543, -1.080799, 0.145325, -1.512127, 0.243233, -0.851418, -0.402083, 0.670363, -2.581012, -0.094808, -1.015808, -0.091176, 0.356494, 2.140609, 1.451248, 0.290791, 0.955669, -0.612150, 0.355083, -0.860035, -0.220295, 1.935034, -2.245154, -0.691729, -0.641136, -0.957094, 0.264666, 0.953032, 0.925415, 0.805269, -1.676702, -0.732828, 0.321373, 0.820801, 0.263415, 0.978789, 0.415271, -0.770884, -0.560305, -1.474311, 1.453777, -0.139642, -1.420674, 0.967396, -0.255116, -0.477515, 0.055763, -1.208753, 1.400063, -1.609228, 2.044857, -0.461519, -1.552521, -0.567215, 0.564991, 0.129456, -1.370450, 0.495831, -0.699535, -1.036510, -0.713296, -0.056456, -1.175707, 1.714374, -0.546644, 0.555167, 0.589690, -0.114738, -1.099528, -0.720584, 2.580354, 0.154068, -0.075990, 0.497113, -0.557604, 0.632325, -2.232875, -0.555574, -1.780078, -1.514722, 0.930837, -1.006835, 0.224690, -0.801820, -0.062706, -1.463318, 1.299447, -0.188101, 0.937312, 0.483199, -0.571289, -0.810484, -0.644893, -1.193224, 0.059205, -0.141947, 0.418589, -1.198344, -1.883460, -2.485989, -0.826594, -0.843370, -2.850616, -0.465154, -1.836882, 1.497049, 1.158938, -0.037906, 1.257824, -0.388018, 0.557795, -1.873809, -3.291062, -0.014402, 0.263339, -0.641722, -1.651595, -2.528742, -0.578036, 0.321927, -0.588572, -0.571020, 0.814622, 0.098188, 1.541206, -0.233167, -0.067291, 2.019158, 1.188454, -0.491439, -1.278601, -0.880556, -0.137270, -0.239827, 1.146000, -0.410556, 0.807072, 1.006048, 1.333995, -0.171237, 1.928859, -0.650880, 0.775498, 1.419518, 0.066664, 0.424831, 1.121179, -0.204914, -2.000347, -0.731608, -2.163165, -1.186326, -0.001448, 0.732853, -0.114406, -0.241247, -0.052114, -1.340066, 1.064839, 2.225616, 0.252704, 0.048093, -0.152621, 0.371792, 0.079982, 0.195513, 1.385363, -0.167603, 0.362770, -1.148246, 1.123373, 0.437405, 0.615800, 1.022465, 1.091354, -0.246173, 0.679600, 0.297476, 0.067711, 1.085536, 1.521773, -1.743577, -0.963234, -1.663871, 0.197685, 0.956560, -0.755337, -0.448105, -0.307985, -0.372927, -3.681711, -1.190052, -0.650981, 1.021996, -1.023422, -0.432114, -2.023940, 0.193068, 0.499775, -0.721505, -1.853910, 0.701858, -0.410427, 0.833886, 0.673609, 2.411486, -2.828877, -0.258035, -0.999973, 0.206999, 0.094633, 0.609048, 0.181900, -0.039991, -1.936095, -0.653988, 1.382607, -0.845476, 0.260008, 0.326553, -1.852391, -0.822542, -0.954687, -0.968077, 0.278658, 0.068318, -1.167719, -0.052708, 0.154352, 0.212280, 0.596978, 0.604840, 0.432039, -1.806290, -1.023921, 0.458002, -0.074754, 0.242409, -1.401399, 0.676589, 2.262212, -0.399023, -0.301030, -1.010048, -0.271403, 1.708313, -0.026174, -1.056340, -0.713290, 0.298816, 0.331817, -1.359979, 0.706568, -1.110049, 1.831745, -0.294758, 0.763841, 0.546000, -0.380547, -0.975400, -1.438008, 0.808115, -1.427639, -0.454569, 1.688931, 0.916512, 1.141009, -0.854748, 0.067646, -1.136776, -0.235838, 0.204974, 0.212840, 0.743308, 1.639927, 0.516522, -0.283163, -0.092873, -1.549742, 0.596333, -1.259256, -0.828800, 0.370436, 1.245179, 0.068038, 1.309856, 0.698309, -1.572554, 2.273052, -1.019572, -2.053736, 0.303562, 0.903053, 0.932825, -0.637823, -0.141961, 0.383576, -0.745588, 0.461201, 0.852043, 0.786838, 1.099883, 0.910615, -0.913858, -1.436887, 0.133763, 1.193469, -0.105290, 0.626564, -1.244284, -0.824674, -1.349277, -0.607738, -0.049062, 0.431512, 0.410840, 1.091541, 0.501111, -1.633811, 0.345205, 2.327626, 2.004410, 2.551513, -1.097027, 0.417169, 0.307445, -0.187798, -0.964303, -1.388449, -0.096223, 0.206668, -0.512665, 0.038904, -0.338043, 1.865018, -0.441585, 0.161255, 0.060204, -0.567725, -0.054680, -1.049167, -0.934331, -0.400814, -1.103378, 0.218030, 0.408159, -0.825384, -1.668284, -0.735799, -1.523152, 1.301409, 1.350244, -2.044044, 0.295981, 1.024060, 1.518365, 0.627217, -0.362370, 0.178887, 2.220145, 0.845519, -1.245751, 0.296076, -0.906249, -0.550781, -0.187704, -0.966384, 0.258156, 0.731842, -0.151215, 0.602581, -0.324755, 0.184688, 2.105219, -0.360765, -1.102379, 2.683188, -0.002378, 0.935326, 1.088723, -0.372392, 0.369770, 1.084281, -0.882304, 0.416716, 0.079135, -1.082771, 1.285754, 0.880396, -1.371859, 0.870100, -0.489232, -1.602242, 0.455934, 1.763801, 0.404464, -0.614565, -1.724052, -1.982593, 0.570093, 1.096289, -1.472392, 1.381516, -1.850454, 0.917283, 1.426737, -0.094476, 0.254634, -1.713858, 1.478379, 0.890432, 0.401829, -0.090656, -1.292247, -1.279843, 0.302457, -0.236417, -0.467403, -1.154478, -0.906065, 0.705937, 0.002082, -0.607295, 1.536265, -1.094748, 0.629592, -1.460641, 1.839497, -0.668563, -0.095149, 0.027071, -1.275475, 0.720768, -2.313432, -2.117853, -1.466619, -0.380405, -1.684252, -1.543230, -2.469121, 0.284849, -1.769367, 1.843941, 0.645849, 0.562916, -1.152369, -1.154117, 0.053049, -0.911990, -0.652897, 1.031700, -1.035564, 0.573847, -0.589830, 0.827473, -0.987938, -2.240338, 1.096295, 0.369008, 0.113771, -0.044153, 1.336587, 0.514051, 0.395887, -1.226199, 0.572327, 1.363572, 0.347048, 0.560013, 0.781436, 0.606495, 2.375325, -0.153912, -1.585245, 0.423466, -0.935471, 0.146285, 0.376451, -0.835973, -1.660926, 1.582481, 0.471677, 1.288726, 0.719894, -0.369299, -0.605758, 0.136684, -0.432780, -1.579723, -0.963347, 1.514310, -0.830247, -1.760513, 0.007297, 0.440421, 1.620559, 0.175405, -0.204266, -2.106836, -0.380563, -1.463042, -0.388214, 0.368389, -1.828637, 0.839464, 0.224701, -0.066454, -1.094345, -1.870579, -0.403838, 1.541245, -2.228127, -1.190789, 1.185140, 0.875489, -0.762382, 0.410577, -0.824674, 1.884373, 0.658230, -0.360211, -0.909355, -0.149655, -0.323001, -0.206297, -0.870072, 0.265621, 0.461955, 0.317674, 1.622650, -1.717764, -0.442985, -0.325512, -0.367192, -1.078023, -1.407287, -2.238735, -0.712122, 1.305645, 0.856626, 2.403688, 1.216418, -1.689685, 0.809785, 1.053149, -0.512433, -1.504532, 0.894018, 0.469305, 0.266478, 1.378944, -1.226123, -0.873641, -1.508280, 0.923169, -2.592287, -0.371285, -0.028856, 0.718734, 0.709310, 0.191418, 0.495436, 1.004859, -1.971753, 0.510060, -1.196623, -0.020200, 0.444278, -0.290145, -0.355238, -0.594349, -0.651522, 0.226935, -1.178136, 0.820969, 0.560619, 1.003440, 1.069418, -1.878259, -0.183214, 0.800477, 0.202630, 0.502726, -0.294162, 0.654934, 0.980805, -1.512176, 0.483358, 0.228810, 0.154502, -0.092433, -0.291913, 0.277689, 0.131718, -0.129950, -1.024526, 0.538989, -1.753239, 0.272279, 1.867798, 0.530696, -0.675928, 0.537991, 0.235620, 0.232758, -0.184438, -0.204704, -0.163548, 1.038092, 2.092777, -1.498174, 0.035976, -0.362997, -0.415563, 0.334518, 0.209770, -0.157115, 1.608045, 0.523456, -0.901635, 0.512854, 1.170690, -1.862518, 0.677543, 2.004447, -1.229728, -0.887000, 0.429626, 0.653907, -2.198623, 0.113910, -1.012737, -0.602652, 0.268596, -0.433785, -0.403663, 1.012576, -0.179156, 0.728264, -0.269759, 1.466707, -0.268548, -0.401664, 0.401893, 2.991096, 0.507529, -0.674686, 0.464573, 0.348770, 1.201653, -0.056604, 0.135997, -0.092281, -0.991061, -0.916831, -0.670588, -0.231594, 0.995374, 0.443734, 0.254507, 1.108321, 0.199079, -1.256905, -0.225160, 2.169815, -1.211504, -1.613809, 0.851215, 1.203705, 1.792670, 0.549233, -1.009304, 1.738254, 0.798481, -0.885659, 0.584313, -0.040680, -1.389247, -0.555906, -0.496788, 0.444996, 1.008133, 0.890202, -0.672025, 0.218345, -0.066502, 0.796782, 0.594442, 0.400180, -0.614666, 0.461127, -0.788149, 0.580780, -0.252922, 1.598786, 0.345562, -0.465401, -0.908905, 0.402144, -1.370560, 0.890239, 0.497729, -0.366781, -0.654610, -0.134878, 0.534342, 1.786823, -0.550269, 0.766497, -1.151797, -0.224203, -1.340949, 1.844077, -0.117947, -0.814984, -1.282964, -0.785406, -0.207749, 0.021620, 0.064032, -0.193473, 0.859739, 1.952088, -0.750830, 1.016058, -0.528133, -0.352504, 0.997560, -2.948111, -0.391757, -1.890509, -0.028581, -1.116947, 0.900249, 1.632925, 0.211528, 1.464261, 0.813499, -0.965834, -0.191811, 0.968300, -0.626022, -0.627869, 0.203130, 0.212776, 0.288468, -0.489586, 1.383871, -0.353621, -0.470161, -1.250769, 0.501932, 0.578503, 0.522494, 1.383515, 0.036709, 0.611702, -0.324476, -1.341430, 0.535411, 0.171775, 1.211939, -0.946181, -0.557432, 0.402751, -0.339894, -1.970996, 0.487801, -0.506185, -0.116569, -0.163749, 0.362941, -1.675222, 0.133179, -0.932245, 0.227481, -1.412128, 1.298975, -2.981760, -0.195989, -0.103139, 0.266744, -0.108065, -0.207866, -0.561348, 0.170384, 0.287127, 0.365311, -1.053901, -2.143873, -0.122602, 0.836379, 0.702712, -2.281724, 0.091834, 0.450036, -1.102499, -0.516250, 0.257807, -0.201001, 2.401299, -0.660058, 0.251632, -0.877792, 0.666423, 0.845179, 0.841628, -0.896648, -1.132187, -2.201586, -1.656882, -0.379535, 1.073976, 0.083634, 0.268975, 0.912557, 1.286196, 0.497235, 1.072200, -0.092967, 0.678398, -0.221040, 2.006468, 0.371291, -0.826240, 0.720615, 0.601670, 1.351313, 0.355805, -1.220755, 1.327509, -2.158093, -0.265237, -0.460523, -0.901234, -0.679397, 2.160350, -1.077485, -0.231026, -0.245614, 0.568309, -0.649115, -1.354293, -0.213618, 0.719830, 0.596101, -0.916382, -0.193533, -0.251266, -0.562228, 0.009247, -0.359364, 0.904510, 1.566602, 0.733213, 0.057844, 1.088685, -0.855912, 0.563026, -1.046159, -0.220802, 0.849690, 2.908533, -1.654303, 1.727432, 0.684040, -1.850934, 1.306162, -1.040588, 0.778143, 1.001766, -2.117378, 0.354126, -2.434271, 2.116376, -1.291661, -1.618389, 1.618531, -0.223615, -1.202130, 0.185509, 1.283886, -0.976218, -1.315687, 2.660844, 0.627925, -2.724558, -0.051845, 1.500147, 0.173336, -0.671355, -1.616030, 2.833105, 0.089477, 0.187101, 0.439169, 2.095438, -1.809289, -0.036200, 1.658423, -2.193846, -1.200890, 0.757756, 0.897567, 1.400721, -0.541263, 0.170801, 1.723530, 0.849128, 0.044761, -0.782273, -0.032073, -1.469752, 0.317400, -1.178158, -2.219496, 1.061824, -2.720530, 0.625581, -0.245036, -0.693298, -1.376902, 1.447943, 0.426345, 0.684331, 3.045380, 0.314667, -1.724104, -0.335636, 2.040052, 0.610763, 1.748671, -0.537217, 0.081519, -1.232412, -1.590867, 3.281409, -0.236164, 0.516442, -0.367121, 1.113477, -0.101688, -0.895257, -0.122986, 0.577028, 0.828970, -1.597559, 1.299989, 0.177506, -0.538503, 1.064118, 0.343365, -0.655215, 0.483452, -1.800218, -0.767643, -1.775171, 0.602599, -0.041027, 1.002649, 0.273201, 1.799783, 1.639954, -0.846828, -0.445425, -1.503152, 0.029173, 0.138277, -0.573592, 0.403383, -0.116117, 0.872516, 1.422441, -1.560168, -1.566623, -0.273330, -0.775797, -0.234296, 0.963701, 0.751731, 0.593447, 0.234605, -1.605393, -0.566641, 0.375025, 0.029848, 0.841423, -0.714929, 0.439749, 0.829317, 0.185950, 0.521275, -0.866284, -0.685984, -0.501778, 1.644804, -0.343457, 0.309802, -0.158656, -0.815835, 1.363981, 2.075718, 1.283538, 0.847531, 0.315317, 0.173977, 1.574663, 0.659445, -0.573065, 2.061598, -2.496942, 0.058987, -0.658761, 2.133844, -0.897984, -0.206965, 1.126628, 0.414460, -0.531610, -0.243805, -0.231926, -1.443090, 0.507506, -0.406759, 0.595977, 0.517678, 0.257494, -0.918222, -1.189355, -0.483287, -0.121459, -1.049367, 0.285166, 0.609940, -1.659741, -0.603259, -0.652179, -0.407910, 0.081981, 1.260762, 0.879977, -0.366529, 1.073076, 0.678174, -2.091066, -0.020090, 0.386587, 0.032529, 0.020348, -0.232831, -0.439285, 0.963073, -2.157159, -0.088462, 0.766416, -0.671181, 1.522421, -0.960185, 0.526432, -0.881427, -0.644743, 0.726419, -0.862196, -0.567700, -1.287147, -0.820527, -0.951630, 0.750921, -1.029318, -0.720539, 0.708780, 0.489514, -0.550919, -0.755829, 0.511643, -0.394900, -0.417637, -1.140377, 1.311014, 0.327576, 0.064683, 0.317144, -0.398887, -1.065391, 1.146876, -1.290596, -1.280738, 0.569320, 0.050438, 0.485064, 0.668543, 1.455787, 0.232036, 0.445867, -2.160827, 1.751598, -0.321649, 0.068739, 1.075140, -0.364060, -1.712742, 0.435224, 0.402828, 1.232949, -1.543923, -1.375330, 0.803641, -0.325610, 1.143298, 1.944335, -0.218840, -1.115818, -0.493478, -0.410096, -1.436890, -0.588038, -0.229452, -2.056219, 0.756037, 1.211246, -0.187034, -0.288765, 0.616333, 0.137836, -0.400240, -0.491144, -1.110797, 0.336978, 0.032051, -0.856657, -1.214663, -0.080546, 1.870633, -0.282188, -0.930166, -1.240665, 0.307673, 1.721147, 0.602459, -1.175582, 0.397474, -1.188016, -1.785199, -0.184665, -0.415283, 0.950586, 0.359571, 1.751423, -2.100031, 0.439803, -0.597166, -0.432930, -1.217145, 0.270341, 0.347048, 0.216593, -0.749260, -0.850258, 0.000787, 0.159751, 0.993618}, + { 0.301731, 0.340315, 0.356582, -0.199931, -0.692607, -0.670357, -1.513091, 1.274315, 0.483492, -1.273754, -1.048047, -0.602107, -0.509375, 1.703353, 1.416582, 0.501710, -0.075911, 1.163827, -0.229310, 1.099196, 1.963809, -0.078191, -0.665969, -1.344182, -0.013689, -0.292125, -1.779218, -0.859861, -0.708837, 0.676676, 0.499517, 0.178592, -0.402246, -1.382905, 0.686772, -0.584893, -0.575881, 0.694766, -0.024090, -0.050965, 0.953661, -0.622870, 0.836188, 0.029189, 1.159838, 0.165515, 0.378790, 2.050405, -0.660663, -1.538973, -0.847163, -0.717603, 0.253120, 1.357337, -1.058493, -0.095297, -1.081879, -0.700258, 0.044495, 1.712566, -0.921942, -0.252533, -0.414732, 0.743698, 0.743899, -0.524788, -0.260550, 0.542102, -0.918968, -1.100057, -1.059030, -0.596496, -0.272056, 1.357622, 0.634886, 0.145636, -0.154541, 0.229817, -1.773797, -2.028810, 0.109299, 0.347456, 0.827197, -0.826999, -0.722656, -0.619107, 0.389974, 1.182330, -1.423043, 0.995307, -0.913115, 0.770915, -0.616580, -1.141662, 1.683443, 0.826815, 1.089156, -0.844702, -0.448526, 0.680786, 0.595490, 1.333555, 0.827444, -1.927784, -0.372818, -0.531507, -0.113064, -1.123855, 0.118561, -2.277498, 2.295796, -0.759066, 0.758029, -0.960120, 0.191058, 0.386608, 0.070052, 1.463023, 0.398881, -0.331290, -0.185937, 0.513445, -0.667540, -0.176668, 2.967364, 0.293913, -1.354059, 1.766835, -0.318633, -1.100933, 0.254869, 0.036773, -1.315956, 1.159468, -1.080406, 1.207758, 1.385852, 1.660041, 1.465256, -1.387277, 0.005947, 1.743804, 1.441585, -0.231859, -0.606515, 1.048532, -0.191874, 0.572778, -0.492012, 0.509080, -1.410149, 0.458897, 0.311114, -0.369147, 1.200200, 0.811518, -1.115069, -1.622676, 0.519984, 0.417236, 1.205972, 1.300473, 0.606398, 1.473777, -1.091435, 0.806429, -0.932551, 0.494567, -0.837687, 0.572030, 0.869833, 0.545405, 1.315020, -2.294152, 1.148977, -1.111109, -1.989875, 0.223125, 0.794686, -0.703741, -1.232284, -0.022285, -0.359718, 1.443275, -0.402033, 1.346300, 0.237843, 0.811650, -0.433078, 1.155858, 0.617472, 1.291299, -0.461007, 0.206134, 0.490470, 1.553077, -0.067552, -0.377907, -0.904223, 0.493127, -0.250618, 2.067950, 0.333474, 1.824845, -0.807702, 0.851756, 0.228255, 0.541410, -0.531682, 0.195160, -1.644215, -0.482778, -0.162985, 0.817808, 0.118681, -0.072329, 0.082215, -0.079760, 1.836766, -0.892851, 0.395527, 0.243779, -0.183584, 0.093627, -1.158231, 0.332813, -1.346124, -0.031608, 0.942257, -0.825450, -1.106920, 1.560990, -0.653940, 0.446562, 0.553755, 0.540008, -1.595925, 1.092760, 0.395390, 0.908261, -1.507372, 1.775162, 1.122793, 0.520032, 0.900858, 0.354926, 0.314007, 0.173428, 0.836221, 0.313523, -0.022132, -0.716503, 1.184181, -0.155130, 1.076736, -1.077288, 1.020293, 0.307203, -0.372011, 1.430982, -0.312458, -0.301034, -1.045088, -0.172423, 1.224366, 0.233651, -0.698798, 1.171618, -0.277354, 0.924341, 1.228120, 1.480400, -0.592843, 0.024125, 0.369709, -0.512804, -0.807521, 1.502057, 1.286383, -0.238933, 0.194284, -1.645072, -0.759845, 0.018062, 0.599161, 0.189479, -1.045806, -0.363235, 1.012787, -1.992165, -2.280294, -0.020684, -0.167178, 0.264359, 0.214267, -0.767510, -0.269353, -1.075058, 0.240005, 0.913014, 1.122564, 3.143238, -0.219032, -0.195347, -0.819146, -0.179572, 1.151536, -0.897796, -0.575631, -0.106497, -1.558885, -0.035942, -0.677244, 0.368379, -1.527248, -0.082788, 0.448401, -0.950365, -1.297375, 1.443643, 0.671306, -0.505342, -0.528870, 0.517745, 0.724624, -1.634843, -0.279723, -0.412208, -0.044171, 0.550800, -0.380265, -1.132098, 2.779808, 1.099924, 0.900117, -0.746871, 0.698239, 0.468645, 0.927760, 0.194123, -0.226882, 0.271124, -0.569158, 0.003426, -0.011632, -1.209737, 1.318997, -0.755500, 0.401329, 0.933217, -1.236041, -0.652248, 0.725733, -1.939159, 0.740022, -0.209385, -1.428430, 0.474135, -0.639669, -1.726154, -0.973631, 0.129549, -0.290139, -0.913872, 1.676089, -0.123993, 0.723219, -1.771569, 0.458740, 0.511286, -0.197916, -0.780482, -0.568680, 1.363672, -1.133307, 0.486805, -1.041064, 0.022507, 0.898393, 0.745415, 0.670479, 2.005906, -0.649511, -1.474462, -0.572460, -0.464904, 1.396734, 0.841705, 0.263239, -0.888334, 1.429085, -0.297824, 1.555869, -0.200461, -0.133046, -1.528087, 0.964913, 0.076381, 1.768266, -0.512871, -0.041117, -0.172383, -0.378645, -0.104837, -0.988190, 0.138538, 1.027950, -0.119624, 0.966073, 1.602044, -0.380665, -0.051357, -1.047217, -0.899111, -0.922363, -0.664096, 0.449538, -0.224948, -0.785595, -0.715102, -0.442596, 0.775693, -0.661684, -0.103729, -0.573598, 0.615203, -0.499645, -0.987635, -1.082462, -0.316347, -0.045296, 0.746258, -0.671951, -1.323349, 1.501651, 1.746913, -0.147925, 0.099872, 0.346254, -1.276066, 0.232616, -0.457229, -0.915705, 0.831763, 0.256330, -1.178553, -0.826680, -0.876064, -0.198926, -0.704767, -0.303037, -0.601242, -1.082732, 1.911549, -0.253599, 0.050120, -0.644634, 0.706186, -0.981749, 0.739799, 0.059147, 0.571289, 1.460922, 0.522896, 0.152329, 0.376585, -0.094636, 0.437663, 1.308744, 0.547445, -1.529621, 0.561978, 0.635995, 1.287352, -1.073645, -1.750299, 0.933533, -0.552610, -1.338540, 0.140115, 0.379590, -0.510426, 1.103815, 0.640973, 0.376664, -0.011929, 0.644988, -0.731731, -0.218970, 1.272982, -0.226110, 0.205127, -0.368558, -0.022630, 2.318778, -1.229447, -0.290865, -0.563527, -0.829533, 0.078361, 0.054665, -1.866439, -0.601924, -1.055621, -0.081156, 0.954206, 0.878962, -0.853083, 0.433576, 0.771821, 1.650254, -1.040189, -0.943020, -0.600853, -0.951020, -0.058790, -0.412329, 0.070419, -0.327229, 0.639502, -0.130401, -1.981886, 0.892368, 1.927000, 1.395447, -0.035979, -0.268848, 1.504998, -1.268180, -2.091290, 0.692991, 1.503467, -0.595840, -0.359548, -0.598310, 0.237555, 1.361935, 1.195720, 1.488564, 0.531622, 0.639224, 0.005910, -1.281677, 0.688168, 0.436142, 0.003748, 0.505624, -0.462939, -1.437582, -1.013640, -1.273356, 1.619996, -0.860430, 0.206553, -1.011272, -0.178100, 0.907035, 0.024300, 2.001593, 0.576700, 1.030430, 0.130177, -1.339414, -0.460570, -2.994749, -1.577236, -0.323091, 1.105102, -1.486310, 0.160474, -0.957567, 0.238647, -0.401481, 1.432569, 0.710533, -0.554321, 1.213134, 1.846723, -1.439332, 0.128210, 2.619654, 0.351559, -1.153459, -0.410734, 1.109101, -0.533198, 0.350223, 0.430851, -0.982769, -0.609022, -0.522238, -0.181879, -0.459462, -0.213042, 0.142233, 0.445944, -0.789727, 0.721732, 0.917974, 0.244496, 1.145396, -2.108143, 0.193287, 0.551993, -2.250021, 1.201748, 0.716213, -0.027772, -0.580437, 0.715608, 0.196750, -0.851143, -0.354354, -0.847215, -0.505379, 2.311434, -1.452240, -0.859659, 0.149073, -0.011959, 0.247673, 0.742919, -0.853720, -0.164723, 0.966060, -2.186510, 0.341235, -0.460015, -0.183738, 0.573395, 1.611481, 0.487849, -0.149331, 0.076666, -0.816759, -1.125576, -1.069115, 0.119665, 0.487101, -2.070111, 0.113776, 0.149254, -1.227676, 0.739415, -0.402675, -0.823281, 1.107952, 0.642089, -0.383887, -0.207413, 0.679701, -0.662711, -1.606719, 1.148310, 0.587015, -0.294478, -1.032606, -0.808599, -0.676572, 0.599677, 1.284897, 0.072044, 0.537082, 0.677495, -0.841507, -1.741538, -1.199398, -1.070768, -0.381516, 0.693988, -0.246137, -0.051508, -0.442244, -1.691891, 0.104943, -0.420289, -1.544920, -0.425850, 0.648355, -0.538390, -2.096101, 0.105226, 0.027247, 0.650452, -0.307101, 1.047194, 0.746077, 1.012907, -0.396122, 0.694341, 0.743929, -1.091642, -1.909330, -0.467969, 0.402921, 0.844133, 0.546082, -0.291221, 0.645099, 0.375578, 0.090473, -1.156305, 0.909478, -0.344901, -0.915072, -2.355663, 1.861707, 0.170117, -0.345389, 1.611302, -2.380288, 1.357473, 0.907826, -3.133594, -0.119388, -2.195933, 0.699139, -0.155774, -0.943318, -0.112979, -0.345713, -0.634705, 1.501585, -1.081227, -0.081979, -2.046712, -0.880067, 1.731963, 0.432684, -2.039904, 0.167068, 0.341228, 1.122631, 1.662312, -0.441109, 1.167886, -0.092796, 1.101570, 1.728996, 1.244415, 1.014655, 0.213812, -1.410235, 1.303385, 1.574433, 1.140175, -2.336849, 0.619250, 1.743942, -0.284411, -1.236207, -0.177656, 1.440527, -0.071437, -0.997129, -1.096870, 0.251441, 1.087029, -1.145252, 0.653924, -0.166977, -1.180721, 1.442425, -0.148463, 0.327964, 0.626723, -1.094068, -1.684336, 2.216597, -1.607166, 2.419754, -0.162077, 0.432021, 1.336056, -0.083807, -0.189344, 2.150855, -0.494389, -0.073852, -0.083455, 0.761674, -0.927206, 0.831074, 0.103302, -0.717190, -0.205294, -0.896933, -1.047605, 0.776190, -0.089770, -0.851187, -0.612422, 0.209004, 0.664630, -0.463832, 0.705006, -1.380867, -0.598404, 0.618253, -0.249423, -0.287642, 0.358870, 1.447476, -1.891968, -1.251815, -1.265438, 0.868030, 1.151141, 1.387998, 1.276075, -0.161557, -0.302295, -0.781948, -1.090143, -0.907986, 1.153903, -0.158851, -2.025944, -1.752189, 0.563785, 0.832849, -0.281860, -1.422815, -0.250152, 0.390725, -0.707259, -0.255062, -0.434000, -1.832353, 0.054505, -0.874437, -0.694879, 1.724513, -1.158847, -0.799266, 1.509151, -0.321243, -1.023412, 1.458976, 0.982309, -0.224010, -0.504862, -1.925597, -0.893189, -0.089461, 0.801045, 0.786735, -1.132107, 0.191275, -0.143792, 1.279276, 0.453176, 0.150880, -1.473621, -0.487389, -2.148995, 1.275446, -1.067105, -0.194897, -0.992779, -1.082810, 0.943347, 1.304245, -0.036478, -0.003345, 0.665198, 1.935720, 1.278178, -0.040036, -0.710101, -0.749596, 0.553681, -0.745719, 0.417474, 0.520062, -1.351514, 0.427031, -0.546031, -1.492872, 0.267286, -0.504399, -1.000964, 1.273063, -0.651205, 1.030016, -0.782948, 0.497383, -0.183553, -0.401096, 1.110661, 0.872114, -0.170100, 0.282692, -0.795149, 0.332732, 0.643477, -0.249532, 1.635548, -1.044594, -0.295628, -0.920430, 2.626061, 0.487947, 0.211885, -1.296393, -1.072465, -0.203752, 0.170502, -0.088814, -0.801740, -0.737554, 0.208035, 0.940708, 1.305298, 1.212413, 0.782284, 0.230158, -0.389325, -0.566361, 0.430025, -2.453650, -0.388663, 1.011179, -0.208083, 0.858045, 1.731164, -0.202383, 0.693175, 0.927188, 0.628455, 0.986906, 0.191767, -0.140978, -0.154277, -0.997423, 0.096075, -0.183515, -0.681884, 0.713886, 1.265605, -0.525586, -0.278860, -1.008217, 1.654861, -0.021838, 0.172042, -0.755139, -0.037302, -0.154158, -0.337038, 0.273891, 0.263120, -1.773232, 1.110118, 1.178350, 1.746639, -0.104237, 2.031744, 0.165341, -0.379496, 0.501640, -0.559309, 0.275472, 1.567459, -1.102631, 0.633580, -0.930758, 0.241228, 1.100809, 0.442949, 0.599054, 0.663753, 0.186169, 0.292533, -0.423256, -0.648971, -0.136168, -0.569410, 0.031565, -1.150596, 0.595486, 0.742416, -0.546966, -1.677502, 0.951948, 1.031747, -1.099773, -1.728090, 0.585113, 0.631279, 1.600641, -0.305789, 0.437371, 1.932847, -0.537977, 0.931596, -1.838440, -0.015818, -1.622449, -0.040143, 0.362594, -0.890436, 0.426689, 0.636668, 2.481544, -0.807978, -0.110130, -1.141717, -0.094556, -0.179840, 0.354897, -0.194146, -1.837641, -1.313678, -0.445775, -0.028980, 0.800842, 0.221583, -1.936449, -0.961818, -0.846018, -0.335061, -0.720752, 1.514343, 0.269006, 0.862937, 0.192483, -1.216576, -0.956318, 2.885808, 0.765089, -0.311713, -0.945407, -0.545809, 0.725385, 1.093667, -0.061274, 1.711193, -0.433426, -0.215971, -0.543020, 0.724515, 0.403210, 0.869631, 0.157949, -0.002083, -0.464703, 0.199242, -1.738906, -0.171850, 1.478736, 0.750696, -1.278336, -0.344337, 2.085411, -0.777218, -0.750230, -2.526896, -0.429946, -0.038312, -2.605750, -0.614735, 0.938820, 0.947402, -0.577474, 0.556643, -0.798407, 0.565714, 1.477476, -0.461781, 1.676078, -1.114238, 0.069705, 0.037606, -0.657933, 1.054590, -0.808508, 1.104857, 1.529753, 1.102995, -1.080505, 0.155131, 0.142506, -0.663007, 1.160230, -0.250282, -0.522495, -3.863022, 0.065601, 1.898197, 1.294152, 0.824046, -0.446956, -2.238514, -1.023182, -0.950372, 3.760072, 1.253797, -1.685765, 1.360150, -0.572155, -0.529619, 0.015218, 1.592276, 0.533458, 0.537726, -0.396657, 1.090247, 0.574728, 1.641131, 0.244294, -0.764788, -0.294207, -0.429231, 2.160279, -0.585587, 0.008594, 0.410570, 0.459396, -2.319650, -1.987478, -0.200157, 0.084520, -0.451076, 1.142606, 1.389749, 0.199081, 0.354148, -1.355257, -0.458227, 0.033238, 0.129894, 1.666640, 1.995953, -0.302551, 1.051346, -0.520094, 0.004230, -1.607123, 0.429005, 0.270415, 0.314175, -0.524505, -0.298218, -0.391555, 1.056179, 0.443406, -1.532320, -0.053713, 0.526718, -0.159284, 1.742543, -1.159388, -0.559781, -0.422273, 1.102554, -1.729312, -1.581294, 1.895429, -0.114143, 1.484401, -0.020270, 1.242298, 1.651455, 1.336936, -0.201987, -0.751444, 0.261352, -1.025556, 0.721701, 0.301649, -0.189576, 0.339008, 1.021007, -0.467743, 0.199743, 1.331981, 0.742519, 0.702157, 1.874298, 1.026808, 0.599412, -0.185421, 0.589504, -0.127130, -0.603353, -1.266549, 0.114474, 0.456255, 0.999890, 0.660022, -0.351638, 0.974813, 0.227392, -0.426923, 0.188976, 1.035330, -1.286124, -0.632550, 0.065661, -1.141877, 0.439256, -0.411609, 0.438568, 0.245852, 0.154813, 0.786368, -1.666565, 0.101667, 0.726125, -0.258098, 1.430828, -0.973455, -1.164799, -0.804723, -1.660878, 0.724905, 0.003622, 2.518405, -0.821849, -1.203569, -0.920241, -0.347009, -0.429517, -0.218684, -0.363691, -0.676136, 0.849115, 0.253290, -0.167034, -1.677462, -0.943318, -0.059456, 0.981061, 0.228082, -0.498045, -0.011386, 0.543529, 0.675897, -0.602654, -0.332944, -1.684504, -0.138444, -1.398646, 0.695943, 1.384534, 0.048922, 0.052279, 0.445894, -0.007716, -0.948554, 1.005421, 0.110103, -0.339983, 0.308759, 0.005576, 1.540160, -0.661971, -1.930171, 1.070834, 0.552744, -0.086532, -1.003284, 0.964403, 0.368057, 1.557855, -0.683712, 0.968482, 1.560189, 0.205528, 1.204257, 0.168757, -1.089900, -0.166008, -0.276822, 1.288948, -1.579818, 1.106215, 1.764589, -0.735160, -0.513925, -0.332291, -0.432862, 0.538629, 1.970195, -0.503093, 1.825510, -0.851094, 1.043372, -0.786157, 0.195709, -1.106888, -0.862172, -1.161158, 0.194246, -1.286416, 0.268817, 1.319611, 0.258319, 0.805095, 1.427110, 0.148204, 0.733514, -0.012265, -0.129145, -1.583334, 1.019218, -0.673775, 0.912491, 0.455014, -1.683563, 0.313058, -0.788071, -1.151111, 0.137989, 0.279501, 0.131515, 0.681638, -0.811328, 2.154928, -0.920189, -0.576842, -1.868773, 1.916564, 0.892843, 1.188732, -0.495584, 0.574613, -2.128337, 0.948332, -1.652525, -0.344080, -0.925831, -0.476208, -1.295742, 0.825655, -0.219038, 2.336519, -0.542141, -0.879528, 0.998332, -0.885338, -0.410581, 1.157868, 0.887529, 0.546793, -0.119927, 0.556263, 0.603421, 2.098276, 0.234344, -1.218359, -0.228490, -1.439272, 1.276009, 0.150508, -0.488764, -1.188981, -1.618396, 2.034557, -0.311839, -1.789165, 0.714627, -3.241854, 0.605791, 0.649312, 0.614132, 0.684677, -0.899841, 0.057542, -1.937206, -1.183239, -0.593327, 0.614598, 1.041341, -0.496205, -1.751677, 1.977614, 1.683848, 1.516063, -0.328396, -1.696270, -1.209620, -0.284087, -0.382491, -0.413478, 0.141751, 0.218658, -0.626540, 0.656667, -0.912117, -1.735687, -0.704264, -0.681995, 0.614389, -0.210368, -1.721584, -1.634176, -0.041366, -1.080553, 0.401964, -1.358046, 1.129168, -0.645780, -0.547942, -0.197578, -0.119129, -0.021959, 0.975386, -1.820966, -0.545574, 0.729146, -1.524926, 0.214967, -0.703118, 0.260650, 0.355321, 1.967348, -0.479549, 0.232670, 0.609636, 0.651773, -1.856775, -0.314928, 0.490626, -0.490476, 0.065247, -1.093362, -1.710783, 0.479643, -1.266125, 2.916858, 0.395481, -0.469633, -0.005751, -1.271365, 0.362709, -0.140248, -1.805602, 0.613691, -0.759143, -0.140610, 0.267943, -0.206594, -1.412791, 0.624664, 0.547263, 0.373155, 0.709517, 0.176978, 1.641680, 2.020586, 0.466355, -0.906755, -0.071427, -1.089906, -0.029639, 0.363439, -0.198020, -0.127079, 1.956164, 0.440522, 0.513886, -1.796162, 0.837763, 0.109987, 0.075265, 0.423366, 0.523431, -2.338522, 0.063965, -0.154354, -0.488166, 0.384259, -1.091778, 0.631721, -1.660728, 1.851979, 0.300069, -0.540797, -1.068448, -0.619603, 0.179161, -0.921241, 2.601532, -0.100220, 0.764467, 1.940143, 1.481879, -0.411336, 0.400048, 0.445539, -0.642727, 1.005939, -0.559863, -0.107485, -1.133241, 2.248171, 0.148766, -0.050439, -0.763270, 1.173710, 0.543949, 0.719926, -1.380532, 1.455724, -1.954754, 0.191885, 1.047383, -0.055181, 0.067765, -0.193047, 0.685021, 0.791924, -0.063495, 0.956633, 0.333739, -0.618674, -1.535626, 2.004221, 2.568413, -0.702948, 1.907915, 0.213514, 0.074934, -1.443073, 0.588510, 1.238695, 1.949012, 0.524589, 0.137723, 2.291528, -1.002643, -2.020133, -0.173899, -0.287366, 0.633437, -0.326582, 0.301225, 0.882578, -2.893429, -1.463340, 0.979887, -1.557021, 0.197504, 0.058903, 0.760729, -0.480202, -0.534622, 0.610186, 0.962622, 1.511943, -0.482532, -0.261485, -0.071230, 0.168140, -0.061168, 1.350243, 0.618477, 1.804237, 0.257283, -0.128231, -1.728029, 0.200455, 1.200062, 0.328923, 0.432758, 0.105380, -1.131069, -0.136168, -0.069884, 0.404249, -0.408784, -0.255515, 1.395448, -0.281421, 1.655929, -0.414393, 0.066142, -0.601646, 0.783763, -0.637032, 0.350136, 1.325956, -1.455285, -0.428905, -0.317900, 0.552004, -0.102692, 2.083838, 0.934837, -0.280961, 0.063432, -0.423507, 1.076833, -0.416788, -0.502943, -0.230439, 1.904904, -0.145474, 1.116579, 0.289299, 0.712281, 0.220929, 0.723025, -0.960970, -0.191319, -0.237056, 1.936813, -0.391569, 0.608243, 0.390187, 0.220902, 0.352282, -0.044823, -1.197997, 0.005569, -1.655990, -1.963922, -1.197090, 1.120382, -1.478556, -0.608600, -0.587427, 0.283057, 0.087609, 0.567818, 0.418145, 0.273816, -0.475406, 0.802629, 0.663746, 1.292739, 1.943314, 1.728960, 0.463592, 0.592385, 0.306311, -0.239121, -0.331913, 0.753530, 1.341508, 0.045289, 1.456249, -0.112073, 0.872989, -0.525661, 1.492156, 0.512362, -0.395138, 0.921375, 0.519459, -0.392125, -1.082873, 0.338398, -0.101418, 0.087493, -0.858884, 1.320164, 0.138540, 0.899533, -0.602230, -0.395940, 0.053647, -0.406491, 0.260205, -0.280444, -0.410601, 0.303662, -0.158068, 0.123977, -0.049745, 0.661406, 1.133147, 0.301529, -0.283301, 0.086445, 1.666444, 0.143803, 1.704894, -0.475500, -0.366486, 0.211542, 0.567884, -0.129356, 1.435244, 0.020772, -1.131476, -0.089181, -0.309321, 0.077059, -0.672087, 0.572843, -0.163259, -0.978702, -1.446526, -0.625613, -1.318081, -0.721298, -0.680078, 1.847799, -0.418294, -0.602874, 1.158229, 0.769679, -0.606297, 0.876627, -1.911764, 1.578822, 0.407763, -0.198504, 1.127478, -0.601356, -1.128093, -0.897507, 0.055020, -0.695643, 1.936208, 0.163776, -0.369722, 0.344532, 0.849090, -0.630274, -2.283234, -0.053299, 1.062097, 1.169596, -0.932489, -0.064371, -2.070770, 0.928290, -0.180465, 0.217732, -0.992157, -0.635478, -0.252806, 0.405256, -0.199592, -0.824726, -0.154464, -0.119519, -1.748641, -1.031692, 0.703265, -1.448966, 0.341707, -0.260722, -1.580059, 1.958296, -1.667620, 0.232777, -1.208156, 0.596980, 1.496026, -0.153971, 0.835032, -1.623652, -1.084719, 1.161023, 0.818291, -0.194181, 0.883238, -0.164320, -0.234377, -1.062249, 1.789353, -0.455813, -0.767958, 1.205597, -1.272696, 1.768498, 1.000642, 0.492871, 1.984776, 0.446479, -0.718084, 1.936141, 0.187449, 0.227080, 1.082278, 0.178257, -0.727150, 0.152735, 0.588750, -1.347089, 0.267602, -1.589438, -0.242205, -0.348296, -0.447812, 1.332005, -0.109987, 0.713350, 1.959988, 0.886860, -1.367260, 0.315042, -0.217964, 2.561946, 1.039628, -0.648836, -1.121465, -0.972995, 0.898369, 0.700193, 0.015627, 0.463744, -0.852181, 0.437625, -0.115093, -1.762941, -1.951170, -0.403873, 0.692655, -0.592486, 0.675800, 0.695697, -0.808606, -0.666883, 0.876165, 1.473400, 0.383658, 0.018461, 2.639049, -0.589383, -1.338700, 0.017713, -0.211562, 0.906365, 0.668441, 0.775710, 1.200767, 0.430085, 1.031541, 0.051452, 0.433621, -0.046206, 0.244739, -1.009615, -0.274276, -0.150335, -0.817762, -0.078315, 0.678624, -0.460352, -0.995724, 1.225914, 0.245840, -1.384803, 0.158079, -2.820754, -1.238687, -0.259432, 0.556390, 0.430531, -0.764754, -0.008340, -0.218249, 0.378924, -1.186254, -0.370347, 0.356590, -0.541068, -1.056414, -0.178890, 0.172732, -0.220900, 0.057519, 0.052452, -0.880049, -1.181674, -0.359520, -0.319118, -1.826494, 1.781046, 1.167557, -1.682008, -2.172502, 1.150669, 2.226176, 1.164139, 0.016495, 1.215782, 0.756317, -0.134769, -0.556952, 1.902740, 1.371228, -0.049627, 1.394635, 2.187705, 0.215410, -0.711373, -0.317358, -0.042612, -0.628702, 1.252396, 0.590713, -0.509766, -0.357739, -1.272660, 0.614505, -0.785269, 1.686853, -0.817846, -0.245070, -1.540112, -0.638239, -0.140424, 1.447841, 0.180816, 0.570393, 0.732703, -0.645269, 0.045402, -0.816230, -0.157526, 0.356127, 1.551203, -0.054277, -0.514000, -0.061724, 0.746154, 0.066489, 0.281339, 0.753759, 0.644522, 0.636840, 0.951156, -0.867456, 1.764249, 0.065511, 2.010101, 0.461107, -0.422423, 0.115251, -1.428685, 0.066474, 0.780328, 0.982491, -2.252636, 1.380864, 1.385895, -0.585753, 3.060201, 0.495925, 0.257784, 0.317770, -0.724218, -0.027689, 1.005678, 0.887670, 1.887434, -0.769505, -1.215669, 0.340487, 1.799093, 0.871864, -0.661876, 0.071821, -1.227728, -0.622969, -0.357377, -1.978369, 0.303017, -0.239514, -0.084570, 0.116498, 2.666832, -0.448812, 0.804166, -0.023746, -0.507447, 1.118932, -0.347776, -0.073723, 0.740973, -0.336018, -0.549698, 0.568777, -1.881742, 1.239304, 1.367368, 0.702300, 0.272692, -1.077847, -1.121986, -0.017198, 2.111832, 0.526122, -0.580326, 0.025489, 1.342631, 0.065291, 0.656574, -0.218764, 0.626640, -0.116426, -0.834598, 0.547881, 0.968269, 0.166072, 0.674785, 1.209617, 0.274679, 0.751307, 0.964807, 1.228521, -1.255558, 1.084980, 0.019804, -1.449037, 1.159229, 0.954614, 0.092146, -0.280054, -0.519465, -1.926053, -0.061965, 0.169230, 0.850119, 0.519686, 0.372584, -1.370726, -1.197251, -1.824408, -1.072567, 1.134980, -0.503332, 0.829760, 0.133400, -1.139958, -0.655918, 0.007764, -0.278091, -0.668253, -1.296406, -0.142673, 0.277825, 0.792285, 0.246248, -0.983226, -0.497304, 0.063856, -0.729541, -0.515812, 0.381771, -0.128081, 1.189037, 0.543374, 1.755209, -0.659257, -0.156564, -1.219527, -0.748285, -1.414362, -0.206548, -0.768475, 1.753264, 0.433693, -0.456829, 1.305124, 0.944325, -0.304434, 1.567057, 0.389593, -0.805715, 0.288141, 0.001073, -0.866277, 0.856254, 1.005045, -0.575004, 1.255241, -1.267135, 0.827891, 0.627456, 0.290053, -1.751737, -0.228863, 0.877419, -1.028292, 0.207357, 1.051466, 0.473822, -0.350145, -0.227565, -0.529510, -0.163023, -0.875734, 1.733327, 1.450800, -0.170262, -1.058933, -0.907097, -0.141974, -0.458068, -0.519686, -0.325724, -0.745580, -0.534122, 1.485114, 1.081691, 0.275739, -0.601219, 0.769657, -0.416320, 0.142507, -2.762656, 1.144743, 1.180477, 0.181053, 0.074636, -0.796548, -0.186655, -1.881362, -1.085970, -0.509258, -0.606819, 0.938280, 0.124097, -0.373066, -0.661267, 1.230995, -0.385835, -1.383469, -0.035172, 0.219884, -0.257441, -1.043364, -0.169221, 1.232250, 0.528677, -0.353701, 1.476772, 2.518705, 1.523314, -0.769814, -1.381941, 0.068797, 0.872599, 0.021330, -1.554189, 0.174941, -0.817998, 0.192949, -0.193834, 1.352635, 0.126426, 0.541882, -0.822730, 0.473513, 0.926315, -0.320130, -0.254830, 0.755312, 0.361027, 0.196379, 1.042954, 0.904753, 0.696622, 1.640117, 3.010218, -2.193397, 0.534677, -0.772548, -2.197632, -1.020278, 0.407861, 0.414727, 0.042747, 0.139400, 0.735074, 0.453214, -0.200430, 1.245677, 0.734763, 1.204037, 1.591414, -0.335526, 0.194340, -0.779917, 0.883076, 0.049662, -1.339622, 1.806029, -0.075693, -0.450085, -1.486220, 0.098281, 0.205562, -0.621085, -0.503952, 0.351056, 0.194712, -1.131180, -0.063038, 2.202519, 1.897910, 0.037346, -0.961491, 0.250592, -0.583878, 0.217716, -0.096137, -0.613621, -0.436752, -2.161181, 0.331355, 1.346340, 0.716746, -0.834276, -0.333817, 0.204897, 1.152756, -0.567320, -0.247394, 0.010408, -0.114000, 0.099380, -0.872770, 0.278929, -1.660458, 0.989818, 1.567889, -0.844155, -1.212154, -0.085480, -0.273551, -2.041399, 0.660285, 1.663567, 0.054955, 0.855375, -0.587682, 0.409303, -1.572726, -0.388262, 1.008047, 0.130382, -1.128315, -1.155455, -0.916014, 1.614258, 0.320916, -1.448536, 1.034356, 0.978944, -1.461521, -2.289691, 1.578304, 0.420726, 0.891065, -1.493227, 1.011295, -1.078855, 1.048173, 1.239733, 0.640246, 0.227257, -0.257930, 0.478270, -0.433540, 1.573823, -0.065773, -0.416057, -1.590933, -0.450791, 0.046318, 0.445231, -0.215918, 0.151527, -0.237031, -0.494039, -0.164976, 0.924101, -0.206761, 1.449285, -0.427534, 0.632189, -0.247537, -1.298990, -1.342565, 1.100166, 1.377972, -0.356412, 0.637115, -1.091612, -0.245056, -0.362218, -0.200866, 0.091204, 0.544847, 1.106568, 0.507441, 0.827890, 1.258804, -1.941600, -0.881314, 0.527156, -1.086383, 0.271413, -0.901657, 0.696029, 0.417992, 0.979525, 1.042010, -1.030698, -1.874807, 3.398919, -0.641428, -1.746851, 2.144200, 0.192693, 0.571218, -1.680415, -0.052169, -0.248896, -0.306711, 0.863894, -0.523245, -0.196574, -1.166822, -2.152000, -0.149223, -0.228715, 1.210455, -1.129504, -0.704782, 1.341994, 0.954814, -0.702368, 0.981207, 0.504292, -0.347149, -0.412695, -0.054337, -0.024363, -0.988587, -0.573520, -0.144234, -1.464112, 0.813837, -0.076591, -0.411887, 1.149100, -0.962143, 0.430304, 1.755473, -0.214532, 1.147916, 1.014250, -0.906121, 0.475568, 0.498543, 0.085289, -0.700405, -1.309766, 1.146371, 1.108562, 0.612347, -1.180042, 0.370103, -0.507015, -0.293970, -0.186250, -1.140048, -1.273633, -0.168196, -2.000909, -0.451467, -0.100563, 0.279401, 0.849988, -0.013809, 0.248252, 0.832523, 2.201352, -0.740547, 0.760130, 0.314832, -1.518040, 0.466491, 1.268121, 1.333187, 0.623572, 0.253644, -1.829596, -0.245294, 0.458871, -0.980105, -1.471228, -0.376917, -0.297523, -1.094802, -1.839626, 1.981950, 1.287344, 1.422106, 1.168553, 0.237041, -0.859686, -0.631022, 1.334355, 2.119022, -0.707684, -0.249415, -1.200882, 1.242370, 0.049691, -1.020185, 0.122966, -1.275383, 0.957110, 1.405397, 1.703356, 0.882804, -0.089679, -0.877427, -1.109126, 0.380792, -1.685032, -0.033966, -1.091904, -0.138151, 1.009477, -2.220388, 0.032645, 0.544454, -0.599903, -0.907719, 0.567989, 0.269712, -0.513824, -1.126466, -0.271517, -1.188455, 0.936433, 1.120812, 1.377916, -0.276338, -0.026779, -0.154409, 1.794437, 0.117785, -1.227497, 0.165788, 0.396939, 1.903204, 0.096561, 1.512436, 0.040895, -0.146897, 0.741428, -0.028302, -0.170163, 1.651506, -1.360639, 0.537423, 0.437283, -0.278803, -1.324650, -0.976932, -0.276450, -0.978670, -1.976231, 1.193017, -0.752801, 0.088483, -0.563669, 1.415742, 0.383571, 1.978561, -0.810498, 2.032773, -1.256114, -0.723276, -0.181050, 1.213796, 0.163981, 0.734518, -0.225810, 1.000340, -2.509578, 2.372815, 0.309886, -1.332610, -0.277844, -1.120238, 0.207199, -0.322332, 0.877200, 0.668735, 1.183866, -0.383187, 0.034996, 0.021170, 0.395998, -2.275283, 0.600536, -0.490011, -0.860737, -1.934725, 0.763329, -0.036843, 0.117915, -0.427276, 0.138674, 1.466570, 0.666265, -0.708103, -0.053743, 1.731860, 3.368065, -0.186848, -0.849061, 0.128535, -0.181701, 0.645400, 0.472349, -0.756277, 0.361928, 1.036846, -0.245113, 0.800314, -0.030196, -2.445163, -0.609551, -1.066292, -0.639986, -0.060376, 1.058545, 1.555088, -0.144319, -0.888315, 0.803384, -0.084323, 2.055458, 0.405981, 0.815759, -1.047926, 0.517240, 0.377259, -0.946853, -0.504865, 0.209505, 2.288201, 0.173619, 0.497703, -1.621674, -0.752915, 1.134102, 0.544574, 0.432113, -0.943979, -0.186731, -0.706785, -0.081770, -1.146737, -0.788218, 1.182414, 0.663943, 0.008436, 0.370637, 0.191173, 0.497074, 0.609104, -0.794619, -2.050091, 1.608134, -0.010504, -0.630989, -0.293492, -0.788311, 1.608822, -1.264485, 0.378428, -1.461977, 0.870693, -1.323739, -2.027706, -0.270420, -0.020569, -0.094163, 0.604453, 0.514551, 1.309150, 0.300110, -0.132355, -1.037283, -0.601923, 1.373913, 1.836320, -1.925639, -0.447010, -1.165429, -0.575455, -0.654843, 0.222102, -1.637068, -0.386336, -0.062709, 0.469046, 0.360834, 0.885365, -1.140781, -0.660643, 1.349843, -1.142633, -1.573966, -0.581078, 0.203327, 0.173475, -1.543451, 1.253947, -2.360781, 0.052113, 0.054256, 1.489929, -2.319850, -0.875172, 1.052834, -1.168659, 1.203849, 1.873580, -1.304988, -1.195347, 0.074933, -0.819237, 0.225344, 0.878967, 1.709015, 1.049806, 1.288809, -1.032700, 0.086863, -0.946706, -0.818545, 0.872467, -0.237770, 0.155820, -1.304577, 1.636670, 0.151133, 0.967993, 0.110881, 0.150877, 1.484445, 1.121276, -0.118021, 0.608817, 2.357328, -1.016401, -0.469376, -0.550390, -0.409004, -1.288844, -0.022064, 1.322211, -0.179143, -0.222284, 0.297379, -0.227155, 0.767312, 0.742179, -0.178157, 1.907347, -1.488104, 1.752610, 0.309048, -0.687354, -1.591249, -0.066197, -0.632987, 0.156538, -0.092357, 0.657221, -0.968431, 0.013441, 1.566867, -0.779775, -0.102937, 0.187588, -0.239708, 0.514408, -0.892555, -2.006233, 1.823657, -0.516750, -2.148337, -0.790337, -0.606263, -0.473256, 1.168875, -0.090796, -0.455657, -1.093990, 1.394264, -0.037004, -0.973671, -0.703020, -0.391457, -0.883238, -0.865456, 0.194524, 0.277050, 0.197426, -2.719405, 0.999210, -1.911888, 0.768931, 0.893925, 0.798184, -0.483811, -0.109018, 1.789914, -0.732209, -0.197841, -1.148164, 0.600628, -1.104373, 0.493309, -0.578877, -0.014371, 0.244305, -1.305085, 1.323745, -0.604934, -0.431943, -1.869939, -0.342695, 0.273983, -0.637892, 0.625504, 0.060483, -0.375854, 0.481039, -0.465637, -0.493322, 2.078899, 0.965049, -1.873762, -1.398574, -1.103456, 0.023818, -0.048828, 0.499922, 1.103808, -0.407019, 0.234889, -0.290098, -0.280004, -0.255307, -1.155633, 1.745537, -0.877842, -0.153193, 1.243263, 0.414363, 0.235606, 1.926401, -1.345772, -1.537519, -0.164772, 1.319398, 0.237318, 0.387374, 0.156613, -2.544656, 1.487631, 0.696228, -0.631754, 1.044520, -0.405275, 0.442023, 1.095049, -0.476201, -0.765776, 0.969635, 0.581589, 1.887556, -0.774355, -0.087189, -1.963782, -1.440028, 1.664002, -0.453721, -2.270548, -0.133651, 1.859609, -0.091845, -0.303762, 1.874308, -0.532028, 0.968764, -1.352737, 1.735034, -1.853280, -0.311987, -1.361894, 0.162358, 0.843325, 0.860413, -0.027289, 0.627408, -0.435320, 0.282668, 0.048371, 0.703496, 0.742708, 0.124144, -0.204005, 0.829737, -0.612569, -0.464114, 0.937625, -0.369567, 2.200452, -0.926200, -2.153710, -0.903290, 1.360621, 0.382107, 0.161709, 0.122960, -1.003582, -0.105325, -0.923724, 0.092264, 0.224534, -1.563664, 0.824365, -0.955211, 0.363359, -2.580325, 0.973050, -1.143877, -1.238295, 0.763985, -1.921105, 0.683867, 1.187746, -0.038994, -0.178769, 0.315576, -2.251306, 0.634587, -0.031517, 0.665309, 0.586579, -0.391361, 2.723842, 0.173339, 0.870107, -0.129691, -1.586291, 0.012321, -2.054189, -1.348105, -0.047760, 0.648424, -0.617658, -0.555565, 0.269593, 0.378318, -0.771060, -0.035391, 0.553282, -0.554301, 0.189406, 0.020271, -0.363177, -1.372483, 0.136119, 0.310903, 0.536777, -0.664214, 0.266679, 1.377958, 0.951877, -0.505270, 0.966229, -0.165921, -0.678581, -0.292191, -0.452764, -0.471618, 1.581310, 2.239947, -0.475507, -1.166860, -0.226614, 0.330568, -0.599378, -1.029070, -0.740106, -0.991834, -0.838594, -0.286063, 0.087952, -0.578373, 1.139414, 1.418043, 0.528983, 0.813993, 0.517582, -0.440381, 1.033115, -0.499338, 1.714287, -0.184252, 0.410220, 0.155704, -0.087856, 0.197838, -0.204555, -2.190064, -0.393011, 0.180747, 1.506584, 0.310229, 0.209610, 0.208258, 0.920001, -1.320895, 1.235602, 0.875701, 0.506555, -1.510092, 0.536531, -0.756404, -0.366492, -1.553902, 0.671268, 2.275665, -1.315565, -1.990081, -2.434534, -3.003460, 0.187586, 0.024793, 1.967721, -0.615093, -0.991161, -1.947062, 0.901306, -1.009685, -0.208878, 0.389756, -0.808893, -0.183898, 2.358423, -1.266086, 1.458911, -0.997851, -1.573394, -0.739068, -0.977383, 0.027170, 1.028018, -0.915064, 1.518475, -1.839727, -1.588492, -0.319333, 2.604299, -1.544695, 0.623290, 0.478191, 0.479097, -1.104491, 0.117296, -0.278895, 0.239931, 1.488080, -0.623504, 0.123458, -1.262306, -0.923429, 0.411504, 1.373551, -0.528096, -3.115369, 0.459906, -1.543553, -0.795593, -0.983580, -0.693758, -0.718482, 0.792452, 0.183048, -1.986654, 1.163537, -1.924302, -1.021194, -0.226743, -0.057445, -0.371688, -0.000038, 0.455770, -0.803171, -0.352188, 0.427768, -0.671950, -1.397304, -0.228509, 0.243365, 1.662694, 0.321892, -0.629543, -1.920191, -0.212265, 0.168026, -0.417266, -0.202305, 0.341350, -0.817676, -0.077210, -0.016715, 0.786514, 0.259231, 0.682989, -0.400077, 0.193763, 1.432670, 0.273162, 0.438181, -1.117096, 0.279743, 0.195410, -0.492454, -1.365304, -1.138301, 0.013034, -0.808158, -0.133111, -0.433158, -0.622648, 0.269748, 0.380002, 0.502397, -0.209955, -0.469299, 0.302911, -2.705736, 1.482955, 1.012440, 1.327509, 1.845529, 0.059318, -1.288721, 0.440556, 0.132143, -0.177198, -0.020683, 0.011311, 1.007897, 0.476104, -0.954094, 1.032277, 0.854230, 0.372054, 1.306225, -0.264705, 1.803049, 0.219990, 1.237412, 0.903214, -1.408900, -0.868558, -1.045087, -0.270156}, + { -0.124556, 0.214732, -0.475685, -0.003755, -1.551845, 0.290485, 0.084813, 1.064142, 1.780594, -0.330511, 1.763450, 0.159717, -1.646925, 0.106462, 1.850661, -0.907728, 0.754688, 0.495498, 0.122055, 0.411446, 1.280869, 1.408719, -0.592297, 0.896132, 0.026837, 0.537325, 0.488521, -0.815213, 0.227998, -0.938928, 1.533882, 0.665805, 0.936838, -0.234686, 0.044656, -0.022932, 0.095962, 0.062116, 0.372148, 0.206869, -0.605317, -0.078986, -1.407345, 0.231873, -0.409335, -0.664240, 1.447953, -0.698160, 3.335412, 0.870955, -1.260834, -0.091863, -0.084850, 0.640673, 0.307444, -0.835049, 0.962834, -0.829647, 1.960242, -0.901437, 0.859880, -1.852758, 1.278928, -0.343956, 0.348270, -1.865621, 2.482861, 0.401716, 0.751886, -1.002222, -1.551203, 1.795758, -0.730999, -1.448246, -0.229022, -0.272483, 0.243393, -1.314431, 1.394117, 0.212025, 0.192108, -1.697462, 1.551802, 1.046398, -1.361587, 0.118674, -0.381348, 0.714766, 0.195474, 0.252701, -0.210753, 1.251111, 2.910465, 1.097646, -0.122490, -2.049957, 0.060060, -0.156807, -0.529914, 1.513162, -0.269578, 0.571004, 1.423364, -1.229091, -0.293224, 0.286141, 1.370368, -0.513470, -0.557197, 0.027631, 0.133527, -0.101162, -0.009544, -0.931478, 0.353155, -1.475984, -0.578765, 0.475901, 0.223068, -1.491776, 0.640581, -0.263308, -1.103687, 0.692428, 1.419664, 0.892742, -2.005419, 1.660345, -0.884437, 2.003043, -0.234451, 0.595339, 0.410456, 1.365405, 0.240031, -0.414562, -0.396543, -0.065898, -0.193108, 1.200651, -0.778109, -0.767686, 0.988285, 0.402860, -0.557806, -0.853069, 1.292825, 1.614735, -0.785408, -0.804496, -0.550633, 1.237612, -0.119418, -1.048116, 0.816668, 0.071597, -0.760067, -0.024247, 0.530724, 1.998850, -0.623444, -0.495789, -0.728117, 1.136157, -0.415790, 0.612050, -1.638522, -0.062055, 0.806061, 0.300774, 1.158025, 0.726819, 0.419197, -1.660878, 0.858088, 1.481711, -0.101485, -0.530590, -0.035412, -0.750298, 0.900485, 1.486717, 0.038184, 1.076900, -1.209982, 0.296408, -0.860844, 1.262837, -1.931212, 0.672062, 2.367405, -1.164733, -0.318571, -0.483524, 0.459769, -1.118972, -0.342848, 1.202205, 0.486918, 1.526388, 0.889725, 1.149997, -0.430029, 0.376025, 3.149772, 2.023580, 0.374976, 0.187981, 0.795106, 0.258165, -1.291416, -0.533949, -0.124301, -0.522019, 1.478513, -0.604373, -1.432819, -0.243765, 0.662953, -0.906332, -0.004578, -2.471117, -0.833055, -1.219079, 0.212340, 1.859250, 1.206218, 0.192215, -1.285447, -0.213471, 1.224513, -0.859124, -0.695230, -0.500472, 1.173397, -0.117129, 0.360284, 0.220255, 0.333413, 0.675134, -0.047669, -0.387372, 1.440709, -0.785724, 1.034797, -0.805795, 0.260910, -0.747421, -0.417968, 0.660365, -0.096735, 0.236975, 0.100046, 1.609320, -0.612572, -0.240876, -0.099845, 2.752326, -0.302302, -1.082565, -1.688467, 0.038791, -0.723517, 0.836125, -1.350985, 0.729227, -0.373164, -0.701913, -0.379932, -0.093915, -2.051312, 0.404109, 0.836971, 1.540677, 0.085790, 0.689076, -0.607341, -0.572421, 1.667701, -2.021840, -0.136856, -0.735925, -0.024302, -1.329776, -0.820792, 1.854717, -0.024481, 0.101076, -0.785774, -0.365410, 0.042571, -0.297230, 0.798715, 0.385450, -1.250740, -0.048449, 0.007554, 0.663689, 0.662752, 0.308399, 1.184945, 0.583256, 0.003352, -1.979616, 0.616051, 0.806489, -0.779062, -1.088973, -0.216438, 0.397105, -1.526621, 1.138214, 2.184197, 0.065824, -1.038327, 1.046104, -0.632096, 0.736100, -0.021066, -0.652877, -0.729231, -0.657829, -1.290562, 0.697807, 0.279240, 0.289866, 0.117573, -0.118003, -0.417927, -0.601012, 1.120439, 1.271690, -0.432336, -0.156383, -0.064426, -0.348522, -1.494706, -0.218396, 1.389066, -0.524989, 0.031994, 2.223101, -0.313071, -1.175229, 0.503698, -1.903233, -2.279456, 0.465461, -0.497311, -0.095432, 0.079771, -0.124652, 0.184967, -0.793246, -0.936887, 1.523089, -1.027867, -0.765387, -0.402405, 0.032419, 0.069341, -0.083108, -1.212047, 0.069437, 1.285615, -0.824335, -0.634190, 0.534955, -1.487075, -1.388754, -0.230385, -0.106416, 1.100100, -0.682561, -0.718692, 1.161490, -0.891574, -0.254596, -1.607980, -0.785684, 0.822982, -0.117902, -1.085879, -1.673469, 0.746334, -1.017921, 0.452566, 0.801144, 1.102851, 0.333506, 0.853609, 0.605417, 0.054769, -0.831675, -0.253099, 0.536466, -1.158812, -0.237043, 1.909930, 0.524417, -0.029045, -1.427767, 0.089708, -0.433114, 1.476551, -0.306867, -0.642571, -1.126997, -0.873396, -0.277359, -0.999856, 0.054863, 0.603877, -0.704717, 1.398580, -1.293804, -0.021676, -0.728282, 0.000341, 1.858945, -0.399946, 0.761750, 0.713962, -0.815401, -1.246949, -0.290712, 0.057757, -0.992989, 0.296043, -0.496273, 0.005757, 1.039500, 0.144973, -1.478988, -1.025327, 0.669251, 1.142326, -0.955892, 1.896616, -0.251807, -1.062911, 0.775867, 0.899093, 0.734023, 0.274711, 0.331019, -0.318289, -1.105881, 0.274094, -0.659667, 0.814517, 1.101066, -0.420062, 0.444412, 1.941795, -0.080213, -0.929138, -0.805259, -0.919051, 1.173050, -0.597020, 1.918823, 0.936452, -0.106886, 1.379318, 0.594719, 0.491022, -0.929728, -0.398663, 1.142565, 0.276807, 1.005901, -0.245142, 1.116563, -1.690943, 0.569288, -1.085292, -0.475897, -0.813621, 2.081917, 1.298205, 0.798231, 0.114789, 0.997470, -1.448101, 1.206036, 1.076599, 1.020118, -0.119822, -1.168915, -0.018358, -0.025953, -0.288002, -1.597011, -1.090315, -0.783672, 0.381058, -0.520627, 0.417752, 0.145083, -0.175108, 0.715159, 1.525393, 1.315036, 0.201650, 0.398830, -1.625843, -0.434306, -0.511978, -1.309002, -1.046297, -1.010623, -0.093374, 0.853805, -1.538929, -1.277129, -0.819305, 0.173539, -0.351919, -0.322774, 1.715311, -1.552179, -1.246247, -0.937346, 0.513066, -1.188081, 0.503276, 1.431313, -0.906037, -1.209430, 1.842265, 0.855947, 0.209670, 0.045423, -0.459216, 1.359160, 1.172179, 0.139677, 0.975699, 0.498079, 0.628391, 1.157151, -1.598262, 0.153501, 0.662128, 0.706682, -0.550672, 0.771564, 0.907013, 1.268376, -0.632004, 0.617584, -0.458430, 2.085585, -0.008046, -0.210887, 0.396583, -0.734302, 0.097747, -1.744962, -0.789943, -0.157987, -0.190494, 0.070852, -0.601011, -0.317571, -0.124127, -1.890930, -0.284864, -0.520676, -1.146291, -0.919355, 0.651292, -1.787168, 0.882431, -0.351980, -2.669798, -0.430740, 0.561496, -0.581550, 0.078186, -0.178902, 0.607134, 0.842264, 0.327635, -1.217835, 0.205561, -1.942389, -0.056853, -0.537946, -2.262090, -0.066176, 1.324403, 1.128981, -1.797952, -0.989625, -1.575181, 0.145158, 1.175949, 1.494624, 1.120458, -0.998547, 1.995705, 1.089385, 0.548776, 0.282457, 1.330262, -0.174400, -0.204203, 0.161817, -0.264929, -0.461986, -1.626783, 0.391523, 0.145890, -1.754169, 0.296589, -0.612268, 0.153805, -0.861908, 1.438167, -0.674448, -0.327895, -2.062997, -0.289202, 1.176646, 0.323835, -0.830045, 1.408956, -0.751730, -0.316489, -0.158235, -0.368825, -0.277708, 0.197704, -0.817506, 0.558676, -1.413840, -0.711814, -0.597066, -0.674612, 0.367378, -0.968266, 0.667102, 1.117752, 1.586125, 1.565250, 0.144219, -0.695463, -0.290525, 2.881412, 0.015000, 0.639978, -1.080645, -0.783334, 0.515186, -1.398020, 0.373036, -2.158046, -0.254884, -0.605621, 0.802108, -0.126641, 0.938277, 1.376617, -0.718748, -0.842720, 0.381600, -1.215405, -0.827983, -0.059611, 0.196732, -1.650873, -0.084782, -0.185829, -0.487551, -0.463072, -0.259181, -0.103362, 0.537078, 0.014879, 1.135703, -2.041666, 1.979608, -1.603868, 1.507785, 0.953596, -0.377685, 2.613216, 0.650664, -0.437154, 0.254299, -0.429017, -0.557572, -1.633633, 0.576717, 0.534072, 1.159335, -0.427657, -1.118196, -0.012284, -0.186427, -0.691040, -0.730078, 0.075365, -1.132984, -0.190870, 0.406804, 0.207879, -2.294693, 2.152850, -0.467270, 0.942535, 0.032904, -1.564979, 0.675052, 1.961251, -0.453044, -0.820623, -0.294431, -0.451907, -0.265416, -0.631487, 1.066984, -0.338139, 0.333483, 0.243287, -0.247070, 1.720912, 0.983091, -0.056447, 0.692842, -1.604852, 0.306966, -1.017264, 0.290449, 0.455763, -1.414400, 0.297050, 0.592006, -0.383773, 0.930126, 1.519644, 0.596109, -1.209475, -1.261013, 1.107478, 0.062156, -1.135464, -0.968872, 0.164482, -0.784653, -0.629053, -0.354562, -0.777726, 0.810718, -0.565584, 1.122523, 1.361012, -2.056448, -0.553321, 0.866706, 0.667344, -0.793330, 0.323302, -0.120487, 0.150663, 1.007660, -0.071390, -0.108765, 0.022239, -0.575841, 0.630777, -0.177022, -1.483497, 0.638667, -1.501063, -0.805663, -0.224633, 0.987011, -0.741495, -0.381262, 0.325782, -0.352854, 0.565832, 0.563500, -0.537951, 2.486304, 0.465521, -0.588733, 0.035477, -0.242992, -0.428474, 0.708396, -0.056116, -1.068553, 0.159806, -0.439672, 0.550554, -2.380432, 1.804097, 0.128071, 0.754179, -0.447299, 0.694061, 0.516008, -0.989336, -2.064580, 0.111212, -0.408785, 1.179455, 1.168253, -0.333812, -2.679116, -1.028988, -0.106062, 1.643627, -0.292608, -0.540806, 1.311380, -0.574682, -0.018146, -1.784798, 1.172512, 1.580119, 0.363252, 0.230218, -0.541092, 0.069216, -0.342713, -1.048313, 0.356980, 0.746783, -0.256746, 0.449411, 1.622351, -0.634571, -0.545241, 0.381035, -0.291517, 0.040134, 0.622269, 1.027205, -1.421924, -1.890758, 1.668177, 1.108259, 0.960238, -0.296446, -0.629126, 1.326619, 1.021395, -2.145787, -0.285352, 0.566308, -1.366336, -0.407285, 1.453667, -0.413106, 0.929902, -0.048213, 0.612840, -1.548366, -0.418754, 0.418942, 0.869369, -0.111274, 0.065392, 0.165834, 0.143857, 0.314177, -0.708972, -1.262740, -0.330130, -1.789362, -0.870849, 1.972676, -1.296305, -0.337860, -0.926449, 0.040697, 0.024703, 1.511723, -0.256754, 0.424117, -2.056355, -0.349122, -0.038793, -0.334562, -0.435336, -0.403743, 0.634943, -0.071141, -0.067210, -0.468274, 0.523411, 1.230742, -0.516104, 0.811010, -0.587272, 0.489719, 0.428672, -0.691886, 0.966198, -1.073430, 0.139791, -0.335730, 0.359905, -0.681301, -0.755568, 0.402569, -2.042570, 0.214874, 0.366972, 1.374920, -2.773028, 1.356821, 0.001218, 0.307316, -1.078310, -1.695454, 1.530202, -0.673198, 0.227762, 0.721745, -0.272509, 1.356354, -0.612329, -1.385841, -0.359150, -1.587610, -2.609899, 0.765939, 0.403686, -1.345989, -0.016400, -0.782035, -0.068772, -0.563583, -1.512323, -0.802373, 0.846235, -0.676507, -0.411770, 1.204343, 0.466326, 2.791710, 0.178031, 1.023895, -0.194968, -1.675175, 0.164688, 0.990177, -0.791173, -0.047906, 0.066020, -1.862855, -1.359542, 0.836239, -0.176627, -2.052211, 1.159254, -0.110586, -0.535847, -0.725505, -0.043446, -0.883788, -0.741774, -0.446175, -1.080935, -0.146795, -0.372000, -0.545105, -0.413078, -0.415851, 0.804739, -1.245653, -1.058451, -0.818105, -0.064762, -1.002594, -0.408039, -0.866596, 0.543270, 0.828634, 0.225722, 0.419858, -1.183411, -0.892608, -0.503698, 1.093961, -0.887446, -0.344446, -0.320414, 0.648191, -0.238688, -0.545827, 0.174564, -1.884116, -0.206660, 2.030400, 1.183137, 2.163397, 0.479257, -0.334608, 1.057730, -0.243829, -1.786532, -0.452534, 2.139789, 1.696456, 2.233223, -0.757544, 0.582066, -0.874874, 0.135934, 1.248448, -1.150499, -1.198146, -0.408667, 0.091871, -2.181645, 0.140551, 0.125460, 0.994109, -0.657229, 1.252808, 1.307662, -2.303020, -0.133937, 2.735802, -1.506595, -0.902908, 0.598781, -0.259200, -0.739598, -0.971033, -0.191418, 1.915108, 0.188066, 0.613548, 0.880680, -0.567797, 1.113599, -0.228490, -0.856571, -0.709118, -0.324824, -0.762390, 1.076884, 1.017765, 0.086270, 1.181267, -2.207183, 0.657843, -0.801405, 1.974467, 1.020810, -1.811095, 0.188050, 0.038996, -0.237017, -0.546838, 0.958459, 0.981209, -1.040830, -0.289389, 0.025209, 0.552407, -0.019490, -0.185065, 0.347340, -0.258149, 0.929790, 1.121788, -0.383434, 1.013352, -1.132277, -1.151446, 0.062418, -0.308587, -0.294004, 0.457512, 0.707404, 1.097272, -0.461449, 0.562656, -0.291580, 2.313274, -0.457785, -0.681476, 1.408637, 0.285265, -1.621723, 0.284824, -0.740783, -1.060114, 0.249114, -1.772057, 0.983641, 0.599315, -1.316473, 1.988788, 1.090292, 1.513413, 0.400976, -0.027280, 0.549917, 0.471572, 1.373071, -0.653361, 0.466708, -0.052620, -0.073322, -0.680658, 0.489331, -1.885395, 1.251539, 0.593031, -1.014345, 0.753572, 0.197509, 0.446290, 1.288177, 1.212358, 0.980768, 0.780476, 0.787523, -0.435219, -0.909224, 1.049510, -0.617111, -0.348352, 1.446409, 0.414974, -0.721153, 1.620298, 0.096506, -1.259982, 0.664118, -0.443832, 1.290849, 1.858972, -0.455368, -1.944236, -0.456144, -0.845723, 1.370862, 0.742908, 1.254573, -0.749793, -0.036196, 1.755142, -0.685936, -1.107264, -0.836196, 1.052430, -0.147071, 0.548983, -1.089857, -0.635970, 0.330474, -0.176892, 0.944300, 1.125057, 0.758845, -0.870518, -0.402911, 1.600570, -1.257928, -1.023360, 0.663575, -0.696277, -0.400817, -1.327128, 0.539098, 1.736591, -0.321577, -0.545796, 0.434284, -0.714456, 0.618137, 0.511372, 0.278212, -0.260021, 0.915341, -0.922452, 0.037292, 0.426179, 0.705869, 1.035049, 0.026599, 1.677043, 1.657345, 0.923044, -1.411100, -3.832237, 0.008010, 0.373282, 0.883514, -0.034189, 0.334271, -0.159206, 1.034732, 0.320248, -0.616155, 1.255802, -0.623626, -0.737680, -0.875783, -1.574785, 0.263765, -0.666912, 0.646696, 2.237981, 1.637003, -0.249799, -1.026068, -0.652068, 0.727805, -1.743778, 0.185351, -0.059293, -1.177505, -1.102831, 0.697480, 0.507852, -0.045236, -0.465180, 0.318554, 0.267656, -1.012823, 1.693587, 0.076736, 0.162081, -0.840275, 0.607198, 1.714491, -0.075592, 0.966025, 0.191240, 0.097275, 0.413008, 0.241719, -2.111725, -1.035877, 2.077765, -0.016953, 0.871715, 0.100560, 0.541924, -1.293770, -0.162740, 0.005407, 0.901538, 0.093142, 0.344972, -1.250350, -0.159083, 0.031903, -0.444135, 0.688179, 1.217298, -1.062174, -0.217747, -0.427113, -0.855284, 1.759428, 0.074507, -0.802393, 0.293451, -0.327369, -0.563558, 1.044823, 0.896199, -0.372447, -0.437880, 0.138788, 0.476211, 0.506663, -0.181221, -1.264109, -0.528839, -0.946731, -0.458235, 1.261515, -1.380901, -2.605806, 1.348817, 0.847604, 0.804814, 0.014878, 0.361055, -1.160617, -0.779195, 1.518698, 1.230783, -2.283942, 0.343663, -0.107100, -0.737299, 0.216103, -0.805411, 0.824130, -1.364841, 1.861787, -2.115733, 0.701171, -0.498939, 0.154625, -1.784520, -1.670132, 0.072219, 0.114108, -0.116636, -0.523063, 1.294796, 1.744407, 0.594212, 1.582234, -0.355617, 0.085229, 1.375400, -0.518462, -1.445663, 1.350187, -0.156895, 1.557601, 0.092361, -0.077288, 1.373156, 0.914879, -1.165836, -0.719149, -0.136050, -0.534955, 0.766915, -0.050572, -0.170610, 1.072980, -0.316467, -0.428878, -0.098019, -0.266370, 0.995632, -1.158306, 0.333018, 0.915557, 0.585576, -1.795874, -0.597102, 0.288074, -0.780558, -0.121593, -0.422456, 0.651376, -0.533608, -0.129734, 0.160401, -0.820242, 1.469957, 1.260974, -0.073573, -0.513647, -0.521365, -1.311475, -0.747555, -1.736958, 0.515721, -0.069416, -1.707808, 0.861408, -1.267705, 1.445141, 0.168282, 1.096348, -0.032258, 0.487565, -1.378492, 0.984394, 0.295189, -0.581293, -1.126321, -0.965170, 0.904861, -1.627988, 0.718193, -0.128275, 0.441543, -1.188704, 0.528057, -0.325109, -0.503576, 1.109411, 0.117337, -0.770917, 1.109915, -1.538171, -1.301114, 0.202651, 0.106116, -0.175800, 0.619204, 1.829062, 1.394035, -0.098988, 0.123457, -1.280059, -0.651270, 0.200186, -0.146245, -1.378196, -0.870654, -1.081427, -0.437840, -0.905927, -0.335555, -0.007978, -1.816853, -1.340287, -1.020128, 0.544799, -0.758345, -1.848817, 0.102965, 2.011129, 1.116329, -0.888418, -0.567218, -0.650773, 0.193882, -0.141545, -0.579191, 0.052989, 1.623450, -0.202421, 1.118551, -0.537210, -1.469557, 0.924297, 0.020956, 0.484929, -0.207247, 0.514712, 1.103358, 0.001177, -0.525153, 1.233094, -0.635913, -0.649243, 1.462223, -0.686829, 1.128536, -0.803818, -0.184998, 0.270263, 0.927053, -2.022480, 0.206045, 1.006607, 0.015428, 0.102861, 1.440047, 0.315756, 1.383134, 0.257763, -1.979327, 0.161625, -0.121104, 0.703871, 0.030053, -1.357377, 0.529402, -0.209974, -0.133984, 0.364779, -1.430084, -0.112340, -0.287188, -0.122642, 0.883928, -0.373543, 0.471797, 1.579353, 0.572610, 0.248064, 0.627978, 1.189376, 0.968811, 0.100968, 1.464239, 0.323001, 0.001922, 0.204583, 1.067669, 1.025336, -0.044850, -1.692197, 1.847710, 1.267234, -1.620949, -0.692003, -1.877843, 0.170211, -1.156007, 0.100961, -0.142167, 0.957809, -0.898717, 0.565431, 0.386347, 0.497924, 0.975725, -0.290307, -0.385659, -0.274842, 2.817502, 1.749468, 0.314457, 1.995306, -1.260524, 1.260217, 0.319917, -0.107772, -0.571743, -0.374177, -2.346767, -3.701163, -0.385988, 1.706604, -0.268029, 0.681639, -1.260063, -0.502416, 0.599105, -0.513001, 0.258413, -0.612485, 1.239879, 1.101319, -1.090047, 0.161688, -0.943966, 0.837877, -0.085611, -2.648102, 0.158742, -0.424351, 1.128505, 0.529096, -2.066522, 0.154007, -0.630589, 0.467402, -0.628746, 0.530201, 0.352529, 0.749033, -0.551184, -2.492387, -0.405858, 0.439029, 0.583280, 1.539024, 0.458645, 1.306940, -1.929151, 0.756864, 0.587704, 0.710589, -0.853597, 1.736809, -0.801042, 0.538108, -0.838605, 0.173434, 0.105998, 0.795775, -1.496930, -0.420346, 0.266893, -0.169787, -1.839956, -1.742866, -0.479910, 0.410828, -1.140694, -0.690392, 0.343315, -1.044437, -1.241186, 0.520850, -0.875228, -1.698586, 1.301165, -0.380026, -1.493971, 0.669261, 0.466058, -0.294756, 0.155520, 0.138254, -1.961680, 0.742914, 0.347212, -0.279362, 1.176827, 0.034865, -0.055329, -0.868841, 1.127957, 0.950364, -2.977225, 0.161512, 0.383668, 0.933197, 0.788786, 0.794875, 0.913040, -0.567714, 0.745576, -0.122633, -0.949421, 1.093675, -0.310490, 0.304520, 2.759228, -0.598371, 0.268793, -0.067396, 0.771450, -1.427038, -0.493772, -0.220780, -0.313156, 2.883943, 0.147233, -1.091275, 1.853781, 0.464963, -1.036713, 0.999920, 0.023326, -0.167619, 0.731841, 1.611902, 0.335417, 0.135229, -0.374251, 0.155828, 1.116370, -0.149655, 0.656955, 0.184027, 1.892442, 1.597349, -0.751827, 1.274067, 1.181018, 1.596015, 0.248309, -0.545003, -1.713966, -0.951092, -0.359620, 0.778025, -0.694317, 0.679964, -0.749977, -1.126008, -2.398620, -0.279269, -1.550496, -0.192556, 1.427267, 0.828476, 0.936609, -0.465418, -0.073531, 0.443348, 1.176055, -1.584841, -0.896934, 0.024355, -0.048658, 0.856792, -0.111085, 0.405076, -1.192463, -0.027935, 0.790964, -0.926888, -0.310886, -0.448039, -0.516360, -0.604700, -0.094143, 0.333861, -0.311795, 1.131255, -0.176567, 0.797273, 0.229303, -0.397290, 0.695944, 1.479155, -1.558551, 1.967325, -1.095525, -0.847723, -1.137966, 0.605955, -0.445466, 0.978939, -0.152505, -1.055603, -0.143988, 0.771586, 0.726765, 0.919972, -0.012515, -1.341406, -0.016560, 0.670849, -0.863836, 1.551746, -0.519147, -0.191495, -0.196949, -0.566305, 1.616965, 1.051764, 1.122878, 1.896729, -0.967552, -0.621959, 1.250674, -0.141358, -0.286530, -2.305885, 2.397047, 1.234361, -0.000481, -0.001546, 1.645498, 1.646374, -0.214856, -2.177384, 0.332065, 1.128000, -0.880155, 0.749936, -1.245540, -0.436007, -0.722076, 0.932980, -0.510917, 0.947311, -1.020211, -1.237462, 0.676312, 1.169495, -0.961555, -1.150385, -1.467081, 0.090576, 0.412152, -0.345900, -1.943398, 0.231390, -1.126427, -0.110403, -0.299365, -1.343542, 0.070518, -1.213746, -1.948285, -0.430098, 1.104704, 0.570656, -1.316857, 0.166003, -1.330528, -1.699090, 1.020340, 0.017074, 1.121869, 0.585611, 0.126813, 0.444190, 1.384652, 0.182754, 0.841823, 1.394185, -0.472243, -0.823611, -0.823375, 2.398123, -0.225179, 0.338163, 1.272070, -0.844961, 1.283233, -1.215489, 2.793196, 0.488079, -1.467792, 0.070271, -0.649087, -2.207076, -0.303574, 0.812287, -0.471858, -0.669357, 0.949947, -1.000990, 0.196791, 1.231420, 0.494419, -0.494974, -0.611909, 0.382722, -1.150502, -0.399735, -0.856167, -0.195031, 1.976696, -2.609494, -0.384130, 0.643403, 0.096395, -0.279943, -2.064576, -0.466337, -0.200146, 0.114344, 1.426532, 0.000527, -0.752574, 0.894544, -0.655629, 1.109187, -0.866218, -0.516024, 0.640022, -0.518555, 0.145864, 0.773181, 0.225581, 0.290538, 0.747641, -1.174569, -0.647270, -1.980715, -1.972549, -0.373698, 0.579239, 0.561119, -1.520669, -1.395047, 1.013265, 0.027813, -0.156359, -0.665146, 0.573089, -0.821151, 0.137131, 1.277774, -1.033218, 1.145000, 1.533029, 0.322583, 1.632788, -0.167658, 0.052905, -2.018619, -0.481707, -0.659924, 1.949958, -0.841278, -0.435364, 1.154726, 0.978961, 1.112133, 0.520385, 0.040436, 1.461085, -2.511556, 0.338614, 0.787096, 0.120330, 0.620896, -0.451394, -0.522217, -1.424278, -0.059059, 0.891092, 0.057211, 2.103189, -0.052520, 1.399019, -0.121249, -0.099928, 0.449735, -1.077104, -0.934913, -2.111855, -0.220665, -1.437807, 0.971195, -0.495310, -1.418799, 0.374201, -1.857120, 0.622335, -1.736548, 0.778899, -0.004125, -0.508303, -0.050053, 0.012916, -1.389756, 1.838392, 1.003756, -0.557629, -0.329985, -0.081035, 0.932347, -0.810706, 1.062518, 0.224968, 1.405744, 0.745647, -1.997574, 0.252469, -0.353212, 0.633688, -0.695673, 0.324678, -0.570519, -0.986554, 0.604292, -0.489062, 0.168370, 0.344445, -0.726769, -0.072534, -1.160619, -1.276769, 1.144912, -1.164568, 0.394456, -1.273124, 0.810511, -1.145871, -1.171945, 2.025588, 1.719475, 1.054481, 0.757027, -1.269937, 0.228416, -0.156074, -2.262204, 0.173409, -0.407751, 0.103071, 0.475066, -1.050379, -1.510848, -0.238104, 0.284706, 0.504880, 0.770080, -0.136400, 0.572330, 0.829604, -0.040399, -0.391842, -0.168304, 0.403776, 1.012514, 0.037916, -1.052998, 1.533547, 0.036985, 0.262151, -0.306815, 0.190909, 0.763127, 0.948737, -1.653135, -0.650829, 0.607049, 2.328665, -1.036538, -1.915372, -0.335898, -1.054629, -0.647564, 2.064487, -1.103924, 1.190822, -0.034968, -0.206577, -0.720869, 0.933140, 1.398061, 1.194782, 1.721316, 0.421452, -0.261041, -0.426014, 0.383200, -1.022142, -0.682805, 0.763092, -0.052450, -0.052127, 0.398723, 0.486852, -0.543223, 0.730223, 0.586764, -0.917056, -0.073443, -0.391036, 0.913963, 0.126772, -0.849941, 1.107111, -1.193883, -0.732857, 1.199895, -1.015222, 0.221759, 0.226034, -1.232783, 0.589265, -0.327667, 0.321114, 0.346832, 1.019846, 1.221999, 1.537736, 0.803042, -0.356546, 1.009670, 0.200623, 0.889767, -2.181979, 1.500390, 1.840137, -0.583186, 0.648864, -0.836413, -0.640562, -1.197309, -1.256311, 0.841414, -0.307614, 1.164824, 0.747089, -1.266735, 0.747264, 1.717242, 0.441949, 0.339690, 0.853023, 0.248407, -0.426098, 0.875694, -1.268495, -1.375267, 1.529163, -0.680222, -0.851567, 0.229538, -0.979576, 0.654135, 0.265722, 0.129227, 0.202677, -0.603778, -0.237018, 1.867644, -1.902437, 0.277132, 0.481365, 1.502165, -0.189917, -2.100104, 0.717783, 0.008972, -0.319309, 0.604783, 0.442692, 0.463905, -0.849629, 1.099183, 0.655235, -0.660627, 0.116045, 0.693271, 0.220451, -0.392222, 1.044933, 0.371334, -0.447102, -0.068173, -0.926980, -1.061302, 0.845635, 0.139445, 0.724504, 1.246881, 0.328783, 0.150668, -1.082396, 0.648875, 1.645309, 0.864821, -1.265298, 0.288567, -0.457901, -1.460030, 0.182971, -1.053223, -1.042254, -0.805499, 0.402352, -0.096270, -1.419052, 0.260306, -1.912350, 0.464357, 0.028771, 0.291029, -2.028773, -0.767735, -0.649982, -0.738791, 1.202714, -0.074713, 1.098142, 0.027250, -0.050268, -0.637749, 1.384421, 0.338970, -0.015888, -0.119556, 0.613569, 0.203998, 0.954284, 0.382512, -0.716652, 1.126443, 0.905335, -0.229832, 0.574947, -0.662453, -0.030610, 1.215706, 0.500625, 0.051322, -1.211131, -1.261215, 0.323648, -0.081571, 0.459103, 0.206311, 0.589389, -0.257962, 0.188781, 1.218578, 0.657053, -0.754671, -0.318125, -0.584927, -1.376840, -1.179587, -0.547652, 1.029155, 2.672415, 2.787307, 2.210649, -0.463513, 0.356750, -0.965728, -0.934902, -1.334134, 0.446187, 0.803827, -0.267750, -0.907267, 0.448584, -2.034448, 0.291839, 0.119803, 1.539824, 0.359316, -0.167523, 2.053133, -0.486958, -0.451775, -0.447460, 2.183904, -0.348901, 0.497314, 0.151343, -0.025286, 1.400967, 1.213992, 0.706893, 0.878736, -0.542568, -0.713312, 1.045372, 0.328224, 1.530628, 1.154304, -1.220586, 0.063098, 0.772705, 1.212450, 0.082040, -0.328541, 0.752032, 0.614110, -0.712406, -0.046151, 0.541844, -0.312134, -0.687797, -0.293987, 1.046043, 1.499904, 0.654042, -0.440012, -1.447626, 0.749602, 0.598931, 0.096156, 0.956299, 1.218762, -1.543216, -0.012744, 0.564561, -0.325190, -0.031480, -0.882811, -0.091742, 0.301502, -0.376800, -1.566011, -3.185509, -0.472711, 1.261891, -0.166312, -0.094215, -0.824482, -0.325673, 1.362876, 0.594479, -1.219396, -0.338121, -0.718209, -1.950390, -0.824664, -0.784586, 0.504109, -1.937794, 1.961687, -0.499681, 0.864963, -0.569470, -0.147595, 1.274664, 0.274799, -1.058419, -0.939051, -2.111732, 1.311098, -0.827448, 0.803640, -0.734731, 1.346134, 0.261815, 0.477327, 0.472301, 1.119150, 0.095586, -0.285461, 0.674269, -1.057942, 0.843822, 1.946816, -0.896351, 1.082087, -2.154961, -0.244605, -0.004460, 0.318436, -0.738881, 0.578767, 0.249968, -0.040326, -2.350247, 1.036081, 1.529633, 0.742063, -1.470166, -0.672417, -0.342264, 0.927006, -0.344444, 0.400777, 1.560836, 1.104811, 0.251211, -1.018178, -0.550247, -0.261240, 1.885252, 0.050868, 0.429471, 1.274583, -1.659118, -1.139802, 1.689020, -1.819155, -0.391737, 1.936047, -0.674383, -1.077109, 0.582478, -0.050151, -0.463283, -0.082294, -0.156641, 0.288596, -0.756687, -1.027395, -1.091916, 0.338210, -0.291455, -1.089907, 1.931904, 1.782614, -1.027111, 0.072944, 1.221987, 1.038942, -0.168081, -0.572764, -1.187558, 0.150853, 1.017483, 0.481622, -0.571727, 0.180890, -0.449917, -0.984001, -1.302260, -0.349963, -1.067973, -0.251996, -1.162151, -1.543553, -0.462163, -0.401639, -0.120303, 0.288614, 0.302817, -0.698703, -1.032643, 0.223822, -0.662259, -0.868777, 1.071301, -1.045193, -0.164127, -0.391009, 0.013630, -0.388123, 0.245041, 0.424042, 0.009748, -0.719421, -0.180480, 1.639515, 0.402062, -0.740891, 0.149684, 0.248755, 1.706435, -0.091404, 1.109994, -0.244125, 2.497059, 0.102330, -0.177319, -1.129288, 0.307627, -0.925393, -1.052974, -1.134666, 1.009218, 0.045739, 0.226864, -1.180758, 0.307602, -0.187725, -0.751480, 0.305978, 1.769848, -1.177584, 1.077664, 1.269134, 2.390996, 0.705909, 0.389782, 0.330631, -0.211538, 0.787761, -0.417390, -0.095061, -1.904208, 0.418058, -0.283909, -0.368772, -0.261908, 1.062451, -1.806426, -0.509271, -0.184831, 0.357617, -0.722223, 1.047431, -0.147525, -0.764120, -1.443322, 0.142139, 0.210944, 0.738781, 1.423368, -0.506459, -0.719896, 0.179730, -0.115166, -0.358652, 0.102097, -0.504885, 0.306345, 0.642847, -1.012690, -0.440801, 1.096082, -0.013515, 0.358865, 0.635343, -0.483523, -0.901756, -0.263051, -1.132975, -0.145640, 0.872782, 0.755807, 0.356380, 1.506973, 0.366068, -1.000958, 0.516380, 0.573854, 0.206245, 0.298657, -0.011098, 1.083328, 0.616480, -0.455971, 0.302329, -0.103590, 0.284991, 0.244868, 0.533082, 0.874814, -0.349713, -1.182924, -1.311491, 0.535004, 1.862282, -0.076467, 0.835622, 1.256029, -0.565852, -1.504594, 2.277408, 0.016275, 0.035760, 0.102109, -0.210999, 0.126120, -0.638288, -2.384612, -0.375901, 0.461192, 0.960570, 0.315896, 0.045985, 0.564629, 0.529140, -2.559819, -1.047713, 0.329466, -0.997374, 0.489387, 0.055280, -1.722771, 0.398606, 0.487157, 0.104550, -0.990803, -0.124218, -0.835197, -0.786026, 1.566341, -0.602284, 0.492510, 0.315360, 0.503011, 1.107253, -0.678015, 1.494259, 2.036781, 1.069011, -0.227542, 0.039585, 1.703182, -0.044750, -2.362349, 0.243684, -0.030508, -0.672654, -0.145267, 0.453308, -0.400244, -0.772117, 0.737629, 0.973770, 1.651525, -0.258138, -0.104751, 0.218496, 0.042494, -1.138496, 0.150492, 0.618673, -0.512350, -1.080380, -0.274232, 0.884633, 0.444273, -0.233005, 0.798308, -0.467572, 2.433550, 0.585784, -0.664523, 2.605470, 1.339960, -0.434429, 0.029536, -0.039991, -0.101863, 0.349465, 0.597840, -1.196737, -0.126427, 0.935964, -0.025526, -1.189689, 0.753324, -0.986274, 0.153445, 0.706372, 0.632197, 1.902034, -1.256663, -0.134228, 0.553498, -1.329364, -0.199758, 1.093690, 0.137674, 0.074629, 1.143971, -0.622682, 0.684820, 1.254369, -0.660103, 0.703685, -0.894909, 1.371870, 0.606431, 0.754138, 0.534528, -1.001241, 0.578271, 0.426436, 0.793215, -0.740149, -0.485584, -0.384494, 2.977618, 0.167704, 1.055053, -1.678718, -0.488530, -0.645943, -1.386534, 0.594655, 0.137613, -0.194399, 0.147244, 2.191463, 0.589561, 0.155157, -0.397009, -0.373146, 1.588335, 0.548365, -1.375504, 0.745258, -0.154341, 0.992464, -0.577978, -0.195855, 1.664223, 0.694524, -2.726967, -0.437916, 0.986295, -1.079693, 0.594812, 0.539542, -0.277344, 0.941402, -0.060753, -1.008352, 0.094972, -0.910181, -0.649991, 0.890040, -0.578983, 0.705631, -1.127651, 0.432541, 0.953788, -0.031506, 0.029359, 3.103742, -0.274652, -1.609812, 0.086658, -0.285004, -0.294109, -1.897404, -0.653915, 0.844298, 1.537646, -0.985621, 0.389841, -2.044208, 0.118238, 0.535755, -0.744912, 0.039770, 1.431132, -0.573443, 1.413536, -1.440234, 0.419968, 0.225114, 1.804120, -1.237094, 0.593894, -0.716003, 1.658175, 0.047013, -0.882131, 0.157059, -0.339198, -0.378511, -1.217220, 0.162421, 0.371167, 2.141889, 1.354069, 0.297119, -0.843006, 0.482372, 1.234613, 0.875482, 1.222869, -0.161291, -0.995356, -0.438671, 0.416588, 0.596731, 0.065985, -0.684466, 1.011878, 2.061402, 0.132167, 0.411189, 0.312151, 0.184291, 0.211096, -1.457534, -0.795647, -0.296328, -0.757931, -0.140544, -0.964305, -0.392550, 0.315525, 0.601454, 1.839404, -0.594580, 0.191142, -0.862696, -0.186251, -0.240750, 0.077531, 0.448939, -1.514732, 0.124252, -0.955633, 0.271409, 0.536774, -1.597665, 1.286043, 0.273853, 1.161376, -0.418880, -1.946422, 0.602668, -0.703806, -1.306034, 0.074630, 0.029758, 0.857925, -1.115937, -0.030894, -0.254380, 1.132448, -0.053832, 0.098550, -0.683910, 1.197410, -0.618806, -0.290345, -0.027905, -0.272453, -0.512632, -0.829069, 1.852748, -0.504823, 0.441979, -0.193136, -0.009785, -0.243243, -0.544696, 0.002690, 2.212299, -0.244478, -1.012666, 0.682170, 0.529566, 0.576155, -0.700527, 0.453308, -0.121798, 0.974262, 1.496188, -1.247547, 0.155104, -1.154205, -1.893895, -1.869161, -0.074632, -0.147338, 0.274421, 1.973705, 0.089033, 0.300854, -0.078432, -0.923467, -0.273353, 0.819620, 0.994959, 1.146665, -0.137906, -0.684620, 0.608531, -0.169350, 1.817891, 0.888513, -0.716495, 0.296398, 1.543710, 0.686084, -0.989226, -1.233147, 0.797087, -0.076455, 0.135359, 1.992051, -0.559256, -0.355711, -0.211369, -1.840335, 2.083733, -1.013689, -0.733991, 0.415794, 0.740574, -0.930320, -0.111373, 1.690626, 2.429542, -0.004308, -0.995957, 0.382483, 0.209008, 0.919120, -0.072409, -1.228856, -0.991454, -0.268372, 0.522556, -0.096552, -0.914431, 0.039501, 0.242114, -0.221412, 2.324423, -0.651460, -0.666151, -1.119609, -1.448346, -0.925386, 0.389292, 1.124154, -0.271806, -0.729049, 1.193724, -0.626982, 1.412729, -1.752315, 0.045337, -0.249343, -0.116884, -0.904167, 0.817044, 0.152291, 0.115017, 0.342553, -0.474283, 0.641435, -1.151900, -1.425590, -0.578896, -0.288439, -0.087481, -0.175025, 1.896984, -0.917184, -0.002832, -1.364489, -0.680488, 0.531802, 0.027634, 0.168496, 1.787259, -1.037840, -0.085357, 0.495851, 2.038621, -0.319107, 0.614780, 0.390782, -1.846728, 0.002384, -0.254565, -0.239848, 0.842797, 1.092042, -1.282239, 0.570512, 0.536954, -0.926982, 0.716224, -1.071743, 0.600182, 1.211640, 0.829380, 0.560705, 0.078512, -0.333731, 0.492895, 0.159626, -1.005067, -2.226572, -0.634672, 1.752485, 1.032170, 0.358745, -0.234850, -0.035530, -1.128157, 0.742679, -1.196054, -0.347674, -2.054854, 0.273413, -0.698963, -0.246795, -0.709943, 0.454131, -1.805550, -0.267575, 0.148850, -0.782469, 0.368612, -0.496542, 0.211443, -0.771216, -0.063712, -0.267752, -0.531594, 1.239240, 0.149041, 0.038675, 1.645157, 0.886968, -0.853405, -1.465230, -1.742101, -0.798284, 0.241082, -2.311634, 0.320004, -1.280485, -0.209859, -1.190324, -0.895839, 0.529627, 0.616560, -0.810841, 0.000102, -0.972396, 0.033103, 0.156390, 1.839610, -0.112166, 0.232799, 0.109225, -0.550243, 0.334020, -2.550766, 0.679509, 0.756145, 0.110251, -0.273988, -0.982102, 0.640712, -0.866290, -1.462347, 0.035077, 1.683773, -0.270578, 0.088040, 0.636150, 0.986303, 1.702691, 0.586015, 1.202545, -2.570271, -0.472190, 0.243466, 0.133880, -0.006401, 0.727936, -0.599675, -0.160660, -1.630240, 1.277823, 0.686225, 0.904499, 0.300069, -0.874093, 1.958989, 0.793191, -1.971186, 2.200583, -0.899536, 0.629933, 1.189624, -0.914638, 0.788546, -3.259173, -1.244885, 0.890972, -0.657992, 0.628539, -1.223282, 1.278668, -0.644911, 0.476486, 1.105676, 1.638826, -1.829981, 0.303061, -1.587406, 0.799293, -0.538447, 1.381353, 0.536929, 0.430886, -1.281552, 1.598193, 1.230857, 0.782224, 0.138354, -0.081236, 0.205909, -1.004968, -0.529797, -1.032847, -0.949249, 0.090189, 0.044878, -0.070573, -0.164321, 1.449813, -2.246111, 1.685842, -0.270831, 2.823672, -1.197951, 1.175283, -1.445425, 0.268843, -1.904981, -0.492387, -1.884344, 1.279282, 0.807842, 0.755428, 0.028804, -0.512331, -0.433352, 0.499296, 1.037904, -0.026814, 0.021602, 0.494125, -0.531134, 0.894899, -1.569244}, + { -0.623453, 0.954053, 1.623444, 0.693702, 1.051604, 1.869862, -1.381684, -0.695497, -1.232447, 1.529873, 0.144401, 1.715343, 3.588311, 1.314834, 0.045535, -0.811673, 0.174592, -0.866058, 0.631247, -1.116479, -0.436631, -0.047052, 0.719751, 1.785655, 1.156472, -0.219903, -0.030608, 0.299466, -0.631376, 0.573242, -0.456588, 0.610688, 0.166786, 0.115527, -0.679740, 1.058073, -0.554841, -1.111318, -0.488704, -0.761492, 0.761811, -0.104446, 0.279684, -1.022138, -1.286590, -0.794616, 0.336994, -1.249675, 1.074103, 0.809033, 0.049789, -1.003783, 1.566896, 0.021207, 0.952531, 0.373783, 0.415383, 1.061700, -0.609034, -0.176690, 1.405349, -0.054868, 0.294895, 0.078584, -0.794150, -1.227244, 0.475934, 1.527520, -0.532228, -0.031494, 1.132420, -0.035409, -0.853781, -0.205829, 1.058578, 0.312618, 1.025839, -0.992747, -0.055552, -1.097253, 0.543441, 0.701778, 0.046210, -1.613917, 1.337267, -0.123126, 0.584711, -1.261481, 1.432934, -0.044287, -0.173449, 1.030038, -1.563089, -0.447450, -0.517009, -2.013959, 1.598219, 0.112909, 0.216350, -0.605201, -1.710702, 0.045644, -1.231230, -0.914531, -1.654087, 1.329637, 2.037380, 0.791088, 0.157253, -0.710456, 1.305099, 0.566779, -0.077611, 0.989932, 0.984189, 0.685566, 0.501019, -1.280524, -1.182654, 0.803050, -0.758460, -1.057862, -0.187893, -0.339902, 1.954562, 0.212230, -0.986281, 1.165170, -0.695722, 0.020398, -1.103753, -0.230648, -0.361203, -0.834126, -0.463378, -0.716393, 0.436393, 1.824251, 0.058563, 1.480980, -1.113165, 0.679718, -0.698174, -1.151177, -0.434598, -0.485698, 0.086315, 1.172273, 1.177265, 0.968471, -0.547780, -1.143789, -1.401750, 0.833172, 0.498177, 0.727264, 2.187537, 0.059330, 1.919571, 1.752794, -0.938311, 0.962821, -0.071750, -1.666583, 1.905437, 0.335731, 1.818801, 0.302484, -0.877142, -1.477450, -0.820728, 0.743103, 0.247202, 0.215841, -0.487392, -0.488721, -0.946522, 0.000023, 0.316309, -1.721988, 1.914840, -1.302360, -0.341921, 0.248546, 0.939944, 0.528778, -0.202490, 1.004617, -1.070344, 1.615516, 0.892080, 1.994732, -1.434383, -0.056931, 2.826312, -0.413024, -0.865239, 1.903107, 0.369067, -0.065173, 1.196553, 2.428730, 0.610659, -0.083590, 1.574067, 0.219858, 0.650548, -0.280599, -0.357974, -0.838390, -0.916102, -1.290103, 0.257130, 0.137525, 1.160550, 2.504158, -0.560719, -1.026722, -0.615722, 1.716536, 0.245685, 1.426338, 1.027635, -0.050195, -0.059096, -0.528190, 0.129126, 0.221599, 0.672226, -1.345480, -0.844464, -0.310609, -0.300496, 0.004860, -1.575402, -0.105495, -1.414926, 0.109777, 0.227233, 0.919921, 1.134450, -0.991901, 0.164022, -0.830330, -0.620654, 1.062751, 0.735327, -0.253591, -0.617748, 0.869474, -1.102727, 0.343456, 0.340353, -0.711225, 0.738152, -2.494143, -0.447320, 0.261639, -0.876834, -0.621362, 0.401711, 0.403854, -1.818019, 1.734050, -1.216679, -1.266483, -1.780765, -1.295812, -0.852020, -0.971149, 0.823359, -0.709542, 0.693283, 1.294185, -1.498523, 0.993589, 0.839256, -0.284462, 1.506703, 0.037203, -0.648762, 0.930297, 0.201614, -1.370532, -1.292700, 0.403996, -1.706020, -0.318158, 0.449052, 0.497324, 0.521217, -0.194938, 0.484995, -0.504353, -1.952156, 1.490097, 0.628563, 1.015440, 0.652072, 0.548159, -0.298940, 0.681354, 1.622283, -0.709891, -2.619955, 0.027944, 0.952976, -0.583707, 1.104840, -0.280059, 1.763923, -1.689790, -0.141087, 0.682918, -2.840436, 1.242989, 0.897080, -0.023077, -0.723775, -0.620017, -0.055428, -0.074814, -0.208272, -1.530227, -2.466289, -0.389793, 0.477436, -0.563231, -1.659874, -2.046016, -0.482248, -0.512303, 0.753429, -0.329284, -0.215627, -2.592513, 0.274906, 1.215909, 0.684245, 2.300354, -0.759647, -0.418392, 1.445860, -0.724331, -0.038904, 0.909814, -0.929235, 0.804243, 0.412419, 1.321878, 0.161760, 1.228870, 1.594674, -1.760651, -1.545941, -0.017338, -0.257052, -1.342466, 0.921997, 0.363393, 1.660995, 3.110499, -1.271268, 0.796166, 1.070389, 1.248606, -0.743917, 0.252434, 0.342996, 1.066864, 0.341531, 0.739123, 0.880762, -0.279449, 1.692952, -1.129257, -0.340177, -1.940223, 0.030578, -0.796483, -1.690204, 1.375955, -1.667420, -0.451877, -2.686948, 0.624933, 1.104958, 0.213290, 0.613976, 1.402480, -0.093016, -0.868012, -0.446540, 0.454247, -0.707785, 2.101789, 0.768771, 0.804757, -0.714055, -0.005500, -0.143981, 2.309610, 0.187676, 0.922561, -0.869147, -0.932537, -0.210430, -0.740733, -0.801509, 0.138654, -0.500698, -2.191879, 0.736989, 0.050568, -0.847442, -0.467371, -0.620093, 1.071607, -1.219288, 0.701180, 1.164552, -0.062570, 1.510141, 0.579090, -0.328714, 1.614425, 0.927753, 0.732866, -0.371786, 0.725116, 0.323996, -0.123742, 0.223387, 0.482749, 1.718388, -1.261799, 0.465963, 0.768161, -1.520144, 0.590971, -0.403894, -0.482664, -0.322890, 1.520487, -1.346282, 1.322418, -1.604702, 0.292978, -0.279316, -0.856389, -0.145189, 0.665877, 0.206045, 0.268668, -0.708773, -0.195848, -0.120889, -0.853206, 1.156486, -1.407154, 1.262708, 0.763650, -1.086083, 0.164940, 1.686167, 1.206167, -0.794927, -1.167664, 1.518261, -0.408484, 0.929001, 0.281053, -0.667475, 0.045282, 0.800883, -1.227243, 1.099914, 0.289765, 0.222921, -0.326742, -0.272994, -0.578084, -1.277323, -1.328512, 1.271082, -0.323974, -0.936015, 0.152633, 0.050185, -0.061969, 0.902417, -1.872260, -1.760017, -0.665758, 1.750578, -1.115335, -0.482179, -0.721216, -0.661339, -0.354468, -0.409206, 0.860945, -0.372282, 0.981023, -1.693248, 1.216220, 0.005642, -0.246426, -0.690470, 0.454123, -0.614794, 0.282413, -0.041944, 1.619260, -1.426622, 2.134139, -1.215949, -2.555833, -0.245038, 0.482855, -0.776026, -1.288328, -0.354847, 1.575842, -1.383988, 0.424619, 1.943871, -0.038640, 0.006247, 0.367939, 0.735515, -0.101791, -0.194711, 0.411367, 0.037841, -0.149004, 0.846544, -0.668612, -0.935705, -0.372453, 0.122381, -0.678787, 1.740865, -0.387087, -1.985908, 0.036531, 0.357803, -1.141082, -0.078745, 0.757630, -1.772953, 0.995736, -0.251684, -1.044462, -0.352929, -0.159211, 0.566438, -1.353958, 0.585748, 1.164025, -0.151318, 0.892339, 0.303215, 0.102689, -0.785613, 1.720145, -1.634517, -0.077173, 2.910751, 1.238376, -1.070150, 1.717178, -0.424230, -0.860789, 0.374001, -2.334249, 0.004519, -1.068791, -0.992720, -2.348866, 1.297737, -0.266538, -0.681577, -1.446853, 0.428924, 1.508156, -0.784141, -0.346106, 0.278468, 0.633195, 0.200221, 2.339906, -0.518537, -2.456020, -1.113917, -1.030970, 0.694407, -1.515428, 1.177057, -0.107440, -1.011979, 0.417285, 0.818502, -0.189856, 0.598343, 0.415470, -1.693178, 0.641560, -0.029072, 0.568614, -1.050384, -0.059501, -0.005994, 0.841842, -1.783431, 1.251634, -1.509092, -1.244333, -0.057438, 1.210072, -0.470286, -0.142246, 0.155634, 0.119058, -0.807101, -1.966949, 0.276064, 1.928274, -0.363779, 1.778863, -0.694578, -2.953176, 0.339838, -1.257644, 0.273053, 0.905211, -0.089732, 0.618200, 1.658325, -0.113873, -0.696675, -0.635603, 0.015964, -0.840557, 0.895750, 0.660494, 1.161041, 0.854115, 0.086081, 1.356078, 1.108299, -0.087507, 1.331952, -0.295514, 0.197562, 0.585499, 0.728088, -0.866588, 0.549671, -0.378238, 1.728026, 1.274765, -1.570455, -2.396265, -0.123276, -0.144986, 2.008585, -0.199556, 0.369414, -0.773789, 1.485619, 0.116638, 1.234015, 0.124005, 1.039817, -0.558376, 0.951702, -1.545855, 0.107654, -1.080724, -1.115903, 0.393940, 0.037577, 0.440651, -0.409629, 0.713164, -0.404153, 0.278440, 0.963260, 1.742860, -0.463231, -1.209535, -0.323712, -0.231298, -0.502553, 0.285147, 0.142140, -1.282130, -0.710462, 0.855065, 0.037743, -0.677499, 0.118042, -0.454565, 0.981097, 1.722714, -0.167418, -3.202382, -0.412894, 0.701014, 2.011460, -0.315601, -0.474802, 0.075601, 0.987902, -1.040080, 0.709486, -1.125118, -0.017001, -1.904518, -0.183568, -0.975301, 2.269899, 1.557225, -0.342013, -1.417912, 0.342440, -0.435465, -0.042540, 1.618265, -0.250682, -0.787410, 1.098447, 0.045734, 1.140916, -0.005694, 0.461982, -0.680186, -2.262146, 0.030759, 2.020773, -0.861753, 0.271623, 1.596500, 0.245057, -0.408449, -0.208146, 0.483222, -0.213091, -1.737382, -0.470778, 0.852057, -0.108822, -0.705684, -1.794956, -1.733111, -1.200252, -2.157468, -0.559874, 0.013241, 1.321396, 1.098886, -0.230483, -0.590569, 0.624788, 0.741311, 0.008630, -0.626681, -0.545619, 1.076151, -0.144665, 1.064903, -1.146352, -0.754815, -0.374404, 1.490998, 1.178891, -0.458798, 1.216729, -0.051359, -0.200159, -0.192953, -0.273308, -0.769555, 0.134451, -0.097036, -0.575961, -0.938152, -0.186811, -2.027305, -1.089062, -0.271874, -0.470876, -0.105277, -0.426130, 1.131322, -1.279843, -1.123745, 0.901968, -0.286172, -0.405162, 0.464232, 0.336823, 0.051341, -0.249817, 1.398990, 0.901713, -0.828001, -1.043243, 0.426822, -1.505874, 0.011781, 1.062281, -0.662296, -0.806976, 0.826020, -0.565465, -2.312020, 1.578992, -0.759484, -0.351286, 0.704443, 0.712394, -0.767216, 0.222625, 0.860920, -1.566572, -1.182164, -1.929471, -1.352744, -0.537665, 1.514014, 0.524002, -0.405265, 0.883618, 0.530110, -1.020418, -0.688276, 1.782730, -1.240812, -1.196037, 0.742602, -1.502700, -0.961634, 0.849075, -0.450839, -0.770336, 0.108036, -0.563989, -1.165810, -1.543547, -1.403592, -1.023245, 0.964347, -1.592831, 0.128164, -0.599490, 0.338740, -0.182169, -0.753812, -0.645035, 0.563881, 1.879971, 0.735333, -1.075692, 1.077581, -0.125789, 1.003849, 0.278407, -1.279668, -0.087034, 0.557527, 0.631904, -0.364409, -0.591107, -0.530717, -0.806510, 0.021594, 1.805066, -0.234287, -1.149436, -0.510306, 1.110254, 0.245971, 0.416621, 0.190544, -0.576510, -1.649418, -1.165816, -1.057189, -0.442838, 0.566944, -0.736546, 1.999349, 1.400423, -0.248045, 0.076294, 0.286319, -1.015722, 0.082188, -1.220659, -1.588475, 1.490315, 0.568091, 1.189487, -0.032901, 0.788781, -1.683181, -0.681388, -0.322550, -0.903044, 1.105530, -0.368619, 0.305826, 0.771226, 1.621447, 0.110249, -1.263226, 0.650783, 0.775220, -0.776529, 0.744234, -0.514982, 0.333820, 2.156255, 0.772207, 0.546877, -0.541077, 1.033439, 0.027314, -1.179867, 0.112219, -1.869214, 0.254614, 0.441247, 0.600428, -1.529266, -0.828392, 1.779309, 0.421391, -1.959596, -0.101238, 1.068820, 0.078936, 0.430229, -1.120721, -1.067357, 0.496507, 1.599528, -0.626374, -0.813625, 1.463498, 0.347601, 0.927429, 1.148257, -1.586493, 0.093626, -0.772744, 1.625483, -0.478545, -0.221309, 0.000621, -1.148203, -1.438723, 1.056092, 0.733679, 0.307065, -3.348996, -0.203099, -1.277446, 1.063363, -0.950062, 1.387271, 2.128470, -0.367682, -0.833131, 1.879218, 0.097407, -0.172273, -0.580684, 0.232930, 1.930204, 0.575178, 0.290120, 2.931159, 0.548125, 0.462058, 1.261512, 0.435107, 1.618984, 0.466057, 1.992763, -1.456414, -0.613729, -0.992565, -0.609947, 0.041044, 0.086893, 1.203942, -0.676437, 0.222967, -0.350054, -0.484052, 1.286109, -0.262943, 0.667269, 1.411309, -0.931674, 0.833679, 0.780207, 1.295682, 1.058218, 0.154652, -1.299975, -0.181953, -0.067264, 1.822692, -0.143681, -1.374258, -1.710318, -0.031247, 0.856007, -0.023738, 1.750374, -1.765197, -1.000061, 1.991553, 1.324514, 1.198946, 0.221269, -1.008166, 0.015012, 0.341822, 0.520590, -0.601956, -0.497275, -1.314573, 0.375441, 0.022262, 2.559487, -0.021369, 0.876764, -0.911074, 0.572897, -0.461993, -0.118148, 0.400654, 0.091359, -1.185379, -0.114256, 2.018330, -0.378927, 0.123732, 0.065811, -0.148458, 0.009804, -0.487581, 0.920691, -1.605965, -2.316377, 1.363888, 0.557818, 0.946484, -1.411012, 0.840466, 1.765036, 0.680239, -0.673007, 1.208876, 0.578271, -0.112013, 0.373387, 1.738491, 0.654488, -0.997188, 0.371525, 0.415120, 0.312278, 0.482467, -1.144021, 0.708331, 0.298731, 0.585536, 1.304343, -0.882933, -1.174656, -0.364076, -1.735889, 0.543588, 0.815846, -0.069151, -0.161164, 0.276600, 1.124768, 0.501393, -1.081831, 1.205866, 0.335251, -0.802165, -0.728224, -0.728497, 1.744816, -0.625711, 0.318683, 0.411529, -0.240272, -0.548268, 1.784923, -0.597437, -0.839994, 0.826265, 0.208463, -0.593553, -0.343072, -0.414023, 1.643092, 0.177418, -0.837071, 0.947163, 0.598130, -0.357140, -1.193699, -0.520810, -0.049950, 0.328843, -0.115809, 1.237598, 1.429429, -0.866494, 1.067158, 0.881910, 0.755652, 1.812063, -0.101621, -0.189353, 0.588834, 2.224868, -0.215545, 0.475178, -0.785537, -1.994503, 1.138737, -0.312048, 2.111838, 0.243595, -0.217862, 1.632969, -1.048329, 1.198893, -0.330813, -0.498998, -0.109484, -1.034779, 0.962764, 0.333293, 2.275247, 2.340490, 0.578223, -0.676159, -0.778772, 0.092917, -1.291921, -0.043946, -1.006860, -0.442360, -0.352270, 0.349411, -1.729677, -1.336875, 1.257883, -0.997495, -0.007765, -0.373652, -0.057240, -0.839117, -1.462761, -0.819780, -0.160442, 1.915766, -0.492907, 0.510259, -0.663838, 1.119401, -1.068146, 0.205162, -0.730906, 1.351709, 0.036955, 0.165369, -3.168551, 0.291011, 0.116180, -1.416719, -1.666722, 0.882316, 0.493695, -0.107312, 0.892315, 1.015771, 0.086327, 0.751946, -0.999129, 0.373692, -0.891583, -0.561115, -0.127191, -0.311987, 0.915724, -1.180343, 0.749417, -0.163806, -0.872631, -0.456631, 2.761867, -0.874390, 0.290952, 0.045706, 0.067123, -0.002035, 0.811363, 1.037285, -0.192652, 1.878039, 0.408610, -0.719494, -0.987027, -0.079995, -0.148389, -1.205181, -0.614823, 0.079235, 1.937508, 0.469927, -1.000745, 1.002714, 0.756052, 0.415123, 0.323209, -1.016147, 0.617013, 1.157310, 0.299938, -0.740063, -0.369359, -1.169232, 0.295839, 0.058527, 0.870896, -0.082892, 1.213350, 0.958314, -0.768342, 0.169133, 0.226603, -0.200703, -0.769491, -0.625037, -0.515528, 0.625763, 2.897615, -1.093809, 0.075097, -0.364193, 0.153641, -0.287079, -0.696256, -0.166970, -0.602850, -0.144847, 0.430072, 1.057270, -0.427213, -0.386023, -2.026752, 0.109442, -0.782503, -0.314018, -0.129226, -0.414538, -0.761880, -0.575583, 0.539498, -0.133999, 0.405557, 1.357618, 0.768280, -1.626472, -0.940342, 0.284853, -0.960396, -2.374528, 1.334795, 0.243184, 0.763377, 0.148786, 0.214573, 0.550710, 0.581688, -0.499359, -0.324890, -0.150250, -0.438701, -0.886777, 0.664653, -0.837704, -0.737847, 1.262831, -1.006748, -0.906348, 0.603079, 2.390491, -0.335118, 0.655038, 0.337169, -0.400447, -0.435655, -0.793657, -0.061330, 0.238077, 2.079480, 0.903865, -1.330803, -0.155710, 0.992865, -1.264595, 0.629640, 0.160758, -0.760545, -0.448366, 0.922689, 1.636543, -0.148524, -1.345407, -0.336809, 0.847822, -0.888932, 0.112179, 0.810667, -0.920844, 0.699311, -1.698227, -0.072819, 0.194583, 2.913199, -1.661479, 0.491781, -1.630995, -2.292904, -0.156592, -0.831328, 0.333362, -1.346217, 0.740406, -0.646210, 0.330476, 0.011820, 0.261232, 0.891277, 2.536957, -0.098186, -1.035584, -1.477232, -1.873089, 0.441552, -1.420753, -0.728468, -2.461144, 0.518028, 0.651003, 0.749435, -0.791859, -0.140180, -0.426504, 0.280434, 0.824883, 0.019835, 0.319204, -2.522234, 2.159223, -2.491072, -0.057348, 0.492508, -0.952368, 0.097768, -1.645331, -0.449716, -1.085213, -0.928719, 0.239231, 0.751589, -1.002256, 0.215936, -0.606306, -0.733353, -0.710711, -0.394801, 1.207395, -0.347099, 0.044909, -0.232702, -2.167305, -1.001443, 1.914278, -0.477186, 0.836531, 0.691079, -0.214423, -2.006643, -0.132784, 1.232694, -0.616862, -0.004635, -1.944668, 0.213088, 1.552813, 0.374027, -1.138560, 0.406288, 0.791432, 0.525353, 1.094239, 0.706779, -1.632860, -0.739450, 0.049644, -0.108114, -1.567377, -0.250007, 0.161739, -0.440145, -0.346428, -1.196800, 0.406576, -0.200230, -0.110491, 1.468977, -1.547761, -0.052417, 0.087336, 0.697882, -0.577451, -0.048326, -0.679717, -0.389158, -0.831398, -1.364468, -0.127567, 0.241172, 0.007756, -0.640342, -0.642852, 0.778124, -1.113056, -0.032823, -0.444457, -0.613264, 1.920060, 0.820966, -0.276815, 0.195405, -0.385462, 0.802172, -1.244596, 1.319686, -0.395284, 1.687466, 0.341534, -0.362167, 0.203323, 1.585754, -0.749208, -0.255050, 0.233084, -0.267739, -0.215205, 0.679483, -0.129030, -2.025603, -0.545162, -0.177973, 0.052779, -0.571604, -0.228202, 0.326959, 1.729283, 1.202517, -0.908482, 2.067965, 0.988786, 0.221466, 0.347342, 0.339143, -0.404961, -1.616164, 0.096909, 0.302887, -0.200845, -0.385569, 0.493558, -0.514158, -1.429668, 0.704494, 0.705244, 0.794807, -0.222113, -0.233228, 0.129633, -1.693415, -0.454547, 0.814292, -0.280736, 0.661494, 0.314321, 0.288306, -0.254610, -0.240969, -0.555553, -0.860210, 1.569442, -0.334052, -0.310842, 0.264963, -0.571964, -0.754633, -0.345627, 0.134951, -0.725342, 1.321555, -0.260204, 0.427543, -0.375964, -1.056924, 0.371639, 0.567981, 0.634436, 0.030608, -0.783334, -0.450729, 0.037815, -0.275719, -0.365921, 1.114759, -1.609446, -0.669731, 2.159318, -0.278625, -0.871735, 0.077756, 0.386762, -0.392128, -0.085670, -0.604126, -1.747318, 0.555601, -0.450966, 0.710088, 2.087791, 0.312704, -1.942972, 0.116592, -0.493857, 0.831028, 2.226056, 1.483603, 0.366641, 0.685873, -0.727404, 0.443080, 0.125284, 0.725298, -1.204736, -0.597128, 0.195025, 0.732572, -0.469062, 0.477659, 1.874927, 2.106595, -0.375360, -0.362208, -0.287513, -0.056017, -0.833202, -0.912884, -0.195822, 2.167403, -0.301143, 2.482659, 1.063425, 0.367249, 0.822278, 0.112339, -0.128620, 1.102664, 0.762336, -0.321454, -0.953026, -2.228239, 0.765689, -1.747361, 0.822630, 1.092762, -1.132774, 0.693391, 0.570049, 0.958624, -0.436718, -0.281885, -1.354223, 0.471678, -0.232098, -0.714516, 0.951227, 1.214682, 0.937597, -1.029204, -1.131709, 0.534172, 0.649547, -2.054628, -0.131366, -0.447538, -0.726765, 0.597428, 0.256786, 0.145479, -0.395442, 0.612840, -0.947940, 0.642573, 0.014943, -1.608187, 0.124304, -0.676657, 0.590953, 0.710924, -1.567442, -1.030316, 1.555993, 0.361457, 1.216279, -0.402003, 1.853082, -0.595164, 0.164794, -0.743279, 0.995666, 1.586500, -0.059508, 1.808829, -2.116118, 1.635752, -0.937809, 0.567232, 1.071493, 0.303327, 0.881441, 0.219488, -0.193947, -0.923307, 0.796834, -1.878409, 1.766440, -0.067873, 0.070588, -0.618395, -0.808697, 0.671449, -1.243319, 0.291487, -0.457839, -1.264555, -0.826279, -0.032396, -0.105896, 1.023749, 0.431738, -1.273322, -0.318433, 0.586852, -0.089034, -0.468333, -1.030797, 1.747286, 0.396295, 1.589622, -0.688438, 0.472268, 1.045664, -1.120522, -2.158789, -0.700277, -0.100062, 1.224239, -0.028336, 0.780148, 0.750950, -0.863507, 0.377686, -0.294723, -0.262106, 0.771339, 0.890611, 1.060766, 0.185323, -0.135984, -0.837736, 0.525532, 0.019600, 0.881206, 0.347934, -2.414978, -2.115059, 1.023043, 1.749845, 0.678521, 0.056153, 0.557952, -0.236341, -1.056321, 0.234636, -0.956992, -0.441433, 0.732408, -0.379329, -0.011801, -0.071274, -1.706708, -2.356571, 0.786006, 0.203953, -0.317419, -1.083134, 1.149797, -2.085296, 0.752887, -0.932524, 1.746426, 0.679927, 1.135209, -0.834052, 0.098566, -0.789324, 0.636161, 0.186533, -0.732246, 0.435459, 1.226857, -0.760132, -0.433036, -0.233559, 0.651796, -0.392767, -0.237725, -0.336180, 0.194321, 0.161021, -1.181983, -0.641880, -0.016784, -0.724357, -0.022949, -0.585239, -1.621261, 1.410727, -0.120273, -1.228143, 0.226797, -0.740254, 1.990417, 0.854266, 1.119888, 1.281324, 0.464073, -0.030313, -1.021628, -2.528571, -0.496044, -0.220940, 0.296065, -1.571630, -1.411951, -1.034487, -0.183921, -0.714003, 0.554770, -1.939697, -0.870241, 1.579534, 0.407536, 0.845163, 0.169817, 0.608389, 0.522581, 1.708390, 0.111518, -0.490308, 1.335780, -0.460659, 0.411525, -0.080968, 0.269510, 0.292276, 0.101777, 0.266486, 0.455205, 0.452102, 0.769950, 1.655536, 1.619416, -0.087528, 0.070307, -0.004677, 0.765683, -2.225653, -0.560522, 0.345340, -0.702346, -0.931809, 0.341249, -0.869568, -0.103519, -0.687064, -1.030831, 0.070214, -1.221788, -1.396775, 0.556335, 1.180188, -0.548804, 1.133078, -0.592456, -0.184492, 0.130857, 0.237093, -0.987683, -0.332959, -0.951278, 0.446272, 0.898166, -1.547139, -0.388416, -0.953992, -1.619748, 0.001487, -0.373560, 0.454699, -0.301258, -0.208208, -0.338697, -1.237921, -0.038130, -0.801799, -0.389003, -1.264494, -1.949058, -1.690619, 0.338203, -0.449090, 1.154036, 2.257233, -0.045447, -0.940018, -0.135010, -1.367771, 0.675752, -0.847615, 0.836265, -3.218179, 0.772681, -0.700947, 1.329807, 2.207220, 0.660263, 0.537273, -1.650653, -1.055598, -0.432696, -0.963343, 0.674557, 0.258531, 0.091242, -0.156451, -1.876613, -0.311569, -0.992994, 1.373373, -1.083461, -0.706989, -0.837429, -0.439604, 0.610860, 1.201186, -0.152969, -0.692993, 0.303026, 1.091902, 0.562589, -0.444140, -0.397255, 0.036604, 0.782060, 1.461951, 1.215109, 1.015874, 0.411564, 0.603514, -1.187557, 0.837245, 0.186959, 0.462223, 0.269404, -0.552504, -0.882271, -0.989298, 0.366308, 0.694815, 1.008333, 1.242507, -0.410094, -0.239002, -0.812863, -1.278352, 0.616818, 0.744511, -0.071488, -1.218788, 0.335584, -0.055247, 0.190317, -1.361688, 0.092413, 1.391584, -0.089277, -0.477297, -0.297653, -1.329137, -0.176489, -0.780425, -1.242031, -0.455239, -0.128555, 0.705808, 0.652702, -0.907426, 0.115842, 1.439899, 0.583011, -0.586446, -0.508457, 0.145344, 0.474562, -0.997828, -0.497745, 1.263431, -0.498363, 1.067552, -0.140476, 0.195365, -0.339264, -0.550975, 0.430140, -2.495366, 0.820498, 1.151712, -0.580847, -0.664775, 0.300745, -1.900717, -0.246849, 0.174779, 0.095474, 0.301566, -1.462927, -0.457453, -1.198832, 0.260430, 0.525427, 2.327744, -1.917447, 0.651556, -0.082186, 1.258345, -0.599588, -0.777779, 0.395293, 2.045056, 1.120563, 1.661898, -0.539189, -0.111726, -0.107838, 0.628474, 0.855023, 0.050101, 0.291567, -0.751113, 1.743932, -1.885355, 0.827604, 1.001296, -0.799931, 0.832705, -1.218060, 0.589579, 1.204786, -1.311507, 1.293605, 0.120319, -0.673120, 0.768688, 0.896431, 0.687807, 0.565967, -0.331070, 1.144239, 0.344915, -0.536867, -0.657178, 1.542104, 0.667695, -0.314779, 0.967024, -1.946962, 0.091642, -1.883904, -1.918245, -0.747505, -0.275695, 1.471952, 1.597673, 0.643054, -1.427826, -0.940320, 0.045873, 1.094288, 1.310489, -0.449426, -0.976604, -0.161207, -0.479570, 1.346457, -0.163808, 1.376277, -0.904598, -0.484484, -0.504983, 2.231356, -0.574739, -0.925540, -0.604247, -0.651224, -0.719114, -0.761973, -0.668061, -0.255279, -0.078762, -0.022794, 0.211515, -0.920800, 0.637119, -0.714713, 1.671272, 0.192129, -0.180253, 1.393980, -1.204250, 0.737188, -0.077572, -0.695508, -0.256038, 0.124274, 0.944659, 0.957450, -0.178383, 1.970102, -0.991845, -0.507732, -0.281083, 1.439515, 2.388603, 0.230345, -0.072544, 0.788672, 0.121837, -0.605396, 1.692880, -0.838169, -0.199886, 0.096945, 0.124041, -1.143811, -0.618569, -0.211310, -0.699583, 0.170679, 0.393933, -0.008682, -1.669207, 0.139770, -0.176186, 0.586495, -0.272988, 0.639205, -0.053130, -0.899506, 0.453998, 0.075434, 0.669400, 0.193137, -0.185708, 0.555906, -1.290901, -1.267053, -0.821400, -2.053677, 2.290072, -0.077008, -0.920618, 0.023749, -0.117790, 1.077128, -1.319185, 0.177130, 0.145882, -0.796767, 2.135765, 0.174968, -0.790916, -0.701847, -0.645645, -0.226694, 0.108898, 0.454596, 0.562653, -0.731533, -1.487294, 1.617465, 0.383866, -0.994835, 0.407216, -0.261415, -0.697723, -0.238328, -0.680263, -1.702497, -0.019850, 0.412528, 0.646121, -1.124923, 0.260227, -0.676179, -0.548324, 0.113787, 1.106406, 0.478712, -0.996195, -0.400662, 0.322306, -0.183456, -1.094775, -0.714005, -2.390916, -0.124259, 1.317828, 1.232597, -0.461590, -1.142817, 0.618168, -0.314165, -1.010540, 0.747660, -1.440197, 1.082188, -1.315799, -0.236548, -0.607677, -0.547380, -0.332656, 0.705554, 0.341649, -1.080255, 0.883253, 0.532238, -2.370310, 0.643896, -0.696013, 0.560925, 1.117974, -0.119678, 1.088691, -1.319988, 0.907951, -0.366180, 0.698432, 0.550332, 0.966005, 0.904856, 1.320437, 0.729177, 0.536385, -0.569802, -0.680889, 0.695696, -1.529623, 1.016953, -0.905905, -0.263244, 0.803606, -1.550442, 0.112123, 0.600202, -0.862481, -1.347078, -1.474102, 0.142699, -0.900816, 2.040950, 0.547448, -0.408968, -0.853502, -0.859737, -1.367904, 0.703143, -0.291022, -1.893490, 1.078926, 0.006518, 0.252045, -0.835005, -0.356546, -0.261641, -1.671060, -0.326894, 1.896629, 1.012121, -0.211800, 0.338384, -0.184103, -0.122299, -0.132211, -0.855417, 0.492985, -0.099009, -0.343577, -0.082816, 1.081974, 0.921803, 0.641486, 0.499388, 1.859946, -1.221179, -0.088010, 0.308682, 1.435141, 1.082307, -1.517399, 0.101751, 0.173340, -1.151169, 0.680290, -0.174590, 1.305213, -0.671548, -0.442931, 0.129224, 2.026346, -0.768422, 0.199532, -0.226109, 1.509976, 0.721038, 1.441118, 0.020177, 1.516057, -1.973640, 1.343944, 0.303457, 0.188708, -0.331241, -0.542382, 0.879981, -0.996384, -0.137007, 0.504955, 1.750427, -0.654324, 0.904405, -0.809206, 0.759498, 0.892563, 0.407132, -0.196360, -0.305179, 0.101894, -1.022962, 1.948404, 0.211720, 0.422802, -0.151179, -0.799501, -0.708741, 0.680537, -0.245442, 0.140980, 0.211048, 0.102425, -0.714462, 0.008719, -2.286333, -0.911013, 0.410143, -0.251832, -0.635754, 0.220559, 0.273058, 0.249602, 2.147115, -1.275174, 0.441373, 0.101199, -1.209903, -1.686076, 0.697102, -0.728055, -0.599947, 0.434907, -0.742242, -0.231319, -0.485639, 1.490613, 0.456012, -0.315430, 1.032377, 1.016384, 2.071719, -0.581866, -0.997055, 0.361761, -0.579864, 0.588728, -0.431103, -0.318526, 0.593021, -1.226416, -1.543987, 1.143324, 1.317451, 0.807418, -0.951109, -0.232099, 0.030076, 0.300818, 1.741943, -2.176701, -1.189019, -1.335963, 0.927846, 0.176398, -0.225009, 1.401209, -0.256503, -0.016149, -1.241953, -1.070358, 0.369862, 0.281447, 2.637036, -1.203327, 0.529598, 0.479650, 0.802503, -0.275342, 0.086772, -0.021011, -0.208393, 0.011626, 1.438752, 0.961595, 0.581880, 0.550852, -0.738347, 1.423225, -0.690117, 0.063013, 0.530657, -1.198591, -0.260484, 0.182210, -0.888091, -0.389593, 1.579610, -0.956951, 0.701923, 0.510090, -1.268439, 0.437497, -1.000280, 0.914457, -2.079672, -0.642056, 0.575708, 0.036583, -2.124228, -0.337062, 1.520439, 1.086876, -0.443614, 0.623885, -2.132409, 1.892285, -1.028370, -1.046202, -0.244842, 0.148280, 0.422102, 0.717107, 0.483886, -0.064513, -0.102968, -0.544850, 1.843724, 0.523018, -0.426738, -0.767726, -0.163730, 0.658391, 1.490329, 0.891014, -0.760058, -0.995975, 0.941965, -0.228759, 0.819013, -1.438934, -1.759312, 1.634432, -1.490389, -0.754722, -1.157871, 1.290812, -2.045502, -1.010032, -0.745381, 0.145885, -1.085113, 0.726223, 1.356378, 0.689163, -0.025504, -1.611363, 0.116147, 0.203872, -0.883090, 0.015775, -0.445040, 0.524059, -0.738939, -1.356761, 0.632259, 0.989492, -0.288515, -1.409764, -0.190458, 0.757061, -0.195403, -0.728183, -0.279709, 1.133811, -0.069051, 1.054468, -0.336070, 2.098590, 0.798654, -0.350733, -1.387883, 0.048497, -2.198933, 0.307884, -1.533988, -0.842805, -0.163025, 1.368090, -1.688254, -0.218864, -0.168888, 0.316394, 0.803479, -0.943433, -1.784473, 0.069284, 0.821159, -1.154330, -0.397152, 1.045521, 2.045438, 0.534702, -0.009791, -1.095701, -0.311276, -0.496416, 0.792970, -0.487859, 0.325287, 0.485965, 0.432876, -1.126865, -0.685436, -0.085591, -0.414640, 0.228518, -0.821009, -0.743283, -0.161088, 1.142402, -1.018194, 0.476906, 0.276374, 0.987624, 0.383144, -1.295667, -0.488333, 0.617016, -0.033344, 0.725141, 1.008377, 0.439418, 1.472104, 0.155561, -0.110068, -1.304138, -1.165281, 1.315892, 0.444532, 2.298580, 0.227679, 1.336553, 0.946921, -0.440665, -0.680986, -0.260142, 1.197007, -0.098810, 0.861896, 0.132229, -1.200370, 0.120048, -0.474769, -1.315054, 1.050065, -1.008350, -0.255670, 0.426554, 0.174012, -0.210155, -0.068163, 2.407134, -0.601567, 0.799011, -0.624274, -0.469872, -0.280167, 0.011803, 0.864613, -0.501991, 0.980410, 0.137826, -1.481396, -2.424272, -0.223357, 0.942771, 0.688922, 0.865510, -1.111012, 0.624729, -0.025743, -1.629060, -0.758888, -2.265140, 0.975112, -2.076916, -0.129254, -0.356208, -0.606403, 1.246377, -1.888516, 0.899758, -0.849161, 0.364329, 1.925512, -0.950648, -0.616728, -0.874016, 1.383138, -0.172858, -0.918178, 1.024213, -0.941024, 0.766330, 0.153633, -1.626859, -0.475497, -0.643694, -0.905033, 0.940519, 1.136209, 0.211226, -0.467632, 0.768584, 0.706210, 1.397715, 0.138225, -0.431444, 1.122714, 0.571397, 0.548292, -0.631882, 1.414571, -0.135924, -1.275109, -0.940283, 1.720902, 0.349364, 0.680290, 0.095300, -0.323898, -0.007615, 1.202715, -0.284686, 1.662228, 0.701834, 0.034678, 1.381668, 1.859965, 0.966662, 1.430236, -0.150380, -0.372605, 0.098700, 0.696459, -0.309120, 0.459758, -0.275880, 0.799164, -0.224122, -0.528460, 1.048741, 0.905117, 0.480607, -0.296526, 0.945736, 0.133489, 0.089401, 1.380204, 1.754053, 0.779173, 1.216589, -1.024632, 0.759024, 0.537437, -1.139913, 0.696660, 0.308960, 3.609614, 0.339608, 1.885982, 0.023916, -0.875844, -1.432505, -0.408879, 0.584979, -0.618855, 1.262627, 2.090262, -1.082905, 1.685835, -0.536519, 0.173338, 1.443709, -2.353907, -1.209625, 0.035264, 0.724880, -0.802651, -0.310640, -0.851194, 0.611488, -0.269466, 0.182953, 0.029499, -1.014550, 0.994472, 1.221726, -0.131445, 0.280344, -0.855399, -0.543700, 0.270336, -0.346383, -0.531537, 0.300804, -0.090422, -1.123561, 0.287737, 0.707782, -1.353820, -1.284211, 0.480772, -1.396575, -1.554634, -0.084988, -0.186334, 2.129409, 0.530384, -0.133940, 3.329255, 0.457656, 0.867170, 0.499770, -1.001991, 1.411815, 0.040660, 0.676519, -0.624028, 0.904351, -1.411417, -0.472960, -0.996108, 2.300970, -0.662128, 1.222117, 0.269884, 0.390922, -1.267248, -1.749175, -1.508577, 1.856439, 0.123758, 0.155336, -0.293283, -0.183849, -1.440819, 1.447976, 0.524395, 0.506728, 0.757555, -0.786207, -0.849897, -1.340120, 0.481862, 1.816820, -1.376189, 0.641864, -1.924750, -2.417068, -0.160125, -0.193410, -0.381317, 0.927559, -2.568306, 1.271271, 1.303896, -2.166029, -1.530379, 0.829018, 1.732181, -0.142883, -2.048300, 0.065327, 0.763748, -1.820923, 0.940883, 0.860248, 0.229715, -0.482862, -1.746277, 1.577981, -0.148202, 0.488000, 0.667652, -0.643817, -0.639880, 0.475490, -0.112918, 0.024775, -0.303965, 0.769395, 2.331867, 1.243592, 1.776780, 1.552388, 0.815864, 0.582191, -0.822834, -1.167023, -0.017253, -0.817653, 0.886605, 1.262202, -0.163658, 1.243207, -1.652786, 0.328303, -0.799172, -0.683606, -0.429759, -0.663217, 1.450431, 0.051583, -0.195661, -0.419989, -1.419475, -0.879870, -0.730321, 0.290857, -0.046591, -0.568303, -0.166330, 2.531542, 1.964246, 0.228536, -1.092517, 0.103806, 0.250279, 0.015149, -2.444742, -0.257351, 1.175701, 0.213322, -0.241328, -1.163861, 0.221895, 1.118525, 0.805948, -0.594000, 0.242908, 2.210176, -0.552144, 0.942479, 0.553428, -1.980603, -1.221319, -1.055179, -0.439258, -0.533544, -1.869555, 1.269748, -0.761043, 0.446409, 0.411258, -0.522056, -0.788410, -1.651978, -0.697587, -0.290002, 0.255671, 1.480034, -0.405975, -0.133830, 0.677668, 0.207794, 0.705147, -0.086225, -0.452590, 0.082180, -0.046804, 1.277458, 1.057401, -0.070093, -0.595076, -2.132848, -0.703874, 0.188869, -0.392086, -0.881015, -1.165322, 0.410799, 0.471603, -0.211359, 0.070827, 0.900068, -0.444908, -1.120263, 0.003885, 2.025558, -0.908057, -0.839589, -0.755224, -0.843029, -0.568644, -0.908302, 2.828378, -0.611708, -0.665658, 0.153252, -0.034665, -0.134379, 0.770814, 2.250486, -2.436569, -0.962193, 0.319847, 0.984329, -0.923787, 0.168609, 0.847455, -0.477922, -0.283222, 1.247782, 3.877625, 0.061579, -0.597473, 0.968885, -0.724715, 2.344604, -1.180566, 1.619984, -0.016636, 1.101751, -0.591842, -1.365216, 0.003815, 1.326410, 2.052107, -1.039814, 1.038797, 1.231920, -0.644768, 1.469848, 1.424112, -0.161596, 0.181252, -0.753282, 0.211047, 1.295373, 0.198816, -0.233923, 0.998324, 0.175984, 0.024981, 0.063775, 0.806074, 0.343550, -0.334650, 0.562876, -0.468298, -0.207810, -0.874198, 0.866068, -1.239539, 0.690880, -0.212895, 0.125039, -1.686516, 0.653755, -0.386915, 1.461090, -0.691420, -1.523585, -2.568363, -0.716705, -1.886883, -0.381368, -1.872987, -0.382293, 0.415671, 1.000871, 0.636103, 0.150059, -0.234357, -0.351909, 0.730472, 1.440648, 0.353006, -0.448621, 0.898384, 0.390281, 0.584547, -0.217881, -2.378435, 1.155621, 0.800089, -1.396390, 1.286503, 0.127026, -0.257437, 0.639106, 0.143371, -0.455290, 0.187221, -0.766412, 0.533768, -0.344767, -2.099163, 1.662149, 1.249898, -0.461237, 1.105386, 1.017086, 0.128956, -1.242296, 0.388200, 0.036844, 0.059973, -0.360936, -0.232911, -0.751454, 1.359506, 1.272376, -0.691905, 0.024678, -0.614514, 0.576087, -0.285341, -0.712411, -0.866115, 0.219493, -0.667458, 0.297395, -3.397004, 0.779929, 1.371903, 0.710868, -0.948317, 0.485220, 1.393659, 1.578432, -0.396895, 0.623320, 0.804159, -1.946680, -0.118661, 0.296309, 0.770289, -2.094488, 1.354425, 0.846930, -1.323099, -0.255901, -1.112033, 0.881309, -1.045812, 0.231874, -0.437478, 0.227008, -1.548594, -1.383024, -0.498416, -1.314851, 0.645995, -0.184971, 0.301225, 1.426172, 0.333262, 0.369996, 0.477147, 0.428016, 0.393985, 1.584549, 0.594897, 0.411753, -1.484976, -0.800685, -0.022960, -1.020552, 0.152559, 1.489777, 0.871866, -0.360478, 0.780749, -2.045890, -0.555319}, + { 0.397902, -0.625628, 1.479387, 0.301508, -1.111580, -0.268341, 1.573557, -1.145249, 0.637864, -0.847365, -1.795448, -0.289333, 2.414314, 2.162613, -0.261415, -0.168199, -0.860304, -0.991795, 0.179852, 1.245093, 0.258291, 0.231043, -0.574224, 0.139197, -0.903825, -0.520385, -0.118809, 0.431198, 1.264804, 1.203976, 0.549401, 1.199434, 1.241233, 0.605376, 0.092087, 0.728034, 1.285359, -0.073010, 1.558317, -1.491558, 2.070826, -0.169041, -1.353781, -0.556507, -0.999211, -0.393171, -1.357439, 0.152901, -0.328406, 1.229994, 2.347155, -0.053017, -0.556455, -1.093065, 0.905515, -1.634576, 0.465455, 0.062382, 0.586577, -2.428869, 0.016895, 1.041459, 0.429108, 0.670191, 2.021802, -0.049661, -1.619991, 1.651106, -2.601614, 0.360174, -0.349763, 0.554840, 0.059825, 1.796347, 1.150188, 0.183160, 0.287071, -0.216400, -1.179182, 0.324511, -1.091342, 0.666005, -0.125617, 0.632509, -0.415586, 1.254706, -0.365042, -0.154315, 0.423750, -0.687698, -1.095811, -0.437080, 1.195237, -0.502768, -0.297017, 0.573047, 0.815506, 0.016211, 0.259915, -1.174870, 0.321185, -0.024461, 0.243258, -0.192603, 0.887272, 0.931584, 0.300058, -0.183879, 0.309701, -1.828334, 1.380724, -0.252967, -0.237349, -0.540729, 1.670534, -0.247425, -0.370222, 0.745058, 0.600605, 0.432842, -0.201970, -1.583855, 0.418849, -0.815864, -0.276003, -0.676250, -0.072936, -0.449164, 0.862817, 0.008487, 0.436551, -1.249150, -0.591659, -0.642105, 0.880850, 0.705326, -0.351558, -0.556165, -0.456567, -0.022146, -0.093462, 0.526523, -0.326691, 0.169439, -0.592688, 0.561000, 0.833284, 1.402720, 0.393110, 0.745189, 1.109875, -0.616299, 0.511503, -0.056702, -1.623536, 0.796917, 0.068542, 0.545954, 0.538066, 0.452050, 0.264712, 0.808458, 2.316365, -1.251816, -1.470128, -0.167181, 1.863362, 0.841509, -1.188357, 0.468992, -0.282439, -1.707706, 1.307675, -0.694134, -1.559336, 0.717897, 0.678974, -1.435963, 1.034485, -0.794434, -0.239942, -0.346986, 0.384528, 1.326524, 0.380102, -0.750890, -0.725756, 0.451464, 0.517938, 1.445675, -1.848911, -1.723534, 0.815476, -1.215246, 1.510624, 1.192425, 0.384347, -1.130144, 1.961066, -0.123552, -0.553472, -1.452633, 0.953591, 0.118772, -0.825222, -0.124089, -1.406725, -0.544679, 0.209230, -0.235874, 1.234162, -0.351002, 0.842394, -1.055806, 2.030265, -0.759735, 0.451925, 0.313142, 1.805153, 0.635674, -0.551841, -0.805381, 0.559676, -0.219827, 0.383242, 0.369866, 1.258649, 1.352083, 1.289509, -1.196115, 0.313936, 0.463391, -0.751866, 0.510596, 1.487680, -0.457503, -0.194005, -2.266080, 2.071722, -1.287911, -1.649169, 0.007173, -1.511061, -0.379841, 1.008682, -1.318822, -1.464255, -1.016002, -0.015871, -0.106886, -2.637326, -0.680773, 1.569122, -0.899328, 0.055442, -1.043027, -0.179923, -1.411653, 1.401585, -0.008668, -1.485639, -0.512759, -1.109846, -0.341646, -2.357267, -0.267082, 0.327114, -0.538263, -1.974607, 0.465478, 0.536107, 0.140605, 0.580848, 0.775572, 0.273671, -0.195684, 0.351589, -0.291344, 0.789389, 0.355494, 1.991824, 0.941108, 1.291807, 0.497956, 0.058046, 0.891124, -1.631686, 0.064557, 1.664873, 0.779738, 1.495963, 0.230727, 0.622008, -0.937111, -0.797877, 0.378265, 1.028295, 1.104523, 0.206274, -1.272290, 0.163572, 1.252883, -0.280044, -0.326013, -1.691937, 0.353829, 0.373003, 1.611550, 1.869360, 0.743680, 0.312009, -1.045734, 0.114571, -0.721438, 0.059467, 1.173317, -0.832717, -1.434169, 0.212966, 0.152695, -0.675706, 0.239844, 1.110258, -1.027962, -2.223228, -0.339359, -0.187397, 1.297618, 0.605033, 0.692649, 0.747547, -0.467109, -0.273467, -0.180523, -1.032680, 0.069647, 0.786971, -1.344939, -0.014145, -0.399295, 0.567165, -0.577537, 1.722423, 1.418422, -1.055373, 0.218069, 0.149612, -0.097183, -0.675311, 1.160755, 0.006216, -1.015604, -1.597331, 0.247162, 1.644854, 1.297949, -0.972633, -0.454446, 1.034320, 0.746576, 0.074242, 0.498527, 0.993786, -0.900211, -0.510987, -0.492017, -0.434712, -0.128737, -0.939523, 0.401896, 1.181159, 0.718623, -2.541697, 0.211067, 0.934952, 0.243785, 0.239564, 0.245031, -1.016884, 1.873756, 0.346441, -0.965325, -1.046962, 0.028684, 1.109325, -3.236459, -1.249434, -0.215591, -0.346796, 0.815893, -0.380468, -1.168015, 0.968293, 0.846781, -1.554854, 0.660721, -0.196492, -2.529359, 1.104557, 1.068576, -0.912981, 0.647836, -0.673273, 0.202953, -0.746167, 1.391816, -0.367632, -0.423983, -1.096837, -1.213978, -1.650027, -2.154068, 1.085110, -0.065280, 1.095219, 2.160916, 1.133895, 0.605502, -0.037332, -0.914821, 0.155807, -0.375078, -1.039768, -1.761924, -0.659202, 0.487244, 1.168084, 2.082662, -1.359603, -2.239086, -0.780609, -0.186767, 0.145168, -0.324051, -1.124557, -0.609289, 0.918961, 1.341877, -1.145339, -1.604142, -0.692339, 0.595833, 0.622823, 0.266690, 1.505500, 0.768237, -1.063251, -0.101952, -0.944630, 0.564766, 1.827564, 0.734241, 0.442886, 0.156192, -1.060690, 1.027479, 0.600775, -0.647523, -1.642485, 1.056724, 1.224363, 0.306832, -0.474383, -0.625286, -0.881909, 1.572986, -0.575539, 1.312308, -0.621236, -1.218176, -0.914801, 1.097045, -0.570638, 0.546480, 0.230379, -0.742362, 1.354333, 1.278417, -0.165027, -0.072332, 1.098148, -1.113943, -1.402935, 0.880472, -0.323580, -0.377257, -0.211428, 0.600710, -0.267630, 0.655203, -0.625052, -0.231555, 0.426684, -0.339672, 0.645270, 1.746541, -0.159183, 0.438685, 0.209977, 0.219198, 0.312064, -1.490843, 0.051519, 0.965100, -1.210808, -0.688722, -0.824444, -1.447609, 0.836103, -0.080510, 1.336200, 0.320610, 0.861792, 0.221703, 1.906374, 0.981361, 0.573299, 0.621737, 1.256313, -0.980522, -0.324407, -0.799707, -0.527238, -0.749697, -0.518749, 1.385509, 0.296353, -1.193576, 0.898063, -0.815179, 2.012119, -1.822363, 1.315985, -0.943272, -0.308327, -3.180191, 0.030982, 0.033757, -0.227730, -0.557081, 0.087957, -0.158858, 0.732622, -0.730323, 0.839778, 1.263403, 0.201684, 0.478520, 1.391217, 0.429208, -1.926970, 0.444913, -0.253590, 0.783124, 0.149794, 0.228818, -0.156759, 1.565686, 1.128065, -0.385326, -0.238820, 0.142572, 1.207330, -0.350904, 0.803233, 0.726274, 0.145972, 0.846257, -0.568462, -1.007236, -0.350368, -0.414480, 0.167306, -1.078522, -0.011083, -1.325884, -0.261677, -0.063001, 0.064699, -0.046340, 1.090827, 1.610452, -0.078146, 0.657580, -0.887938, 1.698157, 0.475013, -0.753172, 0.047510, 0.128340, -0.185470, 2.308815, -0.768362, -0.298944, 1.490169, -0.163181, -0.141706, 0.280293, 0.347666, -0.930147, 1.692237, 0.784575, 0.441540, -1.364817, -1.592082, -1.005267, -0.236132, 0.264326, 1.400481, -0.864173, -0.164374, -0.648073, -0.103964, -0.633422, -0.091832, -0.845128, 0.610313, -0.793220, 0.114684, 1.331711, 0.052275, -0.044252, -1.277283, 0.715250, 0.744954, 0.078848, 1.025515, -0.550467, -1.851244, 0.814695, 1.429012, -0.517363, -0.282072, -0.338155, -0.759759, -2.167563, -0.289156, 0.276747, -1.281504, 0.384948, -0.137668, -0.639828, -0.655429, -1.868230, -0.525978, -3.318033, 2.028107, -0.198462, -1.628217, 0.368521, -0.398997, -0.659896, 0.262710, 1.866975, -0.359355, -0.916458, 0.260492, -0.022290, 1.329419, 0.519441, -1.003110, 0.224461, 0.000708, -0.870572, -2.013021, 0.455899, 0.659418, -1.408089, 0.546824, -1.196154, 0.630183, 0.722417, 1.381391, -1.120544, 0.510466, -0.426731, 0.652140, 0.013611, 1.616731, -0.352046, -0.053897, -1.832929, -0.639912, -0.337219, 1.866480, -0.072241, -0.122027, -0.446886, -0.460639, 1.260563, 0.343270, 1.659025, 1.953304, -0.862370, -1.102291, 0.107293, -0.312064, 0.875453, -1.615332, 2.395746, 0.663640, 0.776950, 0.651915, 2.238382, -0.882837, 0.425103, 0.336348, -1.195239, 0.308997, 1.112996, -1.095769, 1.224501, 1.003981, 0.666561, -0.263300, 0.839102, 0.479109, 1.101422, 0.079921, -0.431181, 0.424569, 0.896718, -0.375499, 1.210316, 0.209991, 0.081365, -0.633965, 0.338000, 0.482959, -0.223752, 0.161142, -1.421300, 0.360435, -0.562725, -2.255239, -0.187742, -0.692581, 0.084831, -0.142436, 0.268714, 0.314078, -0.250118, 0.294570, -0.593531, 1.635043, 1.924079, 0.133923, 1.648445, 0.814732, -0.957051, 0.501103, 2.133228, 0.882361, -0.754572, 0.017249, -0.774283, -1.937786, 1.727056, -1.526170, 0.107468, -0.090990, -1.664206, 1.386554, 0.571319, 1.309265, -0.824381, 0.397706, 0.795643, 1.035703, 0.796255, -1.111539, -0.559384, 0.201687, 0.727894, -0.186225, -2.856054, -0.432620, 0.120702, -0.061352, 0.181169, -0.406681, -0.604765, -0.279922, 0.138639, 0.640739, -0.931177, -2.112040, 0.144120, -0.170148, 0.253386, 0.817774, 1.755317, 0.291607, 0.292368, 1.083997, 0.492946, -1.142132, -0.730558, 0.722754, -1.114944, -0.483674, 1.237506, 0.589123, -0.164140, -0.439675, -1.082012, 0.319133, -0.949891, 0.267695, 0.540682, 1.892502, 0.915960, 0.235131, 0.145682, 0.635065, -0.621037, 0.931392, 0.943104, 0.587557, 0.919953, 1.221641, 0.649709, -0.429679, 1.143710, 0.704110, 0.681591, 1.645936, -0.870068, -0.687080, -0.352319, 1.442036, 0.765700, 0.705972, -0.571633, -0.896662, -1.346071, 0.038369, -0.900158, 0.409980, 0.902031, -1.160114, 1.162613, 1.227467, -1.194573, 1.493758, 0.524206, -1.435843, 0.991254, 0.618583, -0.203432, 0.497358, -0.351674, -0.111591, 0.574600, 1.328734, -0.627848, 0.237703, -1.620735, 0.691644, -1.829404, -0.129348, -1.778855, 1.013611, -0.871972, 0.192941, -1.170202, 0.133178, -0.624322, -0.941917, 0.435955, 0.646856, -0.821544, 1.230857, 1.977842, 1.696647, -0.808502, -1.292378, 0.215458, -0.755800, -1.842436, -0.533982, 0.555028, -1.717735, 1.782895, -0.193736, 0.643441, -1.200487, 1.401901, 0.647254, 0.315923, -0.929332, 1.017438, -0.159385, -0.163197, 1.073068, 2.494771, 0.220851, 1.212367, 0.829879, 0.553959, -1.125298, 0.219472, -0.344191, -0.274845, 0.391239, 0.724445, 0.644183, 1.339640, -2.402907, 1.424422, 0.775488, 0.855621, -0.316442, 0.652609, 0.151223, -0.509427, 0.357319, -0.002232, 0.002625, 1.787257, 0.093730, 0.422814, -0.181495, 0.122268, 0.462504, 0.489205, 0.006345, 1.657085, -1.052014, 0.805784, 0.272965, 0.009273, -1.206407, -0.603380, -0.271340, 0.279851, 2.060154, -0.659178, -0.263021, 1.438617, -1.114851, 0.978198, -0.629626, 0.092254, -0.079602, 0.729486, 0.246264, -1.330521, 0.595567, -0.194329, -0.488868, 1.261218, -0.629127, -0.003524, -0.930757, -0.971893, -0.977347, 0.169135, -0.029851, 0.663033, 1.331198, -0.166863, -1.413124, -0.611232, -1.325887, 0.719540, 0.366036, -0.843728, -0.039725, -0.901228, 0.970152, -1.932931, -1.336615, -1.450713, 0.322657, -0.086283, -1.490028, 1.429576, 2.014214, 0.587086, -0.209670, -0.497042, 0.075194, -1.305046, -1.103764, -0.053643, -0.914243, -0.507178, -0.258858, 0.478769, -1.026318, 0.581566, 0.970539, 1.057537, -1.220953, 1.115451, -2.018055, -0.094590, 0.612631, -1.119480, 0.057983, 0.790750, 0.857275, -0.775829, -0.723215, -0.788819, 0.092315, -1.208597, -0.332328, 0.073370, -0.875584, -1.259870, 1.376252, -0.110302, 0.198944, 0.665233, -1.004277, -2.495070, -0.501481, 0.209519, 2.160294, -0.392717, 0.893331, -0.116144, -1.601647, -0.912129, 0.406116, -0.382399, 0.390812, 0.264827, -2.756296, -1.413604, -1.233068, -0.261524, -0.032756, -0.897102, -1.347869, -1.052447, 0.367772, 0.471368, -0.708269, 1.138336, 0.204978, -0.945817, -0.120756, 0.416951, 1.527039, 0.576882, -0.031194, -1.029366, -0.711289, -1.178913, -0.275569, -0.415667, 0.516198, -0.492818, -0.908636, -0.602793, 0.423466, -2.831839, 0.025080, -0.837435, 0.097479, 0.794901, -0.707969, -1.296508, 0.197815, -0.607117, -0.407268, 2.144266, 1.297526, -0.401619, -0.123520, -1.749741, -0.093029, -0.482218, -0.513170, -0.077495, 1.339276, -1.923275, -0.366532, -0.088114, 1.714944, 0.464533, 2.008305, 1.797857, 0.119683, -1.920210, -0.889408, -0.002820, 0.769199, 0.995564, -0.545528, -1.115026, 0.079013, -0.012283, -1.519053, 0.988466, -0.007880, 1.955811, 1.229000, 0.012550, 0.068846, -0.084205, 0.551803, 0.973551, 0.095191, -1.047018, -1.178344, 0.619286, 0.680781, 1.104758, -0.856137, -0.658829, 0.503207, 0.435084, 1.420897, -0.997445, 1.915613, -0.765488, -1.150219, -0.588657, -0.021214, 1.272808, 0.778202, 0.970973, 0.446273, -0.687227, 0.532673, -0.962006, 1.416638, -0.120991, 1.212373, -0.848133, 1.363248, -1.024722, -0.540119, -0.063279, -0.554893, 0.825082, -1.861743, -0.279161, 0.759229, -1.919250, -0.389236, 0.225432, -0.155800, -0.644842, 1.005462, -0.331361, -1.276624, 0.421900, -0.934115, -1.028485, 0.188554, -0.060705, -1.971242, -1.104679, -0.461934, 1.194904, 1.355721, -0.498667, -0.087895, -0.341180, 2.152280, -1.156931, -1.297162, 0.159961, -0.371560, -1.660581, -1.718519, -1.173714, -0.388387, -0.710685, -0.665281, 0.534684, 0.922758, -1.603039, 0.722145, 0.713343, 0.295906, 0.004487, 1.232303, -0.725855, 1.200933, -0.365656, 0.709004, 1.516460, 1.978608, -0.862091, 3.220235, -0.287797, 1.246924, -0.955292, 1.563985, 0.389392, -1.152659, -0.386489, 1.415505, 0.819921, -0.490103, -0.640921, -1.649100, 0.036991, -1.168213, 0.180131, 0.030534, 0.343469, 1.730103, 1.306038, -1.120715, -0.023258, -1.067802, -0.230431, -0.638243, -0.275032, -0.195180, -0.498887, 1.328472, 0.250918, -0.403072, 0.221525, 0.154046, -0.355871, 0.005889, -0.071270, -0.213476, 0.235303, -2.103062, 2.674556, -0.930435, -0.195183, 0.656623, -0.324090, -0.195452, 0.479278, 0.719781, 2.332605, 0.577367, 0.472275, -1.442480, 0.500991, 0.473953, -0.122388, -1.187577, 0.397951, -0.641310, -0.121393, 2.176812, -0.327258, -0.606647, 2.223547, -1.237120, -0.992715, -0.159497, 0.455373, 0.156582, 3.120859, 2.264301, 0.031816, 0.113769, -1.799282, -0.510779, 0.020287, -0.573934, 1.441873, -1.582964, -1.314808, -0.905121, 1.751048, 0.211886, 0.279688, -0.031168, 0.807837, -0.179264, -0.558977, 1.561998, 0.061429, -0.648085, -0.011632, 0.901130, 0.539795, -0.062280, 1.037842, -0.069247, -1.358977, -0.727844, 1.373096, 0.268221, -0.502699, 1.203040, 0.291188, -0.304377, 0.260948, -0.728182, 2.210609, -0.499431, -0.069824, 1.122771, 1.425929, -0.205414, 0.013548, -0.195850, 0.313866, -1.243809, -0.439834, -0.637609, -0.428886, -0.933359, 0.263488, 1.076910, 1.798448, 1.718117, -0.691431, 1.140254, 1.306156, 0.264880, -0.426295, -0.483738, 0.147290, 0.135848, 2.367270, -0.874218, -0.389739, 0.222940, -0.602368, 0.550388, -0.423112, -2.834760, -0.251033, 0.491035, 0.743647, -0.811746, -1.483979, 0.403688, -0.964126, -0.188674, 0.413081, -1.378762, 1.791452, -0.800096, -1.594639, 0.624772, 1.007449, 0.952239, 0.375546, -2.358524, -0.239566, 1.040509, -0.578055, -0.157878, -1.377931, -3.109737, -1.884068, -1.361481, 2.111804, -0.822966, 0.512906, -0.462270, -0.117832, -0.761100, 1.473985, 0.373687, -0.016655, -0.115666, 0.389894, 0.210412, -1.374144, 0.536187, 0.610932, -1.142081, 0.103665, 1.171672, -0.466920, -0.565776, 1.228711, -0.592833, -0.230855, 0.479654, 0.407419, 0.053162, 0.203749, -0.949128, 0.899117, 0.950011, 1.560256, 0.155268, 1.120049, 0.977134, -0.386127, -0.947654, 0.744135, 0.709754, 0.399837, 1.146906, 0.157047, -1.215089, 0.555536, 0.924675, 0.847462, 1.943426, 0.415244, 1.114699, 1.344164, 0.988261, 0.051285, -1.045561, 0.714125, -0.268082, -2.060783, 0.927242, -0.984802, 0.685616, -0.263042, 0.018238, -1.561641, -1.298827, -1.418777, 0.895254, -0.466107, -0.096130, 1.201377, 1.365423, 1.279658, -0.265955, 0.066162, 0.274351, 1.176118, 0.053008, -0.422437, 1.462755, -3.015315, -1.492427, -2.527809, -0.010963, 1.307484, -0.851646, -0.589602, -0.004985, -0.441831, -0.298692, -2.216329, -0.187479, -0.547348, 1.658710, 1.555562, 0.308208, 0.473002, -0.749534, -0.787369, -0.514901, -0.920756, 1.053708, -0.569274, -0.059521, -0.700414, -0.625122, 0.601374, -0.012728, 0.250269, -1.275045, 0.364849, -0.171555, -0.423571, -0.985311, 0.591574, -0.557575, 1.327642, 1.316166, -0.978657, 0.375612, -0.875736, 0.190580, 2.040755, -0.013696, -0.223093, -0.495197, -0.383582, -0.728658, 1.316873, -0.013236, 1.326230, -0.239358, 0.028608, -0.312866, -1.183085, 0.066513, -0.795607, -0.631752, -0.790130, 1.754964, -0.535769, 0.351556, 0.436180, -1.531465, 0.104114, 0.548718, -1.822194, -0.585365, 0.782286, -0.702233, 0.305163, 0.045526, 2.147397, 0.167095, 1.054680, -1.318063, -0.082929, 0.044461, 1.798332, -0.401105, 0.254712, -0.490336, -0.922367, -1.598941, 0.176974, 0.792304, 0.190157, 0.836363, 0.632260, -1.421667, -0.166150, -0.705454, -0.117918, -0.114645, -0.494666, -1.964028, -1.483485, -0.805194, -1.124968, 0.752185, -0.445609, -0.539539, 1.082037, 0.374930, 0.157324, 0.057473, 0.996430, -0.901272, -0.010872, 0.349762, -0.008421, -0.625017, -0.035655, 0.043201, 1.032874, 0.296900, 0.806917, 0.511126, 0.097089, -0.824277, 0.981837, -0.869999, 0.522362, 0.696053, 1.657134, -0.153059, -1.430641, 0.881273, 0.229371, 0.115647, -0.928265, -0.179038, 2.032038, 1.416396, 0.847308, -0.606086, -1.861907, 0.252192, -1.369171, 1.981785, -1.321295, 1.073320, -0.921769, -0.445751, 0.269134, -0.611617, -0.365908, -0.236242, -0.098734, -0.806022, -0.215842, 0.620205, -1.132795, 0.961762, 0.208385, -0.242921, 1.075466, -0.974263, -0.572946, 0.386050, -0.865346, -0.021480, 0.992734, 2.288755, -0.545419, 0.575367, -1.288827, 0.574643, 1.096143, -2.253523, -0.203932, 0.463036, -0.921544, -0.731187, -0.520028, 1.360932, -1.799895, 0.486349, -0.886007, -1.858305, 0.403362, 1.408571, 1.119234, -0.216637, 1.955386, 1.244642, 1.186321, -0.833162, 0.761052, 1.714296, -0.421925, 1.328339, 0.165691, 0.057056, 0.212240, -0.725287, -0.448622, -0.707221, 0.739069, 1.175328, -0.030339, 0.391110, 0.324313, 1.234727, -0.611348, -0.135203, -0.217118, -0.575642, -0.481307, 1.614949, -0.743329, -0.776322, 0.907290, -0.557254, -0.626826, -0.460979, -0.029481, 0.218129, 1.062821, -1.269559, -1.773411, 0.439020, -1.968440, -1.873107, 1.116506, 1.341182, -0.472738, -0.563285, -0.115501, -0.028733, 0.684597, -0.404609, -1.548671, -2.754110, 0.192049, -0.262183, 1.545758, -1.166935, 0.317727, -0.813394, 0.093455, -0.594494, 2.243908, 0.862889, 0.494756, 0.329103, 1.242202, 0.092987, -0.065457, 1.130374, -0.005381, 1.127514, -0.491244, 1.041776, -0.343603, 0.471847, -0.850555, 0.944268, 1.606235, 1.358560, 0.207087, -0.551920, -0.391832, -0.278153, -1.024869, 0.929067, -0.903400, 1.154206, -0.290539, 0.465979, -0.949779, -1.229331, -0.324859, 1.852412, -1.528874, -1.374022, 0.659562, 0.148540, 1.298361, 0.355546, 0.898985, -0.787030, 0.885879, -0.180930, 1.003042, -2.142610, -0.752738, 1.027719, 1.933525, 0.583066, -0.725643, 0.062547, 0.224479, 0.484880, -0.500071, 1.590852, -0.012077, -1.138220, 2.307087, 0.058780, 1.109037, -0.340743, -0.375280, -1.026863, 0.261883, -2.873732, 2.599088, -0.026834, -0.090668, 0.096925, -0.106037, 0.429530, 0.274213, 0.287082, -0.322930, 0.637699, 1.133164, -1.005047, 0.562509, 0.107756, -1.314345, 1.550069, 1.746011, -0.023739, -1.145663, -0.572618, -0.091766, -0.073645, -0.867268, -0.086424, 1.240232, 1.290610, 0.792627, -0.917114, 0.207297, 1.519323, 0.543178, -0.904294, 0.029228, 1.491327, -0.708791, 0.584278, 0.394101, 0.170791, 1.665265, 0.679291, 1.128493, 0.518032, 0.090865, -0.205841, 0.175440, -0.304879, 1.213930, 0.133233, 0.307538, -0.343509, -0.476510, 0.720584, 0.086064, -0.123170, -1.508930, 1.664220, -0.909256, 0.581730, 0.326905, -0.628290, -0.865279, -0.269337, 0.431555, -0.912122, 1.115049, 0.462110, 0.109722, 0.488445, 1.570567, -0.777412, -0.337776, 0.012234, -1.319299, -0.999330, 0.789943, -0.802324, 0.132238, 0.701228, 1.549307, 0.330899, -0.354603, -1.188475, -0.066450, -1.725475, -0.011502, 1.729350, -1.740283, 1.989218, 1.483074, -0.302512, -1.929752, -0.073134, -0.519722, -0.812547, -0.894488, 0.209302, 0.286915, 1.759358, 1.188033, 0.277531, -0.786866, 1.675290, -0.795249, -0.987034, -0.498810, -0.327979, -0.772105, 1.690472, -1.095643, 1.099586, -1.285466, 1.745408, -0.007676, 1.599954, -0.126218, 1.800575, 1.307515, -2.675705, 1.107394, 1.138512, 0.655565, -0.690958, -0.628045, -1.093270, -0.327841, -0.569912, 0.407510, 1.936694, 0.420488, 1.439300, 0.732885, -0.644625, 0.328560, -0.024258, -0.400122, 0.028204, -0.074894, -0.121787, -1.384298, -0.068262, -1.236813, -0.372484, -1.394397, 0.340848, 0.994900, 1.286134, -0.078777, 0.227388, -1.856870, 1.666336, 0.920616, -0.861653, -1.058923, 0.398428, 0.227442, 1.014405, -0.959578, 1.027706, 0.443570, 0.195949, -0.031804, 0.742083, 0.647662, 1.159854, -0.768153, 0.425177, -2.734565, -2.635970, -0.776466, -0.339134, 1.609774, -0.053368, 0.189059, -0.369728, 0.546454, 0.197936, 0.552730, -0.326067, -0.353512, -0.998867, 2.202140, 0.526449, 0.008358, -0.163653, -0.701090, -0.970405, -1.159152, 1.578912, -1.053726, 0.644994, -0.351175, -1.224443, -1.880515, 0.584871, -1.526418, 0.667879, 1.722451, 2.405367, -0.089798, 0.896519, -0.932062, -0.746178, -0.066302, -0.121282, 0.723257, -1.147001, -0.705364, -0.148270, -0.727830, -0.435181, -1.857304, 1.025615, -0.247655, 0.170963, 0.630386, 2.019815, -0.051581, -2.396340, -1.489793, -1.139267, -0.356815, -1.507095, 0.357992, 0.120801, 2.656139, 2.205944, -0.633099, 1.421507, -0.737112, -0.389680, 0.595222, 0.423990, -0.410285, 0.764676, 1.641639, -1.932271, 1.527080, 0.348338, 0.358684, 1.234703, -0.963635, -1.372566, 0.561248, 0.380021, 0.468774, -0.642245, -1.804695, 0.931268, 0.505565, -0.293890, 0.824634, -1.447939, -1.487093, 0.644569, 1.273257, -0.388113, -0.490511, -0.311814, 0.525488, -0.322727, 0.746299, -0.013972, 0.951541, -0.878458, -1.195304, -1.266439, 0.754591, -0.563294, -0.032327, -1.933672, -0.025318, 0.461708, 0.515547, -0.509287, 0.523600, 2.074127, 0.314889, 0.026121, 2.087113, 1.417964, 0.676282, -0.906987, 0.359946, 0.443624, -1.704957, -0.801375, 1.197335, 0.134621, 0.939449, -0.451562, 0.022929, -0.238121, 0.312455, -0.523777, 0.055907, 1.107461, 0.648612, 0.296204, 0.663174, 0.371537, 0.206355, -0.883969, -0.480764, 0.263936, -0.648345, 0.665095, 1.004315, 2.189885, -1.445895, 0.482572, -0.896395, 0.307800, -1.529635, 0.637840, -2.313832, 1.417485, -1.458698, 0.272801, 0.887301, -2.055120, 0.223960, 0.641071, 1.009966, 0.290074, 0.794865, -0.868054, 0.146543, -0.843323, -0.051535, -1.574116, 0.805259, 1.050735, -0.025870, -0.498268, 1.040492, 0.544859, -0.197614, 0.067346, 1.526364, -1.696052, 0.333217, -0.842155, -1.109141, -0.688241, -0.184381, -0.519930, -0.514361, -0.645382, -0.427517, 1.360512, 0.453192, 0.348188, 0.114309, -1.191802, 0.190292, 1.212574, -2.157988, -0.571602, 0.052900, -0.474125, -0.350652, -1.390604, 1.297446, -0.266244, -0.172165, 0.261631, 1.477623, 1.605108, -0.551839, 2.929697, 1.124276, -1.001032, -0.176865, 0.655861, -0.406324, 2.124618, -2.635197, 1.687983, -3.004538, 0.432338, 0.469672, 0.820505, -1.239035, 1.071978, -0.382358, -1.359175, 2.171713, -0.742410, 0.621414, -0.114376, -0.025554, 0.894191, -1.923222, -0.996807, -0.231399, -0.009685, 0.832969, -1.151006, 0.282607, 0.241059, 0.191672, 1.095477, 2.968779, -0.611573, 0.547394, -0.938493, 0.693095, 1.201304, -0.671215, -1.791842, -2.898029, -1.615832, 0.331113, -0.301897, 0.178059, 0.561332, 0.587000, 0.929405, -0.661530, -2.917735, 0.902986, 0.390727, -0.605329, 0.618787, 0.938493, 0.864314, -0.104563, -0.324752, 0.921397, 0.418408, 2.499801, -0.443724, 0.369828, -0.657718, -0.717587, -0.851624, -0.102751, 1.974144, -0.353687, 0.129317, -0.014258, -1.786300, 1.231025, -2.190894, 1.353528, -0.539742, 0.366985, -0.491186, -0.749337, 0.468829, 0.726582, 0.901876, 1.689844, -0.015404, 1.291313, -0.652228, -1.617892, -0.407098, 0.811635, -0.100882, -0.505936, 0.064013, 0.190718, 0.741500, -0.509659, -0.736679, -1.423419, 0.480006, -0.536431, -0.921670, -2.029162, 0.199977, 0.695036, -1.274866, 0.921030, -0.326365, -0.755873, 0.159117, 1.810865, 1.353728, -1.020579, -0.990970, 0.066096, -2.151225, 0.651172, -0.150863, -0.340168, 0.980596, -2.188121, 0.543628, 0.557794, 0.245082, 0.781492, 0.607996, 0.828434, -0.962132, 0.024858, -0.379184, -0.733837, 0.834223, 0.386350, 0.224020, 0.471652, 0.734388, -2.240056, 0.658683, -0.123757, 1.223046, 0.117629, -0.108488, 1.669346, -0.994313, -0.033688, 0.518057, 1.067093, -1.768806, -0.011158, 1.266573, -0.811456, -0.505756, 0.506981, 0.880940, 0.972582, 0.212036, 0.167964, -0.502662, -1.862485, -0.901330, -1.061944, -0.674017, 1.530106, 1.535317, -0.003357, -0.629021, 1.311750, -0.362371, -1.117139, 0.733495, -0.825549, 0.699071, 0.262661, 0.557515, -0.340045, -0.271981, -0.245013, -0.378185, 0.455393, 1.183034, 0.757507, -0.236184, -0.683246, -0.636849, 0.020856, 1.240710, 0.248111, -0.684862, 0.221066, 1.521175, 0.544850, -0.596628, -1.598467, 0.875317, 1.252968, 0.861524, 0.462880, -0.044788, -0.473580, 0.748585, 0.657940, -1.803560, -0.453853, 0.906142, 1.871403, 0.001191, 0.332404, 1.610611, -0.259326, -1.566393, -0.853359, 2.262617, -0.480641, 0.716550, 0.126798, 1.165830, -0.076613, -2.341905, 0.671848, 0.108832, -0.016483, -0.613855, 0.102640, -0.847983, -0.008419, -0.666179, 0.085670, 0.512744, 1.182312, -0.373375, -0.121694, -1.064701, -0.171300, 0.009237, -0.442841, 0.219998, -0.033954, 0.345724, -0.578005, -0.512361, 1.049148, -0.909180, 2.146466, -1.547479, 0.508790, -1.448311, 0.957618, 0.170861, -0.497308, -0.406293, -1.400490, 0.742989, 0.522649, 1.331268, 0.270015, -0.844411, -1.163259, 0.991921, 1.429273, -0.734774, -1.062894, 0.750652, -0.873146, -0.340084, -0.121451, 0.688241, 1.159015, -0.255511, 0.604745, -1.202697, -0.677825, 1.992253, -1.045228, 0.532146, -1.159546, -0.924687, 1.259292, -0.273964, -0.948197, 0.641389, -1.272496, -0.463940, -0.002209, -0.058116, 1.046463, -0.291613, -1.898186, -0.650218, -1.426814, -0.125597, -0.182237, -0.010218, -0.160333, 0.866401, -0.827633, -0.397214, -1.539608, 1.606753, -1.648968, 0.064658, -1.670380, -0.818662, -0.802417, -0.007865, -1.395617, 1.410061, 0.065654, -0.389685, -0.394439, 1.194661, -1.361651, 2.210598, 0.876620, 1.191854, 0.431486, 0.190191, -0.659261, 0.870055, -0.951275, 0.901923, -0.675700, -0.043060, -0.800696, -0.437791, 1.352623, -1.093744, -0.318814, -0.544211, 0.774899, 0.767785, -0.403334, -0.060868, -1.618558, 0.093884, 1.317460, -0.051572, 0.335705, 1.947734, 0.095813, -0.504450, 0.322079, 1.038718, 0.642387, 0.597046, -0.312992, 0.580084, 1.042214, -1.409265, 0.664566, -1.119946, -0.834135, 0.352572, -0.916297, -0.079989, -0.363696, 0.366679, -1.521041, 0.285981, 0.403917, 1.516945, 1.553444, 0.018757, -0.829727, 0.221342, -0.322714, 0.610327, -0.340918, -0.338989, -1.050245, 1.755176, 1.039579, 2.109206, 2.012368, -0.466858, -0.888285, 2.066537, 1.778743, 0.637035, 0.119061, 0.612273, 0.257950, -0.530613, -0.403464, 0.646749, -0.025139, 0.199194, -0.344601, 0.355487, -2.023522, 0.377586, 0.302126, -0.450572, -0.405818, -1.151762, -1.440746, -0.663230, 0.106122, 0.155294, -0.863698, 1.015369, 0.837256, 0.830364, -0.812796, -0.356073, -0.241617, 0.148976, -0.040264, 1.562158, -1.232786, -1.710810, -0.574893, -0.275699, -0.160778, 0.547746, -0.423288, -0.102024, -0.989349, 0.504044, -0.379042, 0.709743, -1.407546, -1.218258, 0.266243, 0.057741, -0.218605, 0.081067, -0.322416, -0.344185, -2.073922, -0.351984, -1.641033, -1.584123, 0.029263, 1.124833, 1.777017, 0.229199, -0.848880, 1.048581, 0.882925, 0.875108, 0.355294, -0.908931, -0.591330, -0.162301, 0.579405, 0.428711, -0.264838, -0.179268, -0.798161, 1.090056, 1.308645, 2.271164, 0.951394, -0.566985, 0.003633, -1.534758, -0.513952, -0.526102, -0.748872, -1.113273, -0.076867, -1.795030, 1.480317, 0.597119, 0.481580, -0.769170, 0.069823, 1.365360, -0.314300, -0.564640, -0.162384, 0.143921, -0.440087, -1.629171, -0.338432, -1.095155, -1.335774, 0.315612, 2.658962, -3.545459, 0.366555, 0.458854, -0.585870, -0.163190, 1.094791, 1.027735, -0.851878, -0.584315, -0.272664, -0.468000, 1.679178, 0.065369, 1.178473, 0.114016, -0.917252, 0.614730, 1.247345, -0.852123, 1.724295, 0.423845, 0.228764, 0.309849, -1.689854, 1.387500, -0.346404, 0.342243, 0.516343, -0.562844, -1.173812, -1.635971, 0.987711, 1.778350, -1.589562, -0.149500, 0.746067, 1.285770, 0.265498, 0.332839, -1.344064, 0.405747, 0.876179, 0.643592, 0.679825, -1.996853, 0.840229, -0.308427, -1.354843, 0.994137, -0.167879, 1.821004, -0.200148, -0.468580, -3.071407, 1.842265, -0.014271, 1.796380, 1.966879, -0.754317, 0.279862, 1.390972, -0.677753, 2.123153, 0.091538, 1.185210, -0.428905, 0.180440, 0.193139, -0.250162, 0.068827, 0.439453, -0.375087, 0.815952, -1.461931, -1.484343, 0.155991, -0.343934, -0.674934, -0.757111, -0.890701, 0.127912, -0.881186, 1.854031, 1.150320, 0.185665, 0.343833, 0.000591, -1.842694, -1.330324, -0.747392, 1.833260, 1.602708, -1.778736, 2.294672, -0.920821, 0.427335, 0.054717, -1.703291, -0.594606, -1.190024, 0.317248, -2.270661, 0.043405, 0.012945, 1.078138, 1.351644, -0.469334, -1.056596, -0.917601, -0.792745, -1.065556, 0.598509, -0.717723, -0.641035, -1.417798, 0.204366, 0.736533, -0.632759, 1.024566, 0.433833, -0.871351, 0.173831, 0.546875, -0.559636, -1.199808, 0.541229, -0.404993, 1.070378, -1.871046, -0.237491, -0.922447, 1.178701, 0.562200, 0.072855, -0.022191, -0.445932, 0.729217, 1.187591, -0.103484, -1.848249, 0.154510, 1.689602, 2.042302, 1.754312, -0.558963, -0.998207, 0.705210, -1.184328, 1.749835, -0.709990, 1.140654, -0.180331, 0.627150, -0.371165, -0.665236, 1.296182, -1.229416, -0.169815, 0.848362, -0.216884, 1.686927, 0.533186, -0.235374, 0.728526, -0.703474, -0.968710, -1.259308, -1.604750, 1.034491, 1.644409, 0.447905, -0.848401, 0.051421, -0.166443, -1.747666, 2.819800, 1.718565, -0.861314, -1.148654, -1.167886, 1.067937, 0.128287, -0.088797, 0.756557, -0.699210, -0.897109, 0.536279, -0.301925, -0.367722, 1.285569, -0.377353, -0.721170, -0.750814, 1.483239, -0.930610, -0.570279, -0.145981, -1.246912, 0.418122, 0.059250, -1.554485, -0.266390, 1.091305, 0.446368, -1.524833, -0.943701, -1.070007, 0.494341, -0.974884, -0.598197, 0.280411, 1.012184, 1.705875, -0.459727, 1.430849, 0.262635, 0.383192, 0.101176, -0.457649, -0.455794, 0.666279, -0.855365, -0.587374, 0.804247, -1.136523, 0.031035, 0.299125, -0.293908, -1.700541, -0.767805, 0.310221, 0.573647, 0.060023, 1.220455, -0.486062, 0.806113, -2.107617, 0.726239, 0.083309, 1.725120, 0.844222, -0.056153, 1.323175, -2.387690, -1.390260, 0.531682, -0.266384, 0.138585, 0.918953, -0.017883, 0.681578, -0.736954, -0.686526, -0.926517, -1.220135, 0.039758, 0.775645, -0.644901, 0.833274, 1.274415, -1.721664, -0.888778, -0.231867, 0.235912, -0.777624, 0.732187, -1.136244, 1.161911, -0.122186, 1.219785, 0.002935, 0.262351, -0.947834, -0.443407, 0.448637, -0.182164, -0.624199, 1.178681, -0.301519, -0.927613, 0.358561, 0.723395, 1.284822, 0.020915, -0.921297, 1.415148, -0.028887, 1.260009, -0.616478, -0.850232, -0.606855, 0.319328, -0.777257, 0.763812, -0.773171, -0.074065, 1.024682, -0.021542, 0.924040, 0.147887, -2.540340, 0.787905, -2.202209, 2.183229, 0.078587, 0.676481, 1.319769, -1.229369, 1.169221, 0.019099, 0.467532, 0.403137, -1.267605, 0.220141, 0.015981, -0.474303, 0.385978, 0.514755, -1.218006, 0.085768, 0.764566, 0.157970, 0.928002, -0.649639, 0.777782, 1.382949, -0.020832, 1.595039, -3.048661, 0.944558, -0.514045, 1.025427, 1.469392, -0.109880, -1.603322, 0.156127, 0.336927, 2.740097, 0.789550, -0.202094, 2.100307, -0.176833, -0.348746, -0.780790, -0.890921, -0.099375, -0.395321, 0.433843, 0.598821, -0.830188, 0.946844, -0.577158, 0.877350, -0.419625, 0.407801, -0.383112, -0.738779, -1.457638, -0.874808, -0.083943, -0.386337, -0.615102, -0.110938, 2.399594, 0.138209, 0.805105, 1.154359, 0.646286, 1.418561, 1.281643, -0.001071, -1.380921, 2.108154, 0.416818, 0.040940, 0.231086, 0.752446, 0.874355, -1.580034, 0.761316, 0.928182, -0.698029, -1.780215, 2.482449, 0.833725, 0.777575, 0.342206, 0.069072, -0.993652, -0.401144, 0.152109, -0.571896, 0.217344, -2.014789, -1.370766, 0.271145, -0.958365, 0.304366, 1.863107, -0.705185, 1.667054, -0.869407, 0.360849, 0.798730, 1.170564, 0.873055, -0.885686, -0.104314, -0.152820, -1.332623, -0.674574, 0.009500, -1.467141, 0.426071, -0.766816, 1.775136, 0.910604, -0.261173, -0.525031, -1.178618, -0.757797, -0.018717, -0.431502, -0.283731, 0.610062, -0.865533, 0.356493, 1.860568, -1.418370, 1.200678, -0.682103, -1.123933, -0.912822, 0.266417, 0.761528, -0.299052, 0.390178, 0.374262, -0.690621, 0.664783, -0.585657, 0.080661, -0.481833, 0.413695, -0.491090, 2.034048, -2.579438, 1.133765, 1.114850, -0.349869, -0.783117, 0.287694, -0.214938, -0.403892, 0.183720, 0.508172, -0.300976, 0.263131, -1.238047, -1.103012, 1.237580, 0.475203, 0.051850, 1.736512, 0.950980, -0.957073, 0.462025, 1.186640, -0.442101, 0.075753, -0.847180, 1.593524, 1.952048, 0.303155, -0.637542, 1.611378, -1.155672, 0.805596, 0.236460, 1.268958, 0.826291, -0.521109, -0.339635, -0.841301, 1.659363, 0.465622, 0.511912, 0.384712}, + { 1.488284, 1.330846, -0.371249, -0.706700, -0.128159, 0.316970, -0.222012, 1.147926, 1.074494, -0.637062, 0.645820, 0.424690, 0.354252, 2.004198, 0.211832, -1.055273, 0.540119, -0.940722, 0.629497, 0.425959, -0.821599, -0.958282, 1.062192, -0.716362, 1.112680, -0.666876, 0.418390, -0.185154, 0.596687, 0.479556, -0.831553, -0.227498, 1.544578, 1.156180, 0.989153, -0.042450, -1.442718, -0.587043, 1.858011, -0.178001, -0.960765, 0.052231, -1.499229, 0.351036, -2.049671, 0.647956, 1.755111, 1.333532, 0.819052, 0.249685, 0.106214, 0.545834, -0.180527, 1.371128, 0.973645, -0.220022, -0.330115, 0.453680, -0.305798, 0.008971, -0.969774, 1.082547, -1.058692, -0.475529, -0.055859, 0.894912, -0.235552, 0.659295, -0.283773, 0.148231, -0.590003, 0.998369, 2.745591, 0.092729, -0.763964, 1.401282, 0.380047, -2.029149, 0.699010, -0.610621, -0.151801, -2.760549, -0.478110, 1.721781, 0.153553, 1.151082, 0.731791, 0.377939, 0.415729, 0.709719, -0.155469, 1.220647, 0.660904, -0.862420, 1.319342, 0.504005, -0.329366, -1.166463, -1.182404, -1.994112, 1.179447, -1.509758, -2.109114, -0.367236, 1.618536, -1.059429, -2.462149, 0.118205, 1.528405, -0.578237, -0.425628, 0.907529, 0.531125, 2.254234, 2.074360, -0.633480, 1.329949, 1.125934, 1.944340, 0.341322, 0.215088, -0.755004, -0.723544, 0.288280, -1.372267, 1.247373, 1.176502, -0.911718, 0.379741, 0.893702, 1.406911, -0.179979, -1.021812, 0.220684, 0.636548, 0.521364, 0.768487, -0.491810, 0.014957, 0.005432, -0.014787, 2.777054, -0.022956, 1.207085, -0.462742, 1.101856, -0.864417, -0.640600, -1.250903, -0.120797, -1.380943, 0.916870, 0.468529, 0.363097, 0.179666, -0.112367, -2.044940, -1.696922, -0.419227, -0.605321, 0.130448, -1.158217, 0.888279, 0.152084, -0.595941, -0.244556, -1.835541, 0.053526, 0.850667, 0.757873, 0.816197, 0.986167, 0.211762, -0.263500, -0.554244, 0.790700, 2.296112, 0.559414, 1.450232, -0.529178, 1.441271, -0.744235, -0.615776, -0.491298, 0.222937, -0.858225, 1.559832, 0.507470, -1.184948, -0.989638, 1.792391, -0.683495, 1.609814, 0.022853, -0.665807, -0.065448, -0.708545, 0.096816, -1.596361, -0.302028, -1.020043, -0.013623, -0.597671, -0.670315, 1.102742, 0.677511, 0.155962, -0.033316, -0.280646, 0.497923, -1.033335, 0.373051, 0.560646, -0.618726, -0.285628, 0.463295, 0.652641, -0.223976, 0.444801, -0.732769, 0.345047, -0.301863, 1.172142, -1.427613, 1.106507, 2.281866, 0.049895, 0.686708, -2.283705, -2.065030, -2.146643, -0.488307, -0.960979, 0.277318, 0.358627, 1.233822, -0.138668, 0.161311, 0.244642, -2.000421, -1.477591, -0.524930, -0.178885, -0.350734, 1.376032, -1.524976, -0.495371, 2.303456, -0.155995, 0.069263, 2.487510, 2.691426, 0.183146, 0.051350, 1.506999, -0.327698, 1.740944, -0.903227, -1.490389, -0.838341, 0.670030, 0.799334, -1.150403, 0.577928, -0.210943, -0.078011, 1.724208, 1.110941, -0.428077, 1.687086, -0.219585, 0.595265, 0.264062, -0.279742, -1.581671, -0.606109, -1.112272, 0.335287, 0.743072, -1.347311, -0.658623, -0.673496, -1.277729, -0.653073, 0.547916, -0.621104, -0.930651, 2.807364, -0.070892, -0.581133, 0.529676, 0.611070, -0.197015, -0.953424, 1.066589, -0.065104, -0.125835, -1.346007, 1.649068, 0.540757, 0.159164, -0.579491, -1.737465, 1.283069, 0.597093, 0.260604, -0.431374, 0.602131, -0.854430, -0.617854, -0.942026, -0.186626, 0.073261, -0.998074, 0.304726, 0.718916, -0.033522, 2.173613, -1.447706, 0.866108, -0.486824, -1.275792, 0.421254, -0.739139, 0.637680, -1.348572, -0.146789, -0.521491, -0.259717, -0.368042, -1.691728, 0.304291, 0.185070, 0.825061, -0.141284, -0.402403, -0.712123, 0.753967, -0.462155, -0.453783, -1.315966, -0.193813, 0.069560, -0.578219, -0.709787, -0.301844, 0.488566, -0.768008, -0.552401, -1.061857, 0.094105, -0.828002, -1.140688, 0.326263, -0.222679, 0.554585, 0.229233, -1.356815, 0.592072, -0.047683, 1.034730, -1.066653, -0.696417, -0.248349, -0.282827, -0.615503, -0.099163, 0.932915, -0.116394, 2.404182, -1.306188, -1.291007, -2.419976, -1.102906, 1.350070, 1.665870, 0.944724, -1.271717, -1.256515, 1.633516, -0.187134, 0.426036, -1.911604, -0.115048, 0.369735, 0.065712, -0.197229, -0.043363, 0.015436, 0.161740, -0.503515, 1.104762, 0.151166, -0.057403, -0.328602, -0.266407, 0.390169, -1.375549, -0.072628, -1.422879, -0.026788, 1.352814, -0.791253, -0.254403, 0.081444, -0.356329, -0.723353, 2.302583, 0.241803, 0.296036, 1.984392, 0.796008, 0.618749, 1.420725, 0.032126, -0.743630, -0.246097, 0.536454, 0.152000, -1.087217, 2.426174, 0.015906, 0.275415, 2.234602, -0.376081, -0.686624, -0.866532, 1.773266, 2.695015, -0.232329, -0.301617, -0.211112, -1.271264, 0.238822, -0.493766, -2.439716, 1.040945, -0.188803, 0.765661, -1.683193, -0.464403, 0.715227, 0.616358, 0.134745, -1.047286, -0.936940, -1.233237, 1.875633, -1.380045, -0.280724, 1.117247, -0.319603, 1.157329, -0.435374, 0.652553, -2.026715, -0.792754, 1.281221, 0.145530, 0.056371, 0.985981, 0.111999, 1.095907, 0.458310, 0.500194, 0.106973, 1.977520, 1.103638, -0.571408, -0.175926, -0.236528, -0.537450, 1.429650, -1.968732, 0.810628, -0.306914, 0.163512, -0.379949, -0.051880, 1.420851, -0.850017, -0.326942, 0.047257, 1.310404, -0.608043, -0.081874, 2.195554, 0.908760, -1.108635, 0.813125, -1.255296, -1.443611, 0.624197, 0.478212, -0.797432, 2.253088, -0.759320, 1.115183, -0.029667, -0.777897, 0.791987, -0.531776, -0.228371, 0.186422, 1.055128, -0.407792, -1.172000, -0.585378, -0.098115, -1.067093, 0.530884, 0.135526, 2.428370, 1.499491, 1.278821, -0.270112, 0.899253, 1.185719, -1.276506, -0.868477, -0.847041, -0.864010, 0.919765, 0.915769, 0.553889, -0.553419, -0.026144, -1.073272, -3.356031, -0.161676, 1.541598, 0.112893, -0.255835, -0.364423, -0.717646, 0.458640, -1.558169, -1.007135, 1.120559, 0.547225, -0.814403, 1.819648, -0.653812, -1.207867, 0.505722, 1.640130, 0.463470, 0.101603, 1.078754, -0.575381, -0.191720, -0.882805, 0.547714, 0.714566, 0.447557, -1.193154, -0.512650, 0.713168, -1.260003, -1.499872, 0.085738, -0.085289, -0.686612, -2.104815, -0.673908, 0.668608, -1.421870, 1.266327, 0.462386, 0.101756, 0.602933, -0.709497, 2.599922, 0.259568, -0.892499, 0.134986, -1.129762, -1.250512, -0.614213, -0.708689, 0.596438, 0.774918, 1.041890, 0.545257, -1.597241, 0.922957, -0.791834, 1.010132, -1.028797, -2.165823, -0.780366, -0.424773, -0.988356, 0.102508, -0.089050, 1.080387, -1.048331, 1.371180, -0.404081, 1.847094, 1.459541, -0.158845, -0.832628, 0.545844, 0.139352, 1.477193, -0.539361, 0.455904, -0.241009, 1.411772, -1.478743, 0.134595, -0.298439, 2.133660, -1.245356, 0.778192, 1.548274, -0.160574, 1.636036, -1.721051, -0.529509, -0.965503, 1.400001, 0.764491, 0.581056, 0.642891, 1.139768, -0.364778, -0.854533, 0.758367, 1.223488, 0.150088, 0.835369, 1.495998, 0.999082, 0.241026, -1.091635, -0.670136, 0.437402, -0.979698, -1.066279, 0.159888, 0.022121, -0.811617, 0.351727, -0.686538, 1.669690, 0.766040, 1.542966, 0.758283, -0.377314, 0.017700, 0.314333, -0.677052, 0.927898, -3.142581, -0.825384, -0.611094, -1.687978, -0.068944, -0.305770, -0.230347, -1.308581, -0.550707, -0.309003, 0.049275, 0.865440, -0.398886, -0.394157, 0.232014, 0.623440, -1.052180, -0.577274, 0.579890, 0.474635, -0.198626, -1.058141, 0.429730, 0.730248, 1.189838, 0.420886, 0.538718, -0.219842, 1.551149, -1.145710, 2.733196, 0.496272, -0.560489, -0.666892, 1.060740, -0.031477, 0.902162, -1.023220, 1.082066, -0.229264, 2.568453, -0.971169, -0.253888, -1.264791, -0.595885, 0.110009, -0.248175, -0.050601, 1.165455, -0.804406, 0.338100, -0.174584, -1.392026, -1.276228, -0.192036, -0.643985, 0.713858, 0.040750, 1.350916, -1.697004, 0.536661, 0.926828, -1.830485, 0.403813, -0.983561, 0.996290, 0.604868, -1.261306, -0.916467, 0.896992, 0.136766, -1.049637, 0.244871, -0.155011, 1.429436, -1.207711, 0.238552, -1.366565, -0.107531, -0.551965, -0.037524, 0.468254, 1.041927, -0.409519, 0.904918, -1.365643, 1.612919, 0.796001, 0.666793, 1.900450, -0.020564, 0.499324, -0.131561, -2.954202, -1.208204, 1.424279, -0.418988, 0.449754, 0.121596, 1.311723, -0.479784, 1.438307, -0.381211, 0.979173, 0.491460, 0.682049, -2.475152, 0.255303, -0.950559, -0.503183, -0.132934, -0.556823, 2.605558, 0.197343, -1.789038, 0.634120, 0.033399, -0.758693, 0.168686, 0.628178, 0.804242, 0.573494, -0.356650, 1.053283, 0.699791, -1.106253, 1.898773, 0.675651, -0.335385, 0.107749, 0.769568, 1.026481, 0.135212, -1.660031, -1.205220, -0.512192, 1.340907, 1.036265, 0.530965, 0.360020, 1.340083, -1.315547, 1.738053, -0.837033, -0.547311, 0.541164, -0.146726, -0.925608, 0.200214, -0.466100, -0.476550, 1.026023, -0.984113, -1.113356, 0.008523, 1.304382, -1.468478, 1.928269, 0.865763, 0.773392, 2.220466, 1.946600, -0.523083, 1.065258, 0.603018, 0.692011, -0.159269, -0.311391, 1.111904, -0.730017, 1.756240, 0.002390, 0.791365, -0.476773, 0.549721, -0.577801, 1.122136, -1.082046, -0.309574, 0.441826, 0.193037, 0.747204, -2.036809, -1.237285, 1.479961, -0.617290, -0.352972, 1.160338, -0.723375, -0.105574, -1.067699, -0.945405, 0.548705, 0.595376, -1.946760, -0.317018, -0.348913, 1.065026, -0.756858, 0.807093, 1.046876, 0.696074, 1.662886, -0.473702, -0.591742, -0.236191, 0.976646, 0.429816, -1.031514, 0.524972, 0.918933, -0.458290, -0.936736, -0.827425, -1.491004, 0.869376, -0.086894, 0.185643, -0.582129, -0.767080, -0.079056, 1.784763, 1.005401, -0.008594, 0.859383, 1.217634, -0.450083, 1.052127, 0.572890, 1.032524, -1.150038, 0.187569, -0.048435, -2.569745, 1.196347, -0.938403, -0.506398, -0.177292, 0.000409, -1.179353, -0.362433, 1.669865, 0.174737, 0.676922, -0.543225, -0.870051, 1.096279, -2.339968, -0.490009, -1.951602, -1.238253, -0.137318, 1.015338, -0.520223, 0.909413, 3.127967, 0.937844, 1.377377, 1.234076, 0.835402, 0.209011, 1.641898, -0.217048, 0.399757, -0.075871, -0.305867, 0.949344, -1.648407, -1.668205, -0.494839, -0.485240, 2.044459, 0.506419, 2.242176, -0.194122, 0.293306, 0.485428, 0.072464, -0.042825, 1.169043, 0.160831, 1.362719, 0.625990, 1.199849, 0.492835, -0.783237, 0.618880, 0.973774, -0.221643, 1.327531, 0.125349, -1.420248, 0.813011, 0.904695, 0.780501, 0.391708, 1.472889, -0.073489, 0.964364, -1.995790, 0.057931, -0.274363, -0.902359, 0.301172, -0.931182, 0.171532, 0.309000, 1.311345, -0.579130, 1.441224, -1.680203, -2.368783, -1.400710, -0.025896, 0.715253, -0.672132, 0.687174, -0.357674, 0.056097, 0.056811, -1.199571, -0.152809, 1.431808, 1.030336, -0.036026, -1.724797, -0.628399, -0.222463, -1.151916, -0.384978, -0.642916, 0.132118, 1.395137, -1.119293, -1.101133, 0.706364, 0.253212, -1.222695, 0.996735, 0.784525, 1.668740, -1.218691, 0.992114, -0.115216, -0.937214, -1.412776, 1.347441, -0.037668, -1.921636, -0.305959, 1.232431, 0.002944, -0.523545, -0.454856, 1.635937, 0.730323, -1.217698, 0.826352, -0.822073, -0.674951, -0.358323, 0.233837, -1.852168, 1.088099, -0.012312, 1.330288, -0.242631, 0.522852, 1.057018, 1.630010, -0.782408, -0.872526, 0.638366, -0.530404, -0.066758, -0.925336, 1.376610, -1.461964, -0.784054, 0.087376, 1.797643, 1.571559, 0.060684, -1.409933, -0.481521, -0.883510, 1.256697, 0.283646, 0.754958, 0.304292, 1.687608, -0.301821, 1.153102, -0.873134, -0.535639, 0.169179, -1.655128, 0.280211, -0.449471, 0.456959, 0.321646, 1.154166, 0.505825, -1.371755, -0.358783, 0.245975, -1.493932, -0.178529, 0.524361, 1.506509, -0.388366, 0.780570, -2.596276, 1.722413, 1.004146, 0.946492, 1.416111, 0.338870, 1.023988, -1.408675, 1.476565, 0.279479, -1.404357, 0.306637, 0.786669, -0.897072, -0.159471, -1.132122, 0.230545, 0.087727, 0.382816, 1.102120, 0.736083, 2.330244, -0.103059, 0.186625, 0.007963, -0.428528, -0.659560, 0.738534, -0.709689, -0.545237, -1.738128, 0.410468, 0.126478, -0.019710, -1.130002, -1.951612, -2.220564, -1.076943, 1.062743, -0.067791, 0.531550, 0.916087, 0.227392, 0.906629, -0.742700, -1.377671, -1.022687, -0.072012, 0.751025, -0.338539, -0.119812, -0.437046, 0.148316, -0.137764, -0.415380, -1.126817, 0.659250, -0.837731, -0.045528, 0.821888, 1.401157, -0.953551, -1.213206, -0.585941, -0.527802, -1.804248, -1.716529, -1.782075, 0.933644, 0.004375, 1.022649, -0.220852, 0.937938, 0.617581, 0.918651, -2.484693, 0.924044, 1.042355, 0.963076, -0.548202, -1.268399, -0.899765, 0.221500, 0.280601, 0.286190, -0.688907, -0.400227, 0.644011, 0.780068, 0.036821, -0.239860, -0.254828, -0.243585, -0.459240, -0.125286, -1.511965, 0.913040, -0.305719, -0.119078, -1.224240, -0.273243, 0.172479, -1.175873, 0.928754, 0.262145, -0.265970, -0.956604, -0.630759, -0.738529, -1.028837, -1.724607, 1.196571, 0.103293, -0.612860, -0.781090, -2.612334, -0.788824, -2.389518, -1.660816, 0.842600, 1.156197, -0.580387, -0.316903, -0.735455, 1.184250, 1.024445, -1.837848, -0.493217, 0.128950, 0.708576, 0.972220, 1.083859, 0.196282, -1.049510, 0.074637, 0.583425, 0.833917, -1.146355, -0.201176, -0.346809, -1.844215, -0.366876, 1.406471, -1.441287, 0.333678, 0.003082, 0.026881, 1.983215, 1.142308, 0.665265, -1.108432, 0.481229, -0.221803, -1.833930, -1.582469, -1.138715, -0.441722, -0.148985, 0.148732, 1.642432, -0.300734, 0.282558, -0.747683, -0.402012, 0.931267, 0.219382, -0.644117, -0.723114, 0.296524, 0.697054, -1.056046, 0.078200, -1.636521, 0.712419, -1.018593, 0.010076, -0.697246, -0.066990, 0.796035, 0.110276, 0.652754, -0.154726, -0.162200, -0.322558, 0.340374, -2.566428, 0.295037, 0.304982, 1.214574, 0.209637, 0.486313, -0.504054, -0.677925, 0.143669, 0.689036, -0.540443, 0.268655, 0.466998, -0.482852, 0.654541, 0.381986, 0.578551, 0.594768, 0.394276, 0.312636, 1.981718, 1.517838, 0.355472, -2.131008, 0.458938, -0.572606, 1.143567, -0.058979, -0.995286, 0.465170, 0.137173, -0.654033, 0.689504, -1.992940, 0.697420, 0.756488, 1.490498, 1.350837, 0.664821, -1.585667, -1.174331, -0.263818, 1.714457, -1.010432, -0.831422, 1.467236, -0.324932, -1.428705, 1.213975, 0.378956, 0.288632, -1.508446, -0.055944, 0.518558, -0.645023, -1.360887, -0.175679, -0.504137, 0.480394, 0.290714, 1.614133, -1.286636, 1.538815, 0.799626, 0.294155, 1.419054, 1.357316, -0.356723, -0.244771, -0.395521, -0.449170, 1.044874, 0.722255, 0.182184, 0.410220, -3.000255, -1.016072, -1.383911, 0.851802, 0.279882, -0.184141, 0.262979, -0.437383, 2.845142, 0.146591, -0.439881, -1.697477, -0.361629, 1.120585, -1.339821, 0.623931, -0.615554, -0.199097, -0.266119, -0.331204, -0.900152, 1.104358, -0.902361, -0.401398, -0.587631, 1.405495, -1.087982, -0.271600, -0.799984, 1.158685, 0.645724, 1.738455, -1.021376, 0.053310, 0.661913, -0.633552, -0.045705, 0.651643, 1.954124, 1.911685, 1.154008, 2.321908, 0.030398, 1.049996, -0.698988, -1.367071, 0.953407, -0.462519, -1.975505, -1.416580, 0.201807, -0.213668, 0.223636, 2.096636, 0.357450, -0.727993, 1.268084, -0.696158, 0.710462, -1.209256, 0.131700, 0.296752, 0.797077, -0.410326, 0.846653, -0.285849, -0.588933, -1.018749, 1.218904, 1.283582, -0.193679, 2.028374, 1.978193, 1.917187, 1.050118, -0.751537, -0.863507, -1.192480, 1.009862, -0.117858, -1.115536, -0.924902, 1.819066, 0.276183, 1.929383, -0.268754, 0.294618, 1.190741, 1.281027, 2.162514, 0.024303, -0.539244, -0.310893, -1.321513, 1.032661, -0.075000, -1.592564, -0.696441, -0.456998, 0.681673, 0.136708, -0.361567, 1.450003, -0.630085, -1.392638, 0.275226, 0.001654, -1.386347, 0.224028, -0.157376, -0.031336, -0.180088, 0.693046, 1.490725, -0.585927, -0.951144, 0.773254, -1.421763, -1.884691, 0.093277, -0.447519, -0.365441, -1.077223, 1.071944, -1.661200, -0.542165, 0.076132, -0.616706, -1.147359, 1.405593, 0.025611, 0.187353, -0.306242, 0.205320, 2.144422, 0.523295, 0.770460, 0.150019, 1.873023, 0.822097, 0.990920, -1.418163, -2.009984, 0.145998, 1.592334, -0.036410, -0.261122, 1.221181, -0.158753, 0.134746, 0.888824, 0.527906, 1.965857, 0.111956, 0.311089, 1.566770, -2.111988, -2.078265, -0.089090, 0.974328, -0.979057, 0.247900, 0.193321, -0.149852, -0.539429, -0.488432, 2.595137, 0.735603, 0.550240, 0.495577, 0.782581, 0.882110, -0.059411, -0.178529, 0.349388, 0.877343, -1.257591, -0.846639, -0.615598, -0.523491, -0.407948, 0.279256, 2.512961, -0.388211, 1.141331, 0.034108, 0.098152, 0.513007, -0.841768, 1.322772, 0.743284, 0.319963, 1.076746, 0.576681, -1.344721, 0.071352, -1.349805, -0.396475, -1.086461, -0.394789, -0.836839, -0.121572, 0.472023, -0.978058, -0.760028, -0.858627, 0.573856, 0.470543, 1.852199, -0.106368, -1.570268, 0.857212, 1.552631, -0.186692, 0.568721, 0.687121, -0.281725, -0.622135, -0.764662, -0.673018, 0.420033, -0.212581, -0.473103, 0.717630, 0.707134, -0.451706, 1.003608, -2.253626, 0.005614, 0.058079, -0.293738, -0.493356, -0.195697, 0.099743, -0.419783, 0.050703, 0.984371, 1.025241, -0.266747, 0.876469, 1.203320, -0.513361, 0.803487, -0.232633, -0.105008, -1.891854, -0.046849, -0.522255, -1.386277, -0.316371, -0.830241, -2.125927, 1.709374, 1.306397, -0.170569, -0.006688, 0.064006, 1.116223, -0.978921, 0.070519, -0.933255, -1.048840, -0.775217, -0.269373, 1.076584, -2.839118, 0.967448, -1.164397, -0.645358, -1.193206, 1.623817, -1.092674, -0.147733, -0.014692, 0.694421, -1.149737, -0.535466, -0.412479, 0.441411, 2.685483, 0.445619, -0.250452, 0.948475, -1.584082, -0.816577, -1.569408, 0.685850, -0.692384, -1.564641, -1.476774, -0.016792, 1.584186, 0.235145, 0.098632, 1.735743, -1.580701, 1.738353, -0.648206, -1.353362, -0.290095, 0.552723, 0.269646, 0.842972, -0.462167, 0.496398, 0.734800, 0.328454, 0.783290, 1.256495, 0.148680, -1.308815, -0.028547, -0.450856, 1.224862, 0.325284, 1.991896, -0.228183, -0.677130, -0.687055, 0.019820, 0.657589, 2.874516, -1.224136, 0.240652, -0.563945, 1.604034, 0.082963, -0.586073, -1.640440, -2.542560, 1.301595, -0.698694, 0.729568, 0.082747, 0.251437, -1.202776, 1.765493, -0.131354, 1.462832, -0.597498, 0.430165, -1.414980, -0.292800, 0.375897, 0.896199, 0.912182, -0.258908, 0.143616, 1.096125, -2.102231, -0.729292, -0.765799, 2.075603, 0.628189, -1.451436, 0.067840, -0.112114, 0.681505, 0.349802, -0.921099, -0.318616, 0.786550, 0.315460, -1.797591, -0.843515, -0.642482, 0.976631, 0.450332, 1.398967, 0.618452, 0.250414, 0.719940, -0.244915, -0.406924, 0.779709, 0.914129, 1.782713, -0.241857, 1.244293, 0.161255, 1.813240, -0.437375, 0.396075, -0.396237, 0.019526, 0.685613, 0.720663, 0.681514, -0.522867, 1.339329, -0.973044, -0.053615, 0.601661, 0.649169, 1.639585, -0.945094, 0.925711, 2.531612, 0.169050, -0.456826, 3.090086, 0.869017, 0.140844, -2.067863, 1.651612, 1.254644, -0.168833, 0.436296, -1.093356, -0.054427, 1.552346, 0.226470, -1.466866, 0.078009, -0.143113, -1.294501, 0.021757, 1.377752, 1.569163, 1.924825, -0.578889, 2.057211, -0.818758, 0.658124, 0.066462, 1.243857, 1.284173, 0.030025, -0.512484, -0.146436, -1.505791, -1.033772, 3.054168, 0.520075, 1.248599, 1.188072, 0.726008, -0.272591, 0.169020, 0.161560, -1.108373, -1.100665, -0.012494, 0.951902, 0.867229, -0.750969, 0.588076, 0.384465, -0.028365, -1.023031, 0.871488, 0.028327, -0.028589, -0.050674, 0.367524, -0.098203, -0.885738, -1.181657, -0.223716, 0.413920, 0.673128, 0.561127, 0.815016, 0.112883, 1.175732, 0.376292, 1.126188, -0.249249, -0.200340, -0.374868, -0.197085, -1.119844, -0.813047, -0.154468, 0.212282, 0.194484, -1.075461, -1.610859, -0.970718, -2.410832, 1.173997, -1.071299, 1.446524, -0.924301, -0.233726, 1.741949, -0.575764, -1.756002, -1.324981, 0.389942, 0.941365, -0.715684, -0.181362, 0.521817, -0.043801, -0.970294, 0.376156, 0.236400, -0.119913, -0.843144, -1.081599, 1.436162, 0.340705, 0.848092, -0.325986, 0.913431, 0.400545, 1.090820, 0.112997, 1.353017, -0.497164, -0.385706, 0.901321, 1.132113, 1.085912, 1.217223, -0.370479, -0.647054, -0.449021, -0.275032, -1.333082, -1.039811, -0.643885, -1.764832, -0.336022, 0.349230, 0.817908, 0.158657, 0.033433, -1.894126, -0.972246, 1.381618, 0.211040, 1.057400, 0.786518, -0.517952, -0.378894, -0.516177, 0.665983, -1.047732, 0.143553, 0.949213, -0.585571, 0.093786, -0.696313, 0.000263, 0.301229, 0.888330, 0.656826, 0.675407, 0.533683, 0.789365, -1.331845, 1.190212, 2.466915, 0.502653, -0.043609, 0.318833, -0.411267, -1.119379, -1.296076, 0.318336, -0.105445, 0.943960, -0.438659, 2.029359, 1.194033, 2.397624, -0.272764, -0.593874, 0.085238, -0.397318, 0.879002, -0.235356, 0.199130, -1.762171, -1.267374, -2.115594, 0.309859, 1.680724, -0.311985, 0.115423, 1.598252, -0.621192, -0.429569, 0.480112, -1.510997, -0.730976, -0.587454, 0.977642, 1.199566, 0.022748, -0.610670, -1.199552, 0.984375, 0.744561, -0.146462, 2.142167, 0.186884, 2.555793, 0.285310, 1.336335, -0.602524, 0.513103, 1.145807, 1.048998, -2.346402, -0.950671, -1.244990, -0.032651, 0.967067, -0.754866, 0.027856, 0.003557, 0.367778, -2.143100, -0.710300, 0.551008, 0.289913, 0.245276, -0.440656, -1.922634, -0.853893, -0.874107, -0.118240, -0.757246, 0.761083, -0.735576, 0.670994, -0.809934, -1.196244, -1.321556, 1.669255, -1.681196, -0.839216, 0.193274, -1.142784, 0.140686, -1.413664, 0.804883, -0.772448, -0.821475, -0.363677, -2.017625, 0.157790, -0.316774, 0.218654, 0.992248, 0.606362, -0.720250, -0.874989, -0.141459, -0.556316, -0.186641, -0.677301, 0.661459, 0.847446, 0.145008, -0.695669, 0.597427, 0.386860, -0.952867, 0.897209, -1.176122, -0.790860, -1.097884, 1.682380, 1.370546, 0.029454, 1.532160, -1.235394, -0.092455, 0.720440, 0.793758, -1.533913, 0.120092, -0.029052, -0.715149, 0.002552, -0.914272, 0.410341, -0.337411, -1.363726, -0.005143, 0.395627, 1.409340, 1.251054, 1.992716, -1.944287, -1.073071, 0.092784, 0.804512, 0.264699, -0.008387, 2.199105, 0.111418, 0.904875, -1.035348, 0.465309, 1.119095, 1.096066, 1.005608, 0.101267, 0.041222, -1.183136, -0.829782, 0.448185, -2.592413, -1.989517, -0.546123, -0.547309, -0.774205, 1.112622, 0.498929, 0.896646, 0.260779, 0.272912, 0.856440, 2.406652, 0.118697, 1.218411, -0.961615, -0.038193, -1.373661, 0.160141, -0.034777, 0.618437, -0.176387, 0.674802, 1.197345, 0.549512, -0.389763, 3.242957, 0.240743, -0.403716, -1.079500, 0.176163, 0.532608, 0.886413, 0.717452, 1.109493, 0.457495, 0.011626, 0.258112, -0.129299, -0.707949, -0.266624, -1.152578, 1.140921, -1.588591, 1.619598, 0.938488, 0.684948, 0.201134, -1.696252, -0.279966, 1.279078, -0.841567, 0.288412, -0.332668, -0.278764, -0.082852, 0.021088, -0.194490, 0.507523, 1.009448, 0.283424, 0.226359, 0.380778, -1.469228, -0.190177, 0.572555, -0.143093, -1.114942, 0.736657, 0.326716, -2.571711, -0.756262, 0.149976, 0.964245, -0.890577, 0.591208, -1.549383, -0.498702, -0.935282, 1.628013, -1.175710, -1.058410, 0.039155, -0.683987, -0.511258, 1.120494, 0.298570, -0.266713, 1.726309, -0.048958, 0.541969, 0.943814, 0.180268, -0.233538, 0.347573, -0.836910, -0.026836, -0.610206, 0.036771, 0.157989, 0.421839, 0.308115, 0.418927, -0.888428, -0.496527, -0.037603, 0.352714, -0.474819, -0.228321, -0.552397, -0.806203, 0.631726, 1.306783, -0.383702, -0.480690, 0.639913, 0.858603, 1.047957, -1.364327, -2.217143, 0.958797, -1.368611, -0.021844, -0.569761, 0.037923, 0.130362, 1.001156, -1.234113, 0.493915, -2.019410, 1.193282, -0.886468, -0.392464, -0.070643, 0.153324, -0.301343, 1.520576, 0.858591, -0.649230, -1.310754, 2.537157, -0.089176, -0.944329, 0.182854, 0.281304, -0.844244, -0.716282, 0.795671, -1.478288, 0.324106, -0.672504, 0.051027, 0.300746, -0.460639, -1.660100, 1.389212, -2.210620, -1.400407, -0.751135, -0.940383, -1.521511, 1.844960, 0.345781, -0.967317, 0.505203, 0.618788, -0.002003, 0.138010, -0.255116, 0.798767, 1.647137, -0.784609, 0.283863, 0.056476, -0.722476, -1.238047, -0.841301, -0.811834, -1.814050, -0.534769, -0.538293, -0.191700, -0.594344, -0.733604, 0.401247, 0.669845, -1.773934, 1.296115, 1.439526, -0.125644, 0.404896, 0.689892, -1.152393, -1.053661, 1.689313, -0.432506, -0.753156, 1.757841, -0.552784, 1.958883, -0.418141, -0.341218, -0.089376, 1.126180, 0.960688, -1.626286, 0.666151, 0.803854, 0.658230, 0.648884, 0.506386, 0.736218, 1.242383, 1.970587, -0.993150, 0.438809, -1.717881, 0.656458, 1.504722, 0.673889, -0.200130, 1.872706, 0.204884, 1.363484, -0.669302, 1.344402, 0.674449, 0.475534, 0.005058, -0.575226, -0.568939, 0.202703, -1.052909, 1.141856, -0.473977, 0.216896, -0.161027, 0.605053, 1.569724, -0.103360, -0.074409, 0.252179, 0.833811, 0.815950, 0.017972, 0.643572, -0.292335, 1.200602, -0.084307, -0.452480, -0.251017, -1.712140, -0.715587, -0.834005, -1.027298, 0.033543, 0.914575, 1.646344, -0.087466, -1.964764, 0.818996, 1.939010, 0.424073, -1.153130, 0.360071, -0.587884, -0.213562, 1.389223, 0.246476, 0.432637, -1.185148, 0.995115, -0.989822, -0.728197, -0.630096, 0.385907, 0.954208, 1.333976, -1.562676, -0.778937, -1.735264, -1.381968, 0.996094, -0.738619, 0.115355, 0.026151, -0.293289, -0.354300, 0.168105, 0.637134, -0.069387, 1.549347, 0.040454, 0.862688, -1.240979, 0.349673, 2.779640, 0.908441, 0.101166, 1.049196, -0.785965, -0.687487, 0.890825, -0.364503, -0.487526, 0.238375, -1.614056, 0.233577, 0.267264, -0.110156, -0.494307, 0.572376, 0.582555, -0.905543, -1.755509, 0.067406, 0.686067, 0.289316, -1.491770, -0.803695, 0.265339, -0.507130, -1.429903, 0.279912, -0.764638, 1.661420, 1.162663, -0.280001, -1.308852, -0.846166, -0.475877, -0.933327, 0.328839, -0.016647, -1.395481, -0.105477, 0.499046, 0.147631, 0.733547, 1.146172, 1.027361, -0.340597, 0.708083, 0.346893, 1.528922, 1.390378, -1.819575, -0.230632, -0.314697, 1.083750, 1.946883, -1.210362, 0.366487, 0.665678, -0.352627, 1.558465, -0.229474, 0.503225, 0.019167, 3.242755, 0.574955, -0.355573, -0.053191, -2.154994, 0.206575, 0.861852, -1.419634, -0.552694, 0.517845, -0.135301, 1.437637, 0.913657, 0.280486, -0.676520, 0.400523, 1.494019, 0.984620, 1.644297, 0.268362, -0.599839, -0.241930, 0.203737, 0.491043, -0.266231, -0.275390, -0.671783, 0.767136, 1.268408, -0.251382, 0.980491, 0.078228, 0.366554, 1.175425, 1.568815, 0.310388, 0.314181, 1.130540, 0.487624, -1.144888, -3.380844, -1.043620, -0.820011, 0.153013, 0.454051, -1.182901, -0.178062, -1.181108, -0.635059, 0.946700, -1.446254, -0.031076, -0.300637, -0.181046, 1.180774, 0.154682, -1.572271, 1.178777, -0.796525, -1.189114, -0.007001, -0.040280, -0.240104, -0.245266, -1.071460, 0.308473, -2.266394, 0.043437, 1.375577, 0.798433, 0.341380, -0.120841, -0.496608, -0.297151, 0.041067, -0.987962, 0.022550, 0.489986, 0.383518, 0.333539, -0.001987, 0.398696, 0.360187, 0.154755, 2.650976, 1.479147, -1.020100, 0.854494, -0.440166, -0.194081, -1.165633, 0.369923, -0.424517, 0.214297, -0.545256, 1.368541, 0.410258, -1.021837, 1.856039, 2.441777, 1.179499, -0.653368, 0.529592, -0.552644, 0.805524, 0.340090, -0.381750, -0.144317, 1.836230, -0.181049, -1.159586, 0.045645, -0.801131, 0.606322, 1.325371, 0.888792, -0.827293, -1.304720, -0.702549, 1.249350, 0.401596, -0.157956, -0.599861, 1.234717, 0.020488, 2.028800, 1.048237, 0.134028, -0.172207, -2.937941, 1.001057, -0.359892, -0.455440, -1.223244, -2.194023, -1.342547, -0.265743, 1.160109, -0.098688, 0.453349, -0.913686, -0.271713, 0.555072, -1.297949, -1.083474, 1.236000, -0.172323, 0.674310, 0.540799, -1.787918, 0.543626, -0.288342, 0.157674, -1.797346, -0.192660, 1.014563, -0.007597, -0.077965, -2.058984, 0.175817, 0.707205, -0.990297, 2.186791, -0.756116, 0.996088, -0.852121, -0.110567, 2.546988, 0.156603, 0.487385, -1.340434, -0.565527, -0.309328, 1.232183, 0.823847, 0.324301, 0.466348, 0.620110, -0.620754, 2.191857, 0.504046, -0.744251, -0.260180, -1.575016, 1.771523, 0.205309, -0.194525, -0.096586, -0.942818, 1.050860, 0.575279, 0.229296, -0.727124, 1.207045, -0.644677, -0.792784, -0.568934, -1.634567, 0.557398, -0.583529, 0.614534, 1.441784, -0.448880, -0.004559, 0.771907, 1.202060, 0.156492, -0.428785, -0.419874, 1.009354, 0.411101, -0.789610, 0.728675, 0.076445, 1.729917, -0.667892, -0.033922, 0.246355, -0.384200, 0.368263, -0.331218, 0.001495, 0.708451, -0.665455, 0.299230, 0.343364, 1.108582, -0.730301, 1.090257, -1.189878, -0.924349, 0.343003, -0.671145, -0.118470, -0.048970, 0.125404, 1.820392, 0.352833, 1.111137, 0.006925, 0.540156, -0.011053, 1.515314, -0.094588, -0.997014, 0.899312, 1.359382, -0.187213, -0.180415, -0.059935, 1.363873, -0.519303, 0.188480, 1.296355, -0.175602, 0.905922, 0.023252, 0.720165, 0.684998, 0.246176, 0.361854, -0.099949, -0.567281, -0.223802, 0.098973, -0.842298, -0.322244, 0.921387, -1.103452, 1.674435, 1.013094, 0.070245, 0.081696, 0.716882, -0.401381, 0.253771, 1.404174, -0.893527, 0.713274, 0.221884, -1.063284, -0.813323, -0.709072, 1.543819, -0.145402, -0.066152, 0.628459, 0.276183, -0.885614, -0.426576, 1.599129, -0.493024, -0.331524, -0.926891, 1.815066, -1.227715, 0.456414, 0.518535, -1.376400, -0.903839, -0.704526, 0.093076, 0.540306, -0.382712, -0.372558, 1.277203, -0.457774, 0.935312, -0.887574, 1.951207, 1.094039, 1.331676, 0.222851, 1.598154, 0.456927, -0.506445, -1.402299, 1.585901, -1.733246, 0.087495, 0.371473, -0.556816, 0.310369, -0.095819, 0.050419, 1.483976, 0.174552, -1.467672, -0.063072, 0.211793, -0.572932, -1.430596, 0.213994, 1.648021, -0.980538, -1.415404, 0.344014, -0.066481, 0.086318, -2.288229, 0.855315, 0.400970, 0.551140, 1.020015, -2.006954, 1.430738, 0.096001, -0.604573, -0.674902, -0.790129, 0.531947, 0.457554, 0.607967, -0.367446, 0.824679, 0.576684, -1.161550, 0.523099, 0.394006, -0.624623, 0.010591, 0.218063, -1.603351, 0.486728, 0.511626, -0.961079, 0.407014, 0.092450, -0.760182, 0.141634, 0.149371, -0.517802, -0.502396, -2.773117, -0.725021, -0.425992, -1.439202, 0.851006, -0.624807, -1.671395, 0.153665, -1.609802, 0.146165, 0.802434, -0.455154, 0.236187, 0.256586, -0.470374, -0.697853, 0.535391, -0.594195, 0.423005, -1.000982, -0.011862, 2.612301, -0.608736, 0.036247, 0.273991, -0.452419, 0.664167, 1.196594, -1.953139, 0.426724, -0.596585, 1.571780, -0.226418, 0.558401, -1.269757, 0.623086, 0.799321, 0.187630, -0.975454, -1.384670, 0.815772, 0.518144, -0.184279, 1.482645, -1.746478, 0.254673, 1.478644, -0.361736, 0.813790, 1.117436, 0.263568, -1.652777, 0.913780, 1.239972, -0.202751, -1.036590, -0.316331, 0.731122, 0.339312, -0.180115, -0.757585, -0.285849, 0.082995, -1.474026, 1.474402, -0.454812, 1.794350, -0.548455, 0.885742, -1.258813, 0.684264, -0.471451, -1.771566, 0.129455, -1.380036, 0.563674, -0.603892, -1.463750, 0.228426, 0.911034, 0.274185, 0.422622, 1.159011, 0.118977, -1.018029, -2.479925, 1.691404, -1.568525, -1.317917, -0.537501, 1.670645, -1.890105, 0.031761, -0.071098, -1.806499, -1.736098, 0.838499, 0.436174, 0.046730, -0.871402, -0.867162, -0.301262, 0.471351, 1.469979, -0.566323, -1.020953, -0.708661, -0.285569, 0.036857, -1.383692, -0.170049, -1.703476, 0.230277, -1.358836, -0.881406, 0.693222, -0.554954, 0.365691, -0.470092, 0.519062, -0.194337, 0.341719, 2.138516, 0.590942, 0.142093, -2.554609, 2.218141, -0.944951, 1.231023, -1.405950, -1.326814, -2.452128, -0.643954, -0.033388, -0.100510, -1.043900, -0.899142, 0.473145, 1.166353, 1.694092, 1.215379, -0.325040, 0.016748, 0.508877, 0.540147, -0.211066, 1.096513, -0.855781, -0.228774, 1.135932, -0.608350, 0.489989, 1.218665, 0.773853, 0.285801, 0.481724, 0.111804, 0.322254, 0.500364, 2.179589, -1.888124, -0.127274, -0.625675, -0.671828, 0.703467, -0.832597, 0.008845, -1.203453, -0.397637, 0.106696, 0.006077, 0.230481, -1.351761, 0.547575, 2.625362, 2.146603, -1.017467, 0.271686, 0.797819, 0.941221, 1.600861, 0.950617, 2.559654, 0.609090, -0.307161, 0.060480, -0.574064, 1.583999, 1.793632, -0.711863, 0.726575, 0.270590, 2.272430, -0.157739, -1.058615, 1.622331, -1.125452, -1.843768, -0.078278, 1.740481, 1.824444, 0.784402, -0.106382, -0.467952, 1.296723, -0.764729, 1.315884, 0.152846, 0.601016, -0.262548, -0.428568, 0.446372, -1.534969, 1.636515, 1.052215, -0.544631, -0.539550, 2.270524, 0.494257, 0.585112, 1.647986, -0.398734, 0.013786, 0.209865, -1.452126, 0.599200, -1.402436, -0.613238, -0.003972, 1.067335, -0.283126, -0.245166, 0.191961, -1.449515, 0.463684, 0.815299, 0.073737, 1.082976, 0.293794, 0.670612, 0.143377, 0.171043, 0.808881, 0.032854, 0.946165, -0.367223, 1.682208, -1.323634, -0.422998, -1.249921, -0.124798, -0.254751, 0.808571, 0.028316, -2.479560, 0.971163, -0.486956, 1.713814, 0.446665, 0.053134, 0.101732, -2.470068, 1.173814, -0.838995, 2.267375, -1.557401, -1.373082, -0.450953, -1.405447, 1.055510, -0.647756, 2.538760, -0.415681, 2.130071, -0.646308, -1.117635, -0.107596, 0.715535, -1.170509, -0.447454, -1.204838, 0.620161, -0.941296, 0.353405, -0.056707, 0.050945, 1.417850, -0.092382, -1.101896, 1.076433, -0.263144, 0.393465, -1.570708, -0.876891, 0.820119, -0.681650, -0.624618, -1.420860, 0.192898, -0.063609, 0.713392, 0.496183, 0.453552, -0.862438, -1.039380, -0.910973, 0.772395}, + { -0.927943, -0.848864, -1.007952, 0.335526, -2.017541, -0.914680, 0.078810, -0.898423, -1.708599, -0.155889, 1.007167, -0.747462, -0.171016, -2.308906, -0.114479, -2.339214, -0.457396, -1.526376, 1.623720, 0.457976, 0.813552, 0.206856, -0.101218, 0.073019, -0.045020, 1.352025, -0.638211, -1.537627, -0.435254, -0.964205, 0.583681, 0.188579, 0.181941, 0.057947, -0.563493, 0.118283, 1.010443, 1.395760, -0.092736, -1.030230, -0.320378, -1.097519, 0.627467, 1.335169, 0.508092, -0.385964, -0.641630, 0.556415, -0.569044, -0.246809, -0.650686, -0.437328, 0.608802, -2.162268, -1.165045, -0.282270, -0.247688, -2.979329, 0.575926, -0.230373, -1.303513, -0.265617, -0.552202, -0.988376, 0.518985, 0.264679, -0.939547, -1.755571, -0.230379, 0.062619, 0.866288, 0.236366, -0.194471, 0.756843, 0.560732, 0.257200, -1.105184, 0.784192, 0.626963, -0.800312, 0.046077, 0.061475, -1.217718, 0.725432, -0.247772, -2.974380, -0.863058, -1.722903, -1.585467, -1.027864, 0.484068, 2.281535, 0.021882, -1.119987, -0.382134, -0.888447, 1.227709, -1.214013, -2.370314, 0.332083, -0.873489, 0.604533, 0.654887, 0.114215, -1.058772, 1.396704, -1.270196, -2.602735, 0.382191, -1.446693, 0.098017, -0.584281, 0.858455, -0.694204, -0.246084, 0.477965, 1.394454, 0.144403, -1.991599, -0.790703, -1.481822, 1.832909, -0.897893, -0.392857, -0.637408, -1.430072, -0.085667, -0.051698, -2.014769, -1.033955, -0.217898, -0.514559, -1.073518, -0.400990, 0.490306, 0.020518, -0.938738, 0.315694, 0.405789, 0.714008, 0.088199, 0.951635, -0.156677, -0.415429, -0.919523, -0.648329, 0.152128, -1.219878, 1.421183, 0.142722, -0.112126, 0.457937, -0.118108, -1.324538, 0.485108, 0.858896, 1.543063, 0.805543, 0.753079, 0.716355, -0.555134, -0.731093, -2.202731, -0.289889, 0.281604, 1.496243, 0.296459, -0.344467, 1.166366, -0.467911, -1.547582, 1.118591, 0.037099, -0.086089, 1.907300, 0.347141, 0.615853, 0.869868, 0.863162, -0.973901, 0.372848, 0.105157, -1.957845, 1.323176, -0.852377, -0.539613, -0.943925, 0.529939, -0.552553, -0.512323, -1.791544, -1.017195, -0.822663, 1.299985, 0.289184, -1.501497, -0.242835, 0.136465, -0.561395, 0.081931, -0.556423, 1.712416, 1.905352, -1.200593, -0.058503, 1.741204, 1.135129, -0.681590, 0.157162, 1.780704, 1.458561, -1.167853, -1.073411, 0.989011, 1.790497, 0.131350, -0.207506, -0.446647, -0.878583, -0.295445, -0.226523, -0.899659, -0.011195, -0.162805, 0.099131, -0.788797, -0.334394, 0.150064, -0.118765, 0.287391, 1.756517, -0.175097, -1.092550, -1.817786, 1.604110, 1.965222, -0.470014, 0.193645, -2.609614, -0.022956, 0.267545, -0.208348, -0.574019, 1.033829, -0.944228, -0.513080, -0.086179, -0.068793, 0.167631, -0.467098, -1.215286, 0.388725, -0.227476, 0.265260, -1.294074, 0.232139, 1.943728, 0.952719, -0.181417, -0.169241, -1.785415, 0.475991, -1.196911, 0.213349, 0.704132, -1.959569, -0.209594, 1.316006, -1.364279, -0.748612, -0.437346, 0.238616, 0.508802, -0.057441, 0.240803, -0.579069, -0.321784, 0.438001, 0.087155, 0.279821, 1.002000, 0.250575, 0.182982, -0.713008, 0.533901, -0.159440, -0.588976, -0.657896, 0.087516, 0.272619, -0.063072, -1.539775, -1.775648, 0.158050, 0.319217, -0.588794, 0.544648, -0.608979, -0.483757, -0.489778, 0.903135, -0.797372, 0.481088, -0.483062, -1.250498, 0.401972, -0.998930, 1.653525, -0.051723, -2.718770, 0.368626, 0.022137, -0.350321, 1.641191, -0.359209, 0.507800, 0.847977, 0.495757, 0.056085, 0.126058, 1.404442, -0.433099, -1.161144, 1.228121, 0.066707, -1.155914, -1.182173, 0.021392, 0.825278, 0.602612, 2.544014, 0.034278, -0.286417, 0.758915, 0.608593, 0.581685, -0.466770, -0.116069, -1.783712, 0.454724, -2.603312, 0.138698, 0.592285, 1.107950, -0.766594, 1.347931, 1.347740, 0.517797, 0.139061, 0.249193, 0.553629, 0.008133, 0.669462, -0.754085, -0.203519, 0.186317, 0.110165, 0.060332, 1.182343, 0.766188, 0.014383, 1.201515, 1.578160, -1.042033, 2.336762, 0.107837, 1.232856, -0.596776, -0.043819, 0.069396, 1.251105, 0.629297, -0.152866, -0.337303, 1.448249, 0.452210, -0.495416, 0.348913, 0.821613, 0.717262, -0.321402, 0.519330, -0.097419, -0.715642, 0.349553, 1.321074, 2.219332, 0.044082, -1.510974, -0.541657, 0.497968, -0.255279, -0.208367, 0.066882, 0.391862, -0.414870, 0.285611, -1.580357, 1.904696, 0.326333, -0.010005, -0.587741, 0.413864, -0.463637, -0.192878, 1.077390, -1.224993, 1.266089, 0.242087, -0.469611, 0.180648, 0.022548, 0.291803, 1.340684, -0.880295, -0.236240, -1.524891, 2.509343, 0.782742, -1.243343, -1.133610, 0.447418, 0.292570, 0.628489, 0.832094, -0.834520, 1.445554, -0.457705, 0.940864, 0.196840, 0.234719, 0.681855, 0.717254, 0.752367, 0.508608, 0.769516, 0.708943, -0.576327, -1.658545, -0.107476, -0.354848, 0.082087, 0.362338, 0.440647, 1.671895, -1.037819, -0.306201, 0.076307, 1.616233, -1.238897, 0.066267, -0.024560, 0.472596, 0.032355, -1.763085, -0.209261, 0.823012, 0.267756, -0.513282, -0.217905, 0.814842, 1.006657, -0.115592, -1.295611, 0.214233, 0.476267, -0.731630, -0.358477, -1.063962, -0.697687, -1.432371, -0.367252, 0.893559, 0.611873, -0.646305, 0.918673, 0.192326, -0.323520, -0.115658, 0.933000, -0.807400, 0.641474, 0.535697, 0.318424, 0.093264, -1.197386, 0.386390, -0.558527, 0.231152, 0.872326, -0.131630, -1.265806, -1.249577, 0.554404, 1.336484, 0.143908, -0.155708, -1.130782, 2.113932, -0.380531, 1.352066, 0.745056, -0.035679, 0.045261, 0.149299, -0.051082, 0.842708, -0.662899, -1.214880, -0.687400, 0.060657, 1.147772, 0.088104, -0.857543, -0.864207, 0.047330, 0.107283, 0.264170, 1.151708, -0.419330, 0.173155, 0.384277, -0.041881, -0.150074, 1.577698, 1.288926, -2.486381, -0.065349, 1.001110, -0.740458, 1.293048, -0.119164, -2.333424, -0.352414, 0.606735, 0.522174, -0.655393, -1.600829, -1.619429, 1.163313, 0.599836, -1.076846, 0.220918, -1.174212, -0.171512, 2.024237, -0.737483, -0.423817, -0.920860, 0.014837, -0.804615, 0.499049, -0.345348, 0.647496, -1.025689, -1.408556, 0.154800, -0.814080, -0.890445, -0.435126, 0.360664, -1.206917, 0.963296, 0.357455, 0.897320, -2.087111, -1.349186, 0.867854, 0.327595, -0.524693, 0.875666, -0.220575, 0.347752, -1.480195, 0.148482, -0.222405, 0.251350, -1.915801, 0.388131, 0.603146, -3.203593, 0.531218, 1.868075, 0.458617, -1.174954, 0.244054, -1.304455, 1.196585, -1.201653, 1.474107, -0.426473, -0.854629, -1.479377, -1.245414, 2.141289, 0.002585, 0.793922, -0.510862, -1.268813, -1.321165, 0.899540, -0.227880, 0.210332, -1.266062, 1.919314, -0.204862, 0.231374, 0.147181, 1.009484, 0.432774, 0.545192, 0.625975, 0.004619, 0.117338, 1.880970, -0.916497, 0.527592, 1.175011, 0.535266, 0.622861, -0.090368, -0.470978, 0.648491, 0.832114, 1.510331, -0.760787, -1.021950, 1.644606, -2.190853, 0.506645, -2.273086, -0.797426, 0.939197, 0.197609, 0.042075, 0.444532, -0.907776, 0.924141, 0.721633, 0.964365, 0.039645, -0.622620, 0.413722, -0.416789, -1.059769, -1.402015, -0.318759, 0.235055, 0.040810, -0.339326, 1.998217, 1.911765, -1.288431, -2.215854, -1.611742, 0.606864, 0.814347, 0.232382, 0.378639, -0.815160, 2.142320, -0.369369, -0.847102, -1.106990, 0.926171, 0.398485, 1.697152, -1.412457, -0.660148, -0.100567, 0.122255, -0.775312, 0.195316, -1.914149, -0.783259, 1.371915, 0.716988, 2.154932, -0.775929, -1.642688, -0.686566, -1.130656, 0.708010, 0.205619, -0.822354, 0.286945, -1.762586, -1.835892, -0.055453, -2.159250, -0.595203, -1.234347, -1.119582, -0.569000, 0.920316, 0.970850, -0.522653, -1.611656, 0.037889, 0.514440, -0.411900, 0.245702, -0.229427, 1.736876, -1.479308, 1.230309, 1.027730, 0.759393, 0.453581, 0.740624, -0.510150, 0.286593, -1.164558, -0.630723, -1.118675, -0.684163, 1.475408, -0.513927, -0.415364, -0.136300, -0.433766, -0.189449, -0.538142, -0.930861, -0.009446, 0.391436, 2.023198, 1.411867, -0.507803, 0.084696, -0.569933, -1.525797, 0.412340, 0.210363, 0.044233, 0.901978, 1.419834, 0.677276, -0.652197, 0.389954, -0.747245, 0.256262, -0.239018, -0.424416, 0.195915, -0.145170, -0.901196, -0.910658, 0.913185, 0.160334, -0.834326, -0.782434, -0.461058, -1.470574, 0.155376, -0.445109, 0.089911, -2.456486, -1.782437, 0.490214, 1.646560, 0.066937, -2.299922, -0.047979, 0.603489, -0.646352, -2.248479, -0.280179, 0.156131, 0.069344, -0.847731, -0.139704, 0.043159, 0.126194, 0.603933, 1.538464, -1.506664, -0.179378, 0.407332, 0.809856, -0.166067, -1.292168, -1.769859, -2.079509, 0.739625, -0.736729, -0.713354, 1.073867, 1.844931, -1.939672, 0.471914, -0.156489, 0.138424, 0.890533, 0.612764, 1.475300, -0.526159, -1.735516, 1.410267, -0.876821, 1.171168, 0.075415, -0.387776, -0.882955, -0.551826, -1.028673, -0.024397, 2.792131, -1.603245, 0.402022, 1.737134, 0.115065, -0.216108, -0.521870, 1.635362, -1.264822, 0.541659, -1.944620, -0.755439, 0.285255, -2.913314, 0.311291, 0.427674, -0.862534, -0.098715, -1.429178, -1.617302, -1.323428, 0.339025, -0.591097, -0.132334, 1.202685, 0.283947, -0.429917, -2.540929, -1.405465, 1.592140, -0.757374, 1.108627, 0.873684, -0.927622, -2.282203, 0.224326, 0.502771, -0.994116, 1.285542, -1.194033, 0.482534, 0.207624, -0.490080, 1.346618, -1.521279, -0.306631, -1.740103, 1.524379, -1.353220, 1.823642, -1.020735, -1.211194, -0.200056, -0.321512, 0.106106, -0.689623, 0.920550, -2.241492, 1.660964, -0.233836, 0.416134, 0.949040, 0.362489, 0.661448, -0.551020, -1.277775, 0.753808, -0.728999, 1.259455, -0.855020, -0.113403, 0.180453, 0.042225, -1.437568, 0.637236, 0.025830, 0.537016, -0.058317, 0.671484, -2.318072, -0.643389, -0.562461, -1.452972, -1.112109, -2.104362, -0.360837, 0.531970, 0.488858, 0.593668, 0.218039, 0.758817, -0.427450, -2.061395, 1.705541, 1.480190, -0.798173, -0.314018, 0.823357, 1.055417, 0.933325, -0.215806, -1.250151, 0.297458, 0.096078, -1.289634, -0.310853, -1.329689, -0.481198, 0.165585, -0.355458, 0.276325, 0.635595, -0.729753, 0.637424, 1.495186, -1.718847, 0.223172, -1.835021, -0.461343, -0.708494, 2.117562, -0.062408, -0.067752, -0.254458, 0.984144, 1.321805, 0.670593, 0.567188, 0.328510, 1.234885, 1.181028, -0.563270, -0.905491, 0.270681, 0.609736, -0.687382, -0.206509, 1.864390, 0.523094, -0.468049, -1.163573, 0.840661, -0.227165, 0.835723, 0.701759, 0.864262, 2.507117, 0.639601, -0.537041, 0.354290, 1.103883, -0.370686, -0.258310, -0.262834, -0.812582, -0.595378, -0.944029, -0.953974, 2.823998, 1.270386, -0.811090, -1.462563, 0.211065, -0.891727, 1.596180, -0.180620, -1.314641, 0.669107, 0.806106, 1.603680, 0.346867, -0.395742, 0.904379, -0.953341, 0.374559, 0.814034, 1.508167, 1.248294, 0.128080, 2.067523, 0.750697, 0.687511, -0.588257, 1.093959, -0.098795, -0.012618, -1.839321, -1.149667, -0.662068, 1.496468, 2.167565, -0.236460, -1.570776, -0.732336, -0.042147, 0.405120, -0.369327, 0.810185, 1.313395, -0.767107, 0.197084, -0.727138, -0.609878, -1.097356, -0.672487, 1.194189, 0.556869, -0.336657, 0.425821, 0.569506, 1.723290, -0.247420, -0.980576, -0.855025, -0.155905, 1.222950, 1.948963, -1.270618, 0.348116, -0.491914, -2.116805, 0.189608, -1.191331, -0.049422, 0.323932, -1.616547, -0.922383, 0.945364, 1.985738, 0.374413, -1.308167, -1.071365, 0.014611, -0.130538, 0.757273, -1.293112, 0.940560, 0.134145, 1.010601, 0.783650, 0.255528, 1.060758, 1.198641, 1.295738, -0.580612, 0.578393, 0.884045, 0.180836, -0.458545, 0.192984, 1.173479, -0.123109, -0.257911, 2.552269, 0.375229, -1.339672, -0.279820, 0.328244, -0.713262, 0.353616, -0.679741, -0.672665, 0.160089, 1.357111, -2.032015, -0.131624, 1.702815, -0.980851, 0.914760, -0.157481, -0.435516, -0.521515, -0.650218, 1.756954, 1.545284, -2.529951, -0.769625, -1.645308, 0.524984, 1.283369, -1.506804, -0.465938, -0.698563, -0.834909, -0.308978, -0.556149, -0.769594, 0.497699, 2.276626, -0.844418, 0.254551, 0.017238, 1.455137, 0.230232, 0.679763, 1.308492, 0.701632, -1.196901, 1.945062, -1.175911, -1.124874, 1.292782, -0.338028, 0.367165, 0.353531, 0.633568, 2.557875, -0.167781, 0.424514, -0.294773, 0.280180, 0.732246, -1.407929, -0.848970, 0.729634, 0.911062, 0.263933, -0.545052, 0.105529, -0.223433, 0.645134, -0.873666, -0.133974, 1.671354, 0.198154, 0.286433, 0.971493, -0.721881, 0.050207, -1.286270, 1.330596, -0.762040, -0.490164, -1.530473, -0.912325, -1.361833, 0.684286, 0.133923, -0.538645, -0.730002, 0.521018, -1.844207, -0.109827, -1.608073, -1.622082, 0.076888, -0.404588, 0.693388, 1.515352, -1.246440, 1.331426, -0.457352, 1.717526, 0.911947, 0.665998, 0.722040, -1.067963, -0.410837, 0.905061, 0.432025, -0.450593, -0.748104, -1.484108, -0.495278, 0.109436, 0.241716, 1.599032, -1.147695, 1.769514, -1.479689, -0.415782, -1.170278, -0.622471, 0.393543, -0.559444, 1.874969, 0.287597, 0.767469, 0.357354, 0.267501, -0.266990, 1.456886, 0.368555, -0.727274, 0.213615, -0.261534, 0.850806, -0.469329, -0.935140, 0.660715, 0.773345, 0.233064, -1.301188, -0.610967, 0.345995, -0.603919, -1.053955, 1.047476, 0.353146, 0.282915, -0.812627, 0.421331, -1.284377, 0.194997, 0.660365, -0.209087, 0.537426, 0.954637, -0.632826, 0.245715, 1.806435, 1.880646, 2.457077, -1.207209, 2.238415, -0.629680, 0.908186, 0.084370, 0.576474, 2.198799, 0.242670, -0.628591, 0.497697, 1.402853, -0.711362, -0.298425, -0.801774, 0.054332, 0.681303, 0.552893, 0.770221, 0.643135, 0.273837, 0.330350, -2.246512, -0.442313, 0.996603, -0.270699, 0.647778, -1.096185, 1.299947, 0.135745, -0.714829, -0.458041, -1.670897, 0.229702, -0.052380, -1.262217, -1.589613, -0.270982, 1.535045, 0.503076, -1.822937, -1.292228, -0.311002, 0.024634, 1.160637, -0.652208, 0.123767, -0.557057, 0.558771, 1.086947, 0.540257, 0.909246, -0.898957, 1.530163, -0.923892, 0.485648, 0.238247, -0.436018, -1.090601, 0.870652, 0.504701, 0.599472, -0.145817, 0.942055, -0.100235, 0.569638, -0.337121, 0.044976, -0.599574, 0.061402, 1.918601, 0.834554, -0.031722, -0.704964, -0.161246, 0.544671, -0.651383, -1.645877, 0.435550, 0.676679, -0.066669, -0.292441, 0.865631, -1.383248, 2.826511, 0.885830, -0.271709, 0.593572, 0.480456, 0.269602, -0.293841, 1.586214, -0.185174, -0.700619, -0.588683, 1.760091, 0.041362, 0.140348, -1.012107, 0.768306, 0.906298, -1.002926, 1.175111, -3.774929, 0.167701, -0.148679, 0.825280, -0.833319, -0.837649, -0.224188, -1.071116, 1.872995, 0.553967, -0.087436, 0.736050, -0.083514, -0.741703, -0.313768, -0.447542, 1.419413, 0.474555, -0.538200, -0.609044, 0.315440, 0.093846, -0.604892, 0.628349, 0.044505, 0.679262, 2.457449, -0.134066, -0.549109, -0.913091, 0.364055, 0.494420, -0.056844, 1.222093, 0.074178, 0.904414, 0.190268, 0.607383, 0.380522, -1.618842, 0.106518, 0.398193, -2.297612, -0.998274, 0.714249, 0.162382, 0.378262, 0.454799, 0.069100, -0.167135, -0.738255, -1.558727, 0.967726, 0.423194, 0.052705, 0.392266, -0.532611, -0.856387, 0.456523, -0.425223, -0.522495, 0.362853, -0.666647, -1.847039, 0.817615, -1.144197, -1.626253, 0.774238, 0.260345, -3.258763, 0.026512, -0.285162, -0.005065, 1.859652, 0.590737, -0.410954, -1.418287, 0.831048, 0.155411, -1.734565, 0.316919, -0.149549, 0.119297, -0.058238, -0.006399, -1.887887, -0.638349, -0.429402, -1.545517, -1.425266, 0.856502, 1.099850, -0.076803, 0.061601, -0.415425, -0.883589, -0.274312, -0.735317, -0.141561, 0.298130, 1.483487, -0.615409, -1.578746, 0.715461, 0.026218, -0.217577, 0.662090, 0.505457, 0.930162, 1.536933, 0.363893, -0.008661, 0.936962, 0.492318, -1.887021, 0.565682, -1.971513, -2.056686, -0.045446, -1.305931, -0.881378, 1.008077, -0.941508, -0.213740, -0.865698, -0.932219, 1.098633, 0.159927, -1.405609, 0.459212, -1.559741, -0.261565, 0.256250, -0.110848, -0.672365, -0.342622, -0.787630, -0.092756, 1.122715, 0.969572, -0.038907, -1.399385, 0.978575, 0.700709, -2.083883, -0.845570, -1.146723, 0.583142, -0.465145, 0.188317, -0.984040, 0.855091, 2.205299, -0.662515, 0.763596, -0.858891, 0.260237, 1.452351, -1.259991, -0.479036, 0.785177, -0.846226, 1.043118, -0.733261, 0.188875, 0.487674, 0.051956, 0.178794, 0.684831, -0.821461, 0.928840, 1.334278, -0.104548, -0.639198, 1.500090, 0.406619, -1.099985, -1.416839, -0.390211, 0.291419, 0.933916, 1.444235, 0.868859, 0.805315, 1.445146, 0.611266, 0.785611, 0.154246, 1.157670, 1.109126, 0.271696, -0.155566, 0.761438, 0.471443, 0.051751, 0.489360, -0.128504, -0.768859, 1.172385, 1.322451, 0.509303, 0.528920, -0.754073, 0.201715, 2.338198, 1.740549, -1.628224, 0.770020, -0.492662, -1.140821, 0.489712, -1.528871, 0.103982, 1.880946, 0.905111, -0.833171, -1.682546, -1.862728, -0.997107, 1.007095, -0.144976, -0.507198, -1.205614, 0.457016, -0.243494, 1.031220, -1.198406, -1.225401, 0.468323, 0.919303, -0.528095, -0.661466, 0.307176, 0.343826, 1.076542, -1.721700, -0.663999, 0.747687, 1.235697, -0.069326, -1.770146, -0.848474, -0.197615, 1.513558, -2.524689, 1.400738, 0.406095, -0.184936, 1.280244, -0.216047, -1.676776, 0.219719, -0.405184, 0.967325, -0.375629, -0.785722, 1.220597, 0.334789, 0.566480, 0.009254, 1.746741, -0.787908, 1.763453, 0.017366, 0.706532, -0.140022, -0.783722, -2.182021, -1.087504, 0.909114, -1.296626, -0.469856, 0.809443, -0.538671, 0.953015, 0.835782, -0.623321, -1.074792, -0.834355, 0.326608, -0.167698, -0.316246, 0.736643, -0.302629, 1.197693, 3.204298, 1.157178, -0.593553, -0.557982, 0.982327, -1.169718, -2.160820, 0.108015, 0.697272, -2.031981, 1.345407, 0.862154, 0.926838, -0.035839, -0.250587, -0.701835, -0.795605, 2.111944, 0.538221, 0.356078, 0.832455, 0.936934, 1.684944, 0.549750, 0.790562, -2.052320, 1.330595, 0.326634, -0.853783, 0.487032, -1.996852, -2.565112, -0.523779, -0.102644, 0.005887, -0.781062, 0.514485, -1.407459, -0.936053, 0.621269, -0.017720, -0.617706, -1.137232, -0.807767, 0.235180, -0.134021, -0.359856, -1.462101, 1.832937, -0.273101, -0.020999, -0.438320, -0.009446, -0.243226, -0.544482, 0.166262, 0.738021, 0.077360, -0.488276, -0.821518, -0.415494, -0.216131, 0.142641, -0.253094, -0.679378, -1.484582, 0.456298, 0.565872, 1.553964, -0.021438, -0.388620, -0.807010, -0.136264, -0.866476, -1.156408, -0.985454, -1.657730, 1.234892, -0.137808, -0.238852, 0.033399, 0.215430, 0.880274, 0.155169, 1.268355, 1.839431, 0.133500, 0.020458, -0.616348, 1.589242, -1.617563, -0.003197, -0.638750, 1.057412, -1.081039, -0.641924, 0.498153, -2.484929, 1.599888, -0.340949, -0.068286, 0.371734, -0.870459, -0.189091, 0.198300, -0.538583, -0.340019, -1.088236, -2.017619, 0.843293, -0.882988, 1.638878, 0.349668, 1.657731, 1.289697, 0.936379, -0.272177, 0.191521, 0.271849, -0.672913, 0.064053, -0.080055, -0.633254, -0.747562, -1.992939, 1.620304, -0.518901, 0.382423, 0.077329, -0.216099, -1.755247, -0.483255, 0.739758, -0.181267, -1.574334, -1.651722, 0.693794, 0.953994, 0.950048, -1.253076, 1.656438, -0.371822, 0.481879, 0.611983, 0.862718, 1.245632, 0.882637, -0.847025, -2.207047, 0.757778, 0.817937, 0.195750, 1.034330, -0.200130, 1.624408, 0.162437, 1.263891, 0.223653, -0.894796, -1.085478, 0.674211, 0.611244, -0.005049, -1.733819, 0.894442, 0.838969, -1.619244, 0.651272, -0.800640, 0.359469, -0.145293, -0.259317, 1.625399, -0.400067, -1.943555, 0.325960, 0.302873, 0.541227, 0.119039, -0.495761, -0.327059, 1.090673, 0.855052, -1.354466, 0.022400, -1.922561, -0.006519, 0.417387, -0.950574, 0.189850, 0.723750, 0.285134, 0.920834, 0.176980, 1.213805, -0.365228, 0.712436, 0.900792, -0.619316, -0.141724, -0.965008, 2.041592, -0.505673, 1.058618, 0.574162, -0.662834, -1.266578, -0.589979, 0.354142, 0.698730, -0.051693, -1.277285, -0.738954, 0.713953, -1.218836, 1.242006, 0.407080, -1.259255, 2.019546, 1.438067, 0.736658, -0.510014, -0.990531, -0.765166, -1.007231, -0.214694, -0.747685, -1.968806, -0.161317, 1.621844, 0.210423, -0.771294, 0.450599, 2.001394, 1.738619, 0.566885, -1.893497, -0.530683, 0.850890, 0.220721, -1.712036, -0.046604, 2.631550, 0.149449, -0.212828, -0.197895, 1.905503, 0.819902, -0.523158, -2.023850, 0.124120, 2.946158, -0.919509, -1.538836, -1.776377, 0.530943, 1.406346, 1.630764, -0.110141, -0.735590, -0.635372, 0.398702, -0.776307, 0.395137, -1.925777, -0.273339, 1.358249, -0.861496, 0.089180, -1.012947, 1.540609, -0.742041, 0.552658, 0.340891, -0.954655, 0.139637, -0.090485, 0.250190, 0.482467, -1.228982, 0.531436, 0.507531, -0.004376, 0.411277, -0.718831, -0.336491, -0.195399, 0.224481, -0.666029, -0.345856, -0.073758, 0.174176, -1.713911, 0.163176, -0.256084, 0.298473, 0.117545, 0.503351, 0.695065, 1.334711, 0.609364, 0.958845, -1.178927, 0.510191, -1.486158, 0.401862, -0.855869, 0.807488, -0.945352, -0.087425, 0.217774, -0.888259, 1.399231, 0.492064, 1.220216, 1.476372, 0.487832, 0.284453, 0.153273, -0.016706, 1.585354, -0.205146, -1.237179, 0.542567, 0.989088, 0.648264, 2.159141, -1.254500, -0.923453, -0.148642, -0.726381, -0.776980, 0.770464, 1.392206, -0.930231, 0.266298, 1.465960, 2.306773, -0.625814, 0.274268, 0.051292, -0.239717, 0.729621, 0.664993, 1.121924, 0.632058, 0.905467, 1.427446, 0.007445, -2.049455, -0.216021, -0.858709, -0.134386, 0.855359, 0.507594, -1.070304, 0.209477, 1.737250, 0.299925, 1.398934, -0.434993, 0.077866, 0.692991, -0.756430, 1.537987, -1.806252, -0.476487, -0.859116, 0.963591, 0.923220, -0.338264, 0.662789, 1.323264, -1.300412, 0.083961, -0.118212, -1.380022, -0.749058, 0.447634, 1.958049, -2.459430, 0.421433, -0.743782, 2.129945, -0.602323, -0.183671, 0.206305, -0.302544, -0.719317, 2.121706, 1.540766, -0.225557, -1.511597, 0.754543, -0.091522, 1.924275, 0.230632, 0.365935, -0.811286, 0.681153, 1.572017, 0.115002, 0.625835, 0.605080, 0.213463, 0.192024, -0.194023, -0.399103, -1.958182, -0.358869, 1.022202, 0.132406, 1.471805, 1.070965, 0.175471, 0.285277, 0.021200, 0.599523, -1.314948, 0.281622, -0.081000, 0.172158, -1.862646, 0.986665, -0.534133, -1.916276, -0.530737, 1.407987, -0.626147, 0.182106, -0.781367, 1.492690, 0.952253, 1.078951, -0.206277, 0.668398, 1.804943, 0.232114, -1.230453, 0.837795, 1.477466, -1.629281, 1.470325, 1.441007, -0.040301, -0.602422, 0.838631, -0.591540, 0.382618, -0.118419, 0.051557, 0.096159, 0.902218, 1.605196, 0.143768, 0.147585, -0.141291, 0.678024, 1.390853, -0.421511, 1.208288, 0.036119, 0.029561, -0.163579, 1.589282, -0.815432, 0.514626, 0.166672, 0.525113, 0.970681, 0.485214, 1.136702, -1.800761, 0.690678, -0.194342, 0.908171, -1.090786, 0.218515, 0.838834, -1.171016, 0.214444, 0.441577, 0.287095, -0.412562, -0.618340, 0.290903, 0.958213, -1.447302, -1.446268, -0.710906, 1.578458, -1.091832, 0.545546, 0.304186, -0.309296, 0.683226, 0.701882, 0.076304, 0.285923, 0.103014, 1.323580, -0.006013, -0.593497, -1.069417, 0.091635, -1.132696, 0.571171, 1.140896, -0.936000, 0.254236, -0.907856, -1.089543, 0.993852, 0.273657, 0.967522, 2.093941, -1.223866, 0.429392, 0.120051, 0.549104, 0.647190, -1.115838, -0.195397, 0.446270, -0.492344, -0.558010, -2.640300, 0.155339, -1.019168, -0.670918, 0.290420, 0.382878, -0.424822, -0.338645, -1.270369, 0.919237, 0.590560, 1.008365, 1.227771, -0.625557, -0.150320, -1.672765, 0.824407, 0.001227, 0.410100, 0.962835, -1.759868, -0.558739, -0.134206, -0.697611, 0.323811, -1.104477, 0.847668, -0.379923, -1.013853, -1.541471, 0.116949, -0.114481, -1.733531, -0.999286, -0.626130, 0.472367, 0.003997, 0.154539, -1.099100, -0.555579, 1.068332, 0.455766, -0.807047, 1.007023, 0.444259, 1.327401, 1.437015, -0.043844, -1.090147, 0.796512, 0.521100, -0.284028, -0.530354, 0.736647, 0.629921, 0.664883, 1.840846, 2.030298, -0.511684, -0.977230, -0.554112, -1.465355, -0.074527, -1.022036, 0.131191, -0.428613, -0.098370, 1.004801, 0.012264, -0.961686, -2.209918, 0.260822, 1.475644, -0.929505, 0.392600, -0.927285, -0.133991, 2.312371, -1.049276, 0.973929, -0.255088, 0.704127, -0.792910, 0.430684, 1.825592, 0.740534, 1.494470, -0.863474, -0.136603, -1.977052, -0.811724, 0.919494, 1.093497, 1.148729, -0.604218, -0.471478, -1.583214, 1.654827, -0.554981, 2.093590, -0.979652, -0.688824, 1.316643, -1.230648, 0.570379, -0.669996, -1.223467, -1.891810, -1.924267, -1.235424, 0.756017, -0.666367, -1.023326, 0.555475, 0.305918, 0.180063, -0.141499, 0.167064, -1.871583, 1.328987, -1.360708, 0.260314, -0.125774, 0.667003, 0.662604, 0.518516, -0.104374, 1.370616, -2.464720, -0.901188, -0.121387, 0.084551, -0.626412, -0.675372, -0.312952, 0.853075, -1.172036, -0.954390, -0.513668, 0.833627, 1.389015, -1.560414, -0.479683, -0.138798, 0.594588, 0.767498, 0.475659, 1.623153, 0.735289, 0.562974, 0.158398, -0.378628, -0.670631, 0.088275, 0.772969, -1.207289, -0.338791, -0.363498, -1.426166, -0.320898, -0.810194, -1.817028, -0.555361, -0.372655, 1.879006, -2.218235, -0.465146, -0.337877, 1.478354, -0.970064, 0.343084, -1.173539, 0.188834, 0.261888, -0.562787, 1.627506, 0.580245, 0.327927, -0.844266, -1.060338, -0.147947, -0.460550, -0.177256, -0.945131, -1.313558, -0.298973, 0.410588, -0.669070, -1.090892, 0.289215, -0.377820, 0.839338, -1.111745, -0.811818, -1.172831, 0.391945, -0.491829, -0.227326, 0.939623, -0.540792, 0.130543, -0.069212, -0.548100, 0.550014, 0.219876, 0.454632, 1.712600, 0.521004, 0.130218, 0.255326, -1.264603, -0.557759, -0.246010, 0.648926, -0.486580, 0.690779, 0.612560, 0.511398, -0.086692, -0.675319, -1.768657, -2.139894, -1.734304, 2.012283, 0.343154, -0.903062, 0.365472, 0.839142, -1.214435, 0.324033, 0.616915, 0.935193, -1.017241, 0.408117, -1.726444, -0.121322, 0.192869, 1.081294, -0.817966, -0.697636, 1.024459, -0.473298, 0.718078, -1.040346, -2.491232, 0.131391, 1.742156, 0.353938, -1.779879, -0.189823, -1.040354, -0.260624, -0.965293, 1.309706, 0.195921, -0.919993, -0.563284, -0.207294, 0.352581, 0.883915, -0.291144, 0.193367, 0.178430, -1.110159, 1.221385, -0.209801, 0.248522, -0.473450, -0.571792, -0.625436, -1.170056, 0.194336, -0.047487, -2.029404, -0.299411, -0.930910, -0.038067, -0.777132, -0.213311, 0.147254, 1.656849, 0.573813, -1.539118, 0.880464, 0.880131, -0.747459, -0.858205, 1.228164, -0.760625, -1.832125, -0.019177, 0.564201, -0.868261, -0.537545, -0.582654, -0.616964, 0.560157, -0.905352, -2.020527, 0.587057, -0.453112, 0.090689, -1.420369, -1.587916, 0.238346, -2.234722, -1.555369, -0.456377, -2.005966, -0.237870, -1.680128, 0.151082, -1.593435, 1.387881, -0.741671, 1.223455, 1.103431, -0.777037, 1.408736, 1.902882, 0.531550, 1.044782, -1.076130, -0.673309, 1.709906, 0.256266, 3.343550, -0.685823, -2.121159, 0.089676, -1.187886, -0.097671, -1.044594, -0.846009, 0.133710, 1.893877, 0.359745, 0.252651, 0.244037, -1.538918, 1.115700, -0.072269, 0.697478, 0.664608, 1.180620, 1.147225, 1.191006, 0.368092, -0.210100, -2.311575, -0.063836, -1.455704, 0.493406, -0.630681, -1.676298, -1.193554, 0.905106, -1.545751, -0.219819, -0.041734, 0.979126, -0.255762, -1.924916, -0.318397, -0.310783, 1.196124, 0.838070, 0.577734, -0.994569, -0.946624, 0.500414, 0.110417, -0.094273, -0.032592, -1.253767, 0.296884, 1.873517, 0.177414, -1.031563, 0.144232, -0.883040, -0.658280, 0.155666, 1.299628, 0.517497, -0.208179, -0.128513, -0.611170, 0.398791, -1.197398, 2.587734, 1.115386, 0.248222, -0.541405, 0.695469, -0.054985, 1.283327, -0.503008, -0.815221, 0.288918, -0.016338, -1.156937, 0.943865, -0.086148, -2.560810, -3.653342, 0.645168, -0.428726, 1.355295, -0.089028, 0.211192, 1.044049, -1.145127, -0.581369, -0.503060, -0.159572, -0.427680, 0.020536, 0.222917, 2.737014, 1.056712, -0.578037, 0.391490, -0.457669, -1.100458, 1.139609, 0.217027, -0.357803, 0.274608, -0.385472, 1.185033, 0.171908, -2.707349, 1.588948, -0.157671, 0.199787, 1.033055, -1.212648, -0.694839, -0.671615, 0.172562, 0.036933, 0.697805, 0.414519, 0.667288, -0.557510, 0.857324, -0.709816, -1.602680, 1.324861, -2.269055, 0.470487, 1.208059, 0.177478, 0.171895, -0.872168, -2.186580, -0.493671, 1.867589, 0.752896, 1.095372, -0.244078, 0.848214, -1.318316, 0.848509, 2.486402, -1.020310, -0.942185, 0.945333, 0.156182, -0.301386, -0.064850, -0.273926, -1.253156, 0.273615, 1.317315, 0.642375, -0.086330, -2.033757, 0.551518, -1.083527, -0.590233, -0.314680, 0.926940, -0.533664, 0.402880, -0.689461, 1.061647, 0.127076, 0.636953, -0.690255, 0.489191, -0.574507, 0.245246, -0.381623, 0.539626, 0.000194, -1.758696, 0.508802, -0.257727, 0.292019, 0.463272, 0.346177, -0.556291, 0.474174, -0.408458, -1.146987, -0.111829, -0.240989, 0.825932, -0.626498, -0.242822, -0.369316, 0.008353, 0.638135, -0.074198, -0.656372, -0.080627, -1.274264, -0.515446, -0.446216, -1.189520, 0.563389, 1.399765, 0.915128, 1.117257, 0.236102, -0.675459, -0.220637, 0.959634, 1.419576, 1.021667, -1.504123, 1.247329, -1.317474, -0.682281, 2.163998, 0.130203, -2.267840, 1.081378, 0.194819, -1.282587, 0.035392, 0.006418, 0.295348, 0.424520, 0.021659, -1.040777, 0.788981, -2.446877, 0.126979, -0.950303, -0.376568, -1.154711, -2.149836, 0.077384, 0.463624, -0.095168, -1.097720, -0.164080, -0.221102, 0.401866, -1.569068, 0.411337, -0.317839, -2.064783, -1.769371, 0.181743, -1.359475, 0.502654, 0.361786, -0.209982, 0.282905, 1.697727, -0.340520, 1.452186, -0.532251, -0.203603, -2.009740, -0.361879, -0.418472, 1.030548, -0.213635, 1.010984, -0.620800, 0.444597, -0.202257, 0.438767, 1.602165, 1.679331, 1.025387, -1.797996, -0.415699, -1.049389, 0.213724, 0.519129, -0.766252, -0.200632, 0.268251, -0.789505, 0.675799, 0.145076, -0.958511, 1.324622, -0.525909, -1.418014, -0.548286, 1.263579, 1.072547, 0.828219, -0.137356, 0.894170, 0.316195, 0.380372, -1.382895, 1.615364, 1.053836, -0.560380, -1.522957, -0.779194, 0.605998, -0.056610, -0.177501, -0.690148, 1.145496, -0.189536, -0.499614, -2.384019, -0.267268, 0.795484, -0.433175, -3.018608, 1.147453, 0.643098, 0.830705, 2.097276, -1.155822, -1.713669, -1.105028, -0.062009, -0.923434, 0.743138, 1.121429, -0.180391, -0.576033, 0.704896, -1.288203, -0.845380, -1.152440, -0.320244, 0.875678, 0.600936, 1.819416, -0.174057, 0.141421, 0.860840, 0.122118, -0.163375, -0.949162, 0.113648, 0.523691, -0.363049, -1.160820, 0.605130, -0.147158, -0.716509, -0.778459, 1.519413, 1.636031, 0.162499, 0.135135, 0.659129, 1.639581, 1.036743, -0.454564, -0.191258, 1.083811, -1.926418, -0.158085, -1.708622, 0.132392, 0.541703, -1.130127, 0.686314, -0.900944, 0.496621, 0.619421, -0.253409, 0.160915, 1.728672, -0.320732, 1.064396, -0.517227, -1.421334, 0.064680, 0.114182, 1.748614, -1.084048, 1.243769, 0.389261, -0.099600, 0.829103, 1.819249, 0.404720, 1.032003, -0.024367, 1.097604, 1.085647, -1.367404, 0.466983, 0.001281, 2.846629, -2.019267, -2.680492, -1.226993, 0.307601, -0.383387, 0.547387, 1.100284, -0.685923, -0.312973, -0.137570, -1.107392, -2.088766, 0.767244, -0.806956, 0.649474, -1.061088, -2.317648, 2.402853, -1.322242, -1.402705, -1.672033, -0.246687, -0.200126, -0.211244, -0.867503, 0.434005, 0.014796, 0.162539, 0.347691, -0.641239, -1.731719, -1.434930, 2.642357, 0.544128, 0.850129, -0.729942, -0.893757, 0.416484, 0.669560, -0.396419, 1.478083, -0.858730, 1.618151, -0.790242, -0.107981, -0.960111, -0.220593, -1.635601, -0.259124, 0.501547, 0.087147, -0.309044, -0.347772, -1.212590, 0.841336, -0.721862, 1.516998, -0.006928, -0.494713, 0.833561, 0.451793, 0.837156, -0.254606, 0.089599, 0.911841, -0.740064, 0.620478, -0.642798, -1.569077, 0.123068, -0.434907, 1.568962, 1.555829, 2.127965, 0.351766, -1.284559, 1.359767, 1.442204, -0.840695, -0.463315, -0.723744, 0.806839, 0.143425, 1.381059, -1.010218, -0.795730, -0.121016, 0.375328, -0.162401, -0.633000, 0.747063, 0.085978, 1.816127, -0.501502, -0.507550, 0.924022, -0.746933, -0.033771, -0.283509, -0.447803, -2.295218, -0.276337, 0.524660, 0.569275, 0.274995, -0.682910, -0.205559, 0.895590, 0.297320, -0.300603, 0.503471, -0.525355, -0.754506, 0.650331, 0.602531, -1.774355, 0.310153, -0.453766, 1.702149, -0.123849, -0.835878, 1.328351, 0.579231, -1.104562, 1.098184, -0.709438, -1.300756, 1.331591, -0.029225, -0.191343, -2.165961, 0.341162, 0.186482, 1.035492, -1.458163, -1.042048, -0.084827, 1.635345, -1.058154, -2.515314, -0.774969, -0.873007, -0.337382, -2.764482, 0.396669, 0.026367, 0.977886, -1.675156, -0.295895, 0.961347, -0.193771, -1.232363, -1.395568, 1.228016, 0.169373, -0.607413, 0.846884, -0.230924, 0.216920, 0.369623, 1.028052, -0.188690, 0.469493, -0.206884, 1.072878, 0.821573, 0.978262, 0.107876, -0.558954, -0.310885, 1.942254, 1.565964, -1.059694, 0.306540, 0.813537, -0.389594, -0.480042, 0.887445, 1.002834, 0.185267, -1.269850, -0.858702, 0.117193, -0.960910, -0.438533, -1.158435, -0.021574, 0.410309, -0.254446, 0.480523, 0.456429, -0.935506, 2.015416, -0.587284, -0.151799, 1.086539, -0.429865, -0.549879, 0.101188, -0.009451, 1.517862, 0.550616, -0.179284, 2.432602, -0.299765, -0.104424, -1.147942, 0.440644, -0.434821, 0.081770, 0.470288, 0.707236, 0.199223, 0.146954, -0.524365, -0.425456, -0.994704, 0.366282, -0.121806, 0.122624, 0.845056, -0.919393, -0.359879, 0.956572, 0.291986, 0.103772, 0.551228}, + { 0.151411, -1.717748, 0.909832, 0.848680, -0.174213, 1.263088, -0.547166, -0.254465, -0.393627, 0.981863, -0.063628, 0.768435, 0.676767, -1.886077, -0.477599, 1.720591, 0.445139, 0.211770, -0.573490, 0.197628, -2.429413, 1.403641, 0.180901, -0.551383, 0.141266, -0.805328, 0.909336, -1.198049, -0.647150, -0.041898, -0.424140, -1.486209, 0.541744, -0.650204, -0.650450, -0.266668, -0.470350, -0.322348, -0.230794, -0.632877, 1.826589, 0.257119, -1.900059, 0.178371, 0.357649, 0.174800, -0.003306, 0.580129, 0.074534, 0.170380, -1.079589, 0.116693, 0.798690, -0.125644, 0.324565, -1.273186, 0.786542, -1.503500, 1.298266, -1.386859, 0.943515, 1.528456, -0.241123, -0.397135, -1.440818, 0.518590, -1.596600, 0.046940, -0.393789, -1.503666, 1.256149, -0.077771, 0.641385, 0.609378, -1.484205, 0.483218, -0.119101, -1.565513, -1.322506, 0.277597, -0.309835, 0.200702, 0.062800, 0.200795, -1.136239, -0.040700, 1.223090, -1.810949, 1.076914, -0.895120, 0.734914, -0.113220, -0.819583, -1.268599, 1.676691, -1.244039, 0.155282, 0.420703, -0.649007, 0.236376, 0.539776, 1.063199, -1.334928, 0.970890, -0.434281, 1.358534, 0.422500, 0.864670, 0.160401, 1.680198, 2.152479, -0.633744, 1.060115, 0.532378, -0.211181, -0.320317, 0.873093, 0.222334, 0.783755, -0.610613, 1.240386, -0.014305, 0.751334, -0.859434, 0.476986, -1.686807, -0.134107, 0.761968, 0.374331, 0.897440, -1.702061, 1.573867, -0.263693, -1.161328, 0.491045, -0.007748, -1.847060, -0.449268, 1.504047, -1.042101, -0.922779, -0.600547, -0.279846, 0.447892, -0.958392, -0.670416, -0.279738, 1.925528, 0.387071, 0.087156, -0.467199, -0.050457, -0.818867, -0.709160, 0.641431, 0.418357, 0.899433, -0.108944, 0.666666, 1.292046, 0.750602, 1.089446, -1.249858, 0.011890, -0.589511, 0.258431, 0.257665, 0.245017, 0.844059, 1.980735, 1.970554, -0.618476, 1.668040, 0.149042, -1.758637, -0.510663, -0.641908, -0.462898, -0.663343, 2.079369, 0.404049, 0.323880, 2.476227, 0.527205, -1.177533, -0.323164, -1.227292, 0.149659, 0.838142, -1.732197, -0.170381, -1.812745, -0.669329, 0.408222, 0.189581, 1.780860, 1.089348, -0.418127, 1.418004, -1.832505, -1.959258, 0.481414, -0.743271, 0.046968, -0.176478, 0.943366, 0.263546, -1.735088, -0.637229, -0.419577, 1.034221, 1.286572, 1.237679, -0.345898, -1.590086, 1.615048, 0.129258, -0.345910, 1.942529, -0.074625, -3.001926, 0.771956, -2.074967, 0.406719, -1.364377, -1.481638, 1.547148, -0.303939, 0.789367, -0.303160, -0.830100, 0.699050, -0.084270, 0.141094, -0.033963, 0.667123, -0.558370, -0.540293, -0.819283, 0.791856, 0.172812, 0.654527, -0.360412, -0.248002, 0.697636, 0.571203, -1.788391, 1.050033, 0.760023, 1.536373, -0.658803, 0.302729, -0.068964, -1.207751, 0.496216, 1.059681, 1.168080, -1.060535, 0.106893, -1.464354, -0.001107, -0.642644, -1.127898, -1.015904, 1.059593, -1.373190, -1.879398, 0.050528, 0.697422, -2.616667, 1.425313, -1.698050, -1.480625, -1.119680, 0.552761, 0.788110, 0.105646, 0.118271, 1.328090, -0.029821, 0.442615, -0.281911, -1.071998, -0.104038, 0.686019, -1.131257, 2.240062, 0.585562, 0.762856, 0.194447, -0.364963, 0.871979, 0.264676, -1.065846, -0.387478, -0.712954, -0.842447, -0.366122, 0.338344, -0.384794, -1.241136, 0.724946, -0.056380, -0.860886, 0.140001, -0.957593, -0.939671, -0.371561, -1.603250, 2.313947, -0.821044, -0.441503, -0.054414, 0.679068, -0.144911, 1.152604, -1.928547, 0.058827, 0.747229, 0.506935, -0.018938, 0.781106, -0.521051, -0.295060, -0.129451, 0.750224, -0.446751, 1.368930, 0.600666, -0.671634, 0.559674, 2.402524, 0.166724, 1.174885, -0.040720, -0.861511, -1.053058, -0.826144, 0.752826, -1.898661, -0.654893, 1.444387, -0.836840, 0.794659, -2.394781, 0.783784, 1.657255, -0.590490, -0.788307, -2.466543, 1.325715, -1.255886, 0.391333, 0.090129, 0.348212, 0.506921, -0.385958, -0.386371, 0.521172, 0.807283, 0.695138, -1.416977, 0.054994, -0.115045, -0.187976, -0.567175, -0.835807, -0.310370, 0.365322, 0.522698, 0.902349, 0.154241, 0.581073, -0.533368, 0.245366, -0.341671, -0.121553, 0.558985, -0.733360, 0.816843, 0.167325, -2.306233, 0.417114, -0.200217, 0.480988, 0.251917, 0.404310, 0.891883, 1.690375, 0.546723, -0.876896, -0.338794, -0.540062, -1.604896, -0.612307, 0.126879, 1.338179, 0.245178, -1.480240, 1.167861, -0.723366, -0.795922, 0.355822, -0.657796, 0.478914, 2.208684, 0.176199, 0.046182, 0.492262, 2.924647, 0.172192, -0.276907, 1.256889, 0.455354, -0.424214, -1.372728, 1.776020, 0.096437, 0.005136, 1.061714, 0.750409, 1.840798, 0.441672, 1.163914, -1.681555, 0.535777, -0.307737, 0.013793, -0.123096, -0.601400, -1.924240, 0.427502, -0.172043, 0.945961, -0.116054, 0.344066, -0.643068, -2.248785, 0.749512, 1.075832, -0.108083, -0.173580, -0.004179, 0.558725, 0.323521, -0.109937, 0.012161, 0.371929, 0.115105, 0.405723, -0.193953, 0.063962, -0.141861, -0.904359, 0.079636, -1.149282, -0.539980, 0.275770, 0.506583, 1.593730, 0.773776, 1.622363, -1.558430, 0.364846, 0.031692, 1.005553, 0.278902, 1.013664, 0.451349, 0.191254, -0.041452, -0.048874, -1.187084, 0.052611, 0.049112, -0.001410, 0.389143, -0.306156, 0.198004, -0.794664, -1.541766, 2.126101, -0.005947, 0.499504, 1.099975, -0.089918, -0.709029, 0.617582, 0.240173, -0.649476, -0.525474, -1.368807, -0.516472, 1.750974, -1.238836, -0.171003, 1.210672, -0.563741, -1.581995, -0.081798, 1.899172, 0.942788, 0.158433, 0.031942, -1.304583, -0.549445, 0.183839, 1.168524, 0.323713, 0.690414, -2.620455, 0.719986, -1.284407, -1.085863, -0.673512, -0.855604, 0.886289, -1.839884, -0.095656, -1.055911, 0.561473, -0.027664, 0.637259, 1.985378, -1.421781, -0.695649, -1.064844, -0.211294, 0.164986, 0.600754, 1.632375, 0.108151, 0.556854, -0.610899, -1.760017, 0.007612, 0.069061, -1.400032, 0.244703, -0.425351, 1.218782, 1.624288, -0.651544, -1.367540, 0.560642, 0.457432, -0.156185, -0.470208, 0.230932, 0.984577, 1.489733, 0.956965, 1.675116, -0.398476, -1.136057, -0.873072, 0.154516, 0.670271, -1.060664, -0.343741, -0.839005, 0.011171, 0.468217, -0.045388, 1.647911, -2.634171, -0.119654, 1.694921, 1.020362, -0.480585, 1.106553, -1.052089, -0.827536, -0.797181, -1.705137, -0.141706, 0.110189, -0.733175, 0.452065, 0.193283, 0.580296, -1.742185, 1.371229, -0.443629, 0.913306, 1.475769, 0.637729, -0.997708, -1.172737, -0.752628, -1.230406, -1.369031, -1.706926, 0.889519, -0.354097, 2.076213, -0.862332, 0.229544, -0.347855, -0.142503, 0.792251, 0.353264, 1.137731, -1.046314, -0.394459, 0.289608, 2.183617, 0.751338, -2.040767, -0.833179, 1.173618, -0.015052, -0.333850, 0.622007, 1.140466, 0.129555, 0.112669, 0.047143, 1.604949, -0.591861, -1.123969, 0.414655, 0.514866, 3.112215, -0.273679, -0.842384, 1.197500, -0.417470, -0.289272, 0.356553, 0.352176, 1.748755, -0.636332, -0.219431, -1.275768, 0.821800, 0.411276, -1.084816, -0.104831, 0.978778, -0.079374, -0.758707, -1.041703, -0.811885, 0.568468, 0.142328, -1.442846, -0.740809, -1.390610, 0.960397, 0.641545, -1.344895, 0.377551, 1.243359, 0.323164, 0.790334, 0.318971, 1.204926, 1.008813, -1.542042, -0.512339, -3.494940, 2.970196, 1.192351, -0.276281, 0.961766, -0.304817, -0.085067, -0.454574, 0.936839, -0.275225, 0.846893, -1.131632, 0.282077, -0.431800, 0.614265, 1.436056, 1.008387, -0.041871, -0.276271, 0.661478, -0.937777, -0.131313, -0.914097, -1.772589, -0.380764, 0.127636, 0.117399, -0.417521, 0.581392, -0.467899, 1.401995, 0.657828, -1.243287, -0.272136, -0.642235, -0.061544, 0.040024, -0.768779, 1.344888, 0.067408, -0.300552, 0.807090, -0.222115, -3.132678, 0.293319, 2.168084, -0.322691, -0.405317, 0.144908, 0.459925, -1.140171, -1.965270, 0.777280, -1.382744, -0.431707, -0.148028, 0.074589, -0.004128, -0.826741, -0.582074, -0.624106, -0.173735, 0.068894, -2.155122, 1.139436, 0.543527, 0.707311, 0.592831, 1.143589, -0.822057, 0.197751, -0.078761, 0.154831, 0.982708, -1.766908, 0.009547, -1.667241, -0.742033, -1.793160, 0.487551, -0.013998, 1.326609, -1.084921, -0.987654, -0.827264, -1.869796, 0.753557, 0.462206, -1.814811, -0.756156, 1.033233, 2.057476, -0.700060, 0.972193, -1.499863, 0.633563, -0.334775, -0.859817, -0.109452, -2.183742, -0.047591, -1.268293, 0.197528, -0.324231, 0.138681, 0.440655, 0.904167, 0.656299, 1.502257, 0.413361, 0.946684, -0.433837, -1.734954, 0.880230, -1.216196, 1.118854, 0.124125, 0.354108, 0.374823, -1.280332, 0.931735, 0.228874, 0.650582, -0.937241, 1.865271, 0.971699, -0.727175, 0.035941, 0.731710, 1.070928, -0.065731, 0.016068, -0.662763, -1.645852, 1.397150, -1.617731, -0.588975, 0.474534, -0.466399, 0.337945, 1.484585, 0.967136, 0.379582, -0.747725, 1.635987, -0.591135, -1.706094, -0.241856, -1.180214, 1.967696, -0.778538, -0.148619, 1.000589, 0.221945, 0.822229, 1.416634, 0.662530, 1.315496, 1.237587, 1.549368, -0.372054, -0.064328, 1.692919, -0.631261, 0.446827, 1.141682, 0.979634, -0.613424, -0.224099, -0.089788, -0.792563, 0.974030, -0.016820, -0.261279, -2.080174, 0.479287, -2.069013, 0.003997, -0.976067, 0.624864, -0.519404, -1.217811, -0.850128, -0.509212, 0.351246, 1.303975, 2.022148, 1.721668, -0.230513, 0.577073, 0.846752, -0.042613, 0.616684, 0.556806, 1.412769, -1.594928, 0.443138, -0.970708, 1.583317, -0.991293, -1.655646, -0.266952, 0.605215, 0.443863, -0.950010, 0.287517, 0.404037, 0.380938, -0.326422, -0.869853, -3.260942, -0.159687, -0.585286, -0.261134, -1.438933, 0.037016, 1.200218, 1.172841, 0.387065, -0.061019, -1.915791, 0.455611, -1.069905, 0.042978, 1.858740, -0.406357, -1.502004, 1.522375, 0.787929, 0.249217, 0.673623, -0.031704, -1.506824, 1.470130, -0.367733, 0.314551, 0.687389, -1.721909, -0.005205, -1.293143, 0.033164, 0.003959, -0.095525, 0.405336, -0.430537, -1.250442, -0.038731, -0.743131, -0.087768, -0.612557, -0.461694, -0.527271, 0.598197, 1.032024, -0.638948, 1.544323, -1.565819, 0.957444, 0.963946, 0.169234, 1.257271, -0.530528, -0.995093, 0.497244, 0.928703, -0.534419, 0.250136, 1.127726, 0.034000, 1.409479, 2.575508, 1.352108, -0.187183, 0.401729, -1.443765, 0.445160, 1.091486, 0.011641, 1.351885, 2.625031, 0.319238, 0.224033, -1.333030, -1.583303, -0.562586, -0.289074, -0.696948, 0.657639, 0.440769, 1.455085, 0.372165, -0.499469, -0.526737, -0.140814, 1.153398, 0.511900, -0.342377, -0.426796, 0.642356, -0.609915, 0.614446, 1.366688, 1.288403, 1.621620, -0.430891, 0.388362, 0.033079, 0.571725, 0.252109, -0.206039, -0.472932, 0.360900, 0.969026, 0.775988, 1.251063, -0.792086, -0.657904, -0.785394, -0.859467, 0.770422, 2.618583, -0.174329, -0.519848, -1.766748, -0.909019, -0.420667, 0.410109, -2.156502, 1.123483, 0.427932, -0.816809, 0.322442, -0.269481, 0.210848, 0.248341, -0.122163, -2.050081, 0.137063, 0.233837, -1.047623, -0.491513, -0.315777, 0.145143, -0.037840, 1.063247, -0.978406, 0.305909, 1.539615, -0.752591, -0.398933, 1.659417, -0.018650, 1.646190, -0.609482, 1.385304, -0.824717, -0.131073, -1.987740, -1.099530, -0.447858, -0.629929, -0.833090, -0.480943, -0.412576, 0.136583, -1.563759, 1.148288, 1.133531, -0.662231, 1.281733, 0.584244, -0.536365, -0.594761, -1.700221, -0.653790, -1.280973, -0.545295, -0.627708, -0.639827, 0.036035, -1.412439, 0.586826, -2.069422, -0.989662, 0.827684, 1.129696, -1.145765, -0.274429, 0.625112, -1.378652, 0.422372, 0.486646, -0.116105, 1.642007, -3.108084, -0.128004, 1.866247, -0.536782, -0.715783, -2.136161, -0.967485, 0.738615, 0.302135, 0.469361, 0.092477, -2.030030, -0.955164, -0.392793, 0.282041, -0.161461, 0.736598, 1.081146, 0.195199, 0.296319, -0.310317, 0.975533, -0.658177, 0.069021, -2.309853, 0.683427, 0.611843, 0.963657, -0.302502, -0.962839, 0.460535, 0.116526, 0.403433, -0.785807, 0.443634, -2.392590, 1.463112, -1.296747, 1.300816, 0.233674, -1.186041, -0.221624, -1.593640, -0.500959, -1.441307, 0.647307, 0.729133, 2.141546, -2.192402, -1.631594, -0.028676, -0.026518, 0.256730, -2.148918, 0.331072, 0.043211, 0.866198, -0.702177, 1.580596, 0.967649, 2.396077, -1.440056, 1.031600, -1.558440, 0.406638, -1.604346, -0.160178, 1.928732, -0.366455, 0.141204, 0.087810, -0.449940, 0.727186, 0.567865, 1.196789, -0.237623, -0.192799, -1.283107, 1.791807, -0.195901, -1.552035, 0.308000, 1.009992, -0.979088, 0.533651, -0.049448, 1.249945, -0.806597, -1.041868, -0.333245, -0.148971, -0.246378, 0.388508, 0.856653, 1.435465, 1.571309, 0.552882, -0.951065, 1.196831, 0.331941, 0.162156, -0.480830, 0.242210, 0.667292, 0.883026, 1.004992, 0.049473, 0.926830, -1.043784, 1.475257, -1.773553, -1.767515, 0.384970, 0.495985, 2.247873, -0.374780, -0.218050, -0.468893, 0.615404, -0.977824, -2.056118, 1.297835, 0.429678, 0.967748, 0.489354, -0.610881, -0.827885, -1.853078, 0.169790, -0.808598, 0.777790, 1.504687, 0.137396, 0.131500, 1.981949, -1.315479, 0.440040, 1.541188, -0.022851, -0.237974, -0.446490, 1.867827, 0.715977, -0.312434, -0.495572, 0.160176, 1.110181, -0.412859, -0.619237, -0.648672, 0.650035, 0.419362, 0.242858, -0.661244, -0.807327, -1.005424, -0.169603, -1.227158, -0.993891, 0.642803, 0.091784, 1.777272, 1.469906, 1.605859, 2.148476, -1.481710, 0.885544, 0.556107, 0.717349, 0.638232, 1.429017, 1.430840, -0.800737, 1.213299, 0.963803, 1.649853, 0.644943, 0.549690, 1.281436, 0.556080, 0.883845, 0.455709, 0.875176, 0.277336, 0.139173, -0.753061, -0.790369, -1.334549, 2.365704, -1.716735, -0.412343, 0.171138, -0.600431, -0.113580, -0.882063, 0.431266, 0.859805, 1.993720, 0.087134, -1.715291, 0.040891, 0.837202, -0.367401, 1.597178, 0.379371, -0.553276, -0.194361, -0.984573, -0.639560, -0.389002, -0.194963, -0.105979, -0.379813, 1.158879, -0.485009, -0.456443, -0.008478, -0.129951, -0.338005, -0.855485, 1.883083, -0.638328, 0.669338, 0.246320, -1.106300, -0.150586, -2.072219, 1.296040, -0.843536, 0.615161, -0.391371, 1.312287, 0.733162, -1.284450, 0.080678, -0.161425, 1.616953, -2.267587, 0.438457, 0.095850, -0.225857, 1.612563, -0.431626, 0.483272, -0.804529, 0.388065, -0.135878, 0.007941, 0.235628, 0.602654, 0.799109, -1.022514, 0.265781, -0.520996, 0.514748, -1.280793, 0.161540, -1.151901, 0.224632, -1.812074, -1.374196, 1.201244, -0.242333, 0.285198, -0.335799, 0.085939, 0.763735, 3.433781, 0.527806, 1.208293, 0.160437, -2.301588, -0.128577, 0.890675, 0.107967, 1.659151, 0.602907, 0.613666, -0.997615, 0.089766, 1.519357, 0.342457, 1.556242, -0.176575, 0.700751, 0.182382, 1.294153, 0.581194, -0.912300, 0.779013, -0.385988, 0.867294, -0.327932, -0.860455, 0.886136, 1.250238, -0.251386, 0.734639, -0.527928, 1.161993, 1.060575, 0.583822, -0.337176, -0.714339, -0.711807, 1.310879, 1.224313, 1.427658, 0.111986, 0.394926, -1.447911, -0.047932, 0.836130, 0.278535, 0.111044, 0.828804, 1.828083, 1.202710, -0.647944, 1.496136, -0.366991, 0.264564, 0.682456, -0.571595, 0.142886, -0.410068, 0.579050, -0.416605, 0.389008, -0.214005, 0.452105, -0.722499, 0.414563, -1.287882, 0.434400, 0.475414, 0.402408, 0.721134, 0.625279, -0.917812, 0.829910, -1.273280, -1.189002, -2.007599, 0.583396, 0.041159, -0.378034, -0.632247, 0.998427, 0.504902, -0.348200, -2.090777, -2.028949, 1.328310, -0.308476, -0.432006, 0.530076, -0.636010, 0.369604, 0.828290, 0.690999, -1.012520, 0.980470, 1.071087, 1.109447, 0.089277, -1.268561, 0.599024, 0.415327, 0.948014, 0.539933, -1.637851, -1.963205, 0.334902, -0.517138, 0.537172, 0.614998, -0.818838, 0.532011, -1.388921, 1.140687, 0.023902, 1.088440, 1.163957, 0.295457, 1.174157, -0.847500, -0.167534, 0.174948, 0.286844, 0.101167, 0.724233, -0.149970, -0.697497, 0.149954, -0.883345, -0.804444, -0.367836, -1.022286, 0.911859, -0.600642, -0.253286, 0.631167, -0.466737, 0.263938, -0.375434, 0.400988, -0.067286, 1.317547, -0.606815, -0.881476, -0.231443, -1.579414, 1.869892, -1.075857, -0.478123, -1.531588, -0.668871, -0.085817, 0.744501, -2.457935, 0.157192, 0.679550, -1.115324, -1.434248, 0.876260, -0.256425, 0.829779, 0.784787, -1.569260, 2.092673, -0.880518, 2.306137, 0.337120, -1.584850, -0.037218, -1.033442, 0.461906, -0.342428, 0.128699, -1.850643, -1.417094, -0.848967, 0.940517, 1.061747, 0.586150, 0.369965, 0.292287, -0.871249, -0.379161, -0.949885, -0.316175, -0.363976, -1.103951, 0.638532, -1.631902, -0.655155, 1.048806, 2.264644, 0.171992, 0.259937, -0.866850, 0.455053, 1.079436, 0.469649, -0.862083, -0.772503, -0.311175, 0.290997, 0.084981, -0.794329, -0.848558, -0.443129, -0.855902, -0.744235, 0.283389, -0.977369, 0.018512, 0.308764, 1.742928, -0.771883, -1.044350, -1.180114, -0.807714, -0.712354, -0.009066, 1.756420, 0.911586, -0.536005, -1.423157, -1.000850, 2.008628, -1.011761, -1.969266, -0.239706, -0.933498, 1.007841, 0.928734, 0.985839, -1.013609, -0.569648, -1.840642, 1.422121, -0.182127, -1.804075, -1.747769, -1.180761, 0.674315, -0.777466, -1.195624, -0.199987, -1.605712, 2.825786, -0.676643, -0.736513, -2.855901, 0.972451, -1.313022, 0.942516, 0.093836, 1.984980, 1.383736, -1.199409, 0.468913, 1.012416, 0.931257, -1.298579, 0.428848, -0.220732, -0.095419, -1.019085, -0.578292, -0.834442, -0.553882, 1.164513, 1.830658, 0.738826, -0.041141, 0.010243, 0.684312, 1.065866, -0.034941, -1.622813, 1.101196, -1.447571, 0.179526, 0.122613, -0.900722, 1.546346, -0.393113, -0.770695, -0.701626, -1.229136, 0.540753, -0.824223, 1.833744, -0.302885, 0.124438, 0.617691, -1.463573, -1.183290, -0.605214, -0.459372, -0.700457, 1.110836, 0.466711, -2.236424, -0.750774, -0.481110, -1.252076, 1.101128, -1.650520, -2.257799, 0.562575, -1.714915, -0.138821, 0.821182, -1.592103, 1.197915, -0.898488, 0.302395, -0.708149, -1.498478, 0.881304, 0.700794, 0.345286, 1.014741, -1.593535, -2.013865, 1.728748, -0.135692, 0.930107, -0.820617, 0.026874, -1.930124, 2.700151, 0.891432, -0.145520, -1.069120, 1.274816, -0.492449, 0.306325, 0.418526, 1.218977, -1.276043, -1.263130, -0.753779, 0.389440, -1.015473, -1.587723, -0.089625, -0.084135, 2.111999, 0.160373, -1.461246, -0.644928, -0.728250, -0.121916, -1.254095, 0.475542, 0.486681, 1.500584, -1.211749, 0.431825, 0.363983, 1.414814, -0.863432, -0.362260, -1.629633, 0.313051, -0.778438, -0.938155, -2.192276, -0.339102, -0.805492, 1.086519, -0.747436, 0.261136, -0.497273, -0.305034, -0.300747, -1.828027, 1.639252, -0.808834, -2.095942, -0.386181, -0.074562, 0.739828, 1.030871, 1.048177, 1.076433, -0.807230, -0.951388, -0.385629, -1.668718, -0.511549, 0.180240, -0.188116, 0.950435, -1.735661, -1.275971, -0.162901, 0.772043, 0.660407, -0.711768, 1.989772, 0.304233, 2.586478, -0.967929, 0.642407, -0.681358, -1.026007, -1.144058, -0.399421, 0.207902, 0.760064, 0.712910, 0.198871, -0.646294, 1.095235, 0.327370, -0.901982, -0.445791, 0.935103, 2.652765, 0.554392, 0.590205, -0.627425, 0.904969, -0.000319, -0.363271, -0.783494, 0.678674, -1.262784, -0.289933, -0.473156, 0.876313, 0.885079, -0.985610, -1.154753, 0.046831, 1.662890, -1.920565, 1.396757, 0.414372, 0.530894, -0.131706, 0.603347, -1.264205, -0.744141, 1.897450, -0.951547, 0.179549, -1.100138, -1.318228, 0.470643, -1.870068, -0.572832, -1.048198, 0.953842, 0.711492, 0.459256, -0.031690, -1.226675, 0.315429, -0.999329, -0.274379, -1.416304, -0.443469, 0.078901, 0.002862, 0.729578, -0.376021, -0.603748, 2.383315, -1.025854, 0.194282, -0.067048, -0.984640, 1.169043, -0.251019, -1.532545, -0.746885, 1.410087, -0.443665, -0.175857, -0.273662, 0.863418, 0.862249, 0.802349, 0.703123, 0.971407, -0.577774, -0.757201, 0.083554, 0.042557, -1.039913, 0.259161, 2.039142, 1.390831, 0.670925, -1.484718, 0.824163, 0.476919, -0.217069, 1.442253, -0.712988, 0.637698, 0.864159, -0.092024, -0.564178, -0.484391, 1.253750, 0.695249, -1.395388, 0.932556, 0.159658, 0.441510, -0.416482, -1.163350, 1.897362, -0.644310, 1.599509, 0.312932, 0.008405, -0.871520, -1.471825, -0.672398, -0.338637, 0.148145, 1.280103, -0.755753, -0.046272, -0.765933, 0.031676, 1.347214, -0.995345, -0.697547, -0.249083, -1.171885, -0.656948, -0.730077, 0.177574, -0.509384, 0.955700, 1.031737, 0.387011, -0.477425, -1.118183, -0.339461, -0.849151, 1.244257, 0.366522, 0.890652, -0.023558, -0.696376, 1.598487, -1.256609, -0.423351, -0.391514, 1.230060, -0.710916, -1.315505, -0.587783, 1.954795, -0.395267, 1.210412, -0.066768, -0.097469, -0.425310, 0.299495, 0.679480, -1.247764, 0.325933, 0.206238, 0.752360, 0.189645, -0.866352, -0.354004, 0.817780, -1.962675, -0.866930, 0.558272, -0.542197, 1.047554, -0.324633, 0.086634, -2.251025, 0.977707, 0.871280, -0.847600, -1.259875, -0.869461, 2.245332, 0.515240, 0.530367, -1.700662, 0.825771, -0.357679, -1.941503, 0.954512, 1.176670, 1.406952, -0.912146, 0.752518, -0.779604, 0.210123, -1.917050, -0.161643, -0.530571, -0.310055, 0.904637, -0.764179, -0.593298, 1.261778, 0.126367, 1.195165, -0.760148, 0.240767, 0.317241, 1.506749, -1.051724, 0.771141, -0.345891, 1.254328, -0.786451, 0.427449, 0.005480, -1.257814, 0.027594, 1.751105, -1.673667, 1.829800, 1.009611, -0.322554, -0.759592, -0.185050, 0.235965, 0.295082, 0.412257, 1.453477, 0.747958, 1.578566, 1.838969, 0.439152, -1.850550, 0.843941, -0.419722, 0.535404, 0.245631, -1.279973, -1.415028, 0.295772, 1.134589, 0.845489, 1.857125, 0.546686, -0.494079, -0.741180, -0.740906, 0.282494, 0.514529, -0.817479, 0.606780, -1.769198, 0.334035, 1.484747, 2.013929, 1.141725, 0.345475, 1.587229, 0.542341, -1.307993, -1.001196, -0.115745, 1.097439, -0.416687, -0.957713, 0.984779, -0.882273, 0.227464, 1.948078, -0.594893, 0.273279, 0.150351, -0.291597, -0.581576, -0.314636, -0.506804, -0.198655, 0.488624, -0.490262, 0.615736, 0.358045, -0.468407, -2.010782, -0.241800, 1.026380, 0.406348, -0.229901, 0.507281, 0.187209, -0.123368, -1.006037, 0.675560, 0.844457, -0.181800, -0.209714, 0.786588, -1.318712, 0.478101, 0.251958, -0.322600, -0.252246, 1.048908, -2.297730, 0.126493, 0.024182, 1.411635, 0.740772, -1.391004, -1.270932, -0.219291, 0.395338, 0.817734, -0.122590, -0.833913, 0.720808, -0.528876, -0.043212, -0.604210, 1.175467, 0.951279, 2.458029, 1.474258, 0.430827, 0.805542, -0.397151, 1.631890, -0.551148, 0.539333, 0.946067, 1.177141, -0.343673, 0.445176, 0.999059, 1.667819, -0.096370, -0.344939, 0.097185, 0.054085, 1.037682, -1.665685, 2.161103, -0.103231, 1.970680, -0.883356, 0.012482, 0.008825, -0.210454, -0.219952, -1.555556, 1.161943, -1.176715, 0.849836, 0.641285, -1.106487, 1.429574, -0.983895, 0.652997, -1.130564, -0.653551, 1.123931, -0.145873, 1.632911, 1.889780, -0.792106, 3.456667, -0.221773, 0.136027, 0.801799, -0.944674, 0.016617, -1.219484, -0.231857, -0.127880, -0.222590, 2.182716, -0.428782, -0.108217, 0.342682, -1.094192, 1.169059, -1.166684, -0.570844, -1.349328, 0.286315, -0.131264, 2.031071, -0.023460, 1.540360, -0.158389, 0.911663, 0.777800, -0.227047, 1.892958, 0.065559, -0.367824, -0.363732, 0.864146, -0.083803, -0.599298, 1.012201, -0.333190, 0.316313, 0.690091, 0.019004, 1.718525, 1.370958, 1.684054, -1.092116, -1.554388, -0.675437, 1.160529, 1.698653, -0.351412, 0.133481, -1.242962, 1.243482, 0.391904, -0.074800, 0.060452, 0.644271, 0.291430, 0.434484, -0.474073, -0.995153, 0.449744, -0.399056, -0.877778, 1.176558, -0.255713, -0.363824, -0.749723, 2.022985, -0.497326, 0.396572, 1.266560, 0.835956, 1.743168, 0.503253, -0.978647, -0.482949, -0.603436, 0.493102, 0.510286, -1.039662, -0.641933, -0.106287, -0.582589, 0.579312, 1.523883, -1.706522, 1.513031, -0.920179, 0.150480, -0.422607, -0.417221, -0.312149, 0.542253, -0.349362, 1.441691, 0.685114, 1.525167, 2.009351, -1.868999, 1.704044, -0.223708, 0.168386, 0.969190, -0.248081, 2.193197, 1.560844, 0.386640, -0.213051, -0.184968, 0.762360, -1.463792, -0.922307, -0.288376, -0.196009, 0.156046, 2.172352, -0.848300, 1.220320, -0.792702, -1.136692, 2.215691, -0.153864, 0.286069, -0.812594, 0.298075, -1.202469, -0.236214, 0.705619, -1.564377, 1.530232, 0.414244, 1.805495, 0.105598, -1.559564, -0.568114, -0.424235, -0.982380, -1.540543, -0.311166, -0.072925, -0.310368, 0.221844, 0.570143, -0.243554, 1.697498, 0.154711, -0.020639, -1.390434, -0.771523, 0.200474, -1.208269, 0.051736, -0.304022, 0.268504, 0.866436, -1.364017, 1.201893, -0.761123, -2.406745, 2.427450, 0.864836, -0.472625, -0.074018, 0.948955, 0.271959, -0.149228, -0.011204, -1.012391, -0.351132, 1.311660, 2.006977, -0.471588, 1.159881, 1.105405, -0.087754, -1.319337, -0.243051, 0.005901, -0.018347, 1.414414, -0.732186, -1.197505, -0.772784, 0.104032, -1.161635, 1.105085, 1.020762, 0.113826, -1.067081, 0.611506, -0.955578, -1.317364, -0.269073, -1.401878, 0.465963, 1.405141, -1.050770, -0.979611, -0.982172, -0.564593, 0.990537, -1.177681, 0.533569, -0.989890, -0.301936, -0.793206, 2.938584, 1.389317, 0.826620, 1.308187, 1.630329, 2.015947, 0.800719, 0.561168, 0.361277, -0.889396, -1.412912, 0.547316, 0.530411, -0.586274, 0.990522, 0.779570, -2.305222, -1.747106, 0.242689, -1.076374, 0.011981, 1.200388, 0.767312, 0.273618, -0.377952, -0.237595, -0.615989, 0.001210, 0.835875, -2.594476, -0.605346, -2.689341, 0.290512, -0.441304, -0.657569, 0.665092, 0.288459, -0.877329, -0.369063, 1.771894, -1.892782, -0.064206, -0.743726, 0.506057, 0.329482, -2.479336, -0.009460, -1.408758, 0.260391, 1.044970, 0.578361, 0.190446, 1.581922, 0.446682, -1.233211, -0.243590, -1.762073, -0.631644, -0.358745, -0.963416, 0.881225, 0.262626, -1.100581, 0.913802, -0.172814, -1.403307, -0.601189, -0.284063, -0.266015, -0.648676, -0.149352, -1.739343, 0.093857, -0.991921, -1.045012, -0.145028, -0.626844, 1.402895, -0.498727, -0.602846, 0.069445, -1.037642, 0.269368, 1.276272, 0.895059, -1.095688, 1.328289, -1.504636, -1.740054, 1.146310, 0.079384, -0.145240, -1.118396, -1.519803, 0.738284, 0.575878, 0.289376, -0.397021, -0.231209, -0.613804, -0.572289, -1.420430, -0.771788, -0.457950, 1.497076, -0.936089, -1.090223, 0.142812, 0.739109, -0.521376, 1.921055, 2.074366, -0.780748, -0.740247, 0.263445, -0.702362, 1.251071, -0.254546, 0.064331, -0.653332, 0.686888, -0.402335, 0.137843, 0.317650, -0.674416, 1.089572, -2.001667, 0.261383, -2.432359, -1.073638, 0.924505, -0.611932, -0.016329, 1.397536, 0.633203, 1.861943, -0.345041, -0.533164, 0.092839, 0.863224, -1.178895, -0.661153, 0.094856, -0.238199, -0.786736, 2.116413, 0.202473, 1.559708, -0.385741, 0.393182, 0.624726, 1.192813, -0.558253, -0.002165, 2.342285, -1.334071, 0.778868, 1.551653, -0.310800, 0.629938, 0.403468, -0.818397, -1.650094, 0.786572, 0.708272, 0.172408, -1.151766, -1.494061, 1.569803, 1.020125, -0.352174, 0.426373, 0.245647, 0.030273, -0.342831, 0.320092, -0.624147, -1.586880, -0.169697, -1.221789, -0.009831, -0.527457, -1.079567, 0.838521, -2.387399, 0.644446, 1.144450, -0.891460, -1.048637, -0.762541, 0.162508, 1.282670, -0.866938, -1.618321, 0.787862, 0.539111, -1.129999, 0.210551, 0.464914, -1.056394, 1.151830, -0.774927, 0.689434, -1.768079, 1.548977, 1.405319, -0.806634, 0.575779, -0.279608, -0.018987, -1.263172, -2.508953, -0.646288, -0.209856, 1.785247, 0.544763, 0.748403, 0.220679, 0.653000, 1.398443, -1.383224, -0.508613, -0.245704, -1.042482, 0.758246, -0.144704, -1.094316, 0.401564, -0.485318, 0.374911, -1.135903, -0.912331, 1.044561, 0.159319, -0.513296, -0.467447, -1.043929, 0.166430, 1.407784, -2.331405, 0.280403, -0.185867, -0.822492, -0.097974, -1.790011, -0.510001, -0.091132, -0.252083, -0.226109, -0.927753, 0.793726, -2.979017, -0.866686, 0.524403, 0.265168, 0.069603, -0.385337, 1.995853, 0.722967, -1.061317, 0.166409, 0.811243, -1.101861, -1.492604, 0.061583, 0.491642, 1.291859, -0.093255, -0.619405, 0.866374, -0.005581, -0.537852, -1.836536, -1.205672, -2.186145, 0.056309, -1.003451, -1.042287, 0.790675, 0.658007, 0.041673, 0.642420, -0.491615, 0.328487, -0.664859, -1.245280, 0.301240, -1.306553, -0.066193, -1.213869, 0.719663, -0.643859, -0.703544, 1.629364, 2.064773, 1.101099, -0.897925, -1.757104, -0.333312, 1.045076, 0.196017, -0.411733, 0.382502, -0.521659, -0.232099, -0.640783, -0.511079, 0.102373, 0.045885, -1.528029, 0.722745, 1.749604, -1.119098, -1.872649, -0.131637, -2.709226, 0.853861, -0.172975, 1.625835, -0.183188, -0.835186, -1.079809, 0.819302, 0.230010, -1.120481, 1.469655, -0.155382, 0.342588, 1.341278, 1.198541, -1.286344, 1.414655, -1.719334, 0.346972, -0.558216, -1.274028, -1.233183, 0.181575, 0.446731, -0.100768, 0.144525, 2.534137, 2.161174, 0.239755, -0.687516, -0.544302, -0.452608, -2.161171, -0.404217, -1.442052, 1.055937, 1.385595, 0.330517, 1.209594, -1.773843, -0.265697, 0.510686, 0.649864, -0.030004, 0.081175, 0.018087, -0.983806, 0.422140, 0.066382, -0.620888, 1.182440, -1.047266, -0.518283, 1.311202, -0.087449, -1.145394, -0.225852, -0.308846, 0.179881, 0.381322, -0.283433, 0.509216, 0.935401, -1.246283, 0.118730, -0.792394, -0.376052, 0.495221, 0.856845, 0.218540, 0.019177, -0.346142, 0.115038, -1.376661, 0.279173, 0.680174, 0.684273, -0.165061, 2.111520, -0.528467, -0.153781, -0.756672, 0.332011, -0.621013, 0.978311, 1.432107, -0.191389, 0.008522, -0.009679, 0.609842, 1.520530, -1.849660, -1.212649, 0.955747, 1.135381, 0.825120, -1.131539, 0.452970, 1.008738, 1.031992, 0.027258, 1.180806, 0.103556, -0.784741, 0.853868, 1.114400, 0.058112, -1.399769, 0.094442, 0.927654, 2.518733, 1.067027, 0.267126, 1.309944, 0.739296, 0.284874, 1.724814, -0.169933, -0.222427, 0.371626, -0.794669, 0.187498, -0.157563, -0.211124, -1.571893, 1.503285, 1.198647, 0.197554, 2.445324, -0.844976, -2.397839, -0.914768, -1.062317, -1.127955, -0.776150, 0.450738, -0.594436, 0.225415, 0.911002, 0.453230, -0.055719, -1.532305, 1.613091, 1.181698, 0.033698, 0.540565, 1.604182, -2.461747, -0.641758, -2.294108, 1.298015, -0.023356, 1.030994, -0.678340, 0.981366, 1.432154, -0.650748, 0.235064, 0.545277, -0.665721, 1.258673, 0.787439, -0.219782, 0.414722, 1.058879, -1.526954, 0.389662, 0.835126, -0.244341, -0.181120, -0.282465, -0.237960, -0.448095, 0.240473, -2.019550, 1.215445, 0.917394, 0.682809, 0.196404, 0.264810, 0.735857, -0.945449, -0.749155, 0.390339, -0.940055, 0.885428, -1.581938, 0.430305, 0.734262, 0.321065, -0.822185, -0.508717, -1.758075, -0.992771, 0.110887, 1.982504, -0.265591, 0.532067, 1.443049, 0.682858, -0.722571, -2.386502, 0.677531, 0.269185, -2.310928, -0.646305, 0.924777, 0.089968, -1.267526, -0.631512, -1.116758, 0.879311, -0.175255, -0.165420, -0.076605, -0.263711, 1.040763, 0.320610, -0.009111, -2.704354, -0.920989, 0.394061, 0.520989, -0.841979, 1.923000, -0.785580, -0.894170, -1.424044, 0.236100, -2.076398, 0.138102, -1.759288, -2.242007, -0.029073, -0.376265, 0.065345, 2.229038, 0.915596, 0.170163, 1.126333, -1.067145, 0.867874, 0.591567, -1.152743, 0.018452, 1.837813, -0.456632, -0.375272, 0.668393, -0.707088, 0.005215, 0.662197, -1.281470, 0.616371, -1.548159, 0.614109, -0.838712, -1.078140, 0.619929, -0.478218, -0.892017, 0.511257, 0.351496, -0.661438, 0.994830, 0.343127, 0.399570, -2.255618, -0.891183, 0.224357, 1.166913, -0.984331, -0.237528, -0.084211, -0.312791, 0.738695, 0.505534, -0.361105, -0.774845, 0.449362, 0.686842, -0.074726, -0.573097, -1.121618, 0.487796, 0.506624, -1.006478, -0.319570, 1.283556, 0.359863, -0.479214, 1.065949, 0.242687, -2.413052, -1.216309, -0.342408, 0.865650, -0.099093, 0.741506, -0.307273, 1.849183, 1.132783, 0.487726, -0.235739, -0.592223, 1.536129, 0.460119, -0.344256, -0.926101, 0.205493, -1.565211, -0.024959, 0.464632, -0.882805, -1.092168, 0.710675, 0.228911, -1.974638, 0.073848, 0.412322, -0.541086, -0.853606, 1.308633, -0.338823, 1.230099, -0.264220, 0.275475, -0.016036, 0.432542, -0.319475, -0.202673, -0.017780, -0.770686, 1.368987, -1.068532, -0.392750, 0.241542, -0.144577, 0.755571, 0.087072, 0.920798, 0.669974, -0.452926, 1.942625, 0.698457, 0.157775, 0.176277, -0.023245, 0.444727, 0.702609, -1.604793, -0.665528, 0.065817, -2.200923, 1.897056, 1.565023, -0.071902, -1.532262, 1.631939, 0.459703, 0.288098, -0.305391, 0.821389, -0.028443, -1.068733, -0.227022, 1.532375, -0.655598, 0.770167, -1.019297, -0.315878, -0.905381, -2.429273, -0.708607, -0.755812, 1.564258, -0.040460, 0.573597, 0.775374, 0.805886, 0.657319, -0.424278, 1.705134, 1.582858, 0.509584, 0.577701, -0.071238, -1.191738, -0.205205, -0.662737, -0.502952, 0.973007, 1.643171, 0.163531, 0.448876, -0.183908, 0.301271, 1.090201, -0.299617, 0.567865, 0.067040, 1.159666, -0.115703, -1.337157, -0.661583, 0.996431, 1.780476, 0.227577, -1.523239, 1.454205, 0.179445, -0.706854, 0.019392, 0.782142, 0.773142, -0.338253, -0.170509, 1.285505, 1.362626, -0.741832, 0.325562, -0.087308, -0.511782, -0.828990, 0.254954, -0.393790, -0.047856, 0.528034, -1.835352, 0.791679, -0.606320, -0.757543, -0.221997, -0.775215, -2.018602, 2.065582, -0.669218, -0.305895, 0.626561, -2.138089, 1.201468, -0.653646, 0.412434, 1.172744, -0.609076, -0.603106, -0.796588, 0.124110, 1.944400, 0.929674, 0.111112, -0.435089, -0.548048, -1.176471, 0.708067, -0.703525, 0.872202, -1.359382, -0.833910}, + { -0.366051, 1.090044, 0.866319, -1.157692, -1.128796, 1.541931, -1.350312, 1.333806, 1.694647, 0.457108, -0.111000, -1.172261, -0.753790, 1.331515, -0.027152, 0.747205, -0.658500, -0.038192, 1.525249, -0.759295, 1.250606, -0.340413, -1.127007, 1.406623, -0.706422, 0.292796, 1.631768, 2.215634, 0.073980, -0.385112, 0.506362, -0.202795, 0.755789, -1.867381, -0.273771, 0.503473, 1.508404, -0.468469, 1.668037, -0.251509, -0.785674, -1.111004, -0.960976, -1.322358, -1.545723, 1.471144, -0.506242, -0.588949, -0.313601, 1.139427, 1.579125, 0.652714, -0.901777, 0.656510, -0.288514, 1.452325, -0.302991, 1.330756, 2.886968, 0.023464, 0.835104, -0.885361, 1.157006, -2.515794, -0.574478, 0.328060, -1.709359, -0.494329, 0.598770, -0.747478, 1.011745, 1.327282, -0.326995, -1.018029, 0.869699, -1.157081, 1.163211, 0.984707, 0.297095, 0.329330, -0.890085, 0.029351, 0.399321, -0.042496, 1.026399, -0.837723, -0.190327, 1.047189, 0.184283, 0.411270, 0.301015, 1.419925, 0.110397, 0.315591, -0.981933, -0.170388, 0.612171, -1.051599, -0.060530, 0.390152, 1.361701, -0.939189, 0.894472, -0.715243, -0.510507, 0.025623, 1.553985, -0.040116, 1.079201, 0.386709, -0.336056, -0.869779, -1.411344, 0.096694, -1.483401, 1.776198, 0.237811, -0.026078, 0.857311, -0.718028, -0.124715, 0.040444, -1.939897, -0.006549, 0.231204, -1.953128, -0.552907, 1.079684, 1.235623, 1.523048, -0.308990, 0.989936, -1.130399, -0.647225, -0.647576, -0.964932, -0.558924, -0.038719, 1.105535, 0.149483, 1.006351, -1.314417, 0.389194, 1.346200, -1.696851, 0.970115, -0.137362, 1.871246, 1.547609, 0.802342, -0.763129, -0.293492, -0.091770, -0.473747, -0.245311, 1.169244, -1.430883, 0.049332, -1.836761, -1.351445, -0.212866, -0.182219, 2.134880, -0.518474, -1.587803, 0.309249, -0.367516, -0.191881, -0.503828, -0.679150, -1.493666, -1.162391, 0.832011, 1.911391, -0.162675, 1.017089, 0.032120, -0.107554, -0.088736, 0.275411, -0.678826, 1.432165, 0.365810, 0.622105, 0.506559, -0.318611, 0.971903, 0.525363, -0.445594, 1.876652, -1.149562, -0.463688, 2.733772, -0.764278, -0.449677, 0.302581, -0.240802, 0.190044, 1.008196, -0.278168, 1.065394, -0.650817, -0.101829, 2.310449, -0.039349, -0.503874, 1.112140, -0.235511, -1.212259, -1.348459, 1.387797, -0.952093, -0.180724, -1.222137, -1.093086, -0.178448, 1.269866, -0.190811, 0.650464, 0.778309, -0.050321, 0.380407, 0.161355, 1.421648, 2.433857, 2.583800, -1.573436, 0.448591, 0.110533, -1.603465, 0.740921, 0.289418, -1.414146, -0.624459, -0.593682, 0.916803, -1.701631, 0.241922, -0.543003, 1.188700, 1.906490, 0.481122, -0.768427, -0.953898, 2.102781, 0.618356, -0.336548, -0.572326, 0.606568, 0.491024, 0.380272, -0.022026, 0.523972, -0.954023, -0.877209, -0.224495, 0.432683, -0.254900, -0.774008, -1.607907, -0.720620, -0.604274, 1.678520, 1.913163, 0.159356, -1.410313, 0.197388, 1.169798, 0.903142, 0.039011, 0.144807, 2.458497, -1.001692, -0.505731, 1.414980, 0.832307, 0.554467, 1.206977, -1.397985, -0.592895, 2.600739, -0.416195, -0.033741, 0.451166, 1.512583, 1.053435, -1.479246, -0.142051, 0.975982, 0.311530, 0.487769, -0.323924, 0.348971, 0.799994, -0.060661, 1.669826, 0.582834, 0.011219, -1.827596, -0.489834, -0.820367, -1.095741, -0.967043, 1.146245, -0.020773, -0.041144, 0.815911, 0.721984, 0.252552, 0.870835, 0.255693, 1.718572, -1.245382, 0.587540, 0.357072, 0.060316, -2.369084, 0.227770, -0.223617, 0.033238, 0.292996, -0.595448, 0.075100, 0.349034, -0.580471, -0.636505, -1.066613, -1.429018, 1.742048, -0.667394, 0.679725, 1.340292, 0.490123, -0.563744, -0.495447, -0.463659, 0.680997, -0.267053, 0.958029, 0.013707, 0.709109, -0.390414, 0.719052, -0.423561, -0.090128, -0.733675, 0.132490, -1.410537, -0.524790, 1.193208, -1.036264, 0.011977, -1.313109, -1.323276, 1.121715, 0.418580, -0.880143, 1.663108, 0.355192, -0.326285, 1.055457, -0.800780, -0.133384, -0.212181, 0.272341, -0.555156, -1.064138, 0.755548, 1.491287, -0.501005, 0.305670, 2.249164, 0.729153, -0.542153, 1.753567, 0.403875, 1.621784, -0.150918, -0.949804, -0.820128, -0.497204, -0.082337, 0.106560, -0.031992, 0.430473, 0.103075, 0.383675, -1.641249, 0.462108, 0.095299, -0.188685, -0.489998, -0.470622, -0.400630, 0.950855, -1.671221, -0.851781, -0.962811, -0.323219, -0.772624, 0.288847, -1.147847, 0.541159, -1.650323, 0.930566, -0.537825, -0.194494, 0.067336, 0.530044, 0.415645, -1.302154, -0.638851, 0.251781, 0.447008, 1.781901, 0.609136, -0.342385, 0.262713, 0.939617, -0.111206, 0.130623, 0.921171, -0.454378, -0.931573, 0.291690, 0.132114, 0.346790, 0.083356, -0.086598, -0.154961, -1.116497, -0.499442, -0.844005, 1.524551, 0.680117, -2.055838, 0.434303, -0.104819, -0.839391, -0.089037, 1.341437, 1.073892, 1.198432, -0.211229, 1.516555, 0.491887, 0.397480, 0.602591, -0.199075, -0.464708, 0.123884, -0.285974, 1.035733, 1.375628, 0.868683, 1.118244, -0.196603, -1.484560, 0.413828, 0.221042, -0.212243, -0.358806, 2.159950, -1.081131, 0.734749, -0.967876, 0.483122, 0.331686, 0.160346, 2.498008, 0.958881, 1.340358, 1.147135, -0.450397, 2.073919, 1.004491, -0.386724, -0.382245, 0.865120, 0.970890, 0.188061, 0.254678, 0.097065, -1.364824, -1.984393, 1.262353, 0.615119, 1.384209, -1.461402, -0.175372, -0.183393, -1.903769, 0.072977, 0.767290, 0.200107, -0.096740, -0.602840, 0.824492, -0.355718, -0.789418, -0.371401, -0.483612, -1.464046, 0.158438, 0.039026, 1.439314, 0.183182, -0.261420, -1.548254, -0.193097, -1.471828, 0.202734, -0.491591, -1.269838, 0.316289, -0.517476, -0.569726, -1.944641, 0.402780, 1.515877, 0.506689, -0.443737, -1.154531, -1.311475, 0.366058, 0.246239, 0.455154, 0.631679, -1.170954, -0.380020, 0.486398, -1.016393, -0.519378, -0.424926, -1.790598, 0.473614, 0.051159, -0.173950, 0.852429, 0.571114, -0.756598, 0.874593, 0.588289, -0.007917, -0.465132, -0.473911, -1.321447, 0.527671, 1.465970, -0.607841, -1.685049, 0.023688, 0.472908, -0.240533, 0.106455, -0.234273, -1.186065, 1.037140, 0.143860, -0.567111, -1.168850, -0.076105, 1.113482, -0.642468, 0.548264, -0.904635, 0.772669, -0.863736, 0.200474, -0.829202, 0.979016, -0.486663, 0.332465, -0.583737, -0.044128, 0.276428, 0.954208, -0.068546, -0.832858, -1.270139, 2.136811, 0.590467, -0.624761, -1.480334, 1.382104, -1.602011, -0.793466, -0.906890, 0.376001, 0.492588, 1.071393, -0.067113, -1.398913, 1.175812, 0.946857, 1.774585, 0.401990, 0.255106, -0.942760, 0.469706, -0.464059, -1.150043, 0.255540, 1.469347, -2.037062, -0.373867, -0.650264, 0.552214, -0.664573, 0.533174, 0.321023, 1.534882, -0.680650, 2.482328, -0.481479, 0.448310, -0.581476, -1.514262, 0.277445, -0.838904, -1.476984, -0.430568, -0.220664, -0.944887, -0.818019, -1.135972, -0.026249, 0.958074, 0.617705, 0.494235, -0.423978, 2.756689, 0.253280, 0.065789, 0.473021, -0.459397, -0.142948, -1.815069, 0.322057, 0.518124, 1.449641, 1.918943, 0.062592, -0.075669, 1.611980, -0.860131, 0.147282, -0.447477, 0.875886, -0.762018, -1.701572, 0.272824, 0.905363, -2.514226, -1.389881, -1.206337, -0.196696, -1.372550, 1.582245, 0.140760, -0.689306, -0.659299, -0.258320, 1.030984, -2.551895, 0.679386, 0.165588, 0.561277, 0.173679, 0.260028, -1.245822, 0.925928, 0.988071, 0.097116, -0.051939, -0.539584, -1.237677, 1.125789, 1.874041, 1.241448, 0.989269, -0.217760, -1.631286, -1.552263, 1.123045, 0.860963, 0.920692, 0.377092, 1.325692, 1.106578, -0.508420, 0.592198, 0.992600, -0.393067, 0.206730, 0.752042, 0.851183, 0.866981, -0.305114, 0.694478, 0.606522, -2.346379, -0.607023, -1.474387, -0.494714, -0.539259, -0.999210, 1.528820, 0.166750, -0.131750, 0.478981, 0.930009, 0.214593, 0.692389, 0.086775, 1.497250, 0.858509, 0.861626, 0.649618, -1.482740, -0.656958, 2.416242, -0.493451, 0.177911, 0.505277, -0.130259, 2.379736, -0.576178, 1.187565, -0.576931, -1.132377, 0.395463, -1.151024, -0.920281, 1.260511, -1.110756, 1.529079, 0.458472, 0.830109, -0.039647, -0.080383, 1.122112, -0.274819, 1.092939, -1.546443, 0.255672, 1.235009, -0.380847, 0.321383, -0.443796, 0.286741, -0.312062, 0.946869, 1.277352, 0.149270, 1.595581, 0.559365, -0.290963, -0.664620, -1.175728, -0.059714, -0.332855, -0.401577, 1.317238, -0.548539, 0.263354, -0.275134, 0.482188, 1.430070, 0.069831, -0.538429, 0.360160, -0.529170, -0.980606, -1.526071, 2.679397, -1.235846, -0.669099, -1.724909, 1.029704, 0.098813, 0.335976, -0.945628, 0.394371, 0.233446, 0.835115, 0.588741, 0.393339, -0.093629, 1.026724, 0.742848, -0.703165, 1.227853, 1.734061, 0.770439, -0.266471, -1.082233, -1.157477, -0.866743, 0.229048, 0.893650, 1.320832, -0.858671, 0.141810, 0.796965, -0.577622, 0.551456, -0.917431, -1.122053, -1.237289, -0.651291, -0.461301, -0.703822, -0.056861, 0.977100, 0.540449, -0.347926, 1.112978, -1.307661, -0.381739, 0.954460, -0.055147, -2.145001, -0.296021, 0.389547, -0.158820, -1.297863, 0.583484, 1.466881, 0.509633, -1.163055, 0.825659, 0.644911, 0.082810, -1.322625, 1.326049, -0.805257, 0.835166, -0.827975, 0.767160, -0.023294, -0.095388, -0.777284, -0.113734, 0.504145, -2.348214, 0.358429, 1.453401, 0.157792, 0.375178, -0.494533, 1.136741, -0.172614, -1.308590, -1.240380, -0.293492, -1.762733, 0.499742, 0.648316, -0.306742, 1.064501, 2.588493, 1.534481, -0.068430, 0.628313, -1.202221, 0.751400, -0.611287, -0.285582, 0.621840, 1.118552, -1.304569, 0.338408, 0.634245, 0.727070, 1.351708, 1.906642, -1.245493, 0.544085, 0.023567, 0.822136, -0.225659, -0.554759, 1.078285, -0.487821, 0.350217, -1.328078, -1.516463, 0.379319, 0.841175, -0.803244, -2.133249, 0.043919, -1.727119, 0.712188, 0.048582, -1.138496, -0.441502, 0.470729, 0.101948, -1.268373, 0.462844, -0.536101, -0.483177, 0.209565, -1.645566, -0.102030, 2.304646, 1.200114, -0.418676, 1.505637, -0.294857, -0.202662, -1.222147, 0.313015, -0.161851, -0.029240, -0.023564, 0.067814, -0.741534, -0.666548, 0.490464, 1.407186, 0.510670, -0.308920, 1.162411, -1.660865, -0.167916, -1.449202, 2.360460, 1.179640, 0.216388, -0.157080, -0.657975, 0.374985, -0.607038, -0.140700, -0.855956, 0.199556, -2.110195, 0.438510, -0.377595, 0.290620, 1.005258, -0.731770, -1.205673, -1.022828, 0.060198, -0.478521, 0.387020, 0.073045, -0.462466, -0.718821, -2.020948, 0.417627, -0.594171, -2.159554, 1.438150, -0.285563, 0.648363, 0.804517, 1.167873, -0.232250, -0.115185, 1.163859, 0.298022, -0.658288, -0.080099, 1.090074, -0.016892, -1.086784, 0.392383, -0.727807, -0.297935, 0.597663, 0.559123, -1.673050, -1.948834, -0.387070, -1.171286, 1.993822, -0.180595, -0.144192, 1.357437, 1.454872, 0.661677, 0.483265, -0.397517, -1.225479, 0.020337, 0.212672, 0.518673, 0.767580, -0.626396, -0.152479, 0.277082, -0.454873, -1.132728, -0.827887, 0.819189, -1.517897, 1.019129, 0.540812, -0.869711, 0.364573, 1.069084, -0.558590, -0.990351, -1.591637, -0.871694, 0.545562, -0.461599, -0.102648, 0.222724, 0.999675, 0.292247, 1.179970, 0.776466, 0.112242, 0.104970, 2.314705, 0.021268, -2.368748, -0.958900, 0.297815, -0.003677, 1.566647, -1.432305, 1.204170, -1.282670, -0.649383, -0.613923, 1.684349, -0.139662, 0.792151, 0.632381, 2.151388, 0.849497, -0.041654, -0.183858, -0.691740, -0.197847, -0.838188, 0.802003, -0.530760, 1.746419, -1.270005, -1.765993, -2.016589, -0.324317, -1.108419, -0.088983, 1.474725, -1.020524, 0.675191, 1.354876, 1.363179, -0.522103, -0.169038, -1.379544, 0.261470, 0.213237, 0.179582, 1.214208, -0.607320, -2.186980, -0.733379, -2.372892, 0.959630, -0.993857, 0.176890, 0.260644, 1.411645, 0.393456, 0.257266, -3.124489, -0.235843, 0.588131, -1.340846, -0.332305, -0.440792, 0.171715, 0.069795, 0.650910, 1.528987, 1.849215, 0.077807, -1.100648, -1.817446, 2.365149, -0.220911, -0.411025, -0.001701, 1.012689, 0.099022, -0.162977, 2.378298, 1.187006, -0.295466, 1.683484, 0.364706, -0.571128, -1.760534, -0.122802, 1.857482, -0.143319, -0.230420, -0.214831, -0.308055, 0.118742, -1.022546, 0.952589, -0.430711, -0.185212, -0.190947, 0.051814, 0.060666, -1.445201, -0.841744, 0.594250, 0.418576, 1.577818, -0.641416, 1.060903, 0.294138, 1.013450, 0.627861, -0.281716, -0.982605, 0.361732, 0.248037, 0.756866, -1.069409, -0.120460, -1.677853, 0.019826, 0.648522, -0.808604, 1.144117, 1.187809, -0.397782, -0.149470, -0.590064, 0.882347, -0.834685, 1.555812, 2.235354, -0.555875, -0.769270, -0.285175, -0.284234, 0.119298, -0.612013, 1.969389, 0.367399, -0.474982, -0.914559, -0.129702, 0.494528, 0.682517, -0.919533, -1.472182, 0.180034, 0.692186, 0.702038, -1.051907, -0.776538, -0.074859, -0.264470, 1.543097, -0.542533, -0.131785, 0.240690, 1.611668, -0.151417, -0.017538, -0.271936, -0.437718, 0.022805, -0.669591, 0.267952, 0.694436, 2.424463, -0.201106, -0.239224, 0.817808, 1.117689, 0.960553, -1.468808, -1.203427, 1.087992, -0.376621, 1.581256, -0.893155, -0.207584, -0.273662, -0.677110, -1.035160, 0.560880, 0.636948, 0.859484, 0.137554, -0.626866, -0.080127, 1.076695, -0.071589, 0.664032, 1.024663, 0.547021, 1.001503, -0.261051, -1.086343, -0.003509, -0.375856, -0.938780, 1.226086, 0.046283, -0.526216, -0.588638, 0.753575, 0.133434, -0.149700, 2.103486, -0.560226, 1.007565, 0.844389, 1.625927, -0.494287, 0.849952, 0.226575, -1.008783, -0.036338, 1.705755, 0.478073, 0.045146, -0.682793, 0.749817, 0.297386, 0.783425, 1.397597, -1.056513, -1.257820, 0.522975, 0.206689, 0.530611, 1.156682, 1.122042, 0.801552, -0.167375, -1.126947, -0.610750, 0.459830, -0.491992, 0.536673, -1.537645, -0.029582, 1.316590, -2.018537, 1.373362, -1.074952, -1.185202, 1.268097, 1.255860, 0.623142, -1.060992, 0.659908, 0.405465, 0.401678, 1.122369, -0.694854, -0.353233, 1.594824, 0.189123, -0.014828, 1.288232, -0.446496, -0.615074, 1.409053, 0.373744, -0.346291, -0.104675, -0.451614, 0.481504, -0.549403, 0.327145, 0.430512, -1.504374, 1.352461, 1.232739, -1.324237, 1.043989, -0.534908, 1.035258, -2.174643, -1.415195, -0.951376, 0.473963, 2.701545, 0.286097, -1.050524, -0.536708, 0.758873, 1.366072, -0.501957, -2.033290, 0.826883, -1.037507, 0.461361, -0.997928, -0.290920, -2.213019, -1.442613, 0.130412, -0.746206, 1.416294, -0.522086, 0.514938, -1.197681, -0.430812, -0.084455, 1.562261, 0.404097, -1.615372, -0.281724, -0.281191, -1.548097, 1.133326, -0.814797, 2.129958, 1.279244, -0.566920, 1.509583, 1.358870, -0.302262, 1.040258, -0.350752, 0.962198, -0.138816, 1.136069, 0.530156, 0.389528, 0.796999, 1.296768, 2.940829, -0.362098, -0.291717, 0.933193, -2.060909, 2.170132, 0.205767, 1.031326, -1.197397, 0.434779, -0.630896, -0.224678, -1.784438, 2.383038, 0.891166, 0.223739, -0.299808, 0.328977, -0.022802, 0.524956, 1.829236, -0.453798, -1.107157, -0.636500, 1.033642, -1.019548, 0.799245, 0.398032, -0.786846, 0.419584, -0.128728, -0.916340, -0.637239, 0.262552, -0.507553, 0.433898, 0.610220, 0.148544, 1.100288, -0.816836, 0.712949, -1.028352, 0.262168, -0.949171, -0.333264, -0.721797, 0.852567, 2.276798, -0.753126, -1.294838, -0.619130, -0.666390, 0.530774, 1.989407, 1.869620, 0.912516, 0.627528, 0.452196, -1.422774, -0.194644, 0.010776, -0.440234, -0.505087, 0.206804, -1.849113, 0.871163, -0.096737, 0.093904, 1.282949, -0.026341, 0.068432, -0.208103, -0.575788, -0.606968, -0.892175, 0.144999, -1.256860, -1.361715, -0.728653, 0.053181, -0.059173, 0.901752, -0.151951, -0.162722, 0.399033, 0.208364, -1.056095, 0.476780, -0.027557, -0.235676, -0.198806, 1.485383, -0.561210, -1.411141, -0.300205, -1.002026, -0.784634, 1.266159, -1.090193, 0.649029, -0.234111, -0.082262, 0.356078, 0.321915, 0.015732, -1.184611, -1.899113, 1.490680, 1.392324, 0.283886, -0.353852, 2.057961, 0.981666, 0.848730, -0.253620, -1.137007, 0.404694, 0.065526, 0.085647, -1.038783, -2.569717, 0.701330, -0.414976, -0.842873, -0.298220, 1.891944, -0.804642, -0.768543, -0.478489, -1.091725, -0.170599, 0.112198, -0.726134, -0.246962, 0.965135, 1.139514, 0.419828, 1.208580, -0.066874, 1.945829, 0.162809, 1.297811, 2.202734, 1.741643, 1.511201, -0.751677, 0.617983, 0.273729, -1.775817, -0.859621, -0.268454, -0.651191, -0.321220, -0.047067, -0.043492, 0.369731, 0.062866, 0.444285, 0.815012, -1.235550, -0.121403, -1.554279, 1.588515, 0.088841, 0.296332, -0.815071, 0.408587, 0.947721, 0.542313, 0.334759, 0.027636, -0.437686, -0.660244, 2.208708, 0.602455, 1.435043, 0.972738, -0.578480, 0.766644, 1.074701, -0.844363, 0.283039, 0.174809, -0.285907, 0.269971, 1.571914, -0.680261, 0.014420, 1.316165, 0.833149, 0.523407, 1.883938, 0.983637, 0.623695, 0.309055, -0.690168, -0.769946, -1.424188, -1.022835, -0.391665, -0.725895, -0.537701, 0.715435, 0.279784, 0.723945, -1.073925, 0.655954, -0.114652, -0.576828, -2.374498, -0.920265, 0.550063, 0.871423, -0.417389, -0.660618, -1.771935, -0.894860, 1.397525, 0.097323, 0.554468, -2.250533, 0.337591, 0.464278, 0.510972, 0.267362, -0.177007, 2.532581, 0.592427, 2.865095, -2.399371, -1.158907, -0.466906, 0.880595, 0.179700, 0.598148, 0.080115, -0.402827, 1.002004, -0.344141, 0.198522, 0.296398, 0.090345, 0.551243, 0.462708, -0.528162, -0.549759, -0.018495, -0.648103, -1.150885, 1.193687, 1.445238, -1.602518, 0.419286, 1.923925, 0.993801, 0.080631, 0.681932, 0.523293, 0.094783, 0.872851, 1.055104, 1.328419, 0.447384, 0.508069, 1.121763, 0.164839, 0.825536, -0.917679, -0.794695, 0.184164, 1.579811, 0.432503, 1.097294, -1.257097, -0.146743, 0.632343, 0.873633, -0.156048, -0.012500, -1.466014, 0.105209, -0.743446, 0.756828, 0.109854, 0.962585, 0.037169, -1.495391, -1.055537, 1.542128, -0.972383, -0.450260, 2.811025, -1.481503, -1.342464, -0.118399, 0.675031, 0.781311, -1.309169, 0.257078, 0.303964, -0.277430, -0.468578, -0.266924, -1.589440, 1.171651, -1.062283, 0.469898, 0.806030, -1.440026, 0.805684, 0.891655, -0.023100, -0.062576, 1.327035, 1.009489, -0.899913, -1.173445, -0.682394, 0.748711, 1.804029, 1.652740, 0.959006, -1.492983, 0.158459, -0.904840, -0.421817, 0.387183, 1.827316, 0.672307, 1.019775, -0.287872, 2.863921, 2.185695, 0.995617, -0.605319, -1.932329, -0.334581, -0.025587, 1.131738, 0.857656, 0.112565, -0.203046, -1.130978, 0.092396, 1.355934, 0.403165, 0.803676, -1.441043, 0.502503, 1.159083, 0.763962, 0.031462, -2.548171, -0.252876, 0.735758, -0.132680, -0.236088, 0.352176, -1.417295, -0.090644, -0.678433, 0.486371, 0.444437, 0.570962, -0.512129, -0.560760, 0.346190, 1.682052, -0.565234, -0.776522, 0.488945, 0.627600, -0.167428, -0.130414, -0.010353, 0.879153, 1.337339, -0.585537, 0.727072, -0.141975, 0.533020, -0.885554, -0.499028, 1.047312, 0.075773, 1.098370, -0.192691, 0.721690, -2.273454, 0.509313, 1.157307, -1.005416, -1.772732, -0.942747, -1.645998, -0.336253, -0.146102, -0.824648, 0.409081, 0.118311, 0.709025, -1.624230, -0.227199, 0.618670, -1.040878, -0.408246, 1.277359, 1.462230, -0.100716, 0.926692, 0.572805, -0.194286, -1.763308, 0.378171, -0.436644, -1.110692, -0.198854, 0.546694, -0.314007, -0.476614, -1.257885, 0.661586, 0.295306, -0.487621, 0.220747, 0.877556, 0.508186, -0.324527, 0.832008, 0.321013, -2.623273, -0.558013, 0.268001, 0.907817, -0.509289, 1.995986, -1.079092, -0.357120, 0.692847, -1.594903, -0.810229, 0.766416, 0.458690, 2.388878, 1.237876, -0.482560, 1.621789, 0.460475, -1.521537, 0.398639, 0.488280, 0.814789, 2.039437, 1.104775, -0.081346, 0.693222, -0.675134, -0.376279, 0.148597, 0.349295, -0.826567, 0.015371, -1.211840, 0.133244, -0.201431, -1.035327, 1.334061, 0.333192, 0.840426, -0.241970, 0.518896, 0.260458, 0.739403, 0.211132, -1.336182, 0.729792, -0.448636, 0.685902, -0.518373, -2.049942, 0.840856, 0.369066, -2.713610, -0.956266, 0.844052, 1.454209, 1.751947, 1.118434, -1.199703, 0.300938, -0.622784, -1.080096, -2.325250, 1.183856, 0.204165, 0.879490, 0.600926, -1.200129, 0.161161, -0.411520, 1.622712, -0.394856, 1.465673, -0.513967, 1.573941, 0.823391, 2.499071, 1.684852, -0.002011, 1.494403, -0.637152, 0.413116, 1.138018, 2.299080, 0.912717, -0.582792, 0.011413, -0.944657, -0.355949, 1.198286, -0.096939, -0.521424, 0.769444, -1.009839, 1.116072, -0.939024, 0.866407, -0.501148, -0.485490, 0.117572, -0.349237, 0.036147, 1.289752, -0.109019, 0.417342, -0.223573, -0.964651, 1.336383, 0.487437, -1.142140, 0.160682, -0.516941, 0.450464, 0.556782, 1.838317, 0.019776, 1.806731, 0.942391, 1.137877, -1.031985, -1.228200, -0.309678, -0.477846, 0.409540, 0.988165, 0.028357, 0.449104, -0.880508, 2.038219, -0.253821, 0.697572, 0.581308, 0.167655, 0.900317, 0.243123, 0.011126, 1.016816, -0.493156, -0.038680, -0.534398, -0.383596, -0.153659, -0.417682, 1.920127, 1.356597, 0.109325, 0.431191, -0.605333, -0.429238, -0.518555, 0.665048, -0.915748, 0.420865, -0.749463, -0.301446, 0.787792, 0.732964, 0.251381, 0.649113, -0.482093, 0.783651, 0.281404, 0.116612, -0.584326, -0.581823, 0.507780, 1.304491, -0.175627, -0.987605, -0.503873, 1.329944, 0.600671, 0.905240, 1.522753, -1.067003, 0.841375, 0.324097, 0.428858, 2.241882, -0.421061, 1.350712, 0.293129, -0.571053, 1.726629, 0.902720, 0.481511, -0.011749, -0.229563, 0.129374, -2.467086, 0.627643, 2.151489, -1.269279, -0.822767, 0.374930, -0.959157, -0.312447, -0.679249, 1.333499, -1.231680, -1.098953, -1.968821, 0.077113, 0.467697, -0.628377, 0.643440, 2.182266, -1.666187, 0.485504, -0.590932, 0.832465, 0.153937, 1.060625, -1.246195, 2.416896, 0.093975, -0.152827, -0.071498, -1.175740, -0.059380, -0.954397, -0.834015, 0.166732, -0.254951, 0.122066, 0.556969, 0.543691, 0.126691, 0.998256, 0.096867, -0.861643, -0.324542, 0.327667, -0.797774, 1.269918, -1.753651, 0.764782, 0.298320, 0.897810, 1.019876, 1.022820, 0.891247, -0.038796, -1.212145, -0.893024, 0.486557, 1.370578, -0.266401, -1.755456, -0.347878, -0.665156, -1.322847, -0.175403, -0.882539, 0.602112, 0.035955, -1.623531, 0.954679, 0.549832, -0.578962, 2.896449, 0.048991, -0.113154, 0.267387, -0.312706, -1.668610, -0.072943, -0.803505, 0.148612, -0.551699, -0.716624, 0.097455, -0.583477, -0.981594, -1.847880, 0.717272, 1.327487, -0.819650, -0.439335, -0.321295, 0.192924, 1.327158, -0.035909, 0.460546, 0.249600, 0.814532, 1.230175, -2.268395, -1.422459, -1.662717, 0.261945, 0.779187, 0.971484, 0.435417, 1.203834, -1.185644, 1.292138, -0.853645, 0.334178, 0.584909, 1.466309, 0.004952, 0.080900, -1.349691, -0.934681, 0.219297, 0.988318, 0.034435, -0.743059, -1.299690, -0.218137, 1.656151, 0.083517, -1.588795, -0.949296, 1.221327, -0.433782, 1.248809, 0.436154, -1.000479, -1.023634, -0.991402, -2.607101, -0.659781, -1.795288, -0.541813, -0.490361, 1.207486, 0.185346, 1.141771, -1.647310, 0.503719, -1.671135, -0.342426, 2.029416, -0.475719, -0.452015, -0.127935, -0.490847, -0.364585, 0.217848, -0.106019, -0.043535, 1.579382, 1.230152, -0.211027, 0.645656, -0.283660, -0.618962, -0.691271, -0.002964, -0.415489, -0.341448, 0.888052, 0.589376, -1.698737, 1.497291, -0.831303, 0.395174, 0.589173, -0.810251, -0.312356, -0.131721, -2.374080, 0.565497, 0.111212, -0.253048, 0.390443, -1.207896, -0.041176, -0.077750, -0.812502, -1.104729, 1.385000, -0.132227, 1.027096, -0.555687, 0.852424, 2.050150, 0.625882, -1.497229, 0.810401, -0.139653, 0.456244, -0.671029, -0.188565, -1.159149, -0.656063, 1.103047, 0.422095, 0.572289, -0.381481, 0.924799, 2.061640, -1.345375, 0.801426, 0.383118, -0.529409, 0.239853, -0.762862, 1.156354, -1.894699, -0.530812, -1.060533, 1.058275, -0.410843, -2.197512, 0.589395, 0.039158, -1.001759, -1.310885, -0.624722, -0.077511, -0.500742, -1.190303, -0.531067, 0.286142, -1.023084, 1.246064, 1.492313, 0.445578, -2.706501, -0.563274, 0.294320, -0.073659, -1.531296, 0.667368, 1.289439, 0.403801, -0.719572, -0.352385, 0.841166, 0.949807, -0.098071, 1.275607, -0.106403, 0.430739, 0.001879, 1.051093, -0.374533, 0.892073, 0.332948, 0.592774, 0.473188, 0.607197, -0.461602, 1.542222, 0.100073, -0.499275, -2.910311, 0.144654, 0.567283, 0.237543, -1.226956, 1.702870, -1.412966, -1.094480, 1.470134, -0.483356, 1.221584, 0.578784, 1.718434, -0.492522, -0.313230, 0.822420, -0.116919, 0.485807, -0.045605, 1.742115, -1.378036, 0.212902, -0.898107, 0.841902, -0.621667, 0.180036, -0.646024, -0.156983, -1.445886, 0.337371, -1.055352, -1.888733, -1.340191, 0.214425, 1.523805, -0.471269, 0.380452, 1.209268, -0.710079, -1.087702, -1.709404, 0.040628, -2.360130, 0.001905, 0.195222, 0.738780, 0.890120, 1.599264, 0.441577, -0.103721, 0.165188, 0.173371, -1.600238, -1.713154, 0.000767, -1.887139, -0.105544, 1.522331, -0.325616, -0.441462, -0.911480, -0.520468, -0.964007, -0.155366, 0.750897, -2.228427, 0.144024, -0.177606, 0.199641, 0.659904, -0.527830, -0.451822, -1.356099, 1.321654, 0.744680, 0.335386, 0.850053, -0.986633, -0.010434, 0.255908, -0.093684, 1.473114, -0.406603, -0.307050, -2.153165, 0.155834, -1.160650, 1.216561, -0.373953, 0.473638, -1.267211, 0.022150, -0.091080, -0.757524, -0.055015, 0.426883, -1.715072, -1.246240, -0.148565, 3.192731, -1.636502, -0.052563, -1.086715, 3.090604, 1.472217, 0.522833, 1.762922, 1.141213, -1.487499, 0.496260, 0.216927, -0.804855, -1.929908, 0.570464, 1.097985, -1.896430, 0.633538, -0.086539, -0.647590, 0.239698, -0.534972, 0.235688, 0.862444, 1.389340, 0.417638, 1.300175, 2.024927, -0.701430, -0.088599, -1.126721, 0.294095, 1.685487, -0.555167, 0.024073, 1.572933, -0.280384, -1.185864, -0.373257, -0.591392, -0.392939, -0.146882, 0.483622, -0.191206, 0.174507, -0.798611, 0.966095, 2.029952, -0.921123, -0.332096, -0.440556, 0.193824, 0.574540, 0.824316, -0.839898, -0.296096, 1.903518, -0.833156, 0.030677, 0.607523, 1.514426, 0.868757, 1.555596, -0.935126, -0.143852, -0.169516, 0.629757, 1.030584, -0.992446, 2.211719, 1.261339, -0.214449, -1.055072, -0.870771, -0.341431, 0.287067, 1.439778, 0.678502, 0.658027, -0.056848, -0.013744, -0.933110, -1.167635, 0.166673, 1.355237, 0.964435, 0.909258, -1.019448, -1.345046, -0.306989, 0.289421, -0.184356, 0.629042, -0.747637, 0.147467, -1.991565, -0.865654, -0.660517, 0.687695, 0.464715, 1.234511, -0.155472, 0.368011, -0.798038, 0.303759, 0.258606, 0.380070, 0.133021, 0.798172, -1.369328, -1.947639, 1.618109, 0.228001, 0.488191, -0.066755, 0.566617, -0.175494, -0.019300, 2.298338, 2.490033, -1.538595, 0.779380, 1.156198, 0.711916, 1.682077, 0.279762, -0.312617, 0.178269, -0.397102, 1.879119, 0.062291, -1.939265, 1.662884, -1.012789, -1.386273, 0.910591, 0.108151, -0.795660, -0.358391, -0.856319, 1.412286, -0.330051, 0.280484, -0.273336, -1.535364, -0.168593, -0.493246, -1.447309, 0.707914, -0.260365, 0.823475, -0.909438, 0.634202, -0.188416, -1.165149, 0.735117, -0.905673, 0.084929, -0.112713, -0.735928, 1.121421, 0.004254, 0.941864, 1.846784, 1.325619, -2.147032, -0.117993, -1.383002, 0.757244, -0.606906, 1.602797, -0.399847, 0.019014, 1.644806, 0.813505, 1.086837, 0.438771, 0.348052, 2.024298, 0.402076, -0.813110, 0.695878, 2.035622, -0.465122, -1.492292, -0.878087, -0.973837, 1.812257, 0.153350, 0.913495, 0.711407, -0.598748, -0.354786, 1.431581, 0.260969, -0.680260, 0.510779, -1.604333, -1.336531, -0.489935, 1.665154, 0.090843, 0.975008, 1.975683, -1.561150, -0.124309, 1.122236, 1.016507, 0.565472, -0.645597, 0.205400, -0.101509, -0.085578, 0.397383, 1.803785, -0.995748, -1.382449, -0.738364, 0.779503, -1.365308, 0.029976, -1.368673, -0.529999, -2.022380, -0.063186, 0.582739, 0.199500, -0.517304, 1.031594, -0.510167, -0.085207, 0.012295, -0.985666, -0.798587, 0.977248, 0.230268, -0.788730, 0.100369, -1.348227, -0.013572, -0.693568, -1.639801, 0.244451, -1.257866, -1.120893, 0.029183, -2.198713, -0.445338, -0.702023, 1.927548, 1.705852, -0.656002, 0.953507, 0.882131, -0.275884, -0.848179, 0.232563, 0.451223, -1.448456, -1.182728, 1.777396, 0.847616, -0.803393, -2.077458, 1.638231, -1.673865, 0.345191, -0.367579, -0.387235, -0.728010, -1.154211, -1.253552, 1.137648, -0.339611, -0.744888, -0.274606, -0.827768, -1.514119, 0.714691, -1.152990, -0.681847, 0.095298, -0.546938, 0.992713, -0.992856, 1.013190, 2.518029, 1.411025, 0.472371, 0.889863, 1.839270, -1.104206, -0.730294, -0.561019, 0.713459, -0.670588, 1.753072, 0.169193, -0.070926, 0.613736, 1.534770, 1.686791, -1.337481, -0.320978, 0.260372, 0.006047, 0.206645, 0.553592, -0.902511, 0.796327, -0.325769, -0.025676, -0.352937, -1.178178, -1.706857, 0.413009, -1.179883, -0.814427, -0.009327, -1.040245, -0.571115, -1.056754, -1.301412, -0.591260, -0.763906, 0.470067, 0.828917, 1.469671, 0.156652, -1.542709, 1.333366, 0.967467, -1.270201, 0.866247, -0.811172, -1.176453, -0.475758, 0.315612, 0.682427, -1.250730, -0.384803, -0.144978, -0.937373, 0.917409, -0.395846, -1.952576, -0.178033, 2.320912, 1.109337, -0.307219, -1.173891, 0.115987, -0.030911, 0.746893, 0.477283, -2.128353, 1.796388, 0.151782, 2.482570, -0.872722, -0.112642, -2.086276, -0.140203, 0.111983, -0.939102, -1.055091, -1.329575, 0.215989, 0.255191, 1.029851, -1.249237, 0.618896, -0.213340, 1.197397, -0.320130, 0.000204, 1.480527, 0.062241, 1.254689, 0.728404, -0.213925, 1.611260, -1.022513, -0.365403, 1.018360, -0.154956, -0.140410, 1.903669, -1.108924, -0.276196, 0.528212, 0.884397, 0.558028, 0.512399, -0.840059, -1.408578, -0.829500, 0.499964, -0.500953, -0.284076, -1.326736, 0.003464, 0.528966, -0.580975, -0.656808, -0.516160, -0.531121, -1.755176, -1.214240, 1.152361, 0.224646, -0.351005, -0.872570, -0.736079, -0.426793, 0.438420, 0.449918, 0.956023, 0.098402, 1.567622, 0.219357, -0.697617, 0.714471, 0.928580, 0.486617, -1.446406, 2.453130, 0.112571, 0.465784, -0.744802, 0.656983, -0.168934, 0.470107, -0.733525, 0.315124, 1.488656, 0.066169, -0.999403, 2.117275, 2.542061, 1.607461, -0.113543, -1.263350, -0.327064, 2.413925, -0.731953, 2.089860, -1.106059, -0.126414, -1.037236, 1.243739, 1.479193, 1.071569, 0.460087, -0.699642, -0.410816, 2.493381, 0.350269, 1.426043, 1.808272, 0.866318, 0.592693, 0.439841, -0.649058, -0.349749, -0.045892, 0.458708, 0.782348, -1.158792, -0.267142, -2.656903, -1.460660, -0.410096, 2.535706, -0.632427, 1.336218, -0.204034, 0.830523, -1.253433, 1.034396, -3.423545, 0.087727, 0.824722, -0.012332, 1.407828, 0.120882, 0.926187, -2.292944, 1.133925, 0.070113, 0.058787, -0.714468, 1.357921, -0.477855, -0.451449, 0.213543, -0.749978, -1.322127, -0.142105, 1.090608, -0.684492, -1.045470, 1.028201, -0.441753, 1.948786, -1.496778, -0.958542, 1.428044, 0.903210, 0.756319, -0.521848, -0.848668, 0.275805, 0.669213, 0.492029, 0.957295, 0.108228, 0.762715, 0.293802, 2.436357, 1.070933, 0.011859, 0.362297, 0.102790, 0.031223, -0.965514, 0.835719, -0.569635, -0.440000, -0.331996, -1.274265, 0.069149, 0.121821, -0.144766, 0.514818, 0.071455, 0.864318, 1.478536, 1.551118, 1.691593, -1.299430, -0.971826, -0.883588, 0.578695, -0.042692, -0.238458, -0.728358, -0.076793, 0.893684, -0.219320, -0.469815, 0.855054, 1.703795, -0.425166, 0.270828, -0.696114, -0.110387, -0.682147, -0.525052, -0.227233, 1.005185, 0.803018, -1.195223, -0.621801, -0.284694, -1.812292, -1.373420, 1.239193, -1.030262, -0.614617, 1.015705, -0.504089, -1.243769, 1.839390, 0.925878, -0.834220, 0.058480, -1.357423, 1.806100, -0.190481, -1.537604, 1.057216, -0.901779, -1.764362, 0.839263, -0.296992, 1.116402, -1.322160, -0.878790, -0.170323, 0.862255, 0.377605, 0.069388, -0.819686, -0.952324, 1.892050, -1.370026, 0.128011, -1.345521, 0.509866, 0.578618, -0.328582, 0.434008, 0.827424, 0.631912, 0.777146, 0.944008, -0.341045, 0.442765, -0.239828, 0.457617, -1.610594, 1.089655, 0.567526, 0.066581, -0.181101, -1.022524, -0.062282, -0.418298, -0.130733, -1.085837, 0.437248, -0.297256, -0.299135, 0.080330, -0.100244, 1.805943, 0.645342, -1.559626, -1.494864, -0.893543, -0.166167, -1.360841, 0.576710, -0.838996, 0.380255, 0.408801, -0.087826, -0.049933, -0.725054, -0.717173, -0.902833, -1.784525, -1.308625, -1.109085, 0.043479, 1.053214, -1.268719, 0.350615, 1.358514, -0.608471, 0.092205, 1.656784, -0.484845, 0.857037, 0.399978, -0.386510, 2.922505, -0.152704, 1.061745, -0.112545, 0.998931, -1.606496, 0.172222, -0.511422, 0.496342, 1.337502, -1.879604, 0.411800, -0.223929, -1.404463, -1.344039, -0.674549, 1.401038, -1.527929, -1.194860, -1.458769, -0.154352, 0.520749, -0.778789, 1.923256, -0.212585, 0.066619, 0.932589, 0.247856, 0.516712, 0.652079, 0.783558, -0.709963, -0.439451, 1.346308, 0.520449, 0.707136, -1.004591, -1.595103, -0.197411, 0.770248, 1.577931, 0.364045, 0.348734, 0.193432, 0.612950, -1.068714, 0.130597, 1.301195, -0.064313, -0.010166, 1.057867, -0.454054, -1.446331, -0.440927, 1.147515, -0.569905, -1.606436, -0.233277, -0.337846, 1.559327, -0.705301, -0.390601, -0.233253, 2.039244, -0.055524, 1.032676, 1.096797, 0.808107, -0.831129, 0.261051, 0.432175, -1.195443, -1.214485, 0.485138, -1.894018, 0.552331, -0.324718, -0.297798, -0.152396, 0.578562, -0.291784, 2.964944, 1.262912, -1.947922, -0.279872, 0.667570, -0.449464, 1.085750, -0.147495, 0.640326, 0.581892, -0.288672, 0.858507, 0.769634}, + { -0.446141, -1.210392, 0.094219, -0.557681, 0.436657, 0.228910, 1.252416, 2.043364, -1.478110, -1.121050, -0.336387, 0.921460, 1.600388, 0.273376, 0.369098, -0.216870, 0.293653, 0.093288, -0.315925, 1.024815, 1.607015, 0.331540, -0.644598, -0.384692, 0.793121, 0.554271, -0.160999, -0.705313, 1.533538, -0.270805, -0.806331, -0.878109, 0.414090, -0.975189, -0.721478, -0.740868, 0.413678, 0.307196, -0.291252, -0.874170, -0.413169, -0.801347, -0.387322, 0.175434, -0.358407, 0.175792, 1.537106, -1.366534, 0.127411, -0.531498, 0.309365, -0.633223, 0.038436, 1.608587, 1.216289, 0.966547, -0.940614, 0.260128, -0.046390, 0.218279, 1.377278, -0.909145, -0.312771, -1.574051, -1.399544, 0.830134, -1.437980, -1.709561, -0.046496, 0.785499, -0.154449, -0.270460, -0.757634, -1.541992, -1.153731, -0.557437, -0.603239, 0.131191, 0.500166, -0.774932, 2.406299, -1.196631, 2.812135, 0.916448, -0.224696, 0.736269, 0.862351, 1.231325, -1.022823, 2.623466, 0.570176, -1.029176, -0.378922, -0.266084, -0.384895, 1.423834, -0.327209, 0.107326, 0.819384, 0.576725, 2.215786, 0.882954, -1.390015, 1.445607, 0.240494, -0.628055, 0.298740, 1.577986, -1.214902, -0.613802, 0.015900, -0.696121, -0.212482, 0.021852, -0.588263, -1.765785, -0.242829, 1.114169, 0.240581, 0.026022, -0.680217, 0.653857, -0.353656, -1.102200, -1.705480, 0.591669, -0.336889, -0.902929, -0.465316, 2.091608, -1.270120, -0.052219, -1.196578, 0.850167, 0.972194, -1.074584, -0.190712, 0.568203, -0.249897, 0.142745, -1.535993, -1.143525, -0.083874, 0.034206, -0.960949, -0.731398, -0.726418, -0.333815, -0.503958, -0.753630, 0.108086, 0.922474, -0.799391, -0.036553, -0.405910, 0.412070, 0.911691, 0.023563, 1.261712, -0.554661, 0.447849, -0.544578, 0.045700, 0.152466, -0.558616, -0.513727, 0.233723, 1.826665, -0.780652, -0.355041, 1.078478, 0.436535, 1.398195, -0.474950, -0.645210, -0.743973, -1.041770, -1.959302, -1.043802, 0.067097, -0.703509, -1.405768, 0.660438, 0.787347, -0.639357, -0.666745, -0.152164, 1.116144, -1.424079, 0.967490, 1.056660, 1.415114, 1.314055, -0.243241, 1.139438, -0.082025, 0.968934, 0.479145, -0.024864, -0.779569, -0.977431, 0.686902, -0.593170, -0.675872, -1.619608, 1.279747, -0.335923, 0.269279, -0.937178, -1.208609, 0.992568, 0.695028, -1.105799, 0.927952, -1.684321, 1.634138, -1.400518, -1.250819, 0.943713, -0.031745, -1.302454, 1.416210, -0.202708, 1.502852, -1.206511, -0.124401, -0.940610, -1.469399, -2.540128, -1.262995, -0.099491, -1.424507, -1.303037, -0.698715, 0.062110, 0.279796, -0.177974, -0.317407, -0.138447, -0.012450, 0.596504, 0.042038, 0.050103, -0.433508, -2.495116, 0.091227, -1.732235, -0.468762, 0.991366, -2.351202, -0.783182, 0.291866, -0.979966, 0.393041, -2.480963, -0.772810, 2.080607, 0.525421, 0.123914, -0.480173, -1.550547, 0.048052, -1.835748, 0.553664, 0.063805, -1.100559, 3.446845, -0.852350, -0.467030, 0.410166, -0.194240, 0.202805, 1.433094, 1.224726, -0.416480, -0.724887, 2.769052, 1.403896, 0.660202, -0.003159, -2.371689, 0.049895, 1.375257, -0.464955, -0.208232, 0.939234, 1.128009, -1.169787, 0.319712, -0.035626, 0.671597, 0.537344, 1.071998, 0.280105, -0.614814, -2.635823, -1.399584, -0.644652, -0.070286, -0.165058, 0.669348, -0.998436, -0.525984, -0.581191, 0.683227, -0.638211, 1.685337, -0.006282, 0.114373, 1.974528, 0.478892, -0.722630, -0.237007, -0.902797, 2.370870, 0.412595, 1.431702, 0.926747, -0.484398, 0.900348, 2.429795, 0.925609, -0.159553, 0.410469, 0.025081, 0.343449, 1.430452, -0.545778, -0.765048, -0.998648, -0.289317, 1.241272, 0.061870, 0.236501, -0.418772, -0.694165, -1.766784, 0.693774, 0.579161, -0.763132, 0.367919, 0.961925, 0.541355, -0.324157, -0.657522, -2.502346, -0.272414, 1.370539, 0.949403, 0.273473, -0.024612, 1.065152, -0.828448, -0.672163, -1.616722, -0.421403, 0.534220, 1.595581, -0.195502, 1.045425, -0.685853, 1.192971, 1.984577, 0.650806, -0.377276, 1.094375, -0.403471, -0.075159, -0.255198, 1.681054, 1.944447, -1.438875, 0.840908, 0.657407, -1.752547, 0.006515, -0.841336, 0.521484, 0.516114, -1.159483, 0.460769, 0.215958, 1.781620, -0.048160, 1.660577, -0.857293, -2.564554, 1.796085, -0.547359, 0.687766, 1.624727, -0.535832, 0.572046, -0.945929, -0.193370, 1.224158, -1.311220, 0.311782, 0.605605, -0.193145, -0.278250, -3.658919, 0.403704, 0.404384, 1.368461, 1.284870, -0.436480, -1.220091, 1.299401, 1.292838, 0.729332, 0.157103, 0.182794, 0.433962, -0.055412, 1.643416, -0.653841, -0.638076, -0.517528, -0.268725, 0.345496, 2.344105, 1.550088, -1.772326, 1.324335, -0.381126, -0.099604, -0.121997, 0.526893, -0.730422, 0.958076, 0.935883, -0.838423, 1.116673, -0.334116, -0.851061, 0.954896, -0.374372, -0.509291, 1.302573, -0.275123, 2.731643, 0.596128, -1.023311, -0.462351, -1.019602, -0.326637, -1.297941, 0.113197, -0.963061, -0.718921, 0.219356, -1.562385, 1.216211, -1.144206, -0.817539, -1.967238, 0.540856, 1.466174, -0.118227, 0.302811, 0.439032, 0.850916, -1.084990, -0.021943, -0.622396, -1.630962, 1.173403, 0.823379, -2.823348, 0.418398, -1.543780, -0.964064, 1.907559, 0.617970, -0.024240, 1.171446, 0.551308, 0.681897, -1.615708, -0.221638, -0.701041, -0.025396, -0.368484, 0.508377, 0.639249, 0.114605, -0.165839, -0.940582, 2.351082, 0.035705, 0.829055, -0.502812, -0.677675, -1.310192, -0.797597, 0.243285, -1.478060, -0.328561, 0.694011, -0.432826, 0.482477, 0.348017, -0.472264, 1.134552, 0.019681, -0.476172, 0.506533, -0.292244, 1.125679, 0.484756, -0.653510, 0.209859, -0.427151, -0.696327, 0.185218, -1.521126, -0.911026, 0.502900, -0.390106, 0.243244, -2.589114, 0.029117, -1.880720, -0.978946, -0.123460, -0.026018, 2.003708, -0.417247, -0.606338, -2.203148, -0.299681, 0.857204, 0.669025, -0.033031, 1.993445, 1.121462, 1.489567, -0.792721, 1.321249, 3.287674, 0.039978, 2.257282, -0.596910, -0.904084, -0.060831, 1.852228, -0.394250, 1.076742, -0.088779, 1.990819, 1.575973, -0.875746, 0.935243, -0.142373, -1.544067, -0.798184, -1.647026, -0.446503, -0.556194, -0.094823, -1.243152, -0.444310, 0.467968, 0.399205, -0.060037, 0.737509, 1.262869, -0.291744, 0.374143, -0.538086, -0.352159, -0.919840, -0.830125, 1.258766, -0.444388, -0.039515, -0.982017, 0.099574, -0.232459, 0.441622, 1.136831, 1.307288, -1.142611, 1.320275, -0.137082, -0.522428, 0.354475, -0.212742, -1.219617, -1.323455, -0.925323, -0.532090, 0.055700, 0.582188, -0.415970, -0.267777, -0.160409, -0.699211, 0.780755, -0.019053, -0.416226, 0.852242, -0.879459, 0.864873, -0.285035, 1.696672, -1.156139, 0.551668, -0.178533, 2.023559, 0.451505, 0.693827, 2.408724, -1.197408, -1.144532, -1.841984, 0.102629, -0.870780, 0.971014, 0.758096, -1.302410, 1.331574, -1.067407, 0.888551, -0.440135, -0.243960, -0.069688, 0.524089, 0.510248, 0.678675, -0.503941, -0.269883, 0.309343, -1.333543, 1.434367, 0.343710, 0.627966, 0.919017, 0.320214, 1.555699, 0.370422, -0.216896, 0.830845, 1.007234, 0.865942, -0.279575, 0.412968, -0.016744, -0.862565, -0.654119, 1.351336, -0.126698, -0.357484, 1.853302, -1.146398, 1.017704, 0.012111, 0.004532, 1.142388, -0.301353, 0.710716, -2.303437, -1.032544, -0.712598, 0.179395, -0.040338, 0.469312, -0.492587, 1.698872, 0.569610, -1.562738, -0.442351, 1.737054, 0.888248, 0.321939, 0.067555, -3.150903, 1.211434, -0.694621, -1.166631, 0.674787, -1.562673, 2.020095, -1.669268, -1.380439, 1.948567, 0.542762, 0.282922, -0.601764, 1.531809, -1.700210, 0.341407, 0.852302, -0.209636, -1.624373, -1.127225, 1.269550, -0.103038, 1.651492, 0.618350, -2.633832, -0.295681, -0.449540, -0.666863, 0.143359, -0.391018, 0.705137, -0.831514, 0.276024, -0.763468, -0.986429, -0.241679, -0.071228, 0.728637, -0.230996, -0.505861, 2.141447, -0.372561, 1.648217, 0.043915, -0.092758, 1.057734, -0.503727, 1.321368, 0.837929, 1.587352, 1.715464, -1.422310, -0.020518, 0.008739, -1.078361, 0.397731, -1.980927, -0.187061, 0.299474, 1.022242, 0.199321, 0.342044, -0.937396, -0.420654, 1.253513, -0.078981, -1.586322, 0.169338, 0.530134, 0.410973, 0.813272, -1.350585, -0.666748, -0.331275, -0.686260, -0.499302, -0.000044, -0.977710, -0.656167, -0.768596, 1.733302, -0.079052, -0.346658, 0.096327, 0.841091, -0.315183, -0.839269, -2.140824, -0.359397, 2.221610, -1.301760, -0.598627, -1.735286, -1.872575, 0.813143, -1.467547, -0.528693, 0.218145, 1.609319, -0.658192, 0.967179, 0.238065, -1.038087, -0.207714, -0.841926, 0.947855, -0.130279, 0.174131, 0.883826, -0.419099, -0.967372, 0.761288, 0.981953, -0.359883, 0.753609, -1.500355, -0.520319, -1.197064, 1.513532, 0.860780, 0.666633, 1.041298, 0.004386, 0.714703, 0.229556, -0.216078, 0.840362, -1.280668, -0.344227, 0.344951, -0.673442, -0.013362, -1.752267, -0.586495, -0.717530, -0.824820, 0.430992, 0.272602, -2.738847, -0.471658, -1.198649, 0.177874, -0.193200, -0.600226, 0.027271, -1.178977, -1.093141, -1.239101, -0.259333, -0.891018, -2.676815, -0.907779, -0.935048, -0.124212, 1.174635, 0.550149, 0.559368, -1.799957, -0.505144, 0.112778, -1.140728, -0.634454, -1.620463, 1.526477, -1.067722, 0.116412, 0.569839, 0.405507, -0.620982, 1.177512, 0.606144, -0.986064, -0.806452, -0.830298, 1.161623, 0.069136, 0.083446, 0.189402, 0.544366, 0.247521, -0.280109, -0.389948, -1.090912, -0.471813, 0.392270, -1.720454, -0.767628, 0.059358, -0.422489, -0.506465, -1.156613, -1.145879, 0.804165, -1.220138, 0.170382, 1.108635, 0.411932, 0.450980, 0.535838, -0.711227, 2.320272, 0.167431, 0.334435, -1.284517, 0.497193, 0.237820, 0.248187, 1.126811, 0.321656, -0.209959, -0.475940, -0.123368, 0.586065, -1.041429, 0.080635, 0.904398, 1.221692, 0.674461, -1.602378, -0.947158, 0.463225, 0.047817, 0.727373, 2.459499, -0.499435, -1.649660, -0.480932, -0.480671, -1.565757, -0.114405, -0.500959, -0.218963, 0.591839, -0.293382, -0.307010, -0.092244, 0.103991, 0.336101, 1.610582, -0.474613, -0.241045, -0.033939, 1.054386, -0.049949, -0.690444, 0.468956, -0.386165, 0.215304, -0.017411, -1.037090, 2.252476, -0.491806, -0.500134, 0.393323, -0.283288, -1.204652, 0.767447, 0.493748, -0.086166, -0.285800, 1.030640, -1.022789, 1.259587, 2.034420, -1.973225, -0.762105, -1.435689, 1.365192, -1.705812, 0.449765, -0.328552, 0.265051, -1.697729, -0.707277, 0.234218, -0.773856, -0.912006, -0.166873, 0.051667, 0.025463, -1.490499, 0.456520, 0.425073, 0.322660, 0.557358, -1.401553, 0.111372, 0.453538, -1.046866, -0.174962, 0.736238, -0.648843, -0.003033, -0.435132, 0.370903, -0.021760, 0.722180, 0.754289, -1.414281, 1.194376, -1.331880, 0.599586, -0.523404, -0.216311, 0.914822, -0.624846, -2.401973, -0.938374, -1.624680, 0.018817, -0.192222, 0.446812, 0.389115, 1.824083, 0.582707, 0.400384, -0.288843, 0.749932, -0.666039, 0.159979, 0.198359, 0.666465, -0.051678, -1.696895, -0.235981, 0.807859, -0.397621, 0.710416, 2.373339, -0.640758, -2.033137, 1.751621, 0.656582, 1.416959, -0.279052, 0.950150, -2.689174, 1.501816, 1.385151, 1.683736, -1.181550, -0.404841, 0.964289, -1.563548, 0.951038, 1.643929, 0.818829, -0.838240, 0.381745, 1.488796, 0.906678, 0.174485, -1.803264, 1.124696, -0.521030, 0.899754, -0.313955, 0.051011, 0.496224, 1.483602, 0.280978, -0.364142, -0.735290, 1.195915, 0.857992, 1.088294, -0.237888, 1.323349, 0.663563, -0.572019, -1.411892, 0.992652, 0.374297, -1.730578, -1.977532, -1.171868, 0.190380, -0.733338, -0.869219, 0.320860, -0.320629, -1.938333, 0.644916, -0.330957, 0.089404, 2.667076, -0.618697, 0.538995, -1.049373, -0.483203, 0.222957, 0.602879, 1.518159, 1.312011, 0.240724, 0.312942, 0.016548, 0.804627, -0.215487, -0.070350, 2.395401, -0.401617, -1.629328, 0.342011, 1.461568, 1.651165, 0.117328, -0.834897, -0.491209, 0.716263, 2.190310, -2.148557, -2.270317, 0.409657, 0.709858, 0.347907, -2.108005, 0.158791, -0.345897, -2.262116, 0.588110, 0.046187, 1.351409, -0.664474, -0.597898, 1.394780, 0.641260, -0.258377, 0.136114, 0.823687, 1.363242, 3.439775, 1.617981, -1.646194, 0.128569, 1.650145, 0.319518, -1.012957, 0.268470, -1.098947, 1.431943, -0.663953, 1.718181, 0.624597, -1.800449, -1.293489, 0.213967, 0.434459, -0.079043, 0.310608, -0.359487, -1.183261, 0.940411, 0.923592, -0.709424, 1.066285, 0.266538, 0.430066, -0.088058, -0.177222, 0.819176, 0.845407, -0.748718, -0.029168, 0.827872, 0.052027, -0.381804, 0.564166, 1.354404, -1.306232, 0.723687, 0.870526, -0.220860, 0.790302, -0.186600, 0.074201, -2.166533, -2.273407, 1.133012, 0.645846, 0.966419, 1.074592, -0.459058, 0.242128, 1.908521, 0.468770, -1.858908, -1.246853, -1.356026, -1.294007, 1.620808, 0.463578, 0.361025, -0.648444, 0.357304, 0.745018, -1.252231, 0.151168, 0.202886, 0.590535, -1.397871, 0.549766, 1.238488, 0.595643, -0.651399, 0.877461, 0.782148, 1.399870, 2.048492, 0.099181, -2.246459, 0.683973, -0.676091, -0.135451, 1.162140, 1.407187, -0.905008, -1.511314, 0.087068, 0.914302, -0.756188, 0.275242, -1.144871, -0.021468, 1.038210, 0.642838, -0.823455, -1.438072, -2.212510, -0.484091, 0.064781, -0.514886, 0.629395, -0.559574, 1.841261, 1.795308, 0.152935, -0.817745, -0.481893, -2.206189, -1.338947, -0.525755, 0.740094, -0.416779, -0.051866, -0.140477, 0.017618, 1.171270, -0.112944, 0.770969, -0.079365, -2.653403, 0.690962, -0.102426, 0.279748, -1.058547, -0.199440, 0.984328, 0.690577, 0.024463, 0.091067, 0.087766, -1.706997, 0.274208, 0.162120, 1.091740, 0.953491, -1.075488, 0.044124, -1.463790, -0.666671, -0.253198, -0.561357, 2.079484, 1.185174, 0.058381, -0.511077, -1.082725, 1.490712, 1.232394, 0.781866, -0.023443, 2.266195, 0.193585, -0.786550, -0.545396, 1.181188, -0.812983, -0.157701, -1.858308, 0.337817, -0.477675, 0.359082, -1.215441, -0.024789, -1.379870, -0.326473, 0.620439, -2.464179, -1.283189, 0.235084, 0.366635, 0.567713, -2.107439, -0.303396, -2.203341, 0.840917, 0.322022, 0.362500, -1.737180, -1.522420, 0.021842, 0.419844, 0.434122, -1.642678, -1.262137, 0.145526, 1.337236, -0.736673, -1.355035, 1.476444, 0.728436, 0.518101, -0.267837, 0.003450, -0.243332, -0.003724, 1.030590, -0.172128, -0.960096, -0.099848, -1.773236, -0.966497, -0.927741, 0.065720, -0.005882, 0.104078, -1.193369, -0.520395, 0.625481, 1.618574, 0.803512, 0.403388, 1.067878, -1.334064, -1.028568, 0.939435, 0.124328, 0.571436, 0.460883, 0.761510, 0.574544, 1.618679, 0.328977, 0.485560, 0.712269, -0.850522, -0.779295, 0.225514, 0.075165, 1.831840, 1.706226, 0.448230, -0.395654, 0.468570, -0.459502, 0.048035, 0.179132, -2.024933, -0.778500, -0.024910, -0.056727, -1.214309, 0.131670, -3.436132, -0.145698, -0.264020, -0.795006, 0.841062, 0.500850, 0.217002, 0.541395, 0.811649, 1.245669, -1.704844, -0.835023, -0.168562, 0.648449, 0.020506, -0.927047, -0.098575, 0.445402, -0.961005, -1.465036, -0.299606, -1.145907, -0.494920, 0.658173, 0.547647, 0.124272, 1.454487, -0.084514, 0.591658, 0.085791, 0.753019, -0.412343, 0.962956, 0.345324, 0.984944, -0.633104, 0.602216, 1.334843, 1.882075, 0.905569, 1.757971, -2.257653, 0.457052, 0.080640, 0.798912, -1.022106, 0.064268, 0.489815, -0.445142, -1.110424, 0.321831, -1.445311, 1.136440, 1.473968, 0.571615, 0.192500, -1.035779, -0.040952, -0.704274, -0.932392, 0.722393, -0.608450, -1.029114, 1.191816, 0.132940, -0.481317, 0.425302, -1.055051, 0.668526, -0.825673, 1.669327, -1.829270, -0.708688, 0.232800, -0.811107, -1.172361, -0.167843, -0.184392, -0.816665, 1.759415, -0.533338, -0.371980, 0.158019, -1.165513, -0.918423, 0.144973, -0.926433, -0.663851, -0.174384, -0.002755, 1.093738, -0.189765, -1.337472, -0.108016, 0.913185, -0.467128, 0.259404, 1.007114, 0.602602, -0.834486, 0.555008, -0.252861, 0.185505, 0.424650, -1.227661, 0.504833, 0.463041, 0.626737, 0.478988, 2.605762, -0.691744, 0.111355, 1.930495, -0.433300, -0.214195, 0.206447, 0.768025, 0.694181, -0.196893, -0.017800, 0.850052, -0.626554, -0.312351, 0.424742, -0.294981, 0.371840, 0.201778, -1.662085, -0.670763, -1.436557, -0.989866, 0.014246, -0.353222, -1.314465, 0.257601, 0.157545, -0.276880, 1.121192, -1.079425, 1.421701, -0.139736, 0.288998, 0.149853, 0.451022, -0.255929, 2.473699, -1.935864, 0.275262, 0.227057, 1.305209, -0.572205, -0.701282, -0.450194, 0.283811, 0.603841, -0.196456, 0.393825, 0.891817, -0.928144, 0.173677, -0.854916, 0.017298, -1.709470, 1.081188, 0.642668, 0.099382, -0.551329, -0.135934, 0.085002, 1.827900, 0.319468, -0.621182, 0.294935, 0.050096, 1.184690, 0.695027, -1.661383, -0.675256, 0.293675, -0.894962, 0.364993, -2.185117, 1.120482, 0.371708, -0.208926, 1.286989, 0.190499, -0.151986, 1.698366, -0.105807, -0.104150, -0.608793, -0.648537, 0.826642, -0.202067, 0.147459, 0.237840, 0.995962, -0.454075, -0.961237, -0.664703, -0.789917, -0.578240, -0.430844, 1.039731, -0.582424, 0.303336, 1.179450, -1.173943, -0.251944, 2.543380, -0.000361, -0.335361, -0.997128, 0.870367, 0.879212, -0.159846, 0.327563, -0.630535, 0.050660, 1.673423, -0.501462, -0.548337, -0.306690, 0.860757, 1.229051, -0.297141, 1.729393, 0.378090, 0.086725, 1.084410, -0.618156, -0.187147, 0.915609, 0.454319, 0.515985, -0.480904, -0.186053, 1.190614, -0.212529, 0.076557, 0.137305, 1.246531, 0.706390, -2.179899, -1.056889, -0.537744, -0.717311, 0.541335, 0.239253, -1.123087, 0.667909, -0.326050, 0.406693, 1.557978, 0.217068, -0.451278, -1.812463, -0.956705, -0.028343, -0.456260, -0.280023, -0.142329, 0.772370, 0.976835, 0.834154, -1.733778, 0.436757, -0.974528, 0.740157, 0.355817, 0.442890, -0.966332, 0.453354, -1.158812, -1.874002, 1.009193, -1.197822, -0.239135, 1.155273, -1.305068, 1.565502, -0.724722, -0.236354, -1.006594, 0.631630, 0.554990, -1.651237, -1.836109, 1.300771, -0.790947, -0.293778, 0.605217, 1.405822, -0.838216, -0.788291, 0.360449, 0.206337, -0.446441, 0.371946, -0.259371, 0.763149, -0.680418, 1.333118, -1.955045, -1.497629, -1.196057, -0.860041, -0.288517, 0.339154, -0.259594, -0.288091, -0.202422, -1.650398, 0.423918, -0.516505, -0.110272, 0.074489, -0.133430, 0.036547, -0.590237, 0.722538, -0.037500, 0.595687, 1.301194, 0.539928, 1.128537, -0.358490, -1.227859, -0.722765, 2.643561, -0.970520, 0.033205, 0.767576, 1.021219, 1.304549, 0.374458, -1.228257, 0.342329, -1.798144, -0.987245, 0.015354, -0.929431, 0.438887, -0.346891, -2.596802, -0.679138, 1.182198, 0.590559, -2.525620, -1.203413, 0.260832, -1.001964, -1.229975, -0.856638, -1.019879, 0.613295, 0.558500, -0.979434, 1.529143, 0.447377, 0.070981, 0.208336, -0.350994, -0.378125, 0.225485, 0.085846, -2.094957, 0.940803, 0.500764, 0.564195, -2.035375, -0.252716, 1.312252, -0.521089, 0.082993, -1.512125, -0.766039, -0.200841, -0.475572, -0.342635, -0.527794, 1.229254, 1.087417, 0.039528, -1.466036, -0.049562, -0.298546, -0.194214, 2.249053, -1.733147, -0.749027, 0.907167, -0.303794, 1.154468, -0.492397, 1.176597, -2.139882, -0.846601, -1.315356, 0.083957, 0.411948, -1.029262, 0.993368, 0.661559, 0.479303, 0.601968, -1.058455, -0.847930, -0.539022, 0.870900, -0.632048, 0.894153, 1.169579, -1.637062, -0.436101, -0.597073, -1.712859, -0.494227, 0.512825, -0.206363, 0.477942, -0.206988, 0.447719, 2.000844, 0.286922, 0.180665, -0.756903, -0.448216, -0.406262, -0.389148, -0.149763, 0.459565, -1.836488, 1.594942, 0.966956, 0.962436, -0.126136, -0.656063, 0.927969, 1.813925, 0.042279, 0.097526, 1.066342, -0.805341, 0.722017, 0.559700, -0.190941, -0.610061, 2.479445, 0.267855, 1.156298, 1.379365, -0.316955, -1.756286, 0.159540, -1.106407, -0.181472, 0.467779, 3.881110, -0.814203, 1.608217, 0.344177, 0.082127, -0.430388, -0.149025, 2.451355, 0.098491, 0.681260, 0.027154, 0.282680, 0.320790, -0.289530, 1.018455, 0.162355, 0.348521, -0.198541, -0.763682, 2.190094, -0.977213, -1.102529, -1.470571, 0.181197, -0.428577, 1.098092, 1.161511, -0.973632, -0.448085, 0.472705, -0.428430, -1.344962, -1.583909, -1.576940, -0.435805, 0.407975, 1.490834, 0.730605, -0.345826, 0.186474, -0.154189, 0.090265, 2.304704, 1.110534, -1.515135, 0.321071, 2.085183, -1.174536, 0.519364, -0.620756, 0.567592, 1.755693, 0.560803, -1.218727, -1.150374, -0.695434, 0.451208, 0.021597, 1.005622, 1.403142, -0.143760, 0.326634, 0.022159, 0.507346, -0.087080, -1.195422, -1.421005, -1.083555, 0.839680, 0.352635, 2.199085, 0.074103, 0.486078, -0.148642, -0.509557, -0.968089, -0.250414, -2.007255, -0.801105, -1.433822, 0.317556, 0.077305, 1.163333, 1.608155, -0.278336, -0.757547, 0.562108, 0.133409, 0.239736, 1.615835, 0.921984, -1.054160, 0.527437, -0.019235, -0.415810, 0.127529, 1.215723, -0.188579, 1.424086, -0.869814, -0.016905, -0.023514, 0.728225, -1.136655, 0.750249, -0.783698, 2.295655, -0.314712, 0.711048, -0.250175, 0.689027, -0.175198, 0.088792, 1.456216, 1.129938, 0.475921, 0.461332, 0.265873, 0.380694, 0.803964, 0.614613, 0.685253, -1.718335, -1.548663, -0.425401, 1.903354, -0.393637, -0.412113, -1.033301, -0.220704, -0.055682, 0.358420, -0.809632, 0.470875, 0.930339, 0.683889, -0.812060, -0.732151, -0.161283, -1.164674, 0.324832, -0.491132, 0.088382, 0.087759, 1.183327, -2.089491, -0.924842, -0.899455, -0.702532, 1.347476, 0.472719, -0.372256, -0.088009, 0.551401, 0.820686, -0.778259, -0.479046, 0.290712, -1.605729, -2.054033, -0.985330, 0.126094, 0.944302, 1.514579, 0.398192, 0.023832, -0.434487, 0.211508, -1.191953, -0.582206, -1.550084, 0.618390, 1.529920, -1.376608, -0.414920, 0.655581, -0.963969, 0.333718, 0.015383, -1.966964, -1.174084, -1.225493, -0.943407, -0.223336, -0.528854, 0.437253, 1.352952, 1.047220, -0.251061, -0.036292, 0.244074, -1.069586, 0.847027, -0.435766, 0.949762, -0.704220, 0.201354, 1.815198, 0.505352, -1.432503, 1.443172, -0.230671, 0.943893, -1.324637, -0.478135, 0.546274, 0.446037, -0.400259, 0.495547, -2.142255, -0.443077, 0.298823, 1.859633, -0.100873, 0.484910, 1.186559, 0.138411, -0.598286, 1.522516, -1.704385, -1.815140, -1.603270, -0.015421, 0.313613, 0.265704, 1.449335, 0.576547, -1.156029, 1.229269, -0.490391, 1.326358, 0.427033, 0.559796, -0.657581, -1.538901, 0.083866, 0.283154, 1.204485, 0.593475, -0.773003, 0.610722, 0.746327, -0.476278, 0.419826, 1.264418, 1.384579, -0.013489, -0.177310, -2.004258, 0.277125, -0.009929, -0.707654, 0.825506, 0.310478, 1.041541, 0.913745, -0.996904, 1.029685, 0.295205, -0.982660, 0.340363, 0.450080, 0.407264, -1.054481, -0.856208, 0.738255, -0.840641, 0.876804, -0.711741, -0.060818, 0.118416, -0.345675, -0.248558, 0.093787, 1.513708, 1.483183, -0.920291, -2.413891, 1.702751, 0.669388, -0.601417, 0.149959, -0.766311, 1.146601, -0.521395, 0.456303, -1.266070, -0.599791, 0.164256, -1.212297, -0.620560, -0.219233, -0.586247, -0.965135, 0.085903, -0.701241, 1.223255, 2.754263, 0.025770, 2.427701, -1.326918, -1.660621, -2.095936, 0.391506, 1.351208, 1.075658, -1.254910, -0.393265, 0.629043, -0.383695, -0.089478, -0.593946, -0.277314, 0.458572, -2.399272, 0.092314, -0.040334, -0.115827, 1.200069, 0.472518, -0.467431, 1.243162, -0.046362, -0.649520, 0.430953, -1.462685, -0.081381, 0.199664, -0.577394, -0.904788, -0.394129, -0.217192, -0.928855, -1.165942, 1.195081, -0.742787, 0.176280, -0.701140, 0.082035, 0.388457, -0.315915, -0.789743, -0.400897, 0.040482, -1.058031, 0.202164, -0.956372, -0.216798, 0.393916, -0.506817, 0.102799, -0.007515, 0.517083, -0.684058, 0.254546, -0.276274, 0.754356, 1.252259, 0.549741, 0.704992, 0.178287, 0.559461, -0.620493, -1.645242, 0.236592, -0.601707, -0.304022, -1.517820, 0.195804, 0.382050, 2.206743, 1.195746, -0.727297, -1.645774, -0.935245, -1.778180, 0.114269, -0.312176, 0.341870, -0.083056, 0.259290, -0.531841, -1.805558, -0.438805, -0.808322, 0.388300, 0.708307, -0.326327, -2.258091, -0.729833, 0.202822, -0.159538, -0.271626, 0.099357, 1.107187, 0.963453, 0.091113, 0.746645, 0.159999, 0.395720, 1.342128, -0.827157, 1.829368, 0.381451, -0.590199, -0.637061, -0.719347, 1.870901, 0.870605, -1.404343, -1.012266, -1.196259, -1.105421, 0.056348, 1.134959, -1.341503, -1.402547, 0.252173, -0.542601, -0.052357, 0.215905, 0.273448, -0.415359, 1.350430, -0.551576, -0.829563, 0.290155, -0.544392, 2.608920, 2.069528, -0.183427, 0.800053, -0.400553, 1.092986, 0.902542, -1.372536, 0.786001, 0.009701, 2.741430, 1.055390, -0.763248, -1.619555, -1.374887, 0.403051, -0.553829, 1.541312, 0.456185, -1.010896, 0.377097, 0.888638, 1.143983, -0.016352, 0.455733, -0.532150, 0.507680, 0.098419, 0.503790, 0.953540, -0.019465, -1.270815, 0.594566, -0.719709, 0.925514, 0.330566, 1.346135, -0.186297, -1.488876, 0.757388, 0.344839, -1.328167, 0.549608, -0.435079, 0.340575, -0.023966, 0.554511, -1.107000, -0.541496, -1.656070, 0.488550, -1.402533, 0.685209, -0.148812, 0.505720, 0.040675, 0.134768, 0.657028, -0.155591, 0.344543, -0.612301, 1.477145, 2.190825, 1.471012, -2.159504, -0.245524, -0.280004, 2.077043, -0.817895, 1.034295, -0.486051, -0.433361, -0.744326, 0.571373, -1.058170, -0.407768, -0.061269, -0.337884, 0.006545, -0.589535, 0.318917, -0.034954, -0.521962, 0.974166, 1.288732, 2.253136, 1.002043, 0.061397, -1.305229, -0.068759, -1.732967, -1.819716, 0.762548, 0.663048, 0.148795, -0.074821, -0.983635, 0.545044, 1.398136, -0.103645, 0.554306, 0.976471, -0.008717, -1.046914, -1.093441, 0.142877, 0.698689, 0.207773, 1.064010, -2.337609, 0.288057, 0.918415, -2.263501, 1.489176, -0.058540, -0.471190, 1.140931, -0.529683, -0.829426, 0.508744, 0.543767, -0.544351, -0.879347, -0.398541, 0.895050, -0.696186, -0.559710, 0.170483, 0.467215, 0.292191, 0.657371, 1.346734, 0.528605, -0.553434, -1.138393, 0.907399, -0.672679, 0.542048, 0.060942, -0.466661, -1.803535, -0.131198, -0.446043, -1.230124, -0.729890, 1.525117, 0.097931, 0.689816, -0.005315, -1.507717, -0.988605, -0.206080, 0.981274, -0.575240, 0.725074, 0.167128, 1.083990, 0.205176, 1.194026, 0.683780, -1.721597, 0.579266, -0.837492, -0.919477, -0.179042, -0.911529, 0.214047, -0.519153, 0.476155, -0.542609, 0.810156, -1.158795, -1.863170, 1.882912, -1.268012, 0.636504, 0.130003, 0.142362, -0.112926, -0.002706, 0.390669, -0.369251, -0.091393, 1.488014, -0.050778, -0.247821, -1.420317, -0.044913, 1.873265, -2.123026, -0.350182, 0.875381, -0.330496, -0.688645, 1.368454, 0.577202, 0.194538, 0.334533, -2.313260, -0.914488, 1.123789, -1.637715, -1.099386, -0.646859, -2.284147, -0.355657, 0.846270, 1.978013, 0.403829, 0.520546, -0.558465, -0.485159, 2.060744, -0.378916, 0.349144, -0.700467, 0.638671, 1.489930, 0.354398, 1.362643, 0.288038, 0.624081, -0.587916, -0.652340, -0.077268, -0.916258, -0.371227, 0.017455, -0.868597, -0.575030, -0.216748, -0.819772, -0.703140, -0.427428, 0.074671, -0.804929, 0.671625, -0.733333, -0.004246, 1.763025, -0.819370, 0.808329, -1.264302, 1.075212, -1.260927, -0.673946, -0.645416, 1.413717, -0.068014, -0.718522, 0.260425, -2.068432, 1.731001, 0.435510, 1.171530, 0.550506, -1.068483, 1.850538, -1.211278, -0.825417, -1.205693, -0.420082, -0.697188, -1.181914, 0.816290, 0.711240, 1.255630, 0.167932, 0.209640, -1.368034, 0.196686, 0.087783, 0.925538, -0.091152, 0.444935, 1.683163, -0.344514, 0.967196, 1.189317, -0.839257, -1.206727, 2.114550, 0.485974, 0.502732, -0.636945, -0.433245, 0.808100, -0.382502, 0.578872, -0.246123, 0.453423, -0.504004, 0.341060, 0.347787, -1.167599, -0.854375, 1.227634, -0.266398, 0.537972, -0.273573, -1.346838, -0.610977, -0.722934, 1.780737, -0.151951, 0.058041, 0.019867, -0.398723, 1.344600, 0.289544, -2.695957, 0.738540, -0.437836, 1.610160, -1.216753, -1.200065, -1.619791, -0.079505, -0.487144, -0.623184, 1.457724, 0.611235, 0.080989, -1.180624, 0.379649, -0.792693, -0.221676, 0.961535, -0.166750, 1.253906, 0.128487, -0.213935, -1.479114, 0.163525, 1.722353, -0.958783, 0.519339, 1.160076, -0.178481, 0.930287, 0.313077, 1.419353, 1.589867, 0.980998, 0.575129, 1.618510, -0.270627, 0.999790, -1.271539, -0.166624, 0.926740, 3.095187, -0.025565, -0.386711, 0.160217, -0.508267, -0.963144, -0.336637, -0.473495, -0.883264, -2.795036, -0.546304, -0.618398, 1.928046, -0.158577, -0.962569, -0.108699, 0.179481, 0.371330, 1.108388, 0.363148, -1.230862, 0.173506, -0.334006, 0.003449, 1.000635, 0.453458, 1.021398, -0.928917, -1.061935, -0.613701, 0.781315, -1.694132, 0.299375, 0.037343, 0.221270, 0.433471, -0.489390, 1.298061, 0.004571, -1.023451, 0.569854, -0.931506, 0.359970, -0.053870, 0.447212, -1.473702, -1.440793, -1.141564, 0.676373, 0.560454, 0.707826, 0.232312, -1.286593, 0.358502, -1.424928, -0.715896, -0.883201, -0.083736, -0.341216, -2.025370, 0.972403, -0.967026, -0.856227, 0.763017, -0.717609, 0.558452, 2.331326, -2.185278, 1.216678, 1.631824, -1.504144, -1.139019, 0.266957, 0.246443, 0.591120, 0.252712, 0.610343, 1.649399, -0.097235, -0.251809, -0.384961, 0.422768, 0.495394, -1.686420, 1.448270, -1.103798, 0.057818, 0.356002, -0.526546, -1.470494, 1.406152, -1.890332, -0.493580, -0.655663, 0.752019, 0.219506, -0.161001, 0.236042, -0.532814, -1.257640, 0.098143, -0.485976, 1.117989, 0.786840, 0.045533, 1.206549, 0.868139, -0.798071, 1.433796, 1.303382, -0.280311, 0.770341, 1.479689, -1.273691, -0.697336, -0.258092, 0.094683, 0.632330, 0.191849, -0.722923, 0.209976, 1.030248, 0.522288, -1.037337, -2.260973, -1.031154, 0.292078, 0.078886, 0.758000, 0.319038, -1.593856, -1.976969, 1.310682, 0.481242, 1.749868, -1.066534, -0.811970, 0.257715, -1.052848, 0.358879, -2.254643, 0.233903, 1.661126, -0.995321, -0.286914, -0.679149, 0.993148, -1.603131, 1.339072, -0.922202, -1.364625, 1.608158, -1.022875, -0.874026, -0.130917, -0.454188, 0.042340, 0.849575, 0.998991, -0.730997, -0.103818, 0.243063, -0.420793, -0.735103, 0.761837, 0.952681, 0.396939, 0.738157, -0.083109, 0.555429, -1.360230, 0.080543, 0.230652, -0.075967, 0.352418, 1.300434, -0.588970, 1.083194, 0.498871, 0.202697, -1.643582, 1.297346, 0.150473, 0.504489, 0.189814, 0.816378, -0.980351, 0.391268, -1.646284, 0.888691, 0.480824, -0.633339, -0.749756, -1.466434, 1.066277, 1.272800, -0.743119, -0.117425, -1.033807, 0.653002, -0.320177, -1.872822, 0.353430, -1.029850, 1.590908, -0.374817, 0.965611, -0.686057, 2.021948, -0.083724, -0.648622, -0.553703, 0.195509, 1.407376, -0.879802, 0.475200, -0.109079, -1.343161, -0.193221, -1.697834, -1.434656, 0.294200, -1.346909, -1.156519, 0.532181, -0.185759, 0.677221, 0.917804, -1.791535, -0.524742, -0.558835, -1.938489, 0.266458, -0.822866, -0.917252, 1.113242, -0.971488, 0.826269, -0.844720, -0.238222, -0.624487, -0.274190, -1.627537, -1.373102, -0.734495, -0.723230, -0.768714, 1.460737, 0.162085, -1.127694, -1.694918, 0.646904, 0.389383, 1.617150, 0.983095, 2.256056, 0.420384, -0.907838, 1.346546, 1.525255, 0.196363, -1.984704, 0.830593, -0.102054, 0.029580, -1.152183, 0.399252, 0.714363, 1.491191, 0.659142, 0.173175, 1.920284, 1.163907, 2.138160, -1.584565, 1.090690, 0.965141, -0.006876, 0.772702, -0.618607, 0.150329, -0.830562, 1.416519, 0.319361, 1.253456, 1.358354, -0.782575, 1.446175, -0.067706, -2.334882, 1.320798, -1.249280, 0.013475, 0.781691, 1.240064, 0.251174, -1.210035, 0.660143, -0.247212, 0.444268, -1.394792, 1.369103, 1.024364, 0.840645, -1.473354, -0.269432, 0.052182, 0.898879, 0.821979, -0.134890, 1.429582, -0.582538, -0.748151, -0.470300, -0.127761, -2.497673, 1.287354, -2.515359, 0.275239, 1.191146, 0.289007, 0.666490, 0.261252, 0.086265, -0.457872, 0.055435, 1.460266, 0.367337, -0.648796, -0.623580, 1.488212, -0.392563, -1.071432, -1.067981, 0.846690, -0.710225, 0.170723, -0.362508, -2.222969, -0.070669, 1.741746, -0.685610, 0.112340, -0.987062, -1.253738, 1.447612, 0.658723, -0.912477, 0.502209, -1.523860, 0.675125, 2.114939, -0.492966, -0.606301, 1.302855, 1.161463, 0.154469, -1.064928, 0.913568, -0.198968, -0.657884, 0.667496, -1.431701, 0.665475, -0.380523, -1.238291, 0.361883, -0.983519, 1.008972, 1.293861, 0.513494, -0.836726, -0.453269, 2.404221, 0.866311, -0.240651, 1.378030, -0.679602, -1.157365, -2.617810, -0.787232, -0.446120, 0.147320, 0.930046, -1.242281, 0.655075, -0.881162, -1.100827, 2.551022, -0.570225, 1.876579, 0.617867, 1.664603, -0.079147, 0.377650, 0.693702, -1.058116, 2.353161, -0.512432, 0.929362, 1.021207, -0.125068, -0.365395, -1.861506, -1.668203, 1.021039, 1.081496, 1.765793, 1.062593, 0.046025, -0.782797, 0.261323, -1.608353, -0.309767, -1.279847, -0.869277, 1.465411, -0.327114, -0.021511, -0.927904, -2.009585, -0.733882, -0.920428, 0.317701, 0.571201, 0.870829, -0.425450, -0.306367, 1.139129, -0.502143, 0.279263, 0.484645, 2.004383, 0.633851, -0.047023, 0.200902, 0.201886, -0.696526, -0.300595, 0.511508, 0.654121, -0.097666, -0.322094, -0.610046, 0.121770, 0.071631, 0.676976, -1.627126, 0.719690, 1.304001, -0.768672, 0.257296, -0.089022, -0.490937, 1.048144, -1.280689, 0.454322, 0.447600, -0.711054, -0.051485, -0.361274, -0.722115, -1.164260, -0.264290, -0.542931, 0.330004, 0.191781, 0.741959, -1.808822, -1.646506, 1.957869, 1.102139, 1.101276, -0.883624, -0.162952, 0.289146, -0.892247, -0.463600, -0.279927, 1.559605, -1.053084, -0.602776, 0.239181}, + { -0.546702, -3.479280, 1.281969, 0.204100, 1.813676, 0.490487, -0.757911, 0.372871, 0.197252, 1.444845, -0.096162, 0.679587, 1.275703, -0.553738, -0.712873, -1.005727, 0.639693, 0.402653, 2.190025, -0.096112, 0.135051, -0.192119, -0.564087, -0.070908, 1.437546, -0.650103, 0.479782, 0.649491, -0.381469, -2.525810, 0.610627, -0.877901, 0.172105, -0.874076, 1.064254, 0.384748, 0.709794, 0.852931, -0.475824, -0.816417, 0.253611, -0.082728, -0.836497, 1.426847, -0.192527, -1.648553, -1.531636, -0.333416, 0.151798, -0.890083, -1.065512, -0.679672, -1.122985, 1.362803, 0.269560, -0.822026, -0.241838, 2.159807, 0.214297, 0.266953, 0.169955, -0.792499, -0.804016, 0.728123, 1.767786, -0.184180, -0.034747, -0.868238, -0.524344, 1.211457, -0.248566, -1.203138, -1.234641, -1.392020, 1.760491, -0.575578, -0.065623, 1.757267, -0.746238, -0.889374, -0.718316, 1.611904, 0.865422, 0.689008, 0.215285, 0.564133, -0.617023, -0.432340, -0.221561, -2.667309, -0.109523, -1.117582, 1.575537, 0.241379, -1.533468, -2.880974, -0.456555, 0.827512, -0.278596, -1.409184, -1.525921, -0.803483, 0.296735, -2.118190, 0.445919, 0.940326, -0.416815, 1.986358, 1.433205, 0.635738, -1.271075, -1.253477, -1.740433, 0.326395, 0.364876, -1.942431, -1.406632, 2.480764, 1.167179, -0.276924, 0.892614, -0.779999, -0.981326, -1.274167, -1.555269, 0.664020, 0.848989, 0.244536, -0.654083, 1.135018, 1.096046, 1.189611, -0.157559, 0.124747, -0.126091, 0.896882, -0.697857, 1.199272, -1.212372, 0.615753, -1.292237, 1.974023, -0.044392, -2.420623, -0.533192, 0.568319, 1.029759, -0.999752, 1.841177, 1.284183, -1.573000, 0.937218, -1.994672, -1.801006, 0.335549, 0.968059, 0.128210, -0.154791, -0.908874, 1.292391, 3.102638, -0.713690, 0.705246, -0.358244, -0.813543, -0.789011, 0.238518, 0.630661, 0.423279, -1.107202, -1.379962, -0.279946, 1.362005, -1.570006, 0.805090, -0.352570, 1.461932, -1.523718, 1.334782, 0.435690, -2.180466, 0.640995, -1.130684, 0.764881, 1.175751, 1.360450, -0.108873, -0.358859, -1.354791, -1.782403, -0.587183, 0.176936, 1.988700, -1.805753, 1.527215, -1.310170, 0.237209, -1.042104, 0.011365, -0.083505, -1.313460, 0.440248, 0.011818, -1.581587, -0.868283, 1.138763, -0.281074, 0.509712, 1.105508, 0.564441, -1.108557, 1.348649, -0.507283, 0.750773, -0.388684, -1.544325, -0.007086, 1.354264, -2.308678, -0.663084, -0.267921, 0.011330, -0.017436, -0.572162, -0.819924, 0.225857, 1.723824, 0.380895, 1.586911, 1.954356, -0.236418, -0.197161, 0.127556, 1.509263, -1.728399, 0.093941, -1.688926, 0.165151, -0.600337, 0.119865, -0.787766, -0.206559, 1.574906, -0.187367, 0.263209, -1.411076, 2.901291, -0.308304, 0.254285, -0.629414, -0.479781, 0.146673, 0.946288, 0.967090, -0.217460, -0.018999, 0.047707, -0.671097, 0.908278, -0.543224, -3.080528, 1.168676, -0.556091, -0.096008, 1.158467, -0.351752, 1.146450, 1.960713, 0.490796, 0.009053, 0.588831, 1.038268, 0.013681, -0.760712, -1.341535, 0.811241, -1.001098, 0.738826, 0.899320, 0.317043, -0.519889, -0.695239, 0.685640, 0.053863, 0.386357, -0.075529, 1.597041, -0.311404, -0.399053, 0.773792, 1.103177, -0.599354, -0.236869, -0.088272, 0.257239, 0.348416, 1.001748, 0.565105, 1.043244, 0.281017, 0.717559, -0.444827, 1.439773, -0.507837, -0.314224, 0.455111, -0.729746, -0.270938, -0.083328, 1.116038, 2.165294, -0.143620, 1.244648, -1.017341, 0.720974, 0.714124, 0.607361, -0.416470, -0.415471, 0.114658, 0.643928, -1.607350, 1.734378, 0.933473, 1.277323, 0.551227, -0.560843, 1.069275, 0.568155, 0.499344, -0.674527, -0.473248, -0.106183, -0.714342, 1.486905, 0.822615, 0.392550, -1.412507, 1.320822, 0.918009, 0.828928, 0.173972, -0.937988, -0.346022, -0.414737, -0.095469, 0.910329, -0.384739, -0.570791, -1.272898, -1.042226, 1.457786, -1.079185, 1.087736, 0.126176, -1.041015, 0.783395, -0.194132, 0.518606, -0.592545, 0.860658, 0.658174, -1.814432, -1.255922, -0.612641, -2.107119, 1.660166, 0.668104, 0.456806, 0.582133, -1.299312, 0.811868, -0.516781, -0.108662, 1.156318, 0.176076, -0.464090, 0.206290, 1.730442, -0.405242, -0.239455, 0.270996, 0.891669, -0.239943, -0.254048, 0.495735, 1.004645, -0.772280, -1.074777, -2.310260, -0.391156, 0.612754, 0.178409, 1.109788, -0.000639, -0.399230, 0.671902, 1.169714, 1.531017, -0.219472, 0.780675, 0.575824, -1.181746, -0.628768, 0.654607, -0.073733, -1.096885, 0.740839, 0.990603, -0.485555, 0.517071, 1.280939, -0.799209, 0.053889, 1.088144, -0.418205, 0.953869, -0.309487, 0.538600, 0.806603, 1.122140, 0.223117, 0.837854, 1.060827, -0.711095, 0.835888, -0.600026, 0.484749, 0.208810, -0.255554, -0.108948, -0.404232, 0.641512, 1.228912, 0.881007, 0.997146, -0.745469, 0.099853, 1.126967, -0.759049, -0.982529, 1.672569, 0.000626, 0.884397, 0.136759, -0.640649, 0.333578, 0.078262, -0.492754, -0.048147, -2.078400, 0.153680, -0.621102, 0.745186, 0.433573, -0.853499, -0.754126, 2.523566, -0.519786, 2.478657, -0.320310, 1.390442, -0.579831, 0.575781, -0.877787, 1.759696, -0.082488, -2.198108, 1.634852, 1.086027, 0.028339, -0.515230, -0.182139, -1.419449, -1.480705, -0.136671, 1.531879, -0.589691, -1.309580, -0.163627, 0.024708, 0.734130, 0.873181, -0.272713, -0.548532, 0.183101, -0.497299, 0.809498, -1.450759, -0.117722, -0.219132, 0.292452, -1.904197, 0.143579, 0.116271, 1.214655, -0.640343, -0.630937, -0.209910, 0.340909, 1.171140, 0.636831, -0.616606, 0.008119, 1.572993, -0.334718, -1.800502, 0.156949, 0.405236, -0.724222, 0.483722, -1.819836, -0.691741, -0.279210, -0.388509, 0.668926, 0.889858, -0.150314, -0.543959, -0.176981, 1.987931, 0.855049, 0.529252, -0.845001, -0.989239, -1.421062, -1.327491, 1.673545, 1.458873, -1.592869, -0.822923, -0.883967, -0.376208, 0.320181, -0.471279, 0.549328, 1.529936, -0.167083, -2.698047, -1.965089, -1.552776, -2.073594, 0.240863, -1.637739, -0.491277, -0.879370, 1.112104, 0.544278, 0.613885, 0.737477, 0.839379, 0.321677, 0.769763, 0.893266, 1.722090, 0.167345, 1.445776, -0.629170, -1.240548, 0.678559, -0.581255, -1.027003, -0.207990, -0.396461, 0.452000, 0.127755, -0.443898, 0.297728, -0.931179, 0.967847, -1.298123, -0.906806, -0.218328, -0.312308, 1.082331, 0.397821, 2.220063, 1.565924, 1.189632, -0.713416, 1.600261, -2.119111, 0.282426, -0.460493, -0.236223, -1.518592, -1.512269, -1.084260, 1.143492, 1.390114, 0.516777, -0.111318, -0.194051, 1.032500, 0.327746, 0.286373, 1.096142, 0.686950, 1.591864, 0.373304, -1.226966, -0.990414, -1.138548, -1.688668, -0.655515, 0.937867, 0.691856, -0.747645, -1.283800, 0.647234, -1.248964, 1.903738, -0.838187, 0.189007, -0.333875, -1.432477, -0.439429, -1.051654, -0.745071, 1.493812, -1.260792, -0.880455, -1.807662, -0.215741, -0.610704, 0.419419, -1.032236, -1.052457, 0.665854, 0.977798, -1.088042, 0.841676, -1.244256, 0.699423, 0.458182, 0.074936, -2.040297, -0.406160, -0.134868, -1.317370, -2.233015, -0.488203, 0.187009, -1.416606, 1.812506, 0.388035, 0.865895, -1.469839, -1.644285, 0.843576, -0.790269, -0.302565, 0.436191, -0.514398, 1.184170, -0.656740, 1.712983, -0.052247, 1.106618, 0.550236, 0.792605, 0.006270, -0.719713, -0.830699, -0.333360, 1.245278, 0.641135, 0.246580, -0.308070, -0.565285, -2.584497, -0.362588, -0.074127, -0.213462, 0.075311, 0.166592, 0.859304, -1.146299, -1.166986, 1.688527, -0.738788, 0.600389, -0.128198, 0.344568, -0.741380, -0.731147, -0.144513, 1.368747, 2.399508, 0.886127, 1.358408, 0.118258, -0.094923, -2.378642, 0.755630, 0.854068, -0.936919, -0.625229, -0.677522, -1.245193, -0.335134, -0.252879, -0.211951, 0.055112, -0.783280, -0.618385, -0.958108, 0.536541, -0.136982, -1.311414, 0.619876, 0.620852, 1.744741, 0.261075, 1.440116, 0.631201, -1.079088, -0.108566, 0.746522, 0.998224, -0.513033, -0.671468, -0.155251, -1.946431, 0.560747, -0.379248, -1.062482, 0.127920, -0.649031, -0.126300, -0.574007, -1.324696, -0.421767, -0.274581, -0.281393, -0.552640, -0.864856, 0.672566, 1.154413, 1.374227, 0.980392, -0.084116, 0.512321, -0.876715, -1.144675, 0.122608, -0.103457, -1.369081, -0.637590, 0.053352, 0.962521, -0.776396, 0.223998, -0.428119, -1.305058, -0.783310, -0.120336, 1.644206, 1.971693, 0.866150, -1.486048, -1.154154, -0.506225, -0.068497, 1.708595, 0.005526, -0.375063, -0.139891, -0.573081, 2.406396, 1.469202, -0.024259, -1.061411, -0.376466, -0.632997, -0.792997, 0.162100, 0.133559, 0.166693, 0.108858, -0.380970, -0.086500, -0.476880, 1.254424, 0.454440, 0.290330, 1.407760, 0.673980, 0.395342, -0.258706, -0.159918, -0.775750, -1.237364, -0.786243, -0.852008, 1.120450, -1.504593, 0.005802, -1.107561, 1.345220, -1.322717, -0.435464, -1.431995, -0.042082, 0.339572, 2.011347, -0.046804, -0.781187, -1.353966, -1.042931, 1.096995, 0.547902, 1.946881, 0.090543, -0.101012, -1.008603, 1.171841, 0.221167, -0.671014, -0.507839, 0.126544, -0.476825, -0.274699, 0.097734, 0.940326, -0.130910, 0.086700, 0.829810, 0.269792, 2.239339, -2.085658, 1.075656, -0.076831, 0.629599, -1.209154, 0.329170, 1.237872, 0.551317, 1.178346, -0.971594, 0.780025, -0.090874, -0.765722, 0.097774, -1.403388, -0.029671, 1.349227, 1.450856, 0.947850, 2.015108, -0.111993, -1.781984, -0.308100, -0.110668, -1.158519, 0.517697, -0.216494, -0.220037, 0.081415, 0.630720, 1.338431, 0.510129, -0.146694, 0.310522, 1.418374, -1.442137, 0.428556, 1.363806, -0.708389, -1.698435, -1.183555, 0.243152, -1.359286, -0.384201, -0.029706, 0.173880, -0.192951, -2.630071, -0.130015, -1.469690, -2.610622, -0.785859, -0.181860, 0.861415, 0.193740, 1.702512, 0.683016, -0.365387, -0.648124, -1.846956, -1.122233, 0.185972, -1.352374, -0.830162, -0.446146, -1.758734, -1.780701, 0.041390, -0.471741, -1.055600, -0.546277, 0.369549, 1.965760, -1.042709, 0.708577, -0.526395, 0.601439, -0.064480, -0.445531, -0.753787, -0.523636, 0.715584, 0.652892, -1.463985, -0.477663, 1.417842, -0.619403, 1.111166, 0.156766, 0.211911, -0.665507, 1.150210, 1.769839, 1.136887, -0.633683, 2.066492, -1.130269, -0.705939, -1.626145, -0.008259, 1.435961, 1.238059, -0.346081, 0.307919, 0.491241, -0.783238, -1.284757, 1.430457, 1.210389, 0.477298, -0.089854, -1.227091, -0.363040, 0.623374, 0.589486, 2.275804, -0.417661, 0.228580, 0.859881, -1.235270, -0.274058, -1.626223, 0.604122, -0.688723, -1.128704, -0.209283, -1.419530, -0.734639, 0.690308, -1.668127, 1.950307, 0.721112, -0.058894, 0.874049, -2.387257, -2.382137, -0.660178, 0.152801, 0.835420, -1.307660, -1.214327, 0.661770, -0.242860, 1.219668, 0.208198, 1.456882, -0.965216, -0.028414, 0.187679, -1.010813, 1.849366, -0.221067, -0.914744, -0.416883, 0.767400, 1.495032, 0.305480, -0.218613, -0.081811, 0.305321, -1.253629, -0.293919, -0.901221, -0.118398, 0.070505, -1.150420, -1.264493, -0.630057, -1.105974, -0.123739, -1.019149, -0.720495, 0.540438, -0.345324, -0.379632, 0.344677, 0.328697, 2.748793, 0.620863, -1.034786, 0.875036, -0.097624, -0.575974, 0.794444, 0.220426, 0.543386, -0.645406, 0.053278, 0.076648, -0.379449, 1.190202, -2.009440, -0.959602, 0.448640, -0.086173, -0.776314, 0.737553, -1.246626, -1.980447, 0.243003, 0.369617, 1.024192, 0.358525, 0.887942, -0.094622, 1.187749, -0.083996, -0.862417, 0.190874, 0.119322, 0.294916, 2.645494, -0.859714, -0.825918, -0.179890, 1.293485, 0.798081, 0.384544, -0.783378, -1.062039, -1.795689, -1.247499, -0.187664, -0.021139, 0.196630, -1.827605, 1.761667, -3.147164, -1.070339, 0.481859, -1.844817, 1.024707, 0.374770, 1.535322, 0.347619, -0.337184, 0.697440, 2.658650, 0.348595, -0.122697, 0.109197, 0.596718, -0.078259, -0.776356, 0.488101, 0.923557, 1.018881, -1.088113, 1.134182, 0.718592, 1.836771, 2.024154, -0.870108, 1.244205, -2.087258, -0.388722, -1.795906, 0.711192, -1.373735, 0.449663, -0.783590, -1.143168, 0.135592, 0.083174, -0.931215, 0.987422, -1.575637, 0.446788, -0.654699, -1.318031, -0.647886, 1.402221, 0.123557, 2.230324, 1.797810, 0.300040, 0.343700, -0.537056, -1.600758, 0.595180, 0.118309, 0.997136, 0.836712, 0.283616, 0.433747, -0.729029, -0.943932, -0.227366, -0.057888, 1.183126, -1.320678, -0.380555, -1.309577, -0.485332, 0.604359, -1.330922, -0.148926, 0.456372, -1.140769, -0.609186, 0.467971, 0.299118, 0.174998, 0.422933, 0.754133, -0.732476, -0.928986, -0.728240, -1.178316, 1.000448, -0.814347, -0.203063, 0.443529, -0.174311, -0.251117, -0.644071, -0.153997, -0.082539, 0.674903, 0.472048, 0.897780, 0.660583, -0.177280, 1.068870, -1.446629, -1.546493, 1.366226, -2.288502, 1.794686, -0.420767, 1.332002, -1.373284, -0.862202, 0.927564, -0.494349, 1.181384, -1.125830, -0.074256, -0.378115, -0.839350, 1.499537, 0.235234, 0.014598, -0.546254, -1.289649, -0.349299, 1.089985, 1.066408, 0.764480, -0.164093, -1.693415, 0.692358, -0.162189, -0.730407, 1.673545, -0.980235, 2.001535, 1.398425, 1.558775, -0.702967, 0.211842, 0.624490, -0.964077, 1.120932, 0.542271, 0.030446, 2.327094, -1.554529, 0.269761, 1.903536, -0.443620, 0.649849, -1.664970, -0.677397, -2.872522, 1.307669, 1.335139, 1.673917, 0.013702, 1.398112, -1.606674, 0.772259, 0.056622, 0.024881, 0.241775, 0.243164, -0.384306, 2.792778, -0.587318, 0.375403, -1.237404, 0.488807, -0.760261, 0.144003, -0.173976, 0.095249, 0.010463, -0.937822, 0.410867, -0.770867, -0.603174, 1.632809, 0.597481, -2.215459, -1.109547, 1.750008, -0.189765, -1.519374, -1.467196, -0.853718, -2.225365, -0.363549, -0.446801, -0.189340, -1.228377, -0.626110, -2.156332, -1.151893, -1.283724, 1.213556, -1.590464, -1.458545, -0.366378, 0.354419, -0.720425, -0.717857, 0.047276, 1.240608, 1.548001, 1.007140, -0.523533, -0.388501, -0.536126, -0.806852, 0.169690, -0.508903, -0.418444, 0.337202, -1.508635, -1.104826, -1.402955, -0.067040, -0.888354, -0.705907, -0.010777, -1.053442, -1.156385, -0.484154, 0.139156, -0.387661, 0.016361, 1.634620, 0.566286, -1.416025, -0.753104, 0.293649, 0.093446, 0.107360, -0.293067, 0.130518, -0.823477, -2.274293, -0.315044, -0.750269, -0.028701, 0.308100, -0.523415, -1.280716, -0.741633, -0.354397, 1.317815, 1.384787, -0.026900, -1.451873, -0.454513, -0.084957, -0.115540, -0.466295, -0.634769, 0.022678, 0.742489, 1.386997, -0.385872, 0.029364, 1.027894, 0.457606, 0.582352, -0.592307, 0.053087, -1.333539, 1.020934, -0.078576, -0.999927, 0.003452, -0.765376, -1.563914, 0.088731, -0.153744, -0.709352, -0.044393, 1.113993, 0.921396, 1.111499, 1.210143, -0.341550, 0.042235, 1.429697, -0.632591, -0.300360, -0.680296, 0.436063, -1.175988, 0.489881, -1.205534, 0.338403, -0.566842, 0.131293, 1.421872, -0.841501, -1.294598, -0.115798, -0.039727, -0.980674, -2.606051, 0.920376, 0.057453, 0.111790, -0.710748, -0.076055, 0.189401, 0.214520, 2.321867, 0.232029, -0.246663, -1.359717, -1.459771, -2.334101, -0.652773, 1.191809, 0.904245, 1.032031, -1.547951, 0.115268, 0.328072, -0.761484, 0.838651, -0.649313, -0.781102, 1.574347, 0.856498, -0.632760, -1.187543, 1.517092, 2.353967, -0.278929, 0.978824, 0.733094, 0.378488, 0.479565, 0.897163, -0.123646, -0.310430, -0.759467, -1.885428, -0.209862, -0.517035, 1.719035, -0.125751, 0.172083, 0.320306, 0.208253, 0.910070, -0.178106, 0.898964, 0.740969, 0.118788, -0.216174, 0.956823, 1.711554, -1.084347, 1.123219, -0.703388, 1.820281, 0.497703, -0.563163, -0.739848, -0.791185, 0.889304, 0.602255, 0.129036, 0.705769, -1.268192, 0.885870, 0.727655, -0.218390, 0.627912, -0.161703, -0.426803, 1.357310, 0.469102, -0.356459, -1.209466, 0.642868, 0.247731, 0.451678, -0.644547, 0.335827, 0.338670, 0.982578, -0.195142, 0.035988, 0.102645, 0.887253, -0.269961, 0.833427, -1.889038, 1.841671, 0.987263, 1.191295, -1.441744, -0.632205, -0.825310, -0.294225, 0.727003, 1.412185, 0.082373, 0.236460, -0.038422, -1.959176, 0.649496, 0.733149, 0.454742, -0.814309, -0.183796, 0.399533, -2.887589, -1.032415, -0.147824, -0.197423, 0.710240, 0.995691, 0.800466, 1.632968, 0.404815, -0.515171, -1.026805, -0.667833, -0.114808, -0.924617, -0.018594, -0.157162, 1.403705, 1.766914, -1.192876, -0.793076, -0.703270, -0.150484, -1.000432, -0.820079, -0.728116, 0.881888, 0.353508, -0.644275, 0.387571, -0.943107, -1.719772, 2.067284, -1.283606, 0.555288, -0.538343, -0.232900, 1.706254, 0.501986, -0.310663, -0.115982, 0.778088, -0.401959, 1.209729, 0.495599, -0.565936, -0.050681, 1.109133, -0.178498, -0.255668, 0.514292, 1.742133, 1.016622, 2.226065, 0.070508, 1.948062, -0.686067, -0.756786, -1.386338, 0.751718, 0.128653, 0.402268, -0.456415, 1.721122, 1.888827, -1.109620, 1.753833, -1.272838, -1.750162, 1.393937, 0.414713, 1.458795, 0.432089, -0.271084, 0.305521, -0.184658, 1.029695, 0.623047, 0.674749, 0.500990, 0.108209, -0.948856, -0.378686, 0.737663, -0.225464, -1.255460, -1.450462, -0.795926, 0.982417, -1.564558, 1.008991, -0.486431, 0.148419, 0.506192, 1.829997, 0.298905, -0.800254, 0.596263, 0.476915, -0.985428, 0.307917, 1.044979, -1.276391, -0.539604, 0.012788, 0.269754, -1.937072, 0.509333, -1.337484, 0.302740, 0.899198, -0.448961, 0.272133, -0.503766, 0.245911, 2.004431, 0.224981, 0.455179, -0.247878, -0.344004, -0.455249, 0.393533, -0.224898, 1.226482, 0.431806, 0.478263, -0.125799, 0.664227, 0.148365, -3.023103, 0.499670, -1.476777, -0.873552, -0.129249, -0.369988, 1.592503, -0.232923, -0.781794, 0.027017, -1.195299, 0.544237, -0.006196, 0.814351, 1.837672, 0.740725, 0.782338, 1.642543, -1.126186, -0.678856, 0.778783, 0.177031, -0.947485, 0.266654, -1.085496, 1.010150, 0.936261, -0.012702, 1.476522, 0.937361, 1.499992, 0.130745, 0.648503, -1.299191, -1.086028, 0.909201, 1.125026, -0.780970, 0.983728, -0.380441, 0.049118, -0.472084, 0.364691, -0.014094, 1.124368, -1.017236, 1.946865, 0.904426, -0.002596, 0.662932, 0.777084, 1.227172, -1.312530, 0.202687, -1.106635, 0.982087, 0.686559, -0.555521, 0.997803, 1.287305, 0.504154, 0.601062, -0.529765, 0.060907, -0.217080, 1.027508, 0.698355, -1.581733, -0.311606, 2.707881, 0.279929, -2.959562, 0.744808, 0.390481, -0.421641, -1.209988, 0.829098, -0.961529, 0.581873, -0.383676, -0.289850, -0.574130, 0.034980, 0.473143, -0.435725, -1.287254, -1.904627, 0.086599, -0.423148, -1.621388, -1.089680, -0.559273, -1.095038, 0.588340, -0.025188, -0.351800, 0.347529, 0.858863, -0.712554, 0.147760, -0.214297, 0.009104, -0.384965, -0.635931, 1.756596, -0.162672, -1.604306, 1.238165, 2.014004, -0.294017, -0.367446, -0.486456, 0.664144, 0.709728, -0.571923, -0.087981, 0.825209, 0.036387, -0.174404, 0.775066, 0.115353, -1.207576, 1.807518, -0.024098, 0.341681, -0.015670, 1.784983, 0.954031, 0.662086, 0.300683, -0.179413, 0.478067, 0.115815, 1.101331, 1.619486, -0.126395, 0.579103, 0.649872, -0.724738, 1.269255, -0.609886, 1.398500, 1.367762, -0.976735, -1.324027, -0.223323, 1.541604, -0.762275, 0.375253, -0.255432, -0.330986, 0.427725, -0.598267, 0.411468, -1.609460, -0.845222, -0.890767, -0.618564, -0.492914, 1.182000, -0.882150, 1.296872, 0.762798, -0.434291, 0.586144, 0.623786, 0.918082, -0.154718, 2.277585, 1.085829, -0.692970, 0.784628, 1.298019, 1.881265, -0.840174, 0.974620, -0.731382, -1.292343, -0.354940, -0.091845, -0.276639, -1.940824, 0.273609, -0.419021, -0.590052, 1.534430, 0.416220, 1.963111, 0.079348, -0.769528, 0.002012, 0.291696, -0.687290, 0.138033, 1.423046, 1.273412, -1.372042, -0.710537, 0.029991, -0.425986, 0.857544, 0.650420, -0.144040, -0.920889, 0.721134, -0.152666, -0.432407, -1.201088, -1.503468, -0.403696, -0.807172, 0.304677, -0.511102, -0.400557, -0.859855, -0.454673, -0.239787, 0.488322, -0.083036, -0.366056, 0.156441, -1.079316, 0.318091, -0.301893, 0.609218, 1.204348, -0.753119, 0.980664, 3.796210, -1.133296, -0.823929, 1.843483, 0.321056, -0.461334, -0.329761, 0.899085, 0.459717, 0.222955, 1.485973, 0.080453, -2.049097, 1.155141, -0.520698, 0.820835, 0.136691, 0.112932, -1.095105, -0.998634, 0.089542, -0.316153, -0.023300, -1.007964, 0.536409, 0.006725, 0.219939, -0.376703, 0.689080, -0.449503, -0.362139, -0.154353, 0.469531, -0.342434, -0.105442, -2.228610, 1.862801, 1.382594, 1.457330, 0.400455, 0.440759, 1.119281, -1.617289, 0.753984, -1.110638, 0.532744, -0.718416, 0.645858, -0.719062, -0.851025, 0.707429, 0.161813, -1.549468, 0.771746, 0.624388, 2.346169, -0.387792, -1.854217, -0.454730, -1.006506, -0.923004, 0.482504, -0.912470, 0.206206, -0.096126, 1.291834, -0.902204, 0.156233, 1.674126, -2.063265, 1.283487, 1.681964, -0.019014, -2.968753, -1.540093, -0.523178, -0.899775, 0.387268, -1.555972, 1.078691, -0.376812, 0.570607, -0.409181, -1.527514, -0.302462, -0.758858, -0.702321, -2.181706, -0.658262, -0.190414, 0.595849, -0.052696, 0.366325, 0.745387, -0.443183, -1.264017, 0.099557, -0.547320, -1.805849, -0.729279, 0.016630, -1.876772, -0.152712, 0.371446, -0.476329, -0.401440, -0.733713, -0.700930, -0.193320, 0.393181, 1.774620, -0.446209, -0.987878, 0.762784, -1.162782, -1.899903, -1.230296, 0.043290, -0.285530, -1.926066, 1.460443, -0.813304, 2.036157, -0.331495, -0.898324, -0.138054, 1.786537, -2.049535, -1.403762, 1.111821, -0.706610, -1.149683, 0.188075, -0.795089, 0.207097, -1.437854, 0.416655, -0.048398, -0.366403, 0.531330, -0.509743, 0.503418, -0.118177, 0.576956, 1.225050, 0.599023, 0.597058, -0.831920, -1.826365, 0.205631, -0.255069, -0.867460, -1.312955, 0.445624, 0.762748, 0.305457, -1.054429, 0.442221, 1.359276, -1.469672, -0.431011, -0.024575, -0.131256, 1.775543, 1.582192, -0.225956, 0.479395, 0.401060, 0.417523, -0.178910, -0.721090, -0.395913, 0.812143, -1.583178, 0.160635, 0.252204, 0.246757, -0.047343, 0.213441, 0.157329, -2.080566, -1.066409, -0.454331, -0.080913, -0.816027, 2.353933, -0.729086, -0.273801, 0.779813, 1.288876, -2.506730, -0.379631, -0.566054, -0.923300, -1.346407, 0.133783, 1.209992, -2.567671, -1.108954, -1.296308, 1.736149, 0.605642, 0.192645, 1.158784, -0.550833, 0.372249, -0.850032, 0.414675, 0.399675, 0.189062, -1.007249, 0.053036, -1.751449, 0.581333, 0.468221, 0.737183, -0.404366, 0.268284, 0.799292, -1.747538, 0.638632, 0.536745, 1.030655, 0.676386, 0.223053, -0.439443, -0.034977, -0.787056, 0.632421, 0.552024, -1.511004, -0.001843, 0.063492, -1.246286, 0.288353, 0.742749, 0.370142, -1.056146, 0.099279, 0.309442, 0.419090, 0.424427, 1.164418, 1.614803, 1.053778, -1.155949, 0.391989, -0.862272, -1.709760, 0.096941, -0.179824, 0.857109, 0.297491, -0.686876, 0.779600, -0.925900, 0.705014, 1.330644, -1.095678, 0.091249, -0.011815, 0.614401, -0.438847, 0.789591, -1.818947, 0.334269, 0.583337, -0.795161, 1.684281, 0.504569, 1.035718, 2.778836, -1.849415, 0.477285, 0.145268, -0.111491, -0.426167, 0.492001, 3.055124, -2.202069, -2.545540, 0.400037, 0.580503, 0.653296, 0.828112, 0.193867, -0.896094, -0.579759, 1.152689, -0.066268, -1.058625, -0.746186, -0.408278, -0.218528, 0.660570, 1.196898, -1.079766, -0.078783, 0.173937, -0.201425, -1.201933, -1.832978, 1.581370, 0.294157, 1.219790, -1.326156, -0.395928, -0.392351, -1.588774, 1.398477, -0.111119, 0.462944, -1.118935, 1.722983, 0.318882, 0.199412, 0.586789, -2.430567, -0.130678, -0.064726, -1.561059, 0.862869, 0.670735, -1.050763, -0.254784, -0.366436, 1.807625, 1.906982, 0.227437, 0.617599, 0.054067, 0.615317, 0.854159, -0.550218, 1.501011, -0.346793, 2.994880, -1.850683, 0.042260, -1.954350, -0.690772, -0.691414, 0.568382, 0.767278, 0.939593, 1.221146, -0.843247, -1.857675, -0.438739, 0.366487, -0.012533, 1.062202, 0.678502, -0.698320, -0.589061, 1.392660, -0.014692, -0.254400, -0.389058, 0.455011, 0.955321, 0.288299, 0.361711, 0.918346, -0.234447, -0.643624, 1.085071, 0.850665, -0.823474, 0.425494, 0.747366, 0.400085, 1.234186, -0.828338, 0.800874, 0.366952, 0.818555, -0.558730, 2.379847, 0.138641, -0.226514, 0.623817, 0.109674, -0.011339, 1.054928, 0.216609, -0.089559, 1.018074, -1.068907, -0.082493, 1.418231, -0.508477, 0.248085, 1.029483, 1.469037, 1.855924, 0.604715, -0.490856, -0.506248, -0.191966, 0.862787, -0.385807, -0.962807, -0.531157, -0.033643, -0.918936, -0.723544, 1.008217, -3.676041, 1.566184, 1.144344, 0.075474, -0.921160, -1.456606, -0.746433, 0.424510, -0.427631, -0.491317, -1.840970, -0.842448, -0.757953, -1.465122, -0.859214, -0.551356, 0.041191, -1.440799, -0.797856, -1.521732, -0.147586, -0.327580, 1.125167, -1.516668, 0.527984, -1.627442, 1.337041, -1.218460, -0.038116, 0.463635, -0.801528, -1.118041, 0.170936, -0.070397, -1.166486, -0.978883, 0.046727, 1.815457, 1.212557, -0.129676, -0.244971, -0.707596, 1.111300, -0.951421, -1.216330, -1.143902, -0.662790, 1.633130, 0.017630, -0.040664, 0.893582, 0.026925, -1.332966, 1.548233, -0.172360, -0.205729, 0.734707, 1.341781, 0.191730, -1.474243, 1.834279, 0.488465, 0.664818, -0.251428, 1.145162, 0.218729, -1.355958, -1.918748, 1.431400, 0.025223, -1.276383, 1.296274, -0.821574, 0.923209, -0.885989, -0.238381, -0.698284, -0.950578, -1.470144, -0.299562, -0.974543, -0.447062, 0.479234, 1.250019, -0.703097, -0.053070, 0.827718, -0.668392, 0.309118, 1.442489, -2.221541, 1.423063, -0.724541, -0.497532, -0.964818, -0.901931, -0.988057, 1.025807, -1.284261, 0.183423, 0.664829, 0.285021, 0.671176, -1.884838, -0.899815, -1.345672, 0.045784, 1.661913, 0.662810, -0.947114, -0.793327, -0.113444, 1.442446, 0.068966, 0.270194, -1.933888, -0.383946, -0.643890, 0.358773, 1.581929, -1.189628, -2.155237, -1.458433, -1.345861, -0.816821, -0.529428, -0.671591, 0.206462, -2.649322, -2.134382, 1.064368, 1.038938, -0.136797, 0.200898, -0.867550, 0.315312, -1.602007, -0.434502, 0.289875, -2.001870, 0.536802, -0.838116, 0.899951, 0.759677, -0.707559, 0.121736, -0.575412, 0.675201, -0.380019, -0.134058, -0.295355, -1.484965, 0.450747, -0.134306, -1.213264, 0.287506, 0.788631, -1.494547, -0.235927, -0.134889, 0.307697, -1.351795, 0.536793, -0.503153, 0.928950, -0.195665, 0.933591, 1.506824, -0.712982, -0.550729, 0.097743, -0.387651, 0.610167, -0.554629, 0.865778, -1.172483, 0.002210, 0.379809, -0.727930, 0.209213, -0.649168, 0.411371, 0.455661, -2.212316, 0.941360, -1.418085, 0.067203, -0.399673, -0.848109, 1.077335, 0.491344, 0.249749, 0.340159, 1.674015, 0.877770, -1.089479, -0.179489, 0.707524, 0.126172, -0.352452, -0.241087, -1.445134, -0.726326, -0.787889, -1.053619, -0.962096, 1.614980, 0.097501, 1.273708, 1.157279, 0.535659, -1.102176, -1.632963, -1.864505, 0.306445, 0.023364, -0.063251, 0.446336, 1.449808, 0.934849, -0.643927, -1.684765, 1.529072, -0.702589, -1.373832, 0.421753, 0.305046, -0.915507, -1.350665, 0.676483, 1.602333, 0.531668, -0.697932, -1.342307, -0.089417, -0.389130, 0.067762, -1.802380, -0.156182, -0.211202, 0.554121, -0.439373, 0.723803, -1.589427, 3.060335, 0.413831, 0.867604, 2.219315, 1.446700, 0.546755, 1.494586, 1.203633, 1.394253, -1.150876, -0.029928, -0.372093, -1.840689, -2.210353, 1.283033, -0.645564, -0.021501, -0.077096, -0.732267, -0.948169, 0.054966, 0.236298, -0.726196, 1.129175, -0.602513, -1.423572, 0.519163, -0.668252, -1.891867, 0.578244, -0.455268, -0.517073, 0.332538, 0.811766, 0.858556, -0.002323, 0.180075, 1.286900, 0.067541, -0.661717, 0.093036, 0.467318, 0.033532, -1.225681, 0.376143, 1.782949, 0.016096, 0.682125, -0.052125, 0.624759, 0.981268, 1.184785, -0.163998, -0.694862, -1.702779, 2.202143, -1.805513, 0.169976, -1.976831, -1.719692, 1.790999, -0.224391, -0.899993, 0.541737, -1.801347, -0.430117, -0.276419, 0.909497, -0.066531, 0.059858, -1.641162, 0.551484, -0.365252, -0.052110, 0.386824, -0.535469, -0.283235, -1.726350, 0.899240, -1.000476, 0.080297, 1.286556, 0.997315, -0.199777, -1.021605, -0.239559, -0.518559, -1.701096, -0.378116, -0.265730, 0.325563, 0.047423, 0.734502, -0.417671, -0.188999, 1.214969, -1.195063, -1.318769, -0.597199, 0.833651, 0.614565, 0.439964, 0.298420, 0.916472, 1.488605, 0.459543, 1.836470, -0.601337, 0.189246, -0.110596, -0.885615, -1.223122, -1.028192, -0.038448, -1.463487, -0.302465, -1.708701, -0.033486, 0.447072, -1.510011, 0.818844, -0.818325, -0.071532, -0.456622, -0.080089, 0.578328, -0.353340, -1.761056, 0.692841, -0.764207, -0.174462, -1.323933, -1.750946, -0.872114, -0.904773, -1.859576, 0.101255, 0.104772, 1.444046, -0.921593, -1.464600, -0.202483, 0.165346, -0.193454, -1.245988, -1.884432, -2.006478, 0.766918, 0.923438, -0.428141, -1.048595, -0.885484, -0.385997, -0.062651, 0.126930, 0.260520, 0.809685, -0.740131, 1.019064, -1.063045, 1.316126, -0.769969, -0.449291, 0.313685, -0.008639, -0.804785, 0.690296, -0.039276, 0.200269, -0.632381, 0.395774, 0.552030, 0.107645, 0.055983, -0.608583, -1.023219, -2.211037, 1.298246, -1.809259, -1.371396, -1.125279, -1.282304, 0.373770, 1.508846, -0.861505, -0.105574, 0.305476, 0.863211, 0.613365, 0.508459, -0.322930, 0.978494, -0.955532, -1.478241, 0.206332, 0.799721, -0.411744, -0.721522, 0.402252, -0.627950, -0.267320, 0.034907, 2.154497, -0.698956, 1.318294, 0.633494, -0.696828, 0.561687, 0.348712, 0.560269, 0.948468, -1.191606, -0.013187, 0.004214, -0.108904, 1.191522, -1.278090, -1.321191, 0.352054, -0.456117, 0.762071, -0.445581, -0.045171, -0.586694, 2.537035, -0.114578, -0.878674, 0.319526, -0.280921, -1.869298, 1.048788, -0.344832, 1.342228, -0.536436, -2.081823, -0.068134, -0.449956, 0.908614, 0.969410, -0.243123, -0.404915, -0.123397, -1.281626, -0.364504, -0.620161, -0.747356, 1.021048, -0.524026, 0.033197, -0.861703, -0.507897, -0.063040, 0.378450, -1.381998, 0.342766, 0.742211, 1.285155, -0.628621, 1.163057, -0.448287, -0.935174, -0.265119, -0.252429, 0.616801, 1.237314, -1.431694, -0.076930, -0.434408, -0.551587, 0.317389, 0.151536, 0.168743, 0.039960, -0.532517, -0.413515, -0.914875, -0.557830, 1.741927, 0.508527, 0.014957, -0.143183, 0.027691, -1.073218, -0.281156, 1.049488, 0.842257, 0.245885, 0.717098, -0.167893, -0.154633, 0.363581, -0.888814, -0.436968, -1.205137, -0.573453, -0.335224, 1.937791, 1.854965, -0.888953, 0.011320, 1.019151, -1.062075, 0.708113, 0.186630, 1.264196, -0.635586, 0.203850, 0.916473, -0.122630, -1.049441, 0.375392, 1.013167, -0.195679, -0.236890, -0.630610, -3.797426, -2.581191, -0.306146, -0.534523, -1.046973, -0.571939, -0.140089, 1.133140, -0.313022, -0.398185, -0.271486, 1.333323, -0.592932, -0.154737, 0.244402, -0.989020, 0.651396, 0.627537, 0.440832, 0.144300, -0.084074, 0.150242, 0.858584, 0.479372, -1.088560, -1.612557, -0.596684, 0.078421, 0.825239, 1.382736, -1.951528, 0.039685, 0.274720, 0.247438, -1.503899, 0.147751, 0.550817, -2.378720, -0.468785, -1.506641, -0.196991, -1.449521, 1.142091, 0.853693, 0.946128, 1.663352, 0.759426, -0.166834, -0.925985, -1.078044, 0.340985, -0.322320, 0.856637, 1.045953, 0.019409, 0.925352, 0.026787, 0.464241, -0.501265, 0.433406, -0.498653, -1.533298, -0.616750, -1.890728, 0.700358, 0.404116, -1.025085, 1.437298, -1.368346, 0.033491, 0.891547, -0.057709, -1.209718, 0.086080, -1.778648, -1.112272, 0.440652, -0.219090, -1.673256, -0.937344, 0.877575, -0.057532, 2.474996, -0.619526, -1.010538, 0.492651, 0.256700, 0.364297, -1.080675, -2.380076, -1.472839, 0.029080, 0.148767, -0.133946, -1.402511, -0.161768, 0.738143, -0.655318, 0.094442, -1.930352, -0.192111, 1.908579, 0.011605, 0.330979, 0.088216, -0.658174, -0.168834, 1.379041, 1.768504, 2.178951, -0.420402, 1.045127, -1.233923, 1.738275, 0.659997, 1.847909, -0.899036, 1.492324, 1.007905, -0.482787, 0.480987, 1.493345, 1.205761, -2.325719, 1.652551, -1.758435, 0.140502, -0.999567, 1.540045, 1.510875, -1.195842, 0.061954, -0.802136, -0.503971, -1.780097, -0.183943, 0.803492, -1.863290, 1.002006, -0.048879, -0.222030, 1.477588, -0.921075, 1.733136, -1.932857, -0.318333, 0.488691, -0.880340, -0.069236, -0.232048, -0.110692, 0.047992, 1.804802, 0.477774, 2.737476, -0.325673, -1.101208, 1.411058, -0.208029, -0.516869, 0.461553, -0.558734, 0.546545, 0.101771, -0.103855, 1.977252, -0.332936, -0.088108, -0.169573, 0.870283, 0.845749, 0.370249, -1.241206, -0.288545, 0.363963, -0.894715, -0.244015, -0.467331, 0.608404, -0.465282, -0.587586, -0.463435, 0.427950, -1.561962, -0.274600, 0.320314, -0.010140, 1.806202, 0.715583, -0.943608, 2.586653, -0.372883, 0.869511, -0.940933, -0.096121, 0.936824, -1.068356, 0.733742, 1.095680, 0.452268, 1.414312, 0.023068, 0.591228, -0.208272, -1.081450, 1.525643, 1.385534, 0.323200, -0.130600, -0.990261, -1.198141, -1.471467, 0.003122, 0.021244, -0.877843, 0.879732, 0.519738, -0.301337, 1.454203, -0.414185, -1.481040, -2.923714, -1.019477, 1.224513, 1.813335, 1.165424, 1.418143, 0.877545, 0.285914, -1.824701, 0.257644, 1.017756, -0.949155, 1.287921, 1.331327, 0.561452, -0.410556, -0.101726, 0.512014, -1.425907, 0.030784, -0.431632, -0.274067, -1.942552, 1.303737, 0.103101, -0.739919, -1.333272, -2.271831, -0.739720, 0.365732, -0.758369, 0.336967, 0.712609, -0.003514, -0.685378, 0.164680, 1.310042, 0.106370, -0.371664, 0.512635, 0.824196, -0.322076, -0.228939, -0.298097, 1.988213, -0.519553, -0.864811, -1.094237, 0.865160, -0.889798, 0.244345, 1.215921, -0.357982, 0.172388, -0.090557, -0.076280, -0.212048, 1.376257, 1.038743, 1.037681, -0.428075, -0.597476, -0.117634}, + { 0.708783, 1.131935, -0.295111, 0.560741, -1.499676, 1.081983, -0.690776, 0.525180, -1.601818, -0.616921, -0.242050, 0.759504, -0.379464, -0.279613, 0.664757, -1.787720, -0.697258, 1.523226, 0.611804, -1.463266, 0.849166, 0.088049, -0.447639, -0.388767, -0.535561, -0.265597, 0.479666, 1.463904, -0.859864, -0.590982, -0.389156, -1.209902, 0.675350, 2.018850, -1.159406, 0.220304, -1.489899, 1.191158, -1.292296, 0.153147, -0.133125, -0.287782, -0.004898, 1.950939, 0.209956, 0.138637, 0.496528, 0.259788, 1.042857, -0.741759, 0.105329, 1.221935, 0.028468, 0.647793, -0.101484, 0.403082, -0.905254, 0.088542, -1.208114, -0.060249, -1.491535, -0.093152, -0.371890, -1.893254, 0.221821, -0.081192, 1.444038, -0.801182, -2.185120, -0.973081, -0.023747, 0.021040, -0.980092, -0.992898, 0.369225, -0.047475, 0.006548, -1.129992, 0.552777, -0.620558, -0.057711, -0.615504, 0.327934, -0.513624, 0.230786, 1.906838, -1.714362, -0.457335, -1.530945, -1.119984, -1.394583, -0.333806, -1.852323, 1.434235, -0.001954, 0.801129, -0.209600, -0.321322, 1.080321, 0.292868, -0.384614, 1.841074, 0.942635, 0.036071, 0.471805, -0.206541, -0.108269, -0.811337, -0.104313, 0.281255, 2.063791, 0.413419, -0.280447, -1.327779, -0.237347, 0.791644, 0.716968, -0.073074, -0.141110, 0.085230, -0.734374, 0.211454, 1.428895, 1.344210, -1.319227, -0.644868, 0.059260, 0.206288, -0.291656, 1.604446, -0.080070, -0.211077, -0.569330, -0.382248, -0.313883, 1.230755, 0.413608, 1.111011, -0.635720, -1.009620, 0.139370, -0.993196, -0.384125, 0.666090, 0.370512, 0.089801, 1.892409, 1.207692, -0.883599, -0.176089, 0.776208, -0.085987, 1.385221, 0.550568, 0.005757, -2.076656, 0.826924, -1.647033, -0.916374, 1.498019, -0.970140, 1.511093, 1.770226, -0.616552, 0.195096, -0.691112, -1.783100, -0.518952, 0.278854, -3.606590, 0.445351, 1.662397, 0.203867, -0.859219, -0.640424, -0.801028, -0.957140, -0.340679, -0.486475, 1.165515, -0.093376, 0.453099, 0.612810, 2.402252, 0.505980, 0.094312, -0.047279, -0.321894, 1.165823, 0.462745, 0.683448, 0.841891, 1.450980, -0.423997, -0.832682, -0.899674, 0.515106, 1.402015, 0.314088, 0.301954, 0.730656, -0.586608, 0.871775, 0.485957, 0.839787, -2.834916, 0.278115, 1.067752, -1.539503, 0.056001, -0.512996, 1.016016, -0.071151, -0.087622, 0.234122, 0.933980, 0.979977, -0.883593, 0.088170, -0.092845, 0.296885, 0.701235, 0.730355, -0.473992, 0.107071, 0.643496, -1.925743, -1.256873, -0.467933, 0.459772, -1.711960, 1.248433, -0.092724, -0.667556, -0.403970, 1.555986, 0.390680, 0.514482, -1.145920, -0.858101, 0.423414, 0.538179, 0.526019, 1.197701, 0.251989, -1.102216, -0.748797, -2.511522, -0.512188, 0.102921, -0.999759, 0.109989, 0.125927, -0.668349, 1.119345, -2.745840, 0.685110, -1.526561, -1.096721, -0.195785, -0.587867, -0.607784, 0.517398, 1.383988, -1.597097, -0.185422, -0.879120, -0.392037, -1.578199, -1.092373, 0.781641, 1.744911, -0.794079, 0.094724, 1.706743, -1.621872, 1.226963, -0.312499, 0.224023, -0.795788, -2.821457, 1.405811, 0.782254, 0.849403, -0.860183, -0.033286, -0.440938, 0.209138, -0.424008, -0.407860, 0.572749, -0.044453, 2.089242, 0.970522, 0.071075, -0.561079, -0.149891, -2.096178, 0.953075, -0.155065, -0.952863, -0.171341, -2.242267, -0.515147, 0.351991, -0.830646, 0.057314, 0.854155, 0.593755, -0.779534, -0.272688, 0.098291, 0.010552, 1.043192, -0.522208, 0.283379, -0.387422, 1.420241, -0.318580, -0.379524, -0.852458, 0.285222, 1.149735, -0.602556, 1.420953, 0.048348, 1.344053, -0.505761, -1.016052, 2.794708, -0.017095, -0.365163, -0.415444, -0.248113, -0.004596, -1.012876, 1.029564, -0.394855, -0.565477, -0.389074, -0.593390, 1.095759, 0.967193, 0.912609, 2.111502, 0.147812, 0.929306, 0.707837, -1.012529, 0.902632, -0.941679, 0.295134, -0.985402, -1.723683, 0.623728, -1.641349, -0.391337, -2.122866, -0.854087, 0.471879, 1.234227, 1.417337, 0.315503, -2.731246, -1.229849, -0.443165, -0.614513, -0.011028, 0.627780, -0.860820, -0.786275, -1.371742, 0.431615, 1.309274, -0.821439, -0.261070, 0.660963, -1.021590, 0.737661, -0.967164, -0.567304, -1.878290, 0.301515, 0.703598, -1.212648, -0.633017, 1.049533, 0.679983, -1.801228, -0.304252, 0.794838, -0.227056, 0.053731, 0.482792, -0.362529, 0.490980, -1.779794, -1.538623, -0.669362, -0.985563, 0.208736, -1.140189, 0.462613, -0.904050, 1.346461, 1.833743, 0.218386, -0.833870, 0.074306, 0.604061, 0.145064, 1.417419, 0.226484, 0.417399, -0.432708, -0.733680, -0.843887, -0.918953, -0.192292, 0.393638, -1.711711, -0.473351, 0.489287, 1.561650, 0.693495, 1.161966, 0.789446, 0.063996, 1.843614, -0.281329, -0.553190, 0.196177, 0.567370, -0.243443, 0.482495, 0.475805, -0.441379, 0.781558, 0.861086, -1.046042, -0.798552, 0.513558, -2.510005, 0.381886, -0.968730, 0.140252, -0.678966, 2.023665, 0.261010, -0.911110, -1.454500, -1.587311, -0.328139, 1.244102, -0.332306, 0.911721, -0.087873, -0.055848, -0.802268, 0.763254, -1.103382, 0.020909, -0.455271, -0.852488, 0.316453, 0.276279, -1.815327, 0.800250, -1.017426, -2.272913, 0.612606, -1.161582, -0.061645, 0.281389, -1.567569, -0.008614, 0.538856, 0.672268, -0.104056, 1.166358, 1.156220, -1.159910, -0.257655, 1.316906, -0.328530, 1.523268, 1.629131, -1.623196, -0.682277, 0.585485, -0.089381, 1.357037, 0.984276, 0.735384, -0.038241, -0.707370, 1.151447, 1.107831, -1.842378, -1.265742, 0.263936, 0.102341, -0.084405, 0.933076, 1.127442, -0.572159, 0.876765, 0.978203, 0.647516, -0.945423, 1.435292, -0.906254, 1.039659, 0.342019, -0.875323, 0.978208, 0.157310, -0.484039, -0.704315, -0.078572, -1.949494, 0.345802, -0.580714, 0.378368, -1.981530, 0.637888, 0.717339, -1.213921, 0.638917, -0.894838, -0.142790, -0.715257, -0.085941, -0.821184, 0.187698, -0.552810, -1.432310, -0.210969, 2.201425, -0.486477, -1.082860, 0.634123, 1.449477, 0.475435, -1.783162, 0.617213, -0.722758, -0.371557, 1.090877, 0.951445, -0.694444, 1.796125, -1.036446, -0.430737, 0.328300, 0.929586, 0.347734, -1.377510, -1.239483, -0.801675, -0.437528, -3.461172, -0.302192, 0.528891, -0.711603, -1.108593, 1.066750, -1.188587, -1.059012, 0.663690, 0.040034, 0.608568, 0.454871, 0.794065, -0.971437, 0.238552, -0.543488, 0.042982, 0.517756, 1.952041, 0.063691, -0.512967, -0.753432, -2.216880, -0.386219, 0.265224, 0.674330, -1.660889, -0.402902, -1.787134, -0.429136, -0.723789, -1.059645, -0.236633, 0.018241, -0.360183, -0.010409, -1.523919, -1.698465, -0.753349, 0.819740, -0.129334, -1.257056, 0.013637, 1.559490, -1.512570, 0.947234, 0.584164, -0.584677, 0.811991, -0.240677, -1.588282, 2.122699, 0.417049, -0.601947, 0.404843, -0.335719, -0.544009, 1.745651, -0.459741, 1.334987, 0.818579, -1.118451, -1.132396, 2.329793, -0.425327, -0.017306, 0.032811, 1.648383, -0.302620, 1.901765, -2.228271, -0.250386, 0.141197, -0.380903, 0.476301, 0.256102, -0.860988, 1.191412, 0.944407, 0.779560, -0.335404, 0.685976, -1.569387, 0.425596, 0.970912, -0.034067, -0.079353, 1.037693, -1.784057, -0.081923, 0.231672, 1.108519, 1.086204, -1.111977, -0.530177, -1.434375, -0.993360, -0.513587, -0.450060, -0.732586, -1.028164, 0.101072, -0.213878, 0.972663, 0.767658, 0.681991, 0.853132, 0.444208, -1.635366, -0.451921, 1.069521, 0.383732, -1.264748, -1.487448, 0.635811, -0.210745, -1.608362, 1.617636, 0.804067, -0.693396, -1.287541, 0.242406, -0.026155, 1.735577, 0.753563, -0.168854, -1.020591, 0.463787, -0.104122, 0.452049, 1.046777, 0.450804, -1.717804, -0.657638, 0.583266, -1.102787, 0.063473, -0.404023, 0.012863, -2.326316, -0.235964, 1.083867, 0.191824, 0.226641, 0.930682, 0.381416, 1.014651, -0.131427, -0.647924, -0.421400, 0.572816, 1.491196, 1.989454, -0.148600, 0.812966, 0.379139, -0.279552, 0.176965, 0.065485, -0.767939, 0.126027, 0.894322, -1.070340, -0.936561, 1.214715, -0.038613, -0.987703, -0.488730, 0.237719, -1.215890, -0.592992, -0.852683, 0.175095, 0.382086, -0.712164, 0.410872, 2.519297, -0.010222, 1.448691, 0.052917, -0.036129, -0.408312, 0.291248, 1.383008, 1.295629, 0.284923, 1.704845, -0.811940, -0.947025, 0.541476, -0.873773, -0.546245, -0.790850, 1.739208, 0.378770, 0.369373, 0.096654, 1.325830, -1.011438, 1.498456, -0.787938, -0.204658, -1.970884, -0.785674, 0.334507, -0.006849, 0.288259, -0.889448, 0.260965, -0.021076, 0.926514, 1.861692, -0.184410, 1.813177, 0.758889, 0.419489, -0.235667, -1.446277, -0.054368, -1.201142, 0.053574, 2.054008, 0.309834, 0.549717, -0.045640, 1.803070, -0.923470, 0.145422, -1.800137, 0.740683, -0.700675, 0.876768, 0.152040, 1.044051, 0.930561, -0.025134, 0.398516, -1.363957, -0.371047, 0.775333, 0.869320, -0.613075, -0.500593, -0.922937, 0.382785, 0.663527, -0.075489, -0.163457, -0.777183, 0.126770, 0.370944, -0.090181, 1.538654, -0.342371, -2.086604, -1.062219, -0.459145, 1.808433, -0.242851, 1.925723, 0.353727, -1.607992, 0.823269, 1.632794, 1.277753, -0.072690, -1.021996, -0.434252, -0.229004, 1.654361, -0.217209, 1.107375, 0.291197, -0.211560, -2.680941, -1.513223, 1.987350, 0.675766, 0.061566, 0.609669, 1.659219, -0.143818, -0.521891, -0.065786, 1.809595, 0.235327, 0.318794, 1.776339, 0.572445, 0.547691, 0.761784, -0.578851, -0.705522, 1.483314, -0.488039, -0.339615, -0.648529, 0.614061, 1.224037, 0.345048, -0.490206, -1.442397, -0.513060, 1.522905, 0.825607, -0.202273, -0.644566, 1.648473, 2.099079, -2.161117, 0.100382, 1.214772, 0.168741, -0.263650, -1.469705, 1.445583, -0.149081, 0.810306, -0.301803, -1.076094, 1.703752, -0.204445, 1.762732, 1.258543, 0.189436, 0.655702, -0.590395, -1.135584, -1.300514, -1.293575, 0.662891, -0.103278, 0.212895, -1.165949, 0.068801, -1.325531, 0.295257, 1.518204, 0.838905, -2.201095, 1.040052, -0.820645, -2.301049, 0.401953, -0.847265, 0.329253, 0.093634, 0.910239, -2.674407, -0.588052, -0.247402, 0.084656, -0.797835, 0.367538, -0.632283, 1.183055, 0.532847, 0.234936, 0.526328, 1.007877, 0.421336, 0.440152, -0.966936, 0.131112, 0.506426, 0.848045, 0.397182, 2.010851, 1.653456, 0.762043, -0.523068, -1.959751, 1.199433, 1.034749, -0.093455, 0.527419, -0.286049, -0.252117, 2.557612, 1.097466, 1.896780, -0.044213, -2.154786, 0.577846, -0.419661, -0.477373, -1.402643, -0.441083, 0.427644, 0.843171, -0.155438, 1.456292, -0.599841, -1.167560, -0.711564, -0.787738, -0.400101, 0.216151, -0.824283, 0.253830, 0.129838, -0.108665, -0.631168, -2.004545, 0.634663, 1.817165, -3.154556, -0.215724, -1.247239, 1.565945, 1.753121, -0.475211, 0.492487, -0.970476, -0.456154, -2.566685, 0.716637, 0.208429, -1.420813, -0.200903, 0.359249, 0.800354, -0.850517, -0.974716, -0.873156, -1.217397, -0.974080, 1.185673, -1.302780, 0.752932, 0.477511, -0.113374, 1.193936, 1.386391, 0.487053, 0.626455, 0.979204, 0.144087, 0.618837, -0.915846, 0.847579, -1.071476, -0.905240, -0.304847, -1.094229, -2.244907, -0.129893, -0.091618, 0.297645, 0.002954, -1.152765, -1.377643, -0.338424, 1.743286, -0.106450, 1.882329, 0.700705, 0.001774, -1.195052, -1.455451, -0.210710, -0.209847, -0.003937, 0.261315, -0.136313, 0.068152, -0.785696, -1.498705, -1.047939, 0.683687, 2.236852, -2.868035, -1.528828, 0.470485, -1.144369, 0.986557, -2.336719, -0.418403, 0.392418, 1.401742, -1.619507, -1.006960, -1.755103, -2.021513, 1.191523, 0.181305, 1.056016, -0.124409, -0.225067, -0.468114, 1.241338, 0.833449, -0.068948, -0.500600, -0.539498, 0.647499, -0.468473, 2.021611, -1.259210, 1.018135, -1.301108, 0.376175, 0.207747, -0.143717, -1.417392, 0.462506, -1.181129, 0.677035, -1.218897, -1.268872, -1.075806, -1.968396, 0.954570, 1.518407, 0.129180, -0.323935, 0.268383, 1.052229, 0.958581, 0.585700, 0.604379, 1.113128, 0.906509, 1.169143, 1.514989, 1.915938, -1.163027, -0.143198, -1.269730, 0.217194, -0.340224, -1.606367, 0.791992, 0.698760, -0.800437, 0.755093, 1.161269, -0.634486, 1.836917, 0.205004, 2.266139, 0.214470, 0.117777, 0.076466, 0.487443, 0.335646, -0.215083, 0.971279, -0.755210, 0.042678, 0.192247, 0.517439, -2.080281, -0.070046, 3.014903, -0.385104, -0.100109, 0.157686, -1.175000, -0.630059, 0.217591, 0.497044, 0.566156, -0.877102, 0.733514, -0.019660, 0.116846, 1.302198, -0.046347, -0.551955, 0.050225, -0.430873, -0.561943, -0.032391, 0.146036, -0.073279, 0.152867, -0.522217, 0.169728, 0.179095, 1.724164, -0.848381, 1.315573, -0.740631, -0.015174, -0.693068, -1.393070, -0.666124, 1.004668, -0.124415, -0.271737, 0.349935, -0.470412, -0.192005, -0.585248, -1.011934, 0.760964, 1.073940, 0.743015, -0.207310, 1.023408, -0.167480, 1.566051, 0.261208, 0.339419, 0.455521, 1.959921, 1.161396, -2.276122, 0.560243, -0.942577, -0.147583, -0.656534, 0.975898, -0.996467, 0.178349, -1.994014, 0.344181, 1.237171, 2.853831, 1.457706, -1.552338, -0.393172, 0.027771, 0.717165, 0.160037, -0.771897, 0.981289, -1.403879, -1.368525, -0.259766, -0.271188, -0.745841, -0.533897, -0.097575, 0.743683, 0.208026, -0.145799, -0.389443, 0.495146, 0.434669, -0.559898, 0.466921, -0.498495, 1.182764, -0.832134, 0.581413, -0.667433, 2.322467, -0.834069, 0.175124, -0.099992, 1.008935, -0.038363, 0.772624, 0.543907, -0.215115, 0.499525, -0.016072, 1.968121, -0.301446, 0.516615, 0.234111, 1.035307, -0.150692, -0.358657, -0.455789, -0.233801, -1.321209, 0.046611, -0.729213, 1.932957, -0.641451, -0.448544, 1.431167, 1.158927, -1.011171, 1.283346, -0.534970, 1.281953, -1.680819, -0.132364, -1.103789, -0.209977, -0.667237, -0.149222, -0.932948, 0.461611, -0.587159, -2.317579, 0.951777, 0.747088, -0.496006, -0.374035, -0.788433, 0.033388, 1.568819, -0.747561, 1.061348, -0.212648, 1.422512, 0.233423, 0.938357, -0.748446, 2.002812, 2.013757, 0.272567, -0.420266, 0.100979, 0.256087, 0.056224, -0.831795, 0.433841, 0.783670, 0.641306, -1.174226, 0.799980, -0.387608, 0.293853, -0.552242, -0.576566, -0.293922, -1.708010, -1.276985, -1.174848, -0.439052, -0.079684, 1.213085, -0.989846, 0.324038, -0.494202, 0.346739, 0.354266, -2.244685, -0.294579, -0.124311, 0.607728, 1.391258, -0.777902, 0.160388, -1.107819, -2.146373, 1.867712, -0.598419, -1.094269, 0.063570, -1.510888, 0.267768, -1.562781, 1.121093, -1.029435, -0.697393, -1.658601, 0.289499, 0.559251, 1.431551, 1.010358, 1.131345, -2.243953, 0.703263, -1.149005, -1.208348, -0.442921, 0.498112, -0.173916, -0.996931, 0.771683, -1.814528, -0.865800, 1.635986, 0.071434, 0.098347, -0.967076, 0.091300, -0.549585, 0.711056, 0.201949, -0.968158, -0.881849, 0.625632, -0.816407, -0.505341, -1.179712, -1.198211, 0.656119, -0.443758, 1.530951, -0.793081, -1.655444, 0.535918, 0.695796, 1.327776, 0.896813, 0.638356, -1.348884, -0.605608, -0.030374, 1.536290, -0.461844, 1.598852, 0.740421, 0.184102, 0.004534, -0.420276, -3.775936, 0.615149, -0.180679, -0.104208, 2.069957, 0.036684, -1.640943, -0.224451, 0.347034, 1.190766, -0.217378, 1.266515, 2.732118, -0.035116, -0.280604, 0.446426, -1.196549, 2.021227, -0.599959, -1.934169, -0.252879, 0.935582, 0.614091, 0.918940, 0.575268, -0.062814, 1.971872, -0.194930, 1.454373, -0.177024, 0.718098, 0.162333, 0.107799, 0.406323, 0.692544, -0.214666, 0.382505, -0.303283, -0.000004, -1.678700, -1.042923, 0.757273, -0.788994, 0.502537, -0.928597, 0.036140, 0.125434, 1.700459, -0.404908, -0.799559, -2.132322, -0.739251, -1.142471, 0.307323, -0.582195, 0.978744, -0.272702, -0.168873, -0.441313, -1.278041, -0.967008, -0.303607, 0.803348, 0.998592, -0.026216, 0.090860, -0.399516, 0.400405, 0.685109, -0.148773, 1.425048, 0.367699, -0.443374, -0.001402, -0.101446, -0.883891, -1.280140, -1.516819, 0.222853, -1.700484, 1.219625, -1.104200, -0.601984, 0.245309, -0.200794, -1.184545, 0.576360, -0.259759, -0.595587, -1.260062, 0.639379, 0.255320, 0.244079, 0.210897, -1.710904, 0.254088, -0.201201, 1.102207, 1.058988, -0.860352, -0.813508, 1.138582, -0.438929, -0.252130, 0.591775, -1.134048, 0.338100, -1.725649, 0.817531, -1.557500, 1.320288, -0.202630, -2.744391, -1.854540, 0.947890, -0.101627, 0.111267, 0.783809, 0.598773, 0.063634, 0.119405, 1.049782, 0.457089, 0.967330, 0.840304, -0.331636, 0.021403, -1.807151, 0.932683, 0.495923, 0.972064, 0.782607, 0.182051, 1.817574, -0.446915, -0.814193, 0.540782, -1.149318, 0.379813, 1.737623, -0.206147, -0.437966, 0.739693, 0.072204, 0.736797, -0.736724, -2.309374, -0.619207, 0.076818, -0.234613, 1.336893, -0.359210, -0.374327, -0.100724, -0.022705, 0.899557, 1.157371, -0.239246, 0.491779, 0.274765, 0.047113, -0.180513, -1.173371, 0.720154, 0.030805, 1.044155, -2.437276, 0.564685, 0.387637, 0.139276, 0.571655, -2.644007, 0.655646, 0.214159, -0.859752, -0.171598, -1.088565, 1.207238, 1.744248, -0.818447, -0.740909, 1.082618, -0.497130, 0.540493, 1.398981, 0.979698, 1.927763, -1.685656, -0.867991, 1.422571, 1.422396, -0.864200, -0.882726, -0.814746, 0.088473, 0.309067, -0.390118, 0.834455, 0.481358, 1.016767, 0.131616, -0.440436, 0.841581, -0.282526, -0.009268, 0.915465, -1.676770, -0.627810, -1.986961, -0.005086, -0.703968, -0.999500, -0.053510, 1.351457, -1.026525, -0.267850, -1.671978, -2.514673, 0.060628, 0.475831, 0.696310, -0.737327, -1.091706, 0.593200, -0.989760, 0.835159, -0.016573, 1.702667, 1.240535, -0.211041, 0.762622, -0.239163, 0.778149, 0.699726, 1.460417, 0.974107, -2.002186, 0.642081, -0.733757, -0.437317, -0.391378, 0.706077, -2.504125, -0.483491, -0.045388, 0.219927, 1.337155, 0.355076, 1.145113, 1.582176, 0.097630, -0.772145, 0.997015, 0.848897, -0.657182, 0.588524, 1.006684, 0.006797, -0.161742, -2.117253, 0.595568, 0.972976, -0.802742, 0.353470, 0.014403, -0.710539, -1.090961, 0.088054, -0.722678, 1.855594, -0.624042, 0.207865, 0.517991, 0.308141, -0.776324, -1.323474, 0.373148, 0.629893, -0.440437, 0.493736, -0.615343, 0.067697, 0.957327, -1.377166, -0.637131, -1.375413, 0.794745, 0.130934, -0.677133, 1.195006, -0.120089, 0.584505, -0.377536, -2.066050, 0.073052, 1.264842, -0.761266, 0.740730, -2.106899, -0.490092, 0.734132, 0.469079, 0.885761, -0.590054, -0.222871, -0.329867, 0.281156, -0.315888, 0.504387, -0.276015, -1.496044, -0.812262, -1.261299, 0.231281, -0.520836, -0.293410, -1.481559, -0.234330, 0.644913, 1.089500, 0.692390, -0.695060, 0.543120, -0.493768, 1.427880, 0.350250, -0.426626, -0.976689, -1.094803, 0.294674, -1.960852, 0.644651, -0.319988, -0.247933, -1.315308, 0.110447, 0.199359, 1.454688, 0.808697, 1.876743, 0.215491, -1.692950, -2.158695, -2.446392, 1.467720, -1.713316, -1.254796, 0.433777, 0.769078, 0.182882, -0.582465, -1.015637, -1.676156, 1.912483, -1.062583, 0.134960, -1.205183, 0.221049, -0.027670, -2.838072, -1.167933, 0.526512, 0.029290, 0.370569, 0.610331, 0.220973, -0.918698, -0.994198, -0.463759, -0.485319, 0.641089, 1.438944, -1.457755, 1.642534, -0.563240, -1.731279, -0.379839, -0.422516, 1.442983, 0.332743, 0.910398, -1.518553, -0.080022, -0.036954, 1.782836, -0.371990, -0.906857, -1.200207, -0.153080, 0.300412, -2.253697, -0.477115, 0.876884, -0.430015, 1.704056, -0.367081, -0.202096, 0.965252, -0.207618, 0.543992, 0.626124, 1.386042, -0.448936, -0.121288, 0.624913, -0.269462, 0.147147, -0.411019, -0.001077, -0.698755, -1.403367, -0.370426, -1.196122, 0.963834, -0.609958, 0.967324, 0.579803, 1.047097, -1.083893, -1.039541, 0.203753, -1.530811, -0.798662, 1.377033, 1.571949, -0.202068, -0.458525, 0.230252, 0.620853, -0.393020, 0.555077, 0.919033, -0.145801, -1.195776, -0.647152, -0.137312, 1.150590, -0.552855, -1.112145, -0.054473, -0.649617, -0.930187, -0.564733, 0.319892, 0.310940, -1.449609, 0.493095, 1.107935, -0.594554, -0.638914, -0.745973, 0.071228, -0.229151, 0.538838, -1.513546, -1.664930, -0.151964, 0.992643, 1.258767, -0.212244, 0.172939, -1.220083, 0.474661, -0.662429, 1.953721, 2.028428, -0.840603, -0.706121, 0.424239, 1.373669, -0.115287, 1.243967, 0.230934, 0.108965, 0.500382, -0.493032, -1.768642, -1.831999, 0.680699, -0.433222, -0.343478, -0.063561, -0.407894, -0.337301, 1.505116, -0.503338, 0.854579, 0.853577, 0.100918, -0.244675, -0.687647, -0.430688, -0.377183, 0.231285, -1.175950, -0.247943, 0.339170, -1.600798, -0.176845, -1.479477, 0.236874, 0.626177, 1.505770, -0.770012, -2.114407, 0.623652, -1.314032, -0.330420, -0.333859, -1.156241, -0.020154, -0.629661, 0.505709, 0.160653, -0.594685, 0.684685, 0.147119, -1.186042, -0.737334, -0.663655, -0.380978, 0.246711, 1.429014, -0.813295, -0.469303, 1.530426, 0.083783, 2.283578, -0.440811, 0.153641, -1.994563, -0.113092, 0.673811, 0.278523, -0.064428, 0.311196, -1.172663, 0.170517, -0.265356, -0.240079, -1.893958, -1.555528, -1.473602, 1.390364, 0.206262, -0.376287, -0.204225, -0.808917, 0.434866, 0.128708, -0.834139, -0.522531, -1.495054, -0.472214, -2.046021, -0.097179, 0.611934, 0.149320, -0.155795, -0.699014, 1.812708, -0.380693, -1.531832, -1.501103, -0.505107, -0.440358, -0.330089, 0.662129, 0.386070, 0.719918, 1.618352, 2.271817, -0.585044, -0.557983, 0.256632, 0.371570, 1.115593, 0.240944, -0.482222, 0.424249, 1.866534, 0.112457, -1.912134, -1.408136, -0.270786, 0.213478, 0.275910, 0.193539, -0.821919, -0.218701, -0.561665, -0.731643, 1.275021, -1.195094, -1.146271, -1.297975, -1.064659, -1.216077, 0.019750, 0.862540, 1.160000, 1.061147, -0.359017, -1.159709, -1.725240, -0.081177, 1.791176, -0.544092, -1.302456, 0.578454, -0.471508, 0.957030, 1.769753, -0.447506, 0.983422, -0.797989, 0.313344, 0.269792, -0.291720, 0.351048, 0.291720, 0.831762, -0.472174, 1.990913, -0.448281, 0.571469, -1.657209, 2.219289, 0.391895, -1.326217, -0.799724, 1.062865, 0.077003, -0.394465, -2.014228, 0.960624, -0.052382, 0.427999, 0.829132, 1.824228, -0.942617, 0.130003, -0.021216, -1.132668, -0.764480, -0.168317, 0.542009, -0.743538, 1.270127, -0.756051, 1.733923, -0.560529, 0.738706, -0.734347, 1.191859, -0.544475, -0.531002, -0.435642, 0.463298, -0.577453, -0.884873, 0.991549, -0.014787, 1.707005, -0.177656, 1.320256, 0.852346, 0.029179, 0.388952, 0.001214, 0.778902, 0.591060, -0.811046, 0.045138, -0.085700, -0.035947, 1.447445, -0.711864, 1.546175, 0.660268, 0.178785, -1.225910, -0.202902, -1.309570, -0.941544, -1.051241, -0.568102, 0.390526, -0.318775, -0.480995, -0.151700, -0.665801, 1.651919, -1.297311, -1.497219, 0.246051, 0.027980, -0.381259, -0.096496, 0.336593, 0.377474, -0.929134, -0.443390, 0.520992, 0.495616, -0.922747, 1.520333, 0.578975, -0.866779, -1.085083, -0.876301, 1.993435, -0.230642, 0.252497, -0.905853, 0.688914, 0.543399, 0.180796, 0.824395, 0.073473, 0.476318, -0.613852, -0.439388, 1.355090, 0.166045, 0.536982, 0.469985, -0.048755, -0.294727, 0.609849, -0.046467, -0.321711, 0.730090, 0.425333, -0.852045, 1.214055, -0.544183, 1.838341, -1.352140, -0.654177, 0.587597, 0.742248, 2.345422, 1.473246, 0.832384, -0.342482, -0.435296, 1.224726, -1.111674, 1.485851, 0.240692, 1.761109, -0.014812, 0.716981, 1.222787, 0.880383, 0.909171, 0.665432, 0.575952, 0.336958, 1.881233, -0.222176, 1.354084, 0.351983, 1.207625, 0.747890, 0.628315, -0.330402, 1.284507, -0.470285, 0.697321, 0.183700, -0.626254, 1.289507, 0.517543, -1.608273, 1.594269, 1.221232, -0.618983, 0.415829, -2.141238, 0.825824, 0.286059, -1.213876, -0.680148, -0.071152, 1.058983, -0.845437, -0.121986, 0.734735, 0.309429, 0.791152, 0.060309, -1.022482, -0.065292, -0.890690, -0.816982, -0.224750, -0.312293, -2.463507, 0.918836, -0.002766, -0.853330, 0.691479, 2.548060, 1.662875, 1.281481, 1.192384, -1.668728, 1.197271, -2.561043, -0.818045, 1.593016, 0.562422, -0.526390, 1.762856, -0.942641, -1.142883, -1.439171, 1.409799, -0.787457, 0.084346, 0.671073, -1.305605, 0.041719, 0.027947, -1.282344, -0.614877, 0.557972, -0.484545, 0.307055, -1.387719, 0.750837, -0.232357, -0.060302, 2.352957, -0.680309, 1.747138, 1.735462, -0.260374, -1.199807, -0.931617, -1.260124, 0.191057, 0.227775, 0.717956, 0.051507, -0.663618, -1.699819, 0.772083, 0.116074, 0.269528, 1.058718, 0.271781, 0.700454, -0.683089, -0.889771, -1.166380, -0.979262, -0.595590, -0.685031, 0.086396, -0.309137, 0.294647, -1.132182, -1.224713, -0.426167, 0.239401, -0.074422, -1.176917, 0.761504, -0.592092, 1.220193, -0.704952, 0.900330, -1.187115, 1.015277, 1.260328, 0.630759, 0.337086, -1.637037, -1.250887, -0.046244, 0.351012, 1.162703, 1.150783, -0.249596, -1.953360, 0.629796, 0.160021, 0.345435, -0.358604, -0.342182, 1.213068, -0.033285, -1.251203, -0.159532, 1.890477, -2.201049, -0.439369, -1.866833, 0.449565, -0.204963, -0.027061, 0.825855, -1.003936, -0.373730, -0.545592, 1.312993, 0.985734, -0.339904, -1.341486, 2.050744, 0.490695, -0.673395, 0.974742, -1.396954, -0.406220, 1.028341, -0.380791, -1.627941, 0.564498, 0.053585, -1.529011, 0.943052, -0.991974, 0.294961, -0.499441, -0.449205, 1.251343, 0.550672, -1.977557, -0.462537, -0.510048, -0.222570, -0.072122, 0.401795, 0.477539, -0.223796, 1.078521, -0.104216, -0.216351, 2.980346, 0.212210, -0.347051, 1.103283, -0.973977, -0.091906, -1.194948, -1.324068, -0.686148, -2.092883, -0.299725, -0.651615, 0.440757, 0.640896, 0.073936, -1.164134, -1.603124, -0.499967, -1.081707, 0.023060, -0.579270, 0.627162, 1.104206, -0.394959, 1.254341, 1.229849, 1.464544, -0.787255, 2.088690, 0.268317, -0.176671, 0.935363, -0.097528, 0.905709, -2.091727, -0.764231, 0.147602, -1.692849, 0.329625, 0.210824, 0.413842, -0.703150, 0.290575, -0.373624, 1.072074, 1.590044, -0.011098, -0.295778, -1.916385, 0.425863, 1.115587, -0.884150, -1.975061, 1.115142, -0.121910, -0.801070, -1.524780, -0.181539, -1.952306, 0.074099, 0.355984, 1.172167, 0.285742, -0.967368, 1.547725, 0.241363, 0.376294, 0.777375, 2.150656, 1.269447, -0.966940, 0.895154, 1.553089, -1.353565, 0.317414, -1.658024, 0.131210, 0.447766, 1.149270, -0.726143, -1.047662, 0.598937, -2.622374, 0.361292, -0.627217, 0.462003, -0.820914, -1.385032, -0.543391, -0.651033, 0.473652, 1.060030, 1.089290, -0.232707, -0.581574, -1.889386, -0.316232, -1.681675, -0.564388, 0.461721, -0.948041, 1.690737, -1.464870, -0.468923, 1.565980, 0.162193, 0.902060, 0.231960, 0.196544, -1.367489, -1.598355, 1.200245, -0.114907, -0.810665, -2.748205, 0.318397, 0.146189, 0.026515, -1.849053, -0.196421, -0.822007, 0.008800, -1.256302, 0.494497, 1.354630, -0.030437, 0.099759, -0.660408, -1.435886, 1.366652, 0.378395, -0.433806, 0.268213, -1.567660, 1.133083, -0.796908, 0.044007, 0.624935, 0.781938, -2.384001, -0.883944, -0.412282, 0.532039, 0.431680, -1.594455, -0.663647, 1.058619, -0.013506, 0.009430, 0.493425, -1.710809, -0.631013, -1.466743, -1.493666, 1.689222, -0.834457, -0.746000, 0.692569, -1.036528, -1.485559, 1.384641, -1.000880, 1.443378, -1.472724, 0.724241, 1.087035, -0.594183, -1.117496, -0.872940, 0.350575, -1.242299, -1.025891, -0.595510, -0.654109, -1.289483, -0.437963, 0.959762, -1.425600, -0.189526, -0.096574, -0.735357, -0.098364, -0.282179, 0.277333, -1.698693, -1.026274, -1.859616, 1.280709, 1.107630, 0.366714, -0.206731, 1.060439, -1.482345, -1.548095, -0.012150, 0.722960, -1.158424, 0.105970, 1.394348, 3.046782, -0.354777, -0.729711, -1.281821, -0.105941, 0.831699, 1.519280, -1.314499, 0.489699, 0.174280, 0.486346, 0.708480, 0.446263, -0.879907, 0.911321, -0.448688, -0.735250, 0.558877, -0.834808, 0.054606, -0.604025, 1.790700, 0.701780, 1.081597, 1.397038, 0.196167, 0.673075, 0.599177, -1.484322, -1.121878, 0.184109, 1.195012, 2.013672, 0.667431, 0.599075, 1.077761, 1.813283, 1.066733, 0.367799, -0.124027, 1.555833, -0.015501, -1.347968, -0.278393, -0.312188, -0.240902, -0.716975, -0.042055, 0.338791, -1.734295, -0.461806, -0.002199, 0.276333, 0.752315, -0.399386, 0.929151, -1.092084, 0.725405, 0.300048, -0.391791, -1.096537, 0.215750, 1.798887, 0.157250, 0.594140, 0.415319, -0.456318, -1.695612, 0.271293, 0.696550, -1.405797, 0.661278, 0.019871, -0.944030, 1.600450, -0.261134, -1.449033, 0.121161, -0.148174, -1.185630, 0.916849, -0.451785, 0.443782, -0.643874, -2.142756, 1.031946, 0.094791, 1.055416, -0.489772, 0.522096, 0.590583, -0.493730, 1.073362, 0.438470, 1.114725, 0.911463, 0.188750, 0.194026, -2.349844, 0.503381, -0.455779, -1.107854, -1.654007, -0.056787, 0.375075, 0.810279, 0.257563, -1.032017, -0.791398, 0.306248, -1.668664, 1.106578, -0.308333, -0.061347, -0.716246, 0.043694, -2.664642, 0.165933, -0.569305, -1.130321, 0.014818, -1.193625, -2.558975, 1.209673, -1.308552, 0.497828, -0.577165, 1.240122, -0.671491, -1.524447, 0.078845, -1.035162, 0.430997, 0.211118, -0.947431, -1.608624, -2.499677, 0.509606, 0.220807, -0.033407, 0.348785, -1.264089, 0.207985, 0.235428, 0.270213, -0.166078, 0.949293, 0.590414, -0.947417, 1.403686, 0.687735, 1.939620, -0.373550, -0.179192, 0.627942, 0.398082, 1.663881, 0.085032, 0.474552, 1.067727, -0.043090, 0.484359, -1.140734, -1.722180, -1.047131, 0.734981, -1.776549, 0.456546, 0.833221, 1.332094, -0.292974, -0.631470, 0.986630, 0.807160, -0.421844, -0.906703, -1.524314, -0.884961, 0.773813, -0.056224, -2.804894, -0.212021, -2.186188, 0.185168, 0.605095, 2.035573, 1.004994, 1.392565, 1.361826, 0.156013, 0.161859, -1.024986, -0.447405, -0.171627, 0.315249, -0.787671, -0.181170, -0.026413, -0.498584, 0.418506, 0.376051, -0.949235, -1.569050, -1.180816, -1.049186, 0.304624, 0.661499, 0.640647, 1.174068, -0.012980, 1.875226, -1.358592, -0.432857, 0.815015, -0.508514, 1.790620, 1.813254, 1.688286, -1.095797, -1.140081, -1.303969, 1.548848, -1.437009, -0.255111, -0.482938, -0.274057, 1.955011, 0.237579, 0.033106, -1.135437, 0.007997, -0.552407, -0.564556, -0.908291, -0.203505, -0.223886, 2.313686, -1.296150, 0.173047, 1.174642, -0.027618, 0.966112, -1.232341, -0.030021, 0.319345, -0.867316, 1.628688, 0.282115, -0.081837, -0.291943, 2.406225, -0.869033, 0.271478, -0.473470, 0.568712, 0.052486, -1.014068, 0.913277, 0.946116, 1.870558, -0.885653, 2.609202, -0.638170, -1.580420, -1.359998, -0.550428, 0.871026, -0.454592, 1.568905, 0.183420, 0.218032, 0.449081, 0.529819, 0.691667, 0.914314, -0.570691, -0.942717, 1.469307, 1.753446, 0.501274, -1.359289, 1.476548, 1.473579, -0.012772, -1.892825, 0.063961, -0.592712, -1.123340, -1.499180, 1.755900, -0.305570, -0.500008, 0.640259, 0.106659, -0.321709, 0.247622, -0.324294, 0.364693, 0.575975, 0.668081, 0.081487, -0.592634, 1.165543, -0.651593, 0.242221, 1.342605, -0.830809, -0.137402, -0.382577, -1.027506, -0.422159, -1.761258, -0.422151, -2.860012, -0.664354, 1.145643, 1.152274, -0.086790, -0.557334, -0.350401, -2.715869, 1.145399, -0.046305, -1.113063, 0.141446, -0.948094, 1.251514, -0.464634, 1.991717, -1.759475, 0.187250, -0.588845, -0.096897, 1.031954, -0.010983, -1.210836, -0.292367, 0.993226, -0.279766, 1.601228, -0.660018, 1.345602, -2.074330, -0.752992, 1.144754, -0.742113, -0.140973, 0.047565, 2.047986, 1.179597, 1.788643, 0.017517, -0.697401, 1.799644, -1.091265, -0.935038, -0.844248, -0.452513, -0.119383, -1.365369, -1.015774, 0.171709, -1.167867, 0.194328, 1.810815, -0.129176, 2.725054, -0.788264, -0.927312, -0.946441, -0.496364, 1.243024, 1.024506, 0.562848, 0.589838, 0.479749, 0.136996, -0.944042, -0.152060, 1.930022, -0.282871, -0.695311, 0.274246, -0.246845, 0.131488, -1.029550, 0.300943, 0.799786, 0.331031, 1.223035, 0.081338, -0.740517, 0.780400, -0.379134, 1.337830, -0.588383, 2.364855, -1.163512, -0.863333, -2.046914, -1.883221, 1.046481, -0.564863, -0.810783, 0.125107, -0.150420, 1.220828, -0.665786, 1.130897, -1.150583, 1.194396, 0.498175, 0.162533, -0.707772, -0.702160, 0.311338, -1.324532, 0.374260, -1.323376, -0.609845, 2.035053, 1.389781, 0.723652, -2.279142, -0.288361, 0.085226, 1.874953, 1.320637, -0.338955, 1.193596, -0.678438, -0.483073, 0.026244, -2.338474, -0.483945, 0.488448, 0.877052, -0.018941, 0.492654, 0.877401, -0.456127, 1.199011, 2.074968, -0.708163, -1.064971, -2.244940, -1.703277, -0.534902, 2.719121, -0.219594, -0.844682, 0.638311, -1.729821, 1.031287, 1.974255, 0.754476, -0.688918, -2.087400, -0.222865, 1.385236, 2.023902, -1.696369, 1.629374, 0.094709, -1.575130, -0.704024, -0.323777, -1.253347, 0.028220, -0.327787, 2.239171, 0.159214, 0.255986, 1.568137, 1.164667, -0.448553, -0.161874, -0.165116, -0.863914, -0.087248, -0.752135, 0.458988, -0.048843, 0.293023, 0.689064, 0.977558, -1.068183, -1.451527, 0.782900, -0.350966, -0.798630, -0.280156, 0.032969, -1.797270, 0.438362, -0.863720, -1.039436, -0.002582, 0.112121, 1.750200, 0.060635, -0.510870, -1.130957, -1.864740, -1.185236, 0.269304, -1.526858, 0.481251, -0.230015, 1.721428, 1.425563, -0.666982, -0.708053, -0.164187, 0.364004, 1.019813, -0.275744, -0.043833, -0.351696, -0.815910, 2.299315, -0.184153, -0.711866, 0.412405, 0.387801, -1.463612, -1.326164, 0.122705, -1.740566, 1.350249, -2.999928, -1.079476, 1.005848, 0.142793, 0.039284, -0.477083, 1.415027, 1.371689, -0.385313, -0.116608, -0.657543, 0.854438, -0.455091, -0.904413, 0.293285, 0.276513, 0.740920, -0.544586, -0.318606, 1.527447, -0.744004, 2.307922, 0.080305, 0.899518, -1.009716, 0.051442, -0.141423, 1.049850, 1.425351, -1.321564, -0.182069, 0.604354, 1.126124, -1.533391, 1.227905, -0.126778}, + { 0.518952, 1.162368, -1.798795, -0.867513, -0.902761, -0.569932, 1.536706, 0.312945, -0.816614, 0.205572, 0.557286, 1.119651, 0.312007, -1.449260, 1.340671, -1.158833, -0.514870, 0.213704, 0.684035, -0.227593, 0.547329, -0.761784, 0.832984, 0.210424, -1.092072, -0.171058, 0.150676, -1.223885, -0.657113, -0.060362, 0.254263, 0.091524, 0.520225, 0.614053, 1.012045, -0.227732, -1.318443, -0.302499, 0.960666, 1.510928, 0.440599, -0.084649, -0.958252, -0.120589, -0.164827, -0.057199, -0.413750, -0.634553, 0.237990, 0.877374, 0.298192, 1.856975, 0.764293, 0.874037, 0.595867, 0.619713, 0.562479, -0.210082, -1.543225, 0.892888, -1.696982, -0.457714, -0.363990, -0.326662, -0.877575, -1.438922, 1.143075, -0.949175, -0.304912, 1.096116, 1.484030, -0.459466, -2.622959, -1.018936, -0.187362, 0.120116, 1.243857, -1.462913, 2.256280, 0.555826, -0.417415, -1.905057, -0.476038, -0.113666, 0.424785, -0.090718, 0.788324, 0.332542, -0.300448, -0.147215, 0.855126, -0.278038, -0.923044, 0.851853, -2.458197, -1.167353, -0.766429, 0.710552, -0.059008, 0.416561, -0.505565, -1.711315, 0.501801, 1.093736, -0.675009, 0.418622, -0.478458, -2.445961, -0.574692, -0.510264, 1.222454, 1.416887, 1.881324, -1.224483, -0.192971, -1.474669, -0.087442, -0.066874, -0.246011, -1.135367, 0.344876, 1.153495, -0.458268, 0.234769, -1.622231, 0.963444, -1.598255, 0.061461, -0.605092, -0.986508, -0.343193, -0.545039, -1.456976, 1.274898, -1.221443, -0.180985, 0.055030, -0.120429, 0.689885, -1.329042, -0.556072, 1.558713, 0.751160, 1.339128, -0.236770, -0.373796, 1.831537, -0.259762, 0.434894, -0.532829, 0.246230, -1.464444, -0.108311, -0.456836, 0.195834, 0.277482, -1.266396, -0.849120, -2.061893, 0.808576, -0.555153, -0.147723, -0.474466, -0.239455, 1.341826, -0.106921, 2.065480, -0.441481, 0.664820, -1.277822, -0.299469, -1.420722, -2.099840, 0.343450, 2.540860, -0.926449, 0.197026, -0.726183, 1.050272, -0.737852, -0.166120, 0.664234, 1.013656, -1.165498, 1.007423, -0.172138, -2.029020, 1.141557, 0.353489, 0.081430, 0.830974, 0.418607, -0.351879, 0.602844, -0.721621, 1.802644, 0.996313, 0.761951, 0.926985, 0.095698, 0.359223, -0.636097, -1.235096, 2.180223, 0.394994, -0.495499, 0.021269, 1.310753, 0.005859, -0.104357, 1.083434, 1.059119, -0.743192, 1.719489, -0.101391, -1.267381, -0.189335, 0.718785, 0.931292, 1.437718, -0.372649, -0.907225, 1.282693, 0.876738, -0.484487, -0.464993, 0.141420, -1.199631, -0.378282, -0.437029, 0.438706, -1.180428, 0.783763, 1.490899, -0.392060, 1.161181, -0.311748, -0.440851, -0.665584, -1.500246, -0.492544, -0.379814, 0.880973, 0.157939, 0.679526, 0.511198, -2.105838, 0.889459, -1.276460, 0.658910, 0.844979, -1.096772, 0.005347, 0.604721, -0.840049, -1.615631, -0.828526, 0.975748, -0.212494, -0.554400, 0.478605, -0.031569, 0.346321, 0.945974, -0.363957, 0.598352, 1.038371, 0.328402, -0.025847, -0.878673, 0.478343, 0.486232, -0.483129, 0.506757, 1.444913, 1.168826, 0.568879, -1.174100, 1.370144, 0.473695, 0.390632, 1.383955, 0.448953, -1.017132, 0.900898, -0.144165, 1.053975, 0.869238, 0.049348, -0.285958, 0.418414, 0.148709, -2.446635, 2.775388, 2.740348, 0.437757, 1.014558, -0.815353, -2.009257, 0.100290, 0.289360, 1.888040, -0.352834, 0.865372, 0.437201, -0.589921, -1.570448, -0.215553, -0.958858, -0.706953, 0.234845, 0.497245, -1.274970, 2.069393, -0.871129, 1.539526, 0.884739, -0.035742, 0.675370, 0.450473, -0.631187, 1.459335, -0.085644, -1.735184, 0.214348, -0.827850, 0.375847, 1.232152, -0.271332, 0.612415, 0.789417, 0.403406, 0.857535, 0.158922, -0.101365, -1.006675, -0.631185, -0.545891, 1.155990, 1.145976, -0.241313, -2.518106, 0.696856, -0.538133, 1.962220, -0.762076, 0.104323, -0.097219, 0.371687, 0.219108, 2.737759, 1.210492, -0.316519, -0.265216, 1.067261, -0.287555, -1.928526, -1.241996, 0.530617, 0.361525, -0.132287, -0.302163, 0.951118, -0.308180, -0.533939, -0.085950, -0.685746, -0.398097, 0.974740, -0.106426, -0.464663, 0.511503, 1.210732, 1.329182, -0.796742, 0.764483, 0.132045, 0.690627, 0.804084, 1.056020, 1.336397, -0.120761, -0.715317, 0.086613, -0.825823, -0.120825, 0.975659, -1.217578, 0.688687, 2.081750, -0.225608, -0.148970, 1.357386, 0.529068, 0.614945, -0.491391, -0.916978, 0.980924, -1.400070, 0.864572, -1.112517, -0.398690, 0.284615, -1.496243, 0.746950, 1.531219, 1.471135, -0.805669, 1.094857, -0.707119, -0.332737, 0.613130, -0.181662, 0.706068, -0.314673, -1.696566, -0.857361, -0.885075, -0.670904, 1.288304, 1.556940, -0.336662, 0.658193, 0.685668, 0.684748, -0.610792, -0.832581, 0.396398, -1.636395, -1.008490, -1.153076, -0.580281, 0.982674, 0.248579, -0.473313, -0.537659, -0.469753, -0.669530, 1.390815, 0.725664, -0.327422, -0.746781, -0.180561, 0.566930, 0.971566, -0.848449, 0.186446, 1.574179, -0.166437, -0.677378, 0.518695, 0.058036, -0.594170, -0.126222, -1.123885, 0.258315, -0.161235, -0.962333, -0.781905, 0.189181, -0.038720, 0.451620, 0.483519, -0.298262, 0.075225, -2.605987, 1.057136, 2.736648, -1.141955, -0.257243, -0.173656, -0.933108, 0.759807, -0.596802, -1.919008, -0.552297, -0.985422, -1.124851, -0.225415, -0.141748, -0.027191, -0.846502, 0.331134, -0.318134, 0.072660, 1.562407, 1.505415, 0.321347, -0.432737, -1.128980, 0.529206, -0.957205, -0.547667, -0.444013, 0.008419, 1.270872, 1.264295, -0.623383, 1.515287, 0.530056, 0.042548, -0.848762, 0.186584, -0.916992, -0.718603, -0.848081, -0.074939, 0.621200, 0.161188, 0.260020, -2.182160, -0.623284, 0.045384, 0.100553, 1.081088, -1.354447, -0.689581, -0.559884, -1.357593, -0.724405, 0.119281, -0.689707, 0.798264, -1.369510, 0.292522, -1.468991, -0.049375, 0.233208, -0.388089, -0.581397, 2.366405, -0.534019, -0.620034, -1.769758, 0.148224, -0.847789, -0.093799, -0.218760, 0.031402, -0.002293, -0.862510, -1.420485, -2.427190, 1.692356, 1.410544, -0.507337, 0.444993, -1.362756, 0.371117, 0.953700, 0.817113, -0.495754, -1.039855, -0.743338, -0.938439, 0.764197, -0.111459, -1.091744, 0.143336, -1.302288, 1.620537, -2.143726, 0.985670, -1.346112, -2.598702, 1.063853, 0.584100, -2.284946, 0.655365, -0.617718, 2.051483, -2.214747, -1.657807, -1.936486, -1.612624, -0.991852, 0.161787, 0.284205, -0.463732, -0.254055, 0.154183, 0.371049, -0.183455, 0.825057, 0.745674, 0.419711, -1.132238, 0.607386, 0.102220, 0.321504, 0.038343, 0.053386, -0.762188, -0.259852, -0.487347, 0.760262, 0.631092, 0.724152, 0.132375, -0.828680, -0.076065, -0.908630, 0.021302, -1.200314, -1.190897, -0.710872, -2.418598, -0.078035, -3.683474, -0.704848, -0.431010, 0.248407, -1.495463, 0.342708, -0.262475, 0.806656, 0.188544, -0.959031, 0.674800, 1.520044, 0.193738, 0.069503, 0.639584, 0.453554, 0.830797, -1.056819, 0.537809, -0.014943, -1.737957, -0.628852, -1.712063, -0.871136, -1.728263, 0.360104, 1.834100, 1.003810, 0.083628, -0.779263, -0.428446, -1.430104, 1.330492, 1.003891, -1.258530, -0.696464, -0.226107, 1.041798, 0.696941, -0.535378, 0.849735, -0.477170, 0.087048, 1.424732, -1.008964, -0.132845, -1.348346, -0.291963, -0.024596, 0.128478, -0.389964, -0.415652, 1.068860, 0.214976, -0.790869, -0.567100, -1.682943, -2.070874, -0.221694, 0.047536, -1.352800, -1.357142, -0.371345, -0.834061, 0.394043, 0.222264, 1.974593, -0.191900, -0.394343, -0.058686, 0.122490, -0.399591, -1.600263, -0.741651, 2.010656, 1.803104, 1.233832, -0.086108, 0.492556, -1.691300, 0.522956, -0.013510, -0.722364, -0.772057, 0.187971, -1.026233, -0.474038, -0.483049, 0.572613, 0.757206, 0.212976, 0.202104, -0.498018, 0.402687, -2.021328, 0.570238, -1.341060, 0.464255, -0.640525, -2.269424, -1.054187, -1.048950, 0.124926, -0.316079, 0.072628, -0.269037, -1.325855, -0.640706, 0.626546, 0.090737, -0.203425, 0.613889, 0.346997, -2.027530, -0.603509, -0.806319, 0.615907, -0.331047, 1.438644, 0.778929, 0.016765, -0.559678, -0.520945, -0.252116, 1.309592, -0.546212, -0.624296, -0.556562, 1.426493, -0.383657, 0.790586, 0.247081, 1.097674, 0.061288, -1.297490, 0.562747, 0.150960, 0.821458, -0.855083, -0.488128, 2.214689, -1.440458, 0.146115, -0.369609, -0.482663, 0.997130, 0.063701, 1.775640, -0.536969, -0.512646, -0.211964, -0.867221, 0.302343, -2.250198, -0.422025, -0.385885, -0.062679, 1.040181, 0.580824, 0.468945, -1.299730, -0.502798, -0.313476, -0.368587, 0.666503, 0.336206, -1.104164, 0.871700, 0.913650, -1.407066, -0.070199, 0.033570, -0.589517, -0.081466, -0.732482, -1.047630, -0.324654, -0.905101, -0.479201, 0.361424, 0.452732, 0.662269, -0.454592, 0.478825, -0.237625, -0.313496, 0.615410, 0.647592, 0.369851, 0.069368, -0.919034, -0.312422, 0.273838, -0.873364, 0.764300, 0.811097, 1.020809, -0.160100, 0.164794, -2.264615, -0.415117, -0.241901, 0.858080, 0.895220, -0.344896, -0.975067, 0.056592, -0.172722, -0.121518, 0.258461, -1.854684, 1.286877, -1.175031, -0.315312, -0.386829, -0.589122, -0.770916, 0.060637, -0.958496, 0.699418, -0.529905, 1.527215, -0.732539, -2.085891, -0.902212, -1.380370, 0.290474, -0.131146, 0.758255, 0.621133, 0.102081, -1.255512, -2.000521, -0.233043, 0.372346, -1.068109, 1.092686, 0.060838, 2.045782, 0.046476, -1.491586, 0.895329, -0.395219, -1.134530, 1.044644, -0.795002, -0.942108, 1.361653, -1.059661, 1.599510, -0.189018, 0.735837, -0.024612, -0.026003, -1.962455, -0.614026, 0.676071, 0.269449, -0.367097, 0.092693, 1.042485, 0.689645, 1.511057, -0.383347, 0.012248, 0.208068, 1.113002, -0.475783, 2.185819, 1.365130, -1.026220, 0.550242, 1.030770, -1.392420, -1.157244, -0.679251, 0.991499, 0.805023, -1.630679, 0.860425, -0.525114, 0.096144, 0.471262, -1.540963, -2.159987, -0.115165, -0.830024, -1.702788, -0.509286, 0.278388, -0.556004, -0.588994, -1.034958, 0.502577, 0.550701, 0.303669, 0.277961, 0.635776, -1.315611, 0.457480, 0.472503, -2.357314, 1.579524, 0.404300, 0.490000, -1.658127, -0.596829, 1.187693, -0.506440, -0.307896, -0.822654, 0.688367, 0.949938, 0.077461, 1.409064, -0.209761, -1.562512, 0.624578, 0.708672, 0.678920, 0.398042, -0.572646, 0.041091, 0.952863, 0.402590, -0.430198, -0.746173, 0.535453, -0.247516, -0.786634, 1.601104, 0.354338, -1.085854, -1.620820, 0.521449, 0.553747, -0.590570, 1.447742, 1.380022, -0.682209, -1.510861, 0.515762, -1.471499, -0.944493, -0.103107, -2.276479, -0.596429, 0.282959, -1.816973, 1.091120, -0.156806, -2.721825, 1.657096, 1.099770, -1.357105, -1.775070, 0.044434, 1.667185, -0.455544, 0.771589, 0.440840, 0.028334, 0.455736, -0.456631, -0.547159, -0.859422, 0.858043, -0.723348, 0.986482, -1.284516, 0.169269, 0.365440, 0.314956, -0.616118, 1.294881, 0.588733, -0.677480, -2.082953, 0.570625, 2.075498, -0.585912, -1.080718, -0.357393, 0.428992, 0.868927, 0.326426, 2.012604, -0.332008, 1.389657, -0.409630, 0.388229, -1.535498, 1.618992, 0.213168, -0.043738, -1.846736, 0.217364, -0.367976, 0.327775, 1.840851, 0.305627, -1.110851, -1.853412, 1.952231, 1.140515, -0.605426, -1.251541, 0.060831, 2.050164, 0.021124, -1.082278, 0.827259, -0.476179, 0.767742, -0.699321, 0.293056, -1.175491, 0.382086, -2.160473, -0.889657, -1.271364, -1.256234, -0.251347, 0.329174, 0.125098, -2.608219, 0.221413, -1.944605, 1.225326, -0.583309, 2.196939, 0.844835, -2.086751, -0.979241, 0.752662, -0.739707, 0.895065, 1.514503, -0.710089, -0.292705, 1.188285, -0.087105, -0.818011, -0.827132, 0.512415, -0.022906, -0.002570, -0.344519, 0.096063, 0.602089, 0.081756, 0.603396, -1.927151, 1.238337, 0.349291, -0.013855, -0.609561, -0.628287, 1.083968, -0.704285, -0.619108, -0.459914, -0.532268, -0.750080, 0.612067, 0.206833, -0.637593, 0.706027, -1.663744, -0.467621, 1.113786, -0.273945, -1.189034, 0.136016, -1.201018, -0.761498, -0.316103, 2.708184, 0.278652, -0.527790, -0.396567, -1.543137, 3.163427, -0.388896, 0.356863, -0.159301, -1.031765, 1.149837, 0.390515, -0.028265, -1.912386, -0.928422, 0.312223, -0.838605, -1.298115, -1.718151, -1.908418, 0.226162, -0.121172, -0.826636, 0.732337, -0.531318, -0.944800, -0.479531, 1.122353, -0.719119, -0.612396, 0.012359, -1.525452, -0.614813, -1.311322, -0.070871, -0.816705, 2.685458, 0.001582, -0.604644, 0.187463, 0.760386, 0.503678, 0.794716, -1.067101, -0.495400, 1.289925, -0.140525, -0.197324, -0.114958, -2.012670, 0.541029, 1.358051, 0.219042, -0.988146, 0.756291, 1.003738, 1.282235, 1.501885, -0.991952, 0.379449, 0.307527, 1.091114, -1.361564, -1.000829, 0.017385, 0.605945, 0.844209, -0.092681, -0.850127, -0.099953, 0.320252, -0.465215, -0.002209, -0.687512, 2.112251, 1.318050, -0.479493, 0.696357, 0.217582, -0.340527, -1.000958, -1.265839, 0.558741, 0.882556, -0.295940, 0.568476, 0.530993, -1.805148, -0.552234, 0.767347, 0.327156, -0.191294, -0.226830, -0.079601, -0.780924, 0.225280, 0.118416, 1.519796, 1.026296, -0.641959, 0.000142, -0.932292, -0.594701, 1.622214, 1.483304, 0.909285, -1.129821, 0.829855, 0.940379, -1.644021, 0.251087, -0.708955, -0.407415, 0.616344, 1.168703, -0.309097, 0.156080, 0.092674, 0.820861, 0.541886, 0.595370, 1.291819, -0.156426, -1.128493, 0.071421, -0.532708, -0.066494, 0.883334, -0.384743, 1.456125, -0.627964, 0.204217, 0.437908, -1.400623, 1.102863, -0.424437, 0.675941, 0.318191, -0.059816, -1.077087, -1.737317, 0.389834, -0.635459, 0.443593, -1.044719, 0.262805, -0.324160, -0.084522, 0.511022, 0.944931, 0.883683, 0.106966, 1.232118, -0.653086, 3.262121, -1.081103, -0.590483, -1.405750, -1.013561, -1.070954, 0.890803, -1.113468, -0.265972, 1.056530, -0.148175, 0.076543, -0.511244, 0.576806, 0.386467, 1.862593, -0.034095, 0.403712, -0.696307, 0.150786, 0.311340, -0.382572, -1.692675, 0.581177, -0.307369, 0.725119, 0.451817, 0.825874, 0.860246, 0.747739, -1.010625, -0.470218, -1.530791, -0.509255, -0.297618, -0.838961, -0.403924, 0.041118, 0.915592, 0.902701, 0.510400, -0.799036, 1.867074, 0.207543, 0.341075, -0.519093, -0.429405, 0.669502, 1.041966, -1.189790, 0.146299, 0.027307, 0.012874, 0.895704, 0.590505, -0.651764, 0.304170, 1.008589, 0.194182, -1.255801, 0.091931, 0.052084, -0.310534, -0.552719, -1.362927, 0.925602, 0.739201, 0.994897, 1.563367, 1.734074, 1.276001, 0.713283, 0.899281, 1.366017, -0.417471, 2.122678, 0.950992, -0.662464, -0.188340, 1.946704, -0.037671, 1.233832, -0.656505, -1.505004, -0.990054, -1.917223, -0.934473, 0.497554, 0.069328, -0.012559, 0.310414, -1.577618, -0.022443, 1.571595, 0.233673, 0.912763, -0.619912, -1.155788, 0.435731, -1.695808, -0.028006, -0.424350, 0.600104, -1.219809, 2.666564, -0.324222, 0.359463, -1.317982, -0.407880, -0.232296, -1.341150, -2.263968, -0.207092, -0.538979, 0.259010, 0.089926, -0.170382, -1.470842, 0.299185, -1.026294, -1.477967, 1.123312, -1.300318, 1.508895, -0.042535, 0.726155, -1.360518, -0.381313, -0.505148, -0.301697, -1.141210, -2.459215, 1.747482, 0.114497, -0.251210, 2.288306, -1.244228, 0.422036, -0.623950, 1.864082, -0.284539, 0.280851, 0.372920, 0.218083, 0.083845, 0.194441, 0.660830, 0.416158, 0.836507, -1.044078, 0.776163, 0.716429, 1.580140, 1.161993, -0.237797, -0.784269, 1.262705, 0.101487, 0.244230, -0.477396, -1.838775, -0.641780, -1.284349, 0.306096, 1.288453, 0.379320, -0.237461, -0.503582, 0.693911, 1.371519, -0.571594, 1.009777, 1.348591, -0.136135, -0.530386, -1.172935, -0.037384, 0.446388, 0.874063, -1.681080, 0.417288, 1.628493, 0.545712, -0.233395, -1.594938, -2.608989, 0.905311, 0.917012, 0.725684, -0.221010, -1.368422, -0.284964, -0.092248, 0.847750, -0.784778, 0.193128, 0.104976, -2.567677, 1.336846, 0.094713, 1.668579, 0.174510, -1.161633, 0.829109, -0.896916, -0.182133, -1.193986, -1.835753, -0.741845, -1.472638, 1.368393, 1.376880, 0.103887, 0.148442, -0.872854, 1.825611, 0.163360, -1.304511, 0.492921, 0.193159, 0.085426, 0.041636, -1.022136, 0.462208, -0.174245, 0.306695, 0.542238, -0.141138, 1.265690, 0.644435, 0.940558, -0.697743, 0.727834, -1.693527, -0.775631, -0.697654, 1.637154, 1.466176, 1.254640, -0.534375, -0.849055, 1.520509, -0.100205, 0.606042, 0.108752, -0.973267, -1.401161, 0.362469, 0.328166, 0.836652, -0.799157, 0.816189, 0.009377, 0.038227, 1.025946, -0.333950, 1.357301, -1.475854, 1.884862, -1.529693, -0.046506, -1.097077, 0.482390, 0.511521, -0.402447, -0.736946, -0.649650, 0.854700, 0.260066, -0.872124, -0.124475, -0.370634, 0.852074, -0.338662, 0.285646, 0.951869, 0.546810, -0.088545, -2.398326, 1.964575, 0.070797, 1.055780, -1.395551, 0.963233, -1.943933, 0.632127, -0.008302, -0.926632, 0.372030, 0.216198, -0.064001, 0.829510, 0.366817, 0.107899, 1.754424, -1.911364, -0.671474, 0.242215, 0.015881, 0.198430, 2.276494, -0.622192, 1.139027, 0.724854, 0.240646, 1.727737, 0.479893, -0.458955, 0.818671, -0.407440, -1.332006, -0.522749, 0.683843, 0.865182, 1.060917, 1.246718, -1.180373, 0.024785, 0.458826, -0.152750, -1.435341, -0.406233, -1.632127, 0.050783, 0.961793, 0.205733, 0.178652, 0.359012, -2.210203, -1.090889, -0.206213, 0.525051, -0.642402, -1.009747, -0.731000, 2.133404, 0.577944, 0.143935, 1.092903, 0.079860, 0.999881, 0.305992, 1.011663, -0.685637, -1.838057, -1.961542, -0.945681, 1.778203, -1.242251, 0.911029, -0.328908, -1.453260, 0.185465, -1.984962, 0.572278, -0.438872, 1.773412, -1.227815, 1.838639, 0.473720, -0.660469, 0.131033, 1.125070, 2.302504, 1.220280, 0.829194, 0.315571, 1.005047, -1.701230, -0.334146, -1.382715, -0.579333, -1.249460, -1.283667, 0.170328, -1.078099, -0.631240, 0.581630, 0.189366, -0.683955, -0.467063, 1.295333, 1.238439, -2.091977, -0.582829, -1.187739, 0.214517, 0.648700, -0.539494, 1.023397, 0.557759, 1.390506, -0.307207, 0.722090, -0.095336, -0.705310, -0.110571, 0.791726, 0.275511, -0.133408, 0.166322, -0.369782, 1.329481, 0.087848, 1.567259, 0.953815, 0.278991, -1.169648, -0.550008, -1.287847, -0.621685, 1.804199, -0.456086, -0.432633, 0.309033, -0.047299, -0.988274, 1.153675, -1.207113, -2.682838, -0.554930, -1.424872, -0.502789, 0.939467, -1.569790, 0.521084, 0.864545, 0.115977, 0.672535, 1.420286, -1.367226, -0.442172, 0.894281, 1.217324, 0.200071, -0.748267, -0.357666, 1.762212, -0.842240, -1.771058, -1.863491, -1.181371, 1.321481, 0.566443, 0.282781, -0.150728, 0.091864, -0.542690, 0.630068, -0.947100, -0.173693, 0.076285, 1.002006, 1.068730, 1.581338, -0.446998, 0.417752, -0.709574, 0.092237, -0.254638, -0.702786, -0.859778, 0.268829, 0.845579, -1.046428, -1.536363, -1.111797, -0.265642, 0.828722, -0.656474, -0.314237, 0.087344, 1.014441, 0.131323, -0.339852, -0.235602, -1.261236, 0.896386, 0.636983, 0.270472, -1.885064, 0.453885, -0.989966, -0.377427, 1.263525, 0.358287, -2.027820, -1.132779, -1.467208, 0.538016, -0.301217, -0.180661, 0.425882, 1.114713, -0.075108, 0.471195, -0.666022, -1.316625, 0.955623, 0.336905, 1.989939, 1.292242, -0.601795, -0.899520, 0.115490, 0.295473, 1.465032, 1.153879, 0.276988, 0.162410, 1.676851, 0.892173, -0.620816, -2.132476, 1.500932, -1.362565, -0.981353, -1.533095, -0.212400, -0.550098, 0.894498, -0.817807, -0.661387, -0.294791, 0.180499, 0.401215, 0.264175, 1.453660, 0.449453, 1.149770, -0.342007, 1.081221, 0.096260, -0.803339, -0.509018, 0.345856, 1.261539, -2.024364, 0.121838, -0.711374, -1.856611, -1.437185, 0.751811, -0.496188, -1.455343, 0.639586, 0.131187, -0.952266, 0.222782, -1.536016, -0.866994, 0.342890, -0.228003, -0.899364, -0.722392, -1.676511, -1.744903, 1.100625, -0.803313, -0.109783, -0.461940, 0.563165, -2.052041, 2.191800, 1.334626, 1.400876, 0.077165, 0.265503, 0.511384, -1.375639, 1.917323, -0.139275, 0.008700, 0.727013, -0.084696, 2.686974, 1.206829, -0.309442, -0.904576, -0.596687, -0.922034, 1.482792, 0.172146, -1.208373, 0.693574, 0.440209, -0.188568, -0.526351, -1.947133, 0.809232, 0.871808, 0.742186, 0.863523, -0.166117, 0.498611, 0.310070, 0.381786, 0.653206, 0.148217, 1.407459, 0.828865, -0.038492, 0.524069, 0.170670, 1.474259, -1.341317, 0.523663, -0.613773, -0.326880, 1.107351, 1.651786, 0.372519, -0.848598, 0.110590, 0.614286, 0.080857, -2.643306, 1.039904, 0.244449, -1.229751, -0.779638, -0.730420, 0.567981, -0.051342, 1.841997, 0.166192, -0.463366, 1.037097, 1.218273, -0.495237, 3.471958, -0.434035, 0.159170, -0.798223, -0.270720, 0.101905, 0.267933, -2.383186, -2.051801, 0.481722, 1.028375, 0.821777, -1.022724, 0.385434, -1.809577, 0.412940, 0.236784, 1.583866, 0.548083, 1.054801, -0.434492, -0.856149, -0.505715, 0.529612, 0.114081, -0.269778, -1.009344, -0.067175, 0.152955, -0.357731, 0.612200, -0.840961, -0.887639, 0.174031, 0.483493, 0.396484, 0.086299, -0.695073, 0.218451, -0.107985, -0.172631, -0.207584, -0.190226, 0.846662, 1.330043, -0.198286, 2.321617, -1.316172, -0.138666, -0.343945, -0.189743, -1.452243, 1.068505, -0.341754, 1.641856, -1.650921, 0.061540, 1.300521, -0.347681, -0.795947, -1.436225, 0.961920, -2.052740, -0.407981, 0.653718, 0.107094, -0.710195, 0.315439, -1.354563, 0.221473, -1.041992, -0.581942, 0.357597, -1.890987, -0.597311, -1.473145, -0.350471, 0.125741, -0.930310, 0.428432, -0.967160, 0.464659, 1.154750, 2.018633, 2.011441, 2.208607, 1.491580, 0.647132, -1.108447, -1.935150, 0.597562, -0.665319, 0.523110, -0.263608, -0.328440, -0.703669, 0.260574, -0.748177, 0.294249, -2.041269, -0.472729, 0.295487, 1.122591, 0.630252, -0.205729, 0.850908, 0.984669, -0.955185, -1.373212, 0.731857, -2.157793, -0.560694, 2.006505, -1.977460, -1.125782, -1.352002, -2.219777, 0.169104, -0.062947, 0.489620, -0.285271, 0.088439, -0.834065, -0.295777, -1.560086, -0.855220, -1.547707, -0.364884, -0.767302, -0.506299, 1.899558, 0.883932, 0.496599, -0.558840, 1.739138, 0.761513, 1.850784, -0.896777, 1.096983, -0.904290, -0.465244, -0.159774, -0.336955, -0.011538, 0.062038, -0.199574, -0.485475, -0.908482, 1.029275, -1.103089, -0.798156, 0.089670, 0.886983, -0.911536, -0.059560, 0.412633, 0.576537, 0.030309, -0.540630, 0.904968, -0.252710, -0.090221, 1.798550, 0.796586, -0.900159, -0.250838, 0.156425, -0.839535, -0.502826, 1.170884, -0.014695, -1.967475, -1.683184, -0.539904, 0.550075, 0.594210, -0.896028, 0.287708, -0.414704, -0.705853, 1.379258, 0.319299, 0.602653, -0.742451, -0.224238, -0.717872, -0.004869, 0.102973, 1.409957, 0.194060, -1.358461, -2.182374, 0.045148, -0.225932, 0.162138, -2.042701, -0.883814, 0.120561, 0.242942, 0.039683, 0.340223, 1.912625, 0.372164, 1.877519, 1.025872, 1.630232, -0.450314, 0.068567, -0.876204, 0.665986, 0.993564, 0.390087, -0.838901, 0.694339, -0.644647, 0.714814, -0.015316, 0.890952, 0.305818, -0.898378, 2.137281, 1.023523, -0.520367, 0.778039, -0.634855, 0.192832, -0.003267, 0.706890, -1.062430, 0.164660, 1.276853, -1.287037, -2.170786, -1.850595, -0.291163, 0.846534, -0.928191, 0.428992, -0.016366, 0.789128, 0.481860, -0.252126, 0.571117, -0.068113, 0.934546, -2.053656, 0.962705, -0.733596, -0.211707, 0.708605, 1.137077, -0.213415, -0.048278, -0.897323, 0.132363, 0.250790, -1.034235, -0.944833, -1.042946, 0.082916, -2.184453, 1.254691, -0.726751, -1.099074, 1.012545, -0.311446, 0.330406, -1.104354, -0.254759, -0.273032, -1.518917, 0.572091, -0.764316, 0.994647, -1.288203, -0.684582, -0.047248, 1.256078, -0.828180, -0.612146, 0.036231, -0.705757, 0.155163, -0.845285, 0.106533, -0.412265, -0.649195, -0.081940, 2.552835, 0.143465, -2.234997, 0.895388, -1.601734, -0.301419, -0.677383, -0.333972, -0.234320, -0.359395, 0.279860, -0.063294, -0.982167, -0.756966, 0.249855, 1.191994, 0.506383, -0.616915, 1.036933, 0.707492, -0.443129, -1.001321, -0.620715, 0.523193, -0.194107, 1.046323, 0.062379, 0.760646, -1.235984, -1.075935, 0.815765, -0.166026, -1.371565, -1.142255, -0.202379, 2.748995, -0.496493, 0.750801, -0.177589, 1.295741, -0.167755, 2.037037, -1.736472, 1.080029, -0.090248, 0.539161, 0.427516, 1.077522, -0.847862, 1.218735, -0.611232, -0.922657, 0.572403, 0.241477, -1.948874, 0.461678, -0.372864, -0.083613, 0.359012, 2.352640, -0.256567, 2.212046, -0.925159, 0.210973, 1.804450, -1.367644, 1.252709, -1.741381, -0.600619, -0.796770, 0.106782, -0.267904, 0.211987, 1.162221, 0.098177, -0.621041, 1.214945, 0.283478, 1.050023, 1.125071, 1.847991, -1.501189, 0.609863, -0.133596, -1.307853, -0.080477, 1.529858, 1.449526, 1.388146, 0.557645, -0.247557, 1.022511, -0.497592, 0.980051, 0.778850, 0.106274, 0.655727, 1.657862, 0.099711, -1.074785, -1.122895, 1.199919, 1.200530, 1.353485, -0.491281, -0.025766, -0.012630, 1.908428, -0.821923, 1.323908, -0.509372, 1.227415, 0.190175, -0.205099, 0.229240, -0.090017, -0.361161, -0.134529, -0.330206, -0.997945, 2.027675, 0.078727, 2.084929, 0.158772, 1.135177, 0.598905, 0.942675, 0.499652, 0.666354, -0.525028, 0.218316, 0.251423, 0.740516, -0.394733, 1.461362, -0.521344, -0.285225, -0.487171, -0.288211, 1.173032, 1.369794, 0.618428, -0.185894, 0.278014, 0.042217, 0.752353, 2.211035, -0.103015, 0.725785, 1.203434, -0.077624, -1.284144, -0.520757, 0.299489, 0.704413, -0.193236, 0.708951, 0.941824, 0.682024, -1.956502, -1.578109, -1.029724, -0.764531, -1.279284, -0.216441, -0.441401, -1.623199, 1.100711, -0.320896, -0.770509, 0.040447, -0.113209, -0.789273, -1.220250, 0.579968, 0.502719, 0.441211, -1.171070, 0.166721, -0.260787, -0.816884, 0.298453, -0.001717, 0.006347, -1.434281, -1.151443, -0.538964, 0.703069, -1.276095, -0.226504, 1.161283, -0.160461, 1.421675, 0.086339, -0.657041, 0.052721, -1.251649, -0.330848, 0.561357, 1.317487, -1.088093, -0.492804, -0.761072, 1.537370, 0.569898, -0.336856, 0.247130, 0.070704, 0.198241, 0.533858, -0.235200, 0.224226, 0.184714, -0.226624, -0.624459, -0.397169, 0.536889, -0.978012, 0.406226, -0.950866, 0.982145, -1.159240, 2.134123, -0.048258, 0.098952, -0.643004, 2.364311, 1.164967, -1.290345, 2.078451, 1.038493, 1.394947, 0.880166, -0.488240, 0.192816, 1.065888, 1.274860, 0.193909, 0.992683, -0.303303, 0.653357, 0.643782, 0.046668, -0.752921, 0.260487, 0.560703, 0.119655, 0.588153, -0.212747, 0.653602, -2.152914, 0.453750, -1.864725, 2.294234, -0.845907, -1.291614, 0.074353, 2.837563, 0.380204, -0.057426, 1.592455, -0.167945, -0.660325, -0.004754, -0.791922, 0.239650, -1.180316, -1.986195, 0.148530, 1.083698, 0.613561, 0.655198, 0.796734, 0.185870, -0.343466, -0.402375, -0.251838, -0.959962, -1.641983, 2.184370, -0.143437, -0.748410, -1.258922, -0.147396, -0.738061, 0.901103, -0.331166, 0.415719, -0.397677, 1.153018, -0.905016, -0.721247, 1.413530, 0.665706, 1.015069, 0.513309, -0.134084, -0.267412, -0.180506, 1.182320, 2.139919, -0.454421, 0.563573, -0.602368, 0.249855, 0.074500, 0.018131, -0.563705, 1.108275, 0.153206, -0.983481, -0.601730, 0.513319, 0.695154, -0.554087, 1.150277, -0.089833, 0.822232, 0.176264, -1.125321, 1.209480, 0.847334, 1.323874, 0.341635, 1.569383, 1.733697, 0.380122, 0.957688, -0.381205, -1.540731, -1.627863, -0.741243, 1.899079, 0.447823, 0.862537, 1.070684, -1.019463, 0.535094, -0.433291, -1.527964, -2.490137, -1.196899, -2.771122, -0.309580, 2.066570, -0.986769, 0.398518, 0.727244, -0.802204, -0.762315, 0.681813, -1.358620, 0.258776, -0.175540, -1.263262, -2.350428, -0.239511, -0.219165, 0.224887, 1.504703, 2.227986, -0.377314, -0.277389, 0.639054, -0.471823, -1.098436, -1.402378, 0.286569, -1.350989, 2.114943, -0.016056, 0.470505, 2.548211, -0.972326, 0.687218, 0.037541, -1.579730, -0.224703, -0.941998, 0.728366, -1.275005, -0.928181, 1.393137, 0.543861, 0.308266, 1.487565, -0.538747, -1.112442, -0.306873, -1.573034, -0.399388, -0.216450, 0.817581, 0.960064, 0.127150, 1.121973, -0.716063, -0.603108, -1.044167, 1.322581, 1.640935, 0.921974, 0.885678, 0.608481, 0.515719, -1.197033, 0.790054, 2.601736, 2.103345, 1.349263, -0.188492, -0.269467, 0.668106, -0.256431, 1.547818, 1.710081, 0.719044, -1.149104, 1.248265, -1.453923, 0.755737, 1.125287, 0.537853, 0.210833, -0.208683, 0.272207, -1.320309, 0.888944, 0.550442, -0.825832, 1.499688, -0.330660, -0.006114, -0.553461, -0.359127, -1.390297, -0.117823, 1.100237, 0.539304, -0.486441, 0.151164, 1.864749, -0.456337, 0.585182, 0.400216, -0.262981, -0.064163, -2.276772, 1.261878, -0.333131, 0.464024, -2.034419, 0.132153, 1.741572, -0.522564, 0.595167, -0.001308, 0.339612, 1.312011, 0.552106, -1.444501, 0.664527, 0.415314, -0.135093, 0.594034, -0.015630, 0.698685, 1.435948, -0.584437, 0.222601, -0.532518, 0.014706, 0.693972, 1.523247, 1.604509, -0.669600, -1.344628, -0.702854, 0.093269, -0.418897, 1.285488, -0.658696, 0.467842, 1.399174, -0.590423, -1.046240, -2.131277, 0.268735, -0.719683, 1.167856, -0.420475, -0.964951, -0.181970, -1.235589, 0.223609, 0.702442, 0.367478, 0.637659, -1.675441, 0.625153, 2.062821, 0.474142, -0.036353, 1.168110, -1.941924, 0.041332, -0.908709, -0.583841, -1.148765, -0.700061, -0.685297, 0.763409, -1.170789, -0.112705, -1.769163, 0.971036, 0.750660, -1.372363, 1.698413, 1.468194, 0.516216, 0.323268, -0.307209, -0.872732, 1.120413, -0.293474, -0.883126, 0.007951, 1.654868, 0.391436, -0.342052, -0.983810, -2.380533, 0.526905, -0.022313, 1.153121, -0.925789, -0.357406, -1.008313, 1.856564, 1.675069, 1.376277, 0.071128, -1.378064, 1.885558, 0.101680, -1.527211, -0.366372, -0.267805, -1.579058, -1.641743, 0.711803, -0.337448, 0.896301, -0.961551, 0.890737, 0.370830, -1.477164, -0.381848, 1.174151, -1.845576, 1.459091, 1.454430, 0.247112, -0.187003, 0.418321, 1.498374, -1.117305, -0.050863, 0.232668, -1.087557, 1.768355, 0.386241, 1.319378, 1.860259, 0.530682, 1.493442, -0.098021, -0.519290, -0.411268, -1.791562, 1.038537, -0.570997, -0.870024, -0.712551, 0.484305, -0.634572, -0.853535, 0.518944, -0.944500, 0.297152, -0.375778, 0.392175, 0.480982, -1.125845, -0.451420, 0.536001, -0.647737, -0.417425, -0.156947, -0.374478, 1.773248, 0.381423, -0.868918, -1.492623, -1.209877, 0.085095, -1.469154, 0.626068, -1.549076, 1.052350, 0.798036, 1.772227, -1.597737, -0.160080, -1.152472, -0.922728, -1.316148, 0.314007, -0.397553, 0.883643, -0.646078, -1.542944, 0.474991, -0.617348, -0.022353, 2.978019, 0.746427, -0.402593, -0.247545, 1.105902, -0.666992, 1.448683, -0.025765, 0.601741, -2.030849, 0.634759, 0.113907, -0.747089, 0.117888, -1.396427, 0.074574, 0.379026, -1.242945, 0.152092, 0.361389, 0.440520, 0.012036, -0.479870, -0.339469, -0.885203, -0.563204, 0.317398, -0.806333, -0.135484, -0.016595, 1.693942, -0.981829, -1.148891, 0.268062, 0.505769, 2.405080, -2.082251, 0.557540, -0.634769, -0.296872, -1.909830, -0.608833, -0.398865, 0.864738, 0.444709, 0.446205, -0.755511, 1.951951, -0.841204, 0.491084, -0.426162, 1.004235, 1.043145, -1.084082, 0.264011, -1.423082, 0.560195, 0.017562, 1.187044, 0.769326, -1.060783, -0.921773, -0.761935, 0.055675, -0.313040, -0.561275, -2.042048, -0.179407, -0.937317, 1.343623, 0.300427, -0.873347, -0.011759, -1.632112, 1.140004, -0.480376, 1.779628, -0.715719, 0.629754, 1.145237, -0.598855, 0.108275, 2.888785, 0.386953, 2.658719, -0.075725, -0.399285, -0.943272, 0.777759, 1.978837, 0.947555, 0.067847, -0.324736, 0.070579, -1.546697, 1.366879, 0.588620, -0.282222, 0.614630, -2.092358, 0.418881, 0.609235, -0.130344, -0.097523, 1.506913, 0.052745, -0.116083, 0.442235, 1.566776, -0.644695, 0.351335, 0.041172, -2.033339, -0.397176, 0.872564, -0.474513, -0.619575, -0.205593, -0.116091, 0.518412, -0.016317, -0.336698, 0.904775, 0.664887, 0.815399, 0.048513, -1.559874, 2.754288, -0.011793, 0.699092, 0.117808, -0.393934, 0.505875, 0.808070, 1.077410, 1.075085, 0.148283, 0.849917, -0.124775, -0.522051, -2.162865, 1.016408, 1.493935, -0.613167, 0.603836, 0.110119, 0.578371, -0.581796, -0.899316, 0.984474, 1.162693, 1.221260, 1.647246, 0.019186, 0.956358, -0.202960, 0.554222, -2.802947, 0.446151, 1.071511, 1.293783, -0.402543, -1.290444, -0.119898, -1.843290, 0.461694, -0.369207, -0.264993, 1.556780, 0.325489, 1.228060, -0.100826, -0.084220, 0.691702, 0.766215, 0.309942, 0.693400, -0.093269, -0.157484, -1.280848, -0.530763, 1.025654, -1.540281, 0.157013, 0.922545, -0.987998, -0.940692, 0.405397, 0.082137, 0.104761, -0.575118, 0.808999, -0.360241, 0.216758, -1.084956, 0.747453, 1.955764, -0.189345, -0.543032, 0.718822, -0.644044, -0.330934, 0.418401, 0.565199, 1.310041, -0.455300, -0.510609, 0.794185, -0.373836, -1.605508, 0.097853, -0.320185, 1.408608, -1.390388, -0.538724, 0.145802, -0.757467, 1.591647, -0.583450, 0.163481, 2.645931, -0.229253, -0.825497, -0.149721, -0.103169, 0.838666, -1.172979, 0.734279, 0.915594, -1.177460, 0.119027, 0.177183, -2.405823, -1.642143, -1.708708, -0.101306, -0.163743, -1.926949, -0.006567, -0.097752, -0.784427, 1.047451, -0.248151, -0.022732, 1.592340, -0.829903, 0.845261, -1.037282, -0.953367, 0.077327, -0.984658, -0.276593, 1.886285, -0.459682, 0.130256, 0.041410, 0.536269, -0.806383, -0.519020, -0.055321, -0.217679, 1.443330, -0.696327, -0.294574, 0.902893, -1.150215, 0.013616, 1.229312, 1.795201, 1.574993, -1.292545, 0.534143, 2.656923, 1.403724, -1.041025, -0.964517, -0.315716, 1.302320, -0.060552, -0.883634, -0.501514, -0.427643, -0.231822, 0.464595, 1.644022, 0.417917, -0.282918, 0.367621, -0.327728}, + { -0.406468, -0.365057, 0.597241, -0.963384, 0.468242, 0.162815, -1.798851, -0.282942, 1.926839, 0.187841, -0.990895, 0.416849, 0.877864, -0.648915, 1.583707, -0.530586, 1.289275, -0.300843, -0.043793, -0.386670, 1.014606, 0.097312, -0.626041, -0.542674, 1.921894, -0.139604, 0.568860, -0.260140, 0.419980, 1.131792, 0.143581, -1.445115, -0.859116, 0.021160, 0.020419, 1.353125, -0.453110, 0.539750, -0.691671, -0.700413, 0.014173, 0.027873, 0.572080, 0.206089, -0.448775, 0.600117, -1.200543, -0.963716, 0.176836, -0.323267, -0.446048, -1.351900, -1.006603, 0.606469, -0.004117, -0.464407, 0.869106, 1.114791, 1.600351, 0.653638, 1.676764, -0.148909, 0.395486, 0.283424, 0.564011, -0.646501, -0.351129, 1.414086, -0.915920, 0.435346, 0.414801, -1.740013, 0.564108, -0.424704, -0.006933, 0.444198, -0.626687, 0.025097, -0.287651, -1.036991, -0.284438, 0.204398, -0.799633, -2.331408, -0.093658, 0.188885, -0.698944, 0.804218, -0.747071, -0.506996, -0.798443, -1.028703, -0.073629, 0.951085, 1.428918, 2.360682, -0.392841, 1.255247, -1.807375, 1.694760, -1.339607, -0.588851, 0.040053, 0.268924, -0.686937, 0.410683, -0.006103, -0.100148, -0.366536, -0.235112, 1.008025, 0.343076, -0.558086, 0.286246, -0.717089, -1.906361, 0.566072, 0.996611, -0.489689, 0.673680, -0.124255, -0.152901, 0.673218, -0.001344, -1.216590, -0.562838, 0.962074, -0.581380, -0.288032, 0.741669, -0.593664, -1.018684, -0.297349, -1.176695, -0.203766, 0.473981, 0.556438, 0.944548, 0.712051, 0.210379, -1.794086, 0.297498, -1.254568, 0.902893, -0.866551, -1.577222, -0.531548, 2.092106, -0.575074, -0.110176, 1.504110, -0.518778, 0.355393, -0.801812, 0.235125, 0.117631, -0.107405, -0.462904, -1.603790, 1.927497, 2.191435, 0.238668, 1.011266, -0.639768, 0.462078, 1.444878, -0.898090, 2.311769, -0.506508, 1.782247, -0.663961, 0.450903, -0.076780, -0.488982, -1.612017, 1.255842, -0.459528, 0.055312, -0.665984, 0.283830, 0.058986, -2.005889, 1.110387, 0.977519, -0.227215, -1.272269, -0.834723, -2.106870, -1.323220, -0.330791, 2.653687, 0.209834, -0.578994, -0.056921, 0.008863, 3.271777, -1.154689, 0.711307, 0.101732, -0.902282, -0.555710, -0.631138, -0.619637, 0.097667, -1.369606, -0.855141, -0.251135, 1.675182, -1.077526, 2.063405, 1.426003, -0.149372, -1.387733, -1.655074, 0.312748, -0.834636, -0.210825, -0.221048, 0.848495, -0.545513, 0.506935, 1.919146, -0.321572, 1.342337, -0.038625, -1.183764, 0.195506, -0.450266, -1.357680, -1.458466, -1.618047, -0.972546, 0.362747, -0.225409, -1.693150, 0.979390, 0.193112, -1.268898, -0.547307, 0.952950, -2.047787, -1.318950, 1.485277, 0.501556, -0.239314, -3.149474, -0.062519, 0.453764, 0.472629, -0.470235, -0.275218, -0.804016, 1.018439, -2.585617, -0.339461, -1.201731, 0.253317, -0.499498, -0.160565, -0.616867, 0.128782, 0.606420, -0.713193, -0.582815, 0.995971, -0.665680, -1.538404, -1.226090, -1.100394, -1.500038, 0.262429, 1.373822, 0.972318, -0.167317, 1.060992, 1.003259, -1.043173, 0.894478, 0.087678, 0.262319, -1.366780, 0.703388, 0.923383, -0.493396, -0.568345, 1.408210, -1.563138, 0.089805, 0.168082, -0.037214, -0.723589, 0.840348, 0.666864, 0.467143, 1.518542, -0.646734, -0.064256, 0.392097, -1.331105, -0.802394, 0.274659, -0.198273, 1.070325, -1.287854, 0.932486, -0.459115, 1.300467, -0.686518, -0.135831, -1.501052, 0.977043, 0.344008, 0.584928, -1.273679, 0.872673, 0.270420, -0.321429, 0.515701, -0.091082, 1.642456, 0.347802, -0.209354, -0.733974, 2.228736, -1.865011, 0.143932, 0.362588, -1.279297, -1.249130, 0.781288, 0.804844, 0.015832, 0.017303, -0.167162, -1.132812, -0.641970, 2.400760, 0.399719, -0.986007, -0.061530, 0.798438, -0.172927, -1.813524, -1.072456, 0.537532, -1.120123, -0.787208, 0.316349, -0.732543, 1.564227, 1.124341, 0.859728, 0.158561, -0.197376, 0.599204, 0.482985, -1.306450, -0.143630, 0.147203, -1.053556, -0.463211, 0.685317, -1.333367, 1.295151, -0.421591, 1.399507, 0.045936, -0.192254, 0.842519, 0.743713, -0.335369, -0.163486, -1.445692, 0.211799, -0.164727, 1.000108, -1.521852, -1.280649, -0.294810, 0.179966, -0.112759, -1.757522, -0.472785, -0.602000, 1.030993, 0.455416, 0.775487, -0.047498, 0.602244, -0.875585, -0.140058, 3.275847, 1.302661, -0.322593, -0.493948, 0.183973, 1.606791, -1.941916, -0.743365, 0.844753, 0.692284, 1.552531, 0.667258, 1.360232, 0.152084, -0.996113, 2.191667, 1.346821, -0.369673, -0.194913, -0.252180, -0.208716, 0.046470, 0.491133, 1.641221, -0.121306, -1.657650, 1.828078, -0.064448, 1.094953, -0.760442, 0.025336, -1.354822, 1.258587, 1.307206, -1.507555, -0.883043, -0.514430, 0.632000, -1.388132, -0.163171, 1.105909, 0.436512, -1.113544, 0.087129, 0.666920, -1.334040, -0.703989, -1.320381, 1.238646, -0.286670, -0.288271, 0.305155, -1.113500, -0.137761, 1.869549, 2.479349, -0.626884, -0.393559, 0.413428, 0.173851, -0.713130, 0.412676, -0.353355, 2.333463, 0.560384, 0.156283, 0.657191, 0.671582, 0.124373, 1.864296, 0.180495, -0.087415, -0.143829, 0.183196, -0.773594, -0.478594, 0.031756, 1.253657, -1.503867, -0.486741, -2.396816, 0.402792, 0.451413, -0.538706, 0.594532, 0.011250, 0.008682, -0.252546, -0.190114, -0.919804, -0.813059, 0.535400, 0.464503, 0.224138, 0.656899, -1.189306, -0.878884, -0.300770, -0.360323, 1.210252, 0.500266, 0.107874, -0.784057, -0.119357, 0.625247, 1.968287, -0.562140, -1.752138, -1.290463, -0.153740, 0.493097, 0.458951, -0.267861, 0.584230, 0.116383, -1.451924, -0.666567, 0.680205, 0.652880, 0.291001, -0.631543, -1.784194, -0.263254, 0.988923, -0.731957, 0.672977, 1.426194, 0.310817, -0.531299, -0.761460, -1.767070, -0.866708, 0.237591, 1.297507, 0.733228, 1.636519, 0.015092, 1.102568, 1.282674, -0.405458, -1.340220, 0.329330, 1.062319, 0.037963, 2.116057, -1.650487, -1.274937, 0.054449, -0.770531, 0.129880, 0.165700, 0.989725, 0.636512, 0.685477, -1.289200, 0.925239, -0.814277, -0.907037, -1.031544, 1.099652, -0.949617, 1.416019, -0.448473, -0.754543, -0.058473, 1.596451, -0.933824, 0.562584, -2.389839, -0.684192, 0.185644, -0.108062, -0.857809, 1.242899, -0.480496, 2.189663, 0.858043, -0.200968, 1.693915, -1.196794, 1.592965, 0.091841, -0.172567, -0.513637, -0.723757, 0.345762, 0.469300, -0.830485, 0.248202, -0.677153, 1.064555, 0.709279, 2.171458, 1.691104, -0.303637, 1.064757, 0.308908, 0.374307, -0.807925, 1.226659, -0.627498, 1.180085, 0.241683, -0.008952, -1.442318, -1.250514, 0.224200, -1.249030, -1.033518, -0.015128, -0.769184, -2.265702, 0.657685, 0.391878, -0.559987, -1.030730, -0.497953, 0.116829, 0.665867, -0.047166, 0.471871, -1.780302, 0.234891, 1.474528, 0.474255, -2.521239, -0.445469, 1.853918, -1.180532, 0.571184, -1.492830, 1.854272, -0.878059, 0.076240, -0.438071, 0.453710, -0.273160, 1.066663, -0.847786, 3.127259, 1.342705, -0.251027, 0.540692, -0.666649, 1.139145, -1.261988, 1.377206, 0.180713, 0.248917, 0.680635, 0.805239, -0.874402, -0.891547, -1.464762, 1.909882, -0.560268, -0.796543, 1.700378, -0.349600, -0.461750, -0.096434, 0.537761, -0.799122, -0.181014, -0.387946, -2.051841, -2.287463, 0.642675, 1.751290, -1.447666, -1.356728, -0.690176, 1.157448, -0.128633, -1.551042, -1.105166, -1.574512, 0.258396, -0.054202, 0.057885, -1.356813, -2.610289, -0.345650, 0.819189, -1.027992, 0.925931, -1.000288, -0.811576, 2.059559, 0.569935, 1.647736, -0.014369, -0.938087, 1.604069, 0.462123, 0.582675, 1.759614, -1.719389, 0.680925, -0.693605, 0.989517, 0.031058, 0.291677, -0.590878, 1.906436, -0.598627, -1.176984, 0.293686, 0.280523, 0.955669, -1.516574, 0.469994, 0.062413, 0.678846, -0.775084, 2.002544, -1.003839, -0.173063, -0.731172, 1.140475, -0.127201, -1.786448, 0.177480, -0.047648, -0.895553, 0.569750, -2.868160, 0.419723, -1.108614, 0.525144, 0.980685, 0.271644, -1.134562, 1.120831, 2.060712, -1.411138, -1.289436, 1.716802, 0.768466, -1.071004, 0.124706, -1.334314, 0.683175, 0.110427, 0.590573, -0.644159, 0.423661, -1.462781, -0.234598, -0.716409, 0.170097, 0.342129, 0.549406, 1.248006, 0.173548, 0.021924, -2.023530, 0.377129, -0.855406, 0.738041, -0.344279, -0.389226, -0.541200, 0.398816, 0.809971, -0.517599, -1.835558, -0.395012, -0.797962, -1.340762, 1.603437, 0.857996, -0.002159, 0.712849, -0.258669, -1.105638, 0.183898, -0.561262, -0.484531, -0.669755, -0.398090, -1.530870, -0.519626, 1.365397, -0.017795, 0.627677, 0.370884, -0.807559, -0.223457, -0.096272, -0.978555, -0.180315, -0.151533, 0.046199, -0.028220, 0.525393, -0.712728, 0.699668, 0.091549, -0.883363, 1.014451, 0.840313, -0.935581, -0.822299, 0.409609, 1.744240, -0.039787, 0.882294, 1.198668, -0.064957, -1.479674, -1.762894, 1.583332, -0.294342, 0.557081, -0.717986, -1.491499, 1.319759, 0.557004, -1.402948, -0.149134, 0.976089, 0.937032, -0.106868, -0.854570, -1.781579, -0.792879, -0.366036, 1.323650, 2.555737, 1.227880, 0.292694, 1.126642, -0.181210, -0.389203, -3.232716, 0.748369, -1.134446, -0.561532, 1.680062, 0.593843, 1.735434, -1.060379, -0.087503, -0.640505, -1.104373, 1.841985, 0.336545, -0.106145, -0.122830, 0.410170, 0.067522, 1.037194, -0.250460, 0.511080, -1.007815, 1.428172, -0.878694, 0.562377, -0.455986, -0.189975, 0.171312, -0.971539, -0.399392, 0.075889, -1.556407, 0.526123, -1.475662, 0.993950, 0.011876, -1.442463, -0.047092, 0.744630, -0.638076, -0.343080, 1.428011, -0.450641, 0.331645, 1.654822, -0.950845, -0.643413, -0.014288, 1.743920, 0.092840, 0.895650, 1.509748, 1.341443, 0.338540, 0.907330, -0.376868, -1.078227, 0.042255, 0.226201, 0.360208, -0.605466, 0.968499, 1.431797, -0.921544, 0.315659, -0.256213, -1.429460, 0.091766, 1.770358, 0.756846, 0.224588, 1.613540, 0.446077, -0.784914, 0.739155, 0.835684, 0.878251, 1.285831, -2.310294, -0.356622, -1.913146, -0.870067, 0.562963, -0.101310, -1.879325, -0.093701, 0.936658, -0.418884, 0.026779, 1.454802, 0.429302, -0.198892, 0.591640, 1.018650, -0.465515, -0.957694, 1.107289, 1.093368, 0.214955, 0.188758, -0.657759, -0.668446, -1.019573, -1.097866, 0.408089, 1.194084, -0.137262, 0.517485, 1.392941, -0.211832, 2.069592, 0.687874, -1.290541, 1.018855, 0.529679, -1.499467, 0.665105, 0.371907, 0.451066, 2.277218, -1.913767, 0.704111, 1.366875, 2.866656, 0.940889, 0.252956, -0.128458, 3.180509, 0.468433, -0.282350, 0.627048, -0.646344, -0.259248, 0.054573, -1.017478, 1.846370, -0.817583, -1.051370, -0.245170, -0.173399, 1.019417, 0.315563, 1.247490, -0.690307, 0.515575, 0.467928, -0.388324, 0.735909, 0.030597, 0.506710, -1.191672, 1.009759, -0.553440, -1.077032, 0.165895, 0.253513, -2.349923, 0.628529, -0.216724, -0.588570, 1.193728, -2.107257, -0.222867, 0.909580, 0.808902, 0.116927, 0.290311, 0.295843, -0.527296, 0.199396, 0.367194, -0.003397, -1.589023, -1.222446, -0.148172, -0.864601, 0.146541, -0.435049, 1.561154, 0.416958, 0.347068, -1.384918, 0.257929, -0.788887, 0.093189, -1.650009, -0.665659, 0.664007, 0.249292, 0.294210, 0.973764, -0.493717, 1.567738, 1.682037, -1.513476, 1.117336, -0.570056, 0.975398, -2.252530, -0.089434, -0.315956, 0.732453, 1.022141, -1.041310, -2.355721, -0.707041, 1.012606, -0.044438, -0.978465, 1.498494, 1.115269, -1.077721, 0.410779, -0.287947, 0.470311, -0.863949, 0.187757, 1.021498, -0.624577, 1.966630, 0.062544, -2.202236, 0.078476, -1.054308, 1.813082, -0.369070, 0.629143, -0.088215, 1.340759, 0.647080, 0.794593, 0.878580, -1.013451, 0.979106, 0.622499, -0.543778, 0.068688, -0.931662, -0.578983, 0.352615, 0.610382, -0.793257, -0.077706, -0.540909, -0.050348, -0.271217, 2.046692, -1.937235, -1.081329, -1.392283, -0.254534, -1.237023, 0.864616, -0.241888, -1.497972, 0.426860, -3.184020, 1.829987, -0.150108, -2.532937, -0.696043, 1.095071, 1.284768, 0.922124, 0.641639, 0.916526, 1.571525, 1.105264, -0.279900, -0.295197, -0.494245, -1.394263, -0.764266, -1.450999, -0.854092, 0.032585, 0.756926, 0.586853, 0.376092, -0.789892, 0.602740, -0.805774, -1.341582, 0.692253, 0.424803, -2.454445, 0.860276, 1.400603, -0.345318, -0.315355, -0.381468, 0.394866, -0.125473, 0.042189, -0.163197, -0.268920, 1.478979, 0.443604, 0.269591, 0.005241, 2.471152, -0.431033, -0.213088, -0.980578, 0.988233, 0.380966, 0.725471, -1.423143, -2.224652, 0.978976, 0.815932, 0.700834, 0.837131, -0.024787, -0.417686, 1.134339, -1.107843, 0.306380, 0.033667, 1.867317, 0.012471, -0.287572, 1.778533, 0.370135, -1.174634, 0.192555, 0.261137, -1.397272, -0.084362, 0.041274, 1.009914, -0.749546, -0.761334, 0.098064, -0.294881, 0.446405, 0.928836, -1.929282, -0.570285, -0.784546, -2.779403, -0.846695, 0.137031, 0.540867, 0.824389, 0.236472, 0.210313, -0.360871, 0.347146, -0.253956, -0.665773, -1.925257, -0.348763, 2.227881, 0.003805, 1.332039, -0.982287, 0.031008, -0.270740, 2.522820, -0.791248, -0.684459, 0.764983, -0.152321, -0.026215, -0.979252, 1.229182, 0.858369, -0.407767, 0.776863, 0.579153, -0.264932, -0.018016, -1.123752, -1.313664, -1.017174, 0.960427, -1.606437, 1.105650, 0.359138, 1.027496, 0.092651, -1.402268, 0.354990, -0.880036, 0.131442, 1.565317, -1.083326, 1.650765, -0.492004, -1.601428, 1.099451, -0.331004, -0.366546, -0.480666, -0.411154, -0.410900, -0.941763, -1.469652, -1.363842, -0.033438, -0.233233, 0.376351, 0.686400, -0.363033, -0.332623, -0.048890, 0.067551, -1.459144, 0.341030, -1.077012, 0.273593, -0.371357, -0.298692, 1.114963, -1.465033, 0.519586, 0.052964, 0.655276, -0.491731, 0.280850, 0.323244, 0.867395, 0.759899, -1.666730, 0.979111, -0.167920, 0.591915, -0.119927, -0.195404, -1.175960, 0.545832, 0.692513, -1.271827, -0.836648, 0.586593, 0.291112, 0.996090, -0.896535, -0.814722, -0.005518, 0.358933, 0.111271, 1.340262, 0.741738, -0.774394, -2.162559, 1.318474, -1.396477, -0.520804, 0.466399, 2.279527, 0.029293, 0.108531, -1.754407, 0.163995, 1.082599, -0.403398, -0.170029, -0.963065, -0.486390, -0.431780, 0.542583, -0.011153, 1.094012, -0.462220, -1.562649, 0.032236, 1.436180, 0.643423, 0.641089, 0.482134, 1.324782, -1.681461, 0.544893, -0.395092, 0.153287, 1.228124, -1.540012, 0.444108, -0.455420, -0.216309, 0.817343, -1.055369, -0.470671, -1.268143, 0.019048, -0.427014, 1.649644, 0.071607, -1.580412, -0.396234, 0.110895, -0.296831, -1.111292, -0.044197, -1.242487, 1.372200, -1.057536, -0.437267, -0.892935, 0.759907, 0.848724, -0.130426, -0.012477, 0.581111, 0.973880, -1.026649, 0.243048, -0.867487, 0.490193, -0.773725, -0.890799, 0.772237, 1.469286, 0.380690, 0.953945, 0.034076, -0.152651, 0.135191, -1.222980, 1.007377, -1.039381, 1.371140, -0.428279, -0.628594, -0.360490, -0.933866, -1.854327, 0.998097, 0.796403, -2.439250, 0.756891, -1.550121, -0.225330, -0.630589, 1.332149, 0.709854, 0.226034, 0.729615, 0.267521, -0.698030, 0.186030, -1.167110, -0.385187, -1.295860, 1.022553, 0.041222, 0.958232, -1.054944, -2.073357, -0.424499, -0.763159, 0.522001, 1.385108, -0.557294, 0.702881, 0.447902, 2.224815, -0.080233, 1.244975, -1.041720, 1.946191, -1.104801, 0.434410, 0.505597, -0.796234, -1.369856, -0.827263, -0.399050, -0.226377, -1.068695, 0.514542, -1.101633, -2.120940, -1.738808, -1.078760, 1.081354, -0.585005, -0.136036, -1.990163, -0.106920, 0.237565, 1.648598, -0.482580, 0.760493, 0.207137, -0.701255, 0.285121, -0.840918, 0.003624, 0.498518, 0.025036, 0.788528, 2.160563, -0.296655, -0.137203, 0.324651, 0.132233, -0.531125, 1.789201, -0.160457, -1.032517, 0.146514, -1.824918, 0.974990, -1.214175, -1.649340, 1.387548, 0.470395, 1.312280, 1.237932, -0.899659, -0.829653, -1.842418, -1.061287, 0.560200, -1.421208, -0.581494, -1.333445, 1.197808, -0.004378, 1.416499, 1.755505, 0.026544, 0.837454, 1.557874, -0.217017, -0.397989, 0.063063, -1.778829, -0.192884, 0.084211, 1.062490, 0.964407, 0.566962, 0.847083, -0.274809, 0.375254, 0.722517, 0.560678, -1.005988, 0.875064, 0.687439, -0.396946, 0.670352, 0.689516, -1.470827, -0.344292, -0.629194, 0.227307, 1.988977, -0.876211, -1.121046, 1.265790, -0.685251, -1.070367, -0.062884, 0.054505, -3.003368, -1.133793, -2.012723, -0.337795, 0.898864, 0.916570, -1.894812, 0.238004, 0.097478, -0.509694, -0.415274, -1.191918, 0.876687, 1.286826, -0.005971, 0.455453, 0.048425, -0.456403, 0.971292, -0.865462, -0.246155, -0.585692, -0.965737, 3.445901, -0.911199, 0.287442, 1.587792, 0.895560, 1.925481, 0.095547, 1.518426, 0.012224, 0.691692, 0.582198, -0.406868, 0.143958, 0.457494, 1.337578, 0.673886, -0.314307, -0.481295, 0.300115, 0.369252, -0.205887, -0.345503, 0.967452, -1.299286, -1.718308, 0.036918, 0.629148, 2.099278, -1.417399, -1.640476, 0.083439, -0.583210, 0.207945, 2.570730, -0.825374, -0.759509, 0.481104, 0.737747, -0.094216, -0.284510, -1.562090, 0.307287, -2.235996, -0.514724, -0.214082, 0.499416, -0.699206, 0.980064, 0.163693, 1.312642, -0.183776, 1.725256, -0.677991, -1.607041, -0.544693, 1.346919, -0.624496, -0.183641, -0.246156, -1.923805, 1.569831, -0.725646, -0.548008, -0.413044, 0.303991, -0.995683, -0.342037, -1.948194, -1.954113, -1.625112, 0.835255, -1.270998, -1.378510, 0.446086, -1.131451, -0.970990, 0.637331, 1.110468, 0.767603, 2.231873, 0.776787, 0.985546, -1.538532, -0.784095, -0.798493, 0.480797, 0.776444, -0.433342, 0.396399, 1.428377, -0.699219, -0.743212, -0.872042, 0.074149, 2.007679, 0.364113, 1.133289, 1.023652, 0.105856, -1.568905, 1.186232, 0.620150, -2.199017, -0.027987, 1.024930, -0.116677, 0.546419, 0.803328, -0.368815, -1.090368, -1.694118, -0.290254, 1.870361, 0.356535, 0.505162, -1.475733, -0.081447, -1.705330, 2.530515, 0.047912, -1.537741, -0.127411, -1.600267, -2.032078, -1.126504, -0.919711, 1.830218, -0.401305, 0.030775, -0.181328, -0.213574, 1.437745, -1.801430, 0.476875, -0.173328, 2.088142, -0.709095, 0.195275, 0.020651, -1.806825, 2.099104, 2.251518, -1.257256, 0.861375, 0.243513, -0.052754, -1.436298, 0.597827, 0.743081, -0.283839, -0.344512, 1.563187, -0.492882, 0.587774, -0.210253, 1.610632, 0.277828, 1.640443, 0.889563, -0.836606, -1.140817, 0.760634, -0.932450, 0.782050, 0.472036, -1.040960, 0.789785, 2.226307, 0.771765, -0.202860, 0.167792, -0.208109, 1.816401, -0.233837, 1.026439, 1.193812, 0.523899, -0.578994, 0.293049, 2.721322, 3.377675, -0.361687, -0.190383, -0.621579, 0.617469, -1.686794, -0.615522, 1.037010, 1.421817, 0.657378, 0.622055, 1.243860, 1.044273, 0.380579, -0.717023, 1.381899, -0.477302, -1.950422, -0.063410, -0.860567, -1.995309, 0.604878, 1.912790, 0.614260, -0.468318, -0.307680, -0.448515, 0.790912, -0.636104, -0.933446, 0.703913, 0.612134, 0.577703, 0.606643, -0.467727, 0.336145, -0.606091, 0.291353, 0.169330, 0.396521, 0.793152, 1.168300, -0.665320, 0.138893, -0.107689, 0.393695, 0.238294, -1.465343, 0.110672, -0.574389, 1.189659, -1.031656, 0.643544, -0.041721, -2.551744, 1.914617, 1.137613, 0.304502, 0.276137, -0.274812, -0.223629, -0.406222, -1.497671, -1.499371, 0.864943, 0.435871, 0.477636, -0.268209, -1.603217, -1.997199, 0.520067, -1.002440, 1.284171, 0.764931, 0.559257, -0.047788, -0.321588, 0.910385, 1.114308, -0.665325, 0.117723, 0.957186, 0.196895, 0.526333, -0.301807, 0.242643, -0.001410, -1.553406, -2.364246, -1.680157, 0.529280, -0.627928, 0.902765, -0.271188, 1.484785, -0.264528, -0.588892, 1.488094, -0.799257, 1.448272, 0.716505, -0.148467, -0.989003, 0.121459, 1.503392, 0.998178, 0.571938, -1.298588, 0.155219, -1.193553, -1.071987, 1.077364, -1.832231, 1.224635, 1.611362, 0.660337, -0.207882, -2.460820, 1.092116, -1.400597, 1.520125, 0.180947, -0.859572, -0.347017, 1.086482, 0.490368, 0.765541, -0.184343, 0.680209, -0.015803, 3.497202, -0.527242, 0.473355, 2.547523, -2.312729, -2.031398, -0.100175, 1.589728, -0.278581, 0.981250, -0.526498, 0.889400, -1.125171, 0.163059, 0.350926, -0.699345, 1.999035, -0.570082, 1.689954, -0.699827, -0.172210, -1.047179, 1.451014, 1.044453, 0.564037, 0.239588, 0.901849, 1.030170, 0.286149, -0.250285, 0.764806, -0.439759, -0.062761, 2.239625, -0.092694, -0.621294, 0.482468, -0.161406, -1.817209, -0.093881, 0.683814, 0.235213, 0.942230, 1.768518, -1.595445, -0.412542, 2.414057, -0.221852, -1.401115, -1.081049, 0.560190, 1.574262, 1.199254, 0.434372, 0.099117, -0.174399, -1.459759, -0.005484, -0.551779, -1.119167, -0.281815, -1.940759, -1.402559, 0.771613, 1.317510, -0.100837, 0.702263, -0.597209, -0.697992, -1.650409, 0.474231, -1.313327, 0.521745, -0.165005, 0.546684, -0.120657, -0.166847, -0.208339, 0.474709, -0.750711, -2.638392, -1.137997, 1.917294, -0.819974, -0.272673, -0.372066, 0.979130, 1.205399, -0.724035, 1.609277, 0.657708, 1.342834, 0.487934, -0.161034, 1.027104, -0.419074, -1.293546, -1.018050, 0.205267, 1.896128, 1.897688, 1.690139, -1.177716, 1.202312, -1.885657, 0.355356, 0.313285, 0.564464, -0.163197, 1.091237, -0.258534, -1.452792, 1.864626, 0.498763, 0.679449, -0.631617, 0.807204, -0.298873, 0.193351, 0.984876, -0.146170, -0.504643, 1.432000, 1.729161, -0.753104, -0.591432, -1.140864, 0.203559, 0.327622, -0.136095, -1.974707, 1.580811, 2.285019, -0.297325, 0.184706, 1.426637, 1.953744, -0.488535, -0.334653, -1.518712, 1.131937, -1.019480, 1.740277, -0.826970, -0.384879, 0.858003, -0.071758, 0.288566, 0.787778, -1.090148, -0.452980, 0.006704, 1.020528, 0.915000, -0.853892, 0.189906, 0.456827, -0.480919, -0.318714, -1.366240, -0.175973, 1.984203, -0.413025, 0.948677, 0.552726, -1.207447, 1.370577, 1.634290, -0.579001, -0.021489, -1.006015, 0.150176, 1.444833, 0.326589, -0.527912, 0.260466, 0.665954, 0.443388, 0.920201, 0.677774, -0.071644, 0.291383, 0.041140, 1.568847, -1.051342, 1.705840, 1.282443, -0.626896, 0.245023, 0.279548, -1.379793, 0.042161, 0.666386, -0.177372, -0.324910, 0.280091, 0.760060, -0.278312, 0.102068, 0.267269, 1.783802, 0.736309, 0.546462, 0.361672, 1.326330, 1.655277, 0.389296, -0.455793, -0.801484, 0.780402, 0.604900, 1.711794, -0.787858, -0.167967, -1.822423, -0.756842, 0.851663, 0.717867, -0.861421, -0.793650, 1.675991, -0.879387, 1.206216, 0.434068, -2.092479, -0.236197, -1.166878, -0.640330, -0.838333, 1.394272, -1.264509, -0.131953, 0.060700, 1.295685, 1.141973, 1.223570, -0.741256, 1.187025, -2.129549, -0.601442, 0.547206, -1.066923, -0.914791, 1.616775, -0.563487, 0.994912, 0.566428, 0.956240, 0.575268, -1.677340, -0.487066, 0.055881, -0.293810, -2.052553, -0.555956, -0.046646, 0.757924, 1.955607, 0.200750, 0.104535, -1.093402, 1.071051, 0.384958, -0.155126, 0.679061, -1.049670, -0.332638, 1.514032, 1.474860, -1.161727, -0.471283, -0.544551, -0.925896, -0.487798, 1.043943, -1.212793, -1.221603, 0.439309, 0.056897, -0.841054, 0.688809, -0.907617, -1.534107, -0.209263, -1.261547, 1.213918, 0.204049, 1.176109, 0.058943, -0.486168, -0.030294, -1.034265, 0.026252, 0.593023, -1.313981, -1.283513, -1.397177, -0.094894, 0.216503, 0.811026, 0.216309, 0.193855, 0.195588, 0.235502, 0.180204, 0.356665, 0.448827, 0.315331, -0.901124, -0.853701, -0.358370, -1.683556, 1.585802, -0.976706, 0.572273, -1.145183, 0.788685, 1.732736, -0.163302, -1.148025, 1.472582, -0.725925, 0.493901, 0.195637, 1.416335, -1.578705, 0.679016, -1.162408, -1.738871, 0.450091, -0.431112, -1.361769, -0.424566, -0.818903, -0.667462, 1.078311, -1.037617, 0.211673, -0.598206, 1.628288, -0.584240, -2.135561, 0.003673, 0.425412, -0.173806, 2.000998, -0.165833, -1.216102, -1.685431, 1.135099, 0.616347, -0.522370, -0.633687, 0.922370, 0.042586, 0.370329, 1.044347, 1.031333, -0.964225, 1.550728, 0.415130, -0.290246, -1.746478, 0.165117, 1.252110, 0.360803, -0.309422, -1.322469, -0.624928, 0.955354, -1.340895, -0.584127, -1.185284, -0.147229, -0.558655, 1.759923, -2.949292, 0.443495, 0.367090, 0.774458, -1.599032, -0.470594, -0.118633, 0.214576, -0.483837, 0.124889, 0.944012, -0.140600, 0.374726, -0.166974, 0.119375, -1.005208, -1.070203, 0.423589, 0.727111, 1.276022, -0.314949, 1.101866, 0.110812, 1.384848, -1.388079, -1.054257, -0.367673, 0.285534, 2.069403, 0.367170, 1.282821, 0.254568, 0.546672, 1.199001, -0.677695, 1.506406, 2.982727, 0.696974, -1.678491, -4.151894, -3.297700, -0.857486, -0.991400, 2.461016, -1.183123, 1.762707, -0.176799, 1.216201, 0.196540, 0.931717, 0.046761, 0.040873, 1.082963, 1.421519, 0.888768, 0.467386, -1.736140, -0.971011, 0.563802, -1.044710, 0.277508, -0.936257, -0.073800, -0.091419, -0.914668, -0.966835, -0.589521, 0.195878, 0.688218, 0.118125, 0.436079, -0.224403, -0.350996, 0.396244, 0.323399, 2.020873, 0.979554, -0.186838, 0.654945, -0.373061, 0.940205, 0.336659, -0.639526, -1.347858, 2.344529, 0.635626, -1.507473, 1.068242, -0.434148, -0.379054, -0.138890, 0.775494, 0.329572, 1.088699, 0.285666, 0.587611, -1.383103, 0.345279, -0.818008, 1.092961, -2.065354, -0.387811, -0.819153, 1.032752, 0.851679, -0.031117, 0.146819, -0.193887, 0.726719, 1.394476, 0.503921, -0.110971, 0.385437, -1.407887, -2.238863, 1.187161, -1.552516, -0.904590, -0.057329, 0.227120, 1.222442, 0.612752, -0.895316, -0.160224, -0.079172, -0.806369, 0.346452, -0.526111, 1.618522, 0.088905, 1.124405, 0.183307, -0.354512, -0.740697, 0.653895, 0.256393, -0.847359, 2.708672, -0.255305, -0.422605, -0.202106, 0.445192, 0.185425, -0.087221, -0.146694, -1.770923, -0.734755, -1.025807, 1.960358, -0.071322, 1.147608, 0.036726, -0.672309, 0.184585, -0.486843, 0.643202, 0.916453, 0.189262, -0.978815, -1.923698, 2.172878, 0.723617, 0.884473, 0.415043, -2.056983, 0.322004, -0.293319, 0.850476, -1.372263, 1.321481, 0.831174, 0.719995, 2.954501, -0.031278, 1.457523, -1.147279, -1.445839, 1.568239, -0.146302, -0.066091, 2.213844, -1.379027, -0.689201, -1.253020, -0.808258, 0.141012, 0.374659, 0.215204, 0.535278, 0.032940, -1.362946, -0.333833, 1.372702, 0.753440, -0.648282, 0.478611, 0.744250, -1.166623, 0.318440, -0.043213, 0.235775, 1.323689, 0.728217, -1.533827, -0.688402, 1.380060, 1.827214, 0.445192, 0.849957, 0.985162, -1.322424, 0.868099, -0.615620, 1.109362, 0.523907, -1.327580, 1.401171, -0.129338, 0.775905, 0.839810, 0.051850, 0.170181, 0.744342, 0.123146, -1.296641, -1.494909, -1.155625, -0.390187, 0.342067, -1.268486, 0.740022, 0.436035, -0.113239, 0.105586, 0.031501, 0.986141, 0.023656, 0.676581, 1.518381, 0.174162, 0.610272, -0.478724, 2.483743, 0.613921, -0.175590, -0.164017, -0.353660, 1.924063, 0.158569, -0.396594, 0.263665, -1.950628, 0.312195, 1.584783, 0.568914, -0.554711, 0.625919, -2.096829, 0.699644, 0.287566, 1.361564, 0.609404, -0.326094, 0.026283, 0.062417, -0.798742, 0.812903, 0.143822, -0.295422, 0.887376, 0.823198, -1.309627, 0.240108, 1.146784, -0.390646, -0.089727, -1.169366, 1.169567, 0.704836, 0.315145, -0.656186, -0.296418, 0.641698, 0.888014, 1.013918, 0.592271, -1.212218, 0.591033, -0.342076, -0.374229, 0.977258, -0.551950, -1.517663, 0.003719, 0.289068, -1.482010, 1.297532, 0.316068, -0.258420, 0.418935, -0.375836, 1.042954, -0.725554, -0.114071, -0.730602, -0.661055, 0.753532, 0.081824, 1.006013, 0.142167, -0.840237, 1.369744, 0.528675, -0.297089, 0.017474, -1.150734, -0.165743, -1.374017, -0.803858, 0.131781, -1.242277, 0.089559, -0.892897, 0.147872, 1.133479, 0.373783, 2.660564, -0.974752, 0.509270, 1.581726, -0.277729, 0.520943, 0.729095, 0.956977, 1.067660, 0.285560, 0.994783, 1.142687, -0.682838, -0.267087, 0.875598, 0.371457, -1.197628, 0.158424, 0.188489, 0.562693, -0.919669, 1.555412, -1.339534, -0.711500, -0.321229, -2.384288, 0.750795, -1.072228, 2.106545, -0.823336, -1.119585, -1.580754, 0.202609, -0.078508, 0.260435, -3.602984, -0.205322, -0.667775, 0.074963, -1.454056, 0.070495, -0.538768, -0.635445, 0.507923, 2.179662, -0.724869, 0.838785, 1.190526, 0.430776, -0.009086, -0.399675, 1.397246, -0.056698, -1.241325, 1.800117, -0.378219, -0.198953, -1.655862, -0.321080, -0.185884, 1.576458, 0.715399, -2.288547, -0.366786, -1.404334, 0.643486, -0.763561, 0.400271, -1.828620, 0.706079, -0.397933, 0.093705, -0.916302, -0.149977, 0.314115, -0.175625, -0.566566, -0.529712, -0.767276, 0.871735, -0.631191, -0.347633, 0.037088, -2.132443, -0.470657, -0.832965, -0.082984, -0.260987, 0.613843, 1.373040, 0.611550, 1.472924, -1.230582, 0.610818, 2.789570, 0.932315, 0.005373, 0.285894, -0.638099, -1.457272, 1.225715, -0.319766, 0.408211, -0.223554, 2.121467, -1.387489, 0.944122, 1.208687, -0.166073, 2.072319, 0.942278, -0.026106, 0.270373, -0.367620, 1.114116, 0.153176, -1.733128, -0.378857, -2.422843, 0.487516, -1.247803, 1.062849, -1.231253, 0.537975, 0.416658, 0.371592, -0.254977, -0.482217, 2.085400, -1.245060, -0.006724, 0.345644, -1.287915, 1.869092, 1.416436, -0.615393, -0.273593, 0.262973, 0.139038, 0.246117, -0.109790, -0.665548, -0.178864, 1.099355, 0.773782, 0.457826, -0.541601, 0.101499, 1.272108, 0.566388, 0.886247, -0.668834, 0.532492, -0.165506, -0.339198, -1.283437, -1.336261, 0.180136, 0.225786, 0.175028, -0.957114, -0.350541, -0.530105, -0.518899, 0.822877, 0.400293, 0.611413, 0.433421, -0.027002, 2.016738, -0.352167, -0.117694, -0.711349, 0.225743, 2.219947, -0.994911, 0.889493, -0.209501, -1.015048, -0.277007, -1.038744, -1.041999, 0.591231, -0.005852, 1.309783, -1.893955, -0.245225, -0.408309, 2.587780, 1.869129, -0.025926, 1.074801, 0.137144, 0.838392, 0.150895, 0.976174, -0.922213, 1.912812, -0.330382, 0.132859, 0.552352, 0.035093, 0.923648, 0.529371, -0.487117, -1.123653, 1.122107, -1.675823, -2.717964, -0.029215, -0.257208, -0.156907, 0.396118, 1.171553, -1.357970, 1.565213, -0.646594, 0.134291, -0.714868, 0.260105, -0.777921, -0.209907, 0.619322, 0.428472, -1.578512, -1.283865, -1.434614, -0.466454, 0.896150, 0.446782, 0.144509, -1.229224, -0.166965, 0.512940, 0.004475, -0.958409, 0.764049, 1.256500, -0.649258, -0.389592, -1.077574, 0.129926, 0.256995, 1.253581, 0.555203, 0.777111, 0.875996, 1.716907, 0.356880, 1.527518, -0.697347, 0.518405, -0.973775, 0.712326, -0.891095, 1.286977, 1.149621, 0.608203, -1.479573, 0.011016, 0.129004, -0.351740, -0.712967, -1.296240, 1.070677, 0.223133, -0.324454, 1.440688, 1.207998, -0.041205, -1.018669, 0.525927, -1.006325, -0.916148, 1.577374, 1.217416, 0.410817, 0.218878, 0.675492, 1.683384, 0.420540, -0.070093, -1.526976, -0.049730, 0.258250, -0.421714, -1.125409, 0.410102, -0.912545, -0.658720, 1.355603, 0.151928, 1.703582, 1.043317, 0.368780, 0.213015, -0.308952, -0.409541, -0.760363, 0.002532, -0.475296, 0.888988, -1.335275, 0.306037, -0.436678, 1.482922, 0.008808, -0.426924, -0.505520, -0.953012, -0.391128, 0.489408, 0.654015, 2.340253, 0.591200, -0.393732, -1.761934, 1.491361, -0.042439, -0.246911, -1.144422, -1.549792, -0.368030, -0.620258, 0.815402, 0.466840, -0.052885, -1.121396, 1.163027, 0.786450, 0.459861, 0.121936, -0.827918, 0.310432, -1.215373, -1.997813, 0.970187, 1.548958, -0.241756, 1.067134, 1.241846, 0.292035, -0.025637, 1.295865, 0.665144, -0.634091, 0.805057, -1.459196, 0.211142, -1.363085, 1.532381, 2.222022, 1.276336, 1.361636, 0.463343, 0.381781, 0.181735, 1.987398, -0.428641, 0.133009, 0.002244, 1.527644, 1.800537, 0.870477, 0.186963, 0.405588, 0.600083, -0.287867, 0.210746, -1.136290, 0.188915, 0.162045, -0.088737, 0.730083, 0.941827, 0.257603, 0.790213, 0.329960, -0.004840, 0.420102, 1.173649, -2.920959, 1.218269, 0.476052, -0.517790, -1.290314, -1.167549, -0.378205, -0.137183, 0.582925, 0.334868, 1.047304, 1.913719, -0.051452, -0.274991, -1.854406, 0.165857, 0.704543, 0.534597, 1.213684, 2.257795, -0.120105, -0.590144, 0.395352, -0.546918, 0.328898, 0.037597, 0.098501, -0.329587, -0.140080, -1.048393, -0.375590, -0.752983, 0.555698, -0.170252, -1.138621, 0.357078, 2.818563, 0.524365, 0.477222, 1.357011, -0.785911, 1.137909, -1.548372, 0.753165, 0.127490, -0.093429, 0.860062, -0.469682, 0.133400, -0.747741, 2.896087, 1.706991, -0.404538, -0.620125, 1.212147, 0.830912, 0.783276, 0.846542, -1.017339, 0.074176, -0.762677, -0.655850, 0.117499, -0.061440, 0.938407, 0.517412, 0.515201, -0.037050, 0.740538, -0.407951, 1.691379, 0.448729, -0.782644, 0.572763, 0.769657, 0.366590, -0.696918, -1.492572, 0.229683, -1.204435, 1.454218, -1.192827, -0.569249, -0.916316, -0.669248, -0.815297, -0.019228, -1.531656, 2.086796, 0.339776, -0.613002, 0.572677, -0.983079, 0.020470, -0.391727, 1.152144, 0.054703, 0.468952, -1.487208, 1.703593, 0.305286, 0.042353, -0.689477, 0.873410, 1.570843, 1.110810, -0.593906, -0.195274, -1.067243, 0.172106, 0.733817, -2.102313, -0.079578, 1.066478, -0.821053, 1.057245, 0.818666, 1.642676, -2.191774, -0.833900, -0.898218, -1.541927, -0.334863, 0.228567, -0.980666, 1.319623, -0.563599, 2.215149, -0.573370, -0.655100, 1.925586, 0.775449, 1.987317, -0.024107, -1.227130, 1.840700, 0.544468, 0.617473, 0.286865, 1.233046, -0.966232, -0.130745, -0.846207, -1.056782, 0.206412, -0.932630, 1.649964, 1.187164, 2.363065, 1.057166, -0.620550, 0.105152, 1.330918, 0.918073, 1.238703, 0.010992, -0.131588, 0.625348, -0.198732, -0.248347, 0.784598, -1.688911, 0.969951, -2.313670, 1.049869, 0.382715, -1.080427, 1.389851, 0.398404, -0.200757, -0.362412, 0.337427}, + { -0.404508, 0.163124, 1.154818, -1.483255, -0.581471, -1.058566, 0.641383, 2.127362, 0.336213, -0.192312, -0.054478, -0.005021, 1.330475, 2.266097, -1.180018, 0.294525, 1.199543, -0.356847, -0.556084, 0.487455, 0.820694, -0.159970, 0.448013, 0.563963, 2.589067, -0.834528, 0.657293, -0.707490, -1.366151, -0.018298, 0.025944, -0.021855, -1.867044, 2.082346, 0.618442, 2.509357, 0.436933, 0.903809, -0.386555, 0.399367, 0.377216, -1.353829, -1.603042, -0.213905, 0.838949, -0.134736, -0.403021, -0.710935, 1.393025, 0.522015, -1.981140, -0.415621, 0.323514, 0.009830, -2.003768, -0.308470, -1.964263, 0.800841, -0.621398, 0.328218, 1.063567, 1.439225, 0.499219, -2.981121, -1.731069, 0.269913, -0.529232, 1.720458, 1.250965, -0.035330, 1.279135, -0.619881, -0.680561, 0.470557, -0.480693, 0.350805, 0.950771, -0.575727, -0.827712, -1.094357, -0.711935, 0.619266, -0.275774, 0.365097, -1.269562, 0.545090, -0.849842, 0.652075, 2.324220, -1.214307, 1.209765, -1.472352, -0.312568, 0.462341, 0.068491, -0.466602, 1.075880, -0.227353, -0.268573, -1.017259, -0.836458, -0.056589, 0.608142, 0.232381, -1.741762, 1.519571, 2.653699, -0.242469, -2.101115, -2.916691, -1.049268, -0.438316, -0.700674, -0.266520, -0.307564, 0.399335, 0.720180, 1.592638, 0.609519, 0.456935, 1.233109, -1.625068, 0.425408, 0.407947, 0.701066, -2.322550, 0.006080, -1.076351, -0.273250, 0.297834, -2.361733, 0.030759, 0.042067, 0.915703, -0.594477, 0.498847, 0.548511, -0.096414, 0.124883, -0.830702, -0.439662, 1.213415, 3.037199, -0.063262, 0.043592, 0.904694, -0.389064, -1.473366, -0.679124, -0.011925, -1.603457, -0.627626, -0.752587, 0.508564, 0.978770, -1.251897, -0.333609, -0.611983, 3.116110, 1.078208, 0.275638, -0.322169, -1.409537, -0.919222, -1.451844, -0.131750, -0.821090, 0.350240, 1.071780, -0.107788, -1.036753, 1.961365, 1.591369, -0.805272, 0.190483, -0.650893, 1.430172, -0.046196, 0.441044, -0.857903, -0.806892, 2.119520, -0.295425, -0.141970, -1.489122, -0.355302, -0.958746, -0.098122, -0.749379, 0.731833, -0.396343, 0.288156, -0.073393, -1.549802, 0.461063, 2.178891, 1.713950, -0.116506, -0.453699, -0.034935, 0.414432, 1.500044, -0.179254, 1.677950, 0.798656, 1.965646, 1.368249, -0.034445, -1.090726, 0.230001, -0.303500, 0.073566, 0.112981, 1.334112, 0.505705, 0.446252, 1.438356, -1.289050, -1.059885, -1.017692, -0.025106, -0.580944, -1.570426, 0.545800, 0.054686, -0.272696, 2.062170, 1.243366, -0.857117, -1.023764, -2.610025, 0.202101, -1.318459, 1.326934, -0.978742, -0.378719, -2.040448, 0.087848, 3.576277, 2.020581, 0.759390, -1.055501, 0.413844, -0.164284, -0.387150, -1.048777, -0.286634, -2.008885, -0.663360, -0.085511, 0.384762, 0.945797, 1.021999, 0.192535, 0.452200, 1.535439, 0.231566, 0.041257, -1.212188, -0.704954, -0.547902, -0.690643, 0.106904, 1.415590, 0.078008, 2.307820, 0.401648, 2.167300, 0.088725, -1.372815, 0.047913, -0.183352, -0.246744, 0.443417, 0.650775, 1.903080, 0.990435, 0.779096, 0.088359, 1.578622, 0.564592, 0.659807, -1.636551, -0.159692, -0.094542, 0.805441, -0.450696, 0.611813, -0.340853, -0.340410, 0.741255, 0.076934, -0.793866, -0.093842, 1.340727, 1.438741, 1.637718, -0.433302, -0.249263, -0.492451, -0.258835, 0.374922, 0.072988, 0.977547, 0.651825, -0.705120, 0.399549, 0.425899, -1.546367, -1.572720, 0.549318, -0.002516, 1.683770, -0.981328, -0.947248, -2.099293, 1.055548, 1.459812, -0.004070, 0.373645, -1.218558, 1.644753, -1.314250, -0.072876, -0.155644, -0.238832, 1.118094, 0.615153, -0.223096, -2.320651, 1.032424, 0.407406, 1.095528, -1.669550, 0.250838, 0.852352, -0.415173, -0.428119, 0.440153, -2.988512, -0.095677, -0.795611, -0.297327, -0.615770, -0.826810, 0.264368, 0.310276, 0.330848, -0.441686, -0.379671, 0.826628, -0.603369, 2.074424, -0.897566, 0.430340, -0.601009, 2.024559, -0.448747, 1.117226, -0.766603, -0.188637, -0.940681, 0.188648, -0.141931, -0.333417, -0.213132, 0.204591, 1.754115, -2.303310, -0.331649, -1.645716, 0.009210, 0.256004, 2.828982, -1.129759, -1.959877, 1.521838, 0.229127, -1.887629, 1.440989, 0.239477, -0.852426, -0.598001, -0.356794, -0.393320, 0.195500, 0.662527, -1.955825, -0.293691, -0.814347, 0.131472, -1.358820, 0.782628, 0.576499, 0.056940, -0.729609, -0.497355, -0.024098, 0.088424, -0.015372, -0.175210, -1.751869, 1.800967, -0.203160, 0.464615, -0.620864, 0.769326, 0.298648, 0.335302, 0.325511, -0.680748, 2.471924, -0.078364, 0.204843, 1.351879, -0.022770, -0.700837, -0.020701, -2.780741, 0.548361, -1.162960, -0.704594, 1.270662, 0.586579, -0.288171, 0.064890, 1.599613, -1.727048, 0.997418, 0.511380, -0.296972, 0.001003, -1.354265, -0.720696, -0.346454, -1.473630, -0.358891, -0.571188, 1.729364, 1.010991, -0.128087, -1.202609, 1.860534, -0.304476, 0.926315, 0.828502, -0.540468, 0.760189, 1.051411, -0.562408, 1.522161, 0.735873, -0.677988, 0.418064, -1.079892, 1.237851, -0.358978, 2.535745, 1.601217, 0.374316, 0.447270, -0.501985, -0.164819, -0.835315, -0.218226, -0.178799, 0.726933, -0.265217, 1.085364, -0.211372, 0.122358, 0.511503, -0.519361, -1.180297, 0.193765, -0.320701, 0.237230, 0.219712, -0.815825, 0.653885, 0.090557, 0.277263, -0.058149, -1.041480, -0.889895, -0.690105, 0.768050, -0.333332, 0.322802, 0.154716, 0.457100, -0.911952, -0.965159, -0.346959, 1.333275, -0.502664, -1.223984, -0.082424, -0.164002, 0.490367, 1.336649, -0.862930, -0.964988, -0.994274, -0.622409, 0.458808, -0.704009, 0.021413, 0.198991, -0.852646, -1.097722, 0.907027, 0.138650, 1.046807, -1.213532, -0.935889, -0.036656, 0.594180, 1.491764, 0.321612, -0.240180, -1.862704, -1.449472, 1.097837, 1.244961, 0.270457, 0.176432, 0.584133, 0.524333, 0.830303, -0.441502, -0.551576, -0.078591, 0.285845, 0.885505, 1.308601, 0.123892, 2.324634, 0.767678, 0.668727, -0.174630, -1.100639, -0.274172, -1.027468, 0.721521, -0.454303, 1.721158, 0.351097, -0.297013, 0.120131, -0.870957, 0.615013, 0.203040, 1.539085, 0.206831, 1.905005, -0.798854, 1.674731, -1.020858, -0.591924, 0.723117, 0.132846, 0.635807, 0.191219, 1.239572, 0.207665, -0.634077, -0.208226, -0.757228, 0.066721, -0.489152, -1.189550, 1.196971, 1.224924, -2.146399, 2.093163, -1.263299, -0.019905, -0.751321, 1.119494, 0.976934, 0.765776, -1.182855, -0.038781, 0.546729, -0.590921, -2.810264, 0.259395, -0.032342, -0.037544, 2.333862, 0.660644, -0.055413, -0.419718, -2.054295, 0.413191, -0.839143, 0.509301, -0.813663, -0.544804, 0.248122, -0.104904, -0.472376, 0.982784, 1.444134, -0.197749, -0.110396, 1.024985, 1.062945, 1.153523, 0.599717, -0.625811, 0.499932, -1.739725, -1.246165, 1.393426, -1.170991, 1.420221, 0.146671, 0.691703, 1.770544, 0.410129, -0.277347, -0.496889, -0.282262, 0.161144, -0.003109, 0.391682, -1.913301, 1.702589, -0.905387, -0.948773, -1.219909, -0.274652, 2.029768, 0.054819, 1.631171, -0.312363, 0.316096, -1.737762, -1.139022, 0.363470, 0.070296, -0.205450, -0.141973, 0.790878, -1.675400, 1.016219, 0.862000, -0.704032, 1.555890, 0.653741, 0.199650, -0.866674, 1.089764, -1.806747, 1.496937, -0.910328, -0.384723, 1.436167, 0.501983, -0.918668, 0.122775, -0.393511, 0.796743, 0.298759, 0.541038, -0.602160, -0.773421, -0.228901, -0.656107, 0.074203, -0.770302, 0.538581, -0.303661, -0.666941, 0.939056, -0.193099, -0.806129, 0.171128, 0.135910, -0.889179, -1.507249, 1.433962, 0.086450, -1.557401, 0.693330, 0.511984, 0.709194, 1.243803, -0.010788, -2.162631, -0.462520, -0.690970, 0.149419, -1.870817, -0.593309, 0.051979, -1.094997, 1.062970, 1.069576, -0.552826, -0.472625, -0.110996, -0.485272, -0.035808, -0.470757, -0.905508, -0.404049, -0.250860, -0.809322, -0.920666, -0.858982, -1.024539, 0.304887, -0.829885, -1.763292, 1.248852, 0.310953, -1.086531, -0.408220, 0.533591, 0.574858, -0.036193, 1.158090, 0.501626, -1.657695, 0.628435, -1.812670, 0.586179, 2.386621, -0.196647, 0.058910, 1.350289, 0.913917, -0.228972, 1.635535, -0.578103, -0.636163, 0.628620, 0.365614, -0.450990, 1.035743, 0.325313, -1.552722, -0.507806, 0.673365, 0.497030, -2.422032, 0.206748, 0.077870, -0.695722, -0.171518, -0.482666, -1.231332, 0.169837, -0.197728, -0.250104, -0.501338, -1.109844, 1.353972, 1.741982, -1.546448, -1.193241, 0.863484, -0.764545, 0.299858, 0.903792, 0.168954, 0.434603, -0.256725, 0.204433, 0.255486, -0.569416, 1.111591, -0.589532, 0.772095, -0.277611, -1.584597, -0.039704, -0.311766, -0.806648, 0.748299, -0.186911, -0.095017, -0.857828, -1.855176, -0.749418, -0.537120, 0.906840, 0.728139, 0.431566, -2.200808, 0.298613, 0.404024, -0.554505, 0.039144, -0.190084, 0.307274, -0.635394, -0.330139, 0.047682, 1.484271, 0.435275, -1.464609, -0.641558, -2.197641, 1.172760, -1.126817, -0.721477, 0.891905, 0.384832, -0.257181, -0.534207, 0.718402, -1.737280, -0.562105, -0.083797, -0.187823, -0.144477, -0.310975, 1.526544, -0.371896, -0.599711, -2.007981, -0.039289, 2.547472, -0.402012, 0.702228, -0.135993, 0.854555, 1.608021, 0.646722, 1.691228, 0.784989, -0.361904, 0.789856, -0.738853, 1.317488, 1.484456, -1.020583, 0.754733, 0.929543, 1.457763, 0.531043, 0.456323, 1.113777, -1.733092, -0.039858, 0.323808, 0.310869, -1.110731, 0.948708, -0.659561, -0.221477, -1.910303, -1.348179, -0.035803, -0.739822, -0.867290, 0.135653, -0.133181, -1.231161, 0.161164, 0.004613, -0.944633, -0.380505, -0.636586, -1.335801, -0.523350, 1.081193, -1.612400, -0.957104, -0.397939, 1.674672, 1.736173, 0.800061, 1.575780, -0.054048, 0.503796, -0.927308, -0.032023, -0.006490, 0.735759, 0.988797, 0.832221, -0.451748, -0.072399, -0.731225, -1.107053, -1.348030, -0.849014, -0.044432, 1.592745, -0.321245, 0.418733, -0.860437, -0.041006, -0.426162, -1.199735, -0.685249, -0.692098, 0.665532, -0.446871, -0.803686, -0.336097, 1.185549, 1.640646, 0.920483, 0.362856, -0.747166, -0.878605, 0.065655, 0.891514, -0.676280, -0.238851, 0.570924, 0.982844, -0.897994, 0.378810, 0.617552, 0.624882, -1.365948, 0.237839, 1.612579, -0.722570, 1.295749, 1.883882, -1.010599, 0.450121, -0.103328, 1.325813, 0.850800, 0.361835, -0.843106, -0.252553, -0.089484, -0.713631, -0.771185, 1.010320, -1.066910, 1.249023, -0.356105, 0.365615, -0.359782, 1.356814, 0.144046, -1.598168, 0.341354, 1.400134, 1.131085, -0.431279, -0.231153, 1.323714, 1.464506, 0.416368, 0.844082, -1.398146, -0.569986, -0.346376, -0.088051, -0.299739, 0.099859, -0.718104, -0.317217, -0.083631, -0.615749, 0.749467, -1.649572, -1.043353, 3.296429, 1.228093, 0.424277, 0.460783, 1.009937, 1.066722, 0.897799, -2.256654, -0.281492, -1.606938, 0.099448, -0.792943, 0.652756, 0.257271, 0.773974, 1.227638, 1.856210, -0.526037, -0.441477, 1.461683, -0.321216, 0.857739, -0.232420, 0.374446, -1.558555, 0.759070, -1.210058, 0.101625, -1.188401, 1.634005, -1.912245, -1.268503, 1.326387, 1.682222, -0.700577, -1.293992, 0.130906, 0.747009, 0.336569, 1.525643, 0.293493, -1.085115, 0.307923, 1.760993, 1.602075, 0.679392, -0.688872, -0.335261, 1.068089, 1.150251, 0.001606, 0.807504, -1.238450, 0.438407, -0.530102, 1.539490, 1.248893, 0.550168, -0.496175, -0.343462, 0.807699, 0.749460, 0.604133, 0.523578, 0.939856, -2.223059, 0.348713, -1.583133, 0.590603, -2.207892, 0.205859, 2.845743, -0.601797, 0.515227, 1.462294, -1.278958, -0.450504, -0.729369, 0.257196, 0.906311, 0.925095, 0.235388, -1.027290, 0.770556, 0.008148, -0.166225, 0.530109, -0.481677, -1.027662, 2.646672, -0.403595, -0.112165, 2.280207, 0.618663, 1.492420, 0.249828, -0.994669, 0.134901, -0.098705, 0.485339, 1.411144, -1.451605, -0.737407, 0.016873, -0.370914, 2.376381, 0.203412, 1.183406, -1.245265, 0.853063, -0.142579, -0.341641, -0.404791, -1.237379, 1.192230, 0.468696, 0.177825, 1.423853, -1.353276, -0.364712, -0.654977, 0.375936, 1.102526, -0.905154, -0.064193, 0.519175, -0.132142, -1.612500, -0.536691, 0.705911, 0.049593, -1.340713, -0.306368, -0.415248, -0.386745, -0.036232, 1.288242, 0.364874, -1.954355, 0.026297, -1.167822, 2.342176, 0.625771, -0.709525, 0.664916, 1.534291, 0.558042, -1.796731, 0.312850, -0.524267, -0.941880, 1.338031, -0.413712, 1.677677, 1.012361, 0.288056, 1.020401, 0.579319, 0.644758, -1.409274, -1.177052, -0.842983, 0.390553, 0.036650, -1.080086, 0.455347, 0.421183, 1.202336, -1.717638, 0.295792, -0.630511, 0.609045, 1.459697, -0.402052, 0.762390, 0.490658, 0.047406, -0.413763, 0.959116, 0.485756, -0.155767, -0.513600, 1.262898, 0.236811, 0.167723, -0.950298, 1.003948, -0.136740, 2.595243, -0.232270, 0.230690, 2.147994, -0.165027, 0.077102, -0.008163, 0.606917, 0.506880, 1.434801, -0.087849, -1.097588, 0.413168, -0.008091, -1.127354, 0.505414, 0.145078, 0.544565, 0.595050, -0.038984, 0.164615, 0.061028, 1.689529, -1.358708, 0.537192, 0.552490, 1.110669, 0.513174, -1.633927, -1.320397, 0.750593, -0.419496, 0.234976, 0.599514, -0.196818, 0.473245, 0.427197, 0.636675, 0.437931, -0.847592, 0.635232, 0.608306, 0.544805, -2.151765, 0.660979, 1.358301, 0.220936, 0.979491, 0.550677, 0.924508, -0.544621, -0.088244, -1.228881, -1.166786, 0.586942, -1.213887, -0.291581, 0.656091, 0.871011, -1.888888, 0.321120, -0.083104, 1.313894, -0.480184, -0.019725, 1.083493, 0.136143, -0.116530, 0.337754, -0.596832, -0.182936, -0.400993, 0.137596, 0.186779, -0.290284, 0.855913, -0.568564, -0.322710, -0.127970, 1.078320, -0.381064, 0.195457, -0.479098, -0.257270, 2.063518, 1.182179, 0.172272, 0.200944, -0.997679, -1.705527, -0.538999, -0.293451, 1.967613, 0.585712, -1.039815, -0.696163, -1.991486, -1.750369, -0.112912, 0.421217, 0.164403, -0.929998, 1.275068, 1.256736, 0.347074, 1.593689, -1.577506, -0.338943, 0.528762, 1.139492, 0.080278, -0.747196, -0.644865, -1.386455, 1.417607, -1.017719, -0.825327, 0.621719, -0.199350, -0.533169, -0.229525, -0.988087, 0.185558, 0.518862, -0.466026, 1.035567, 0.762580, 2.280176, 0.018097, -0.194079, 0.223281, -0.753285, -0.479207, 1.156660, 0.615799, -0.467497, -0.507059, -0.773106, -0.436162, 1.782272, 0.089257, 0.093301, 0.493508, 0.444717, 0.062130, -0.624458, 0.173025, -1.055949, -0.311581, 0.649770, -0.203692, -1.662702, 1.382182, -2.119356, 1.264618, 0.941554, 1.589581, 0.008521, 0.648849, 1.201220, 0.486516, -0.412192, 0.259574, 0.562220, 0.587681, 0.473480, 2.242176, 0.168571, 0.448692, -0.247265, 0.043981, 0.193791, -0.674711, 0.787991, 0.304379, 0.853450, -0.306855, 0.453613, -1.064264, 0.678720, 0.345252, 1.264215, 0.778402, -0.446007, 0.174164, -1.892984, 0.338363, -0.141608, 1.193465, -0.306873, 0.063093, -0.976017, 0.909423, 2.153821, 1.216291, -0.217814, 0.792182, -1.364542, -0.311781, -0.609859, -0.004094, 0.864263, 0.503064, -0.357742, 0.250735, -0.465633, 0.271054, 1.093027, 0.752472, -0.401189, 0.702297, -0.833594, 0.376878, -1.206031, 0.619242, 0.789674, 0.280084, 1.699700, 0.335773, 0.522003, -1.388623, 0.364065, 0.246447, -1.377469, 1.622360, 0.853139, 1.281503, -0.588270, -1.924791, -0.081630, 0.664977, -2.220873, -0.507614, 1.455386, -0.023258, -2.616554, -0.783240, 1.275235, 0.210615, 0.668982, -0.341963, -0.133156, -0.188165, -0.761083, -1.865884, 0.264002, 2.011538, -0.502541, 0.794737, 0.040583, 0.717701, 2.750488, -2.099854, -0.236572, 0.434131, 0.280155, -0.096384, -0.814380, 0.689470, -0.097851, -0.536864, -1.792851, 0.362632, -0.605441, 0.928975, -0.059241, 1.250592, 0.231455, 1.537788, -1.756790, -0.805219, 0.599354, -0.601618, -0.071614, -0.690667, -0.585035, -0.993308, -0.038608, 1.260527, -1.694519, 0.898607, 0.326081, 1.111762, 0.208815, 0.295496, -1.093995, 0.330929, -0.345460, -0.547397, -1.199095, 0.447698, -0.536069, -0.184459, 0.095249, 1.918081, 0.902853, 0.147231, 0.283685, -0.478925, -1.013443, -0.524835, -2.012941, 0.557792, -0.440551, 0.796195, -0.236169, -0.231305, -0.346122, 0.031089, 0.175063, -1.407484, 1.476342, -1.454419, -0.094503, -0.968439, 0.453298, -0.248137, -0.085221, 0.684015, -1.239114, -0.220780, -0.297968, 0.547638, 0.160482, 0.605147, -0.411580, 0.238827, 1.420808, 0.176964, 0.111434, -3.013918, -0.014649, -0.219162, 0.555873, -0.653489, -0.174592, -1.757824, 1.057050, -0.500878, 0.088884, 0.408193, 0.584779, -0.424927, 1.067335, 0.716683, 1.136618, 1.250282, 0.943719, -0.444078, 0.353127, 0.474285, 0.697131, 0.301001, 0.070273, 0.295633, -0.118023, 2.213416, 0.673643, -1.809079, -1.053497, 0.940908, -1.111686, -0.485453, -0.442074, 0.616345, 0.773987, 0.401916, -1.426265, -0.828857, -1.160838, -0.498402, -0.502588, -0.390914, 0.408495, 1.042826, 0.259912, 0.397048, 0.366097, -1.187452, -1.266320, -1.409554, -0.198630, 0.336969, 0.236132, 0.688800, 1.160730, -0.794884, -1.127018, -1.898856, 0.430218, -0.580454, -1.182273, -0.008485, -0.664873, -0.154287, -1.855018, -0.315561, 0.594618, 0.156397, -0.990932, -0.285178, 0.030618, -0.597638, 0.309227, -0.124282, -0.483613, -1.000528, -1.254569, 0.296265, -0.734271, -0.258935, 0.314812, -0.323550, 0.203660, 1.067716, 0.454105, -1.533162, -0.868622, 0.457334, 0.422939, -0.905686, -1.128363, -0.308602, 0.356057, 0.037947, 0.813185, 0.139759, 1.032398, 0.511743, -0.701915, 0.811349, 2.197262, 0.107360, -3.144045, -0.438435, 0.632529, 0.634174, -0.934210, -1.015326, 0.660052, -0.020428, 3.063007, 0.151523, 1.664092, -1.170523, -0.051964, -0.418597, 0.286760, -0.120691, 0.610679, 0.488721, 0.140834, -2.026168, -0.683205, -0.952227, 1.095540, -1.272390, 0.165779, 0.143650, -0.177153, 0.776105, 1.718346, -0.622182, -1.368826, -0.226495, -0.375402, -0.600122, 0.551821, 0.256729, -0.834246, -0.235475, -0.430114, -0.141997, 0.246114, -1.319775, 1.234124, -0.055051, 0.931477, -0.815075, -0.485913, 0.599724, -1.355686, 1.889035, 0.371242, -0.213945, 0.644525, -0.854372, 0.033596, 1.431899, 0.827644, -0.074507, -0.853430, -0.039568, -0.201701, 0.274881, 0.774734, 0.604446, -0.388604, -0.304595, 0.832142, -0.047864, -0.590257, -1.596392, 0.095092, -0.499265, -1.437366, 1.102387, 0.943053, 0.921375, -0.298352, 0.310080, -0.855457, 0.457050, 0.627150, 0.621598, 1.062618, 0.172132, -1.004350, 0.350967, 0.438434, 0.506927, 0.568052, 0.035121, 0.126039, -0.869337, 1.251603, 0.389111, 0.413011, 2.273998, -0.173872, -1.347881, -1.397752, 1.070369, -1.369381, -0.933375, 0.130784, -0.256955, -0.492628, -0.457413, -1.313627, -0.916459, 0.379457, 2.024149, -0.377968, -0.511258, 0.380677, -1.490378, -0.216474, 0.453213, -1.654202, 0.500875, 0.313696, -0.218727, 1.294257, -1.052777, -1.162766, -0.329474, 0.443310, 0.926984, 0.734196, -0.313833, -0.536964, -0.850161, -0.073117, 0.269831, 1.137813, -0.896184, 1.569266, 2.288167, 0.480084, -1.403326, -0.723392, 1.285950, -0.978712, -0.682720, 0.349229, 0.307643, -0.622686, -0.635878, 0.907330, -0.833647, 0.929480, -1.659156, 0.670081, 0.099305, 0.605339, -1.338404, 1.164277, 0.085141, -0.897864, -0.007901, -0.348718, -1.552203, -1.411823, 0.629113, 2.019856, -1.655093, 1.015239, 1.213711, -0.646957, -1.280417, 0.731609, 1.273109, 2.982097, -0.501612, 0.149174, -1.361744, 1.007280, 0.041594, 0.623354, 1.959705, -0.365849, 0.255888, 1.180068, 1.222010, -1.247393, -0.384186, -0.799678, 1.312484, 0.885424, -0.099390, -0.296407, 0.093779, 1.155799, 1.224169, -0.125974, -0.447139, 0.067962, -0.671463, -1.827422, 0.534484, -1.683346, -0.871176, -0.216978, 0.735714, -0.607474, -0.562491, 0.372060, -0.546640, -1.482228, -2.381752, -1.157801, 0.580958, 1.862015, -0.989200, 0.699195, -0.344938, 1.063473, 1.035414, 0.102474, 1.946922, -0.030485, 1.672778, 0.870936, -1.104537, 0.716366, 0.331200, 2.079284, 0.883363, 0.700259, 0.428294, 0.943707, 0.612809, -0.305937, 1.784831, 0.324182, -1.264796, -0.039312, 1.297713, -0.308882, -0.004073, 0.605665, 2.284854, -0.094529, 1.471711, -0.491383, -0.435127, -1.271344, -0.432047, -0.323831, -1.183147, 1.045743, 1.255991, 1.267422, -0.176005, -0.067681, 0.310914, 0.552236, 0.296777, 0.604606, -0.698440, 1.316776, 0.583977, -1.606732, 2.056622, -1.177182, -0.698653, 0.595339, 0.670291, 0.230968, -0.494704, 0.991033, -0.953058, 0.346411, 0.155078, 1.240753, 1.177978, -1.357898, 0.845690, -0.055203, 0.308006, 1.287266, -0.987258, 0.491044, 0.509639, -0.312147, -0.986800, -1.413673, 1.572711, -0.992444, 0.027936, -0.792579, 1.021064, 0.160936, 0.215930, -0.326364, 1.538146, 0.200636, 0.545022, -0.392122, -0.496887, -0.371369, -0.779789, 2.514299, 0.983351, 0.986715, 0.884257, -2.172733, 0.915628, -0.279699, 0.425701, 0.795868, -0.093827, 0.293086, 0.053747, 0.249649, 0.087901, 0.074831, -0.358082, -0.914261, 1.733716, 0.332806, -0.920503, -0.509985, -0.703542, -0.448257, 1.115618, 0.179448, -2.387473, 0.473730, -1.543624, -0.884990, -1.667883, 0.261726, 2.138487, -0.140142, -0.702002, -0.323754, -0.843009, -0.245430, 0.197724, 1.492261, -0.555760, 0.526394, 0.197187, -0.864529, -0.331843, -0.853948, -0.832956, 1.181706, -0.981755, -1.714269, -0.780790, -0.269935, 0.916357, 0.186764, -0.555839, -0.531080, 1.581545, 0.712722, 0.597727, -0.524714, 0.309824, -0.165208, 0.995425, -0.546688, 1.138030, 0.195362, -0.870045, 0.982253, 0.023775, -1.197108, -1.472794, 1.135001, 0.051307, 0.440407, -0.611230, 0.467652, 0.701660, 1.321133, -2.055504, 1.041947, 1.050375, -0.203508, 0.730350, 0.354337, 0.976108, 0.718069, 0.254663, 1.092473, -0.445240, 0.808010, -1.110190, -0.498094, -0.635809, -0.068077, -0.134805, 1.675222, 0.893168, -1.097393, -0.925668, 0.255953, 1.715100, -0.436942, -1.633330, -0.802217, 0.444239, -0.330183, 0.741084, -2.005059, 0.159326, 1.075375, -0.288271, 1.121832, 1.096496, 0.357911, 0.596352, 1.291192, -1.297026, 2.837612, -0.408237, 0.569502, -0.648334, 0.088402, -0.130878, -0.685938, 0.736593, 0.503078, 1.236803, 0.682536, 0.077162, 0.201174, 0.622439, 1.359375, 0.752603, -0.277494, -0.089647, -1.602266, 0.172767, -0.591492, -0.650329, -1.543439, -0.550077, -1.475950, 0.920512, -2.752381, 0.176273, -1.041797, -2.095566, 0.787574, 1.202626, -1.095731, -0.319220, 0.190852, 1.358204, 0.421123, 1.090780, -2.017048, 0.526140, 0.004855, 0.088146, -0.957855, 0.304491, -0.922074, 1.251878, 0.476879, -0.747217, 1.117807, 0.196092, -1.440298, -1.399828, -0.326509, 1.539776, 0.754291, -0.435861, 0.433321, 1.181005, 0.363529, 1.908593, -0.261205, -1.803188, 0.690525, 0.013410, -0.662700, 0.448424, 0.599291, -1.829095, 0.232869, -0.349461, -1.469929, -0.098700, 1.435506, 1.647498, 1.027361, -0.721582, -0.565761, 0.709328, 0.000125, -1.099155, -1.107491, 0.454791, -2.261746, 1.149467, -0.476590, -0.702307, -1.006639, -0.521253, 0.788968, -0.155312, -0.381375, -1.101716, -0.141268, -0.660108, -0.679916, -1.320218, 1.479250, 1.507832, 0.968821, 0.285130, -0.353535, 1.703116, -0.427587, 0.563161, -1.350061, -1.148522, -1.651166, -1.109747, 1.211116, 1.148960, -1.704156, -0.582008, 0.238850, -0.310886, -0.169408, 0.055247, 0.719357, -0.058472, -1.575884, 0.465986, -0.965719, -0.838065, 0.361164, 0.522814, 0.076076, 0.954925, -1.603143, 0.700436, -1.245348, -0.079459, 0.561385, -1.219365, 1.994697, 0.758499, 0.240087, 0.064408, -1.727290, -0.751493, 0.072077, -0.708423, -1.014759, 0.067955, -0.047954, 0.790485, 0.420138, -0.743439, -0.529251, -1.221190, -0.892678, -0.065633, -0.798286, 1.419744, -0.529502, -0.062380, -1.028012, 2.046545, -0.336631, 0.100954, 0.319248, -1.584275, -1.824061, 1.673385, -0.772400, 1.028574, 0.327589, -0.549963, -0.640309, -0.530502, -1.560275, 0.886680, 0.006966, 2.382656, 2.359744, 0.564725, -1.166945, 0.394581, 0.441447, 0.551799, -1.454235, 0.335578, 0.588766, -1.163539, -1.159530, -0.652836, -0.633751, 0.128373, 1.437112, 1.501418, 0.527015, 0.232558, 1.456230, -0.503982, -1.043733, 1.738922, 0.518337, 0.664774, 0.966451, -1.251112, -0.380935, 0.362857, -1.606999, -1.476807, 0.367791, -1.101447, -0.151663, 0.007021, -0.830746, -0.252380, -0.290619, 0.004900, 1.306902, -1.156433, -0.505639, 0.931232, -0.443121, 0.094784, -0.706438, -0.910635, -1.259470, 0.029562, 2.076075, -1.921974, -0.068235, 0.001861, 0.996305, 0.340029, 0.440569, -0.240653, 1.008124, -0.155498, -0.429653, -0.430542, -0.668176, -0.482622, 0.159948, -0.768951, -1.483923, -0.485705, -1.473952, 0.127729, -0.401044, -0.955716, -0.827374, -1.175198, 0.851187, 0.737552, 0.558656, 0.344002, 0.572444, 0.910407, 1.489226, -0.659754, -0.503414, -0.565406, 2.420453, 1.024422, 0.734636, 1.819494, -1.382054, -1.016789, 0.100615, 1.888994, -0.482837, -0.145605, 0.592694, 0.481272, 1.359893, 1.665366, 1.386322, -0.787736, 1.263130, 0.461985, 0.234356, 1.404367, -1.192254, 0.512577, 1.704309, -0.827800, -0.506396, 0.914222, -0.503646, -0.313012, -1.508489, -0.651324, -0.973052, 1.036229, 0.901202, 0.852467, 2.172481, -0.374160, -1.923445, 1.033895, 2.930909, 1.677596, -1.025203, -0.003616, -0.130114, 1.888597, -0.981159, 1.903740, 1.212058, 0.022061, -0.349958, -0.651606, -0.572516, 0.274358, 0.268005, -1.687611, -1.171629, 0.499717, 1.017316, 0.367696, 1.568323, 0.778355, -0.315373, -1.356690, 1.037716, 0.062099, 0.687052, 0.984748, 0.470240, -1.122137, 0.350402, -1.587572, -0.211998, 1.098278, 0.364058, 0.670238, -0.156440, 1.102625, 0.760424, 0.211939, -1.002941, 0.168052, -1.057274, 1.454049, -1.411544, -0.098932, -0.308145, 0.241473, 0.745247, -0.314956, 0.450311, 0.117805, 0.492505, 1.545526, -0.038071, 0.033780, 2.010406, 0.120157, 0.957409, -1.032133, 0.458434, 0.962205, -0.236621, -0.684141, -2.161510, -0.782801, 1.179275, -0.396880, -0.235410, 0.802283, 0.730784, 1.013500, 0.372364, 0.821909, 1.047508, 0.902454, -0.646596, -0.876804, 0.176571, 0.467616, 1.985710, 0.656512, -0.139839, -0.680056, -0.066643, -1.185840, -1.813197, -0.277215, 0.018833, 0.657233, -0.069929, -0.393180, 0.187068, 0.824906, 0.567316, 0.132388, -0.308200, -0.899512, -1.765707, -2.908447, 0.803933, -0.899792, 0.151271, -0.246429, 1.332421, -0.386421, -2.262383, -0.631701, 0.319570, -0.116320, -0.914068, -0.312951, -0.496925, -0.891916, -0.784169, 0.297470, -0.658369, 1.004445, 1.245341, 1.975976, -0.980490, 0.265684, -0.255210, -1.107656, 0.546400, 0.785175, -0.145784, 0.616748, 0.465158, 1.590526, 0.352594, -1.015762, 0.270768, 0.205208, 0.795052, 1.519890, -0.375387, 0.574211, -0.370970, 0.222691, -0.349349, 0.192322, -0.594630, -0.907619, -0.190014, -1.185655, 0.272753, 1.587674, 1.161592, 0.462038, 0.484842, -0.019056, -2.118700, 1.443076, 0.593569, 0.424985, 0.062940, -0.095318, -1.146824, -1.959402, 0.829239, 1.633918, -0.280228, -1.063364, 1.249821, -1.000996, -0.359783, -0.412490, 0.570566, -0.633122, -0.288672, -0.407366, 0.350827, -0.757071, -1.522758, -1.751824, -0.448034, 0.454998, -0.830849, 0.103922, -0.761929, -0.008269, 0.566453, 0.938852, -1.981556, -1.155640, -1.524010, 0.963338, -1.123288, 0.774067, -1.511966, 0.737242, -1.091010, 1.052326, -1.910565, -0.069092, 0.785770, -0.862919, 0.161439, 0.191427, -2.172789, -0.710060, 0.273590, -0.687805, -0.883376, 3.162315, -0.882357, 0.520708, 0.779158, -0.780040, 0.651513, 1.741372, 0.617430, -1.170265, -0.911421, -1.470328, -0.128188, -1.159915, 0.573693, -1.241283, 1.303776, -0.210447, -0.209450, -0.472948, -1.231820, -0.325695, 0.143855, 0.626983, -0.777071, 0.179327, 0.667350, 0.203690, -0.891150, 1.014351, -0.830957, -2.101807, -0.012138, 0.710210, 0.717035, -0.622401, -1.728435, 0.280232, 0.077969, 1.631599, -0.748923, -1.951986, -0.400807, -1.448743, 1.533525, -0.889200, 0.450216, 0.641524, 0.497361, -0.285736, 0.004426, -1.513625, 0.833978, -0.916147, 0.098262, -0.532298, -1.330080, -0.975145, 0.457690, 1.377541, 0.519594, 0.339239, 0.647109, -0.119263, -0.556650, 0.218947, 0.021733, -0.143415, -2.344608, -1.879485, -0.056608, 0.955428, 0.553497, 0.422710, 0.490186, 0.753981, 1.167394, 0.250707, 0.867650, 0.863333, 0.554288, -1.674255, 0.675413, -0.480305, 2.972471, -0.833941, -1.543609, 0.810846, -0.349685, -0.384512, -0.563449, 0.580341, -2.219890, -1.988385, 0.610690, 1.716722, 1.159096, -0.032151, -0.423654, -0.416435, 0.593664, 0.119367, 0.891505, -0.747347, -0.767704, 0.288041, -0.653648, 0.421060, -1.150721, 0.085754, -1.950429, 0.356548, -0.396448, 1.233036, 0.452971, -3.246009, 1.235285, -0.698394, 0.216465, -1.061694, 0.846054, 1.215517, 1.615848, -0.853116, -0.449410, -0.224634, 0.857915, -0.292091, -1.847311, 1.700395, -1.396772, -0.099243, 1.029881, 1.371751, -0.235334, 1.182792, -0.273085, 0.065096, -1.143261, 0.918131, 0.794846, 1.175060, 0.051927, 0.536081, 0.486799, -0.453196, -1.587476, -0.741171, 0.486967, 0.360644, -1.026515, 0.033601, -1.044481, -0.412918, -0.598754, -0.759864, -0.093545, 0.292356, 1.159179, 0.706248, 0.637053, 0.551897, -1.014312, -0.217860, 0.205756, -1.028986, -0.893177, -0.564251, -0.487110, -1.071049, 0.488441, -0.792787, 0.097260, 0.024613, 0.755771, -0.155682, 0.086548, -1.127772, 2.521429, -0.934870, 0.322835, 1.277360, -0.262616, -0.882835, -0.092712, 0.934894, -0.530604, -0.278054, -1.500881, -0.208462, -1.672725, -0.941590, 0.569523, 0.159525, -0.046336, 0.201087, -0.472248, 0.168054, 0.800862, 0.370948, -0.482440, 0.455688, 0.539341, -0.862171, -0.516521, 0.822494, -1.090393, -1.484401, 0.411054, -1.096611, -0.964070, 0.437406, -0.104813, 0.834125, 1.472704, -0.608250, -1.273579, 1.518826, 2.321128, 0.263796, -0.776486, 1.435783, -1.324236, 0.434425, 0.524862, 1.556289, -1.938194, -0.914763, -0.535110, -0.508190, -1.915703, -0.725912, -2.292933, 0.558342, 0.518904, 0.323175, 1.178150, 0.426547, -0.213415, 1.436912, 2.432859, 0.736886, 0.571655, 0.645860, 1.231013, 1.582064, -0.765513, 1.402441, -0.191858, -1.064373, -0.377191, 1.079476, 0.401809, -2.481400, -0.186557, 0.835196, -1.405536, 0.049807, 0.686579, -0.675896, -0.585518, 0.491837, -0.596569, -0.802917, -1.266745, 0.394863, -1.372541, -1.586751, 1.038270, 2.055848, 0.365939, 0.997490, 0.084050, -0.570786, 0.913017, -0.486857, 0.376424, -0.468679, 0.231063, -1.763772, -0.507522, -0.115440, -0.288785, 0.522118, 1.427845, 0.307951, -1.287141, 0.203074, 1.057344, 0.316632, -0.222739, 0.073249, 0.756280, -0.070279, -0.822806, 0.470546, -0.808535, -0.146559, 0.863172, 0.076059, -1.089635, -0.216319, 0.826497, 0.988639, -0.521205, -0.985828, 0.747315, -0.522233, -0.864016, -1.357048, -0.151733, 0.475297, 0.977428, -1.331935, 1.315165, -0.776000, -0.136812, 1.138204, 0.316542, -0.531433, 0.636499, -0.214966, -2.318053, 1.425497, 1.993480, -0.552785, 0.396205, 0.163127, 1.241685, -0.026614, 0.761883, 0.765679, -0.120293, -0.423937, -0.527392, 0.164604, -1.067609, 0.248180, 1.256958, 2.436015, -0.878712, 0.357371, -0.935548, 1.663144, -1.207206, 0.009869, -1.113580, -1.754721, -0.263996, 0.778409, 0.517802, 1.117160, -1.042248, -0.497135, 0.149409, 1.000652, -1.546691, -0.803195, 0.527898, -0.631157, 1.325081, -0.946442, -0.137733, -1.937147, 0.617108, 3.198472, 0.186704, -0.940352, -0.717166, -0.993984, 1.206617, -1.400762, 1.439830, -0.602108, -2.109967, -0.206252, 1.614274, -0.154729, -1.360389, 1.503991, 1.762359, 0.303531, -0.938569, 0.431105, 1.798255, 0.154913, 0.477865, -0.092355, 0.772611, -0.984700, 0.043640, 1.838004, -1.271862, 0.030863, -0.511314, -1.516170, 0.596530, -1.240831, 0.197891, -1.164738, -0.712793, -0.429485, 0.134250, -0.734635, 0.622906, -0.058721, -1.100663, 0.070589, -0.949798, -0.985846, -1.554170, -0.362901, 0.938372, -0.584915, 0.461763, -1.020154, 0.147155, 1.543824, 0.084560, -1.022256, 0.171802, 0.127091, 1.966016, 0.567871, -1.531694, -0.151075, -0.332457, 0.676251, 0.167103, -0.046942, -0.580992, 0.644613, 0.252655, -0.011560, -0.568257, -2.229907, 0.822496, 0.874718, -0.577739, 2.658702, -1.602708, 1.255744, 0.887679, -0.390492, 1.933449, -0.110791, -0.801445, 0.110379, -0.501591, -0.606547, -1.247899, -0.805969, 1.536897, -0.911686, -1.685953, 1.916739, 0.018037, -0.506987, 1.048849, -0.542152, 0.021590, 0.453320, 0.137357, 1.007987, -0.994972, 0.124273, -0.370572, 0.339897, 0.418449, -0.540360, 1.110835, -0.184036, 3.009731, 0.099027, -0.160311, 0.287887, -2.697294, -0.386904, -0.292122, -0.375448, 0.003555, 1.566751, -1.586660, 0.525199, 0.782661, -1.211303, -1.578896, 1.212422, 1.848550, -0.053970, 1.108913, 1.378591, -0.408931, -0.928571, 3.326382, 1.086381, -1.121282, 1.336658, 0.945066, -1.078083, -0.577008, -1.033338, 0.134627, -0.129577, 0.790852, -0.664828, -0.789038, -0.789827, 1.154601, 0.460997, -1.739856, -0.914739, -0.904195, -0.724823, -0.474839, 0.102348, -0.202742, -0.495732, -0.599532, -1.092822, 0.335616, 0.302772, -0.218412, 0.719305, 0.772232, 0.006407, 1.654623, 0.298861, 1.688659, -1.701889, 1.016420, 0.111276, 0.506934, -0.951470, -1.685934, -0.670856, -0.324380, -0.704697, 0.121137, -1.329978, -0.870626, -0.234748, 0.596578, 0.958373, -0.037665, -0.029015, 0.003726, -0.024609, -2.114817, -0.577442, -0.907189, 1.015327, 1.954068, 1.123420, 1.059387, 0.836423, 1.836553, 1.086375, -0.254418, -0.454348, -1.492264, 0.477155, 1.025832, -1.230900, 0.368380, 1.676087, 0.310874, -0.185035, -0.827384}, + { 1.463083, -0.422593, 1.505463, -0.241554, -1.386515, 1.389130, -0.440076, 1.505432, 0.958819, 1.211946, -0.322813, -0.750994, -0.637774, 1.381052, 0.548066, -0.126064, 0.114053, -2.886009, 0.713456, 0.270889, -0.900964, 0.370406, 0.787951, 0.795966, 2.091825, -0.185672, 0.503710, -0.427298, 0.532776, -0.716808, -0.939205, 1.338161, 0.511368, -0.888458, -0.648905, -0.263224, -0.045437, -1.465338, -0.068484, -0.740758, 1.266954, 0.898594, -0.882261, 1.708467, 1.318245, 0.480261, -1.311324, 0.897457, -0.578851, -0.307869, 0.627017, 0.570234, -0.833623, 0.821154, 0.304229, 0.181848, 0.447362, -0.252302, -0.380384, -0.676538, -1.822435, -0.725242, 1.031374, 0.287982, 1.382733, 0.881184, -1.643013, -1.932599, -0.774044, 0.988825, 0.634622, 1.047978, -0.368218, -0.925052, -0.889416, -0.564578, -0.329989, 1.958383, -0.090536, 1.483940, 2.464303, 1.319231, 0.619170, 1.852278, 0.050779, 0.232170, 1.292224, 0.444277, 0.590187, 0.415396, 0.489940, 0.901527, 1.422432, -0.474115, 0.029114, -0.649494, -0.247114, 0.408029, -0.786675, -0.289705, -0.720719, -1.341870, -0.348053, 0.259016, 0.600257, 1.045258, -0.957419, 0.233949, 0.169548, 0.555418, -0.512321, 1.213751, 0.289889, 1.051731, -0.069820, 1.233996, 0.578051, -1.181372, 0.401675, -0.241136, -0.817625, -1.030486, -0.023479, -1.631710, -0.129691, 0.062273, 0.422137, -0.053258, 0.659542, 1.074164, -0.152984, -0.511226, 2.002754, -0.632309, -0.157530, -1.095414, -0.243000, 2.821108, -0.926469, -1.323251, -0.644178, -0.248875, 0.440220, 0.933944, 0.766253, -2.290784, 1.010032, 0.904588, -0.160255, -0.039046, -0.426556, -1.447706, 1.359287, 1.124437, -2.045364, -0.539780, 0.219376, -0.145057, -0.658676, 0.603524, -0.174178, 0.865665, -0.925947, -1.663678, 0.094041, 1.007999, 0.606139, 0.414910, -0.965923, -0.569209, 0.247629, 1.276643, 0.249693, 0.854798, -1.545011, -0.577943, -0.815316, 1.433076, -1.255241, 0.051703, 1.438666, 0.293192, -0.468189, -0.371958, 1.064451, -0.198575, 1.408245, -1.092882, -0.120101, -0.086920, -0.202087, 0.115138, -0.355783, 0.346410, -0.274547, -1.224545, -0.561715, 1.085639, 0.289547, 1.308980, -0.252044, -0.163348, -1.407008, 0.690892, -0.070317, 2.932163, -0.197223, 1.222656, -0.732611, -0.187020, -0.061772, 0.517078, -0.577477, 0.938540, 1.626285, -0.313158, -0.550513, 0.857280, -2.422043, -0.896528, 0.848986, 0.913259, 2.078492, -0.377817, 1.239886, 0.080463, -1.844394, 0.136906, 0.853955, -0.244380, 1.246057, 0.217663, -1.113694, -0.409519, 1.201081, 1.308154, -0.873689, -0.505884, -1.662602, -0.083540, -0.913006, 0.444960, 0.124471, 0.676250, 0.594916, -0.019401, -0.334825, 1.196333, 1.047678, -0.595635, -0.074054, 0.489929, 1.113536, -0.457328, 1.277865, -0.357117, -0.959804, 1.028927, 0.454104, 0.787294, -0.127688, -0.142912, -0.912191, 0.547964, 1.413468, -2.854172, 0.996276, -0.877576, 0.022095, 0.571744, -0.017863, -0.903361, -1.327670, 0.709660, -0.444917, -1.463766, 0.162170, -0.399070, -0.775082, 0.204557, -0.915662, -1.398666, -0.033778, -1.224466, -0.790206, 1.404809, -1.602560, -0.566840, -0.662185, 0.178099, 0.998191, -2.521236, 1.390752, -0.492537, -1.025408, -0.785105, -1.182054, 0.612622, -1.845123, 1.218117, -0.105511, 1.704905, -0.442944, 0.344820, 0.708059, -0.917305, 0.793661, 0.180332, -0.898945, 0.258629, 1.480507, 1.093272, 0.681000, 0.012193, -1.034033, -1.569363, -0.210513, 0.705476, 0.449104, -0.051273, -1.019887, 1.669025, -0.751012, -0.628909, -0.083270, -1.821194, 0.800022, 2.427250, 0.443614, 0.304541, 0.747911, -0.169420, -0.904272, 2.514867, 0.245856, 1.632448, -0.762919, -0.209119, 0.049385, -1.589729, 0.948483, 0.236501, 2.077460, -1.733226, -0.875441, -0.142843, -1.700648, -0.137395, 0.024392, 0.097358, -2.138648, -0.106727, 0.137434, 0.821791, 0.973994, 1.521879, -1.158079, 0.386975, 0.670921, 0.895037, 0.170402, 2.223875, -0.823823, -2.126691, -1.504934, -0.299998, 0.094464, -2.015715, 0.130019, 0.003191, -0.282077, -0.718410, -1.898619, -2.224198, -0.790712, -0.366862, -0.258817, -1.126168, 0.611796, 0.518503, -0.404919, 0.717330, -0.028573, -0.588446, -0.996154, -2.116879, 1.048993, -0.865295, -0.110260, -1.171131, -1.101144, 0.491418, 0.591424, -0.118359, 0.083128, -1.088060, 1.102987, 1.854937, -0.772271, -0.914412, -1.576852, -0.559847, -0.651418, 0.104693, 2.123291, 1.923983, 0.089423, -0.359738, -1.786474, -1.144172, 0.879001, -0.532192, 0.108946, 0.323678, 0.614816, 0.412863, -1.018183, -1.218906, 0.837569, -1.021422, 0.938307, 0.792073, -1.961305, -0.030533, -1.034175, 0.111338, 0.094186, -0.847779, 0.408266, -0.938794, 0.594150, -0.715830, -0.795749, 0.516614, 2.437080, -0.599323, -1.408864, -0.453664, 0.615877, -0.086873, -1.041776, -2.383410, 3.156408, -0.556290, -1.190379, -0.622245, 1.504269, 0.349749, -0.058662, -1.393360, 0.179862, -0.151126, -0.849941, -0.364632, -0.528944, -1.052577, -1.997191, 0.519329, 0.595623, 0.334534, 2.134766, -0.192607, -0.306883, 0.573016, 0.135832, 0.768289, -0.076635, -0.443870, 1.459083, -0.526757, -0.448050, -1.520194, -0.449561, 0.560005, -0.578036, -0.268174, 0.858826, 1.152279, 1.419171, -0.328678, -0.071260, -1.084192, 0.555109, 1.100901, 0.319228, -0.949782, 0.297357, 0.090072, 0.864504, 0.917468, 0.576084, 1.082713, 0.513510, -0.043335, 0.295377, -1.579695, -0.244816, 1.039186, 1.259287, -1.456241, 1.601870, 0.366654, -1.168208, 0.621312, 0.790020, -0.990963, 0.087922, -0.469035, 0.332328, 1.071768, -0.544952, 1.279473, 0.401712, -0.777214, 1.598492, 2.720704, -1.592220, -0.028937, -0.133522, -1.481804, -0.414559, -0.768919, -0.649499, -1.031639, 1.674990, -0.632441, -1.181652, -0.748845, 1.293687, 1.191815, -0.947192, -1.077136, -0.395310, -0.726435, 0.704260, -0.173239, -0.604234, 1.706261, 0.603246, 0.082911, 0.449418, 0.342870, -1.214765, -0.616459, -1.138420, -1.239462, -0.829734, 0.298012, -0.438737, 1.119083, -1.747199, 0.075827, 0.750317, 0.015959, 2.673993, 0.695316, -0.295101, 0.573259, 0.606363, 0.359317, -0.363445, -0.028387, -0.947399, -1.315650, 0.849546, -0.220756, -0.887965, 0.228625, -1.342103, -0.549175, -1.475137, 0.501268, -3.811178, -0.955225, 0.486296, 1.783510, 1.178837, 0.131082, 0.743665, -1.005692, -0.253365, 0.201155, -0.495085, 0.660715, 0.935911, 0.475713, -2.093667, 0.189219, 0.687746, -1.162282, 0.765370, -0.473079, -1.178207, -0.567789, 2.700521, -0.048847, 0.278716, -0.793269, 0.088162, 2.537305, -1.130521, -1.932532, 2.472336, 0.926509, -0.631188, 0.261391, 0.770591, 1.639942, 0.320703, 0.212401, -0.410104, 0.436704, -1.368510, 1.233343, -0.898163, -0.327058, 0.442677, -0.645411, -1.465860, -0.201130, -0.482415, -1.197139, 2.508349, 1.212023, 0.351047, 0.387545, 1.278681, 0.488864, 1.148973, -0.691036, 0.252424, 1.868212, 0.438444, -2.887588, -0.537036, -0.684071, -1.741831, 0.055706, -0.504995, 1.342336, 0.416253, 0.208315, 0.138326, 0.750489, -0.597545, -0.653041, 0.300722, 0.259019, 1.366061, -0.070968, -0.103294, -0.681356, 1.189079, 0.224627, -1.627360, -1.235841, 0.092197, 0.546120, 1.011409, -1.468901, 0.344382, 1.604989, 0.762395, -1.833910, 1.369965, 2.207117, -2.378839, 0.289389, -0.289958, 0.708922, 0.095479, 1.161928, 0.336401, -1.370665, 0.734498, 0.965329, -0.849018, -2.434349, 0.306106, -0.781257, 0.594293, -1.429602, 0.841641, 0.256158, -1.209145, 0.864806, -0.102022, -0.143145, 0.021417, 1.008262, 0.982015, 0.092831, 0.165202, -0.252263, 0.220545, 0.348633, -0.846917, -0.616212, -0.181726, -1.024299, -1.592690, 0.965261, 0.041398, 0.674359, -1.057345, -0.683720, 0.655972, -0.015530, -0.323909, 0.549081, 1.071910, 0.364225, -0.824464, -0.001709, 0.267600, 0.525355, 0.386475, -0.452447, -0.404434, -1.440732, 0.976957, 1.293394, 0.147899, -1.772454, -0.921953, 1.576577, -1.693166, -1.488782, -0.414513, -2.135588, -1.214201, 0.803253, -0.690416, -0.010669, -0.402725, 0.632358, -0.043319, -1.908834, -1.491129, 1.808186, -1.874046, -0.281751, -1.075587, -0.559680, 0.298088, 0.643733, 0.610926, 0.704458, 2.016152, -0.031613, 0.646952, 0.569395, 2.508410, -0.179675, -0.048824, 0.005606, 1.869785, -0.306183, -0.522185, 0.693429, 0.004549, 0.536186, 0.103252, -0.422090, -0.629959, 0.125014, -0.018577, 0.885319, 0.678065, 0.186344, 0.807778, 0.893964, -1.250961, -1.133031, 0.511445, -1.125194, -0.844051, 1.687765, -0.596102, -0.170204, 0.231324, 0.877110, -0.807087, -0.517076, 1.108176, 0.829449, 0.434158, -0.241738, -0.651427, 0.953202, -0.486286, 0.665821, -0.121909, -0.066174, 0.646312, -0.254029, 2.053112, -0.455520, 0.194909, 0.339175, -0.593663, -0.580708, -1.483420, -0.718239, 1.580834, 2.758743, 0.921026, -0.283677, -2.222538, 0.787170, -0.049637, 0.209295, 0.898605, -1.266989, 1.070821, 0.921603, -1.105286, -0.183823, -0.001298, 1.437060, 0.364263, -0.432373, 0.030635, 0.115497, -0.913457, -0.696298, -0.106767, -0.929542, 1.740185, -1.781696, -0.549155, 2.388424, -0.243142, 0.822746, 2.649969, 0.082938, -0.060588, -0.322106, -1.212368, 1.261406, 0.998801, 0.553030, 0.707387, 0.139253, -1.965311, -0.426487, -0.183201, -1.143024, 1.080709, -0.542438, 0.557808, 1.305462, -0.798548, 0.792202, 1.471583, 0.359012, -0.754083, -0.563582, 2.933185, -0.191811, -0.729754, -0.858562, 0.060986, 1.972915, 1.746027, -1.087005, 0.552130, -0.788223, -1.243806, 1.856027, 0.410151, 0.278261, -2.097281, -0.165141, 0.452122, 0.847627, -0.040394, -0.849300, 0.202366, 1.170092, -1.498406, 0.402975, -0.401223, 0.843738, 0.103140, -0.551512, -0.564725, 1.017490, -1.411059, 0.497527, 0.853076, -1.208954, -0.580804, -0.538174, 0.746502, -0.138976, -0.450661, 1.259247, -0.601191, 0.972999, 2.011034, -2.611481, -0.296053, 0.025581, 0.843127, 0.269563, 0.078695, -0.652477, -0.636561, -0.337333, -0.085627, 0.699060, -0.285203, 0.302345, -0.254838, 0.719321, -0.887386, -0.869428, 0.308216, 0.321839, 1.339406, 0.131548, 0.911953, -0.183639, -0.072973, 0.451839, -0.076615, -1.436176, -1.446560, -0.640161, 1.252679, -2.536145, 0.083403, 0.398960, -0.434442, 0.503598, -0.832421, 0.174327, 1.383598, -0.864221, -0.797381, 0.254484, 0.735936, 0.447760, 1.019576, 0.427179, -1.903720, -1.076532, -0.324483, 0.204516, -0.653492, 0.658674, -2.241488, 0.068427, -1.194480, -0.358988, -1.441842, -1.004456, -0.367884, -0.164342, 0.414830, -0.423650, -0.809400, -0.114740, 0.441052, 0.663330, 0.553117, 1.618080, -1.383428, 1.076929, 1.214673, 0.339496, -1.887393, -0.796113, 2.613801, -0.437388, -0.663248, 0.089296, 0.307271, -1.604505, -0.362615, 0.070389, -1.777228, -0.813626, 0.937207, 1.229573, -2.157619, 1.277535, -0.587399, -0.402635, 1.240281, -0.375889, 0.524737, -0.799339, 1.472952, -0.064894, 0.312903, -0.137374, -0.653612, 0.755019, -0.140038, -0.933827, -0.180902, 1.410203, 0.259619, -0.249711, -0.013147, 0.976021, -2.205953, 2.239404, -0.018998, 1.707275, -0.610730, 1.800240, -1.937084, -0.209935, 0.573138, -0.604941, 1.094679, 0.353792, -0.796537, -1.273211, 0.430803, -0.436417, -0.901275, -0.132341, 1.105824, 1.192633, 0.599159, 0.041933, 1.398376, 1.228992, 0.599179, 0.562203, 2.011279, 0.107998, -1.880693, -1.314182, 0.726995, -0.303783, -0.232535, 0.805236, 0.574284, 1.825219, 0.481046, 1.176469, -0.005005, -0.437182, -0.486515, 0.502299, -0.660077, 0.501681, -1.171856, 0.255944, 0.076300, 0.517341, 0.795345, -0.693783, 0.297741, 1.058407, 0.101764, -0.630923, 0.012331, -0.250903, -1.055991, -1.486803, 1.048219, 1.806489, -1.277031, 0.466303, 0.864901, 0.172281, -0.629937, 1.370061, 0.210752, -0.354053, -0.543032, -0.993002, -0.492207, 0.174437, 0.668512, -2.368764, -0.984693, 0.446388, 1.271209, -1.759257, -0.756024, 1.384092, -1.436662, 0.948225, -0.114060, -1.114640, 2.231575, -0.974306, 1.101864, 0.014861, 0.599672, -0.144135, -0.644954, -0.028306, -0.235662, 0.881458, 0.714558, -0.306181, 0.083978, -0.009850, 0.650500, -0.114353, -0.221029, 0.116231, -0.196612, 2.055438, -0.840273, -1.597501, -1.557035, 0.562234, -1.042682, -0.115944, -1.917445, -0.099277, 1.259935, -0.810861, 1.377141, 0.581891, 0.038066, 0.334035, 1.543489, -0.700360, 0.878012, -1.668910, 0.038807, 0.424636, -0.868011, 0.843123, 0.936123, -1.268251, -1.186098, -0.096058, -0.472553, -0.569291, -1.242718, 0.689243, 1.036445, -1.089426, -0.240963, -0.736780, -0.132270, -1.347308, 0.636797, -0.830018, -0.526198, 0.986368, -0.508480, 1.166948, 0.321075, 1.257057, -0.555575, -0.769797, 0.037234, -1.225849, -0.639776, 1.605412, -1.077925, 0.878783, 1.644148, -0.820132, 0.177052, -1.428467, 0.087647, 0.145735, -1.228402, 1.199574, -0.096729, -0.989056, 1.077607, -0.870894, -1.091914, 0.079661, 0.646102, -1.535019, 0.566583, -0.275144, 2.737974, -0.062092, -0.673603, -0.046880, -0.463211, 0.676774, 1.201957, 1.339307, -1.350206, 1.036885, 0.663826, 0.645678, 0.627826, 0.083337, 0.688757, -0.036833, -0.907979, -1.117299, -1.370532, -0.534487, -0.941965, 0.192248, -0.251242, 0.225042, 0.237043, 0.597010, 0.438869, 0.115549, -0.268917, -0.526161, -0.598611, -1.495332, -0.501398, 1.336285, -1.291725, -0.941537, 0.517032, 0.213226, 0.289392, 0.381262, 0.265248, 0.901984, -0.319072, 0.068068, -1.802063, -1.196775, 0.633367, 0.730634, -1.230875, -0.503543, -0.229085, -1.578917, 1.686321, 0.397693, -1.752010, 1.155558, 1.575457, -0.684211, 1.130759, -0.964391, 0.420251, 0.199125, -2.045601, -0.841773, 1.170935, -0.653584, -1.115931, -0.590874, -1.216702, -0.968169, 1.238557, -0.738332, -0.133324, -1.105106, -0.028404, 0.205197, 1.930414, -0.010985, 0.117392, -1.015451, -0.919056, -0.167054, -0.575321, -0.891431, 0.371902, -1.274686, -0.875438, -0.085740, 0.573097, -0.848063, -1.840711, -2.291004, 0.412596, -2.390139, -0.123728, 0.216096, -0.197863, 0.330312, 1.094169, 0.235412, 1.529485, -2.701128, -1.841991, -1.287154, -0.371125, 1.183016, -1.528058, -0.461995, -0.537688, -0.121660, -1.707710, -1.451806, 1.660011, -1.704213, -0.522591, 0.608624, -0.724401, 1.573601, -0.462104, -0.193030, -0.960701, -0.717931, 0.368174, 1.159395, -1.292301, -0.413960, -0.911137, 1.577433, 0.238658, 1.661173, -1.043789, -0.776631, 1.963089, 1.144360, -0.429729, -0.070165, -0.647949, 2.224191, 0.922051, -0.787452, -1.723117, 2.135242, 0.407912, 0.553191, -0.272019, -0.769199, 0.116071, 1.233337, -0.536483, 0.194698, -0.364801, 1.161344, -0.059902, -0.188744, -0.853891, -0.204065, -1.209451, -0.125752, 0.001065, -0.344748, -0.262156, 0.890443, 0.059319, -1.609535, -1.798127, 0.539802, 0.978540, -0.646831, -0.213446, 0.222421, 0.133444, -0.237710, -1.540541, -0.858681, 1.786379, -2.232934, 0.194050, 2.010475, 0.227545, -1.855255, -0.133707, -0.318903, -0.443642, 0.422335, 0.844548, 1.175377, -0.774183, -0.169814, 0.915640, 0.127368, -0.733243, -1.266528, -0.324577, 1.493544, 0.315125, -0.766478, -0.032213, -0.689888, -0.442525, -1.094400, 0.091220, 0.155211, 0.329433, 0.743409, 1.383190, -0.177790, -0.459259, -0.427564, 1.478410, -0.395987, 0.945209, -0.773267, -1.644360, 2.007200, 1.140567, 0.654914, 1.271676, 1.691442, -1.017013, -0.090082, -0.676001, 0.818901, -0.692404, -0.267801, -0.210212, -0.810789, 1.194384, -0.026008, -0.446139, -0.280835, 0.665835, 0.552424, 0.975960, 0.533602, 0.921817, 1.162899, 0.056587, 0.838081, 1.018484, 0.737541, 0.235971, -1.715205, -0.010786, -0.451838, -0.478264, -0.298536, 0.458548, 0.896740, -0.475461, -0.107050, -0.160684, -0.046708, -0.341063, -0.636934, -0.872002, 0.741325, -0.265641, 0.174669, 1.535938, 1.074105, 0.248771, -0.506019, 0.812500, 0.561394, -1.249885, -0.805145, 1.019588, 0.929492, -0.117274, -0.475864, 1.645770, 0.453032, -0.203403, 1.656491, 0.105410, 0.287933, -1.658475, -0.125998, -1.520977, 0.408257, -1.023742, 0.340135, 1.375705, 0.159702, -1.274662, 1.188079, -0.248499, 1.046080, -0.278688, 0.656228, -0.940407, -1.010099, -0.425974, 0.706940, -0.499998, 0.941889, -0.043274, -0.769265, 0.232247, 1.635775, -1.109666, -1.983417, 0.417748, 0.993060, 1.512461, 1.112705, 0.444797, -0.176426, 1.170116, -0.679821, 1.344172, -0.703345, 0.516566, 0.361846, 0.470657, -2.229069, -0.996538, 0.583824, 1.501572, 1.711949, -0.241647, 1.389133, -0.117338, 0.073266, -1.904503, -0.446048, 1.769537, -0.758381, 0.361868, 0.333955, 1.043740, -1.385741, 0.899305, -0.384806, 0.708481, -1.621319, 0.298322, -2.598936, -0.567307, 0.728023, -1.142811, 0.205535, 0.092326, -0.150745, 0.324807, -1.620093, 0.393070, -0.782600, 1.465078, 0.787793, -0.472915, 0.065388, 0.776762, -0.020151, 0.935728, -1.816234, 0.519904, -0.250368, 0.179030, -0.013762, 1.466377, 0.363489, 0.649383, -0.868991, -0.189423, -0.055035, 0.063051, -0.096711, 1.768088, 1.840798, 0.793053, 1.429546, -0.749670, 1.432627, 0.088670, 0.578526, 1.517048, -1.326013, -1.285640, -0.350472, 0.214906, -0.162170, 0.722723, 0.292372, 1.507200, 2.804112, -0.162876, 0.076073, -1.168047, 2.137174, 0.674241, -0.213758, -0.386747, -0.920035, -0.363421, -0.496172, -0.590562, 1.251346, 0.281242, 0.132311, -1.369727, -2.456163, -0.413745, 1.028342, -0.099829, -0.058604, 0.559943, -0.348435, -0.489928, -0.569766, -0.164835, 0.535828, 0.794678, -0.409822, -0.433102, -0.659592, 0.182238, 0.122540, 0.385592, 0.436848, -0.134526, -0.376223, 1.282591, -0.539787, -0.126236, -0.117527, -0.762230, -0.690076, 0.381597, -0.127793, -0.167546, -0.392606, -0.731430, -0.948615, 0.064081, -0.068808, 0.224504, -1.883282, -1.975447, 0.891883, -0.652932, 2.024351, 1.087493, -0.023667, 0.246369, 1.025813, -1.812474, 0.600479, -0.782582, -1.741405, -0.188030, 0.402218, -0.410046, 2.091224, -0.259267, 0.698336, 0.242207, 0.268938, 1.394473, 0.469512, 0.933017, 1.488456, -0.341644, -0.791699, -1.446461, 0.393435, 0.833254, 1.334394, 0.470877, 0.070305, -1.497475, 0.345918, -0.844593, -0.399710, -0.088262, -0.598605, -0.666429, 1.275263, -1.876474, -2.077331, 1.157732, -1.546555, -0.569495, -0.808976, -0.490299, -0.360891, -1.341171, 1.493188, -0.234666, -0.544535, -1.969054, -1.551740, 0.240554, -2.232345, -0.455098, -0.836830, 0.915519, -0.852643, -0.794784, -0.679951, 1.942435, 0.261901, 0.588130, 0.429660, -0.465149, -1.421758, 0.885973, 0.655556, 0.613977, 0.352837, -0.220158, 0.898358, 0.909666, 0.387378, 0.971515, -1.215671, 1.364633, 1.370551, 0.328178, -0.923502, -0.347543, -0.419652, 1.314634, 1.690332, 0.523008, -0.592843, 1.688752, 0.296009, 1.137360, -0.699334, 1.162271, 0.610619, -1.902893, 0.365951, -0.286711, 0.028145, -0.460607, 1.327399, -0.026118, 0.861427, -0.038776, -0.864668, -0.483240, -2.043697, -1.142821, 1.361424, 0.773614, -0.875402, -1.052503, 0.917661, -0.263940, -1.008121, 0.159128, -0.059757, -1.277182, -0.293946, -0.624276, -0.373682, 1.307616, 0.691095, -0.492976, -0.772840, 1.105352, 0.338552, -2.942345, 0.445159, -1.320336, -0.605020, 0.953831, 0.469851, -0.354887, 0.953904, 0.371550, 0.092209, 1.085028, 0.236800, -0.237459, -0.181647, -0.449363, -1.229349, -0.915450, -0.775320, -0.255796, -0.752793, -1.772184, 0.270470, 0.992505, -0.094404, 0.484247, -1.121118, -0.454329, -0.910895, -0.650925, 0.502442, -0.265349, -1.841811, 0.028939, 0.831680, 0.227214, -0.367259, -0.397616, -0.503254, 0.270294, -0.174047, -0.392619, -0.687216, 0.031942, 1.310305, 0.441107, -0.552457, 1.908733, 0.345012, -0.521335, -0.234192, -1.005215, 0.756866, 1.031271, 0.149743, 0.538873, 1.449921, -1.685842, -0.885655, -0.087633, 0.291052, 0.048680, -1.336456, 1.102988, -2.929202, -0.878944, 2.933355, 0.845554, -1.270444, 0.567321, -0.194162, -1.075099, -1.249082, 2.066827, -0.742117, -1.074731, 0.084178, -0.507480, 0.614266, 0.091381, 0.357175, 0.417274, 0.915112, 0.596810, 1.082144, -1.424948, -1.263764, -1.366437, -0.368521, 0.406863, 0.203142, -0.513780, -0.874924, -0.025335, -0.746661, 1.911579, 0.822715, -1.161584, -0.862557, -0.495997, -0.246120, 0.380888, -0.604009, -0.613752, -0.004857, 1.542078, -0.495454, -0.526918, 1.497577, -0.657132, 1.825640, -0.189233, -0.305086, -0.929308, -1.991496, -1.480981, -0.586877, 1.996711, 1.383913, 2.029534, 0.932487, -0.743253, -1.654776, -1.288083, -2.358563, -1.283558, -0.614194, -0.850327, 1.185002, 0.332798, -1.282921, -0.783882, 0.051726, 1.774174, -1.503310, -0.243286, 1.337100, -0.029914, -0.591297, 0.598562, 0.185515, 0.395646, 1.237728, 1.038232, 0.337125, -1.235164, 0.305595, 0.033171, 1.209693, 0.273286, 0.967767, 0.402268, -0.053069, 1.983366, -0.700376, -0.808244, 0.368366, -0.594984, 0.278371, 0.520705, 0.690706, -2.079627, 1.235444, 1.445721, -0.394234, -0.956180, -0.783992, -0.749785, 0.169359, 1.001997, 1.588047, -0.309243, 0.657695, 1.419736, 0.080640, -0.998396, -2.284743, 0.014069, 2.527452, 0.464817, -0.655672, 1.331777, -0.351488, -0.373632, -0.265931, -1.533439, -1.339083, -0.806225, 1.903854, -1.300660, 0.963523, -0.556366, -0.111860, -1.145382, -1.180812, 1.645147, -0.859318, -0.262230, 1.746781, 0.062488, -0.142178, -0.319597, 0.805451, -0.524940, 0.771373, 0.295142, 0.331752, 1.243740, -0.348120, 0.990053, 0.226242, -1.431399, -1.715353, -0.193180, 0.189706, 0.929362, -0.204526, 0.824361, -0.935070, 0.795433, -0.740348, 0.033792, -0.368202, -0.059590, 0.914689, -0.729263, 1.809984, -1.817875, 0.373864, 1.135015, -0.860622, 0.855074, 1.251296, 0.430322, -0.770571, -2.330315, 1.057717, 0.639588, -1.106705, 2.263489, -0.298065, 2.495112, -0.544542, 0.658343, -0.291951, 0.145052, 0.212197, 1.751437, -0.317666, 0.477505, -0.760640, -1.854693, -0.916580, 1.387901, 1.297886, -0.439742, 0.972952, -0.207502, -2.016983, -0.372088, -0.293588, -0.890832, -0.577037, -1.368332, 1.546014, -1.235951, 1.128922, 1.226443, 0.057891, -0.235351, -1.826791, 0.013132, 0.575864, 1.989528, 1.171615, 0.262968, 0.269533, -2.110740, -1.248885, -0.684853, -0.749814, 1.548712, -0.493807, -0.476493, -0.600738, -1.346532, -0.422131, -0.572886, 0.280894, 0.488704, -0.476414, 0.606693, 0.627582, 1.177491, -2.801196, -0.345425, -0.539653, 0.239909, -0.715030, -0.947349, -0.156670, 1.545247, 0.461864, -0.156047, 0.815558, 0.069526, 0.155074, 0.249092, -0.018480, 0.306401, 1.199131, 0.317856, -1.451196, -0.540745, -0.483238, 2.387320, -1.395595, 0.614275, -0.257170, 1.247054, 0.624628, 0.869156, -0.372203, -1.099383, -0.469647, -0.866391, -0.644422, -0.022952, -0.296277, -0.652974, 0.942426, 0.460873, 0.501562, 0.664257, -0.481230, 1.693070, 1.346129, -1.485725, -0.368335, 0.489086, 0.218751, -1.056075, -0.256611, 1.026748, -1.062068, -1.277974, 0.741510, 1.437067, -2.722271, -0.140934, -0.756397, 1.395773, -0.721586, -1.032565, 0.502521, 0.045251, -0.767535, -0.570692, -0.521047, -0.918576, -0.420860, 0.060595, 0.285349, 0.330953, 0.890022, -0.947116, -0.038456, -1.067923, -1.307064, -0.065499, -1.282460, 1.358192, -0.207752, -1.414136, 0.193799, -0.504835, 1.304376, 1.052409, -1.840901, -0.957358, -0.469032, -0.345329, -0.133076, -0.142414, -1.045208, -0.358082, 1.320415, 1.286141, -1.593837, 0.112917, -0.209537, 0.014430, 0.454638, 2.396512, -0.360322, 1.222698, -1.800098, 0.358477, -1.020227, -0.951170, 0.184742, -0.242794, -0.356478, 0.747003, 0.685666, 1.773837, 0.037266, 0.092769, 1.761236, 0.982292, -1.517177, 1.323996, -0.547775, 0.523508, 1.681538, 0.031054, 1.032626, 0.248433, -1.953045, -0.475985, 0.085305, 1.102302, -0.606649, 0.010155, 0.845950, 0.838079, 1.440465, 1.111996, -1.081481, -0.821172, 0.812970, 0.561478, -0.879287, 0.355050, -0.673691, -0.100147, -1.136508, -0.227903, 0.608128, 1.192806, -1.940669, 1.759276, -0.525988, 0.582430, -0.010930, -0.642073, -2.441217, -0.227902, -0.005424, 2.134140, -1.466543, 0.397765, 0.384761, 0.154591, 1.174917, -0.533171, -0.586818, 0.279077, 0.515127, 0.375724, 0.237319, 1.909430, -1.355151, 0.616019, -0.867013, -0.366089, 0.771928, 0.900137, 0.709168, -1.813267, 0.593955, 0.689893, -0.304745, -0.880049, -1.791807, -0.061096, 0.348417, -1.961069, 2.457608, -1.537941, -0.594875, 0.360609, -0.865662, -0.470672, 2.225043, 0.261478, -0.944859, -0.391298, 0.531277, -0.136620, 1.126871, 0.110916, 1.521862, 0.447901, -0.404044, -0.861659, -0.863225, 0.291401, 0.580419, -0.610619, 0.264456, 1.529272, 0.340869, 0.079968, 0.726771, -1.585980, -1.458849, -1.096808, 0.819906, 0.519707, 0.741836, 1.293123, -0.385099, 1.209177, -0.751745, 0.584524, -0.527719, -0.792565, -0.913272, 0.919876, -0.650037, 1.445709, -0.237211, 1.211545, -0.262747, -0.255015, 0.301235, 0.440093, 0.045824, 0.658224, -0.692605, -0.011042, 0.502382, -1.487078, 1.597929, 0.575019, -1.313354, -1.287837, 0.024124, -1.765020, -0.642332, -0.569423, 1.935842, -0.805847, -0.567158, 1.862071, -0.632283, 0.925897, 0.865091, -1.158175, 0.848080, 1.077904, -0.721489, 0.045563, -1.621627, 0.264485, -0.354161, -1.472917, 0.344166, 0.286064, 0.535362, -1.473323, 1.226940, 1.582088, 0.210778, -1.060418, -0.185844, 0.288219, 0.745273, -0.462258, -0.523615, 0.940274, 2.251897, -0.429833, -0.392335, -0.425686, -0.609360, -1.651912, -0.520587, 0.623435, -0.549004, 0.347927, -0.565802, -0.165099, -1.067913, 0.993166, -0.520832, 1.385723, -1.644085, 1.859935, -1.200724, 0.275898, -0.403711, 1.330624, 0.321464, -1.101332, -2.070560, -0.011004, -0.876374, -0.351336, -0.364860, -0.297692, -0.624883, -0.012912, 0.553782, -0.119338, 0.009886, 0.233519, 0.850127, -0.382206, 0.006731, -1.033220, 1.357904, -0.152723, -0.112469, 2.413690, 0.132626, 1.020103, 0.486713, -0.467687, -0.882504, 0.149689, -0.882874, -1.622582, 0.889352, -0.589864, -0.060649, -0.554446, 0.162069, -0.874591, 0.376542, 0.202443, 0.952466, -0.095900, -0.532472, -0.305646, 1.297330, 0.615439, -1.037382, -0.843574, -1.443636, -0.654764, -0.788632, -1.122809, 2.107426, 0.020323, 0.056888, 1.449052, -1.414196, -0.778988, -0.180533, 0.764142, -1.276806, 0.143296, -2.166982, 0.703651, -0.561048, -0.541946, -0.530078, 0.342287, -1.453677, -0.524079, 1.688899, -2.740637, -0.509667, 0.422408, -0.167106, -0.135366, 0.607375, -0.056822, -0.278464, 0.175810, 0.047142, 0.139719, -0.175870, -0.953918, 0.772994, -0.629944, -1.023366, 0.619313, -1.187672, -1.899090, 0.622108, 0.016275, 0.191342, 0.999344, 1.811074, -0.857979, -1.246552, 1.060831, -0.193704, -1.016750, -1.346058, -0.635778, -0.009523, -0.783099, -0.904311, 1.544027, -0.219199, -0.343132, 0.200437, 0.871278, 1.444465, 0.078621, 0.565776, 1.639612, 0.486000, -0.964735, 0.638348, 0.217969, 0.852034, -0.507616, -0.510199, 1.711401, -0.326036, 1.563514, -0.885243, 0.870436, 0.254717, 2.287700, -2.298754, 0.754934, -0.578417, 0.003805, -1.013249, -0.434976, -0.366648, -1.690810, -1.400365, -1.799398, -0.166922, -0.383870, -1.644150, -0.547353, 0.343083, 1.923705, -0.014167, 2.022998, 0.470624, -1.251050, 0.327891, 0.047044, -0.210121, -0.569339, 0.088085, -0.069365, -1.615166, 0.476006, -1.070633, -1.074907, 0.467080, 0.929532, -3.156759, 1.506421, -1.880815, -0.346951, -1.181532, 0.648061, 0.919897, 1.731056, -1.351639, 0.408378, 0.125410, 0.675769, -0.714707, 2.282438, -0.396139, -0.088341, 1.372799, -0.796148, 1.598698, -0.126270, -0.184555, -0.977132, 0.000499, 1.735138, -0.003698, 0.579036, 0.595922, -0.165841, -0.248538, -2.112316, 0.850311, 1.271300, -0.022016, -0.704498, -0.862125, -1.581099, 0.578850, 0.133288, -1.701191, -0.162391, -0.660779, 2.140408, -0.325340, -0.137418, 2.232680, -0.429467, -1.339041, 0.071368, -0.449927, 1.119734, 0.127143, 1.738726, 1.483393, 1.537228, 0.606993, -1.142145, -0.661106, -1.149435, 0.265388, -0.003494, -0.420078, 0.283040, -0.949344, 0.215587, 2.042361, 0.339736, 0.891741, -0.687083, -0.930214, 0.750795, -0.036799, 0.558241, 2.273839, -0.858486, 0.764074, -0.812920, 0.600766, -0.521684, -0.483988, 0.950648, 0.288961, -0.602028, 0.395486, 0.468387, -1.121386, 0.153346, 1.960969, -0.832749, -0.553379, -0.070432, -1.766545, 0.223817, 0.924911, 0.132025, 0.293018, -0.841991, -0.759261, 0.156097, 1.824270, 0.442088, 0.369182, 0.545297, -1.029404, 0.161976, -0.774115, 1.896997, -0.288786, 2.868966, -0.453227, -0.748355, -0.179113, 1.544831, 1.177246, -0.076462, -0.660397, 0.164740, 0.605049, -0.619821, 0.185744, -0.330927, -0.755785, 2.599649, -1.054843, 0.991248, 0.539744, 0.055856, 1.565438, -1.097893, -0.942495, -1.055256, 1.389776, -0.240882, -1.507133, -0.687058, -2.071292, -0.979288, 0.563581, 0.116064, 0.472714, 3.213935, -1.584408, -0.352646, 0.355476, -0.658932, -0.210192, -1.214172, 1.075653, -1.088650, -0.043784, 0.535475, -0.640050, 0.199752, 0.468976, -0.785657, -0.546611, 0.122064, 0.478130, -1.036023, -0.755880, 0.155422, 0.513236, 0.691126, 1.256833, 0.626945, 0.016682, 1.877082, 0.951315, 0.106614, 1.812980, -1.418978, -1.054206, -3.766232, 1.562666, -1.031741, -0.322059, 0.255045, -0.387456, -1.496626, 0.373927, -0.711483, 1.854483, 2.231693, -0.423563, 1.403533, -0.245240, 1.318003, 0.123900, 0.576964, 0.330390, -0.481879, -1.953678, 1.514428, 0.924915, -0.989652, -1.869557, -0.982227, -0.662445, -0.070981, 1.455798, -0.075602, -0.786357, -0.288142, -0.219662, 0.523849, 0.193546, 0.582365, 1.089134, -0.714587, 0.334265, 0.444925, 2.322851, -0.337789, -0.702793, -0.144651, 1.224411, 1.983358, -0.552469, 0.705136, 0.506410, 0.959816, 1.383263, -0.326959, -0.433267, -0.540196, 1.807512, -1.669181, -1.224687, 1.005663, 0.702418, 1.867239, 0.541549, 0.627350, 1.333296, 0.187384, 0.811994, 1.018183, 0.388560, 0.536788, 0.300297, 1.563462, -0.194205, -3.128213, -0.822981, 0.766540, -0.066628, 0.003206, 0.367780, -0.597985, -0.667215, -0.644542, -0.551451, -0.479872, -0.586707, -0.570213, -1.925813, -0.028536, 0.535480, -0.797823, -1.295007, 0.159830, 0.057236, -1.554901, -0.307504, -0.712608, 1.167013, -1.738344, -0.971677, 1.204613, 0.106029, -1.877151, 0.391886, 0.528367, 0.052115, -0.102760, -1.567323, 1.838017, 1.249596, 0.179481, -0.383866, -0.090253, 1.304052, -0.161480, 0.483888, 1.288125, 0.604101, 0.674167, 1.628358, 0.014852, -0.397877, 0.365309, -0.470127, 0.246585, -0.186759, 1.284288, -0.176388, -0.950532, 0.321164, -2.163353, 0.539121, 1.867412, 0.648317, -0.123808, -0.517718, -0.792213, 0.880620, 0.551274, -1.808916, 2.086421, 0.335664, -2.219135, 0.962106, -0.207895, -2.333500, -1.407179, -0.622660, -1.424839, -0.086229, 0.358851, -1.308627, -0.649546, 1.068496, -0.483379, 0.126967, -1.282642, 0.839874, -1.268759, -1.065768, 2.005949, -0.211119, 0.153472, 1.662807, -0.019418, 0.200090, 1.714539, 1.353242, -0.358513, 0.187577, 0.773466, -0.855890, -0.861594, 0.359504, 0.411255, -0.769070, -1.738123, 1.573117, -0.078092, -0.661866, -0.234847, 0.396102, -0.471627, -0.088574, 0.671115, -0.999868, -0.221710, 1.491389, 0.229180, 0.173040, 0.272029, 1.203908, 0.092473, -0.281171, -0.109384, -0.975183, 0.901354, 0.513457, -0.160654, 0.402768, -0.660327, 0.303535, 1.117784, 0.485947, 0.515723, 0.782757, -0.074019, 1.030108, -0.466344, -0.194823, 1.441207, -0.975607, -0.913399, -1.352420, -0.370035, 1.601166, 1.288876, 0.114441, -1.151028, 0.263603, 0.153332, 0.624335, -1.479842, 0.020963, 0.808672, -0.906042, 0.248293, -0.021158, 1.370549, -0.950165, -1.036264, 0.585385, -0.482130, -0.025522, -0.531609, -0.043222, 0.993441, -0.081617, 0.895453, -0.364794, -1.474611, 1.195128, 0.674430, 1.257755, -1.644022, 0.494655, 0.963351, 1.507737, 1.039567, 0.126597, 1.889974, 1.731468, -0.638741, -0.766588, 0.030216, -1.286082, -1.828354, 0.929998, -0.523241, 2.586178, 0.878027, 1.153037, -0.287350, -1.109406, -0.494986, 2.460140, -0.205843, 0.493466, -1.678755, 0.314163, 0.195331, 0.703069, -0.057609, -0.539983, 0.127497, -1.555147, 2.138376, -1.289191, 1.469042, -0.425057, -1.067938, -0.875001, 0.734767, -0.586066, 0.097748, 0.259414, -0.634032, 0.638393, 0.652704, 0.966738, -1.394442, -0.458809, 0.490610, 0.078989, -0.061240, -0.456531, -0.313961, 0.093462, -2.262106, -1.173555, 1.584624, 1.461880, 0.240500, 0.244433, -0.403860, 1.296627, -1.063269, 1.698649, -0.524105, 0.672055, 0.514395, 0.531764, -0.000265, 0.139968, -0.245186, 0.141470, 0.614968, 0.111478, -0.362837, -0.204204, -0.774353, 0.413180, 0.550001, 1.174743, -0.700053, 2.076198, -1.966833, 1.829741, -0.853565, 0.027412, 0.075143, -0.705977, 1.708960, -0.226091, 0.428000, -0.602931, -0.047956, 1.070031, 0.431004, 0.259456, 0.631039, -0.258942, 0.377124, 1.320863, -1.240855, -1.032171, -0.561787, -1.567561, -0.619509, 0.834249, 0.681737, 0.920760, -1.587442, -1.589726, 0.141200, 1.785309, 1.318002, 0.380344, -0.394539, 0.095370, 0.829402, 0.600756, -0.250432, 0.805039, -0.140533, -1.284124, 0.282088, 0.303095, -1.291561, 1.281391, -1.285778, -0.487627, 1.105829, 2.348415, 0.474058, 1.764227, 0.299071, -0.406762, 0.428571, 0.060480, -0.483345, 0.573609, 0.655257, 0.282541, 0.353255, 0.196703, 0.189110, 0.225442, 0.374092, 0.005193, -0.058010, 1.296705, 0.128158, -1.389723, -0.399257, 0.763417, -0.649399, -0.957718, 0.005112, 0.255308, 0.861744, -0.045855, 0.260832, -0.332917, 0.046643, -1.152128, 1.193023, -0.581263}, + { 1.543728, -0.592740, 1.695967, 0.893720, 0.364761, -0.740928, -0.747827, 1.241065, 0.316879, -0.390357, -0.668158, -0.373365, 0.244416, 0.454034, 0.427857, 1.433061, 1.297890, 0.269080, -1.568294, -0.141295, -1.522560, 0.693472, 0.838773, -1.673977, 0.012073, -0.511589, 0.445653, -0.820774, 0.486975, -1.186084, 1.381132, -1.380502, -0.105964, 1.572850, -0.978998, -1.523539, -0.178493, 0.827481, 1.991456, -0.647898, 1.029246, -0.745056, 0.415750, 0.704994, 0.103048, 0.271141, 0.661195, 1.377508, -0.795125, -1.094828, 0.019094, -0.927010, 1.236254, 1.507294, 0.027011, 0.629170, 1.318100, 0.672236, -1.487893, 1.078143, -1.095805, 0.279606, -0.432363, -1.124374, 0.958065, -0.405402, 0.108259, 1.833402, -0.828281, -0.489540, 0.897957, 0.124017, -2.709729, 1.112989, -0.402802, -1.592790, -1.281192, -0.787587, 0.714824, 1.485184, 2.065385, 1.607815, -0.073868, 1.410523, 1.038189, -2.721146, 0.659512, 0.794315, 1.327118, 0.692954, -1.012236, 0.477630, 1.072623, 0.518601, -1.142126, -1.049552, 0.804722, -0.112722, 0.256943, 0.819272, 1.061386, -0.611031, 0.347412, -1.259715, -0.454821, -0.322682, 0.701932, -0.906507, -2.106579, 1.115705, -1.297056, -1.841274, -0.663057, 0.534536, -1.145266, 0.933877, 0.551989, 1.202555, 0.604870, 1.098875, -0.553530, 0.369362, 1.139097, 1.032288, -0.189716, -1.354300, 0.670240, -1.142749, 0.412660, -0.606585, 1.108489, 0.158100, -0.359648, -1.284853, -1.154013, -0.937592, 0.912432, 0.914854, 0.360086, 1.013938, 1.098398, -0.230168, 0.615997, 0.327779, -0.093494, 0.328638, 0.002791, 0.476471, -0.684736, -0.405851, -0.897401, -0.246474, -1.640608, 1.985173, 0.422894, -1.220051, -1.194641, 0.629022, 1.035853, 0.393328, -0.483098, -1.158039, -1.074269, 0.066079, -0.805381, -2.268697, 0.553959, 0.528082, -0.996798, -2.549146, 0.949795, -0.197598, 0.937648, -1.261363, 0.193574, 0.532277, -0.945238, 0.639573, -1.016377, 0.526705, -0.614343, -0.677570, 0.379156, -0.977589, -0.281283, -0.006260, 1.177647, 0.530150, 0.309618, -1.041296, -0.804470, -1.277123, 0.066558, 0.403708, 0.871248, -0.434156, -0.689629, -1.606238, -0.603463, -0.613704, 1.450054, 1.305154, -0.276955, -0.006089, 0.383828, -0.734329, 0.231423, -1.275249, 0.739700, 1.029034, -0.030375, 0.206516, 0.580835, -1.427622, 0.961951, -0.461909, -2.196334, 0.435350, 0.410767, -0.719363, 0.119775, 0.912635, 0.187672, -0.036693, 2.110843, -0.397759, -2.439429, -0.755293, -0.830239, 0.396200, 1.645406, -1.735625, -1.018600, -0.396751, 0.516117, -1.293193, -0.907348, -2.241394, -1.361308, -0.325360, -1.343182, -0.951062, 0.330634, 0.065822, -1.597124, 0.761313, -0.878843, 0.008061, 0.104116, 0.061462, 0.818972, -0.513331, -0.349262, -0.035294, 0.925147, -1.370695, -0.325712, 1.954177, 0.191522, 1.221995, 0.654155, 0.421473, -0.082069, 0.273364, 0.330481, 0.460273, 0.409731, -0.876452, 1.396242, -0.431053, 0.285017, 1.196481, 0.328061, -0.318513, -0.882769, -0.934901, -1.205118, -0.422650, -0.908115, -0.654189, 0.018118, -0.040496, -3.229802, -1.040183, 0.710077, -0.518089, 1.267989, 0.442234, 1.314612, -0.315063, 0.518610, -0.346342, 1.366759, -0.030329, -0.092277, -0.587748, 0.977533, -0.462705, 1.291985, -0.738445, -0.099533, -0.967463, 1.747508, 0.786587, 0.371684, 1.445654, -0.488080, -1.219286, 0.079949, 0.272397, -0.057746, -0.743492, -0.002089, -1.037862, -0.498934, 0.920751, -0.069743, -0.858679, 1.057966, -0.191138, 1.720562, -0.697468, -1.830012, -0.296317, 2.912491, -1.274557, 0.116975, 2.255765, -1.431646, 0.251973, 0.981281, -1.347927, 0.053927, 1.292037, 0.179249, 1.458762, 0.661279, 0.721116, 0.819616, 0.332670, -0.957866, 0.094835, 1.709903, -0.540855, 0.743498, -0.329663, -0.927442, -1.913930, 1.342006, 0.934528, 0.145227, 0.808923, -0.963327, -0.764596, -0.883168, -0.732610, 0.366897, 1.577013, 1.240750, 2.570322, 0.903606, 0.711223, 3.539747, 1.309142, -0.629979, 1.458191, -0.968808, -0.263852, -0.637866, 1.346113, -0.204573, 1.997478, 0.472415, -0.385208, -0.027912, -0.115154, 0.621677, 1.951220, -0.819509, -0.993513, -1.194517, 0.793269, -0.307643, -0.345623, 0.583419, 1.238509, 0.370939, -0.212681, -0.959828, -0.363463, 0.685916, 0.262383, -0.488554, -0.582380, -1.638535, 0.351609, 0.385492, 1.217582, 0.175680, 1.304038, -0.171854, -0.886770, 2.139007, 0.618296, -0.067356, -0.882487, 0.762149, 1.250461, 0.623340, -1.158354, -0.633382, 1.565599, 2.030117, -1.223733, 0.050421, -0.003709, -0.494750, 0.994935, -1.427316, -1.829596, -1.261557, 0.623020, -1.143641, -0.629604, -2.117143, -1.033729, -1.482622, -1.421670, 1.579562, 0.871000, -0.077630, -0.661875, 0.765825, 0.077336, -1.131262, -0.529367, 0.389557, -1.686064, 1.719942, -0.425409, 1.239059, 0.746975, -1.781749, -1.298913, -1.741664, -2.016537, 0.772101, 1.085593, -0.235138, -1.609223, 1.385209, -1.833560, 1.267686, -0.438740, 0.977015, 2.023078, -0.947257, 0.485274, -1.401958, 0.668368, -0.881190, -0.520353, -1.509777, 0.076096, 0.311162, 1.883554, 0.689101, 0.499016, -0.428880, -0.274951, 1.329115, 0.540779, 0.206764, -0.318605, 1.242950, 0.238510, -0.090227, -1.554454, 1.513644, 0.643399, 0.783753, -0.510639, 1.259110, -0.086436, -0.138803, 0.282575, 0.646010, -0.923739, -0.402618, -0.507848, 1.077237, -1.004135, 0.316827, -0.730227, -1.772577, -1.618807, 0.271272, 0.061384, 0.665309, 0.291050, 0.255589, 0.158068, 1.815811, 1.301180, -1.002695, -0.566522, 0.146351, 1.300883, -0.542749, -0.407012, 0.258683, -1.088570, 0.271495, 0.641626, -0.275798, 2.262456, -1.355514, 0.058881, -0.388587, -1.295309, -0.331861, -0.436212, -0.487358, 0.044407, 0.218717, 1.569044, -1.160551, -0.007432, -1.828102, 0.018648, -0.387463, 0.248623, -0.572872, -0.965569, -0.133622, -1.053105, -0.215928, -0.029799, 0.807956, 0.591962, 1.592182, 0.081860, 0.798828, 0.486786, -2.040722, 0.188741, 1.516692, 1.616871, -1.163070, 1.261503, 0.836023, -0.448278, 0.125574, 0.265990, 0.166516, -0.067440, 0.554229, -2.293393, 0.118905, 1.277214, -1.042627, 0.157182, -0.695806, 0.977241, 0.355525, 0.425753, -0.492701, 0.046303, -0.503989, -0.917039, 0.426024, -0.657473, -0.458622, -0.233436, 0.440753, 0.860013, -0.184204, 1.654657, -0.661991, 1.296958, 1.181755, -0.840025, 0.157240, 0.014180, -1.749650, 2.040066, -0.150422, 0.692513, 0.218089, 2.155623, -0.151369, 0.658650, -0.431830, 2.046714, 1.848095, 0.257136, 1.363610, 0.457895, 0.919920, -0.175142, 0.133251, 0.808814, -1.162695, 0.492638, 0.185820, 0.961277, -1.201483, -1.013300, -0.943266, -0.641113, 1.328936, -0.443744, 0.487933, 1.370789, -0.475609, -0.145455, -0.546697, 0.316680, -0.447662, -1.038917, -1.453140, 1.059173, 0.239321, 1.009159, -0.234848, 0.643522, -0.620416, -1.123133, -0.548663, 0.080212, 0.165018, 0.432747, -1.164135, -0.141651, 0.945134, -0.833190, -0.606726, -1.354703, -1.622862, 1.104964, 0.734624, -0.146261, -1.532828, -2.046053, 1.204595, 0.708609, 0.181661, -0.077282, 0.477524, 1.099795, 0.876918, 0.862170, -0.279158, 0.926285, 0.099776, 0.893228, 2.105340, -0.159227, -0.991767, -0.461621, 0.408484, 1.136953, -0.068072, 0.617396, -0.831238, 0.070853, -2.906515, -0.538721, -0.979629, -0.036301, 0.394571, -0.806550, 0.687930, -1.145224, -0.272259, -0.901252, 0.053592, -0.123948, 0.120294, 0.325134, -0.440623, 2.502902, -0.169380, 1.144886, -0.045104, 1.003405, -0.054746, 0.641069, 0.008934, -0.421559, 0.809756, 1.224457, -0.210479, -0.322809, -0.469289, 2.156518, 0.238936, 0.303892, 1.370580, -0.591955, -0.063763, 1.176436, -0.218082, -0.129585, 1.252725, -0.253667, -0.600221, 0.051384, -0.179658, -0.832467, 1.262326, 0.336128, 1.222036, -1.494552, -1.847578, -1.492675, 1.352113, -0.647496, 2.100602, 0.723634, 1.731946, -0.159760, -0.537622, -0.356960, -0.268464, -0.521909, 1.182647, -0.307140, -0.685733, -0.289239, 0.613457, -0.006939, -0.914746, -0.331485, -1.059129, 0.813355, -1.146203, 0.084211, -0.822883, -0.034050, -1.500520, 1.719812, 0.622760, -1.842809, 0.306889, 1.744596, -0.136386, 0.659907, 0.926893, -1.885894, 0.052894, -2.744975, -0.185676, 0.678899, -0.647047, -0.620898, -0.354954, -1.235485, -1.799115, 0.531395, 1.091132, 0.453614, 0.681269, -1.137330, -0.381060, -0.279672, -0.807822, -0.007355, -0.985455, -0.522518, 0.047876, 0.017391, -1.098688, 0.586094, -0.476109, -0.585603, 0.441868, 0.431204, -0.809593, 1.045815, 0.906984, 1.200062, -1.673531, -1.427119, 0.617855, -0.033212, 0.228126, -0.790473, 0.250138, 0.394698, -1.031258, 1.323261, -0.227789, -2.154935, 1.041920, 3.963416, 0.474913, -0.359712, 0.683832, 0.752249, 0.271506, 1.295899, 0.031459, 1.317668, -0.166010, -1.027483, 0.485985, 0.466499, -0.200604, 1.620921, 0.823966, 0.155522, -1.038440, -0.814001, -0.562614, -0.171213, -0.809230, -0.665524, -2.168379, 0.941580, 1.118530, 0.540293, -0.515447, -0.181228, -1.346575, 0.476136, 0.956276, -0.634453, -1.641696, 0.774935, 0.996777, 1.012542, 1.091754, 1.451168, 0.499293, -1.695991, 0.473346, -0.444103, 0.097654, 2.108145, 0.376295, 1.593426, -0.403225, 1.227204, -0.732006, 0.295531, -0.616491, 0.475103, 1.523340, 0.950206, 0.000450, 0.434541, -1.327429, -0.437089, 0.472717, -2.357039, 1.665172, 1.442425, -0.399581, 1.477510, 0.682997, 1.687689, -0.442618, -1.147904, 0.663013, 0.119635, 0.098755, -0.385221, -0.102097, 0.624001, 2.115952, 0.020631, 1.488675, 0.512123, -0.998724, -0.160806, -1.652622, 0.346530, -0.807186, 0.266926, 0.914759, -1.162588, 0.326703, -1.000776, 1.170803, -0.933037, 0.864010, -1.953749, -1.069386, -2.243666, 0.338391, 1.479739, 0.212117, -0.786980, 1.778163, -0.481581, 0.302630, -0.548990, -0.465612, -0.890092, -0.101522, -0.393561, -0.745454, -0.355579, -0.804670, -0.340105, -0.577478, -0.802297, 0.038963, 0.228388, -0.154672, -0.945174, -1.064447, -0.054117, -0.390800, 1.305028, -0.186642, -0.184677, -0.007926, -0.117572, 1.180408, -0.016843, 0.139408, 0.083699, -0.279391, -1.804810, 1.685216, -0.431488, -1.023778, -0.661016, -1.839745, 0.360646, -0.355619, -0.467450, -0.905038, 0.507788, -0.311208, 1.126197, 0.268364, 1.847339, -0.018117, 1.077871, 0.000497, 2.859377, -0.701989, -0.587961, 0.065682, 0.714058, 1.072237, 0.785584, 0.340183, -0.942350, -0.965614, -0.723866, 1.179876, 0.521207, -0.748425, 0.563208, -1.039226, 1.493163, 0.493711, 0.759079, 0.176588, 0.957686, -0.249055, 0.273654, 1.883613, -0.095259, 0.658585, -0.490781, -0.616016, -0.206367, 0.631759, 0.611943, 1.605094, 1.381775, -0.077065, -1.059261, -0.897438, 0.704758, 0.518827, 0.202618, -0.783762, -2.408520, 0.713438, -0.834058, -0.318613, -0.564888, -1.720432, -1.114225, 1.764850, -0.588999, -0.862701, -1.043127, -1.531143, -1.415100, -1.181710, -0.075069, 0.362877, -1.013309, 0.482706, 0.526851, -0.756199, -0.301750, -1.191916, -1.026924, -0.180968, -0.495496, 0.076663, 1.391732, 0.126281, 2.131831, -0.134320, 1.802157, -1.013856, -0.439386, 0.529967, -1.045864, -0.437761, 1.380348, -0.780855, -0.004879, -1.264971, 1.340770, 0.162822, -0.178197, 0.592306, 0.253935, -1.220861, -1.044721, 0.887344, -0.933393, 1.291952, 0.248691, -0.821707, 1.311213, -2.030030, -0.121647, -1.279035, -0.953778, -0.021876, 1.045354, 0.340732, -1.665236, -0.406848, -1.910790, -0.160716, 2.399962, -0.199085, 0.328901, -0.525934, 0.920349, -2.120125, 0.274182, -0.945022, 0.392649, 1.714438, 2.159760, -0.669388, -0.138557, 0.303878, -1.393228, 1.112192, -1.189982, 0.188956, 0.186878, 0.018525, -0.506479, -1.437181, -0.572208, -0.474478, 0.397891, 0.543608, 0.705113, 0.889569, 1.460220, -0.097015, 2.224391, -0.720478, 2.011474, -0.014376, 0.258955, -0.692796, 0.009386, 0.190982, -0.352235, 0.436144, -0.167764, -1.034328, 0.576356, -0.265998, -1.378877, 0.409514, 0.447814, -0.305173, 0.598984, -0.340107, 0.068281, 0.803658, -0.255998, -2.108654, 0.765626, 0.311720, -0.251217, 1.577590, -1.729104, 0.118956, 1.895140, -0.651895, 0.908258, -0.970551, 2.316956, -0.502178, -0.858465, 1.587198, -0.935865, -0.384741, -1.185379, -0.946642, 0.266479, 1.790947, 0.744343, -0.110975, -1.700155, -0.233999, -0.303549, -0.484864, -0.300196, -0.220737, -0.575763, -0.899129, 0.236526, -1.946865, 0.624323, -0.826261, 1.145659, -0.382239, -2.105783, 0.111304, 0.090122, -0.090749, -1.827911, -1.005784, 1.272941, 1.058845, 1.168948, 0.780946, -0.872353, 1.340676, 0.966605, 0.471810, -0.817326, 0.825829, 0.093164, 0.726668, -2.335778, -0.222547, 1.926812, 0.893521, 0.193462, 1.309174, 0.239891, 0.143295, -3.614362, 1.869462, 0.262839, 0.745911, 1.763632, -0.805419, 1.632774, -0.651630, -0.513524, 0.013209, 0.904032, -1.066767, 0.246981, 1.080445, -0.105333, 0.280095, 0.148680, -0.328969, -0.306786, -0.427679, -1.156101, -0.424934, -0.834393, -0.700717, 0.286309, 1.121027, -0.727327, -0.479240, 1.241227, -1.509761, 1.328872, -1.549685, -0.328264, -0.549171, -0.206429, 0.156265, -0.266364, -0.596214, -0.487549, -1.399843, -0.175802, -0.553383, 0.123783, -1.160968, -1.718323, -0.039422, 0.168283, -1.222350, 0.812179, 1.375031, -0.457773, 0.563750, 1.907425, 2.366940, -1.315422, -1.503644, 0.103362, 1.249727, 0.263372, -0.055168, 0.452256, 2.843142, 0.445544, -1.008841, 1.253179, 0.551779, 2.332664, -1.765536, -0.528213, 1.922847, 1.421129, -1.408259, -1.024227, 0.712771, 0.619185, 1.078510, 1.620825, -1.810534, -0.238843, 2.642455, 1.088309, 0.696850, 0.024105, -1.332940, -0.722424, 1.018259, -0.782438, -1.252926, -0.655129, 0.270792, 0.023382, -0.490540, -0.398229, 1.731076, 0.149698, 1.356597, -0.053189, -1.017785, -1.630110, -1.171242, -0.079133, 1.106024, 0.678387, -0.794349, -0.188977, -0.923395, 0.751637, -1.344162, 0.349403, -0.382214, 0.751571, 0.240999, -0.348686, 0.366138, -0.972250, 1.242081, -1.681708, -0.679303, 0.756052, -0.510314, -1.051253, 0.990829, -0.150299, -1.320000, 0.241200, -0.287258, -0.639187, 0.868028, 0.099222, 1.555080, -0.584324, 0.353949, -0.303726, 0.498923, 0.766886, 0.769924, 1.851079, -0.620791, 1.223711, 0.497049, 0.999718, -1.428971, 0.891978, -1.633743, 1.145181, -0.071485, 0.641340, 0.101221, -1.809877, 1.348196, -0.581051, 1.630121, -0.564791, -0.150379, -1.163376, -0.341653, -1.724467, -0.469029, -0.887634, -0.154370, 1.752639, 0.792404, -0.918536, 0.923068, 1.999341, -0.737441, 1.792420, -1.806813, -0.514455, 1.465940, 0.148501, 1.211108, 0.539311, -0.437431, 0.656574, -1.309455, 1.363223, 0.916011, -0.443740, -0.515935, -1.053274, -0.891184, -0.149176, -0.052483, -1.611481, -0.536138, -0.710154, 0.109850, 1.190977, 0.038662, -1.475456, 0.420263, 0.453738, 0.123805, 0.209800, -0.758631, 1.380680, 0.407374, -0.675999, 2.225152, 0.517368, -1.733936, 0.307127, 0.167170, -1.621319, 0.661122, -0.432699, -0.074036, -0.765830, -0.951682, 0.424554, 0.295904, -1.337488, -2.093186, 0.245086, 0.154747, -0.330860, -0.227767, -1.186165, -0.842727, 0.243190, 2.228421, -0.364224, 1.185898, -1.108960, 1.370697, -0.836171, 0.806579, -0.404317, 0.663864, -0.499574, -0.844421, -0.201096, -0.200439, 0.206693, -0.417836, 0.132641, 1.434949, 0.834049, -0.186194, -0.177535, -1.720414, -0.306250, 0.570491, -0.916499, -0.020679, -1.460675, -0.075554, 0.512233, 0.651085, -0.548956, -0.064281, 1.214345, 1.005299, -0.427777, 0.495079, 1.579513, 0.820451, -0.605756, -1.023698, -0.186783, -1.345622, 0.843823, 0.476989, 1.685346, -1.876874, -0.963923, -2.281659, -1.296561, 1.208773, 0.770989, -2.878879, 2.181982, 0.761394, 1.760514, -1.286067, 1.320640, 0.140212, -0.840818, 0.815214, 0.843947, -1.923271, -0.875923, 1.287841, -0.795457, -0.626723, 0.786440, 0.493890, 1.503678, -0.693789, 0.188573, -1.074407, -0.219799, 1.288316, -0.117526, -2.090641, 0.102912, -1.715156, 0.266066, 0.772731, 1.387727, 0.741159, 0.695860, 0.411547, 0.562413, -0.369639, -0.017480, -1.283268, 0.780361, 1.198617, -0.291552, -0.114052, -0.126555, 1.469786, 0.733737, 0.251911, -1.535248, 1.172725, 1.307604, 0.428555, -0.592933, 0.999359, 0.098137, 1.063860, -0.764113, 1.456161, -1.045630, -0.802395, -0.203718, 0.123841, 1.156327, 1.290519, 0.473294, 1.119579, -0.984510, 0.404827, 1.864810, 0.005348, 1.034760, -0.676115, -0.498566, 0.176704, -0.629200, 1.265352, 0.046030, 0.633183, -1.390654, 0.289255, 1.864383, 0.568232, 1.353297, 1.334825, 1.308766, -0.882704, 0.592765, 0.065847, 0.853571, -1.491615, -0.222521, 0.781639, -1.906872, 0.115712, 0.739141, 0.051948, -0.208762, -0.519121, 0.117180, 0.503905, -0.364846, 0.030736, -1.470738, -0.186889, 2.120057, -1.095003, 0.465497, 1.086654, -1.278077, 1.222784, -1.155729, 1.723063, 0.386432, 2.238277, 0.691960, -2.142339, 1.465428, 0.456427, 0.722015, -0.976096, -0.085701, -0.447773, 0.646839, -0.198380, -0.242426, 0.644814, -0.928497, 0.204981, -0.667549, 0.928439, 1.042030, 0.444082, -0.301476, -0.675470, 1.255245, 0.471597, -0.684297, 0.980243, -0.005566, -0.787871, 1.189339, -0.443712, 0.070658, 1.239545, -0.332244, 0.344636, -1.002307, 0.618291, -1.905844, -0.486130, -0.416943, 0.212532, 0.716571, 0.896675, -1.129459, -0.650584, 0.024091, 0.017912, -1.670758, -1.597229, 1.230390, -1.310016, 0.588048, 0.788160, 0.060624, 2.222399, 0.307831, 0.551986, -0.315575, -0.005328, -0.432088, 0.029498, -0.596574, -1.285058, -0.320648, -0.766470, -0.464224, -1.009650, 1.540494, -1.997145, 0.706653, -1.014769, 0.707131, 2.051979, -0.652324, 1.343611, -0.184792, -1.483892, -0.878081, 0.910616, 0.765469, 0.181190, -0.427665, 0.112831, -0.590718, 0.315325, -0.960876, 2.109062, 1.078435, 0.700995, -1.058619, 0.033524, -0.062428, 1.721910, -0.438275, 1.999882, -0.621889, 1.545780, 1.162883, 0.732016, -0.720186, -1.623557, 0.311827, 1.266341, 0.745603, -1.704006, 0.759147, 1.057214, -1.859637, -0.626643, 1.383309, 0.854485, 1.235585, -0.619286, 1.145315, 1.532257, -0.361189, -1.481631, 0.616448, -0.086675, 0.850267, -0.607051, 0.210575, -0.914620, -1.009281, -1.199760, 0.225293, -0.356687, -0.107818, -0.026980, -1.129233, 0.033407, 0.877923, -0.075389, -1.201143, 0.083138, -0.471608, 1.656793, -0.146987, -1.438740, 0.855585, 1.424055, -0.456031, -0.914580, -0.073803, -0.414780, -0.324361, 0.817273, -0.788614, -0.525768, -1.575898, 0.207998, -0.931809, 1.425790, -0.011935, 1.069473, 0.411655, 0.469039, -0.801397, -0.036157, 0.078102, 0.036038, -1.608708, -0.539109, 0.312720, 0.709007, 1.198794, 1.262487, -1.433473, 0.761912, -1.133450, -0.534038, 0.990805, 0.958746, 0.487396, 0.377481, 1.335076, 0.951134, -0.522601, -0.058202, -2.136518, -1.516982, -2.720943, 0.246995, 0.203773, -1.943391, 1.046439, -0.359928, -0.703431, -1.693687, -1.298854, 1.617852, -1.069346, 0.976070, -0.669233, 0.917463, 0.340801, -0.678237, 0.353047, -1.146941, 0.068994, -2.129170, 0.098886, -0.905851, 0.769221, 2.073082, 0.488480, 2.643570, 1.439061, -0.130492, -0.136279, -0.286164, 1.345574, -0.310472, 0.475159, -0.987752, -0.417338, -0.564394, 0.324698, -0.837725, 0.578058, -1.493403, 2.406641, -1.769367, 0.596070, -0.695755, 1.188273, 1.781364, 1.366613, 0.709013, -0.923801, -1.829748, -0.191445, -0.325177, 0.570186, 0.584108, 1.480448, 0.059678, 0.976397, -1.085889, 1.142766, -0.851653, -1.326229, -0.580736, -1.349307, 0.982997, -0.382646, 1.058493, 1.158373, 1.804661, -0.147811, 1.965573, -0.524286, -0.431404, -0.445344, 0.401996, -0.128319, -0.372703, 1.165026, 1.118556, 0.309963, -0.646671, 1.735688, -0.935179, -0.322519, -0.310978, 0.907648, -0.407557, 0.088452, -0.526798, -0.633388, -0.745148, -0.802756, -1.482495, 0.687293, 1.244678, -0.169327, -0.594185, -0.090725, -0.623344, -1.198135, 1.330630, -0.263203, 1.356566, 0.075576, -0.397621, -0.787284, 0.903693, 1.317865, -0.295371, 0.827715, -0.328858, 0.036965, -1.089874, 0.585127, -0.734294, -0.550483, 1.713199, 1.949976, 0.088678, 0.322362, 0.997667, 0.460981, 0.519993, -0.141573, -0.804601, -1.060461, -0.026498, -0.541183, -0.594792, -1.239434, 0.726777, 0.625372, -0.858138, 1.507679, -0.299618, 1.001838, -0.227220, -0.644998, 0.748592, 0.841317, -1.732912, 1.576954, -0.578537, 0.576223, -0.170445, -0.208775, -1.069664, -0.548248, -2.018242, 1.256921, -1.421201, -0.618930, -0.178207, 1.396516, -2.629176, -0.291225, 1.317624, 0.612258, 1.281992, 0.305881, 1.084013, 0.760549, 1.323610, -0.649544, 0.466001, 0.197711, -0.883998, -0.070531, 1.014436, 0.245602, -1.158330, 0.914507, 0.044638, 1.860272, -1.320990, -0.341413, -0.903644, -0.615998, -0.229165, -0.025510, -0.117514, 0.582878, 0.470235, -0.360222, 0.321503, 1.254861, -0.478710, -1.504578, 0.616195, -0.695416, 0.130194, -0.980884, 0.782109, -1.028489, -0.544367, 0.980296, -1.125792, -0.979898, -1.148029, 0.609233, 1.755262, -0.818835, -2.397410, -0.792282, 1.898633, -0.178788, 0.744354, -0.555961, 0.302797, -0.479122, 2.263770, 0.757404, -0.575309, 0.333148, 1.055404, -0.871357, -1.038637, -0.302418, 0.648798, 0.285861, -1.366265, -0.132504, 0.070557, 0.085007, -0.088055, 0.751706, -1.608882, 0.078492, 0.361955, 0.825377, 0.238153, -1.323956, 0.076823, 0.402911, 1.572427, -0.289143, 2.055727, 0.303057, 1.004905, -0.172436, 0.058051, 0.189194, 0.642443, 2.411987, 0.557566, -2.448584, 0.109962, 0.173627, -0.346565, 1.755229, -1.645220, -0.338602, 1.870723, 0.467474, -0.259386, -0.595858, 1.543178, -0.321633, -1.258456, -0.356128, 1.759012, 0.235964, 0.069044, -0.144850, -0.901310, -0.478922, -0.893824, 0.627770, -0.133725, -0.886935, -0.420436, -0.926305, -0.652691, -2.928196, -0.180172, -0.274582, -1.143393, -0.606190, 1.095210, -0.275602, -1.462573, -0.445382, 0.379700, -0.311070, 0.137362, -1.308722, 1.046199, -0.462291, -0.493530, 0.136103, 0.341260, -0.193205, -0.205588, 1.243827, -1.365820, 0.150805, -0.322682, -1.931579, -1.390245, 0.553234, 0.284577, -1.159301, 0.184480, -0.773188, 1.494891, -0.716378, 1.142056, 1.692514, -0.298328, 0.120494, 0.517337, -0.572664, 0.604623, -0.121357, 0.206855, -0.881343, -0.723246, -0.829706, 0.493439, -0.643008, 1.279474, 0.154532, -0.443738, -1.788366, 0.318439, 0.009616, 0.144679, -0.234344, 1.540348, -0.191229, 1.801752, -0.735773, -0.316242, 0.319681, -0.279711, -0.553538, -0.362192, 1.940749, 2.273398, 0.678762, 1.246873, 1.639827, 0.393353, -2.211025, -0.449414, -1.217405, -0.058245, -0.379224, 0.134005, 0.106018, 0.409131, 0.626948, 0.536279, -0.459390, -0.727129, -0.076501, 0.270049, 2.220869, -0.898340, -1.255490, -1.112474, -0.986611, 0.242009, -0.454001, 0.996779, 0.590432, 0.079922, -0.485334, 0.567203, 1.303653, 1.027443, 0.524621, -1.521776, -0.784577, 1.347198, -1.020721, -0.024993, 0.118756, -0.507537, 0.361194, -1.262435, 1.033672, 0.131397, 1.373580, 0.063679, -0.661628, 1.618135, 0.135655, -0.714596, 1.084792, 1.073394, 0.944412, -0.836146, 0.831916, -0.404393, 0.078345, 1.577683, 1.265467, -0.086003, -1.714331, 0.861883, 0.283514, 0.321558, -0.944080, 0.247105, 0.235119, -0.685466, 1.267698, -0.620071, 0.169366, 0.730262, -0.527520, 0.381436, -2.715241, 0.348524, -1.583914, -0.738575, -1.156454, 0.167652, 0.670236, 1.612451, 0.627811, -0.515302, -1.993856, 0.220103, -1.054016, 0.294660, 1.241554, 0.332663, 1.781377, 0.058050, 1.060655, 0.519327, -0.008538, 0.975439, 0.709957, 0.260859, 0.666260, -0.321561, -0.750409, 1.307158, 0.411851, 0.989067, 0.018485, 0.112269, -0.667378, 0.980528, -1.676128, -0.811036, -0.475709, 0.930788, 1.534876, 2.764836, 0.825013, -0.394211, 1.129753, -0.182914, 0.382604, -0.390051, -0.656802, 0.599406, 1.833699, -0.789763, -0.669325, 1.222522, 0.953136, -0.045621, -0.727279, -0.619767, 0.863837, -1.935512, -0.383181, -0.286702, 0.577245, -0.579721, -0.699715, 0.720726, 0.658684, -0.909050, -0.015795, 0.447437, -1.765634, -0.184257, -0.827700, 0.323539, 1.285534, -0.020818, 0.396220, 0.291049, -0.798951, -1.782427, 0.213662, 2.169003, -0.145762, -2.652786, 0.755944, -0.094671, 0.918621, -1.575469, -0.096371, -0.159130, 0.787077, 0.000351, -1.289808, 0.562940, 0.633124, 0.764171, -0.243431, 0.571600, -0.491852, -0.065158, 1.003369, -0.100753, 0.377871, 1.425284, 0.895947, 0.851795, -1.064036, 2.073128, 0.318020, 1.408718, -0.019871, 0.861209, -1.112317, 0.391092, 0.118180, 0.335289, -0.212761, 0.894457, -1.067931, 3.365040, -0.236340, 0.168933, 0.783965, 0.547947, -0.085968, 0.289844, -0.089714, -1.772796, 0.090836, 0.339181, 0.227137, 0.220409, -1.153354, -0.436144, -1.012920, -0.005043, -1.118741, 0.443973, -1.191041, 1.760287, 0.463935, 0.550782, 0.454747, -0.989656, 0.711679, -0.340196, 0.689427, 0.484804, -1.099396, -0.639139, 0.057687, 0.182825, 0.347626, 0.038810, -1.548812, 0.094133, 0.876271, 0.082506, 0.763386, -0.019234, 0.590150, -1.364918, 0.167558, 0.985785, -0.818118, -1.039431, -0.519964, 0.847359, 0.024934, 1.791188, -1.930847, -0.672185, -0.668020, 0.118757, 1.201295, 0.229236, -0.008620, -1.005668, 0.815970, -0.207508, -0.173540, 0.129630, -0.633536, -1.846817, 0.180404, 1.069638, -0.118312, -0.437885, -1.183526, -0.558422, -0.593331, 2.025311, -2.249938, -0.731704, -1.546986, -1.633174, 1.871488, -0.695989, -0.235880, -0.365742, -1.030583, 0.379910, 0.976160, -0.257072, 0.187679, 1.958788, -0.420677, -0.450136, 0.034600, 0.163676, -1.560354, 1.996248, 1.515961, 1.036198, -0.320155, 0.806149, -2.007962, -0.428954, 1.035821, -0.320382, 0.336800, 0.729195, 3.036651, -0.740604, 1.065839, -0.687186, -0.017618, 1.918400, -0.707910, 1.045846, 1.828034, -0.089217, -1.791971, 1.131751, 0.398927, 0.379558, 0.441137, 1.673095, 0.596946, -1.446145, -0.260017, 0.047287, 0.468005, 0.963162, 1.187484, -1.308183, -1.862289, 0.350010, 1.454402, -0.586858, -0.245476, -0.465852, 0.267425, -0.237053, -0.252749, -0.328377, -0.667879, 0.047170, 1.813297, 0.465023, -0.603614, -1.159119, -0.444126, -1.740628, 0.129883, 0.968457, 0.031888, 0.366965, 0.222597, 0.745627, 0.074029, 0.464944, 0.780219, -0.636249, 1.304141, -0.211039, 2.233072, 0.450567, -0.672574, 1.293839, -0.982561, 2.075779, 1.160331, 1.689407, 0.228013, 0.385560, 0.223982, -1.645682, -1.797162, 1.273594, 0.314190, 0.586895, 0.556073, -1.086670, 0.318686, 0.433057, 0.680806, 0.020872, 0.413646, -0.563352, 0.979155, -1.047378, -0.277093, 0.773852, -0.299266, 0.578660, 0.323095, -0.180873, -0.070669, -1.428276, 1.826382, 0.215816, -1.860928, -0.004247, -0.799770, -0.584882, 0.378576, -0.500920, -0.752968, -1.088108, 1.636232, 0.558796, 1.367221, -0.143151, -0.222270, 0.019466, -1.754637, -0.583678, 0.301486, 1.177094, 0.348449, -0.158097, 0.067921, -0.768670, 0.904611, -1.406535, -2.466398, 0.851644, -1.573222, 0.544450, -1.168125, 1.718874, 0.049624, 0.068975, 0.399012, 0.351799, 0.066937, -0.289314, -0.358945, -1.083001, 0.668936, -0.047539, -0.261954, 0.576798, -0.991504, -0.684705, -0.494467, -1.337530, 1.538690, 0.356429, -0.933199, 0.788988, 1.658647, 2.345464, 1.698276, -0.157699, -1.515306, 2.683462, 0.544674, 2.023517, -0.042124, -1.487091, 0.573243, 0.346071, 0.931017, 1.544725, -1.621554, 0.779515, 0.851658, 1.209165, -1.237841, -0.856806, 0.833720, 0.377152, -1.440021, 1.123489, 1.833032, -0.642620, -0.075162, -0.930460, -0.636542, -0.521290, 0.657911, -0.579892, 0.077771, 0.145487, 0.514840, -0.127428, 0.949677, 0.130284, -1.245867, -0.634503, -0.012272, 0.668922, 0.370015, 0.227245, -0.839886, -0.554682, -0.394735, 0.136950, 1.976970, 0.560678, 2.096284, -0.622745, -0.427967, 0.222371, 1.647865, -1.126804, -1.191177, 0.004570, 1.411011, -0.103002, -0.424705, -0.231971, 1.389032, -0.178743, 0.296885, -0.766984, 0.709071, 1.397780, 1.211298, -1.619236, 1.379673, -0.545768, 0.200720, 0.644185, 1.399730, 0.762633, 1.293429, 0.798252, -0.397815, 1.762905, 0.824906, -0.969612, 0.413084, 0.528542, -1.805443, -0.557158, 0.956679, -0.321781, -0.431411, 0.049933, -1.645685, 0.076623, -0.496521, -2.686708, -1.341078, 0.146743, 1.145876, -0.522073, -1.418392, 0.642946, -1.116812, 0.334280, 0.410590, -0.869679, 0.996400, 0.307103, 1.423114, 0.261724, 0.064000, 1.054452, -1.988682, -0.423465, -0.301731, 0.523532, -0.247100, 0.745077, -0.437504, 0.147181, -1.716339, -0.542639, -0.137286, 0.244948, 1.150652, -1.612285, -1.163530, -0.440625, 0.551261, -1.096259, 0.342652, -0.443613, 1.118395, 1.121676, -0.944705, 0.889116, 0.245293, -1.317632, 0.374021, 1.628888, -0.806348, 0.989933, -1.611679, 0.133558, 0.077617, 0.165783, 0.943719, -2.274433, -0.667506, -0.740540, 0.086897, -1.900068, -0.779314, 0.370366, -1.250877, -0.259405, -1.824351, 1.324397, -0.080346, -1.099696, -0.753800, 2.011105, 1.141854, -0.421049, 0.385272, 0.164710, 1.928079, -0.654268, 0.487767, -1.256934, -0.424002, 0.939268, -0.240592, 1.008969, 1.094162, 0.771396, 0.657445, 1.042972, 0.752015, 0.913622, -1.964462, 0.003456, -0.893460, 0.150170, -0.490756, 0.181753, -0.194321, -0.901888, 1.787246, 0.608727, -0.522022, -1.403568, 0.535359, 0.968580, 1.314631, -0.311413, -0.391818, -0.852411, 0.660781, -2.188461, -0.629223, 0.448719, -2.448936, -0.275527, -0.882270, 0.715120, -0.932497, 0.865577, -0.781219, 1.768387, -0.188905, -1.910452, 0.423647, 0.968344, -0.213793, -0.559447, -0.940981, 0.831785, -1.727392, 1.143801, -0.040478, 0.338867, 2.382293, 1.218370, 0.175177, 0.573202, -0.630816, -0.258888, 0.200910, -1.413202, 0.046748, 0.924094, 1.779065, -0.970498, 0.102026, -1.778829, 1.318066, -0.071244, 0.293009, -0.255368, -0.596281, 0.436262, 0.698794, -0.568113, 0.162310, 0.910770, -0.598901, 0.653884, 0.139303, 0.159009, -0.353220, 0.533984, -1.087872, -2.193821, -0.583080, 0.335470, 0.524495, -0.354535, -1.252062, -0.586193, 1.127294, 0.214520, -0.508353, 0.743758, 0.703607, 0.807716, 1.874691, -0.758583, -0.222595, -1.804454, 1.282357, -2.403395, 0.480798, 1.581124, -0.697750, -1.549998, 0.580017, -0.026375, 0.731519, -0.663069, -0.380540, -0.048203, -0.477546, -1.648286, -1.503718, -0.504578, -0.222585, 1.695473, -0.441789, -1.567829, -1.325399, 0.014407, -1.082490, 0.451003, 0.455227, 1.038005, 1.817320, 0.666238, 1.613339, 0.377046, 0.065257, -0.939918, 0.191798, -0.148130, 1.811592, 0.383744, -0.724423, 0.057653, 0.178792, -0.072898, -0.730660, -1.425928, 0.334482, 0.873629, 1.736488, 0.470845, 0.593671, -0.329021, 1.150805, -1.215281, -1.692668, 0.676668, 0.962709, 0.907865, -0.230071, 0.547624, 0.674877, 1.062763, -0.038604, -0.262362, -0.840242, 0.134289, 0.943543, 0.731046, 0.492023, 1.856400, -0.413153, -0.160476, 2.140513, -0.081516, 2.380793, 0.336923, -0.850997, -1.609959, -0.520330, -1.718403, -0.359211, -1.544253, 0.068696, -1.548544, -0.269209, 1.465738, -0.526617, 0.114452, 1.056856, 0.710068, -0.205939, 1.720047, -0.218559, 1.148313, 1.879610, 1.457389, 0.467757, 1.417670, 1.435690, 0.588652, 0.499619, 0.108803, -0.240760, -0.277030, 0.820338, 1.442513, -0.119021, -0.385217, 0.770449, -1.288368, 0.896073, 0.500195, 0.416874, -1.027213, -1.376213, 0.435916, 1.931995, -0.346535, 0.478687, 1.574385, 1.277695, -0.250764, -0.090185, 0.167062, 0.419265, 0.113073, 0.168456, 0.662067, 0.419620, -0.767727, -0.868907, 0.926928, -2.215932, -1.145848, 0.472411, 0.549491, -2.490558, -0.896433, -0.779514, 1.349593, 1.019886, -0.725323, 1.106716, 0.403477, -1.199086, 0.652252, 1.758440, -0.141009, 0.224586, -0.476162, -0.765149, -0.416930, -0.318392, -1.028949, 0.406502, -0.795865, -0.764368, 0.179148, 0.807350, 0.236810, -0.068248, -0.820587, -0.239689, 1.509459, -0.135415, -1.338417, 0.722335, 0.332395, 1.920353, -0.169373, 1.007726, 0.631101, 0.832534, -0.848295, 0.399311, -1.699135, -0.702458, -0.078420, -0.785380, -1.364508, -0.697801, 1.877405, 1.225579, 0.164045, 0.896188, -0.958080, -0.510882, -1.755142, 1.142440, -0.400417, -0.018623, -0.078627, -0.722265, -0.529349, 0.523017, 0.398174, 0.032965, 0.066418, 1.351563, 1.041406, 0.740933, 0.423004, -1.591579, -0.032365, 0.297035, -0.217560, 1.219674, -1.117245, -0.663576, 1.122866, -1.987687, -0.760112, 0.673831, -0.549768, -2.619705, -0.733679, 0.189459, 0.246954, -0.457686, -0.576197, 1.494833, 0.191348, 0.218545, -0.307411, -0.159803, 1.328122, -0.806005, -1.027288, 0.726105, -0.601921, -0.247215, -0.345861, -0.835606, -1.161098, -1.362822, 0.510777, -0.179698, -0.730879, -1.089370, -1.597180, -1.515867, -1.618301, 0.606443, 0.479950, 0.048039, -0.866761, -0.971359, -0.802361, 1.424969, 1.140857, -0.451990, -1.221995, 0.144134, 1.230056, 0.410692, -0.497828, -2.025460, 1.576786, -0.006840, -0.928410, 1.770164, 0.161853, -0.509058, 0.119925, -0.718424, -1.650275, -0.243898, 0.421852, -0.108430, 0.721182, 0.193983, -1.617668, 0.058490, 0.067884, -0.564173, -0.893146, -0.126036, 0.788910, -1.219243, 0.594939, -0.975989, -0.284461, -0.176849, -0.657271, 0.464606, -1.228317, -0.077306, -2.044564, 0.211119, -0.048180, 0.359618, 1.877659, -2.765362, 0.316579, 0.284979, 1.127269, -0.715882, -1.055688, 1.266683, -0.706145, 0.890804, 0.074912, 0.885699, 0.712331, 1.156186, -0.927811, 0.150206, 0.466549, 1.222076, 0.240960, -0.175015, -0.095842, -0.324176}, + { 2.862805, -0.055079, 0.774972, -1.141454, 2.260701, -1.679269, 0.752509, 2.256575, -1.337693, -2.347305, 1.380400, -0.571524, -1.019575, 0.815122, 1.200709, -1.203387, -0.199704, 0.222750, -0.615129, 0.230635, -0.128402, 1.470511, -0.181106, -1.139594, 0.534922, 0.761732, 0.422224, 0.916319, 0.650734, -0.339850, -0.840332, -0.598169, -0.429579, 0.474558, -0.809438, -0.662010, -0.086837, -1.189614, 0.160609, -0.816881, 0.262597, 0.907053, -1.438818, -0.017621, 0.088128, 1.545372, -0.661200, -1.090389, 0.173265, 0.987569, 0.053265, -1.845255, 0.424057, 0.579740, -1.934206, 1.374182, -0.060964, 1.089683, -0.460019, -1.028916, -0.266322, 1.775652, -0.488248, 1.106367, -0.880685, 0.464462, 0.300249, -1.568923, -0.280548, 1.423567, -1.102395, 0.078975, 0.392307, -0.032044, -0.025634, 0.754589, 0.149412, -2.203666, 0.582953, -0.615667, 1.451294, 1.560304, -0.082468, 0.081205, 1.781244, 1.602240, 0.938815, 0.810498, 0.636674, 0.060805, -0.203021, -1.225802, -0.553038, 1.160696, 0.130256, -2.402325, 0.046702, -0.014695, -0.092477, -1.744948, 0.741617, -0.346356, -0.271222, 1.014599, -0.776657, -1.541217, -0.387776, -2.296592, 0.452384, 0.581440, 0.351426, -1.791589, -1.019302, -0.083217, 1.486979, -0.254389, 0.239009, 0.858489, -0.946351, 1.416381, 0.192624, -1.731287, -0.489328, 1.057223, 0.937465, 2.255023, 0.594830, -0.398539, -1.413300, 0.228512, 0.052861, -1.335543, -0.235630, -0.191580, -0.168652, 3.024351, 0.921437, -1.435274, -0.504809, -1.340963, -0.144373, 0.664876, 1.411939, -0.610662, -0.968175, -0.321519, 2.531991, 0.713780, 1.892886, 0.717247, 0.378514, 1.041009, 0.344396, -1.208437, 0.020119, -1.106887, -1.509934, 0.038878, -1.517905, 1.334812, -0.119707, -0.322456, 0.429299, 1.139497, -0.239490, -0.063916, 0.212850, 0.433074, 0.168506, -0.547503, -1.246065, -0.296375, -1.520586, -0.443032, 0.564153, -0.395164, 0.418155, -0.392422, -1.171012, 0.047384, -0.045579, -0.275369, -0.167096, -0.271397, -1.736368, -0.055999, -0.412097, -1.940842, 0.801939, -0.390747, -0.021345, -2.242039, 0.759023, -0.401233, -0.008906, 0.086761, -3.148546, -0.014633, -1.255185, -0.197963, 0.499904, -1.015338, -0.553288, -1.999196, 0.535317, -0.119758, -1.879797, 0.126412, 0.900693, 0.265815, -0.046969, 1.927617, 0.665195, -2.027726, 0.914742, 2.230643, -0.363767, 0.392706, 0.211937, -0.775902, -1.322912, 0.097276, 1.205778, 0.024985, 0.872575, -0.595012, -0.463374, -0.237647, -1.705612, -0.314946, -0.163237, 0.022840, 0.441292, -0.441778, 0.406889, -0.732251, 0.290748, 2.540212, 2.467465, 1.609549, 0.269302, 0.221839, -1.019998, 0.015061, 0.332426, -0.057717, 0.506807, -0.863995, -0.155699, -0.534986, 0.602320, 0.777991, -0.542535, 0.036304, -1.298724, 2.003386, 0.873659, -0.442744, -0.554913, 0.187128, -0.875161, -0.659138, 0.960926, 0.681407, 1.883780, 0.755181, 1.806294, -0.760921, -0.249610, 0.226731, 2.379432, 1.480653, 0.793411, -1.645328, 2.100164, -0.564429, 0.873865, -1.423064, 0.591655, -0.580871, -0.342766, -0.100122, -1.092930, 0.861609, -0.615473, 2.219130, 1.384670, 0.394472, -0.913598, 1.667843, 0.078286, 0.458539, -0.297759, 1.147536, 1.412255, -1.633393, 1.758834, 1.830703, 1.406932, 0.581100, 0.872086, 0.603528, -0.683173, 0.010625, -0.350921, 0.109371, -0.288944, 0.302430, -0.194304, 0.515730, -0.869603, 0.300686, -0.764533, 0.916653, 0.764045, -0.349414, -0.980539, 0.325174, 1.276384, 1.459703, 1.723923, 0.223135, -0.736426, -0.494964, 1.084544, -0.875419, 0.663341, 2.468405, -0.510039, 0.420929, -1.184971, -1.190352, 1.598543, -0.686843, -0.484498, 1.777436, -0.847051, -0.702192, -1.421314, -1.169702, 0.168704, 0.628094, 0.565972, -1.303828, 0.512755, 0.710569, -0.049343, 0.256436, -0.696881, -0.631460, -0.773008, 2.177222, 0.366149, 0.572048, 1.140816, -0.106071, -0.652278, -1.051734, -0.857246, -1.911447, -1.696203, 0.907827, 0.167587, -1.865878, 1.172057, 0.291157, 1.547794, 0.216062, -0.181774, -0.342360, -1.325443, -1.295936, -1.359779, 1.111858, 0.614708, -0.582072, -1.220280, 0.868146, -0.733827, -1.111499, 0.191788, -1.034563, 0.124301, -0.643812, 1.507305, 0.702366, 1.508669, -1.902196, -1.304462, 0.622312, -1.261340, -1.527987, 0.120765, -1.258952, -0.443027, 0.120529, -0.465950, -1.770310, 1.411059, 1.609665, 1.048655, -0.344639, 0.976127, 0.875106, -0.062123, -0.230796, -1.191762, 0.004565, 1.294138, 0.418975, -0.211644, 0.233567, 1.076954, 1.740858, -0.879942, -1.103942, -0.946459, 0.832112, 2.694114, -0.445494, 0.030589, 1.271202, 0.635328, -0.133948, 0.631263, -0.278569, -0.793820, -0.075490, 0.068365, 0.289050, -0.053216, 1.453635, 0.906594, -0.114293, 0.262725, -0.111293, -1.948131, -0.616846, 1.130461, -0.553615, 1.466176, 0.857891, -0.000997, 0.067258, 0.964116, -0.439870, -0.757706, -1.457814, -1.903937, -0.722237, -1.277658, -1.931439, -0.830236, -1.646871, -1.755909, -1.479482, -0.227277, 0.666450, -1.047559, -0.883259, -0.068015, 0.382690, -0.485674, -1.142806, -1.315928, 0.300477, 1.929442, -0.210759, -0.807326, 0.640901, -0.519791, -1.584384, 1.483121, 0.483392, -1.028480, 0.438399, -1.905260, 1.190767, 0.090708, -0.154290, -1.251500, 1.448276, 0.147552, -0.375751, -1.930549, -2.220884, 0.350261, 2.006223, -0.228996, 0.912132, -0.177234, -1.326807, 0.125387, -0.573912, -0.345648, 0.001936, -0.259999, 0.460897, 0.256703, 0.136170, 1.366553, -1.866073, -2.285827, -0.396193, -0.560098, 0.250766, -0.355867, -1.168230, -1.002328, 1.488727, 0.511628, 1.278041, 2.516599, 1.533667, -1.196795, 1.574384, 0.508368, 0.021525, -0.719401, 1.738884, -0.439220, -0.271159, 0.073705, -0.423357, 2.769957, 0.580262, -0.129949, -0.130834, 0.026926, -0.392453, 0.203452, -0.654698, -0.833765, -0.470109, 0.103617, 0.613531, 0.066534, 0.785086, 0.263243, 0.418203, -2.083832, -0.852046, 0.514020, 0.437121, -0.848208, 0.586873, -0.964896, -0.540749, -1.345254, -1.021527, 1.737145, -0.611362, -0.915631, 1.694011, -0.927213, -1.409397, -0.532347, 0.394334, 0.617731, 0.267884, -0.029301, 0.816691, 0.687833, 1.832307, -2.631804, -0.058050, 1.959118, -0.242166, 0.991681, 0.389693, -0.873272, 0.163788, 1.168925, -1.120898, -0.746679, -1.547816, 2.560863, 2.585150, -0.305598, -0.850272, 1.964402, -0.291312, 0.513924, 0.986040, -0.213317, 1.022909, -1.212145, -0.177395, -0.568466, -0.759776, 0.021262, 0.490976, 0.185360, 0.935610, 1.128509, 0.596774, -2.126489, 0.559761, -0.206284, -0.642376, 0.427731, 0.134940, 0.984933, 0.698331, 2.624682, -0.096881, -0.692019, -0.306763, -0.861633, 0.379541, -0.060453, -0.791853, -0.832291, -0.480630, 0.867301, 1.003000, 0.591348, -0.661784, 0.822656, 1.991155, 0.334843, 2.080361, -1.482000, 0.653798, -0.141131, 1.561272, -0.093648, -0.851876, 2.193886, -1.430538, 0.738648, -0.345708, 0.883874, 0.020108, 0.443615, 1.583616, -0.605803, -0.895959, -0.950299, -0.452716, 0.183693, -1.550778, 0.463577, -0.176291, 0.208889, -0.838101, -0.897683, 0.818201, -0.622000, -0.223191, -0.385666, -0.502974, 0.420750, -1.664967, 0.124552, -0.505393, -0.626531, 0.301995, -0.915321, -0.275556, 1.460275, -1.357400, -0.984554, 0.346813, 1.985741, 0.494134, 1.045418, 1.256769, 0.000185, -1.341024, 0.459769, -0.120296, 0.978980, -0.024539, -0.399059, -0.925712, 0.449016, 0.816990, -0.317828, 1.112426, -0.474662, 0.189146, 0.263294, 0.460553, 1.202794, 0.349841, 0.902893, -0.833658, -0.673319, 0.335607, -0.696796, -0.306836, -0.334021, -0.467778, -0.138161, -2.886442, 1.347498, -1.270764, 0.008506, -0.024363, -0.161631, -0.733965, -1.019645, -0.365329, -0.838168, 0.597280, 0.014726, -0.238466, 1.032355, -0.744688, 0.579447, -1.031236, -0.653502, -0.338192, -0.885247, -0.176712, 0.219319, -1.249782, 1.065476, 0.178734, -0.764397, -0.988028, -1.586403, -0.747845, 0.097808, -1.282020, -0.111575, 1.326760, 1.682221, -0.730144, 1.934580, -0.936550, 0.160623, -1.050134, 1.086140, -0.189244, 1.267710, -1.228234, 0.337209, 1.113505, 0.875612, 1.622142, 0.325386, 1.183146, -0.581733, 0.127758, -0.331038, 0.719606, 0.201163, 0.077440, -0.487119, 0.969083, 0.551454, -1.585530, 1.089882, -1.111997, -1.694835, 0.874081, 0.094421, -0.334199, -0.712513, -0.113034, -0.098136, -0.629828, 0.260838, -0.034882, -0.172363, 0.790472, 0.342020, 2.247909, -0.885511, -1.810432, 0.815043, -0.378366, 0.826734, 0.667323, 0.771799, 0.471999, -1.842455, -0.692768, 0.127668, 0.908567, -0.143098, 0.742829, -0.804314, -1.205628, -0.047181, 0.385129, 1.857316, -0.130419, 0.450560, 0.173261, 0.460997, 1.338095, 0.995024, 1.698022, -1.751673, 0.511225, -0.726934, -0.123440, 0.697253, 0.452341, -0.503362, 0.017144, -0.701327, 1.058353, -1.357485, -2.110110, 0.081862, 0.753633, 1.432027, -0.468055, 2.192409, -1.640586, -0.043345, -0.807122, -1.213998, -0.125547, -1.036359, -0.740362, -0.292852, -1.051465, 0.004406, -1.180191, -0.245046, -0.343697, -0.782793, 1.177590, -1.064535, 0.102157, -0.175939, -0.147807, -0.840903, 1.037740, 1.342594, -1.374074, 0.886953, -1.342092, 1.462907, -0.028353, -0.278185, 0.008560, 0.914976, -0.740753, -0.221450, -0.719429, -1.229256, -0.175923, 1.178092, 0.970058, -1.291418, 0.042490, -0.831705, -0.372105, -0.747072, 1.205138, 2.120681, -2.040428, 1.943062, -0.645126, 1.662537, -0.201962, -0.307762, -0.719362, -0.356205, -0.058687, 1.033868, -0.313321, -0.201639, -0.873468, -0.098231, 0.605892, 1.532150, -0.510630, 0.950387, -0.007952, 1.844554, -1.680704, 0.526797, -2.300790, -0.026488, 0.434504, 0.276499, -0.998025, 0.683560, -1.254076, -0.636350, 0.800286, -0.661681, 0.572905, -1.405699, 0.501224, 1.151534, 0.706235, -0.347593, 0.234619, -0.713301, -0.693937, -1.477237, -2.317165, -0.217108, 1.200441, -0.086572, 0.360917, 0.080780, -1.251565, -0.074402, -0.757023, -0.101102, 1.161566, -0.254443, 1.102280, 0.910695, -2.103535, -0.511631, 0.245754, 0.450443, -0.463173, 0.087945, 0.232899, 0.714814, -0.690347, -0.463652, 0.021526, -0.937332, 0.349170, 0.376947, -0.329737, -1.261278, -0.284626, -0.588387, -2.462261, 0.999957, 0.268277, -1.951380, -0.028624, -2.679152, 1.933939, -2.231595, 0.894605, -0.183204, -1.305088, -0.897796, 0.314671, -0.408532, -0.376586, 0.645120, -0.900563, 0.514326, -1.362231, 0.871704, -0.790682, 0.376796, 1.560026, 1.869531, 0.230525, 2.088380, 0.902482, -1.113357, 2.679903, -0.926810, -1.343108, 0.755159, 2.869156, 0.215346, 1.860007, -0.438254, -1.347817, -2.556280, -0.838292, -0.184814, -0.418817, -0.170908, 0.052636, 1.348364, 0.311738, -0.205501, -0.916612, -0.035586, 1.166911, -0.600343, 0.286783, 0.444816, 1.207589, 1.721134, -0.406469, 1.036417, 0.550735, -1.056240, 1.971313, -1.008518, 1.723208, -0.578401, 0.843169, -1.028315, -0.354688, 0.360194, 1.192937, -1.506496, -1.926531, -0.040319, -0.401523, -1.228902, -1.368721, -0.785987, -0.458260, -0.802843, -1.099481, 1.047103, -0.518483, -0.802057, 0.421114, -0.856605, 0.290831, -0.815047, 1.072205, 0.154842, -1.861768, -0.086060, -0.399813, 0.836449, 0.268635, -0.959067, 0.959501, 0.596188, 1.909470, -0.136188, 0.376333, 0.366699, -0.119023, 1.424368, 0.712188, -0.177106, 0.336395, -0.327290, 0.967748, -0.386259, -0.520617, -0.027060, 1.099961, 2.096384, -0.119895, 1.678726, 1.894531, -0.921799, -0.994215, 1.323987, 0.110405, -0.982346, 0.615777, -0.341347, -0.116174, -1.715772, 0.340282, -0.213124, -0.315225, -1.199234, 2.784106, 1.245832, -0.531107, 0.205862, -0.171456, 1.083205, 0.039168, 1.018793, -0.433841, 1.800553, 1.158686, 0.237026, 1.897689, 1.338294, -0.811174, 0.804326, -0.255533, 0.109783, 1.104240, 0.399912, 1.526089, 0.130539, 0.906667, 0.065359, -0.715042, 0.294772, -0.099880, -0.071202, -0.419434, -0.430633, 1.195527, -0.218813, -1.473798, 0.192561, -0.698243, -0.065420, 0.550605, -1.053325, 0.753022, -0.996681, 0.843815, -0.730883, -0.163559, -0.887160, 1.224710, 0.868163, 0.729518, 0.568670, 0.470305, 1.414411, 1.361466, -0.576445, -0.335978, 0.171132, -0.357712, 0.285636, -1.376695, 0.879784, 0.129563, 0.936618, 3.338324, 1.229329, -0.620441, 0.030631, -1.243033, -1.018620, -0.884635, 0.315199, 0.696165, -0.147759, 0.063326, -0.341085, -0.139851, 0.339181, -1.633720, 0.259913, -0.783926, 0.373557, 2.782969, 0.715170, -1.030379, -0.617391, 1.689720, -0.869971, -2.268611, -0.142380, -0.671752, 0.824527, 3.014240, 0.231811, 0.893429, -0.447364, 1.115379, 0.866379, 1.585907, -0.550756, -0.131154, 0.689210, -1.009183, 0.152085, 0.475368, 0.293765, -1.266501, -0.308494, -1.596751, -0.278467, -0.816446, -1.006395, 0.166213, -0.601790, 0.074295, 0.634215, -0.052263, -0.301493, -0.535001, -1.654554, 1.001408, -0.581678, -0.592085, -1.320397, -0.045455, -0.407639, -0.151382, -0.864388, -2.185694, 0.540270, 1.331660, 0.740703, 1.824002, 0.985745, -0.040701, -0.910375, 0.111393, -0.072399, 0.456052, -1.159282, -1.134065, -0.641860, 0.168773, -0.230211, -0.219429, -0.414769, 0.077143, 0.602705, 1.681179, -0.032419, 0.470832, 1.588859, 2.191808, 0.004546, -0.465359, -0.973584, 1.659499, -0.840540, -0.124305, 0.374858, -1.342901, 1.692369, -0.772489, 0.184488, 0.685559, -0.585160, -0.501749, 0.673514, 0.040315, 0.655502, 0.121983, -0.485158, -1.552336, 0.137731, -0.658367, 0.550480, -0.220314, 0.072114, -0.557420, -0.850528, -0.815940, -0.652968, 1.029018, -1.281104, -2.678572, -0.497858, -1.502676, 1.098647, 0.097932, -0.918647, -0.366060, 2.446311, -0.494477, -0.130439, 0.246458, 0.650712, -1.615144, 1.350366, 1.502006, 1.926232, 0.050450, 0.306973, 0.475758, -0.640836, -0.895342, 0.306525, 2.634925, -0.033872, -0.052714, 1.641928, 0.553396, 0.764828, -0.444489, -0.281146, 0.132946, -0.169099, -0.128860, -0.202719, 0.419785, -0.070600, -1.123784, 0.138541, 0.970354, 1.049334, -0.300716, 1.267099, -1.075961, 0.760648, 0.011874, 0.409402, 1.810170, 1.113363, -1.079479, 1.027708, 1.664792, 0.489676, -0.988489, 0.076389, 1.259863, 0.160376, 0.629402, 0.934830, 0.221643, 0.241225, -1.761224, 0.852538, 0.341221, -0.332156, 1.174370, 1.867658, -0.121777, -0.711688, -2.295488, -1.770757, 1.601328, -0.353370, -0.935510, 0.385809, -1.124324, -0.939126, -2.225066, 0.373015, 0.715532, -0.248635, -1.213359, -1.099519, -0.120215, -0.517905, 0.709855, -1.488343, 0.033749, -0.301047, 1.610517, -0.959937, -0.549391, -0.168589, -0.297758, 1.401289, 0.378295, 1.463036, -1.022264, 0.478984, 1.226555, -1.049750, -0.003447, 0.598199, 0.927658, 1.004276, -1.673355, -1.463935, 0.249271, -0.533080, -0.677964, 1.921044, -2.073379, 1.254481, 1.798632, 0.791922, -0.314163, -0.387631, -1.216206, 0.614247, -1.706924, 0.557358, -0.886043, -0.518478, -0.970963, -0.229862, 0.006838, 0.398514, -0.204490, 1.241636, -0.056705, -0.235172, 1.383050, -0.344179, -0.397473, -0.539577, 0.167826, 0.340591, -1.958424, 1.504309, -0.522636, 1.062583, 0.661992, -1.873474, 0.126089, 1.363839, 1.617063, -0.112732, -0.937516, -1.812903, -0.032315, -1.374682, -1.366695, -1.111225, 0.125841, -0.664806, -0.513175, 0.512025, -0.548643, -1.352860, 0.805216, 0.933328, -0.111566, -1.938313, 0.543197, -0.252600, -0.039377, 1.446332, -1.783591, -0.526295, -1.361761, 1.272745, 2.068490, 0.836975, 1.145567, -0.517356, 1.294285, -0.213064, 0.186970, -0.628233, -1.341362, 0.959694, 0.797501, -0.439631, 1.718707, -1.464268, 1.538225, -1.830225, 1.157263, 0.328792, -1.815510, -1.002149, 0.267550, -0.545501, 0.517463, 1.682639, 0.845633, 0.892939, -0.804660, 0.862171, -0.373519, 0.661528, -0.771302, -0.427637, -0.834072, 1.348785, 0.491987, 2.190373, 2.457416, 0.445713, -0.951053, 0.232683, -0.272204, -0.583218, -0.392077, -0.628063, -0.084245, 0.333291, -0.147265, -0.945695, 0.712070, 0.765837, 0.765508, -0.079538, 1.051033, -1.776370, -0.035073, 0.246485, 0.242234, -0.740224, 0.297872, 0.890660, -1.342553, -0.363605, -1.579738, -1.372061, -1.519058, 0.320677, -2.003026, 0.091183, 0.885303, 0.775565, -2.160908, -0.119447, 0.667350, -0.357806, -0.640622, -2.189891, 0.159689, -2.394003, -0.879651, -1.084957, -1.730756, -0.308818, 0.540626, -1.173607, 0.787882, -0.224947, 0.111080, -0.092843, -0.604165, 0.877154, -0.775970, -1.299013, 0.207478, -0.563260, -0.637041, -0.868930, -0.798841, 0.424707, -1.323236, -1.863457, -0.152687, -1.562774, -0.716138, 0.001507, 1.902444, 1.099069, -0.483896, 0.057232, -0.565703, -0.047181, 0.764037, -0.679941, -0.049898, -0.282916, -1.423038, -0.701279, -0.702325, -0.851669, -1.092972, 1.132937, 0.862394, -1.574666, 0.005616, -0.280045, 0.052933, 0.114316, -1.885117, 0.084470, 0.689191, -0.642140, -0.260015, 0.294884, -1.221358, -1.563230, 0.930023, 2.331087, 0.682631, -0.507299, -2.176593, 0.127847, 1.250863, 1.049228, 0.760307, 0.290862, 0.913321, -1.275750, 0.630891, 0.889809, -0.698100, 1.031630, 0.176767, 0.896319, -2.166147, -0.042406, 0.816935, 0.085425, -1.291574, 0.715948, 0.785372, 0.032003, -0.008905, -0.775458, -0.782831, -0.019636, 0.739469, -1.555600, 0.727035, -0.789567, 0.443105, -1.375318, -0.189659, -1.898896, -0.640718, -1.089822, 0.255329, 0.105308, 1.490597, -0.093684, -0.539996, -0.002446, 0.568707, 1.025302, 0.172220, -0.767021, -0.196065, 1.727901, 2.270144, -0.240150, 0.307770, 0.138438, -0.417119, -0.099015, -0.074702, -0.051139, -0.230765, 2.143932, 0.468362, 1.049745, -0.231191, 0.488994, -0.384419, -1.434802, -0.529508, 0.397596, 0.603413, -1.747145, -0.607655, -0.424843, 0.996237, -0.012519, -0.645429, 0.403621, -1.370830, 0.010921, -0.367657, 1.519422, 0.617146, 0.564209, 0.948729, -0.385076, 0.304248, 0.713241, 0.979505, -0.819220, -1.232091, 1.468559, 1.406151, 0.586226, 1.453624, -0.696577, 0.136521, 0.257013, 0.007892, 0.376690, -1.598682, -1.080180, -0.701879, -0.614127, -0.047640, 1.079236, -1.398191, -0.120676, 0.192088, 0.805822, 0.367607, 0.444702, 0.056774, 0.418836, -0.816752, -0.113807, 0.768314, -0.839684, 0.325392, 0.432421, -0.728848, -0.121026, -0.092131, -0.848049, 1.082806, -0.502087, -1.155917, 1.121064, -0.342943, -0.375877, -1.406312, 0.387267, 0.424086, 0.826730, -0.326574, 0.467242, -1.264390, -0.480366, -1.091095, 0.043079, 2.174098, -0.082880, 0.072349, 1.286701, 1.059599, 0.751107, 0.350151, -0.668868, 0.105018, -0.261374, -0.716429, 0.942878, -1.152659, -0.873781, -1.957849, 0.757286, -0.092357, -1.478378, -1.032509, -0.427794, 1.061623, -0.990963, 0.711382, 0.569579, -0.429175, -0.022602, 0.886366, -1.328673, -1.225251, 0.984478, 1.505840, -0.533593, 0.668489, -0.801922, 1.400971, 1.451241, -1.881531, -0.855081, 1.404101, 1.979957, 0.040533, -0.126944, 0.014807, 0.267048, -0.454474, 0.178847, 0.506511, -0.378687, -1.028255, 0.571825, 0.419263, 1.184437, 0.353132, -1.798233, 0.972242, 0.375284, -0.258490, 1.441418, 0.679235, 0.610537, 0.555688, 1.167421, -2.099960, -0.121467, -0.093931, -1.122853, 0.235235, -0.072288, -0.605430, 0.126359, 1.146718, -0.089143, -0.085058, -0.223924, -1.632909, 2.035854, -0.276491, -0.390018, -0.845120, -0.110919, -1.213067, -0.310876, 1.276559, 0.979004, -0.478605, 0.457094, -1.568804, 0.389232, 2.107067, -0.277936, -1.038638, 0.631440, -0.000560, 1.131747, -0.128699, -0.043246, 0.000567, -1.301971, -0.772563, 0.221700, -0.742065, 0.947594, -1.605278, -0.111451, 1.353028, -0.600437, -0.346771, 1.399873, -1.345483, -0.853759, 1.732354, 1.147301, 1.468050, 1.263324, -1.332458, -0.877993, -2.130314, 0.351732, 0.236944, -0.434476, -0.848425, -1.396123, -0.405136, 1.422360, -1.966814, -0.266577, 0.176106, -0.940655, 0.438934, 1.116838, 0.317558, 0.664408, -0.130431, 2.069849, -0.040232, -0.289653, -0.672048, -0.340405, -0.084344, -0.474162, 1.085321, 0.820224, 0.991162, 0.415528, 0.577902, -0.100700, -0.764808, 0.547872, 0.892877, 0.101686, -2.232623, 0.218407, -0.107334, 0.053125, -0.034452, -0.430041, -0.774613, 1.318963, -2.707061, 0.244324, -0.423788, 0.101224, -1.487005, 0.637713, -0.850520, 1.389812, 0.336309, -2.611636, 1.097802, 0.447583, -0.838241, 3.420436, -1.068536, 1.389419, -0.241273, 0.904938, -0.818239, -0.221534, 0.172794, 1.878394, -2.369473, 0.538834, -0.969446, -0.371926, 1.024396, 0.454268, -0.010175, 1.166771, 0.742516, 0.214392, -1.569085, -0.043797, -0.308736, 0.464072, -0.134790, -0.113056, -0.500300, 0.972351, 0.357009, -0.778562, 0.747917, 0.713485, 1.530468, 0.190826, -0.134805, -1.745339, -2.060433, 0.521381, -0.268538, 1.578888, 0.005915, -1.441188, -1.352721, -0.018647, -0.930117, 1.206810, -0.902351, -0.163161, 0.410921, 0.264951, 1.330335, -1.040025, -0.803937, -1.503077, 0.453019, -0.396428, -1.107746, 0.513104, 0.373658, -0.224492, 1.002628, 1.242675, -2.210689, -1.162366, -1.571850, 0.079017, -0.230274, -1.339020, 0.096714, 0.618877, -0.430763, 0.101277, -0.806072, -0.032787, -0.321225, 0.649279, 1.782410, -0.941268, -0.429839, 1.330861, 1.447174, -1.025736, 1.726171, -1.571461, 0.312726, -0.082246, 0.724114, 0.885492, 0.032952, -0.921404, 0.803974, -0.972846, 0.682970, 0.869749, -1.456824, -0.996198, 1.412127, -1.271357, 0.052844, -0.592720, 0.449044, 0.543283, -1.543620, 0.770803, -0.075263, 0.317279, -0.372157, -1.050912, 1.144678, 3.093191, 1.662531, -0.121094, 0.225683, 0.806632, 2.977509, 0.896518, 1.498224, -0.487309, -2.033720, 0.911177, -1.171702, 0.949133, 2.079720, 0.253759, 0.911926, -0.998689, 2.242846, 0.639870, 0.558231, 1.165567, -1.413233, -0.184249, -0.129191, 0.050413, 0.460122, -2.127116, 1.026417, 0.711223, -0.601544, 0.585046, 0.937544, 0.555648, 0.043097, -0.748606, -0.021981, 1.002368, 0.696589, 1.839437, -0.653013, 0.298310, 0.337771, 0.422614, 0.250487, 0.483169, -0.138281, 1.491554, 0.310236, -0.133642, 0.268060, -0.656293, 0.856722, -0.381889, -0.179795, 1.031471, -1.068985, 0.480502, 0.879212, -0.383312, 0.530000, -0.000189, 1.158521, -0.203352, -1.745895, -1.141183, 0.541767, 0.173407, 0.028366, 2.033123, -0.449244, -0.025609, 1.186347, 0.410037, 0.557129, -0.723942, 1.098324, 0.689513, -0.333536, -1.875729, 0.932217, 0.913292, 1.808887, -1.012943, -0.530243, 0.352510, 0.908005, -0.268952, -1.580704, 0.501765, -1.292741, -1.230967, 0.275808, -0.906487, -0.495648, 0.027220, 1.114617, 0.094763, -1.080792, 1.523810, -0.774519, 2.496188, 0.066431, 1.488420, -2.105661, 0.661336, 1.677653, -0.274637, 0.758960, -0.283874, 0.848195, -1.100285, -0.101953, 0.306504, 1.485316, 0.589264, -0.784468, 0.615491, 1.348166, 1.164209, -0.038890, 1.232857, 0.304724, -2.331403, -0.461512, 0.006976, -0.608258, -0.882697, -0.866727, 0.569431, 0.717090, -1.685648, 1.007488, 0.708607, -0.337872, 2.451992, 0.971709, -0.156814, -0.686672, 0.126982, 0.829377, 1.049799, -0.890542, -0.085022, 0.118800, -1.823866, -1.169456, -0.723808, -0.511440, 0.854272, -0.009668, 0.209245, 0.013302, -1.020211, -0.502164, 0.222711, -1.119974, -1.278024, -1.649244, -0.548986, 0.665538, 0.662380, 0.405251, 0.282164, -0.002029, -1.246852, -0.370449, 0.393767, 1.644471, 0.426126, 0.387291, -0.674875, 1.038076, 0.600103, -0.096612, 0.325958, -0.818657, 0.477243, -1.199837, -0.869795, -0.881705, 1.958618, -0.671609, -0.147153, 0.010151, -0.237564, -0.394377, 0.250500, 0.149292, 0.158081, 1.008671, 1.309021, 1.472144, 1.343242, -1.130392, -0.682410, 0.329447, 1.598609, -0.166066, 1.833190, 0.057439, 0.559181, 1.442972, -0.228773, 0.252063, 0.639607, 0.739787, 0.291796, 1.093051, -1.457751, -2.159760, 0.564411, 1.146052, 0.776249, -0.149219, 0.112510, 0.492335, 0.130283, 0.859809, -0.033366, 0.409701, -0.654081, 0.145960, -0.335490, -1.190467, -0.088920, 0.606310, 0.853640, 0.853195, -0.132278, 0.864953, 0.188628, -0.212323, -1.115402, 2.274409, -1.021911, 0.431413, 0.465923, 0.999762, -0.142977, 0.521905, 1.040826, -2.057496, 0.888147, -0.285624, 0.887932, 0.525930, 0.352817, -2.100249, -0.357368, -1.235392, 0.243378, 0.925334, 1.633089, -0.461984, 1.062828, 0.602230, 1.559014, -1.126593, -0.497828, -0.172161, -0.569687, 0.919834, 0.378514, 0.663484, -0.168105, 0.076585, -0.004925, 0.615745, -0.278400, -0.018738, 2.383155, 1.126474, -1.967811, 1.885509, -0.882970, 0.376107, 0.095518, 0.682775, -0.627919, 2.030618, -0.905891, -0.079417, 0.811254, 1.487391, 0.541125, 0.117364, 0.246623, -0.910617, 1.431684, 1.106386, -0.190946, 2.436257, 0.572403, -0.859946, 1.280817, 0.151598, 0.120387, 2.086688, 1.870306, 1.395172, -0.454404, -1.043979, 0.072510, -0.666675, -0.214606, -0.692866, -1.039563, 0.759397, -1.210571, 0.066885, 0.102654, -1.494836, 0.581090, -1.387127, -0.764526, -1.374681, -0.359010, 0.016068, -0.388888, 0.379490, -0.519102, -0.648704, -0.171610, 2.618532, 0.354210, -1.646865, 3.792551, -1.509512, -0.146837, -1.116581, -1.173348, 1.261452, -1.041687, -0.680098, -0.047130, 0.697685, 0.868387, -0.737022, -0.706824, 1.150055, -1.637254, -0.951927, -0.049012, -0.065075, 0.752924, 0.228552, 0.934360, 0.734150, -1.679047, 0.865402, -0.239389, 1.022948, -0.023258, -1.256358, -0.451178, 1.281918, 1.153275, -0.779462, 1.072035, -0.273102, -0.920331, -0.355805, 0.335196, 0.235106, 2.064071, -0.875029, 0.835588, 0.239502, 0.756748, -0.033295, 1.439518, 0.024978, -0.519161, -0.320650, 1.141891, 0.252935, 0.267547, 0.323698, 1.046774, -0.716241, -0.592586, -0.202480, -0.404383, -0.684366, 0.301782, 0.266524, -0.550650, 1.528382, 1.130170, 0.930979, 0.068278, -1.126034, 1.169483, 0.613790, -1.154997, 1.973570, -1.029345, -0.672124, 0.448635, 1.015372, -0.565159, -1.970106, -0.019809, -2.075485, 2.179176, 1.422725, 0.543414, -0.659533, -0.731586, -1.741046, 0.252042, 2.565730, -0.725135, -1.101690, 0.800728, 0.249890, -0.167670, -0.829689, 0.101905, -0.318666, 1.612459, 1.237428, -0.065305, 2.497023, -1.636741, 0.341558, 0.138401, -0.168568, -0.576635, 0.398949, 0.906522, -1.053750, -0.545998, -0.455266, -0.301569, -0.722599, -0.928884, -0.565834, 0.354239, 1.863500, 0.194206, -0.626001, 0.108146, -0.183907, -1.208546, 0.425658, -0.237187, 0.223028, 1.489504, 0.011653, 0.128550, -0.988395, -3.144665, 0.304450, -0.833752, -0.414852, 0.331433, 0.519535, -0.423061, -2.283350, -0.194664, 0.530827, 0.995349, 0.740034, -0.424981, -0.062494, 0.623986, -2.199912, 0.477567, 0.090832, -0.058796, -2.214593, -0.103925, -0.642611, -0.567072, -2.074737, 0.166583, 0.977425, 1.216104, -0.340520, -0.309287, -0.119129, -1.270854, 0.521910, -0.453469, 0.343665, 2.659389, -0.675041, 1.098605, -0.327029, 1.148319, -1.096467, -1.500800, -0.510577, 0.002896, 0.772490, 0.343863, 0.548228, 1.411542, -0.548003, 0.720387, 0.311559, 0.618695, -0.365211, -0.854787, -0.543796, 1.076430, 1.248507, 1.247313, -1.063489, 0.000537, 1.423668, 0.282096, 0.673822, -0.346888, -1.641023, 0.947132, 0.946999, -0.187692, 0.207640, -0.717608, -0.640428, 1.649142, 3.159801, 0.285131, -1.311685, 0.119217, 1.482214, 1.330941, -0.911981, -1.974984, 0.509698, -1.960800, -0.530067, -0.222100, -0.738781, 0.520870, 1.291059, -0.700075, -1.014312, 0.904651, 0.655815, -0.255718, 0.568737, 0.304345, 0.236863, -1.219295, -1.867410, -0.947376, -0.681295, -0.462702, 0.186486, 0.026183, -0.390831, 1.819933, 1.258341, -0.591996, 0.526669, -0.531385, -0.642068, 0.761622, 0.620042, 0.511969, -1.287185, -0.114275, 2.074829, -1.011105, 0.596614, -0.192250, 0.749897, -1.029901, -1.697172, 1.666424, 1.808855, 0.248349, -0.317729, 0.797614, -0.210340, -0.341758, -0.155299, 0.463231, -0.337337, 0.257532, -0.068504, 0.072096, -0.418420, 0.922894, 0.006238, 0.781892, 0.819916, -1.920365, -1.912882, 1.231657, -1.238131, -0.290771, 2.131539, 1.092803, -0.132217, -1.923079, 1.299205, 0.141758, 0.476004, -0.765585, 0.792254, -0.815881, 1.038379, -0.167990, -0.248769, -0.207054, 0.164219, 0.953176, 1.602046, 0.609283, -1.216488, -0.922205, -0.878825, -0.351528, 0.261810, 0.729205, -1.651948, -0.227139, 1.172439, 0.423959, -1.807261, 1.721888, 0.396506, -0.909818, 0.656211, -1.566248, -0.028559, -1.745553, -0.772742, -0.039189, 0.483067, -0.038710, -0.015212, -0.710726, 0.828592, 0.817550, 1.558603, 0.527466, 0.604988, 0.366180, 0.756422, 0.626611, 2.025416, 0.586196, -0.472802, -0.368451, 0.879758, -0.238057, 0.602645, 0.425327, 0.931699, -0.260955, -1.290241, -1.608891, -0.632699, -0.044485, 0.413085, 1.772271, -0.669894, -0.270458, -1.251951, -1.431843, 0.857855, -1.269060, 1.176613, 0.728619, 0.409170, -1.354803, 0.582349, -0.446751, 2.366971, -0.803819, 0.195972, 0.961223, 2.374263, -2.270042, 0.048770, -0.095595, -0.958647, -1.572495, 0.937178, -0.197178, 0.159942, -1.632320, 0.416667, -0.470423, -1.287511, -0.860495, -0.025828, -0.521682, 0.148001, -2.016367, -1.125534, -0.319210, -0.285365, 0.469781, 0.213533, 0.520304, -1.046704, -0.255014, 0.161978, -0.657301, 0.380386, 1.000481, -0.102816, -0.153629, -0.856587, -0.839705, 1.076588, 0.734051, 0.344115, -0.870206, -1.109691, 0.479125, -0.971326, -0.058429, 0.789344, -0.832048, -0.429643, -0.329592, -0.909379, 0.039007, -0.660611, 1.404685, -1.627092, -0.461628, -1.757714, -0.382550, -1.125911, -1.319679, 2.377537, 1.954415, -0.797256, 0.310238, 1.390780, 2.174498, 0.954718, -0.202962, -1.009577, -0.049587, 0.950558, 1.350130, 0.704795, -1.084015, -1.276809, -0.532805, -0.035503, 0.712197, 0.932244, 0.697259, 0.168265, 0.968257, 1.087720, 0.988724, 1.226741, 1.133746, -0.437888, -0.340066, -1.382146, -0.365589, -2.092942, 0.515507, 1.045868, 0.622470, -0.053105, -1.261211, -0.451578, 0.473949, 0.265230, 0.441864, 1.005170, -0.655958, -0.607974, -0.298242, 0.129913, -0.012558, -0.632721, -0.059729, -2.696762, 0.528190, -1.169908, 0.325504, -0.513270, 0.893848, -0.067951, 0.589883, 1.199512, 0.965997, -0.987544, 0.293924, -0.654640, 0.627130, -2.008244, 0.309519, 0.437324, -0.718098, -0.852222, 2.095732, -1.263327, -0.417234, 1.220132, -0.046950, 0.590005, 0.016060, 0.395953, 0.533061, 0.458756, -1.562384, 1.702298, -0.046271, 1.093901, 1.135716, 1.269514, 0.558460, -1.702426, 0.218106, -1.133291, -1.192282, -0.357392, -0.869045, -0.100981, 2.829987, -0.280654, -0.711372, -0.586914, -1.006115, -0.826143, -1.003669, -0.584428, 0.938065, -0.759953, 0.236500, 1.679802, -0.867175, 2.012593, -0.722134, -0.499972, 0.666206, 0.512912, 0.627820, 0.352293, -0.159099, 0.975979, 0.125898, 1.000830, 1.527902, 0.108561, -0.899555, -0.859858, -0.056013, 0.440500, 0.097085, 1.016263, -0.986517, -0.567086, 1.366657, -0.064835, -0.069338, 0.220429, 1.188672, -0.592164, -1.580132, -1.040111, 0.994207, 1.529301, 0.965583, 0.614241, -0.399527, -1.605185, -0.505716, 1.130069, -0.864777, 0.377398, -0.339196, -0.080936, -1.119905, -1.634312, 0.090257, -0.222013, 0.231535, 0.284000, -1.734604, 0.532429, 1.045926, -2.357142, 0.301438, -0.825032, 0.998986, 0.273277, 0.418926, 1.032511, -0.139835, 0.641192, -0.471333, 0.438997, 0.540514, 0.393357, 0.927158, -0.799381, -1.044712, 0.198402, 1.062615, 0.646373, -0.699645, 1.147951, -0.666869, -0.192050, -0.534210, 1.395654, 0.774890, 1.235580, -0.471644, -0.279599, 0.712804, -1.111780, -0.819664, -2.560734, -0.517164, -0.556769, -1.290907, 0.068988, -1.069552, -0.495076, -0.389549, 0.431265, -0.042560, 0.167036, 0.106089, -1.094591, 0.260762, 0.822045, 0.515592, -0.450003, -1.045584, 0.884711, -0.501255, 1.925481, -0.235619, -0.259887, 0.365682, 0.196290, 2.061564, -2.213679, -1.301811, 0.706507, 1.741559, -0.168855, 1.101588, 0.820364, -0.400482, 0.335451, 1.928191, 0.505874, 0.269808, -0.961020, -1.788782, -1.860919, 0.250914, 0.898241, 0.274327, -1.045911, 1.274394, -1.807915, -0.061733, -0.482906, 1.091731, 0.399684, -0.309442, 0.326899, -1.238159, -1.200043, -1.057403, 0.167390, 0.255546, -0.527346, 0.233485, -0.242632, 0.621511, -0.616150, -0.087503, 2.285100, 0.490702, -0.944267, 1.779703, -0.236308, 0.633502, -1.437012, -0.817187, 1.681853, 0.525203, -1.434373, 1.777332, -0.163298, 2.196878, 1.181907, 0.019409, 1.894870, -0.518821, 0.609485, 0.023724, -2.062161, 0.491855, -0.167027, -0.600150, 1.547984, -1.543012, 0.858477, -1.549856, -0.005683, 1.892737, -1.062547, 0.992437, -1.710650, 2.435537, -1.136351, 0.074013, 0.097661, 0.947000, -0.311775, 1.259216, -0.964017, 0.293518, 0.248293, 0.578923, 1.331232, -0.459472, -0.993607, -0.793864, 0.251094, 0.224123, 0.525135, -0.362432, 0.203711, -0.500895, 0.722426, -1.332972, 0.787980, 0.071593, -1.053839, -2.256763, -1.512497, -0.645520, 0.181726, 0.897512, -1.224698, -0.788861, 0.754809, -0.332596, -2.458709, 0.067840, -0.508277, 1.499413, -0.242588, -1.677294, 0.140744, -0.942304, 0.887287, -1.163477, 0.379646, -0.479302, -1.977065, 0.862756, -0.052980, 0.785963, -0.827198, 0.992470, 0.472990, 0.956368, 0.489755, -1.580649, 0.205854, 0.474053, 0.714326, 0.617675, -1.763684, -0.988593, 0.218481, -0.612592, 0.078888, -1.140073, 0.385045, 0.234892, 0.100009, 1.174751, 0.728539, -0.138349, 0.871923, -0.131383, -0.811907, 1.869395, 0.922524, -1.883221, -1.027480, -0.785759, 0.035490, -0.942084, 0.858385, -1.981633, 1.717108, 0.968860, -0.022463, -0.015047, 0.304365, -1.171236, -0.164107, -1.098171, 1.562056, -0.561641, 0.322561}, + { 1.633750, -0.208713, 0.399191, 1.253653, 0.522533, -0.039824, -0.062544, -1.552716, 0.423759, -0.464100, -0.214870, -0.644192, -1.337064, 0.208001, 1.737733, 0.373052, -0.871952, 0.252082, -0.477625, -1.117553, -1.525211, -0.489079, 0.502528, 0.252908, 1.009426, 0.284869, -1.344518, -0.339331, 2.074620, -0.238306, -1.003521, 1.910421, -0.086106, 0.175206, -0.996218, 0.408523, -0.129474, -0.119925, 0.030628, -0.633376, 0.031295, 0.933010, 1.026730, -0.032987, 0.330262, 1.420750, -0.453519, 1.017246, -1.605942, 1.047615, 0.284744, -0.917644, 0.064100, 2.207553, 0.486901, 1.234834, -0.427063, -0.342868, 0.260631, 0.636631, 1.148085, 0.837837, -0.013621, -0.856720, -0.209332, 0.695650, -0.695866, -0.365854, -1.413842, -0.064040, 0.679539, -1.365736, 0.287881, 1.291652, -1.551638, 1.049225, -0.867760, -1.073091, -0.637155, -0.300112, -0.735298, 0.313950, -0.509098, -1.229489, -2.117709, -0.259286, -0.775823, 0.130260, 0.530175, -1.051084, 0.309872, -0.354903, -0.618703, -1.420003, 1.326202, 0.804056, 0.752575, -0.092148, 0.538921, -0.943075, -0.577259, -0.141735, -0.006229, 0.529762, 1.183064, 0.285579, -0.023202, 0.743896, -0.201692, 0.261179, 0.569031, 0.637282, 0.676452, -0.671401, -2.405885, 0.730172, 1.121383, -3.309620, 0.853111, -1.601336, 0.710432, 1.408769, -0.562655, -1.325458, -1.266071, -1.821650, -0.924012, -0.711459, -0.314324, -1.237956, 1.337198, 0.451297, -1.264170, 0.907615, -0.677598, -0.650538, 0.941084, 0.862619, 2.330709, -0.097281, -0.186912, -0.457176, -0.833505, -0.281472, -1.080566, 0.298360, -0.294453, -0.340458, -1.778879, 0.020224, -0.309792, 0.209083, 1.183815, 0.693163, -0.236959, 0.778133, 0.930881, 0.734484, 0.239085, 0.387471, -0.342709, 0.366404, -0.557924, 1.274958, -0.068736, 1.677438, -0.220889, 0.122682, -0.020607, 0.409848, 0.195760, -0.937147, -0.596844, -1.313521, 0.612754, 0.529698, -1.054632, 0.724131, 0.460957, -0.754743, -0.861633, -0.560756, -0.154731, -0.673748, 0.296609, 1.959714, 0.342447, -1.064095, -1.457826, -0.334593, 0.045409, 0.075224, -0.906822, 0.988956, 1.553525, 1.230527, 1.918521, 0.623294, -0.729148, 1.030785, 1.039954, 1.876015, 1.092184, -0.834752, -0.480642, -1.629364, -1.310089, 0.680235, 0.178461, 0.401326, -0.672326, -0.889948, -3.649967, 0.162014, -0.267152, 1.590234, 0.559631, -0.266849, 0.561170, -0.113994, -0.731860, 0.020557, -1.703906, 0.014522, 0.962914, 0.530414, -0.036976, 0.754626, 0.423748, 0.255248, -0.545737, 0.984911, 0.979411, -1.627167, -0.438461, -0.351980, -0.420869, 0.968233, 0.654434, -0.110182, 0.292363, 1.535228, 0.247893, -0.216707, 0.223417, -0.580980, 1.680820, -1.473914, -1.728161, -2.846628, 1.703498, 0.905023, -0.055205, 0.644903, 0.059472, -0.021520, 1.307315, 0.129105, 0.829307, 0.241402, 0.640167, -0.287598, 0.661523, 0.297522, 0.175122, -2.226186, 1.053222, -0.750790, 0.846055, 0.162030, -0.785390, -0.135707, 0.825747, 0.613240, -1.153278, -0.036000, 0.542754, -1.363815, -0.238604, -1.203685, -0.274608, -0.516469, 0.478228, -0.457582, -1.391683, -0.574425, -1.163558, -0.674418, -0.896201, 0.025810, -0.790252, 0.112435, 1.379806, -0.497981, -0.897507, 0.337331, -0.295900, 1.115004, -1.050576, 0.605156, -0.243328, -0.602567, 1.386620, 0.901985, 1.837772, -1.421034, 0.442711, 0.102661, 0.401064, -0.200605, -0.627958, -0.354933, -0.383843, -2.264190, 0.242871, 1.472131, 0.141329, -0.527888, -0.777231, -0.164998, -0.452741, -0.693049, 0.711089, 2.490709, -0.788117, -0.524690, -1.019957, 0.717529, 0.896247, 0.437873, 0.283121, -0.783064, 1.531208, 0.418761, -2.144156, -0.898897, -0.497084, 0.509069, 1.053628, -0.508083, -0.873839, 1.432240, -0.165618, 0.427544, -0.950999, 0.662171, -1.261790, 1.978793, 0.773338, -1.150344, -0.027884, 0.301079, 1.149162, 0.588662, 0.266859, -0.782330, -1.660377, 2.431033, 1.045701, -0.308218, -0.058655, 1.089296, -1.893408, 0.373400, 0.243236, -1.034705, -1.024672, 0.709247, 0.697017, 1.619847, 1.637518, -1.299040, 0.022054, -1.491282, -0.081951, -0.874380, 0.983287, 0.746610, -0.191663, -0.708996, -1.430509, 1.764003, 0.078192, -1.029045, 0.846876, 1.875717, 1.613536, 0.320372, -1.045241, -0.408077, 0.204712, 0.325098, 0.355421, 0.418502, 0.191755, -2.691741, 0.369223, 1.289988, -0.741753, -2.137399, 2.270844, 0.510796, -0.357066, 0.707755, -0.545343, -0.007768, -0.429650, 0.061762, 0.132509, 0.141634, 0.748732, -0.464731, -0.885414, -1.705251, -0.584072, -0.886061, -0.470548, -0.736594, -0.853768, 0.456509, -0.116781, 0.486840, -1.116497, -0.987260, 0.033038, -0.985664, -0.715243, 0.725018, 0.379021, 0.128903, -0.001089, -0.779351, 0.901212, -1.055266, 2.453246, -0.130311, 1.584739, 0.339338, -0.550722, -0.060897, 1.743678, 0.325652, -0.364703, 1.152421, -0.080858, 0.736350, -0.898815, -0.372582, 1.388357, -0.721409, 0.432581, 0.565466, 0.417503, 0.693891, 1.103736, -0.582973, 1.303014, 0.094902, 0.368089, -1.440522, -3.318128, -3.033506, 1.248998, -0.578987, -0.194126, -0.293621, 0.026287, 1.420831, 0.563118, -1.286652, 1.217494, -1.137671, 0.007186, 0.678262, 1.535446, 0.641297, 0.088899, 0.014675, -1.594144, -1.793008, 1.365244, -0.264220, 0.619684, 1.233654, 1.174579, 1.205239, 0.819907, -0.324365, 0.868136, -1.124120, -0.476948, -0.603176, 0.882191, -0.648951, -1.239904, 1.115651, 0.937624, -0.401641, -0.707858, 0.744260, 0.357113, 0.447538, 1.580977, 1.226947, -0.996384, -1.117138, -0.762098, -1.227928, -0.485494, 0.894387, 0.548534, 0.618259, -0.177832, 1.057126, 0.592931, -0.390809, 2.060658, 0.746119, 0.641473, 0.731166, 1.399154, -0.409176, 0.493299, 0.038713, -0.588700, 0.254130, -0.462193, 1.710925, 0.180509, -0.875857, 0.343971, 1.428961, 1.085704, -0.746196, -1.085817, -0.138197, -1.737607, -1.864121, 1.638507, 0.496783, -1.379151, -2.465451, -2.010220, -0.590529, 1.340768, 1.266440, 0.487798, -1.146695, 1.090023, -1.051142, 1.055251, 0.428708, -0.282754, -1.932825, 0.367059, 0.646246, -0.729363, -0.010475, 0.098721, -0.803355, -1.877876, -0.037373, 1.420762, 0.985746, -1.145910, -0.998906, -2.332280, 0.718753, -1.990264, 0.386594, -0.068702, 0.301434, 0.208538, 0.541167, -0.402673, -2.372978, 0.668457, -0.305221, 0.022876, -0.047997, 0.228780, 1.448882, 0.613885, 2.316437, 0.557050, -0.120061, -0.711957, 0.948075, 0.578252, 0.394816, -0.573451, -1.331556, -1.650743, -0.387161, -0.352094, -2.620109, -1.839176, -1.398458, 0.530359, -0.228919, -0.709150, -1.321736, -1.554870, -1.154367, 0.777909, -0.338027, -1.703837, -0.169670, 1.187202, -0.797484, -0.487479, -0.620582, -0.317494, -2.403142, 1.641730, 0.830646, 0.028302, -0.306692, -0.841741, 0.794381, -0.208205, 1.242679, -0.775001, 0.488870, 0.107544, 0.471582, -0.459891, 0.426136, 1.593878, 0.328127, 1.104565, -0.359778, -0.577892, 0.058231, -0.623665, -0.161381, -1.005802, -1.618271, 1.022667, -0.755539, -0.832205, 0.323845, 0.398462, -0.090320, -0.688794, -1.712452, 2.079621, 1.494959, -0.510339, -0.526962, -0.501123, -0.354679, -1.610059, -1.378104, 0.962394, -1.212246, 0.221910, 1.543822, 0.805893, -0.012619, -0.934039, -0.153445, -0.218897, -1.094587, -0.092891, 1.151209, -0.916165, 0.611519, 0.234915, -1.399976, -0.121571, -1.400179, -0.318803, -0.796265, 1.210998, -1.284524, 1.836117, 1.221768, -0.895479, 0.357193, -0.094953, 0.071924, -0.553556, -1.427475, -0.918901, -1.290555, 0.593505, -0.100715, -0.354592, -2.417863, 1.183628, 0.011129, 0.582654, 0.868006, -0.149553, -0.144259, 1.195877, 0.531090, -0.713784, -0.416895, -0.836029, -0.595415, 1.035148, 1.277334, 1.991471, -1.390341, 1.206723, -1.761687, 0.991444, -0.236374, -0.039019, 0.214836, -0.076213, -1.160952, 0.319922, -0.595001, -0.393744, 1.070738, 0.894406, 0.056887, 0.187049, -0.698885, 2.283896, -0.568464, 0.772052, -0.014354, 0.756618, -0.221157, 2.514338, 1.008293, 0.241202, -0.643674, -0.891454, -2.483161, 1.175247, -0.041734, 0.514728, 1.947805, -0.440595, -1.519470, 0.765724, 2.941120, -0.590583, 0.089716, 1.528522, -0.555414, 1.928398, -0.322762, 1.302254, -0.184784, -1.475408, -1.226543, -0.453656, -1.421057, -1.786358, 0.016994, 0.875315, 0.054692, -0.383463, -1.505522, 0.284490, 0.286418, 0.426409, -0.147629, -1.785765, 0.242645, 0.887664, -0.443890, 1.294186, -1.116554, 0.588321, -1.547927, -0.417077, -0.877472, -1.835423, 0.579669, -0.047314, 1.834026, 0.258689, -0.826290, 0.896961, -0.520304, -0.392979, 0.680968, 0.716352, 0.759695, 0.806670, -1.709324, 0.986569, -0.150820, 2.394736, -0.526361, 1.147990, -0.377885, -0.995814, -0.454191, 1.149842, -1.597380, -1.253091, -0.823041, -0.149331, 1.745578, -1.148569, 0.571836, 0.817219, -0.758259, -0.853601, 0.387564, 1.538011, -0.264415, -0.505284, -0.624930, 0.951168, 0.170791, 0.557038, 1.272419, 0.544148, 1.045817, 0.400600, -0.654041, 0.697929, -1.196383, -1.535388, 1.060852, 1.066159, 0.287956, 0.334259, -1.680188, 1.567870, 0.439922, 1.822707, 0.419450, -0.407702, 0.961808, -0.811965, 0.307355, -0.724728, -0.319510, 0.224332, 0.459586, -1.558644, 0.163701, -0.781339, 0.576898, 1.949665, -0.359467, 0.391569, -0.757351, -0.056237, -0.912369, -0.636153, 2.697446, 0.129310, -0.321593, -0.503454, 0.328496, -0.600949, 0.697004, 0.079186, -1.347811, -0.008307, 0.672211, 0.004851, -0.737647, -0.956546, -0.855895, -0.829822, 0.342103, 1.323590, 0.776070, -1.450975, 1.112189, -0.975869, 0.723694, -0.264351, -1.131781, -1.039118, 1.144766, 1.590171, -1.645773, 0.605682, 2.081909, 1.327569, 1.860834, -1.096128, -0.861132, 0.469649, 1.001297, -0.897849, 0.180405, 0.078134, 0.133203, -0.639073, -0.880966, -1.747314, -0.483171, -2.581299, 0.899836, 1.158479, -0.191164, -0.627105, -0.292247, 0.463476, -0.955252, -1.985927, -0.604326, -0.375043, -1.538616, -0.890549, -0.047283, 0.321275, 0.715675, -0.244068, 0.568941, -0.316806, 0.611571, -0.016223, 1.197703, -1.735856, -0.092698, -0.388257, -1.387805, -0.980568, 0.353355, 0.487100, 1.738975, -1.383981, 0.568930, 0.294583, -0.234555, -1.582574, 0.060271, -0.515729, -0.510794, -0.595208, 0.450997, -0.793106, -0.567710, 0.161472, -0.343068, 0.202998, 0.456116, 1.897815, -0.586535, 0.656231, -1.950023, -0.174002, 1.905020, -1.341272, -0.121645, -0.042592, -1.626775, 0.929624, 1.238821, -1.382462, 0.577146, -1.141178, 1.300768, 0.957444, -0.416143, -0.815185, -0.245639, 1.066428, 0.301353, -1.834014, 0.508083, -0.218429, 1.410184, -0.928468, 0.682718, 0.676148, -1.543971, -0.060714, -0.339981, 0.815538, -0.946027, 0.324797, -1.167691, -1.472364, 0.265806, 0.103860, -0.370767, 2.346980, -2.107459, 1.333538, 1.068658, -0.334790, -0.666444, -0.841996, -0.009787, -0.986844, -0.273349, -0.550526, -2.235348, 1.556056, -0.870163, -0.480603, -0.950090, -0.409188, -0.219105, 0.605144, -0.438438, -1.428007, 1.002174, -0.481445, -0.773959, 1.265860, 0.079983, 0.512249, 0.002601, 0.532775, -0.036385, -0.940858, 0.087740, -0.861109, -1.306606, -0.495964, -0.930104, 0.810205, 2.009219, -1.156137, -1.117500, 0.824882, -0.075308, 0.003569, 1.478544, -0.171117, 0.263368, 1.077015, -0.818754, 0.789243, -1.324375, -1.042110, -0.111810, 0.855312, 0.710417, 0.207374, 0.051069, -1.859863, 0.471250, 0.343095, -0.329158, 0.658307, 0.881425, 1.025847, 0.695186, -1.106904, -0.674593, -0.643316, -1.266535, 0.880324, -0.472249, -0.166647, -1.374939, 0.571644, -0.151005, 1.443033, 0.141320, -0.799235, -0.457068, 0.406124, -0.599292, 2.921068, -1.439711, -0.754839, -0.124090, 0.526196, -0.278004, -1.129980, -1.537265, -0.964287, -0.983896, -0.287749, -0.024299, 1.370456, 1.060111, -0.027980, 0.260603, -0.689702, 1.881503, 0.291090, -0.503172, 0.667621, -0.945277, 0.446048, 0.047110, -1.175890, -0.144072, -1.009388, 0.656667, 0.771593, 1.179139, -1.774420, 0.231202, -0.186975, -1.053716, 0.446150, -0.920796, 0.354669, 0.182790, -0.694951, 0.950916, 0.556538, -0.962969, -0.120720, -0.268164, -0.415330, -0.093160, -0.765481, 0.277226, -0.116567, -0.462237, 0.141419, 0.158317, 0.702666, 0.928361, -1.534021, -0.270447, -0.710651, 1.374264, 0.689749, 3.566372, -0.124516, -0.850984, 0.504751, -0.657685, 0.377078, -1.228175, -0.571974, -0.332468, 0.979415, 1.531067, -1.018866, 0.067803, 0.844257, 0.206362, -0.245772, -0.718637, 1.024969, 0.090588, -0.134815, 1.020640, 1.244755, 0.635519, -0.734049, 0.698059, 0.668903, 0.483132, -1.921140, 0.299685, -0.930194, -0.419870, 0.388393, -0.270623, -1.357992, -0.782030, 0.463358, 0.421239, 0.721031, 0.427722, -0.209575, -2.337184, 1.262822, -0.198376, 0.231690, -1.413114, -0.325461, 0.192994, -2.332793, -0.293004, 1.399074, -0.192769, -1.724912, 0.584437, 0.353184, 1.887444, -1.272124, 0.641172, -1.375394, -0.163449, 2.821177, -2.477411, 1.326315, 0.061564, 2.301966, -0.810142, -0.402372, 0.540343, 1.249783, 0.591069, -0.138611, 0.594662, -0.592522, -1.065648, -1.288335, 0.447361, 0.391887, -1.329378, -0.704860, 0.742442, 0.216348, -1.553384, 0.375023, -1.646798, -0.684800, -0.435528, 0.810629, 0.130634, 1.907418, -1.790417, 2.624369, -1.096402, 0.250215, -0.484635, 1.218256, -0.669078, -0.250831, 0.403899, 0.242680, -0.857059, 0.169672, -0.220225, 0.067639, -1.853691, -0.268161, 0.324559, 0.593420, -1.279758, 1.402079, -1.714236, -0.992492, 1.534076, 0.767370, -1.977483, 0.836829, -0.619616, -0.292617, -1.310797, -0.055676, -0.050530, 0.610245, 0.052250, -0.318296, 0.537661, 0.100220, -0.263842, 1.251635, 1.863941, 0.269421, 0.496513, 0.399314, 1.240574, -0.772145, 0.239661, -0.183467, 0.451664, -0.587029, 1.506752, 0.015199, 0.542490, 0.548581, 0.595628, -0.318247, -0.850087, -0.950729, 0.465935, 0.193024, 0.020382, -0.311754, -0.787446, -0.784583, -0.332131, 0.336644, 0.022421, -1.215302, 0.562622, 0.297452, 0.479337, -0.858014, -0.211506, 0.877656, 0.407259, -0.919139, -1.412689, -0.461445, -1.443547, -0.636703, -1.569800, 0.909720, 1.430994, 0.190290, -1.104897, -0.288245, 0.876744, 0.750762, -0.996442, 0.353068, -1.722070, -0.559863, -1.196862, 1.471921, 1.386451, 0.833152, 1.451712, 0.058966, 0.163522, -0.341077, 0.014160, -0.634544, -0.258101, 0.300472, -0.630895, -1.034697, -1.514110, -0.660259, -0.053732, -0.734900, 1.353045, 1.282121, 1.382260, 0.386143, 0.956780, 1.204682, 1.846641, -1.206605, -0.909605, -0.003157, -0.000223, 0.521086, 0.567327, -1.285228, -0.211982, -0.268097, -0.114335, 0.690258, -1.906635, 0.604761, -0.114527, -1.106542, 1.201965, -0.968681, -2.255752, -0.227271, -0.110396, 1.132923, 0.916561, -0.901203, -1.879336, -0.339645, -0.248529, -2.381851, -0.160403, -2.859949, -0.029038, 0.212314, -0.102780, -0.107117, -0.477585, -0.416467, 0.342099, 0.315275, 2.240185, 0.530741, 0.426599, 1.232352, -1.765914, 0.444683, 0.840785, 0.899599, 0.625559, 1.742596, -0.578144, 0.767301, -0.689044, -1.033367, 0.492182, 1.343905, -1.166665, 1.475574, 1.324724, 0.097573, -0.349052, -0.632507, -0.557486, -0.121150, -0.772417, 0.255336, 0.246395, -0.222814, 0.304945, -0.572913, -0.774187, -0.713108, 0.873850, -0.909453, 0.217430, -0.579697, -0.908699, 1.522127, -1.209194, -0.151111, 0.484549, 0.275886, -3.351374, 0.563630, 1.261956, 1.188991, 1.812187, -1.076403, -0.445590, -0.243309, 0.833002, -1.602767, 0.017407, 1.006989, -1.309355, -0.140950, -0.447749, -0.391930, 1.213382, -0.466735, -1.027094, 0.175498, 0.224055, 0.171565, -0.551237, -0.696875, -1.375890, 0.008595, 0.124405, -0.405735, -0.654242, 0.609839, -0.482171, -0.721600, -1.076034, 0.949154, -0.274354, -0.605726, 0.529019, 0.409802, -0.370848, -0.323477, -2.013690, -1.914146, -0.553442, 0.489118, -0.166612, -0.904206, 0.365733, 0.284435, 0.581881, 0.293662, 1.940614, -0.053730, -0.562597, 0.166204, -0.034657, 0.232666, 0.567458, -0.274676, -0.673414, 0.583490, 0.019225, -1.019031, -0.192786, 0.041915, 0.819685, -1.655979, -0.923991, -0.536494, 1.023249, 0.875873, -0.349267, 1.154426, 0.675045, -0.271128, 0.919425, 1.606050, -0.383332, -1.730164, 2.083037, 0.682875, 0.642460, 1.246917, 0.796925, 0.587290, -0.067455, -0.049825, -0.660855, 1.221030, 0.599741, 0.155987, 0.236603, 1.643773, -1.434235, -1.240380, -2.358667, 0.421722, 0.571980, 1.592563, 0.689440, 1.346162, -1.235697, -2.307466, 0.249661, 0.795872, -0.199412, 0.067574, 0.050926, -1.338267, -0.062789, -1.517283, 0.171240, 0.943095, -1.129775, 1.128675, 1.021400, 0.865726, 0.019756, 0.358419, -1.601556, 0.175556, -0.186374, -0.603905, -0.221676, 0.399662, 0.770635, 0.650266, -0.191853, -0.705799, 1.303510, -0.790246, -0.355699, 1.120368, -0.966970, -0.346966, 0.807937, 0.182099, -0.643863, -1.339869, -0.517419, 1.090229, 0.113312, -1.191045, 0.570374, -0.282560, 1.767856, 1.239000, 0.495570, 1.067907, -0.522559, 1.208784, 1.908317, -0.459265, -0.355194, -0.326420, 0.192193, 0.016200, 0.247967, -1.445105, -0.531461, 0.233343, -0.603176, -0.101607, 0.492800, -0.956807, -0.197843, 0.712930, 0.415724, -0.777211, 1.608439, 0.248479, 1.764533, 0.946165, -1.287674, -0.706395, -0.538102, -0.280893, 0.864306, -0.004605, -2.642781, 1.515160, -1.041577, -0.219260, 0.652457, 1.184279, 0.908110, -0.430675, -0.421237, 1.249938, -0.628080, -1.319272, 2.587377, 0.349025, 0.559089, -0.510717, 0.282395, -1.050557, -0.996782, 0.535615, 1.979846, -0.742469, -0.766504, 0.600828, 0.078082, 0.808693, 0.085032, 1.220272, -1.229239, 0.799452, 1.259958, 0.100966, -2.091216, 1.605515, 0.861368, -0.004704, -0.356753, 0.544389, 1.018540, -0.611060, -0.045048, 0.746918, -1.125080, -1.736697, 0.361980, 0.687073, 1.113403, -0.778031, -0.674569, 0.138886, 0.949562, -0.096342, 2.890121, -0.167693, 1.243153, -0.594972, -0.464512, -0.599216, 0.816519, 1.626926, -0.568935, -2.240093, -1.415238, 1.143895, 2.219984, -0.704653, -0.923683, 0.311847, 1.878664, 0.977680, -1.299896, -0.071292, -0.407952, 0.133068, -1.083324, 0.048283, 0.402467, 1.755934, -0.511331, 1.667513, -0.953648, -0.389607, -0.677363, 1.283248, 0.167665, -0.373921, -0.108647, 0.902080, -0.591049, -0.402724, -0.618408, -0.325697, 2.157628, 1.176920, -1.025583, 0.528410, 1.918578, 1.149557, -0.493612, 0.006497, 0.626100, -0.103714, 1.320319, 0.734537, -0.820399, -0.484145, -0.262889, -2.122679, 2.250782, -1.246572, 0.537250, -2.221998, -0.162213, 1.259681, 0.814287, 0.184985, -0.962400, -1.034561, -0.518209, 1.485556, 0.157694, -0.016542, 1.446635, -0.792916, -1.111207, 0.357275, 1.993596, -0.091866, 1.784798, -1.218022, -0.774211, -0.565065, 0.751498, -1.198581, -2.168022, -0.556857, -2.152738, 1.769687, 1.226500, -0.979712, -0.133655, -0.604645, -1.233752, -2.574555, 1.010375, -0.527131, 0.526848, 0.792683, -1.827865, -0.286715, -0.173819, 1.723965, 0.069501, -0.017190, 0.180904, 1.723890, -0.158595, 1.716092, -0.816275, -0.431658, -1.126670, 0.082952, -0.253298, -0.396215, 0.817629, 0.924884, 0.882107, -0.598875, 0.340469, -0.651711, 1.465118, -0.193488, 0.231429, 1.478785, -0.550179, 0.058062, -1.127797, -0.472308, 0.293994, -0.765727, -0.084414, 1.488963, -0.717431, 0.559346, -1.172878, 1.077000, 0.992306, -0.354559, 1.657768, 0.917916, 0.130025, -0.824396, -0.339309, 0.443658, 0.241693, 0.150563, 0.579415, 0.734368, 2.067839, 0.024940, 0.613714, -0.489831, -0.017854, 0.463202, 0.837997, -1.523380, 1.166797, 0.705606, -1.274280, -0.608049, -0.093057, 1.247089, 0.548793, -1.499837, -0.419736, 0.642094, -0.222377, -1.006101, 0.265313, -0.972350, 0.100818, 0.167672, 0.916850, -0.005351, 0.151749, -1.477119, -1.595987, 0.007490, 0.247580, 0.676573, -1.048314, 0.873673, 0.543851, -1.890718, -1.556902, -0.651022, 2.266067, 1.111217, -1.512944, -1.039097, 0.561027, -2.022777, -2.267170, 0.559551, -0.181163, -0.380800, 2.568506, -0.048274, -1.532602, -0.711214, 0.456754, -0.298552, -0.852297, -0.673568, -0.025357, 1.506788, 0.729719, -0.627132, 0.704863, -0.771358, -0.234923, 0.512881, 0.098700, 1.558895, 0.626332, -2.404042, -1.593118, -0.910586, -0.073949, 1.369000, 0.777692, 0.618456, 1.555888, 1.080292, -1.575631, -0.177454, -0.056923, -0.111512, 2.395575, 0.822964, 0.508957, 1.777427, -0.617741, 1.529521, -0.342464, 0.931729, 1.419697, -1.781377, 0.633057, -0.644221, 1.926503, 0.085201, 0.120767, 0.280810, -0.435773, 0.623020, -1.141157, -0.742953, 1.233315, -0.863444, -0.078697, 0.942146, 0.470585, -0.530560, 0.064825, 0.556514, 0.385438, -0.043630, 0.443434, -0.324671, -0.091268, 0.262365, -0.691050, -1.211713, -0.382227, -0.142457, 0.619695, -0.463709, 0.324579, 0.979687, 1.240082, -0.511788, 1.195837, -1.035440, -0.279212, 0.101900, -0.598191, -1.541087, 0.580573, 1.591929, 0.057784, 0.869312, 1.930244, -0.880732, -1.985414, -0.506545, 0.782657, -1.185044, -1.264253, -0.595761, -1.051046, -0.484551, 1.632064, 0.313763, 0.621775, -0.143035, -0.888251, -2.920872, -0.155119, -1.318960, -1.583609, -0.510871, 0.531714, -0.469161, 1.473488, 0.490432, -0.975485, 0.960669, 0.174642, -0.097040, -1.036655, -0.079122, -0.740911, 0.062468, -2.204673, 1.467913, 0.477918, 0.116096, -0.942733, -1.106317, 0.072211, -0.547503, 0.904341, -1.249585, -0.860086, 0.669360, 1.599892, -1.603413, -0.014208, -0.049093, 0.330523, -1.828221, 0.016778, -0.011054, 1.537207, 0.029996, -0.083702, -0.295712, -0.195850, -1.196717, -2.485331, 1.934735, -0.848199, -0.046871, 0.696282, -0.669326, 0.542737, 0.172240, 1.392935, 0.294058, 0.681605, 0.547594, -0.046375, -2.416908, 0.480014, -1.272707, 1.061551, 0.118739, -0.383038, 0.283612, -1.184908, 0.794572, -0.573631, -1.189312, -0.696585, 0.240662, -1.318323, 1.536712, 1.805373, -0.789958, -0.616833, 1.583329, 1.025888, 1.315872, 0.290487, -0.310958, 0.598684, -0.497681, -0.730004, 0.281990, -0.920312, 1.393849, -1.354705, -0.545094, -0.301724, 0.889377, -0.250373, 0.726920, -0.027046, 1.059530, -0.777431, 0.373186, 0.815229, 0.131231, 2.739349, 1.512660, -1.553339, -2.415697, 1.217249, -0.894998, 0.090184, -0.136636, -0.906759, -0.281050, 0.568048, 0.065008, 1.863625, -1.438105, 1.686268, 0.011170, -0.015524, 0.223378, -3.682401, 1.938639, -0.579236, 0.218250, 0.100543, -1.178987, -0.812673, -0.420874, 0.188755, -0.096524, 1.276729, -0.726908, -1.244621, -0.481897, 0.068780, 0.079879, 0.884271, 0.943349, -0.882118, -0.662946, -0.829145, 1.138314, 1.519584, 0.182805, 0.176011, -0.926139, 0.149675, 0.430039, -0.136137, -0.461944, -0.990307, 0.680911, -2.666276, -0.251063, 1.714038, 0.000528, -0.164745, -1.389129, 0.239693, -0.505532, -0.685435, -1.139819, -1.226522, -0.778057, 0.418442, 0.243463, 0.186250, 1.187090, -1.001649, 0.203274, -0.734418, 0.060924, 0.265017, -1.721533, 0.053766, 0.964496, -0.114929, -0.492270, -1.406500, -1.670267, 0.962184, -1.978659, 0.919970, -0.209585, 0.783528, -0.253345, 0.360200, -1.625606, 1.290281, 0.252339, -0.377120, 0.638660, 0.257796, 1.001119, -0.862327, 0.713054, 0.799897, -0.818112, 1.384802, 0.485443, -0.316917, 0.582256, -1.315596, -0.805507, 0.522336, 1.604858, -0.067545, -0.053981, -1.074190, 0.844104, -0.774598, 1.165458, -0.887537, 1.515639, 1.234961, -0.064688, -1.747003, -1.064277, -0.822226, 1.288767, -0.231767, -0.666388, 1.833640, -0.600576, 1.066921, 0.404157, -0.278544, 0.385754, 1.607612, 0.437911, -0.874871, -0.627339, -1.109766, -0.280439, 0.119296, -0.007002, -0.984769, 1.026550, -1.459203, -0.326416, 0.416399, 1.703338, -1.007679, 0.848175, 0.455717, -1.595431, -0.442700, 0.353559, 0.507432, 0.149295, 0.348113, 0.406490, -0.269495, -0.246989, -1.733033, 2.018522, -0.161838, 1.063041, 0.309429, -0.528215, -0.017913, 0.420652, 0.202227, 0.124760, 1.433776, 0.623397, 1.201888, 0.067524, -0.569915, -0.359513, 0.674693, -1.025972, -0.695277, 1.009998, 0.539813, -1.531212, 0.427138, -1.141468, 0.929636, -1.833895, -0.324264, -1.029380, 0.199336, -1.374692, -0.178120, -1.524448, 0.376529, -0.973059, 1.014021, -1.021638, 0.735416, -0.982157, -0.257728, -1.088956, -0.398297, 0.245894, -1.068539, -1.335821, 0.590254, -1.841388, 0.853449, -0.166978, 0.521762, -0.934798, -0.606380, 0.108287, 0.165368, 0.164867, -0.188175, 0.234334, -0.024971, 1.002810, -0.513853, 0.251096, 0.811551, -1.033139, -0.337163, 0.074256, 0.812788, -0.308629, 0.727529, 1.678787, -0.490280, 1.158648, 1.257843, -0.475275, 0.933952, -0.429669, 0.614773, 0.791100, -1.352786, -0.655306, -0.243674, 0.251224, -0.159287, 2.073973, -0.737046, -0.359113, -1.931410, 0.166243, 0.369443, 0.878593, -0.058655, 0.829478, 0.019447, 0.601612, -1.290487, -1.890475, -0.047548, 0.259433, -0.866423, 0.150654, 0.186377, 0.259943, 0.089656, 0.266525, 0.144123, 0.370112, 0.515036, -1.878658, -0.388458, 0.631420, 0.204711, -1.355232, -0.485703, 0.543544, -1.383837, -0.360198, 0.315029, -0.606659, -1.953218, 1.733009, 0.360952, -0.190250, 0.774334, -0.647306, -0.455031, -1.432304, -0.785049, -1.362015, -1.510486, 0.496864, 0.874012, 0.601608, -0.099109, 1.185074, 0.351491, 0.893622, -0.924807, 0.293802, -1.333382, 1.777036, 0.894637, -0.671921, -0.109275, 0.969962, 0.818597, 0.237727, 0.068312, -2.738088, 1.122171, 1.638367, 1.128013, -1.855811, -2.681514, -0.578662, 0.709713, 0.915581, -0.072399, -2.672323, -1.280883, 0.122200, 0.330349, 0.426564, 0.314308, -1.287656, -1.414885, -0.217733, -0.148653, 0.001236, 0.323342, 1.336801, -2.493625, 0.386531, 1.045336, 0.849905, 1.016614, 0.498010, 0.686612, -1.627360, -0.185732, -2.644802, 0.494976, 0.478756, -0.659601, 1.127595, 0.755228, -0.411988, -2.002324, -0.077832, -1.910361, -1.358753, -0.526233, 0.378215, -1.813978, -1.056407, -0.337642, -0.111258, 1.157851, -0.702469, 0.556684, 2.329823, -1.590054, 1.224630, -2.586228, 0.480409, -1.451962, 0.066625, 1.402556, 0.126443, -0.264330, 0.397438, -0.641968, -1.748626, -0.839023, -1.681687, 0.063233, -1.585335, -0.327108, -1.748593, -1.245650, -1.254503, 0.559760, 0.499524, 0.151041, 0.108908, 1.155472, -0.306974, 0.000008, 1.204290, 1.042811, -0.484477, 0.161314, -1.195788, -1.522152, -0.912986, 0.245539, 1.147408, 1.046286, 0.650705, -1.207048, 0.520155, 0.077060, -0.821887, -1.277221, -1.277611, 0.505813, 0.262927, -0.798607, -0.192001, -0.531348, 0.189674, -0.746132, -0.238311, -1.049643, 0.341352, -0.016731, 0.153244, -1.274906, 0.655110, 0.304696, -0.990771, 1.243637, 1.536615, -1.496360, 0.555788, 1.364899, 1.324265, -0.841493, -0.020034, 0.020804, 1.078908, -1.607777, 0.521991, 1.540082, 1.771276, -1.506030, 2.391822, -0.063433, -0.642624, 0.648083, 0.479580, 1.275694, -0.486507, 0.295045, 0.195243, -0.273266, -0.521213, 2.167773, -1.726145, 0.327934, 0.340251, -1.401374, 2.124880, -2.736233, -0.055937, -1.314996, -0.073534, -0.242145, 0.704445, -2.086684, -0.377609, 0.474527, -1.075452, 0.901716, 2.481947, 0.613740, -0.385028, 0.279409, -0.434681, 0.389564, -0.226906, -0.254633, -0.344485, 0.875618, -1.305035, -0.067206, 0.115238, -0.602964, -1.365619, -0.793519, -1.421518, -1.686223, 0.868426, -0.075620, 0.187770, 0.500019, -1.183785, -0.554093, 0.410298, 0.248384, -1.209803, 0.347289, -0.607527, -1.879776, 0.499848, 0.394923, -0.791489, 0.057770, 0.483823, 0.725299, 1.610743, 0.350216, -0.625830, 1.807428, -1.300791, -1.182112, 1.775072, -1.057363, -1.054361, 0.223574, -2.268362, 1.235084, 0.157384, -0.244367, 0.269035, -1.493075, -0.551766, -0.987267, 0.705870, -0.660668, -0.267143, 0.079441, -0.297206, 2.527272, 0.450978, 1.075417, 0.258671, -0.882825, -1.065761, -1.019956, 0.348216, 0.918903, -0.037242, 1.573264, -1.824575, 0.885571, -0.350550, 0.267107, -0.558293, 0.622606, 0.654009, 0.311606, -0.417481, 0.233355, 0.898318, -0.280748, 0.042886, 0.553107, -0.035012, 0.604172, -1.676463, 0.464258, 1.345130, -0.914248, 0.771627, 0.599052, 0.369347, 0.039828, 1.913054, 0.115794, -0.333005, 0.388211, 0.034640, -1.454868, 1.417892, -0.408058, -0.023750, -0.809546, 0.049693, 0.025758, -1.060712, -0.847160, 0.181399, 0.007704, 0.600926, -2.199770, 0.525866, 0.066014, 0.957553, 0.171163, -0.760040, -1.057865, -0.830235, 0.620080, -0.258280, 0.966446, 1.570896, -1.349868, -1.051303, -1.137575, 0.902306, 0.663752, 0.193472, 0.469840, -1.394843, 0.315379, -0.249377, -0.945033, -0.214055, 2.474652, 1.151416, -2.415019, 0.024142, 0.567270, 0.420534, 1.194394, 0.980156, -1.477530, -0.959148, -0.101663, 0.244513, 1.371840, -1.405291, -0.598239, -1.557347, 1.974495, -1.046803, 0.283064, -1.296190, -1.329806, 0.195923, -0.784332, -0.736884, 0.093060, -0.628140, 0.215582, -2.574977, -0.692938, -0.075386, 0.722974, -0.265588, 1.315609, 1.842344, -0.796084, 0.245694, -2.208225, -1.989527, -0.030960, -0.295254, 1.439740, 1.293115, 0.891453, 0.609592, 1.063672, 0.580866, 0.720560, 0.453012, 1.712947, -0.438473, -0.762288, -0.978849, -0.836594, -0.331646, 0.546199, -1.508737, -0.021978, 0.021797, 0.426111, -0.372302, -1.452032, 1.611955, -0.321101, -0.343407, 0.664393, -0.843408, 0.392098, -0.725719, 0.619115, -0.297802, -0.557919, 0.474588, -1.003598, 1.858999, -1.768684, -0.982831, 0.732087, -0.877866, 0.659654, 1.088830, -0.254189, -0.448058, -1.310799, 0.389760, -0.568225, 2.433622, 1.120165, 0.354420, 0.292455, 1.762908, 0.483878, -1.029045, -1.078053, 0.864249, -0.157014, 1.081915, 0.883869, 0.027515, 1.206630, 0.278725, 0.855335, 2.081568, -1.820438, -1.305863, 0.787106, -0.903417, -0.619301, 0.272339, -0.033205, -1.561786, 0.285119, 0.033807, -0.534207, -0.933991, 1.073474, -1.256944, 0.656181, 1.290542, 1.487641, -1.361090, 0.284984, 0.974329, 0.044320, 1.489390, 0.239720, -1.137258, 1.024203, -0.119976, -1.039401, -2.044515, 0.986866, 0.162736, 0.625868, 0.567982, 0.289892, 0.138536, 0.904712, 1.328434, 2.760732, 0.616492, -0.843869, -0.594300, 0.446717, 1.910433, -0.826255, -0.831555, 0.190951, -0.031685, 1.421889, 1.418121, 0.945533, -0.747575, -1.226137, -2.004908, 1.200339, -0.468928, 0.102181, 0.569318, -1.644788, -1.210173, -0.692440, -0.374328, -0.952120, -0.418467, 1.268093, 0.499477, 0.183173, -1.359025, 0.511653, -1.724588, -1.680592, -0.201966, -0.741051, -1.055664, 0.517904, -0.391775, -0.231744, -0.797944, 0.482491, 0.019750, -0.894941, 0.531607, 0.871080, 0.342641, -0.054020, -0.602271, -0.842157, 1.632911, -0.432607, -1.248215, -0.764442, -0.519356, -2.138398, -0.372431, -0.584854, -0.734228, 0.245743, -0.158299, 0.640930, -0.558029, 0.320241, 0.627393, -0.479089, -0.912147, -0.862956, 0.257970, 0.420449, 1.037621, -1.107136, -0.906982, -0.875634, -0.965965, 1.225511, -0.887498, -0.837290, -0.872077, -1.066723, 1.084193, -0.151992, -1.422060, -1.106786, 0.160547, -0.124578, 1.003830, 1.289142, -0.089685, 1.023673, -0.727708, -0.255453, -1.686007, 1.116712, 0.151654, 0.358602, -1.289897, -1.416274, 0.016376, 0.031421, 0.465881, -1.116616, 0.520704, -0.328395, 0.101971, 0.720823, 1.214356, 1.010513, -0.375697, -1.034463, 1.262545, 1.610214, 0.369468, 0.472429, -0.884633, 0.105961, 0.488407, -1.104202, 0.487092, -0.953297, -0.139094, 0.321016, -1.124990, 0.163159, 0.202292, 1.047819, -0.839838, 1.626517, 0.029983, -0.482763, 0.159358, -0.283699, -0.969671, -0.979734, -0.101481, 0.273784, -0.821945, -1.040035, 0.758046, 0.832477, 0.182040, -0.520007, 0.283280, 0.315367, 0.042447, -1.286729, 1.034373, 1.260660, -0.163208, 0.572441, 0.185302, 0.832071, 0.013702, 1.436937, 0.434320, -0.485199, -0.207363, -0.697035, -1.551334, -1.096316, -0.305565, 0.753113, 0.000740, -1.591918, 0.024043, -0.093740, 1.414343, -3.046657, -1.062601, 1.035958, -1.223915, 0.182023, 0.476589, 0.137829, 0.933349, -1.563596, 0.115677, 1.116658, -0.333039, 2.049627, 0.410208, 0.427318, -2.297213, -0.648292, 1.509938, -0.418864, -0.871677, 0.428514, 0.604498, -0.006634, -0.282755, 0.000462, 1.506937, -0.867303, 0.406387, 0.736304, -1.699937, 1.087410, 0.248186, -0.940611, -1.007897, 0.788702, 0.830100, -2.035216, 0.324135, 0.388196, -1.056560, 1.193073, -1.286124, -3.005216, 0.099085, 0.737121, -1.874100, -0.067278, -0.896329, 1.612255, 0.033986, 0.757249, -0.655228, -0.137359, -1.115782, -0.462071, -0.252107, 1.182235, -0.487541, -0.958497, 0.411339, 0.231504, 0.085546, -0.486534, 1.213459, 2.382589, -0.800908, 0.414941, 0.342301, 0.769013, -0.314359, 0.660638, -0.513393, 1.978124, 1.019556, 1.938659, -1.017823, -0.373283, 0.164167, 0.807838, 0.914389, -1.220229, 1.611372, 1.119381, 0.617338, -1.312344, 1.129519, -0.743040, -0.933772, 0.142526, 0.825024, 1.085350, 1.147821, 1.649266, -1.081058, -0.204253, -1.518060, 1.461462, 1.868728, -0.811507, 0.207322, 0.830685, -0.665853, 0.606187, -0.977479, 0.093364, 0.335359, -0.555046, 0.527579, 0.010167, 1.584423, -0.163144, 0.040270, -1.434839, 0.003488, 0.856132, -0.290849, -0.808032, 0.073972, -0.795282, -0.498944, -1.720397, 0.712346, -1.250164, 0.940977, 0.023570, -1.137335, 2.019404, 0.339481, -1.479596, -0.238442, 0.571046, 0.582649, 0.140382, -0.279423, 1.017947, -1.074007, -0.816864, -1.927785, -0.139165, -0.244850, 0.922583, -0.605840, -0.461828, -0.771518, 1.050515, 0.394693, -2.019184, -0.548718, -1.481882, -1.644873, 0.836751, -2.658554, 2.080260, 1.093618, -1.370649}, + { -0.000310, -2.254341, 0.192980, 2.166330, 0.280113, 2.722518, 0.122598, 0.110828, -0.761507, -0.830603, -0.916333, 0.113737, 0.417542, -0.201436, 0.382437, -0.850212, 0.080061, -1.093722, -0.320704, -1.500217, -1.844268, -1.029253, -1.269302, -0.865891, -0.281235, -0.412290, 0.021324, 0.601537, 1.049948, 0.024785, 0.001166, 0.426808, 1.014524, 1.784908, 0.502277, -0.163223, 1.848508, 1.100986, 0.756790, -0.253453, -1.849426, 0.303309, -0.165562, 0.152136, 0.851701, 0.522452, -0.172650, 0.439039, -0.697742, 1.942938, 1.171037, -1.411139, -0.465668, -0.631027, -0.287570, -0.423506, 1.852656, 0.467709, 0.400184, 0.887489, -2.515809, -0.338843, 1.303496, 0.324393, 0.377758, 0.901332, 0.861529, 1.092245, -0.735848, 0.214655, 0.486631, -0.640094, -0.135141, 0.567322, 2.144436, 0.003306, 0.724213, -0.272420, 1.422234, -0.025224, -0.176690, 0.024369, 0.800785, -1.642951, 0.219705, -1.288142, -1.277395, 2.323225, -1.145463, 0.285171, -0.311220, -0.010112, 1.207432, 0.060215, 0.653854, -2.443783, -2.100994, -1.240467, 0.547455, -0.905534, 1.954185, 0.224623, -0.342548, -0.169007, 0.664925, 0.729596, -0.389150, -1.246218, 1.943540, 1.417720, 0.051201, -0.961834, 1.607948, -1.399987, 0.171691, -0.824878, -0.802034, -1.603430, 0.013929, 1.749551, 0.806785, 0.025550, -1.289084, 1.869064, 0.940643, -0.195537, 0.298603, -0.644777, 0.390768, -1.750719, 0.149475, 0.159136, -1.802934, 1.284242, 3.316486, -0.547470, -1.606467, -0.024866, -0.768577, -0.614419, 0.953520, -0.826602, 0.156388, 1.351367, -0.432129, -1.146784, 0.365479, -0.033215, -1.208993, -0.558763, -0.391575, 0.945154, 1.511761, -0.986548, 0.344420, 0.026770, 0.122261, -0.169569, -0.961570, -0.229895, -0.065659, -0.354003, 1.162992, 0.282575, 0.252367, 1.752530, 1.380168, 0.593829, 0.798639, 0.718137, -0.430411, 1.770759, -1.341644, -1.888259, 0.194859, -0.385078, -0.488580, 0.348512, 0.075598, -1.922167, 1.726508, -1.141093, 0.334279, 1.802214, -0.310679, -1.390956, 1.001809, 0.104068, -0.279258, 0.073496, 0.355229, 0.154822, -0.208181, -0.448308, 0.405660, -0.550933, -1.098098, 0.667744, -2.560996, 1.374638, 0.445228, -0.141108, -1.507488, 0.897757, -0.085095, 0.008599, -1.406541, -0.063909, -1.576006, 1.046169, -0.824641, -2.828520, -2.597629, 0.115049, -1.301652, -0.178861, -1.106649, 1.735302, 1.408074, -0.823765, 0.388329, 1.643086, 0.015766, 0.065565, -1.460327, -1.008793, -0.732402, -1.409500, -0.145527, 0.014432, 1.844391, -1.806123, 1.207694, 0.423199, -0.530191, -0.283025, -1.235478, -0.594571, 1.241493, 0.445791, -0.243026, -0.511689, -0.812748, -0.538452, -1.436681, 0.801784, -0.572142, 0.079077, 0.110129, -0.791548, -0.650440, -0.775674, -0.069399, -0.614946, 1.250918, 0.486805, -0.289950, -1.314598, -0.208929, -2.015739, 2.261823, -0.482761, -1.168523, -0.813381, -1.609539, -0.235460, 0.643777, 0.385749, 1.384014, -0.265247, -0.005141, 0.436923, 0.660392, 1.534517, -0.156140, 0.861179, -0.528399, 0.651150, 1.068477, -0.114685, 0.320244, -1.504362, -1.100460, -1.759216, 0.623329, 0.841217, -0.541164, -0.518918, -0.608208, 1.904872, -1.492140, 1.221777, 1.129945, -0.831613, -1.310756, 0.756814, 0.665587, 2.051020, 0.691275, -0.147981, -0.437783, 0.796797, 0.428475, -0.362813, 1.433885, -0.418667, 0.500934, 0.714548, 1.619893, 0.339898, 0.142668, -1.688881, -0.891034, -0.434887, -0.630537, -1.382409, -0.428532, 0.584433, -1.212957, 0.945173, 1.475790, -0.520063, 0.098473, -0.651966, 0.618462, -2.070633, 0.438099, -0.068014, -0.069458, -0.026244, 0.654294, -0.164176, 0.945954, 1.061919, -1.948817, 1.275566, 0.866113, 0.410182, 0.402404, -0.986702, 0.520901, -0.484788, 0.464423, 1.161656, 0.270617, -0.871927, -1.098362, 0.334317, -0.443763, -1.462931, 0.426137, -2.322070, -0.250007, -0.209609, 0.399659, -0.360925, 0.732977, -1.076719, 0.056535, -0.678952, 1.241538, 1.471976, -1.010313, 1.495800, -2.449194, -0.810481, -0.695549, -0.733878, 1.534990, 0.586674, 0.729854, 0.390113, 1.288194, 1.304325, 0.779686, 0.424013, 0.244490, -0.494871, -0.501781, -0.227255, -0.444454, -1.617900, 0.147244, -1.093506, -0.737736, 0.111506, 1.321203, -0.728688, -0.097831, -0.596117, 0.550638, 0.978121, -1.271338, 0.110187, 0.763669, 0.437025, 0.650818, 0.871548, -0.253076, 0.443113, -0.668316, -0.055860, -0.176602, -0.147981, 0.925539, -0.516877, -0.174672, 0.995183, -2.216053, -1.041371, -0.175467, 0.169170, 2.190169, 0.416535, -0.945989, -0.436305, 1.483174, -0.734064, 1.237494, -1.366030, -1.252090, -1.134828, 1.159807, -1.235594, -0.459376, 0.978717, -0.010540, -0.689567, -1.661429, 0.501941, 1.008219, 0.044239, 0.885596, -0.388228, -0.002249, 1.344049, -0.353879, 0.661322, 0.190633, -1.375905, -1.167869, -1.485361, -1.100886, -0.840231, -1.804455, -0.044461, -1.010893, 0.086509, 0.257084, 1.912327, -1.093373, 0.503289, 1.190409, -0.155940, 0.068600, -0.476641, 0.231294, -1.257760, -1.818569, 0.627606, -0.758381, -1.043462, 1.299260, -0.793737, -0.052611, -3.366881, -0.256570, 0.811687, 1.144203, 1.267074, -1.224903, 0.653482, 0.697111, -0.038015, -1.976700, 0.427569, -0.858028, -0.869722, -0.481895, -0.574310, -0.294258, -0.763877, 0.835772, 0.347611, 0.402093, -0.865398, -0.433433, -1.782931, -1.005681, -0.289996, 1.315005, -2.146737, -0.140296, 1.498453, 0.477140, 0.506560, 0.087171, 0.200461, 0.913853, -1.298919, -0.417357, 0.659791, -1.262264, 1.138160, 0.139477, 0.430436, 1.308126, -1.663393, 0.206676, -1.053060, 0.928127, 0.848650, -1.403534, -1.479429, 0.351608, -0.126559, -0.058183, 1.363872, 0.511943, 0.382296, -0.802274, 0.167611, 0.114009, -0.156027, 0.337398, 1.888498, -1.142142, -0.190050, -2.309773, 1.882275, -0.908648, 1.156070, -1.083581, -0.260234, -0.264256, 0.181673, 0.998001, 0.708337, -0.820202, -1.056552, -0.549025, -0.937117, -0.607025, 1.091182, -0.349356, -0.474430, -0.095454, 1.996152, -0.563996, -0.316541, -0.524540, 0.944083, 0.770946, 0.190239, -0.540259, 1.345416, -0.275899, -0.350663, -0.323367, -0.948036, -0.512628, -0.154243, 0.342741, -0.486023, 0.453986, -0.626529, -0.413604, -0.850539, 0.825574, -0.248336, 1.645465, -0.731914, -1.110464, -0.262465, -0.919119, 0.684329, 1.452496, -1.107936, 0.472311, 0.717388, 1.081823, 0.722107, -0.309873, -1.778788, 0.012027, 0.343833, -0.711979, -0.382678, -1.215450, 0.927912, -1.280086, -0.286294, 0.927771, -1.284849, 0.044937, 0.987196, -0.600440, -0.764728, 1.223866, -1.749675, 0.558138, -0.225351, 0.291901, 0.763121, -0.186465, 1.231005, -0.220323, -1.375887, 1.737642, -1.032664, 0.127659, -0.555420, 0.871373, -1.408172, 0.894561, -0.666330, 0.694927, 0.399955, 1.549409, -0.258027, -0.439352, 0.325821, -0.649380, -1.091650, -1.808038, -0.820617, -0.754702, -0.118449, -2.884336, -0.779339, -0.695485, -0.277610, -0.826338, -1.634652, -0.785844, -0.657514, -0.162834, 0.849195, -0.717902, -0.260639, 0.446192, 1.350384, -1.417821, 0.763972, -1.055862, 0.203728, -0.637896, -0.983660, 0.307930, -0.700155, -1.151881, 1.232924, -0.087471, 1.178497, 0.772805, -0.506379, -1.249147, -0.657724, 0.649312, 0.210307, -0.568956, -0.324855, 0.127071, -1.010271, 0.652170, 0.561438, 0.355418, 0.124805, -0.957488, 0.006968, 0.959223, -0.126700, -0.361955, -0.789080, 0.544005, 0.913224, -0.785589, -0.155600, -0.203003, -1.537046, 0.595913, 0.786441, 0.728597, 1.584259, 0.518694, 1.098688, 0.008041, -1.614629, -0.568905, -1.835487, -0.020016, 0.578924, -0.401919, -0.023403, 0.041107, 1.406335, 0.932857, 0.739902, -0.822920, -0.126282, -0.256550, 0.518091, -1.246217, 0.357496, 0.081969, -0.030353, -0.538042, 0.431942, 0.806271, 0.993471, 1.292731, 0.268364, 0.422041, 1.516722, 0.637980, -1.070699, -1.430245, -0.174343, 0.974864, 0.083185, -2.647842, -0.018127, -1.379291, -0.462449, 0.168273, -1.074682, -1.200976, -0.897146, 0.420637, 0.226442, 1.210052, 0.158170, 1.339542, -0.228302, -1.201164, 0.678916, -0.152949, -0.231727, 0.101638, 1.086831, 0.114915, 0.193390, 0.520851, -0.716967, -0.158356, 1.396594, -1.226498, 1.333604, 1.218269, 0.591765, -0.293817, 0.662191, -0.509264, -0.387811, 0.641513, -0.212842, -0.630714, -0.787177, -0.747907, -0.394068, -1.181964, -0.926449, -0.908128, 1.057537, 2.377935, 1.040726, -2.002921, -0.658259, 0.322599, 0.325795, -0.681271, -1.610763, 0.214933, -0.195344, -0.732711, -0.196677, -0.922687, -1.114889, 0.046415, 0.575205, -2.371344, 0.490256, -1.504221, -0.852711, -2.226125, 0.189895, -0.396921, -0.741804, 1.258941, 0.903288, -0.578421, -0.746789, 0.480031, -1.495332, 0.084609, -0.185206, -0.741113, 0.488575, -0.124369, 0.520563, 0.440869, 1.854863, 0.065226, -0.070361, 0.395258, -0.548170, 0.194915, 0.627369, -1.071900, 0.835065, -0.487628, -0.426167, 0.284812, 1.229825, -0.472712, -3.471420, 1.958858, -1.978104, -1.062547, -0.810515, -0.151313, 1.282813, 1.676740, -0.701179, -0.665178, -0.641462, -0.145278, 0.866631, 1.017982, 0.839669, 0.090788, 0.010057, 2.160164, -1.868641, -0.777389, 0.284229, 0.945118, 1.133554, 1.594268, -0.929536, 0.976802, -1.153779, -1.102439, -0.545499, -0.803905, -0.917282, 1.018876, -0.016141, 0.400464, 1.175557, 0.618795, 0.257319, 0.353386, 0.755966, -0.918343, -0.112120, -1.957283, 0.358920, 0.291256, -0.449399, -0.765446, 0.623519, 0.377403, -0.405677, -1.255373, 0.470263, -0.510526, 0.455812, -0.405665, 0.395529, -0.039041, 0.420992, -0.455029, 0.922937, 0.960143, -0.174892, -1.491710, -0.878063, -0.041892, -1.542657, -0.586673, 0.673121, 0.278594, -0.744022, 0.400989, 0.141963, 0.528980, 0.782551, -0.765592, -3.077056, -0.176554, 0.189274, 0.928752, -0.143396, 0.308576, -0.930744, 0.011027, 0.767563, -0.422409, -0.024158, 0.132172, -1.070852, -0.892882, 0.936342, 0.330952, 0.425262, -0.088240, -0.352334, -0.327625, 1.104257, -1.595690, -0.575914, -0.503969, 0.452161, -1.102836, -1.181777, 0.599525, -0.212906, 0.135153, 0.953362, 0.290967, -0.497606, -0.630167, -1.904923, -0.193714, 1.430350, 0.579384, 1.151465, -0.371174, -0.206153, -0.126312, -1.265094, -1.109821, 0.976947, 0.663322, -1.565278, 1.997962, 1.974330, -0.758936, -0.128314, -0.568111, -0.096106, 0.102235, 0.508888, -0.186083, 0.621621, 0.558730, 0.487501, -1.159593, 0.589362, -0.658880, -0.068941, -0.408277, -0.327204, 0.767794, -0.665051, -0.106410, 0.717532, -0.075429, -0.783067, 0.328551, -0.911251, 0.301051, 2.248267, 0.280039, -0.128141, 0.337225, -1.861028, 2.074609, 1.304927, 0.692123, -0.384749, -0.255998, 0.207496, -0.682414, -0.466749, -0.644177, -0.464388, 2.079644, -0.031801, -2.459670, 0.602536, 0.587000, 0.145167, 0.601113, 0.418047, -1.533176, -1.398823, 1.332788, -1.320762, 1.386994, -1.951933, -0.197956, -1.281009, 1.017715, 0.968581, 0.847523, 0.344410, 0.702560, -0.716600, 1.034190, -0.683654, 0.441521, -0.501335, -1.428623, -0.164273, -1.251855, 0.936645, -0.179842, 0.038877, -0.074363, -2.411149, 1.683910, -0.329958, 0.068716, 0.001927, -0.871787, -0.055828, 0.519028, -0.976447, 0.284948, 0.174078, 0.405544, -1.266704, -0.290867, -0.491148, -1.137185, 0.243461, 0.820727, -0.281501, 0.357176, 1.026953, 1.380192, 0.026565, -2.035794, -2.683347, -0.793371, 0.247048, 0.436278, -1.463137, 0.510608, 0.408506, 0.680546, -1.269389, -1.674156, 0.055552, -0.214216, 2.546355, -1.356142, -0.225836, 0.233195, -1.396419, -1.372800, 0.698696, -1.345543, -1.160208, 0.375353, -0.321001, -0.098894, -0.746127, -1.188361, 0.241601, 0.213069, -0.687789, 0.000259, -1.697009, -0.392925, 0.550013, 1.049769, -1.220510, 0.986781, -0.504827, 1.138408, -0.081807, 0.527459, -0.642788, -2.293021, -1.063609, 0.995131, 1.072966, 1.894066, 0.590662, 0.416504, -0.013372, 0.141664, -0.072102, -0.536056, -0.306425, -0.288491, -2.726400, -1.362125, -1.095878, 1.260155, -2.240189, -0.783740, -0.736593, 2.082050, 0.206090, 0.683437, 2.472804, 0.500268, 0.921836, 1.087455, 1.083292, 2.150990, 0.669659, -1.055766, -1.008252, -2.406810, 0.158756, -1.346463, -1.226624, 0.234445, 0.372226, -0.395401, -1.031653, -0.073567, 0.028250, -0.517777, 0.920520, 0.401587, -0.561708, 0.783198, 0.612223, -2.623595, 0.267330, 0.833980, -0.668182, -0.846267, 0.164838, -2.062011, -0.267630, 1.234690, 1.486353, 0.804720, -0.261752, 0.854011, -0.340968, -0.080165, 0.045658, -1.077075, 1.101985, 0.508550, 1.267486, 0.129629, 1.098764, -0.080763, 1.326010, 1.075671, 1.177864, -1.958402, -1.406060, -1.044418, 2.197954, -0.070487, -1.178608, -0.729226, -1.684683, 0.588851, 0.607503, -0.758390, -0.037811, -0.903945, -0.908954, 1.296130, -0.858210, -0.336361, -1.514495, 0.418092, -1.448387, -0.037263, -0.730364, 0.767328, -1.039257, -0.187513, 0.250304, -1.167844, 0.905511, 1.225566, 0.773329, 0.590053, -0.395775, -0.967780, -0.449805, 0.066671, -0.911307, -0.146448, -0.650075, -1.733644, 0.202639, -2.096868, 0.777623, 0.139698, -0.666559, -0.348310, 1.583402, 0.597975, -1.362816, 3.044469, -0.970940, 1.108881, -0.033359, -1.906896, -0.126966, 0.989336, 0.535150, -2.518695, -0.988642, 0.882000, 0.148014, 1.550435, 0.454611, -0.467841, -0.539649, -2.464569, -0.438146, 1.604214, 1.055978, -0.347897, 0.594906, 0.276337, -1.195851, -0.094712, -1.940078, 0.261595, -0.559067, -0.175453, -1.062460, 0.529136, 0.628452, -1.994576, 0.447600, -2.157587, 0.028968, 0.585512, -0.665303, -0.438573, 0.692657, 0.237587, 0.519565, 0.536739, 1.012157, -0.375979, -0.244076, -0.221519, 0.641126, 0.435968, 0.309686, -1.694985, 1.194197, 0.791178, -0.025695, -0.380001, 2.650587, 0.991207, 0.676633, 1.975837, -0.032809, -1.581086, -0.776096, -0.873394, -0.691602, 1.384972, -1.586605, -0.106223, -0.509311, -1.260914, -0.270195, -0.447073, 1.718911, 1.288213, -0.409454, 0.161570, -0.510411, -1.414662, 0.237212, -1.137569, -0.580576, 0.981392, -1.552203, -1.030880, 0.597492, -0.736982, 0.244241, 2.098681, 1.353868, 0.189834, 0.063874, -0.322596, -0.875432, 1.856609, 0.978770, 0.567828, -0.673501, -0.051392, 0.590863, 0.358643, -0.510432, 0.233621, -0.311325, 0.285921, 0.145806, 0.366766, -0.318504, -1.333216, 0.109532, 2.276802, 0.056999, 0.787855, 0.001969, 1.462392, 0.781060, -1.399222, 1.000759, -1.229889, -0.943922, 1.011972, 0.119094, 0.579928, 0.445671, -1.600450, 0.351057, 0.000005, -1.258211, 0.438742, 0.384129, 1.257095, 0.243613, 0.732215, 0.563773, 0.558158, -0.005431, 0.498690, 0.473708, 1.018654, 1.121101, -0.939852, -0.213199, -0.276401, 0.004909, -0.949371, -0.208996, -0.621509, -0.006088, 1.047576, -0.261587, 0.758026, -1.042452, 0.173167, -0.974808, 0.720904, 1.928434, -1.007969, 1.151387, 0.757279, -1.141207, 1.184501, -1.205198, -0.118223, 1.152584, -0.492933, -1.082554, 0.817773, 0.859660, 0.556207, -1.495700, 0.487703, -0.101187, 1.572150, 0.046708, 0.286033, 1.192786, 0.325252, -0.565112, 0.308252, -0.056969, -1.307379, -0.494229, 0.158643, 1.466922, -0.058740, -1.426654, 0.952023, 0.762363, 0.025910, -0.528175, -0.129232, -0.526779, -1.018734, -2.172885, 0.139164, 0.487541, -0.489762, 2.567008, 1.174187, 0.825296, 1.117466, -0.618133, -0.327267, -0.986281, 0.802568, -0.465938, -0.165495, 1.190362, 0.069215, -0.516492, 1.365286, 0.138378, 0.791981, -2.196522, -1.192415, -0.981542, -2.380377, -0.395878, -0.332126, 0.777393, -2.312853, 0.048237, 1.096405, -0.483414, 0.503911, -1.002781, -0.349081, -1.282461, -0.237205, 1.726126, 1.000734, -0.580431, 0.517764, -0.694245, 0.636223, 0.745810, 0.184304, -1.064833, -0.628694, -0.161844, 2.561419, -0.140944, -0.225927, -1.255550, 0.842041, 1.484609, -1.189823, 0.262127, 0.212034, -0.522273, -1.540660, -0.164170, 0.900511, -3.637427, -1.484830, -0.337817, -0.585816, 0.829291, -0.021735, -0.295395, 0.350354, 0.127400, 0.868848, 0.628189, -0.071356, -0.302068, -0.460823, -0.493332, 1.326903, -0.473122, -0.627086, -1.001637, 1.190783, 1.395118, 0.356406, -1.904800, 0.510484, 0.270202, -0.409133, -1.631714, -2.028938, -1.084906, -0.669172, -1.643011, 0.195874, -0.874741, -0.026854, 0.145770, -0.426812, 1.062227, -0.389446, 0.383789, 0.256626, 1.762084, 0.038312, 0.160966, -0.156655, -0.018273, -0.222940, -1.145909, -0.134850, 0.585524, 1.047425, -1.073503, -0.512874, -0.101105, -0.792661, 1.011243, -0.208642, 0.289026, 0.475198, 0.652303, -1.646680, -0.663122, -1.672177, 1.300855, 2.351508, 0.284167, 0.357206, -1.219270, 0.016459, -0.216782, 1.872439, -0.623918, 0.435119, 1.484990, -1.191152, 1.053817, -0.299299, 0.335644, -1.055210, 1.885218, -0.701890, 0.071460, -0.654747, -0.693071, -0.062382, 0.515474, -0.771797, 0.206875, -0.436573, -1.176895, 0.411175, -0.890135, -0.286007, -0.994778, 1.109493, -0.374172, -1.295705, 0.743912, -0.409898, 0.795929, 1.708612, 0.146927, 0.056893, -1.662144, 1.897628, -0.381825, 0.886572, 0.765283, -1.643459, -0.209627, 0.538402, -0.107180, 0.235326, -0.990710, -0.796664, 0.151547, -2.397212, 1.466284, 2.423258, -1.319225, 0.433650, -0.001136, 0.233109, 0.211764, -0.924049, 0.067780, -0.539493, -0.926936, -0.238775, 2.290321, 0.781045, -0.418014, 1.861555, -0.274531, -0.724386, 1.029387, 1.338853, 1.118110, 0.045584, 0.915301, -0.677501, 0.658590, -0.117179, 1.947100, 0.008935, 0.126832, 1.178329, -0.803223, 0.579354, 1.907056, 1.757846, 0.323214, 1.765478, 0.364182, -0.233604, -1.712457, 1.166000, -0.061417, -0.808175, -0.246385, -0.218994, -1.494620, -1.897371, -1.055054, -0.065949, 0.915990, -0.600269, -2.418455, 1.109551, -0.101269, -0.865274, 0.905284, 1.340405, 1.564946, 1.136933, -0.226384, 1.195632, -1.625775, -0.142709, -0.582714, 1.018635, 0.239187, 0.254904, -1.388055, 0.273447, 0.033671, -0.137348, 0.715405, -1.116788, 0.867256, -0.092840, -1.423702, 0.496947, 0.820572, -0.022488, -0.295736, -1.494535, 1.120374, 1.626204, -0.758905, -0.788870, 0.930361, -0.790291, -0.518069, -0.011004, 0.037606, 0.353431, 1.263922, 1.318524, -1.215041, 0.710435, -1.273998, -0.811268, 1.456560, -1.112965, 0.070197, -1.370241, -0.774796, -0.477639, 0.062192, -0.175403, 0.326411, -0.893677, 0.293676, -1.073488, 1.589946, -0.990054, 0.510195, 0.322609, 1.139129, -0.740678, 1.049678, 0.069499, -0.695848, -0.176900, 0.392683, 0.816067, 2.343448, 0.342424, 0.077515, 0.011839, 1.060618, 0.190697, -2.109954, -1.005106, -1.076016, 0.054223, 1.909171, -0.927378, -0.278525, -0.283782, -0.591413, 0.411979, 0.178880, 0.545758, 0.314061, 0.343164, -0.024496, -0.076241, -0.418832, -0.629426, 0.458747, -0.039186, 0.013764, 0.534525, -0.038161, -0.006657, -1.233315, -0.459750, -0.290533, -0.187723, 0.874260, -0.741724, -0.322112, -0.155293, 1.034464, 1.227990, 0.461718, -2.522946, 0.140447, 1.917121, -0.230219, 0.084232, 1.195831, -0.465479, -0.069053, 0.768489, 0.733076, -1.273126, -0.686845, 0.421374, -1.496670, -0.890413, -1.312735, -0.905685, -2.223762, 0.557832, -0.677297, -0.669101, -0.539208, -1.150457, -0.321102, -0.004650, 1.299911, -1.653696, -0.509951, -1.803900, -2.061029, -0.286209, -0.030529, -0.820282, 0.776440, 0.684709, 0.354456, -0.183622, -1.084615, 0.454193, 0.955770, 0.014660, -0.013150, 0.022208, 0.475078, 1.801752, -0.679029, -0.991057, -2.257233, 0.458207, 1.017008, 1.708871, -0.881148, 0.599051, -0.055908, 0.180152, 0.941960, 0.361025, 0.265645, 0.406258, 0.332640, -0.372810, 0.229761, 1.569845, -1.622195, 0.846943, 0.452573, -2.374628, -0.412241, -1.306029, 0.667033, -0.188091, 0.602733, 0.364158, 0.626955, -2.093137, 0.476072, 1.150041, 1.245420, 1.500910, 0.245463, 0.001392, 0.167791, 1.044601, -0.675887, -0.981063, 1.129331, 0.995739, -1.309379, -0.530822, -0.144421, -1.398133, -1.559309, -1.142807, 1.199523, -0.994016, -0.398398, -1.941531, 0.329216, 0.683361, -1.098504, 1.897109, -1.013998, -0.209602, -1.138555, 0.263112, -0.588895, 0.534464, -2.329653, 1.240660, -0.838349, -1.303276, -1.106231, -1.546260, 0.056579, 0.144556, -0.983626, -0.087649, -0.167575, 0.600193, 1.822821, -1.045258, 0.970930, 0.852403, -1.764350, 0.599596, 0.219811, -0.443530, 0.672631, -0.248273, -0.661209, 0.717856, 0.880369, -0.340855, 0.705535, -0.371386, 0.595894, -1.620608, 1.771393, 0.050063, 2.552893, -0.815177, -0.463815, -0.419730, -0.403656, 1.164727, -1.031374, -2.146148, -0.756977, -1.129535, 0.089393, 0.076610, 0.193511, 0.795068, -1.486254, 0.887222, 2.135152, -0.863207, -0.408982, -0.359638, -1.173769, 0.197693, 1.384118, 0.759013, -0.888398, 1.655151, 0.537808, 0.978626, 0.448329, 1.911075, -0.214059, -0.472554, -0.012441, 0.306431, -0.726796, -1.405204, -0.475013, 1.127137, -1.236143, 0.716715, -1.490087, -0.527281, 1.513673, 0.400385, -0.628402, -1.684841, -0.073905, 2.295146, 0.715512, -1.431172, -0.266330, 0.245475, -1.383456, 1.014582, -0.029370, 0.389303, -0.295882, -0.825704, -0.888124, -0.562533, -0.425604, 0.744794, 1.334797, 0.434175, 0.024609, 0.293229, 1.192807, 0.560325, -0.317291, 0.987226, -1.404189, -0.666735, 0.528517, 2.326823, 1.074562, 0.442010, -0.345489, -1.233982, -0.530251, 1.364220, 0.927370, 1.124556, -0.746726, 3.027888, 0.479960, 0.146034, 1.741444, -0.214056, -0.681461, 0.313598, -0.125564, 0.927843, 0.321219, 0.327717, 0.524398, 0.257596, 1.138793, -0.522281, 0.685992, 1.212762, 1.429589, -1.336824, -1.535577, -2.141625, 0.371031, -0.564663, 0.778991, 0.660521, 1.092923, 1.387850, -0.912745, -1.126989, 0.671569, 1.033428, 0.255001, -1.020624, 0.508126, -2.537246, -1.206881, 2.143155, 1.217432, -0.103698, 0.134533, -1.288910, -0.702015, 1.031837, -2.216333, -0.232174, -0.482767, 1.467776, 0.511015, 1.720150, -1.607136, -0.754607, -2.980773, 0.053542, -0.224538, -1.186255, 0.107825, 1.015998, 2.044798, -0.962822, 0.768290, 0.377811, 0.989644, -0.573371, -0.573764, 0.581537, -0.162456, 0.020037, -0.095484, -0.548828, 0.707258, 0.145471, -0.550174, -0.879973, 0.662598, 0.527053, 0.164336, -0.868319, 1.371678, -3.331736, 1.054190, -0.459952, 0.111668, -0.365330, 2.178210, -1.157461, -0.367150, -0.496674, 0.738479, -0.524752, -0.665053, 1.082217, 0.676992, -0.329835, -1.281568, 1.308636, -0.773786, 0.167909, 1.263999, -0.921950, 0.557877, 0.061439, -0.644029, 0.225120, -1.029846, 1.356338, 0.845113, -0.440693, 0.764361, -1.709079, 0.520657, -1.047641, -0.194259, 0.333679, 0.410957, 1.324033, 1.467328, 0.761615, 0.023882, 1.621456, -0.441009, 1.019255, -1.154135, -0.487367, -1.418002, 0.143929, 1.530343, 1.908421, 1.034541, 0.516334, -0.605141, -0.408537, -1.408641, 1.786848, -1.636864, 0.536098, -0.439890, 0.519830, -1.037863, 0.288615, 0.364682, 0.310926, 0.094643, -0.076550, -0.896334, -0.781903, 0.773831, -0.006851, 1.888107, -0.395528, -1.977861, -0.021403, 0.044674, -1.806692, 0.636308, -1.089045, 1.162437, -1.058922, 0.121448, -0.095135, -1.366638, 0.904716, -1.028959, 1.188603, 1.545438, -0.762388, 0.073392, 0.514723, 0.108277, -0.300074, -0.014929, 0.637609, 1.966302, -0.489263, -0.555309, -1.212615, 0.590619, 1.404817, -2.374523, -0.813090, 0.041592, -0.624261, -0.309411, -1.485190, -1.400385, -0.460758, -3.248042, 0.799233, 0.830464, 1.088285, -0.004690, -0.965094, 0.463383, 1.004339, 0.897590, -0.548591, 0.470458, -0.216502, 0.155910, 0.674579, -0.804897, 0.169923, 1.423382, -1.386097, 0.264713, 0.758326, -0.875114, -0.175062, -1.672930, -0.422078, 0.760608, -0.166908, -0.111036, 1.233218, 0.265164, 0.654944, -0.357084, 1.243490, 0.411791, -1.413935, -2.070543, 1.287142, 1.420768, -0.439515, 1.422767, 2.404319, -1.830192, -0.392318, -2.096961, -0.926867, 1.421650, -0.536812, -1.621780, 1.142596, -1.525986, 0.777854, 2.262506, -1.915564, 1.200449, -0.330272, -0.058940, -0.356124, -0.060913, 0.228493, 0.127902, 1.602695, -0.765264, -0.569040, -0.205218, 0.201786, 0.385277, 0.521777, -0.580311, 0.070717, -0.419210, -0.008011, -0.905166, 0.816212, -0.698387, 0.525203, 0.844407, -0.370375, 1.393425, 0.537902, 1.562649, 0.024912, 0.832647, 0.207483, -1.302135, -0.069374, 0.534695, -1.648680, -1.537451, 0.711174, 0.182759, -0.229749, 0.499966, 0.211740, -0.577806, -0.020320, -0.670744, 0.261563, -0.192689, -0.385004, 1.492509, -0.195899, -1.046078, 0.621155, 0.813167, -2.581225, -0.016883, -2.062985, 0.537845, -1.083806, 1.918472, 1.496444, 0.178091, -1.589480, -0.483474, -0.544916, -0.488579, -0.435137, -2.074032, -0.408304, 1.868456, -1.034542, -2.049857, -0.613862, -1.176885, -0.188859, 1.240873, -0.149484, -1.683366, 0.704676, 0.081753, -1.221354, -0.255223, 1.037273, 0.878709, 0.178451, -0.131728, -0.495844, -0.941290, -0.577240, 0.772213, 2.023265, 0.175766, -0.851853, 0.328859, -0.126748, 0.375021, 1.173086, 1.218199, 0.627246, -0.914798, -0.491524, -0.825908, 0.441356, 0.868793, 0.543873, -0.669288, -0.182742, 1.264376, -0.166431, -0.457383, -0.052764, -0.137540, -0.534472, 1.595176, 1.023789, 0.207692, 0.406993, 0.144197, -0.747123, 0.775069, 2.253808, -0.965658, 0.105241, -0.789178, 0.328050, 0.299749, 0.203777, 0.740311, 1.205186, 0.808269, 0.660498, 1.499956, -1.296732, 0.806671, -1.704128, 0.388678, 2.108604, 1.343242, -0.726507, 0.113946, -0.522061, -0.965185, -1.216846, -1.104517, -1.731349, 0.150635, -1.113899, -0.278155, -0.028369, -0.413708, 0.813491, -1.307175, 0.974120, -1.371080, 0.534954, -0.634996, 0.188443, -0.664846, 0.154796, -1.536029, 0.149593, -0.890506, 0.087411, 2.033621, -0.067087, -0.921834, 0.273096, 0.923246, -0.744569, 0.400070, 1.506722, -0.680955, 1.364513, -1.115461, -0.173959, 0.698572, 0.617989, 1.457048, 0.630312, -0.250400, 0.059322, 0.035183, 1.030191, -1.758636, -1.395863, -0.416439, -1.713644, 1.153913, -0.680888, -2.140296, 0.533423, -1.317319, 1.443944, 0.522052, -0.668387, 1.409010, 1.062778, -0.153992, -0.995280, 0.244128, 0.102486, 1.438015, 0.389648, -0.759850, -2.193407, -0.647245, 0.976636, -1.037196, -0.868317, 0.835487, -1.068519, -0.519246, -2.957297, 1.077279, 1.769498, -0.614078, 0.378078, 2.003561, 0.873780, -0.574898, 0.128163, -0.711513, 1.277697, 0.305506, 1.021701, 0.400921, -1.110662, -0.497890, 0.670184, 0.428333, -0.126721, -0.561361, 0.045325, 0.946227, 1.015976, -0.537224, 0.059706, -2.225138, -1.084943, -1.220230, 0.628870, -2.296038, -0.352603, -1.319604, -0.788189, 0.459657, -0.254966, -1.729455, 0.218156, 0.255304, -0.960920, 0.369279, 0.109987, 0.390617, -0.434143, -0.344420, 1.335274, 0.516238, 0.920420, 0.319163, 1.259682, 1.342145, 0.291877, -0.466280, 1.299461, -0.778515, -0.086451, -0.126161, 0.545852, 2.344039, 0.022464, 0.910875, -0.163497, -0.824642, 0.518829, -0.882440, 0.754235, 2.921510, -0.625728, -1.772397, 0.244208, 0.840326, -0.686593, -0.713995, 0.035016, -0.176128, 0.837513, 0.380781, 1.277744, 1.274880, -0.689568, -2.461069, 0.606377, 0.614865, 0.816461, -0.804323, -0.219512, 0.407730, -0.344659, -0.248791, -0.982725, 0.780997, 1.402391, 1.330452, 1.416616, -0.292092, 1.367476, 0.305092, -1.249481, -0.118244, -0.509569, 1.092765, -1.532226, 0.468123, -1.473631, 0.765450, 0.018377, 1.393742, 0.566176, -1.265004, 1.754520, 0.150977, 0.475002, -0.986099, -2.299563, 0.713028, -0.530039, 1.498114, 0.798058, 1.245707, -1.568818, 0.235977, -0.982765, 1.495870, 1.850370, -2.151290, 0.381170, -1.062618, -2.211775, -0.215818, 1.538430, -0.515485, 0.028823, -0.182478, 0.805574, 1.001918, -0.229076, 1.273700, -0.885725, -0.656375, 0.459569, -0.101639, 0.476273, 1.167392, -0.078054, -0.728122, -1.091858, -1.854604, 1.358527, -0.840585, -1.374798, -0.036451, 0.261735, 0.297810, -0.619712, -1.524847, -0.010313, -1.107097, -0.563682, -1.289894, 0.307475, 1.871719, -0.522393, -0.476331, 1.219988, 0.454503, -1.463731, 0.670449, -1.193137, 1.489244, -0.600564, -0.897661, 0.233121, 0.423109, 1.164782, 1.268565, -0.013568, 0.633664, 0.515230, 0.069607, 0.364814, -0.862776, 0.702784, -1.287990, 0.984797, 0.029380, -0.591267, 0.181596, -1.573559, 0.427657, 1.151090, -0.560231, -0.708282, -0.077540, 0.757293, -0.863328, -0.405586, 0.467488, 1.316945, 0.051356, -0.605329, -0.946038, -0.487128, -0.695447, -0.767863, -0.448410, 0.467812, 0.178234, 1.199300, -0.394791, 1.040377, -0.590940, 0.624627, -1.177059, 0.943141, 1.224928, -2.564818, -0.917116, 0.006129, -0.137459, -0.682247, -0.766574, -0.266086, 0.189102, -0.280712, -1.975430, 0.158623, -0.524612, -0.525051, -0.272309, 0.731790, -0.149989, -0.528814, 2.040383, -0.490866, 1.025444, 0.899046, 0.181572, -2.503881, -0.879355, 0.136117, -0.623299, -0.031818, 0.608262, 0.716097, 0.809596, -1.128883, -0.206919, 1.426786, 1.182781, -0.347721, 0.011850, -0.413692, 1.522095, 0.056633, 1.062480, -0.311103, -0.225509, 0.180495, -1.514922, -1.598528, 0.472770, -0.744521, 0.203204, -0.947682, 1.236539, -1.413674, 1.407265, -1.143383, 0.846190, 1.266048, 0.337357, -0.531640, 0.391677, -1.482473, 0.074738, -0.171645, 0.943227, 1.578277, -0.801293, 1.404288, -0.796159, 1.843699, 1.555386, -0.231791, 0.335094, 2.273644, -0.019973, 0.173681, -1.692660, 0.552380, -0.735319, -0.446340, -0.640911, 0.357761, -0.719498, -1.201513, -0.719392, -0.908473, -0.068960, -2.447026, 0.535716, 1.383769, -0.811539, -0.002266, 0.039036, -0.305835, 2.950330, 0.968391, -1.878978, 0.321949, 1.498647, -0.842371, -0.094631, -0.575112, -0.196278, 1.484954, -1.742943, 0.288457, -0.339258, 0.488971, 1.281911, -1.881498, -0.697992, -0.833360, 0.476382, 0.639601, 0.111668, 0.324967, -0.551196, -0.426131, -0.130189, 1.687247, 0.205408, 0.928738, -0.567229, 0.568569, -0.651737, 0.525725, -0.481928, 0.180353, 1.976725, 0.224682, -0.685856, 0.460505, 0.985929, -0.564463, 1.850798, 0.291648, 1.944833, -0.018750, -1.301178, 0.002357, 0.142204, -2.720066, -0.955542, 1.815485, 1.612705, 0.991859, -0.992540, -0.118520, -0.328558, -1.529873, -1.274480, -1.158208, -0.940421, -1.770243, -1.382514, 0.257653, -0.275606, -0.750199, 0.299383, 0.301661, 1.167439, 0.698270, 1.387517, -0.319246, -1.928700, -0.587553, -0.098688, -0.321227, 1.037314, -1.590071, 1.040218, -2.178633, 1.563898, 0.205430, 0.162899, -1.046752, 0.481032, -1.865969, -0.844391, 0.339693, -0.069438, -0.172556, 0.009437, 0.730881, 0.626576, 0.561216, 0.795005, -0.984620, 0.763857, 0.524705, 0.921103, -1.168306, 0.455283, -0.803693, -1.097694, -2.696414, -0.872541, 0.793090, -0.655998, 1.795083, 1.077597, -0.966245, 0.068323, 0.065834, -1.416327, 0.707290, 0.217629, -1.395185, 0.032182, 0.449863, 1.138087, -1.017296, 0.271398, 0.499431, -0.824357, -1.829923, 1.133071, -0.133135, -0.775079, 0.553755, -1.270237, -2.807444, 1.389330, -0.481400, -1.295476, -0.658587, -0.806946, -0.215979, -0.885361, -1.678919, 0.809544, 0.130433, 0.581982, 0.445199, -0.504430, 2.000309, -0.280986, -1.367024, -0.213127, -0.167787, 0.389315, 0.548861, 0.099962, 1.259349, 0.765502, 0.358491, -0.226796, 1.252579, -0.324868, 1.527196, 1.413068, 0.059970, -0.270739, -1.771325, -0.616667, 0.527772, -0.704382, -0.179962, 1.299003, 1.739202, 0.425919, -0.616951, 0.807707, -0.614526, -0.716142, 0.962665, 0.749817, -1.684482, 0.408924, -0.136152, -0.371511, 0.071161, 0.192823, 0.727198, -0.898847, 1.023885, -0.670586, 1.448870, 0.012729, -0.150810, -0.998492, 0.307383, -0.863216, 0.806692, 0.075159, -0.660596, -2.125418, -1.418760, 1.119131, -1.119449, 0.922850, 0.075777, 0.213148, -0.697288, 0.148061, -0.993936, 0.743661, 1.360856, -0.779395, 0.888504, -0.289549, -0.216585, -1.393080, -0.502423, 0.203002, 0.834382, -0.655577, 0.736628, -0.019219, -0.780101, -1.041887, -0.756728, -0.931357, 0.413574, -0.305103, 1.683607, 0.269872, 0.196835, 0.682081, 2.138652, 0.114750, -0.311360, 1.293819, 0.534967, 2.789615, -0.039556, -0.564443, 1.713231, -0.075218, 0.363816, -0.651924, 0.330490, 0.027153, -1.917235, 0.305972, 1.319533, 1.176569, 1.320974, -0.646705, 0.835317, 0.852545, -0.179670, -0.980183, 0.428760, 1.058230, -1.810070, 2.982350, -1.240475, 0.327879, -0.455246, 0.655701, -0.993868, 1.133957, 0.243906, 0.011547, -0.586280, 0.168710, 0.637136, 0.219325, -1.501144, -0.297462, -1.342997, -1.355173, 1.745832, -0.271187, -1.405792, -0.805623, 0.223954, -1.833553, 0.788405, 0.038174, 0.032714, -1.057884, -0.609131, 0.747145, -0.562963, -0.368341, -0.149903, -1.566744, 0.118407, 0.990306, -0.581408, 0.384902, -0.222697, -0.286243, -0.837053, 0.379071, -1.694925, -0.148237, -1.001655, -0.939039, 2.387693, -0.014405, 1.235432, 1.215446, -1.041025, 0.739508, -0.459189, -0.652104, 0.090923, -2.610963, -0.003515, 0.430477, -1.491210, -1.313053, 0.209521, 0.502622, -0.451813, -0.428683, -0.352735, -0.924562, -0.247310, 0.016196, -0.403586, -0.181668, 0.296905, 0.423232, -0.896659, 1.017795, -1.011217, -0.256690, -0.509200, -0.182072, 0.628494, 0.165698, -1.358746, 0.688697, -1.117446, -0.109065, 0.002494, 1.320109, 0.150718, 0.106386, 1.517647, -0.731118, 0.390780, 0.744664, -0.005848, 0.972631, -0.165890, -1.411382, -0.663857, -1.132520, 0.357000, 0.765752, -1.421924, -0.435078, -1.222755, -0.314333, -1.109803, -0.353260, -0.505041, -0.748299, 1.898498, 0.835924, -1.412722, 0.673801, 0.238783, 0.700651, -0.122296, -0.065642, 0.863425, -1.393089, -0.241399, -0.717085, 1.417435, 1.291105}, + { 0.397165, 1.013243, -0.580456, -0.539900, 1.492228, -0.991986, -0.183508, 0.300911, 0.694721, -0.513061, -0.737393, -1.375032, -0.360335, 0.210935, 1.674464, 1.452875, 0.521385, -0.418202, 0.830911, 0.574499, -0.884327, -1.301128, 0.423649, 0.888449, 0.125116, -2.051598, -2.137657, 0.452855, -0.705826, -0.926460, -1.432225, 0.228289, -1.674709, -0.496074, -1.128256, -1.518343, -0.245230, 0.905738, -0.807916, 0.458934, -0.166920, -0.296758, -0.533006, -1.565342, 1.382351, 1.670604, 0.352162, -0.536369, 1.130132, -0.557981, 1.109414, 1.716403, -0.578993, 0.190693, -0.294384, 0.379111, -0.260579, -0.119545, 0.858231, 0.653759, -0.664195, 0.067498, -0.086708, -0.158172, 1.139665, -0.597605, 1.733270, 0.437946, 0.411139, -1.214143, 0.774154, -0.671738, -0.588775, 1.213029, -0.536960, -1.835787, -0.886063, 1.591681, -0.172947, 0.523314, -0.593065, 0.607766, -1.194639, -1.215624, -1.564887, 0.225557, -1.676564, 2.316875, 0.056636, -1.134164, 0.065339, 0.936080, -0.392343, 0.247315, -0.766660, -0.513602, 0.172231, -0.243505, -0.090825, 0.037499, 0.592879, 0.012768, 0.333559, 1.794526, -0.490554, 0.364454, -0.091941, -0.131372, -1.434565, -0.007194, -0.357630, 0.638191, -0.405450, 1.688971, -0.294326, -1.508083, -0.075706, 0.221664, -0.952836, -1.489164, -0.979668, -0.634263, -0.543435, 1.046351, 0.726939, 0.899171, -0.296379, -0.922750, -0.001154, -0.098650, 1.506151, -1.300368, -1.088969, 0.014904, -0.474047, 0.275806, -0.506889, -0.706342, 0.210445, -1.053886, -0.077953, -0.005184, 0.246824, -0.723736, 0.927091, 0.044494, -0.036872, -2.366461, 1.714686, -0.995875, -1.138391, 2.401925, -0.679129, 2.020354, -1.048464, -0.787486, -0.225321, 0.130664, -0.247893, 1.134072, 1.306830, 2.379118, -0.220800, 0.550274, 1.569736, -0.529171, 1.708259, 0.736169, -0.009291, 1.325264, 0.849111, -0.736453, -0.237229, 0.022160, 0.208047, 0.278328, -1.580354, -1.704031, -0.030604, 1.337086, 0.906555, 0.394265, 0.278084, 0.801610, -1.033360, 0.151163, 0.358357, 0.234279, -0.720662, 1.106666, -0.119077, -0.141364, 0.621292, -0.459466, -0.529440, 0.455796, 1.065438, 2.173995, 1.051766, 1.093550, -1.714514, -0.024252, 0.113096, -0.145251, -0.018128, 0.983392, -1.741264, -0.175012, -1.304080, -0.790993, 0.638753, 0.247880, 0.187980, -0.562990, -1.892071, 0.670358, 0.348319, 0.011634, 1.657741, -1.714747, 0.962067, 0.417057, 0.434243, -0.581941, -0.965226, 0.846370, -1.350911, -0.334557, -0.911635, 1.569505, -0.810260, 0.304121, 2.262833, -1.036997, 1.334691, 1.047509, 0.187256, 0.472405, -0.623094, -0.758513, 0.539508, -0.523055, -0.576230, -0.156583, 1.374668, -0.153779, 0.162651, 0.057473, 0.165653, 0.450271, 0.980888, -0.153102, 1.848653, 0.268405, 1.130774, -0.431838, 1.160608, -0.014931, -0.948217, -1.061217, -1.039321, -0.013790, -0.691267, 0.367589, 1.939296, 0.180247, -0.254123, -0.754973, -0.280432, 1.815686, -1.466435, -0.177793, 0.627913, -0.010726, 0.464367, 0.324016, -0.192304, -0.093668, 1.517820, -0.541341, -1.508760, -0.677816, 0.102409, -0.864010, -2.444298, -0.000053, 0.679846, 0.439393, -0.216990, 0.857101, 0.317781, -1.148404, 0.047849, -0.229306, 1.364337, -0.688216, 0.287174, -0.374897, -0.484994, 0.473971, 1.060714, -0.998795, 1.164440, 0.982305, 0.706425, 1.672443, -0.118692, 1.201890, -0.800778, 0.618435, -0.694790, -0.584943, -0.054823, 0.771585, -0.636139, -0.835438, -0.373417, -0.420539, 0.090531, -0.046146, -0.924013, 1.529983, -1.187986, 0.318064, -1.675146, 0.294715, 0.458003, -1.444916, -0.953439, -0.342391, -1.046806, 2.108878, -2.556422, -0.027927, -2.210886, -0.408940, -0.431539, 0.217322, 0.840138, 1.581377, 0.488810, -0.710729, -1.928737, 1.035245, -1.338092, -0.374711, -0.468776, 0.311324, -1.195143, -1.406755, -1.579034, 1.119445, -1.010654, 1.696116, 0.383855, -0.093121, -0.132160, -1.259138, -0.929384, 1.112618, 1.032500, -1.414062, -1.175238, 0.802387, -0.956024, -0.111402, -0.583350, -0.008058, -1.381822, -0.243236, -0.529014, -0.331936, 0.457004, -0.600269, 0.983720, 1.166432, 1.167615, -1.084497, -1.382124, -1.259676, -0.343323, 0.423589, 0.746341, 0.750604, 1.381899, -0.550310, -0.274333, 0.183110, 0.215127, 0.726726, -1.316570, -0.053437, -0.496814, -0.609472, 1.555306, -0.663982, 0.476021, -0.350185, -0.392853, 1.233200, -1.820066, -0.858947, -0.517410, -0.849511, 2.610362, -1.027193, 1.425857, 0.076560, 2.085185, -0.666659, 0.011869, 0.242314, -1.503478, 0.725732, -1.024908, -1.960281, 1.133102, 1.180238, 0.293429, -0.202228, -0.961507, 1.176178, -2.093014, 0.844525, -0.535320, 0.398338, -0.616420, -1.085451, 1.594190, -0.982022, 0.330121, 1.076506, -0.189050, -1.937682, 1.411678, -0.320164, -0.112501, 2.124958, -0.792276, -2.395392, -0.622417, -0.785656, 0.521785, 0.272260, 0.017130, 1.129384, 0.005096, 0.388710, -0.769363, 1.334164, -1.543026, -1.182599, -1.190754, -1.085749, 0.183249, 0.687015, -0.060892, -0.662871, 0.585874, -0.624947, -0.403026, -0.184735, -0.874062, 1.476311, -2.057559, 1.515078, -0.134726, 0.381779, -0.117573, -0.165749, -0.586940, 0.071684, 0.565734, -1.325014, 0.518892, 0.045777, 0.133149, 0.800403, -0.232123, 0.397268, -0.740767, -1.184987, -0.134066, 0.078891, -1.256274, 0.465483, -1.128717, 1.133862, 0.386876, -1.451837, 0.733721, 0.690130, 1.425783, 1.534748, 2.247993, 0.697512, -1.387960, -0.476790, 0.229547, -0.120366, -1.174757, -0.699294, -0.013259, 2.380414, 0.135271, 0.496015, 1.201388, 0.587390, 0.186619, -0.403154, -0.824730, 0.264890, 1.573664, 2.609306, -1.019358, -1.044406, 0.651605, 0.989380, -0.176321, 0.773894, 0.468863, 0.254116, -0.169025, -2.347446, -0.099215, 1.330931, 0.655789, 0.776291, -0.932055, 0.719848, 0.473719, 1.326288, -0.614428, -1.876394, -0.489932, -1.723081, 0.068322, -1.093716, -0.135400, -0.797543, -0.109965, 0.233379, 0.203365, -0.129450, -0.592535, -0.267019, 1.346790, 0.862872, -0.489456, -0.420004, -1.756073, -1.071652, -0.133473, 0.039600, 2.074240, -0.484601, 0.855653, 0.197005, -0.991124, -1.629591, -0.622496, 2.100167, 0.284515, -0.504327, -0.851226, -0.253184, -0.713808, -0.894247, -1.072590, -0.201595, 0.421528, -0.236077, -0.712958, 2.043358, -0.043320, 0.413787, -0.019062, -0.847061, 0.732291, -0.210591, -0.151418, -0.006481, -0.983195, -0.815408, -1.361210, -0.639488, -0.497659, -2.015811, 1.400416, 0.378386, -0.756485, -0.032055, -0.182408, 0.306899, -1.073931, -0.787714, 1.584902, -0.674140, -0.068315, 1.411891, 0.940210, -0.040609, -0.630662, -1.148931, 0.923472, -0.545150, 0.981498, -0.895652, 0.482536, 2.033854, -0.244415, -1.315528, 3.225701, 0.352066, -1.023610, -1.511474, 1.913982, 0.758779, -0.443437, -0.529319, 0.319506, -0.067334, 0.381064, 0.290573, 0.456645, 0.280961, -1.807991, 0.884565, 1.034516, -0.608102, 1.190114, -0.296458, -0.845326, 0.036126, -0.449852, 0.717928, 0.097068, -0.188536, -0.858467, -1.598724, -1.093997, -1.687368, 0.895467, 0.089667, 1.200765, -2.037735, 0.889267, 0.286117, 0.073212, -0.140695, 0.689518, 0.137357, 1.082286, 0.470574, 0.361196, 1.206347, -0.351229, 0.170791, 0.287571, 0.178035, -0.180093, 0.534996, 0.263364, 0.724114, -0.581904, -1.371533, 0.237724, -0.004415, -0.683002, 2.578116, -0.252388, -1.191188, 0.549791, 0.135916, -2.070560, 0.983012, 0.881802, 1.204644, -0.047328, -0.324176, -1.098115, 0.048772, -0.949597, 2.135715, 0.712094, 0.932682, -0.503885, -0.363873, -1.420392, -1.067636, -0.716267, 0.661703, -1.327474, 0.673860, -0.371546, -0.804773, -0.430799, -0.951913, -0.735669, -0.911689, -1.102980, -0.641041, -0.285290, 0.867187, -0.667877, 0.180071, 1.008283, -2.849576, 1.265435, 0.081812, -0.710423, 0.085976, 1.422108, -1.281950, 0.318320, 1.214755, -0.498410, -0.497919, 0.578317, -0.835989, -0.442451, 0.476271, -2.028645, 0.385499, -0.493140, -0.189132, 1.428288, 0.873565, 0.271294, 1.161797, 0.375750, -0.285562, -0.917284, 0.226130, 0.701356, -0.832818, -0.109478, 0.907364, 0.543434, -0.585035, -0.473771, 0.876048, -0.053585, -0.029816, -0.910200, -0.048843, -0.737399, 0.766513, 0.124387, -0.802724, 0.793690, 0.066668, -0.115733, -1.508182, 1.120544, -0.805954, 0.030200, -0.667911, 0.233937, 0.747659, -0.098865, 1.182375, 0.062250, 0.027103, -0.828543, -1.808298, 0.041475, -0.938712, 0.029264, 0.813584, 1.077040, -1.577606, 0.569054, -1.955849, 1.349359, 0.986165, -0.342974, -0.772643, -1.081286, 0.146076, -1.646757, 0.005101, -1.170061, -0.378279, -0.660019, 0.211732, 0.424259, -1.801814, 1.071551, -1.497200, -0.865461, 0.435804, -0.441309, -0.347799, -0.570818, -0.176797, -0.772572, -0.812724, -0.164012, 1.136114, 2.038723, -2.060178, 1.592079, -0.628180, 1.204005, 0.266001, -1.183349, 0.109093, 1.239659, 1.413736, -0.140175, 0.051579, 1.682037, 0.700888, 0.094187, -0.599841, 0.789042, 0.483594, -1.816020, -1.927299, -0.022867, -1.062248, -0.669560, -0.366063, 1.510807, 0.440085, 0.852795, -0.959855, -0.471377, -1.305850, -1.255451, 0.194569, 0.854528, 0.352462, 1.248448, 1.181572, -1.424885, -0.067211, -0.261307, 0.071001, 0.002598, -1.015030, 1.063262, 0.407647, -0.337667, -0.138938, 0.237099, -2.365273, 1.418566, -0.083945, -0.622927, -0.120568, 0.324560, -0.811707, 1.045303, 1.595960, 1.664763, -0.304785, 0.634798, 1.116530, 0.872638, 1.739248, 1.318437, 1.394335, 0.282168, 0.559300, 1.658901, -0.673098, 0.034962, -0.843634, -0.093505, -1.760403, 2.791938, -1.345091, -1.507774, -0.946118, -0.083032, 0.985762, -1.721708, -0.138330, 2.019631, -1.068158, -0.564243, -0.240727, -0.661027, 1.258696, -0.384826, -0.006633, -0.621674, 1.863888, 0.018377, -1.075452, -1.131522, -1.098377, 1.511057, -1.895211, 0.552905, 0.147495, -0.579017, -1.164777, -1.192730, -1.622515, 0.929313, 0.496331, -0.898122, -1.924117, 1.083638, 0.062886, 0.666875, -0.994803, 1.523607, 1.954164, -0.604461, -0.026265, 0.038715, 1.022189, -1.857650, 1.228304, -2.105043, 0.656992, 1.374356, -0.687370, -1.589268, 0.056068, -1.147126, 0.800845, -1.522622, 1.426880, -1.543379, 1.332054, -2.539925, -2.665321, 1.244479, -0.200120, -0.694736, -0.076692, -1.157592, -0.070607, -1.245970, 0.729948, -1.986842, -1.214955, -0.359448, 0.487568, -1.317303, -0.015963, -0.595365, -0.677435, -1.477851, 1.025504, 0.186488, -0.508259, -0.287635, -1.015793, -1.913439, -1.178704, 0.674931, -1.658258, -0.869825, 0.826468, 0.521938, -1.335775, 1.503503, -0.485949, -1.138972, -0.831556, -1.864080, 0.066715, 1.204529, -0.674494, -0.920612, 0.990302, 0.000057, 2.147314, 0.993250, -0.004424, -1.088735, 0.221127, -0.658918, 0.933950, -2.810119, -0.664787, 1.119514, 0.022332, 0.918084, -0.770271, -0.464918, -0.576764, -1.753612, 0.109423, -0.783739, 0.629155, -0.012059, -0.077541, 2.432145, 0.349570, 0.324868, -1.072159, -0.203559, -1.378302, 1.341603, -1.145280, 0.897667, 2.348561, 0.493341, 0.445898, 1.194975, 1.280826, -0.969170, -0.646426, 0.358792, 1.906271, 0.363987, 0.175523, 1.460580, 0.431918, 0.635002, 0.214738, 0.230721, 1.143089, -0.223680, -0.429203, -0.746523, -1.342414, 0.423669, -0.527728, -1.354080, -0.164750, -1.479178, 0.073326, -1.214989, -1.069311, 0.805245, 1.184325, 1.851132, 2.032746, 0.315416, 0.838836, -0.775030, 1.149079, 0.031178, -1.076797, 1.026517, -0.060305, 0.914207, -0.275591, 0.967725, 0.250999, 1.815894, 1.889946, 0.539597, -1.527363, -1.693071, 0.213160, 0.773761, 0.928913, 0.021693, 0.440817, 0.403192, -0.881883, 0.298685, 0.928666, -1.783505, -0.030726, -0.092533, 0.822809, 0.530357, -0.287657, 0.473233, -0.000458, -0.617272, -0.767754, -1.092669, -0.727288, 0.583267, 1.940487, -0.763870, 0.068994, -0.721327, -1.283543, -1.122680, -0.787161, 0.485245, -0.247060, 0.276673, -0.608908, -1.152376, -1.694388, -0.737618, -1.863922, -0.619567, -0.077332, -0.052195, -0.659540, -1.109050, 1.040345, 0.369637, 0.360629, -0.494231, -2.585324, 1.636622, 0.396589, 0.844310, -0.647005, 0.950636, 0.015331, 2.168065, -0.061672, -0.621585, -0.751694, -1.511472, -0.203541, -1.054258, 0.568334, 0.948488, -0.014217, -0.050380, -0.770955, 0.745348, -0.798678, -1.770285, 0.210004, -0.609788, -0.187561, 0.178575, -0.043360, 0.492854, -0.493384, -0.235027, 1.704422, 0.661987, -1.341384, -0.206832, 0.710416, -0.459237, 0.602122, 0.087450, 0.398596, 0.102924, -0.940552, -0.638300, 0.833441, 0.035435, -0.120362, -1.554961, 0.883311, -0.761279, -0.322088, -1.181379, 0.611799, 0.447693, 1.284874, 0.711726, -1.473228, -0.134845, 1.678077, -0.514873, -0.317416, 0.929697, -0.202839, -1.335955, -0.180716, -1.851322, -1.281358, -0.161038, -1.068422, -0.508089, -1.734120, 1.755854, -0.118352, -0.729091, -1.097951, -0.899883, -0.141881, -1.849814, 0.855135, -0.245930, -0.349054, 1.607943, 1.259316, -0.041316, 0.651590, -0.603995, 0.326055, 0.410159, -0.270400, 0.463104, 0.808764, -0.436575, 0.982555, -0.704839, -1.112785, 0.050886, 1.234191, 0.119707, -1.391682, 1.142380, 0.623903, 0.175978, 1.363032, -0.201635, 0.698795, -1.450035, -1.788043, -0.429758, 0.876772, -2.337312, -0.819558, 0.151950, -1.436024, 0.473987, 1.010934, -0.700244, 0.225473, -1.311483, 0.082341, -0.405167, 1.529808, -1.189607, -0.472468, 0.182775, -1.311952, -0.600972, 0.577411, -0.009055, -0.037942, 0.919991, 1.485913, 1.888338, 1.141237, -0.319185, -0.943602, 0.743923, -0.618982, -0.683383, -0.108076, 0.527764, 0.003615, 2.172374, -0.409060, 0.579223, -1.292404, 0.457985, 0.373857, 0.156080, -1.341538, -0.855673, 0.406710, -1.492688, 0.602127, 0.144247, 0.774026, 0.373067, -1.788833, 0.402933, -0.308195, 1.348921, -0.384136, -0.920051, 0.098612, -0.720738, -0.002986, 0.568578, 0.908365, 0.586925, 1.034261, 0.533148, -0.436075, -1.683587, -1.082477, -0.313418, 1.651783, -0.592197, 0.396849, -0.092580, -1.195874, 0.403448, -0.485698, 0.523988, 0.549782, -0.587060, -0.055816, 0.901204, -0.730951, -0.493023, 0.197538, 1.637919, -1.178621, 0.247565, -0.675938, 1.103452, -0.740748, -0.280723, -1.433761, 0.111209, 1.425659, -0.983491, 0.225714, 0.802251, -0.733176, -1.118379, -0.936064, -0.250265, 0.940377, 0.392265, 1.377372, -0.572520, -1.142183, 0.465204, 1.611640, -0.265715, 0.518948, 0.067850, 0.710987, -1.036429, 0.382771, 0.129837, 0.587012, -0.950874, 0.536973, -1.436531, -0.689113, -0.058135, -1.041584, 1.654180, 0.392586, -1.027425, -0.967038, 2.557432, -0.291319, 0.653046, -0.235383, 1.275973, 0.065896, 0.730570, -2.448999, -0.329564, 2.004240, -0.372871, -1.073615, -0.511041, -1.684215, -0.443890, -1.226017, 0.316717, 0.178127, 0.487975, -0.282163, 0.523434, -0.131077, 0.444634, 0.837972, -0.157197, 0.579473, -2.547596, -1.285968, 0.532960, 1.921268, -0.135470, 0.967439, -2.038306, 1.293984, -0.158821, -0.027326, 2.278564, 1.144071, -0.200812, -1.256030, -0.318251, -2.005130, 0.242267, -1.069012, -0.284217, 0.199585, 0.896775, -0.514176, 2.167861, 0.614264, -0.936390, 1.178507, 0.270925, -1.824308, 0.188437, 0.782127, -0.493720, 2.223413, 0.354851, 2.018176, 0.570242, 1.219917, -0.249343, 0.622620, -0.346390, -0.399315, -0.548299, -1.022983, -1.155953, -0.130904, 0.273317, 0.978461, -0.608401, -1.647908, 0.184279, 0.810287, -0.787266, 0.661509, 1.605829, 1.016966, -0.133203, 0.279700, -0.235610, 0.361927, -0.584311, 1.093198, 0.008754, -1.532752, -0.270824, -1.262523, -0.988209, -0.179451, -1.018919, 0.828744, -0.573839, 1.684596, 1.392579, 0.439995, -1.765784, 0.435890, -0.889822, 0.151531, 0.262388, -1.012277, -0.059778, 0.840136, 0.799204, 0.208205, -1.671962, 0.502075, 1.229162, -0.125882, 0.845284, 0.069196, -0.382556, 0.252484, -0.440008, 0.047510, 0.675985, 0.563107, -1.091485, 1.112734, 0.266755, -0.518919, -0.167283, -0.417478, -0.914600, -1.423158, -0.333006, 0.048717, 0.193935, -0.705966, 0.914987, 0.834823, 0.256370, 0.797875, -1.306289, -0.295400, 2.244984, 0.644642, -1.072073, 0.620122, -0.016667, -0.504186, 1.385618, 0.731098, -0.463120, -1.540487, -1.093301, 0.166048, 0.147985, -0.718910, -1.016870, 0.555133, -1.271938, -1.925448, 0.101491, -1.029753, -0.075627, 0.404883, 1.251100, 0.644834, -0.567768, 0.284192, 2.107924, 0.550819, -0.552165, -1.192165, 0.554937, -1.014702, -0.733524, -0.081792, 0.515482, 0.634166, -0.364457, -0.238577, -0.268734, -0.041544, 0.135510, -0.417914, 2.916407, 0.015797, -2.192772, 0.515619, 1.630348, -0.791589, -0.197421, -0.195284, 1.476410, 0.434930, -0.333828, 0.053909, -0.970011, 0.414807, 1.480048, 1.393122, 0.802339, 0.854854, 0.895922, -0.303554, 0.899648, -0.975613, -0.308197, 0.219391, -0.230040, 0.186740, 0.925866, 0.417965, 0.597649, -0.713923, 1.167621, 0.328905, 1.448967, -0.112932, 1.170066, -1.404335, -0.800320, 1.793739, 0.426801, -0.100557, 0.275142, 1.197628, 0.051983, 0.448278, -0.749623, 2.354262, 1.109195, -0.473079, -0.698012, -1.613571, 1.563238, -0.685555, 0.882413, 0.974648, 0.163695, -1.112031, -1.627131, 0.927566, 0.176114, -0.885563, 2.418413, -0.723907, -0.560105, 0.479165, -0.091062, -1.156969, -0.876483, -1.177464, 0.263696, -1.976069, -1.209861, -0.305374, -0.242932, 0.430786, -0.640024, -0.220310, 0.225922, 0.346959, 0.067511, 1.284607, 0.366528, -0.707390, -0.088889, 0.384762, 0.975804, 1.609133, 0.619673, -0.137634, 0.562913, -0.230148, 0.556894, 0.902223, 0.357592, 0.728751, 1.268838, 0.803898, -0.079388, 0.079856, 0.375413, -2.509264, 0.507776, -0.287254, -1.004033, -0.125700, 1.923997, -0.794907, 0.098509, -1.323465, 1.145717, -1.282874, -0.766311, -0.867325, 0.780057, 0.943058, -1.354061, -1.248836, 2.628673, -1.188433, -0.011985, 0.281432, 0.730555, -0.892609, -0.482564, 0.324827, 0.658382, -0.753904, -1.639422, 0.068105, 0.490382, 2.244291, -1.918844, -0.148750, -0.684208, 0.374435, 0.340328, 1.161137, -0.071882, 0.518898, -0.703716, -0.110852, 2.509352, 2.093817, -0.449572, 1.187744, -0.728107, -0.249509, 0.987956, 0.339305, 0.958742, 0.303890, 0.320119, 0.423103, -0.775123, 1.212366, -0.351111, 1.016296, -0.674091, -2.501006, 2.446033, -2.278802, 1.842239, 0.788251, -0.565050, 1.125615, -0.388716, -0.522565, 2.491460, 0.822352, 0.141667, -0.750588, 0.611911, 0.449374, 1.380384, -0.274680, -0.539762, 0.512576, 1.645470, -1.534226, -0.922108, 1.110062, 1.334627, 0.115820, -1.647299, -0.195381, -0.458523, -0.252955, -0.933064, -0.503764, 0.986628, 1.260784, -0.759830, -0.071975, 0.876477, 1.441792, -0.349743, 1.870463, 0.548576, 0.287054, 1.354089, -1.717919, -0.170754, -1.016045, -0.447286, -1.976991, 0.548402, -0.549829, 0.089444, 1.218849, 0.370793, 0.951227, 0.588013, -0.580036, -0.643248, -0.910640, 1.438594, -0.505967, 0.687048, 0.366989, -0.085095, -0.101571, -1.328757, 0.070949, 1.513642, 1.239131, 0.968287, -0.938592, -0.116198, 0.287351, 1.557072, 0.380167, 0.330294, 0.751386, -0.323665, -1.640435, 0.261170, -0.547946, 0.182125, 1.234738, 0.567418, 0.380160, -0.131957, -1.292398, 0.790147, 0.735507, 0.138818, -0.915601, 0.120142, -0.962137, 0.896186, -0.578152, -0.472585, 0.138948, -0.763740, 0.022882, 0.166726, -0.702651, -1.476695, -0.257259, 0.116727, 1.730281, 0.199988, -0.708443, -0.333589, -1.665536, -0.149149, 1.834016, 2.151336, 1.127975, 0.308087, 0.373495, -0.303064, 1.440773, -0.630913, -1.334871, -1.129584, -1.029689, 0.079386, -0.428245, 0.555001, -1.259533, -1.009153, -0.059438, -0.063241, 0.591327, -1.890788, -0.590260, -0.460150, 0.102828, 1.372895, -0.884909, 0.671261, -0.629259, -0.147019, -0.483911, -0.693447, 0.308495, 0.089822, -0.408924, -1.077792, -0.530027, -0.304773, 1.260625, 0.396429, 0.284699, 1.333392, -0.493525, -0.710373, 1.894289, -0.437894, 0.948040, -2.273871, 0.658644, -0.238045, -0.313590, -0.812465, 1.468542, 0.575877, 0.360305, 1.795106, 0.169486, -0.432028, -0.843700, 0.120695, 0.578715, 0.065451, 1.331402, -1.231441, 0.051677, -0.050893, 0.874599, 0.102771, -0.114611, -0.805531, 0.411342, 0.291069, -0.183424, 0.652902, -0.015211, -1.163806, 0.679734, -0.604136, -1.209186, -0.488448, 2.071763, 0.258051, 2.313012, 0.664351, 0.086171, 0.529126, 0.734480, -1.820898, 0.543178, -1.132422, 0.812873, -1.154533, -0.973957, 0.872888, -0.867346, 0.104281, -0.683787, -1.287753, 0.203521, -1.466883, 0.726687, -0.669409, -1.642887, 0.243638, 0.404730, -1.579346, -0.467921, -1.608945, -1.565189, 0.010344, -0.881127, 0.562881, 0.336656, 0.611620, -1.476012, 1.326930, -0.645465, 1.143072, 0.034473, 1.350514, -1.020672, 1.613501, -1.186017, 0.483309, -0.130746, 0.530022, 0.634901, -1.356251, -1.144554, 0.501416, 0.572082, 0.613286, 0.238656, -0.832476, -0.414336, 0.731217, 0.118715, -0.118858, 0.672333, 0.190017, 0.048240, 0.567320, -0.582577, 0.414128, -1.379102, 0.790471, 0.651375, -0.733238, -1.363121, 1.439715, 1.584037, -0.277708, -2.554428, 1.306954, -0.437707, -0.504707, 1.220431, -0.152823, 1.595543, 0.126981, -1.180687, 0.249681, 0.647380, 0.630621, 0.313623, 0.765850, -2.900500, -3.303523, 1.185714, 0.054460, -0.165652, -2.375898, -0.804519, 2.098995, -1.415622, -0.216533, -0.935896, 0.327855, -1.109653, 0.293332, -0.518584, -0.545300, 0.692576, -0.948004, 0.561145, 1.683479, -0.016410, -0.484285, 0.677927, -1.131978, -0.017695, -0.673110, 0.132621, 1.291736, 0.236017, 0.842079, -1.593563, -1.514015, 0.478058, 0.738149, -1.350765, 1.839759, 0.263632, 0.485873, -0.764458, 1.209548, -0.232850, -1.212482, 0.160941, 0.221139, -0.313204, -1.177407, -0.071451, -0.490443, 0.294966, 1.225241, -0.194419, -0.351101, 0.406079, 0.098960, 1.390620, 0.512852, -0.046521, 0.074328, -1.286073, -0.779270, 0.416905, -0.353483, -1.259813, -0.231825, -1.324767, -0.157746, -0.858386, 0.081216, -0.741442, -1.581220, -0.088274, -0.648006, -1.285647, 0.329954, -0.152852, -0.010646, 0.886167, -0.888970, 0.719218, -0.340030, 1.466504, 0.256619, 0.139483, 0.229837, -0.090738, -0.803683, 1.310234, 0.206572, 0.696312, -0.507660, -1.233633, -1.417408, 0.094465, 0.240760, 1.236947, 0.206237, -0.913517, 0.089803, -0.463440, 0.345613, -0.276818, -1.003987, 1.194634, 0.846662, -2.277870, 0.496492, -1.462631, 0.618247, -0.343449, -0.307712, -0.149370, -0.189576, -0.018098, 1.068241, -0.501542, -0.076766, 0.453663, -0.618614, -0.680308, -1.692198, -0.485179, -0.149138, 0.737073, -0.168336, -0.904415, 0.294250, -0.939049, 0.173665, -0.250626, 0.158001, 0.274539, -0.317398, -1.310713, -0.545455, -0.150464, 0.390347, -1.169685, 1.398452, 0.990622, 0.189081, -0.537010, 2.337118, -1.257338, 0.957166, -1.496867, -0.741272, -2.348381, 1.192102, -1.212610, -0.374928, -1.058540, 0.327936, -0.433567, 0.505167, -0.427829, 0.661485, 0.222501, -0.670071, 0.237348, -1.540000, -2.061018, -0.033358, -0.728823, -2.328176, -0.051036, -0.459774, 1.228559, 2.416640, -0.107654, 0.748115, -0.781208, 1.670915, 0.132010, -1.015404, 0.999682, 2.384465, 1.301584, -0.785052, -0.417741, -0.672693, -0.029084, 0.094555, 0.623491, 2.728020, 1.502916, -0.877483, 0.155415, -0.015707, -0.405176, -0.236822, -0.631064, 0.319606, 1.297784, -1.087908, 0.174124, -0.076167, -0.505147, -0.809030, -1.943043, 0.136739, -1.046144, -0.423037, 1.202147, -0.092956, -0.175132, 0.899443, 1.396401, 1.076323, -0.388606, 1.378765, -0.219231, -1.281035, -1.695118, -0.015007, 0.010439, -2.456599, -0.506445, 0.850283, -0.138269, -0.785406, -1.031753, 0.582159, 2.462929, -1.659679, -1.155389, 0.545949, -1.245920, 0.310823, 1.080250, -0.031741, -0.413151, 0.614000, -0.358160, -0.235399, -0.112365, -0.683979, 0.832791, 0.193398, -0.607660, -1.340490, 1.047581, 0.596241, 1.467915, 0.939091, 1.120401, -1.352468, 1.215207, 1.436960, -0.732410, -2.654247, 0.008885, -1.138698, 1.465157, -0.825924, 0.685024, 0.644868, -0.860580, -0.267594, 0.379159, -0.429768, -0.087730, -0.279403, 1.489474, 0.759342, 0.239830, -1.974403, 0.085981, 1.437545, -0.253262, 0.886746, 1.880575, 0.208539, 0.664334, -1.451539, 0.509580, 0.931895, -1.149280, 0.786774, 1.157106, 0.816212, -0.281738, 0.127584, 2.339799, 0.509222, -1.033789, 0.586580, -0.942695, -0.084261, 0.167013, -1.570451, 1.143556, -0.660218, 0.983057, -0.189598, 0.079672, -0.380039, -0.443600, -2.537944, -1.514686, -0.398951, -1.194957, 0.494843, 0.043024, 1.017436, 0.379102, 0.340251, -0.319400, 0.329107, -1.295414, 0.939502, 0.662077, -0.074217, -0.321973, 0.499451, 0.074870, -1.569448, -0.626595, 0.533295, -0.136236, -0.087578, 0.302762, -0.412854, -0.073030, 0.580241, 0.447351, -0.121875, 1.146031, -0.521349, 0.159193, -1.436947, -0.028461, 0.068828, -0.626219, 0.564983, -0.906080, 0.952413, 0.259524, 0.006516, 0.603829, 0.025686, -1.783251, 0.448770, -0.734675, 0.107121, 1.272138, 1.174165, 0.236960, -0.876997, 2.361819, -2.682853, 0.117541, -0.023641, 1.379353, 0.803803, -0.621744, 0.598930, -1.471486, 0.474012, 0.543439, 0.685675, 0.661789, -0.158290, -0.938646, -0.670896, 2.212399, 0.839741, -0.044773, -0.671575, 0.365275, -2.146453, 1.198179, -1.153192, -0.549083, -0.036929, -0.983908, 2.293072, 1.735079, 0.628446, 0.721753, 0.600133, 0.582798, -0.523204, 0.032583, -1.221926, -1.215665, 0.402089, -0.481074, -0.028942, -0.233776, -0.497505, 0.462949, 0.745113, -0.100864, -0.267948, 0.390793, 0.893291, 1.332542, -0.012540, 0.226293, -0.488826, -0.623131, 0.857024, 0.809355, -0.370802, -0.299769, 0.538008, 1.217249, -0.825350, 0.072128, 0.981082, 0.943361, 0.746459, 0.007035, 1.689610, -0.328155, 0.885951, 2.316369, -0.082614, 0.600612, -1.688602, -1.818172, 0.627140, -0.781718, 1.979232, 0.819654, -1.665447, -0.230631, 0.019247, -2.400888, 0.023960, -1.203340, -0.758735, 0.174163, -0.146234, 1.236742, -1.110132, -2.412550, -1.796617, -0.014729, -0.680455, -1.695064, -0.589239, 0.384307, -0.896246, -1.276065, -0.866761, -0.140503, -0.540092, 0.283740, 0.172720, -0.282033, -0.024479, -0.418907, -0.580290, -0.503915, -0.317764, -0.147941, -0.665039, -1.562225, 2.212594, 0.772808, -1.401726, 1.405759, -0.708724, -0.562863, 2.164387, -0.800690, -0.576602, 0.588868, 0.860081, -0.570663, 1.619220, -0.665632, -1.350726, 1.665801, 0.430768, -0.447337, -1.031981, -0.079927, -0.942012, -0.532382, 0.075355, -0.064279, 0.132681, 1.068462, 1.926675, -0.246771, -0.492698, -0.676899, 0.193022, 0.765448, 1.162647, -0.881228, -0.340151, 1.496364, 1.205763, 0.614682, 0.770093, -1.113256, -1.224761, -0.636850, 0.660647, -0.759184, 0.560615, -0.226773, -0.273978, -0.507550, -1.201339, -0.798108, -0.485434, -0.375008, 1.123249, -0.378017, 1.126276, -2.837037, 0.881684, -0.935741, -1.849805, -0.380961, -0.864460, 0.617076, 0.280093, -0.190078, 1.073084, -0.531239, -0.889670, 2.110510, -0.050891, 1.436276, -0.638693, -1.379672, 0.277191, 0.269296, -0.281233, -1.393950, -0.230429, -0.290333, -0.091841, 0.625541, 1.671257, 0.332189, -0.161260, 0.021590, 1.047973, 1.520658, 2.099310, -1.861004, 0.981232, 1.692147, -0.814497, -1.966067, 2.169220, 0.072916, 1.505243, 0.763117, -1.551761, -0.542919, -0.850673, -1.230988, 0.161452, 0.533740, -0.135508, -1.046377, -0.709611, -1.672621, -1.295074, 1.273690, 0.314765, 1.272708, 0.395974, 0.653686, 1.431843, -0.971168, -0.965527, -0.835438, 0.496336, 0.102767, 0.579225, 1.101141, -1.260901, 1.895400, -0.783972, 1.412787, 1.895628, 0.872840, -1.515590, 0.443156, 0.331600, 2.325603, -0.405547, 0.224604, -0.522058, 0.669011, 0.291745, 1.442230, 0.645074, -1.203986, -0.499406, 1.709448, -0.975612, 1.240354, -0.579431, 1.117174, 1.524427, -0.832680, 1.030992, 0.881017, -1.818458, -0.147766, -0.044665, -0.932805, 0.380122, -0.826019, 1.176583, -0.113659, 0.233640, 1.367826, -0.263428, -1.081921, 0.769340, 0.061917, 0.114528, -2.185859, -1.454126, -0.727477, 0.400318, 0.279792, -0.116409, -1.629704, -0.405234, 0.010474, -2.448582, -0.043404, -0.310471, -1.268816, -0.984170, 0.302353, -0.926017, -0.868598, 0.053239, -0.542015, -0.401421, 0.077799, -0.200145, 1.062340, -0.111325, -0.955607, 0.248791, 0.385922, -0.610505, 0.983054, -0.069882, 0.441888, 0.652133, 0.448182, -1.255545, 0.008112, -2.038255, -0.344128, -0.549804, 0.339182, -0.615087, -0.191508, 0.137452, 1.165776, 0.097682, -0.743089, -0.062058, -0.717742, 0.196693, -1.069627, -0.636575, -0.997994, 1.042843, -1.000091, -0.347453, -0.836343, 0.556808, 0.903287, -0.732237, -1.217378, -0.110155, 0.328476, 0.094987, 1.579063, 0.130745, -0.196275, -1.540321, 0.314876, -0.534833, -0.122595, 0.164125, 1.141626, 0.106168, 1.197337, -0.190700, 0.497927, 1.258429, 0.200880, 0.639565, 0.966567, 1.734824, 0.050708, 0.605365, -0.456036, -0.193784, 0.289869, 0.406997, -1.677760, -1.256517, 0.242973, -1.295178, 1.225694, -2.530927, -0.152172, -1.933035, 0.414754, 0.288575, -0.570761, 1.624921, -0.707886, -0.439120, -0.763228, 1.129255, 0.494880, 1.346285, -0.095113, -0.088143, -0.434238, 0.018755, 1.096819, 1.013867, 0.595391, 0.517538, -2.005412, 0.918430, -1.970405, 0.604673, 1.216764, 0.041556, 0.273192, -0.393882, -0.272409, 0.220257, 1.121026, -0.240540, 0.403301, 0.873845, -1.265651, -0.474487, -0.349072, -1.630702, 0.713711, 0.845071, -1.640876, 0.096995, -1.172894, -0.820825, -0.448604, 1.087055, -0.095377, -1.736098, 0.347036, -1.006678, 1.328835, 0.270501, 0.863969, -0.742108, 0.862811, 1.961977, -0.179190, 0.838324, 1.884084, 0.572505, -0.502721, -0.554854, 0.365675, -1.065485, 0.201362, 0.656517, -1.731796, -1.856655, 0.066540, 2.191710, 0.449745, 0.031513, 1.716506, 1.332202, -0.737949, 0.114851, -0.016051, 1.028060, 0.916967, -1.232769, 1.091492, 0.840699, -1.289351, 0.981032, 1.535006, -0.862765, -0.609101, -0.159624, 0.396094, -0.858998, 0.659323, 0.386074, 0.999655, -0.734986, 0.635846, -1.264374, -0.326362, 0.538521, -0.596312, -1.396536, 0.578547, -1.244717, 0.249707, 0.019738, 0.726646, 1.341496, 0.693245, -0.764104, -0.579150, -0.597454, -0.435730, -1.016227, 0.385477, 0.323094, 0.850710, -0.566080, 2.462378, -1.442009, -0.692983, 0.099039, 1.269528, 2.072926, 0.340807, 2.159814, 0.287166, -0.002212, -0.253869, -0.828347, -0.533333, -0.742308, 0.604367, 1.363179, -0.301418, -0.614678, 0.111863, 0.773280, 0.406986, 0.937791, -0.855776, 0.176260, 0.646559, -1.987868, -0.344742, 0.300434, -1.263957, 0.784390, 0.326909, -0.054248, 0.139724, -0.374451, -0.312420, 1.349540, -0.092197, -0.450479, 0.984307, 0.286306, 0.045054, 0.069429, -1.209063, -0.584471, 0.040896, -0.844330, -0.539930, -0.699213, 0.794677, -0.423521, 0.350182, 0.067849, -0.448465, -1.406314, 0.488233, 0.199481, -0.203344, 0.175522, -1.595010, -1.831918, 1.945528, -0.455928, 0.932654, 0.517514, -1.124600, -2.291537, -0.669505, 0.331033, 1.621062, -0.147579, 0.161541, -0.811083, -0.204189, -1.272435, 0.448533, 1.896475, -1.133960, 0.495441, -0.948400, 0.540013, 0.233433, 0.608463, 1.133013, -0.233525, 0.623912, -1.748656, -0.465469, -0.913890, -1.381276, 0.038838, -0.442184, -0.019918, 1.233026, 0.968645, 0.737109, 0.232598, -1.115302, -1.865655, -0.903959, 0.729599, 1.062438, 0.507872, 1.967925, -0.286403, 1.208560, -0.720140, -0.167629, 0.673381, -0.586803, 0.829526, 0.047502, 0.036207, 1.740825, 1.104409, -0.374411, 0.796347, 0.389891, -2.117978, 0.899245, -1.453943, 0.500538, -1.244588, -0.133989, -1.056114, -0.331852, 0.290895, -0.864773, -0.159921, 0.846899, 1.642079, 0.352519, 0.195101, -0.487219, 1.300938, 0.055601, 0.454052, -1.191289, -1.001641, -0.219728, -0.594717, -0.478197, -1.377474, 1.910553, -0.085079, 1.395549, -1.354383, 0.679572, -0.235601, -0.037421, -0.801886, 0.765023, 0.203645, 0.942272, -0.539130, 0.059268, 2.139118, -0.847996, 0.046247, 2.413610, 1.409484, 0.964430, -0.222640, 1.248723, -0.014154, 0.319524, 0.762013, 0.063606, -1.238826, 1.206852, 0.662122, -0.960769, 0.123010, 0.934355, -0.320293, -0.703127, -0.529595, -0.431325, -0.531930, 1.228471, -1.372110, 0.105589, -1.309925, -0.380860, 0.676895, 1.767930, 0.531131, 1.068405, 1.204329, -0.184111, -0.338321, -0.400304, 0.544788, -0.015787, -0.402434, 1.196565, -0.802071, -1.462558, -0.730348, 1.376692, -0.010214, -0.298392, 0.240798, -0.164863, -0.821951, -0.653595, 1.652045, 0.924946, -0.421356, -0.356883, -0.351145, 0.911578, -1.096141, 1.644679, 1.196682, -0.676876, -1.203089, -1.600585, 0.328852, -1.140360, -0.594403, 0.230661, 0.320870, -1.511643, 0.207653, 0.214748, -0.635145, -0.976731, 0.617397, 1.090502, 1.234640, 0.505767, 1.111139, 0.022716, -3.149945, -0.720575, -2.197897, 1.499600, -1.069327, -0.561402, -1.457112, -0.135610, 0.027123, -0.311725, -0.058628, 2.291447, 0.771153, 0.819679, -1.429604, -1.335327, -0.097726, -2.757061, -1.104743, 0.730313, 0.581257, -0.989072, -0.343689, -0.427930, 1.497801, 0.882999, 0.122588, -1.215907, -0.027390, -0.148392, 1.143721, -1.165282, -1.038509, 1.757744, -0.399405, 1.089612, 2.513361, -0.367846, -0.626835, -1.012237, -0.426295, -0.309423, 0.849768, 0.315756, -0.245734, 0.472882, 0.098225, -0.457671, -0.590318, -0.265516, 0.467979, -1.864364, -0.501889, 0.266760, -0.721410, -0.837682, -0.148171, 0.044028, -1.161403, -0.680787, -0.172898, 0.637237, -1.168705, -1.585799, 1.119484, -1.356566, -0.674577, -0.764301, -0.469159, -2.687289, 1.108895, -0.664008}, + { 0.332413, -0.090476, 0.111142, -0.105650, -0.492015, 0.563133, -0.308829, -0.996772, -0.710380, -0.639434, 0.741823, -0.587970, -0.431323, -1.459216, -0.628200, 1.121755, 0.310918, -0.027048, 0.484048, -2.768089, 2.414129, -0.286526, -1.069539, 0.042255, -0.970093, -1.056685, -0.290018, 0.323992, -1.961179, 1.377456, -2.746641, 0.655005, 1.514401, -0.858676, 0.453182, 0.470032, -0.393851, 0.599810, -0.727723, -0.485360, -0.296523, -0.335302, -0.001939, -0.390613, 0.692754, -0.297787, -0.683839, -0.245338, 1.014253, -0.334746, -1.176200, 0.919842, -0.858995, -0.485241, -0.372096, 1.224724, 0.261900, -1.241396, 0.666264, -0.508043, -2.133119, 0.285788, 0.770445, -0.512387, 0.331296, 0.674873, -0.023667, -0.494804, -0.433539, 0.620181, -1.186752, 0.430033, -1.021986, 1.048476, -0.542787, 1.510876, 0.674521, 1.156451, -0.922329, 0.613084, 1.168869, -1.414186, 0.548016, 1.877142, 0.538212, -0.062034, -0.394426, -0.764928, -1.339256, 0.797266, -0.531602, 0.347888, -0.606943, -2.260128, 1.040178, 0.898863, -1.368123, 0.261365, 1.016327, 0.260189, 1.498519, -0.255452, -1.379712, 0.500720, 0.484281, -0.274261, 0.151794, 0.077884, 0.539540, -1.176680, 0.428913, -0.277737, 0.331718, -1.256974, 0.128732, 0.838281, 1.414778, 1.033964, 0.201801, 0.948353, -0.715105, 0.341861, -0.401363, 0.678465, 0.156881, -1.388737, 1.729869, -1.264426, 0.436415, -0.543501, -1.489277, -0.537544, -1.011361, 1.954747, -0.072545, -0.015704, -0.147238, 0.535290, -0.892774, 0.536171, 0.407434, -0.203392, -0.240277, 0.354210, -0.802281, -1.031150, 1.487040, 0.308466, -0.642546, 0.071923, -0.763645, 1.384431, -0.016321, -1.970340, -0.443420, -0.584331, -0.718848, -0.123439, 1.040007, 0.718988, 0.222775, -0.581023, 0.213477, 1.744051, -0.341766, 1.107654, -0.832242, 0.478139, -0.120128, 0.893301, -1.433044, 0.364631, -0.707983, 1.481024, 1.076907, 0.152833, 0.316878, -1.092690, -0.257177, -0.772108, 0.242734, -0.847114, 0.373323, 0.799211, -0.046355, -0.358662, 0.069984, -0.651776, -0.098871, 0.553035, 0.184604, 1.720749, 0.157912, -0.533023, -0.031688, 0.658297, 1.102183, -0.668551, -0.351309, -0.116471, 1.710932, 1.060462, -0.333532, -0.095624, 0.327515, 0.444750, -2.349119, 1.673249, 1.056736, -0.396374, 0.220611, 2.504459, -0.554302, -0.213013, 1.830962, -1.107491, -0.598477, 0.045907, 0.129413, -0.263897, -0.597111, -0.435294, -0.701651, 1.376132, -1.023851, -1.784413, -0.241752, 0.209999, -0.381562, -0.223928, 0.995270, -0.552373, -0.965910, -0.954263, 1.138501, 0.473679, -0.189117, -0.540881, -2.493774, -0.060180, 0.543873, -1.284099, -0.659967, -1.443070, 0.145057, -0.895853, -1.782699, 0.206764, 0.718617, 0.447118, 0.544709, 0.160530, 1.044261, -1.168851, -1.715942, -0.426890, 0.440709, -0.710538, 0.590257, -1.481875, -0.941835, 1.017842, 0.490278, -0.618954, 1.846469, -0.576514, -0.120600, 2.045900, -0.548250, 0.715270, 1.510966, 0.594488, 0.239436, -0.392097, -0.518888, 1.207397, 0.215695, -0.409388, -1.146060, 0.391842, 0.420014, 0.741190, -1.642495, 0.038210, -1.403337, -0.777395, 0.052477, 0.439552, -0.337797, -0.222298, 0.655024, 0.585861, -1.219943, 2.736820, -0.551745, -0.982342, 2.268393, 0.091445, -1.707475, 0.058399, -0.692335, -0.321801, -0.550962, 0.385469, -0.341551, 0.027301, 1.866760, -0.846516, 2.269717, -1.072989, 1.770384, 0.083566, 0.272755, 0.942532, -0.250030, -1.875477, -0.457772, -0.340411, 0.738559, 0.000197, 1.213037, 0.849176, -0.269861, -0.072165, 0.102182, 2.261038, 0.073744, 0.148187, 0.502755, 0.663832, -1.226263, 0.363262, 0.447514, -0.216750, -0.247224, 0.566976, -1.420693, -0.053375, -0.733065, -0.130164, -0.780495, 1.490258, 0.928009, -0.980839, -1.922868, 0.757046, 2.360650, 0.371054, 0.476158, -0.906443, 0.312970, 0.766959, -0.704138, -1.163653, -0.670671, -0.689074, -0.671234, -0.125076, -0.134199, 0.839989, -0.460121, 0.935337, -0.008488, 1.019224, 0.759984, -1.377837, 2.028915, 1.826818, 0.613339, -0.193261, 1.451456, 1.298127, 0.270833, 1.214569, 1.296101, -1.962302, -1.450883, 0.197587, 0.448897, -0.355898, 1.518468, 0.809314, 0.539606, -0.049976, -0.923559, -0.371532, -1.147110, -0.817528, 0.183345, -0.223735, 0.915319, -1.547933, 0.445157, -0.747921, 0.377815, -0.713546, 0.904311, -1.161063, -1.090289, 0.178200, 0.826774, 1.079186, 0.297022, -0.203784, 0.310157, -0.831840, -0.283096, 0.412864, 0.827500, -2.221612, -0.182601, 0.819123, 0.190311, 0.194056, 0.207361, -1.169707, 0.644312, -0.486385, -0.365451, -0.941410, -1.367268, -2.307357, 1.664220, 0.442388, -1.655976, 0.326389, -0.046664, 0.874415, 0.140329, 0.085505, 0.980782, 2.339350, -0.500732, -1.198792, 0.845504, 1.272187, -2.992011, 0.272694, 0.352522, 0.906393, -1.504858, -0.065103, -0.843170, 0.161277, -0.260392, 0.538582, 0.853036, 0.196121, 1.077102, -0.226425, -1.895123, -0.313965, -0.572552, -0.587900, 1.045139, -0.986904, 0.412959, -0.176403, -0.321011, 0.499103, 0.444863, -0.948091, -0.373640, -1.000724, 0.314558, 1.382282, -0.455950, -1.283715, -1.248909, 0.512849, -0.887994, -0.397828, 0.240441, 1.121143, 0.334973, -0.961739, -0.457526, 1.809203, -1.619508, 0.166722, -0.844253, 0.209446, 0.187729, -1.444352, -0.612184, 1.054032, 0.558481, -0.149892, -0.203386, -1.326215, 1.697874, 0.307984, -0.329882, 1.599952, -1.173515, -1.728018, 0.553763, -0.398294, 0.122929, -0.477630, 0.780699, 0.733659, 0.962108, -0.766103, -0.637033, 1.722177, 0.217015, -0.345815, 2.161558, 0.061773, -2.496190, -1.338003, -0.991100, -0.558270, 0.391743, 0.422292, -0.179245, -1.653523, 0.533463, 0.727673, -0.860690, -0.378647, -0.448850, -0.988305, 0.212703, 1.025908, -0.065756, 0.279577, 0.413206, -0.439237, -0.312943, 1.316437, 0.223352, 0.130142, 0.087801, 0.102658, 0.673192, -0.712053, 0.661451, 0.829606, -0.582947, -0.247915, 0.425853, -0.485600, -0.734955, -1.370681, 0.820578, 1.265371, 2.209562, -0.269679, -0.012571, 1.065734, 0.887827, 1.435880, -0.199550, -1.667014, -0.367064, -0.134792, -1.748803, 0.481537, -0.479872, -0.624758, -1.574703, -0.147887, -0.886725, 0.369281, -0.232004, 0.012470, -2.083078, 0.723738, 0.837940, 0.473451, 0.262049, -1.161261, -0.722633, 0.835566, -0.439135, 0.521020, -0.601784, -0.794508, 0.127931, -0.816449, -1.080561, -0.391566, 0.321305, 1.566316, -0.060631, 0.125768, -0.011606, -1.129203, -0.437153, -0.668726, 0.583097, -2.083591, 1.157958, -0.254565, -0.572011, -0.207830, 1.178302, -0.625917, 0.149176, -0.272977, 0.963374, -1.584610, 0.543515, -0.554689, 0.473338, -0.272569, -2.171537, 0.016032, -0.153908, 0.595323, 0.012496, 0.826651, -1.279603, -0.379394, -0.536605, -1.366260, 0.444574, 0.155408, 1.794734, 1.679658, 0.756814, -1.175797, 0.658997, 0.750576, -2.226382, 0.612725, 0.212362, 0.008456, 0.405550, -0.306795, 0.625620, -0.267137, 0.100022, 0.067766, 0.558592, -0.640202, -0.654459, -1.689198, 0.794818, -1.365268, -0.312364, 0.279432, 0.821647, 0.254142, 2.284136, -0.261828, -0.078930, 0.693253, -0.170263, 1.256426, -0.797634, 0.911959, -0.517969, -0.903680, 1.695689, 0.443434, 1.590053, 1.620189, -0.024819, -0.626617, -1.283893, -1.054684, -0.112331, -0.034263, 0.004174, -1.733980, -1.051281, 0.048925, -0.596698, 0.325219, 1.279105, -0.937609, 0.674835, -0.455320, 1.604386, -0.606526, -0.623002, -0.322564, -1.268396, 0.586967, 1.518035, 0.217431, 0.151262, -0.644681, 1.697620, -0.921071, -2.291254, 1.072662, 0.427007, 1.902025, -0.460736, 0.384503, -0.889487, 1.261442, 0.314857, -1.082276, 0.171244, -0.249381, 1.581279, -1.637765, 0.121682, 0.808878, -0.357868, 0.209678, 0.647120, -0.009759, -1.685765, 0.617450, 2.305940, 0.056446, 0.767286, -1.771028, -1.283960, 1.342832, 0.623596, -0.066315, -0.199515, 0.650273, 0.264588, -0.744608, -0.746418, -2.124202, -0.146926, 0.392638, -1.538700, -0.271547, 0.301499, -1.651731, -0.146944, -1.121951, -0.784411, -0.412355, -0.524026, 0.943538, 1.620827, -0.404759, -1.057480, -0.998717, 0.858370, -1.998713, 0.333596, -0.995064, -0.561418, -1.615057, -0.519505, -1.148545, -0.835220, -1.434511, -1.620710, 0.838094, 0.952118, 0.549566, 0.564244, -1.288459, -1.798690, -0.434689, -1.026014, 1.312105, 0.335384, 0.532218, -1.385370, -0.708757, 0.548970, -0.060770, 0.617430, -2.796243, -1.091676, 2.088774, -0.491811, -0.424752, 1.466917, 1.043665, 0.107828, -0.408104, 1.422861, 0.046745, 0.489890, -0.076826, 0.933259, -0.821984, 0.549958, -0.354484, -0.622192, -0.610304, -0.459022, 0.470213, 0.913912, -0.078251, 1.460776, -0.078061, -1.562451, 0.741141, -0.803167, 0.043003, 0.697627, 1.377150, -0.061913, 0.100843, 0.146320, 0.722686, -1.073459, 0.739537, -0.157894, -1.467302, 0.357267, -0.953141, -0.423063, -1.740439, 0.607853, -0.503574, -0.271799, -0.206298, 0.567419, -1.183112, -1.500188, 0.810370, -0.298685, -1.009744, -0.600005, -1.279845, 0.552013, -1.612481, 0.292148, -0.749283, -1.314620, 0.941991, -0.930493, -0.060125, -0.241817, -0.531869, 0.061162, 0.647767, -0.901355, -0.184766, 1.702293, 0.420983, 0.491773, 0.859071, 0.760141, -1.033019, -0.383732, -0.978214, -0.612003, 0.703203, 0.518546, -1.418451, 0.003646, 0.616851, 0.915675, -1.169185, -0.050293, 1.333933, 0.862519, 0.402817, 0.795916, 0.796625, 0.740740, 0.349167, -0.529555, 1.702156, 1.571571, 0.558439, 0.677786, -0.038789, 0.406366, 0.719938, -1.509139, 0.779539, -0.452586, 1.512160, 0.793720, 0.289071, 0.882045, -0.223399, 2.227741, -0.803339, 2.033337, -2.107007, 0.947627, 1.315363, -0.920506, -0.168807, -0.015158, -0.314552, -1.276389, 0.883355, 0.705430, 0.536489, 1.409183, -0.533939, 1.127232, 0.562946, -0.924352, 0.066195, -1.071521, -0.494558, 0.839034, -0.916701, -0.557743, -0.453364, 1.580799, 0.980236, 0.377979, 0.208521, -0.645774, -1.129338, 1.044617, 0.692552, 2.159659, 1.368088, -0.199366, -1.249165, 0.080794, 0.483180, 1.287076, -0.110163, -0.531105, -0.498655, -2.068255, -1.393150, -1.710954, -1.461273, -1.013984, -0.237610, 0.892408, -0.237737, 0.756205, 1.966613, 0.991563, 0.262238, -1.139088, -0.318029, 0.022481, 1.152952, -0.368783, -0.582549, -0.471548, 0.156034, 2.334373, -1.017766, 1.290749, 1.638450, -0.850097, -1.181241, 0.250034, 1.317944, 0.542569, 1.383254, 0.238320, -0.485503, 0.751033, -2.136729, -0.444880, -0.443161, -0.617829, -2.419981, 0.445541, 0.951887, -1.128313, 1.678103, -0.091826, -0.417388, 0.492196, 0.968676, 0.091234, -0.446133, 1.349090, 0.630067, -0.769798, 1.263931, 0.904641, 0.195466, -0.380730, -1.278928, 0.016286, -0.754500, -0.013241, 0.626080, 1.581112, -1.354169, 0.625483, 0.216052, -0.667792, 1.794916, 0.085767, 0.205481, 0.453476, 0.079927, -1.572281, 0.362329, 0.501201, -0.882164, 2.152445, -2.434957, -0.470505, 0.997812, -1.266957, -0.033494, 1.440470, -1.014112, -1.574884, -1.623940, -0.935002, -0.654050, 0.687626, 0.162400, -0.960659, -0.676304, -0.454858, -0.522163, -1.435989, -0.021196, -0.911292, 0.205341, -0.531980, -0.280608, 1.366761, 0.249688, -0.553740, 0.482486, 1.687059, 1.010648, 1.688699, -0.076617, 1.131603, 0.892899, 0.276267, 1.156595, 0.492346, -0.174117, 0.566770, -0.399723, 1.458423, 2.129884, -0.867126, 1.322380, 0.707254, 0.491617, -0.317481, -0.086859, 0.005343, -0.231006, 2.020493, 0.318070, 0.149524, -1.174234, -0.576451, -0.660870, -1.011631, -0.805260, 0.129546, -0.869773, -0.278761, -0.632811, 1.893211, 0.514338, -0.206982, -0.486175, 0.502145, 1.224112, -1.714737, 0.245386, 1.045557, -0.276084, 2.507840, 0.163897, -1.261247, -2.472059, 0.708976, 0.795227, -1.762789, -0.220855, 0.229522, 0.257277, 1.059348, 1.519520, -0.009878, 0.210398, 1.013724, 2.126493, 1.285697, -0.182820, -0.172843, -0.288383, -0.540512, 0.363419, -0.604089, -0.398068, 1.016660, 0.688912, -0.564958, 0.270841, -1.941296, -1.524301, -0.738495, 0.552349, -1.434486, -1.404625, -0.780554, -0.302889, 0.144368, -0.113578, 1.625405, -2.288239, 1.287383, -0.510163, -1.497400, -0.705719, 1.024657, -0.610147, 0.668245, -0.324842, -0.814347, 0.889092, -2.608135, -0.059007, 0.947085, -0.346749, -1.001543, -0.619302, -2.843781, -0.062318, 0.135680, 0.466214, -0.434046, 0.335925, -0.309873, -0.960881, -0.142906, 1.002613, 1.106483, 0.228058, 2.442204, -0.565412, -0.444695, -0.456349, 0.225989, -0.312006, 0.390162, 0.951283, -0.595653, 0.850771, -0.132953, 0.807768, 1.646481, 0.010370, 0.323289, -0.514807, 0.696271, 0.214713, -0.797228, -0.590987, -0.050820, 0.667784, 0.105420, -1.204762, -0.687476, 0.875144, -0.227006, 0.810107, -0.447727, 1.187477, 0.955497, -1.410668, 0.274056, -0.453666, 0.709610, 0.325851, 0.264748, 1.582527, -1.397160, 1.528939, 0.049409, 0.392065, -0.605957, -1.376246, 0.779464, 0.168978, -0.731870, 0.440385, -0.173564, 0.730714, 0.831391, 1.609627, -1.223613, 1.708416, -0.711428, 0.395162, -0.662251, 0.904203, 0.681037, 1.392846, 0.112167, 0.264960, 0.628740, 0.431578, 0.287971, 0.823200, 0.116816, -0.261785, 1.426073, 0.903004, 0.116679, 2.135556, -1.252390, 1.075709, 1.376183, -0.130948, -1.793751, 0.531978, -1.092502, 1.211683, -0.923700, -1.724505, 0.234736, -0.473431, -1.960848, -0.282608, 0.807219, -1.688597, -0.138767, 0.285142, 0.075576, 0.490162, -0.204860, 1.458962, -1.017185, -0.354230, 1.201092, -0.474558, 0.904509, 0.339038, 1.077130, 0.846492, 0.188238, -0.923617, 1.346188, -1.017959, -1.206872, -0.682074, 0.210293, -0.183542, 0.465513, 0.286795, -0.216632, -0.058660, -1.343618, 1.793348, -0.292750, -0.009871, -0.351329, -0.176400, 0.878920, 1.223189, -1.226511, -0.340374, -0.872841, -0.668045, -0.454802, 0.140583, 0.247231, 1.850850, 0.816583, -0.642174, 0.125794, -0.643081, -0.526527, -0.603531, -0.986176, -1.139736, -0.620508, 0.558131, -0.051135, -1.269712, 0.852580, -0.393241, 1.157152, 1.127215, -0.122800, -0.795520, -1.568631, 0.691127, -1.110720, -1.579454, -0.367857, 0.063579, 0.951263, 0.168815, 0.984382, 0.985160, 2.020338, -0.041965, 0.683118, -0.295213, -0.379882, 0.866387, 0.019367, 0.733344, 0.160788, 1.634291, -0.043567, -0.030991, -0.165895, 0.276940, 0.063929, 0.002003, 0.799766, 1.276322, -0.175220, -0.328382, -0.120359, -2.769161, -1.479419, -0.925248, 1.178652, 0.251587, 0.295968, -0.557262, 0.274799, 0.983573, 0.945575, 0.258738, 1.850200, 0.773688, 0.925497, 0.278006, 0.476557, -0.333587, 0.658399, -0.226439, -0.563261, 1.423737, 0.292970, 0.422005, 1.331200, 0.873546, -0.594567, -1.040073, -0.004369, -1.233165, -1.243156, -1.477960, -0.873411, 2.010043, 0.398684, -0.351185, 0.237653, -1.022324, -1.269352, -1.265228, 0.969638, -0.277355, -0.530677, 2.626909, -0.163811, 0.318196, -1.394060, 1.930060, 0.261448, -1.647303, 1.056629, -1.129607, -0.486615, -0.802456, 0.323884, 0.671083, 0.985620, 0.267940, 0.873013, -0.850153, -0.371616, 1.240962, 0.576713, -0.666320, 1.318217, 1.646316, 1.216780, 0.470782, -1.346875, 0.387081, 2.100512, -0.128241, 0.754347, 0.187386, 1.479303, -0.414287, 1.468910, -0.372294, 0.903044, 0.848381, -0.576310, -0.258010, -0.708103, 1.098543, -0.794369, 1.326326, -1.158041, -0.027106, -0.225750, 0.585936, 0.018906, -0.077030, 0.798248, -0.349698, -0.682187, 0.952738, -0.239098, 0.920637, 1.208988, 1.162882, -0.011993, 2.127491, 0.581514, 1.422003, -0.135716, -1.010212, 0.039345, 0.045045, 0.696660, -0.130550, 1.944229, 1.502976, 0.613750, -0.307565, -0.091203, 0.633993, 0.118580, -0.813341, -0.767566, -1.079818, -0.282050, 1.553281, -1.086964, 0.510802, 0.919374, 0.879507, -0.302522, -1.034653, 0.151852, 1.361147, -1.038318, -1.750124, 0.101119, 1.747966, -0.372003, -0.613706, -0.591185, 0.950532, 0.307471, -0.476075, -0.040320, -0.618066, -1.720594, -0.597755, -0.297946, 0.347925, 1.305076, 0.769385, 0.175688, -1.583593, 1.324695, 0.915440, -0.897743, 0.764686, 0.378435, 0.827679, 0.765396, -0.265554, -0.127362, -1.099631, 0.410024, 0.419753, -1.030247, 0.398574, -0.930050, -0.187034, 0.896231, 0.347772, -0.738487, 1.125493, 0.159707, -0.296675, -0.736772, 1.444376, 0.708270, 1.301820, -0.613415, -1.131274, -2.425478, -0.210039, 0.859825, 0.087560, -0.288042, -0.286937, 0.189502, 0.421060, 2.704326, 0.869582, -0.789697, 0.394062, 2.060898, -1.384599, -0.975317, -0.959449, 1.630341, 0.710030, 0.138189, -0.425804, 0.323462, 1.558027, 0.218489, 0.186915, -0.188354, 0.875418, -0.631404, 2.515853, 0.888233, -1.138928, 0.931494, 0.791801, -1.934849, 0.330313, -0.191361, 0.034512, -0.845609, 0.811131, -1.122497, -1.563081, 0.355550, 1.042817, -0.358564, -0.836795, 1.096931, 0.821378, -0.843018, 0.949655, 1.483863, -0.213964, 1.712181, -1.595074, 0.962693, 1.015877, 1.857027, 0.856355, -1.293958, -0.458723, 1.342438, 1.857567, 0.681817, 0.149496, -0.488124, -1.522765, -2.437259, -0.469027, 1.695409, 0.695268, 1.503875, 0.930953, -0.553585, -0.494742, 1.336754, -0.309437, -1.474055, -0.910071, -0.493953, 0.919408, 0.487805, 0.372066, -1.334930, 2.768972, -0.739934, -2.537957, 1.993227, -0.481223, 0.579137, 0.097511, -0.266998, -0.782373, -0.348708, -0.612770, -0.081083, 0.638289, 0.097007, 0.069784, -0.013636, -1.983485, -0.483091, -0.338076, 0.131448, 1.162878, 1.169703, 0.386729, -1.077208, 0.450685, -0.674963, -1.117238, 0.094733, -1.453760, -0.639298, -0.439775, 0.079282, -0.498095, -0.520192, 0.344522, 1.245484, 0.636502, -0.879362, -0.682212, -0.201300, -1.042150, 1.128293, -0.645169, 0.073426, -1.120832, 0.895656, 0.125561, 0.194086, 1.552879, 0.352898, -1.841795, 0.387979, 1.341562, -0.935230, 0.772880, -0.069439, -2.171020, -1.729386, -0.481882, -1.099033, 0.659894, -0.138947, -1.027644, -0.059817, -1.503294, -1.371742, -1.052331, -0.235903, 1.609249, 0.581964, 1.721283, -0.243545, -1.947487, 0.014905, -1.370168, 0.080897, -0.813126, 0.046892, 1.212364, 2.142939, 0.923298, 0.015547, -1.076693, 0.181366, 1.364048, 1.086883, 0.904162, -0.607959, 0.397086, -0.125301, 0.679773, -0.193204, 0.315042, 0.154997, 0.059522, 1.464326, 0.121211, -1.014883, 0.763274, 0.851236, 2.298345, -0.030669, 0.048745, -0.432413, 1.535197, 0.689044, -0.904760, -1.249941, -0.505129, -1.011775, 1.495330, -0.558128, -1.383847, 0.142089, -0.017155, -1.568275, 2.043560, 0.011999, 0.126786, -0.162554, -0.043844, -1.379454, -0.500392, 0.254474, 0.707366, 0.816757, -1.226395, -0.666966, 2.009572, -0.233156, 1.147893, -1.728117, 1.635403, 0.931182, -0.982141, -0.569492, -1.384807, -0.005323, -0.461772, 1.005790, 0.044195, -0.942073, -0.783637, -0.695629, -0.041599, 1.590665, 1.222531, 0.303378, 1.409049, 0.095492, -1.089426, 1.286694, 1.688999, 2.117612, 1.059940, 0.672189, 1.007068, 1.132985, -1.102660, -0.196325, 0.139877, 1.946525, 1.016517, 0.114356, 0.354442, -0.483027, 0.355104, 1.830137, 0.287580, 0.592634, 0.916866, -1.576712, 0.383925, 0.578369, 0.515323, 1.230483, -0.574325, 0.368397, 0.189826, -0.489736, -0.394374, 0.809553, -1.453355, 1.350374, -1.291178, 0.654567, 0.090665, -1.883666, -0.651559, -0.748650, -0.468110, -1.007841, -0.313019, 0.612921, 0.618019, 1.055759, -0.287164, -1.423864, 0.584640, 0.032046, 1.088973, -0.357387, 0.748128, -0.435306, 1.527493, 0.443135, -0.880351, 0.521328, -0.346296, 1.686460, -0.512587, 0.601966, 0.436588, -1.314965, -0.319078, -0.880068, -0.092162, -1.035020, -1.259117, 0.503484, -0.171935, -1.232785, 0.368860, -1.345035, 0.027177, 0.951496, -1.295035, 0.810210, -0.176469, 0.748114, 0.490939, -0.982091, -0.212023, 0.109433, 0.227544, -1.969052, -1.046004, -1.190753, -0.632195, -0.897640, 0.844773, 0.176071, -2.254886, -0.828966, 0.380993, -0.314232, -1.485790, 0.338232, 2.849200, -0.244255, -0.014193, 0.808252, 1.154426, 1.759918, -1.070352, 0.184412, -0.551133, -0.067449, -0.206060, -0.721926, -0.614675, -1.057866, 1.288226, 0.546093, -1.819086, 0.875635, -1.186228, -0.706844, 0.420428, 0.464173, -1.970815, 0.040265, 0.979257, 0.722564, -0.083365, -0.993187, -0.332314, 2.124213, 0.385350, -0.943470, -2.423453, 0.484566, 0.982158, 1.116549, -0.236137, -0.605190, -0.956017, -0.344289, -1.984211, -0.717507, 1.357101, -1.764415, -1.494770, -0.020111, 0.142458, -1.385483, -0.225463, -1.223360, -0.144176, 0.472324, 0.155263, 0.641433, -0.124007, 1.400785, -1.247499, 0.462295, -0.237960, 0.932353, -0.156990, 1.854269, 0.601584, -0.534695, -2.231608, -0.702490, -0.475160, -0.955694, -0.904631, 0.310338, 0.277823, 0.781322, 0.121412, -0.232620, 0.645961, 0.368690, 0.381196, -1.088444, -1.693116, -1.111578, 0.295593, 0.045498, -0.085718, -0.640119, -1.212959, -0.516827, -0.469387, -0.039691, -0.649467, 0.859894, 0.308341, 1.593292, -0.251972, -0.880161, 0.072534, 0.082881, 2.164468, 1.075309, -0.340336, 0.691023, 0.235370, -0.431032, 0.850657, -1.539289, -0.746202, 0.790461, -0.911253, -0.108639, -2.308335, -1.161708, 0.278767, -2.033837, -0.504813, 1.063949, 3.009235, -0.837237, 0.865540, -0.382273, -0.507635, -2.082772, 1.776487, 0.338300, -0.641904, -1.568420, -0.560583, 0.085281, -0.262701, -0.087924, 0.182183, -0.125335, -1.403393, 0.921833, 1.590404, 1.160873, -0.848099, 0.901084, -0.568654, -0.021222, 1.820698, 0.685168, 0.923379, 0.252517, 1.588853, 1.191792, -0.279060, 2.825582, 1.190414, -0.533850, 0.365552, 0.241109, 0.996154, -0.721186, 1.446907, -1.013355, -0.718090, -0.233487, 2.684663, 0.993903, 0.660959, -1.915303, -0.986402, 0.110624, -0.523912, -0.155422, -0.945023, 1.446938, 0.347144, -0.319638, -0.529896, 0.818895, -1.314871, 0.304520, 0.233512, -0.837869, 0.919282, -0.019769, 1.741808, 1.532410, 0.516846, 0.505614, 0.838958, -0.648456, 0.864061, -0.708655, -1.448713, 0.160097, -0.122849, 0.152219, 0.062212, -1.648547, 0.667071, 0.536972, -0.264216, 0.789347, -2.212946, -0.479004, 0.584909, 0.851930, -1.355208, -0.519634, -1.066701, 0.579433, -0.275726, -0.172861, -0.029156, 1.548625, -0.112870, -0.374078, -0.489253, 0.844263, 1.116492, -0.571217, -0.764394, 0.615710, 1.423027, 0.166701, 0.080406, -1.555876, 0.446003, -0.120918, -0.431988, 1.063977, 0.312575, 1.983829, -0.596960, 0.083516, -0.597356, 3.026318, 0.603033, 0.062867, 0.381198, 0.882725, -0.098218, 0.780584, -2.143364, -0.017192, 0.834249, 0.907809, 1.280190, -0.853680, 0.631535, -0.219623, 1.462403, 0.309000, 1.357172, -1.254189, -0.403433, -1.475000, -2.061593, -0.714903, -0.361631, 0.893654, 1.362963, 2.086599, 0.211993, 1.341075, 1.747539, 0.507176, -0.335751, -0.822882, -0.950875, 1.540854, 0.873600, 1.197219, 0.168600, -0.485274, -0.614645, -0.934519, -0.454649, 0.838339, -1.181235, 0.275976, -0.540647, 0.672620, 0.083545, -1.491835, 0.468006, 1.074482, -2.561683, -0.452692, -1.117312, 0.168179, -0.408032, -0.505593, 0.817083, -0.442046, -0.131498, -1.126604, -1.569494, 0.355053, 1.131362, 0.713010, 2.154716, -0.139501, -0.598514, 0.943933, -0.542753, -0.382539, -0.563194, -1.705040, 0.886024, -0.379644, -0.140228, 1.120338, -0.924376, 2.414372, 0.524540, -2.293547, -0.559688, -0.070296, 0.750848, -0.406359, -0.254353, 0.344181, 1.013552, -0.007486, 0.746620, -1.535494, -1.486353, 0.004643, 0.956255, -0.748508, 0.459997, -0.531270, 0.070060, -0.053732, 0.734850, -0.181851, 1.037690, -1.404738, 1.968833, -0.505541, 1.692548, -0.421221, 0.948021, -1.858878, -0.955996, -1.863547, 0.476828, -0.702769, -0.124104, 0.170128, -1.936151, -0.858897, -2.853552, 2.323096, -0.617532, 1.485035, -0.256558, -2.372216, -0.653720, -1.247326, -1.109409, -0.566794, -0.137462, 1.509960, -0.414510, 0.994967, -0.876768, 1.515747, 0.612384, 0.002270, 1.729010, 1.317656, -0.369445, 1.199532, 0.245638, -0.150042, 1.365083, -0.289579, 2.121218, -0.077187, -0.147791, -0.808945, 1.310684, -0.310651, -0.185196, 1.118677, -0.454398, 1.563441, 0.886451, -0.924288, 0.238867, 0.649060, -2.260550, 0.620375, 0.320366, -0.414299, 0.852355, -0.050526, 1.230372, 0.087838, -1.496737, -2.252890, -0.872837, -0.033618, 0.432355, -0.326513, -1.256874, 0.865369, -1.200442, -0.172117, 0.678513, -1.892742, 0.378145, -0.634113, -0.497496, 1.057485, -2.047675, -1.678784, -0.090789, 0.095704, 0.183354, -0.055582, -1.294250, -1.289254, 3.114116, 0.103514, 0.666552, 0.637755, -1.813854, -0.517618, 1.734209, 0.072069, 0.977124, 0.116245, -0.841680, 0.801202, -2.088752, 1.338923, -0.293964, 0.258428, -0.739118, -0.542725, -0.452166, 0.090850, 0.882999, 0.713458, -0.362415, 2.440426, -0.536291, 0.016272, -1.744044, -0.110782, 1.313432, 0.264208, 0.552443, 0.197899, 0.739995, -0.449176, -0.905973, 0.429931, -0.419163, -0.600859, 0.272287, 0.759419, -0.392657, 1.017944, -0.162004, -0.328590, 1.680606, 1.139587, 0.641349, 1.715772, -2.174243, 0.008907, -0.158503, -0.209823, 0.093558, 0.620487, -1.483951, -2.298613, 2.090426, -0.479152, -0.372819, -1.676218, 1.556108, 0.294399, -0.199987, -0.503534, 0.974420, -0.891336, -0.181579, -0.303365, 1.247258, -0.304895, -0.330361, 0.749201, 0.726542, 1.033187, -0.426316, 0.686416, 0.588549, -1.046024, -2.265826, -0.569353, -0.974339, 0.790326, 0.301721, 0.051718, -0.408592, -0.497722, 1.313081, 1.564986, 1.936315, 0.901129, 0.331794, 0.263559, 0.396322, -0.878191, 0.420524, -0.614101, -0.048997, -0.834269, 0.705883, 0.250932, 0.302256, 1.503717, 0.533281, -0.085617, 0.068483, -0.982903, -1.700810, -0.308505, 0.654750, 0.127592, -1.526186, -1.279243, 0.689861, 1.368979, 0.482244, 1.852208, -0.370026, 1.246650, -1.487595, -1.333163, 0.708514, 2.147604, -0.584943, -0.212347, 1.200645, 1.572517, 0.193984, 0.064371, 0.439960, 0.220258, 0.294378, 1.689126, -0.863359, 0.906264, -0.163464, -0.094013, 1.055880, 2.419452, -0.010445, 0.954804, -0.708368, -0.488587, -0.187337, 1.789069, 0.251934, -0.636422, 1.745223, -2.032678, 0.587446, 0.389559, 1.229073, 1.070143, 1.737303, -0.256530, -0.323728, -1.016176, -2.597538, -0.439331, 2.120449, -1.636866, 1.661878, 0.174542, -0.609478, -1.462647, 0.138561, 0.475717, 0.761625, -2.056225, 0.519877, 0.520113, -0.058895, -0.223880, 0.487315, -0.600184, 0.111154, -0.520312, -0.740846, 1.001395, 0.269978, 0.061772, 0.795532, 1.153259, 1.945393, 0.386760, -0.194931, 1.117340, -2.547908, 0.275350, -0.291035, 0.121162, 1.168407, 3.004040, 1.206682, 1.860609, -0.553566, 0.436475, 1.509270, -0.079995, 0.648278, 1.520170, 0.654764, 0.642654, -0.103263, 1.431932, -1.672136, 0.675699, -0.358547, -0.368306, 0.465448, 0.850044, 0.548496, -1.096597, -0.154846, -0.588313, 0.500140, 1.866052, -0.722612, 0.694591, 0.342565, -2.186830, -0.268416, -1.208641, -0.252158, -1.056763, 0.726534, 0.720627, 0.528133, 1.618752, -0.471104, 1.252454, -0.255487, 1.021059, -0.093140, -1.126807, 2.117621, 0.861237, 0.464975, -0.611850, -0.340385, 0.272237, 0.949431, 1.179052, -0.367280, 1.360045, -2.030464, -0.575869, 0.553540, -0.858014, -1.017025, -0.675501, -0.547098, 0.523372, 0.772294, -0.304150, 0.586481, -0.530548, 1.554712, -0.108600, 1.136066, 1.108995, -1.031884, -0.009019, 1.093613, -1.632689, 1.833036, 0.476835, -2.287449, -1.048623, -0.890507, 0.350744, -1.675494, 0.005564, 0.502717, 1.097235, -0.486465, -0.191010, 0.305804, 0.368751, 1.427304, 1.539862, -0.179160, 1.119569, -0.038261, -0.889175, -0.835013, 0.045541, 0.075318, 1.266535, 1.736014, 1.063173, 0.626145, 0.333170, 0.255021, 0.031490, -0.641407, -0.198054, -0.420347, 0.534582, -1.828737, 0.079254, 0.020063, -0.101433, -0.231313, 0.563658, -1.594141, 2.160435, -0.816095, -1.346262, -1.275690, 0.755728, 1.756966, 1.766581, -0.440514, -0.720601, -0.200484, -1.164140, 1.138163, -1.487541, 0.623498, 0.322107, 0.567950, -3.297139, 1.047993, 0.016092, 1.125722, -0.452980, -0.745867, -1.266897, -0.358085, 0.168158, 1.054676, 0.092128, -1.170075, -1.726595, -1.283115, 0.045051, 1.534116, 0.196328, 0.590823, 2.194469, -1.296712, -0.988617, -1.626554, -0.902247, 0.615704, 0.291430, -0.111737, 0.312272, -1.681273, 0.581683, 0.273723, -0.823948, -2.025354, 0.405095, 1.725184, -0.288222, -0.722230, -0.128972, 0.883248, -0.825437, -0.458363, -0.131714, 1.339205, -0.840309, 0.149015, -0.497098, -0.403865, 1.003031, -0.946653, -0.545340, 0.030427, 0.916683, -0.904023, 0.182776, 0.677697, -0.083794, 0.984866, 0.463448, 1.186617, 0.311456, 1.690295, -0.111194, 1.911908, 0.164051, -0.945799, -0.228923, -0.373503, -0.399616, -0.307168, 0.458569, 1.050193, -0.596638, 0.873968, 1.337634, -0.428005, -0.573460, 0.318270, 1.244357, 0.855243, -0.287462, 0.136807, 0.891417, -1.137386, 1.848981, -0.979447, 0.892591, 1.767642, -0.529270, -2.029587, 1.249933, -0.215381, -0.217828, 0.159267, 0.411966, 0.686067, 0.760065, 2.328399, 0.711063, 0.545938, 0.081809, -0.765622, 0.467794, -0.890438, 0.082604, -0.755636, -0.505535, 0.512611, 0.276619, -0.186899, 0.190696, -0.196591, -1.168548, 0.881956, 1.345716, -0.601134, 0.435059, 0.509830, 0.513517, 0.514264, 0.901260, 0.045446, 0.063921, -0.034987, -1.735626, -0.563004, -1.697156, -0.288659, -0.616832, -1.328834, 1.049242, 0.189247, -0.222868, 2.113902, 0.614681, -1.008804, -1.107196, -0.189478, 1.963143, -0.750138, 0.170991, -0.204833, -0.091046, 1.044515, 0.744053, -1.841359, 0.612544, 1.076216, -1.005134, -0.679932, -1.677453, 0.089280, -0.332413, -0.453023, -1.385983, 0.125332, -1.633041, -1.896588, 0.448557, -0.013762, -1.760384, -0.524433, 0.557467, -0.266541, 0.072338, 0.118336, 0.609771, -0.027556, 1.407273, 0.831244, -0.687850, 1.681442, -0.097458, -0.614217, -0.881784, 0.217327, -0.417206, -1.255519, 0.813493, -1.480549, 0.375462, 1.831120, -0.710142, -1.009675, 0.391348, 0.406062, -0.297669, -0.371393, -0.307198, 1.349222, -0.343637, -0.202090, 0.537860, 1.055116, 1.315835, -0.844899, 0.264139, -0.593706, 0.609911, 0.570792, 1.552975, 0.653723, 1.001575, 0.446941, -0.189771, 0.677163, 0.104507, 0.525414, 1.317384, -1.440901, -0.112591, -0.371190, 0.378998, -0.071970, 0.541138, -1.696789, -0.348236, -0.652484, -0.377636, 0.573607, -0.506238, -2.064206, 2.449420, -0.716128, -0.364978, -1.081102, -0.315148, -0.468687, -1.144765, -1.122754, 0.024735, 0.145602, -1.032534, 0.076636, -1.741415, -1.211276, 0.532220, -0.448361, 0.164402, 1.486762, 1.178449, -1.921136, 1.082708, -1.011338, -0.891680, 0.753722, -0.916344, -1.823174, -2.347032, 0.365740, -0.819248, 0.234528, 0.511664, -0.056260, 0.513134, 0.908545, 0.235031, -0.682080, 1.233327, 0.582038, 0.406516, 1.459117, -1.081929, 0.651435, 1.182063, -0.598188, -0.006139, 0.316261, -0.918778, -1.112414, -0.646592, 0.178023, 1.338533, 0.711151, -0.474747, -0.112315, -0.798427, -1.162901, 0.457819, 1.741466, -0.180283, 0.315345, -1.688611, 2.574100, -1.171745, 0.392363, -0.026236, 0.895544, -1.343784, 0.512195, 0.451340, 1.112745, 0.798560, -1.048851, -1.389675, -1.462066, -2.488136, 0.417974, -1.436160, -0.004976, 0.455494, -0.005369, -2.055607, 2.736575, 1.002447, -0.428647, -0.650870, 0.645672, 1.605069, 0.802797, 2.566659, -0.721702, -3.715870, -0.161722, 0.063394, -1.053157, -1.069728, 0.014219, 0.183666, 0.808778, 0.657955, 0.689469, 0.964673, 0.146299, 1.118653, 0.950320, -2.009126, -0.252710, 1.252590, -0.026809, 0.534395, 0.607846, -2.124931, -0.336858, 0.246401, -1.309629, -1.849358, 0.327338, -0.187302, 0.702739, 0.259581, 0.246545, -1.555428, 0.243621, 1.375778, -0.851046, -0.013468, -0.184796, -1.976612, 1.069405, -0.794829, 0.660585, -1.459874, 1.347781, -1.181936, -2.609951, -1.077556, -0.468379, 1.438542, 1.189707, 0.745681, 1.139844, -0.336271, 1.190919, -1.034352, -0.366102, -2.191987, 0.236598, 0.486523, 1.556511, -0.219674, 1.470187, -0.854409, 0.267112, -0.377824, 0.520864, -0.056385, -0.798936, 2.074886, 0.032204, -1.217375, -2.063449, -1.285310, 2.097838, -0.940798, 1.610754, 0.304585, 0.457574, -0.190280, 1.142872, 0.824898, -1.373873, 1.054125, 2.023367, 1.372094, 1.033876, -3.208257, -1.014925, -1.688032, -1.700707, 1.261731, -0.727562, 1.071518, 0.593905, -0.314304, 0.716525, -0.441557, 0.115823, 0.189055, -0.435241, 0.104709, -0.392234, 0.542895, -1.655906, -0.570715, -2.399701, -1.575283, -2.348050, 1.250436, -0.182142, 1.184673, 0.310305, 1.541319, -2.274974, -0.026447, 2.122438, -0.471230, 1.222152, -0.289662, -1.055175, 1.879468, -0.428710, 0.031256, 0.339502, -0.228955, -2.475960, 1.110290, 2.435115, -0.272329, 2.677902, -0.005717, -1.316622, -0.951097, 1.510561, -0.963104, -1.506390, 0.210581, 0.879858, 1.406979, -1.301724, 1.836559, 0.419276, -2.014292, -0.982244, 0.225676, -0.119721, -0.658737, -1.212684, -0.284910, 1.108327, -0.807252, 0.419883, 0.924399, 0.419658, 1.649688, 0.579223, 0.999730, 3.067601, 1.383958, -0.454842, 0.267337, -1.908974, -0.351093, -1.831236, 1.108781, 0.711495, -0.840474, 0.951482, 0.466303, 0.694084, 0.770827, 0.003384, 0.262934, 0.242803, -0.585688, -0.695810, 0.317708, -1.713778, 0.132656, 1.782296, 2.769799, -0.937690, 0.758895, 0.455591, -0.273472, -0.929014, 0.483657, -0.849874, 0.942370, 2.475276, -0.772635, -0.333510, 0.665444, -0.226170, -1.101538, -1.030999, -0.929564, 0.722965, -0.021152, -0.030918, -0.150515, -2.408038, -0.285652, -0.744000, -2.462561, 0.389895, 0.315245, -0.601865}, + { 2.337321, -0.429642, 1.022885, 0.253261, -1.401816, -0.989984, 0.830947, 0.597094, -0.571317, 1.690383, 0.315999, 0.009381, -1.025589, 1.024117, 0.108649, -0.092137, 0.346022, -2.055616, 0.457025, 0.353586, -0.729094, 0.597740, 1.496967, -0.055598, -1.501531, -0.899054, -0.825994, -0.128391, 1.115745, 0.324774, 0.563254, -0.099426, -0.225081, 1.297083, -0.147710, -0.171278, 1.274669, -1.084272, 0.580317, 0.631473, -0.060033, -1.063733, 0.774318, 1.144561, -0.691132, -0.717214, -2.486493, 1.636143, 0.152745, 0.433073, -0.154226, -0.384905, -0.399353, 1.216924, 1.193847, 0.839150, -1.136556, -0.242710, 0.323263, -0.641451, 1.390098, -1.462946, 1.447529, -0.751584, 1.055429, -0.635006, -0.490759, -1.512379, -0.976371, -0.698039, -0.573942, -1.526660, 0.466892, 0.045109, -0.020500, 0.600991, -0.097354, 0.780374, 0.450068, -0.551631, 1.366202, 2.039244, -0.558707, 0.804681, 0.341823, -0.149477, -0.635017, 0.170413, -0.756009, 0.463339, -1.288935, 0.313820, -1.007160, 0.311133, -0.298115, 2.501487, -0.752617, 0.344394, 0.233995, 0.735958, -2.328878, -0.662946, -0.448013, 0.422403, 0.160125, -0.366557, -0.233235, -0.379479, 0.176164, 0.161456, -1.362242, -0.682515, 0.758324, -1.012404, 0.262362, -0.887453, 0.346873, 0.714343, 0.975859, 0.318502, 0.144590, -2.413029, 2.009182, 1.155543, 1.038931, 0.905366, -0.583997, 0.211819, 0.978822, -0.622996, -0.255847, 0.240733, -1.912822, 0.054255, 0.583236, 0.240213, 0.636038, -0.278756, -0.014958, -1.188565, -0.401841, -0.698944, -0.772357, -1.315150, 0.793620, 1.407082, -0.289240, -0.178556, 0.337260, 1.258786, 0.612380, 0.707650, -0.770249, 1.522771, -0.689677, 1.667840, 0.223367, 0.366234, -0.661446, -0.454998, -1.666422, -0.644142, 1.769614, 0.884764, -0.655267, -0.318731, 0.034353, 1.389980, -0.816701, 0.283389, -1.483604, 2.045331, -0.690412, -0.316124, 0.595790, -0.607315, -1.721786, -0.307827, -0.206785, 1.276525, 0.440553, -0.129481, 0.789993, 0.783763, 0.004633, 0.666672, 0.963664, -1.313744, -1.027659, 0.260147, 0.776592, 0.552861, 0.239684, -1.050638, -0.818517, 0.241157, -0.512810, 0.338181, -0.181470, 0.718335, -0.052284, 1.379860, -0.213368, -0.533347, 0.200093, 0.115612, 0.475863, -1.172010, -1.116714, 0.261349, -2.293406, 0.150527, 1.015968, 0.521186, -0.314344, -0.306312, -0.306492, -0.830002, -0.595450, 1.167307, -1.905297, 1.567927, -0.236749, 1.434784, 0.568149, -1.684704, 0.791314, 1.505137, 0.674921, 0.946931, 0.467427, -0.018506, -0.966801, -0.395042, 0.927785, 0.304687, 1.248909, 1.594708, -0.046561, 0.629306, -1.351146, -0.447544, 0.703029, 0.223122, 0.069064, 1.788974, 0.572610, 2.200482, 0.750343, -0.561570, -0.023846, -0.112072, 0.568679, -0.412031, -1.032621, -1.124866, 0.128356, -1.569295, -0.683512, -0.191803, -0.582371, 0.231644, -0.663476, -1.257372, 0.197796, -0.124597, -0.781056, -0.682931, 0.107269, -0.783870, 1.185933, -0.611333, -0.789881, -0.733025, -1.447164, -1.196054, 1.248218, -0.440393, 0.865784, 0.803660, -0.063488, 1.356028, -0.682631, -1.229464, 0.830787, 0.727385, -0.316417, 0.663418, 0.728818, -2.299477, 0.136863, -0.363375, 1.034682, -0.620474, 1.326379, 0.270204, -2.776911, 0.486999, -2.130793, -0.188870, -1.056379, -0.318623, -0.236779, 0.523245, -3.162778, -0.858741, -0.214063, -0.977505, -0.522633, 2.856750, -0.276034, -1.303678, 1.594225, 0.394365, 0.250256, 1.200605, 1.082268, -0.790061, 1.730090, 0.901963, 0.839747, -0.950800, -0.748706, -1.134237, -2.807783, -0.529764, 0.032603, 1.539907, 0.172095, -1.310192, 1.184743, 0.882632, -0.492173, 0.639595, -0.326997, 0.948140, 0.477311, 0.913643, 0.297693, 0.475666, -0.695050, -0.024084, -1.119196, -0.601025, 1.121040, -1.262033, 0.446357, 2.282216, 0.081291, 0.119609, -0.373797, -1.017148, 0.800049, -0.031418, -1.502287, 1.101358, -0.141934, 1.518922, -1.424444, 0.703141, -1.639117, 0.136443, 1.580298, -0.483121, 0.615801, 0.286080, -0.619201, -0.097993, -0.212469, 0.646424, 2.298681, 0.616037, -0.837003, 1.006855, -0.789321, 0.995552, -0.932525, 2.413934, -0.696568, 0.326732, -1.234243, -1.503443, 0.495643, -1.012682, -0.739202, -1.221918, -0.588920, 1.370122, -0.899400, 0.266930, -0.675903, -0.326139, 0.494237, 0.874463, 0.755183, -0.454865, -0.226878, -1.308440, -0.625731, 0.554561, 1.210104, 1.836121, 1.602161, -0.384816, 0.416116, 0.538585, 1.821518, -0.674960, -0.223768, 0.616469, -1.719513, -0.849342, 0.335311, -0.612269, -0.226553, 1.073756, 0.898078, 0.119732, -1.082833, 0.926120, 1.179485, -1.296953, 0.570058, 1.113874, -2.337205, -0.109157, -1.309326, 1.949279, 0.758534, 0.853436, -1.676574, 1.030386, -0.580712, -0.111418, 0.646851, -1.247590, 0.668359, -0.657181, -0.278512, -0.068827, 0.415229, 0.072938, 0.974019, 1.259461, -0.860292, 1.560038, -2.188347, 0.024952, 1.124708, -0.824320, -0.206617, -1.104815, 1.440700, -0.391468, 0.002453, -1.089736, 0.175172, 0.321380, -0.456327, -1.445622, 1.289299, -0.726865, 0.799226, 0.610885, -0.713832, 0.264918, 0.817193, 0.487894, 1.106671, 1.101234, -0.861417, -0.929515, 0.878256, -0.320935, 2.118629, -0.726715, -0.654006, 0.945171, -1.432403, 0.862277, 1.391376, 1.644486, 0.287776, 0.719214, -0.849583, 2.174733, -0.551402, 0.192006, 0.498672, -1.474928, 1.122795, 1.177434, -0.709894, 0.923292, 0.436570, -1.410601, -0.177633, -0.970618, -1.574714, 0.201337, -1.850994, -0.783539, -1.157923, -0.093120, 0.938570, 0.694793, -0.079145, 0.510301, -0.690793, 1.575756, 1.566558, 0.914585, -0.894977, 0.890755, 2.222937, 1.047762, 0.509610, 0.542679, 2.371725, 0.495608, 0.300535, 1.889379, -0.121741, -0.602924, 0.213294, -0.724996, -0.103625, 0.630649, -0.162416, -0.333412, -0.838966, -0.743999, -1.084867, -0.623715, -2.491511, 0.321634, 0.529571, -0.512949, 0.256535, -1.022361, -0.164604, 0.742861, 0.074424, -1.085390, 1.461042, 1.064877, -0.246287, 0.365011, -0.307663, 1.471597, -0.823815, 0.725668, 1.387396, 0.600747, 0.340903, -2.032868, 1.069347, 0.709754, -0.785682, 0.603405, -0.604338, 0.789145, -2.402350, -0.523082, 0.919431, -0.502538, 0.499267, -0.549267, -0.911869, -0.817622, 0.317639, -1.664974, -0.887097, 0.677589, -1.734020, 2.158098, -0.430523, 0.288381, 1.376042, 0.763767, 0.560009, -1.957066, -1.401013, -0.662786, 0.276718, -0.804756, 1.779442, 0.599400, 0.553277, 1.596515, 0.006540, -1.567768, 1.041983, -1.629491, 0.321437, -1.409779, 1.185767, 0.912439, 2.374876, 0.138722, 0.456927, -0.172241, 1.293443, 0.629052, 1.073823, 0.056340, -0.369837, -1.225499, 0.571907, 0.243497, -0.392084, 0.569672, -1.798851, 0.890656, -0.397324, -0.460420, -1.320661, -0.500095, -1.078627, 0.613826, -1.844196, 1.436031, 0.191424, 0.530001, 1.573679, 0.866405, 1.942565, 0.030816, -0.011407, 0.761531, -1.340256, -1.159396, -0.889301, -1.300884, 0.118318, -1.315428, 1.032377, -1.105590, 1.810786, -0.989522, 1.804072, -1.022186, -0.347826, -0.514250, 1.221926, 0.133439, -2.079883, -0.717786, 1.511328, -0.379740, -0.380572, -0.505603, 0.431337, 1.252299, 0.270988, -0.046979, -0.355069, 2.473226, 0.846595, 0.718346, -1.879829, 0.080713, -0.755893, 1.760165, -0.520634, 1.656699, -0.445971, 1.440244, -1.380322, -0.746312, 0.307394, 1.806878, -0.388290, 1.842725, 0.008189, 0.140959, 1.498083, 0.680799, -0.081033, 1.064467, 0.534554, 0.056568, 0.610494, -0.189906, 0.919225, 0.124473, 0.397768, 0.222131, -0.530405, -0.534905, 1.285193, 0.216817, -1.484064, 0.997613, -0.371304, -0.564347, -0.583328, 0.295586, 0.932263, -0.488946, -1.282254, 0.993959, -0.336857, -0.919027, 0.819810, 0.035947, 0.063231, 0.489200, 0.197019, -0.493031, -0.235046, -0.757889, 0.501891, -0.415803, -0.054793, 0.343577, 0.427378, -0.731412, 1.099909, 0.130547, -0.220202, 0.422688, 0.475404, 0.931095, 0.850869, 0.485613, -0.494174, 0.161418, -1.744393, -1.432208, -0.879628, 0.668269, 0.061123, 1.427379, 0.225026, -1.486358, 1.530060, -0.386450, -1.057191, 0.840078, -0.058422, 0.877481, 2.424463, 1.008270, 0.466672, 1.358038, 0.432555, 0.598824, 1.386900, 0.131249, -0.453416, -1.296126, 0.307389, -1.494215, 0.007374, 0.140258, -0.811115, 1.166673, 0.195288, -0.073003, 0.030724, -2.310006, 1.082711, 0.319241, 0.813020, 1.163267, 1.365047, -0.679640, -0.408458, 0.709043, 0.934761, -0.762984, -0.353049, -2.097398, -0.380858, 0.711225, 1.093737, 0.297980, 0.114900, 1.331322, 0.151485, 0.277899, 1.581151, -0.540481, 0.404399, 0.031727, 0.928761, 1.215576, -0.204593, -0.687389, -1.608054, 1.310789, -0.576096, -0.547321, -1.716152, -1.225451, 0.687603, 1.491284, -0.379756, -0.272250, 0.588670, -0.134009, -1.644295, -1.506580, 2.100574, -1.813766, 0.581243, -2.028589, 1.740500, 0.124687, -1.231534, -0.397662, 0.192855, -0.203508, 0.431811, -0.073801, 0.231442, -0.260371, -0.033429, -2.712549, -0.603544, -1.223501, -0.690803, -0.508083, -0.510098, -0.395079, 2.147952, 0.021111, -0.210939, 1.638807, 0.575649, 1.573715, -1.738951, 0.091762, 0.750087, -0.218003, 0.454105, 1.539915, -0.818788, -1.760430, -0.068426, 0.803904, 0.757246, 0.538695, 0.479820, -0.099385, 0.845498, 1.501157, -0.186469, -0.368612, 0.784137, 1.210680, 0.398826, -1.131553, -1.035259, 0.084524, -0.049281, -2.350477, -0.040466, 0.273124, -0.553475, -0.061309, -0.386347, -0.780559, -1.228210, -1.391829, 0.636955, -1.065650, -0.810598, -0.286551, 0.724075, -0.402721, -0.813249, -0.908731, 0.702894, -0.360384, 0.360834, 1.265617, 0.204800, 0.255212, 0.612234, 0.570753, -1.412055, 0.516077, -0.841101, -0.197013, 0.016379, -0.624348, -0.615172, 0.102823, -1.168953, 0.431213, 0.548992, -1.734129, 0.126447, -1.634678, 0.024652, -1.573408, -0.187511, -2.404755, -0.763747, -0.649742, -0.045887, -0.565708, -0.058954, 0.297171, 0.380098, -1.183756, -0.606955, -0.008728, 0.186181, -0.697559, -0.517029, -0.464703, -0.576450, 0.252155, 0.470797, 0.636928, 0.495456, 1.797270, 0.344770, -0.201348, 0.023758, 0.544238, -0.612164, -1.062438, 0.393221, -0.556455, -0.426737, -2.385365, -1.783350, -0.049841, 0.998854, -0.680402, 0.654772, 0.066051, -0.358309, 1.452866, 0.760396, -0.553823, 0.800856, 0.268226, -2.298603, -0.600403, 1.625617, -0.729883, -0.571470, 0.350084, 1.074134, 0.441901, -1.052797, -1.486979, -0.248057, 0.402044, 1.450524, 1.145233, 1.872856, -0.098155, 0.812803, -0.195954, 1.111301, 0.225480, -0.595420, -0.153507, -0.466690, -0.147112, -1.409886, 0.964076, -0.008608, -0.333793, 1.620728, -1.297296, -1.415798, -0.120328, 0.370372, -0.344065, -0.804285, -0.545166, 0.278901, 0.428088, 0.804216, -1.340802, 1.529643, 0.511443, 2.096251, -0.730065, -1.099222, -0.383207, -0.326167, -0.339220, -0.634407, 1.162708, -1.357094, -1.107000, 0.917948, -2.217138, 1.710681, 1.308535, -0.578724, -0.704699, -0.426887, 0.474662, 0.192386, -0.267459, 0.420074, 0.891192, -0.156662, 1.676879, 1.155494, -1.543697, -0.514005, -0.290645, -2.482641, -0.977817, 0.211063, 1.080310, -1.525141, -0.975746, -0.167437, 0.446044, 0.715109, -0.420494, -0.125401, -1.964485, -0.579513, 0.094948, -0.991441, -1.844664, 0.003524, -2.398522, 0.833129, 0.778418, 0.551808, 0.231208, 0.429461, -0.967061, 0.608647, -0.550590, -0.075546, -1.479476, -0.790243, -0.482673, -0.130046, 0.394731, 1.271709, 0.042652, -1.001688, -0.056332, -0.922544, 2.118864, 1.257020, 0.181695, -1.032997, 0.126754, 0.826033, 0.302006, 0.909620, 0.080874, 1.021271, 1.369756, -0.445704, 0.206247, 0.954408, 2.470907, 1.128335, 1.383718, -2.566099, -1.310874, 1.026216, -0.314611, 1.173787, -0.466753, -0.435593, 0.066783, 0.598932, 1.032431, 0.275150, 0.941341, -0.434451, -0.863127, -0.295369, 1.178574, -1.189132, -0.175474, 0.916099, 0.141379, -0.231113, -0.890694, 0.101240, 1.208490, 1.350077, 0.660477, 0.658927, -2.028459, 1.418370, -1.550030, -0.295267, 0.889128, 1.355873, -0.068606, -0.538045, 0.279554, -1.727978, -0.743827, -0.897655, -1.328401, -0.126542, -1.525852, 1.227469, 0.150458, 1.415622, -0.012257, 0.290056, 0.026198, -0.292829, -1.429574, 0.344230, 0.341810, -2.266376, -2.576846, 0.902459, -0.436512, 0.933507, 1.917352, 0.945201, 0.250917, 0.456884, 0.183620, -1.049254, 0.693598, 1.817713, -1.036500, 2.400206, 0.259345, 0.442620, 0.175754, 1.658759, 0.138920, -1.376477, -0.599400, 1.272190, 1.758249, -0.678446, -1.634041, 0.084095, 1.029800, 0.143942, -0.017404, 0.661647, 1.517825, 0.670393, 0.111843, 0.886456, -0.050147, 1.027175, 0.347071, -0.585977, -0.652695, 1.971019, -0.453835, -0.069338, -1.066374, 0.538143, 2.486785, -0.221029, -2.855516, 1.083413, -0.094926, 0.992624, -1.447707, -0.789263, 0.970770, 0.833354, -0.776701, 0.032213, -0.396014, -0.529892, 1.282085, -1.079443, 1.724205, 0.174257, 0.287573, -1.304453, -1.984681, -0.418989, 0.011623, -0.344416, -0.789973, -0.087867, 0.657060, -0.061899, 0.215290, -0.265279, 0.682898, -0.111481, 1.204260, 0.289406, 1.146346, -0.528698, -0.720130, 1.312930, 0.102885, -0.951324, 0.951512, -2.146751, -0.203992, 0.541870, -0.399778, 0.074750, 0.985756, 0.179078, -0.301136, 0.801063, 0.146744, -0.308101, -0.483415, -1.380962, 0.966106, -1.267782, 1.422076, -0.603380, 0.019685, 0.157202, 0.207634, 0.848262, -1.409720, 1.416172, -0.636828, -1.261609, -0.447447, -0.598303, 0.481499, 0.464817, 0.449004, -0.691535, -1.536119, -1.522704, 0.100555, 0.113137, 0.200304, -0.889312, -0.628678, 0.692131, 1.106729, -1.553656, 0.217747, 0.468230, -0.932723, 1.212490, -0.119017, -0.620863, -1.593825, -0.546864, 0.299546, -0.166665, 0.139376, -2.420699, -0.298823, 0.282376, 0.487424, 0.695375, 0.245474, 1.214752, 1.469679, 0.194764, -0.256458, 1.392414, -0.710740, -0.135991, -0.123997, 0.169090, -0.211564, 1.987177, 1.186389, 0.669096, 0.278585, 0.165244, -0.740898, 1.019153, 0.328208, 0.622638, -0.296367, -0.055395, 0.099994, -0.066102, 0.391168, -0.448941, -0.888406, -0.136045, -0.056270, -0.556481, 1.328168, 0.609558, 0.719651, -0.409704, 0.203235, -0.305441, -0.860099, -0.666724, 0.025255, 0.813551, -2.501951, -1.565365, -0.502628, 0.116062, -0.358196, -1.047267, 0.592956, -0.390446, -0.537152, 2.115666, 1.850178, -0.683411, 0.949092, 0.945504, -0.581107, 0.162778, -1.026385, 0.472740, -0.542002, -1.189987, -0.394594, 1.626510, -0.137411, 1.201380, 1.281823, 0.220592, -0.841141, -0.401837, -0.856686, -1.291859, -0.868320, 1.924099, 0.845186, 1.623691, -0.811372, 0.481019, -0.062247, 0.907551, -0.127700, -1.415445, -1.055489, -0.146444, -0.700324, -1.383776, 0.764403, -1.757550, 0.539115, -0.981633, -1.354591, 0.078507, -2.038376, -0.260321, -0.085519, 0.320232, 0.327691, 0.896029, 0.975088, 1.631637, -0.038244, 0.022490, 0.333272, 1.392911, -1.276611, 1.475053, -0.769214, -0.377429, -2.101652, 0.563609, 1.491664, -0.812217, 0.622315, -0.438700, 0.337666, -0.159724, 0.113132, 0.526749, -1.285028, 1.345688, -0.531400, -0.627879, -0.806850, 0.183946, 0.808020, 1.255426, 0.063634, -0.073541, 0.061484, -1.427283, -0.414262, -0.005928, -2.114137, 1.039634, -1.098348, -1.193100, -0.115714, 0.513226, -1.218873, -1.411105, -1.893552, 0.846973, 0.557617, 1.001456, 0.927174, -1.292722, 0.604694, 0.988577, 0.046540, -0.047261, 0.042047, -0.654911, 1.306546, -0.304858, -0.711578, -1.119506, 0.661724, 0.545685, -0.780966, -0.266064, -1.324155, 0.397588, 1.501832, 0.166289, 0.119722, -1.188676, -0.897802, 0.529741, -0.171552, -0.334154, 0.454006, 1.041604, -0.563954, -0.839368, -0.387785, 0.898141, -1.988665, -1.541027, 1.379989, -0.326937, 1.773371, -0.238887, 1.326586, 0.889331, 0.005116, -0.818425, -0.580137, -0.199222, -0.382124, 0.865301, 1.781277, 1.899323, 0.180215, 0.546872, -1.517506, -1.020935, -1.223293, -0.196383, 0.453334, 0.118396, 1.609957, 0.730833, -1.171495, -0.026998, -0.994484, 0.194044, 0.973798, 0.600814, 0.502009, -1.316637, -0.579674, -0.567247, -0.609395, 0.282480, 0.917098, -0.976205, 2.022152, -0.041731, -2.273989, 0.598804, 0.360459, 0.835917, 0.602479, -0.551306, -0.386744, 0.812365, -0.242564, -0.180443, 0.033147, 0.730494, -1.693939, -0.888748, 1.651093, 0.796182, 0.830769, 1.061931, 0.029416, 2.044190, 0.250542, -0.129687, -1.941208, -0.452015, 1.206932, 0.577087, -0.071705, 1.070593, -1.181535, 0.163789, -0.109606, 0.664772, 0.180033, -0.041965, -0.187775, 2.821750, -0.482416, 1.165064, 0.600523, -1.064752, -1.348082, 0.342328, -0.812475, 0.080418, -0.148392, 0.135378, 0.352195, -0.177678, -1.196766, 0.559897, -0.101411, 0.987495, 0.780272, 0.100704, -1.698699, 0.558652, -2.011813, 0.592350, -1.214767, 2.044935, 0.305423, 0.835033, 0.254961, -0.474358, 1.002370, 0.032339, 0.638184, 0.114983, -0.510858, -0.296111, 0.571823, 0.526870, 0.196629, -0.624577, -0.393288, -1.357331, -0.588913, 0.183936, 1.379487, 1.951461, -1.659723, -0.254270, -0.895240, -0.641061, -0.313766, 0.565115, 1.292762, -0.662481, -1.541751, -0.034034, -1.265074, 1.021332, -0.298506, -0.283800, 0.405626, 0.864383, -0.109579, 1.103939, 0.995116, -0.203334, 1.358686, 0.491537, 1.143836, 0.605545, -0.251426, -0.712209, 0.413200, 0.637253, -0.508847, -0.655313, -1.499713, -0.411762, 1.338043, 0.138139, 0.306510, 0.594452, -0.112470, 0.952769, -0.645435, -1.620871, -0.007091, 1.557873, -1.017056, -1.152281, -0.685774, 2.309696, -0.044065, 0.333794, -0.127069, -0.721280, -0.137304, -0.357416, -0.480051, -0.540229, 1.053912, 0.280259, 0.115400, 0.036530, -2.211189, -0.424118, 1.006836, 0.007730, -0.329704, 0.203536, 1.272295, 1.315288, 0.422243, -0.702801, 0.149187, -0.261542, 0.175932, -0.068840, -0.737637, 1.139817, -0.053294, -0.089320, 0.273616, 1.076978, 0.229117, -1.258126, 1.130884, 0.637562, 0.607254, 0.399422, -1.722241, -0.173765, 2.150429, 1.203504, 1.521091, 1.389685, -1.440625, -0.337699, -0.938218, 0.087945, -1.447592, -0.194270, 1.811361, 1.132370, -0.161499, -1.163924, 1.735122, -0.810205, 0.901750, -1.209394, -1.813556, 1.056213, -0.323949, 0.587373, -0.937907, -1.586931, 0.602325, 0.401392, -0.912441, -0.123792, -0.432919, 0.336108, 2.990385, 0.272254, 0.234251, -0.567431, -0.261765, -1.385036, 0.844094, 1.873353, -1.308163, -0.408481, 0.357132, -0.244698, -0.355869, -0.976017, 0.542101, 1.593482, 0.040864, -0.161650, 0.398971, 0.818368, 0.269653, -0.755855, -1.535921, -0.118250, 1.019890, -0.301912, -0.380386, 0.873417, 1.084054, -0.390738, -1.258494, 0.002491, 1.207142, 0.480992, 0.680139, -0.597136, -1.036691, 0.656762, 0.350350, -0.276681, 1.346050, -1.729424, -1.245797, 0.888917, 2.327298, 0.815871, -1.208760, -0.153598, 0.624110, -1.539308, -0.843046, 0.510037, -1.772225, -0.902356, 1.037893, 2.179618, -1.762733, -0.645342, -0.192162, 2.306712, 1.654580, -0.077402, 2.270077, -0.572328, -0.968494, 0.058736, -0.116642, -1.575883, 0.379552, -1.568017, 1.179160, 0.262279, -0.783473, 0.176868, -0.548986, -0.958939, -0.196162, 1.142816, -0.705500, 0.974784, -0.956845, -0.716899, -0.835447, 1.214828, -0.029038, -1.163843, -1.907094, 0.603734, -0.277778, -0.145618, -1.909977, 0.369054, 0.189050, 1.772111, 1.177750, -0.040812, -1.726328, -1.158213, -1.068445, -1.324851, 0.809749, 0.039073, -1.181564, 0.174043, 0.159514, -0.283734, -0.978429, 0.743818, -1.130116, 1.020955, -0.048145, -0.759333, 0.082637, -1.232824, 0.021998, -0.488922, -1.165545, 1.334511, 0.040569, -1.336519, 0.441303, -2.775804, 2.753315, 0.568175, 0.385026, -0.235911, -0.829583, -0.618092, 0.396525, 0.677902, -1.337664, -0.121260, -0.901623, -0.240343, 0.448279, -0.923447, 0.794892, 0.538327, 0.345790, -0.062513, 0.799774, -1.634726, -0.743072, -0.430742, 0.441155, -0.307373, 0.377395, -1.265424, -1.804054, 0.307356, 2.090777, -0.579687, 0.497116, 0.475884, 0.301702, -0.131968, 0.223842, 0.411614, -0.909693, 1.274521, 0.101692, -0.303937, 0.048006, 2.029197, -0.297846, 0.141886, 1.405218, 0.063074, 1.205843, 0.305091, 1.142042, 1.841808, -0.545226, 0.054520, 1.035448, -0.499729, -1.500200, 0.024222, 0.814562, 2.019871, -1.419313, 0.588187, 0.053406, 0.431949, -1.519240, -0.436522, 0.001030, -0.977111, 0.614273, 1.778556, 1.212511, 0.549569, 2.292150, 2.548867, 1.968001, -0.552600, 0.768683, 0.767008, -0.337174, -1.285877, 0.018756, -1.162546, -1.150093, 1.344816, 0.843367, 0.972694, -0.204638, -0.186812, -1.099346, 0.228246, 0.208569, 1.117484, -1.225010, -0.320824, -1.120242, -0.324640, 0.186273, 0.411510, -2.439716, -1.811920, -0.226029, -0.745188, 0.346466, 0.071804, 0.202311, 0.193766, -1.322464, 1.069883, 0.996225, 2.069744, 0.569761, 1.665580, 0.695051, -0.199248, 0.365181, -0.154958, 0.826970, -0.594454, -2.165781, -1.286016, 0.682984, -1.480096, -0.945478, -0.097643, 0.279409, 1.349391, 0.664588, 1.322224, -0.308967, -0.425171, 1.142148, -0.269634, 0.033033, -1.502666, -0.144860, 0.342433, 0.279948, -0.490003, 1.182682, 0.518806, 1.272059, -0.336806, -1.763621, 0.660457, -1.254211, 0.927523, -0.908643, 1.941743, -0.650633, 0.570980, -0.217424, 2.470276, -1.388080, -1.062049, -0.482329, -0.017493, 0.732136, 1.110228, -0.208070, 0.067397, 0.147108, 0.805427, -0.221335, 0.531873, -0.376170, -0.334584, -0.508250, 0.838202, 0.513136, 0.335641, -0.242168, 0.133115, -0.038480, 0.968687, 0.409966, -1.527608, -0.821672, 0.741504, -0.331534, -0.857009, -0.666070, 0.808734, -0.127306, -1.606196, 1.635141, -0.433875, 0.191642, 0.551458, 0.644394, -1.329646, -1.252648, 0.505464, 0.491045, -1.287335, 0.205115, -0.841172, 0.944374, 1.567995, 0.773059, -0.388563, -0.505790, 1.465967, 1.178371, -0.188458, 0.079023, 2.008720, 1.558475, -0.577614, 1.135190, -0.274885, -1.221427, 0.327277, -1.109987, 0.848868, -0.253314, 0.385213, 0.442159, 0.662485, -0.280208, -0.049472, 0.611953, 0.595696, -0.063058, 0.324326, -0.027238, -0.449977, -0.124632, -0.975559, 0.932067, 1.332589, -0.063669, 0.438703, -0.014451, 0.074019, -0.652450, -1.748431, -1.750819, -0.392305, 2.392938, -1.506794, -0.909862, -1.147870, -0.171357, 0.573011, -1.228293, -0.431223, 0.202150, 0.777781, 1.021711, -0.760631, -0.127896, -3.050420, 0.889932, 0.735254, 0.994213, -0.552587, 0.040101, -1.708068, -0.821301, 0.995809, 0.020052, -0.993222, 0.698404, 1.328444, 2.409936, 0.469440, 0.060884, -2.240183, 0.001344, 1.184458, -1.056726, 0.400141, -1.012722, 0.064867, 0.700708, 1.336551, 0.772083, 0.463771, 1.344587, -0.543434, 0.041066, 0.873260, -0.381723, 1.235718, 1.369374, -0.219139, 2.391607, 0.615882, 1.125247, 0.158113, -0.562384, -0.389481, 0.566891, 0.196858, -0.914084, 1.175169, -0.799879, 0.375137, 1.100522, 0.251029, -1.182291, -0.603581, 1.653578, -0.221729, 0.564430, 2.940118, -2.783894, -0.236153, 0.672090, -0.826953, 0.020477, 0.949128, 2.785620, -0.559512, -1.104733, -0.227439, 1.580999, -1.163081, -1.277595, 0.539420, -0.560134, 1.546984, -0.920192, -0.695273, 0.569854, 0.015180, -0.284372, -2.317827, 0.460737, 1.144355, 0.609845, 1.629190, 1.424549, -0.816671, -0.173394, -0.811929, -0.331061, 1.104648, 0.066671, -1.042079, -0.239444, -0.277354, 0.085307, 1.549487, -1.413354, 1.185043, -0.153456, -0.515145, -1.619401, -0.477406, -2.445794, -0.824893, -0.773923, 1.103589, 0.883857, 0.083177, 1.538264, 2.019186, -0.274504, -1.795399, -0.545986, -1.291566, -0.833493, 0.993431, -0.396669, -0.463256, 0.096744, 0.703135, 3.552240, 0.216525, -1.411490, 0.938509, -2.191708, -0.716620, -0.823003, 0.647138, -0.319533, -0.253833, -0.780221, -0.003684, -0.724654, 1.690283, 0.458092, -0.313810, -1.345472, -0.199287, -0.232094, -1.130306, 0.838793, -0.283346, -0.335152, 0.571746, 1.497499, -1.096485, 0.829887, 0.234547, 0.158165, -1.081282, 1.389917, 1.098423, 0.514658, -0.199515, 0.251525, 0.259846, -0.053847, -0.911876, -0.299442, -0.594997, 0.807815, -0.787464, 0.935289, -1.103569, 1.838220, -0.132290, -0.470690, 1.189230, 0.494170, 0.098396, 0.364323, -0.301090, -0.655580, -0.155590, 0.009020, -1.631864, -1.837839, 1.805411, 0.092938, 0.039264, -0.646894, -1.755163, 1.969680, -0.686045, 1.239874, -2.358355, 1.654864, -0.575178, 1.462620, -1.478345, 1.794142, 0.809319, -2.622436, -0.081788, -0.231781, -0.963525, -0.142167, 1.081190, -0.573969, 2.047837, 0.907229, -0.980996, 0.014572, 0.582906, 0.109952, 0.490715, -2.735213, 0.644402, 0.994016, -0.069736, -0.231141, 0.428238, 0.374348, -0.210908, -0.947164, 0.852818, 0.100060, -0.928290, -0.504841, -0.096397, -0.569812, -0.704950, 0.484203, -0.638470, -0.706065, 0.286929, -0.583222, 1.437547, -0.616605, -0.714727, -0.210975, 1.154438, 1.380778, 0.110943, -0.525935, -0.629929, -0.063200, -0.811830, -0.587717, -0.616391, 1.239408, 2.513326, 0.234783, -0.522457, 1.474645, 0.765152, -0.014460, -0.121283, -2.569939, -0.951613, 0.809743, -0.992645, -0.956978, 0.891274, -1.603748, -0.371628, 0.512550, -0.280094, 0.112762, -0.905441, -0.256569, -0.493107, 0.320867, 0.403879, -0.846265, -1.781576, 0.034394, 1.176455, -0.689019, 0.815652, 0.884577, -0.408083, -0.770426, -0.912780, -0.374160, -0.013787, -0.210866, -0.511547, 0.559603, -1.240296, -2.085399, -0.476032, 0.577643, 0.116426, 0.308831, -0.830472, 0.474210, -1.292696, -1.172786, -0.991903, 0.349414, 0.175821, -1.651981, -1.822134, 1.006879, -0.587992, -0.172485, 1.018614, 0.825054, 1.233370, 0.080930, -0.554872, 0.679574, 0.069067, -0.086249, 0.195186, -0.945392, 0.559540, -0.130113, -0.698305, 1.119101, -0.515235, 0.100845, -0.775317, 2.087920, 1.176912, 0.638982, -0.148675, 0.719341, -0.827719, -0.935615, -0.235936, 0.894834, -0.056800, 0.758836, 1.030296, -1.049039, 0.667220, -0.001771, 0.477004, -0.673390, 0.887366, -0.377699, -2.900163, -0.097763, -0.753570, -0.361869, -0.355244, 0.391835, 1.440275, 1.051138, -0.505081, -0.292809, -0.736172, 0.976628, 0.692954, 0.688101, 0.102961, 0.715891, 1.825440, 0.556489, -0.337208, 0.299549, 0.337673, -0.368853, 0.162805, 0.715536, 0.930330, 0.016777, 1.372411, 0.291119, 0.125316, 0.665695, -1.142696, -0.927675, 0.363100, 0.487848, -0.188682, -0.520067, -0.166539, -0.183153, -0.696270, -0.471364, -1.737812, 2.005301, -1.079466, -0.056970, 1.390907, -0.304624, -0.300941, -1.852622, 1.073252, 0.150073, -0.086175, 0.169735, 1.811229, 3.174985, -1.134058, -1.302898, -0.142359, -0.243731, -1.438662, -1.243708, -0.084375, 0.786929, 0.617991, 0.641978, 0.943103, 0.290617, -0.007560, 1.692582, -0.147972, 0.158467, 1.181921, 0.548755, 0.967098, 0.170285, 0.932408, -0.976638, 1.923063, 1.374870, 1.007909, -1.184207, 1.156023, -0.138481, -0.352115, -0.165230, 0.340586, -0.324497, 0.984567, -0.370267, 1.415006, 1.629476, 0.151080, -0.682174, -2.390866, 0.226890, -0.933820, -0.931362, -0.417865, 1.094627, -0.681261, -1.201641, 1.637456, 0.182476, -0.882310, 1.061036, -2.130762, -1.109142, -0.007399, -2.177727, 1.195377, -1.763817, 1.173323, 0.806390, 0.976779, 2.319091, 0.692855, 0.561399, -0.010128, -0.485452, -1.175547, -0.270605, 0.361076, 0.219290, 0.684318, -0.779013, -0.321915, 1.108012, 0.338861, 1.469638, -0.003356, 1.052430, 0.610195, -0.494343, -1.811070, -1.035314, 0.339320, -0.537407, 0.698484, 0.055934, 1.151257, -0.598374, 2.721496, 1.228932, 0.827922, 0.285264, 1.934264, -0.012394, -1.042898, -0.202276, 0.688050, 0.088320, 0.249200, -1.333165, 1.536338, 0.748816, 0.747077, -0.945105, 0.495136, 0.931299, -0.104341, 0.179619, 0.282522, 0.763397, -1.412177, 0.288321, -0.114031, 0.100627, 0.010345, 0.003131, 0.076089, -0.336673, -0.256276, 0.993024, 0.008089, 1.296678, 0.406845, 1.261078, -0.116565, -0.438248, -0.050055, -0.142456, 0.599522, -0.482074, -0.772793, 0.174188, 0.765013, 1.549270, -0.326966, -0.363881, -0.231502, 1.793247, -0.645320, 0.439428, 0.474547, -1.694857, -3.386497, 0.952501, 0.948442, -0.676680, 0.606416, -1.977418, -0.094843, 0.307231, -0.607186, -0.470207, -0.331358, 0.325289, -1.131281, -0.231434, -0.433763, 1.300479, -0.280185, 1.252363, 0.815856, 0.464310, 0.728566, 1.485649, 0.546781, -1.396667, 0.338572, -1.655903, 0.420377, 0.281311, -1.111173, -0.140033, -1.507939, 0.644368, 1.080768, 0.397577, 0.817869, 1.709339, -0.004625, 0.112178, -0.662504, -0.947122, -1.539480, -1.130573, -1.252391, 0.297672, -0.293719, 0.506604, 0.150008, -1.309252, 1.521718, -0.206846, 0.746323, -0.447425, 0.078452, -0.299725, 0.618614, -0.814651, -0.460175, 0.178950, -0.505777, 0.569298, -0.752216, 1.454532, 0.410511, -0.213430, -0.560482, -0.815947, 0.527645, -0.192652, -0.044070, -0.134091, 0.179687, -1.632031, -0.681558, 1.229445, 0.266362, -0.722924, -1.759851, 1.549819, 0.757948, 1.168719, -0.389137, 0.418914, 0.391587, -0.613770, -1.356007, 0.398750, 0.174487, 1.369844, -0.567837, -0.026973, -0.025800, -1.823879, -1.341706, -0.918892, 0.605371, 0.151341, 0.562000, -1.813912, 0.518735, -1.256922, -0.984604, -2.266686, 1.601562, 0.759092, -1.347905, 1.957820, -0.870879, 0.378215, 0.437680, -0.628609, -0.629912, 0.093632, -1.754365, -1.231373, 0.109443, 1.551882, 0.348643, 1.728756, 0.783940, -1.189103, -1.579136, 0.197554, 1.005385, 0.260297, 0.961543, 0.467555, -0.153463, -1.545000, 0.299656, 0.909066, 0.153681, -0.377016, 1.370693, -0.618686, -0.407515, 1.216128, -0.118453, -0.301039, 0.401727, -1.525915, 0.275522, -0.603595, -0.413420, -2.582762, 0.303243, -0.681313, 1.070565, 0.395349, -0.583501, -1.229236, 2.011695, -0.724282, -0.520835, -0.664947, 0.966854, 1.295172, -0.173344, -0.820058, 0.717728, 0.417631, 0.620602, 1.655718, 0.533786, -0.465954, 1.254768, 1.368894, -0.219607, -1.499260, 0.332906, -0.417570, 0.437638, -2.166195, -0.081047, -1.226050, -1.467537, -0.468164, -1.339766, 0.251649, 1.286700, -0.124942, 0.576080, -0.390990, -0.919239, -1.405808, -0.620938, 1.011732, 1.073943, -1.022089, 1.228517, -1.313493, 0.329991, 0.325891, 0.441823, 0.533469, 0.168244, 0.488010, 0.073313, 1.458532, 1.205154, 1.824760, -0.687414, -0.500318, 1.507036, -0.042392, 1.512058, -1.547461, -0.343478, 0.259748, -0.515998, 0.523989, -1.911554, -0.348326, 1.156765, 0.440582, 1.001312, -0.800922, -0.150718, -0.432235, -1.305117, 0.339569, -1.583480, 1.336014, -0.858737, 1.431749, 1.144301, 2.021197, 0.587902, 0.634428, -0.135424, 0.611055, -0.570803, 1.200229, -1.145424, -0.607091, 0.513574, -1.134279, -0.701436, 0.659436, -0.126769, -0.722253, 0.312852, 0.851066, -0.550953, -1.035056, -0.178996, 0.794292, 1.345476, -0.210195, -1.054664, 1.044173, -1.050228, 1.031430, -0.892830, 1.214891, -0.167253, 0.545731, 0.293455, -0.584334, -0.197853, 1.698795, -1.086416, -1.396709, 0.388075, 0.928634, 1.193052, 0.542530, 2.174764, 0.239803, 0.971829, 0.021349, -0.210745, -1.307224, 0.530507, 1.158654, 0.779241, 0.438243, 1.113252, 1.482862, -0.982382, 0.888396, 0.657061, -0.091891, 0.850659, 1.621601, 0.950529, -0.605095, -0.961948, 2.756418, -0.804598, -1.133715, 0.420542, 0.707231, 0.441337, 0.019870, -0.412532, -0.020664, 1.224954, 0.129117, 0.692995, 0.588245, -0.587636, -1.682081, 0.152476, -0.395927, -0.051541, 0.867257, -0.825371, 2.508079, -0.541376, 1.242906, 1.081817, -0.381739, 1.007005, -1.397104, 2.049309, -0.566978, -0.687564, -0.468995, -1.287895, -0.198237, 0.422649, 0.239427, 3.274068, -0.549394, 1.091445, -0.063481, -1.109790, -0.092825, 0.228454, -0.275759, -0.069295, -0.568130, 0.839787, -0.131585, 0.856314, -0.177739, -0.744406, -0.554781, 1.133109, -0.720532, 2.679416, -0.065719, 0.750548, -1.681082, 0.402632, 0.161070, 0.773558, 2.388589, 0.537458, 0.144391, -1.162200, -0.243017, -0.209331, -0.738535, 0.494306, -0.031733, -0.113754, 0.076761, 0.831861, -1.190671, 1.039350, 0.691202, 0.861462, 1.023810, 0.700740, -0.359189, -0.571197, 0.647437, -0.494145, 0.688758, 0.248115, -0.300279, -0.092851, -2.463564, -1.275104, -0.765320, 0.346337, -1.245937, -1.062869, -0.051069, 0.901298, -0.744129, -0.598520, 0.617659, 0.035656, -0.573097, -1.796183, 0.200496, 1.901870, -0.080139, -0.668790, -0.091314, 0.067770, -0.401100, -1.190672, -0.267438, -0.297945, -0.089070, 0.671168, -0.785190, -1.236640, -3.077630, 0.829355, 1.039796, 2.058157, 1.434751, -1.002031, -0.680382, 0.828008, 0.714094, 2.441755, 0.069451, 1.193988, 0.061189, -0.445449, -0.886332, 1.043918, -1.112944, 0.771895, 2.891960, 1.104239, -0.072483, 0.406584, 0.719894, -2.093123, -1.813807, 2.245861, -0.412736, 0.022196, -0.372102, 1.781085, -1.330432, 1.457060, 1.634151, 1.701577, -1.300448, 0.753790, -0.837953, 0.413695, -0.156132, -0.536231, -1.643046, 0.074195, 1.403474, -1.024449, 1.060438, -0.659555, -0.494227, 0.768915, -0.262128, -2.380972, 0.532851, 0.808966, -1.090259, 0.405008, -1.411347, 0.015488, 0.462615, 1.112488, 0.319696, -0.617976, -1.029672, -1.899080, -1.073926, -0.617877, 0.898976, 0.690574, 1.870248, -0.147114, 0.930937, 0.431637, -0.580698, 2.058217, 1.171048, -1.206165, 0.486984, -1.695516, 1.033344, -0.272659, -0.527465, -0.952022, -0.461038, 1.244217, 0.216961, -0.821916, 0.283711, 0.238485, -1.249147, 0.171838, -0.065925, -0.156381, -0.554742, -0.972072, -1.528020, -0.355954, 0.270998, 0.139556, 1.812417, 1.801546, 0.624538, -0.787086, -0.184569, 1.530320, 0.143045}, + { -0.460127, 1.003686, -0.756425, 0.948514, 0.243031, 1.061145, 0.037331, 1.278928, -0.372089, 0.717820, -0.892170, 1.527757, 1.448706, 1.676767, 0.063852, 0.254324, 1.676828, -0.320170, 1.569841, -0.673816, 0.228773, 2.254672, 0.475782, 1.376060, 1.188919, 0.456734, -1.462780, -0.404180, 0.876127, 0.224036, 1.209959, 0.615370, 0.333324, 1.172845, -0.432864, 0.433496, -1.064113, 0.466705, -0.658574, -0.038656, -1.141713, 0.183697, 0.721033, 0.118445, -0.112179, 1.902772, 0.813864, 0.327133, -0.906739, -0.323852, -0.821924, 0.642731, 0.605088, -0.696286, -0.427675, 0.262865, -0.959123, -0.845785, -0.225202, -0.429458, 1.781495, 1.492720, -0.018856, -1.889690, 0.538864, -0.300831, 0.488659, 0.715193, 0.018927, -1.468770, 1.783636, 1.825216, -0.480296, 0.003911, 0.247482, 0.912840, 0.836604, 0.417612, -1.233762, -1.355279, -0.119523, 0.946241, 0.063261, -0.163813, -1.811143, 0.425394, 1.215904, -1.432267, -0.470739, -1.593512, 2.271159, -0.697805, -0.050870, -1.305174, -0.999425, 2.055721, -1.623457, -0.526404, -0.460731, -1.507115, 3.133274, 0.247029, 3.504288, -1.377407, -0.198749, 0.866587, -0.853861, 0.870844, 0.229323, 1.238467, -0.888205, -0.492117, 0.134792, 0.087148, 0.795628, 0.701015, -1.908604, -0.720976, -0.916969, 0.293436, -1.200093, 0.184176, -1.704998, -1.277669, 0.609335, 1.407192, -0.141481, 2.205840, 3.290139, 1.811724, 0.744099, -0.366326, -0.634037, 0.642487, 0.340081, 0.639567, -1.243038, 0.920221, -0.854984, -1.609432, 1.352153, -0.697336, 0.233935, 0.881627, 0.219395, 1.241279, -1.294647, -0.125217, 1.009194, 1.065202, 0.424949, -0.659179, -2.039154, 0.251962, 1.437868, -0.336978, -0.087106, 1.876559, 1.656252, -0.089746, -1.391716, -0.462172, 0.630620, -1.975464, -0.250392, -1.206013, -1.360507, -0.446080, -0.174210, 1.275199, 0.265648, 0.916949, 1.054683, -1.845755, 0.410997, 1.719696, 0.000758, 0.272884, -0.334283, 0.216386, 0.558240, -0.577344, 1.587096, 0.581770, 1.099519, -0.496223, -0.161820, -0.731210, -1.493183, -0.055015, 0.125838, 0.853131, -0.372956, 0.554524, 1.056030, -0.477273, 0.139485, -0.231218, 0.444733, 1.357238, 0.536535, -0.831062, 0.631846, -0.043652, 0.020603, -0.618144, -0.847457, 0.158231, 0.851819, -1.097051, -1.187936, 1.025259, 0.757621, -1.385510, 0.044439, -0.732928, -0.312060, -1.074313, -1.748183, -0.470906, -0.400687, -1.642419, 1.445314, -0.261139, 0.891566, -0.438451, 1.736373, -0.118390, -1.152047, -0.232348, 0.689129, -0.517057, -1.450817, -0.950483, -1.494099, -0.763745, 1.022427, -0.160285, -2.680851, 1.476271, -0.185754, 1.972785, 0.780818, 0.562580, -1.108786, 1.343296, 1.330739, 0.272110, -0.589423, -2.458832, -1.120480, -0.438154, 0.614543, 0.310643, 0.071726, 1.835829, 0.332506, 0.153416, 0.697628, 0.283001, 0.814715, -0.296614, -2.341450, -1.371490, -0.628172, 0.593308, 1.542751, -0.697052, 0.385552, 1.008544, 0.415322, -0.363613, 0.410209, 0.741077, 0.503613, 0.080042, 0.070777, 1.069959, -0.030066, -0.872705, 1.446193, 1.300552, 0.004272, -0.508644, 1.821110, -1.124357, 1.812700, 0.355085, 0.101891, -0.218965, -0.416687, -0.267793, -0.779310, -0.099090, 0.826203, -1.963421, 0.567766, -1.057421, -0.545433, -0.726329, -0.522214, 0.007095, -0.368573, -0.696462, -2.421234, 0.759457, 0.671386, -0.226851, 0.631842, 1.140173, -0.200253, -0.838181, -1.389659, -1.379359, -0.038064, 0.263635, -0.614666, -1.604632, -1.369720, -0.031672, -0.562532, -0.280005, 1.134341, 0.698787, -0.917519, -0.754584, 1.770137, -0.538803, -3.146376, 0.283692, 0.282129, 0.375359, -1.619927, 1.382256, 0.761313, -0.749871, 0.266723, -0.820136, -0.543952, 0.256631, 0.761141, 0.435913, -0.203392, 0.067976, 0.694728, 0.577919, -1.394714, -2.173885, -1.687474, 1.634344, 0.010458, -0.075337, -0.346201, -2.189259, -0.197817, -0.239190, 0.332313, -0.672594, -0.022500, 0.814103, -0.300997, 0.160148, 0.102091, -0.809444, -0.565075, -1.041961, 1.527980, -0.483138, -2.119360, -1.147871, 0.321149, 0.733275, 0.398588, 0.300104, -0.895803, 1.249333, -0.429273, -0.191192, -1.331521, -1.529801, -0.292818, 1.614285, -0.510469, 1.436781, -0.022407, -1.348137, -0.701011, 2.970067, 0.297123, -1.251790, -1.084230, 2.221634, -2.581867, -0.760592, -0.192657, 1.247464, 0.009426, -1.998624, 0.459647, -0.221443, 0.165015, 0.358107, 1.102837, -0.248085, -1.821544, 1.044854, -2.283337, -0.487460, -0.169743, -1.030411, 0.842757, 1.061848, -0.986291, 0.272628, 0.077178, 0.001695, 0.564364, 1.674997, 0.023513, -1.009305, 0.361827, 1.756204, 0.049040, 0.967914, -0.034218, -0.551311, -0.741045, -0.183406, -0.333160, -0.595086, -0.154153, -1.187447, 0.013791, 0.600637, 0.496078, 0.425958, 0.949856, 0.669755, -0.130918, 0.119474, -1.019704, 2.202222, -0.213286, -2.135757, -0.680348, 1.322261, -0.573732, -0.666441, -0.123670, -2.056307, 1.359813, -0.356080, 1.334991, -1.413171, 1.008093, 0.805808, -0.539764, 0.725935, -0.498486, 0.502211, -1.046462, 0.835032, 0.442036, 0.661102, 0.371917, -1.580378, 1.456512, -0.599743, -1.262098, -0.977225, -0.420424, -1.095705, -0.102750, 1.287607, -0.665565, 0.445280, 0.559933, 0.396172, 1.098799, -0.917427, 1.063693, -1.710001, -0.613000, 0.090681, -2.390242, 0.361528, 0.423764, -1.117324, -0.541464, 0.157672, 0.061289, -0.980778, -1.624991, -0.919228, -0.198608, 0.407426, 0.531641, 0.782352, 0.308421, -0.595577, 0.133041, 0.117609, 0.877921, 0.693231, 1.618490, 0.879163, -1.847283, -0.225096, -1.908849, 0.429856, 0.178704, 1.206298, 0.343299, 2.096951, 0.101621, 2.304997, 0.906440, -1.114701, -2.056771, -1.200813, -0.605093, -0.639085, -0.350566, -0.047783, 0.209551, -0.484639, 0.215818, 1.547066, -0.306745, -0.480952, -1.382057, -0.676212, 0.767382, 0.149698, -0.466264, 0.452004, -0.580517, -0.294788, 1.659517, -0.367299, 1.934540, 1.202956, -0.243328, 0.101271, -0.496497, -0.974175, 2.136533, -1.673039, 1.693513, 1.307232, -0.726413, 0.228218, -0.732515, 1.233824, 1.007473, -0.292153, 0.353034, 0.003874, 1.672240, 1.639677, -1.871337, 0.334767, 0.244204, 2.069188, -2.315363, -0.944928, 0.832698, -0.058052, -1.055999, -0.086511, -0.443908, -0.951020, -0.714940, -0.213177, 1.270883, -0.380284, 2.978762, -0.264423, -1.238350, -1.892415, -1.501531, 0.822271, -2.150519, 0.466668, -0.306070, -2.966870, -0.381999, -0.802675, -1.209628, 0.467249, -0.528363, -0.498916, 0.383031, 1.514718, -0.371822, -0.817617, 1.015537, -0.462773, -1.055026, -1.753604, 1.091346, -0.388252, 1.623948, -1.569725, -0.676217, 0.896353, -0.767891, -0.928214, 0.330030, 0.741161, -0.822675, -0.261115, 0.314503, 0.813945, 1.167133, -0.707453, 1.483614, -0.150487, 1.463426, 0.304343, 0.934806, 0.186697, -0.151715, 0.060116, 0.093067, 0.271059, 0.494908, -1.533333, -1.318730, -0.432558, -0.624556, -0.964479, 0.423987, 0.291118, -0.621755, 0.409638, 0.417397, 0.742512, 0.207273, 0.599914, -0.147224, -1.028698, -0.327382, 0.670668, -0.325864, -2.105638, 1.305043, 1.551883, 1.743432, -0.765596, -0.468690, -0.387992, 0.422004, -1.757832, -1.708843, 0.404366, -0.221322, 1.703687, -0.368459, -1.027810, -0.308806, 1.636001, -1.099645, -0.652451, 1.037503, -0.162773, -1.326930, 1.089659, -0.598857, 1.726949, 0.792473, 0.371111, -0.699452, -0.348475, -0.162744, -0.497017, -1.468268, -0.050597, -0.582526, -0.839777, -0.455032, -0.560429, -1.316616, -0.553797, -1.003100, -1.305462, -0.440936, 0.177445, 1.095493, -2.221320, -2.301556, 0.062108, 0.009978, -0.707175, 0.031874, -0.033571, -1.308939, -1.013934, 0.845773, 0.112552, 0.670863, 0.164866, -0.953538, 2.902723, 0.691702, -0.415291, -1.569011, -1.148232, 0.168929, -3.251531, -0.042419, -0.556035, 0.617929, 0.817292, 0.906200, 0.022940, 0.104165, 1.902683, 0.310831, -1.820452, 0.482757, 0.114034, -0.530148, -0.264628, 0.429445, 1.635688, 0.710741, 1.407302, 0.959449, -0.828725, -1.773984, 0.337037, -0.022428, -0.529695, 0.974009, 0.214441, 1.666152, 0.305561, 0.615461, -0.776867, -0.396863, 0.839819, -0.321920, -0.563034, -1.686524, 0.182866, 0.725401, -0.458807, -2.629012, 1.511413, 0.623160, -0.230702, 1.277348, 0.632634, 0.629001, 1.020781, -0.354234, -0.748805, 1.494922, -0.799784, -0.371394, 1.068750, 1.074057, -2.450619, 1.170448, -0.417757, -0.689442, 0.542454, 0.283593, 0.185500, -1.681825, 0.048866, -0.601730, -0.601606, -0.311057, -0.862420, -0.688702, -0.180382, -0.371591, 0.545398, -1.666141, 0.888943, -0.392656, -1.109465, -0.597225, 1.054845, 1.534163, 0.075385, 0.831754, -0.666996, -0.524153, 0.537369, 1.312377, 0.193846, 1.520482, 1.534900, -0.001184, 1.861824, 0.192030, 0.562351, -1.285117, 0.863550, 0.655581, 0.640489, -2.459357, 1.187551, -1.625427, -0.531603, 0.186476, 0.714236, 1.447022, 0.876043, -0.290773, 0.327438, -1.401845, -0.613483, -0.153764, 1.217052, 2.746966, 1.167980, -0.713606, 1.654671, 0.842773, 1.128916, -0.416414, -1.430610, -0.389778, -1.000029, 1.014183, -0.576937, -0.120991, 0.423789, -0.756631, -0.304002, -0.033811, -1.315093, 0.851053, 0.921874, 0.997267, 1.040307, 0.806320, -0.194278, -1.627184, 2.272241, 1.362953, 0.175077, 1.171183, 0.229712, 0.218339, -0.793814, -0.549368, 0.420265, 0.554025, 0.656061, 0.336746, -0.914611, -0.307540, -0.300180, -0.107534, 0.209184, 2.226789, 0.218972, -0.953432, -0.617711, -1.514611, -0.779318, 1.288303, -0.278332, -1.143272, 1.148163, 1.549711, 1.274650, 0.430797, 0.540928, 0.112877, 2.015429, 1.414303, 1.076198, 0.660798, -0.117721, -1.438394, -1.102855, 2.052195, -0.116849, 1.251255, -0.306534, 0.476674, 0.877963, -1.397614, -1.771317, 0.233993, -0.612836, 0.175866, -1.558213, -0.706391, -0.152991, 1.262000, -0.195060, -0.831798, 0.595490, -0.118716, -1.161827, -0.522823, 0.158574, 0.305202, -0.565093, 2.323268, -1.102309, -0.381197, -2.280344, 0.930895, 1.981037, 1.245296, -0.594346, 0.658396, 0.324573, -1.300188, -0.764594, 0.277831, -0.299987, -1.387957, -1.298643, 1.689250, -1.284189, 0.010215, -0.777559, -0.415292, 0.354229, -1.524945, -1.123124, 0.297385, 0.783419, -0.220291, 1.547140, 0.779848, -0.809523, 1.754017, 0.183005, 0.711752, 0.315054, 0.131111, 0.456546, 0.678837, -0.832297, 1.027259, -0.538304, 0.629587, 1.003817, 0.312869, 0.184614, -1.878231, 0.707187, -0.094790, 0.193750, 0.891292, -0.986080, -1.019000, -0.779440, 1.499748, -1.339226, -0.708884, 0.731531, -0.540700, 0.251360, -1.334844, -0.257135, -0.153748, -0.770354, -0.425155, 1.227461, 0.045296, 0.521973, -0.217285, -0.368843, -1.065089, -0.544799, -1.554330, -0.250957, -0.388296, -2.032221, -0.581011, -0.712709, -0.435894, 0.257655, 0.988901, -1.363770, 0.330631, -0.128041, 1.838787, 1.595853, -0.956498, -0.064633, 0.379057, 0.269867, -0.367822, 1.399137, 0.393367, -0.783889, 0.602803, 0.589280, 0.236859, -0.508539, 1.400119, 0.106359, -0.471102, 1.155166, -1.061007, 0.306934, 0.151076, -0.250156, -0.788735, -0.401488, 0.280954, -0.308704, -1.149645, 0.882630, -0.687931, -1.083163, -0.749782, -0.974116, -0.363012, 0.716242, -1.055983, -1.713683, -0.041937, 0.044253, 0.761031, -0.598520, -0.305064, -0.007800, 0.930536, 1.335585, -1.537282, -1.459065, -0.778544, 0.600995, -1.563390, 0.948600, 0.813824, 1.489932, 1.849583, -0.411338, 0.926548, -1.313667, 0.119911, 1.266238, -1.010870, -0.401707, -1.450872, -0.213465, 0.339255, -1.586570, -1.897717, -0.193966, 0.956260, -1.416980, 0.928067, -0.633256, -0.594525, -0.038643, -0.038918, -0.769292, 0.234031, -0.262888, -0.289003, 0.464379, -0.949744, 0.498933, 1.336079, -0.428263, 1.009727, 0.649546, -1.716143, -0.005567, 0.912852, -0.190231, -0.089660, 0.966192, 1.083718, 0.528760, -1.597066, -0.879471, 0.673324, 1.050413, 0.293257, -0.196932, -0.529742, 1.021324, -1.483219, 1.078110, -1.624242, 0.400077, 1.119824, -0.099644, -0.270496, 0.011287, -0.127041, -0.584701, 1.088290, -0.241049, -0.227215, 0.578478, -0.304468, -0.140260, -0.427711, 0.347765, 0.604143, -0.250825, 1.027923, 0.568952, -2.199576, -1.163435, -0.939665, 0.185874, -1.796223, -0.250312, -0.224372, -0.336193, -0.947016, 0.848199, 1.479376, 1.253693, -0.058175, -1.666420, -1.042481, -0.640337, 0.161516, 0.868397, 2.155574, 2.614828, -0.092077, 1.989316, 0.811289, 0.852831, -0.702118, 0.273574, -0.143411, -0.997001, -1.091719, 0.193527, 0.372442, 0.107208, -0.643985, 1.106882, -2.019802, -1.685648, -2.106049, -0.383486, 1.552847, 1.460692, 0.300521, -1.094292, -0.323477, 0.283936, -1.737739, -1.313097, 0.959102, 1.180247, -0.493558, -1.211564, 0.513725, 0.034380, -0.480539, -0.683817, 1.854518, 1.771158, 1.147035, -0.478712, -0.528136, 0.330276, -0.645434, -0.845557, 1.748666, -2.156501, 1.103902, 0.572898, 0.088537, -0.731132, -0.732680, -1.467669, -0.764881, 1.471951, -1.138447, -0.083471, 0.463466, 0.249519, 0.614139, 1.137557, 0.404978, 1.752942, -1.535458, 1.239562, -1.419405, -0.614561, -2.103364, 0.382886, -1.476316, -1.061570, -0.453045, 1.406648, -0.364104, 0.205290, 0.565590, -0.717351, 0.376465, -0.338862, 2.208793, -1.019191, -0.524118, -2.713258, -0.539275, 1.168560, 0.004871, -0.528000, -0.070925, 0.281167, 0.242310, -0.478782, -0.033544, 0.272859, -0.383578, 0.053074, -0.219432, 0.134538, 0.749099, 0.214965, 0.984827, -0.077053, -2.026097, 0.861673, 0.020702, -2.141807, 0.441566, -0.974873, 1.817576, 0.472948, 1.352965, 0.416758, -0.379396, 0.755273, -2.611532, 0.837089, 0.330657, 0.451105, 0.184757, 0.773917, 0.158940, -0.071377, -0.420284, 0.920147, -0.542458, 0.770142, 0.245097, 0.383741, -1.408619, -0.468930, 0.255804, -1.139607, 0.153167, 0.148747, -0.287015, 0.464924, -0.410319, 0.436592, 0.558055, -0.100770, 1.184754, -0.370387, 0.249615, 1.891655, 1.082222, 0.673851, -1.087310, 0.524273, -0.866514, -1.215565, 1.025637, 1.736586, -0.578976, -0.317209, -0.998804, 0.576247, 0.838931, -1.872715, -0.406934, 1.214934, -2.815383, 0.960484, -0.989856, -1.253224, -1.064002, -0.314727, -0.634642, 2.032980, 0.433594, 0.167152, 0.233060, 0.088761, -0.426107, -1.026667, 0.540443, 0.301716, 1.437619, -2.185498, 1.027729, -2.297431, -0.514056, -1.688482, 1.339633, -0.019552, 0.512803, -1.106839, 0.716364, -0.798406, 1.169102, 1.578032, 0.767276, -0.381469, -2.297286, 0.210627, 0.359618, -0.805861, 0.600629, -0.188226, -0.081408, 0.900425, 1.088347, -0.835499, -0.129629, -0.903928, -0.027371, -0.239630, -1.089051, -0.313082, 0.097719, 0.637898, 0.535474, 0.030471, -1.128241, 0.006214, -0.416076, 0.429710, 0.358826, 1.695234, 0.928487, -0.541833, 0.053114, 1.109861, 1.677476, -1.718037, 0.151014, -0.068746, 0.054103, 0.305922, 0.294338, -0.551724, 1.398524, 0.312540, -2.500440, 1.104085, 0.495325, -0.212927, 1.173268, -0.108843, 1.048015, -1.607806, 1.660228, 0.340836, -1.270303, -1.865348, -2.217036, 0.847054, -1.427358, 0.458143, -0.330194, 0.955491, -0.988231, -0.002164, -0.061773, 2.525695, -0.700693, 1.121545, 0.616855, -0.380676, 0.134950, -1.148246, 0.615436, -0.019544, 0.878479, -0.923966, -0.412371, -0.161045, -0.210234, -1.330746, -0.183609, -0.741830, 0.527310, 1.861954, 0.094060, -1.174285, -1.077550, -0.923288, 0.026420, -1.048188, 0.290261, 1.250046, 0.765301, -0.439468, -1.000468, -1.277766, 1.236733, 1.002172, -0.324927, -1.096115, -0.888198, -2.813093, -0.427218, 0.097118, -1.501858, 1.398967, 1.336252, -0.387932, 0.730351, 2.137025, 0.002162, 0.045108, -0.690897, -0.752493, -1.084980, 0.008142, 1.223110, 1.346244, -1.197635, -1.421213, 0.808973, -1.289689, 1.536845, -1.297303, 0.530056, 0.385125, -0.526596, 0.855535, -1.505588, -0.120820, -0.921401, -0.020914, -1.912856, -0.356736, -0.768164, 0.402606, -0.798361, 0.535054, 0.893569, 2.822687, -1.156008, -1.707941, 0.261164, 2.136239, -1.874312, 1.327378, -0.026164, 0.875560, 0.811467, -0.960811, 1.037861, 0.244615, -1.569308, 1.578202, -1.705731, -0.610333, -2.049166, 0.423059, 0.857732, 0.380744, -0.352497, -0.056508, -0.131958, -1.073322, -0.552628, 0.655303, -0.116707, -1.895882, 0.392583, -1.313690, 0.446411, 0.854990, -0.110171, -0.598494, -0.769743, -0.735906, 0.256968, 0.438337, -0.017192, 0.196971, 0.005429, -0.412713, -1.778308, -1.626895, -2.556644, -0.557423, 1.429147, 1.317958, -0.272412, -1.997762, -0.412014, 0.207046, 0.091528, 1.029461, 0.392073, -0.360402, 0.263296, 0.007679, 0.688636, -1.461056, -0.498714, -0.123136, 0.541819, -0.203342, 1.457311, -0.298898, 0.320689, -0.663462, 1.652018, -0.605751, 0.604200, 0.513283, -0.368368, 1.583899, 0.810617, 0.119517, 0.837004, 0.059768, -1.602970, -1.577403, 0.893168, 0.723299, -0.385209, 1.508668, -0.252255, -0.366260, 0.681794, 1.686389, -1.165793, 0.320963, -0.430081, -0.038649, -0.308567, 0.036590, 1.122722, 0.048741, -0.135754, 0.516635, -1.231476, -0.447443, -1.480494, -2.451374, 0.561484, 0.454587, 1.098504, 1.391837, -0.674490, 1.235758, -0.435294, 1.098033, -0.144558, 0.299068, 0.331817, 1.535231, -0.939641, -0.575641, -0.495885, -0.382201, -0.139062, -0.191463, -0.792406, -0.498657, 0.524347, -1.747684, 1.232142, 0.975641, 0.385176, -1.097543, 0.119217, -0.135694, 0.147636, 1.214422, 0.806165, 1.073523, -1.236115, 0.520459, -0.280590, 1.482984, -0.117114, -2.284737, 0.898133, 0.047222, -0.996471, 2.130027, -1.694979, -0.388737, 0.919940, -1.719153, -0.824066, 0.881522, 0.152820, 0.869025, -1.091750, 1.479048, 0.655650, 0.170395, -0.663266, -1.659735, -0.786320, -2.301705, 0.545086, -2.005278, 0.815195, 0.329112, 0.228623, 0.076280, -1.078630, -0.802740, 0.543220, 0.063845, 0.098803, -0.661656, 0.328535, 1.262038, -1.335194, -0.169918, -0.780838, 0.247596, 0.876238, 0.988235, -0.636862, 0.780007, 1.871358, 1.945739, 0.273834, -0.310227, -2.233140, 0.365314, 1.783842, 0.970665, -0.761365, 0.074050, -0.306699, -1.098931, 0.747549, 1.067148, 0.444665, -0.138257, -1.594882, -0.829342, 1.002088, -0.721500, 1.865535, 1.641823, -0.120323, 1.393750, -1.077341, -0.432658, 1.998170, -1.725053, -0.778972, -0.629184, 0.374935, 0.192343, 1.266788, -0.513878, 0.303059, 0.045581, -1.911639, 0.686257, 0.535665, -0.527754, 0.708004, 0.374473, -1.361073, -0.352251, -1.384254, -0.942638, -1.197450, 1.442708, -1.974799, 0.313157, 0.368601, -0.083686, -0.249148, -0.952801, 0.371928, -0.024723, -1.143071, -1.118189, 0.049285, 0.126165, -1.335896, -0.219705, -0.291263, -2.121511, -0.291382, 1.850680, 0.476760, 1.247241, -0.087863, -1.046360, 2.259291, 0.168069, -0.092744, -0.682702, -0.285360, -0.826405, 1.897377, -0.243227, -0.895938, -2.812734, -0.957191, 0.440902, -1.748986, -0.219954, -0.147822, 1.799295, 0.083995, -0.333598, 0.715928, -1.555834, 2.146025, 0.344664, 0.395177, -1.218415, 0.179764, -0.640256, -0.512391, -1.018745, -0.026495, 1.479803, 0.100398, 0.569789, 2.984483, 0.455847, 0.775229, -1.191186, 1.494525, 0.039490, 0.973096, 0.117687, 1.987833, -1.201655, -0.432377, 0.423500, -0.947241, -0.703787, -0.378355, -0.238298, 1.048637, -0.108448, -0.189550, 1.425745, -1.224025, 1.173662, -1.480149, 1.032398, -0.621018, -2.563157, -1.337667, -0.497966, 0.907651, 0.465285, -0.444220, -1.188333, -1.657029, -0.513727, 0.028864, 0.354932, 0.462056, 1.403895, 0.076440, -0.065871, 0.929640, 0.477340, -1.596119, -1.363667, 0.527460, 1.277548, 1.611359, -0.361237, 0.778678, -1.513739, -0.924164, -0.008992, 1.457408, 0.856956, -0.928712, -0.467367, -0.454358, 0.744409, 2.005465, -0.857244, -1.683828, 1.327874, -0.911610, -0.491271, 1.119046, 0.031979, 0.571739, 0.528408, 1.138054, -1.757774, 0.267759, -0.356016, -0.468771, 0.997002, -0.159926, -0.727595, 1.736470, 0.777707, -1.167369, -0.485608, -0.912983, 1.217748, -0.212528, -0.853817, 0.228232, -2.686566, 1.646836, -0.829939, 1.656828, 0.584317, -0.044585, 1.709128, 0.465919, 0.879865, 0.900781, 0.794212, 0.040205, 1.335361, 0.310787, -1.778060, -1.557740, -1.042201, -0.633923, 0.518643, -0.184673, -1.650661, 0.097356, 0.810173, 1.325395, 0.209772, 0.023602, 1.879506, 0.348412, -0.783215, 0.650815, 1.226574, -1.368783, 0.074729, -0.696541, -1.579727, -0.092673, 0.303608, -0.774157, -0.416064, 0.318807, 0.488902, 0.699349, 0.732327, -0.368440, -0.520668, 1.681365, -0.856613, -1.234067, 0.466894, 0.553546, 1.315115, 1.065340, 0.376892, -2.466966, -1.202604, 0.701714, -1.464124, -1.209327, 0.652410, -0.816180, -0.795581, 1.686028, 1.478356, -0.798279, -1.843620, 0.679247, -1.275601, -0.790941, 0.670378, -1.458036, 1.727090, 0.477588, -0.158130, -1.124077, -0.556039, -1.370806, 0.214565, 1.016246, 0.225832, -0.021422, -0.350025, -1.120753, 0.515995, 0.124096, 1.266541, -1.119876, -1.189570, -0.222849, 1.618944, -0.174155, -1.634841, -0.397830, 1.431442, -0.240132, -0.404971, 0.214981, -0.883910, -0.019745, 0.130105, 1.131841, -1.318661, 0.278383, 0.888417, -0.157396, -0.250962, -0.692790, -1.671236, -0.923920, 1.626840, -2.566907, -2.588068, 0.232606, 0.836610, 0.238575, -0.125011, 2.108894, -0.703887, 1.114850, 0.661141, -0.679078, -0.017136, -0.347517, 1.998961, 1.395852, -1.657131, 0.198214, 0.418952, -0.129545, 0.236703, -2.043975, -1.517588, 1.111415, 0.483752, 0.758357, -0.943970, 0.429716, 0.158237, 0.309731, 0.789247, -1.138120, 0.809174, -0.451380, -0.935289, -0.135627, -0.422931, 1.442118, 1.034704, -0.561760, 0.465344, 2.401720, 1.786758, 0.170343, 0.338543, -2.443328, 1.003269, -1.005822, -0.673231, 1.541393, -0.389642, -0.033440, 0.360302, -1.182644, 1.425322, 0.892098, 0.445260, -1.370936, -0.819729, 0.847646, 1.353911, 1.480346, 0.407400, 1.186540, 0.411670, -1.731507, -1.535358, -0.537789, 0.149704, 0.602993, -0.539579, 0.743468, -0.173620, -0.827505, -0.070082, -1.364710, 1.053678, 0.032004, 1.397939, -0.509007, 1.020534, -0.882641, -2.461971, -0.139934, -0.501535, 2.737041, -0.172967, -1.000719, -0.393973, 0.181018, 1.114432, -1.784666, -1.147407, 0.428242, -1.323928, -0.563387, 0.047199, 1.505847, 1.022790, 0.531492, -1.311868, -1.688057, -0.283533, 1.705258, -1.434736, -0.123833, -0.053399, -0.401082, -1.534600, 0.958491, -1.395615, 0.285766, 0.698597, 0.537141, 0.427874, 0.306182, -0.793907, 0.515062, 1.136896, 1.217577, 0.042965, -0.446491, -0.597166, 0.898667, -1.027492, 0.321593, -0.554625, 0.232704, -0.577013, -2.243983, -1.186248, -1.401031, -0.340130, 0.599001, -0.222372, -1.715254, -1.187863, 0.867853, -0.536196, -0.363334, 2.839114, 0.161027, -2.580624, 0.422206, 0.697330, 0.036202, 0.500172, -0.302983, 0.504722, 0.840128, -0.079271, -0.404204, 0.002550, -1.729103, -0.191667, 1.036394, 0.805130, -0.914922, -0.366015, -0.167713, 0.888280, -1.909882, -0.146108, -0.226232, 0.265654, -1.156625, -1.848921, -0.362236, 0.746349, -0.799636, -0.488419, 0.195167, 0.430818, -0.444170, 0.462885, 1.613835, 0.973877, -0.654531, 0.236141, 0.137921, 3.056623, 1.960802, 0.897377, 0.677855, -0.618055, 0.710570, -1.106110, 2.053565, 1.068726, 0.977257, 0.937141, -0.870400, 0.476741, -0.747218, 0.293541, -1.313276, 0.019568, 0.137206, -0.045241, -0.330578, -0.319572, -2.346273, -0.135398, 0.032833, -0.077535, -0.067603, 0.158025, -1.442539, -1.360395, 0.043443, -0.058617, -1.397903, 0.590425, 0.238533, -1.020523, 1.001650, 1.473927, -0.247317, -1.598878, -0.323764, 0.214676, -0.108777, 0.761382, -2.263814, 2.318521, 1.701192, 0.042167, 1.670401, 0.194657, -0.292212, -1.012950, 1.264882, 2.735009, 2.110200, -2.634526, -0.561011, 0.232000, -0.964361, 1.712467, 0.597691, -0.658657, -0.388905, -0.075787, 0.668499, 0.522251, -1.408303, -0.792395, -0.350595, -1.195469, 0.078201, 0.494205, -0.700705, -0.889148, 1.318351, -1.293320, -0.047690, -1.013899, 0.832235, 0.507639, 1.407132, 1.552927, -0.267982, 0.191241, -0.020907, 2.279176, -2.100779, -0.354733, -0.135324, -0.557411, -0.752948, -1.237666, -0.303388, 0.378294, 0.560515, -0.629500, 2.192942, 0.601050, 1.451738, -1.677551, -0.414675, -0.849750, 0.811348, 0.923301, -1.506332, -0.718640, 2.118806, 0.704622, 0.224871, -0.162316, 1.759398, 0.382982, -1.351945, -0.664156, 1.139768, 0.701458, -1.418082, -0.180974, -0.754276, 0.082166, -2.978314, -0.066740, 0.524941, 0.937907, 1.034182, -0.742407, -0.380772, 0.617936, -1.447057, 1.270606, -0.061085, -0.699317, -0.072457, -0.495823, 0.114930, -0.048082, 0.903273, -0.988056, 0.571635, 0.617258, -0.657946, 0.785370, -0.864442, 0.262980, 1.356200, -0.086928, 0.095905, -0.324154, 0.157737, -0.734009, -1.356705, -0.132498, 0.262931, -1.324065, -1.001462, 0.184577, -1.882876, -0.457107, -0.257052, -2.855753, -1.189063, -2.357385, 0.530384, -0.492212, 0.235899, 0.672286, 1.995016, 0.958052, -0.143548, -1.385804, 0.664588, 1.212745, -0.335203, -0.198949, -0.275492, -0.490069, -0.851467, -0.502646, -0.694880, 0.923471, -0.559223, -0.380421, -0.219620, 0.012877, 0.689580, -0.471939, 0.311016, 0.504561, -1.043829, -0.020220, 2.053994, 1.013544, 1.279639, 1.130872, -1.200121, -0.217655, 0.640824, 1.045799, 0.856022, -1.346486, 0.553904, -1.952512, 0.571606, -0.937547, 0.049423, -0.418254, 0.063134, -1.396424, -2.132203, 0.717884, 0.795285, 0.896249, -0.420277, 0.252718, -0.856409, 1.427481, -0.071945, 0.896435, 0.250425, -0.511987, -0.128263, -0.379123, -2.497279, -1.448742, 0.590759, 1.020750, 0.290560, 0.900000, -0.731517, -0.043071, -0.961972, -0.090615, 0.109040, 1.149593, 1.544301, -0.071802, -0.558318, 1.305153, 1.637421, 2.264952, 0.130616, 0.431076, -1.209006, 1.402684, -0.668752, -0.221807, -1.546151, -0.083456, -1.623347, -0.592305, 0.359295, 1.320567, -0.425641, 0.656586, -1.012107, -0.224462, 0.153299, -0.380884, -1.655461, -0.056466, -0.684801, -0.901707, 0.441577, 1.001029, 1.092942, -0.431821, 0.648963, 1.011888, 1.676885, 0.288997, 0.752124, 0.692520, -1.605333, 1.552947, 2.164627, 0.921668, 2.019550, -0.764689, 1.174913, -0.301513, 1.746088, -0.600233, -1.558868, -1.391118, -0.078036, 0.634661, 0.803007, -2.076390, 1.138397, 1.478810, 0.125583, -0.084874, -0.178028, -1.695460, 0.043467, 0.023199, 0.809294, 0.086988, -1.924860, -1.579145, -0.409714, -0.164653, 0.612002, 1.310575, -0.563238, -0.418663, -1.650137, 0.670620, 1.866522, 0.454617, -0.412714, -0.193111, -1.242559, 1.447700, 0.088401, -0.091978, -0.861586, -1.051563, -0.558869, -0.487938, -1.399271, -0.267957, 1.803463, -0.473809, 1.161841, -0.129115, 0.612919, -0.674868, 1.261652, 0.200186, 0.340698, -0.614918, -0.511643, 0.908601, 0.212593, 0.105513, -0.961226, -0.032471, 1.131521, -0.653440, 2.310886, 0.353983, 0.031698, -0.763686, 0.449569, -0.276229, -2.123323, 0.128279, 1.356084, -1.287503, -0.241321, 1.132242, -0.279019, -2.384415, -1.074451, 0.517315, -0.731740, 0.972761, -0.131102, 0.337756, 0.563182, -0.410807, -0.064794, 1.135653, 1.690900, 0.939669, -0.113825, -0.539701, -1.086950, 1.644704, 1.399096, -0.625296, -0.854620, 0.903969, 0.848095, 0.299563, -0.975841, -1.526702, -0.796246, -0.237315, -1.378751, -0.831317, 0.678987, 0.166800, 0.550731, 0.520348, 1.586275, -1.438124, 0.633987, 0.786819, -2.263108, -0.198172, 0.689654, -1.391703, -2.278003, 0.118253, -0.816900, -0.287264, 3.095044, 0.109221, -0.580659, -0.084627, 1.776584, 0.225332, -0.001302, 0.567379, 0.242299, -0.237595, 1.694363, 0.818192, -1.444533, -1.027250, 0.282616, 0.168056, -0.095744, 0.294696, -0.793423, -0.500340, 1.255089, 0.667295, -0.990263, -0.313284, 1.634145, 2.045603, -0.397491, 0.895575, -1.087639, -0.664247, 1.486223, 1.796901, -1.206272, 2.581736, 0.103573, -0.942171, 0.014846, -0.809061, 1.677650, 1.583868, 0.886975, -0.329620, -0.097984, 0.984680, -1.266871, 0.293181, -1.106914, -0.234667, 1.398514, 0.528137, -0.208673, 0.623864, 1.479432, -0.329066, -0.662143, -0.920478, -0.758427, 1.027275, -0.367316, 0.216995, 0.471766, 0.348626, -0.510669, 0.559080, 0.243859, -0.732129, 1.396524, -1.670792, -0.924896, -0.617247, 0.334616, -0.133530, 0.489357, -1.860342, -0.088433, 2.155739, -0.521377, 0.221571, 0.729437, -1.396086, -0.809406, 1.910963, -1.737371, 0.639834, 1.094103, 0.706392, 0.842431, 0.055056, -0.758441, 1.306328, -0.160315, 1.563492, 1.674290, -0.289177, -0.145390, 0.863856, 0.293987, -1.409617, -1.525968, -1.673670, 0.228570, -0.685251, -0.058514, 0.590290, -0.926575, 0.497276, -0.537877, -0.922598, 0.244252, -1.221544, 0.534330, 0.574443, 0.818631, -0.160861, -0.332849, -0.125453, -0.555368, -0.391375, -0.917852, -0.040597, -0.398755, -0.165739, 0.728188, -0.013323, -0.269718, -0.927593, 0.115815, 1.041997, 1.203235, -0.023060, -0.548096, -0.306546, -0.485716, 0.916325, -0.010977, -0.619848, -0.290108, 1.186900, 0.606395, 0.247572, 0.507181, -0.169942, -0.464613, 0.473423, -1.733135, -0.235441, -1.255373, -0.068000, -0.330165, -1.273669, -0.675735, -0.458130, 0.385640, -0.459476, 0.002494, -2.021896, 0.233749, 0.082650, -0.679421, 0.377349, 0.906724, -1.779633, -0.644556, -0.988552, 0.974903, 1.764214, -0.700996, -0.834675, -0.406012, -0.682128, 0.921497, -0.420999, 0.521205, 0.071171, -0.586911, -0.209439, -0.448225, -0.063897, 0.117296, 0.072199, -0.677744, 0.389345, 2.378861, -0.535726, -0.190938, -0.826828, 1.003668, -0.746230, -1.048332, 1.241239, 0.765582, -0.804895, 0.369499, 0.318621, 0.599119, -0.006593, 0.350569, 0.666746, -1.656896, -1.903021, 0.986369, 0.511390, -0.189952, 0.308307, -0.996068, -0.089601, 1.069018, -0.126349, 0.380309, -0.865276, -0.585415, 1.239317, 0.736387, 1.051951, 0.934849, 0.995329, 0.808413, 1.155529, 1.447031, -1.930672, 1.035716, 1.172179, -0.728335, -0.104805, -0.037834, -0.729220, 0.372757, -0.159015, -0.109594, 1.265020, 1.237076, -0.065003, -1.152987, -0.461774, -0.364159, 1.541643, 0.957010, -0.344586, -2.358160, -0.790391, -0.607555, 1.538420, -1.372096, 0.072371, 0.856346, -1.498535, -0.221621, -2.082298, -1.010648, 0.221475, -1.466796, -1.206395, -0.251086, -1.396536, -1.781803, 0.273257, -0.748576, 0.299583, -0.680965, 0.289423, 1.772624, -0.858616, 1.632509, -0.284707, 0.307929, 1.763190, -0.750607, 1.044618, -0.197139, -1.723933, 1.567291, 1.038435, 1.745584, 0.646050, -0.162987, 0.087712, 0.391903, -1.049266, -1.548435, 0.866564, -1.621533, 1.007046, -0.742802, -1.033276, -1.150603, -1.652577, -0.131726, 0.260123, 1.495665, -0.352085, 0.623138, -0.353350, 0.087244, -0.736134, 1.238344, -0.041214, 1.095795, -1.488932, -0.161193, -0.505619, 0.914654, 0.055426, -0.044992, 1.720750, -0.457668, -0.983800, -1.723600, -0.636806, -1.164193, 0.462513, -0.860992, -0.164273, 0.681077, -0.110177, -0.537707, 0.603519, -0.266059, 0.504533, 0.433605, 0.915886, 1.241662, -0.041667, -0.929604, -0.077104, 0.829837, 0.180254, -0.103175, -0.349059, -0.401627, 1.311219, -1.005952, 0.656179, -0.747920, -0.442702, 0.104443, 0.106547, -1.724398, -0.632760, -1.529638, -2.244247, 0.989368, -3.336382, -1.350338, -0.603344, 0.630625, -0.872442, -0.783113, -0.349187, 1.298522, -1.409600, -2.199073, 0.981876, 1.592892, -0.982872, -1.141727, -0.847958, -1.895387, 1.085180, 1.389628, -0.978664, -0.481784, 0.905256, 1.168037, -1.296850, 0.581523, 0.995853, 0.896719, -0.783906, 0.231347, 1.008441, 2.127912, -1.707786, 1.492285, 1.735123, -1.003856, -1.235369, 0.343662, -0.525784, 1.272984, 1.215477, 0.068538, -1.629287, 0.885230, -1.293337, 0.534836, 1.051891, 0.526262, 0.290800, -0.088116, 0.259985, 1.541642, -0.166631, 2.222610, -0.999406, -0.991624, -1.005903, -0.431585, 2.045624, 0.648656, 0.176206, -1.415487, -1.594633, -0.214653, 0.501200, -3.327731, 1.517336, 0.848982, -1.001623, -0.787282, 0.131969, 1.969494, -0.900655, 1.510213, -1.719401, -0.929965, 1.167598, -0.715518, 0.998474, 0.338846, -2.247123, -0.408650, 0.537860, 0.576059, -0.397243, 1.428192, -0.569604, 1.455349, -0.659593, -0.213955, -0.190803, -1.380952, -2.029932, -0.575588, 0.541320, -1.072692, 0.710900, 0.438037, 1.672603, -0.392935, 1.289105, -0.166177, 0.765185, 1.093274, 0.391209, -0.724611, 1.241976, 1.100951, 0.162936, 1.324800, 1.340981, -0.119059, 0.289924, 0.778601, -0.114449, -0.219532, -1.062508, 0.292518, 0.858824, 0.742692, 1.611511, 0.786399, -0.356337, 1.187334, 0.010011, -0.828134, 0.971600, -1.144033, 0.839095, 0.739268, 1.115781, -1.715256, -1.836031, 0.120095, -1.295809, 0.440537, 0.854153, 0.574895, 0.207010, 1.098320, -0.031349, 0.191757, 1.649910, -0.178384, -1.132087, 0.026814, 0.116890, 0.112190, -0.213210, -0.686657, -0.121402, 0.271115, 0.649215, -1.060759, 0.380043, 0.954294, -0.310485, 1.398980, 0.672790, 0.509533, 0.494445, -0.436814, 0.846024, -0.482637, -0.105292, -0.035994, 1.715719, -0.136960, -1.179144, -1.284762, -0.220238, 1.368714, 0.902943, -0.388232, 0.031580, 0.422140, -0.911638, -2.082842, 0.767382, -0.015357, -1.002030, 0.291683, -0.929051, -0.444473, 1.966432, 1.324635, -0.008277, 1.065126, -0.345606, -0.319761, 0.319571, -1.260517, -2.011234, -0.726480, -0.385305, 0.610081, 0.047508, 0.711275, 1.122808, 0.099380, -1.853627, 0.039971, -1.002162, -0.544880, -0.969894, 0.796295, -0.856615, 0.895616, -0.431071, -1.915083, -0.490952, 1.259932, 0.720270, -1.102404, 0.111825, -0.752200, 1.402974, -0.101218, -1.230960, 1.612375, -0.408381, 0.884101, 0.199093, 1.464220, 0.330789}, + { -1.528585, 0.983889, -0.499150, -0.223014, -1.232690, 0.291085, -0.223805, 0.411602, -0.365022, -0.031481, -1.021595, 0.660676, -0.626015, 0.130819, -0.630870, -0.740446, -1.313422, 0.228579, 1.312049, 0.016274, -0.505344, 0.281289, -0.891910, -0.294884, 0.740594, 0.068537, 1.222148, 0.250725, -0.040261, -0.639984, 0.325639, 1.329382, -0.749008, 0.054584, 0.032407, 0.758772, -0.574755, 0.231966, -1.063649, 0.567060, 0.759600, -0.749698, -0.585125, -0.706897, 0.819961, 0.727940, 0.651822, 1.054664, -0.367186, 0.902286, -0.015268, -2.132958, 0.203087, -0.539434, 0.549908, 0.240788, -0.878165, -0.763983, -0.101119, 0.716684, 0.062846, -1.060311, 1.196181, 0.077812, 0.404531, -0.956294, -0.070990, 1.106855, 0.618609, 0.268663, 0.081558, -0.787187, -0.135513, -1.286443, -0.925321, -0.161293, -1.233489, -1.080396, 0.465980, 0.880576, 1.187566, -0.164665, 0.197257, -1.487821, 1.134653, -1.302039, -0.001199, 0.815884, -1.011536, 0.699102, -0.404277, -0.865818, 0.380316, -0.002470, 0.737019, -0.114187, 1.361345, -0.120122, 0.566841, -0.732340, 0.116799, 0.812616, -0.222168, -0.302839, -0.390154, -0.062397, 1.022505, -1.273622, 0.958283, 0.527289, 0.787099, 1.789362, -0.830767, -0.061116, -0.715143, 0.989719, 1.312024, -0.103241, 0.922628, 0.546323, 0.422251, -0.533996, 0.059773, 0.304350, 0.134255, 0.745131, -0.640739, 0.867087, -0.560230, -0.720101, 0.562605, -2.018087, 0.839341, -0.097239, 1.174193, -0.842501, 0.740018, -0.719852, -2.051198, -0.436773, -0.107546, -0.364597, -1.384249, 0.117560, 0.808674, 1.892442, 1.394951, 1.382266, 0.320015, 1.061469, -1.580091, 0.533058, 1.295875, 1.250858, 0.867692, -0.669411, -1.728438, 1.721880, -0.424780, -0.242200, -1.429870, 1.950367, -0.019456, 0.174931, 0.512401, -1.007260, -0.007698, 1.030953, -0.785095, 0.587675, -0.139587, 0.303261, -0.185171, 1.078003, 0.141341, -0.325681, 0.409251, 0.884302, 0.378858, 0.343696, -0.007463, -0.952749, 0.982318, -0.458325, 0.431066, -0.488515, 1.285079, 0.649887, -0.795097, 0.047880, -1.246803, 0.097538, 2.380083, -1.450382, -0.934113, 0.742989, -0.619603, -1.961643, -0.155840, -1.044392, 1.315420, -1.255346, 0.562373, 0.474025, 0.364615, 0.671960, 0.858578, 0.127014, -0.817039, 0.840599, -0.855353, -1.283971, 0.606666, -1.254695, -1.001443, -0.076443, -1.637390, 0.318139, -0.875271, 0.721107, -0.209753, 1.465423, -0.397503, -1.173907, -0.434882, -0.723125, 0.298049, 0.415903, -0.214813, -0.779666, 0.094826, -0.650036, 0.542699, 0.349991, 0.125594, -2.033349, -0.763235, -1.039107, 0.900361, 0.009362, -0.567164, 0.885626, 0.064476, 1.579943, 0.075857, -0.519321, -0.373023, 1.156549, -0.737498, 0.644146, 0.772759, -2.125074, 1.231560, -2.683326, 1.039456, 0.056548, 0.517283, 0.136986, -0.678799, 1.098678, 0.882830, -2.102855, 0.851283, 0.504098, 1.207004, 0.931283, -1.264617, 0.011476, 0.591821, 1.184969, -0.961212, 0.139644, -0.660831, 0.305168, -1.208051, 0.233318, 0.700095, 1.283509, 0.324108, 0.495576, -1.061230, -0.206965, 0.761801, 0.033181, 0.440214, 0.040518, 0.616313, 0.295511, 0.407930, 0.362573, 0.937340, -0.568489, -1.071635, -1.001128, -0.457268, 0.543761, 0.693154, -0.450404, 0.887739, 0.287612, 0.443296, -0.193653, 0.141570, 0.527235, -0.069596, -1.478696, -1.300620, -0.504491, 1.885707, -1.164754, 1.395041, -0.853243, 0.015204, 0.661630, -1.987414, -1.101709, 1.851813, -1.306159, -0.153740, 0.587134, -0.089961, 1.104270, -2.328705, -0.660836, 1.146453, 0.995669, -1.967991, 0.980982, -1.073565, 0.957437, -3.022399, 1.317716, -0.500597, -1.266898, 1.063934, 1.659208, -0.272537, 1.691416, -0.879670, -0.323290, -1.739418, 0.694532, -0.048980, 0.897082, 2.157368, -2.802532, 1.128118, -2.115752, -1.108553, -0.005655, 1.175860, 0.059270, -0.419094, 0.726087, 0.517184, -0.160207, -0.966914, 0.618487, 0.179462, 0.359682, 0.867037, 0.032544, 0.500492, 0.307941, 1.771790, 0.378537, 0.427005, 0.192290, -1.042917, -1.159638, 0.787267, 1.327091, -0.884519, 1.230271, 0.840701, 1.639742, -0.886961, -0.891833, -1.506473, 0.925444, 1.819988, 0.404576, 2.119494, 0.214463, -1.297772, 0.750829, -0.840742, 1.428026, 1.289873, -1.149179, 1.108338, -0.172330, 1.996234, 0.932108, 0.845619, 0.813612, -0.973436, -0.029861, -0.939469, -0.344599, -1.151640, -1.229235, -0.607299, 0.482107, 0.479467, -0.676827, -1.689713, -0.704264, -0.245207, 1.423006, 1.950386, 1.388501, -1.342137, -0.874730, -0.463435, -0.861913, -0.342778, 0.581104, 1.525678, 0.244771, -0.615707, -0.444179, -1.594297, -0.471480, -1.005503, -1.057680, -2.527761, -0.589943, 1.294116, 1.309565, -1.234291, 0.198335, -1.659408, 1.719685, -1.308810, -1.518271, -0.049223, -0.554038, 0.082067, -0.361201, 0.199725, -0.925516, -0.359935, 1.522369, -0.551894, -0.314783, -0.326453, 2.377429, 0.242672, -0.144021, -0.234333, 1.753826, 2.452723, 1.208959, 0.929866, -0.148051, 0.258894, 0.348292, -0.486527, 1.030207, 0.523697, 0.175798, 1.421702, -0.035517, -0.583522, -1.052002, 1.663021, 2.464565, -0.457331, 1.393666, 0.555865, 0.834828, 0.752192, -0.942726, -0.942907, -1.369926, 1.556373, -1.242350, -0.596377, 0.792980, 0.422691, -0.439911, -0.394794, 0.626970, 0.169234, -0.676422, 0.695020, 0.680034, -2.073834, 0.318893, -0.749351, 0.281616, -0.730610, 1.536807, 1.269386, 0.096238, 0.432480, -0.039462, 1.531014, -0.176188, 0.234875, -0.190344, -0.178197, -0.494622, -0.260476, -0.276411, -0.978293, -2.050851, -1.613448, -0.060035, -0.341560, 0.573924, -0.198949, -0.751478, 0.355465, -1.102729, -1.231928, 0.249779, 1.044406, -0.746747, 0.562755, 0.150071, -0.815148, 0.066598, -0.138239, 1.270939, 1.225537, -0.592050, 0.260800, 0.775360, -0.026105, 1.237430, -0.986776, -0.793640, -0.714291, -2.248067, 0.842684, 0.115358, 0.073554, -0.789709, -0.191683, -0.098856, 1.457245, -0.237845, -1.525437, -0.138134, 0.829068, -0.021182, 0.043200, 0.501391, 0.656386, -0.876930, 0.365267, 0.112038, -0.824848, 0.275731, 0.528305, 0.385697, 2.044291, -0.439301, -0.720467, 0.991971, 2.273851, -0.112329, 1.085626, -1.321414, 1.550636, -0.735019, -0.159269, -0.693036, 0.531851, 1.242950, 0.590082, 0.032854, -0.268367, 0.431621, -0.364190, 0.911184, -0.190646, 0.407714, 1.347691, -0.304216, 1.128748, 1.501841, -0.485426, -1.622365, 0.000178, -0.280583, -0.055016, 0.432168, -0.821051, -0.447986, -0.333291, 0.814798, -1.691841, 1.703749, -0.303899, -0.694030, -0.866316, 0.110702, -1.298241, 1.173338, 0.216280, -1.245771, -0.487252, -0.846584, 1.178957, -0.849830, 0.898420, 1.768309, -0.971616, 0.899211, -1.711004, 0.297717, -0.936116, -1.231106, -1.367456, 1.959779, 0.502142, -1.136966, 0.829877, 0.241248, 0.654624, 0.458409, 0.652497, 0.193033, -0.346301, 0.187575, 1.837667, -1.250660, -1.101345, -0.501435, 0.220304, 0.215576, -1.331960, -0.119991, 1.842534, 1.017017, -0.006387, 1.070005, -0.607425, -0.116607, 0.338258, -0.121515, 0.497692, -0.796940, 0.419743, -0.267430, -0.211368, -1.204600, -0.500376, -0.615469, 0.160066, 1.581782, 0.665352, 1.656134, 1.238711, 0.605496, -1.002582, -0.235327, -0.061581, -0.296004, -0.176150, -0.339779, -1.384267, -0.068234, 2.465667, -0.950088, 1.951808, -0.838449, 0.876152, 0.299702, 1.169416, 0.673109, -0.504274, -0.356379, 0.914782, 0.182470, 0.959500, 0.789742, -0.360650, 0.196019, -0.094375, -0.014411, 0.973703, -1.121771, -0.938480, -1.518121, -2.009377, 0.733018, -1.140728, 0.161206, 1.855261, -1.117708, 0.838412, -1.198984, 1.069933, 0.677694, 0.808772, 0.914989, -0.784941, -1.604322, 1.134299, 0.979655, 0.777888, 0.236527, -0.431617, -1.454105, -0.343640, 3.459868, 1.130261, -0.633418, 0.610709, 0.607167, -0.478187, 0.921286, -0.029543, 0.337618, -0.662517, 0.721575, -1.019280, -0.710560, 0.989958, 0.508684, 0.387299, 0.266558, -1.125065, 0.993325, -0.744718, 0.219002, -0.601113, 0.981536, 0.471479, 1.490893, 0.505233, 1.372832, 1.168632, 1.209643, -0.087622, 1.005157, 0.271731, 0.066910, -1.398496, 0.666050, 1.005273, 0.137496, -1.147869, -0.427714, -0.303376, 0.561293, -1.749500, -1.710384, -0.727001, 0.290281, 0.807080, 2.769151, 0.349665, -0.497446, 0.645310, -1.513402, -0.689239, 0.020332, 0.117334, 0.765119, 0.654459, -0.762251, 0.446873, -2.204895, -0.202944, 1.008021, 0.305674, -0.096879, 2.308195, 0.462794, 1.080449, -0.345487, -1.291574, -1.122318, -1.116160, -1.027598, 0.318204, 0.502638, -1.964715, -1.227736, 0.836005, -0.692966, 0.097658, 1.309985, 1.277795, -2.291872, 2.121365, -0.059751, -0.274984, -1.495993, 0.507968, -0.936313, -2.095466, -1.224858, -0.355179, -0.423306, 1.182399, 0.320705, 0.104190, -0.886878, 0.345382, -0.539444, 0.012004, -0.934699, -2.010979, -0.511383, 0.262882, 0.531387, -0.117243, -0.605265, 0.077045, 0.373672, -1.378241, 0.151214, 0.620699, -0.265486, -0.472592, 0.541416, 0.309113, 0.705576, -0.914884, -1.239032, 0.122652, -0.614573, 0.798384, 0.328963, -0.640977, 0.109637, -1.178576, 0.381937, 0.311826, -0.202689, 0.280572, 0.671444, 0.211392, -1.290677, -0.572104, 0.329893, -0.887881, -0.340961, -0.051399, 1.494626, 1.320413, -0.884367, -0.393779, -2.054686, 1.501561, 1.262307, 1.588740, -0.342659, -0.380298, -1.933367, 0.937726, -0.202528, -0.454612, 1.110017, 3.187464, 0.898520, -0.313109, 1.746430, 0.697926, 0.346989, -0.273153, -0.587579, 1.411395, -0.660513, 0.781252, 1.503714, 1.087576, 0.980184, -0.155311, 0.309774, 0.532134, -0.208186, 0.351331, -2.078174, 0.423882, -1.485632, -0.149048, 1.942785, 1.592063, 0.940881, -0.540367, -1.225420, -1.449740, -0.075467, -0.482278, 0.232206, 1.472012, -1.018986, 0.299885, -0.098323, -0.201997, -1.640178, -0.525716, -0.425520, -0.121648, 1.609431, -1.167719, 0.056033, 0.829050, 0.556802, -0.358564, 1.644239, -2.916266, -0.831095, -0.875454, 0.703638, 0.217085, -0.886764, -0.034779, 0.367953, -1.330590, -0.160373, 1.666811, -0.879484, 0.907697, 0.204346, -0.493201, -0.892093, -1.970825, -0.560274, -1.584238, -0.363948, -0.764422, 0.675614, 2.314371, -0.795333, -0.512759, 0.109625, 2.694571, -0.320923, 0.231863, 0.269594, 0.730260, 1.031615, 0.614924, 0.118755, -1.130206, -1.074651, 0.716812, 0.327547, -1.305955, 0.268753, -0.446093, -0.805593, 0.330870, 0.908739, 0.119853, -1.909271, 1.019081, 0.650978, 1.178185, 0.479770, 1.506427, 0.548287, -0.137846, -0.173857, 0.569479, -0.771818, -1.510230, 0.094363, 1.235422, -1.171559, -0.669253, -0.888831, 1.342733, 0.306569, -0.110335, 0.787696, -1.311203, -1.631160, -0.698563, 0.763609, 0.165298, -1.540938, -0.579769, 1.362025, 0.489529, -0.168974, 1.363089, 1.360016, 0.158731, 0.569206, -0.433700, -1.434596, -0.781457, 0.938912, 2.450022, -0.181041, 0.254620, -0.617511, 0.363047, 0.687670, 1.141103, -0.631924, 0.206880, -0.206839, 0.619732, 0.466541, 0.648561, -1.170062, 0.890412, -1.287486, -0.573536, -0.138101, -0.049675, 0.432492, -0.918957, 2.133202, 0.385154, -0.503877, 0.927895, 1.455049, -0.019818, 0.950322, 0.842331, -0.513541, 1.565555, 0.385097, -0.041971, 0.527205, -1.751739, -1.137310, 2.281250, 0.090714, 0.029891, 0.648132, -1.375468, 1.399584, 0.664215, -1.034558, 1.376278, -0.923505, -0.919619, -0.877759, -0.063351, 0.449556, -2.321961, -0.193347, 1.519354, 0.438511, -0.781446, -0.458336, 1.087979, -0.584879, -0.464355, 1.883744, 0.358777, -1.719022, 0.062937, -0.882190, -0.545765, -0.298924, 0.006025, -0.241737, 0.150216, -0.445682, 0.125215, -0.576941, -1.455831, -1.707092, -0.237061, -1.077043, 1.737693, -1.007069, -0.039801, 0.444028, 0.302103, 0.984256, 0.871039, 1.223249, 0.773058, 0.612394, 2.176614, -1.363910, -0.826080, 0.469314, -0.702826, -0.687872, 0.178542, 1.279566, 0.946444, -0.142691, -1.782523, 1.158043, -1.970165, 0.292134, 0.920224, 1.291350, 0.919516, -1.355353, -0.406332, 0.877542, -0.893353, -0.078881, 0.939628, 1.465891, -1.120725, -0.112671, 1.945407, -0.593268, -1.324380, -1.776101, -1.000620, 2.129123, 1.176679, -0.528812, 1.738531, 1.893578, 0.466419, 0.871072, -1.100719, 1.515462, 0.231334, -0.893359, -0.071043, -0.170108, 0.900216, -3.052384, -0.165906, -0.155277, -1.021669, 0.271065, -0.388483, 1.510968, 0.835928, 0.052915, 0.809890, 0.234164, 0.579433, 1.367598, 2.089753, -0.951635, 0.421135, 0.886154, 1.848532, -0.686448, 0.243487, 0.362641, 0.115117, -0.082868, -0.645830, -1.022738, 0.352840, -0.229888, 1.479145, -0.439949, 1.118345, -1.503363, 0.520115, -0.690661, -0.755765, 1.547948, -0.791662, -2.124136, -0.493485, -0.820498, 2.755218, 1.161979, 1.090863, -0.577151, -0.322706, 0.088857, 1.121680, -0.426547, -0.783499, -1.832231, 0.223444, -0.697123, -1.023059, 0.332343, -0.718873, 0.065334, -0.382100, 0.303974, -0.285433, -0.086163, 0.905434, 0.322978, 0.012016, 0.181630, -0.424428, -0.167205, -0.023544, -0.763481, 0.675475, -1.534944, -0.794864, -1.048670, -0.810172, -0.268000, -0.582463, -0.233772, 0.207003, 1.202341, 0.502748, 0.620330, 0.834388, 0.705962, 0.828964, 2.651482, -0.494951, -0.402799, 0.358528, -1.307880, 0.270489, -0.170392, 0.970555, -0.635788, -0.481298, -0.247181, 0.564859, -1.316783, -1.576614, -0.734073, -0.019462, -0.734920, -0.482825, -1.978248, -0.658912, 0.414963, -0.417249, -0.542582, 0.866367, 0.185913, 0.057066, 0.306508, -0.559185, 0.605736, -1.289379, -0.080138, 0.653721, -1.654405, -0.057272, 0.524817, -0.864102, -0.093709, -0.419917, -0.703324, 1.023497, -0.864964, -1.767865, 0.834885, 1.222555, 2.399563, 2.671062, 0.109732, 0.001551, -1.839303, -0.487816, 1.525771, 0.847283, 0.028712, 0.438563, 0.630743, -0.033405, -0.349438, 2.250763, -0.117097, 1.115419, 0.389861, -0.898892, -0.282474, 3.583772, -1.294503, -1.729502, -1.014405, -0.826274, 0.587948, 0.110012, -1.092119, -1.320275, -0.024286, -0.592236, -0.107409, 1.111784, 0.215014, 1.060520, 2.374489, 0.236474, 0.330240, -0.568462, -1.423505, 0.918966, -1.150645, -2.148659, 0.582162, -0.066176, -2.216145, -1.765604, 1.199772, -0.181152, -0.267626, -1.162830, -0.226987, 0.968930, 0.023551, -0.341542, -0.345462, 1.382537, -0.497282, -0.388321, -0.402356, -0.644338, 0.455277, -2.182575, 0.089198, -1.772338, -0.000660, -1.046146, 1.257459, 0.895967, 0.501054, 0.526309, -0.057557, 0.763205, 0.392618, 0.276458, -2.100098, 0.638827, 0.060878, 0.967597, -1.231212, -1.270514, -0.517227, 1.319060, -2.882717, 1.049116, 0.302717, -0.463908, -0.523161, -2.544879, 0.154400, -1.412090, 2.298742, -0.327199, 0.700055, -1.943167, -0.700067, 0.678387, -1.053528, 1.643977, -0.605584, -0.470350, 0.735526, 1.191442, -0.863388, -0.476405, -0.789407, -0.226346, -1.081931, 0.399712, -0.137068, 0.997717, -0.715762, 0.235580, -1.987720, -0.382658, -0.988794, 0.559362, -0.534062, -0.156940, 0.106919, 0.419229, 0.040150, -0.003779, 0.688930, 1.153102, 0.594382, -0.837748, -1.765744, 0.367585, 0.588306, 0.408373, 1.984601, 0.950195, 0.426315, -1.369355, 0.493131, 0.324156, 1.470709, -1.070800, 2.072244, -0.312206, -1.017098, -0.167271, -0.696898, 0.662766, -0.192963, 1.185682, 1.477660, -1.793925, -0.269673, 0.718329, 1.677384, 1.758613, -1.151400, 0.184560, -0.721552, 1.477232, -1.881326, 1.417519, -0.442435, 1.212926, -1.072967, -0.571987, -0.085972, 0.792840, -0.783953, 0.256891, 1.230065, 0.187942, -0.287036, 0.557629, -0.449196, 0.109029, -1.788605, 0.356428, -0.770316, -0.995052, 0.470117, 2.135684, 0.605431, -1.527643, -0.159648, 0.294380, 0.478385, -0.561767, -1.320838, -0.122328, -1.771967, -2.158499, -0.208400, -2.204410, 1.003141, 0.191853, 1.151517, 1.097687, -2.351511, 0.511501, 0.085975, -0.269222, 0.449182, 1.910237, -0.785736, 0.159857, 0.902128, -1.256713, 0.464155, -0.291090, 0.851108, -0.022040, -1.985589, 1.105326, -0.113510, -0.694997, -0.127669, 1.219421, 0.137831, 1.343930, 0.365153, 0.588763, 1.399833, 2.102851, 0.837034, -0.884078, -2.390311, 0.138392, -0.720619, 1.718100, 0.714324, -0.781631, -0.430011, -0.535043, -0.430427, -0.736778, 0.376045, -1.460084, -1.079509, 0.078949, 0.716019, -1.282196, 0.756377, 2.080098, -0.376698, -0.176397, 0.196263, 1.493241, -0.090407, -0.387091, 0.001574, 1.141896, 0.743660, -0.249028, -0.856038, 0.189112, -1.409181, 0.121464, -0.603531, -1.099870, -1.110393, -1.729090, -0.843713, -1.018568, -1.115646, 1.041194, -0.174135, -0.020532, -0.535761, 1.399954, -0.642887, -0.218689, -0.143871, -1.691505, -0.813948, -1.145295, 0.284046, -0.892825, 0.500233, 1.618757, -0.079692, 0.337978, 1.116847, 0.458130, -0.859034, -1.686366, 0.326221, 1.888409, 0.801365, 0.258755, 0.205952, -1.619214, 0.567957, -1.566846, 0.346348, -1.012133, -0.459450, 0.780378, 0.946504, 0.467132, 1.059346, 0.493902, 1.341746, -1.847809, -0.202963, -0.197429, -0.687122, -0.048360, -0.113354, -1.731887, 0.512575, 1.837881, 0.175318, 2.186043, 0.597855, -0.041992, -0.898142, -1.138501, -0.024333, 1.746508, 0.628893, -0.280222, -0.245546, 0.227325, -0.321241, -0.813965, 0.185174, 1.981893, -1.022425, 0.861642, 0.921106, 1.319623, -0.541254, 1.014444, 0.485936, 1.922689, 0.626055, -0.599521, 1.135721, 1.506574, 0.658685, 1.699535, -0.416711, -0.654532, -0.905258, 0.628929, -1.985545, 0.227078, 0.802870, -2.339376, -1.499863, -0.364073, 0.526038, -0.108919, -0.971868, 1.410155, -0.078556, 0.712502, 2.422457, -1.233539, -0.820402, 0.521904, -0.733994, -0.537726, 1.184515, -1.286666, -0.796158, -0.042814, -0.966719, -1.614149, 0.063807, 0.464472, -0.619940, 1.571774, -0.327949, 0.097984, 1.231742, 0.091925, -1.760101, 1.537127, 0.318143, -1.745130, -0.303384, 0.749363, -0.589891, 0.529616, -1.275960, -1.209775, -1.210734, 0.903262, 1.748601, -0.765602, -0.557330, 1.277058, -1.225612, -1.518502, 0.814991, -0.732192, -0.985354, -0.782027, 0.452752, -2.199778, 0.032920, 0.681395, -1.069107, -1.686328, 0.713696, -0.644675, -2.093954, 0.156607, 0.779505, 0.622691, -0.714057, -0.397631, -0.508838, 0.038750, 1.109007, -1.173785, 0.798940, -0.020201, 1.716624, 0.017457, -0.010392, 0.498961, 0.776702, -0.670577, 0.382525, 1.285087, 0.140380, -1.598527, 0.090192, -1.013058, -0.366242, 0.468154, -0.563420, -0.393789, -0.709936, 0.339879, -1.115827, -1.774862, -0.696465, -1.889685, 0.999033, -0.011001, 1.485419, 0.499569, -2.086567, 1.009328, -0.240072, 0.266270, -0.670775, -0.983899, 0.299479, 1.966244, -0.506120, -0.385772, -0.902780, 0.344977, 0.223756, 1.747575, 1.169546, -1.183115, -1.244027, 0.019229, -0.054524, -1.240984, -0.114923, 1.985210, -1.474623, 0.188086, 0.331104, -0.383971, -2.269053, -1.218064, 1.578689, 1.607582, 1.295578, -1.273219, 0.799678, -0.346555, -0.517814, 0.795277, -0.310816, 0.682858, -0.952981, 0.773351, 0.436191, 0.218122, -0.263510, 0.182157, -1.309551, -0.339335, 1.325562, 0.389754, -0.608204, 0.950066, 0.578611, 1.284821, -0.287538, -0.317484, -0.561101, 0.933934, 0.790470, 0.014033, 0.590689, 0.881719, -1.750510, -0.249412, -0.685764, -0.066026, -0.636797, 1.053769, 0.299484, -0.231829, 0.561249, 0.869148, 0.202172, 0.080943, -0.528707, -0.478519, 0.681365, -1.686774, 0.313141, 1.404471, 0.261180, -2.688293, 0.571477, -1.464012, 1.330193, 1.285232, 0.554151, 1.177779, -0.146309, -0.032118, 0.315050, 0.092767, -0.915070, -0.711547, -0.167576, -0.795963, 0.513571, -0.317327, 0.884622, 0.439754, 0.769976, 0.148264, 1.004959, 1.108967, 0.230922, -0.591919, 0.186186, -0.091849, 0.317977, 0.422849, -0.594294, -0.049926, 0.349251, -0.622254, 0.054652, 0.258810, 1.025522, 0.847407, 2.027513, -1.131926, 0.255720, 0.056681, 0.294379, 1.477588, 1.795593, 2.841332, 0.638452, -0.089822, -1.282307, 0.460536, -1.292814, -1.674175, 0.736287, 1.194580, 1.362381, -0.248177, 2.763866, -0.468855, 1.684889, 0.634313, 1.224679, 1.202680, 0.366497, -0.502832, 0.114326, 0.775692, 0.707094, -0.624075, -0.998042, -1.465682, -1.608948, 1.983278, 0.961374, 0.850991, 1.096858, -0.058059, -0.824958, -0.272354, 0.377622, 0.727791, 0.756043, -2.167806, -0.079379, 0.061938, -0.525084, -0.025080, -0.971132, 0.045147, -0.024153, -0.747360, 0.031440, -1.138494, 0.872990, 0.038219, 0.583900, 0.232242, 1.101989, -1.021581, -0.979162, 1.278852, -0.369428, -0.640907, 0.095700, 0.589268, 1.462978, -1.173309, -1.204658, 0.040882, 0.721503, -0.738608, 0.919856, -1.008912, 2.737592, -0.040306, 0.272736, 0.377199, 0.882150, -1.215659, 0.796941, 0.949407, -2.041494, 0.851782, 0.861940, 0.247230, -0.026049, -1.209143, 0.058386, -0.444750, 1.224392, 0.350707, 0.109906, 0.542535, -0.111448, -0.020867, -0.074601, 0.307063, -0.526339, -0.307027, 2.723751, 0.565074, -0.822591, 1.632062, -1.879461, 0.485291, 0.181420, -0.071550, 0.419082, 0.856462, -0.994900, 0.400743, 1.426447, -0.274386, -0.940943, 0.281320, -0.557610, 1.678154, 0.647064, -1.602059, 0.609542, -1.623300, -0.762362, -1.225789, 0.245500, -0.183086, -1.364244, -1.653740, -0.264367, -1.788992, -0.262011, -1.836511, -0.782024, 1.198095, -0.248391, 1.396536, 0.634534, 0.972823, 0.389440, -0.271680, -0.654720, -1.507218, -0.206504, -0.097122, 0.948816, -0.997981, -0.027403, 0.266805, 0.298522, 1.468453, -0.152491, 0.304746, 0.314058, -1.214896, 0.385605, -0.167446, 0.782445, 0.484027, -0.883636, 1.501691, 1.013091, -0.411673, -1.068320, -0.057948, -0.157156, -0.782577, -0.773749, -1.133051, -1.512232, 1.307226, -2.168643, 2.572652, 0.543628, 0.327899, 1.151732, 0.468286, -2.877307, 1.404967, 0.929544, 0.765332, 0.718172, -0.377178, 0.763952, -0.803518, 1.800803, -0.278450, 0.856337, -0.840829, -1.082801, -0.845616, 0.687720, 0.500876, -0.597365, -0.966749, 0.096001, 2.079226, -0.061015, -1.317970, -1.002767, 0.425700, -0.398979, 1.884185, 1.884861, 1.360654, 0.659405, -0.603464, 0.883154, 1.818174, -0.413203, -0.650124, -1.298272, 2.009307, -0.373009, 1.249636, 2.480514, -0.928376, 1.026510, -1.066687, 2.541660, 1.391439, -1.240591, 0.586530, 1.252458, 0.768471, -1.509367, -3.308151, 0.732625, -0.904178, 0.416392, 1.157591, 0.697177, 0.429230, -0.285792, 0.784580, 1.196368, -1.233490, 0.484277, 0.926323, -0.957258, 0.369791, -0.011751, 0.451592, -0.577674, -1.352895, 0.333098, 1.172874, 0.894371, -1.972156, -1.100095, 0.834811, -3.378958, -1.120840, 0.909981, -0.307710, 1.381929, -1.249995, -1.645711, 0.124190, 1.066230, -0.064364, -2.254793, -0.476843, -0.255272, -0.415886, -0.356953, -1.497092, -0.358461, -1.297569, 0.419586, -0.076843, -0.854961, 0.489938, 1.317750, 1.213654, -0.140617, 0.702249, -0.431305, -1.432142, -1.363430, 0.070399, -0.533741, 1.101233, 0.628667, -0.262804, -0.346103, 1.245095, -0.697738, -1.283746, -0.430597, -0.342252, -0.608680, -0.368261, -0.987953, -0.968276, 1.210413, -1.619188, 0.220922, 0.220923, 0.917857, 0.417097, 2.710490, 0.204958, 1.208441, 0.297487, -0.632739, -0.077616, -1.625751, 0.811498, 0.844976, -0.930670, 0.320973, -1.466641, -0.802738, -1.229581, -0.527568, -0.388481, -0.600942, -0.812925, 0.089037, 1.042331, 0.697095, 1.041976, 0.841200, -0.372665, 0.406444, 0.313035, 0.109032, -0.627312, 0.567023, 0.499543, -1.056905, -0.109263, -1.505852, -0.500190, -0.548058, -0.576000, 0.587096, -2.107601, 2.107384, 0.537675, 0.233174, -0.962088, 1.929356, -1.144698, -0.193284, 0.195559, -1.243746, -1.483192, -0.413679, 0.297511, 0.949318, 0.477355, -1.176845, 0.824522, -1.294444, -0.640632, -0.113315, -0.368979, -1.632090, -0.040953, -0.079079, 0.336914, 0.807373, -0.022013, -0.709087, -1.204680, -0.294800, -0.422151, 1.158776, 1.205850, -0.634409, -0.028611, 1.966007, -0.686278, 0.159568, -0.871935, 0.804221, 0.539248, 0.117476, 2.153937, -1.068275, -0.092336, 1.098936, -0.018917, 0.663683, -2.043938, -0.051607, 0.894947, 1.288743, -1.553334, -0.840564, -0.030582, -0.927625, 0.325786, -0.825303, -0.947226, -0.934414, -0.035233, -0.660939, 1.198237, -0.754666, 0.231794, 0.305097, 1.059796, -1.033747, -2.306097, 1.326420, -0.519798, 0.222648, 0.565705, 0.230763, 0.488902, -0.738702, -0.364718, 0.506710, 0.600007, -0.410848, 0.664878, -1.178469, -0.383114, -0.946326, 0.300169, 2.220961, 0.533516, -0.318731, 0.992646, -0.441359, -0.131924, -0.679874, -1.463736, 1.483412, 1.147133, 0.065517, -0.428697, 0.821423, 1.273124, -2.420859, 0.831836, 0.782240, 2.203317, -1.847485, -0.556955, 0.004232, 0.494900, -0.562387, -0.191073, -1.956669, 0.841326, -0.750666, 0.388986, -0.548745, -0.017945, -1.478740, -1.182418, -1.291775, 0.404558, 0.567286, 2.445512, 0.386242, 0.110538, 0.204758, 2.170424, -2.423923, 1.324845, 0.249030, -1.362698, -0.286939, -0.598709, -0.355531, 0.611480, 1.446425, -0.296740, 1.626581, -1.383874, 0.699978, 1.171134, -1.396132, 0.018977, 0.087834, 0.254935, -0.741557, -0.760367, 0.264579, -1.459191, -0.751511, -0.203004, -1.046629, -0.677089, 0.201595, -0.544643, -1.909872, -0.590559, -0.196011, -0.492940, 0.344565, -0.316514, -1.044959, -1.595267, 2.276252, -0.945386, 1.910003, 0.301038, 0.413702, -0.219719, -0.312500, -0.361788, -1.390893, -1.306150, -0.288764, -1.294673, -2.381541, -0.580185, 0.273662, 2.304983, 0.271498, -2.192776, 1.540305, 0.327031, -1.357126, -0.602209, 0.596791, 0.038069, 0.204363, -0.461752, 0.824995, 0.491174, -0.379742, 1.262923, 0.958812, 0.526484, 1.814628, 0.664224, 0.696281, -1.084509, 0.681001, -0.550351, 0.626911, 0.681214, 0.525382, -0.008102, -1.360859, 0.697379, -0.752416, -1.226350, 0.333848, 0.159440, 1.526454, 0.910317, 0.714478, -0.318017, -0.523722, 0.308214, -1.305772, 0.557538, 0.164972, -0.704804, -0.816602, 0.915265, 0.032985, 2.407387, 1.039023, -0.961177, 1.020939, -0.726604, 0.919537, 0.641625, 0.515392, -0.064317, -1.971238, 1.140480, -1.555529, -0.582825, 0.459114, 0.914118, 1.403499, -1.032463, 0.604782, 0.746903, -0.067092, 0.263470, -1.837725, -0.850796, -0.943436, -1.938775, 0.930313, 1.637621, -1.248867, -0.144989, 1.335036, -0.369851, -1.430273, -0.396013, 0.428406, 1.428915, -0.714920, -1.860152, -0.887155, -0.951437, -0.931176, 1.390014, -0.385535, 1.474930, 1.906364, -0.460858, 1.174290, -0.540534, 0.088838, -0.989319, 0.942682, -0.396803, -0.038699, 0.268658, 1.498614, 1.196952, -1.030894, 0.329766, 0.482987, -0.282981, 0.671319, -1.349140, 0.221897, -0.573209, -0.472648, 1.799908, -0.537823, 0.518324, 0.962883, 1.339337, 0.542371, 1.766081, 0.082193, 0.185839, -0.300633, -0.137414, 0.026367, -1.123260, -1.089690, 0.115906, 1.892611, -1.485620, -1.152223, 0.435520, 1.028936, -0.915916, 2.479481, -1.782195, -0.417469, 0.008988, -0.070528, -1.265108, 0.298844, 0.477083, 0.607140, 0.194186, 0.641839, 1.256154, -0.161047, -0.318711, -0.327091, -1.201591, -0.419389, -0.090740, 0.474517, -0.170993, 0.432529, 0.129556, 0.750366, 1.314587, 0.547982, 1.021444, 1.069203, 0.709449, -1.803092, -0.378879, -0.088747, -0.664312, 0.494705, 0.108875, 1.582420, 0.605303, 1.097416, -1.136252, 0.962630, -0.114604, 0.301794, 1.292046, -0.271193, -0.304249, 0.401568, -0.580388, 0.312145, 0.303372, 1.903849, -0.586008, -0.423948, 0.265597, -0.376417, 1.178659, 1.479222, 1.619156, 1.044988, -1.093583, -0.435230, -1.283998, 1.023035, 0.196204, 0.050877, 0.637643, -1.600393, 0.875355, -1.841498, 0.119382, 0.251772, 0.707243, 0.342991, 0.539560, 1.652902, 0.319593, 0.547184, 1.784397, 0.716315, -0.969803, -0.769177, -1.030999, -0.302631, 0.939049, -2.591128, 0.614226, -0.550341, 0.776557, 0.053298, 2.424106, 1.696358, -1.320649, 0.104384, -0.692818, 1.348013, 0.468785, 0.280820, 1.171937, -0.007780, 0.226824, -0.787666, 0.915156, 0.723561, -0.186396, 1.431703, 0.854399, -0.779900, -1.234929, -0.329158, -0.780113, -0.143752, -0.880068, -0.027821, 0.923269, 0.606137, 1.221400, -0.794988, -0.639636, -0.758908, -0.843589, -0.855502, 1.415207, 1.326428, -0.825090, -0.354446, -0.658662, 0.932430, -0.498781, 2.317732, 0.521507, 0.493516, 1.306170, 0.080151, -1.719056, -0.705620, -1.533758, -0.472610, 1.495312, 0.051000, -1.559097, -0.359741, 0.804364, 1.057133, -0.289193, -0.378599, 1.653079, -0.400758, 1.918728, -0.292730, -1.371060, -1.646813, -0.094614, -0.421445, -0.458133, -0.418669, 0.956764, 0.309983, -0.896957, -0.019367, -0.584378, -1.590409, 0.301317, -0.332146, -0.081008, -1.616112, -0.598941, 1.291263, -1.065026, -1.024502, 0.373389, 1.465848, 0.890238, 1.234847, -0.199647, 0.948799, -0.500763, -1.036588, -0.745491, -1.830129, -0.140807, -0.168522, -0.217274, 0.330723, -0.255682, -1.478547, 0.284352, -0.043808, -1.120008, 0.707696, 0.316642, -0.692405, -1.950322, -0.570129, 0.004717, -1.857131, 0.118761, -0.086331, -1.332689, -0.677188, 1.336037, 0.692782, -0.365467, 0.194880, 0.567802, -1.737232, -1.250864, -0.114982, 0.747633, -0.819854, 0.201411, 0.010733, 1.343882, 0.524695, 0.436572, 0.520546, 0.847821, -0.320379, -0.601157, -0.868980, -0.387812, -0.103090, 0.974453, 1.398122, -0.954004, 0.592015, 1.261457, -0.347106, -0.145252, 0.531946, 0.901868, -0.139857, 0.838785, -0.239271, 0.407745, -1.222600, -0.814237, 1.247454, -0.528840, 0.738049, 0.306092, 2.055893, 0.016198, 0.725570, -0.693108, -0.040687, 1.086423, 1.753733, 2.635598, -2.124676, 1.316912, 0.882211, -0.182426, -0.097462, 0.137660, -0.463837, 1.234253, -0.089568, 0.158560, 0.199999, 1.499169, -1.945089, 0.655442, 0.108171, 1.447518, 1.636001, -0.541791, 0.593860, -0.586946, -0.750874, -0.985495, -0.023771, 0.762704, 0.568701, -1.129595, 1.983391, -0.345783, -0.912326, -0.812670, 0.597849, -0.906531, 1.327343, 0.421508, -1.029603, -0.607250, 1.246089, 0.068783, -0.270205, -0.526293, 0.122160, 1.385993, 1.352670, -0.903220, -1.071225, 0.583900, 0.443493, -0.090107, 0.126837, 0.538319, 0.255468, -0.132981, -0.206274, 1.128867, 0.176533, 0.509580, -0.607686, 0.139552, 0.120067, 0.712809, -0.856388, -1.215834, 0.456864, 0.708185, -0.897323, 0.230488, -0.080045, -1.814398, 2.256569, -0.816994, 1.973039, 0.240091, 1.106864, -0.095830, 0.399104, -0.147433, -1.134093, 0.566147, -0.410151, 1.410062, -0.829393, 0.520929, 0.239539, 0.134553, -0.746424, -0.486461, -0.438764, 0.029918, -1.046096, -1.015934, -0.139520, 0.987163, -0.278789, -1.531670, -0.313904, -0.958798, 0.492169, -0.779903, 0.643487, 0.385838, -1.249967, 0.737050, -0.713977, 0.346928, 1.091906, -0.338772, -0.304467, -0.988710, 0.619985, 0.502091, -0.150041, 0.808100, 0.889905, 0.834058, 0.775391, -0.512836, 1.658357, 0.416369, -0.842851, 0.238922, -0.462182, -0.404107, -0.741630, 1.556167, -0.869417, -1.534832, 0.382278, -0.335983, -0.031708, 0.351079, 0.134860, -1.445333, -0.428648, -1.266075, 0.292787, -0.813467, -1.425180, -1.398613, 1.532351, 0.203353, 1.377867, -1.052320, 0.542145, -2.079486, 0.526751, -0.435422, 0.112951, -1.243429, -0.863001, 0.383318, -0.655635, 0.364293, -0.643945, -1.648842, 0.446640, -2.328080, 1.435825, -0.685255, -1.217336, 0.123734, -0.370162, 0.326280, 0.798418, -0.372092, -0.714970, -0.145333, 1.610793, 0.356216, 0.457596, 0.712985, -0.444310, 0.733337, -0.892675, 1.111201, -0.252817, -0.837535, -0.788782, -0.412233, 1.075867, -1.373759, 0.794280, -0.240515, 0.724207, -0.067016, 2.118749, -0.060322, -0.402310, 0.732265, -0.274063, -0.646122, -0.611973, 0.430229, 1.054136, -0.040591, -0.605241, 2.110096, -0.361311, 0.423276, -0.258559, 0.859665, -0.926667, -0.250056, 0.898539, 1.073115, 0.169196, -0.917704, -0.229519, 0.622024, 0.308891, 1.575428, -0.032481, -0.796108, 0.691449, -1.320437, -0.348208, -1.271779, 0.797208, 0.720069, -0.110669, -0.037529, -0.440502, -1.029599, 0.004869, 0.699893, 0.715856, -0.321253, -0.126482, -0.355601, -0.532923, 1.111016, 0.898301, -1.254499, -0.253172, -1.109582, -0.271897, 1.916230, -0.513085, 1.655011, -0.606123, 1.990858, -0.641791, 0.248544, -1.420572, 1.058592, 0.125604, -0.254184, -1.343229, 1.680490, 2.308031, -0.532147, 0.212972, -1.186526, 0.052062, -0.641231, -1.408659, 1.071984, -1.214022, 1.581080, -0.359345, -0.037057, -0.140944, -1.817753, 1.165446, 0.684604, -0.389373, 2.693231, -0.316605, -0.349264, -0.233301, -1.889239, 2.026427, -0.588344, 0.737319, -1.876171, -1.890059, -1.316698, 1.585736, -0.150989, 1.347198, -0.226498, -1.726410, -0.708460, -1.324823, -0.440005, 0.180751, 1.804125, -0.220699, 0.662965, 1.005750, 0.123058, -0.510027, -1.534929, -0.817585, 1.805377, -0.299890, -0.329219, -0.342869, 0.114420, 0.818482, 0.640968, 1.525861, -0.314798, -0.291423, -0.454683, -0.432605, -0.248657, -1.156749, -0.179876, -0.141269, -1.215492, -0.286250, -0.051652, 1.191510, 0.467788, 0.255979, 0.223685, 0.203502, -2.474592, 0.234127, -0.180483, -0.672638, 0.785141, 0.066506, -0.865789, -0.831114, -0.475468, 1.275852, -0.910007, -0.768915, -0.332906, 1.186434, 1.370451, -0.582893, -0.241000, -1.222048, -0.947822, -0.801871, -1.245451, 1.837009, -0.326227, -0.217278, 0.938735, -0.202878, 0.431085, 0.215665, -1.594189, 0.652198, 1.375565, 0.454405, -1.349134, -0.620641, -0.202386, -0.079880, 0.416635, -0.788078, 0.419681, -0.885545, -0.427404, -0.901947, -0.309603, 1.948034, -1.221698, 0.372437, 0.925543, 0.825739, 0.389059, -2.178058, 0.398005, 1.655316, 1.895604, -0.592197, 1.182354, -0.628639, -2.492349, 2.437147}, + { 2.339887, 1.620140, -1.397717, -1.792415, -1.651464, -0.417458, -1.515943, -0.727748, 0.658773, 0.030530, 1.420214, 1.112668, 0.126961, -1.828202, -0.108042, 0.294892, 0.499983, -0.975588, -0.202786, -0.988190, -0.396316, -0.440190, -1.204370, -0.185122, 0.848085, 0.016918, -0.559986, 1.217533, -1.266320, -0.389045, 1.403836, 0.186828, -0.552412, -0.277355, -0.077300, -0.818491, -0.036863, -0.031269, -1.104384, -0.217681, 0.108529, 1.483026, 2.700808, 1.323355, -1.429389, -0.359832, 2.384762, 0.109584, -1.614355, 0.318306, 0.218195, 0.054861, -0.381109, -1.406280, -1.633760, 0.220129, 0.244932, -0.495095, -0.697085, -0.721289, 0.558541, -0.426999, -0.810297, 0.558341, 1.019244, -0.279632, -0.092744, -1.030451, 0.184251, -1.528850, -0.294207, -1.761215, -1.603183, -0.801045, 1.265873, 0.402463, -0.406751, 1.189645, 0.065515, -0.191021, 0.722818, -1.718461, -0.880315, -0.769453, -0.182268, 0.066402, -0.550959, 0.339106, 0.818443, -1.963967, -0.035421, -1.949418, 0.449765, -0.369531, -0.342174, -1.042240, -0.845946, 1.873936, -1.217835, 0.389689, -0.546089, 0.872542, -0.086338, -0.190501, 0.615653, -1.194026, 2.453911, -0.559747, -0.720787, -0.265108, 0.772782, 0.802450, -1.430144, -1.146555, -0.154464, -0.636835, -0.585239, 0.266004, 1.499096, -0.981671, 0.200274, -1.367797, 0.137719, 0.486250, 0.239502, -1.270316, 1.105726, -1.420166, -0.603872, 1.408102, 0.017191, 0.552936, 0.468244, 1.155060, 0.344181, 1.215376, 1.220017, 0.392431, 0.326882, 0.933896, 1.356346, 0.627984, -1.284024, 0.770552, 1.302408, -0.310756, -1.280897, -0.361148, 1.437473, 1.226935, 0.349923, 0.657697, 1.309943, 0.121834, -0.574194, -0.193201, 0.865346, 0.366080, 0.552767, 0.590743, -1.737379, -0.998452, 2.580730, 1.805921, 0.462659, 0.075984, -0.092635, 0.337560, -0.817497, 2.122266, -0.161357, 0.508321, -1.330348, 0.348236, 0.419723, 0.556637, -0.295095, -1.626863, 0.645254, 0.117203, 0.653968, -0.859729, -0.188552, -1.654380, 0.905129, 0.565809, -0.665582, 0.231161, -2.048409, 0.776696, -0.179701, -1.672784, 1.253463, 0.821780, -0.794204, 0.857018, -0.330969, -1.396939, -0.606409, -0.270470, 1.766844, -0.436703, 0.547275, 1.701216, 0.707859, -0.651268, -0.140109, 1.094223, 0.008815, 0.177185, -2.736145, -1.386136, 1.936002, -1.028178, -0.288759, -0.091952, 0.105270, 0.002987, -0.659165, -0.322631, -1.241251, 0.378708, -0.679698, 0.471250, 0.091925, -0.711658, 1.044602, 1.463665, 0.948397, -1.512430, -1.473283, 1.258366, 0.476375, -0.693492, 0.817557, -0.293565, 1.395796, -1.226122, -0.261127, 1.042383, -1.525834, 0.466103, -0.990431, -0.066383, 0.662328, 1.560231, 1.446582, -0.420327, 0.093900, -0.616068, -0.396922, -0.161616, -0.361351, -0.726517, 0.931897, -0.110255, 0.029895, 0.702895, -0.486218, 1.500088, -0.911554, 0.192895, 0.610582, 0.107673, 0.221257, -0.347135, -1.265169, 1.056425, -0.005606, -0.162892, 0.247074, -0.818270, 1.127262, -0.514588, -1.269626, 0.043387, 1.890463, 1.899805, 0.106100, 0.876978, -0.420545, 0.397927, -0.519026, 2.251690, 0.384642, -0.857362, 0.072714, -2.513459, 0.528260, 0.526779, 1.809626, 0.160605, -0.256846, -0.046370, -1.070561, 1.000023, 1.813775, -0.715343, -0.494603, 0.369020, -1.940010, 1.296672, 0.303521, 0.124397, 1.046138, -1.526003, 0.092771, -0.872271, 0.765671, 0.511123, -0.386684, 0.753641, -1.156579, 0.474385, 1.213263, -1.078144, -1.280978, -0.968109, 1.120123, -0.610951, -0.812206, -0.451754, -0.437373, 0.162306, -0.982819, 0.916856, -0.614820, -0.097352, -1.845380, 1.609066, 1.472736, -0.727985, 0.079987, -1.351291, -0.912343, 0.694572, 2.532907, -0.642715, 0.582071, 0.724823, -2.349295, -0.955874, -0.400967, 0.430401, -1.173242, 1.219665, 0.753479, 0.536411, 0.522888, 0.134859, -0.940140, 0.236503, -0.292762, 1.779085, -0.504632, -2.624163, 0.353690, 1.959040, 1.016121, 1.830055, 0.667395, -0.135537, -0.438823, -0.604406, -0.523737, 0.999362, -0.965137, 0.675641, -0.157534, -1.120798, -1.375923, -0.745494, -0.902841, 0.390616, -0.302744, -0.559256, -1.318172, 1.585740, -0.466179, 0.041782, -0.068003, -0.591694, 1.065515, 0.199168, 0.301454, 1.178663, 0.343721, 0.578013, 2.006254, -0.292315, -0.027169, 1.169843, 0.281810, 0.510632, -0.327149, 0.929928, 0.271907, -0.230353, 0.199114, -0.542152, 0.173365, -3.248751, 0.453610, 0.527880, -0.793493, 2.061254, -0.841321, 0.445838, 1.355060, -0.341512, -0.311967, 1.683860, -0.986819, 0.727597, -1.283289, -0.170094, -0.809002, 0.180786, -0.124404, -1.220071, -1.146966, 0.071316, 2.213066, -0.584928, -1.348610, 0.874946, -0.598879, 0.868833, 0.273724, -1.445279, 0.167242, 1.686287, -0.066773, -0.193377, 0.431002, 1.831211, 0.697474, -0.544411, -0.289762, 0.392250, 0.659892, -0.388241, 0.638402, -1.022027, -0.628311, -0.563202, -0.181183, 0.482651, -1.029940, -0.967300, -0.484850, 0.682934, 0.038888, -0.498950, 0.371687, 1.950650, -1.533247, -1.271800, 1.922040, 1.266094, 0.006514, -1.202719, -1.549649, -1.111651, 1.145107, -2.336985, -1.227338, -0.485622, 1.309206, -0.029743, -0.459101, -1.083666, -0.084536, 1.232778, 0.069419, 0.289925, 1.440014, -0.616036, 0.472039, 1.235283, -0.098531, 0.992890, -1.023179, -0.224086, -0.804266, -1.763057, 0.277883, 0.570709, -0.239120, -0.705175, 0.077777, -0.851741, -1.382025, 0.999434, 1.300331, -2.517501, -0.483995, -0.435277, 0.304834, 0.240393, 0.463540, -0.271114, 0.476971, -2.117063, -0.825701, -0.208910, 2.078837, 0.874864, -0.460237, -0.150332, 1.837842, 0.270703, -0.650420, 0.865180, 0.083523, 0.230363, 1.365837, -0.590013, -0.347006, 0.184882, -0.296471, 0.624956, -1.346022, -0.047095, 0.964943, 0.365237, 0.795534, -0.775335, -0.447820, 1.092894, -0.717920, 0.794327, -0.264046, 0.105361, -0.213335, -0.831172, -0.689261, -1.185437, 0.555137, 0.942949, 2.394449, 1.151925, 0.379334, 0.616034, 0.672809, 0.673535, 0.146411, 0.284025, -0.007156, 0.113903, -0.316693, -0.221654, 0.362333, -1.738374, -0.590817, -0.318511, -0.247263, -1.059371, -0.108953, 0.141335, 0.203960, 0.738039, -0.104707, -0.042683, -1.611838, 1.544860, 0.481808, -0.598356, 1.230854, 0.302006, 0.012926, -0.775176, -1.045218, 1.185867, 1.272498, 0.439803, 0.550516, 0.064741, -0.120913, 0.696555, -0.158317, 0.789790, -0.307472, -1.034022, -0.230170, 0.390069, -0.509312, -0.999874, -0.325439, -0.409116, -0.665791, -0.804070, 0.023495, -0.472189, 0.260459, -0.359123, 0.771365, 0.271621, 1.441185, 0.332482, 0.013846, 0.366242, 0.697469, -0.729197, -0.383513, 0.589389, 0.101290, 0.951068, -0.510345, 0.624408, -0.348682, -1.098903, -0.848618, 0.060044, -1.885940, -0.035841, 0.029267, 1.557899, 0.995270, -0.790554, 0.436663, -0.848539, -0.303771, 0.172670, -1.356799, 0.445098, 0.137210, 1.243937, 1.171611, -0.056864, 1.110676, -0.932160, 0.533369, 0.560239, 0.124944, 0.505434, -0.494534, 0.096916, -0.728359, -0.625288, 0.235163, 0.373002, -0.540880, 1.202525, -0.014339, -0.824045, -1.873509, -0.077882, 0.748897, -1.710542, 1.216395, 1.084436, -1.090989, 0.793859, 0.818533, 2.062217, -0.411011, -3.375772, -2.021983, 0.366885, -2.691701, -1.665082, -0.995476, -1.409712, 0.023805, -0.592694, 0.007838, -0.466110, 1.046834, -2.271525, 1.912326, 0.049592, -1.393038, -0.172442, -1.185794, 0.286987, -2.622704, 0.900961, -0.695789, -0.163837, 0.297264, -0.372835, -0.069932, -0.135428, 0.075737, 0.639942, 0.512228, -0.070645, 0.091322, -0.958377, 2.135288, -0.142732, 0.597814, 1.180662, 0.669671, -1.303432, -0.212500, 0.573757, 0.413966, -0.308574, -1.186860, -0.070545, 0.642519, -0.462130, -0.484110, -0.886547, -0.600770, -1.290298, 0.358749, 0.114589, 0.125301, 0.285748, 0.229389, 1.783901, 0.305419, 1.227210, -0.376675, -0.912810, 0.529526, 1.147198, -0.354719, 0.301027, -0.262007, 1.349041, 0.460054, 0.323833, -0.535417, 0.398359, 0.285918, 0.199553, 1.608457, 1.080666, 0.531422, 0.265556, 2.468230, -1.120097, 0.299419, -0.009829, 0.798856, -0.900978, -0.595015, -1.118382, 1.352308, -0.765283, 1.022837, -0.081662, -0.614206, -0.462349, 0.947365, 0.546488, 0.262596, -1.383535, -0.850644, -0.272334, 0.331986, -0.690244, 0.657941, 0.962619, -0.250746, -0.790014, -0.421113, -0.882083, 0.026295, -0.029447, 0.678367, -0.018902, 0.857854, 0.673230, -0.492088, 1.239871, 1.082987, -0.759082, -0.171095, -0.463199, -2.026721, -0.877298, 1.562342, -0.398282, -2.328192, 1.684431, 0.495766, 2.162920, 0.437524, 0.465590, 1.120987, -1.355737, 1.361169, 0.263885, 1.814896, -0.697334, 0.674721, 0.622827, -0.029780, 0.255792, -3.248760, 0.733671, -0.650071, -1.415894, 0.476000, 1.031410, -0.343213, 1.274329, 1.857819, -0.978104, -0.006329, 0.312723, -0.663103, -0.417864, -1.053870, 0.693769, -0.836607, 1.471947, 0.259804, -0.765705, 1.440222, -0.252867, 0.494024, 0.919247, 1.650520, -2.201987, -0.432168, 1.822201, -1.368991, 1.076670, -0.496645, -0.446964, 0.027530, 1.093180, -0.188253, 0.365788, -0.318026, 0.343727, -1.677257, -0.248994, -0.618624, 0.906792, 0.692152, -1.261671, 1.263207, 1.468797, -0.902294, 0.580883, -0.519553, 1.189655, -0.037853, 1.118424, 1.806509, -0.618764, 0.041535, -0.917750, 0.065988, 1.511952, -0.866867, -0.987826, 0.706596, 2.274445, 1.829628, 1.546664, -0.364162, 1.721251, -1.137282, -0.035184, -0.532842, -0.832020, -0.322955, -0.661472, -0.357880, -1.102991, -0.188798, -0.070132, -0.574109, 0.938241, 1.105883, -0.245666, 0.899721, 0.539366, -1.078748, 0.939915, 0.682323, 1.080436, -0.346673, -1.537215, 2.056692, 0.406541, -1.328311, 0.133209, -0.810740, 1.227201, -2.066248, 0.390462, -1.305965, -0.867083, -1.212793, -1.917906, 0.700318, 0.175547, -1.759913, -1.823506, -0.550040, 2.111104, 0.658175, -0.317664, -0.647261, -0.847860, -2.200311, 1.336159, -0.393175, -0.162713, -0.843201, -0.121724, -0.644852, 0.610801, -0.398535, -0.512464, 0.839095, -0.103021, -0.367010, 0.716079, 0.659539, 0.056364, 1.293032, 0.344292, -2.261811, 1.223168, 1.213226, -1.657508, 0.952406, -2.438802, 0.783962, -1.482991, -0.746309, -0.336616, -1.755589, 1.977362, 0.630243, -0.317651, 0.701011, -1.645657, 0.425999, -1.170024, -0.536810, 1.116719, -0.983931, 0.159605, -0.461658, 0.085128, 0.857067, -0.038479, 0.250132, -0.146855, 0.325708, -0.927673, 0.623058, 0.878201, 2.328608, 0.139591, -1.123887, -1.885152, -1.103027, -0.690594, 2.081377, 1.039609, 0.631083, -0.047167, 0.768900, 0.973730, -0.730071, -0.795100, 0.945922, -0.593393, 0.060149, -1.197378, -0.642757, -1.422758, -0.270091, -1.918196, 0.019016, 0.553899, -0.725723, -0.049975, 0.730480, 0.194865, 1.583288, -0.793429, -0.438834, -0.130464, -1.644154, 0.702824, -1.913531, 0.106694, 1.126528, 0.420040, -0.445293, 0.571887, -0.157531, -0.692041, 2.587095, 1.337007, 0.960686, -0.689337, 0.388421, 1.068272, 0.515389, 0.653977, -0.564628, -0.468683, 0.653606, -0.090175, -0.186334, 0.908691, 0.578606, -1.851776, -0.548075, 1.548749, 0.651764, 1.360624, 0.337582, -0.691879, -1.418431, 0.807978, -0.297172, 0.034912, 0.410237, -0.942554, -0.439214, 0.457965, -2.145832, 0.351105, -1.170805, -2.719146, -0.158314, -0.614586, 0.424879, 2.754127, 1.054044, 0.601622, -0.040545, -2.170149, 0.147270, 0.560472, 1.528347, 0.567829, -0.018008, -0.381658, -0.732215, 0.266872, -1.043024, 2.575083, 0.539466, -0.841671, -0.771651, -0.414010, 0.649392, -0.257237, 0.909045, 1.078043, 0.015821, -0.891975, -1.375473, -1.265283, -1.001856, 0.352868, -0.153865, 0.551990, 1.297729, -0.827339, -0.590362, 0.572605, 0.537236, 1.780803, 0.044854, -0.722309, -0.412978, 0.495463, 1.357161, 0.880735, 1.548529, -0.512789, 1.093130, 0.607201, -0.940269, -1.346058, -0.662537, -1.630921, 1.736744, 0.376064, 0.588518, -0.731392, 0.320002, 1.897495, -0.561855, -0.043211, 0.329067, -1.597663, 2.937750, 0.631671, 0.539890, 0.283874, 1.965470, -0.989744, 0.570398, -1.568765, 1.025972, -0.541943, -0.373208, 0.230093, 0.262655, 0.505942, -0.944142, 1.283452, -1.192868, -0.744110, 0.659878, -1.000340, 1.589922, 1.655994, -1.167801, -0.269138, -0.363151, -0.871481, -0.420680, 1.040005, -0.431508, -1.281230, -0.512318, -0.218924, 1.348046, 0.633733, 0.088889, -0.245016, 0.591242, 1.132514, 0.712195, -1.296513, -0.934248, -0.302543, 1.436858, 0.531896, -1.867159, -1.236130, -0.408434, -0.050282, 0.672589, 1.029602, 1.393088, 0.531739, 0.930622, -0.317769, -0.467297, 0.197542, -0.647020, -1.307058, 1.416776, 0.176016, 0.828286, 0.079681, -0.687654, 1.595828, 0.602707, -0.151113, 0.031936, 3.166681, 0.867356, 0.539911, 0.951033, -1.111953, 1.312779, 2.140893, -0.365097, -0.756451, -1.587729, 0.045646, 0.901133, 0.421425, -0.813058, -0.985248, -0.318459, 0.445675, -1.065751, 0.510675, -1.183406, 0.083105, 0.975794, -0.009505, -1.976220, -0.032721, -1.863482, 0.183437, -1.450258, 0.571176, 0.171300, -1.051524, -0.025137, -0.364907, 1.242000, -0.011513, 1.700560, 0.015861, -2.547197, 0.888665, 0.973877, -1.753945, -0.604646, 1.240845, 0.276626, 0.835803, -0.079542, 0.050746, -0.508911, -1.665020, 0.730793, -0.072332, 1.024210, -1.746898, 0.687907, 0.378025, 1.605892, 0.315604, 2.206854, -0.138711, -1.412615, 0.413787, -0.060648, 0.664999, 1.597237, 0.382786, 1.500695, 1.860595, -0.080737, 0.256487, 1.162947, 0.502315, -0.136137, 1.601147, -0.151200, 0.765266, -0.281051, 0.685311, 1.023502, 0.317818, 0.086314, -2.154653, 1.258030, 1.145675, -2.078759, -0.397960, 0.402890, 0.967976, -0.169267, -1.980233, -0.786104, 0.329992, -0.388028, 1.173585, -1.063861, 0.061067, -0.339741, 0.671392, 1.254569, -1.409940, 0.937403, -0.066188, -0.379947, -0.446582, 0.000128, -1.019786, 0.526527, -0.689360, 0.014842, -0.379158, 0.998085, -0.359716, -0.278478, -1.638923, -0.355024, 1.221687, 0.380838, -0.580778, -0.991513, -0.774157, 0.831976, -0.985778, -0.795102, 0.415400, 0.739446, 1.854077, 1.745931, 1.129811, 0.892184, 1.015465, -0.667754, 0.254367, -0.269651, 0.844039, -0.282847, -0.131188, 1.069626, -0.924020, 0.187840, 1.515246, -1.576336, -0.435936, -1.962785, 1.219529, -0.188467, -1.479822, -0.106636, 0.757747, 0.444520, 0.151669, 1.308655, -1.848307, 0.819246, -0.691925, 1.042457, -1.889494, -0.008251, 0.352980, 0.310005, 0.601249, -1.275811, 0.532965, -0.220867, -0.352776, -0.009527, 0.542688, 0.321655, -1.459785, -0.524239, 0.921200, 1.428630, -2.049950, 0.196952, -0.182161, -0.598679, -0.272160, -0.624831, -1.142742, 0.400120, -0.235473, 0.615551, -0.407898, -0.951401, 0.380072, 1.085257, 1.212558, 0.185780, 0.733815, 0.574640, 0.457952, 0.096082, 0.732680, 0.082707, 0.151700, 0.183100, -0.863619, 0.300097, -0.718123, -1.010734, 0.124748, -0.815479, 0.099243, -0.476195, -0.536010, -0.538039, 0.292785, -2.351339, -0.276826, -2.499783, -0.075705, -0.897374, -0.285535, -0.953430, 0.198136, 0.343154, 0.556603, 0.561553, 0.817719, 0.668316, -1.485080, -1.068298, -0.672301, -1.348186, 0.711111, 0.724554, 0.581014, -0.783041, -0.397042, 1.331664, -1.117222, 0.932444, 0.030756, -0.240641, 1.513190, 0.263395, 0.351389, 0.275304, -0.524006, -1.127194, 0.087733, 0.409534, 0.583871, -0.527440, -0.322752, 0.190587, -0.001396, -1.250543, 0.029237, 0.723774, -0.083851, 1.350279, 1.790519, 0.939365, 0.117923, 1.680303, 2.099375, 1.932916, -0.253220, 0.171509, 1.406413, -1.611971, -0.258640, 0.265394, 0.438333, -1.194541, -0.082098, 2.485423, -1.182706, -0.961690, 0.857870, -2.231763, -0.427951, 0.753440, -0.523252, -1.658902, -2.181081, -0.334577, -1.863257, -1.112460, -0.177234, 1.244737, -0.526643, 1.151306, -0.847277, -0.244868, -0.380532, 0.563493, 0.750466, -0.253092, -1.519646, 1.114412, 1.327542, -0.111753, -0.592570, 0.548212, -0.147598, -0.032017, -0.226827, 0.142878, 0.320832, 0.206300, 0.741409, -1.920498, -1.415332, 2.787690, 0.570796, 1.923239, 0.294151, 0.439956, 1.353512, -1.158930, 0.383895, 2.496787, 0.468525, -1.985228, -2.319000, 0.365258, -1.219664, 0.195127, 0.513665, 0.941101, 0.812753, -1.895636, 1.644525, -1.085889, -1.145886, 1.011864, 0.318452, -0.590919, -0.622030, -0.242061, 0.363680, -0.568791, 0.380872, 0.606028, 0.285046, 0.886551, -0.498485, -0.485802, 0.022500, 0.117547, -1.683159, -0.369969, -0.055681, -0.301956, -0.273704, 1.196988, 1.414362, 1.216099, 2.016447, -0.174947, 0.502012, 0.677855, -1.238375, 0.624047, 0.606496, -1.800062, -0.639483, -0.273268, -1.547553, -1.279794, -2.296775, 0.765019, 0.818297, -0.275762, 1.211393, 1.656740, 0.368837, -1.373180, -0.794637, -1.116343, -0.538595, 0.297590, 0.059933, -2.512983, 0.919144, 0.349269, 0.378733, 0.005685, -1.829413, 0.843867, -0.221340, -0.184708, -0.627133, 0.617322, -1.198811, -0.273261, 0.081787, -0.282785, -1.706555, 0.198147, 1.591000, -0.207255, 0.242216, -0.319243, 0.196243, 0.643825, -0.017535, 0.256174, -1.122043, -1.845724, -0.811015, 0.776274, -0.157725, 0.345995, -1.101322, -1.583710, 0.034840, 0.148482, -1.707850, -0.518058, -0.311283, 0.172524, 1.230821, 1.186505, 0.903200, 2.211017, 2.414472, 1.017153, -2.192178, 1.164859, 0.155565, -0.286887, 0.561347, 1.423541, 0.265095, -0.281437, -2.627453, -0.570023, -0.174361, 0.477104, -1.493228, 1.559336, 0.926887, -0.388126, -0.284381, 2.548079, 0.322448, 0.310619, -1.772152, -0.977292, 0.484613, 0.691650, -1.045605, 0.164643, -1.343724, -0.528016, 1.203277, -0.049976, 0.577042, -0.061830, 0.232674, 1.557687, -0.263098, -1.530672, 0.425431, 0.643476, 0.943443, -0.329490, -0.573549, 0.938394, 1.291568, -0.182664, -1.102386, 0.065628, 0.259166, -0.560332, 0.727604, 1.239912, 1.893412, 0.454215, 1.576560, -2.452963, -0.520614, 0.757300, -0.957798, 0.650079, 0.102533, -0.005347, 1.846959, -0.531347, -0.315259, -0.446454, -0.023414, 1.373055, -0.609325, 0.475658, 0.708969, -2.476679, -0.245944, 1.053382, -0.972497, 0.068844, -0.318367, 0.766286, -0.943124, -0.722381, 0.908176, 0.556848, 1.280472, -1.045132, 1.333220, 0.771205, -0.230906, -0.914635, 1.491213, -1.568861, -0.818916, 1.520769, -0.950524, 0.185209, 1.639798, 0.609398, -1.239409, -0.911419, 0.760996, -3.508370, -1.098161, -1.057860, 0.705982, -0.437876, -0.133774, -0.058981, 0.186572, 1.259757, -1.602921, 2.097763, -1.016769, 0.294787, 0.549145, 0.002455, -0.531612, -0.347243, 0.782148, 1.936902, -0.870336, 0.951023, 1.037518, 1.202069, 0.732683, -0.548064, -1.281353, 0.928252, 0.404610, 0.237788, 2.432759, -0.207768, -1.170613, 0.120114, 0.943097, 0.611571, 0.685156, -0.135865, 0.531529, -0.475724, -1.103788, -1.209592, -0.316528, 0.860905, 0.566027, -0.042948, 1.582790, 1.057178, 0.017846, 0.525677, 0.234745, 0.765340, 1.234892, 0.038759, -0.231228, 1.453337, -0.151583, -0.477912, 1.140651, 0.841136, 1.822284, 0.205754, 0.160168, 1.365118, 1.131590, -1.180762, -0.145345, 0.407859, 0.302355, 0.147690, -1.465125, 0.805820, -0.468216, 0.479170, -0.469572, -0.446155, 0.611474, -0.895492, 0.329113, -2.051262, 0.638840, 0.120678, -0.862247, -0.675172, 0.459009, 0.566021, -0.694903, 0.205265, -1.347968, 0.211785, 0.683769, 0.046369, 1.587299, -0.137911, 0.310909, -0.182222, -1.263354, -1.434873, 0.713546, -1.028692, -0.113286, 0.783760, 1.414144, -1.372740, 0.907109, -0.547061, 0.531404, -0.473709, 0.054894, 0.135392, -0.032126, -0.901858, -0.259162, -2.267479, 0.344289, -0.717041, 0.199426, -0.677745, -0.060331, -0.685787, -1.073391, 2.143624, 1.291589, 0.322839, -0.332561, -1.260504, 1.624500, 0.236125, 1.020439, 0.962793, -1.640325, 0.890086, -0.200777, 0.829336, -0.653676, -0.412580, -1.160139, -1.178952, -0.633673, -0.294256, -0.272505, 2.013521, -0.198038, 0.088963, -1.513950, -0.294601, 0.572533, 0.674166, -2.256508, 0.871453, -1.659994, 1.564678, 1.263049, 0.188872, -0.029460, -2.161498, -0.844293, 0.073321, -0.217361, -0.668902, 1.620032, -0.282229, -0.098374, 0.587284, 1.195532, -2.639980, -0.776069, -1.118495, 1.685807, -0.566415, 0.417830, -0.186634, 1.118239, 0.286706, 0.336966, -0.934391, -0.356628, -1.069422, -1.382757, -1.614739, -1.081746, 0.697923, 1.925684, -0.781039, 0.216922, 1.196330, -0.749097, -0.509502, -0.883495, 0.057129, -0.050837, 0.966182, -0.433586, -0.595828, -2.018313, -1.042086, -0.092144, 0.091934, -1.251020, 0.059435, 0.278959, -0.669808, 0.522188, 0.828343, 1.066447, -2.211732, 0.077299, 0.090529, -0.583485, -0.926748, 0.791708, 1.007578, -0.938377, 0.390635, -0.016530, -0.567840, -0.617223, 0.641829, -0.601339, 1.705307, -0.688337, -0.391470, -0.616910, 0.484435, -1.560051, -0.172858, 2.281009, 0.403052, -1.373667, -0.830165, -1.532637, 0.449668, -0.924330, -0.188391, 0.765738, -0.294488, 0.620307, 0.277731, 1.227256, -0.380445, 1.248724, -1.697083, -0.847337, -0.796181, -0.828789, -0.174957, -0.259475, -1.968412, -0.183483, 0.293268, -0.240115, -0.342797, -0.752306, -0.741280, 0.763456, 0.366529, -0.846331, -2.265886, -0.067053, 0.466130, 0.490662, 1.096581, -1.764215, -0.601576, -0.252311, 0.182608, -0.520276, 0.076030, -0.341519, -0.383581, -1.431756, 1.330467, -0.908274, 1.329367, -0.534607, -0.039371, -0.085676, -0.269648, -0.787234, 0.007173, 1.326513, 0.446413, 1.612812, 0.349147, -0.580131, 0.011947, -0.830780, -0.953301, -0.952242, -0.336505, -0.012668, 0.036008, 0.871640, -1.142907, 0.306253, 0.584759, 0.830233, -2.252978, 0.099714, -0.274381, 1.314918, -1.690409, -0.604197, 0.047075, -0.512890, -1.050812, 0.372193, -0.685270, -0.403895, -0.417881, 0.284571, -0.048282, -0.019376, -0.676599, -0.172166, -0.541573, -0.023006, 0.071876, 1.397583, -0.312360, 1.877012, 0.576752, -0.777600, 1.591267, 0.366755, -0.805977, -1.019038, -0.110027, -2.543164, -0.496476, -0.147449, 0.037518, -0.249998, 0.690148, -0.509130, 0.580286, -1.109549, 0.433471, -0.080534, 1.994791, -1.416895, 0.264197, -0.973871, -1.346378, -1.070348, -0.602265, 0.885242, 0.030756, -0.612280, -0.516690, 0.944415, 1.336945, -1.595313, 0.026528, -0.250100, 0.893869, -0.253728, -1.650977, 1.398246, 0.513745, -1.188211, -0.442091, -1.060550, 0.918336, 0.952847, 0.794229, 0.811815, 0.212550, -1.724803, -0.225094, 1.111234, 0.597199, -0.144270, -0.079793, -0.997074, -1.086010, 0.490363, -0.854987, 0.130572, 0.359305, 1.822808, 2.617574, 0.444795, -1.081134, -1.713222, -0.444533, -1.869120, 1.698570, 1.231275, 0.466171, 0.689414, 1.006129, 1.445567, 1.146741, 0.758339, 0.394512, -1.986660, 0.186819, -0.510688, 0.932882, 0.555146, 0.707300, -0.808208, -0.723499, 1.832024, -1.905344, 0.643497, -0.019097, 0.161381, -0.004972, 0.995444, 0.637443, 2.931123, -0.166906, 1.105529, 1.100713, 0.140412, 0.841600, 1.674908, -1.822820, 0.390012, 2.297440, -0.312916, 0.457927, -0.115662, 0.433671, 0.824154, 0.482680, -0.893767, 0.038397, -1.266835, 0.912249, -0.887309, -0.037484, 0.084544, -0.839360, 1.735897, 0.154937, 0.537164, 1.549364, 0.425318, -0.718091, -0.127856, -0.745922, 0.153830, -0.232807, -0.518767, -0.991916, -0.663041, -0.144539, -0.281017, -0.937514, -0.317277, -0.320038, 0.025055, 2.570044, -1.482317, -0.717633, -1.085678, -0.471183, -0.224776, -1.099564, -0.571303, 0.829553, -0.155893, 0.156793, -1.194801, -0.220895, -0.368922, -0.675315, 1.676874, 0.818077, 1.552793, -0.215783, -0.763735, 2.724967, 0.190431, 1.077808, -0.690782, -0.339568, -1.099323, 0.121236, -2.092776, 0.264752, -0.088903, -0.257739, -0.537163, 1.041136, -0.018238, 0.735731, -1.281614, 0.592891, 0.593413, -0.156507, 0.356066, 0.421609, 0.399154, -1.299910, -1.107248, -1.252386, 0.214870, 0.773377, 0.280858, -0.020667, -0.152196, 0.168648, 0.833699, 0.058437, -0.371987, 0.637980, -0.217940, -0.291812, 0.042399, 0.694663, -0.311074, -0.748296, -0.893546, -0.008895, -0.018246, 1.643986, 0.090306, 1.597983, 0.153118, -0.640786, 1.109137, 0.996771, 0.653828, 0.066764, 0.346753, -0.789985, 0.162597, 2.254294, 1.425568, 0.646100, -0.533868, 0.890136, -0.379934, -1.726412, 0.505541, -1.631099, -0.578253, 2.055353, 0.760786, -0.602107, -0.738184, 0.046679, -1.329390, -0.922382, 1.411517, 1.405269, 0.628556, 0.439620, -0.011662, -1.029384, 0.076170, -0.455761, 3.042590, -0.083860, -1.809582, 1.139211, -0.976658, 1.023288, -1.821213, 0.122494, 0.632407, 0.807095, -0.108281, -0.286565, -0.090761, -0.227396, -2.005785, -0.150380, 1.444135, -0.782624, 0.236282, 0.937521, -1.349104, 1.532143, 1.021212, -0.582009, 1.149779, 0.792034, -0.097042, -0.056904, -1.543658, 0.700936, 1.195743, 0.356991, -0.534177, -0.818301, 0.811975, 1.300884, -0.057174, 0.533409, -0.024578, 0.747383, -0.140990, 0.012016, 0.510459, -1.704202, -0.531843, 0.488358, 0.020743, -0.843652, 0.430010, 0.735691, -0.029030, 1.870751, 1.196554, 0.578918, 1.068060, 2.301197, 0.806130, 1.542723, -0.657610, 1.219884, -0.407545, -0.631783, 2.917728, 1.102480, 1.059211, -0.250046, 0.160946, -0.190146, 1.708230, -0.372174, -0.346686, 0.677688, -0.660339, -0.160757, 1.590138, 1.086151, -0.630868, -1.512951, -2.307979, -0.285702, 0.414328, 0.844063, -1.172826, -1.703214, -0.513180, -0.139610, -0.498324, 1.984058, 2.193488, 0.038102, 0.007519, -0.174715, 0.876993, -0.145233, -0.902617, 0.587381, 0.494300, -0.235182, -3.053974, 1.371978, 0.804059, -1.783810, -0.136912, 0.376198, -0.436949, -0.995726, -0.024736, -2.339851, 0.250048, -0.039450, -0.298911, -0.271579, -0.510332, -0.181264, -0.666547, 1.183405, 0.135117, -0.383399, -0.472141, 0.074341, -0.774374, 0.088133, -0.495193, 0.091177, 1.542859, -0.842349, -0.015065, 0.564222, 0.013059, -1.105840, 0.164683, -0.687384, 1.465354, -0.938458, -0.130631, -1.513411, 1.216604, -0.764995, -1.130777, -1.162234, -1.797466, 0.014359, 0.294896, 1.093679, -0.689184, -0.541962, -0.331089, -1.895172, 2.511445, -1.048767, 0.424427, 1.325798, 0.642216, 0.223989, 1.759172, 0.392975, -0.170945, 0.041169, 0.206289, -0.386149, 1.219702, -1.301169, 0.048387, -0.833263, 0.497843, -1.353330, -0.164616, 0.916817, 1.832351, 0.330548, 1.878273, 0.909365, 1.919446, 1.105769, -0.320675, 0.413568, 1.014741, -0.953961, -0.327467, 0.808275, 1.088393, 0.255993, -0.391291, -1.659907, 1.293995, -0.663314, 1.096924, -0.858102, 0.726580, 0.409432, -0.597511, 0.512230, -0.283823, -0.108287, -0.104364, -0.408240, 2.646028, 0.329585, 0.385602, 0.744607, -1.404503, -0.774725, -1.090793, 0.533799, -0.246337, 1.802539, 1.403776, -0.646599, -0.050306, 1.064913, -1.606383, 0.200212, 1.118009, -0.150026, 0.042371, 0.246243, 1.424385, 0.944149, 1.994377, 1.511456, -2.229374, -0.041016, -0.439311, 0.279010, -0.333640, -1.527750, 0.041591, 0.068428, 0.824794, -0.091369, 0.024561, -1.579225, -2.206697, -0.656816, -0.730981, 0.871948, 0.410183, 1.466418, -1.191390, 0.055316, 0.315366, 1.068758, -2.021178, 0.479162, -1.920746, 1.265739, -1.192487, 0.699744, -0.294441, 0.327163, 0.336695, -0.251148, -0.014699, -0.552606, -0.034257, -0.412130, 0.148108, 0.242689, 0.254666, 0.916913, -0.118230, 0.944449, 0.850491, -0.549134, 1.252050, -0.896338, -0.038419, -0.102139, 0.230073, 0.707243, -0.285361, 0.897815, 0.083996, -0.307050, -1.310556, -1.297087, 0.285785, 0.119637, 0.153944, -0.572136, -1.948030, -0.974255, 1.887546, -1.534551, 0.376188, -0.847022, -1.221058, -1.239111, 1.393376, 0.714988, 0.508397, -0.463747, 1.675715, 0.938767, -0.469509, -0.210144, -0.567250, -0.620194, 0.327048, -0.189579, -1.150585, -1.837289, 0.574851, 0.756407, 0.649215, 0.952602, -0.064761, 0.780440, 0.006990, -0.107420, 0.727935, -1.498537, -0.149461, -0.640389, -1.151963, 0.603294, 1.301707, -0.423346, 0.193280, 0.249339, 1.910752, 1.252278, -0.478919, -1.263717, -1.108649, 0.522311, -0.511481, -0.750591, 0.580339, 0.038164, 0.448575, -0.516887, 0.035124, -0.321898, 1.601525, -1.010123, 1.172648, 0.789511, -0.305779, 0.439665, -0.943016, 0.247185, -1.647035, -0.268741, -0.641794, -1.704705, -0.076981, -0.148799, -0.665378, 0.423781, 0.090921, 0.009669, 3.541343, -0.205583, 0.738723, 0.234074, -0.404066, 1.688074, -1.428720, 0.086502, 0.237412, 0.629870, -1.292386, -0.286201, -0.669892, 1.320607, 0.427025, -1.290679, 0.235515, 0.121102, 0.624778, -0.339407, -0.001385, -0.282990, -0.185826, 0.170417, 0.790935, 0.509584, -0.736652, -0.740857, 0.421731, 0.148217, -1.188031, 2.061238, 0.467243, -1.137715, -0.501910, -1.575161, 0.491508, -0.871432, -0.036674, -1.531741, 1.670511, -1.100657, -2.379087, -0.894878, -0.893180, 0.743243, -0.150717, -1.123804, 1.852202, -0.406196, 0.456710, 2.020704, -1.742501, -0.793925, 2.386906, 2.307486, 0.443800, -0.119997, -0.076891, -1.659879, -0.889457, -1.126572, -0.249529, -0.593989, 0.040010, -0.240714, -0.715490, 0.554864, 0.795180, -1.442297, 0.052936, -0.078661, -0.597622, 1.051704, -1.071692, -0.223727, 2.197487, -1.612193, -1.712826, -1.049223, 0.373528, 2.014923, 0.005137, -0.339615, -1.464633, 0.775138, 0.582145, -0.074322, -0.039339, 0.849471, 0.970710, 0.563671, 0.296999, -0.233129, 0.470533, -1.027807, 0.873032, -0.990216, -0.344579, 1.991051, -1.243288, -0.773937, -1.275050, 0.688596, 0.709540, 0.739236, -0.509480, -0.944733, -0.829581, -1.459611, -0.372639, 0.138818, -0.877355, 0.625201, 1.679233, 2.587234, -0.724007, -0.063282, 0.543582, 0.400430, -1.418028, 1.380224, 0.326421, 0.066983, 0.167199, 0.475089, -1.813861, 3.863454, 1.073374, -2.143927, -0.872554, 0.615910, -0.798730, -0.294456, 0.348628, -0.091481, 0.109117, -0.269258, -0.346607, 1.694899, 0.030356, -1.116183, 0.986291, -0.276175, -0.776995, -0.478483, -1.746669, -0.769572, -0.561910, 1.534938, 1.124556, 2.106205, -0.465798, 0.045801, 0.302923, -0.612048, 1.678691, -1.837787, 0.538586, -1.294816, -0.819512, 0.389817, 1.618784, -1.748587, 0.811226, -0.944471, 0.257045, -0.257264, -0.590760, 0.943640, 1.442463, 1.421987, 0.125691, -0.936226, -0.744296, -1.298571, 0.503492, -0.308758, -0.465410, -1.531818, -1.183236, -1.071456, -1.544564, -0.244067, 0.556960, -0.082094, 0.799349, -0.904100, -0.317398, -0.365474, 0.008497, 1.167893, -2.393731, -0.089081, -1.607118, 0.319808, -0.245479, 1.544748, 0.199089, -1.733975, 0.216595, -0.862683, -0.145294, -1.028413, 0.084622, -1.060423, -2.092094, -0.240342, 1.188253, -1.615954, -1.358371, 0.879228, -0.023069, -2.407970, 1.552391, -1.072367, 1.003362, -1.643287, -1.803301, 0.656959, -0.507439, 0.557726, 0.067385, -1.834729, 1.011635, 1.004941, 0.527291, -0.029220, -0.881374, 0.431512, -0.389514, 1.000413, -1.430431, -0.432264, 2.279686, 0.478093, 1.150904, 1.233045, 0.040604, 1.723720, -1.932611, 0.069839, 0.177436, 0.644337, 0.138893, 0.811589, 1.318610, -0.764301, 1.222897, 0.435160, -0.500890, -0.956888, 1.042668, 0.406103, -0.920406, -1.319111, -0.644290, 0.142344, 2.281816, 1.089299, -0.089849, 0.068527, -1.626372, 0.575032, 0.363485, 0.281475, -0.342292, -0.460887, -0.206568, 0.119601, 1.010891, -0.589126, -1.207114, -0.679484, -0.164767, 1.188464, -0.433478, -0.405101, 0.388493, -0.398345, -0.739965, -0.368103, 1.494972, 0.452187, 0.345183, 1.209138, -0.487715, 0.970376, -0.248573, -1.562223, 1.440107, 1.230554, 0.653765, 1.069575, -0.323912, -2.215181, -1.011182, -0.115525, 0.012882, 0.047552, 0.783577, 0.294569, 2.004042, 0.162805, 0.283400, 0.695328, 0.796394, 0.027858, -1.512262, 0.748944, 1.294560, 1.038944, 0.635624, 0.665665, 0.771893, 1.920399, -1.047048, 1.028800, -0.659706, -1.084620, -0.567912, 0.174250, 0.249991, -0.791014, -0.760536, -0.749136, 1.555948, -0.580161, 0.845206, -0.926180, -0.906502, 0.487650, 0.332809, -0.579900, 1.205110, 1.287482, 0.364265, 1.583727, 0.112548, 0.051445, -1.189313, 0.872642, 0.310576, -0.088811, 0.344399, 1.320516, 1.215312, 1.235190, -1.629074, 0.813127, -1.010859, -1.643796, 0.158955, 0.139451, -0.357437, -1.579448, 0.161483, -0.228034, -0.317106, 1.931907, -1.722057, 0.196683, 0.116167, -0.658469, -2.491604, 1.023589, -1.249266, -1.226009, -0.150899, 0.336420, -0.841573, -0.719314, -1.546988, 0.696434, -0.362489, 1.359999, -0.484196, 0.368057, -0.177900, -0.341715, 1.894156, -0.243240, -0.255521, -0.790302, 0.562681, -0.375213, -1.206545, 0.229697, -0.841389, 0.909753, -0.991210, -0.594636, 0.059072, 0.555166, -1.362246, -0.349571, 1.230701, -0.356377, 0.932467, -1.165115, -0.839346, 2.457175, 0.191253, 1.599424, 1.003718, 0.663725, 0.338212, 0.942617, 0.988647, 0.165321, -0.464729, 1.979742, -0.872464, 1.571884, 0.607541, -0.302177, 1.640315, -0.420163, 0.453161, 0.400100, 0.282997, 0.769928, -1.912038, -0.157296, 0.401561, -0.732490, 0.026293, 0.737686, 0.087095, -0.507333, 1.907895, -1.874615, 0.458992, -0.154443, 1.769705, 1.985668, -0.225467, 0.542504, 0.936257, 0.033905, 1.457578, -0.088986, -1.168413, -1.355266, -1.840697, -0.152484, -0.534739, -0.547411, -0.693715, -0.164172, 0.298906, -1.306754, -0.111398, 1.443232, 0.876508, 2.276819, 1.654638, -0.440680, -1.122580, 0.873657, 0.246780, 0.699443, 0.954755, 0.892463, -1.270546, -0.306003, -0.267748, -0.857556, -0.805911, 0.325010, 0.425770, 1.254828, -0.624817, -1.070832, 0.655255, 0.939468, 1.943613, 0.539540, 0.148576, -0.119474, -1.293726, -0.715895, -0.012675, 0.691287, -1.104951, 1.323809, 0.737486, -0.074661, -0.754728}, + { 0.023396, 0.136202, -0.429582, 0.913338, 1.063412, -0.576345, 0.285503, -1.278941, 0.502903, 1.722815, 0.692577, -0.011685, 0.316799, -0.966577, -1.228344, -0.016515, 1.389067, 2.539372, 1.007168, -0.479410, 0.100582, -0.439411, -0.270432, -0.622462, 0.078918, -1.170713, 1.862006, -0.287125, 1.183094, 0.045484, -0.589916, 1.155468, 0.638269, 1.363820, -0.470962, -0.076511, -1.185386, 0.361495, -0.171536, 0.001601, -0.931906, 1.387370, 1.151270, -0.987457, -0.668102, 0.399541, -0.695934, 0.016185, -0.481527, -0.185139, 0.539298, -0.199924, -0.638359, 0.593280, 0.331584, 0.411655, 1.064039, -0.089867, 0.396282, 1.144994, 1.540412, -0.210733, -0.640321, -0.575352, 0.917385, -0.991393, 0.986518, 1.862033, -1.580919, 0.453481, -0.263275, 0.511648, 0.159256, 0.931962, -2.609276, 0.968629, -0.914541, 1.700993, -1.256050, 0.698150, 1.823422, 0.037138, 1.438278, 0.986441, 0.589477, 0.188192, -0.849313, -0.089171, -0.590156, 0.770045, 0.299019, -1.537151, -1.476206, -0.379538, -0.930985, 0.245125, -1.023723, -0.599459, 0.166164, 0.935795, 0.410261, 0.037563, 0.909495, 0.828077, -0.075983, 0.094554, 0.535356, 0.619143, 1.248614, 0.335082, -1.496190, 1.100331, 0.200583, -0.355275, 0.763333, 0.111904, 1.534498, -1.359010, 0.639630, -0.479338, 1.012974, -0.136755, 1.095541, -0.578645, -0.620133, -0.775549, 0.948693, 1.549242, 1.603935, 1.593606, -0.540264, 0.027972, 1.075918, -0.787919, -0.034328, 1.928163, -0.719574, 0.056106, -0.620823, 0.133577, 0.955915, -0.149810, 0.496379, -1.087988, 1.085755, 0.660878, -0.538073, -3.163423, -1.515447, -1.059159, 2.464664, 1.544105, 1.475011, -0.179892, 0.444121, 0.019551, -1.734134, 0.416269, 1.646693, 0.147408, -1.700392, 0.650383, 1.484545, -0.914398, -1.126786, -0.479859, -0.873992, -0.585683, 1.547714, -0.222915, -0.348313, -2.355119, -0.827512, 0.784104, 0.774014, 0.412664, 0.100520, -0.358616, 0.938329, -0.694108, -0.499660, -0.172609, 1.805564, 1.917629, 0.982360, 0.279026, 0.293680, -1.320559, 0.052307, -0.695806, -1.412588, -0.308135, 0.142306, 1.801622, 0.383280, 1.175307, -2.158855, -1.340408, -0.295171, -1.230048, -0.003015, 1.181270, -1.630008, 0.167344, -2.170366, -0.164818, -0.555085, -0.149506, -0.212877, -0.686107, -0.595363, 0.615896, 0.675775, -0.260188, 0.450867, 1.341536, 0.339737, -1.379795, -0.227748, -1.122836, -1.095426, 0.906579, -0.200616, 0.194321, -0.029463, -2.104260, 2.849089, -0.738285, -0.485243, 0.043431, -0.637024, -0.734241, -1.437636, -0.435481, -0.416616, 0.689810, 0.000750, -1.139425, 0.490150, 0.747990, 0.583617, -0.075871, 0.177548, -0.135455, -0.815996, 0.411479, 0.383300, 0.383438, -0.480760, 0.209615, -0.161971, -1.145064, 0.711789, 0.645693, 0.246839, -2.123575, 1.365329, -1.192479, -2.123606, 0.548126, -1.809798, 0.650713, -0.344736, -1.962180, -0.121258, -0.769894, -1.552530, 0.939334, -0.631442, 0.739776, -1.375123, -1.197881, -0.229284, -1.298046, 0.012158, 0.107446, 0.536967, -0.125645, 0.620862, 0.844765, 0.936687, -0.164700, 0.536514, -1.171764, 0.005685, 3.069013, -0.781457, -0.660789, -0.556477, 0.120636, -0.400644, 0.803014, -1.447217, -1.888079, -1.035434, -0.000928, -2.431988, 0.784379, 0.406500, 1.668838, 1.741555, 0.341899, 0.718951, 0.514285, -0.039132, 0.652041, -0.240598, -1.178798, -0.049775, 1.927445, 0.729182, 1.210293, 0.150680, 0.185572, -2.233253, -0.916818, -0.711040, 2.288300, -1.408745, 0.116266, 1.467862, 1.913262, -0.873837, -0.458748, 0.113203, -0.383492, 0.955173, 1.556695, 0.145952, -0.812308, 0.146506, 0.291714, 0.260976, 0.383008, -0.604277, 0.228192, -0.355675, -0.260216, -0.573225, 0.746543, -0.371543, 1.146025, 0.242753, -2.011811, -0.034918, -1.525353, 1.786344, 0.542949, -1.075736, 0.764883, -0.107344, 0.477887, -1.542614, 0.235825, -2.035392, 0.745100, 0.861146, 1.236777, -0.553279, 0.195349, -1.317107, 0.300353, 1.147936, -0.529671, 0.699617, 0.665240, -1.009567, 1.284010, -0.639980, -0.133205, 2.781936, -0.575966, 0.701617, 1.406198, 0.990971, -1.274519, -0.485819, -1.769011, -1.266016, -1.157594, -0.015350, 1.376591, 0.717823, -0.389252, -1.065609, -0.761590, 2.085528, -0.481505, 0.654658, 0.319602, -0.467775, 1.008235, -1.182734, 0.019898, 1.823496, 0.891406, 0.311727, -0.756121, -0.417514, -1.602144, -0.986891, -0.407536, -2.256386, 1.501703, -0.710940, 0.447161, 0.095935, 0.496833, 0.121473, -0.049569, 1.514407, 1.342386, 0.426697, -0.275161, -2.898398, 0.351934, -1.170406, -0.546121, -0.724105, 0.082377, 0.165756, -0.756541, -1.211714, -0.695398, 0.641392, 0.034928, -0.068623, 0.565727, 0.089366, -0.004400, -1.106687, -0.334159, -1.375906, 0.055428, 1.831604, -0.176211, 0.375893, -1.187470, 0.013412, 0.338437, 0.171244, -2.284080, -1.666911, -0.889876, 0.666289, 0.100840, -0.297562, 0.561714, -0.289711, -1.973596, -0.739113, 2.448843, -1.330409, 1.798531, 2.261751, -1.111721, -1.336240, -0.855474, -0.263598, -0.595948, -1.601381, -1.073619, 1.129543, -0.590523, -0.833244, -1.449385, 0.166006, 0.420519, -0.276540, -0.583456, 1.281674, 1.338733, 0.245928, -0.717386, 0.027444, -1.103373, -0.284910, -0.461207, 1.350333, 0.647286, 0.862684, 2.205029, 0.424601, -0.386721, 0.661946, 0.161695, 0.704428, -0.057529, -0.219743, 1.232696, -0.516243, -1.700123, 0.776517, 0.690183, 0.737384, 0.422231, 1.241127, 0.214493, -1.161830, 0.507126, -0.370957, -0.596948, 1.951120, 0.294149, -1.613676, 0.670852, -0.628501, -2.113212, -1.230546, 0.652650, -0.666821, -1.097989, -0.033759, 1.096087, 0.554365, 0.098416, -0.744607, -0.541579, 0.200043, -0.482690, -0.436143, 0.927082, 1.151850, 0.117516, -0.297776, -0.828680, -0.143217, -0.546180, -1.568938, 0.487001, -2.863392, -1.249782, -0.527590, 0.735020, 0.987866, -0.317457, 0.051409, 0.684666, 1.539859, 0.641157, 0.634615, -1.505125, -2.249882, 1.209540, 0.579772, -1.084018, -0.029828, -0.390837, 0.537237, 0.086474, 0.536605, 1.084405, 1.973039, -0.772143, 0.705911, -0.517773, 0.845810, -1.058857, -0.457516, -0.333350, -0.263789, 0.837664, -0.463301, 1.029478, 1.382064, 0.259793, -0.225372, -1.509245, -0.020093, 1.321944, -0.243838, -0.376126, -1.575089, 1.517300, 0.155765, -0.477722, 0.410828, -0.443794, -0.936263, -0.029884, 0.409627, 0.228721, -1.515066, -0.294576, 0.840850, -0.833279, 1.553635, -2.003227, 1.237115, -0.542041, -0.377088, 1.485181, -0.528614, 0.816891, -0.572198, 0.349043, -0.853648, 0.778541, 1.635181, 0.840294, -0.305631, 0.254761, -0.043400, -2.622454, 2.061213, -0.164515, 0.039771, 0.484052, -1.265441, 0.350750, 0.131981, -2.120834, 0.481874, 0.823938, 0.980490, 0.192810, -0.450139, -0.824210, 1.621638, -0.574655, -1.278036, -2.015663, 0.335195, -1.713358, 0.853229, 0.900498, -0.388422, -0.172883, 0.887181, 0.750917, 0.094901, -0.610523, 0.178098, 2.032655, -0.841524, -1.939480, -0.780872, -1.066457, -0.843065, 1.679981, 0.227205, -0.555315, -0.370237, 0.117430, 0.551519, 1.526129, 0.636538, -1.462909, 0.685438, -0.734647, 0.101999, -0.588277, 0.309043, 0.333314, -0.278448, 1.088099, 0.784948, -0.910614, -0.420306, 0.836462, -1.010417, 1.035466, -0.221405, -0.085495, 1.395105, 0.391818, 0.401208, -0.092298, 0.827388, 2.522956, -2.014271, -0.161012, 2.864902, 0.408847, 0.069922, -0.433092, -0.000868, 1.083471, -0.228456, 1.120465, 0.211148, -0.907982, -0.343534, -0.393809, 1.009895, -0.664715, -0.913141, -0.428409, -0.720020, 0.165634, -0.932413, -1.008384, 0.357105, 0.026722, 0.295190, 1.136801, -0.559688, 0.034592, -0.376112, 0.727929, 0.036997, 0.884449, 0.494009, 2.446481, -0.840208, -0.419960, -0.717282, -1.224830, -0.545034, 1.448973, 1.006176, -1.266416, 0.692259, 2.476227, -0.563591, -1.948613, 0.338439, -0.737522, -0.007381, -0.775368, -0.116046, 0.556389, -1.886169, -0.337153, -0.694164, 0.836965, -0.172066, -0.351394, 0.901425, 1.480408, -1.216691, -0.475046, 0.698097, 1.554528, -0.284628, 0.840685, 0.872275, -0.366342, 0.835962, 1.506416, 0.495956, 1.017693, -0.807007, 1.004605, 0.086903, -1.419050, -1.585328, -0.331168, 0.646487, -0.041309, 1.538866, 0.084962, -0.791234, 1.169489, -0.150808, 1.008338, -0.480815, 0.662092, -0.997507, -0.169619, 1.786960, 0.925473, -0.596759, -0.234993, -1.215669, -1.686875, -0.562187, -1.172172, 0.197798, 1.799606, 0.636350, 1.669752, 0.440029, -0.667044, 0.761192, -0.671475, 2.913899, 1.551982, -0.163438, -0.876546, 2.158285, 0.012670, 0.376451, -0.057048, -1.525455, 1.677993, 3.204739, -0.806465, 1.409802, 1.163384, -0.775699, 0.132773, 0.095906, -0.627838, -0.607660, 0.751566, -0.890520, 1.028551, -0.162412, 0.571988, 0.309722, -0.260316, -0.286815, 2.647392, 0.496323, -0.261767, -0.225460, 0.353017, 0.356193, -1.002605, -0.149120, -0.829185, 2.084265, 1.920257, -0.967502, -0.673418, -0.282719, 0.658458, -0.220914, 0.012291, -1.436628, 0.966705, 1.111947, 1.886631, 0.641276, 1.333091, 0.101900, 0.248207, 1.781667, -1.317881, 1.367503, -0.467715, -0.001462, 0.188514, 0.410630, -0.256085, -1.549796, 0.540346, -0.431244, -0.576367, -0.141862, -0.124181, -1.455504, -0.151082, -0.190830, 1.158185, -0.412450, 2.146508, 0.719205, -1.432673, -0.315998, -0.466829, -0.761943, 0.515085, 0.538625, 1.379972, 0.155460, -0.720756, -0.165366, 1.393689, -1.286890, -0.829596, -0.471441, 2.188738, 0.034887, -1.816133, -0.126200, -0.161840, 1.403793, 0.696582, -0.774912, -0.300883, 0.439844, -0.913951, -0.068064, 0.249758, 0.145267, 0.393304, -0.567440, 0.911235, 0.996696, 0.481671, 0.241562, 0.395446, 0.971160, 0.058329, 0.915646, 0.659591, 0.722111, -1.827426, 0.533718, 1.039158, -0.468198, -0.818465, -0.595275, -0.419400, -2.270205, -1.218343, -0.953830, -1.663903, -2.222436, 0.286854, -0.063987, 0.594184, -1.423526, 0.086622, -1.888888, -1.348979, 1.264271, -0.305135, -0.741713, 0.431745, -0.100344, -0.082734, -0.329502, -0.167831, -0.713032, -0.639203, 0.830372, 0.134868, -0.226451, -0.080555, 0.254751, -0.903663, -0.416320, -2.049183, -0.753678, -0.562997, -0.640196, -1.117323, -0.695391, 0.621921, -0.689532, 0.138901, 2.714519, 0.863851, -0.071293, -0.025773, 1.226162, -0.184486, 1.172223, 1.653256, 0.360200, -0.095637, -0.631009, -0.897069, -0.715706, 1.184576, -1.666696, -0.592545, -0.954167, 1.027020, -0.080999, 0.211218, -0.060247, -1.106066, 1.721754, -0.688572, -1.257614, -0.531225, 0.811394, -0.257033, -0.613901, 1.008222, -0.350364, -1.112902, -0.221605, -1.100273, 0.490632, 1.063217, 0.507124, 1.221259, -0.088082, -0.590366, -0.134465, -1.954293, -0.019045, 0.656908, 0.086825, -0.913736, -1.394168, -1.267404, 0.168277, 0.315333, -1.051621, 0.086617, 0.082980, 2.832044, -0.595429, -1.056764, 0.889832, 1.419938, 0.421057, 0.973185, -1.183331, 2.182572, -1.446946, 1.025428, -0.813468, 0.313637, 0.134514, -0.350835, -0.977275, 0.180079, 0.502391, -0.893320, -0.639823, 0.016668, -1.182340, -0.177489, 1.205509, 2.025180, -1.730964, -1.145808, 1.260928, -0.941486, -1.709951, 0.238115, -0.700688, 0.798015, -1.303748, 0.532478, 0.079181, -0.711292, 1.404005, -0.203665, -0.360464, -1.992930, -1.941063, -0.692722, -1.742797, -0.289899, 0.273530, 2.180192, 0.841466, -0.284565, 0.152140, -1.385026, -0.402354, 1.203714, 0.377931, 0.614887, -0.408598, -0.206427, 1.058361, -0.375093, -1.930014, -0.345484, 0.083174, -1.745501, -0.950120, 3.047193, 0.297606, -0.062777, -0.851934, 1.205954, -0.918285, 0.267098, 1.353393, 0.400963, -0.119559, -1.653386, -0.198842, 2.248121, 1.041785, 1.014294, 0.383287, 0.276750, -0.211980, 0.342658, 0.512542, -0.010094, -1.807120, -0.430656, 0.907290, -0.378878, -0.641071, -1.916796, 0.051669, -1.970603, 0.383354, 0.647800, 1.094354, -1.222950, -1.010545, -0.143197, -0.680824, -0.911992, -0.917259, 0.286051, -1.664072, 1.747371, -0.494345, -1.214253, 0.502453, 0.140978, 1.845221, 0.648643, 0.328889, -0.835324, 2.105606, 0.282061, 0.249482, -0.142112, 1.758234, 0.593565, 1.924294, -0.839981, -0.062827, -0.162460, -1.064456, 1.687495, 0.501683, 0.248259, -0.300597, 0.850652, 2.149653, 0.408587, 0.255087, 0.372499, 0.881041, -1.065238, 0.392307, 0.629002, 0.645496, 1.253061, 1.097165, -0.519285, -0.585461, -0.228177, 0.529624, -0.707921, -1.102816, -0.665820, -0.640109, -1.563945, -0.336420, -0.757577, 0.035822, -0.879846, -0.681074, 2.558469, 0.292831, 0.446808, 0.984800, 0.477661, 0.933916, -0.124349, -1.929640, 0.592342, -1.240870, -0.005897, -0.072176, 0.109916, 0.532631, -0.909844, 0.236485, -1.247307, 0.719336, -1.187424, -1.873172, 0.049507, -0.997982, -0.008136, -0.179615, 0.943116, -0.506585, 0.610124, -1.790382, -0.637380, 0.038062, -1.475242, 0.960402, -0.197653, 0.825991, -0.871621, -0.145996, -0.298579, -0.927108, 0.921059, -1.120398, 0.643286, 0.631341, -0.441900, 0.139579, -0.529644, 0.495942, 0.124820, 0.972268, 1.533504, -0.753933, -0.195907, -0.658978, 0.812300, 0.348258, 1.782634, 0.525831, 0.592842, 0.075061, -0.638511, -0.145393, 0.758065, 0.310227, 0.580242, -1.017672, 1.669101, -0.149095, 0.984941, -0.370344, 0.067022, 1.483523, -0.652811, -0.735169, -1.566261, -0.754629, 1.827685, 0.280319, -1.807789, -0.957124, -1.342365, -0.890650, 0.700651, -0.960648, -1.253373, -2.016371, 0.781377, -0.562471, -0.581897, -0.149032, 0.996386, -0.629304, -0.261598, 1.114246, -0.167003, -0.681592, -1.206486, 1.502084, -0.370617, -0.655498, 1.313512, -0.738096, 1.227427, 0.133845, -1.593000, -0.171006, 0.016812, -0.035712, -1.179992, 0.444235, 0.679518, -0.097178, 0.452263, -0.231834, -0.061905, 0.016916, 0.661035, -0.321204, 0.585605, -0.301141, 0.730228, 0.725004, 0.507197, 0.929350, -0.862366, -0.130783, 0.038461, -0.866809, 0.270279, 0.318924, -0.069209, 2.193380, 1.306020, -0.691564, 0.303712, -2.144057, -1.672164, -1.851207, 0.839100, 0.147435, -0.721411, 0.329681, 0.794595, 0.324947, 0.690088, 1.942982, -0.097080, 0.538811, -0.951701, -1.267461, -0.686057, 0.308640, 0.700485, 1.251595, 0.288085, -1.333523, -0.436340, 0.993456, 0.336283, 0.060835, 0.638902, -0.208971, -0.875483, -1.436833, -1.259909, 0.159208, -0.624529, 1.235453, 1.960668, 2.265294, 0.722880, 0.272373, 0.471477, -0.028523, 0.260190, 1.260779, -1.171038, 0.136264, -0.591812, -0.085109, 0.487100, 0.453191, 0.420659, 1.089847, 0.904808, -0.545982, 0.490919, -1.167096, 0.814976, -0.060983, -0.128147, -0.625799, 1.166360, 2.554266, -1.097533, -0.037161, 0.752021, 0.898231, 0.397827, -0.506452, -0.112521, 0.000972, 0.950549, -0.192429, -0.908271, -1.263897, -0.111690, 0.479676, -0.623469, -1.654686, -4.138679, -1.835954, -1.140800, 0.794125, -2.149392, 1.228026, 0.021392, 0.604759, -0.860049, -0.844000, 0.558011, -0.394070, 0.561034, 1.221802, 0.972518, -0.611841, 0.330582, 0.209986, -0.560274, 0.525795, -0.867395, -0.105653, 0.063049, -0.916626, -1.104079, 2.005839, -0.732364, -1.463147, -1.206511, -0.522068, 1.783362, 1.380923, -0.330792, -0.911438, 1.912133, -0.058340, -0.894592, 0.374959, 0.469848, -1.110191, -0.127004, 1.740126, -0.662971, 0.364398, -1.175958, -0.845267, -0.617404, -0.106894, -0.957731, 1.083887, 0.182848, 0.097826, -1.756164, 0.361191, 0.849373, 0.862155, -0.289951, 1.126485, 0.992069, 1.404981, 2.283494, -0.001340, -0.216360, 0.685055, -0.770735, -0.399487, -0.441503, -1.101333, 0.205113, -0.364961, 0.195312, 1.356274, 0.367577, 0.684025, -1.933821, 2.020367, -0.966925, 1.876325, 0.250455, -1.182922, 0.838751, -0.848364, -0.391268, -1.648649, 0.270056, 0.386856, 0.896792, 0.443080, 0.421881, 0.220919, 0.775188, 0.274056, 1.136434, -0.914596, -1.105468, 1.960688, -0.738037, -1.184684, -0.411563, 1.661435, 0.032150, -0.236232, -1.315447, 1.590860, 1.538563, 0.874176, 0.576845, -0.227200, -0.882198, 0.361813, -0.148709, -0.062594, -0.841737, -0.756088, -0.025333, 0.030301, -0.456330, -0.014243, -1.125299, 0.791257, 0.161927, -0.579588, -1.875176, -0.826973, -0.119252, 1.101134, 0.024724, 0.419482, 1.107122, 0.672548, 0.574127, -0.171276, 0.371989, 2.638032, 1.746879, 0.243066, -0.230460, 0.310734, -1.275956, -0.116330, 1.868599, -0.388425, -0.447892, 0.786226, -0.275765, -0.352552, -0.417905, 0.030294, -0.096711, 0.931218, -1.520796, -1.406463, -2.432984, 0.614980, 1.507652, -0.411919, 0.999595, -3.266768, -0.167305, 1.549981, 0.840745, 0.394237, 0.887500, 1.337820, -0.733737, 2.117126, 1.276480, -0.427666, 0.098676, -1.084921, 0.605786, -0.129802, -0.450738, -0.012783, -0.039487, 0.383089, -0.422961, -1.339078, 1.425082, -0.707621, -2.178144, 1.540504, 1.128867, 0.487667, -0.247510, -0.866662, 0.520345, -1.173509, -0.674520, -1.229432, -0.527746, -0.144087, 1.340454, 1.774964, -0.752070, 0.471210, 1.772466, -0.035121, 0.933138, -0.027395, -0.093178, 0.362352, 0.355558, -0.930105, -1.704352, 0.929236, 1.116125, -0.935670, -1.820729, -0.997073, -1.869467, 0.690508, -1.458757, -0.268961, -0.644186, -0.971382, -0.207644, 1.050033, -1.079602, -0.517690, 1.388563, -0.925280, -0.511390, -2.386877, 0.386431, 0.972395, -0.334688, -0.739947, 1.566245, 0.413413, 0.630930, -0.375925, 0.421686, 1.829775, -1.093943, -0.885953, -0.451536, 1.401307, -0.116740, -1.472080, 0.230120, 0.041125, -0.522304, -0.109951, -0.380358, -0.474135, 0.186144, -1.068480, -0.349949, -0.058732, -0.101279, -0.624958, 0.421238, 0.079521, 0.226451, 0.330446, -1.515795, -0.375161, -0.841313, 2.106468, -0.873785, -0.407179, -0.152398, -0.429888, 0.148620, 0.862050, 0.138762, -0.170486, -0.971400, -1.765626, 0.206401, 0.627441, -0.656111, 1.786710, 1.703382, 1.165944, -0.279779, -0.045727, -1.187223, 2.043474, 0.798026, 1.230852, -0.262742, 0.316060, -0.364685, 0.330564, -0.857027, -0.751561, -0.822463, -0.892342, -0.877937, 0.955756, 0.207628, -0.452704, 2.316229, 0.968874, -0.144562, 0.329772, -0.893142, 0.216800, -1.146238, -1.877710, -1.245870, -2.638468, 1.626978, -0.606653, 0.612692, -1.042984, 0.280351, 0.064535, 0.914523, 1.562372, -0.086492, -1.725664, 0.554311, 1.215640, -2.628251, 0.369850, -0.809344, 1.692258, -0.622908, 0.164238, -0.311946, 0.791535, 0.255095, 0.142770, -0.518972, 0.241471, 0.911635, -2.448279, -0.315110, 0.882662, -0.179064, 0.992140, 1.084295, 1.283118, -1.180928, -0.167381, -0.931014, 1.007953, 0.487981, 0.410414, -1.125248, 1.080264, 2.172207, -1.643838, -0.950704, 2.240215, 0.433282, -0.009187, -0.145634, -0.229556, 0.674855, -1.174463, -0.915577, 0.186573, 0.319737, 0.842539, -1.521999, 1.348312, 0.026901, 0.324622, -0.019784, -0.592992, -0.437450, -1.016367, -0.967641, 1.069485, 0.477719, 0.341111, -1.873292, -0.865953, -0.775751, 0.712023, -0.329089, -1.488686, 1.256587, -0.636032, -1.793551, -0.311343, -1.145982, -0.054065, 0.677109, 0.037941, 0.080239, 0.731041, -0.199110, 0.444112, 1.162807, 1.911987, -0.645764, 0.787155, 1.836814, -1.095626, 1.029598, 0.251865, 0.126167, -0.086977, 2.741215, 0.719721, 1.000606, 0.458922, -0.024610, 0.698153, -0.359651, -0.237589, 2.351208, 1.470371, 0.515687, 0.869332, 0.126476, 3.883470, 0.186592, -1.089796, -1.779546, -1.353610, -0.936374, -0.370747, -1.225460, 1.307343, -0.396353, 1.237037, -0.310230, 1.998615, 0.014708, -0.662009, -0.466426, 0.202250, -1.620504, 1.253677, 1.443136, 0.692793, 0.399387, -0.478853, -1.461639, -0.345262, 0.200887, 1.786089, 0.683155, 0.628412, 1.344692, -0.595442, -0.847524, -1.326938, -0.150335, -1.955917, -2.806731, -2.014990, -0.104551, 0.718086, -0.169799, 1.045719, 2.108074, 0.296045, -0.094833, 1.921723, 0.224170, -0.762066, 0.371275, -0.114867, 0.635206, 0.488845, 0.588798, 0.935705, 0.927778, 1.811801, 1.283815, 0.849260, 0.239599, 0.125858, 0.305383, 0.142462, -0.023465, 0.615983, -0.148336, -0.520158, 0.865752, -1.586879, 1.220383, -1.075337, 1.284307, -1.342182, -1.484263, -0.377195, -0.746626, 0.128483, 0.531477, -0.262316, 0.639651, 1.256555, -0.802813, 0.354839, -1.439367, 2.038917, 0.115188, -0.002961, -0.100520, -2.249591, -0.651391, -2.083083, -0.099053, -0.439976, 0.060259, -1.600097, 0.291175, -0.303681, -0.704441, -0.585825, -0.875529, 0.611901, -0.920216, 0.470516, -1.147290, -1.417867, -0.290078, 0.225656, 0.116712, 0.748802, 0.950469, 0.473076, 1.286392, 0.304649, 0.563091, -0.521579, 1.106358, -1.009653, 0.559653, -0.176687, -0.272426, -0.335814, -2.104688, 0.144299, -0.118132, 0.766873, 0.432370, 0.112561, -0.366071, 0.127473, -2.149837, -0.220517, 1.291354, -0.234275, -0.612614, -0.252934, 1.457823, -0.748966, -0.852400, 1.444541, 0.330739, -0.726693, 1.837498, -0.089930, -1.036981, -2.828063, -1.612210, 1.075947, -2.108839, -0.006844, -1.137033, 0.776847, 0.536834, -0.051561, -1.423991, -0.481238, 1.833058, 0.433326, 0.844904, -1.314044, 1.123624, -1.663119, 0.639671, -0.130581, -1.754453, -0.161802, 1.429815, 0.559547, -1.581161, 0.266619, -0.504975, 0.620295, -0.636545, 0.737502, -0.571106, 0.524705, -0.229171, -1.054068, -1.439171, -1.209349, -0.943157, 0.553638, -0.891821, -0.251170, 1.020892, 0.334475, 0.084033, 0.262309, -0.167865, -1.264099, 2.333211, -0.539337, 1.985914, 2.077649, -0.581791, 1.739788, -1.341000, 0.650356, 1.384642, 0.753769, 0.042600, -0.875205, 0.276566, 0.776265, 1.795568, -0.138639, 0.258949, -1.395009, 1.032450, -0.033395, -1.017449, 0.197769, -0.331667, -0.406614, 1.763131, -0.390460, -0.000224, -0.536840, 1.721577, 0.390280, -0.649278, -0.358400, 1.017267, 0.359298, 3.036785, -0.255413, -0.088337, -1.027438, -0.836069, -0.574555, 1.323916, 0.781015, -0.359389, -1.024314, -1.218595, -0.387437, -1.064479, -0.276786, -0.815232, 1.460104, 0.303738, -0.326294, 0.391765, -1.133664, 1.095642, 0.466745, 2.757904, 0.046717, 1.673245, 0.164456, 1.075585, -0.824465, 0.830461, -0.281511, -0.603690, 0.795431, -0.400389, 2.321805, 1.553955, -1.253872, -0.920605, -0.200004, 0.092007, -0.545655, -1.495432, 0.392425, 1.911075, 1.806849, 0.891840, -1.879598, 0.548018, 1.412529, -0.201651, -0.534491, 0.444701, -1.397474, 0.650712, 0.026161, -1.040076, -0.336743, 1.104062, 2.362363, -0.303084, -0.497921, -0.026604, 1.776820, 0.722540, -0.356284, 1.236339, -0.162178, 0.328618, -0.611726, 0.099263, 0.538875, -0.556045, 0.524705, -0.429823, 1.560737, 1.759803, -1.162496, -0.928441, 1.378210, 0.995570, -0.125118, -0.158362, -1.040534, -0.646810, -0.526419, 0.088274, 1.096575, 1.375384, 1.005730, -0.730378, -0.590933, 0.670546, 0.748929, -0.937335, 0.240316, 0.027845, -1.099000, 2.503979, 0.516242, 0.601423, -0.029485, 1.047600, -0.778150, -0.208256, 2.087371, -0.109030, -0.550065, 0.268740, -1.592542, 0.165544, 1.303491, 0.503488, 1.620395, -1.384388, -1.442777, -0.219532, 0.586025, 0.179573, -1.047919, -0.406106, -0.670253, -0.454711, 0.086696, -0.221635, -0.107341, 0.096905, 0.501375, 0.389902, -0.718962, 0.369154, -0.545792, -0.903070, -2.083394, -0.464496, 1.229965, -0.796925, 0.112636, -0.412816, 0.386996, -0.566717, 0.283490, 0.764420, -0.328507, -0.952816, -1.216502, -1.342917, -0.488431, -1.182830, -0.108431, 0.067645, -0.515138, -0.942595, 2.122972, -0.560578, 0.901717, -0.250907, 1.835881, 0.140618, -1.529766, 0.393592, 0.320063, 0.321391, -0.576975, 1.229006, 0.982869, -0.244458, 0.199389, -1.160916, 0.909540, -0.932892, -0.527376, 0.539332, 0.401679, -0.986540, -0.430322, 0.519027, 1.071460, -0.397876, -0.038977, 1.359983, 1.196802, -0.789126, 2.101725, 1.374994, 2.572261, 0.841499, 0.397886, -1.562937, -0.112234, 1.381675, -0.962275, 0.170141, -1.798316, 0.084803, -0.541409, 0.670020, 0.606919, 0.595105, 0.107764, -1.355153, -1.697404, -0.696932, 0.491681, -0.014179, -0.624061, -1.099836, 0.409383, -0.480916, 0.531477, 1.038150, -1.146378, -0.130510, -1.692715, 0.042282, 0.372224, -0.962810, -0.350911, 0.716214, 0.364914, -0.632124, -0.340206, 0.967126, 0.728422, -0.388158, 0.282732, 0.789648, 1.134498, -0.657309, 0.527860, -1.792478, -0.167761, 0.862983, 0.195331, -0.080791, 0.519439, 0.002223, 0.805881, 1.104132, 1.831897, 0.621113, 1.238027, 0.741433, 0.908927, 1.305232, -0.215425, -0.877278, -1.341962, 0.939129, -0.783505, -0.272113, -1.947798, 0.122060, 0.360423, 1.147790, -0.277303, 1.989759, -1.446570, -0.140685, 1.378022, 0.788467, -1.021896, 2.318402, -0.355808, -0.335638, 1.881346, 0.870179, 0.808606, -1.343580, -0.523407, 0.055494, -1.591607, 0.995959, -0.055108, -0.422898, 0.709051, 0.086386, -0.678440, 2.149417, -0.552571, 0.085744, 0.258830, 1.617742, -0.532514, -1.564692, -2.305881, -1.821433, -0.224066, 1.255261, 1.747371, -0.234119, 2.396160, 1.724551, 1.163899, -0.575704, -0.063996, -0.857813, -0.834383, 0.156127, 0.209251, -1.835095, 0.153471, -0.709798, 0.755863, -0.551625, 0.521749, 0.465330, -0.114019, 0.615403, 0.083398, -0.635300, -0.709101, 1.454262, -0.253375, -1.005333, 0.533846, 0.047658, 0.718758, -1.039533, -0.634423, -0.590114, -0.680550, -1.563773, -2.893270, -0.167443, -0.803513, 0.127553, 2.527076, -1.422707, -0.023917, -0.963830, -1.369666, 0.899698, -1.252324, -0.996970, 0.683784, -1.651099, 0.627126, 0.453215, 0.921522, 0.593216, -0.165564, 0.631765, 0.444843, 0.581436, -0.525560, -0.791064, 0.107712, -0.014528, 0.891228, 0.117661, 0.058619, 1.176974, 0.594804, 1.984418, 1.693246, 1.197847, -1.257990, 0.319728, -0.242894, -0.773885, -0.733213, 0.716193, 0.489327, -0.041426, -0.064122, 0.812000, 0.936097, 1.028832, -0.511751, 0.126844, 0.394735, -0.806154, -1.219645, 1.478149, -0.053347, -1.460086, -0.544855, 0.757115, 0.863290, -0.177337, -0.165244, 0.099941, -0.678255, 0.515679, -1.848812, 0.758705, -2.474852, -0.751650, -1.620979, -0.115591, 0.364014, -2.321833, -0.106576, 1.357903, -0.218782, 1.791901, 0.774550, -0.002739, -0.679866, 0.750094, 0.266076, 0.051728, 0.019607, 1.422822, 0.299407, -0.133841, 0.859156, -0.556310, -0.697764, -0.256397, -1.642769, 0.699025, -0.519203, 1.430415, -0.881879, 0.484044, 0.260979, -0.456964, 1.627451, 0.084798, -0.976754, -0.233288, -1.704769, -1.307735, 0.550205, 0.150518, 1.165306, -0.539539, -0.146413, 1.061992, -0.758994, -0.387400, -0.585005, 0.181850, 0.644809, 1.268177, 1.803598, -0.991733, 1.373247, -0.359128, 1.015682, -1.947214, 0.043234, -0.001575, 0.499111, 0.766251, 0.525607, -0.973818, 0.704956, 0.012079, -0.126757, -1.280846, -0.332524, 0.149346, -1.327154, -0.925653, -0.440199, -0.287511, -0.144319, 0.661769, -0.525487, -0.836026, 0.368588, 0.639568, 0.091057, 0.571375, -0.060304, 0.624023, 1.522227, -2.793682, 1.726238, 0.453593, 0.609008, 1.275096, 0.511909, -0.123992, 0.688722, 1.985337, -1.772211, -1.391257, -0.676280, -0.568636, 0.033752, -1.633726, 0.873640, -1.736304, 1.365991, 0.647976, 0.073811, -1.111422, -1.196441, -0.559148, -1.393399, 0.059698, 0.199888, 1.396459, -1.092758, 1.602782, -0.050815, 1.413520, 0.068559, -0.201873, -0.043918, 0.424163, 1.619497, 0.015525, 0.404375, -1.443340, -1.010655, 0.851043, 0.790057, -0.007258, -0.420197, 0.435869, 0.710429, 0.158712, -1.082040, -1.318776, 0.939401, -0.105110, 0.816477, 0.070874, -1.033731, -0.386181, -0.415002, 0.198960, 0.820321, -0.376434, 1.276832, 0.257271, 1.755904, -0.003458, -0.076208, -1.208352, -1.804682, 0.296609, 0.139085, -0.054245, -2.035319, 0.970683, -0.821253, -1.031936, -0.423794, 1.283106, -0.688766, 0.544404, -0.438124, -0.229161, 1.301568, -0.431928, 0.606393, -0.698200, 0.304180, 0.029147, 0.375599, -1.351105, 0.900150, 0.388963, 1.171193, 2.344635, 0.146096, -0.109335, 2.364451, 0.153040, -0.422118, 0.437701, -0.583745, 0.198210, 1.118482, -1.010813, 0.801799, -0.596312, -0.455718, -0.353311, -0.320657, -1.885875, 0.513365, 1.138190, -1.733481, -0.018697, -0.391343, 2.347297, 0.799943, 0.567006, -1.738736, 0.388259, -0.986021, 1.040145, -1.588279, 0.323288, -0.731162, 0.686939, 0.853229, -0.133099, 1.705233, 1.295698, 2.022754, 1.284511, -0.729735, 0.116994, -0.047425, -0.731509, 1.406151, -1.153381, 0.831360, 0.222853, -0.844304, 1.154945, 0.949023, -1.228280, -0.463307, -0.030382, 2.778160, -0.351958, -0.442141, 1.291833, -0.219402, 1.343892, -0.391316, 0.395417, -0.625134, 0.283384, 0.147260, -0.730574, 1.316147, 0.247630, -0.880871, -2.586325, -0.330452, 1.384132, 1.144669, -0.152467, -0.543281, 0.328366, 0.180502, -0.780289, -1.317479, -2.363408, -1.110674, 0.932573, -1.010301, 0.872992, 1.024715, 1.667442, -1.066682, 0.119430, -0.945889, -1.545491, -0.025987, 0.049981, -1.492102, 0.421168, -0.586291, -1.050972, 0.681141, -1.048661, -1.701894, -2.062698, -0.352608, 1.921850, -1.063272, -0.407018, -0.570105, -1.980815, -0.309899, 1.906693, 1.120801, -1.160982, 0.797542, -0.760950, -0.843239, 0.435394, 0.354210, 1.877023, -0.586401, 1.400299, 1.745194, -1.530511, 0.994616, 0.274656, 0.018746, 0.094474, -0.531335, -1.253052, -0.297966, 0.160572, -0.743083, 1.206007, -0.154767, -0.985291, 1.211778, 0.346420, -1.742407, -0.574992, 0.122642, -0.396825, -1.325173, 0.872692, -0.271627, -0.125470, 0.487571, 0.010896, 2.350114, -0.768109, 1.255751, 1.908855, 0.069097, -1.381469, 1.478807, -0.441334, -0.010916, -0.052461, -0.327332, -1.249091, -0.228497, 0.343493, 0.553302, -0.417947, 0.723268, -0.538031, -1.296249, -0.531707, -0.251323, -0.915976, -1.265807, -0.654067, 1.253991, -1.547182, -0.073863, -0.081396, 0.841072, -0.659733, -0.129227, 0.792806, 1.210451, 1.207397, 0.256145, -0.872489, 0.445668, 0.818113, 0.510363, -0.016008, -0.517783, -0.386557, -2.503783, -1.379900, -0.373364, 1.795172, -0.441774, -0.429443, 2.955632, -0.505453, -0.856440, -0.648766, -0.600016, 0.192899, 0.867814, -0.370865, 0.273610, -0.379328, 0.904703, 0.697574, 0.325614, 0.011099, 0.113809, 1.001025, 0.154618, 0.613886, -1.282622, -0.461135, 1.170904, 0.955175, 1.058246, -1.100014, -0.728870, -0.071626, -1.304059, -0.133545, 0.168848, -0.040810, -0.992738, 0.385104, 0.033290, 0.611137, -1.015726, 0.018826, 0.456307, 0.125846, 1.018402, -1.322706, 0.284526, -1.300949, -0.366066, -0.226848, -0.417287, 2.126517, -0.033296, 0.886329, -1.372018, -1.628435, 0.905553, 1.162221, 1.178142, 1.164123, 0.018303, -1.063177, -1.044765, 0.932888, -0.542540, -1.341149, -0.841944, 0.181666, -0.760307, 0.365638, 1.136443, 0.586827, -0.549936, -1.024233, 0.686019, 1.172436, -1.195500, 1.648444, -0.860789, 1.984140, -0.562530, 1.068550, 0.820052, 0.004925, -0.905243, -0.585923, 0.812571, -1.194839, 1.588908, 0.154142, -0.667513, -0.976715, -0.900715, -2.137851, -0.029275, 0.462374, 1.365431, -0.609242, 0.437064, 0.294196, -0.427206, -0.547533, 1.178134, 0.981524, -1.604185, 0.410802, 0.800596, 0.768629, -0.135316, -0.635364, 0.466460, 0.855248, -0.306327, -1.619158, -1.690005, -0.069627, 1.103687, -0.189757, 1.203529, -2.072472, -0.845851, -1.808120, -1.023832, 2.480781, 0.838583, -1.197654, -0.293655, 1.387628, -0.457815, 1.026479, 0.806395, -0.675611, 0.699221, 0.466378, 1.048193, -0.663246, -0.591728, 2.266394, -0.225591, 0.371992, 1.119077, 0.708802, 0.103001, -0.728260, -2.073881, 0.095259, 0.273308, 0.372303, 1.119573, 1.714306, -1.045988, 1.329805, 1.257593, 0.445072, 0.356109, 0.506070, 0.699784, 0.804387, -0.189716, 0.411811, 0.169152, -0.946946, -0.307675, 0.304744, 1.064546, -2.413297, 1.231530, -0.968764, 0.137263, -1.599090, 0.699505, 0.132318, -0.857124, 1.988155, 0.288182, 1.988706, -0.513385, -0.336860, 0.521630, -1.514936, -0.784927, 0.569918, 0.199542, -1.338082, 0.021224, 0.935326, -0.613849, 1.326967, -1.979565, -2.126448, -1.154053, -0.660659, 0.794577, 0.550259, -0.106965, 0.614137, 0.729337, -1.040217, -0.038715, -0.587294, -0.553673, -0.185759, 1.294328, -0.854042, -0.634073, -0.554527, -0.449931, 1.073679, -0.882607, -1.214780, 0.338811, 0.344038, 0.636910, -0.157353, -1.846560, -0.260070, 0.114208, 1.377726, -1.232429, 1.353148, 1.247317, -1.171763, 0.054241, 0.816722, 0.747489, -1.178158, 0.973666, -0.065321, 0.842525, 2.547061, -0.601756, 0.995048, 1.498048, 0.021633, -0.876766, -0.537411, 1.289243, -0.360377, -0.610149, 0.565972, 1.627097, 0.554024, -1.445850, 0.863185, 1.275448, -0.031643, -0.219922, 0.298120, 0.455954, -0.224557, -0.383242, -0.086660, -0.356925, -0.365605, -1.893211, 2.386007, -0.990333, -0.617024, 2.851954, 0.865904, -0.261912, 0.119204, -1.194053, -0.013219, -0.939413, -0.036556, 1.424709, -1.436188, -0.519601, -2.468373, 0.357839, -1.604210, -1.910444, 1.040246, -0.493924, -0.792191, -1.733001, -0.802755, -1.451472, 0.665547, -0.271514, -0.562422, -2.437899, -0.257995, 0.758206, -0.317461, -2.512169, -0.236062, 0.766459, -0.405509, 1.140516, -0.358089, -1.154601, 1.077104, 0.044310, -0.386322, -1.075785, 1.593582, -1.342062, -1.979064, 1.048067, 0.285462, -0.158958, -1.277652, 1.032558, -0.597342, 0.834443, 0.660360, -0.224562, 0.346085, -0.729058, -0.646485, 0.252244, 0.198240, 0.561815, -1.066799, -1.088456, 1.454345, 0.844808, 0.948891, -1.046167, -1.988542, 0.789948, -1.339330, 0.003825, -1.983165, -0.435328, -1.548316, 0.598547, -0.575229, 0.439156, -0.470693, 0.681816, -0.781323, -0.322944, 0.550436, -0.858773, 2.913545, -1.041819, 0.627729, 1.451136, 0.708537, -0.644942, 0.527231, -1.097292, -0.143870, 1.190734, -1.592114}, + { 1.121196, 0.913049, 0.224727, 0.295493, 0.521386, 0.013404, -1.444977, 0.159320, -0.538241, -1.485190, -0.168179, -0.148022, 0.244442, -1.098847, 0.927612, -0.459868, 0.558132, 0.112635, -1.883764, 1.447916, -0.790459, 0.438495, -0.197598, -1.250908, -0.909022, 0.565177, 0.818447, -0.727536, 2.383914, 1.743934, 1.012787, -0.830486, 0.594124, -0.914230, 0.546148, 0.739813, -0.101400, -0.128409, 0.030703, 0.949701, -0.918097, -0.533300, 0.909383, -1.407817, 1.170536, 0.997454, -2.253640, -1.772435, 0.283779, -1.077617, -0.708884, -0.995295, -2.091091, -1.598175, -0.180059, 0.717547, -1.494035, 0.676262, 0.649709, -1.000375, 0.808527, 0.317382, 1.849452, 1.449615, -1.522745, -1.345543, 0.332440, 2.538022, -0.994736, -0.157677, 1.415439, 0.486502, 0.660436, 2.549561, 1.040580, 1.802884, -0.661976, 1.653549, 0.029328, -0.623641, 0.156057, 0.235251, -0.479518, 0.606433, -0.229856, 0.530086, -0.551689, -1.561033, -1.039527, 1.227786, 1.003659, 0.187098, 0.336289, 3.351291, 0.219968, 1.023472, -0.140257, -0.999061, -0.859904, 0.640717, -1.186790, -1.451021, 0.236924, -0.158936, 0.592518, -0.138264, 0.017822, 0.283043, 1.372033, -0.993840, 3.012255, 0.412876, 1.245675, -0.586758, -0.014220, 0.820505, -0.325020, -0.743616, 1.222894, -0.168395, -1.063042, -0.424458, -1.017871, -0.653105, -0.826468, 0.989025, -0.490105, -0.641299, -0.620540, -0.584256, 0.155319, 0.282093, 1.107112, -0.688719, -0.112396, 0.429191, 0.629959, -0.674649, 0.299664, 1.482204, 0.382797, -0.550012, -0.356439, -0.433218, -0.572327, 0.955976, -0.656451, -0.643470, -0.809981, 0.870911, 0.150161, -0.762582, 0.940265, 0.792850, -0.104737, -0.003069, -0.501074, -1.032639, -0.065221, 0.833108, 1.758100, 0.212069, -1.146743, -0.345180, 0.862865, 1.761196, -0.158426, 1.628370, -1.251088, -0.404281, 2.564279, -1.290958, 0.095266, 0.680042, -0.599946, 0.690529, -2.186131, -0.156809, -0.603077, 0.915099, 1.988212, 0.410072, 1.027901, 0.980898, -1.174951, -0.459079, 0.020213, -0.427800, 0.862487, 0.503956, -1.553622, 0.437637, -2.044690, -0.425065, -1.992793, 0.588892, 0.340164, -1.734353, -0.681639, -0.200937, 0.175243, 0.518253, -0.785994, -1.568015, 0.050532, 0.093602, 0.912494, 0.172007, 1.979593, -0.115701, 0.520212, 0.015835, 2.218622, -0.617200, -0.387751, -0.461965, 0.008631, -1.208684, 0.299489, 2.273443, -0.394587, -1.143619, -1.214116, -0.314194, 2.746845, -1.313488, -0.935482, 1.086948, -0.973555, -0.089520, -0.509494, -1.439529, 0.951941, 1.350341, 0.364112, -0.194887, 0.663536, 0.394081, 0.736745, 0.466376, -1.445491, -0.877419, 0.626182, 0.112890, -0.430062, 1.319254, 1.584152, 1.635985, 0.028395, 0.379133, -0.858582, -0.460376, -1.470923, 0.957338, 0.358216, 1.388771, 0.559597, 0.693970, -1.453407, -1.997506, 0.123726, 0.103422, 0.831810, -1.821431, -0.334391, 0.286385, 1.075966, 0.714123, 0.182323, 0.695506, 0.659939, 1.157310, 1.543703, 1.129990, 0.756094, 0.782107, -0.206242, -1.264899, 0.344629, 0.127976, -1.050204, 0.149391, -0.342867, -1.167233, -0.896938, 1.079780, 0.469922, -0.945153, 0.628462, 1.616045, -0.503894, -0.131417, -1.007243, 0.998697, -1.284925, 0.315036, 1.131767, -0.598475, -0.763755, 0.069760, 0.797599, 0.708562, -1.249242, 0.818001, 0.128692, 0.247091, -0.161016, 0.686158, 0.323925, -1.270214, -0.664460, 0.408240, 0.935232, 0.352592, 0.463682, 1.127235, -0.255857, 0.566028, 0.568350, -0.035707, -0.402232, 0.640763, -1.002903, -0.565941, -0.150687, -1.431764, 1.168222, -0.509102, -0.312772, -0.195573, 0.323634, -0.654690, 0.389272, 0.155857, -1.737193, 1.244348, -0.736734, -0.944448, -1.500382, -0.393093, -0.541649, 1.129322, 0.293764, -0.162128, -2.096403, 0.673840, 1.430272, 0.925517, 0.604122, 0.389791, 0.382815, 0.018361, 0.223297, 0.364330, -2.222618, -0.572755, -0.179977, 0.623336, -0.243666, -1.402885, -1.614455, -0.254631, -1.538222, 0.708916, 1.932440, -0.730311, 1.712572, 1.178687, -0.018815, -1.741824, -1.379737, -1.002322, 0.611046, -0.895245, -0.862830, 0.007659, -1.065627, -0.128319, -0.061685, -0.626460, 0.664611, -1.477729, -1.893656, 0.902734, -0.953751, 1.232308, 0.275728, 1.545748, 1.189662, 0.226549, -0.770528, -0.281315, 1.421401, -1.417377, 0.337632, 0.011348, -0.614507, 1.882470, -0.546018, 0.398534, 1.540267, 1.324163, 0.059688, -1.873617, -0.155979, 0.521821, -0.608665, 0.236033, 0.087128, 0.576215, 0.595842, 1.078415, 0.734910, 0.507454, -0.214250, -1.077074, 0.153826, -1.014509, 0.692207, 1.311470, 0.697180, -0.249959, 0.028305, 0.094977, 0.131384, 0.708443, -0.992103, 1.153657, -0.529387, -0.204991, -0.135109, 1.270139, 1.937257, 0.402325, 0.561168, 0.365565, -0.110630, -1.036467, 0.589745, 0.323261, -1.579593, -0.115423, -0.175995, 0.427877, 0.457281, -0.053168, 1.933620, -0.318937, 2.805857, -0.503121, -1.276002, -0.608733, -0.038350, -0.532141, 0.288323, -1.279881, 0.454279, 0.885709, 0.384374, -0.707655, -0.115121, 0.250070, 0.466229, -2.334666, 0.416238, 0.410952, 0.817884, 0.311380, 0.021374, 0.594448, 0.362567, -0.593646, -0.647269, -1.014824, -0.853950, -1.033395, -0.578113, -1.763574, 1.064649, -1.042141, 0.721200, 0.820323, 0.504960, 1.753738, 1.471586, 0.146380, -1.068101, -1.173753, -1.038075, -0.010970, -0.544359, -0.290128, 0.870345, -1.061759, 0.377274, 0.558368, 0.006421, -0.294461, 1.165415, -0.118640, 0.500286, -0.227881, 0.235906, -0.260223, 0.879910, -0.376681, 0.125253, -0.960209, 0.507490, -0.589756, 0.961868, -0.696753, -0.409597, 0.130121, -0.112333, -0.366514, 0.255455, 0.615590, -0.630655, -1.317281, 1.046315, -0.317096, 1.438108, -0.625735, -2.762111, 1.120267, -0.811210, -0.570747, -0.487522, -1.156121, 1.547127, -0.006320, -1.003309, -1.464725, 1.315346, -0.241042, -0.189228, 0.509418, -0.417807, -0.274713, 1.553774, -0.223212, -0.460495, -1.340979, 1.415028, -0.776364, -0.171084, 1.042866, 0.356066, -1.366609, -0.169600, -0.417075, 1.463557, 0.465179, -0.250811, 1.173648, 0.550085, -0.641996, -0.360981, 0.723621, -0.026008, -0.795437, 0.990667, -0.364679, -1.277009, 1.364988, -1.587727, 1.266973, -0.255348, 0.152481, -0.959966, 0.027337, -0.051159, 0.871901, 1.549524, 0.153019, 2.086485, -1.313331, -0.365556, 1.254617, -0.000788, -1.098006, 0.118956, -0.542988, -1.173139, 2.228840, 0.533761, -1.155824, 0.291308, -0.248067, 1.389960, -0.651584, -0.714495, 0.006152, -1.216552, 0.929467, -0.218075, 0.477205, 0.115345, 1.178099, 0.717031, -0.063874, -0.578262, -0.884950, 0.166921, 1.020278, -0.659600, -0.720926, -0.031397, -0.561351, 1.540916, -0.985656, -1.143263, -1.552798, 0.679999, 0.892846, -0.431267, -0.207879, -0.306127, -0.763220, 1.235325, 0.382557, -2.203262, -2.477513, 0.835286, 1.464192, -0.301626, -0.043183, -1.526922, 0.212803, -0.674223, -1.200185, 1.150307, -0.250118, 0.428274, -1.722597, 0.216660, 0.944810, -2.706496, 1.567682, -0.263921, 0.941895, -0.856352, 0.534401, -1.927845, -1.365751, 1.465001, -0.898772, -0.333476, -2.192845, 0.673378, -0.428384, -0.356294, -0.232795, 0.580580, -0.021559, -1.838800, 1.250482, -0.393340, -1.522227, -0.703831, 1.136576, 0.588878, -1.167015, -2.628160, -1.430623, 1.751101, -0.274433, 1.493512, -1.183533, 1.045827, 0.464424, -1.009340, 0.064005, 0.859701, 2.187041, 0.357460, -1.603826, -1.619874, 0.071732, 1.234178, -1.068889, 1.671384, 0.232646, -0.462272, 1.158782, -0.009762, -1.572829, -0.027571, 1.139675, -0.552253, -0.777062, 0.242732, -0.062879, 0.651997, -1.719481, 1.141301, -1.648873, 2.165616, -1.075853, 0.266777, 0.285473, 0.486501, 0.459955, -0.643081, -1.165501, 0.578168, -1.086284, -1.348497, 0.431840, -0.103234, -0.164866, 0.219275, -0.324615, -1.534822, 1.432377, -0.022663, -0.985556, -0.272494, 0.217223, 0.451287, -0.674441, 0.459917, 0.813772, -0.925176, -0.738707, 0.057353, 0.151007, 1.341390, -0.541923, -0.045459, 0.552862, 0.774107, 1.100468, 0.537163, 0.171553, 0.703336, -2.126280, 0.838574, -0.841920, -0.625176, 1.784743, -2.616980, -0.832500, -1.508647, 0.675482, 0.829694, -0.072344, -0.743607, -0.065532, 0.587392, -0.478479, -1.095798, 2.689657, -0.148836, 1.262029, -0.568357, -1.287765, 0.629114, 0.746980, -0.025607, -0.313764, -1.055223, 0.328419, 0.864856, 1.254268, 0.689438, -0.091569, 0.891786, -0.424388, -1.088019, 0.636457, 1.027289, 0.489799, -0.181714, -0.278640, -0.768916, -0.199273, 0.142676, 0.706873, -1.396263, 1.488777, 0.266760, -2.435653, -0.369603, -1.484147, 1.643054, 1.062454, 0.117567, 2.345424, -0.166064, -0.527967, 0.236796, 0.778643, -0.681712, -0.702613, -0.148619, -2.182574, -0.087683, -3.125081, -0.452947, -2.737507, 0.721329, -0.237513, 1.894558, -0.454753, -1.437120, -0.027743, 0.845634, 1.426627, -1.124206, -0.698032, -0.580334, -0.413842, 0.015509, 0.833079, 0.014015, -0.525016, 0.186093, 0.007320, -1.956010, 0.724036, 0.709617, -1.766207, 0.057603, -1.738762, 0.031882, 0.793290, 0.347223, 0.169624, -0.017426, -1.647903, 1.867884, -0.390846, -0.571089, -0.183970, -1.394723, -1.360242, -1.316965, -0.804665, 0.135807, -0.813605, 0.985454, -0.534191, 1.579096, -1.093068, 0.415426, 0.341138, 2.885369, 1.025118, 1.125286, 1.630957, 0.104799, 0.083962, -1.529740, 0.720408, 1.222590, -0.182030, 1.592610, 0.574730, -1.588404, 1.019717, -0.581530, -0.243570, 0.112371, -0.190873, 0.346026, -1.322094, -0.442979, -0.679692, -0.367964, 1.120293, -1.440130, 0.416453, 0.098071, -0.671729, 0.873683, 0.773861, 0.459882, 3.254330, -0.136546, 0.330528, -0.324275, -0.560139, -1.012834, -0.017002, 0.711932, 0.474547, 1.243437, -0.434295, -0.149413, 0.927523, -0.931849, -0.427743, 0.449530, 0.281893, -0.231803, 0.983728, -0.618791, 1.330002, 0.531814, -1.305593, 0.485143, -0.096633, -0.216396, -0.327995, -0.067355, 0.364753, -1.815405, -0.067767, 0.348109, -1.173978, -0.944664, 1.124628, 1.485579, 0.501180, 1.690340, -0.062907, -1.477889, 1.277349, 0.812615, 0.102166, -0.834579, -0.112053, 0.957952, -0.544490, -1.690204, 1.434574, 0.065148, 0.239336, 1.002741, 0.051643, 0.283180, 0.210426, -0.320920, -1.146500, -0.368898, -1.581585, -2.168375, -1.226460, -0.988694, 1.147270, -0.384241, 1.554776, -0.625619, 0.234487, -0.799033, 0.142860, 0.605788, 1.203784, -0.542459, 0.853763, -0.434085, -0.582761, 0.627395, -0.237141, -0.211840, -0.319337, -1.659089, -0.575226, -0.924660, -1.193922, -1.265261, -2.004772, -0.297467, 1.494338, -0.557726, -0.013057, 0.641641, -0.366018, -0.208405, 1.699302, -2.425183, -0.657281, -1.137447, 0.225555, -0.924192, 0.770656, 1.989124, 2.022899, -0.755642, 0.871839, 0.941677, 0.095472, 1.740476, 0.808622, -0.331252, 0.190235, -0.773856, -0.727357, -0.330519, 2.319225, -0.496547, 1.347834, 0.222025, 0.672701, -0.586946, -0.113868, 0.794123, -0.100264, -0.733795, -0.505692, -0.430446, 0.424789, -0.462122, 0.988135, 0.593604, 1.969401, -0.448551, 0.203132, -1.155378, -1.473591, -0.955992, -0.534818, -1.308230, -0.331111, -1.875286, 0.213646, 1.251128, -0.238851, -0.592606, 0.224330, -0.508295, -0.705950, -0.920873, 0.832588, -1.870333, 0.128536, -0.525655, -1.838481, 0.537175, 1.144705, 0.958069, 0.227811, -1.503627, 0.216114, -0.165320, 1.426539, -0.275070, -0.148870, 0.728770, 1.084694, -1.115191, -1.007776, 1.419485, 2.484231, -2.552051, -0.581333, -0.476718, -0.735419, -0.378598, -1.437784, 0.001498, -0.015774, 0.067744, 0.522280, -0.943855, -0.270356, -0.634315, -0.644252, -0.944481, 0.957509, -0.173028, 0.080804, 0.327430, -0.190548, 0.623995, -2.375506, 0.446369, 0.599216, 1.092471, -0.357549, -0.995762, -0.008744, 0.644243, -0.296220, 0.066535, -0.629578, -0.270029, 1.668464, 0.370487, -0.600051, -0.387333, -2.213958, 0.585949, 1.118457, -0.341179, 0.331691, -1.987882, 1.183606, 0.625173, -0.354180, 1.063886, -0.394724, -0.146816, -0.647208, -0.921980, -1.202744, 1.706660, 0.514368, 1.196061, -0.710655, -0.093976, 1.085945, -0.001826, -0.737892, -0.724666, 0.351458, 1.401097, -0.821723, -1.673391, -0.090268, 0.977719, 0.072612, 0.197050, 0.783137, -0.821823, -1.405758, -1.092715, 0.181622, 0.240111, -0.778875, 1.103112, -0.171403, 0.965584, -0.194267, -0.832977, 0.797554, -0.186782, -1.302590, 1.428996, -0.156897, 1.887517, -1.068628, 0.142003, -0.377388, -0.848400, 0.736850, -0.172556, -0.020610, -0.499073, -1.266469, 0.476973, -0.807829, -0.077064, -0.288479, -1.075996, -0.840650, -1.149184, 0.645097, 0.885382, 2.280417, -0.922061, 1.538205, 0.939168, 1.020579, -0.162697, 0.395177, 1.973808, 1.241222, 0.777020, 1.071541, -2.087879, -0.102508, -0.620444, -0.937411, 1.200385, -0.534801, -0.127111, -1.342898, 0.180041, 0.803535, -1.111153, -1.952474, 0.756330, 1.090823, -0.039904, 0.890134, -0.479378, 0.583535, -1.809236, -1.051627, -0.516577, -1.105729, -0.143779, -0.206463, -1.377821, -1.766262, -0.716406, 2.225419, -0.193843, -0.791264, 1.082064, -0.970461, -2.031578, -1.704886, -0.403736, -0.199443, -0.057310, 1.697849, -0.228341, 1.296910, -0.122604, -0.842765, -1.598740, 0.411115, -1.765546, -0.223955, -0.538160, -0.092866, 0.360087, -0.344572, -0.604889, -0.436286, -0.479376, -1.074208, -0.544818, -0.205681, 0.321691, 0.605522, -0.405837, 1.585936, -1.380939, 0.114205, -1.241388, -2.392691, -0.613777, -0.577870, 0.102384, 1.017535, -0.272301, -1.872820, 0.285359, 1.045030, -1.215383, 0.403031, -0.033932, -0.177981, 0.355023, -1.753937, 0.879588, 0.242552, -1.513571, -0.695710, 1.550073, -1.467657, -0.512426, 0.736484, 0.744252, 0.342947, -0.830607, -0.441627, -0.358323, -3.871378, 0.507113, 0.653945, 1.018359, 0.323332, 1.478385, -0.526023, 1.571037, 0.523595, 0.127728, 1.916620, 1.313062, 0.104269, -1.557854, -1.321794, -0.104539, -0.784794, -1.241153, 0.034678, 0.144311, 0.466746, 0.491077, -0.217725, 1.016971, -0.547381, -0.319909, -0.965926, 1.756093, -0.842369, 0.100637, -0.395082, -1.182025, -0.435817, -0.381286, -0.607864, 0.370338, 0.479601, 1.305272, 1.003883, -1.356202, 2.013647, -0.921405, 0.320665, -2.040347, -0.387052, 0.145215, 0.068170, -2.016703, 0.413951, 0.796867, 0.968580, -0.084631, 1.169034, 0.409503, 0.808413, -1.164042, 1.589634, -0.257090, -1.002726, -0.908827, -0.546281, -0.281153, -0.784852, 0.042096, -1.331007, 1.825740, 0.415771, 0.207721, -0.493031, 0.438583, -0.365686, -0.057641, -1.332847, -1.023765, -0.596834, -0.441481, -0.454220, -1.816064, 1.215382, -0.423417, 0.391148, 0.647623, -0.046397, 0.411057, 1.191314, 0.096672, 0.457360, -1.797594, -0.050126, 1.915572, -0.622539, 2.071489, 0.528071, 1.086352, 0.393627, 1.396771, 1.680294, -0.854964, 0.220967, -0.529542, 1.099047, 0.446466, -0.468418, 0.880296, 0.535349, 0.770833, 1.068697, 1.772080, -0.193348, 1.597201, -0.304640, -0.810549, 0.998237, 0.180152, 1.509474, 0.124902, 0.323070, -0.335875, -2.889107, -0.880951, 0.587018, 0.330587, -0.259975, -0.395515, -0.652667, -0.511845, 0.593174, -0.038552, -0.449708, -0.918939, -1.599508, 0.431306, 0.264760, -1.311859, -0.709499, 0.715552, -1.396528, -0.925184, 1.163747, -1.176519, 1.415728, 0.890724, 0.346257, 1.222724, 0.854781, -2.068403, 1.246971, -0.552407, 0.715622, -1.149685, -0.619535, 0.068122, 0.169326, -0.570314, -0.419155, 1.684278, 1.843248, -1.593743, -0.024926, -0.408404, -1.909711, 0.649675, 0.120517, -1.104687, -1.918444, -0.210967, 0.003327, -1.244751, 0.668577, 0.828062, -0.354505, -2.118447, 0.604459, 1.321517, 1.294158, -2.776321, 0.127962, 1.041373, 0.159998, 1.101412, -1.309190, 0.342368, -1.025026, -0.664232, -0.890909, -0.215892, 1.790076, -0.174170, -0.288365, 0.136368, 1.120362, -0.125018, -0.949134, -0.162772, -0.021111, -1.709015, -1.476247, 1.561611, 1.748154, -1.321914, 0.044481, 0.725504, -1.275527, -0.259912, 0.410877, 0.215258, 0.339934, -1.181545, 0.439285, 1.376379, 0.261230, 0.675839, 1.388046, -0.803993, 1.465973, 0.967451, 0.189602, 0.401106, -0.522188, 2.158068, -0.892258, 0.164156, 0.812862, -0.495200, 2.831418, -0.738756, 0.697627, 0.728019, 0.252619, -0.458619, 0.946898, -0.250727, 0.508553, -2.280144, -0.640528, 0.859146, 0.941879, 2.335837, 0.150641, 0.800070, -0.630671, -0.802366, 1.043509, 1.023772, -1.111745, -0.878493, -1.027083, 0.403818, 0.104096, 1.506201, 0.772464, -0.458959, -0.075498, 0.187151, 0.935988, 0.404326, 0.793238, 0.241246, 0.065167, 1.197851, 0.871597, 0.140559, -0.028275, -0.147984, 1.930768, 0.188451, -0.258520, 1.724159, -1.088689, -0.431265, -0.457407, -1.678229, 1.480410, 0.967478, -0.319689, -0.115958, 0.013029, -0.977171, 0.901540, -0.898880, -0.657762, 0.542148, -0.471107, 0.134592, 0.627714, -0.124650, 0.318570, -1.487050, -0.110094, 0.075294, 1.244708, 0.346143, 0.419413, 0.111041, -0.524975, 0.472528, -1.106562, 0.301021, 0.644703, -1.910807, -0.058555, -0.656233, -1.272565, -0.544633, 0.185445, 2.272938, -0.554540, -0.810567, -0.161963, -0.959781, -2.409165, 0.229146, -0.635562, 1.388536, -0.327056, -0.927584, 0.357517, -1.630899, -1.698964, -0.032944, -0.912237, -0.800460, 0.393215, 0.491380, 2.598691, -0.512136, -1.022815, -0.253954, -0.050545, 0.583673, 0.347255, 1.358017, -0.281521, -0.029950, 0.589334, 1.032821, -2.113466, 1.129863, 0.853139, 1.352730, 0.495366, -0.250603, 0.084159, 1.366243, 0.398776, -1.622603, -1.255666, 0.797367, 1.767597, -0.973568, -1.554018, 0.240386, 2.094720, 1.256655, -0.580374, 0.243386, 0.350185, 0.186770, 1.524437, -1.602239, -0.537658, -1.856081, 1.056017, 0.202074, -0.441021, -0.992360, -1.330661, -0.326914, 1.075425, 0.829446, -0.851153, 1.071801, -0.036078, -1.020283, -1.052431, 0.413927, -0.854294, 0.815007, 0.235630, -0.755187, -0.014926, -0.150027, -0.326607, -1.008763, 0.473571, -0.611267, -0.500135, -0.392581, -0.037473, 0.959875, -0.175590, 0.297357, -0.223526, 0.210956, -0.901041, -0.222673, 0.820879, 1.307972, 1.193798, -1.364767, -0.071308, -2.201272, 1.543022, -0.378431, -0.325057, 0.311281, 0.501796, -0.546887, -0.600176, 0.808599, -0.545665, 0.332415, -0.252502, 0.357523, -0.619661, -1.973540, -0.903748, -0.759105, -0.678511, 1.020405, -0.579149, 1.277483, -1.251127, 0.596407, -2.665360, 0.566327, -0.409434, -0.206457, 0.544451, -0.603105, 0.322316, -1.617692, 1.284044, -0.187186, -0.154841, -0.571160, 2.100584, 1.034362, 0.322839, 0.459475, 1.444326, 0.446683, -0.772395, 0.570541, 0.799988, 0.422327, 0.685075, -0.017632, 0.290018, 0.607797, 1.071577, 1.348947, -1.111220, -0.587320, -0.236908, -0.827958, 0.113629, 0.396391, -1.065581, 1.094684, -1.842498, -0.052953, -0.271341, -0.962368, 0.267612, -0.557899, -0.394767, -2.320183, -1.192395, -0.049846, 0.936756, 0.785959, 1.123509, 0.991764, 1.186557, 0.386606, -0.303021, 0.324662, -0.996602, 0.489292, -1.780136, 1.020763, 0.887868, -0.415910, 1.380229, 0.740741, 1.112486, -0.545787, -0.861682, 0.612006, -0.428986, -1.192975, 0.930273, 0.888733, -0.019847, 1.590569, 0.234856, 0.388752, 1.055154, 0.979622, 1.329986, -0.605895, 0.307087, 0.526777, 0.932971, -0.798612, -0.326783, -0.542816, -0.934519, 0.483030, 1.370041, -1.397341, 0.471375, -1.152030, 0.303307, 0.204606, 0.182150, -0.207422, -2.227689, 1.397467, 0.191249, 0.560754, -0.588613, -0.477204, -1.066701, -0.915967, -1.317522, -0.898317, 0.244496, -0.459551, -0.830520, -0.515574, 0.357422, 0.711829, -0.652665, -0.326407, -0.080041, 0.019042, -0.351068, -0.834212, 0.720049, 0.625061, 0.265925, 0.447552, 0.053882, 0.462740, 1.807332, 0.473469, 0.685337, -1.137383, -1.751517, 0.568099, 0.673718, 1.417047, 0.456236, 0.072131, -0.053378, 0.193144, -1.255609, -0.466870, 0.975661, -0.084823, 1.106010, 1.277784, 0.039031, 0.952513, -0.398797, 0.706862, 0.946269, -0.765894, 0.679468, -0.291297, 0.060981, -0.976066, -0.996424, 0.286266, 0.375961, -0.863181, 1.607539, -0.976106, 0.208023, -0.946768, -1.445206, -0.117064, 0.347732, -0.374761, -0.005753, -0.795332, 0.368122, 2.128626, -0.755834, -0.366233, 2.082525, 2.119452, -0.025033, -0.323971, 0.023935, -0.274736, 1.380141, -0.327271, 2.001141, -0.746428, 0.390822, -0.846911, -0.746021, -1.313140, 2.098876, 0.533132, -0.416948, 0.457684, -1.240871, 0.144019, 1.280403, 0.270663, 0.560360, 1.519387, -0.966378, 0.616029, 0.291146, -0.990966, 0.860259, 0.177024, -0.412966, 1.339821, 0.144038, -0.280354, 1.848864, -0.449787, -0.418596, 0.415726, -0.417262, -0.641884, -0.457003, 1.738806, -0.255362, 1.041837, -0.461112, 0.869481, 0.523599, -0.614471, 0.319261, 2.547606, 0.776768, -0.384575, 0.448889, 0.998915, 1.090934, 0.351927, -0.932050, 0.068386, 1.473755, -0.105674, -1.303833, -0.601616, 0.771729, 0.443506, 0.576029, 0.034585, -0.164469, 0.646943, -1.095639, -2.160556, -0.997794, -0.441792, -0.421310, 0.294204, 0.416402, 1.822842, 0.729831, 1.104272, 1.114421, 0.135066, -1.836820, -0.647657, -0.318145, -0.986342, -0.680491, 0.960227, 1.050510, 0.394359, 0.372653, -1.029183, -0.698650, 0.935148, 0.872294, 0.404194, 1.323448, -0.704365, 0.126152, -0.300734, 0.375414, -1.089450, 0.504999, -1.135533, -1.050475, -2.429714, -0.041466, 1.565657, 1.631003, -0.127943, 0.045148, -0.675251, -0.350537, -0.003374, -0.003019, 0.725005, -0.925911, -0.534507, -0.665370, 1.739430, -0.016418, 1.200501, 0.261086, -2.512910, 1.110976, -0.912571, 1.024024, -1.158199, -0.185635, -0.161165, -0.241746, 0.998776, 2.398459, -1.300536, 1.573944, 0.396408, -0.643391, -1.421031, 1.676320, 1.247417, 0.435394, -1.159584, 0.458776, -1.376695, 0.081189, 0.827625, -0.257758, 0.572544, 0.247319, 1.585524, 0.557711, -0.982113, 0.355642, -0.072212, 2.208763, 0.547105, -1.445031, -1.308172, 0.634618, -0.132058, -1.413948, -0.781083, 0.182559, 0.199034, -0.809940, 0.008270, -2.018517, 0.220590, 0.729468, 1.008314, -0.015779, 0.276231, -0.818019, 0.910626, -1.002303, 0.108709, 0.799210, 0.278520, 0.579953, 0.410883, -1.446025, -0.377541, 2.220417, 0.912346, 0.376209, -0.648969, 0.427449, 0.667670, -0.839820, 1.720410, -0.091358, 0.636570, -0.327864, -0.004057, 0.129085, -0.741567, 0.239342, -0.898024, -1.428915, -0.258348, -0.474190, -0.138525, 0.591183, -2.566592, 1.252947, 1.226900, 0.379667, -0.490387, -0.340110, 0.891402, 0.339250, -0.537354, -0.059539, 1.083446, 0.287935, -0.226294, -0.227145, 0.740013, -1.662723, 0.215506, -0.094727, 0.422175, -0.219009, -1.579347, 0.044314, -1.530381, 1.127774, 0.913002, -0.371390, -0.312615, -0.867662, 0.331312, -1.062837, -0.137691, -0.801380, -0.930415, 1.222510, 1.729087, -0.328123, -0.943253, 0.487549, 0.836397, -0.903945, -0.278503, 0.867683, -1.602632, -2.514505, -0.318580, -0.530164, -1.543670, 2.227553, 0.721774, -1.436769, 0.072219, -1.892994, 0.099361, -2.172647, 0.065373, 0.981931, 0.740744, -0.231815, 1.376774, -0.295062, -0.602543, -1.515826, -0.078981, -0.502477, 0.032080, 0.726856, -1.734185, 1.108798, 0.773086, -0.477487, 0.099998, 0.173851, 1.127636, 0.890199, -0.181943, -1.216389, -1.604799, -0.558497, -0.232263, 0.324307, -1.855499, 0.038724, 2.097495, 2.074189, -0.000038, -0.781081, -0.269145, -0.649710, 1.400672, 0.974836, -0.627940, 0.482520, -0.115141, 2.671334, 0.582280, -0.033157, 2.010197, -0.014143, -1.245355, 1.448615, -0.788463, 1.039624, -0.746549, -1.998192, -1.038733, -0.718035, 0.506349, -0.665163, 0.447643, -0.419258, 0.202551, 0.299544, -0.982287, -0.735532, -0.263571, -0.272941, -0.894240, 1.746835, 1.557758, -0.423254, 0.802247, 0.852854, 1.019567, 1.020447, -0.043548, -0.200504, 1.084061, 1.114289, 1.729770, -1.267496, 1.336323, 0.449409, -0.158680, 0.228439, 0.928360, 1.304563, 1.777020, -1.223731, -0.746391, -0.561204, -0.328748, -0.940450, 0.585843, 0.076186, 0.914404, 1.714862, 0.827422, 0.010977, -1.976914, -0.841875, -0.547719, 0.346015, -0.317527, 0.282425, 0.325940, 0.197143, -0.874265, 1.766502, -0.068851, -0.279538, -0.445320, 1.018064, -1.249788, 0.906900, 0.222624, -0.743957, 0.170202, -0.471211, -0.652519, -0.525878, -1.117258, -0.174811, 0.536083, -0.564021, 0.097670, 0.683203, -0.504684, 0.518277, 0.084049, 0.469236, 0.401045, -0.558915, 0.360808, 0.587490, 0.464571, 0.219484, -0.588746, 0.563576, 0.088448, -0.464884, 0.053972, -0.444764, -0.465701, -1.257421, 0.371674, 1.463238, -1.102397, 0.614920, 0.545926, 0.766448, -0.033662, -0.474909, -0.402091, -1.182641, -0.715992, 1.218357, 1.090960, 0.248299, 0.850661, 1.543618, -0.422131, 1.259312, 0.478272, -0.280197, -0.455208, 0.799620, 1.217559, -0.063316, 0.204669, -0.339663, -1.743606, -0.514466, -0.691603, 0.685485, 1.251020, 0.298907, -0.343094, 0.721730, -0.033435, 0.031564, -1.388411, -0.413764, -0.440570, -0.210302, -1.108279, -1.140198, 0.843116, -0.316969, 0.639762, 0.546947, -0.915686, 0.049832, 0.535957, 0.217332, -0.181310, 0.330865, 0.016305, -0.906886, 0.106428, 0.126061, -0.631156, 1.886933, -0.721478, -1.385167, 0.220763, -0.683038, -1.242332, 0.878392, -1.836967, -0.723121, -1.158405, 1.410812, -0.280422, 1.664641, 0.508401, -2.083087, 2.110348, -0.483866, -1.294663, -1.021694, 1.658059, 1.551825, 0.721076, 0.518781, 0.201690, 0.427741, 1.488444, 1.802702, 1.077187, -1.208578, -0.710557, -0.084447, 0.060788, -0.686247, -0.208280, 0.560519, 0.137611, -0.092126, 0.148269, 0.117665, 1.653354, -1.197359, 0.269217, 0.851610, 0.779215, 0.158170, -0.432385, -0.761417, 1.630607, -0.760248, -1.420878, -0.028296, -0.213760, 0.070403, 1.322678, 1.730723, -0.613411, 0.471467, -0.454382, -2.905979, -0.854905, 0.415078, -0.340441, -0.287277, 1.582551, -0.749597, 1.181264, 0.097658, -0.871213, -0.887261, 0.038894, 0.715083, 1.293604, 0.992230, 0.417731, 0.220043, 0.580737, 0.761964, 0.207827, 0.716731, -0.586437, -1.440198, 0.643752, 0.251032, 0.641432, -1.851960, -0.088980, 0.902666, -0.730558, -0.601154, 0.693894, 0.155612, -1.090340, 0.057653, 0.813305, -1.193078, 0.564304, 1.042082, -1.233323, -0.012854, 0.119368, -0.529564, 0.966824, -0.354905, 0.524664, 0.589277, -0.440730, 0.186336, -0.308477, -0.589551, -0.534371, -0.802936, 0.319862, 0.729057, 1.037274, -1.271740, -2.216436, -1.079517, -1.158742, 0.027625, -1.004502, 0.656648, 3.252840, -2.368997, 1.352630, -0.453094, -0.074521, 0.536188, 1.298509, -1.091323, -0.191035, 0.782099, -1.392398, -2.005632, -1.707445, 0.267265, -0.296669, 0.147611, 0.499997, -0.445238, -0.736553, 1.209765, -0.614404, -1.053931, 1.720207, -0.188654, 2.502204, -2.670313, 1.438627, -0.029130, -0.219989, 0.060401, 0.153533, 0.275603, 0.703980, -1.933455, 1.202498, 1.056154, 1.090506, 0.636538, -1.883762, 0.095589, 0.993954, 1.524746, -1.017967, 1.727081, -1.491319, 0.373989, 1.356493, -0.900392, -0.437595, -0.944447, 0.617903, 1.028725, -1.434314, -0.554017, -1.451639, -0.320310, -1.004956, -0.885007, -0.056770, 1.593924, -0.636839, 1.499751, 1.665243, -0.805269, 0.084077, 1.433538, -2.883698, 0.674365, -0.038502, -0.505362, 0.780168, 1.039655, -1.154947, -0.024273, -0.349764, 0.007776, 0.395214, 1.373254, -1.385156, 1.818863, 1.387305, -0.432959, -0.102355, -0.125928, 0.523514, 0.210265, -0.979752, 0.379961, 0.141487, -0.283094, -1.893242, 0.045608, -1.535412, -1.098828, -0.632224, -0.222200, 1.855977, -2.307454, 1.100581, 1.173041, -1.341296, -0.908718, -1.277738, -1.664070, -1.166867, -0.162483, 1.814503, -0.494892, -0.485955, 0.734687, -1.708182, 0.678910, 2.294942, 0.095469, -0.451610, 0.037455, 0.556082, 1.835836, 0.094074, -1.521902, 1.607256, 0.231968, -0.164203, -0.676164, 0.655267, 0.094755, 0.736146, 0.085353, -0.501108, -0.277085, -0.562710, 0.075026, 1.496057, -0.342438, 0.083898, 0.559480, -0.804209, -1.183650, 0.660909, 1.136111, 0.562211, 1.137781, -0.344136, 0.470560, 0.107841, -1.927994, 0.341170, -0.513143, -0.383591, 0.769422, 0.952335, -0.041470, -0.698561, 1.257886, 1.786137, 0.267829, 1.603306, -0.427290, -0.922404, 0.741156, 0.056361, -1.667659, -1.493280, -0.975095, 0.336825, 1.407215, 1.007527, 2.168879, -0.549738, -0.324690, 0.643241, 0.130433, -2.029375, 0.273297, 0.356747, 2.454002, -1.501681, 1.689960, 0.807211, 0.680943, -0.223666, -0.095597, 0.415829, -0.010490, -0.446814, 0.080485, 0.222805, 0.498386, -0.339831, 0.820964, -1.249063, -0.000191, -1.332485, 0.325495, -1.556487, 0.728763, 0.338510, -0.541931, -0.349884, -0.735450, -0.045681, 1.253030, -1.315233, 0.236817, 0.953056, -1.000244, -0.435249, -0.325658, -0.362255, 1.309679, 1.161254, 0.374657, -0.641233, 0.717613, 0.493782, -0.517233, 1.211785, 0.708884, -0.503986, 0.658306, -0.092916, 0.812961, -1.927425, -1.315770, -1.485392, 1.108066, -0.748031, 0.723618, 1.056496, 0.698103, -0.632683, -0.132545, 0.109981, 1.825642, 2.133781, 0.078289, 0.407666, 0.525420, -0.319575, 0.307204, 0.365801, -2.361800, 0.010139, 2.296167, -1.247896, 2.137934, 0.192587, 0.953426, -0.071159, 1.821149, 0.654854, -0.911917, 0.043205, 3.556018, -0.048835, -1.999271, -0.093606, 1.777986, -0.823072, -1.121782, -0.048323, 0.758147, 1.690014, -0.108150, -0.653903, -0.122230, -0.005864, 0.183167, 0.406416, 0.555392, 0.061161, -0.848593, -1.072431, -0.167310, -1.807428, 1.321827, -0.670502, -0.092492, -0.296547, -0.262147, 1.455033, 0.097799, -0.151837, -0.282328, -0.263528, 0.329678, 0.430329, -2.021722, 0.118310, 2.376930, 1.257689, 0.388539, -0.305763, -0.147557, 1.695799, 0.322969, -0.068824, -1.008683, 1.111927, -0.803700, -1.568988, -0.772161, 0.795903, -0.525587, 0.683493, -0.543381, 0.750171, 0.373628, -0.580331, -0.403538, 1.649374, -0.675755, -0.902680, -0.545228, -0.536477, 2.341003, -0.955187, 0.896374, 0.560947, 1.041733, 0.888788, -0.385130, 0.354999, 1.001851, 0.000608, -0.979621, -0.252861, 1.359788, 1.030872, 0.347983, -0.234724, -0.792954, 0.673705, -1.826589, 1.214185, 0.661556, 0.227302, 1.009797, -0.500393, -1.073619, -0.503445, 0.769969, 0.547385, -0.558549, 0.883959, -0.591815, -1.774377, -0.676829, -0.783596, 0.040185, -1.252069, 0.653185, 1.057813, 1.179969, -1.660486, 0.071263, -1.590326, -0.520223, 0.243366, -0.303428, -0.368659, 0.247438, 0.143691, -0.147891, -1.499183, -0.318256, 0.474509, 0.549729, 0.199602, 0.762655, -0.081424, -0.152700, 0.006788, -0.569875, 0.910566, -1.093933, -1.138624, 0.819628, 0.168549, -0.964445, -0.076931, 1.486776, -0.027212, 1.540254, 1.576027, 0.347352, 0.331173, 0.957891, -0.956078, -0.241708, 0.050697, -1.897355, 0.199586, -0.641573, -0.305572, 0.820149, -0.670253, -0.544410, 2.720953, 0.814357, -0.136757, 0.908064, 0.468156, -0.553230, 1.314121, 0.207741, 1.729001, 0.024632, 0.502124, 0.151179, 0.190125, 0.637994, -0.192203, -0.687091, 0.589081, -0.942280, -0.176843, -1.591014, 0.543004, -1.810700, 0.072688, 0.047752, 0.943120, 0.711249, 0.525869, -0.952644, 3.026316, 0.294049, 0.316042, -0.047463, 0.805011, -0.728400, 0.672068, -1.567478, 0.371817, -1.256618, 1.649953, 1.757491, -1.375110, 0.686327, -0.518741, -0.065898, 0.578238, -0.190789, 1.101537, -0.320330, 1.113761, -0.815026, 0.950754, 0.616289, 1.483082, -0.139093, 0.318467, -1.013434, -1.125713, -0.295719, -0.460191, -0.149806, 0.218925, 0.179397, 0.775876, 1.266895, 0.437868, -1.243266, -2.401203, -1.301369, -0.305381, -1.250641, -0.056580, -0.605638, 0.965108, -0.131423, -0.430801, -1.395735, 1.193836, -0.928882, 0.059490, 1.525272, -0.486982, 0.108403, -0.446749, 1.058290, -1.550775, -1.017283, 0.612236, -0.396100, -0.205945, 1.412077, 1.940878, -1.612480, -0.737166, -0.016795, 0.163074, 0.952093, -1.243551, -1.402646, -0.132703, 1.507095, -1.040937, 1.638227, -0.872032, -0.447915, -1.615896, 0.460938, -0.051479, 0.761001, -1.064112, -0.773465, 0.171008, -1.585315, 0.317190, 0.426265, 0.096016, -0.134831, 0.611113, -0.513516, 1.012198, 2.164569, 0.785335, -0.021226, -0.857402, 0.615203, 0.333671, -0.090562, -0.630373, 0.642515, -0.193477, 0.278835, -2.117518, -0.094177, 0.027918, -1.555385, -0.895231, 0.484290, -1.633792, -0.472235, 0.496688, -0.365161, 0.021169, -0.637063, -0.614295, 1.978980, 1.064738, -1.215006, 1.212204, -0.183785, 1.227412, 1.615088, 0.460690, 1.195802, -0.004853, 0.610624, -0.526852, -0.233714, -1.040014, -1.414295, 1.504283, -1.042767, 0.192865, -0.121765, -1.895166, -0.858413, 1.110410, 0.383372, -0.040709, 0.974359, -0.343175, 2.623833, -0.310227, -0.460726, 0.317058, -0.050637, 0.758051, -1.638395, -0.885219, -1.583627, -1.729916, -1.320411, -0.639612, 1.237517, -1.124622, 0.883095, 0.499081, -0.352105, -1.807841, -0.148534, -0.437528, -1.918732, -0.406988, -0.044862, -1.680193, -0.973783, -0.137344, 0.108932, 0.856049, 1.657311, -0.088797, -0.149075, -1.872207, 0.618064, 0.356009, 1.728903, 1.092371, 1.096388, 1.003219, 0.322128, 0.115886, -0.314387, -0.718779, -0.280661, -0.580111, -1.252528, -0.672343, -0.283064, 1.301108, -1.110327, 0.293895, 1.048975, 1.417235, 1.071693, -0.283423, 0.762345, -0.413148, 1.258770, 0.958426, 0.248817, -2.867729, -0.429533, -1.440853, -0.004725, -2.747573, -0.000149, -1.635638, 1.391465, 0.193590, 0.912639, 0.113541, -1.330872, -1.109426, -0.362356, 1.498541, 0.625142, -1.032469, 0.485673, 1.560195, 1.074478, 0.360800, -0.306057, -0.718421, 0.230242, 0.575846, 0.283932, 0.249530, -0.549851}, + { 1.445878, -1.153404, -1.347448, 0.305017, -0.440671, 0.806448, -1.079683, 0.926655, 0.329365, -1.551180, 0.257936, -0.972706, -0.594141, -0.429774, 1.114250, -0.028421, -0.280229, 0.882109, -2.014124, -0.209030, -0.073471, 0.645325, -1.022775, 0.941586, 1.936961, -0.404889, -1.221021, -0.365694, 0.148017, -0.028792, 0.174588, -0.676786, -0.544345, 0.601942, 2.258660, -0.266347, 0.354713, -0.251010, 0.456281, 0.884348, -0.715440, -1.420931, 0.546884, -0.485314, 0.538638, 2.534471, -0.686796, -0.643060, -0.197028, -1.046019, 0.291568, 0.436794, -1.694804, 0.402359, -0.244680, -0.995186, -0.347196, 0.098246, -0.149989, 0.269873, 1.802804, -0.890788, -0.046884, 1.075207, -0.579103, -0.268169, 0.502712, 0.290053, -0.456541, 0.492425, -3.900337, 0.672933, 0.144460, 0.678548, 0.449949, 0.179061, -0.009189, 1.476751, 0.087654, 0.170521, 1.874514, 1.284834, -1.345358, -0.954525, -0.604920, 0.109046, -0.784499, -0.929101, -1.895046, 0.726950, 0.629010, -0.685238, -0.900277, -0.160485, -1.014806, -0.927278, 0.233648, -1.270706, -0.432125, 2.125514, 0.417094, -0.025090, 0.502936, 2.047265, -0.931638, 0.373710, 0.516571, -0.471993, -0.559333, 0.158313, -0.397506, -0.662793, -1.724745, 0.967956, -0.363435, 0.125383, -0.246155, -0.595702, -1.926290, 1.110588, 1.094532, -0.053557, -0.015955, 0.373040, 0.585275, 0.307375, -0.691688, -0.401179, -0.620476, 0.677718, -0.148984, 1.269450, 0.475302, -0.174330, -1.497995, 2.176656, -0.632907, 0.596434, 0.448456, 0.859072, -0.490460, -0.289769, 0.766390, 1.390458, 0.990721, 0.847977, -0.247489, 0.574135, -0.850138, 0.385047, -0.039051, -1.756013, 0.703411, -1.171415, -1.134622, -0.925045, -0.765665, -1.217760, 1.078613, 0.049954, -1.223075, -1.010076, 0.290746, 0.192686, -0.526872, 0.034041, 0.069892, -1.789311, 0.455032, -1.951374, 0.829116, 1.268676, 1.372467, 0.099725, 1.691981, 2.303865, 0.974602, 0.962250, 0.082994, -0.085947, 1.413079, 0.509017, -1.074048, 1.432899, 0.855333, 0.247454, -0.679830, -0.492880, 1.516360, 1.405052, 1.194610, -1.466114, -0.734689, -2.051556, 1.711480, 0.840688, 0.500472, -0.594809, 0.141823, 0.339711, 0.095554, 1.559376, 0.173766, 2.141702, -0.241774, -1.171111, -0.948250, -0.241611, 0.430771, -0.061400, -1.827723, 1.153868, -1.364451, 1.539632, -1.033055, -2.532132, -0.587324, 0.094311, -0.087582, -0.428135, -0.508224, -0.495107, -0.527555, -1.070018, 1.345576, -0.161459, 0.276211, 1.078374, 0.649261, -0.044851, -1.075560, 0.860353, 0.792199, 1.561125, -0.794710, -0.614556, -0.711378, 0.974510, 1.073188, -0.661040, 1.740524, -0.404540, 2.549045, -0.395893, 0.478689, -1.446073, -0.310178, 0.922011, -0.401212, -0.532888, 0.994831, 0.935235, 0.932221, 2.415759, 0.890311, -0.199644, 1.396311, 1.203319, -1.296300, -0.579395, -1.214036, -0.781735, -0.727096, 0.319765, 1.766963, 1.244860, -0.518977, 0.851801, 1.203117, 0.454831, -0.061583, 0.049594, 1.214203, -2.315344, -0.009081, 2.057796, -0.244133, -0.621256, -0.889616, 0.054333, -0.003834, 0.682400, -0.376140, 0.763399, 1.233212, 0.383580, 0.870310, 0.727702, -0.216463, 0.201789, 0.349845, -0.396659, 0.204239, 0.165616, -0.670854, -0.026341, -1.526084, 0.676545, 0.725743, -0.735024, 0.024316, 1.485975, -0.686044, 1.084372, 0.492585, -0.416047, -1.691110, -1.442311, -0.112236, -1.436000, -1.802774, -2.715462, -0.825917, 0.134522, 1.266901, -0.873940, 0.217819, -0.254873, 0.282692, -1.030686, 1.628011, 2.247546, -0.616220, 0.911976, -0.921060, 1.288879, -2.313259, -1.356885, -1.301401, -0.048696, 2.402251, 1.803344, -1.056626, 1.031969, 1.981173, -1.228319, -0.576411, 0.459674, 1.674162, 0.117805, -0.507165, 0.750993, -1.779005, -0.115435, -1.249933, -1.700320, -0.557525, -0.139691, -0.327086, 0.655643, 0.372350, -0.835172, -0.112556, 0.802429, -0.980341, 1.055814, 0.617398, -0.854967, -0.378789, -0.874647, 2.458466, -0.278636, 0.133361, -0.329878, -1.206929, 0.134123, -1.285118, 0.479978, -0.582012, 0.824857, 1.326357, 1.164052, 1.679818, 0.145928, -0.772258, -0.439204, 0.145476, -0.174995, -1.374434, 1.370729, -2.544913, -0.068993, 1.064449, 1.074943, -0.020449, -1.164251, 0.000147, -1.268503, 2.259234, 0.838961, -0.849405, 1.548443, -0.050061, 0.192104, 0.277567, -1.394846, 0.134627, 1.403075, 0.083257, -0.874855, -0.831723, 0.029991, 1.460216, -0.109155, 0.367692, 0.099343, 0.562794, -1.603554, 1.882065, 0.701068, -0.310228, -0.027310, 0.030068, -0.007992, -2.572325, 0.360223, -2.046148, 1.770009, -1.001512, 0.022836, -1.204051, -0.500673, -0.076921, 1.135418, 1.399207, 0.336369, 0.669069, -0.847984, 1.940379, 0.888616, 0.047719, -0.949595, 0.484441, -0.681751, -0.502073, -0.952895, -0.481816, -1.758726, -2.249141, 2.240258, -1.519791, 0.276030, 1.493310, -0.828283, -0.835919, 1.067592, -0.816069, -0.185530, 0.243930, 0.646326, 1.034546, 0.105733, 0.613944, -0.251969, 0.016134, 0.795639, -2.085402, -0.073273, 0.784215, 1.403300, 1.983825, -0.093670, -1.446773, -0.977233, -0.284726, -0.978045, 1.090934, 0.753919, 1.402181, -1.403830, -0.486421, 0.022386, 0.293832, 0.251224, -0.840964, 0.011598, 0.527242, -1.405420, 0.528879, -1.524043, 2.693897, 1.964418, -0.618410, -1.760569, 0.271973, -0.644478, -1.864942, -1.417632, -1.171880, 0.508640, -0.445576, -2.206789, 0.700132, 0.055449, 0.479266, -0.861374, -0.523969, -2.514698, 2.884320, -0.141660, 0.493465, 1.448575, -0.368884, 0.895272, -2.022848, -0.371147, -0.762157, 0.724423, 0.000632, -1.472586, -2.145993, 0.509658, -1.100799, 2.037550, -0.030838, -1.642309, 0.059672, -2.145102, 0.201849, 1.440369, -1.543698, -0.620525, 0.054981, 0.174542, -0.220284, -0.493669, -0.526783, -1.509185, 0.870887, 0.607571, 1.012222, 0.916924, 0.007647, 0.608187, 0.031303, 0.455663, 1.904885, 0.308364, -0.501683, -0.031251, -0.532867, 0.624922, 0.536999, -2.073922, -0.712389, -0.530082, -0.567442, -0.473482, -1.613380, 2.254854, -0.263207, 0.228206, -1.603097, -0.422174, -2.296063, -1.290501, -0.000306, -0.588576, 0.692976, -0.772463, -0.677064, -0.891043, -0.427711, 0.999369, -0.381043, -2.496277, 0.286278, 1.061493, -0.045618, 0.362297, 0.053577, 0.038727, -1.033030, -2.480068, -0.071916, -2.346870, -0.720956, -2.268023, -1.362230, 1.787987, -0.476512, -0.101211, 1.324137, 0.943349, 1.078447, 0.118854, 0.770366, -1.193833, -0.367265, -0.500106, 1.301874, -2.967685, 0.356651, -0.648178, -0.426463, 0.262725, 0.200186, -0.143672, 0.846501, -0.554227, -0.616980, 0.152405, 1.043791, -0.578798, -0.638802, 0.336362, 0.373879, 0.153266, 0.672794, 0.194320, -0.860738, 0.278241, 0.103870, -0.580067, -0.353376, -1.212309, -0.112465, -2.123861, 0.992953, -0.728173, 1.083234, 0.328505, 1.028873, 1.861616, 2.064939, 0.159350, 0.021609, 0.544600, 0.270359, 0.536928, -0.909901, 1.087295, 0.986036, -0.254323, 2.337223, -0.006943, -1.344993, 0.580163, -1.952369, 0.082064, -0.036298, -1.343212, 0.727863, -0.162286, 0.029464, 0.162842, -0.799874, -1.056747, 0.833814, 0.134844, -1.118677, -0.436813, -0.562499, 0.798897, -0.905940, -0.081855, 0.036804, 0.631758, -1.000018, -1.431025, -0.605098, 0.433321, -0.140503, 0.555798, 0.146847, 3.098494, 0.639041, 0.578047, 0.045875, 1.980888, 0.201611, 0.586022, -0.168470, 1.098512, -1.101562, 1.693121, -1.577849, 0.170135, -1.839869, -0.259598, -0.709178, -0.362120, -1.337304, 0.895300, -1.355301, 0.355837, 0.501127, 1.558426, -0.814382, -0.038242, -1.012112, -0.295919, 1.299866, 0.413587, -0.765181, 0.465328, 0.405994, -1.230131, -1.145746, 0.399011, -1.012683, 0.512436, -1.578689, -0.837886, 0.286517, -0.640052, 0.594537, -0.591718, -0.296320, -0.853815, -1.453710, 0.115383, -1.251630, 0.630109, -1.781728, -1.658568, 1.128720, 1.401028, 0.471056, 0.208022, 1.381117, 0.978134, 0.621731, -0.242621, -0.702126, 0.809973, -0.283203, 0.006568, 0.506866, -1.358537, 1.602270, -1.760713, -0.689920, 0.333085, -0.776697, 0.243554, 0.526293, 0.346399, 0.524242, -0.819067, 0.451115, -0.224127, 1.421279, -0.203831, -0.310645, -0.080758, -1.487143, 0.132954, -0.817798, -0.276728, -1.381409, 0.361193, 0.826664, -0.191501, 0.149485, 1.012286, 0.137638, -1.579508, 1.907856, -0.068117, 1.193749, 0.012082, -0.441415, -1.558757, 0.340720, -0.336053, 0.512452, -0.808854, 0.505327, -1.318607, -0.662507, 2.124665, 0.198654, -1.325215, -1.055187, -0.225919, 1.918304, 1.245448, -0.492155, 0.584636, -0.051435, -0.038909, -0.766640, 1.189574, 1.074386, 0.038923, -0.552708, -0.791404, -2.102924, 1.243834, -0.176737, 0.988904, 0.001887, -1.138628, 0.655166, 0.689219, -1.068118, 0.071497, 1.182791, -2.276159, -1.980099, -0.301682, -0.563683, -0.466798, -0.403073, 2.000631, -2.034698, 0.911706, 2.515705, 0.100625, -1.820012, -2.410285, -1.694563, -0.294195, -0.259823, 0.032802, 1.206347, -0.905119, -0.382288, 0.745441, 2.146027, 0.016916, 0.384411, 1.392841, 1.249994, 0.574305, 0.731421, -0.409960, -0.228842, -0.098290, -1.211139, 0.661980, 0.221090, -0.816563, 0.963277, -0.576507, 0.733060, 0.984764, -0.145955, 0.067886, 1.657861, 0.313329, -0.099410, 0.405850, 1.762721, -0.860729, 0.726259, 0.077359, 0.817281, -0.558199, 1.283626, 0.857264, -0.945140, -1.517548, 0.461868, 0.903003, 1.283873, -2.011617, 0.208627, -0.485004, 0.882732, -1.106171, 0.071196, -0.776512, -1.470160, 0.154992, 0.081455, 0.957467, 1.071938, -0.438079, -0.255139, -0.792766, 0.774025, -2.594587, -0.270122, -1.070901, 0.694631, -0.087158, 0.355952, -1.366365, 0.003772, -0.697868, 0.529343, -0.611981, 1.522156, 0.333333, 0.211235, -0.637178, -0.343758, -1.636135, 1.177861, -0.569098, 3.154523, -0.209397, -0.008943, -0.128288, 1.145759, -0.519034, 1.165727, -0.311096, -0.618593, 0.785813, 0.074809, 0.994766, -0.127246, -1.746814, 0.387183, -0.482415, -0.287753, 1.052193, -0.519901, 0.521261, -0.861219, -0.015601, 0.962613, 0.425137, -0.047285, 0.736226, 0.712643, 0.110858, 1.416148, 0.273101, -0.928043, 0.214218, -1.495943, 1.290998, -1.400726, 0.107801, -2.413357, -0.386938, -1.313831, -0.198308, -0.061144, -0.431770, 1.104473, 0.746422, 0.734854, -0.524572, -0.595458, -1.021297, -1.289311, -0.572096, 1.355332, 1.677921, 1.238052, -0.774562, -1.848666, -1.054565, -1.257056, -0.134498, -0.250960, -0.613751, 0.241470, 1.195145, -1.258458, -1.330850, -0.473559, 1.768993, 0.819546, 0.366686, -0.538243, 1.843841, -0.207378, 1.089240, 0.636419, -1.123379, 0.421832, -0.229213, -0.042125, -0.594566, 1.001839, -0.957464, 0.189837, 0.839253, -0.282606, -0.846882, -0.092460, 2.309315, 1.783314, -0.886147, 0.488740, -0.515526, 1.491636, 0.165564, -0.626713, 1.370350, 1.794849, -0.294135, -0.852971, 1.126994, 0.582751, -0.790822, 1.223058, -0.257741, -0.217691, 1.232362, 0.988957, 0.985936, -1.129247, 1.447109, 0.856996, 0.329489, -0.294781, -0.980087, -1.016482, 0.080147, 0.864893, 1.222993, -0.631762, 1.052825, 0.118711, -0.957856, 0.280851, -2.081139, 2.264651, 0.776026, -0.354918, -0.752622, -0.096698, 0.714008, -0.058546, -1.134247, 0.338414, 0.065089, 0.671823, -2.618449, 0.390237, -0.316486, 0.073727, 0.612050, 0.448733, 0.828760, -0.773294, 1.140253, 0.788548, 0.497853, -0.167452, 0.415024, 0.696575, 0.737419, -0.510957, -0.943749, -1.485806, 0.743654, 0.885451, -0.979126, -0.129692, 0.465834, 0.521984, 0.472002, 0.523411, 0.595531, 0.468864, 0.466730, -1.935643, 0.756004, 0.779738, -0.712963, -1.542519, -0.425311, -0.799680, -0.459723, -0.245527, 1.944350, -0.680717, -1.106237, -1.161151, -1.328652, 0.467008, -0.044305, 0.834786, -1.769436, -0.798979, -0.788291, -2.041142, -1.377897, 0.590437, -0.388760, -1.011400, -1.641078, 0.465024, -0.377515, 0.172375, 0.070100, 1.005353, 0.233367, -2.359110, 1.185444, -1.992456, -1.026218, 0.299536, -1.146825, -0.957047, 0.156981, 0.425066, 0.264555, -1.105111, -0.939757, 0.504264, -2.173117, -1.787363, -2.124336, 0.407641, -0.862385, 0.379518, -0.526299, 0.131501, 0.974673, -1.746555, -1.882231, 0.457771, 0.010667, 0.399494, 0.321440, 0.014335, 0.792109, 0.876979, -0.621218, -0.385652, -2.096714, -0.045627, -0.804331, -0.747119, 0.901866, 0.689527, 1.663365, 0.257031, -1.002461, 0.799718, -0.937882, -0.854503, -0.592234, -0.524662, -0.621843, -1.140951, 0.584310, 0.038813, -1.470078, -1.936687, 0.890226, -0.364588, 1.848425, 0.092649, 1.141333, 1.238706, -0.012324, 1.542213, 0.478569, -0.228915, 1.856716, -1.286935, -1.749136, -1.134471, 0.353998, -0.300030, -0.852554, 1.893020, -0.488954, 0.788738, -0.682781, -1.346383, 0.578874, -1.055630, -0.469718, 0.480464, 0.478809, 0.143301, -0.157060, 1.093253, 0.013790, 0.045398, 0.817879, 0.436478, -0.374400, 1.247243, 0.974508, -1.061473, -0.802337, -1.739467, 1.202816, -0.800699, -0.212090, -1.246045, 0.878399, 1.937476, 0.774467, -0.412735, -0.431189, -0.592552, 0.618597, 1.273284, -0.389298, -0.331136, -1.669941, -0.309636, -1.060411, 0.267804, 0.258484, 0.985102, 0.036699, 0.852751, -0.881758, 0.061668, 0.302037, 0.984412, 2.433500, 0.314994, -1.172470, 0.145765, 0.339028, 1.094783, -0.700224, 0.554395, 0.088303, 0.020124, -0.586101, -0.406107, 0.903605, -0.552346, -0.044920, -0.651689, 0.631133, -0.039250, 0.077330, -0.052979, -0.589840, 0.226316, 0.017117, -1.569285, -1.660040, 0.790741, -0.493214, -0.817252, -0.071556, 0.879265, 0.220500, -1.362072, -0.821721, -0.893879, -0.285960, 0.591661, -1.261318, -0.139320, 1.480864, -1.097870, 1.241279, -1.312366, -0.436979, -1.780004, -0.973736, 0.008130, -1.304813, -1.840999, -0.018527, -0.275999, 0.164639, 0.071105, -2.603786, -0.117169, 0.193069, 0.691771, -0.181560, 0.941892, -2.665065, 0.153665, 1.648044, -0.878485, 0.599662, 0.689234, 0.469526, -0.383136, -1.941005, 1.609894, -0.595429, 1.190960, -0.677375, 0.259134, -0.691219, -0.945556, -0.715011, 1.035063, 0.691194, -0.585446, -1.513598, -2.252725, 0.590215, 0.589299, 0.468561, -0.489192, -0.843571, 0.036755, 0.558377, -0.218065, 1.093366, 0.033951, 1.500338, -0.244685, 0.697016, 0.346960, -1.308292, -0.630726, -0.947245, -1.382738, 0.958116, -0.271659, -0.312971, 0.755967, -0.643033, 0.520284, -0.437097, -0.658830, -2.464483, 0.111090, 0.652069, 1.147780, 0.504869, -0.555438, 0.276184, -1.599944, 0.551443, -0.981722, 1.675783, 1.541959, 1.336423, 0.833846, -1.541762, -0.106859, 1.545038, 0.470696, -0.687676, -0.245142, -0.354097, -0.340305, -1.133738, -0.494704, -0.037961, -0.542957, 1.090288, 0.669981, -0.112974, -2.149533, -2.567313, 0.022211, 0.622177, 0.675456, 1.548440, 1.312422, 0.705999, -1.022604, -0.296220, 0.455238, 0.907594, 1.270214, -0.188816, -0.523784, -0.681960, 0.059391, -1.069098, 0.141260, 0.729023, -0.893024, -0.027340, -0.258746, 0.764789, 0.159774, 0.717958, 0.418429, 0.927309, -0.642906, 0.779509, -0.036791, 0.625419, 0.176836, 0.455563, 0.811083, 1.775023, 1.042372, -1.015771, -0.670545, 0.604258, 1.728841, -1.176441, 1.297163, 1.363795, 0.507072, -0.189291, -0.438652, 0.563053, 0.370747, -1.356802, -0.326555, -0.218144, -0.543234, -0.694333, 0.813888, -0.376174, -1.582473, 0.278176, -2.768347, -0.149618, -1.052262, -0.577840, -1.667192, -1.590756, -0.505258, 0.891414, -0.882795, -1.775072, -0.697125, -0.786689, 0.252967, -0.846728, 1.190171, 0.698226, 0.260440, 0.443175, 1.534225, 0.087254, 1.076434, 1.014424, 0.078347, -0.828276, -1.399128, -0.103146, -0.545514, -1.200009, 0.693565, -0.395498, -0.165109, -0.100170, 0.182079, -1.725678, 0.211010, 0.872491, 2.252470, -0.531972, 0.127976, 0.303588, 0.533679, 0.317770, -0.361794, 0.177811, -0.708930, 1.089841, 0.159592, 1.226858, 1.327751, 0.305839, -0.225380, -0.260482, -0.585931, 0.730637, -0.177406, -1.181018, -0.115982, -1.688593, -0.075485, 0.187623, -0.675044, -0.603963, 0.379843, -0.184067, -0.055203, 0.330050, -0.894833, 1.346753, 0.142222, -0.601389, -1.128970, 0.188972, -0.339969, -0.296915, 0.352941, 0.208294, 1.514102, -1.013716, -1.072190, -1.134873, 0.253436, 1.597881, 0.508698, 0.421960, 1.174715, -0.829048, -0.078092, 0.492492, 0.195454, 0.510990, 0.510931, -0.547970, -1.107379, 1.378254, -0.426946, -0.598017, -1.019473, -1.121591, -0.470034, -0.161299, 0.777704, 0.133550, -0.176712, -0.017245, -1.136618, 0.503033, -1.383096, 0.822830, 0.767124, -0.394212, -0.072871, -1.486160, -1.248963, -1.098783, 1.011385, -0.096264, 1.596422, 0.311931, -0.608054, -1.003826, -0.276000, 0.317606, -0.616738, -0.111589, -0.426557, -0.156491, 1.046178, 0.301068, -0.406941, 0.592703, 1.170197, -0.621346, 1.076189, -0.690729, -0.653794, 0.137487, -1.681101, 1.049646, 0.974250, -0.276612, 0.701129, 0.000073, 1.008310, -0.055469, -0.811403, 0.354254, 0.404483, 0.113488, 0.886757, -1.122117, 0.573557, 0.152809, 0.869570, 0.540475, -0.744713, -1.403445, -0.799318, -0.148949, -0.451342, -0.375073, -2.122394, 0.444708, -0.253525, 0.511109, 0.288856, 0.723743, 1.195659, 1.483389, 0.900642, 0.557568, 1.844038, 1.446887, -0.900760, 0.412387, 0.352154, 0.249417, -0.380304, 0.371409, 0.015859, -0.484620, 1.235436, -0.991896, -0.201952, -0.332216, 1.470934, -1.215860, 1.911471, -0.058955, -1.631309, 0.190916, 0.494214, -0.694264, -0.172629, -0.189199, 1.033014, -0.066433, -0.086447, -0.084709, -0.765858, 1.455836, -0.871300, 1.153582, -1.391816, -0.083953, -0.804606, 0.167428, 0.708695, -1.265433, 0.077239, -1.385458, -1.384990, -0.966568, -0.951444, 0.669548, -0.081712, -0.157855, 1.798506, 0.365181, 1.288837, 0.139012, -0.230281, -1.493319, 0.709174, -0.429123, -1.245065, -1.308375, 1.765934, -1.280438, 0.953191, -2.002581, -0.059504, 0.250909, -0.434838, -0.913996, 0.858250, -1.672356, -0.559490, -0.073074, -0.688652, -0.349716, 1.672270, 0.326728, -0.400196, -0.151915, 0.131303, 1.229596, -0.337570, -0.364297, 0.143851, -2.110772, -0.216460, -0.785227, -0.966416, 0.228919, -0.655878, 0.425781, 1.075376, -2.333562, 0.747387, -0.426350, 0.996513, 0.576166, 0.804368, -0.242826, -1.333834, 2.225008, -0.081637, -0.319407, -0.688550, -0.594026, -0.835645, 1.246157, -0.263571, 1.499822, 0.620200, -0.375359, 0.569909, 0.863126, 2.488399, -1.040870, 1.759261, 0.690760, -0.549890, -0.674254, -1.006409, -0.850728, -0.817637, -0.074383, -1.934837, -1.408224, 0.666523, 0.440452, -0.624849, -0.159652, 1.347591, -1.235264, 0.027476, -0.862414, -0.035395, 0.352772, 1.536579, -0.982456, 1.357662, -0.526373, -0.435963, 1.196760, -0.668849, -1.733436, 0.461897, -0.373559, -0.286465, 0.126122, 0.109977, 2.607158, -0.673400, 1.195237, -2.674417, 0.801229, -2.334320, -0.141863, -0.155911, 0.640583, -0.148753, -0.176968, 0.283673, -0.142229, -0.422912, -0.729475, 0.058195, 1.251332, -1.147403, 1.003693, 0.203539, 1.007680, -1.054713, -1.258304, 0.022741, 0.279031, -0.646290, 0.007242, 0.122230, 0.005335, -0.070718, 1.139077, -0.862658, 2.654759, -1.467608, 0.397219, -0.177086, 0.054445, -0.163696, 0.407321, -0.337311, -1.572161, -0.811477, -2.188338, 0.975030, 0.151107, -0.979411, 0.761313, 0.324981, 1.630455, -0.353466, -1.870614, 0.036722, 0.459064, -1.767113, -1.088662, -0.089991, -0.391338, 0.088666, -0.062723, 0.156676, -0.541697, 0.479613, 0.159846, -1.371737, -0.240278, 0.512148, 0.418020, 0.276277, 0.233816, -0.865647, 0.816679, 0.945361, 0.678430, 1.385612, 0.824466, -0.317020, -0.348200, -0.131583, -1.065984, 0.475807, -0.278988, 0.980412, -0.835238, 0.216817, -0.089599, 0.572101, -1.199417, -1.546205, -0.323231, 0.893758, 1.007979, -1.058063, 0.236106, -0.286649, -0.602894, -0.398447, -0.276907, 0.016497, 0.004466, -0.051873, 0.762708, 0.630312, 0.423975, 1.094360, 0.098453, 0.792257, -1.667375, -1.322439, 0.279260, -1.750137, 0.344612, 0.147661, -2.004397, -1.551376, -0.496435, -0.364173, 0.658206, -1.558175, -0.562632, -0.776092, -0.438708, 2.223034, 0.980798, -1.416691, -0.450680, 2.428056, -0.212674, -1.345158, 0.952446, -1.037897, 0.351591, 1.134075, 0.495699, 1.001154, -0.427729, 0.214008, 0.906830, -0.492925, -0.193309, -0.622169, 0.631036, 0.710502, 0.570168, 2.369327, 0.085146, -1.043402, -0.925901, -0.722714, 0.447564, -1.491313, 0.447358, 1.153646, 1.723652, -0.173053, 0.916250, -0.919389, 0.679481, -0.967282, 2.193140, 0.161831, -1.846651, 0.816943, -1.488651, -0.989658, 0.091616, 0.135305, -0.884996, 1.895018, -0.161328, 1.295919, -0.411948, -2.292483, 0.455828, 1.722775, -0.663751, 0.799423, 0.266761, -0.676759, -1.819405, 0.419935, 0.695112, -0.167231, 1.398538, -0.281679, -1.915891, 0.571918, -1.026022, -1.374756, -0.320512, 0.473417, -0.986940, 0.670181, -0.685333, -0.663446, -0.440841, -1.057449, -0.813059, -2.160205, -0.116324, -2.169278, 0.278242, -0.424217, 1.010652, -0.695913, -1.689736, -0.356101, -0.757239, 0.261743, -0.348220, 0.539287, 0.777627, -0.854419, 0.141046, -0.018495, -1.655357, -1.322328, -1.463209, 0.597183, -0.169191, 1.186155, -0.016749, 0.600300, -1.267830, -0.162760, -0.391157, -0.031393, 1.407815, 0.358288, 1.544473, 0.791551, -1.200400, -0.319555, 1.110689, -1.670973, -0.604412, -0.042999, 0.805568, 1.020209, 1.722845, -1.903789, -0.866146, -2.141925, 1.002298, -2.234771, -1.095119, -0.583331, 0.455447, -0.797967, -0.215524, -0.079590, 0.269621, 0.876168, 0.474345, -2.382275, -0.471721, 0.020067, 0.745750, -1.012550, 0.948646, -0.306364, -0.743376, -1.179639, -0.490955, -1.244462, 0.964408, 0.202930, 0.098909, -0.488945, -0.224141, 0.230170, 1.147823, 0.319292, 0.522719, 0.881532, 1.080810, -0.245851, 0.176343, 0.557230, 0.543837, -0.725560, 0.896106, 0.819442, 1.614644, 0.618036, -1.136842, 0.297906, -0.110686, -0.815925, -1.186612, -1.213115, 1.964087, 0.503936, 0.822970, -0.473160, 1.228587, -0.011199, -0.545849, 1.035540, -1.554967, -0.878720, 0.914881, -0.318073, -0.357826, 1.392044, -0.990761, -0.133545, 1.749936, 0.062444, 0.087049, -0.651763, 1.225484, 0.864372, -0.991448, 1.139257, -0.105412, 1.124114, 1.307879, 0.585158, 1.349531, 0.577072, -1.169216, -0.159612, -0.306705, -0.858280, -2.010714, -0.534007, -2.173468, -0.204237, 1.166223, 0.361621, 0.539108, -0.805112, -1.015777, 2.059971, 1.271596, 1.425568, 1.017355, -0.508501, 0.100404, 0.874458, 1.852387, 0.796929, 0.722705, 0.780477, -0.137631, -0.460351, 0.347021, 0.603658, 1.411721, -1.272589, 0.886577, 0.072505, -1.672949, -1.960906, -2.848154, -0.895101, -2.119036, -1.174544, -0.538957, -1.410134, -0.221534, 0.900302, 1.395551, -1.059181, 1.542288, 0.697789, 0.607866, 0.319514, 1.689381, -0.645638, -0.719593, 0.511458, 0.486433, -1.744721, -0.064272, -0.711403, 1.230375, -1.513271, 2.075876, 0.370495, -0.532843, -0.171948, 0.008393, 2.184876, -0.160692, -0.707834, -1.142801, 0.312959, -0.331968, -0.264170, -1.448145, 1.421661, 0.266381, -0.017792, 1.355882, 1.682565, 1.868037, -3.076073, -0.374865, -0.842945, 0.850653, -1.506346, -0.738771, -1.540656, 0.552432, 0.562392, 0.593412, -0.187969, 0.166893, 0.714517, 0.816390, -1.782228, 1.371503, -1.655736, -0.550219, 1.840159, 0.245365, -0.090806, 0.511241, -2.320465, 1.313888, -0.607975, 1.647739, -2.783837, -0.872146, 0.557682, -1.124446, 1.077002, -0.633590, 0.906387, 0.162231, 0.127604, -1.825788, 0.507563, 0.149004, 0.481442, -0.566950, 0.285794, -1.951490, 1.240610, 0.842461, -0.280273, -0.680668, 0.279997, 1.256521, 0.900380, 1.330421, 0.167963, -0.155769, 2.512261, 1.453015, -0.372736, 0.649509, 0.652601, 0.381735, 1.280074, 0.478309, -1.076764, 0.610907, 0.999313, -1.097063, -2.173566, -0.722954, 0.174051, -0.218577, -0.142822, 0.137032, 0.142682, 1.269699, 0.483088, 0.915366, 0.743598, -0.892581, 0.682828, -0.874223, 0.617007, 0.404190, 0.156124, -0.573231, -0.578045, 1.990808, -0.547045, -0.059656, -0.706795, 0.823791, 0.239120, 0.760238, -0.631524, 0.483145, -0.272599, 1.066651, 1.776854, 1.333696, 0.270038, -0.639615, -1.524093, -0.593235, -0.669937, -1.287344, 0.624233, 1.234175, -0.469339, -2.673773, 0.197788, 1.229611, -0.160598, 0.295828, 0.290539, 1.340376, -1.546628, 0.324714, -0.282165, -0.934606, 0.171220, -0.660123, -0.237934, 0.706449, 1.069371, -2.002259, -0.360696, 0.789479, 0.203824, -0.244098, -0.450729, -1.033425, 0.004591, 1.014519, -0.336808, 1.216950, -1.574796, -0.378562, 1.282009, -0.136177, -1.236178, -1.344107, 1.152737, -0.114498, 0.104634, 1.581375, -0.248600, 0.445797, -0.671835, 0.813808, -0.450572, 1.171678, -0.218566, -0.851262, 0.470281, -1.232525, -0.441207, 0.797514, 0.224421, -0.786897, -1.338343, 2.918136, -0.484288, 1.700449, -2.503681, 0.405204, -0.958056, -0.159268, -0.979951, 0.784583, 0.371375, -0.335393, -1.403690, -0.672031, -1.768612, 0.486015, -0.183907, 2.059938, 1.663091, 0.777940, 1.224331, 0.243463, -0.212734, 3.675434, 0.015961, 2.127998, 1.799297, 0.677596, 0.742624, 0.267620, -1.125191, 0.098975, 0.676437, 1.406714, -1.102403, 0.274027, -1.338014, 0.000497, 1.093379, 0.233855, 0.584885, -0.479394, 0.799204, 0.228711, 1.393660, -0.309822, -1.396516, 0.354881, 1.645507, -1.811889, 0.785144, -0.476500, 0.225611, -0.458132, -0.265379, 1.129122, -1.420787, 0.478497, -1.534723, 1.882321, -0.459904, -1.105561, -0.698393, 0.319162, 0.955874, 1.575655, 1.049060, 0.321607, -0.554712, 2.391111, -0.460636, 0.622923, 0.211547, -0.037155, -1.077355, 0.271574, -0.242270, 0.499386, 0.661349, -2.716219, -0.844623, -2.033322, -0.432095, -0.160874, -1.111089, 0.466569, 0.160188, -0.882351, 2.635583, -0.084218, -0.475544, -1.096698, 0.843347, -0.342527, 0.119832, -0.526319, 1.429026, -0.704974, -0.430196, 0.760298, 0.681345, -0.670249, -0.641111, 0.180972, -1.106293, 1.532891, 1.068363, 1.003581, 1.409564, -0.181188, -0.891836, 0.355961, 1.210890, -0.888511, -0.172888, -0.519026, -0.531364, -1.076281, 0.726658, -1.262809, 0.926454, 0.579979, 1.603911, -0.950228, -0.685054, -1.272782, 0.438027, -0.162733, 0.315365, -2.177338, -0.673697, 0.145284, -0.478879, 0.983600, 0.437519, 1.494868, 1.575354, 0.150170, 0.349174, 0.171159, -0.120737, 1.543509, 2.076893, -0.492403, 0.317766, 2.001430, 1.440680, 0.513666, 0.356342, -1.509140, -1.363681, 1.845136, 1.292002, -0.148575, 0.299693, 1.170144, -0.308276, -0.458720, 0.794473, -0.967977, 1.105097, 2.130901, -0.123496, 0.081986, 1.002645, -1.085919, -0.560473, 0.296005, 0.789353, -0.269847, -2.558980, 0.927275, -0.467784, 0.317143, 0.458393, 0.057566, -0.549560, 1.497769, -2.898894, 1.654285, -0.454681, -0.822528, -1.730295, 1.074960, 0.137918, 0.070625, -0.117567, -0.457990, -1.245347, 0.397462, -1.278753, 0.047606, -0.114704, 0.434614, -1.224872, -0.444581, 0.489287, -0.773125, -0.097111, 1.633667, 0.155354, -0.419924, 0.873116, -0.458484, 0.473671, -0.091978, 0.687364, 1.475949, 1.141860, 0.514919, -1.755532, 0.871819, 0.774535, -0.152756, -0.743990, 0.740205, 0.046770, 0.782677, 0.970344, -2.098977, 0.194778, 0.061838, -0.740884, -0.456557, -0.293963, 0.267428, 0.572115, -0.202906, 0.881771, -1.027140, 0.554616, 1.005625, 0.168106, 0.128437, 0.822852, -0.916728, 1.281431, 1.495535, -0.542165, -1.262006, 1.901224, -0.740243, 0.243219, -0.022770, -1.308703, 1.224213, -0.547377, -1.276179, -0.213497, 0.578068, 2.069428, -0.185776, 0.662663, 0.827051, 2.622462, 1.334861, -0.263207, 0.515121, -0.318664, 0.350667, 0.027830, -1.315444, 1.531451, 0.117391, 0.943620, -0.521673, 0.418379, 1.232737, -0.076268, -2.375868, 0.412047, -0.529878, -0.013168, -0.069190, 0.680694, -0.150145, -1.012116, -1.137958, -1.113784, 0.046429, 0.666767, 0.826792, -1.468080, -0.224615, 0.614530, 1.012420, 0.080754, -0.281168, -1.682514, 0.209661, 1.153289, -0.767129, -0.156860, 0.693448, -1.561837, -0.693193, -1.362141, -0.122263, 1.295253, -2.919127, 0.338436, 0.008621, 0.847522, 0.696990, -0.911289, -0.135180, -2.146954, 1.856832, 0.854619, 0.441767, 0.904763, 0.492492, -0.225177, -1.089328, 1.436821, 1.332541, 0.169813, -0.380365, 0.918262, -0.122714, 2.225160, -0.524163, -1.738663, -1.297546, 0.376041, 0.751986, -1.721446, -1.257990, 1.474788, 0.221108, -0.034420, 0.196502, 1.763677, -0.583232, 0.529788, 1.495535, 1.939037, 0.629916, -0.178530, -0.305083, 0.618505, -1.706171, 1.988135, 1.009309, 0.967654, 1.388601, -0.365528, 0.052859, -0.278418, 1.193452, 0.183563, -1.722935, 1.221311, 0.049304, -0.490819, -0.882158, -0.260450, -0.457841, -1.866920, -1.852402, 2.693872, 0.813261, -0.723892, -0.731183, 1.472821, -0.209544, -1.121239, -0.409280, -1.236758, 1.128726, 0.095525, -1.053991, 0.213046, 0.079628, 0.406784, -3.040499, 0.429716, 0.321059, 0.558590, 0.546992, 0.779609, 0.361150, 1.243232, -0.500127, 0.404494, 1.213458, 0.818050, 1.146753, 0.425089, 0.347603, 0.771793, 1.886813, 2.385094, 0.138731, -0.565796, 0.228482, -1.039877, 0.626217, -0.426960, 0.849791, -1.534972, 1.156831, -2.055622, 1.825672, -1.193715, -0.786140, 1.402654, -0.731370, -0.513543, -0.815725, -0.491834, 1.141321, -1.994267, -0.359238, 0.707577, -1.512396, 1.079465, 0.779846, 0.522513, 0.038271, 1.040546, 0.426121, 0.691500, 1.957886, 0.046700, 0.171883, 0.440433, -0.324818, -0.104945, -0.338009, -0.741593, 0.443820, -1.072987, -0.486312, 0.698410, -1.788811, 0.548017, 1.636410, -0.583240, -1.840856, 0.836300, -0.311252, 1.024664, 1.726619, 0.939556, 1.092871, 1.274347, 0.044603, 1.627977, 0.526698, 0.562974, 0.770625, 1.729979, -0.335287, -0.809198, -0.798831, -1.087272, 0.173590, -0.764288, 1.093196, -1.631967, 0.831555, 0.815566, -1.201740, 0.056949, -0.242331, -0.664453, 0.199122, -0.486558, -0.369147, -0.938483, -0.170820, -0.232570, -0.373860, 0.337351, -0.543332, -2.185735, -0.655946, 0.583809, -1.406502, 0.446971, 2.025558, 0.208933, -1.544937, 0.553311, 0.277827, 0.067365, 0.470603, 1.902130, 0.774395, -0.853265, -0.093092, -0.340810, -1.172868, -0.831302, -1.080708, 0.438944, -0.018013, 0.178382, -0.283502, -0.787116, -0.097087, 1.253211, -0.621756, -0.661305, 1.109090, -0.587551, -0.405241, -0.360644, -0.215994, -1.422710, 1.914675, 1.233941, 0.953655, -2.333509, -0.852149, -1.092351, -0.122103, 0.245731, 1.098201, -0.620078, -1.351882, 0.564537, -0.060079, 0.737816, -0.033493, -1.607410, -0.330491, -0.198336, -2.569172, 0.528342, 1.402853, -0.231471, -0.078697, 1.729009, 0.972393, -0.414298, 1.142034, 1.833913, -0.000931, 2.256407, -0.397234, 1.850523, 1.713857, 1.233649, 0.984719, -0.676883, 1.817221, 0.868478, -0.640646, 0.238347, -0.059560, 1.811211, -2.618336, 1.122434, -0.796594, 1.339990, 2.108393, 0.534400, 0.309782, -0.718498, 1.931625, 1.736116, -0.696786, 0.529123, -1.193905, -1.394558, -0.592851, -0.454381, 0.860722, 0.841657, 0.813063, -0.667401, 0.812944, 0.106251, -1.117467, 0.033939, 0.250135, -0.816481, 0.928864, 0.013776, 0.452166, -0.206403, 0.566231, -0.532754, 0.404865, -0.704484, 0.274989, 0.918509, 0.273510, -0.079340, 0.708396, 0.600842, 1.311511, -1.409819, 0.651257, 0.861284, -0.372855, -1.196844, 0.079627, 0.218136, -0.638536, -0.716781, -0.580369, 0.220091, -0.458735, 2.025766, 1.872406, -1.838942, 0.934212, 0.560095, 0.021847, -0.751025, 1.370176, 1.245168, -0.225636, 0.614243, -0.720625, -0.587507, -0.496351, 0.432425, 0.689731, -0.407020, 0.051499, -0.472184, 1.849107, -0.261673, -1.038411, -0.202875, -1.930506, 0.178573, 0.374921, 0.243520, -0.507939, 0.423253, -1.937319, -1.258062, -2.139528, 0.754162, -0.625140, -1.389137, -2.456294, -0.865122, 0.786545, -0.770523, -2.166260, -0.265189, -0.063571, 1.546956, -0.020055, -1.578166, 0.853399, 1.930560, 0.041061, -0.804233, -0.473942, -0.600621, -0.004090, -0.894100, 0.103983, 2.114091, 0.310964, -0.458724, -1.717477, 0.030133, -1.470110, 1.314874, 0.188732, 1.668664, -0.842384, 0.006351, -0.971833, -0.046344, 0.707342, -0.819759, 2.144530, -0.368451, 0.579973, 1.091115, -0.148887, -0.953607, 2.462977, 1.053506, -0.148519, 1.047693, -0.776454, 0.240340, -0.394486, -0.269879, 1.690862, 2.480855, 1.462525, -0.436915, 1.700310, 1.124181, 0.194222, -1.808197, 1.220469, -0.241741, 1.272436, -1.422537, -0.256838, -0.148264, -0.817898, 0.235552, 2.362523, -0.856592, 1.003373, 0.435978, -0.489512, -0.465575, 0.338367, -0.220975, -0.152091, 1.214347, 1.261436, -1.251009, -0.086733, -0.504145, -0.243082, 2.009960, 0.921300, -0.978197, 0.598189, 1.883382, -0.506925, -0.769491, -1.593715, 0.272125, -0.759615, 1.535015, -0.229567, -1.103737, -0.004963, 0.446512, -0.693396, 0.685065, 0.349876, 0.878389, -0.884863, -0.905856, 0.264667, 1.015236, 0.269646, 1.987148, -0.195984, 0.655919, -0.286911, -1.527199, -0.253445, 0.099677, -0.457202, 1.188869, 0.395030, 0.863017, 1.397443, -1.111201, -0.355992, 0.496056, -0.416801, -0.762257, -0.122733, 1.373750, -0.663248, -1.904706, 0.275297, -0.499703, -0.514021, 0.661685, -1.064008, -0.212920, -1.032474, 0.677715, 1.622868, 0.278875, -1.416016, 0.067039, -0.945162, 0.391698, 0.510546, 0.694056, -1.011924, -0.436370, -1.340288, 0.630691, -0.748382, -0.446044, 0.840428, 1.421828, -0.669901, 1.326642, 0.704730, 2.521558, 1.185718, -0.526917, 1.773685, 2.081829, 0.280450, 0.199858, -2.248677, 0.076981, -2.061315, 0.573030, -1.083415, 1.620533, 0.801992, 1.190638, -2.281225}, + { -1.306722, -1.206562, -1.975445, 0.487621, -1.274873, 0.202878, 0.370678, -0.888560, -1.218515, 0.286163, 0.296078, 0.055218, -1.126057, -1.310813, -0.241133, 1.089183, 0.126261, 0.031059, -0.853306, -0.129335, 0.258499, 0.355229, -0.672504, 0.743305, 0.655174, 0.768350, -1.781715, 1.070682, -0.723175, -0.222303, 1.410245, -0.044610, 0.924951, 0.349737, -1.506689, 0.948673, -1.085804, -0.748358, -0.268861, -1.814905, -0.852187, 0.246033, -0.534419, 1.304748, -0.317217, -0.157855, -1.325686, 0.501769, -1.928003, -0.134035, -0.163909, -0.827481, 1.939342, -0.410003, 1.201873, -0.766892, 0.701508, 0.142465, 0.181057, -1.062275, -0.014814, -2.698196, 0.426235, -1.134260, -0.398332, 0.121772, -1.764585, 0.534018, -1.659719, 0.306604, -0.185052, -0.595970, -0.988305, 1.676990, -0.109199, 0.569350, -1.305212, 1.130324, 1.015020, -0.003081, -1.283716, -0.447787, 0.815507, 1.732758, 0.936907, 1.911322, -0.158580, 1.110616, -0.779370, -0.530357, -0.668752, -0.467689, -0.848225, 0.075540, -0.668599, 1.742014, 1.656108, 0.343155, 2.500977, 0.700264, 0.963104, -0.502447, -0.477134, -0.387984, 1.345994, -0.716208, -0.873581, -0.610938, -0.336195, 0.527732, 0.427084, -0.217771, 0.425557, -1.457579, 0.554205, -0.395361, 1.045093, 0.605722, 0.092606, 0.588054, 0.977983, 0.919272, 0.785715, 0.434977, -0.010583, 1.408288, 0.519720, 0.310569, 0.051274, 0.351584, -0.726844, -1.156364, 0.936601, 0.099755, -1.120196, 0.472369, 1.015454, -0.039088, -0.419028, 0.255730, 0.890333, -2.615524, -0.776374, 1.457297, 1.480246, 1.050104, 1.454498, 0.800723, 0.212406, -0.435737, 1.430674, 0.295141, 0.114087, -0.373037, -0.059230, -0.492871, -2.134345, -1.199543, -0.346212, -1.268863, 0.296013, 0.074813, -1.235711, 0.324600, -0.460215, -0.435496, -0.399402, 0.465942, 1.850745, 0.448322, 0.688889, -1.395328, 1.361733, 1.317964, -0.388510, 1.015474, -0.604932, -1.072571, 0.557681, 1.925666, -1.068738, 0.362429, 0.082447, -0.129648, -0.318583, 1.558964, 0.522583, -1.245015, -0.520117, -0.080027, 1.916075, 0.322486, 0.958424, 0.956264, -0.746050, -2.040569, 0.731997, -0.037063, -2.346496, -1.146968, 0.694428, 1.581480, -0.614993, 0.025680, -0.272150, -0.871129, -0.428290, 0.016335, 2.165401, 0.494348, -0.025721, 0.817672, 0.643510, -0.100029, -0.616181, -0.015105, -0.125358, -0.164433, -1.054809, -0.864784, -0.069287, 1.415149, -0.821419, 0.448273, 2.280845, -1.986816, 0.225685, -0.523084, 0.500218, 0.749879, -0.272502, -0.740693, 0.091759, -1.942635, 1.364206, -0.789020, -2.040679, 0.993146, -1.073300, -1.465888, 0.164628, 1.163299, -0.394076, -0.009136, 1.305377, -0.025738, -1.079011, 0.913876, 0.214629, 0.974499, 0.077655, 0.114111, -1.108704, 0.288485, -0.273144, -0.629008, -2.068877, -0.735528, -0.009369, -1.236564, 0.349024, 0.766635, -0.791139, -0.703229, 0.020788, -1.397684, 0.807858, 0.068726, -0.363310, 0.195866, 0.938688, -0.282219, -1.403648, -0.975187, -1.954921, -1.077149, -0.069249, -0.091329, -1.112220, -1.679775, -1.232943, -3.163320, 0.832715, 0.142919, -0.890044, 1.466927, 1.995846, -0.800878, -0.040032, 0.998341, 0.443440, -0.307606, 0.479758, 0.880129, 1.060946, 0.571326, -0.046933, -1.270826, 2.193730, -0.811687, 2.159508, -0.756006, 0.835855, 1.486672, 0.105801, -0.228791, 0.633529, -0.935643, -1.406075, -0.844729, -0.441701, 0.783811, -0.700373, -1.240873, -1.482285, -1.311738, -0.372136, 1.269048, -0.799852, 0.544281, -0.248499, 1.516497, 0.467687, -1.121008, 2.002320, -0.208965, -1.454322, -1.324623, -0.598917, -0.193018, -0.270473, -0.872131, 0.371548, -0.705005, 0.556712, -0.361946, 1.279783, 2.166782, 0.765301, 1.753687, -0.191952, 0.169321, 0.892159, 0.569899, 1.343415, 1.986206, -0.555111, 1.458809, -0.899853, 0.119683, 2.017251, 1.215258, 0.836795, 1.848446, 0.042193, 1.198956, -0.791644, -0.705681, -1.428828, 0.954153, 0.160547, 1.464064, 0.325959, 0.581150, -0.271421, 2.047957, 0.176391, -0.456448, -1.773184, -0.887603, -1.664833, 1.066357, -0.189105, -1.556737, 0.909495, 1.856653, -0.907899, -0.308409, -0.239976, 1.028492, 0.572439, 0.051372, -0.008288, -0.783578, 0.773929, 1.521470, 2.229440, -0.881176, -1.457718, 0.637489, -0.235527, 0.954130, 0.292365, 0.036335, -0.168974, -1.450869, -0.210238, 0.638893, 1.673296, -0.240232, -0.020352, -0.668014, -1.336941, 1.639382, 0.762648, -2.364070, 0.443269, 1.448576, 0.945689, -1.091067, 2.389915, 0.693015, 1.088408, 1.168374, -1.758695, -0.086013, 1.013681, -0.090492, -0.044804, -0.828310, 0.510437, 0.701660, 0.558064, 0.549422, -0.536471, 0.201789, 1.422420, 0.784057, -0.036343, 0.205224, -0.000234, -1.192550, -1.566831, -0.729800, -0.108911, 0.137060, -0.298037, 0.328502, -0.378400, 0.388234, 0.742648, -0.180846, 1.231257, 0.800301, 0.875977, 1.408661, 0.135466, -0.329125, -0.986001, 0.986953, -0.575777, -0.424637, 1.081072, 1.550585, 0.170398, 0.240643, 0.883177, -1.665744, -3.635990, -0.137211, 0.363277, 2.063344, 1.131993, 1.311593, 0.927851, 1.413076, 0.438170, -0.970018, 1.312096, -0.779295, -0.310879, 0.259101, 0.250937, 0.940665, -0.285690, 0.580361, -1.237775, -0.508898, -0.348998, 0.596636, 0.599988, 0.630155, 0.889974, -1.476112, 1.060663, 0.634004, 0.799343, -0.401605, 0.621985, 0.589858, -0.991861, -0.724526, 1.300982, -0.287826, -0.658643, -0.476222, -0.557687, -0.449509, -0.699987, -0.019910, -0.147444, 1.709261, -0.749892, 1.567296, 1.291917, 1.009630, 0.768685, 0.384907, -0.199116, -0.957984, -0.378198, -0.155765, 0.510851, 0.444441, -1.130476, 1.707635, -1.042398, -0.286215, -1.216550, 0.666569, -0.017838, 0.295911, 0.087384, 0.965974, 0.822800, -0.569121, 0.768136, -0.117474, 0.741499, -1.866723, 1.204409, -0.520818, -0.898192, 0.484169, -0.841029, -0.356190, 0.196639, 1.632712, 2.416075, 0.022901, 2.814648, 1.113629, 0.524847, 0.164436, -0.070459, 0.708655, 0.671501, -0.649493, -0.459252, -0.401812, 0.241851, -0.785663, -0.102306, -0.109762, 1.360568, 0.966850, -0.744533, 1.114473, -0.706908, -1.753237, 0.993281, -1.377887, -0.074141, -1.371117, 0.648602, -0.333696, 0.000986, -0.279523, -0.020501, 0.127914, -0.481768, 0.461848, -1.183002, 0.896069, -1.159050, -0.787095, -0.891154, 2.070235, -0.219389, -0.912212, 0.615356, 0.349290, 0.859179, 2.019272, -1.799851, 1.385335, 1.281392, 0.710911, -0.284844, 0.000106, 0.282691, -1.863078, 2.113405, 1.339994, -1.174242, -0.317377, 0.156986, -0.475833, 1.165828, 1.467965, 0.093701, 1.154228, 0.193128, -0.076910, -0.967719, -0.123777, 0.823184, 1.170257, -1.430106, 0.074882, -0.537723, -0.297741, 0.826818, 0.326836, 0.711172, -0.103686, -0.038879, 0.792268, -0.637338, 2.041163, -0.571609, -0.186632, -0.858217, 0.218720, 1.065005, -1.220584, 2.136113, -0.624432, 1.583983, 0.963995, 0.194155, -1.578501, 0.923188, 0.394748, -0.849746, -0.229841, -0.764036, -0.372095, 1.127376, -0.895114, -0.005374, 1.908703, 0.042856, 0.422344, 0.816188, -1.504051, 1.077873, -1.082877, -0.845144, 0.711653, -0.203057, -0.559347, 0.126911, -0.029682, 1.123529, -0.770283, 0.592021, 0.790654, 1.171499, -0.705528, 0.326963, 0.239395, 1.614970, -1.878006, 0.914507, 1.060340, 1.464831, 0.279282, -1.921026, 1.760842, 0.103957, 0.563977, 0.482349, -0.714490, 0.079475, -1.052644, 0.671598, 0.593266, -0.625355, 0.316930, 1.771858, -0.929034, -1.400440, 0.675175, 0.138499, -0.340336, 0.194618, 0.497762, 1.230675, 1.512318, -0.026135, -2.557627, -0.707932, -0.219666, 2.103652, -0.559057, -0.743498, 1.089843, -0.937166, -0.093129, -0.121561, 0.335960, -1.261972, 0.639164, -0.852551, 0.419367, 0.011299, 0.612042, -0.713572, -0.567932, 0.401327, -0.541403, -0.153874, 1.252321, -1.245636, -0.181698, -0.146689, 0.020970, -0.755785, -0.386608, -0.068100, 1.382661, 1.712314, 1.095520, 1.285142, -0.848580, -0.052623, 0.930931, -0.438191, -0.588549, 1.465999, -2.008006, -0.636326, 1.136867, 0.461443, -0.321635, 2.135953, -0.335056, 1.226329, 1.564624, -1.237418, -2.732117, 0.373494, 0.322539, 0.017572, 0.573900, -0.312578, 0.644327, 1.134529, -0.662524, -1.844351, 0.559155, 0.101749, -0.297372, 0.560997, -0.530407, -1.665942, 0.277881, 0.861003, 0.080971, 1.217627, 0.212807, -0.815147, -0.355421, 1.937080, -0.907170, 0.754306, -1.994270, -1.028057, -0.375151, 1.151616, -1.040688, -1.280795, 0.874890, -1.661557, 1.149909, 1.119439, 2.150875, 0.529790, -0.555059, -0.082521, -1.635425, 1.088980, -2.092434, -0.780371, -0.592898, -1.073179, 1.641686, 0.597490, -1.233361, -0.652751, -0.225743, 1.180272, 0.073709, -1.551583, 1.000875, 1.089462, -0.525395, -2.644914, -0.658505, -0.490629, 1.755187, 0.939491, 0.225419, -0.662945, 0.647270, 1.171921, 0.158083, 0.907096, -0.220339, -0.793155, 0.033152, -0.604378, 1.159016, -3.269448, 0.128253, 1.239591, -0.570770, -0.865168, -0.389532, -1.546964, -0.182532, -1.373328, 1.313101, -0.784499, -1.741225, 1.430397, -0.775050, -0.329480, -0.654925, 0.139817, -0.511233, 0.852622, 0.650294, -0.456377, 1.054221, -0.508107, 0.207025, 0.644104, -1.316832, -0.009301, -2.487498, 0.550995, 1.231386, -0.190392, -0.090883, 0.228802, -0.644126, 0.505859, 0.545793, 0.773597, 0.968773, -0.238321, 1.779011, 0.578098, 2.167257, -0.873185, 0.153486, 0.792205, -1.219238, -0.308090, 0.915982, -2.219101, 0.518639, -0.729584, -0.714895, 0.188635, 1.313635, -0.942638, -1.566310, 1.202370, -0.558439, -1.035084, 1.216388, 0.852245, 1.195368, 0.527580, -0.087302, 0.145773, 1.314205, 1.288847, -2.048186, -0.165540, 0.803084, -0.384076, 0.034000, -0.336768, 0.998313, -0.160068, -0.282046, -0.202294, -0.039547, -0.065647, 0.228173, 0.359293, -1.796697, 0.446656, 0.235060, 1.419604, 0.507064, -0.503891, 0.372678, -1.159999, -0.023849, 0.659625, -0.265349, -1.015350, -0.649836, 1.119256, 0.683738, -0.223828, 1.532778, 0.201287, -1.579463, 1.459927, 0.367187, -1.075856, 0.908331, -0.611305, -0.300508, 0.505438, 0.153719, 0.701105, -1.064955, -1.170030, 1.374385, 1.882858, -1.300594, 0.108963, 1.743860, -1.213474, 0.985335, 0.688561, 0.097856, -1.186852, -0.355296, -0.635735, 0.325742, 0.213272, -0.809125, 0.819738, -0.601411, 0.014599, 2.264916, 1.102887, -0.005778, 0.303516, 0.546233, -0.121246, 0.387421, -1.188764, 0.248742, 1.064818, 0.636523, 1.061661, -0.890358, -0.298644, -0.376108, -2.351388, 0.893723, -0.605168, 0.030722, 0.252506, 1.251551, -1.558351, -1.211881, 0.597801, -1.222575, 1.752244, 0.352015, 0.848607, -0.979261, -0.104326, -0.056452, -1.364747, 0.401830, -0.911071, -0.418662, -0.201700, -0.485656, 0.859280, 0.460503, 0.203149, -0.554091, 0.451286, -1.981969, -0.518462, 1.552624, 0.043932, 1.641353, 0.130044, -0.170692, -0.563246, 0.727835, -1.075599, 0.569569, 1.787155, 0.407785, -0.787473, 0.682936, -2.238141, -0.281956, -0.092752, 0.612499, -1.461787, -1.112643, -0.061827, 0.259854, -0.049496, 1.440056, 0.660853, 0.563754, -1.475085, -0.733403, 0.122397, -0.853462, -0.485674, 1.179337, 0.095868, 1.012588, -2.189900, 0.434248, 0.419818, -0.606318, -1.337364, 0.661777, 0.941832, 0.630758, 0.274054, 0.613185, -1.555423, 2.208676, -1.226143, 0.192876, 0.382807, -0.507107, -0.676884, 1.297350, -1.838749, 0.502938, 0.489421, -1.449614, -0.220311, 0.236136, -1.689865, -0.406308, -0.727294, 0.098725, -0.464643, -0.884307, 0.013853, 0.236973, -0.164221, -0.674006, 0.131695, -0.617369, 0.643403, -0.543583, 0.772491, -0.492485, -1.052373, 0.107329, -1.207519, -1.182785, 1.328212, 1.204217, -0.804488, -1.140010, 0.097034, 1.217178, -0.031188, 1.321860, -0.154781, 1.694274, 1.895952, 0.486160, 1.679492, -0.372067, 1.200676, 0.092518, 0.023981, 0.341186, 0.106569, -0.371428, 0.048285, -0.598240, 0.555632, -0.113781, 2.258779, 1.139286, -1.561539, 0.120659, -0.818270, -1.615670, 0.231890, 0.818585, -0.282959, -0.619159, 0.425710, 0.107852, -0.495312, -0.922744, 1.618770, 0.611693, 0.209416, 0.061289, 0.383158, 0.403099, 1.544681, -0.247567, -0.226363, 0.282293, -0.162925, -0.150727, 1.665162, 0.417748, 0.247617, 1.095870, -0.724538, -0.947903, 1.287739, -0.572502, 0.410051, -0.294066, -0.973140, -0.620319, -0.176661, 0.734385, 0.257918, -0.003877, -0.283247, 0.398960, 0.234987, -0.888135, 0.780387, -0.883143, 1.528162, 1.369998, 0.440470, 0.311630, -0.217703, 1.169327, 1.152547, 0.001330, -3.111687, -1.161778, 0.579605, 1.354272, -1.816908, 0.289452, -0.715973, -0.227970, -0.266305, 0.237394, 1.558306, -0.287718, -2.105695, 0.163154, -1.389914, -0.859619, -0.589800, 1.022661, 0.295959, 0.104051, -0.036047, 0.606662, 0.164811, -0.957931, -2.492861, 0.030811, 0.920364, -0.360781, 0.139982, 1.133491, -0.300707, 0.336575, 0.507103, 0.600709, -0.211559, -1.394743, 1.478281, -0.076582, -1.096339, -0.712362, -0.432329, 0.579065, -1.488342, -0.910461, 0.337790, 0.849376, -0.628656, -0.201502, -0.813711, 0.780423, 0.809918, -1.017160, -1.816959, 1.215460, 0.227868, -0.206193, -0.006789, -0.011629, 0.823619, -1.465040, 1.220760, 0.915470, 0.424382, -0.406326, 0.788891, 0.597634, 1.024642, -1.627069, 0.524052, -0.118481, -0.861173, 0.228996, -0.789750, 0.704336, 0.196415, 0.265733, -0.902469, 0.667173, -0.543033, 2.697160, -1.522783, -1.799450, -1.411446, -0.694229, -1.156437, -0.470852, -0.056675, -1.736340, -0.594657, 0.048243, -0.819701, -0.876457, 0.358401, 1.267470, -0.306011, 1.039295, 0.601812, -0.564680, -1.104105, -0.722004, 2.312108, -1.349747, -0.892771, 0.151801, 0.315304, -0.725026, -0.418684, 0.111435, 0.596750, -0.555341, 1.611905, 1.272542, -0.023220, 0.206478, 0.134233, -0.203241, 1.350970, -0.342681, 0.164155, 0.863499, -0.050786, 0.163347, 0.337377, 1.452552, 1.332757, 0.263455, 0.735801, -0.546056, -1.579859, -1.580557, -0.910682, -0.440208, -1.036152, 0.108445, -1.348276, -0.778949, -0.273071, 0.307473, -2.107667, 2.899087, -0.154676, -0.825747, -0.116451, -0.112139, -0.695980, -1.997260, -0.559540, 1.374828, 1.355160, -2.918503, -0.828328, -0.525038, 0.515643, -0.221758, 0.441751, 1.314681, -2.328024, -0.728079, 1.614282, 0.403975, 1.075355, 0.200915, 1.638984, -1.247847, 0.443415, -1.155030, 1.513093, 0.715488, -0.617151, 0.333406, -0.399340, 0.069123, 0.446708, -0.502536, 1.180051, 0.102046, -0.739725, 0.923782, -1.826780, 0.179978, -1.952412, 0.328875, -2.264256, -1.558819, -0.846077, -0.163427, -0.943234, -0.386209, -0.235066, 0.077537, -0.187691, -1.501340, -0.627953, 0.086696, 1.407023, -0.848803, -0.072817, -0.934108, 0.496366, -0.241809, 0.135577, -1.307954, -0.245559, 0.165330, 0.486256, -0.852865, -0.208494, 1.770206, 0.396216, 0.270409, 2.037633, -0.064223, 0.064612, 0.445806, -0.957088, -0.919547, 0.215573, 2.278594, -0.416339, 0.161316, -0.379705, 0.696427, -1.197473, -0.152829, -1.201155, -0.067571, 0.744421, -1.273772, 0.091633, -1.153070, 0.745280, -0.126027, -0.463737, -0.596977, 0.259205, 2.094970, -0.055123, -0.817826, 1.679727, -0.550194, 0.547040, -1.468360, 0.047270, 1.728018, 1.251678, 0.785110, 0.782004, 0.635047, 1.491072, 2.374910, -0.857646, -0.037283, -0.443378, -0.145824, 0.398244, 0.444377, 0.530464, 0.507240, 1.838416, 0.608443, -0.627736, -1.815393, -0.918009, -0.795143, -1.268468, -0.493845, -1.959881, 0.927852, -0.144308, -1.515496, -0.416742, -0.535321, -1.690671, 0.558452, -0.723324, 0.658306, 0.673020, -0.282153, -0.087523, -0.101062, 0.806614, -1.397657, -0.783966, 0.148817, -0.191359, 0.763614, -0.075771, 0.395182, -0.512973, 0.043773, 1.161476, -1.136248, -0.033076, 1.855701, 0.050423, -1.782616, 0.618242, 0.857557, 0.586584, -0.538299, -0.824793, -2.081231, 0.100155, 0.599181, 0.895736, 0.393109, 0.761994, -0.856217, 0.345470, 1.175187, 0.859146, 0.222996, 2.730433, 1.045481, -1.602272, -1.120842, 0.797835, -0.450566, -0.107617, 1.004892, 0.271661, -0.356596, 0.652141, -0.538075, 0.288047, 0.064005, 0.596706, -0.630322, -0.028489, 0.717982, -0.065484, -0.084068, -0.041005, -0.434164, -0.064324, 1.172602, -0.958908, -0.388051, -0.745537, 0.329071, 1.650854, -0.487696, 1.476046, -1.464900, 0.466550, 0.874340, -0.330703, -1.517606, 1.086196, 1.399697, 1.433387, -0.911661, -1.107046, 1.151739, 0.815799, 0.556304, 0.891766, -0.728414, -0.320747, -0.307799, -0.922006, -0.494039, -0.888249, 1.540241, -1.377076, -1.067262, 1.358926, 1.151412, 0.606119, -1.699460, -0.427536, 0.360005, 0.606905, -1.545228, 0.198811, 0.959342, 0.601874, -0.334327, -0.377551, -0.858046, -0.225197, 1.816804, 1.034932, 1.434679, 0.654734, 0.940643, -0.739575, -0.840147, -1.789858, -0.942806, -1.079719, 0.531839, 0.511425, -0.326281, -2.296900, -2.334516, -0.341631, -1.482882, 0.443912, -0.037954, 0.876560, -0.614322, 2.335886, -0.647980, 0.578187, 0.858352, -1.668314, 0.025324, 0.745265, 0.482212, -2.352133, 1.739185, -0.514463, 0.009494, 0.296828, -0.643168, 0.148094, -0.157162, 0.973446, -2.404760, 0.085901, -0.389550, 0.464780, 1.203284, -0.505066, -1.465330, 0.113142, -1.268466, -0.171102, -0.740924, 0.711941, 0.021854, -0.155897, 0.376086, -0.476774, 2.088704, -0.002063, -0.190758, 0.527170, -0.521759, -0.447835, -0.512182, 0.024397, -1.028813, -0.436797, 0.896304, 1.074301, -0.242409, 0.598928, 0.560371, -1.604305, -0.870563, 0.444375, 0.577974, -0.353234, 0.215623, 0.345611, 0.260071, -0.468246, -0.544294, 0.228037, 0.269647, -0.586471, -2.052550, 0.615393, -1.272593, -0.882642, 1.036288, 0.011614, 1.805478, -1.691650, 0.430511, -0.193104, -0.794786, 1.579785, 0.023423, -0.202144, -0.429140, -0.244490, -0.192104, 0.496623, -0.370862, 0.591385, -0.008358, 0.916484, 1.391264, 0.205551, -1.391085, -0.158767, -0.116726, 0.463252, -0.202024, 1.366361, -0.005888, -0.659149, 1.385597, -1.283743, 1.090053, -0.235352, -0.342533, -0.490919, 0.637522, 0.735195, 0.437611, -0.195301, -0.771487, -1.933584, 1.398047, 0.530650, -0.367794, -2.613991, -0.934382, 1.128839, 1.119543, 0.755983, 0.432306, -0.838827, -0.187274, 0.300638, 2.112506, -0.336808, -0.568510, -0.809779, 0.556836, -0.115932, 1.509196, 0.116030, -0.004545, 0.918701, -0.098034, 0.774322, 0.548438, -1.185807, 0.576253, 0.818708, 0.820646, -0.043009, -0.112975, 0.294283, 0.646336, -1.411424, 0.415686, 0.283050, 0.289867, 0.781490, -0.721728, 2.004668, 1.198695, -0.840073, 0.463102, 0.030390, -0.550954, 0.450995, -0.432116, 0.485383, -1.210767, 0.267810, 1.040128, -0.049312, -1.319735, -1.100990, 0.257950, 0.640590, 1.264726, -0.706996, 0.343020, 0.604296, 1.061179, -0.349471, 1.181923, -0.096113, -0.684709, 0.371165, -1.888668, -0.219498, -2.005449, 0.828665, -0.212407, -1.690258, 0.913129, -0.719772, -0.291366, -1.193654, -0.960187, -0.031259, 0.566043, -1.808817, 0.350319, -1.122654, 0.429573, 0.141642, -0.796642, -0.951431, -0.358224, 0.286029, 0.900678, -1.077279, 0.949549, -0.551130, 1.014358, 0.628007, -0.190322, 1.064191, -0.235220, 0.634681, -0.996202, -0.440077, -0.273290, -1.646487, 0.976593, 1.111389, -0.139303, -0.916863, -0.154713, -0.310510, 2.885064, -0.731374, -0.446964, -1.068459, 0.093839, 1.414929, -1.631422, -3.345341, 0.672032, 0.130001, -0.273509, 1.300311, -1.251719, 0.732780, 1.013213, 0.877303, -0.626863, 0.255106, -0.327187, -2.106743, -1.437281, 0.347722, -0.598641, 0.554328, -0.448056, 0.289314, -0.795904, -1.723003, -0.420764, 0.392462, -1.488810, -0.252925, 0.673444, -0.116164, -0.006031, -1.194115, 0.120299, 0.494225, 1.817080, 0.861764, 0.896387, 0.558066, 1.276631, 1.114552, -0.214774, 0.728033, 1.309181, 0.551700, 0.253694, 1.834876, 1.335530, -0.357923, 1.334914, 1.778314, -0.928489, -0.661655, -0.218289, -1.267311, -0.679976, 0.142578, -0.325426, 0.448539, -0.536486, 0.552878, -2.199202, -0.820706, -2.662360, -0.559948, 0.590066, -0.386476, 1.715975, 0.605198, 0.101238, 0.653559, -0.813276, 1.363169, 0.107939, 0.682765, -0.174299, 2.433555, -2.343627, -1.172672, -3.199686, 0.592968, -2.778187, -0.277380, 0.205596, 0.256554, 0.674087, -0.092992, 1.284310, -2.514184, 2.086236, -0.305648, 0.499562, -0.518138, 2.015840, -0.104281, 0.433778, -0.406942, 0.832048, -0.202261, 0.981248, -0.257785, -0.805417, 0.123813, 0.990685, 0.125278, 1.472102, 1.003173, 0.671391, -1.311633, 0.686317, -1.238560, 1.333381, -1.819972, 0.014583, -0.069385, 1.019034, 0.255380, 0.614337, -1.088945, 0.003024, -2.198287, -1.246073, 1.118342, 0.282005, 0.211082, -1.116343, 0.497717, 1.689003, -1.494971, 0.361726, 1.177114, 0.065296, -1.165127, -0.460834, -0.278577, 0.558672, -1.228186, 0.194247, -1.579477, -0.569127, -0.595906, 0.346841, -1.467514, 0.457670, 0.558748, 0.207878, 1.939161, 0.973660, -1.635622, 0.028355, -1.065006, -0.142816, 0.550287, -1.079264, -0.870758, 0.447781, 0.841872, -0.476380, -0.240467, 0.102527, 0.969131, -0.094159, -1.471724, -0.080538, -1.081234, 0.892425, -1.398874, -0.198271, -0.421002, 0.891942, 0.834312, 0.006150, -0.381829, -0.055182, 1.618491, 0.244830, 0.106999, 0.214148, 1.454636, -0.592663, -0.163587, -2.039119, -0.619669, 1.506373, -1.397350, -0.092203, -1.430567, -1.311889, 0.866339, -3.163515, -1.292274, 1.078179, -1.385464, -1.102093, 1.252812, -0.638390, 1.065954, -0.434725, -0.758999, -1.726670, 0.558720, -0.263322, 2.281444, -0.848641, -1.647519, 0.448649, -0.434710, -0.734985, -0.731943, -0.829069, -0.262430, 0.545340, 0.004613, -0.645514, -0.178483, -1.701218, 0.605534, -0.939845, -0.342279, -1.642277, -0.479832, -0.145732, -1.621380, -0.474369, -0.940053, -1.435311, -0.678221, -0.617701, 0.013875, -0.618717, -0.238223, -1.695965, -0.795559, 0.525432, -0.790244, -0.673575, -1.325514, 0.333026, -0.244594, -0.278886, 1.209369, 0.529215, -0.250697, -0.322201, -0.499480, 0.873978, -0.612866, 0.119325, 1.493435, 0.474964, -0.662750, 0.845538, -0.589458, -1.823233, 0.001842, -0.399125, 0.505185, -0.575673, 1.380647, 0.301480, 0.870098, -0.033522, 0.486709, -0.288075, 0.718362, -0.678294, 0.534405, -0.406838, -0.511154, 0.467546, -1.045277, 1.365833, -1.880154, 1.498577, -0.709347, -1.310839, -0.039387, -1.146252, 0.617003, -0.619881, -0.746843, -0.138104, 1.431202, -2.176347, -0.935408, -0.669361, 0.880733, 0.957628, 0.268094, 1.026087, -0.310804, -0.064648, -1.343621, -0.749944, -1.189768, 0.560676, -0.006086, 0.647117, -0.143102, 0.366470, -1.459244, 0.207666, -0.050755, 0.159965, -0.200505, -0.020746, 0.854998, 0.652354, 1.290493, -1.107352, 1.213934, 0.182142, 1.050795, 0.694052, 0.819290, 0.022826, -0.875291, 0.548073, -0.212302, -0.538839, 0.162168, 0.315788, -0.683053, 1.502058, 1.609384, -1.261816, -0.685542, -0.684384, 0.007175, -0.110525, -0.869473, -0.425027, 1.686312, 0.659582, -0.298156, -1.348327, 0.489380, 1.783486, 0.916291, -0.737333, 1.249722, 0.514340, -0.510650, 0.530287, 0.250790, -0.736731, 0.181218, -0.609399, -1.763146, -0.497334, -0.770102, 0.095765, -1.833470, 0.925065, 0.506651, -0.567896, 0.583574, -0.652694, 0.126927, -0.351854, 0.652261, -0.436328, 0.391945, 1.146941, -0.434520, 0.529063, 0.861122, 0.339439, 1.227181, -1.659411, -0.013468, -0.860145, -0.876674, -0.323090, -1.342286, 0.985412, 1.335472, 1.285018, -0.414086, 0.706340, 1.217383, -1.440695, -1.289047, -0.901490, 0.064526, -0.976088, -1.134814, 1.058022, 1.333273, -1.043313, 1.321891, -0.109960, 0.415771, -0.555932, -0.218403, -0.272969, 0.012761, 1.984532, 0.607617, 0.254116, -0.836948, 0.008405, -0.437715, 0.925419, -1.637382, -0.340474, -0.840463, 0.789162, 0.651031, -0.740322, -0.042824, -0.835316, 1.587364, -1.205372, 1.065413, 0.206891, -1.447811, 0.218973, 1.567639, -0.069754, -0.592155, 0.493281, -0.486558, 0.280744, 0.024010, -0.244175, -1.648609, 0.398642, 0.853410, 0.841394, -1.058714, -0.362462, 0.114567, 0.793381, -0.883279, -0.650965, 0.746007, -0.115356, -0.482327, 1.628481, 0.236334, 1.122638, -1.048374, 1.581355, 0.506680, -0.692447, -0.609296, -0.172604, 0.241335, 0.686081, -1.350582, -0.115404, 1.202263, -0.633033, 0.831468, 0.726793, 0.957572, 0.287042, 0.682826, -0.378327, 1.541249, 1.235914, -0.271342, 0.884730, 0.517920, 0.573293, -1.544325, 0.568943, 0.392183, 0.010682, 1.129690, 0.402858, -0.785571, -0.034727, -2.560512, 0.188622, 0.745281, -0.321471, -0.854352, 0.548736, -1.234354, 0.925957, -0.348154, -0.514366, -0.318813, -0.078934, -0.679750, -0.641392, -0.780845, 0.292700, 1.477203, 1.252533, -0.487051, 1.386790, -0.283977, -0.414354, 2.309083, -1.303284, -1.817065, 2.495653, 0.570511, 1.004694, -1.787725, -0.109871, 0.772058, 0.354526, -1.424405, 0.351693, 1.292659, -0.805693, 0.709871, -0.064224, 0.006072, 0.584756, 0.345615, 0.680089, -0.002734, 0.929262, 1.790102, 0.403073, 0.035194, -0.128437, 0.348572, -0.019493, 1.196981, 0.015461, -0.814024, 0.578597, -0.338844, 1.393876, -2.222345, -1.074805, -1.098250, 1.403857, 0.239371, 0.242014, -0.168282, -0.834605, -0.169059, -0.441645, 0.674441, -0.058228, 1.028264, -0.642770, 0.243626, -2.634166, 0.475228, -0.785591, 0.396225, -0.374844, 1.215585, -0.801908, 0.236088, 0.706994, 0.545217, 1.517945, 0.192899, 0.501366, -0.631635, 0.236042, -0.540647, -0.263529, 0.237750, -0.053088, -1.466106, 0.455937, -2.141427, -0.836912, 0.588601, -0.975322, 1.501426, -0.488858, 0.361602, -0.299698, 1.375798, -0.829770, -0.992468, -0.744957, 0.585658, -0.994177, 2.133005, 0.604265, -0.996530, -0.465949, 1.118589, 0.851781, -0.144288, -0.101109, 0.137684, 1.061046, 0.593670, 0.726586, -2.675390, 0.410663, 3.586453, -1.170571, 0.761411, 0.570526, 0.058953, 0.334523, -0.317482, 0.765881, -0.984257, 0.277280, -0.645113, 1.966093, -0.054017, -0.355771, 0.317502, 0.375538, -0.572351, -0.784479, -0.759979, 0.617876, 2.447737, -0.611156, -1.340673, 1.201098, 1.263286, -0.695809, -0.849187, 0.489012, -0.593956, 1.253131, -1.305665, -2.177678, -0.331286, 0.656302, -1.700598, 0.379237, -0.432112, 0.602720, -1.667386, 0.433250, 0.815467, -0.539471, -1.729565, -0.670985, 0.587887, -0.535748, 0.569673, -0.046745, -0.316038, -1.027328, 0.329559, -0.438133, -0.490015, 1.594848, -0.810045, 0.152105, -0.370337, 0.507324, -0.490510, -0.619391, 0.738050, 2.072518, -0.701880, 0.737407, 1.642830, 0.444321, -0.056485, 1.961288, -2.354003, -0.072037, -1.669549, -1.858596, -1.504215, -0.187371, -1.909644, 1.805385, 0.474356, 1.042067, 1.114747, 1.282275, -2.188725, 0.916882, 0.557736, 0.231816, -0.232051, 1.619510, -1.054217, 1.125998, -0.969100, -1.266579, -0.670209, 1.139490, -0.745597, -0.210947, -0.861337, 1.652766, -0.788320, -0.743822, -1.602206, -0.541056, -0.435770, -0.921485, 0.298054, -0.194899, 0.297088, -1.667046, 1.158349, -1.590320, 0.414036, -0.432755, -2.415697, -0.659518, -0.910445, 0.927733, -1.120275, 0.467300, 0.314042, 1.976022, 0.219947, 0.078395, -0.305890, 0.632552, -1.611635, -0.042283, -2.069789, 1.824029, 0.656008, -0.195056, -1.214351, 0.264522, 0.542187, 1.487073, 0.789542, 1.059119, -0.075870, 1.013427, -0.477173, 0.269869, -0.652294, -1.358589, 0.979331, 1.116919, -1.049375, 0.310614, -0.407688, 0.020530, 1.320260, 1.443595, -0.748712, -0.857938, -0.717673, -1.553223, 1.203013, 0.642697, -1.534610, 0.789280, 0.175633, -0.374085, -2.547447, -1.186978, 0.375963, 1.387543, 0.124566, -0.516787, 1.271062, -0.065854, -0.847381, 0.903283, -0.780442, -2.487500, -2.253640, -0.094605, 2.027686, -1.033854, 0.266449, 1.438877, -0.728771, -1.543139, 0.433430, -0.635535, 1.145563, -1.158888, -0.290143, -1.062991, 1.411065, -0.402367, 0.471370, -1.789846, 0.517319, -1.047263, 1.051822, 0.521338, -0.347231, 1.102154, -2.125638, 0.331757, -0.536398, 2.839321, -1.337101, -1.270588, 1.618598, 1.558441, -1.472812, 0.978768, 1.095047, 0.878453, 1.522101, -0.169450, -1.881421, 0.041783, -1.933428, -1.272658, -1.099831, 0.698799, -0.912297, -1.302414, -0.967370, -0.062387, -0.578776, 0.323390, 0.067520, -0.656164, -0.334443, -0.177343, 0.539449, -0.386821, 1.444985, -0.566086, 0.779453, 0.262055, -1.547493, 1.821644, -0.087003, -1.189743, -1.263727, 1.172478, 0.740028, 0.984671, -0.244013, 1.409685, -1.013735, -1.044181, 0.894445, -0.094312, -1.005935, 0.617880, -1.153423, -0.741734, -0.645282, -0.585838, 1.003105, -0.323091, 0.961363, 0.592898, -0.338686, -2.720963, -0.033931, 2.024170, 1.681945, 0.326379, 0.083399, -0.803196, -1.157355, -0.842997, 1.711657, -0.408833, -0.470732, -0.591740, 0.085203, 1.794521, -0.383445, -0.516549, -0.873501, 0.910886, 0.068872, -0.265310, -1.044059, 1.075193, -0.896742, 0.162181, 0.465172, -0.075295, -0.028526, -0.453873, -2.491138, -1.103367, -0.410223, -0.491504, -0.620867, 0.100039, -1.076069, -0.328097, 0.751399, -0.429668, 0.966350, -0.511710, 1.301603, -0.823436, 0.910685, 0.649541, 0.257834, -0.036782, 1.671105, 0.120764, 0.982925, 1.131655, 2.069821, 0.236031, -0.870674, 0.081054, 1.590142, -0.501175, -0.566931, -0.516470, 0.209410, 0.205497, -0.705121, 0.985071, 0.759925, 0.781093, -0.428546, 1.261780, -0.083528, 0.920203, -0.312253, -2.609334, -0.286968, -0.500162, 1.315484, 0.891519, -1.018784, -1.285232, -0.523674, 0.528247, -0.174721, 0.384928, 1.811198, 0.517066, -0.059081, -0.801826, 0.752000, -2.036761, -2.350544, 0.212618, 1.330320, 0.024189, 0.418928, -1.608373, 0.199062, 0.441548, -0.525658, 0.105482, -1.362616, 0.953430, 0.748849, -0.677355, 0.584905, -0.634090, 0.233904, 0.982807, 0.509537, 0.458873, 0.173705, -0.444020, 0.445336, 0.041020, 0.544738, -0.153590, 0.117306, -0.317249, -0.024588, 1.244830, 1.156654, -1.606700, 0.742057, 2.044751, -0.405146, -1.185307, 0.249288, -0.366873, -0.274687, -0.569499, -2.202950, -0.546792, -1.745989, 0.123779, 1.312750, 0.288120, -0.107591, 0.808838, 1.379432, -0.849142, 0.815486, -0.251258, 0.466500, -0.850278, 0.503180, -0.218065, -1.253637, 0.835728, -1.202638, -0.245552, 0.062515, 0.886108, 1.236440, -0.530222, 0.410336, 1.243686, -0.183674, -0.039397, 0.451284, 0.481612, 0.508805, 0.461431, 0.539364, 1.497278, -0.276442, -0.327327, -1.008459, 0.690461, 1.445435, 0.451333, 1.488243, -0.894386, 0.296445, -0.082720, 1.071635, -0.125299, -0.603705, 2.131453, -0.596367, -0.884052, -1.093542, -0.342706, -0.020823, 0.674616, 0.004123, 1.739355, -2.153884, 0.555722, 1.068139, 0.274012, 1.681075, 1.163319, 0.478205, 1.945848, 0.130181, -0.408861, 1.495626, -0.954710, 0.009036, 0.743086, 0.622465, -0.646933, -1.070030, -0.929744, 0.951051, -1.284070, 0.378749, -0.120382, -0.253044, -0.119507, 0.724068, -0.888674, 1.712628, 2.459184, -0.636090, -1.982919, -1.283465, -0.716452, 0.426833, -1.473497, -1.381743, -0.259281, -0.170721, 0.772125, -0.643037, 1.138432, 0.479766, -0.787350, 0.369062, 0.808883, 0.890365, -0.831740, 0.420817, 1.128937, 0.801518, -0.331785, -1.538298, -0.965302, 0.486890, 1.091202, 0.382622, -0.801824, -1.565545, -1.012647, -0.232369, 0.425066, 0.465670, -1.097054, -0.969533, 0.565347, 1.632298, 1.021248, 0.351722, 1.441757, 0.099544, 0.417781, 0.482504, -0.857564, -0.297370, 0.428571, -1.386769, -0.125291, -1.034554, -1.681601, -0.461081, -0.877713, -0.753453, 0.989447, 0.216936, 0.941574, 0.683167, -1.290300, -0.735760, -1.719968, 2.398976, -1.124289, -0.498528, 0.642133, 0.787628, -2.198217, 1.260803, 0.156359, -0.154648, 0.451952, -0.748612, 0.571192, -0.697768, -1.085944, 0.245045, 1.922087, -0.275707, -1.384893, 0.311673, -1.741204, 1.487895, 0.213302, 0.415759, 0.751946, -0.896216, -0.148201, -0.118499, 1.131209, 0.645428, -0.976218, 0.086370, 0.274075, -0.365409, 1.200594, -0.550582, 0.842177, -1.025388, 0.594050, 0.230820, 1.576052, 0.704692, -2.029278, -2.054396, 0.684060, 0.190030, -0.217915, -0.656299, -0.565849, -1.333886, -1.810853, -0.030625, 0.646317, 0.248950, -0.469804, 0.998340, -0.450709, 0.702924, 0.033902, 1.492740, -0.535172, 0.873607, -0.002429, 2.179865, -0.139646, -0.385429, -0.452533, 0.457510, -0.374115, 0.604039, 1.235351, 1.300399, 0.684936, -1.011588, 0.600731, 0.689640, -0.828593, 0.290439, 0.908194, 0.654161, 1.024418, 1.720547, 1.083159, 0.929031, 0.998807, 0.360034, 1.057415, 0.509025, -1.591980, 0.763424, 0.350928, -0.084699, 0.073030, -0.956351, 0.252388, -0.204467, -0.370431, 1.356337, 0.465546, 0.430860, 0.710963, -0.995503, 2.361601, 0.113372, 2.022394, 0.474875, 0.634539, 0.143694, -1.129102, 0.355598, -1.301660, 0.242280, -0.466966, 0.616472, 0.954021, 1.104713, -1.493732, -2.318650, -1.043088, -1.207898, 1.286743, -1.384719, 0.668639, 0.185861, -0.123741, -0.048825, -0.232838, 0.450620, -1.225807, 1.468203, -0.150641, -0.327383, 0.554870, 0.881702, -1.404688, 1.050395, -0.350600, 0.800071, 1.189997, -1.175194, 0.814702, 0.984401, -0.504228, 1.619049, -1.002960, -2.215406, -0.131022, -1.318819, 1.603725, -0.226002, -1.365246, 0.030934, -0.573978, 1.222332, 0.595702, 1.050356, -0.454836, -1.099639, 2.134368, 0.526937, -0.748041, 1.670449, 0.034820, -1.542539, -0.017937, -0.861025, -0.702860, 1.125740, -0.701439, -0.536227, 0.080808, 0.583683, 0.457965, 1.273315, -1.112688, 0.070677, -1.064009, 0.185678, -0.329471, 0.647069, -0.367284, -0.287561, -0.506998, -0.700610, 0.198115, -0.506856, -1.778391, 0.111008, 0.771120, -0.970763, 0.346747}, + { 0.409908, 0.582276, 1.311964, -1.054459, 0.832528, 0.430378, 0.902869, 0.745239, 1.406766, -0.218227, 0.192160, 0.866107, 0.903709, -0.904399, 0.816803, -1.880733, -0.058023, -0.561100, 0.386290, -2.321174, 1.157113, -0.041630, -1.040663, -1.065882, 0.429965, 0.178342, -1.260052, -0.335775, 1.965138, 0.798680, -0.955848, 0.924315, -0.442087, 0.814785, 0.313010, -0.633068, 1.616825, 0.753163, -0.356732, 0.443112, -0.313713, -0.450178, -0.115374, -0.382737, 0.620388, -1.550437, -0.668137, -1.452407, -0.980949, -0.526877, -0.183260, 0.011653, -0.398501, 0.212189, -0.395186, 0.470114, -1.327988, 1.699219, -0.323491, 0.541221, 1.622500, -0.893206, 1.442624, 0.489302, -1.430065, -2.164297, 0.022938, 0.642795, 0.492310, -1.922054, -0.011958, -0.486573, 0.771746, 0.527452, 0.468845, 1.563627, 0.877346, 0.021083, 0.855523, 1.321551, 0.208227, -0.875822, 2.103915, -0.875871, 1.110955, -0.036753, 0.251333, -0.549615, 1.738173, -1.628670, 0.003033, 0.999710, 0.070975, -1.117468, -0.441240, -1.451016, 0.343559, -0.446525, -0.217744, -0.286274, -1.414481, 1.375340, -0.175890, 0.988623, 0.352310, -0.865454, -0.225763, 0.368764, -0.576945, -1.223433, -0.051848, 0.183470, -1.149368, -0.680321, 0.681218, -1.968300, -0.673023, -1.441279, 0.509003, -0.218171, -1.532217, -1.421965, -2.325474, 1.354197, -2.006501, -0.050293, -0.416419, -0.378692, 1.943797, -1.801330, 0.351420, 0.830723, 0.295423, -1.466302, -0.288266, -0.041113, 0.571690, 0.350977, 1.112760, -0.151946, -0.321354, 0.211343, 0.687454, -0.248542, -1.891091, -0.294927, -0.310695, 2.018778, 0.499433, -1.730709, 1.962916, -0.061949, -0.318423, -2.131998, -0.873665, 0.825859, 1.738037, 0.859827, -0.202625, -0.440882, -0.182377, 1.061060, 0.838909, 1.327776, 1.239482, 1.107943, -0.944877, -0.085000, -0.749307, -0.191363, -1.376120, 0.078277, -0.583651, 0.172937, -0.851299, 1.614857, -0.063964, 0.643686, -0.916212, -1.089560, 0.897349, -0.617896, -2.968133, 1.018177, -0.447699, -1.068597, -1.028228, 2.171334, -0.710245, -1.653350, -0.908564, 0.589236, 0.272454, -1.585294, 0.889527, -1.756469, -0.040843, -0.665333, 0.921856, 0.138165, 0.046379, 0.432372, 1.128069, 0.457529, 0.765237, 0.428574, 0.102245, -0.488000, 1.016622, 2.475426, -0.147162, 0.138517, -1.026236, 0.268533, -0.475233, 0.859584, 0.611671, 1.303325, -1.020380, -0.271066, 1.439291, 0.358347, 0.783648, 1.546133, -0.935960, 1.125614, 0.337609, 0.797714, -0.158297, -0.744851, 1.455745, -2.192103, -0.137178, -0.751323, -1.227651, 0.154032, -1.664935, -1.464460, 0.317755, 0.406277, -0.221770, 0.039205, 0.390808, 0.492500, 0.984675, -0.456647, 1.058132, -2.350466, 1.932157, 0.023220, 1.933352, 0.365043, 0.187923, 1.348667, -0.433540, 0.944000, 0.960082, 0.633741, 0.636765, 1.163002, 0.005239, -0.110356, -0.706302, 0.712455, -0.152990, 2.198596, -0.139108, 0.309379, -0.101794, 0.136156, 0.473504, 1.304105, 1.066694, 2.123196, 1.371330, 0.047305, -0.789470, -0.448335, 0.749722, 0.020230, 0.109932, 0.227158, -0.084740, -0.698813, 0.425909, 0.985717, 0.731053, 1.423869, -2.743297, -0.713958, 1.605817, -1.256965, -0.477088, 0.611421, -0.743723, 2.063783, -0.549955, 0.171991, 1.038456, -0.601226, -0.765831, 1.484166, 0.260612, -0.333062, -0.785957, 0.992547, -1.254646, -1.366816, 0.159724, -0.362946, 0.157405, -1.056875, 1.307636, 1.297363, 0.443354, -0.932141, 0.420463, 0.959388, 0.990643, 1.460794, -0.377268, 0.322756, 0.988900, 0.249897, 0.568699, 0.754652, -0.353719, -0.552106, -1.388044, -0.379368, -0.001216, 1.063109, 0.436455, -0.671526, 0.825799, -0.867047, -0.979883, -0.855629, 0.752914, 0.876888, -0.751172, 1.419129, 1.181724, -0.519659, 0.771543, 0.312507, 1.692175, 1.667514, 0.868514, 0.808562, -1.053951, -0.433701, 1.661352, -0.789852, -0.074643, -0.702685, -1.257512, -0.060645, -1.374826, 0.186024, 0.512602, 1.368699, 0.134232, -0.119482, -0.095966, 1.198072, -0.401850, -0.502141, -0.338209, -0.408769, 0.101234, 1.303797, -0.253414, -0.607334, 0.524647, -0.506240, 1.224115, 1.741701, -0.203538, 0.912607, -0.390335, -0.376619, -0.161206, -0.821843, -0.161002, -0.067802, -0.842999, 0.996339, 2.430216, -1.757152, -2.216976, 0.613652, 0.465190, -1.622498, 0.109849, -0.253659, 1.166501, 0.216974, 0.280325, -0.036942, 0.476497, -1.692178, -0.414191, -0.976745, 0.480581, -0.861702, -0.185718, 0.380361, -0.433831, 0.637417, 1.446664, 0.949438, -0.536184, -2.041553, 1.144063, 0.568712, -2.313628, 0.824426, -0.509415, 1.666306, 0.237994, 1.518234, 1.353820, -2.798833, -0.411048, -1.114572, -1.020491, -1.825579, -0.362038, 1.410702, 1.031929, -0.238968, -0.429286, 0.043428, 0.731514, -0.586612, 1.215725, -0.721166, -0.206342, 0.211199, 1.788225, -0.998786, 0.974485, -1.827374, -1.230705, -0.726955, 1.047457, -0.062208, -0.763971, -1.523687, 0.917158, -0.988424, -1.161427, -0.346879, -0.197039, 0.915261, -0.842068, -0.195400, -0.643502, 0.810626, 1.171615, 0.209699, -0.073442, 1.591856, -0.069389, 0.855879, 0.134319, 0.331897, 0.111074, -0.029078, 1.288100, -0.822784, 0.001466, -1.050695, 1.771848, 0.699176, -0.057512, 1.111084, -0.730493, -1.147402, 0.821703, -0.627277, -0.932667, -1.383188, 0.507898, -0.198115, 0.197719, -1.037032, -2.587059, 1.008726, -0.575790, 0.967026, 1.274888, 0.458998, 0.300344, 1.407893, -0.162172, -1.012545, -0.829946, 0.641104, -0.107428, 0.088596, -0.756541, 0.914786, 1.131351, -1.353161, -0.279496, -0.501996, -0.968373, -0.826646, -1.494472, -1.476189, 1.697711, 1.341249, 0.764334, 1.747088, 1.018852, 0.764046, 0.912349, -1.026535, 0.210337, 0.262009, 0.769123, 0.593756, -2.351957, 1.563581, -0.184778, 0.778475, 1.738240, -0.655113, -0.051285, -0.196781, -0.453700, 1.298487, 0.376126, 0.408739, -1.091744, -1.056242, -0.516689, -1.849846, -0.398093, -2.871715, 0.859495, -0.834490, 0.962508, -0.311433, -0.070967, 0.295410, 0.098015, -1.624880, 0.765971, 0.874205, -0.884845, -1.480019, 1.045536, -0.680949, 0.563561, 0.328462, 1.122605, 1.597750, 0.916032, -0.990478, 1.067310, 0.185697, 1.695216, -0.269176, 0.526356, 1.088921, 0.715407, -0.089960, 2.038435, -0.993667, 0.504213, 0.849560, -0.000506, 0.327816, 0.703210, -1.366296, -1.473948, -0.849526, 0.420181, -0.358080, -0.629695, -0.763295, 0.507746, 0.364476, 0.543309, -0.149095, 0.251752, -0.449275, 0.465961, 0.467304, 1.462359, -0.016500, 0.003094, 0.544809, -0.208563, 0.620111, 1.156103, -1.112897, 0.422560, 0.407092, 0.308105, -1.424698, 0.443183, 0.936462, -1.117379, 0.270196, -0.533629, 0.556330, -0.226714, 0.065734, 0.986329, -1.455766, -0.193962, -0.844694, -0.153923, -0.643141, 0.317480, 0.669921, 0.435803, 0.984172, -1.233417, 1.042071, -0.683324, 0.492866, 1.865027, 0.223998, 0.766854, -0.907247, 0.604806, 0.164331, -0.357828, -2.546036, 0.754787, 1.559605, 1.111737, 0.002199, 0.068542, 0.737030, 0.615009, 0.548836, 2.004968, -0.045482, -0.674021, 0.947873, 0.562988, -0.009845, 0.695911, -1.866241, 0.766797, 1.693043, 0.756199, 1.132172, -0.592413, 0.821245, 0.585884, -0.821381, -2.451530, 1.129947, -0.018487, -1.934286, 1.095247, -0.728015, -0.644095, -0.029135, 1.339558, 1.153280, 1.390428, 1.763259, -0.319450, 0.600169, -0.213737, 0.566028, -2.096532, 0.351959, -0.959853, -0.421023, -0.573212, 0.121546, -1.306578, 0.202237, -0.461886, 0.979022, 0.354086, 1.751630, -0.990077, 0.142234, 0.610291, -0.077412, 0.884330, -0.261357, 0.238653, -0.262235, 0.127551, 0.273313, -0.161901, -0.051417, -1.420711, 0.309665, 2.403347, -1.738069, 0.727519, -0.118253, -1.288735, -1.856929, 0.685709, 0.497439, 0.779481, -1.426642, 1.160802, 0.908459, 0.167577, -0.551309, -2.273783, -0.962705, -0.434608, 0.161123, 0.101692, -0.257972, -1.362912, -0.209996, -2.265794, -0.302804, 0.013763, -0.337076, -0.882852, -0.456577, 0.766380, 0.041471, -0.209193, -0.137195, -0.482485, 0.241742, -2.119477, 0.086744, -0.389172, 0.381749, 0.276606, -1.609915, -0.458701, -0.125407, -1.366648, 0.095588, -0.426226, 0.017309, 0.701474, 0.511645, 0.120088, 0.055152, -0.637502, -0.110142, -0.059958, 0.279743, -0.585360, 0.473218, 1.775236, 0.051215, -0.828190, -0.277455, 1.814895, -0.080994, 0.052288, -1.227556, -1.159643, -0.581847, -1.608744, -0.870961, 2.447831, -1.337726, -0.018584, -0.605042, 0.506109, -0.030980, 1.160748, 0.013513, 0.883104, 0.534186, -0.591840, 1.496500, -1.080726, -2.251199, -1.866547, -0.103390, -1.996742, 0.088564, -0.082176, -1.324550, -0.304280, -0.037279, 0.652834, -1.166344, -2.440400, -1.727440, -0.567315, 0.252025, -0.543111, -0.807048, 0.669629, 0.863753, 0.276462, -0.361700, 0.054160, -0.381928, -1.419399, 1.475271, -0.568859, 0.628991, -0.636045, 0.951173, 0.291302, 0.328473, -1.923165, 0.923573, 1.608702, -0.104370, -0.028099, -0.578809, 1.392398, 0.658191, -0.569352, -0.370081, -0.562134, -0.514905, -0.853603, -1.959628, 1.197784, -1.309368, 1.868159, 0.444414, -1.602523, 0.039608, 2.050299, 0.084641, -1.043518, -1.580193, 0.954352, -0.561920, -1.296435, 0.853176, 0.479274, 0.429846, 1.955928, 0.783883, 1.862621, 1.346323, 0.408807, 1.225363, 1.800576, 1.341598, 0.226735, -0.040664, -0.532752, 1.744666, -0.248951, 0.448418, -0.274410, 0.064832, -0.418159, 0.835974, -1.225230, -0.460793, 1.661070, 2.463482, 1.105623, -0.003208, 0.045564, 0.932880, 0.830632, -1.017872, 0.277654, 0.738355, 0.387206, -0.044935, 0.870232, -0.532378, 1.386862, 0.929535, -0.223404, 1.664861, 0.703730, -1.271831, 0.181517, 0.640966, 0.452324, -0.743603, 0.172865, 0.834765, 0.073203, -0.416488, -1.364738, 0.185006, -0.644653, 1.425682, -0.150555, -0.198282, -0.153871, -1.434271, -1.057852, -2.044396, 1.271546, -1.196192, 0.130081, 0.796638, -1.240782, 0.293070, 0.146253, -0.388991, -0.352213, -1.100912, -0.266669, -0.122873, -1.260185, 1.329920, -0.995664, 1.090963, 0.690916, -0.248645, -0.901379, -1.584774, -1.375311, -0.404270, 0.759930, 0.970213, -0.472302, -0.652358, 0.369275, 0.714357, -0.814169, -0.839337, 0.370494, -0.826943, 0.122689, -0.052145, -2.384148, 1.329444, 0.368395, -0.570344, -0.290844, -0.512962, 1.459268, -0.480818, -0.500475, 0.142581, 1.105771, 0.239673, 0.872124, -0.731333, 1.111738, -2.154590, 0.853989, -1.648155, -0.035936, 0.636597, 0.153739, 0.196882, -0.349101, 1.310808, 0.223587, -0.670855, 0.679243, -0.420429, 0.262063, -0.738886, -1.289061, -1.160561, 0.057189, 0.729912, -0.656857, -2.879934, -0.139869, -1.741828, 0.194913, 0.823664, -1.454858, 0.105603, -0.709284, 0.417254, 0.995143, 0.155165, -0.186902, 0.877764, 0.655356, 0.681621, 0.325412, 1.028397, -0.501824, -1.726635, -0.542467, -0.690013, 0.859538, 0.212175, 0.540866, -0.374412, -0.140377, 0.008116, 0.018931, -1.823062, -0.732869, -0.643282, 1.385137, -0.056922, 1.057391, -0.208040, -0.460406, -0.103935, 1.441333, -1.904379, -0.510183, -0.405419, -0.796754, 2.396399, -0.701381, -0.007511, 0.069492, 0.294715, -0.154859, -0.628436, -1.078077, 1.471869, 0.125116, 0.511088, 0.675188, -0.600438, 1.019678, -0.265204, 1.966701, 0.273941, -0.371851, -0.665726, -0.221919, 0.844087, 0.202418, -1.302562, 0.151592, -0.770936, -1.569476, -1.215336, -0.643915, 2.026972, -0.572566, -0.148806, -0.207398, -0.456646, 1.036585, -0.394498, -1.107204, -0.782402, 0.093280, 0.087486, 0.330014, -0.494551, 0.483321, 0.552614, -1.293930, 0.042798, -0.767029, -1.264153, 1.258960, -0.229014, -0.862555, 1.070873, -0.147420, -2.267936, 1.556768, -0.569368, -1.394505, 0.361904, 1.975332, 0.744779, -0.568325, 1.920954, 0.230437, 0.510206, 1.311355, -0.798712, -0.738229, -0.152801, 2.162214, 0.116923, -2.371498, 0.319140, 0.525487, -0.268055, -0.952228, 0.429581, -1.902514, 0.998997, -0.454208, -0.092029, 0.776615, -0.515946, -2.065968, 0.482177, 3.124551, 0.402158, 1.249676, -0.292114, 0.826194, -0.926607, 1.435737, -0.465372, -1.238300, 1.441703, -1.042321, -1.150746, -0.800118, -0.992408, -0.887902, -0.464058, 1.949114, -1.008783, 0.009846, -0.989970, -0.727241, -0.792080, 1.160738, -0.789825, 0.432581, -0.042803, 0.053161, -0.103631, 0.161133, -0.035112, 0.041306, -1.272356, -0.573906, 0.901059, 0.617861, 1.261514, 1.059692, 0.492684, 1.048386, 1.165794, 1.428501, -0.708478, -0.203454, 3.044986, -0.759792, 1.184809, -0.261273, -2.471827, -0.732997, -1.174680, 1.021537, 0.949185, 1.649647, 0.253847, 0.219320, 1.345048, 0.489831, -0.944415, -0.884002, -0.463005, -1.328959, -0.770863, 0.612242, -0.517209, 0.098078, -1.285115, 0.202710, 1.792981, 1.931767, 2.495579, 0.673623, -0.625698, -1.263043, -1.057640, -0.911959, 0.120750, -1.124592, 0.294848, -1.479637, 0.442893, 0.522740, -0.196854, 0.016869, 1.060562, -2.004514, -1.162747, 0.405720, -0.504936, 0.231156, -1.458659, -0.542273, 2.877477, -2.529186, 1.338650, 0.184364, -0.074516, 0.339198, 0.805550, 0.950739, 0.844520, -0.222403, -0.943756, -0.816075, 0.110591, 0.351606, -1.306264, 1.206411, 0.848837, -1.208389, 0.118189, 0.948697, -0.008606, -0.864731, 0.084665, -0.658165, 0.052586, 0.531414, -1.491343, 0.058960, 0.580589, -0.033685, 0.145493, -1.614268, -1.030610, -1.003680, 0.998129, -1.904596, -0.788919, 0.305760, 0.733143, -0.045289, 0.328297, -2.640179, -0.465894, -0.694010, -0.685013, -0.772948, 1.990243, -1.360419, 2.311902, 1.706670, -0.784185, -0.626436, 1.234494, 0.949730, 1.181579, 2.214518, -2.658259, 0.607514, 1.161113, 0.004014, -0.715428, 0.249958, 0.440261, -0.237998, 0.207727, 0.315768, 0.892851, -0.299258, 1.110276, 1.041579, 0.204965, 0.158738, 1.553742, -0.096950, -1.184076, -1.131238, 0.411929, 0.627084, -0.471571, 0.715773, -1.566883, 0.419095, -0.081388, -0.010002, -0.824814, 0.715507, -0.550462, -0.033819, -0.596240, -2.174700, -0.373795, -0.754979, -0.397065, -0.628341, -0.232232, 0.162759, 1.424263, -0.320755, 1.942092, -0.191240, -0.558674, -1.866335, 0.855271, -1.737952, -0.048434, -2.124802, -1.995343, -0.968727, 0.869197, -0.204666, 0.801081, 0.973553, 0.902717, 0.662450, 1.091432, 1.422639, 1.584685, -1.254415, 0.611742, 0.661950, -0.186852, 0.658488, -1.861050, -0.673881, -0.232343, 0.659785, 0.809494, 0.492537, -0.490473, -0.046470, 0.607086, -1.497652, 0.852324, 0.580567, 0.369048, -0.892198, 0.842151, 0.999987, 0.624302, -0.476671, 0.409741, -1.228167, 0.680385, 0.763556, 0.309534, 1.488309, -0.057464, -1.246628, 0.103089, 0.085377, -0.737745, 1.076242, -0.341761, 0.446436, 0.202747, 0.586349, 0.431602, -0.282113, -1.492004, 1.929537, 0.644536, -1.360248, 0.264344, 0.941803, 0.465146, -1.531090, -0.422117, -0.029534, 0.335762, 1.210280, -0.740087, -1.010148, 0.171750, -0.186299, -1.306489, -0.391162, 1.197327, -0.218154, 0.176300, 1.011836, -1.614053, -0.597980, -0.422629, -3.667158, 0.475690, -0.079081, 0.413093, 0.107142, -0.459022, -0.018302, 1.050148, -0.548957, -1.484306, 0.743450, 0.064349, 0.533538, 0.995779, 0.172829, 1.342288, 1.699744, 0.141162, -1.834983, 1.800669, 0.074626, 0.549243, -1.611536, 0.498372, 0.218540, -0.323981, -3.178814, -0.459279, -0.677585, -1.659007, 0.820648, -0.745100, 0.990579, 0.470108, 1.383495, 0.432831, 0.570695, -0.351455, 1.333411, 0.413521, 0.507380, 0.825225, -0.965419, 1.125373, -0.123128, -0.547582, 1.610770, 0.466908, 0.247782, 1.795272, 1.250457, -0.509169, -0.468864, 0.844996, -0.544065, 0.044920, 0.467544, 0.491336, 0.742394, 0.324425, -1.227934, 1.418629, -0.874595, 0.672965, -1.220739, 0.313679, -1.040592, -0.257430, -0.772283, 0.463976, 0.904858, -0.423706, 0.385976, 0.604603, -2.004493, 1.551156, 0.121624, 0.331786, -2.067015, 0.652161, 0.788975, 1.927251, -0.225069, 0.452049, -0.885968, -2.142622, -0.846300, -0.319797, 0.136102, 1.569549, 0.634689, 0.123892, -1.402743, -2.021199, 0.782764, -0.269002, -0.648824, 1.507893, -0.630665, 0.905849, 0.187648, -0.261251, 1.810144, 1.755072, 1.101681, 0.149522, -1.054558, -1.034126, 2.148272, -0.088384, 0.862755, 1.221365, 2.707767, -0.337489, 0.174368, 0.610173, -0.689638, -0.922347, 0.435131, 0.776709, -0.083182, 0.514931, 1.564222, -2.197662, -0.657233, 1.328955, 1.069213, -0.009906, -2.669116, -0.711315, 0.548057, -0.162152, -1.977780, 0.553921, 1.036759, -0.288389, 0.044865, -0.702101, 1.309726, 1.115567, -0.785533, -1.972265, 0.168054, -1.243447, -0.495334, 0.148568, -0.733246, 0.743215, -0.152734, -1.797134, 0.396027, 0.276630, 0.966303, 1.287967, -0.976340, 1.749413, -0.110938, -0.019896, 0.584480, 0.355363, 0.184050, -0.077445, 0.941078, 0.612535, 1.173607, -1.662167, -0.638423, 0.113256, -0.518196, -0.271571, -1.735027, -1.531056, -0.654158, 0.276913, 1.560259, -0.221700, 0.256295, 0.295537, -0.452999, 1.778863, -2.121970, 0.943871, 0.437470, -0.259539, -1.648516, 1.300949, 0.446061, 0.543300, -0.165318, -0.826390, 0.428316, -0.004020, 1.013720, -0.709328, 0.223167, -0.653403, -1.334720, -1.600439, 0.463415, 0.877650, 0.617488, 1.051636, -0.639861, 0.366620, -1.141826, -0.105428, -1.285914, -1.300432, 0.358487, -1.687059, 0.462028, 1.018915, 0.067261, -0.191407, 1.074653, 1.168162, -1.102372, -0.052091, 0.637730, 0.872907, -0.040146, 0.445956, -1.107931, 1.526318, 0.459798, -2.946011, -1.217983, 0.078830, 1.270399, -0.748558, -0.576561, 0.779715, 0.584619, 0.013830, -1.210514, -0.027580, -1.807974, -0.456713, -0.458049, -0.720396, 1.039488, -0.860417, 0.036037, -0.461158, 1.035521, -1.001936, 0.130038, 0.529139, -1.020486, 0.632074, 0.538288, 0.543854, -0.082418, 0.229474, 1.441192, -0.440683, -0.528633, -0.946281, 0.574937, -1.350653, 1.417111, -0.592676, 0.585583, -0.629327, -0.302990, -0.130880, -0.485316, 0.608659, -0.141166, -0.022518, -0.823123, 1.918916, 0.578723, -0.946158, -1.121146, 0.523028, 0.094182, 2.139039, 1.084628, -0.917830, 0.487059, -1.153683, 0.537627, 0.602483, 0.040463, -1.106338, -0.407211, -0.206168, -1.047935, -0.933324, -0.977305, 0.124895, 0.329349, 1.190209, -0.356925, 0.041560, -0.571548, -0.670069, 0.031941, 0.955461, -0.713299, 0.575203, -0.093773, 2.370248, 0.430387, 0.401182, 1.178465, -1.328911, -0.888919, 0.797758, 0.895399, 0.227654, -0.187122, -1.023527, -1.870704, 0.112649, 0.892239, -0.686195, -1.345789, -0.860501, 0.490847, 1.355903, 1.020884, -0.494607, -0.081408, -0.057327, -0.744093, -0.965186, 0.080116, -0.296318, 1.544589, -0.476115, 1.149629, 0.951937, -0.666262, -0.479717, 2.120382, -0.134276, 1.332451, 0.366706, -0.510412, -0.742801, -0.028845, -1.000236, 1.835363, -1.088735, -0.828760, 0.522453, -0.129309, -0.598309, 1.000706, 0.377525, 0.039448, -0.523312, -1.824308, 1.872520, 0.576642, 0.809912, 0.196899, 0.097899, -0.354616, -0.419256, -2.578992, 0.554784, 0.585974, -1.540522, 0.247351, 0.086522, 0.546667, 0.285098, 0.696017, -0.253081, -1.036311, 0.553189, 1.577065, 0.485141, 0.648711, -0.543137, -0.474990, -1.143757, 0.167411, 0.075843, 0.409480, 1.747821, 0.684071, 0.284654, 0.841381, -0.211101, 0.823529, -1.049302, -0.517072, 1.692124, 0.869145, 0.239133, 0.199064, 0.458765, -0.013959, -1.404379, -1.541075, -0.192709, -1.460834, -0.332605, -0.512000, -0.736037, -0.590613, -0.108542, -0.310183, 0.263520, 0.097274, -0.113724, -0.092447, -1.828712, 0.866176, -0.102630, -0.444198, -1.219638, 0.436178, 0.391617, 1.402147, -0.095805, -0.700699, 0.348281, -1.540495, 0.636827, -1.594618, 0.750606, 2.266292, -0.386748, -0.653216, -1.243844, 1.081604, 1.072713, -1.850210, -1.319571, -0.263392, -0.226455, -0.692015, 0.127820, -0.057971, -0.207502, -1.409770, -1.662455, 0.613139, -0.964735, -1.980929, -0.078326, -0.823761, 1.758926, -2.206006, -0.630918, 2.725513, 1.207699, 2.294445, -0.323073, 1.295129, 1.836318, 0.767836, 0.823158, -1.193238, 1.388575, 0.131033, -0.588449, -1.190456, 0.409403, 0.273267, 0.025923, 0.138258, -0.456856, 0.357802, 1.121624, 1.669294, -0.129766, -0.718741, 0.073804, -0.517092, -0.923800, 1.318870, 1.141014, -0.368112, -1.011178, 0.442000, -0.710108, -0.672207, -1.549274, -0.357643, -0.199480, 0.615497, 0.056127, 1.244722, 0.187644, 0.992484, -0.243646, -0.445814, 0.837329, -0.008620, 0.708263, 0.002427, -0.103403, 0.411539, 0.685910, 1.280423, 1.798157, 1.461707, -0.412000, 1.212925, -0.215652, 0.541920, 1.435713, -0.112401, 0.460620, -0.151056, -0.802218, -0.276820, -1.957677, -0.562285, 0.483330, 1.608138, -0.797055, -0.806208, 0.461564, -0.279414, 1.903172, -0.194894, 1.091832, 0.829155, 0.187533, 1.395448, -0.577424, 0.281364, 0.005707, 1.180715, -0.848642, -0.301686, 0.951069, 0.751389, -1.633530, -1.420491, -0.529104, -0.746879, -1.670086, 1.672752, 1.014968, 0.804239, -0.994983, 0.315173, 0.447472, 0.913812, -0.323893, -0.359815, 0.769932, 0.906364, 0.691448, -0.347187, -0.175564, -0.233813, -1.264912, -0.865740, 0.172687, -0.445773, -2.049300, 0.106705, 1.792337, -3.665341, -0.778988, 2.966446, 1.556617, 0.387379, 0.592753, -0.302357, 0.291061, 0.999850, 0.583821, 2.155150, -0.626317, -1.722364, 0.690279, 0.537445, -0.158910, 0.118709, -2.246937, 1.755380, -0.423828, 0.343284, 0.311337, -0.115495, -0.994300, 1.071191, -1.055478, -0.805971, -0.114500, -0.021049, 0.387179, -0.240022, -0.483178, 0.722824, 0.507512, 0.691859, 0.724036, 0.622953, 1.077205, 0.181433, -0.089315, 0.088336, -0.478451, 0.849445, -1.023472, -0.095473, -0.086135, 0.510974, -0.459358, 1.670642, 0.886358, -0.978037, -0.726355, 0.247664, 0.691848, -1.008873, -2.217548, 0.188466, -1.818923, -0.160442, -1.398494, -0.122519, -0.050452, -0.401744, -2.163526, -0.827769, 1.101792, -1.125293, 1.409684, -1.671424, -0.300942, 1.117012, -2.228336, -1.740987, 0.402005, 0.784012, -0.801696, -0.316528, -0.811788, 0.246557, -0.234621, -0.801615, 0.167257, 2.119712, -0.221417, -0.047351, -0.189222, 1.613068, 1.636210, 0.685715, -0.516699, -0.213599, -0.553549, -0.888756, 0.737929, -1.101802, 0.005246, 2.067143, -1.686015, -0.949071, -1.727706, -2.423165, -0.049259, 0.860079, 0.148229, -0.546433, 0.061150, 0.665753, -0.804987, 0.244624, 0.292000, 0.249504, 1.201744, -1.013017, -1.663149, -0.877380, 0.698365, 1.136918, 0.636454, -1.805283, -1.133555, 0.277548, -2.322622, 0.457944, -0.491023, 0.151145, -1.106310, -0.898816, -0.658722, 0.540531, 0.046465, 0.655948, -0.144029, 1.508065, 1.497873, 0.185633, -0.013334, -0.284433, -0.041058, 0.040584, -0.050920, 1.488357, -0.524972, 0.392220, 0.456376, -0.586975, 1.514470, 0.539379, -0.812665, -0.075820, -0.318283, -2.524642, 0.287843, -0.320077, -0.910446, -0.443321, -0.189764, -1.996705, -0.253930, -0.485380, -0.317542, -0.126975, -0.154770, -0.795014, -0.118819, 0.085182, 0.907587, 2.933667, -0.993867, -0.515402, -0.307139, -2.020423, 0.332003, -0.148085, -0.305949, -0.246181, 0.573859, -1.246347, 0.276580, 0.611091, 1.280634, 0.216831, -1.287218, 0.502973, 1.253250, -0.482459, -0.022266, 0.501955, -0.740931, -0.900384, -1.451999, 0.503417, -0.762641, -1.122747, 0.007921, 0.286881, -0.995577, 0.135746, 0.543202, -2.875395, -0.911700, -1.794683, -0.544209, 1.041134, 0.220555, -0.499457, -1.734496, 0.412618, -1.504440, 1.006639, -0.374822, -0.643926, -0.125553, 1.031112, -1.033592, -0.103100, 0.160041, 0.506835, 0.058250, -0.198635, 1.110444, -0.593552, 0.227931, -0.353608, 1.283954, -0.258871, -0.199200, -0.653583, -1.054071, 1.239713, -1.576850, 0.299727, -2.212698, -0.377730, 1.248124, -1.214777, 0.680168, 0.553584, -0.240581, -2.726274, 0.412623, 0.472051, 1.461790, 0.217575, 1.293905, 0.588733, -1.758441, -0.233244, -2.096284, -0.015905, -0.795065, -1.916619, 0.987294, 0.020390, 0.841724, -0.180508, -2.990319, -0.357509, -1.196907, 0.614966, 0.489917, 0.384808, 0.453433, -0.278196, -0.041060, -1.814359, -0.528122, 1.627915, 0.891587, -0.513199, 0.615605, -0.628466, -1.480839, -0.545546, 0.021031, -0.249409, 0.351905, 0.125160, 1.319289, 2.885963, -1.584917, 1.767448, 1.084315, -0.075906, -0.540620, -0.537823, 1.593324, 0.490269, 1.151786, -0.533839, 0.580015, -0.692773, 0.833477, 0.471162, -0.737824, -1.608178, 1.034056, -0.514485, -0.695534, -1.129559, 2.289706, 0.356947, -0.539843, 0.730864, -0.625221, 0.055393, -0.951180, 0.869108, 2.716173, -0.085236, -1.431136, 0.575196, 0.034871, -0.309255, -0.818256, 0.157864, 0.684726, 0.055435, 0.395131, -0.371312, 0.982282, 2.150376, -0.178971, -1.382915, -0.508982, 0.470960, 1.370558, 2.659153, -1.214218, 0.114449, -0.402863, 0.260132, -0.572302, 0.221952, 0.836981, -1.724980, 1.288078, -0.185098, -1.355861, 1.619084, 1.509799, 2.063221, -0.130688, -2.251188, -2.090113, -1.390004, -0.133834, 0.154282, -0.895175, 1.081765, -1.183564, 1.474015, -1.761061, 1.587969, 0.365549, 0.584966, 0.134219, 0.368632, 0.792163, -1.033457, -0.450743, -1.798299, 1.901788, 1.246052, 1.328756, -0.068326, -1.302918, -0.153546, 0.514339, 0.305672, -0.483576, -0.407502, -0.519386, -0.267904, 0.195310, -0.185515, 0.866269, -0.098234, -0.994464, 1.078858, -0.641451, 1.178820, -0.001568, -1.193502, 1.415377, -0.240063, -0.493790, -1.246133, -0.249450, -0.195963, -0.036979, -0.789731, -3.087571, 1.983571, 0.402336, -0.667327, -0.078972, 0.462409, 0.998281, 1.197227, 0.538010, -0.726448, -0.134830, 1.020894, 1.231268, -2.635929, -0.613555, 0.127693, 0.302578, 1.731020, -1.715139, -0.130483, 0.030843, 0.365248, -0.554934, 0.663166, 0.559675, 0.125114, -0.447443, 0.812026, 0.029807, 0.147547, -1.288833, -0.073839, -1.323809, 0.231902, 0.049239, 0.353407, 0.275080, 0.856087, -0.012627, -0.340888, -0.375095, -0.507527, -3.005246, 0.386116, 0.804089, -0.362912, -1.243788, -1.098779, 1.396344, -1.992447, 0.342131, -0.237291, 0.759136, 1.663015, 1.936556, -0.108096, -0.565458, -0.840033, -1.868953, -0.923677, -1.360096, 0.899575, 0.828752, -1.280237, -0.246941, -0.879568, -0.524936, 0.574475, 0.056647, -0.656588, -0.846348, 1.297738, -0.159086, -0.922158, -1.417051, 0.774624, -1.132103, -1.003555, 0.174483, 0.152541, 0.141909, -0.796339, 0.181261, 1.912393, 0.289870, 0.622188, -0.137299, 1.990555, -3.357899, -0.401449, -0.507281, -0.629694, -1.503431, -0.767024, -0.845583, -0.196736, 0.511571, -0.129206, -0.093948, -1.183299, 0.631649, -1.791430, 0.941840, 0.340284, -1.407593, -1.805891, 0.394421, 1.364787, 1.289190, 0.667517, -0.654983, -1.228638, 0.612461, -0.085692, -1.183587, 0.137986, 0.071179, -1.509668, -0.048832, -0.961314, 0.677184, -2.198377, 0.866412, 1.946396, -1.812240, -1.371658, 1.065631, 0.708248, 1.026466, -2.185796, 0.155759, 0.627243, -0.694300, -2.157135, -1.106958, -1.073769, 1.027928, 0.295696, -0.321099, -0.783209, -0.108778, 0.755394, 0.334285, 0.824537, 0.099246, -0.249522, 1.750268, 0.895380, -1.489290, -0.542535, -0.310710, -0.684408, 0.633089, 0.169119, 1.547565, -0.783359, -1.075074, 0.378470, 0.178139, 0.499142, 0.748060, -2.630377, -0.357123, -0.969912, -0.742085, 1.178812, -0.425549, 0.559456, 0.839398, -1.293111, 1.252398, -0.300757, -1.532060, -2.080168, -0.403346, 0.767518, -0.079658, -0.544107, -0.141154, -0.715125, 0.779383, -2.785085, -0.006201, 0.353557, 1.014186, -0.688996, 0.256286, 2.377080, 0.381699, -0.484811, 0.780898, -1.069872, -1.896658, -1.557389, 1.454643, 0.593980, -0.092602, -0.402235, -0.072375, -1.890350, -0.323946, 0.083504, 0.691071, -0.317551, -0.213195, -0.525421, 0.643218, -1.868246, -0.898146, -2.043587, -0.900370, -1.643555, 0.367005, -1.655811, 0.144727, 0.248493, 1.928740, 0.083588, -0.914077, 1.217681, 1.317644, 1.184488, 0.448175, -0.927184, -1.133090, -1.724598, -1.660006, -0.119470, 1.497947, 0.098622, 2.224697, -0.699031, 0.549962, 0.382962, 1.183204, -1.327720, -0.683649, -1.788433, -1.117517, -2.150321, 0.391026, 0.115026, -0.199847, -1.122606, 1.353484, 1.591893, 0.652944, -1.090579, -1.141491, -0.087466, -0.532302, 0.555955, -0.625897, 0.032483, -1.210230, -0.310558, -0.342910, 0.957504, 1.378972, -1.388557, -0.766600, 0.806288, -1.358127, -1.109585, -0.235514, 0.404152, -2.282993, -0.457933, -1.603416, -0.151905, -0.792843, -0.619267, 0.258786, -0.416315, 0.414033, -1.582190, 0.104414, 0.067284, 0.249154, 0.431743, 0.238847, 0.152662, 0.101024, -0.387129, -0.351210, -0.364984, 0.186458, -1.347073, -0.126981, -0.773176, -0.750469, -0.641040, 1.230933, -0.492362, 1.242481, 1.609718, 0.752667, -0.445522, -0.146777, -0.580538, -0.520101, 0.911250, 0.749584, 1.069617, 0.855657, 0.680945, 0.136725, 1.872044, 0.499782, 0.196481, -0.740416, -0.099934, 1.441439, 0.679013, -0.026579, -1.291594, 0.821814, -1.444613, 0.378002, -1.237264, 0.776617, 1.650559, -0.599831, -1.486651, 2.208962, 1.612762, -0.152083, 0.312454, -0.780365, 0.836352, -1.357335, 0.409555, 2.148610, 0.040995, -0.582008, -1.488098, 0.778950, -0.948026, -0.105779, -1.603354, -0.826412, -1.263508, 0.841681, 0.393536, -0.618987, -0.454573, -0.399477, 0.807182, 1.042100, 0.925306, -1.923373, -0.371112, -1.690097, 1.258905, -0.082998, 0.155621, -1.417452, -0.466420, -0.805716, -2.299913, 0.740507, 0.736747, -2.102597, 1.208312, -0.321116, 0.534798, -2.127077, 2.863468, -2.101935, 0.832168, 0.907185, -0.740861, 0.038978, -1.782803, -0.104133, 0.770151, -1.148970, 0.413161, 1.204063, 1.696370, -1.619192, 0.020373, -1.559261, 0.960475, 0.979535, 0.923266, -0.488058, 0.492934, -0.144024, -2.327816, 2.022524, -1.440611, 0.108279, -0.279674, -0.155505, 0.798701, -0.056014, -0.294278, 2.206000, -0.910635, 0.881155, 0.826537, 0.970949, -1.631114, 0.641060, -0.148350, -0.736448, -0.822219, 0.856293, -0.565143, 0.979652, -1.765983, -0.146638, -0.146924, -0.302271, -0.821319, 2.458336, -0.039127, -1.302429, 0.493974, -0.010817, 0.623926, 0.242641, 0.225246, -1.307361, -1.207909, -1.515617, -1.819017, 0.561071, -0.432049, -0.707660, -1.568873, 0.960589, -1.736133, 1.109109, -0.810065, 0.570154, 0.223099, -0.219678, -1.387539, 1.563754, 0.398388, -0.515691, -0.059579, 0.066663, 0.137895, -0.007136, -2.363673, 1.292044, -0.883938, 0.402916, -2.101223, -1.293249, -0.782252, 1.741922, -1.180961, 2.643937, 0.873179, -0.421559, -0.387711, 0.483488, 0.272855, 0.068270, -1.285595, 0.768579, 0.746763, -1.880166, -0.163995, -1.103554, 1.644326, -0.242998, -0.694097, -0.202326, 0.235676, 1.389961, -0.878601, 1.214517, 0.978233, -0.614626, -0.339939, 1.991670, 1.570582, 1.164850, 1.254028, 0.526178, -1.201949, 1.256997, 0.880162, -1.835717, -1.358657, -0.299310, -1.200479, -0.439876, -2.879921, 0.297092, -0.243779, -1.615714, 1.207358, 1.480990, -0.000176, -1.966240, 1.241313, -0.787065, -0.065835, -1.082595, 0.659999, -0.078458, 0.002960, -0.248386, 0.013503, 1.688254, 0.019804, 1.988132, -0.551538, -0.872949, 1.397220, -0.527877, 0.345855, 0.582937, 0.602458, 0.591416, 0.222826, -1.196631, -0.199450, -0.864577, -1.875637, -2.089008, 0.269194, 0.013410, 0.962869, -0.635835, -1.854655, -0.558910, -0.174547, 0.443956, -0.179187, 1.506913, 0.787906, -0.770978, -0.914367, 1.843023, -0.525664, -1.163644, 1.815685, -2.045644, -1.971285, -0.454759, -0.299318, -1.546627, 1.569486, -0.039063, -0.867976, -0.772743, 1.137805, 0.222620, 2.698856, 0.739607, -0.894983, -0.498391, -0.122941, -1.214579, -0.559240, 1.606550, -1.555603, 0.801038, -0.316427, 0.098728, 0.435727, -0.445676, -2.151925, 0.620124, 0.563274, 0.815215, -1.924090, -0.763942, 1.351880, -1.037696, -0.282910, -0.577423, -1.064838, 0.549606, -0.306820, -1.807750, -1.129748, -0.200598, 0.285173, -0.080972, -0.108569, 1.011825, 0.646562, 2.587377, -1.127719, 0.058741, 1.715399, 1.186736, 1.056106, -0.891992, 0.375106, 0.115689, 0.115049, -1.516074, 0.985668, 0.646881, 1.381310, 0.162735, 0.630620, 1.759756, -0.325400, -0.064484, -0.764386, 0.702778, 0.093406, 0.274499, 0.053771, 1.256388, -0.316700, 1.677390, 1.295013, 0.328956, 2.695897, 0.294012, 0.364170, 0.399002, -0.669916, -0.243286, 0.286304, -0.025567, -0.090067, 1.593134, 0.975813, 0.057530, -0.052480, -1.010988, 0.595204, -0.273142, 1.968936, -1.003460, -0.513743, -0.414154, 0.858540, -0.075493, 0.347344, -0.087578, -1.459482, 2.598408, 0.085175, 0.432063, -1.984317, -0.444593, -0.280373, -0.953162, -1.247448, 1.382244, -1.501154, -0.220791, 0.162217, -1.380368, -0.718552, -1.488998, 0.012630, -0.242820, 0.362484, -0.719212, -0.156390, 0.897794, 1.215247, 1.850641, -1.240722, 0.711088, -2.155905, 0.385672, 0.379773, -0.367983, -0.097212, -0.761376, -1.051372, 0.558224, 1.009418, -0.702509, 0.098717, -0.579659, -1.529299, -0.188772, -1.366829, 0.292776, -1.840204, 0.393781, 0.352524, 0.136623, 2.875350, -0.426938, 1.296896, 0.181012, -0.932693, 0.200156, -1.500470, -0.432169, -1.323778, 0.465284, -1.925291, 0.897134, 0.559693, 0.755321, 0.393539, -0.016400, 1.436149, 0.278063, 0.008358, 1.401231, -0.195222, 1.165173, 0.556411, 0.779170, 2.534855, 0.332789, 0.010363, -1.193108, 1.976624, -0.482135, 1.364415, 0.129918, 0.455798, 0.536617, 0.049097, 0.537206, -1.822129, 1.559727, 0.088116, -0.082443, -0.115912, -1.918898, 0.032354, 0.890131, -1.130087, 1.402009, 1.022251, -0.274734, -0.718177, 1.091370, 0.682092, 0.547391, 0.583889, -0.271413, -0.941980, -0.584171, -0.145908, -0.683017, 0.503695, 1.862961, 1.295420, -0.243690}, + { -0.983093, -1.504997, 1.689008, 0.852439, -0.052642, -0.226863, -1.682563, -0.516711, 0.024053, -0.423958, -0.498372, -1.387182, -0.092373, 1.346202, 1.228157, 0.176953, -0.292668, -0.007560, -0.729933, -0.213849, -1.360185, 0.957214, -0.775561, 1.299782, 1.010312, -1.364358, -0.332187, -0.874038, 0.158062, -1.655720, -0.126275, 0.280659, -0.245147, -0.799640, -0.174699, 1.544888, 1.106545, 1.490095, 0.981029, 1.147516, 2.028793, 0.696511, 0.499816, 0.572414, -1.410997, -0.439824, 0.976240, 0.658783, 2.363468, -1.360340, 0.948610, -1.433050, 0.988979, 0.630545, 0.467132, -1.881342, -0.534098, 2.063160, -0.531704, 0.232042, 3.310064, 0.418609, -2.377943, -1.255732, 0.948970, -0.916728, -0.074799, -1.274711, -0.503304, 0.820722, 1.316162, -1.173834, -0.139600, 1.431872, -0.484918, -0.824979, -0.243726, -0.236428, -0.636261, -1.040133, -0.168640, 0.609432, -0.070710, 0.679471, 1.503464, 0.395742, -0.955843, -0.149187, 1.876458, 0.985744, 1.576430, 2.534913, -0.224989, -0.679745, -0.534951, -0.557737, -0.255265, 0.782315, 1.196253, -1.377471, -0.677377, -0.477690, 1.541497, -0.907797, 0.835093, 0.747920, -0.988510, 0.764753, 1.362396, -1.786639, -0.077948, 1.828968, 0.832373, -1.464336, 0.013585, -0.532699, -0.500248, -0.578362, 0.246069, -0.515451, -0.315294, -0.339299, 0.067102, 1.289035, -0.096157, 0.763676, 0.005457, 0.290770, 0.199062, 0.676720, -0.801922, 1.250363, -0.493756, 0.454381, 0.278526, -0.520518, 1.099335, 0.902181, 1.691731, 0.560990, 0.669109, 0.571884, -0.629478, 1.189162, 1.121540, -1.351753, -0.502888, -0.379593, -1.125303, 1.628456, 1.911116, 0.329890, 0.160070, 0.607196, 0.313948, 0.672554, 0.034538, 0.986999, -0.073991, 1.216120, 0.872065, -0.736450, -0.241443, 1.776237, 0.837211, -0.032411, 0.235870, 0.303322, -0.696334, 0.058139, 0.423596, -0.801994, 0.475972, 0.078186, 1.687307, -0.655364, 1.148551, 1.584120, -0.183812, -0.240825, -0.462214, -0.538617, 1.165882, 0.495350, 0.779812, 0.857892, -1.163262, 0.305657, 0.378542, 2.370941, -1.621917, -0.346555, 0.339012, -0.411098, 0.204058, -0.523320, 0.160462, -1.358479, -2.612737, 0.470040, 0.407125, -0.257620, -0.793160, 0.488260, -0.299263, 0.143361, -0.428621, 0.310583, -0.836926, 2.055982, 1.483207, 2.152946, -0.934875, -0.123062, 0.341006, 0.471994, 0.205615, 0.362838, -0.171997, -1.464489, -0.726495, -0.405898, -1.146009, -0.718839, -0.897182, -0.742179, 1.481672, -1.073078, 1.530334, -0.337469, -0.158506, 1.132872, -0.560097, -0.850852, -0.145600, -0.769049, -0.906160, -1.239531, -0.214732, -0.732012, -1.048772, -0.407347, -1.235464, 0.200166, -0.163694, 0.012422, 0.896306, -1.642009, 1.233085, 0.173640, -0.287841, 1.098236, 1.133623, 0.568552, 0.289465, -0.001010, -2.022003, 1.477060, 1.272226, -0.132027, -0.007357, 0.123635, 0.501659, -1.566556, 0.159990, -1.693243, -0.052437, 1.549306, 1.020311, -2.348895, -0.457603, 0.193673, -1.505093, -1.641658, -0.687426, -1.349499, 1.551315, -0.716301, -0.046077, 1.567537, 0.739217, 2.318301, 1.074069, 1.035734, 0.749698, -0.284268, -1.311249, 0.861526, 0.060632, -0.482237, 0.492532, 0.511687, -0.586689, -0.198771, -1.384069, 0.397496, 0.153320, 0.454582, -1.036656, 0.292900, 0.831772, -1.091953, -0.387973, 1.277133, 0.624147, -1.059033, 1.292027, 0.320191, 0.943345, 1.068388, 0.560938, -0.913304, 0.182379, -0.024233, 0.736094, -0.617006, 0.666794, 0.436818, 0.803632, 2.981577, -1.355008, 0.534470, 0.305408, -1.299554, -1.547465, 0.146489, -0.393488, 1.081729, -0.518468, -0.818730, -0.908197, -0.494636, -0.302000, 0.061754, 0.186158, -1.455457, 0.946737, -1.479299, 1.322972, -0.385502, -0.304968, 0.186621, 0.496442, -0.265172, 0.491450, 0.650637, 1.684260, -1.086021, 0.252811, 0.604967, 1.302163, -0.354736, 0.396292, 1.420452, -0.921994, -1.250968, 0.828756, -1.766244, 0.085464, -0.208325, -0.657831, -0.022167, -0.145307, -0.155301, 0.824731, 0.138868, 0.134612, 1.319698, 0.709335, 0.213933, 0.288568, -0.265968, 0.792930, -0.475098, 0.960359, 1.208800, -0.291204, -0.826583, 0.299401, 1.075716, -0.535193, 0.306460, -0.860736, 0.015584, 0.553479, 0.593341, -2.125592, 0.883739, -0.285156, -0.195326, -1.736190, 0.267954, -1.065774, 0.006786, -2.461653, 1.879348, 0.824964, 1.494759, -0.133417, -0.335138, 0.374419, -0.672829, 0.316753, 1.775973, 0.712692, 1.293218, 1.237103, 0.615225, -1.324533, -0.752883, -0.077552, -0.566718, -0.480087, 1.376820, -0.653140, 0.094362, -1.558402, -1.366178, -0.638414, -0.236803, -1.504195, -0.546153, 0.301623, -0.779780, -1.079982, -0.062045, 0.211238, 0.249402, -0.194938, 0.236983, 0.895108, -1.142978, 1.403774, 0.653420, 1.900139, -0.522343, -1.101550, 0.385982, 0.632220, 0.815852, -1.039617, -1.144698, 1.494159, 0.047438, -0.856614, 0.858644, -1.619166, 1.664841, -0.541867, -0.195818, -0.586936, -1.779821, -0.309493, -1.766883, 0.420277, 0.487111, -0.206142, 1.039423, -0.075640, 1.325150, 0.060567, 0.258374, -1.071947, 0.665599, -1.951727, -0.867996, 0.128119, 0.574382, -0.144236, 0.032367, -0.221344, -0.495558, 0.391783, 1.337666, -0.469266, -1.365408, -0.245316, -2.075251, -0.736334, -0.876616, -0.899896, 1.075697, 0.345828, -1.298294, 0.296911, 0.309971, -0.616054, 1.004305, 0.889155, 1.877165, -0.248961, -0.081407, -2.515295, -1.471037, 0.024976, -0.945345, -0.172507, -1.401992, 1.010550, 0.302097, -0.615135, -0.424872, -0.911773, -0.363181, -1.505333, 0.019523, -0.309098, -1.411120, 0.127548, 1.057503, -1.249271, 1.256315, -0.071966, 0.735987, 2.067302, -0.773847, -1.151815, 1.615380, 1.054523, -1.326194, 0.646549, 1.749714, 2.170125, -0.593849, 0.974450, -2.046801, 0.389724, 1.074528, -0.619298, 0.085289, 2.492791, 0.475732, -0.627852, 0.519505, -0.032521, 2.125778, 0.416374, 2.674471, -2.293838, 1.172877, -0.328581, 1.510363, -1.037604, -0.756300, 0.656897, 0.285500, -0.644763, -1.202865, 0.423421, 1.596442, 2.694238, -0.383828, 1.469193, -0.711495, -0.757148, 1.399669, -2.110266, 0.521666, 0.449675, -0.713232, -0.376217, 1.499582, 1.552162, -0.707626, 0.298731, 1.503443, -0.351074, 0.202232, 0.979986, 0.111556, -0.934082, 0.347155, 0.068998, -1.204463, -0.347912, -0.144191, -0.512881, -0.323562, -1.041395, -0.562475, 2.433507, -0.056507, -1.302880, 0.633123, -0.943182, 0.347517, -0.563035, 1.008836, 0.950698, -0.553791, -0.333602, 0.271553, -0.880350, 1.332422, -1.453054, -1.457649, -0.251031, 0.150016, 0.002669, 0.929400, -0.383546, 0.049417, -1.106139, -0.143804, 1.401947, -2.304345, -0.569742, 1.034040, 0.486361, 0.548376, -0.468534, -0.100914, -0.443258, 0.850349, -1.027423, -0.194848, -0.445651, -0.142158, 2.481790, -1.459025, -1.410040, -0.987970, 0.965835, 1.526407, -0.049202, -0.356169, 0.849466, -0.077761, -0.924655, -0.155822, -0.711325, 0.249337, 1.228686, 0.677912, 0.467147, -0.412307, -0.501915, -1.272501, 0.139491, 1.039930, -0.097017, 0.065405, 1.153829, -0.793604, 0.370951, -1.792227, -0.412233, 1.158704, 0.907463, -0.817395, 1.615974, -0.247998, 2.978949, -1.638730, 1.371517, 0.951102, 1.409070, -0.953572, -0.783109, 1.258106, 1.698119, 0.032653, -0.955098, -0.172371, -1.603111, -1.456500, 1.565100, -1.083722, -0.158947, -0.347817, 1.385675, -0.077649, -0.562186, -0.456349, -1.631077, -1.438635, -2.848500, -0.779416, -0.392371, -0.770420, -1.289794, -0.695409, 0.038390, -2.190771, 0.086364, 1.318144, 0.025847, -0.261700, -2.079323, 0.520632, 0.197945, -2.525093, -0.608511, -0.826324, 1.197794, -0.720419, -0.676173, 0.412328, 0.952681, -0.291693, 1.401882, -2.279688, -0.100533, -0.605367, -0.231242, -0.542557, 0.981023, -1.143355, 0.120666, -1.959137, -0.459734, 0.895160, 2.435299, -0.673000, 1.075197, 1.499873, -0.637327, 0.451355, -1.637109, -1.574825, 0.747980, 0.114430, 0.022948, 1.529489, 1.682670, 1.416034, 0.033656, 0.622647, -1.030015, 0.289424, -0.049848, -0.733713, 1.445727, -0.850379, 0.672578, -0.498027, -1.800037, -0.414100, 0.809735, 1.752628, 0.660851, 0.704462, 1.064979, 0.026647, 0.152233, 0.299722, 0.453152, 1.605588, -0.222618, 0.833014, -0.181633, 1.274122, 1.063165, -0.487172, 0.141203, -0.655070, 0.672728, 1.118144, 0.963424, -0.478329, -0.276137, 1.363698, 0.953021, -1.878811, -0.920295, -0.636180, -0.518924, -0.450983, -0.790380, 0.503084, 0.091438, -0.068717, -0.680360, -1.190046, -0.518806, 1.868175, 0.593848, -1.148903, -0.504153, 0.358133, 0.407456, 0.093787, -1.988303, -0.254786, 1.074193, 1.212962, -1.161578, 1.146935, 0.335429, -0.035437, 0.310761, -0.323630, -0.753763, -0.943875, 1.315168, 1.157548, 0.033252, -0.113919, -1.384706, 1.118101, 2.138404, 0.536062, -0.057074, -0.070453, 0.580854, -1.109369, -0.311874, 0.119988, -0.879639, -1.448909, -1.119467, 1.080115, 1.340303, -1.221041, -1.630454, -1.124092, -0.549454, 0.182329, -1.032038, 0.064650, -0.631550, -1.149689, 2.590124, -0.382573, 0.411398, 1.595692, -0.581483, -1.920548, 1.036230, -1.294128, -1.550439, -1.825664, -1.136718, -1.004473, -0.408208, -0.515493, -0.141035, -1.243196, -0.389756, -0.153286, 0.590664, -0.259714, 0.588485, -1.338604, -1.672666, 0.646251, 1.897516, -0.848231, 0.442896, 1.390109, 0.455500, 0.147027, -0.733007, -1.039997, -1.109757, -0.520237, -1.656324, 0.862061, 0.897123, -0.215765, 0.579153, -1.774879, 1.339885, 0.656980, -0.683979, -0.776324, 0.075425, -0.624938, 1.188162, 0.029376, 1.999927, -0.694213, 1.641559, -0.139565, 0.977361, -0.440677, 0.716551, -0.713138, 0.542474, 2.190345, -1.427835, 1.279513, 0.123449, 1.333007, 0.170215, -1.459986, -1.115168, 0.024330, -0.499763, 0.743400, -1.116687, 0.169877, 0.253489, 0.001254, 0.496192, 0.419524, -0.336320, -0.738473, 1.057630, 0.455031, -1.144652, -0.211007, 0.066468, 0.309799, 0.282313, 0.602273, -1.140669, 0.724713, -1.215900, 1.597776, 0.437830, 0.950187, 1.470075, 1.236441, 1.003427, 0.299022, -2.007146, -0.593624, 0.169609, 0.609102, 0.420829, -0.390335, 0.853639, -0.690414, -1.440160, -0.431041, 0.153770, 0.449729, -0.191969, -0.303385, 0.832239, 0.748193, -0.103568, -1.759449, 1.482179, -1.963307, -1.975549, 0.664533, -0.232829, -0.640030, -1.462368, -0.683268, -0.736704, -0.529999, 0.387158, 0.432750, 0.649493, -0.088709, -0.803069, -0.899639, 1.428242, -0.454638, -1.029092, 0.037624, -0.708494, -0.351422, 1.421274, -0.372453, -0.157853, 1.814718, 0.585491, 0.919518, 0.334817, -2.671010, -0.771587, -0.395982, 0.082838, 0.859022, -0.356058, -0.540233, 0.654218, 0.098357, 0.078977, -0.169725, -2.216716, 2.321392, -1.263653, -1.639489, -0.161886, 1.797469, 0.796801, -1.759298, 0.046668, 1.317824, 0.318675, 0.457329, 0.124017, 0.526361, -0.342122, 0.957925, 0.297107, -1.101054, -0.096374, -0.766925, 0.993858, -1.519713, 1.198808, 0.136192, 0.350640, 0.771633, -2.391844, 1.691390, -0.432016, -0.583463, 1.281393, 0.001705, 1.768327, -0.389773, -1.929848, 0.181209, -0.236180, -0.727279, 0.396655, 0.735341, 0.516617, 0.739636, 0.439700, 1.041834, -0.932685, 0.797094, -0.594365, -2.089081, 1.232674, 0.952684, 0.421472, 0.320388, -0.905656, 0.064582, -0.472792, -0.520134, -0.113316, -0.448894, 2.523464, -1.101831, 0.271383, 0.090401, 0.201738, 0.211246, 1.631039, -0.427858, -0.089690, -0.744756, -2.058145, 0.155760, -1.241777, 1.393911, 0.660004, 0.680098, -0.026877, 0.648867, 1.162161, -0.293747, -0.753800, 0.218407, 1.240208, 1.058819, -0.687679, 0.775595, 1.421356, 0.111639, 0.300615, 0.590659, 0.142563, 0.527875, -0.047042, -0.063115, -1.396309, 0.698869, 0.969490, 0.648679, 0.683787, -0.238478, -0.255841, 0.804804, -0.421125, 0.715479, -0.893196, 1.526561, 0.466601, -2.522992, 1.958711, -0.631540, -1.062824, 0.894885, -0.117180, -1.646037, -0.396795, 1.682567, 0.873272, -0.300163, -0.488435, -0.600554, -1.618806, -1.552022, 1.563859, 0.176570, -1.075827, -1.608512, -0.421313, 1.102388, 0.766085, 0.374220, 1.082020, 1.032764, 0.247305, -1.712391, -0.387175, 0.296980, 0.673349, 0.652994, -2.267193, -1.027173, -1.491370, -1.300861, 0.641465, -1.447194, 0.921470, 1.494575, -1.738147, 1.029322, -0.238429, 3.944252, -1.858202, 0.965250, 0.111650, 0.492753, -1.078780, -1.064432, 0.202608, 0.103263, 1.468485, -0.783521, 0.998328, -0.294328, 1.243496, -1.174095, -0.241644, -0.477749, -1.094207, 0.111191, 1.652724, 0.270623, -0.389710, -1.990528, -0.371761, -1.342540, 0.025078, -1.171046, -0.209873, 0.574598, -0.400453, -1.333045, 0.297309, 0.536143, 0.175845, -0.125545, 0.532479, -0.226725, 1.124272, -0.122223, 0.376941, 1.594683, -0.096963, -0.620522, 0.503085, 0.714843, 0.136970, 1.543441, 0.286328, 1.754051, -0.031995, -0.239854, -0.439124, -0.375587, -0.573422, -2.523869, 0.370188, 0.355069, 0.312702, 1.373385, -0.705369, -0.186068, 0.635314, 1.257145, -2.306593, 0.532931, -0.520057, -2.123441, 0.770760, 0.131061, -0.580467, 1.107031, -0.136774, -0.814422, -1.011282, 1.364228, -0.564059, 0.196449, 1.071259, 0.286440, -0.998934, -0.659317, 0.170427, -0.124163, -1.919715, 0.694349, -1.344015, -1.627307, 0.264728, -1.180809, -1.600698, 0.910272, 0.668416, 0.591804, -1.444495, -0.100292, 0.170246, -0.620557, 0.254871, -0.595982, 1.607220, 0.496604, 0.456864, -1.013848, 0.570288, 1.238282, 0.059926, -0.804134, -0.229830, 1.313047, -0.036581, -0.645909, 0.849226, -0.841254, 0.637696, -0.006790, -1.117225, -1.223496, 0.532122, 1.437943, 0.313193, 0.777079, 0.523695, 0.143542, 0.462147, -0.428846, -0.859621, -0.416319, 1.290499, -1.228700, -0.528598, -0.513428, -0.329979, 0.845264, -1.828704, 1.289198, -1.389530, -0.525195, -0.627715, -0.694439, 0.683373, 0.331896, -1.636399, 0.062987, -0.357486, -0.330755, 0.155987, 1.124698, -0.097505, -0.008566, 0.834628, -1.509664, 3.011877, 1.167927, -0.032858, -0.346876, -0.511607, -0.643727, 1.146502, 1.060457, 2.279578, -0.685013, -1.105823, 0.226285, -1.405451, 0.589699, -0.198798, 0.769598, 1.560236, -1.135482, -0.946744, 1.080024, -0.942545, -0.125823, -0.140093, 1.518602, 1.550683, 0.670537, -0.979237, -0.135571, 0.691111, -2.179273, 1.522715, -0.902083, 0.169711, 0.748197, -0.401738, 0.711879, 0.146837, 0.166967, -1.012216, -0.386270, -1.474840, -1.029694, 0.238140, 0.572346, -1.084528, 1.181987, 0.338870, -0.415882, 0.978265, 3.052023, -0.460653, 0.447942, -0.825437, 0.579341, 0.210204, 1.498957, 1.393516, 1.065901, -0.341066, 1.313511, 1.469314, 1.839837, 0.763915, 0.101351, 0.159119, -0.804719, -0.671127, -0.846009, 0.103537, -1.127330, 0.340967, -0.331173, -1.106795, -1.611075, 0.873617, -2.482416, -2.017159, -0.090958, 0.199061, -0.851253, -0.468982, -0.846197, -0.010857, 1.247604, -0.112930, -1.173738, 1.097007, -1.362036, 0.461624, -0.887446, 0.266209, 0.786044, -0.505527, 1.521219, 0.027529, -0.161232, 0.035609, -0.137226, -0.576014, 0.375179, -0.089743, 1.770654, -0.246111, 0.631284, 0.368234, -0.079831, 0.706911, 0.263395, -0.176806, 0.126358, -0.353634, -0.495124, 0.204023, -0.727704, 0.245956, -0.706063, -0.813591, -0.224182, 0.136407, -1.388950, 0.098091, 0.504615, 0.658595, 0.720413, -0.379698, 1.908575, 0.947730, -0.217494, -1.050232, -1.191591, 0.017484, -1.248917, -0.159007, -0.752488, -0.763944, -0.750282, -0.385585, 0.269485, -0.026662, -0.720137, -1.077977, 0.157672, 0.760777, -1.601510, 0.013697, -0.032575, 0.931438, 1.239286, 1.396600, -0.052502, -0.114691, -0.134030, -0.842362, 0.391681, 0.892765, 1.568239, -0.126351, 0.758177, 0.724422, -1.336194, 0.535676, 1.556854, -0.154454, -0.313646, -0.454839, -1.012902, -1.139182, 0.735333, -0.050211, 0.948452, 0.438588, 1.340435, 1.069766, 0.642956, 0.242907, -1.151919, -1.251647, 1.331088, -0.579428, 0.334021, 0.122267, 0.068165, -0.964619, 0.428452, -0.050823, -0.002404, 0.041571, 0.405068, -1.233422, 1.260676, 0.094039, 0.307017, 0.151906, -0.027208, -1.007060, 2.334523, -1.264616, 0.356730, -0.535358, -0.762092, -0.275978, -1.702179, 0.030233, 1.046483, -0.584955, -0.836679, -0.006426, -0.390403, -0.083576, -0.981609, 1.930915, 0.510260, 1.647643, -1.071337, 1.382740, -0.228110, -0.277829, -1.409842, -1.575530, 0.718559, 1.423620, 0.656442, 0.095158, -1.461268, 1.772774, -0.063188, 0.879273, 0.828065, 0.046859, 0.459797, -0.582491, 1.411395, 0.530982, 0.582250, -1.730930, 0.627733, 0.785046, -0.999845, -0.547387, -0.419686, -1.621249, 1.620737, 0.715163, 0.709301, -0.497149, 0.873044, 0.005235, 0.064333, -0.231492, -1.151721, 1.434699, -2.263251, -1.223966, -1.371840, -0.583872, -0.066960, 0.095307, -1.494739, 1.547723, -0.592914, -0.549290, -0.768478, 2.203256, 1.172009, 0.520945, -0.737783, 0.032632, 0.560585, -0.157471, 0.441311, 0.637888, -0.347510, -0.854300, 0.468636, 0.326277, 0.037493, -0.627628, 0.368331, 1.217785, 0.471044, 0.586213, 0.417014, 0.610770, -0.523289, -2.253046, -0.082169, 1.246606, 0.652022, 0.032568, -1.690161, 0.784274, 0.187848, -0.016704, 0.180777, -0.536112, -0.624964, 0.317434, -0.777492, -0.066978, -2.195325, -0.291884, -0.880146, -0.083134, -2.587639, 0.272380, -0.323443, -0.701542, 0.685047, 0.192190, -0.965801, -0.560545, -1.679947, -0.557893, -1.030836, 0.267407, -0.262967, -1.179673, -0.298339, 1.599047, -0.244753, 0.107751, 2.064767, -0.296402, -0.471424, -0.153215, -1.991362, 0.624160, 0.582543, -1.285040, 2.206616, -1.725150, 0.770780, -0.816521, -0.886885, 0.723865, -0.874660, -1.764038, -1.496891, 1.192002, -1.447032, 0.932691, -0.995677, 1.105767, -0.102498, -0.568651, 0.594325, 0.732207, 0.739735, -0.219874, 1.695695, -1.483837, -0.909240, 1.747754, 1.800451, 0.354175, 0.670781, -0.432108, -0.276626, 0.012963, 1.732390, 0.132192, -0.885501, 1.517562, -1.904314, 0.051587, -0.669467, -0.285791, 0.342109, -0.139177, 1.684336, 1.228523, 0.016126, 0.229721, -0.982781, 1.346502, -1.035287, 0.241883, 0.186249, -0.725379, -0.162901, 0.087371, -1.917082, 0.710105, 2.211643, -0.582104, -0.618074, 0.204563, 1.226239, 0.563332, -0.908039, 0.564280, 1.755763, 0.644147, 0.314296, 0.408741, -0.394023, 0.186321, 0.731211, 1.043871, -1.683537, 0.232675, 2.661016, -0.007126, 0.071304, 1.941659, 0.778512, -0.121223, -1.590724, 0.771539, 0.688840, 2.668835, 0.099935, -0.789626, 0.110579, -1.199935, -0.704327, -1.075098, 0.743019, 0.067843, -1.819114, -0.965535, -1.885677, 0.512821, -1.058960, -0.139818, -1.075315, 1.209155, -0.224580, -2.634801, -0.152983, 0.103507, -1.012315, -0.601402, -0.502514, 0.921512, -0.307779, 0.390481, 0.222684, 0.538818, -0.724732, 0.512896, -0.341587, -1.628292, 0.311701, 1.300361, 0.003195, -0.716713, -0.905372, -0.218456, 1.245588, -1.620003, -1.169858, -0.848704, 1.669947, -1.617545, 1.274624, 0.032676, 0.085381, 0.095743, 1.019916, 1.243629, 0.890282, -0.896734, -0.936238, 0.446448, -0.294272, -0.839754, 1.447886, 0.522244, -0.301482, -1.253581, -0.281894, -0.566144, 0.725699, -1.826116, -1.757009, -1.132609, 0.683045, -0.400081, -1.174145, 0.632511, 1.124698, 0.218457, -0.832357, 0.696695, 0.116584, -0.471129, 1.437333, 1.646122, -0.301018, -1.540725, 0.608275, 1.267470, -0.880230, -1.784812, 1.072743, -0.432968, -0.403319, -0.094595, -1.290795, 0.079966, 1.536603, 1.105837, 1.804963, -0.555791, 1.120286, 0.180027, 0.325066, 0.815784, -0.253511, -2.012888, -1.089141, 0.341569, 0.350146, -0.054427, 1.785970, -0.109931, 0.892780, 0.228590, 0.595735, 0.905499, 0.493174, -0.945160, 0.415151, -0.046206, 0.358983, 0.170447, 0.591312, -0.696462, 0.025580, -0.714038, 0.074132, -1.808567, -0.311356, -0.951089, -0.716697, 0.906483, 0.503965, -2.401863, 0.078614, 2.144657, 1.752178, -1.248648, -1.558600, 0.101818, -1.114887, 0.947770, 0.109147, 0.201624, 0.137294, 0.627635, 0.474355, 0.024761, -0.199443, 1.163311, -0.752377, -0.133441, -1.042710, -1.591810, -0.911297, -0.802619, 0.336050, -0.341400, 0.585704, -1.797125, 0.913613, -0.286320, -0.529742, 1.485931, 0.290997, 0.419821, -0.663768, 0.680643, -0.057951, 0.066694, 0.095555, -0.878811, -0.796205, -0.201340, 0.092119, 0.044641, 0.544796, 1.484176, 0.740957, 0.451265, 1.266862, 0.739636, 0.086038, 0.766067, 0.522669, 0.264659, -0.120888, 0.216845, 1.741144, 1.826327, -0.479842, -0.888488, 0.422769, -1.184254, -0.789990, 0.419419, 0.935405, -0.379517, 0.840036, 0.533450, -0.031845, 0.537035, 0.073232, 0.199909, 0.138907, 1.424687, -0.047092, -0.833917, 0.038313, -0.789088, 1.286600, -0.748881, 0.543016, 0.846118, 0.634078, -0.450082, 0.273662, -0.127422, -0.159451, -0.631820, -0.438196, 1.538763, 0.425009, -0.045875, 0.467078, 0.351687, -1.209834, 0.236203, -1.877868, -2.454891, 1.362600, -1.057093, 1.204769, -0.254387, -0.716294, 1.846617, 0.918987, -1.564549, 1.344444, -1.662343, 0.728193, 0.486014, 0.932001, 0.096760, 0.341350, 0.528905, 0.091434, 0.614079, 0.089286, 0.441762, -0.890917, -0.162001, 0.934085, 0.276646, -0.396393, 0.193290, 1.736740, 0.022379, -1.862810, 0.379973, 1.280819, 0.542132, 0.520761, -1.270345, 0.795990, 0.458021, -0.071172, -0.145970, -0.017641, -1.136748, -1.082206, -0.745291, 0.048666, 0.943403, 0.263293, -0.115814, -0.419788, 1.952204, -0.925678, 0.683042, -0.167871, 0.003482, -0.213994, 0.411095, 0.315338, 0.275489, -1.889730, -0.698190, -1.541218, -0.471606, -2.830535, -0.564631, -0.181840, 0.735779, -0.663644, -1.367815, 0.267417, 0.228871, -1.236638, -0.575487, 1.681041, 0.596803, 0.180697, -1.794327, -0.605370, 0.573286, 1.022513, -0.558121, -0.063327, 1.731009, -0.849625, -1.096743, -2.294090, 0.090971, 0.188497, 0.520447, 1.124376, 0.352552, -2.517990, 1.561249, 0.229529, -0.631458, 1.316949, -1.552281, -0.481973, 0.419865, 0.561258, 0.193756, 0.891034, -0.525884, 1.029616, -1.546680, 1.916917, 0.240219, 1.109516, 1.019885, 0.049455, 1.995421, 0.379435, 1.694660, 0.959406, 0.817115, -1.023019, -0.235700, 0.825637, 0.028711, -0.343540, 1.032994, 0.619893, -0.110856, -0.385887, 1.068830, -0.927033, -0.297884, 0.410196, 2.540039, -1.499079, 0.279449, 0.399899, -0.494673, 0.213273, -0.088056, 0.740269, -0.911896, -0.030318, 2.038972, -0.778129, 0.975980, -0.304287, 1.270547, -1.203336, 1.452976, -2.167352, 1.264598, -1.598946, -1.566718, 0.183012, -1.101650, -0.519276, 1.846887, -1.403084, 0.681304, -0.300873, 2.311713, 0.957460, -0.218110, 0.837892, -0.265138, 0.691482, 0.548971, -0.607123, -0.935869, 0.173993, -1.251281, 1.820393, -0.903768, 2.422347, -1.753490, 0.464680, -0.487359, -1.103086, 0.219467, -0.577101, -0.568645, -0.743203, 0.539766, 1.691486, -1.534633, -0.182533, 0.456057, -1.124469, -1.243077, -0.399000, 0.000318, 0.792487, 0.596467, 1.306834, 0.652228, 1.489893, -0.194578, 0.606692, 0.134574, 0.763926, -0.624669, -0.202281, 1.960168, 1.204264, -0.069937, -0.925830, -1.378291, 0.932060, -0.303514, 0.935499, -1.914292, 0.385898, 0.166346, 0.581124, -0.245395, -0.143091, -0.199783, 0.923457, -1.394343, -0.560154, 1.361135, 1.745647, 1.139060, -0.689184, 0.978894, 0.463933, 2.011608, 0.064100, -0.289482, 0.946763, -1.234082, 0.156069, -2.149051, 0.140043, -1.220015, 0.360217, -0.737686, 1.120746, -1.259606, -0.532519, 1.284235, 0.233486, -1.149622, 0.804189, 1.523195, -1.778994, -1.222941, 0.233423, -0.305394, -1.422051, 0.438451, 0.384012, -0.044099, -1.716174, -0.344945, 0.692482, -0.928128, -0.052847, 0.122735, 1.691219, 0.112818, -1.107622, 1.452040, 1.280817, -1.999826, 0.833575, -1.229772, -0.231902, 0.610070, -1.173033, -1.112078, -1.217899, 0.103263, -1.860923, -0.713389, -2.234493, -0.318021, 0.605091, -0.046884, 0.351298, -3.238503, 0.599061, -1.590511, -0.382465, 1.499645, -0.368768, 0.059807, -0.810084, -0.082782, -1.323444, -0.157666, -0.079778, 0.408359, -0.829038, -0.751103, -0.962780, 2.193781, 0.269622, 0.149634, -0.156015, 0.125435, 0.643258, 3.274923, -0.348060, 0.002705, -0.647955, 0.020039, 1.109778, 0.258100, -0.907328, -1.103651, -0.484972, 1.024585, 0.741973, -0.226772, 1.020938, 0.499352, 0.235172, 0.738548, 0.787095, 0.625934, -1.327732, -2.086107, -0.832856, 0.079739, 0.268940, -1.238683, -0.634566, -0.477485, -0.367884, -1.242857, -0.312081, 0.681902, 0.882958, 1.254995, -0.167477, -1.217416, 0.754707, -2.367965, -0.626828, 0.225967, -0.727434, -0.592906, -0.117011, -0.691285, -0.524886, 1.873445, -0.182071, -0.728334, -0.201684, 1.053455, -2.344703, 0.946009, 0.672189, 1.083269, -1.311616, 0.706246, -1.444814, -1.758793, 0.109823, -0.419026, -0.736907, -0.639920, 0.536340, -0.622469, 1.568338, 0.099852, 0.969737, -0.263650, 1.022313, -0.130073, -0.326466, -1.499172, -0.242417, 1.174083, -0.970962, 1.283451, 0.206247, -1.647758, 1.773544, -0.041347, -1.246374, 0.753146, 0.189310, 0.879654, -1.303974, 0.850342, -0.097866, 2.855169, 0.690653, 3.597145, -0.645675, 2.275282, 2.264520, 0.256012, 0.066188, -1.094239, 0.336229, -0.635581, 1.835892, -0.651171, 0.325442, 0.769568, 1.284737, -1.369916, -0.163810, 0.458260, 0.867070, 2.114308, 0.129041, 0.815176, 2.130857, 0.547459, 0.552881, -0.384379, -0.111858, -2.414465, 1.347841, 1.459552, 1.395295, -0.740588, -3.384161, -0.086892, -0.674921, -1.607548, -0.696350, -0.893506, 1.198571, -0.550440, 0.816936, 1.016265, 0.842840, 0.570665, 0.418131, -0.621630, -1.677645, -0.045504, 0.634927, 0.232144, -1.731583, -0.509662, -0.422844, -0.171595, 0.762678, 0.748308, 1.197695, -0.186461, 0.367308, 0.853758, 0.680082, 0.614641, 1.889122, -0.371895, 0.390753, 0.106858, -0.964265, 0.538948, 0.684802, -1.049766, -0.742857, -0.621754, 0.558155, 2.393028, -1.520358, 0.846200, 0.044463, 0.229704, -0.445941, -0.487096, -1.317962, -0.007152, -1.669969, -0.009625, -0.965176, -1.363039, -0.334475, 0.328443, -1.676896, 1.676282, -1.089136, 0.587593, 0.483999, -0.007582, -0.056238, -0.110378, 1.203782, 0.612845, -0.350349, -1.334917, 1.244733, -0.817702, 1.244112, -0.951136, 0.215253, 1.241477, -0.546881, 1.018512, -1.255374, -0.097423, 2.260577, 0.124214, -0.248872, -1.441602, -1.050383, -1.293818, -0.362505, 0.804698, 1.775938, 0.499425, 0.777173, 0.737156, 1.096813, 1.070791, 0.507341, 0.106322, 0.608585, -1.446946, 0.477057, -0.121663, 0.795934, 0.947460, 1.375368, -0.849977, 0.715402, -2.200944, -0.489656, -0.884779, -1.025211, -0.788321, -0.023901, -0.789196, -0.042571, 1.239970, 2.379713, 0.171058, 0.103795, 0.606270, -1.608247, 1.416516, -0.909894, 0.657470, 0.960922, -0.746216, -0.806572, 0.033708, -1.369520, -0.266819, 0.090347, 0.509608, -0.248996, -0.735197, -0.693049, -0.024490, -0.301243, 0.102943, 0.199751, -0.132859, -1.159332, 0.573181, -1.068949, -0.498309, 0.772656, 0.153209, -0.657340, 0.050796, 0.759697, -0.829038, -0.434990, -1.133309, -0.492490, 0.654510, 0.773751, 0.538183, 1.220387, 1.099179, 0.725080, 0.029437, -0.881871, -0.551479, -0.204937, -1.757117, 0.698953, 1.542494, 0.644348, -2.115573, -0.065121, -0.400810, -1.694086, 1.878602, -1.538846, -0.551390, 0.638339, -0.481102, 0.458051, -0.714383, 0.176170, -0.760979, 0.231547, -0.596368, 0.343202, 0.772300, -1.267514, 0.314336, -1.219111, 0.295803, -0.396475, -1.032794, -0.545667, -3.286586, -0.111250, -1.313947, -0.209656, -0.788196, -0.721227, -1.037382, 0.432920, -0.114856, -0.601111, 0.384281, -1.375650, 0.754939, -0.148504, -0.445098, 1.452077, 1.804115, 0.028117, -1.838639, -1.339139, -1.836395, -0.763915, -0.291530, 0.884907, -1.124850, 0.568960, -0.650669, -0.750237, 0.822205, 1.472903, 0.242534, 1.462725, 0.764221, -1.074732, -1.071990, -0.865600, -1.456285, -1.096274, 0.184368, 1.719182, -0.862572, 0.087241, -0.197046, -0.457307, -1.823589, 2.627374, 0.783945, -1.003779, 0.206574, -0.953086, 0.532852, 0.619520, -1.378216, -0.311258, 0.865027, 0.909415, -1.387156, 1.212136, -2.209523, 2.773308, -0.345094, 0.558097, 0.590485, 0.072100, -1.097392, 1.134982, 2.153804, -1.291377, -0.923894, 0.948272, 1.942132, -0.014423, -2.059298, 0.278989, 0.323110, -1.113875, -1.952412, -1.006567, 0.416797, 1.050996, -0.228020, -0.736134, 0.561660, -0.356462, -0.742087, -1.084345, 0.503272, 0.418055, 0.420612, -0.571402, 0.270388, 0.315510, 0.125730, 0.329237, 0.111774, 0.281052, -0.659634, 1.253830, 0.447354, -0.385666, -0.648878, 0.192956, 0.213230, 0.619238, 0.654071, 0.400554, -0.657582, 1.565078, -0.555640, -0.680927, -0.658510, -0.123976, -0.528578, -1.994702, 0.660791, -2.069070, 0.885234, -0.971248, 1.789271, -0.167909, -2.129750, -0.885771, -1.051292, 0.393300, 1.457115, -0.833682, 1.303036, -0.318364, -0.476482, 0.269556, 0.618594, 0.195107, -0.171919, 0.928795, 0.528894, 1.630606, -0.050139, -0.615800, 0.195950, -0.289427, 1.308965, 0.517201, 1.058555, 1.262139, -1.019838, -0.166300, -0.022473, 2.282791, 0.534206, 0.049370, -0.612647, 0.605013, 1.926225, -0.823302, -0.026712, -0.574431, -0.344630, -0.000880, 0.760657, -0.630067, 0.155759, 1.086287, 0.085857, 0.738797, -0.038719, -0.570407, 1.515545, 0.144131, -1.134749, -1.231730, -0.624401, 0.451340, -0.805257, 0.400244, 0.011199, 0.323038, 0.552727, 0.165034, -1.218125, 0.092322, -0.463958, 1.317818, -0.657967, -1.594268, 0.861709, 0.820080, 0.420394, 0.725182, -0.298505, -0.389230, 1.384899, -0.219751, -0.371714, 0.822450, 1.201430, 0.100548, -0.278114, -0.399451, 1.761437, 0.948007, -1.071918, -1.346583, 0.215357, 1.370689, 0.123228, -0.308579, -0.823155, 0.359772, -0.172389, 0.626381, -0.144721, -0.388125, 2.482474, -1.486362, 1.987924, -1.403528, 0.421666, -1.435877, 0.602172, 0.011298, 1.577353, -1.658217, 1.176515, -0.013049, 0.492604, 0.832108, 0.416851, 1.720755, -0.783004, 0.051518, 1.233887, 0.950312, 1.295694, -0.630398, -0.230060, -2.085841, 0.206733, 1.777459, -0.712053, 0.263313, -1.367420, -1.661427, 1.633955, 0.264516, -1.469857, 1.233839, -1.562248, -0.285862, -1.329347, 0.288772, 1.087265, -1.244013, 0.270511, -1.001265, 1.442534, 0.222338, 0.403805, -1.801479, 0.836810, 0.032710, 2.184687, 1.424083, -0.584917, -0.283094, -0.679288, 0.837390, -1.477519, 0.947693, 1.108716, -0.242318, 0.418898, 1.129318, -0.043781, 1.010266, 0.587456, 0.552694, 0.485307, -0.911079, -1.474590, -1.444921, 0.144605, 0.859992, -0.140263, 2.144085, 0.571181, 0.668334, -1.261104, -1.505537, -0.142553, 0.905944, -1.783273, 0.203243, -3.049428, 1.109981, -0.119054, 0.363287, -1.209777, 0.850142, 1.103748, -0.578901, 0.202859, -2.602454, -1.219928, -2.222341, 1.699615, 1.315716, -0.835175, -0.319744, -0.704893, 0.639997, 0.582240, 0.268216, -0.116655, 0.177476, -0.497349, -0.064557, -1.221388, 0.915948, -3.019886, -2.781874, 0.296599, -0.645163, 0.019030, -0.610654, -0.932680, 1.662467, -0.433710, 1.201454, -1.602482, -0.771650, 0.542878, -0.059642, 0.110350, -0.365260, -0.659802, 0.667127, 1.412355, 1.405997, 0.126664, -1.412854, -0.431512, -2.119984, 0.099949, -3.022939, -0.802788, -0.065689, -1.133384, -0.332183, 0.870766, -0.450917, 0.353133, -0.292761, 1.191484, -0.718563, -1.851259, 0.862291, -0.374218, -0.452603, -0.642518, -0.597050, -0.626641, 0.584423, -0.025279, 0.280219, 0.776167, -0.483173, -0.705251, -1.432658, -1.022790, -1.392157, 0.584329, 0.138391, -0.889668, 1.316972, -0.199282, -1.158828, 0.343230, -0.673243, 0.110015, 0.925401, -0.811977, -1.964039, 0.208911, -0.366249, 0.762380, 0.129335, 0.656758, 0.554861, -0.558642, 1.217487, 0.895644, 0.909092, -0.382637, 0.055226, 1.157098, -1.363181, -0.036041, 0.023808, 0.634215, -1.296915, 1.087658, -0.068615, 0.173005, 1.056740, 0.510327, 0.208614, 1.262423, 0.897627, -1.711390, 0.499536, 0.040155, -1.240188, 1.314165, -0.920566, -0.446976, -0.216056, 0.155500, -0.015665, -1.546679, -0.995939, -0.763947, -1.796529, -2.409871, -0.029098, 0.271461, -0.745800, -2.008286, -0.927230, 0.065471, 0.359163, 0.789661, -0.876824, 0.200356, 1.039542, 0.235464, 0.258948, 0.060692, -0.116278, -1.737092, 0.780957, 1.266407, -0.180647, 0.505690, -0.133874, -0.737905, -1.284374, 1.043119, -0.350721, 0.674804, 0.710027, 0.624824, -1.050752, -0.387217, -2.484569, 1.038849, -1.280589, 1.643923, -0.248830, 0.908984, -0.731589, 0.644337, 0.570423, 0.239877, 1.495266, 0.424171, -0.448426, -1.386445, 0.492990, -0.293027, -0.141827, 0.003751, -0.957691, -1.462403, 2.250988, -0.973675, -2.951337, -0.305153, -0.941560, -1.183053, 0.611710, -0.376358, -1.106333, 0.300617, -0.721330, 1.101456, 0.431116, 0.563714, 1.399399, 1.130291, -0.552077, 1.061333, -0.092885, -0.490149, 0.339786, 0.356425, 1.881743, 0.091920, 0.575208, 0.363533, 0.352643, -0.285782, -0.262878, -0.809452, -1.608636, 0.467058, -0.011425, 0.239629, -1.127596, -0.318725, 1.258444, -0.404076, 0.383442, -0.088286, -0.353377, 1.171918, 0.470011, -0.402276, -0.372206, -1.297728, -0.870016, 1.614759, -0.675132, -0.373451, 0.888947, -0.820048, 0.942631, -0.859537, 0.956158, 0.414521, 0.219664, 1.466850, -0.151739, 1.715385, 0.102885, -0.629379, 0.795217, -0.049454, -0.910070, 0.942119, -1.212939, 0.451908, 0.264988, -1.374320, -0.928955, -1.289076, -1.261226, 1.122338, 0.151613, 1.084357, -1.247185, 1.355480, -0.496006, 0.202836, -0.279352, 0.061925, 0.075123, -0.010633, 1.665442, -0.259836, -0.194655, -1.194671, -0.155750, -0.569273, 0.441884}, + { 0.306053, 0.655023, 0.601022, 1.890180, 0.779185, 0.745997, 0.044883, 1.027930, 1.144791, -2.065500, -0.955389, 0.814198, 2.276800, -0.441706, -0.362342, -0.469636, -2.299112, 0.163438, 0.977913, 0.669896, 0.910154, 2.037225, 1.283853, 0.246283, -1.148569, 0.091599, 1.516956, -0.596582, -1.884530, 1.813483, -0.745703, 0.113068, -0.043826, 0.329446, 0.402982, 0.404139, 1.509598, -0.382893, 1.354240, 1.052974, 1.958785, 1.899341, -1.892131, -1.484339, 0.719642, 0.097261, 0.900479, 0.640860, 2.412882, -0.124725, 0.118307, -0.216208, -0.484342, -0.129433, -0.389852, -0.196844, -2.088548, -2.354909, 1.975723, 0.924680, 0.156747, 1.443496, 0.061418, 0.449164, -0.383296, 1.003783, 0.706093, 0.573518, -0.429927, -1.467220, 0.816274, -0.479154, -0.078750, -0.225255, 0.645629, 1.527311, 0.410746, -1.101803, -0.687578, 1.065136, -0.803712, -2.091181, 1.489167, -0.688606, 0.715771, -1.817188, -0.700249, -0.808454, 0.674843, -0.671634, -0.664611, 0.567812, -0.938628, -1.178422, 1.052407, 0.829454, 0.333921, 0.282373, -0.308495, -0.910188, -1.161811, 0.033027, -0.255470, 0.527855, 0.110178, -1.293394, -0.027141, 0.428618, 0.763337, -0.273234, 0.110821, -1.339046, -0.566313, 2.186830, 0.265084, 0.421920, -0.804885, 0.810508, -0.109380, 2.019528, 1.078617, -0.336461, -0.068866, -0.306429, -0.157813, 0.304983, -0.859182, 1.100367, -0.255995, 0.286705, -0.966163, 1.436331, 1.610193, -0.856852, -0.525730, 0.130290, -1.122079, 0.383032, 0.271746, 0.084785, -0.513179, 1.779457, -1.635670, 0.054635, -1.154547, -0.337266, -0.157128, -0.061562, -0.929907, -0.450199, 0.936423, 0.514459, -0.797071, 1.018977, -0.970956, -0.998577, -0.708840, 1.691755, 2.865524, -0.289743, -0.154794, 0.034562, 1.024701, -0.437260, -2.021700, -1.159751, 0.018421, -1.733001, 0.030119, 0.869922, 0.358805, 1.391150, 0.261041, -0.686678, -1.447936, -1.136542, 0.298334, 0.514408, -1.055912, -0.045991, 0.482677, -0.475100, 1.016389, 1.057067, 0.349636, -1.552275, -0.814456, 0.555771, -0.660684, -1.887382, 0.126537, -0.091373, 1.868438, -0.572924, -1.870499, 1.320623, -0.122809, 0.615067, 0.459421, 2.490492, -0.362870, -0.759327, 0.625597, 1.650055, 1.248910, -1.304209, -1.294328, -0.687407, -0.256605, 0.633505, 1.577451, -0.662092, -0.055807, 0.495282, -0.023324, -0.058662, 0.223044, 0.853134, -3.415582, 0.128022, 0.244949, 1.234014, 0.112954, -0.090850, -1.585292, -0.401207, 0.522009, 0.084580, -1.456277, 1.323341, 0.674555, -0.153379, -1.234390, -1.214318, 0.090031, -1.125700, 0.218534, -1.719167, 0.633274, -0.666644, -0.304681, -0.645550, 1.504749, -0.182104, 0.065711, 0.246883, -0.164804, 0.268317, -0.640890, 1.660100, 0.358457, 0.018721, 1.743414, -2.280760, -0.908194, 1.285988, -0.049298, -0.731913, 0.699607, -0.733625, 0.325894, 0.853100, -0.813906, 1.100766, -0.852223, 0.690548, 0.850760, -1.626735, -0.984735, 0.158065, -0.450318, -0.331243, -1.930876, 1.276435, 0.403233, 1.344207, 0.846544, 1.057964, 0.808760, 0.363174, 0.553183, -1.140975, 0.382838, 0.700096, 1.296091, -0.595758, 0.413251, 0.792074, 1.751483, -0.214396, 0.971786, 1.807642, -1.009961, -0.639061, 1.646864, 1.155533, 0.632300, 0.423940, 1.892590, 1.226112, 0.745218, 0.755596, 0.132462, 0.250986, 1.216284, 0.711294, -0.202593, -2.286238, -0.305076, -0.401009, 0.012228, 1.810427, 0.155617, 1.686397, -0.044485, 1.951637, -1.519003, 0.551804, 0.126369, -1.429462, -0.069943, -1.241395, -0.955524, 0.934578, 0.093011, -0.973420, 0.865429, 0.832059, 1.064513, -1.507699, 0.465209, 1.230847, 1.882538, 1.056649, -0.655764, 0.567414, 1.232247, -1.141623, 1.348975, -0.197116, 0.643541, 1.594372, 0.114432, -1.100444, 0.336552, -0.051833, 1.246019, 1.608885, 0.898541, -1.594947, 0.412246, 0.382335, -0.736582, -0.591782, -0.827465, 0.478101, 0.032613, 0.365402, 0.023524, -0.097985, -0.035388, -1.169961, 1.603616, 0.436716, 0.053037, -0.144850, 0.275561, 0.590071, 0.732637, -1.107710, 1.838093, 0.986445, -1.535011, 1.318522, -0.776602, -0.198342, -0.601804, 0.023683, 1.147958, 1.105458, 0.666450, -0.866823, -1.804991, 1.764135, -0.077409, 0.186713, 0.344493, 1.011144, 1.277187, -0.329106, 2.211274, 1.112371, -0.573875, 0.216939, 1.432820, -0.259644, 0.287992, -0.226812, 1.357910, 0.307900, 0.241176, 0.716688, -0.934928, 1.118223, -0.135582, 0.249715, -0.546449, 1.170933, 0.835911, -0.061615, 1.230920, 0.660273, 0.709425, -1.457238, -0.462678, 1.435325, -0.275830, -0.775204, -0.457671, 0.970308, 0.336291, 0.672783, -0.456583, -0.842579, 0.426320, 2.590044, -0.761741, 0.657310, -1.604443, -2.231782, 0.469280, 0.771679, -1.132938, 0.970252, -1.488133, -1.447886, -0.142702, -0.533458, 0.333237, 0.713508, -0.292267, 0.547955, 0.590747, -1.113803, -1.068648, 0.216783, -0.695032, 1.848361, 0.444731, 0.707257, 0.297911, 2.380150, 0.149715, 0.933467, -0.170712, 1.039868, 0.186961, 0.424069, -0.494074, -1.219011, -0.780676, 1.816759, 0.387670, -0.967709, 1.215745, 0.563780, -0.444726, 0.437244, -0.040144, 0.017977, -0.436769, -0.722036, 0.076123, 2.038691, -0.352857, 0.193998, -0.925745, -1.209406, 1.031133, -1.624738, 1.449812, 0.665593, 0.210665, 0.343916, -0.575074, 0.618354, 1.456426, -1.380976, -0.796809, -0.787871, 1.542605, -0.039402, 0.461496, 0.204260, -0.690160, 2.235208, -1.289715, 0.853032, 0.595849, -1.004903, -0.314063, -0.017002, -0.462261, -0.432523, -1.114655, -1.145948, 1.048367, -0.301607, 0.709324, -0.368214, 0.001998, 0.598900, 0.126029, -0.804712, -2.914235, -1.467662, 0.194501, -0.295007, -0.187786, -0.350858, 2.072236, -0.320828, -0.411470, 1.414000, -0.776154, 1.007657, -0.431999, -0.784971, 0.536280, -1.223432, 0.689310, -1.450974, 1.705544, -1.719905, -1.636239, 0.444315, 1.631316, 0.237500, -0.990477, 0.722567, 0.369905, 0.455114, -0.234677, 1.544214, 0.010035, -2.114593, -1.869019, -0.484050, -0.806391, 0.271742, 0.286472, 0.689310, 0.330565, -0.775901, -1.212435, -0.795118, -1.528587, -0.239839, 0.798094, 0.878294, 0.721996, -0.247964, 0.299384, 0.834919, -0.940462, -0.889167, 0.256584, 0.166233, -0.913947, 0.257069, -0.693560, 0.274110, -1.095540, -1.138444, 1.178309, 2.197699, 1.231934, -0.716416, 0.094879, -0.535117, -0.235680, 0.963843, 0.693461, 0.354859, -1.951049, 0.695489, -0.111126, 0.805758, -1.095965, 0.895157, 0.052954, 0.941177, -0.434166, -0.403882, 1.602525, 1.321342, 0.019659, 1.719970, -1.234313, -0.415838, 0.027629, -0.624495, 0.806576, 1.199266, 0.022902, 0.271181, -0.720649, -0.372576, 0.282901, 0.671660, -0.067669, 1.254568, 0.464117, -0.956669, 1.768708, -0.981018, -1.634513, 0.977878, 0.571035, -1.014793, -1.114021, 1.342866, 0.118520, -0.648012, -0.981292, 1.587563, -0.603370, -0.476831, -0.651664, 0.268886, 0.222579, -1.207132, 0.274576, -1.535163, 1.672279, 1.041076, 1.829667, 0.160395, 0.019549, -1.057220, 0.481870, -1.080187, 0.730474, 0.852357, 0.271900, -0.850585, 0.104664, -0.868777, -0.151250, 0.320333, -0.171258, -0.178508, -0.090091, 0.016050, 0.641610, 1.399266, -1.207521, 0.063560, -1.126837, -0.750128, 0.431695, 0.648339, 0.025406, -0.186404, -0.601247, -0.014920, -0.141077, 1.512372, 0.014823, -0.467640, -0.470565, 0.857452, -1.345808, -0.039423, 0.562787, -2.212435, -0.381147, 0.441628, -3.139030, 0.915106, -0.379794, -0.445968, 0.486448, -0.768498, 1.469221, -0.330846, -0.941496, -1.160222, -0.246010, -0.213206, 2.406422, 0.681248, -1.783142, -0.767410, 1.704415, -0.451864, 0.686015, -0.496022, -1.293758, 0.144424, 0.505526, -0.205168, -1.639819, -0.414931, -1.794943, -0.265367, 1.144409, -0.844765, 1.530019, -0.236714, 0.375512, -0.438605, -1.058092, 0.237714, 0.321695, -0.858939, -0.320476, -0.665091, 0.306542, -0.609934, 0.611263, 0.087265, 0.024723, 0.162028, -1.797718, -1.318625, -1.054334, -0.520702, -0.909815, -0.781718, -0.908923, 1.121070, 1.239078, -1.472121, -0.985432, 0.485584, -0.365651, -0.945598, -0.045432, 2.474636, -1.295494, -1.115126, 2.285769, 1.909908, -0.058226, -2.355661, -0.310305, -0.693946, 0.041466, -0.361893, -0.742374, -2.710838, -0.543960, 0.761441, 0.519598, 0.859976, -1.175118, 0.160989, -0.843009, -0.643818, -0.451043, 0.113457, -1.105057, 0.043851, 1.350913, -1.585491, 0.267387, -0.866994, 0.018115, -0.261888, 0.229849, 0.566232, 0.223388, 0.135254, 1.542743, -0.588135, 1.081777, -0.160107, 0.460362, 1.335092, -0.702964, 1.384560, -1.814902, 0.821111, 1.015757, -1.600689, -0.359878, 0.483935, -0.177527, 0.539820, 0.078470, -1.001130, 0.089451, 1.315600, -0.230437, 0.300769, -0.483248, -0.398708, -0.591322, -1.904049, 0.767959, 0.960107, 1.245484, -0.828119, 0.884363, 0.393901, 1.025945, 0.343532, -0.572946, -1.054310, -0.552449, -0.429007, 0.856342, 1.316770, 0.425394, -1.214908, 1.434746, -0.274775, 0.830779, 0.765349, 0.434867, -0.553615, 0.471733, -1.772158, -0.108032, -0.562055, 0.393262, 1.149402, -0.248138, -0.058569, -0.102629, -1.053732, -1.525646, -1.605503, -0.317426, -0.300456, 1.505236, 0.230283, 0.215174, 1.104605, -0.524340, 0.929776, 1.494221, -0.065469, -1.386543, -1.557096, 0.230938, 1.898633, -0.807449, -0.396737, 0.473917, 1.044068, 0.568269, 0.729260, 0.863082, -0.273321, -1.685378, 0.396150, 1.112643, 0.900336, -0.382537, 0.402834, -0.549428, 0.491953, -1.115485, 1.753430, -0.238812, -1.586390, -0.556953, 0.533577, -0.490598, 1.026821, 0.573757, -0.065992, 0.608130, 0.282710, -0.960774, 0.045640, 0.657832, 1.763500, 1.332469, 0.844769, 0.444769, 0.296056, 0.128627, -0.993037, -0.652334, 0.715801, 0.824528, 1.903906, 0.012615, -0.336774, -1.541809, 0.568936, -0.239318, 0.683953, 0.175478, 0.459859, 0.176219, -0.911236, 0.956840, -0.341742, 0.672891, 0.100581, 0.454326, 1.436460, -0.057637, -0.840042, 0.173243, -0.300461, -0.179025, 1.040181, 0.314383, 0.353963, 1.324432, -0.249695, 1.460329, -0.394267, -0.908176, 3.519607, 0.931430, -0.773403, 0.282989, 0.245004, 2.198965, 0.754157, -1.016852, -0.964242, -0.432444, -0.913298, -0.380747, 0.688152, 0.731114, -0.487267, 0.457628, -0.754775, -0.542510, 0.964001, -0.424062, -0.575031, -1.009011, 0.283669, -1.632675, -1.081024, 0.405929, 0.913498, -0.957288, 0.063618, 0.410084, 0.751725, 0.316464, -0.266139, -0.923071, 0.526265, -1.727600, -0.049592, -1.549057, -1.253188, -0.146271, -0.978189, -0.352279, -0.037580, 1.092048, 0.404153, 0.751678, 0.939947, 0.635343, -0.181044, 0.127638, 1.376194, 0.412008, 0.295745, 0.431696, 0.580316, -0.245036, 0.328633, 1.072151, 0.011214, 0.737107, 0.641669, -0.272074, -1.332081, 0.670853, 1.293334, -1.803168, -0.565272, -0.715295, 1.071769, 0.378036, 0.584261, -1.115840, -0.362657, -0.017809, 0.154506, 1.692304, 0.017419, -0.167461, -0.029298, -0.409173, -0.286013, 0.942225, -0.245485, 0.154658, -0.477232, -0.119695, 0.050861, 0.967000, 1.116743, -0.975016, 0.166561, -1.240957, 0.894585, -0.074516, -0.815448, -0.167714, -1.162505, 0.686933, -0.615414, -1.255976, 0.328320, -0.275673, -0.098712, 1.495568, 2.057344, 0.228320, 0.094049, 0.754552, -0.139389, -0.910035, -0.108081, 0.069732, 0.277711, -0.917879, 0.182366, 0.656270, 0.120618, -0.781743, 1.225559, -1.768723, 0.673439, -1.308574, 1.350429, -1.262379, 1.322503, 0.433229, 0.424920, -1.226392, -0.596761, -1.302780, 1.241119, -0.743504, -0.002188, 0.904678, 0.438577, -0.224086, 0.679371, -0.537908, 0.629917, 0.214296, -1.394609, -0.961223, -0.508731, 1.591525, -0.741228, -0.315695, -0.480300, -0.120089, 0.661369, -0.297296, -0.555660, 0.227276, 0.419884, -0.805337, -1.004137, -1.040979, -0.318128, 0.372706, -0.619154, -0.732511, 0.345320, -0.802126, 1.124454, -0.181602, -0.854222, -0.949487, -0.553111, 1.375972, -0.581183, -1.976784, -1.477165, -0.334667, -0.724406, -0.435450, 0.264027, -0.180969, 1.698670, 1.558877, -0.711566, -0.868455, 1.417809, -0.547200, -0.347732, 0.805752, -0.228958, -1.542462, 0.669390, 0.626546, -0.752939, 0.007821, -1.994178, -1.473917, -0.749204, -0.220853, -1.012404, 1.414068, 1.626473, -0.843035, -0.054966, -2.178320, -0.690586, 1.577583, -0.760826, -1.341318, -0.004949, 1.233898, 1.566918, 0.052289, 0.241267, 0.767643, -1.293950, 0.696877, 0.127411, -0.243792, -0.296408, 3.345861, -1.505508, -0.028482, -0.972535, 0.109777, -1.470371, -0.275607, 0.324863, -0.453502, 0.645635, -0.073283, -0.520253, -0.860078, -0.794735, 1.641998, 1.967670, -1.494145, -0.681636, 1.161976, 1.005642, 0.081988, -0.734240, 1.509219, -0.662713, 1.183335, -0.133132, -1.876567, 0.094306, 0.817966, -0.417917, 0.365058, -1.627878, 0.455535, 1.392051, 1.643981, 0.197345, -0.170064, -1.709669, -0.700571, -1.379081, 0.751406, 0.216152, 0.454993, -0.682532, -1.857143, -0.840635, 0.663565, -1.489406, -0.569106, 0.353643, 1.520445, -2.315645, -0.924451, -0.321969, -0.285109, -1.641949, 1.055386, 0.525760, 0.577533, 0.757220, 0.552565, -0.152541, -1.070704, -0.569435, -0.809966, -0.829861, 1.328143, -0.373996, 0.664785, -0.816450, -0.334321, -0.014777, -1.312515, -0.862641, 0.731539, -0.202056, 1.631033, -1.274118, 1.197626, -0.814118, 0.793116, 0.201980, -1.711944, 1.090983, 0.327173, -0.887079, 0.317311, -1.411439, 0.775029, -0.182200, -0.630495, -0.913486, -0.368232, 1.223858, 0.317185, 0.236993, 0.004916, 0.433357, 1.560200, -0.171705, -2.463668, -0.159252, 1.335183, -0.681400, -0.276373, -0.536459, -1.446698, 0.184870, 0.835257, -0.960716, -0.501188, 0.698194, -0.321683, -0.434941, 1.201105, -0.316958, 1.339501, -1.604707, -0.336800, -0.181974, -4.342203, 1.497898, 0.880348, 0.133422, 0.365856, 0.189339, 1.115095, -0.932376, -0.802968, -0.128491, 0.817978, 1.279624, -0.910673, 1.157411, 0.421010, -0.197130, 0.149639, -0.003807, -2.544418, -2.270015, -1.449824, 1.961611, 0.465849, -0.520380, 0.222495, -1.577964, 0.329281, 0.590828, 0.298448, -0.629349, -0.608633, 1.068808, -1.107581, 1.555622, -0.177787, -0.108409, -0.508880, -0.662452, -0.290413, 0.146576, 1.482064, 1.381492, -1.059543, 1.199365, -0.028044, -0.344174, -0.541299, -0.676746, 1.922809, -0.078949, 1.323102, -0.110083, -1.616125, 1.199939, 0.151555, -1.699992, 1.523828, -1.003789, 1.199547, -0.023658, -1.400681, 0.062584, 0.691769, -1.293470, 1.084037, 0.622075, 0.831451, 1.595581, -0.484486, -1.130726, 1.911968, 1.762751, 0.695078, -1.275114, -0.618976, 0.611859, 1.573652, 0.875265, 0.155229, 0.817660, 1.156775, 0.508435, -1.519821, 0.545433, -1.578190, 0.693183, -1.100134, 0.163265, -0.302073, 0.373249, 0.600213, 0.063063, -1.763098, -2.243574, 0.790842, -0.271946, 0.464308, -0.975373, 0.602892, -0.438298, 0.080586, 0.147245, 0.062602, -0.328985, 0.260321, 1.113006, -0.566009, -1.789162, -0.162353, 0.617137, -0.942267, -0.234453, 0.951426, -0.808673, 0.938470, -1.792327, -0.301855, 1.073306, -0.370970, 0.597410, -0.583410, 0.965183, 0.484474, 0.050509, 1.057956, -1.684060, -0.835116, 1.079136, 1.038046, -1.236283, -0.013095, -0.242072, 0.493514, -0.882332, -0.132067, 1.072049, -0.517261, -0.652990, -0.272935, 0.766965, 1.944211, -0.134076, 0.887988, 0.108314, -0.198348, -0.480514, -0.618331, 1.050164, 0.343630, -0.965649, 1.223340, -1.393962, 1.520255, -0.517594, 1.401671, -0.604645, 0.218336, 0.519592, -1.552592, 1.044794, 0.242693, 0.603444, 0.931581, -0.468444, 0.131811, -0.779461, -1.268532, -1.075551, 0.187341, 0.163274, -1.484697, 0.344066, 0.909136, -0.087106, 0.742039, 1.245227, -0.208903, 0.854498, 0.594840, 0.933873, -0.291349, -0.747122, -0.710068, -0.625521, 0.245131, -0.794486, 2.063449, -0.170674, 0.118782, -0.294617, -0.018525, 0.614879, -1.317549, 2.412173, 0.159055, 0.656507, 1.354490, 0.064887, 0.857280, -1.397829, -0.861987, 1.102649, 0.792736, 1.422438, -0.800374, 0.825360, -0.852424, 1.464432, 0.574031, 1.232624, 1.030421, -0.485707, -0.363458, -0.366079, -1.110260, -1.446113, 0.829015, 0.294908, 1.135634, 1.329028, -0.322123, 0.582697, 1.688789, 0.175549, 1.105221, -0.331164, -0.410355, -0.263288, 0.657792, 0.558188, 0.913043, 0.792805, 0.451593, -0.124163, 0.561272, -1.776511, 0.181316, 0.175552, 0.323214, 1.005008, -1.261408, 0.655904, 1.909115, -2.584715, 0.730793, 1.089442, -1.512992, -0.510728, -0.050339, 0.900420, 0.720054, 0.884839, -2.230974, -0.709427, 0.636922, -0.449884, 1.083237, 0.313725, 0.893059, 1.195028, -0.798888, 2.234076, -0.448723, -0.422435, -0.728828, -0.626996, 1.037192, -0.438602, -1.099299, 1.606322, 0.409898, -1.113315, -0.015678, 0.853761, 0.972631, 0.756586, 1.605372, 0.401303, -1.832319, 1.512244, -0.191919, -0.542879, -0.088593, 0.608095, 0.123325, -0.286824, 0.764513, -1.304955, 0.097481, -0.478585, -1.292890, 0.788395, -0.816355, 0.335072, 0.505091, 2.087141, 0.734570, -0.069303, -0.297971, -0.428286, -1.049409, 1.667005, -2.267017, 1.778667, -0.777760, 0.386349, -0.727869, -1.166549, -0.398559, -0.826940, -1.537028, -0.125218, -1.599008, 0.083260, 0.682975, -0.417245, -1.201377, 0.587790, -0.227110, 0.505581, -1.698706, -0.488232, -0.906653, -0.488293, 1.202217, -0.665082, -1.267281, -2.376643, -0.593841, 2.626250, -1.176957, -0.387459, 0.095499, -0.271302, 0.238201, -0.797213, -0.414411, -1.484238, -0.573813, -0.724053, -0.085884, -0.217930, 1.715197, 2.228914, -0.638126, 0.571546, -1.442097, 2.659422, 1.189435, 0.065155, 1.287011, 0.477728, 0.423314, 0.145276, 0.182032, -0.476234, -0.139449, 0.444810, 0.678152, 1.557245, 0.430629, -0.158028, -0.250696, 1.165950, 0.061139, 0.829975, 0.816999, -2.053664, -0.706578, -0.104364, 0.775714, 2.193231, -0.413559, -0.697779, -0.513652, -2.250425, -1.283986, -0.841279, -0.221181, 0.528657, -0.570407, 0.025061, -1.059959, 1.245546, 0.407518, -1.039692, -0.567225, 0.330413, 0.110639, 1.423879, -0.290724, -0.848348, 0.094914, -0.923972, -0.121975, -0.434780, -0.351903, 1.736391, 0.844575, 0.361996, 0.467964, 1.881055, 0.015923, -0.355325, 0.903035, -1.627623, -0.701568, -1.160279, 0.439823, 0.512599, -0.387310, -0.657832, 0.711979, 1.440345, 0.759822, 0.819317, 0.129645, 0.620790, -0.426793, 1.140812, -0.930938, -0.402499, -1.282456, 1.522394, 1.327045, -0.740557, -0.992133, -0.021651, -1.021709, -0.879490, -0.861100, 1.497500, -1.978784, -0.293274, 0.776286, -0.422252, 2.343773, 1.379636, 0.186265, -1.375379, -0.813981, 0.639198, -1.017841, 1.327326, -0.658919, 0.552423, 0.764777, 0.946053, 0.852388, 1.682750, 0.530288, 0.107676, 1.304824, -1.240078, -1.216016, -0.504044, 1.199566, -1.665497, -0.614082, -0.586999, -0.295391, 1.138398, -0.794723, 0.690661, -0.831014, 1.356671, -0.907613, 1.752246, 1.436281, 0.539888, -0.855990, 0.611230, -1.437628, 0.089767, 0.527468, 0.781959, 0.547762, -1.479149, 1.592530, 1.008261, -0.421596, 0.417231, 1.311400, -1.266045, 1.316692, 1.030668, 2.332782, 0.263523, -0.264550, 0.941672, 2.441823, -0.985447, -0.288321, -0.055236, -1.085416, 0.983165, -0.406880, -0.267202, -0.190021, -0.837177, -0.528613, -0.489009, -0.244137, 2.094201, 0.379778, 0.514492, -0.344827, 0.594875, -0.125360, 1.562630, -1.577518, 0.326389, -0.741001, -0.840845, 1.338398, 0.371679, -0.393995, -2.789667, 1.539743, -0.217465, 1.806697, 1.484426, -1.383210, -0.454424, 0.479457, -0.239263, -1.481966, -0.194036, -0.799470, 0.211621, 0.710188, -0.690821, 0.237875, -0.473931, -0.255977, 0.196964, -0.777732, -0.781373, -0.093950, 0.227325, 1.007274, 0.924086, 0.819746, -0.520902, -0.438459, -0.741928, 0.338526, 0.376719, -1.465829, -0.000069, 0.259945, 0.353617, 1.858091, 2.049830, 1.435193, 0.702739, -0.810952, 1.030838, -1.029264, 0.807791, -0.667732, 0.029984, -0.771149, 0.303049, -0.783939, 1.266466, 1.140532, 0.922993, 1.560091, 0.609204, -0.724542, -0.849846, -1.834091, -0.008430, -0.910383, -1.734511, -0.741114, -1.626110, 0.763844, -1.485456, 0.952323, -0.175598, -0.032825, -0.360920, -0.140047, -0.938435, -0.842926, -0.256038, 1.017142, 2.124318, 0.670853, -1.085590, -0.075834, -1.136380, 0.056260, 0.005068, 1.308929, 1.919652, -0.757899, -1.764913, -0.961051, -0.524224, 0.744277, -0.398694, -1.685907, -1.250800, 2.620742, 1.426673, 1.531390, -0.549234, 0.039749, 0.816418, 0.874773, 0.593548, 0.341890, -0.720886, 2.045592, 1.059100, -1.585793, 0.117364, -1.400060, -0.271679, 0.300556, 0.429157, -0.048594, 1.825605, -0.187789, -1.988871, -0.278569, -1.196944, -1.196450, 0.377815, -0.264347, -0.096423, 1.694368, 0.064553, -0.601419, 1.795633, -0.738385, 0.862033, 0.112950, -0.171884, -1.117588, 0.027495, 0.501018, -1.714589, 1.029197, 0.595869, 0.387927, -0.210674, 0.080798, -0.243546, 1.389446, 0.108643, -0.484494, 1.065108, 0.363851, 1.662277, 0.311918, 0.507250, -0.922529, -0.121635, 1.133666, -1.246856, -0.369330, -0.880998, -0.322306, -1.283084, 1.346089, 0.411234, 0.074877, -0.655707, -1.423186, 1.047097, -0.137224, -0.244123, -1.552637, -1.174878, 0.145798, 1.972366, 0.448230, -2.426219, 1.045725, -0.167561, 0.825940, 0.016251, -0.064962, 0.263064, 0.672724, 1.177806, 1.542517, -0.563189, -0.044366, 0.360106, 0.832831, -1.260959, 0.230434, 0.784450, -1.034084, 1.870543, -2.031155, 0.417170, 0.560812, -1.195829, 0.612845, 0.899163, -1.401152, 2.247113, -0.571610, 1.203252, 1.117235, 0.135989, -0.523813, -1.513594, 0.059353, -0.616792, 0.304000, 0.866493, 0.354767, -1.745976, 0.022276, -1.697727, 1.487375, 1.695194, 1.046364, -1.174724, -0.473907, 1.501516, -0.048170, -0.490079, -0.282869, 0.503165, 0.701989, 1.311882, 0.618559, 0.680050, -0.446768, 1.140182, 0.191640, 0.295782, 0.555668, -0.875195, -0.571442, -0.027852, -0.182835, -0.357811, 0.422866, 2.659298, -0.925558, 1.770730, 0.509582, 1.120448, 0.398149, 1.599319, -1.093991, 0.713760, -2.153341, -1.756727, 0.405604, 0.624687, -0.133475, -0.353797, 0.452039, 0.041864, 0.235650, 0.163002, -0.918103, 1.255851, 0.667441, 0.128435, -0.694677, -0.045580, 1.365972, 2.156691, -0.676666, -1.416819, -0.541165, 0.350744, -0.532238, 0.336493, 0.027174, -0.520343, -0.681970, 0.201024, 1.257810, 1.273888, 1.516947, -0.530718, -0.405307, 0.492541, 1.234501, -1.045775, -0.582748, 0.645102, -2.354389, -0.026803, 1.464793, 0.252427, -1.213451, 1.868762, 0.099340, 0.516361, -0.027075, 0.896106, 1.777730, -1.297897, 0.217806, -1.072757, -1.791463, 0.478229, -0.262014, 0.871807, -0.822417, -2.204701, 2.201253, 1.646366, 0.011076, 0.231048, 0.051667, 0.317684, 1.205150, 1.224000, -1.492571, -0.584738, 1.034569, -0.879367, -0.319339, 0.006979, -0.713181, -0.386667, -0.024886, 1.284186, 2.160216, 0.240886, -0.242978, 0.267425, 0.236014, -1.177807, 1.788776, 0.388052, 1.355316, 1.202642, -2.108034, -0.178778, 0.484912, 2.020209, 0.208876, -0.839602, -0.001457, 0.858376, -0.664001, 0.782215, 0.892171, -3.486394, -0.238300, -1.358946, -0.820373, -0.145348, -1.102256, -1.003469, 0.278931, 0.630064, 0.787201, 1.933461, -1.147023, -0.295931, 0.748785, -0.647723, 0.533334, -0.310129, -0.179045, 0.145234, 1.811146, 1.355955, 0.390284, 1.069475, 0.325421, -2.135230, -0.020433, -0.500284, 0.860384, 0.743186, 0.295881, 0.628899, -0.346291, 1.131162, -1.370288, 0.537378, 0.556443, 2.123634, -0.337618, -1.103233, 0.841430, -0.622306, 0.527918, 2.053566, 1.972059, 1.444224, -0.399629, -2.606618, -0.983245, 0.513070, -0.659332, 1.074633, 1.540106, 0.368485, 0.282860, -1.572254, 0.855067, 0.946966, 1.116395, 0.831266, 0.623982, -0.145844, -0.504979, -0.553257, -1.404503, 0.383837, -0.741783, -0.957648, -1.081386, -0.612159, 0.453004, -0.094359, -0.335615, -1.062051, -0.825065, 0.074077, -0.103761, 0.497510, 0.178691, 0.692956, 0.562621, -0.363759, -2.542845, -0.824791, 1.200854, 1.026071, 0.913099, 1.773230, -0.187374, 0.291012, -0.517393, -0.131871, 0.829050, 0.876603, 0.203171, -1.341479, 1.005138, -2.543976, 1.478246, 0.290934, -0.668041, 0.439939, -0.083805, -0.039357, -0.340271, 0.232416, -0.529113, -2.221887, 0.590986, -0.223164, -0.519457, 0.985801, -0.900997, 0.027715, 1.044646, -0.167321, 0.253717, -0.026195, -0.668991, -0.399222, -0.151615, -1.054431, 1.610175, -0.543483, 0.031371, -0.043453, 0.883878, -1.894013, -0.233904, 1.581851, 0.851205, 1.092366, 0.163676, 0.501960, -0.350069, -1.045353, 0.861670, -0.032071, 0.914802, -0.057646, 0.231605, -0.300880, 0.326650, -0.008892, -0.388310, 0.177972, 0.704197, 0.995981, 1.300314, 0.326089, 0.813780, 0.233365, -0.263435, -1.192464, 0.333589, 1.137856, -1.659672, -1.717216, -0.267989, 0.759201, -1.769788, -1.083718, 0.359388, 1.404924, 0.505105, 2.148224, -0.226877, 0.220850, 1.595149, 0.677654, -0.273742, -1.116363, 0.533439, -1.131895, -0.083043, 0.009359, -0.713210, 0.904571, -0.377484, -0.259710, 0.289089, -0.759640, -2.310809, -0.681866, 1.006340, -0.510767, 0.081574, 1.587115, 0.499985, 0.843698, 1.137990, -0.266377, -1.732516, 0.245492, -0.507909, 0.034757, 0.501414, 2.122741, -1.783386, -0.824589, 0.058314, -0.792995, -0.304616, -0.071426, 0.439923, -0.541762, -1.084263, -0.835186, -0.529249, 0.174476, 0.079394, 0.851824, 0.727211, 1.708769, 1.110857, -1.161085, 1.188909, 0.798624, -1.010497, -0.986937, -1.299667, -0.890559, 0.282513, -1.041545, -0.202859, 0.859216, 0.468167, 1.032627, -0.857366, 0.262470, 1.242952, 1.690676, -0.387463, -0.183820, -0.159102, 0.804471, 1.468494, -0.316948, 1.057467, 0.507451, 1.030553, 1.394510, -0.831239, -0.443699, -2.422860, 2.197684, 0.387557, -0.098316, -0.264361, 0.852804, 0.846519, 0.069427, -1.962598, -0.656433, 1.284654, 0.508004, 1.712550, 0.927746, 1.389929, -0.841263, 0.016287, 0.414592, 0.459253, -1.315293, 1.522476, -1.992829, -0.122206, 0.141310, -1.506999, -0.213535, 0.637311, 0.374217, -0.785084, -0.367165, -0.340933, 0.268664, -1.854117, -0.843193, 0.799745, 0.439042, -0.479027, 1.816216, -0.796959, -0.098352, 0.184122, -1.440329, -0.102162, -0.564956, 0.564681, 0.152534, -1.126705, -0.906848, -0.899947, -0.771803, -0.359773, -1.455259, 1.607004, -0.669347, -1.238559, 1.235367, -1.357100, -1.189019, -0.724682, 1.156731, 0.048757, -1.040167, -1.028633, 0.750722, 0.494954, -0.580926, 0.770503, -0.597188, 1.279355, 0.022229, -0.582185, -0.184246, -1.289871, -0.780704, 0.630001, -0.586566, 0.935058, 0.194947, -0.318858, 0.078360, 2.083672, 1.231861, -0.458267, -0.227005, 0.328669, 0.245391, 0.976296, 0.158726, -0.477292, 0.711520, -0.387961, 1.317555, 1.333111, -0.961027, -0.188374, 0.692679, -0.544031, -0.709286, -0.244919, 1.496764, -0.025646, 0.986766, 1.168125, -0.595671, 0.217039, 0.277739, 1.199381, -0.070320, 0.250028, -1.336457, 1.843609, -0.215886, 0.736907, -0.203953, 1.386194, -0.214016, -1.542832, -0.638177, 0.567472, 1.397976, -1.605796, 0.958391, 0.832555, 0.602144, 0.509741, -0.418007, 0.921719, 0.248481, 0.137095, 0.789245, -1.211174, 1.911187, -0.412046, 0.603171, 1.063943, -0.278437, -0.769195, 0.287495, 2.051998, -0.479221, 0.533581, -0.653648, -0.098721, -0.663854, 0.036260, -0.405052, 0.109031, 0.096428, 0.249980, -1.259190, -1.150468, 0.031320, 0.580037, 2.193632, 0.324798, 0.192339, 0.280329, 0.330147, 0.983635, -0.667907, 0.818469, 0.934790, 0.849882, -0.365725, -1.267613, 0.156959, -0.044795, 1.298946, 0.247159, 1.582988, -1.091138, -0.303229, -0.217528, -0.761491, 0.430233, -0.486407, 0.780267, 0.408464, -1.697137, 0.390405, 0.432335, 1.848342, -0.014690, 3.594646, -0.974307, 0.608917, -0.992444, 0.658290, 0.946928, 1.229365, 0.700444, 1.380353, 0.691599, -0.057171, 0.347853, 0.670604, 0.542095, -1.577688, -0.746156, -1.153263, 0.511808, -1.187092, -0.771359, 1.072229, 0.243213, -0.556381, 0.532394, -0.457471, -1.479988, 0.457262, -0.639867, 0.969652, 0.114051, 1.801936, -0.804699, 0.010311, 1.543735, 2.623457, 0.156024, 1.204083, 1.816475, 0.588982, 0.637043, 0.282141, 0.435359, -1.616788, -0.706342, -0.027826, -0.880148, -1.677258, -0.836543, 0.020959, 0.009057, -0.647312, 0.019581, 1.882719, -0.408950, -0.234068, -0.533497, -0.681023, -2.475870, -0.469468, -1.796521, -0.120333, -0.651184, 0.448509, -1.394689, 0.994358, -0.578582, -0.567651, -1.770417, 0.267634, 0.453618, 0.634913, -0.806666, -1.150350, -0.635624, 0.207138, 1.162990, -0.285097, 0.185609, -0.510208, 0.663534, 0.574028, 0.808348, -1.014700, 0.089086, -0.244672, -1.382213, -0.509395, 1.282191, 1.554063, -0.829955, 0.145912, -0.482962, -0.205015, 0.538843, 0.489712, 0.101529, 0.353511, 0.412944, -0.824558, 0.366786, -0.139633, -0.483821, -0.324442, 0.607414, -0.248164, 0.350758, 1.608775, -0.762118, 0.229355, -0.529545, -0.622731, 0.264658, -0.815949, -0.185741, -1.615415, 1.813414, 1.076483, -0.923580, -0.074933, -1.110330, 0.387532, 1.658190, 0.951168, -0.607105, 0.679919, 0.837082, 0.402120, 1.949409, -1.939731, 0.126738, 1.067769, 2.484756, -0.814055, 0.122260, 0.798773, 1.432381, -0.456432, 0.442155, -1.545693, -1.356212, 0.446468, 1.058376, -0.768244, -0.156811, -0.221207, 1.477942, -0.442173, -1.270613, 1.634986, -0.461853, -1.703266, 0.756903, -0.244684, 0.283595, 1.364254, -1.692368, -0.562980, -0.180642, -1.089304, 0.881124, -0.871777, 0.076382, 1.939426, 1.507148, -0.304122, 0.186827, 1.748091, 1.121333, -2.656331, 0.202387, 0.549560, 0.831033, 0.365285, -0.447290, 0.359085, -0.096740, -0.034068, 1.027380, 0.084311, 1.679274, 0.373474, -2.310339, -0.416224, 0.763384, -1.951930, -1.160674, -0.377321, -1.109153, 0.262089, -0.663581, 0.005880, 0.379989, -0.162827, -1.932418, -0.136805, 1.290428, -1.519886, 1.574226, 0.127737, 1.960765, 0.460804, 1.575808, 0.471605, 2.033948, 0.373401, 0.980521, 0.313608, -0.504606, -0.369123, -2.741306, -1.706731, -0.228772, 0.030666, -0.538705, -0.988796, 0.156074, -0.274832, -0.860200, -0.495591, 1.038669, 0.678009, 0.677749, -0.779947, 1.779969, -2.416335, -1.392135, 0.281791, 1.439030, -1.487667, -1.359390, -1.093486, -0.251534, -0.713205, 1.789663, 0.245621, 0.647931, -0.600348, -0.543535, 0.855971, -1.222039, 0.857654, 2.951690, 1.376172, -1.066797, 0.991269, 2.114067, -0.535081, -0.575661, -0.248383, 0.946289, -0.819401, 0.776518, 0.464894, -0.001004, -0.921444, 1.056179, 1.021483, -1.777421, -0.545783, 0.486535, 1.187328, 0.635788, 0.266434, -1.306484, -0.097334, 2.922371, -0.758654, 1.567345, 1.127049, -1.692283, 0.045857, 0.416272, -0.682225, -0.072619, 2.377651, 1.017149, 0.310075, 0.049830, 0.675044, 1.048628, 0.566722, 0.186939, 1.353577, -0.711909, 0.386419, 0.251786, 0.616942, -1.446534, -1.456601, -0.333292, -0.431912, 0.532326, -1.495514, 1.671598, -0.144631, -1.749288, 0.285810, -2.707436, -0.562123, -1.155789, -0.193516, 0.802959, -0.755592, 0.692580, 0.741737, -0.962325, -0.377792, -0.003544, -0.650631, 1.497965, -1.000162, -0.946808, 0.807187, 1.434334, 1.113368, -1.449937, -0.075801, 1.140664, 0.585813, -0.129373, -0.154028, 1.085698, -0.670071, 0.955436, -0.675689, -1.143279, 0.778601, 0.381148, 0.607549, 1.028283, -0.480574, -0.703178, 0.459562, 0.140238, -2.022008, -0.361047, 0.736690, 0.060397, 1.325158, 2.016467, -1.506137, 0.500613, -0.099738, 0.384120, 0.561974, -0.171857, 0.535518, -0.503470, -0.861594, 0.837458, -2.551442, -0.649355, 0.145722, -1.688057, 0.472963, 0.609509, 0.781601, 0.204907, -0.153220, 0.192658, 0.890520, -1.119550, -0.102251, -2.426784, 0.402485, 0.412407, 0.782917, 1.484947, -0.037251, -0.182209, 0.818755, -0.752826, -1.361026, -0.224473, -0.786495, -0.337032, -0.024335, 1.476177, 1.558745, 0.730699, 0.898962, 0.208134, 0.625520, -0.626367, -0.705826, -0.328081, 0.605201, -0.160502, 0.539831, 1.972374, -0.034331, 2.050551, -2.461537, 1.340929, 0.987335, 0.077570, 0.964674, 0.060022, 0.401048, 0.562366, -0.164197, -0.853479, 0.060564, -1.169291, -1.393309, 0.036078, 0.291377, -1.114785, -1.375868, -0.173506, -1.047170, 0.719237, -0.574785, 0.465380, 1.485833, 0.444959, -0.111356, 2.094701, -0.796435, 0.949621, -0.387097, 0.615823, 0.223979, 1.412757, -1.753966, -0.854528, 0.195152, -0.072121, -0.408125, -0.639675, 1.640380, -0.264383, 0.942384, -1.105404, 0.636892, -2.126686, -0.398001, 1.145781, -0.566528, 0.019865, 1.177432, -0.404812, -0.078592, -0.842312, -0.977921, 1.036064, 0.211817, -1.278424, 0.867370, 1.773746, -0.138783, 0.775386, -0.226110, -2.122933, -1.414846, 0.860200, 0.192827, 0.615382, -1.662209, 0.683720, 1.351479, -0.501524, -0.602880, -0.562767, -1.421763, 0.613905, -0.160742, -0.451996, 1.373596, -1.448803, 0.791751, 0.954087, 1.505326, -0.489842, 0.278651, 0.133711, 1.198739, -0.596750, -1.191966, 0.322845, 0.209959, -0.263423, 1.192762, -0.247592, 0.313061, -0.111129, 0.190426, -0.274155, 1.239091, -0.795242, 0.489753, -0.657899, -0.637458, -0.420472, 0.124802, 0.491656, -0.369999, 0.491144, 1.184396, 0.728578, -0.249263, 0.131374, -1.403980, -0.823579, 1.057944, 0.864929, -1.006140, 0.400170, -0.952953, 0.455485, 0.456473, 0.596633, -0.935910, 1.635045, -1.180352, 0.011210, 0.462678, 0.305256, 1.843430, -1.836093, -0.064625, -0.701225, 1.593321, 0.342594, -0.499462, 0.457017, 0.626418, 1.378629, 1.039347, 0.106710, -0.054440, -1.148081, -1.424614, 0.907090, -0.699315, 0.585000, 0.201226, 0.962739, -0.439679}, + { 1.010416, -0.309043, 1.204260, -0.509250, -0.243453, -0.304250, 0.890589, -0.069237, -0.347434, -0.074926, -1.067423, 0.192790, 0.342207, 1.649058, -1.355424, -0.985628, 0.231938, 0.226418, 0.851564, 1.461408, -0.294262, 1.242378, 0.408768, 0.050244, 1.266880, 1.243934, 0.480212, -0.555638, 1.137895, 0.777227, -0.542142, -0.290013, 1.253020, -0.073015, -0.041742, -0.838141, -0.515762, 2.065937, -1.567724, 0.004215, 0.456660, -1.553581, -0.395120, 0.178893, -0.606070, 1.127735, -0.873622, -1.919711, 0.536308, -1.121117, -0.513417, -1.242096, 0.097661, -0.287035, -0.091048, 0.504286, 0.267257, 0.524297, -1.253473, 2.057532, -0.179194, -1.746351, 0.430002, -1.655340, -0.958785, -1.788257, -1.084069, 1.391134, -1.217832, -0.473744, 0.115082, -0.245269, 2.285121, -0.151225, -0.322988, 0.918793, -0.752371, 1.050677, -0.491103, -1.104802, -1.630058, -0.852692, 0.300839, 1.131455, 1.387815, -1.689473, -0.986665, 0.049414, -1.362607, -0.621823, -0.401429, 0.760414, -0.273486, -0.887414, -1.535449, 0.511934, -0.929861, 0.540893, -0.279906, 0.802243, 0.292376, -0.965930, 0.949230, -0.546341, -0.781126, -1.077312, -0.949399, 1.314570, 1.659268, -0.748283, 0.259723, -0.340441, 1.441039, -0.791230, -0.263753, 0.892493, -1.030681, 1.131898, 0.580527, 2.000997, 0.975002, 0.839327, -1.587929, 0.630512, 0.002391, -0.074393, 0.608571, -0.142330, 0.952709, -0.874363, 0.696845, -1.815330, 0.656817, -1.486761, -1.534300, -0.701957, 0.943310, 1.042855, 2.358797, 0.416700, -0.017034, 0.433069, -0.011004, -0.173236, -0.115596, 0.051128, 0.663712, -0.548174, 0.872363, 0.145439, 0.285777, 1.566287, -0.238297, -0.006885, -0.774382, 0.366424, -0.080734, -2.710001, 0.439383, -1.002456, -0.970384, -0.961890, 3.490964, 0.809727, 0.353984, 1.477589, -1.467686, 0.020331, 0.503404, 0.536891, 0.696897, -0.395359, 0.115709, 0.150898, -0.031312, 0.225935, 0.020565, -0.542556, -0.114886, 1.732591, 0.326515, 1.062555, -2.410397, -0.866161, 0.208505, 0.010224, -0.489790, -0.514825, 0.534689, -1.110567, -0.256419, -1.165121, -0.304879, -0.167284, 0.255534, -0.315703, 0.504279, -0.942896, 0.567892, -0.047614, 1.399009, -1.589057, -0.862849, 0.455270, 0.558508, -0.785139, -0.707202, -0.258170, 1.988394, 0.935582, -0.071434, -1.880812, -1.282884, 1.029053, -2.880106, 0.488955, 1.022291, 1.500410, 0.260480, 0.020532, -0.444004, -0.375660, -0.502270, 0.753304, -0.406186, -0.074191, -1.072201, -0.897618, 2.885920, 1.723169, -0.358783, 0.066630, -0.757659, -1.462883, -0.099514, -0.781888, -0.163763, -0.942756, 0.870715, 0.216274, 0.900797, 0.441015, 0.201028, 0.096693, -1.345433, 0.379103, 0.099227, -0.432822, 3.191398, 0.541971, 1.613225, -0.349525, -0.656382, -0.138081, 1.126396, -0.956076, 0.981902, -1.798026, -0.484808, -0.327029, 0.987955, -2.120864, 1.276514, 0.166492, 0.170288, 0.748443, 0.865300, -1.319565, -0.861134, -1.036145, -0.812188, 0.586185, -0.943297, 0.052543, 0.318141, -0.596764, -0.990043, 0.508671, 2.002311, -0.078523, 0.777366, 1.667504, 0.572665, -0.247519, -0.155144, 0.788749, -0.204256, 0.507869, -0.522305, -0.084260, -1.252190, -0.405599, -2.904880, 0.866473, 0.807213, -1.101755, 0.083207, 0.243147, -0.177316, 1.830771, -1.146695, -0.543339, -0.860428, 2.267442, -0.820892, -1.197848, 0.083810, -0.010950, -0.609573, -1.276636, 0.437712, 0.604366, 0.008873, -0.960727, -0.070219, -0.815834, -0.986378, 0.640244, -1.569330, 1.293904, 0.421855, 2.012494, 0.209163, -0.497484, 0.937448, 0.319405, -1.394444, -1.720089, -0.918215, -0.985651, 0.200978, 0.032662, 2.146677, 0.040047, -0.273101, 0.641028, -2.034189, 1.873661, 0.342198, 1.407326, 0.044908, 0.492146, 1.636077, -0.035151, -0.442977, -0.077730, 0.134376, 0.310273, -0.200068, 0.592712, 0.162397, 0.254787, -1.377385, 0.094739, 0.962069, -2.171408, 2.162844, 0.690210, 1.388234, 0.005580, 0.342907, -0.349609, 1.667774, -1.066359, -0.238641, -0.780886, -0.539105, -0.991823, 0.255495, 1.042573, -0.658925, -0.967421, -0.178829, -1.322513, 0.420673, -0.093762, -1.528491, 1.015406, 1.081974, -0.654101, 0.981567, -0.791851, 0.237913, -0.282481, -0.353879, 0.583476, -1.119684, 0.186188, -0.189118, 0.947353, 0.223708, -1.960695, 0.139627, 0.586785, 0.764663, 2.363238, 1.484291, 0.198049, -0.420543, -0.735407, -0.736592, 0.431002, -1.498423, 0.426982, -0.397435, -0.046128, 1.021015, -1.644024, -0.943688, 0.239698, 0.999267, 1.369292, -0.529599, -0.509496, -1.287670, 0.657737, 1.846742, 0.325806, -0.695332, 0.203885, -0.615502, -0.926867, -0.550214, -1.127624, -0.750949, 1.449595, -0.968377, -0.300917, -0.131462, -0.938599, -1.472992, 0.264710, 0.426847, -0.377507, 0.774005, -0.954702, 0.858345, -1.091208, 1.021650, -0.966927, -0.017607, -2.281462, 0.694478, -0.219036, 1.151983, -1.491888, 1.730335, -0.233411, -2.592901, 0.513393, 0.739484, 0.114455, -0.832838, 1.741856, -1.559417, -0.774695, 2.040797, -0.513673, 0.109287, -1.782382, -0.910661, -0.640022, -0.499033, -0.936387, -0.334772, 2.180211, 0.207142, -2.018575, -0.251810, 0.617202, 1.474643, -2.439727, -0.425456, 0.779463, 1.000111, -0.949827, -1.597802, -0.093590, -2.137631, -2.357876, 0.276592, -0.524417, 1.264088, -0.303140, -1.017319, 1.798368, 1.219235, -0.320192, 0.521272, -0.588582, 0.768489, -0.452129, -1.092483, -0.418890, -0.421347, 2.300022, 0.317742, 0.835321, 0.264652, 0.556346, -0.570816, -0.507506, 1.522434, 1.569268, -0.162226, -1.202582, -0.595115, -0.351121, 2.119761, 0.278577, -0.660400, 0.003418, 0.192745, 1.515761, 0.148002, 0.363835, -0.954189, -0.088879, -0.003313, 0.045289, 0.243789, -0.383563, 1.576286, -0.667901, 0.659780, -0.798888, 0.159219, 0.226763, 0.200147, -0.774538, 0.426037, 1.979842, -0.205188, -1.222286, -0.578782, 1.437691, -0.065428, -0.053226, -0.286024, 0.952052, 0.214028, -0.375307, 1.022640, -0.723889, -0.845210, -1.581881, 0.611915, -0.669099, -0.704683, -1.868947, 0.538739, -0.569290, -1.133737, 1.699531, -1.026460, 1.083185, -1.867240, -0.363077, 1.097485, -0.092088, 0.244652, 0.794236, 1.793932, -0.053678, -0.950334, -0.333902, 0.706719, -1.946591, -0.649317, -0.707172, -1.545130, 2.081714, -1.454231, -2.440954, -0.054485, 0.351992, 0.465739, -1.089909, 1.598644, 0.819923, -0.835225, -0.389187, -0.941232, 0.236264, 0.728013, 0.519689, 1.364658, 0.273281, -1.466224, 0.223009, 0.174374, -1.082851, 0.335955, 0.376991, 0.403246, 0.452208, -1.205466, -0.210634, 2.257762, 0.038373, -1.617309, 0.815829, 0.839546, -0.292490, -0.025208, -0.686145, 1.452747, 0.748356, -1.212110, -0.951310, 0.451716, 0.208185, 0.002344, -0.184100, 1.092598, 2.034609, 1.186808, 0.596469, 0.812490, 1.312180, 0.402173, -1.333587, 0.797609, 0.979228, 0.479650, -0.601317, -0.773677, 0.864561, -0.156502, 0.578619, 0.002637, 0.302770, 1.475414, 0.102147, 0.650406, -0.542641, -0.498662, -0.688441, 1.057207, 0.680153, -0.164897, -1.589375, -0.626532, -1.350541, 0.094207, 0.024144, 0.033231, -2.116893, -0.139615, 0.633968, -0.392008, -0.621979, -1.031888, -0.006171, 0.341959, -0.304727, -0.675608, 0.373853, -2.475079, -1.425560, 1.673913, 1.008796, 0.016358, -1.151680, 2.144601, 0.477443, -0.887749, 0.980220, 0.166570, 0.206412, -0.513800, 0.436815, 0.405896, -0.040816, 1.110727, 1.600247, 1.465791, -0.788530, 1.201879, -0.366949, 1.394733, 1.070748, 0.150472, 0.659714, -0.757924, -0.172787, -0.609503, 1.250226, 1.298262, 0.451066, -1.359456, -0.117556, -0.794953, 0.310740, -1.004179, -0.945177, 0.520098, -1.132981, -0.797592, -0.081408, 0.637807, -0.984319, 0.346406, -0.824686, -0.397321, 1.026535, -0.835315, 0.056043, -0.146760, 1.796133, -0.641363, -0.736158, 0.433930, 0.389400, 0.019762, -0.834503, -0.034398, 0.239323, 0.368093, 1.294903, 1.316761, -1.682339, -0.124992, 0.770280, -0.343303, 1.362679, 1.640580, 0.752038, -0.851014, -0.421579, 0.435795, -0.778787, 1.039243, 0.469155, 0.108753, 1.366291, 0.841241, 0.210745, 0.182440, 0.200677, 0.436389, -0.237686, 1.753419, 0.489163, 1.276351, 0.591933, 0.460519, -1.152828, -0.717730, 1.502052, -0.607565, 1.548253, -0.604468, -0.727911, 0.644048, -0.005045, 0.922403, 0.088790, -0.102192, 1.039948, -1.606114, -1.428640, -1.262117, 0.299861, -1.114343, -0.265729, 0.125110, 0.030758, -0.083524, 1.094934, -0.270417, 0.472369, -0.059708, 0.628177, -0.107136, -0.324765, -0.952523, -0.046930, 1.523735, 0.272287, 1.725026, -1.205695, 1.062197, -0.711978, -0.146690, -1.423114, -0.778422, -1.217096, 1.715939, 1.576324, 0.051942, 0.204556, -0.932816, 0.492694, 2.438417, 0.888981, -0.527529, -1.933757, 0.646135, -0.614193, -1.087856, -0.557064, 0.185985, 0.511061, -0.390883, -1.596592, 0.978180, -0.946558, 0.721499, -0.743225, 1.841631, -0.959513, -1.604350, -1.784055, 0.725962, 0.975490, 1.898428, -0.818010, -0.731995, 0.577568, 0.418148, -0.367793, -0.613654, -0.011497, -0.263782, 1.711323, -0.300193, 0.876097, -0.997962, 0.858011, -1.095400, 0.962259, 1.133087, -0.328039, -0.213810, 0.205992, -0.244006, 0.058983, 0.718961, 0.958461, -1.003019, -0.751842, -0.242856, -0.264801, 0.244261, -1.048357, 0.014919, 0.477452, 0.186028, -0.173006, 1.745380, 0.585445, -1.638158, 0.338894, -0.284006, -3.493119, 0.571100, -2.741557, 0.451146, -0.654038, 0.037411, -0.134293, -1.581769, -0.902480, 0.966946, -1.354360, 0.755069, -0.544637, 1.839966, -0.420417, -1.721993, -0.579371, 0.065471, 0.672800, -0.917232, -1.586558, 1.025455, 0.606238, -0.381239, -0.455500, -1.205888, 0.774092, -1.940934, -0.782034, -0.327826, 0.354076, -0.025557, 0.920551, -1.810738, -1.925011, -0.107626, 1.147085, -2.321892, -0.513339, 0.409429, 0.534713, -0.280586, -0.040125, -1.029857, -0.014253, 0.214418, -0.967326, -1.053586, 0.445565, 1.076704, -0.012910, 1.895640, 0.311183, 1.685511, 0.450028, 1.014505, -0.650555, -0.798246, -0.998815, 0.520359, -1.273114, 1.390960, -0.561613, -0.022688, -0.053627, 0.057131, 1.717007, -1.262933, 0.907290, 1.256241, -1.131723, 1.599953, -0.253555, -0.896650, -1.552177, -1.338289, -0.957251, -0.388387, -0.722031, 0.028977, 1.396168, 0.081871, 0.537319, 0.636286, 0.700353, -0.279753, -0.983189, 0.385888, 0.592412, 2.058786, -0.798062, 0.712257, -0.119313, 0.028472, -1.269644, 0.515530, -0.395772, 0.756266, 0.294836, 0.601913, 0.971878, 3.165786, 1.497066, 1.381218, 0.637049, -1.192745, 0.351044, 1.912264, 1.321968, 1.728423, -0.027998, -1.353320, -0.738639, 0.903697, -0.574246, 0.218770, -1.543242, -1.997329, -0.083894, -0.290574, 0.150222, -0.875749, 0.292958, 0.273309, 0.066613, -0.746650, -0.288609, 0.183678, 0.480538, -0.604838, -0.770552, -1.327995, 2.446121, 0.242837, 0.035695, 1.264200, 1.304335, -0.436617, -1.002368, -0.122616, -0.914776, 1.051786, 0.346259, 0.174848, -0.360196, 0.509331, -0.763519, 0.094443, 0.748851, -0.479733, 0.048598, -0.470991, -0.880891, 0.528085, -0.831811, -0.168548, -0.756303, 0.843103, 0.528023, -0.100302, -0.176102, -0.588082, -0.602964, -0.069620, -1.392507, 2.136610, -0.253163, 0.445596, -0.072787, 0.231489, 1.256343, 0.922688, 2.098324, 0.431670, -0.616264, 0.397559, 0.981272, -0.702541, 0.411561, -0.789860, -0.101933, 0.820929, -1.238067, -1.383445, -0.584946, 1.315012, -0.683212, -0.807401, 0.221157, 2.572555, -0.558486, -0.466617, 0.650243, 0.404331, -0.637288, -0.501941, -0.107137, -0.285530, 1.819867, -0.607296, 0.902662, -0.723361, -0.813568, 1.119328, 0.994681, 1.631943, -0.647467, 0.099469, 0.796308, -1.118404, 1.282666, -1.946691, -0.066002, -0.374988, 0.805715, 0.080832, -1.163378, 0.997132, 1.825287, 0.480180, 0.081590, 0.105172, -0.479911, 0.234662, 1.346949, -1.093379, 1.214430, -1.112203, 0.465987, 0.728168, -1.621110, 0.583074, -1.183695, 0.156311, 0.066771, 1.204989, 0.914211, 1.242568, -1.955169, -0.280042, 0.315662, 1.577902, -0.259655, -1.075322, 0.256076, 2.150965, -1.336083, 0.290708, 0.768369, -0.143799, -1.274200, 0.022063, -0.884434, -1.664843, 0.172083, 2.303315, 0.683597, 0.147329, -0.366698, -1.719324, 0.051357, -0.347740, 1.275837, -0.218232, 1.170323, -1.662511, -0.687318, 0.907392, 0.430589, -0.053352, 0.889480, -1.253622, 0.450284, 0.249036, 1.302276, 0.586593, 0.053065, 1.568096, 1.770037, 1.454865, -0.548367, -1.565844, 1.775465, 0.249632, -1.039956, 0.795342, -0.511277, 0.081967, 0.445284, 1.067112, 1.123052, 1.408181, -2.405706, 0.057144, -1.374030, 0.061260, 0.312595, 0.676322, 0.931774, -0.067539, -1.043824, 0.201093, 0.379765, -1.606246, -0.725767, 0.028409, 0.045244, -0.303882, -0.888580, 0.192998, 0.661582, 1.439774, 0.904899, -0.210575, 0.620243, -0.383762, 0.113186, -0.268947, 0.481107, -1.114118, 0.114565, -0.165559, -0.725235, 0.298934, 0.381351, 1.024736, -1.153659, 0.896177, -1.690750, 1.079421, 0.676033, -0.371577, 0.218614, 1.335192, -0.332709, -0.350457, 0.599502, 0.205720, 0.407148, -0.323578, 0.655907, 1.158795, -0.017071, 0.088476, -0.347644, 0.546670, 0.137762, -0.522284, 0.081650, 0.040479, 0.203716, 0.827086, 0.796083, 0.814420, 1.816166, 0.220131, 2.391267, 0.221054, 0.447738, 0.709133, -0.157327, 0.935208, 0.268604, 0.940662, 2.119045, 0.634606, -0.404540, -0.171930, 0.677152, -0.771961, -1.217854, 1.265833, -1.457031, 1.158979, 0.612943, 0.231427, 0.650473, -1.515571, 0.606932, -0.109494, 1.376330, 0.432135, 0.660849, 0.462841, -0.738863, -0.796471, -0.540915, -1.058321, -0.234455, -0.413326, -0.652293, -0.346293, -0.330266, 1.018993, 1.047712, -0.030798, 0.832906, -0.588213, -1.710313, 1.144080, 0.357935, 1.446213, -0.685933, -0.681213, 0.642061, 0.689908, 0.172521, -0.118253, 1.743970, -1.124316, 0.751217, -0.952258, 2.134021, 1.000273, 0.051863, -0.683537, -0.394543, 0.059142, 0.806354, 0.655425, 0.216655, 1.658706, 1.077564, 1.337428, 1.173931, -0.376355, -0.718538, -1.263968, 0.124676, 0.628591, 0.649896, 0.984522, -1.142577, -1.047129, -1.069562, 0.510604, 1.082319, -1.788132, 1.654094, -1.035538, -0.450806, -0.138076, 1.795855, 0.547535, -1.066553, 0.701321, 0.646998, -1.165189, 1.381142, 0.224558, -0.814839, -0.257461, -0.317717, 0.791956, -0.521247, 0.182536, 0.476384, 0.662352, 0.868469, 0.499103, -2.276606, -0.700339, -0.799431, 1.791469, -1.278518, -1.327601, -0.224936, -0.342351, 0.316049, 0.778886, 1.051512, -1.335621, -1.149686, 1.686925, -0.254368, 0.635095, -1.187148, -1.010278, -0.492819, -1.169926, 0.682603, 0.053245, -0.503127, -0.189006, -0.779797, 0.485712, -0.416719, -0.221808, -1.254290, -1.792164, 0.619780, 0.047934, 1.480217, 0.872310, 1.030734, 0.379362, -1.452760, -1.212062, -0.870231, -1.038103, 0.057124, 0.022883, -0.468857, 0.218550, 0.576703, -0.831564, -0.286510, 0.397877, -0.748201, 0.555598, -0.909750, -0.509538, -1.310334, -1.292420, -0.525875, -0.786236, -0.624085, -0.385486, -0.801028, -0.009571, -2.257022, -1.588910, -0.528587, -0.828641, 0.644814, -0.142657, 0.957285, -0.780736, 0.592382, 0.070177, 0.684669, -0.107393, 2.244922, 1.474520, -0.684866, 2.321015, -0.442424, -0.730348, -0.938591, -0.458850, -0.923669, -0.693816, -0.894782, 0.506693, 0.379831, 0.129668, -0.836614, -0.506009, 2.072190, -1.019043, 0.188217, 1.001233, -0.508240, -0.736047, -0.980374, 1.593231, -0.206044, -0.012771, -0.188056, -0.340899, 1.454946, 1.451661, -1.756262, 0.466374, 0.096658, -0.114193, -0.883717, 1.762851, 0.023497, -0.395106, -0.023293, -0.685980, 1.715271, -0.710072, 0.244675, -1.650159, 1.470560, 0.044509, -0.056639, 0.292866, 0.350013, 0.444982, 0.943564, 0.160168, -0.228492, -1.001426, -0.134507, -0.844040, -0.357401, -0.605854, 0.355575, 0.505713, -0.134223, 0.028477, -0.382544, -0.423431, -0.910372, -0.209491, 0.495415, -0.032237, 2.009180, 0.147206, 0.717580, 1.622344, 0.940787, -0.381611, -0.541310, 1.625242, -0.099227, -1.857770, -0.106963, -0.214531, 1.949480, -1.704526, -0.662712, 0.514992, 0.575963, 0.093116, 1.884132, -1.016716, 0.067718, 3.525071, 0.722898, -1.378108, 0.731708, -0.635515, 0.602832, 1.663256, 2.197930, 0.257048, 2.505107, 0.566762, 0.979314, 1.213718, -1.514245, 1.260772, -0.879602, -0.064179, -0.955029, 0.156186, 0.711772, 2.095929, 1.221367, 1.021019, -1.947429, 0.053563, -1.571172, -1.712534, -1.337238, 1.826482, 1.555171, -0.361187, -0.705218, 0.431315, 2.707319, 0.156639, -2.006769, 0.266519, 2.519930, 0.064009, -0.398410, 0.552100, 0.077366, -1.404637, -0.117074, -0.383022, 0.652414, 1.471821, -1.685982, -0.765709, -0.215678, 0.869112, 0.550228, -0.767380, -1.664271, -0.183127, -0.474050, -1.057527, -0.801472, 0.136443, 0.518924, 0.837671, -0.700037, 0.457764, -0.575128, -0.568784, 0.192139, 0.339454, -1.129597, -0.342714, 0.669315, -0.354307, -0.901839, -0.793999, -0.439380, -1.260784, -1.059923, 0.807124, -1.475509, -0.997639, 1.061441, 1.780895, -0.833064, 1.202443, 0.153890, 1.120824, -0.952271, -0.640651, 0.888717, -0.749905, 0.980772, -0.165455, 0.840177, 0.506043, -0.074439, -0.646241, -1.196535, -1.473457, -1.025843, 1.384802, -0.205239, 0.933269, 0.852717, -0.631608, -0.605848, 2.204123, 0.899414, -0.812970, -0.281677, 1.452321, -0.339074, 0.472734, -1.125468, 1.179123, 1.223917, -0.570790, 0.776367, -2.283300, 1.614032, -0.165724, 1.079280, -0.474152, -0.786561, 0.160983, -0.176196, -1.804664, 2.097442, -1.171600, 1.923921, 0.509796, -0.559737, 0.319586, 0.958536, -0.678699, -0.386368, 0.027626, 1.265167, -1.345930, 0.254827, -1.527831, 0.141637, 1.593094, 0.156084, -3.056865, -0.245565, -0.465173, 0.727681, 1.416753, -0.983813, 0.874930, 1.614263, -0.031769, 1.114022, -0.389009, -0.147253, 0.392513, 0.602372, 0.213457, 0.505253, -0.745142, -0.377469, 0.915819, -0.554277, -1.101924, -0.025209, -1.138321, -0.523159, 0.088973, 0.581748, 0.911635, 0.805386, 0.190995, -1.566399, -0.871323, -1.646309, -2.083198, -0.699157, -1.936154, -1.039101, 0.351493, 2.543581, 0.380145, 0.636793, -1.232949, 0.223535, -0.658429, 0.393315, 1.096874, 0.389380, -1.570974, 0.563085, 1.026896, 0.109118, 0.579006, -0.678324, -1.216875, 1.789480, -0.229035, -1.392942, -0.950321, -0.088313, 0.400355, 0.280385, 0.505757, 1.058196, -0.443377, 1.683682, 1.278953, -0.216402, 0.697448, -0.274509, 0.748989, 0.398882, 0.231902, -1.297925, -0.232622, 0.001290, 0.306747, -0.281876, -1.783599, 1.066509, 2.259376, -0.599245, 0.296969, -1.174173, -0.658929, 1.784487, -1.824762, -2.342735, 0.196985, -0.489315, 0.714056, 1.609772, 0.474250, 0.233969, 0.538214, 0.174779, -0.372400, -0.485277, 1.761914, -0.679665, -1.650604, 1.172769, -1.172119, -0.890124, 0.904746, 0.702208, 0.035457, -0.995319, -0.538248, 0.490332, -0.525949, 0.780202, 1.046797, -0.530066, -0.426790, -0.908589, 0.427402, -2.026588, -1.563893, -1.427157, -0.580784, 0.542865, -0.152298, -0.781005, -1.404719, 1.548622, 1.025263, -0.377098, -1.015003, -0.313740, -0.914655, 0.060810, -1.219147, -1.970471, -0.330691, -1.191620, -1.711774, -0.739467, 0.072992, -1.195651, -0.395240, -0.254014, 0.261251, -0.900271, 0.167436, 0.827294, 0.470323, 0.484870, 0.545093, 1.111824, -0.399583, -0.044468, 0.666031, -1.789258, 0.257656, -0.811399, -0.462023, -0.579402, 1.022489, -0.251694, -0.989028, 0.134830, -0.886865, -0.871208, 0.229175, -1.430037, -0.883812, -0.450496, -0.607847, 0.393400, 0.481358, 0.226084, 0.283049, 1.575148, 0.307526, -0.218971, 0.021006, 0.819853, -0.019379, -0.094840, 0.731058, 0.131002, -1.785889, -1.045723, -2.418310, -0.029961, 1.103737, 0.942718, -0.632671, 1.848520, 0.420746, -1.888876, 0.552942, 0.566347, -0.718096, 0.712276, -1.828897, -0.499452, 0.116303, 1.315645, 0.884146, -0.323418, 0.463636, -1.514444, 2.352086, -1.365315, 1.239967, 0.588737, 1.638455, 1.129810, -0.438809, -0.394888, 0.653613, -2.868885, -0.838789, -0.823126, -0.196717, 0.202075, 0.552049, 1.482252, 0.075047, -0.418021, -0.281258, -0.142049, -0.114351, 0.475819, 1.024567, -1.324666, 0.157907, 1.319639, 0.095391, 0.946895, 0.500446, 0.880789, -0.247725, -0.323405, 0.370860, -0.254428, -1.458892, -0.402498, -0.987412, -0.332088, -0.220281, 0.403325, 1.553383, -1.556870, 0.351992, 1.844337, 1.698081, 0.375805, -1.070631, 0.784901, 1.909826, 1.023797, -1.802303, -2.211247, -1.431070, 0.467244, 1.438755, -0.427119, 0.380609, -0.415295, 0.995989, -0.840233, 0.583054, -0.333990, 1.139243, -1.187958, 0.129554, -0.474073, -1.841934, 0.728499, -2.114883, 0.472777, -0.971807, 0.806532, 0.016578, -0.662566, 0.052372, -1.091360, 0.426197, -0.371913, -2.076143, -1.251437, 0.004846, -0.717205, -0.172040, -0.128197, -0.507114, -0.676108, -0.402204, 0.421484, -0.224705, -0.431267, 0.358302, 0.252345, 0.196528, -1.468621, -0.296069, -0.170987, -0.397447, -0.022102, 0.325280, -1.296807, 1.482439, -1.817771, 0.571995, 0.149197, 0.202421, 0.509201, -0.134834, -1.096534, 1.098068, -0.033935, -1.436609, -0.213835, -0.501434, -1.048211, 0.205513, 1.223317, 1.716906, -1.105310, 0.729498, -0.203941, 0.827914, -0.378645, 0.011730, -0.875761, 1.080804, -0.706079, -0.345244, -1.040379, -0.165118, 0.389640, 1.530612, -0.123796, -0.672278, -1.786623, -1.908797, -1.568014, -0.479456, 0.500370, -0.066324, -0.336116, -0.015939, -1.132344, -0.374028, -0.663659, -0.464168, -0.394359, -0.998954, -0.312372, -0.747966, -0.418536, 0.658967, 0.164697, 0.695017, -0.893809, -0.711494, 0.143180, -0.318031, -1.098444, -0.874813, -1.384449, 0.432204, 1.213473, 0.835967, -0.384356, -0.441638, 1.099433, 2.306718, -0.693518, -0.625641, 0.683555, -1.544752, -0.243667, 0.639205, 2.021758, -1.080002, -1.088442, -0.313440, -0.644608, -0.300581, -0.652714, -0.806812, -1.068784, 0.046435, -2.118585, -1.115179, 0.182071, -0.558630, -0.702132, -0.137491, -1.977500, -0.461848, 0.751477, 0.994610, -1.775799, 1.104487, -0.330515, -0.909022, 1.179385, 0.035512, 0.437703, 1.633006, 0.182793, -0.691155, -0.152167, 0.990307, -0.233173, -0.497868, 1.240438, 1.607911, -0.900660, -0.646264, -0.811764, -1.207551, 1.981435, -1.008740, 1.519909, -0.522556, 0.084641, -0.759907, -1.892481, 0.031610, 0.473053, -1.412629, 0.500290, 0.231998, -0.605847, 0.161867, 2.002990, 0.542543, -0.321592, 0.711354, 0.380658, -0.139414, 1.558352, -1.020395, 0.987752, 0.965388, -0.047861, 0.290719, 0.996668, -0.416594, 0.596539, 1.280106, -0.254135, 0.973754, -1.101897, 0.702517, 1.910838, -1.472545, -0.045363, 0.229224, 0.301390, 0.670903, -0.952184, -1.607860, 0.072578, -1.581107, 0.443338, -0.222851, 2.756876, -1.310119, -0.020809, 0.791069, 0.861844, 0.734797, -0.392561, 0.854192, -0.659934, -0.003381, 2.028399, -0.708423, 0.013903, 2.381469, 1.181861, 0.618737, -0.293065, -0.506139, -0.097306, 0.073013, 0.344808, 0.914580, 0.127076, 0.590228, -1.261667, -0.371993, 1.151965, 1.141296, 0.410996, 0.351491, 0.064431, -0.838813, 0.972374, 1.053544, -0.002942, 0.714476, -0.322011, 1.801567, 1.384604, -0.836596, -0.046222, 0.191870, 1.642402, -0.096622, 0.282654, 1.375070, -0.477836, -0.661633, -0.120481, -1.583234, -1.006868, 0.183058, 1.083475, 0.698355, 1.979010, 0.540444, 0.961085, 0.324660, 0.147543, 2.509147, 1.010739, -0.683794, 0.500731, -1.610149, -0.871616, 2.896942, 0.924603, 1.219212, -0.044985, 0.637004, -1.119053, -0.294312, -0.747165, 0.960623, 1.028422, 0.649897, -0.378474, -0.445009, 2.368332, 0.457036, -0.937630, -0.854273, 0.696293, 0.129350, -0.366837, -0.396054, 0.261006, -0.925259, -0.456275, -0.001663, -0.517747, 0.303678, 0.533820, 0.920562, -0.138332, 1.458676, 0.439266, -1.523234, 0.684625, 0.245576, 1.128591, -0.651955, -1.335039, -0.297670, -1.723721, -1.224969, 0.960434, 1.007089, -2.137786, -1.267744, -0.262784, 0.990362, -0.555036, -0.793861, 0.872762, -0.207125, -1.447256, 1.369942, -0.816625, 0.044462, -0.616905, 0.695319, 0.004452, 0.448508, -1.543660, -0.683089, -0.201652, 2.196388, 1.030919, -1.469105, 0.602515, 2.539225, -0.089296, -0.508063, -0.031555, 1.035785, 0.169931, -0.986887, -0.385489, -0.817233, -0.031580, -0.626486, 0.200654, -0.182102, -0.351826, -0.187926, -0.383140, -0.385970, -0.585135, -0.163542, 1.713342, -0.921847, 0.167827, -0.805821, 0.548464, 1.375206, 0.921165, -0.575711, -0.440952, -0.683945, 0.338662, 0.565328, -0.364061, -1.173212, -1.258109, -0.390788, -0.818243, -1.455010, -0.524701, 0.740669, -1.490082, -0.741762, -0.119025, -0.893809, -1.392061, 0.332242, 0.382190, 0.641684, 1.529958, -0.659197, 0.334477, 1.125260, 0.413570, -0.346402, -0.007930, -0.737436, -2.397323, -2.118458, -0.552373, -0.937271, -1.579488, 0.203219, -0.290763, 0.094903, 1.809901, 0.799022, -1.141322, 0.394433, -0.196285, -2.278059, 1.603311, 0.297939, -0.114695, 0.502298, 1.005838, 1.324990, 0.487013, 0.987532, 0.463202, -0.157926, 1.739709, 0.155327, 0.343587, 0.029521, 0.140078, 0.155230, -0.561813, 1.011946, 0.007880, -0.128152, -0.319394, -1.001673, 0.808477, 0.710711, 0.635156, -0.531456, -1.079610, 1.531201, -1.183632, 1.119258, 1.566969, 0.455719, -0.043641, 0.129101, 0.066554, -0.116065, 2.492334, 0.243415, 0.990687, 0.224493, -0.051058, 0.167348, 0.657801, 0.932677, 0.252847, 0.510985, -3.157595, 1.625633, -1.275724, 0.005677, 0.751649, -2.079681, -0.140341, -0.248205, -0.477035, 2.683731, 0.255939, -1.219899, 1.245760, 2.048002, 0.559533, -1.503335, 1.179665, 0.350367, -0.248408, 0.650341, 1.280945, -0.862085, -0.593117, 0.783220, 2.210081, -1.099606, 0.913108, -0.788223, -0.414219, -0.367210, 2.356318, -1.025373, 0.451879, 1.041746, 1.205814, 2.762030, 0.266384, -1.372844, 1.837037, 0.433872, -0.025650, 0.283814, -1.612595, -0.100760, 1.025159, 0.293806, 1.239109, 1.023700, -0.289077, 0.222629, 2.065078, -0.175527, -0.116824, -0.864729, 0.227295, -1.914245, 1.564581, 2.536207, 0.276864, -0.425854, 0.084087, 1.500714, 0.725067, -0.392997, 0.214902, 0.324331, 0.179123, 2.785388, 0.888026, -0.525624, 1.469832, -0.349266, -0.274373, -1.148010, 0.579981, -0.692619, -0.040625, -0.993343, -0.406150, 1.506176, -0.497475, 0.789098, -0.035790, 0.990151, -0.039079, -2.705557, -1.094666, -0.625143, 0.804866, 0.219521, 0.081206, 0.511616, 0.726750, 0.152445, 1.195558, 0.426885, -1.665915, 0.375987, -0.350676, -0.564595, 0.339522, 0.427084, 1.657469, 0.568936, 3.105310, 0.765127, 0.788472, 0.370094, 0.804437, 0.592568, 1.480782, -0.709450, 0.465543, -0.667039, -0.368412, 0.476881, 1.994036, -0.982412, -0.684944, 0.431290, -1.330208, -0.848735, 0.612638, -1.417809, -0.007506, 0.773699, 1.428895, 0.691483, 0.830463, -1.282452, -0.566430, 0.026518, 2.121457, 1.746775, 1.906468, 0.396993, 0.159653, -1.335027, 0.584783, -0.294817, -1.022833, -0.174066, -0.783860, 1.334226, -2.058365, 0.461409, 1.824046, -1.420278, 0.421575, 1.330390, 0.021946, 1.271346, 1.073289, -0.105101, -0.769342, 1.104624, -0.229109, -0.346910, -0.249460, -1.416018, 0.504529, 1.904952, 1.211589, -0.627354, -1.145866, -2.263822, 0.023647, 0.537481, 0.625102, 0.166266, -0.458749, 0.852503, -1.423139, 0.572783, -1.070083, -0.914595, -0.632868, -0.384522, 1.447742, 0.305189, 0.987366, -1.565554, -0.627675, -0.259939, 0.005226, -0.907356, 0.646443, 1.209102, -0.529064, -1.343631, -0.919577, 0.518216, -0.818729, -0.660674, -0.002334, 0.152368, 0.430964, -0.908601, -1.041438, -1.008916, 0.369467, -0.651854, -0.537265, -0.574869, -0.261072, -2.369316, 0.229630, -0.322115, 0.325665, 0.050208, -1.428625, -0.671835, 1.119180, -0.391970, -0.254049, -0.291748, -0.491692, -0.143579, 0.327894, -0.086655, 0.688373, -1.438234, 0.041709, 0.678302, 2.927514, -0.987963, -0.216131, -0.995992, -0.615756, 1.755934, -0.006421, 1.098392, 0.324436, 1.007182, 0.368347, -0.592884, 0.088959, -0.563451, 0.485165, 0.992092, 2.499524, -0.623244, -0.018389, -1.874109, -0.738346, 0.181017, 2.217338, -0.683366, 0.620883, 1.017413, 1.040897, -0.979345, 2.010843, 0.792239, -0.297833, 1.220630, -1.694964, -0.612575, 0.796962, 0.549168, 0.620890, -0.571573, -0.570756, -0.906425, -1.012280, -1.518525, 0.588146, -0.044602, -0.206276, -0.228919, 0.141782, -0.215266, 1.747399, -0.909909, 0.987336, 1.915157, -0.867561, 0.060568, 0.885174, 1.395962, 0.550065, 1.581690, -0.164328, -0.459357, 0.990657, 1.457520, 0.238631, 0.411438, 0.089105, 1.345971, -2.658618, 0.135135, 1.049907, -1.694229, 0.177401, -0.248113, -0.291922, -0.261910, 1.064905, 0.456701, -0.250302, 1.075610, 0.421758, 0.962856, -0.984678, -1.382609, 0.803392, -0.333360, -0.215848, 0.871534, 0.849590, -0.722227, 0.013032, 0.314628, 0.446570, -0.774570, -1.025838, -1.132255, -0.456291, -1.881487, 0.452940, 0.834990, 1.214516, 0.425363, 0.682928, 1.140494, 0.971782, 1.246880, 1.059481, 2.242805, -0.522573, -0.171542, 1.104010, -0.245134, -0.413827, 1.077239, 0.080880, 1.530349, -0.927708, 1.878834, -1.520821, -0.723451, 0.117842, 1.087706, -1.102160, -0.041194, 2.224988, -0.534364, -0.029992, 2.730592, 0.420793, -0.204795, -0.889640, 1.034558, -0.814875, -0.111423, -1.609026, 1.293927, -1.170157, -0.899608, -0.678674, 0.576887, 0.292821, -0.396618, 0.248343, 0.100238, -0.578918, -0.306456, -1.071213, -2.044917, 1.086225, -1.354019, -0.466433, 0.196035, -0.721771, 1.054357, -0.543856, -0.162560, 0.394111, 0.376948, -0.288080, -0.113722, -2.283901, -0.007702, 0.284499, -0.314419, -0.204461, -0.249654, 0.302865, -0.020056, -1.126304, -1.943631, 0.414700, 0.033138, 0.850032, -1.056158, -0.984817, 2.012539, -1.162767, 0.036114, -0.123424, -0.286858, -2.160591, -0.655729, 1.186937, 1.005903, -1.537253, 0.245097, -0.480056, 1.414874, -0.409645, 1.219627, -0.008330, 1.037111, -1.878316, 0.539800, -1.676014, 0.382768, 1.174856, -1.649877, 0.052651, -0.030654, -1.212355, 0.925200, 0.383778, 0.182420, -0.404893, 1.877626, 1.750972, -0.250133, -0.550591, 0.357721, 0.659463, -1.695663, -0.358620, -0.502560, 0.028817, -0.886939, 0.655762, 2.196385, -1.005713, 0.434417, -0.058091, -1.195793, -0.239609, -0.272780, 0.786638, -0.184375, 0.102892, -1.295292, -0.209359, -0.617078, 0.386488, -0.311778, 0.136317, -0.097341, 0.925262, 0.548278, 0.267836, -0.753031, 0.039780, 0.393223, 1.533396, -0.700570, -0.177551, -0.479102, 1.300496, 0.270123, -0.605122, 1.346603, 1.735063, 0.558938, 0.331713, -1.125230, -1.433617, -0.433647, -0.787385, 0.605659, 0.637913, 2.521290, 1.358994, -1.368538, 0.399753, 0.456260, -3.023672, 0.617869, -1.571912, -0.761572, 0.080310, 1.729928, 0.867082, 0.459157, -0.547153, -1.356668, -0.009079, 0.627500, 0.687771, -1.691219, 0.389028, -0.627658, 0.336266, -0.791690, 1.674377, -1.870130, 0.392219, 0.206221, -2.770966, 0.430380, -0.326570, -1.941549, -0.680329, 0.038956, -1.129796, 0.102337, -1.017789, -0.454172, 1.625192, 0.133464, -0.386068, -1.962193, -0.543869, 3.229228, 1.006537, 0.075903, -1.022170, -1.696462, 0.121248, -0.098383, 1.102084, -0.329555, 1.556723, 0.176763, 0.166727, 0.174999, -0.902615, -0.179858, 0.589487, -0.563771, -1.519436, 0.462207, 0.571710, 0.333565, 0.565644, 0.707029, 0.110245, -0.197771, -1.519380, -0.374365, -0.850962, -0.618874, -0.840363, -0.681834, 0.237797, 0.454331, 2.300648, 2.177878, -0.170240, -0.974967, 0.768538, 1.017157, 0.482455, 0.544419, -0.929654, 0.337360, 0.109592, 1.589580, 0.092464, -0.107643, -1.024489, -0.784592, -1.902071, 0.051787, 0.236157, -0.076378, -0.613753, -2.189075, -0.036911, -0.896163, 1.064895, -0.318347, -1.663570, -0.730439, 0.243153, 0.926481, -0.135915, 0.408778, 2.341446, 1.402325, 0.433459, -0.406470, -1.704017, -1.506342, 1.745454, -0.979293, -0.391387, 1.269153, -0.822313, -1.316674, 0.208462, -1.266113, -0.197000, -0.138077, 0.361245, -0.991852, 0.643091, 0.862622, 0.514414, -0.684923, 0.400014, 0.372363, 0.237329, 0.690028, 1.389023, -1.183007, -0.496359, -0.240756, 1.402574, 1.365471, -0.706577, -1.590050, -0.468826, -0.429029, -1.035070, 1.182868, -0.095812, 2.214039, -1.061791, 0.964292, -1.674021, -1.432026, 0.531377, 0.264864, 0.383192, 0.700450, 0.218761, 0.680145, 1.332157, 1.554132, -1.147946, -1.541285, -0.236223, -0.239067, -0.997370, 1.091664, -0.158923, -0.992974, 0.674797, 0.564022, 0.020085, -0.175621, -0.492040, 0.718887, 2.247444, -0.779793, -0.459320, -0.704878, -0.742369, 0.494698, -1.567200, 0.999634, -1.530236, 1.176230, 0.013777, 1.696121, 2.266544, 1.154337, -1.664384, -0.017695, -0.067958, -0.814701, -0.420535, 1.080683, -2.071410, 1.082735, 1.463830, -1.226632, 0.608441, 0.342547, -1.119508, 0.950543, 0.783880, 0.537984, -0.649137, -0.140676, -1.036698, -1.017165, -0.561600, 0.968917, -1.208144, 2.054611, 0.040074, -0.360119, -1.252352, -0.141828, 0.438467, -0.147142, -1.929617, -0.125146, 0.253362, 1.048105, -0.585618, -0.424878, 0.311184, -0.408742, -0.914687, -1.744090, 0.072903, 0.052567, 0.978871, -0.886133, -0.284516, 0.273249, 0.404913, 0.649349, -1.088217, -1.308082, -0.126900, 1.271768, -0.846192, -0.709852, -0.734048, -0.074744, -1.895451, 0.068283, 1.643967, -1.231534, 0.207526, 1.787302, 0.449402, 0.254738, -0.281204, 1.986037, -0.513545, -0.701200, 2.271109, -1.010963, -1.541573, 0.016110, 0.000358, -0.457372, -0.332379, 1.443973, 0.964581, 1.240194, -0.359747, 2.603577, 0.543551}, + { -0.107564, 0.567111, 1.507631, 0.089833, 0.253529, 0.260600, -0.521284, -0.767698, 0.098728, 0.351691, -0.664017, 0.848860, -0.426352, -0.692066, 0.764174, -0.947062, -1.025621, 0.769093, 0.717698, -1.419516, 0.048386, -0.134874, -1.191155, -2.653970, -2.372529, 0.100891, 0.345958, 1.523596, -0.069364, 1.092213, 0.019611, 1.726048, 0.129839, 0.974656, 0.473685, 2.006704, 0.409018, 0.168479, -2.377246, 0.313185, 0.855228, -0.949149, -1.138021, 0.295935, 0.098001, 1.314375, 0.240212, 0.028415, -0.801537, 1.333266, -2.177311, -1.797675, 0.924819, 0.163660, -0.303012, 1.213384, 0.380437, -0.174758, 0.659786, 0.332976, 0.893246, -0.662980, -0.607364, -0.475822, 0.030489, -0.747158, 0.207286, 0.582691, -0.168465, -2.063632, 1.027128, 0.943647, -0.484116, -1.570549, -0.112206, 0.125662, 0.459646, 1.095626, -0.264228, 0.060333, 1.012859, 0.470118, -0.987023, -0.571565, 0.890113, 0.603376, -1.715657, -0.161555, 1.803733, 0.021172, 1.830827, 0.921867, -0.585876, 0.399375, -1.234494, -0.286208, 0.951111, -1.905643, -0.130471, -0.314198, 1.224183, -0.253138, -1.066632, -0.887175, 1.481041, -1.717460, 1.216404, -1.558310, -1.849459, 0.465998, 1.161974, 1.063456, -0.083399, -1.128171, -0.157984, 0.824466, 0.561641, 0.854676, 0.750576, -0.573834, -0.580197, -0.280071, 0.467827, -0.068779, -0.339943, -1.105056, -0.363187, 0.811319, -0.541042, -0.858928, -0.108769, -0.344523, -0.231413, 1.041363, 0.154795, 1.079924, -1.340443, -1.719497, 1.144853, 0.335797, -0.661882, -1.547137, -0.599678, -0.631224, 0.721768, -0.569869, -0.220296, -0.594271, 0.196788, 0.126424, -0.132890, 0.917555, 2.919824, -0.326509, 0.299645, 1.932699, 1.470799, -1.076151, -0.940767, 0.820784, -0.586004, 0.280202, 1.339391, 0.372885, 0.609882, -0.670580, 1.229919, -0.449302, 0.092249, 0.964588, -2.366810, -0.835183, -0.804362, -0.350424, 1.166668, -0.383383, 0.771987, -0.865056, -1.375879, 1.720355, -0.815208, -0.419583, 0.307390, 1.847089, 0.734753, 1.275452, -0.548501, -0.506838, -0.407166, -0.242758, 1.570517, -0.452768, -0.279476, -0.978788, 0.915423, -0.253402, 0.134892, 0.072617, -0.466987, 1.168253, 0.004817, 0.320259, -1.123081, -1.341465, -0.082952, 1.576307, -0.039958, 0.634998, 0.728488, 2.110096, 0.649783, 0.124882, -1.121643, -1.055215, 0.132611, -2.026237, -1.707300, 0.450669, 0.671282, -0.009472, 1.744705, -2.087952, -1.059036, 1.644153, 1.170978, 0.698382, 1.691275, 0.573809, 0.937123, -0.639981, -1.225010, -0.440868, -2.317004, -0.982818, -0.599471, 0.102466, -2.558308, -0.383315, 0.946435, 0.363056, 1.189015, 0.170644, -1.278785, -0.147227, 0.279878, 0.111118, 0.179203, -0.217147, 0.786375, 0.394571, -0.239909, -1.123003, 0.160728, 1.052199, 0.591157, -0.346886, 1.073154, 0.519690, -1.553831, 0.806229, 0.810919, -0.576034, -0.924473, -0.619924, -0.940108, -0.871045, -1.286237, 2.153194, -0.429805, 0.647924, -1.389153, 0.587985, 0.627389, -0.032581, -0.265747, 0.059682, -0.585344, 0.083364, 0.407399, 0.056894, 0.150550, -0.291422, -0.618604, -0.964097, 0.557800, 1.495255, 0.460985, 1.105772, -0.033014, 0.753507, -0.185367, -1.941703, -0.267666, -0.127336, -1.303198, 1.617847, 1.252837, 0.347011, -1.762125, -0.381366, -1.640321, 0.932442, -0.394437, 0.408265, 0.825253, -0.759669, 1.162629, -1.089117, 0.915868, 0.208844, 0.853875, -0.210703, 2.087829, -0.485120, 0.252189, 0.843117, -0.575198, 1.186742, -0.542850, 1.957941, -0.855651, 0.581289, -0.881204, 1.414971, 1.828974, -1.590112, 1.022291, -0.240954, 0.502831, -0.645713, -0.573912, 0.582151, 0.651937, 0.284228, -1.090852, 0.536112, 0.972902, 0.578545, -0.512860, -1.033079, 1.009932, -1.782424, 1.585972, -0.469910, -0.913712, -0.215104, 0.886212, -0.695154, 1.336107, -0.642250, 0.037515, -1.028773, 0.205241, 0.111050, 0.432218, 0.701086, 1.300497, -1.327512, 1.298314, -0.162390, 0.713141, -0.601166, 0.713671, -2.778200, 0.892948, 0.042329, -2.027648, -0.021793, -0.129801, -0.956841, 0.103627, -0.383032, -1.159092, 0.745385, -0.333663, 0.127354, 0.669309, -0.793391, 0.626571, -1.018438, 0.855159, 1.050925, -0.589540, 0.436837, 0.985532, -0.460413, -1.918710, -0.426365, -1.700912, -0.104674, 0.894770, 0.494039, 1.551795, -1.791339, 1.047061, 0.194365, -3.164350, 0.204653, 0.314568, -0.288502, -2.033651, -0.634604, 0.175062, 2.002624, 0.246801, 0.432259, -0.576299, -0.004973, -0.327138, 0.349449, 2.386581, 1.160786, -0.077858, -0.201286, 1.613384, 1.830168, 1.045279, -1.240590, 0.303245, 0.035713, -0.471562, -0.839015, 1.630957, -0.776562, 1.041517, -0.529833, 0.145379, -0.229662, -1.399546, 0.933848, -0.824862, 0.697725, -0.544501, 2.436984, 1.006368, 0.333027, -0.220171, 0.155245, 0.369798, 0.139770, -1.760627, -2.052159, -1.162144, -1.575735, -0.920760, -0.094226, 0.069217, -0.944024, -0.137223, -0.524219, -1.851330, -0.130540, 0.526208, -0.111871, 0.531441, 1.984888, 1.149945, -0.066938, 0.161827, 0.106163, -0.126390, 3.024917, -1.838640, -1.081043, -0.866902, -0.918155, -0.900351, 0.401163, -0.226729, -0.432282, -1.826365, 0.840420, 0.180251, 0.752581, -0.661255, -0.168041, 2.080487, 0.668378, -0.233470, 0.733336, 1.919203, 0.476853, 0.236222, -1.707350, -0.796978, 0.019973, -1.041423, 1.018395, -0.107299, -1.444325, 0.791442, -0.788191, 0.591638, -0.991558, 0.534095, -0.712121, 2.341809, -0.177906, -0.709765, -0.842983, 0.257565, -1.427867, -1.205549, 0.264839, 0.184064, -0.589042, -0.490605, 0.446971, 1.769823, 0.287042, 1.181455, -1.265639, 0.562373, 1.423353, 0.079957, 1.588951, -0.917558, -0.411528, -1.494327, -1.771370, 0.336357, 0.342872, 0.658012, -0.950980, -0.574546, -0.243331, -0.314933, 0.051272, 0.535575, 0.919668, -0.007354, 0.445684, -0.082029, 0.304456, -0.872931, 0.432695, 0.516440, -0.133272, 0.808826, -2.086042, 0.343427, -1.374223, 0.604816, 0.692821, -0.839644, -0.911351, 1.429460, -1.804764, -0.096803, 2.065164, -0.218181, 0.308553, 0.382982, 0.944473, 0.561943, -2.089864, -0.673406, -2.759019, 0.200081, 0.575476, 1.579116, 0.899565, -0.221501, 1.351479, 0.096794, 1.243194, -1.474891, 0.654180, 0.064298, -0.835662, -0.194806, -0.367746, -0.228220, 1.231606, -0.894331, -0.101611, 0.381977, 1.192542, -1.467655, -0.058888, 2.153271, 0.061435, 1.226431, 1.515339, 0.182197, 1.519458, -0.231026, -0.487254, 0.392141, 1.589703, -0.408195, -0.553761, 1.964831, -0.229460, 0.351706, 0.408573, -0.471520, 0.622909, -0.324242, 1.426097, 0.890638, -1.741549, 0.461812, 0.018615, -0.801842, -0.541091, -0.210843, -2.291299, -0.362839, -2.076929, -1.018306, -1.199963, 1.818083, 1.648525, -0.801061, 0.080513, 0.202764, -0.759549, -1.717946, 0.218564, -1.081691, -0.699631, -0.868473, 0.317636, 0.485838, -2.115855, -0.294260, 0.287382, 2.124204, -0.388793, -1.695107, -0.902897, 0.441529, -0.012548, -1.506019, -1.252866, -0.026424, 1.226648, -0.293096, 0.203289, -0.756098, 1.047191, 0.982714, 0.628749, 1.116323, 1.349611, -0.335788, 1.347674, 0.190967, -0.498005, 1.629062, -0.843257, -0.030271, 0.930623, 1.425032, 0.590393, 1.395356, -0.624263, 1.033477, -0.696789, 0.001762, 1.519758, 0.818181, 1.074804, 0.189180, 1.667274, -0.381048, 0.830547, 0.124273, -1.612885, 0.781029, -0.359811, -1.223480, 1.187759, 0.418474, -0.101242, -0.056971, 0.259009, -1.039807, 0.546360, -0.297666, -0.688955, 0.811319, -1.250016, -1.931627, -0.583212, -1.157971, -1.324602, 0.095786, 0.027765, 1.445417, -1.332329, 1.547683, -0.597663, 0.537965, 1.423062, 0.221477, 0.521012, -0.350880, 0.366148, -0.292342, 0.021799, -0.692396, 0.077772, -1.338284, -0.487567, 1.081337, -0.159286, 0.626035, -0.192806, 0.380465, -0.125549, -0.263307, 1.228543, 0.479255, 0.558255, 0.992493, -2.064684, -0.590775, 0.475399, 0.808970, -1.079263, 0.819858, 0.001053, 1.713279, -0.441459, -0.550008, 0.275009, 0.578480, -1.909862, 0.903774, -0.179690, 0.626672, -0.320327, -0.186131, -0.082795, -3.109381, 0.654981, 0.037561, -0.171945, -0.445913, -0.689320, 0.086894, -1.278882, 0.562797, 1.472451, 1.642338, -1.250318, -1.137734, -0.629939, 0.907227, -0.342787, -0.411368, -0.663720, 1.296885, 1.027811, -1.927894, 0.926883, 1.424112, 0.534358, 0.905297, 1.511685, 0.377599, -0.886907, -0.421989, -0.911743, 1.000193, -1.038782, -0.006770, -1.659163, -0.079689, -1.208335, -0.281989, 1.138968, -0.556572, 0.859251, -0.668976, -1.658532, 1.155972, 2.354597, 0.069028, -1.308192, 0.488072, 0.638325, 0.404602, 1.578895, -0.511252, -0.894019, 0.399280, 0.023934, 0.688264, 0.784093, -0.604418, 1.478099, 1.185932, 0.590855, 2.482460, 1.078722, 0.335556, -2.164707, -0.718133, -0.083929, 1.264312, 0.596210, 0.122359, 0.636054, -1.683981, -0.817120, 1.510286, -1.320647, -0.585404, 0.191411, -0.480665, 1.367395, 0.993017, 2.074307, 0.303111, 0.863781, 0.615300, 0.725178, -1.041963, -0.202601, 0.464231, -0.251837, 0.775464, -0.758715, -1.613629, 0.055123, -1.644216, 1.362099, 0.138816, -0.167410, 0.884396, -1.099416, -0.768541, 0.153765, -0.562399, -0.048826, 0.409359, -0.247760, 0.423644, -0.332858, -1.149836, -1.530859, 0.051066, 1.164228, -0.218592, 0.469758, -0.270103, 0.874498, -0.141658, -0.525855, 0.275665, 1.935651, -0.822094, 1.356794, 0.989574, -1.130628, 0.636094, -0.732825, 1.926735, 1.339513, 0.771204, -1.057297, -0.352365, -0.682190, -1.583295, 0.197261, 0.538025, 1.598909, 0.622875, -1.351804, 0.440459, 0.247602, 1.633335, 0.801167, -0.144609, -0.209023, -0.936720, 2.060589, -1.345932, -1.122756, -2.108896, -0.500439, 0.763176, 0.891038, 0.015775, -0.752514, -0.661973, -0.289178, 1.630489, -0.500762, 0.070115, 1.506407, -0.981540, -1.588406, 0.992498, -2.481605, 0.057981, 0.388419, -0.039999, 1.383976, 2.661830, 0.397678, -0.835880, -0.329375, -2.280789, -1.895880, 1.424873, 1.359007, 0.729401, -0.157402, 1.628273, 1.844476, -0.010730, -0.327102, 0.373267, -0.731033, -0.963579, 0.455399, 0.535462, 0.052567, -0.728972, 1.218651, 0.752671, -0.066791, -1.105672, -0.111076, -0.393103, -1.266070, 1.068630, 1.265227, -0.932089, 0.778385, -3.302621, -0.895119, 0.075585, -0.777410, -0.462299, 1.105099, -1.384574, -0.807010, -0.015771, 0.558033, 1.144656, -0.240984, -0.698494, 0.202620, 1.114896, 1.018613, -0.681215, 1.013868, -0.826554, -0.258071, -3.049321, 0.626657, 0.076328, -1.252243, -0.464053, -0.906678, -0.443308, -0.020463, 0.496904, 0.682432, -0.359242, -2.157911, 0.756843, 1.138582, -1.222610, -0.652022, -2.332255, 0.423948, 0.909839, -0.617476, 0.824549, 0.800059, 1.237592, 0.525611, 0.534927, -0.345931, -1.043367, -1.053603, 1.098188, 0.478464, -0.663188, -0.859529, 0.472558, -0.219958, -0.274905, -0.673648, -0.853832, 0.934617, -0.702375, -3.233822, -0.773592, 3.805918, -1.140535, 0.623434, 0.510648, -0.418119, 0.079674, -0.326342, 0.643506, -0.702112, -0.284825, 1.878356, -0.861996, -1.820630, 0.778575, 0.511991, 1.203326, -0.040828, 1.744495, 1.192491, 0.555848, -0.052246, -0.753323, -0.325756, -1.308429, 0.974147, -0.644903, -0.706800, -0.297981, -2.069843, -0.345973, -1.214355, -0.917852, -2.155937, 0.927861, 0.474878, 0.247987, -0.908771, 0.272681, 2.615279, -0.549072, 0.185536, -0.757504, 0.735709, -0.585245, -0.550818, 0.039396, 0.347881, -0.619996, 1.185706, 0.347206, 0.840082, -0.105743, -0.377565, 0.394268, 0.358868, -0.836091, 0.372199, -0.650276, 1.643714, 0.290317, 0.772565, 0.015490, 1.953443, -0.106934, 0.892257, 0.238899, -2.405387, -0.411437, -0.516776, 0.184538, -0.350451, -0.690542, 0.689651, -1.176242, -0.246449, -0.662618, -0.896708, -1.036163, 0.707453, -0.273457, -1.063009, -1.437992, -0.075853, -0.725216, -0.501038, -1.620955, 0.090590, -0.174102, -0.151916, -1.001883, -0.397621, 0.804467, 0.419073, -0.502699, 0.553882, -0.306174, -0.886734, 1.160123, 0.867753, -0.166415, 0.373206, 0.300597, 0.217621, -0.280384, 1.059431, 0.470278, 0.547095, -0.780942, 0.499592, 0.094520, -0.787875, -2.602450, -2.181004, 0.132215, -1.299746, 0.811831, -0.223914, -0.837817, -0.061314, 0.827029, -0.245986, -0.572435, -0.448406, -1.094119, 0.361295, -0.373553, 0.563738, -0.177414, 0.410312, 0.276365, -0.827044, 0.531996, 0.892704, -1.571435, -0.814432, -0.274162, 0.723977, -0.249889, -0.755724, -0.350416, -1.397094, 0.738375, 1.219680, -0.802848, -0.299505, 0.917300, 0.556091, -0.637355, 0.773169, -0.612296, 0.138151, -1.082792, 0.562419, 1.761884, 0.030639, 1.638407, -1.397408, -1.364331, 1.176498, 0.634336, -0.194025, 0.940187, -0.252420, -1.828030, -0.179653, -0.738313, 0.742925, 0.606607, -1.758966, -1.040130, 0.998192, 0.519292, -0.055416, 3.207140, 1.069309, -1.528195, 2.234299, 0.387162, 0.357318, -0.204103, -0.241818, -0.917731, -0.523849, -0.415264, -0.645009, -0.323789, 0.799123, -0.016987, 0.573841, 1.856380, -0.559798, 0.991535, -1.142989, -0.235376, -1.837207, -0.855456, -0.922816, 0.450375, -1.353277, 0.898918, -0.288346, 0.467588, 0.654611, -1.782100, 1.124761, 0.776079, -0.988945, -1.778324, -2.117336, 0.358062, -0.130207, -0.811923, 0.502498, 0.626336, 1.208242, 0.984898, 0.228393, -1.049579, 0.161324, 0.362087, 1.311942, -0.166878, -0.477098, -0.929323, -0.430653, -0.214376, 1.124906, -0.449445, 1.772658, 1.141216, -1.001936, -0.190634, -1.281548, 1.241780, 1.622071, -0.460086, -0.745039, 1.202176, -0.785963, 0.804039, 0.413862, -0.122444, 0.421866, 0.265635, 1.752928, -0.993530, -0.711548, 0.320945, -0.055180, -0.394550, -0.750249, -1.149343, 0.365351, 0.434388, 0.088906, -0.694951, 0.981878, 0.793615, -0.931234, 0.535146, -1.026275, 1.010923, 0.021420, -0.213139, -0.236093, -1.368470, -0.655869, 0.172209, 0.032734, -0.488071, 0.808566, -0.433427, -0.060827, -1.965714, 0.070618, 0.600481, 0.173012, 0.674546, 0.029860, -0.655894, -0.124122, 0.246052, -0.389779, -0.081781, -0.185768, -0.024249, -1.716403, -0.512165, -0.351471, 0.224897, -1.183628, 0.109501, -0.793467, -0.597978, -0.577084, 1.959314, -1.446712, -0.529356, 1.420988, 1.529441, 0.407820, -0.656533, -0.905987, 0.515898, -0.468324, -0.923903, -0.535808, -0.987676, 0.045621, 0.407210, 1.016581, 0.930367, -0.324103, -1.133288, -0.708613, -1.169798, 1.318494, -0.356025, -0.023998, 1.558696, 0.816003, -0.279802, -0.920872, -0.363216, 1.344983, -0.107922, -1.623679, 1.404346, 1.777517, -0.750628, -0.713083, -1.147685, 0.966753, -0.041751, -1.502047, 0.883965, -0.730740, -1.077998, 0.158465, -0.116612, 1.224050, 1.309583, 0.826712, 0.983826, 1.270001, 0.310710, 1.510927, 2.382328, -0.000902, 0.041274, 2.735659, -0.066203, -0.814038, -0.802178, 0.439242, -1.216922, 0.851209, 1.000077, -0.305806, -0.492769, 2.255749, -0.141859, 0.750780, -2.359170, 0.642869, 0.313425, -0.891790, -0.098996, 1.101291, -0.759878, 1.075486, -0.490473, -0.820665, -0.995053, -0.922446, 1.747772, -0.613273, 0.893366, 0.289253, -0.066392, -0.803604, 1.744654, -2.255174, 0.148827, 2.021037, 1.022240, 1.007952, 0.801586, -0.909874, 2.294297, 0.049368, 1.925730, -0.270507, 0.600846, 1.432848, -0.619982, -0.614845, 1.599297, -0.280981, 0.517332, 0.630006, -1.062021, -0.014945, 0.402061, -0.395856, -0.639617, 0.584767, 1.319841, 0.395448, -0.017575, -0.371125, -0.246029, 1.850864, -1.960001, 1.392138, 0.984169, -0.210737, -0.247878, 0.033473, -1.111829, -0.577707, -0.733114, 0.822389, -1.150163, 0.447327, -0.259996, 1.046438, -1.770565, 0.319892, -0.715800, 0.205306, 1.272071, 0.987176, 0.030316, -0.253312, -0.099272, -0.232358, -1.708404, -1.120504, 0.919319, 0.401601, 0.312614, 1.335582, 0.076183, 0.203855, -1.584023, -1.035830, 1.139204, 0.765218, 0.031543, -0.533452, 0.585556, 1.230109, 1.014089, 0.670554, 1.268316, -0.319874, -0.314153, -0.206030, 0.628749, -0.057120, -0.509198, 0.796401, 0.167990, 2.272425, -0.147684, 0.542837, 0.977357, 1.924800, 0.250516, 0.221005, -0.333065, -0.155052, -1.294611, 0.648327, 0.862543, 0.154885, -0.007419, -0.854444, 0.569946, -1.360445, 0.704909, -1.429923, 0.173357, 0.346192, -1.177145, -0.059209, 0.185367, -1.702045, -1.289479, 0.733104, 0.157064, -1.199674, 0.149991, -0.529433, -0.443646, -2.808384, 0.724962, -0.646890, -0.966995, 0.270013, 0.587279, -1.050124, 0.435028, -0.661419, 1.777073, 0.476565, -1.148175, -0.178329, 1.180552, -1.422006, -1.155634, 1.346725, 0.669341, -0.307069, -1.453850, -0.239823, 0.141012, 0.730409, 1.174524, 1.934903, 1.567414, 0.318436, 0.146101, 1.869871, -0.578380, 0.940971, 0.310458, 0.783878, -0.492146, -0.870231, 0.108325, -1.982088, 1.504868, -0.462011, 0.118853, -0.293633, 0.084887, 0.663833, 0.403392, 0.854684, -0.227954, 0.028410, 1.840226, 0.607773, -1.173648, -0.064040, -0.583499, 1.618328, 0.071072, -1.626230, -0.011821, -0.383874, -0.418588, -0.096689, 2.323421, 0.225080, 0.324341, -1.629578, 0.026556, -0.804914, -1.068436, -2.736597, 0.712015, 0.589092, 0.942102, 0.258438, 0.702188, -0.268564, -1.871912, 1.404576, 0.044787, -1.779821, 0.519663, -1.350010, 1.448736, -0.390655, 0.231175, 0.265064, -0.525599, 0.032990, 1.381009, 0.095031, -0.718115, 0.833363, -1.937235, -1.118470, 0.046609, -1.124443, -1.317206, -1.583491, 0.849224, -0.108660, -1.031552, 0.811566, -0.445433, 0.289940, -1.404132, -0.755131, -0.414514, -1.618126, 0.512221, -1.156794, -0.288971, 0.302929, -0.085393, 0.499911, 0.159987, 0.489384, -0.693839, -0.283784, 0.681522, -1.361003, 0.543945, 0.937520, 0.399524, -0.371339, -0.902652, 0.272578, -0.055631, -0.183270, 1.156942, 0.281662, 0.115839, -0.645140, 0.139170, 0.776727, 1.004202, -0.106977, 1.143089, 0.347144, 1.683088, 1.550169, -0.113883, -0.992220, -0.455807, -0.993603, -0.020708, -1.346534, -0.490946, 0.756130, -0.582306, -1.540389, -0.005888, -0.335026, 0.146218, -0.519971, -0.486755, -1.122320, -0.067730, 0.338864, -0.534193, -0.662877, -0.420708, 0.175634, 0.591055, -1.054769, -0.658740, 1.814753, -1.817313, -1.267231, -1.002523, -0.677531, -1.301317, -1.152116, -1.000671, 0.005572, -0.459156, 0.974113, -1.993809, -0.263506, 0.540411, -1.940319, -0.013229, -0.488975, -0.244513, -0.768648, -0.281655, 0.783187, 0.388086, -0.777248, -0.550460, -0.187943, 0.175566, -0.401522, -0.081917, -0.173469, 1.641702, 0.871165, -0.787113, -1.262874, -0.068490, -0.137980, -0.341973, -1.322604, 1.330316, 1.009725, -1.023710, 0.814989, -0.591393, -2.354148, -1.441840, 1.014541, -0.502014, 0.278830, -1.249648, -0.112477, -0.977346, -2.307748, 0.997052, 0.102829, 1.077729, 0.479538, -0.123308, 0.718891, 1.445119, 0.697008, 0.597984, -0.478706, -1.774553, -1.248201, 0.065591, 0.073310, 0.521728, -0.200182, -0.194445, -0.238299, -1.840125, -1.631188, 1.591232, 1.397854, 1.476983, -0.730668, 2.352803, 0.663133, 0.552681, -1.896815, -0.740749, 0.405772, -0.436305, -1.061285, 1.535298, -0.512250, 0.260357, -0.141387, 0.507852, 1.447780, -0.668943, 0.332079, -1.080486, 0.149391, -0.617735, -0.289660, -0.914916, -1.644613, 1.489698, -1.538270, 1.315164, -0.183876, -0.251486, -1.866595, 0.094795, 1.408429, 0.547489, -2.115978, 0.847040, -0.715976, 0.806206, -0.088310, -0.136833, -0.200722, 0.195276, 0.525913, 0.767167, -0.411600, -1.105277, -1.436909, 0.916397, 0.477115, 1.871990, -0.154352, -0.587433, 0.985598, 0.382853, -0.172665, -0.835553, -0.665614, 0.427174, -0.149810, -0.903475, 1.466565, 0.068006, 1.747021, 0.223858, 1.070161, 0.645742, -2.280433, -0.380478, -0.498307, 0.822889, 1.275234, -0.613344, -0.350186, 0.102877, 0.292518, -1.003881, -0.056888, 0.241053, -0.917144, 0.053113, 1.310974, -0.637512, 1.016618, 0.279675, -1.197254, 0.085086, -0.447436, 0.295744, 2.210416, -0.770011, 1.792212, 2.311360, 1.167731, 1.330203, -0.808207, -1.101343, 1.024797, 1.042803, 0.820114, 0.806664, -1.016447, 1.443351, 1.825768, -0.566427, 0.330723, -0.910790, 0.488024, 0.739712, 0.592021, -0.820084, -0.006164, -0.090102, 1.853698, -0.214966, -0.847784, -0.890158, -0.022381, 1.309506, -0.855636, -0.016341, -0.846609, 0.985509, 0.178801, -0.249532, -1.187278, 0.325259, 0.197964, -1.524272, -0.483460, 1.806156, 0.361941, -0.805512, -1.131736, 0.797872, -1.014111, -0.991461, -0.489029, -1.294251, -0.991199, 0.165233, 1.658220, -0.618318, 0.503729, 0.192132, 0.404518, 0.220815, 0.780041, 1.987371, 0.036581, 0.815013, -0.603414, -1.480355, -0.400756, 0.509935, 1.701668, 0.313328, 0.620078, -1.182466, -0.193842, 0.037920, -0.691340, -0.766950, 0.206816, 0.479469, -2.096840, 0.779050, 0.201829, 0.076898, -0.175906, -0.514583, 0.421943, 1.716999, -0.526207, 1.259227, 1.305424, 0.190156, 1.163256, 0.824654, -1.628281, 0.008107, 0.845876, -1.004947, -1.126282, 0.953920, 0.020620, 0.656683, 0.675162, 0.978281, 0.216812, 1.191213, -2.605651, 0.003369, 0.523004, 0.788878, -1.412201, -1.478939, 0.348571, -1.280308, -0.303001, 0.318950, -0.760154, -1.029954, -0.550735, -0.162843, 0.870245, 0.100532, -0.281056, -0.418812, 0.537552, -0.319880, 0.570967, 0.280753, 1.926064, -0.463513, 2.491880, -0.401976, 0.702363, 0.908380, 1.704498, 0.334124, 0.217783, -0.983164, -0.791485, -0.629922, 0.404028, 0.140059, 0.606994, -0.602667, 0.024615, 0.597163, -0.825542, 0.869445, 0.304274, 1.629945, -1.224490, -0.199955, 0.018748, 1.268401, 0.453636, 1.873566, 1.606205, 0.607918, -1.008349, -0.275071, 0.657667, -0.744228, -1.012348, 2.101786, -0.589109, -0.627253, -0.363777, 0.154706, -2.271258, -0.815534, -0.024603, 0.222578, 0.316409, 0.453494, 0.426001, 0.124252, -0.528458, 1.266649, 1.068653, -0.912916, 0.954285, -0.388931, 0.745443, -2.132591, -0.673448, 0.204056, -1.050105, 1.521965, 0.119597, -1.368317, -1.629230, 1.425418, -0.471962, -1.147773, -1.014542, -1.009912, -0.267185, -0.152594, -2.620589, -0.243907, 1.383747, -0.919638, 1.386119, -0.216461, -0.259555, -0.804526, -1.275133, -0.407622, 0.490195, 0.791647, 1.053413, -1.761286, -0.557885, 1.158737, -1.086519, 0.495737, 0.190078, -0.135025, -1.536238, -1.349438, -0.043111, 0.292565, -0.651148, 1.102894, 0.316687, -0.433201, -0.415638, -0.720638, 2.060442, -0.619170, -1.507656, 0.165067, 0.248506, -0.909373, -1.325403, 1.221633, 0.763337, 0.729908, -0.321685, 1.281433, -0.317217, 0.485598, 0.531396, 0.118371, 0.719347, 1.861064, 1.039500, 0.747790, 0.870797, -0.024604, -2.014132, -0.301681, -0.487303, -0.187357, 0.056168, -0.253799, -1.602449, -0.508815, 1.208079, 1.025732, -0.251645, 0.407351, 1.091536, 0.129968, -0.356357, -1.132946, 0.703549, -0.782255, 0.154718, 0.612335, -0.639361, -0.777031, -0.362677, 0.443419, -0.012522, -2.208537, 0.561620, -0.860781, -0.754275, 1.596550, 0.296669, -1.122033, -0.166325, -0.634739, 0.107694, 0.196174, 2.631574, 0.538163, -0.944013, -1.327978, 1.082618, 2.067123, 0.031306, -1.473334, 0.879581, 0.507148, 2.107082, 1.834868, -0.162772, 1.459002, -0.060417, 1.324060, 0.207282, -0.125801, -0.615198, -0.876727, -2.088589, -0.686336, -0.280585, 0.867516, 0.114097, -0.991352, 1.396835, 1.419892, 0.376463, -1.218500, 2.636140, 1.290523, -2.019356, 0.013485, 1.521289, -0.239322, -1.229477, 0.755279, 0.346502, -1.725243, -0.373774, -0.185386, -1.256591, -0.716859, 1.530833, -0.547870, -0.792679, 1.284569, -0.849781, 2.087775, 0.928601, 1.579072, -1.907241, 1.532603, 0.106727, -1.284357, 0.633744, -0.214437, -0.598696, 0.892944, -0.423007, 1.162389, -0.411785, 0.298251, -0.567272, 0.386300, -1.698400, 1.617787, -1.874614, 0.489987, 1.426808, 0.229579, 2.157564, 0.823678, -0.072082, 0.197448, 2.305283, -0.765087, -1.126161, -0.772202, -0.845635, -0.331419, -0.273276, 0.060459, -0.637235, -0.349673, -0.321448, -0.121112, 0.179084, -0.284457, 1.289270, -0.691972, 1.599460, 0.040287, 0.273503, -0.349427, 1.213746, 0.479931, -0.758232, 1.002408, 0.075547, 1.540622, -0.718118, 0.894200, 0.814410, -0.525514, -0.717878, -1.667925, -1.142663, 0.942690, -0.455577, 0.952267, -1.452215, -1.505591, 1.257140, -0.838728, -0.453117, 0.169693, -1.768633, -0.609335, 0.562158, 1.431190, 0.760952, -0.652992, -2.118331, -0.538564, -1.052189, 0.591901, -1.179337, -2.085239, 0.926827, -1.104892, 0.485520, 0.020562, 1.924255, 0.208637, 0.545395, -0.409915, 0.161968, 0.849357, -0.031988, 0.839613, -0.528238, 0.014944, 0.567819, 0.111748, 0.336812, -0.206228, -0.385773, -1.012973, 0.622410, -0.757589, 1.367026, 0.479709, 0.038670, 0.796081, 2.785017, 0.580535, -0.559753, 0.204537, -1.229785, -1.241883, 0.645685, -0.734728, -0.755703, -0.199049, -2.094187, -1.236351, -0.274289, -0.884606, 0.009774, -0.285483, -0.597581, -1.133268, -1.102430, 0.447045, -0.102915, -1.481799, -1.694370, -1.303291, 1.184157, 1.720630, -1.393385, 0.115161, 0.757673, 1.210708, 1.439353, -0.430967, -0.031543, 1.027018, -0.781191, 1.169615, -1.828181, -1.755098, -1.107190, -1.422109, -1.124997, -1.175631, -0.395011, 0.363351, 0.198148, -0.587296, 0.138670, -1.113483, 0.658757, 0.712638, 0.605732, -0.147572, -0.833572, -1.130678, -0.967752, -0.487512, -0.651392, 0.232531, -0.115976, 0.981971, 1.799198, -0.098867, 0.399773, -1.520884, -1.010132, -1.559080, 0.926588, 0.066911, -1.498431, 0.547994, -0.435648, -1.230667, 2.092605, -0.024036, 0.978000, -0.563770, -0.322303, -0.973571, 0.880973, -0.667366, 0.455789, -0.070619, -0.035130, 0.045618, -0.609802, 0.440498, 2.592303, -0.142025, 1.797056, 1.004021, -2.086756, -0.798908, 0.237025, -1.451838, 0.859163, -1.212549, -0.665609, 0.614962, -1.223996, -1.765464, 0.548116, 0.776485, 0.910847, 0.128251, 0.740647, 1.275919, 0.284085, 0.219603, 0.467999, -1.296522, -0.001087, -0.676528, -1.242467, -0.357404, 1.091398, -1.368510, 1.185922, 1.005026, 0.899833, 0.067455, 1.431986, -0.775499, 0.306814, -0.903485, 0.752950, 0.241810, -0.645906, 0.257904, -0.299932, 0.412832, 1.258728, 1.948945, -0.268560, -0.874764, -0.850795, 0.292095, -0.176906, -0.093073, -1.566247, -2.351848, -0.905502, 1.026085, -0.718833, -0.018663, -0.056301, -1.636670, 0.057381, -0.383973, -0.915739, 0.628095, 0.677738, -0.085996, 0.036286, -0.014617, -1.613212, -0.919135, -0.390502, -0.446022, 0.389920, -0.317840, 1.401184, 0.087298, 0.658124, -0.957850, -1.913147, -0.918599, -0.222273, 0.749725, -1.026116, 0.259407, -0.185653, 0.185036, 0.534258, -1.097639, 0.522325, -1.253131, -0.079999, -2.094013, 1.752958, -1.195079, 0.901390, -1.416690, -0.775104, 0.816481, -1.889798, 2.032199, -1.526717, -0.558021, -0.815927, -2.371063, 0.941630, 0.026241, -0.269571, -0.469445, -0.874656, -1.177608, 0.193295, 0.509403, -0.862372, -0.375989, -0.723301, 0.578435, -1.737902, 1.210322, 0.404326, -0.293490, 0.720651, 1.890200, 0.662484, -0.238169, 0.253854, 0.173990, 0.084363, 0.192557, -0.046405, 0.318103, 0.329699, 0.473887, 0.951854, -1.245950, 1.937155, 0.196658, -0.250798, 0.798175, 0.538733, -1.044797, 0.022274, 2.198480, -0.856320, -0.629280, 1.559641, -1.680933, 1.271451, 0.873796, -0.532085, -0.654765, -2.168516, 0.884313, 0.090337, 0.849958, 1.207093, 0.152257, 0.009740, -0.208236, -2.609198, 2.061538, 1.325143, 1.805175, 0.827573, 0.056863, -0.731216, -0.986358, -0.080354, 1.158901, -1.233143, 1.264878, -1.029511, -0.896161, 0.033642, -0.947122, -0.807268, -0.623787, 1.400838, 0.003921, 0.757574, 1.690927, 0.209808, -0.084645, -2.099220, -2.020415, -0.649347, 0.309620, 0.405811, 0.124559, 1.428699, -1.652138, -0.998053, -0.557753, -1.223353, -0.742789, 2.533580, -2.142363, -0.884314, 0.049913, -1.120534, -0.763611, 0.970614, -2.240328, 0.627627, -0.287621, 0.080011, -0.857303, -0.587362, 1.769972, 0.250884, -0.685031, -0.510253, -1.251109, 0.094093, 0.917295, 0.314743, -0.421084, 0.195974, -1.709798, -0.740959, -0.853345, -1.482002, 1.480777, 0.355833, 0.005076, -0.250395, -2.166262, -0.142214, -0.565482, 1.136327, -0.197039, -2.373229, -0.127625, 1.020798, -0.657364, 1.115904, -2.570700, 1.026366, 1.278767, -0.418978, -0.057048, 0.869859, -0.663286, 0.898531, -0.223066, 1.486685, 0.489365, -1.584574, -0.816816, -0.486191, 1.111680, 0.457316, -1.765196, -1.634078, -0.189959, 1.978119, 0.900515, 2.517114, -0.742463, -1.256565, -0.730360, -1.878909, -0.354420, 0.929377, -0.257609, 0.049031, -0.345426, 0.737248, 0.547592, 0.002927, -0.942150, 0.464087, 2.779146, 1.691355, -0.546461, 0.290752, -0.486222, -0.896839, 1.518797, 1.297184, -0.700622, 1.197714, 0.482543, -0.263684, -0.414116, -2.521549, 0.189030, 0.017566, 0.839219, -0.725358, -1.657703, 0.317549, 0.773451, -0.007418, 1.096505, 0.451132, 1.548481, -1.370949, -0.857440, -0.184710, 1.764203, -0.072071, 1.997427, -0.739326, 1.610971, -1.316181, 0.771234, 0.505205, 1.352388, 0.591027, -0.132216, -0.416094, 1.213004, 0.279762, -1.326275, -0.175405, -1.908029, 0.942670, -0.115008, -0.288672, -0.038149, 1.308604, -0.574296, 0.571406, -0.519974, -0.890585, -0.983541, 0.889347, -0.380232, 2.277617, -0.382938, 1.389186, 0.282886, 0.264755, 1.318817, 0.282370, -0.568136, -1.377339, -0.061422, 0.846803, 0.439605, -0.385605, -0.344363, 1.221155, 0.465028, -0.856782, 0.149611, 0.288386, 0.571397, -0.327895, 0.118745, -1.735471, 0.014765, -0.975883, 0.440234, 0.552339, 0.288764, 0.339089, -1.134826, 0.313895, 0.011407, 0.691833, 0.300344, 1.498545, -0.902266, 0.425485, 1.074022, 0.657239, -0.650429, 1.174462, 0.512151, -0.758514, -0.068893, -0.071205, -0.581869, 0.512698, -0.549456, 0.386034, 0.288174, -0.728801, 2.676464, -1.091006, 1.608164, -0.083419, 0.175058, -0.699406, -0.190567, 0.532987, 1.108742, -0.447822, -0.069891, -1.970983, 1.218043, -0.420008, 0.537785, -1.973844, -1.483689, 1.538642, -1.347552, 0.060081, -0.978870, 0.392604, 1.134322, -0.495217, 0.425980, 0.585597, 0.553828, -2.100334, -1.212780, 1.972681, 1.163086, 0.395078, 0.387860, 0.728238, 0.666341, 0.003480, -0.236001, -1.265750, -1.010418, -0.665997, -1.037360, 1.126242, 0.562326, -0.210542, -1.540785, 0.466182, -1.093710, -0.962843, 1.150839, 0.585028, 1.624890, -1.762433, 0.304113, 0.208924, -0.183446, 0.812668, -1.955194, 1.004379, -1.536352, -0.150135, 0.795853, -1.301719, -0.460793, 0.729530, 0.270970, -0.068024, -0.246545, -0.813112, 0.728013, 0.100125, 0.748525, 0.064918, -0.792546, 0.107315, -0.020264, 0.299685, -1.940080, -0.788187, -0.105019, 0.382124, -0.657053, 0.161678, 1.105560, -0.600307, -0.717401, 0.997373, 0.038190, 0.109503, -1.089637, 0.246236, -0.301493, -3.264527, 1.636711, -0.861160, -0.267561, 1.092990, -0.229627, -0.491280, -1.598319, 0.759445, 0.117207, 0.129530, -0.469744, -1.350616, -1.926867, -0.949650, 0.070641, 0.298443, 0.433077, -0.947646, -0.527008, 0.089824, 1.270172, 0.964362, -0.144135, -0.450047, -0.988775, 1.314416, 0.154784, 1.387101, 1.687699, 3.596269, 1.537083, -0.098029, -0.323389, -1.188715, -1.517913, -0.223319, -0.118122, -0.926387, 0.487475, 2.383470, -0.283019, -0.400344, -0.112688, -1.349477, -1.780964, 1.040826, 2.748192, 0.124874, 0.537890, -0.705610, 0.843095, 0.698634, 0.989788, -0.223561, -0.173949, 0.280473, -0.630229, 0.511718, -0.097223, -1.114586, 1.921694, -0.635164, 0.362479, -1.253753, 0.201949, -0.283309, -0.409199, 0.176409, -0.690641, -0.699860, 1.546965, -1.123447, -1.823177, -1.202144, -0.861633, 0.007818, -1.298542, -0.263731, -1.198128, -1.429087, 0.513127, 0.146896, -2.327325, 1.296689, -2.426564, -0.172250, 0.801628, -1.292855, -0.336581, -0.260524, 0.296005, -0.626776, 1.630137, -0.957424, 1.177334, 0.178275, -2.176285, 0.056313, -1.155005, -0.578800, 0.028200, 1.247363, -0.827695, 0.146231, -0.344793, -0.500478, -0.467940, 0.625746, -0.361763, -1.017070, -0.251144, 0.628470, -2.471546, 0.116703, -0.757431, 1.852242, -0.969632, -0.472526, -0.303243, 1.104279, 1.167389, 0.076012, -0.439053, -1.523277, -0.484451, 0.531800, -0.428981, -0.258849, -2.205991, 0.385688, 0.183251, 0.433802, -1.451632, -1.384850, 0.335081, 0.383205, 1.699160, -0.673376, 1.032370, 1.741185, -0.243792, 0.370460, -1.771130, 1.974270, 1.189003, -1.131988, 0.180605, 0.113789, 0.067022, -1.013460, 0.421401, -0.590726, 0.798718, -0.741132, -0.376481, 0.535617, 1.174118, -0.061616, -0.202595, -0.018271, -0.802477, 2.087790, -1.295037, 0.955921, 0.534792, 0.122142, -0.108656, 1.292931, 0.547753, -0.152389, 0.359308, -0.973856, -0.430421, 1.296211, -0.088916, -0.989754, 0.936799, -0.909156, -0.536777, 0.405138, -1.382602, -1.654568, 0.131954, 1.449889, 0.328693, -0.726607, -0.735402, 1.051588, -0.889100, -0.434141, 0.912239, -0.920116, -1.615823, 0.231242, 0.177643, 1.130218, 0.832464, 2.574803, -0.901728, -0.790664, 0.874165, 0.358299, 1.401991, -0.180211, -2.717999, -0.762370, 0.612589, -0.134878, -0.124942, -1.148724, 1.201162, 0.734334, 1.366560, 0.520797, -2.299033, -0.253356, -0.053072, -2.320358, -0.469110, 0.972471, -1.129791, 0.363801, 1.071229, -1.279661, -1.014263, -0.787167, -1.446681, -0.134930, 0.817895, -0.102662, -1.779658, 0.200723, -0.232941, -1.385099, -0.525363, -0.770101, -1.761763, 1.078271, 0.196937, 0.020912, 0.639272, -0.108485, -0.512531, 0.041192, 1.270116, -0.420989, 0.024729, -0.754243, 1.449031, 0.320928, 0.095170, 0.456532, 0.888621, 0.521723, 0.002547, 0.720049, 1.672881, 0.016955, 0.614825, 0.966077, -2.309270, 0.701263, 0.191821, -0.158496}, + { 0.237429, 0.036207, 0.170178, 0.797165, 2.247735, 0.762628, 1.695215, 0.179764, 0.107884, 1.401716, 0.118783, 0.396777, -0.573262, -0.053026, 0.451858, -1.387177, -0.496034, 1.285475, -0.314170, 0.871655, 1.018006, 0.623334, -1.377680, 0.000609, 1.036218, -1.547680, -1.150199, -0.685959, 1.469401, 1.189373, 1.277094, -1.193407, 0.467198, -0.204093, 0.463451, 0.132450, -0.695997, -0.207751, -1.612716, 0.887903, 0.862200, -0.113317, -0.442108, -0.162169, -1.686292, -0.287985, -0.757401, 0.170118, -0.336267, -2.417512, -0.944149, 0.162170, 0.702621, -0.229793, 0.069156, 1.221997, -0.537081, -1.066808, -1.161291, 1.000325, -0.837620, -0.352367, 0.746348, 1.859223, -0.919172, 0.532138, 0.313898, 0.496248, -2.153785, 0.941953, -0.411732, -1.184928, -2.066584, 0.005830, -0.928376, 1.677056, -0.908078, 1.511182, 0.483482, 0.025510, -0.344490, -0.629932, 0.769671, 0.959558, 0.064419, -0.148827, -0.406658, -0.538059, -0.199050, 0.310685, 0.565743, -0.699625, 0.845187, 0.833213, -0.395563, -0.868878, -0.552028, 1.531941, -0.042967, 0.085281, 0.003465, -0.488826, -1.533944, 1.700975, -1.172057, -0.746709, -0.530326, 0.237733, -0.876734, -0.727487, -0.295899, -0.747297, -0.318546, 1.199982, -0.746348, 1.215892, 1.596415, 0.170175, 2.494813, 0.196207, 0.107324, 0.334852, -1.195463, -0.377760, -1.049419, -0.460512, -1.640958, -1.110334, -0.021205, -0.986685, -0.649331, 0.877051, 3.305753, -1.066090, 0.060100, 0.661818, 0.455688, 0.822043, 0.344724, -0.688586, 1.371350, -0.610717, 1.293444, -0.093719, -0.339504, 0.813812, 0.419576, -0.083704, -1.111274, 0.654443, 1.078722, 0.289181, -0.063308, -0.839566, 0.262663, -0.800015, 0.387299, -0.238128, -1.158125, -0.209619, -1.242725, -1.584083, 0.828589, 0.457091, -0.274895, -0.694111, 0.709431, 0.516085, 0.069079, -0.733614, -0.806151, -0.538284, -0.647072, -0.946808, 0.469631, -1.347350, -1.366493, -0.775190, 0.468495, 0.362607, -0.699727, -1.212706, 2.003768, 0.349725, -0.101829, 1.910978, -0.069325, 1.440664, -0.484399, 1.292219, 0.268669, -1.466407, 1.025713, 0.255034, -0.760812, 1.515317, -0.844193, 0.268279, -0.946102, 0.890672, 0.132923, -0.882272, 0.594691, 1.587638, 0.224771, 1.978239, 1.762840, 2.388043, 0.037380, 0.441240, 1.250304, 0.025152, 0.249358, 0.392456, 1.730677, -0.231981, 2.482982, 1.126362, 0.310809, 0.077117, -0.162147, 0.560386, 0.433253, 1.631264, 0.292132, 0.332519, -0.146775, 0.009235, 0.915202, -1.747407, -0.596440, 2.005790, -0.167761, -1.835304, -0.667613, -2.620935, -0.735262, -1.138687, 1.260839, 0.435639, 1.814098, -0.125535, -1.737392, -0.475644, -2.366360, 1.191784, -0.543974, 2.615327, -0.187524, -1.548169, -1.495711, -0.770668, -0.981798, -0.133163, 1.969709, 1.043554, -0.282137, -0.852043, 0.731650, -0.312119, 1.198903, 0.490420, 2.429288, -1.280920, -0.186278, -0.077968, -0.179502, 0.454609, -0.438815, -0.940049, 0.957835, 1.021041, 0.392023, -0.948017, -0.139217, -1.801187, -0.111287, -0.271425, -0.950677, -0.842602, 0.158475, -0.685660, 1.709432, -0.045783, 0.158530, -0.654599, -0.459567, -0.563228, -1.539074, -0.226351, -0.707942, 0.094478, -1.725252, -0.194163, -0.155360, 0.889516, 0.404917, -0.006352, -0.944886, -1.360645, 1.137401, 0.563502, 0.219997, 0.679181, 0.567056, 0.088674, -0.530732, -0.973153, -0.492149, -0.262830, -0.206852, -1.567610, -0.835913, 1.662297, 0.572741, -1.514802, -2.418319, 0.460558, 1.418065, -0.751994, -0.672925, -1.516377, 0.429053, 0.124248, 0.322388, -0.041107, -0.392260, -0.300986, 0.217923, -0.204659, 1.201205, -0.327780, -1.205651, -0.013395, -0.279521, -0.210300, -0.270474, -0.436408, 1.194474, 0.202888, -0.188345, -0.857626, -0.311250, -0.677455, -0.696846, 0.070788, -1.601218, -1.154248, 1.084514, 0.779079, -0.415054, 0.682295, 0.397982, 0.863780, 0.814659, 0.229477, 2.375683, -0.881831, 1.539157, 0.967817, 0.308703, 0.166941, -0.148126, 0.613478, 1.598588, -0.974850, -1.086411, -0.449022, -0.324196, 1.507111, -1.523172, 0.456678, -1.201547, -1.270609, -1.600395, -0.505143, -0.008295, 0.753743, 0.115072, -1.422017, -1.318800, -0.475003, 0.097035, 0.914327, 0.108784, -0.023104, 0.871674, -1.256824, 0.668713, 1.114089, -1.144836, -0.832361, 0.366648, -1.133086, -1.580149, 1.110052, -0.124718, -0.302036, -0.558129, -0.793288, -0.841145, -0.319164, 0.768013, -0.017239, 1.400503, 0.782184, -0.962497, 0.542011, 0.281466, -0.868157, 1.584023, 0.915578, -0.346062, 0.981487, 0.379233, -0.383938, 0.490509, -0.694487, 0.058922, -1.025502, 0.775176, -1.021044, 0.168719, 0.607974, 0.807320, -0.077393, -0.320238, -0.759927, 0.208228, 1.956432, 0.569721, -0.698428, -1.608649, 1.114261, -0.556347, 0.444212, -1.463019, -1.000961, -0.699855, -0.233743, 1.090061, 1.100374, 1.242559, -1.052207, -1.446385, 0.260593, -0.406810, -0.281416, 0.611809, 1.596244, -1.619151, 0.037717, 0.020077, 1.672577, -0.099615, -0.831728, 0.721507, -0.502619, 0.335931, -1.270412, -0.325466, -0.304966, 0.213241, -0.819071, 1.301881, 0.332778, 0.550717, -0.189521, 0.475336, -1.257535, 0.407658, -0.195769, -2.353637, 0.810361, -0.514266, 0.816347, -0.849322, -0.457634, 0.046967, 1.375837, 0.112218, -0.730826, 1.883348, 0.843562, 2.132451, 1.130500, -0.527635, 0.550611, -0.700010, -0.453894, 0.118528, 0.082422, -0.245736, -0.521939, 0.212282, -0.604056, 0.828924, -1.621631, -1.148466, 2.715471, -0.194293, -1.052866, -0.210427, -0.379142, -0.058798, 0.470061, -0.418351, 1.427138, -0.112402, 1.433455, 2.364151, 1.770907, 1.097285, -1.091067, 1.459116, 1.116784, -0.845082, 0.461609, 0.569674, -0.052283, 0.719844, -2.384084, -0.720572, -1.180478, -0.768671, -1.935248, -0.276154, 1.632026, -1.773042, 0.072972, 0.521104, -0.101603, -0.177485, 1.417623, -1.772698, -0.206859, 0.754268, 1.347237, -1.057786, 0.097802, -0.940982, 0.417529, 0.185986, -0.735676, 0.439542, 1.687156, -0.580199, -0.275856, -0.479627, -0.921422, 0.050109, -0.666796, -0.307468, 0.770171, 1.294457, -1.801306, -0.906793, -0.621919, 1.657506, -0.395447, -0.945877, 0.675160, 1.712584, -1.018744, 0.632536, 1.555457, -1.164229, 0.640897, 0.353852, -1.558861, 0.243933, 0.344210, -1.483537, -1.768085, 0.560242, -0.595480, 1.867102, -1.814743, -0.450151, 1.007109, -0.404371, 0.563027, 0.192455, 1.219025, -0.009092, -0.118139, 1.092750, 1.526717, -0.905331, -0.200892, 2.456664, 0.043931, -0.518768, -0.393819, 1.034930, 0.571556, -0.518858, -0.011335, -0.466693, -0.093804, 1.541148, -0.168327, -0.939273, 0.996658, -0.897461, -0.233417, 0.315373, 0.548961, 1.447793, -1.337659, 0.580016, 2.421964, 0.066469, -1.215874, -0.164449, 1.319452, -0.769011, -0.008867, 1.005000, 2.099801, -0.853823, 1.152142, 0.105454, -0.913867, -0.620991, -2.427041, 1.400466, 2.125224, -0.055889, -1.191258, 0.551979, 0.713841, 0.387868, -1.125966, 1.540008, -0.648885, -0.142143, 1.913658, -0.149879, 1.536719, 0.580911, 0.604792, -0.762086, 0.131252, -0.391432, 0.664207, -0.201966, -1.347529, -1.251703, 0.031784, 0.760357, 1.108825, 0.694945, 0.390445, 0.545526, 0.227678, 1.612996, 0.829655, 0.709803, 1.729710, -0.032897, 1.054966, 0.210327, -1.764524, 0.405456, 0.328926, 0.285000, -0.642883, 2.509196, 0.481533, 1.337929, -1.308089, -0.840773, -0.290386, 0.204563, -1.502129, -0.739531, 0.304670, 1.033222, 1.042105, 1.039835, 0.139154, -1.392847, 0.998138, 0.856762, 0.247243, 0.289361, -2.526719, 0.124243, -0.660092, 0.520902, 1.110468, 0.126548, -0.620655, -1.516286, -0.126231, -1.185972, -0.854406, -1.301233, -0.016201, -1.167295, -2.183323, -0.297657, -1.153764, -0.804865, 0.413040, -0.048695, 1.138412, -0.351207, -0.038916, 0.473554, 0.947540, 0.486278, -0.754696, 0.387188, -1.302586, 0.226947, -0.042358, 1.148210, -0.038086, 0.177076, -0.914857, 0.308711, 0.950330, 0.594185, -1.560007, -0.794939, 1.250015, -0.967713, -0.337593, -0.739347, 1.546408, -0.541268, 0.168746, 1.156784, 0.555119, -0.926817, -0.507955, 0.927509, 0.613468, 0.952773, 1.526311, 0.520637, -0.398400, 1.130089, -1.276649, -1.238777, 0.380867, -0.822129, -0.442929, -0.398811, -2.096432, -1.404884, 0.540664, 1.687043, -0.583804, 0.153261, 0.029303, 0.112254, -0.566705, 0.101301, 0.629721, -0.395532, -0.133956, -1.767737, -1.777634, -1.615054, -0.480876, -0.422454, 0.370107, -1.262268, -1.115635, 0.048942, 0.953216, 0.990189, 0.131743, 0.650479, 0.784656, 0.275637, -0.495687, -0.283969, 1.291458, -0.937392, -0.002043, -1.165209, -1.257326, -0.635020, -1.815606, 0.190856, 0.057961, 1.036053, -1.100283, -1.248644, 2.220673, -0.047841, -0.455522, -1.833264, 0.767754, -0.115221, 2.451406, -0.033865, 1.504966, -0.494619, 0.332978, -1.581571, -1.797052, -1.852742, -1.164988, 0.560709, -1.276341, -0.601197, -0.433118, 1.388932, -0.636623, -2.550299, 0.669065, -0.570578, 1.597686, 1.185549, 0.013596, -0.266203, 0.109882, -0.007819, 1.901724, -0.023999, -0.387580, -1.274216, -0.926645, 0.047066, -0.540213, -0.720577, -0.990622, 0.595696, -0.188052, -1.242935, -0.416630, -0.458695, 1.605381, -0.473463, -0.136126, 1.461162, 0.549109, -0.425634, 0.706629, -0.635252, -0.886422, -0.032880, -0.923406, 0.850824, 1.186680, -0.162992, -1.549456, -0.637766, 1.434281, -0.314265, 0.520807, -0.004400, 0.082634, 0.543019, 1.346470, 0.306678, 1.324519, -0.370980, 1.506980, 0.082665, 0.622092, -0.061754, -1.130520, 1.091406, -0.188994, -0.330673, 0.307618, 0.261024, -0.229834, -0.039021, -0.485873, -1.027845, 0.854139, 0.079914, 0.744075, 0.076829, -2.005447, 1.247298, -0.583585, -0.653857, -0.656817, -0.571299, 1.430982, -0.837672, 0.395887, 1.332065, 0.656966, -0.807966, -0.593014, -0.321133, 0.376936, -0.117866, 0.374299, 1.385166, -1.588126, -0.167318, 1.034354, 0.422459, 0.342215, -0.349315, 0.536595, -1.440883, -0.125770, -0.130746, 0.250557, -0.166976, -0.677153, 0.039940, 1.954916, 1.422694, 1.188944, 1.494219, -0.785555, -0.799106, 0.401545, 0.581000, 0.764819, 0.563240, 0.774591, 1.020441, 0.367803, 0.740933, -0.282611, -0.298468, 0.480698, -2.031199, 1.139147, -0.093320, -0.383101, -0.986790, 0.979822, 0.538403, 1.454899, -1.173149, -0.016912, -0.149399, -0.233323, 1.552843, 1.125745, -0.462105, 0.592730, 0.318040, -0.693666, 1.134550, -0.981709, -0.946578, -0.839783, 1.446025, 1.140728, -0.181096, 0.357964, -0.973983, -0.548765, 0.152554, 1.791113, -0.962089, -1.400092, 0.108051, -0.744789, 1.104461, 0.066465, 0.670984, 0.228946, -0.228081, -0.514658, 0.211695, 1.694436, 1.147824, -2.012793, 0.479878, 0.786010, 0.501543, -0.990653, -1.509478, -0.272430, 0.732214, -0.768868, 0.618061, 1.018416, -0.879489, 1.950328, 0.201477, 0.178338, -1.094310, 0.157199, 0.823573, -0.490699, -0.254490, -0.856756, 0.560719, 2.064696, 1.129321, -2.003862, 0.014570, 1.126847, 1.718217, -0.862145, -0.618164, -0.576339, 0.544482, -1.794832, 0.357945, 1.795571, 0.180150, 2.701961, -0.171882, -0.230233, -0.804759, 0.595939, 1.705228, 0.019359, 0.969452, 0.612489, 0.184784, -0.020158, -2.015258, -1.382209, 0.673566, 0.113735, -0.074582, 0.599515, 0.740758, 1.146993, 1.093152, 0.994351, -2.106071, 1.405222, 0.711180, 0.355850, -1.545787, 0.410849, 0.790711, -0.317974, 0.286885, 0.111164, -0.542961, 0.262706, 0.584002, 0.744072, -0.045745, 0.657269, 0.958030, 0.169097, -1.113148, -1.135377, -1.031732, -0.660938, 1.234074, 1.741170, -2.216555, -0.234096, 1.711781, 0.094237, 1.021347, -1.044457, -0.145120, -0.285383, 0.624376, 0.828133, -2.221461, -0.045349, -1.097088, 0.494627, 1.280747, -1.358941, -1.751984, 1.328903, 0.407856, -0.027654, 1.743824, 0.747551, -0.808955, -1.298367, 0.233747, -0.599042, 0.043964, -0.251869, 0.019598, 1.234699, -0.934498, 0.067141, -1.665326, -0.998603, -0.207111, -0.539838, 0.972577, -0.919306, -0.577319, 0.456733, 1.192723, 1.104430, -1.442934, -0.324942, 0.628582, 1.103101, 2.212177, -0.045895, 1.267199, -0.943038, -1.882331, 1.080317, 1.326610, 0.151784, -0.525481, -0.498116, -0.739762, -1.409595, -0.094053, 0.836724, -0.649309, 0.921898, -0.395112, 0.429497, -0.641880, -0.103575, 0.427862, 0.139703, 0.057224, -0.388280, -0.337625, -1.041605, 0.221582, -0.263535, 2.037030, -0.742563, -2.270913, 2.346075, 0.118577, -1.171063, -0.731750, -1.952111, -0.176273, -0.110220, -0.129157, 1.014085, 1.182874, 1.334751, 1.400536, -1.424198, -2.235116, -1.851122, -1.061405, -0.093812, 1.465288, -0.624171, -1.084116, 0.743641, -0.713719, -0.265065, -0.594104, 1.594437, -1.304890, 0.623692, 0.005911, 1.280861, -0.491436, 0.229141, -0.236123, 1.226382, -0.699465, 1.871035, 0.329421, 0.622686, -0.975632, -0.046113, 1.780525, 0.363723, -2.167054, 1.092384, 0.243597, 0.739488, 0.224270, 1.581776, 1.369229, -0.161342, -0.214571, -1.165359, 0.651694, 1.656967, 0.482906, -1.295965, -2.367965, -1.871920, -2.222027, 0.065696, -0.491896, 1.061709, -0.237257, 1.363829, -0.126657, 0.196929, -0.168743, -0.659666, -0.426595, 0.176556, 0.556157, 0.479762, 0.209638, 0.207038, -0.176007, -0.641103, 0.479830, -1.136748, -0.385672, -0.699587, -0.067503, 0.279339, 1.171830, -0.679675, -0.495360, 1.401152, -0.445348, 1.277776, 1.179693, 0.804427, -0.081584, -0.586594, -0.196189, 0.066647, -0.515654, 0.136597, -0.035835, -0.318656, 0.535623, 0.144150, -1.276669, -0.040948, 0.817314, -2.504807, -1.826441, -1.645646, 0.139678, -0.098703, 0.972423, 0.188005, -0.419835, -0.754058, 0.276226, 1.371681, -0.221573, -0.301881, 0.545020, -0.515075, -0.355258, -1.689081, 0.684416, -1.362229, -1.246212, -0.168877, 0.843768, -0.138134, 1.609788, 0.144742, -2.287593, 0.433120, -1.286314, 0.686438, 0.120627, -0.133054, 2.563104, -1.487040, 0.290942, -0.195065, 1.644616, 0.467028, -0.287061, -0.939900, 0.980684, 2.155346, 1.820843, -1.023333, 0.730884, 0.448628, -0.458294, 0.621563, 0.899107, -0.225227, 1.782818, -1.636713, -0.288283, 0.526413, 1.281066, 1.713014, -1.040797, 1.320967, 1.652301, 0.533781, -0.439906, 0.832975, 0.243931, 1.351717, 1.460085, -0.058944, 1.360205, -0.023769, 1.027919, 0.087172, 0.297364, 1.531555, 1.381519, -1.559484, 0.421254, -2.637443, 0.962586, 0.005174, -1.349319, -0.130419, 1.550003, -1.458881, -2.538156, 2.014421, 0.006288, -0.000392, 1.645375, 0.914276, 0.950871, 1.842769, -0.500503, 0.988505, 1.283428, 1.037391, -0.388893, -1.431552, 0.776845, -0.584454, -1.040875, -1.613064, 0.128908, 0.102206, 1.516153, -0.160012, 0.849983, 0.717188, 0.766496, 1.962352, 0.798451, -1.234346, -1.840303, 0.922705, 0.644601, -0.027783, 0.256206, -0.749286, -2.566145, 0.478332, 2.329304, -0.387126, 0.452113, 0.334681, -0.161096, -0.474441, 0.097963, -0.089322, 1.795847, -0.042073, -0.664181, 1.218360, -0.340899, 0.127724, -0.310126, -0.467156, -0.134546, 0.631132, -0.115809, 0.842562, -0.827829, 0.410518, -2.267316, -0.677930, -1.355690, 0.736319, -0.956608, 0.433630, 0.861399, -0.080333, -0.592559, -1.044974, 1.532568, 0.549087, 1.318178, -0.619991, 0.058392, -0.105493, -0.640378, -0.797693, 0.228172, 0.273271, -0.386240, -0.488218, -0.812232, -1.479618, 0.084559, -1.608190, -0.392993, -0.135440, 1.051904, -0.758152, 0.782038, -0.013720, 0.308988, 0.206684, -1.368502, 0.320797, -0.886831, -0.751650, 2.008631, -0.046126, 1.144558, 0.284991, -0.262887, 0.304015, 0.723817, -0.777725, 1.323353, -0.091943, 1.153696, 1.369051, -0.246026, 0.125179, -2.001673, -0.967672, -1.063490, -1.689584, 0.057977, 0.811127, 1.515392, -1.096781, -1.523741, -1.262561, -0.267381, 0.954845, -0.161730, -0.151312, -0.893880, -1.196546, 0.550800, -1.905365, -1.008899, -0.121742, 0.701880, 1.683473, 0.225014, 1.300599, 0.295760, -0.207321, -0.061736, -0.683567, 0.635483, 1.609004, 0.883267, -1.149683, -1.042239, 1.514341, 2.086975, 0.222563, 1.309463, 0.905558, 0.184328, -0.581612, 1.141284, -1.304625, 0.037925, 0.325785, -0.516631, 1.265680, 0.332239, 0.214298, -0.258917, 0.038521, 0.312495, 0.092683, 0.474036, 0.855979, 0.157309, 1.511145, 0.505412, 0.261702, 0.269582, 0.358300, 0.062938, -0.818899, 0.298368, -0.496253, -1.183660, 0.062120, -1.237283, 1.233745, 0.307924, 2.330193, 0.039410, 1.774418, -0.605162, -1.621506, -0.486021, -0.431777, 0.956441, 0.677082, -0.492795, 0.156117, -0.126876, 0.845277, -1.613050, 0.086365, -1.560184, 1.316918, 0.078003, -0.592927, 1.359921, 0.187715, -2.275469, -1.945789, 0.627408, 0.190939, -0.351133, -0.806264, 0.824668, -0.042405, -0.539143, 0.845285, -0.089379, 0.878481, 0.284867, 0.526382, 0.717980, 0.182401, -0.541348, 2.146397, -1.088773, -0.805541, -0.345570, 1.661477, -0.595325, 0.684363, -1.257376, 0.023344, 0.734125, -0.291072, 0.021747, -1.480637, 1.270376, -2.572407, 1.487658, 1.404333, 1.011047, -0.112893, -0.818397, 0.684824, -1.135044, 0.836326, 1.505343, -0.082388, 0.162997, 1.576062, 0.342984, 0.928601, -0.092185, 0.427191, -0.330527, 1.518596, -0.110537, -0.484779, -0.760054, 0.642975, -0.984302, 0.624481, -0.029567, -0.715952, -0.011263, -0.298227, 0.275849, 0.027355, 1.377666, -0.459477, 0.628080, -0.467787, -0.230906, 0.376572, -0.254964, -1.277388, -0.769468, 1.400092, -0.108365, 0.988826, 0.326570, -1.100671, -0.340571, -0.158031, 0.198375, 1.156926, -0.063378, -0.340940, 0.650776, 0.856718, -1.035267, -0.605709, -0.439031, 0.944178, -0.584561, -0.830534, -2.074365, 0.638715, -1.666310, -0.988617, 0.461472, -1.422760, -0.782912, -0.108792, 0.436112, 2.355002, -1.235402, 0.553558, -1.002286, -0.327474, 0.468100, 0.246924, 1.424677, 0.112156, -0.975042, 0.546593, 0.658777, 0.162809, -0.601280, 0.949157, 0.174315, 0.900946, 0.310925, 0.004629, -1.549297, 1.764501, 1.482424, 1.837905, -1.039484, 0.149062, -0.630529, -1.177024, 1.068171, -1.280590, -0.303332, 0.179451, 0.169287, -0.258005, -0.425908, -1.375083, 0.802648, 0.945771, 1.557162, 0.789797, -0.166533, -1.327571, -0.354711, 0.250401, 0.330310, -0.255542, 1.117533, 1.200644, 0.675179, 1.269475, 2.209169, -0.490429, 0.058046, 1.673916, 1.371790, -0.658589, -1.335027, -0.871297, -1.264020, -0.430797, -0.891011, -1.678566, 1.099850, -1.632559, 0.025650, 0.544013, 0.184016, 0.729281, 1.388570, 1.340584, 0.339048, 1.167266, -1.789571, 0.831025, 1.163045, -0.025695, -0.161610, 1.300793, 0.028544, -0.651811, 0.115253, 3.349280, -1.690522, -0.740014, 1.528751, 1.295427, -0.357770, -1.472315, -0.387015, 0.802045, -0.463119, 0.243177, 0.322240, 0.559485, -0.666426, -0.058537, 0.244202, -2.163990, -1.198063, -0.534933, -0.009042, -0.866583, -0.659367, -0.952750, 0.054395, 0.584717, 0.550764, -0.614824, 0.009172, -1.510656, -0.756845, -1.174699, 0.030239, -0.433201, 0.695211, -0.858020, -1.342123, -0.836211, 0.001272, 0.052203, 0.434733, 1.141701, -0.214443, 0.191977, 0.336118, 0.740006, 0.034802, -0.784479, 0.096711, 0.727342, 0.055901, -0.414428, -1.824772, -0.881200, -1.991755, -1.703310, -0.643475, -1.899000, 0.020451, 0.354152, -1.656891, -0.303586, -0.650279, -1.334365, -0.388828, 0.257294, 0.598919, -1.616676, 0.474919, -1.193735, -0.324456, 0.396999, -0.882466, -0.097478, 1.547611, -1.214700, 0.191804, -0.625332, 0.365946, -1.514317, 1.307281, 1.258358, -0.226794, 0.344606, 1.404790, -1.004501, -1.057374, 0.540663, 0.249152, -0.669035, 0.125867, 0.989408, 0.769806, -0.500591, -1.445798, -0.767357, 0.641463, 0.041894, 0.111889, -0.966250, 0.669621, -0.610478, -0.533989, -0.412872, 0.472221, 0.478693, 1.378050, 0.727697, -0.964777, -0.788726, 0.736311, -0.848335, 0.543806, 0.803697, -0.106663, 0.811208, 1.240668, 2.250139, 1.136069, 0.246242, -0.121398, -0.486841, -3.434912, -1.275332, -3.317612, 0.069645, -0.413039, -0.369937, 2.498012, -0.762144, 0.303670, -1.258046, -0.375193, 0.563762, 2.457668, 0.232275, -1.474267, -0.259822, 0.681628, 1.628089, -0.325477, -0.547176, 0.592477, 0.459258, 0.410981, -1.505520, -0.494426, -0.053370, 0.621976, 0.288695, -1.813272, -1.824858, -0.283255, -1.062194, 1.142938, -0.158747, -0.943995, -0.521847, 0.896608, 2.761982, -2.603445, -0.730379, -1.142341, 1.221350, 0.770996, -0.867309, -0.275855, 0.152357, 0.407490, 0.225373, 1.259988, -0.002450, -0.561185, -1.630228, 1.834839, 0.582425, -0.461999, 0.268939, -0.619384, 0.187173, -0.958496, -0.951235, 1.445309, -1.371066, 0.868823, 3.438059, -2.021828, 0.150146, 1.012159, 0.703892, 0.976942, 1.792319, -0.139234, -0.496251, -0.161439, -0.984238, 0.317302, 0.588664, -1.038444, 0.222212, -1.746588, -0.022362, 0.914479, 0.903137, 0.029670, 0.105203, 1.680549, -0.345040, 2.162678, 2.025294, -2.193341, -1.256435, -0.307806, 0.242472, 1.013520, 1.866294, -0.149441, 0.927305, 1.010147, -0.534185, 0.255325, 1.065936, 0.812453, 0.207904, 0.180286, -1.882265, 0.035907, 1.266762, 1.252696, 0.653087, -0.494835, 0.543472, 1.246732, 0.317398, -0.412244, -0.952608, -1.371530, 0.213726, -0.625257, 2.081142, 1.456245, 1.249835, 0.640521, 0.788754, -1.067846, -0.369250, -0.639954, -0.182088, 2.146137, 0.944911, 0.223942, 0.528069, 0.980094, 0.124984, -1.529407, -0.797045, -2.993440, -0.395360, 0.508714, -0.262211, 0.293014, 2.141667, 1.894343, 0.454155, 1.467839, -2.669097, -0.350502, -0.684777, 0.710954, 0.797875, -2.239517, -0.155615, 0.077360, -1.304273, -1.536844, -0.107262, -0.326350, 0.036435, 1.129485, 0.877583, 1.250684, 0.067639, 2.080853, -0.715323, -0.076841, 0.419071, 1.760842, -0.058199, -1.315183, -0.555080, -1.034938, 0.699692, 0.314024, 1.955158, -0.287106, -0.854205, -1.337740, 0.583237, -0.421642, -1.707369, -1.324745, -0.850404, -1.204480, 2.133568, -0.112033, -0.894717, -0.978355, 0.908738, 1.238484, -0.615850, -1.937458, -2.196863, -1.252127, -0.526694, -0.546125, -1.344850, -0.982168, 2.173167, -0.083702, 0.007026, -0.246081, 0.238767, -0.724481, 2.339514, 0.084985, 0.703273, 2.061641, -0.154204, 2.239408, 0.423678, -2.063623, -1.252790, 0.650013, -1.658404, -0.693257, 1.838595, -0.771602, -0.149477, 0.358082, 1.407910, -0.144467, -1.152889, 0.401631, 0.303263, 0.131443, -0.819018, 1.100724, 0.464732, 0.491105, 1.228458, 1.311138, -1.197644, -0.111242, -0.919881, -0.922855, -0.189304, -0.030848, -0.102934, 0.066671, 0.117949, 1.304459, 0.352791, 0.620185, 0.711346, -0.059455, -0.385455, -0.096255, -0.191275, -0.494043, 0.748575, 0.782187, 0.307755, 0.037504, 0.372293, -0.903534, -1.848378, 1.287887, -0.524687, 1.163189, -0.129975, -0.903640, 0.148251, 0.268857, -0.148171, 0.143643, 0.987272, -0.125844, -1.091078, -2.237172, -0.879773, 0.548873, -0.880634, 0.334975, -0.082319, 0.048774, 1.491770, -0.228632, 0.325660, 0.418687, -1.585747, 0.752094, 0.611305, -0.188517, 0.078357, 0.959069, 0.028140, -1.591887, 0.769817, -0.893864, 1.043248, -0.631661, 1.426773, 1.757035, 0.597649, -0.683081, 0.432780, 1.424747, -1.326275, 0.576361, 0.261461, 0.128965, -1.035025, -1.207932, -0.312072, -0.163825, 2.215348, 1.238384, 0.671489, 0.400612, -0.837736, -0.307870, 0.181347, 0.874091, -0.210893, -1.045678, -0.506004, -0.976173, -0.104124, -0.462819, 0.905066, 1.636724, 0.550073, 0.297225, -0.322061, 0.483991, 0.549717, -0.212938, -0.101067, -0.196911, -1.498795, 0.027274, 1.918654, -1.903753, 0.028858, 0.872454, 0.507493, -1.433596, 1.538476, 1.463245, 0.511314, 0.992367, -2.023561, -0.103634, -0.280758, 0.898937, -0.635816, -1.741027, -0.710854, 0.232806, 0.997186, -0.068699, 0.527735, -0.306612, 1.320259, 0.524979, 1.566026, 0.745433, -1.261684, 0.429688, 0.668823, -0.129410, 1.041267, -0.107695, 0.385024, -0.541924, -1.335704, 0.712109, -1.242640, 0.957900, -1.226049, -0.428987, -2.854677, 0.170167, 0.898194, -0.259911, 0.116624, -1.037295, 0.424726, -0.450664, -0.849981, -0.069518, -1.837021, -0.111621, 0.918603, -1.012827, 0.307816, -0.167160, 1.764189, -1.923860, 2.134014, -1.209289, -1.026325, 1.243077, -1.813199, 0.730852, -0.503545, 0.467283, 1.100372, -0.970210, -0.427993, -1.247147, -1.260334, 1.119235, 0.371673, -0.801661, 0.890992, -1.029953, -0.621906, -0.129162, -0.155884, 1.275557, 0.072217, -1.300900, 0.355759, 0.862411, 0.771433, -0.290071, 1.168941, -0.460358, -0.233635, -0.049346, 0.203962, 0.105250, 0.740352, 1.040948, 0.221734, -0.233648, -0.454181, -1.126288, 0.025229, -0.278310, -0.103982, -0.264373, 0.348480, 0.971696, -1.928843, -0.328395, 1.040008, 2.561056, 0.943739, -0.678772, -0.353803, 0.339516, 0.759326, 1.300684, -1.149924, -0.191907, 1.919679, -0.718326, -0.382216, -0.129293, -1.117456, 1.295387, -0.840581, 0.386809, -0.158824, 0.027075, -0.358692, 0.396634, 0.524984, -0.931175, -2.105458, 0.259047, 0.406823, 1.514007, -1.440626, 0.870172, 1.896048, -0.972844, 0.353884, -0.522369, 0.743633, 2.892678, -0.447871, -2.060688, 2.193885, 1.602998, 0.363908, 0.778097, -0.649055, -0.643641, -0.180242, 0.417444, 2.334388, 1.051741, -1.314835, 0.172733, 0.425691, -0.940487, 1.854761, -0.310319, -0.356594, 0.165421, 0.983026, -1.231497, 2.365194, 0.863807, 1.327166, -0.854160, -0.846990, -2.275567, -0.030467, 0.086538, 0.208191, 0.417749, -0.673133, 0.248403, -0.821390, 0.930110, -0.537681, 0.722272, -0.438084, 0.521775, -0.444775, 1.123706, -0.366154, -1.211334, 0.785763, -0.090212, 0.399610, -0.778955, -1.737424, -0.944608, 1.953097, -0.049402, -2.043326, -0.945736, 0.121193, 0.337845, -0.800513, 0.401829, 0.789317, -0.466685, 1.038434, 1.135158, -2.149812, -0.791029, -0.417211, -0.077371, -0.108307, -0.355600, -0.871421, -0.014547, -0.760972, 0.300661, 1.775042, 0.201609, -1.265828, 2.669960, -0.984106, 0.357699, -0.112097, -0.093051, 0.575159, -1.898535, 1.101097, 0.339002, 0.701391, 2.337458, 0.528637, 1.840637, 0.475147, -0.562820, 0.338753, 0.403679, 0.574363, -2.119347, 0.609968, -1.012849, -1.352962, 0.231849, 0.278812, -0.013616, 1.019185, 0.261277, 0.286280, 1.581873, 0.142259, -0.720907, 1.581380, -0.359791, 0.808249, -0.255167, 1.464218, -0.318399, 0.344273, -0.984958, -1.620986, -1.138884, 1.536932, -0.108202, -0.483328, -1.162456, -1.223146, 1.430757, -0.093890, -0.862485, 0.331000, 0.292759, -2.178923, -0.816021, -0.624117, 1.602224, -0.106339, 2.169772, -0.014278, 0.309661, 0.241634, -0.391667, -0.038346, 0.716072, -0.408375, 0.221501, 0.251063, 0.452108, -0.113625, 0.302859, 2.721525, -0.187321, 0.650628, 0.950048, 0.037648, -0.749137, -0.041241, -0.629328, 0.101210, -0.297283, -1.216799, -0.946815, -0.415470, 0.320461, 1.088325, -1.371601, -1.912377, 0.762343, 0.840408, -0.726547, -0.147991, -2.197295, -1.215911, 0.231504, -1.210398, 0.098692, 1.652076, 0.953677, 0.637737, 0.408459, -0.379354, 0.027540, -0.410371, 1.428545, -0.123122, -0.799414, 1.413017, 0.990663, 0.563771, -0.436278, 0.171840, 1.534318, 0.066921, -0.551868, 1.566881, 0.403103, 1.363561, 1.148942, -0.302120, -0.056281, -0.738906, 0.820263, 0.261098, -0.329456, 0.222278, -0.363365, -1.735313, 0.914271, 2.036753, -1.325607, 0.638314, -2.356230, 1.099741, -1.592053, 0.784023, 1.364543, -0.450988, 2.585830, -0.541140, -0.671554, -0.878177, 1.009884, 1.076272, 0.753052, 0.568429, 1.302246, 0.337833, 2.142000, 0.333981, 0.809878, 1.108388, -0.064714, 0.320127, -1.319582, -0.296741, -0.488517, 1.125798, 0.329502, -0.257559, 0.787120, 0.722466, 0.048714, 1.953891, -2.059062, 1.769919, 0.226752, 0.226126, 0.195641, -0.456240, 0.910647, 0.088730, -0.788780, 0.096395, 1.663035, 1.255488, -1.548699, -3.336155, 0.109129, -1.154656, 0.219741, -0.408942, -0.808253, 0.407780, 1.290327, 0.357330, -0.518125, -1.934839, -0.738774, 0.205591, -0.893549, 1.140193, -0.339865, 2.108851, -1.050804, -0.284021, 0.554164, 0.134279, -0.453211, 1.002542, -0.790829, 0.995897, -0.045379, -0.303787, -0.079004, 0.529985, 0.166934, -0.218553, 1.857520, -1.740195, 0.008362, 0.335930, 1.359018, 0.546026, -0.056666, -2.716472, 0.259483, 0.417710, -0.030669, 0.204734, -0.112383, -1.271630, -1.629727, 0.289883, 0.570985, 2.225081, 0.740098, -0.944959, 1.065357, -2.396979, 1.728588, 1.765830, 1.699483, 0.208346, 0.873128, -1.751580, -0.228863, 0.215537, 0.996368, -1.161910, 0.796919, 3.245623, 1.779665, -0.866491, -2.005794, -1.095217, -0.505462, 0.066627, -0.930149, -0.344587, 0.684385, -0.116935, 1.015545, -0.331658, -0.022402, -0.644539, -2.867691, -1.161617, 0.305834, 0.881094, -1.766287, -2.208297, 1.272215, 0.046028, -1.084531, -0.123789, -0.702800, -0.169766, -0.545750, -0.539380, 1.566526, -0.806409, 0.856156, 1.339557, -0.979540, 0.293885, 1.136141, -0.820292, -0.482555, -0.567841, 1.190734, 2.046194, 1.558453, 0.728943, 0.248332, -0.312406, -0.733023, -0.111732, 0.794256, 0.245471, -0.179121, 0.304966, 0.809319, 0.413332, -1.077685, -0.194387, -1.306237, 0.103199, 0.789988, 0.228082, -0.232963, -1.031974, 1.523923, 0.475141, 0.981131, 0.211370, 0.543180, -2.815670, -0.392107, 1.093994, -0.778228, -1.632739, 1.038689, -0.026396, 0.127708, -0.304561, -0.139410, 1.180005, 0.548800, 0.615076, -0.486102, 0.271175, -0.182000, 0.550931, 0.489203, 0.597428, 1.967353, 0.690271, -0.278638, 1.199280, 1.811475, 0.611303, 1.653204, 0.209449, -0.271386, -1.447027, -0.290825, -0.339195, 1.279329, -0.153505, -0.324407, -0.153552, 0.355896, 0.180559, 0.687147, -1.038141, 0.112882, 0.717571, 0.240427, -1.330195, -0.401013, -1.788596, -1.268662, -0.309635, -1.296623, 0.263301, 1.392039, -0.343556, -1.572679, 0.116925, 0.549390, 0.405567, 0.492136, 0.227724, 0.903605, -1.144802, 0.568041, 0.540512, 0.509992, -3.318491, -0.854823, 0.766625, 0.463274, 1.010227, 1.737680, -0.673925, 0.778945, 0.278941, 0.581580, -1.079286, -0.706330, 0.892325, 0.674350, -0.440848, 0.387607, -0.679627, -0.850609, -0.451993, -0.087611, -0.672285, -1.168569, 0.616856, 1.317201, 0.114958, -1.039682, -1.416106, -0.342592, 0.660260, 2.357647, 0.165979, -1.584079, 0.860112, -1.366584, -0.097526, 0.122607, 0.862487, 0.731924, 1.418219, 0.849132, -0.597117, 2.540466, -0.578632, -1.115295, 1.333190, 0.086513, -0.053591, 0.225131, -1.602764, 0.500208, 0.032654, 0.322420, -0.189129, -1.890881, -0.382670, -0.432913, 0.319351, 0.055069, 0.936737, 0.113776, 0.776327, -0.193125, -0.158743, 0.753608, 0.645885, -0.325324, 1.526171, 0.749130, 0.130848, -1.612800, 0.918753, -0.388036, 0.447818, -0.952199, 0.037843, -1.134077, 0.684074, -0.591570, 0.242446, -1.553247, 0.193325, -0.466172, 0.498750, -0.637181, -1.580025, -0.175192, -0.735099, -0.096882, -0.306228, 1.140357, 0.078491, 0.301933, 0.826565, -0.474013, -0.392096, -0.340153, -0.662475, -1.318035, 0.199364, 1.173646, 0.060547, -0.277690, 0.037742, 0.626429, 0.276228, 1.365709, -0.826479, 0.720810, -1.543668, -0.931893, -0.898319, 0.037826, -0.992644, -0.229341, -1.291530, 0.776097, 1.106078, -0.502102, -0.195784, 0.678352, 0.443396, -0.729560, -0.643773, 0.684174, 2.167852, -0.343895, -1.148394, 0.610099, 1.218483, -0.648867, -0.660539, -0.011589, 0.242672, 1.619911, 1.122103, -0.949625, -0.346093, 0.313354, -1.480383, 0.114799, -0.631290, 1.376870, 0.528655, 0.147564, -0.571892, -0.902503, 0.027523, -2.386206, 0.047019, 0.712340, 0.373050, -3.742981, -0.960977, -0.765825, -1.196275, 0.592246, -1.001031, -0.734095, 1.194421, -1.299737, 0.718205, 0.129740, 1.449906, 1.456795, 1.322775, -1.037488, 0.919950, 1.299589, -0.220103, 0.679789, -0.731794, -1.099227, 0.747064, -1.272311, -0.494790, -0.517814, -1.236414, -1.206991, -2.020248, 0.256161, 0.375244, 0.392100, -0.787414, -0.073884, -0.833548, -0.218742, -1.180919, 1.210457, -0.961551, 0.132198, -0.598840, -0.559707, -1.828597, -1.602170, 0.678783, -0.544020, 0.822751, 1.626201, 2.232374, -0.138779, -0.694156, 0.000847, -0.650478, -1.229205, 0.703766, -0.283488, 0.543350, 1.657942, -0.328912, 0.148650, -0.124798, -0.037360, -0.834730, -1.556607, 1.613294, -0.802447, 0.187936, 1.174586, -0.217522, -1.521824, -0.163067, 0.595951, 0.662811, -0.033540, 1.009212, -0.151565, -0.378193, -1.852612, 0.341086, 0.621315, -1.264951, -2.818332, 0.325491, 1.167756, -1.980884, -0.313517, -0.961457, -0.038815, -1.048902, 0.303013, 1.832546, 0.130136, 0.960339, -0.537327, -0.142277, -0.623377, 0.956756, 0.485942, 0.379199, 0.288153, 1.208403, 1.155517, -1.177368, 0.607068, 0.203230, 1.012689, 0.025322, 2.288601, -1.962106, -0.994810, 0.599504, 0.344037, -2.161122, 0.506686, 1.213832, 0.227534, 1.660662, -0.606905, -0.867402, 0.589378, -2.365501, 0.173724, -0.380677, 2.189913, -0.031614, -0.154074, 0.410991, 0.208099, 0.580851, -1.544862, 1.329000, -0.516037, 0.342867, 0.298892, -0.465886, -0.625069, 1.187250, 0.590677, 0.053370, -1.004794, -1.401529, -1.035537, -0.628932, -1.463349, -0.955950, -0.467803, -1.743691, -0.472147, 1.943463, -0.252482, -0.142277, -0.841892, 0.950755, -0.976874, -0.267182, 0.021924, -0.604220, 0.003174, -1.378690, -0.917260, 0.163232, 0.875701, 0.362346, -0.000697, 0.044516, -1.024250, -1.371196, 0.818301, -0.954579, 0.344323, -1.664236, -1.013830, -0.021952, -0.023982, 1.597108, 0.705133, -3.162140, 1.383527, 1.264118, 0.222059, -0.506200, -1.928744, 2.200409, -0.270185, 1.081008, -0.800158, -0.357231, 0.289235, -0.594162, 0.044104, 0.719819, -1.518946, -0.150641, -0.939045, -1.684735}, + { -0.075818, -0.591056, -0.203184, -0.000746, -0.297645, 0.391987, 0.301354, -1.067063, 0.503172, 0.718119, -1.699602, 0.882575, 0.744414, -0.829243, 0.975778, 2.207309, -0.688361, -0.303853, 1.611673, 0.289883, -2.782591, 0.178586, 1.731738, -1.109886, -0.591628, 1.219229, 1.127124, 0.650235, -2.183071, -0.734204, -0.283618, -0.773913, 0.242742, 0.658706, 0.569280, 0.855442, -1.795356, -1.059935, 1.629796, 0.221182, -0.168840, 0.429339, 0.019499, -0.222937, -0.676228, -0.876359, 0.264665, 0.499466, -0.215084, 0.434298, 0.497651, -0.714105, 0.513151, 1.114845, 0.529509, 0.363861, -0.784813, 0.106611, -0.234912, 0.582431, -0.509431, 0.463722, -0.745261, -0.652358, -0.116182, 0.686116, -0.093189, 1.176759, 1.526295, 0.130450, 3.006197, 0.467975, 0.830607, 0.741303, -1.302031, -1.225514, -2.744079, -1.262118, 0.595829, 0.377909, -0.110930, -0.076925, -0.061071, 0.356284, 1.418585, -1.080366, 0.678356, -0.536989, 0.286910, -0.477631, -1.817675, 0.750332, 1.055889, 0.603314, -1.094795, 0.164761, 0.795688, 0.470629, 0.011230, 2.731884, -1.098709, 0.371479, -0.399019, -0.399803, 0.726631, -0.420814, 0.875257, -1.715272, -0.001264, 1.897607, -0.528751, -0.464735, 0.362777, 0.697868, 1.138464, -1.077565, -1.506992, 1.755002, -1.332765, -0.533883, -1.300747, 2.041262, 0.507811, 0.176813, -0.470497, 0.008381, 1.005808, 0.111211, 0.529343, 0.408063, 0.157513, -0.876860, 0.292996, -2.088128, 0.150622, -0.699342, 1.632175, -1.677590, 0.685664, 1.318200, 0.275651, -1.542503, -0.216152, 1.512114, -0.978928, -1.662969, -0.809575, 0.134984, 0.356887, -1.125470, -0.894769, 1.228497, -2.276622, -2.345372, 0.903469, -0.426379, -0.589865, -0.061567, -1.824102, -1.675176, 0.587386, 0.129867, 0.269369, 0.924985, 0.223019, -0.281389, 0.539594, -1.069914, 0.706722, -0.299142, 1.657878, 0.423268, 2.812116, -0.358220, 0.426580, 1.636693, 1.169133, -0.242839, 0.815258, -1.559850, 1.379328, 0.569973, 0.843199, -0.708583, -0.269013, -0.614245, 0.003019, -0.891025, 0.600493, -0.395048, -0.602764, -0.920318, -0.230134, 1.074987, 0.685926, -0.588487, 2.000565, 2.150665, -1.063414, 0.548167, -0.233040, 0.378996, 0.446337, -0.580621, 0.020128, 0.418870, 0.189227, 0.417250, -0.265171, 0.991254, -0.186357, 0.305849, 0.643100, -0.201048, -1.147260, 0.059509, -0.205426, -1.176731, -1.871982, -0.152198, 0.753215, 1.328457, 0.949134, 0.336266, -1.634675, 0.802454, -0.013598, -0.500140, -0.354332, -0.056919, -0.527163, -1.528844, 0.219224, -0.596693, -0.660274, 0.436824, -0.528790, -0.404186, 0.479671, 1.660770, -0.228581, -0.938038, -0.865225, -0.120912, -0.869814, -0.631828, -1.611058, 0.717008, 1.212493, 0.822863, 0.946994, -0.287564, 0.318448, 1.790949, -0.345807, 0.084848, -2.735029, -0.622923, -0.135313, -0.023435, -0.273825, 0.137685, 0.581551, 0.275621, -0.980397, 0.104893, 0.910032, -0.746566, -0.557435, 0.536291, -0.697447, 0.081836, 0.402436, 0.467083, -0.179142, 1.197302, 1.476778, 1.147592, -0.325082, 0.084812, -0.949026, -2.120154, 0.436866, 0.585607, -0.455147, -1.077923, -1.667871, -0.534206, 0.255791, -0.084062, -1.288494, -0.794506, -1.418958, -1.956882, -0.326849, 0.761938, 0.188717, 0.161439, 1.925249, -0.638581, 2.167075, 0.379375, -1.080229, 0.339205, -0.312691, 2.167922, 0.574815, 0.885331, 0.493129, 0.294114, -0.344645, -0.715179, -0.302560, 0.573559, -1.868044, 0.693858, -0.715592, 0.768519, 2.493984, 0.777753, 0.362307, -0.101264, 1.609456, -0.292330, 0.591547, -0.901044, -0.395944, -0.687151, 1.213101, -1.420922, 2.208108, 0.547884, 0.762590, 0.242986, 1.115821, 0.926447, -0.657233, 1.236022, -0.309429, 1.399785, -2.227902, -0.003809, -1.089583, -0.155297, -0.858382, -0.994752, 0.361045, 0.459807, 0.737149, -0.130919, 1.203072, 0.356398, 0.655216, 0.013671, 0.962188, 0.868420, 0.082053, -0.334015, -0.427765, 0.735269, -0.691213, 0.488611, -0.326986, 0.489971, 1.652623, 0.291087, -0.040772, -0.420552, -0.056084, 0.277826, -1.883673, 0.468472, 2.054070, -1.610662, 0.183714, 1.102596, 0.772954, 1.693413, 1.445988, -1.137661, -0.141325, -0.622301, 0.006393, -0.884850, 1.002120, 0.645773, -0.090861, 1.080341, -1.500663, 1.320626, 0.669547, -2.595552, 0.845621, 0.327436, -0.355436, 0.516004, 1.854887, 0.700505, 0.671752, -1.354331, 0.980456, -0.427137, -0.927301, -1.820176, -0.981218, -1.194150, 0.315045, 0.021733, -0.744935, 1.131451, -0.421028, 0.857346, -0.963097, 0.323527, -0.297951, -0.302454, -0.141004, 0.211454, -0.736983, 0.027141, -2.570904, -0.004068, -0.520198, 1.228741, 0.608092, -1.163575, -1.200350, -1.906412, -1.316357, 0.435733, 0.314957, 1.463497, -1.726823, 0.411802, -0.995351, 0.328443, 0.589587, 1.161308, 1.269894, 0.000864, -0.669958, -1.170734, -0.306897, 0.813266, -0.054548, 0.575938, 1.372825, -2.078029, 1.361749, 1.028377, -1.300539, -0.841800, 0.018339, -1.158966, 1.465181, 0.503631, -0.557325, -0.017204, -0.645261, -2.052901, 0.294085, -1.344063, -0.071089, 0.542979, -0.686364, -1.704995, -0.016104, 0.013893, 0.416073, -0.060993, 1.281186, -2.285144, 0.925526, 1.325849, 1.240047, -0.965018, 0.355224, 0.885112, -2.308917, 0.022059, 0.398899, 0.540163, 1.244802, 0.106283, 0.318419, 0.308530, 0.136895, -0.426789, 0.171461, -0.247609, 0.030064, 0.797424, -0.771029, -1.640079, -0.112640, -1.347726, -0.856826, -2.681372, 0.658750, 0.894154, -0.560418, 0.459026, 0.011281, 1.107731, 0.759959, 0.349417, 0.604720, 0.759985, -2.042573, -0.797079, 0.118170, 1.519774, -0.549714, -1.447577, -0.408993, -1.586553, -1.357910, 0.370954, -0.093002, 0.983589, -0.026437, 0.356506, -0.144430, 0.813638, -0.406420, 1.071391, 1.616723, -0.668873, -0.343954, -0.879210, -0.811743, 0.173981, -1.712460, -0.788406, -0.734806, 0.384649, -0.128088, 0.047616, -0.017519, 0.653405, 1.587662, 0.489960, -0.461334, -0.217019, -1.117423, -0.150461, 0.155841, -0.462382, -1.244611, 0.486257, 0.137425, -0.142641, -0.218207, -0.773001, 0.234715, 1.768985, -0.744872, -1.355896, -1.477842, 1.497080, -1.373374, -1.635711, -0.184275, 0.880896, 1.301994, 1.176412, -0.514677, 0.756981, 0.974307, -1.050675, 1.166521, -0.188740, 0.125473, 0.879383, -1.720362, -0.158602, -1.192396, 0.522076, 0.173412, -0.008877, 0.213117, -0.625154, -0.733218, -1.747669, 1.417209, 0.112440, 2.183440, 0.684636, -0.054791, -0.196834, 0.371640, 1.224291, 0.213305, 0.697020, -1.245772, 0.901466, -0.446039, -0.818270, 2.708708, 0.423931, 0.042169, 0.577899, -0.482756, 1.680901, 0.513257, 1.740272, -0.539891, -0.934281, -1.668307, -0.245802, -0.244376, -0.222213, -1.308956, 0.366338, -1.845397, 0.410688, 1.036196, 0.413241, 0.409510, -0.352512, 1.055341, -0.124908, 0.867170, -0.357473, 1.585324, -0.042768, -1.009225, -1.615473, -0.474490, 0.576445, 0.955794, 1.079710, 1.555776, -1.477289, -0.199500, -1.313659, 0.606937, -0.544959, 0.043119, -0.775890, 0.344170, 1.208706, 1.908984, 1.482895, -0.528106, 2.143611, 0.485469, 1.680593, 1.362918, 0.730531, -2.102340, 0.044886, 0.544160, -0.875090, -0.101456, 0.568089, -0.433850, -0.151209, 0.613436, 1.428467, 1.306991, -1.066352, -0.149791, -0.903824, 0.805184, -0.893422, 0.892775, -0.178189, 0.109300, 0.269072, -0.230340, 0.929517, 2.082050, -0.011854, 0.867216, -0.237540, 0.611737, -1.173773, -1.749500, 0.334649, 0.138566, 0.124509, 0.080841, 0.036189, 1.504761, -0.100675, 0.554198, 0.313428, 1.524298, 1.859559, -1.169674, 1.325822, -0.652379, -0.516166, 0.134771, 1.181378, -1.690249, 0.248256, 0.184333, -0.523780, -2.413045, -1.053354, -0.306026, 0.236648, -1.572342, -1.047770, 0.751448, 0.339150, -0.494041, -1.893447, -0.235308, 0.064264, 0.046988, 1.981716, -0.127397, 0.315015, -1.628040, 0.076587, -0.573340, 0.321453, -0.521165, 1.273583, -0.966274, -2.114611, -0.536952, 0.144996, -0.780299, -0.935535, 0.088825, -0.040910, 2.084124, 0.936409, 2.810586, 0.124005, 0.127283, 0.694560, 0.502367, 0.148034, -0.621752, 0.070649, -0.440923, -1.171717, -1.031349, -0.521696, -0.887322, -1.839129, -0.774408, -0.066049, -0.038174, -0.588403, 1.423813, 1.474157, 0.535514, 1.615030, 1.225503, 1.152056, 0.516053, 1.089590, -1.066190, 0.192370, 0.523916, -0.179157, 0.105351, -0.947115, 0.716954, 0.015325, 0.288231, 0.424537, -0.753833, 0.027087, -3.675045, -0.090765, 1.092801, 0.430864, 0.561499, -2.256565, -0.597150, 0.889171, 1.397961, -0.733913, 1.385188, -0.001447, -0.950268, 0.227548, -0.764067, -0.202498, 0.749815, 0.313749, -0.266840, 0.017444, 0.959492, 0.188555, -2.141024, -0.940327, -0.965526, 0.026873, -1.213501, -0.377153, 0.392924, -0.829945, 0.292557, -0.454602, -0.693818, -0.096988, -0.322176, 1.159081, -0.798123, -1.747694, -0.373071, -0.132011, 0.706681, -0.747720, -0.855929, 0.620011, -0.016718, 0.231226, -1.114918, 0.834109, -0.363585, -0.857226, -0.663288, -0.589717, 0.256435, -0.964734, -0.217967, -0.088349, -0.280938, -0.727965, -1.746968, -1.106385, -0.147203, -0.140409, -0.164293, -0.309257, -0.431281, -0.598302, 0.064008, -0.271517, 1.109756, -1.691761, -0.430134, 0.318368, -0.344823, 0.272827, -1.121198, 0.745457, 0.897591, -0.706200, 0.209976, -0.035755, -0.613884, 0.890334, 0.642694, 0.890836, 1.631471, -1.431814, 0.148201, 0.892726, -0.399325, 0.959943, -1.109057, -1.368136, -1.520686, -1.267245, -0.742559, 0.143233, -0.853587, -0.306600, -0.758736, -0.414820, -0.652026, -0.478137, -0.253427, -2.231979, -1.075703, 1.202082, 0.592509, -1.947696, 0.803558, 0.294605, 0.492636, -0.341489, -0.760671, -0.745105, -1.362836, 0.462362, 0.505779, -0.985064, -1.380559, -1.815218, 1.416375, -1.074194, -1.587418, -0.103223, -1.703095, -0.779193, 0.074315, 0.026178, -1.345037, 0.891032, 0.204909, -0.586400, -0.600944, 0.751890, 1.196609, -1.016430, 0.716123, -0.068246, -1.096565, -2.116214, 0.300928, -1.712698, 0.286790, 1.497939, 0.786162, -1.614773, -1.860155, -1.052558, 0.624718, 0.052969, 0.931686, -1.406795, 0.720874, -0.232274, 0.705340, -1.493329, -0.018443, 0.038162, -0.883086, 0.361363, -1.416216, 0.284943, -0.947201, 0.597141, -0.153477, -0.030014, 1.032378, -0.442512, -1.189060, 0.873973, -0.695849, -2.213670, -0.882565, 1.924593, 0.385527, -1.826749, 1.356966, -0.939668, 0.452114, -0.861320, 0.646611, -1.654788, 0.105652, -0.977826, -0.262637, -0.785443, 0.537789, 0.621140, -2.139691, 0.356133, -0.129503, -0.677756, 0.394433, -0.155510, 0.951923, -2.544760, 1.474002, -1.682877, 0.361991, 1.079167, -0.440421, 0.605869, -0.727371, -0.943646, -0.003097, -1.570753, -0.079297, -0.938677, 2.082263, -1.459062, -0.026338, -0.038563, -0.993783, 0.561255, -0.309214, 0.227159, 0.446961, 0.248196, -0.246098, 0.310695, -0.044911, -0.677601, -0.018911, 0.048850, 1.031594, 0.497150, -1.340823, 0.183893, 0.128366, -1.711080, 1.115235, -1.229392, 0.032065, -0.025242, -0.460189, -1.997183, -1.656676, -0.732582, 0.802921, -0.247523, -0.609633, -1.208488, -0.339399, -0.359070, 0.556005, -1.588518, -0.321263, 0.832858, 0.022334, -0.315544, -0.841888, 0.965152, 0.220015, 0.370088, -0.423696, 0.370877, 0.193378, 0.292879, -1.624798, -0.103574, -1.441935, 0.767723, 1.239516, -0.708171, -0.424174, -1.046110, -0.478123, 1.578071, -0.911382, -1.260897, -0.389807, -1.355822, -1.183033, 1.375509, -1.063042, -0.388363, -0.493549, 0.210866, 1.899580, 0.773886, 0.186683, -0.428925, -0.730664, 0.375465, -0.085533, 0.089020, 1.035511, 0.670976, 0.218544, -1.035212, -0.642320, -0.920104, 0.106518, -0.396411, -1.157877, -0.591797, 0.031682, 0.272614, 0.022728, -0.500464, 0.037725, -3.046452, 1.252567, -1.729744, -0.382654, -1.596030, -0.787100, -0.145173, -1.346201, -0.501846, -0.962874, 0.310012, -0.920081, 0.515726, -2.139237, -1.199519, 1.517574, 1.064883, -0.669418, -1.426992, -0.322023, -1.160855, -1.319991, -0.249540, -0.345650, -0.535926, 0.124848, -0.120100, 0.762485, 0.188459, -0.250986, -0.046337, 2.474099, 0.689626, 0.265537, 0.257378, -0.706513, 0.895898, 0.570130, 1.254666, 0.162203, 0.510184, -1.048993, -1.618204, 2.051298, -0.834612, -1.243334, -0.507539, -0.997368, 0.045870, 0.011098, -0.296018, 0.334154, -1.750444, -0.176534, -1.769745, 1.107860, -0.492425, -0.166301, 0.491276, -0.263682, 0.685303, 0.280421, -0.897950, -0.447638, 0.088219, -1.180396, -1.071527, 0.212744, -0.668130, -0.525322, -0.659127, 0.762409, 0.057134, 0.600757, -1.520167, -1.413539, 1.944629, -0.791205, -0.447695, -0.011525, 0.303494, -2.708285, 0.638961, 0.249727, 1.184608, -1.231511, -1.262940, -0.111445, 0.691747, -0.959549, -0.762079, 1.687524, 1.510708, 0.210334, 0.272234, 0.184174, 0.181007, -0.206666, 1.007502, -0.324370, -1.335822, -0.480793, -1.842633, 0.889679, -0.541488, -1.895418, 0.421949, 0.309808, -1.855416, -0.394806, -0.041118, -0.159588, -0.824810, -1.376193, 0.388323, -0.125261, 0.087424, 0.578072, -0.161669, -0.206666, -0.000901, -0.794746, 1.184063, 1.564185, -0.026446, -0.119892, -0.512899, 1.232171, -0.344044, -1.130769, 0.886468, 0.930687, 0.273673, -0.591044, 2.895325, 0.788515, -0.386483, 0.577774, -0.169166, -0.471177, -0.991231, -0.885463, 1.090140, -0.982257, 1.352726, -1.693375, 0.362623, -0.492076, 0.946487, -0.130451, 0.639254, -0.707612, -1.138114, -0.390362, -0.249415, -1.171884, 0.153889, -0.361292, -0.916888, 0.419279, 0.335560, -0.396742, -2.169792, -1.046930, -0.499992, 0.672447, 0.119241, -0.543357, 0.330962, -0.134297, -0.381561, 0.310227, -0.392893, -1.720807, -0.234639, 0.556892, 0.546144, -1.113599, -0.685624, -0.800096, -0.381167, 0.804749, 1.173142, 0.684220, 1.722527, -0.347309, 0.079430, -2.097420, 1.220698, 1.919348, -1.220601, -0.500909, 1.096617, 1.079036, -1.391160, -3.083988, 1.168284, -0.991734, -0.220750, 0.656736, 0.184796, 0.416914, 0.811207, -0.846886, -0.622048, 1.193362, -1.342224, -1.473104, 0.832949, -0.040353, 1.221314, 0.208736, 0.874326, 0.151801, 0.162985, -0.670745, 0.626361, -0.967524, -0.220985, -0.146030, 0.177744, -0.870385, 0.517654, 0.129671, 0.598079, -0.062657, -0.285816, -1.259093, 0.876722, 0.925887, 0.597017, -1.648818, -0.489811, -2.439874, 0.121074, -0.407178, 0.546370, 0.973699, 0.015731, 0.337310, -0.903763, -0.286117, -0.614001, 0.968098, 0.876372, -0.036632, -1.747042, -1.282208, 1.261094, -0.988761, -1.116189, 1.575006, 1.010292, 0.290900, -0.292176, -0.253057, 0.224972, -0.337883, 0.005757, 1.137743, 1.109346, -0.451816, 0.757448, 1.482964, -1.638232, -1.277956, 1.493354, -0.592169, -0.277191, 0.076587, -0.035848, 0.677240, 1.012707, 0.405492, 0.605020, 0.225234, 2.521533, 0.947664, 1.061697, -0.384343, -0.972024, 0.131999, 2.022173, 1.059384, -0.488363, -1.617576, -0.014261, -0.732568, -1.028268, -2.290382, 1.329463, -0.169677, 0.019459, -1.401621, -0.581824, 0.455100, 0.868947, 0.090089, 1.376154, -1.042156, 0.933030, 1.422728, -0.802212, -0.747890, -0.804913, -0.264717, 1.004431, -0.111982, -0.044602, 0.304564, 0.254894, -1.860408, -0.486249, 1.028236, 0.340723, 3.047611, -0.684780, 1.342468, -2.472524, 0.451482, 0.425573, -2.275865, 1.497084, -1.298511, -1.709691, 0.679781, 1.229960, -0.433712, 1.877490, 0.793857, 1.954033, -0.698140, 1.568206, -0.022005, 0.076450, -1.149271, -1.821467, -0.220102, -0.201767, 0.044970, 0.764303, -0.069851, 1.106191, -0.379200, 1.449744, 1.660439, -0.482123, -0.304538, 0.037902, -0.210253, -0.050149, 1.594593, 0.492205, -0.288568, 0.041845, 0.983835, -0.916269, 0.455563, -0.566204, 0.950589, 0.646441, 0.548964, 0.407556, 0.307062, -1.227505, -0.709472, -0.149893, 0.510432, 0.413103, 1.173523, -0.660993, -1.056819, -0.102123, 1.012297, 0.141917, 1.009825, -1.134005, -0.461669, 1.171521, -1.318070, 1.692350, 0.475427, -0.820688, -0.880813, -0.142301, -0.844139, -0.841167, 0.159084, 0.141464, -1.362352, -0.671180, 0.100479, 1.517085, 0.524847, 0.175662, 0.275842, -0.905782, -0.324609, 0.284645, 0.832123, 0.666395, 0.222120, -1.141387, 0.727903, 0.045130, 0.488142, -0.212239, 0.487966, -0.754320, -0.260107, 0.382926, 1.616069, -0.716543, 1.260595, -0.041568, -0.814031, -0.165971, 0.084740, 0.205446, 0.050175, -1.261618, -0.353256, -0.718868, 0.661163, 0.272589, -0.882800, -0.191929, -0.067958, 0.597570, 0.346665, 0.957152, -0.300808, 0.858213, -0.745969, 0.633791, -1.832026, 0.538740, 1.538278, 0.948613, -1.397874, 1.267650, 0.231879, 1.215656, -1.784792, 2.027219, -1.100480, -0.341697, -0.476907, 0.469314, -0.454101, -1.391549, -0.914652, 0.136423, -0.043894, 0.105271, 0.787583, -2.736787, 0.876073, 1.825613, -0.971365, 0.527591, -0.026089, 1.205358, 0.936230, 1.045423, 1.694508, 1.129753, 0.313584, 1.499306, -0.265604, -1.571710, 0.134713, 0.814008, 0.198352, -0.366126, -0.700297, 1.084885, -0.071790, -1.068945, 1.576784, 0.734362, -0.711401, -0.228013, -2.928062, 0.468969, -1.264188, -0.225184, -0.377279, 0.914456, -1.237966, -0.567818, -0.555914, -0.631102, -1.157279, -0.213071, 0.450072, 1.346997, -0.033324, 0.789134, -1.662441, 1.276019, -0.894285, 0.407313, 0.887254, -0.779422, 2.004203, 1.028558, -0.620035, 0.225015, -1.677583, -0.095121, -1.175099, -0.573074, -0.304635, -0.731464, 2.122812, 0.874244, -1.087295, -0.942071, -1.083327, -1.127135, -0.754511, -1.284704, -1.981655, -0.866103, -0.199541, 1.605151, -0.166845, -1.096004, -1.930730, 0.412878, -0.390717, -1.401817, -1.251059, -1.566991, -1.096548, 0.646112, 0.607761, -1.935379, -1.165243, 1.585131, 0.257150, 1.808403, 0.086640, -0.048395, -0.842602, -0.301244, -0.620573, 0.587174, 0.172419, 0.208644, -1.612760, -2.095382, 1.522686, 0.599714, -0.708396, 0.632872, 0.961131, -1.175685, -1.261553, 3.415161, 0.169983, -0.104753, 0.319112, 1.410486, 0.145205, 0.071399, -1.056122, -1.924997, -0.167837, -1.162837, 1.216714, -0.063863, 0.699949, 0.277748, 0.672244, 0.721502, 1.372695, -0.507591, 0.487367, -0.867242, 0.545261, 0.871342, 0.077829, 1.814803, -0.863385, 0.183913, -0.562954, 1.561878, 0.584509, -0.030514, -0.712794, 0.978965, -0.021822, 0.043779, 1.620364, -0.704684, -0.827396, 0.289949, -0.971657, -0.140514, 0.195789, 0.648104, 0.179484, -1.001529, 1.924112, -1.602037, -0.928144, 0.420025, -0.917936, 0.803733, -1.142172, -0.188048, -1.184683, 0.275593, -1.316129, -0.118010, -1.129870, -0.725636, 1.796310, -0.057981, 1.484004, 0.114383, 0.114117, 0.603914, 0.714446, 1.877501, -1.353178, 0.202151, -0.221773, -0.254065, -0.958124, 0.129955, 0.219788, 1.715067, 0.920766, -0.131310, -1.248116, 1.671395, 0.022640, 1.429746, 0.303731, -1.720618, 0.240166, 1.259839, -0.921569, -0.165145, 0.759344, 0.989586, 0.647752, 0.107819, 0.993330, 0.457475, 0.005494, -1.594286, 1.148626, 1.149115, 0.279188, 0.653253, 1.705159, 0.305919, -0.402713, 0.349680, -0.539183, 1.066644, -0.071285, -0.316347, -0.577238, 1.381330, -0.260807, -1.498562, -0.122145, -0.563380, 0.653984, -0.801267, 0.158307, -1.941762, -0.751918, -0.389394, 0.254528, 1.301172, -0.625870, -1.028864, -0.634810, -1.930789, -0.331867, -0.047626, 0.655002, 2.108449, -0.776421, 1.649689, 0.198283, -1.421047, 2.327541, -0.629022, -0.279321, 0.415714, -1.249274, 1.122512, 2.083090, -0.393452, 2.563719, 0.479450, 0.145998, -2.357371, 0.288567, 0.840443, -2.047362, -0.461986, 0.878108, -0.226359, -0.222260, -2.572335, 0.736007, 2.017128, -0.687887, 0.938935, -0.859391, -0.982199, 1.287959, 0.062654, 0.492705, 0.275411, -0.150736, -1.892570, -0.029135, -0.043017, 0.894850, -0.877438, 0.351613, 0.628031, 1.094157, 1.084340, -0.770707, -0.731155, -0.278358, -0.172389, -1.146052, 0.238804, -0.040969, 0.718151, 2.043048, -1.311332, -0.624905, 0.541602, -0.586132, 0.052475, 0.893489, -0.804338, -0.387510, -0.573959, 0.315601, 0.773308, -0.885552, 0.293446, -0.242503, -0.928720, -0.503570, 1.100616, -1.032455, -1.628769, -0.042108, -0.019853, -0.738972, 1.366961, 0.563828, 2.640649, 0.596482, -1.137360, 0.175252, -0.620212, -0.723550, 0.990794, 0.247558, -0.301077, 0.123412, -0.056271, 1.653553, -0.858767, -0.307647, 0.265298, -0.185962, 1.363818, -0.879795, -1.478590, -0.074724, 0.360432, 0.065027, -1.610073, 1.111246, -0.347380, 0.204331, 1.221726, -0.312249, -0.874413, 0.803924, 0.064427, 1.105186, -0.748914, -0.746336, 0.929088, -0.905738, 1.343876, -0.001172, 0.136742, 1.934662, 3.150151, -0.798899, 1.362113, 1.041329, 0.455618, 0.315998, -0.696032, 0.192649, -1.044719, 0.255112, 1.092784, -0.944510, 0.159147, -0.273536, 0.712169, 0.058739, -0.919032, -1.069123, 0.013313, 0.900948, -1.179680, 1.123940, 0.220330, 1.129012, 0.701180, -0.015543, 1.395214, 0.369544, 0.642706, -1.249181, 0.212995, 1.179969, 0.054417, -1.589687, 0.399382, -1.726101, 0.472572, 1.800372, -1.357050, -0.079374, 0.799958, -1.312552, -0.513878, 0.233168, 1.161842, -1.094785, 0.369547, 1.714236, -0.263661, -1.507267, 0.353039, -0.578635, -0.277923, 0.021170, -0.362338, 0.948991, -1.368173, 1.647924, -1.472080, -0.016196, -0.177558, -0.394813, 1.957538, -0.055152, -0.145461, 1.200067, 1.367057, 1.641809, -0.644549, 0.641574, 0.285099, -0.664347, 1.010943, 0.465759, 1.716424, 0.565441, -1.163611, -0.212965, 0.205402, 1.288685, 0.530526, 0.671905, -0.105072, -1.135145, -0.064551, -1.107730, 1.725507, -1.657628, 0.856442, -2.391062, -0.957406, -0.404597, -1.017910, 1.564189, 0.684785, -1.019658, 0.290997, 1.904313, -0.993336, -1.105065, -1.515707, -0.548524, -1.175112, -0.298375, -1.049333, 1.031558, 0.427376, -0.823241, -0.563910, -1.435000, 0.515427, -0.049848, 0.991135, 1.500111, 0.186583, 0.553531, 0.581259, 1.233875, 0.802887, 0.572360, 1.375407, -1.157420, 0.125060, 0.461825, 0.596607, 1.534893, 1.574667, 0.271506, -1.427169, 0.046462, -0.176918, 0.061816, -0.506091, -0.678542, -1.339521, 1.100562, 1.344152, -0.960403, -0.278467, -1.062182, -1.314608, -0.011052, -1.245140, -0.276169, 2.021185, 0.563738, -0.644156, -1.064438, 0.624931, 0.584426, -0.563866, 0.340167, 1.762778, 1.371897, 1.419641, -0.907380, 0.035263, 0.097068, 0.939155, -1.656281, 0.127050, -0.703998, 0.493076, 0.685896, 0.665403, 0.595804, 2.588446, 0.155018, -0.284598, -0.522437, 0.766980, 1.138201, -1.230030, 0.110804, 0.060141, -1.352180, -0.899369, 0.682701, 0.305924, 0.096397, -0.445926, 2.199063, -0.672741, 0.040332, 0.146922, 0.401178, 0.858765, 0.697275, -1.060959, 0.126470, 1.377174, 1.253311, -1.261162, 1.564206, 2.271658, 0.988629, 1.844125, -0.992662, 1.350860, 0.164341, 1.293733, 1.618906, 0.630063, -0.816075, 0.280282, 0.051895, -0.640232, -1.150002, -3.080724, -0.498267, -0.470859, -1.315557, 0.340118, 1.018165, 0.140445, 1.129642, 0.498629, 0.541341, 0.644215, -1.644060, -0.098696, 0.828206, -1.067134, -1.844585, -0.608242, 0.611572, -0.388459, -1.041062, -1.412708, -0.134792, -0.122579, -0.757064, 1.132478, 0.215656, 0.062299, 0.876984, 1.311026, 1.174293, -0.069191, 0.178443, -0.324862, 0.029224, -1.075424, 1.200888, -2.571353, -1.002923, 0.230659, -1.446932, 1.008186, 0.533513, -0.221080, -2.187396, 1.087559, -0.015153, -0.092345, 0.994260, -0.225294, 0.505484, 1.089592, -0.491557, -0.284194, 0.708267, -0.169160, -1.178633, -1.179001, 0.271299, 0.929075, 0.639085, 1.777936, -0.830756, 1.033938, -0.061123, -0.992942, -0.598720, 0.944533, -1.956956, 0.543540, -1.295239, -0.562628, -0.802752, -0.072292, -1.135609, -0.037172, -0.272980, -0.324959, -1.248582, 0.649931, 0.406174, -1.289498, 1.782808, -1.622212, -0.382329, 0.236415, -0.331627, 0.403486, 1.419194, -2.588876, -0.527585, -1.034215, 0.211263, 0.372151, 0.812252, 0.104390, 0.624087, 1.089527, 0.432375, 0.739598, -0.970199, 0.594113, 1.093161, -0.288740, -0.160297, 1.437057, -0.148633, 2.567780, 1.011771, -0.828158, -1.201101, 0.989310, -1.629129, -1.165482, 1.246788, 0.935957, 0.027147, -0.675624, -0.177684, -1.424364, 0.624798, 0.155815, -0.380471, 1.182673, 0.928967, -0.958184, 0.911680, -0.014899, -1.926187, 0.682967, 0.605108, -1.637383, -0.374624, -0.500326, -0.181313, 0.422237, 1.006675, -1.134395, 1.219744, 0.655412, -1.245753, -1.365429, 0.387908, 1.050710, -1.071248, -0.380033, -0.587971, 1.110402, 1.065151, -1.454789, 0.582347, 0.662052, -3.565404, -1.196262, -1.132220, -0.227955, -1.347359, -0.734206, -0.138054, -0.082716, 0.568702, 1.673525, -0.124625, 0.473618, 0.713585, 1.139749, -0.045842, -0.827239, -0.577113, -1.674940, 0.223915, 0.076205, -1.002675, -2.001907, 0.420844, 1.228567, 1.433535, -0.180279, -0.159862, -1.109201, -0.349067, 1.075758, -1.765161, 0.061335, -0.002015, -0.519528, 0.266577, 3.075597, -0.982695, 0.626364, -1.309960, 0.933386, 0.260442, -1.596889, -0.332377, -0.856043, -1.780646, 0.949066, 1.224838, 1.253429, 0.581929, -0.976370, 0.691330, 0.942890, -1.146879, 0.973846, -1.096758, 0.571349, 0.353609, -0.553145, 0.220460, 0.184108, 0.217372, -0.264821, -0.595082, 0.080119, 1.349929, 0.027105, -0.027121, 0.054263, -0.982975, 1.446170, 2.331579, -0.759880, 0.853705, -0.432689, 0.476077, -0.995481, -0.768857, -0.180961, -0.228097, 1.353094, 1.048855, 0.979230, -0.047234, 0.850025, -0.503473, -2.035920, -0.313841, -0.547903, 2.376536, 0.734173, 0.339800, -0.380841, 0.264354, 1.214792, 0.935403, 0.270869, -0.477737, 0.250155, 1.353561, -0.521893, 0.990114, -2.849964, 0.108214, -1.129583, -2.077878, -1.281634, -1.994060, -0.167327, -1.245368, -0.722166, 0.044723, 0.276775, -1.719943, -0.173245, -0.295598, 1.996413, -0.646564, 0.345526, -2.659988, -0.253053, 1.581224, -0.810070, -1.273080, 0.115906, 0.304241, 1.065867, 0.925326, 0.310196, 1.217457, -1.108867, -0.425747, 0.040085, 1.439721, -0.502158, 0.486769, -1.126464, 1.885642, -1.185868, 1.393428, -0.405540, 0.761226, -0.377442, 1.831328, -0.374368, 0.934902, 1.483621, -0.407181, 0.332821, 2.564792, -0.588145, -0.616430, 0.441118, 0.762081, 1.253380, 0.526200, 0.001138, 1.033337, 0.457189, 1.456730, 1.011832, -1.610564, -1.335127, 0.538580, -2.329069, 0.334858, 0.306899, -1.379403, -0.874540, 0.895054, -0.173407, 2.950027, 0.971631, -1.451143, 0.453958, -1.714846, 0.168847, -0.295778, -0.621256, -0.682408, -0.349149, -0.207716, -0.506704, -0.909843, 1.437497, -1.492183, 1.342605, 0.979898, 0.123058, 1.993252, 0.736258, 0.167455, 0.346111, 1.255046, -0.426396, 0.415413, -0.925741, 1.198061, -1.563860, -2.812731, -0.427487, 0.808061, -0.399791, -0.636045, -0.166330, 0.506937, -0.195267, 0.802221, 2.710629, 0.351318, -1.696857, 0.102946, -0.332469, -2.173164, 0.574663, 0.286648, 0.332205, 2.505264, -1.407676, -0.248154, -0.074637, -0.372474, -0.168848, 0.551458, -0.436748, -0.785700, -0.615975, -1.463746, 0.618240, 1.172318, 0.719314, -0.706190, 0.619601, 1.672925, -1.006650, 0.291401, -0.403922, 0.185660, 0.628145, 0.289075, -0.540787, -1.473052, 0.662369, 1.942811, -0.976873, 0.791022, -0.468271, -0.722179, 0.887671, 0.462926, 0.168636, -0.111884, 2.179097, 0.006878, -2.150818, 0.979276, -1.293147, -0.074581, 0.711296, -0.122852, 0.877658, -0.044725, -0.557662, 0.917786, -0.568293, -0.333207, 0.618101, 0.920110, -0.218275, -0.960238, 0.446125, 1.195297, 0.892561, -0.543786, -0.476612, -0.332735, -2.045561, 0.525798, -0.488994, -0.511668, 0.766189, 0.320238, 1.192662, -1.408691, -0.199886, -0.453609, 0.476752, 0.387769, 0.349363, 0.512665, 1.072424, 0.202521, -3.094417, 0.978829, 1.320110, -1.099669, 3.760933, -0.868246, 0.970421, -2.039010, 0.128818, 0.614204, 2.883813, 1.009524, -1.260296, 0.323732, -0.288636, -0.039334, -0.331054, 0.466141, -0.019847, 0.315500, 0.946303, -0.701186, 0.208868, 1.905578, 1.813530, -0.406877, 0.756561, -1.263388, 0.526564, 0.905555, -0.134575, 1.493412, -1.782325, 0.455414, 0.169842, 1.062688, 0.125256, -0.137948, -1.418954, 0.563231, 1.467403, -1.734277, -2.149393, 1.765377, -1.069711, 0.250284, 1.955204, 0.056126, -0.578536, 0.495374, -0.581583, -0.634974, 0.237446, 0.718248, 1.093879, 0.026230, -1.528573, 0.203226, -0.559380, 0.896533, -0.830164, -1.336144, 0.985746, 0.755703, 0.336177, -0.652567, -1.192332, -0.262274, -0.816787, 0.801439, -0.620404, -0.129530, 0.975235, 0.592630, -0.184600, 0.575761, 0.726673, -0.565054, 1.453449, 1.685595, 0.032512, 0.389116, -0.248480, -0.622384, 0.729515, 0.628035, 1.294047, -0.715810, 0.566967, 1.540521, 0.390523, -0.589072, 0.273522, 0.746850, -0.958943, -1.404668, 1.155863, -0.061324, -0.094209, -1.279766, 0.620800, -0.373147, 0.749646, -0.374297, -1.341863, -0.732700, -2.753261, 1.004262, -0.388252, -0.961750, 1.525378, -0.700466, -1.034341, -1.490526, 0.761863, -1.286224, -0.509527, -1.837048, 0.730076, -2.229025, -0.965252, -0.992688, -0.624744, -1.930007, -0.703721, -0.157936, -0.878294, 1.383294, -0.851993, -0.486904, -0.819725, 1.408491, 1.992350, 0.330946, 0.065642, -1.090164, 0.312453, -0.671054, -1.732722, 0.386495, 0.360509, -2.479034, 0.738454, 1.864550, -2.404187, -0.840974, 0.016088, 1.276416, 0.224159, -0.558924, 2.318322, -0.500173, -0.007499, 1.157529, 0.408084, 0.558226, 0.391427, -0.894135, 0.374559, -0.246438, -0.794939, -1.658494, 0.198752, 0.150165, -0.733977, 1.360330, -0.422883, -0.825078, 1.249488, -0.503430, 2.928321, -0.970940, -0.238422, 1.105674, 0.268645, -0.757536, -2.832117, 1.159778, -0.680744, 0.545722, -0.618019, 0.426964, 0.659525, -0.364003, -0.557914, 0.128287, -0.885962, 0.746591, 0.220739, -1.686320, 1.409848, -1.198848, 0.414005, -1.289015, 0.039071, 1.442726, 0.119119, -2.721095, -0.255724, 1.155655, 0.450205, 0.959781, -0.548513, -0.159625, 1.268709, -0.402405, -0.584743, -1.953841, -0.358458, -0.063988, 0.321273, -0.633728, -0.635546, -0.645367, -1.162710, -1.873105, -1.761609, 0.400040, 1.024582, 0.535850, -1.133397, 0.185719, 0.049218, -0.851100, -0.349522, 1.882402, 0.508832, 0.378816, 1.768009, -0.615872, 0.188629, 0.418927, 1.611827, 0.846372, -0.649961, -0.576610, -0.109461, 1.213409, -0.444213, -0.402615, 0.002401, 0.017294, 2.214653, -1.525667, 0.533940, -3.034938, -0.460777, -0.608046, 0.830330, 0.175598, 0.913385, -0.988328, -0.213475, -0.911910, 0.298693, 3.005962, -0.212154, 0.444440, -0.473383, -1.745708, 0.960744, 1.191932, -0.420916, 0.621711, 1.021961, -1.601436, 0.918531, 0.139949, 1.481416, -0.061062, 0.053439, -0.519220, 0.871188, 0.513302, 0.266515, 0.853800, -0.881407, -0.290305, 0.743577, 0.601252, 0.549321, -0.445788, -0.355887, 1.400722, -0.672777, 1.057535, -1.233429, 1.094780, 0.965736, -0.310853, -1.678528, 0.619529, 0.793998, 1.398361, -1.662440, 0.856883, -0.448439, -0.494303, -0.231334, 0.405108, 1.856014, -1.669587, 0.095830, 0.240024, -0.081665, 0.703771, -1.326431, 1.203215, -0.540652, 0.586635, 0.405935, -0.129015, 1.709634, -0.594532, 1.196396, -0.810765, -0.898486, -0.071709, 0.274741, 0.522168, 1.036472, 0.283235, -2.342389, -0.718954, -0.724378, 1.057270, 0.040996, 1.079504, 0.155778, -0.543263, 0.488636, 0.835416, 1.129733, 0.045717, 0.769714, -0.689369, 1.411262, 0.053424, -0.320722, 3.737025, 0.334115, -0.546718, -0.401194, -0.093908, -0.627543, 0.441268, -1.078475, -0.099997, 0.791467, -0.549693, 1.726522, -1.363197, 1.009899, 0.470967, -1.025000, -0.039468, -0.063946, 0.809110, -0.131282, 1.050846, 0.236913, 1.290191, -0.414093, -0.196181, 0.161538, 0.000324, -0.512244, 1.178116, 0.559787, -1.255154, 0.012575, -0.182269, 0.481208, 1.452533, 1.996540, 0.237765, -1.373747, 0.694297, 1.338212, 0.056376, -0.643675, 0.089394, 0.658110, 0.801983, 0.654715, -1.295524, 0.649866, -0.185472, 0.883040, -1.665356, 1.524109, 0.993325, -1.131085, -1.507919, 0.027679, -0.431438, -1.304939, -0.597322, 0.875573, -1.776028, -0.806748, 0.365096, 1.099873, -1.329986, -0.409661, -0.611411, 0.584560, -0.425469, -0.192923, 1.074816, 0.410060, -0.075563, 0.451203, -0.304552, 0.856291, -2.022831, -1.491387, -0.794346, -0.054649, 0.162545, 1.042509, -2.013751, -0.948257, 0.661606, -0.650751, -0.457412, 1.092160, -0.289327, 1.670884, -0.861488, -0.591204, -0.187137, -1.193776, 1.215790, 1.147436, 1.071922, -1.774488, -0.675497, 0.020242, 1.699264, -0.011231, -0.333199, -1.276701, -0.412578, -0.221402, 0.494323, 0.297903, 1.705337, -0.953069, 0.622685, 0.502630, -1.629097, 1.255001, 0.994979, 0.401801, -0.034957, -1.494329, -0.275720, 0.354249, 0.694323, 0.841273, -2.125783, 2.278531, 0.315798, -0.107364, 2.079105, 1.692243, 0.612938, -0.893820, 0.543899, -0.892344, 0.675757, -1.231271, 2.586736, 0.082063, 0.256327, 0.137135, 0.696548, -3.044806, 0.485734, 0.511301, 0.835762, 0.972800, 0.772034, 0.160139, 0.321373, 0.923421, 0.472582, -0.154076, 0.207681, -0.660596, -0.222122, -0.435287, -1.143711, -1.292466, 0.259114, -1.448504, -1.483679, -0.457159, -1.510673, 1.513370, -1.326769, 0.093488, -0.485474, -0.224536, -0.119058, 1.135986, 0.571311, 1.076806, 0.064273, -1.800631, -0.070383, 1.340873, 0.022232, -1.405145, 1.304409, -0.175222, 0.700726, -0.313308, 0.301398, 0.025638, 0.412665, 0.110587, 0.451591, 0.923826, -0.219210, 0.211712, 2.477168, -0.085771, -0.427976, 2.043479, -1.397180, 0.010947, -1.855130, 1.131352, -1.571261, -0.176521, -2.018724, -0.402290, -1.580851, -0.310350, -0.410448, -0.332347, -0.899330, 2.239630}, + { 0.215526, 0.409687, 1.090577, 1.284390, -0.443895, -0.714152, 0.315767, 0.888568, 0.661879, -0.378118, 0.491394, 0.381146, -2.141651, 1.659848, 0.274731, -0.042401, 1.469519, -2.239749, -2.884779, 1.371669, -0.242489, 0.618739, -0.570531, 0.812054, 0.403573, -0.736863, -0.607307, 1.559896, -1.401298, -0.096459, -1.228971, 0.525430, 0.029999, 0.888707, 0.318898, -1.716522, -1.438573, 0.131450, -0.207859, -1.537542, 0.437631, -0.964826, 0.942356, -0.485371, 1.239270, -0.705258, -1.657876, 1.358001, -0.981108, 1.574241, -0.239172, 0.025372, -0.591218, 1.421114, 0.276982, -0.741328, -1.946845, -1.316428, 0.098014, -1.208354, 0.949621, 1.258478, -0.917418, 1.090733, -0.434793, 0.209628, 0.087473, 1.699378, 0.677657, 0.290364, 0.487393, 0.359777, 0.168883, 0.157982, 0.116802, 0.430311, -1.595249, -0.242194, 1.038691, -0.121876, 0.342756, -0.134744, -1.266627, 0.429234, 1.108338, 0.844087, -0.793448, -0.595734, 1.908631, 0.023103, 0.224546, -0.467459, 0.203309, -0.487532, 0.327334, -0.172252, -0.097251, 0.722738, 1.358439, -0.625426, 0.551813, -0.885152, -0.036480, -1.561506, 0.969890, 0.314954, 1.270357, -0.908786, 0.626644, -1.183423, 0.495238, 1.294053, 0.262642, 1.773470, 0.739000, 0.604913, 0.249998, -1.579724, 0.131188, -0.421640, -0.661127, 0.194651, -1.287361, -0.727889, 1.336216, 0.567445, -0.242576, -0.834003, -1.084175, 1.338661, -0.289822, -1.501823, -0.225768, 0.803003, 1.277666, -1.051206, 0.718759, 0.773232, -0.344757, -0.589868, 1.761656, -0.386543, -0.485531, 0.284223, 0.317253, 0.080206, 0.680562, -0.561424, -0.307939, 0.399227, -0.571094, -1.235802, -1.406009, -0.195667, 1.482581, 1.638587, 0.210167, 0.806809, 0.654165, 2.281445, 2.721549, -0.397153, 0.152589, -2.169064, 0.073077, 0.398147, -0.826443, -0.444460, 0.887338, 0.744228, 0.689237, 0.515575, -2.476143, -0.847941, 1.280272, 0.949733, -1.523935, -0.862421, -0.595863, 0.373389, 1.517710, -0.122849, 0.533561, 0.304920, 1.962725, -2.324195, -0.536958, -0.710560, 0.847652, -0.075265, 0.630369, -0.847557, -0.275667, 0.589812, -0.088120, 0.184348, 1.373408, -2.342404, 0.590128, 2.212539, -0.748013, 0.286825, -2.621174, -1.965343, 1.485601, -0.775098, -0.737873, 0.177286, 0.724211, -0.484656, 0.665422, 1.447445, -0.304960, 1.784384, 1.218602, 1.531587, 0.290660, 0.338470, -1.146192, 0.130562, 1.913726, 0.841451, -0.896783, -0.061932, 0.196068, 0.985695, -0.285203, -0.919384, 1.206259, -0.824310, -0.594661, 0.368886, 0.279368, -0.724930, 1.702239, -0.165275, 2.310662, -1.160809, -0.654894, -0.973199, -1.714792, 0.106092, 0.362688, -0.501025, -2.444887, 1.329903, 0.425645, 0.547992, -0.594307, 0.619151, 1.220065, 1.261557, 0.529601, 2.124057, -0.890005, -0.578615, 0.843695, -1.269988, 0.911076, -2.132953, 0.944229, 1.238164, 0.877048, -1.880674, -0.302004, 0.237351, 1.398038, 0.648374, -2.184474, -0.817304, 1.594838, -0.492204, 0.963722, -1.084733, -0.491696, -0.541098, -0.539125, -0.840530, 1.209343, 0.024555, 0.377189, -0.804931, 0.750597, -0.505189, 0.838862, -0.732263, 1.575088, -1.572310, 0.303244, 0.875091, -0.013350, 0.384593, -0.192259, 0.027669, 0.324050, 0.141739, 0.773219, -0.507072, -1.411694, 0.716698, -0.605801, -1.219265, -1.373423, 0.696819, -0.549891, -1.106304, -0.468183, 0.829981, 1.125888, 0.514679, 0.389891, -1.035506, 1.626298, 0.479780, 1.553569, -0.139646, -0.039229, -1.672482, 0.332797, 0.658391, 0.248132, -1.151248, 0.183991, 0.592306, 0.118701, -0.731253, -0.957688, -0.444323, 0.087313, 1.254458, 0.024000, 0.311122, -0.023393, 2.856555, -0.444776, 0.351659, -0.126721, -0.370785, 0.172592, -1.251775, 0.019289, 1.744605, 1.730600, 0.573293, 0.526800, -0.545828, 1.191950, -0.450589, -0.464514, 0.787549, 1.442910, 0.633606, 0.266706, -0.729220, 1.059399, -1.269086, -1.980263, -1.133950, 0.766747, 0.808979, 0.507097, -0.321702, 2.328300, -1.054596, -0.840321, 0.446925, 1.644660, 1.123069, 0.084649, -0.628663, 0.251455, 0.321945, -1.282532, 0.472390, -0.221070, -0.925060, 0.517071, -1.907875, 0.977885, 0.046137, 0.198761, 0.655464, 1.650469, 0.526895, 0.333946, -1.207398, -0.354559, 2.111474, -1.124213, 0.569844, 0.791649, -0.349399, 0.013586, 0.423925, -0.285861, -0.776608, 0.392645, -1.757199, -2.091754, -1.639829, -0.687267, -1.510223, 0.562150, -0.586711, -0.255652, -1.218108, 0.820028, -0.149810, -0.264409, -1.614063, -0.788424, 0.319706, 2.455064, 1.815266, 1.791533, 0.056187, 0.504798, 0.696144, -0.760468, -0.580104, 0.379410, 0.008530, 0.024751, -1.494168, -0.630858, 0.184618, 1.128394, 0.975188, 0.484422, 1.461507, 0.580571, 0.383921, -0.208277, 1.209061, 1.441022, 0.824912, -1.184958, -1.296562, 1.095398, -0.084726, 1.096537, 0.952094, -0.967616, -0.210287, -1.315215, -0.178997, -0.717847, -0.414805, 0.382811, 0.643747, 0.770611, 0.447813, -1.089983, -0.817322, -0.265966, 1.426679, -0.320748, 0.124349, -0.274980, -0.327261, 0.168765, 1.875293, 0.108007, 2.061271, 0.367762, 0.048799, 0.280124, -0.985575, -0.391178, -1.255338, -0.245916, 1.342777, -0.006230, 0.748332, -0.630073, 0.391469, -1.078841, -0.750995, 0.017830, -0.424541, 2.703267, -0.801087, -0.007799, -0.928106, -0.764780, -1.052843, -1.950055, -0.977156, 0.597246, -1.323303, 2.779191, -0.043662, 0.741630, -2.045099, 1.160139, -0.043264, -0.232956, 0.460806, 1.174063, 1.328879, -0.746572, 1.134981, -0.242134, 0.046758, -0.292247, -1.137849, -1.321586, -1.608515, 0.344015, 1.348575, 0.528033, -0.734853, -0.152848, 0.505122, 0.645917, -1.228281, -2.010693, 0.610686, -1.266320, 0.201763, -0.250365, 0.094915, -0.186679, 1.469444, -1.496231, -0.522801, 2.402463, 0.567516, -0.009150, -0.523192, -0.444408, -0.210184, 0.608853, -0.243902, -1.027415, 2.256664, 0.225927, -0.409782, 1.603983, 0.639988, -1.444623, 1.215515, 0.370909, -2.659801, -0.133965, 1.211606, -0.552721, -2.004376, -0.534112, 0.948225, 1.533206, -0.109470, 1.053581, -1.558025, 1.001784, 1.315789, -1.869034, -0.464723, -0.514585, -1.475670, -0.390842, -0.800514, 1.035593, -0.453677, -0.693146, -0.300582, 0.286678, -1.212606, 0.506452, -1.257111, -0.257762, -1.685929, -0.605514, -0.165717, 2.056473, 0.690541, 1.117693, -0.116535, 1.341526, 0.081507, -0.847239, 0.870075, 0.125081, 2.057704, -0.471227, -1.446838, -0.323346, 1.169628, -1.865229, 0.109203, 0.897338, 1.013952, -0.790778, -1.430827, -0.089008, 1.125302, 0.885649, -0.622544, -1.191232, 1.171044, -0.293059, -0.953648, -1.724933, 1.667446, 0.117274, 0.580746, -1.088211, 0.400539, 1.989319, -1.089085, -1.721010, -0.454090, -2.126140, 1.762848, -0.044468, 0.730620, -1.003890, -0.133218, 0.923187, -0.275271, 0.955659, 0.762678, -0.617991, -0.502057, -0.330033, 1.109693, -0.405314, 0.941613, 0.297915, -0.316818, -0.334987, -2.128098, 0.760758, -2.404556, 0.694712, 1.006909, -0.806457, 0.429200, -0.135113, -0.428558, -2.391591, 0.520649, -0.134281, -0.552818, -0.590171, 0.959968, -0.347834, -1.641266, -0.315221, 0.238038, 0.642173, 1.702436, 0.503674, -1.460577, 2.077308, -1.210378, 0.648018, 0.219434, -0.387740, -0.045143, -0.255279, 2.180543, 0.392957, 0.606058, 0.042986, -0.133739, 0.079767, 0.728225, -0.369480, 1.990511, 1.951053, -1.796045, -0.437872, 0.220161, 2.258023, 1.164245, -0.964507, 0.327755, 0.586533, -0.321083, -1.278273, 0.038869, 0.979405, -0.196651, 1.142382, 1.647521, -0.512052, 0.032099, -1.014324, 1.763835, 0.554408, 0.773176, -0.877646, -0.202161, 0.168884, -0.805045, 1.684020, -0.113639, 0.968029, 0.193183, 1.008574, -0.881452, 0.533242, -1.502287, 0.874110, -2.268507, 0.039742, 0.178377, 1.938643, -0.483449, -0.424959, 0.262304, -0.063234, 1.110842, 0.909550, -1.274071, -0.384946, -1.642151, -0.370299, -0.395374, -0.432394, 0.026096, -0.297272, -0.492284, -1.172588, 0.242709, -0.671642, -2.635369, 0.065189, -0.924473, -0.461338, 1.017893, -0.288359, -0.381257, 1.757639, -1.244236, -1.955964, -1.094910, -0.863250, 2.525353, -0.847405, 0.157933, -2.216475, -0.229354, -1.765684, -0.286490, 1.390844, 0.448352, -0.123708, 1.667295, -0.224747, -0.290958, 0.127682, -0.431860, -1.520321, -0.855510, -0.098453, 0.707583, -1.565375, -0.592337, 0.717365, 1.006152, -0.285100, 1.055439, -1.208744, 1.158231, -0.102353, 1.110858, -1.680240, -1.241536, -0.090199, -0.535791, -1.232482, 0.333296, 0.792687, 0.258559, -0.808445, 0.017835, -0.458580, -0.993009, 0.016877, -1.052566, -0.180243, -0.274847, 0.249871, 0.854491, -0.542793, 1.281983, 0.060651, 0.882659, -0.972052, 0.368850, -1.472626, -1.398788, 0.569506, 0.135378, 0.661532, 0.960308, 0.346836, 1.322929, -0.769475, -0.946452, -0.137453, -0.255544, 0.345758, 0.054648, 0.768222, 1.321258, 2.193244, 0.157683, -2.097032, -0.308244, 0.994474, -1.465687, -0.816525, -0.059932, -0.910100, -0.924102, -2.501485, -2.023931, -0.089502, 0.118357, -0.642399, -0.459127, -1.448807, -1.331231, -2.319405, -0.672232, 1.675503, 0.414436, 0.475847, 0.342908, 1.383391, 1.022649, 0.259385, -1.300424, 0.032352, -0.361868, -0.401489, -0.561796, 0.891509, -1.144855, -0.203157, -1.069639, -0.026518, -0.032882, 0.202650, -0.021077, 0.332323, 0.202566, -0.996003, -0.143474, -1.708193, -1.178839, -0.677753, 0.770777, -2.808321, -1.723194, -1.114263, 0.935693, -0.756451, 1.096376, 0.115079, -1.848553, -0.311637, 1.057739, 0.285823, -1.033255, 2.255218, 1.166718, -1.921084, 0.445740, -0.969527, -0.283456, -0.519922, -0.768153, 1.191599, -0.608625, -1.323167, 1.197788, -1.339941, -1.580676, 0.389420, -0.081545, -0.163071, 0.856741, -1.025109, 0.034694, -0.623315, -0.426157, -1.430034, 0.517623, 0.069557, -0.803295, 1.232607, 0.937826, -1.197361, 1.051320, 0.111778, -0.001501, -0.599958, 1.131125, -0.683545, 0.582016, 0.372488, 0.064898, 0.448231, -1.881346, -1.385846, 0.358479, 1.215059, 0.423351, -0.412440, 1.577109, -1.023484, -0.658138, 1.277607, -0.218418, 0.806153, -0.437055, -1.515893, -0.800413, 1.738311, -1.632171, 1.488078, -1.186968, 0.798200, -1.494786, -0.826610, 0.432156, -1.376811, -0.194391, -1.111517, -0.997802, -1.341224, 1.130931, -1.788718, -0.361256, -0.516990, -0.858377, -0.382740, -0.352580, 1.519040, -2.463658, -0.688308, -0.500208, -0.705716, 0.526880, -0.007087, 1.155106, 1.236264, 0.501416, -1.005087, -0.556965, -3.246709, -1.401517, -0.091952, -0.742592, -0.322930, 0.353769, 1.162223, 0.061415, 0.614157, -1.296113, 0.641029, -2.000750, 0.457017, -0.621151, -0.373225, -0.300704, 1.588292, -0.164885, 1.343357, 0.823190, -1.586133, -1.329151, -1.388770, 1.012856, 0.048738, -2.252189, 1.230156, 0.245486, -1.433923, -0.781839, 0.525623, -0.216360, 1.378616, 1.474120, 0.324505, 0.432831, -0.478019, 0.361902, -0.879731, -0.702594, 0.918976, 0.264621, 1.413158, -0.081483, -1.573399, 1.158298, -0.551471, 1.253169, -0.185677, -0.107998, 0.770443, -0.376316, -0.838529, 0.433162, 0.026594, 2.466477, -0.003319, 0.571013, 0.252861, -1.138378, -0.053517, 1.686115, -0.398142, -0.788622, -2.212894, -2.485452, 0.163717, 1.372369, -0.156663, -0.817710, 0.134928, -0.288723, 1.579318, 0.862981, 1.475901, 0.642998, 1.942027, -0.247006, -0.209726, -0.565866, 0.746501, -2.180773, 1.830703, -0.735790, -0.687317, 0.151874, -0.892058, -0.625031, -0.073330, 0.457156, 0.604909, -0.573194, 0.296077, -0.817185, 0.086462, -0.067895, -0.039239, 2.036558, 0.659676, -1.750774, -1.657719, -0.342077, 0.828040, -0.218217, 0.341273, 0.768648, 1.638704, 0.480082, 0.163326, -1.009666, 1.127986, 1.652022, -0.926505, -0.415893, -0.502100, -1.487358, 0.943948, -0.582394, -0.006399, 0.020851, -1.035298, -0.025250, -0.273905, -0.808316, -0.896657, -0.594424, 0.132331, 1.214450, 0.955524, -0.028458, 0.700578, 1.578847, -0.248341, -0.043361, -0.744196, 0.491708, 0.451855, 0.486870, -0.183737, 0.219905, -1.143850, 1.566988, -0.071987, -0.700852, 0.477891, -0.071482, -0.636200, -0.393090, -0.694712, 0.521038, -0.210377, -0.820508, 0.749455, 0.400095, -1.316975, 0.195551, -0.060133, 1.725454, -0.509454, -0.189660, 0.015514, 0.513824, -1.241690, -0.139606, -0.389594, -0.521856, 0.659106, 0.091151, -0.063307, -0.926116, -1.067691, 1.094069, -1.472976, -1.206515, -0.652420, -0.645442, 0.882400, 0.509408, -0.268381, -2.229294, -0.013026, -0.250545, 0.587841, 0.598210, 1.030295, 0.203128, -0.074070, 0.148443, -0.255762, -1.353261, 0.259660, 0.109063, -0.834556, -1.678485, -0.081257, 1.847502, -0.793448, -0.671264, -0.609430, -0.225229, 1.194668, -2.142647, -0.301831, 0.144198, -0.286981, -0.227017, 1.146484, 0.969552, 0.444497, -1.499727, 1.202141, 1.892412, 1.057104, 0.069021, 1.010058, -0.056464, 2.582227, 1.587931, 1.066392, 0.075603, -0.926556, -0.503028, 0.613689, 0.759321, 0.040764, 0.152003, 0.645159, -0.580707, -0.392102, -0.124450, 0.785647, 0.361350, 0.147895, 1.394039, 0.194579, 0.307239, 0.383617, 0.758921, 0.414603, 0.165687, -0.584064, 1.170731, 0.405003, 0.685907, 2.390799, -0.868503, -0.098989, -1.712308, 1.194371, -0.048315, 0.614916, -0.489928, 0.346802, 1.451657, 1.975864, -0.800130, 2.121416, -0.307172, -0.824498, 1.686137, 0.549244, 0.379609, 0.442180, 0.373309, 1.043499, -0.021378, 1.379571, 0.000267, -0.451712, -0.351838, -0.866344, 0.819697, 0.122006, 1.096637, 2.056359, -0.362726, 0.191419, 0.870262, -1.457161, 0.248544, 0.855738, -0.012741, 1.478993, 0.184996, 1.234769, 2.167047, -0.939672, 0.602766, 0.934562, -0.014570, -1.999102, -3.062107, 0.836055, 0.041882, -0.437758, -0.484503, 0.994074, 0.697129, -0.443108, 0.162213, 0.325198, 0.124355, -0.460723, 0.339314, 0.134089, 1.551752, -0.095550, -0.063724, -0.015791, -0.276509, 0.052369, 2.603693, 0.670819, 0.655814, 0.082338, 1.764855, -1.679282, 2.586894, 0.418570, 1.323765, -0.046842, -1.016706, -1.532464, -3.083884, 0.880264, 0.985276, -1.691294, 0.490612, -0.864165, -0.677113, -0.030039, 1.048128, 0.669624, -0.913215, -0.499514, 0.615481, -2.045200, -0.076723, 0.655092, 0.669336, -0.884637, -1.511737, 2.484194, 0.248792, 1.828093, -1.529002, 0.489484, 0.176503, 0.282867, -0.353277, -1.530048, -0.754777, 0.889164, 1.411853, 0.733316, -0.997560, -0.118776, -1.831560, -0.293512, 0.567134, -1.239579, 0.092686, -0.383221, 1.106445, -2.029706, 1.227761, -0.065230, -0.070819, 0.063700, -1.545889, -0.609804, 0.103543, -0.361434, -1.413659, -0.792959, 0.693514, 0.204043, -1.018965, 0.333156, -0.692810, -0.177673, 1.074405, 0.931773, 0.178869, -0.026446, 0.292933, 0.125466, -0.383934, -2.292668, 1.262278, 0.587652, 1.168831, -0.529552, 0.420525, -0.244645, -1.461413, -0.232143, -0.854636, 0.691233, 1.143959, -0.345770, -0.760621, 0.896223, 1.021508, 2.118889, 0.235334, 0.752007, 1.085539, 1.505048, -0.239947, -0.429589, 1.805496, -0.850099, 0.039863, 0.277523, 0.308294, 0.507762, -0.124795, 0.228292, 0.589119, -0.626600, 0.302390, 1.000681, -1.110624, 0.011245, 0.555126, -0.124923, -1.315564, -0.803948, 0.754076, 1.209961, -0.748276, -1.142321, -1.109545, 1.134664, -0.691139, -0.821681, 0.369507, 0.335223, 0.920039, -1.395745, -0.081197, -0.135818, 0.670715, -0.300580, -0.293027, -0.335465, 0.772664, 0.520559, 0.442321, -0.467094, -2.086877, -1.358403, -0.736647, -0.826193, -0.599340, -0.709136, -0.131113, -0.926805, 0.235563, -0.101005, 2.132939, -1.129712, 0.961447, -0.070056, 0.975534, -0.728768, -0.292780, 0.193257, -0.754030, -0.965858, -1.042966, -0.358241, 0.471086, -1.460669, 0.659803, 2.253143, 0.136926, -0.747529, 1.854699, 0.634318, 0.783782, -0.223771, -0.983902, -0.280566, 2.059870, -0.477349, -0.925735, 1.333361, 1.089206, 0.010783, -1.390652, -0.381102, 0.647599, -1.066928, 0.034040, -0.736709, -0.951869, 0.626464, -1.797066, 1.115187, 0.249182, 0.081012, 0.169224, 1.151347, 2.275723, -1.046090, -0.341469, 0.348073, 1.847364, 0.050262, -0.833690, -0.127317, -0.057094, -0.859533, -0.121262, -1.323238, -1.576253, -0.441365, 0.459771, -0.655628, 1.179278, -0.022809, 0.184701, -2.242171, -0.907094, 0.489172, 0.067545, -0.780055, -2.549345, 0.184071, -0.491682, 0.223546, -0.783855, 0.201982, -0.637991, -0.876240, 1.252950, 0.871007, 0.957187, -1.346993, -0.005290, 0.312164, -1.137911, 0.163860, 0.103693, -1.206473, 0.009878, -0.560544, -0.699462, -0.431874, 2.119383, 1.884245, -0.310283, -0.239128, 0.773550, -0.809804, 0.022359, -0.339350, -0.951088, 0.013271, 0.843047, -0.568087, 1.865957, 0.420166, -1.683779, 0.119009, -1.618859, -0.010193, 0.718180, -0.323054, 1.349273, -1.210256, -1.202170, 1.161680, -0.070676, -0.455043, -0.452460, -0.077578, -2.125447, -1.221543, 1.133323, 1.134496, 1.269879, -0.660881, -0.708263, -2.589172, 0.003032, 1.374543, -0.291193, -0.763558, 2.049241, -1.635722, 0.826477, -1.069943, -0.385124, -0.390756, 0.021900, -0.150958, -0.081160, -0.250842, -0.232988, -0.769619, -1.206194, 0.849727, -1.970435, 0.130768, -0.255192, 1.358436, 0.241943, -1.576258, 0.766893, 0.069999, 0.111474, 0.972710, -0.098071, 0.070465, 2.133102, 1.403134, 0.416877, -1.710649, 0.693160, -1.163625, 0.838613, 0.289775, 0.417074, -1.815509, -0.825076, 0.150734, 0.899996, -0.032763, 0.698843, -1.519382, 1.281217, 0.477165, 0.407152, -0.779808, -0.087592, 0.376436, -0.467222, -0.168517, -2.635919, -0.443967, 1.371368, -1.887900, 1.305160, 0.873235, 0.562571, -0.092908, -0.487836, 0.110391, -0.569558, -0.002502, 0.526793, -0.248105, 1.168055, -0.698943, 0.513245, 0.728842, 0.937866, -0.917170, -1.378272, 0.036771, 1.026837, 1.016515, -0.501218, -0.383180, -0.477574, 0.668696, -0.017425, -0.826452, 0.152596, -0.647734, 0.356314, 1.151152, 0.346476, -0.929904, -0.770230, 0.171785, 0.825979, 0.835939, -0.077715, -2.662733, 1.606701, -1.052464, 0.925932, -0.317228, 0.371747, -0.668617, -0.889411, -1.118494, 1.404940, 0.321819, -0.989746, 0.355479, -0.969718, -0.282688, 0.354737, 0.996871, -1.775097, 1.196968, 0.175402, -0.196606, 0.720390, -0.564264, -0.199813, 0.830804, -0.718857, -1.115281, -0.367434, -0.590242, -0.884453, -1.167186, 0.362664, 1.193130, -0.134935, 0.040016, 0.471594, -0.029202, -0.079935, 0.470370, 0.773220, -0.944670, 0.011659, -1.037966, -0.355533, -0.245826, -1.105482, -0.393431, -0.685624, -0.447764, 1.314059, 0.583516, 0.863686, 2.407028, 1.963878, 1.249560, -0.603713, 0.136930, -1.960294, 0.764152, -1.764827, 1.600102, 1.402238, -1.930404, -2.069935, -0.323020, 1.434861, -0.024505, 1.639371, -0.869789, 1.477323, 1.135863, -0.275957, -1.427724, -0.474597, -0.697166, 0.031444, -0.182610, 0.580252, 1.378908, -0.592142, -1.013766, 0.708260, -0.411173, -1.669188, 0.214352, 0.530379, 0.384734, -0.467388, 0.152544, -1.126870, 0.751713, 0.825835, -0.856399, -0.349525, 0.596411, 0.209471, 1.048846, 2.011240, 0.869305, 1.688344, 0.481364, -0.674637, 1.655523, -0.504955, 1.375414, -0.899070, 0.921803, 0.668855, -0.575212, -1.217952, -0.684426, 0.776293, 0.655341, -0.178579, 0.254072, 0.642273, 1.294120, -0.456202, -2.401520, -0.570037, -0.284565, 0.925649, -0.328716, -0.477087, 0.555397, -0.898981, -1.219818, 1.142041, -0.992577, 0.963866, 0.745103, -0.917099, -0.803860, -0.425954, -1.770569, 0.821092, 0.023804, 1.394199, 0.062054, 0.293096, -1.161723, 0.553333, -0.382304, 0.651286, 0.051147, -0.910003, 0.716218, 0.986469, -0.406245, 1.451947, 0.642835, 1.089073, 0.034317, -1.462316, -1.143331, -0.237661, -0.208912, 0.305806, 1.452965, -0.879447, 0.729194, -0.606299, -0.608398, -0.595802, -0.578015, -0.962638, -0.155991, 0.036153, 0.041575, -1.836295, -1.002044, -0.932044, -1.943924, 1.097203, 0.500498, 0.260159, 0.262574, 0.054241, 1.267477, 0.629421, 0.157334, -0.170415, -0.711940, 1.492200, 1.699990, 0.100161, 0.092665, 0.045178, -0.167723, -2.228888, 0.690801, 3.178783, -0.471750, 0.979191, -0.091581, 0.878568, 1.013884, -1.499635, 0.190814, -0.523611, 0.574730, -0.228934, -0.612265, -1.111084, 1.006232, 0.168245, -1.586754, -0.198956, 1.359465, -1.532432, -0.020501, 0.444119, -1.031989, 1.943666, 0.915422, -0.528047, -1.319455, 1.476458, -0.114648, 0.260942, -0.290624, -1.365153, 1.220013, 1.739173, -0.884591, -0.311935, 0.895139, 2.124000, 0.809081, 0.122250, 0.900173, -1.107341, -0.382639, -0.868294, 0.267172, -0.193652, 1.249253, 1.334527, 1.212083, 1.424260, 0.238047, -1.102748, -1.130090, 1.109188, 1.292264, 1.105654, -0.646433, 0.206001, 0.448993, -0.848331, 0.227715, 0.255743, -0.994256, -0.586690, 0.332206, -0.060952, 0.237096, 0.153788, 0.039904, 0.013875, 0.935502, 0.797832, -1.658050, -0.004258, -0.599840, 0.907895, 2.584532, 0.226527, 1.493728, 0.859255, 1.742152, 0.198928, 0.715648, 0.621666, 0.167731, -1.255455, -0.083675, -0.316686, 0.409321, 0.670470, -0.658500, 0.683854, -0.118325, -0.397763, 0.243729, -0.724450, 0.027943, 1.225274, 0.390489, 0.114298, -0.628702, -0.727040, 1.297067, -0.452637, -1.055542, 0.357361, -0.341779, 1.232228, -2.378134, -0.676153, -0.651552, -0.583518, 0.580130, -0.627089, -0.518449, -1.272684, -0.480655, -0.851650, 0.923456, 0.047600, -0.311547, 0.542470, -1.479399, 0.502507, -1.252304, -1.736591, 0.510541, 0.849439, -0.175782, 2.194941, 0.420460, -0.330983, -1.207235, 0.348202, -0.761330, 0.535848, -0.622559, 0.504933, 0.707736, 0.228179, -0.596705, 0.145535, 0.064016, -0.239805, -0.869842, 0.505505, -0.819694, 1.017025, -1.457328, -0.388074, -1.254925, 1.345761, 1.075628, 1.126306, 1.318628, 0.517584, 0.583347, 0.119370, 1.084038, -0.536976, 0.932438, -1.333803, 0.780143, -1.716030, -0.746357, 0.569783, 0.690122, 0.624560, 0.288446, -0.357612, 0.275874, -0.231410, 1.159869, -0.232078, -1.045614, 0.326911, 0.010868, -0.261499, 0.588526, -0.455283, 0.834353, -0.322870, -0.520326, -1.866695, -1.389329, 0.785433, -1.594460, -0.224048, -0.645424, 0.152975, -1.531449, 0.025476, -0.456286, 0.615203, 0.446318, 1.364365, -1.190657, 0.297397, -0.327780, 0.601037, 0.204353, 0.921812, 0.623565, -1.373476, -0.205644, 1.579392, -1.848161, -0.224851, -0.240060, 0.298799, 1.583137, -1.163625, -0.644821, 1.342111, 0.240797, 0.155692, -0.042242, -0.099019, 0.363295, -0.903435, -0.763621, -1.219778, -0.002932, -0.004644, 0.511764, 1.010026, 1.182569, 1.839652, -0.883435, 0.699895, -0.753271, 1.210875, 0.313228, -1.005221, -0.009763, 1.319516, 0.271890, -1.649399, -1.554593, 1.078896, -0.584072, 0.719301, -0.049780, -0.411100, 0.581009, 0.588794, 1.255456, 0.211355, -0.295650, -0.832455, -1.573096, 0.479604, 0.593566, -0.007378, 0.561407, 0.174641, -0.601172, -1.420507, 0.396548, 1.086147, 1.227184, -0.969450, -1.034578, -1.328464, -0.701328, 0.948463, -0.536291, 0.741851, -0.646355, 1.021293, 0.014685, -0.468256, -0.762503, -0.521679, 2.090613, -0.627514, 0.044559, -0.660399, -0.050978, 0.520121, -1.608869, 0.466022, 0.774560, -0.084939, -0.237280, -0.817611, 0.097433, 1.780326, -0.042369, 0.218104, -1.924261, -2.453564, -0.783244, -0.609415, -0.691479, -0.432772, 0.127424, -0.118426, 0.230674, 0.376825, -0.240952, -1.366481, -0.558497, 1.531982, 0.312676, 0.872276, 0.812003, 0.112635, -0.250098, 0.911172, 0.334255, -0.140110, 1.243345, -0.042916, -1.327921, -1.005275, -1.759005, -0.409960, -1.298047, -0.212342, -1.939041, -1.371567, 1.240323, -0.156768, -0.030067, -0.892907, -1.637912, 0.947901, -0.893309, 0.944868, 0.061281, -1.313328, -0.273755, -1.008788, -0.189900, -1.112637, 1.055042, -0.251166, 0.300634, 1.076443, 0.216106, -0.979619, -0.943813, 1.527772, -1.776765, -0.572363, 1.575817, -0.354269, -0.366452, 2.317779, 1.963819, 0.438990, -0.009267, 0.752277, 0.294481, -0.475410, -0.126440, 0.520476, 0.872037, 0.102665, 0.550963, -1.597754, -0.239744, 0.536493, -0.059908, 1.464155, -0.365598, 2.081636, 1.046194, -0.697959, 1.316137, -0.207011, -1.426455, -0.066890, -1.811115, -2.248960, 0.495439, -0.862826, -1.048286, 0.016982, 0.857296, -0.655038, 0.430638, -1.224254, -0.292219, 0.236193, -0.227442, 0.068886, -0.176626, -1.211392, -0.686670, -1.399701, -0.317798, -0.041195, -0.415086, 0.215100, 0.253729, 0.984783, -0.892666, -0.670144, 0.636513, -0.651808, 0.239026, 1.166360, 0.195195, 0.065416, 0.457298, 0.256362, 0.373982, -1.019415, -0.482686, -0.733508, -1.427073, -0.351301, -0.015488, -0.454394, -0.555732, 0.693100, 1.045300, 0.251824, -2.150941, -0.408488, -1.130578, 0.132782, -1.222120, 0.145286, 1.414029, 1.586272, 1.149507, 0.916164, 1.288986, -1.145974, -0.569088, 1.095419, -0.108150, -0.174729, 1.512104, -0.006734, -0.869491, 0.895498, -0.811957, -0.217575, 1.637164, -1.634348, 0.620743, 0.888118, 1.892549, 0.773420, 0.598146, -1.852917, -1.056665, -1.662740, 0.255003, 0.310103, -0.644412, 1.604974, 1.427575, 0.130699, -1.869343, 0.854463, -0.653925, 0.555020, -0.130678, -0.122508, -0.965340, 1.138242, 0.024706, -0.413502, -0.977291, -1.410377, -0.644195, -0.360841, 0.596111, 1.242855, -0.714326, -1.001468, -0.624330, 1.584285, -0.261695, -0.186246, -1.561328, -1.339776, 0.498851, -0.705343, -1.252191, -1.015443, -0.339083, 1.125707, 0.860839, -0.456129, 1.127978, -0.093683, -0.853182, 0.271991, 1.544041, 0.385966, -0.552438, -0.826700, 0.039950, 0.486117, -0.055656, -0.508313, -0.386223, -1.781433, 0.941494, -0.592670, -0.732907, -0.981484, -0.978035, -0.044344, 1.359935, 1.122442, 1.061323, -0.056971, -0.746469, 0.945427, 0.582139, -1.849123, 0.024323, -0.679553, 1.661885, -0.673908, 0.333670, -1.303043, -0.697432, -1.543814, 0.755402, -0.732005, -0.609869, 0.024949, 0.197553, 1.185196, 0.069908, 2.070246, 1.600696, -0.395498, 1.830148, 0.428590, -0.269128, 0.252366, 0.189775, -0.288149, 0.329578, -2.089698, -0.137646, -1.531805, 1.486898, -0.571482, 1.388253, -0.864255, -0.232366, -0.501235, 0.968501, 0.476637, 1.052884, 0.619504, -0.327639, 2.021117, 0.823085, -0.813734, -1.443214, -0.476092, 0.474827, -1.032771, 0.716678, -0.279465, 0.156513, 0.040222, -0.278429, -0.817530, 0.302085, 0.012087, 0.759180, 1.162755, 0.725857, 0.861115, 1.809386, 0.189444, -0.862537, -2.019403, 1.737620, 2.273687, -0.471675, 1.257850, -0.333957, 1.050470, 1.073569, -0.368401, 0.574880, 0.218980, 0.881007, 0.205540, 0.417014, -1.045070, 0.405112, 1.143455, -0.851155, 0.163187, -0.713153, -0.824800, -0.677649, 0.419207, -0.044194, 0.904325, 0.361816, 1.237960, -0.084671, -0.457539, 2.137868, -0.651512, 0.119583, 0.095580, -0.706505, 0.672408, 0.034789, -0.202316, -0.293749, 0.814040, -0.176213, 1.163455, -1.395970, -1.259473, -0.360192, -0.872294, -1.320841, -0.586296, -1.679480, 0.070189, -1.681707, 2.148804, 1.263430, -0.997677, 0.892254, -0.582487, 0.119697, 0.408570, 0.337620, -0.034242, -0.135178, 0.468472, -0.150095, 0.179880, -0.393807, -0.298719, -0.893199, 0.097906, 1.704552, -0.106102, -1.682609, -0.001165, -0.871014, 0.676982, -0.057556, 0.350105, 1.229497, -1.660906, -0.284743, -0.785707, 0.996753, 0.027921, 0.366087, 1.697635, 0.920058, 1.003479, 0.940503, 0.492025, 0.520869, 0.274150, -0.539325, -1.139099, -0.568214, 0.291964, 0.516073, -0.994434, 0.117096, -0.739131, 0.273728, -0.043684, 0.473670, 0.123353, -0.835332, 1.952643, 0.461936, 0.756102, 1.131996, -2.325601, 0.144159, -0.210208, 0.650898, 0.115322, -1.121759, 0.496250, -1.309874, 0.719618, 0.939504, -0.689501, 0.325573, -0.019311, -1.463487, 0.426812, -0.656452, 0.620304, -0.214105, -0.791543, 0.639607, -0.579832, 1.511132, -1.921710, -0.667541, -0.232645, 0.233391, 1.506898, 0.044548, 1.492787, -0.011968, -0.735064, 0.528656, -1.058878, -1.420150, 0.281208, -0.911660, -2.482220, -0.309171, 0.466939, 1.435056, -2.126456, -0.711082, -0.647985, 0.736647, -0.819562, -2.065506, 0.290806, 1.071992, -1.302422, 0.201957, 0.403350, 0.930369, 1.994595, -1.094654, -1.168588, 0.590359, -0.815489, 0.874194, 0.273626, 0.440372, -0.333655, -1.022662, 0.458211, -1.093762, 0.966380, 0.216216, -0.304417, 0.862420, -0.035982, -0.677469, 0.414306, 0.140019, 0.991254, -0.586161, -0.302892, 0.136783, -0.455145, -1.316959, 0.450435, -0.917744, 1.279734, 0.010010, -0.449727, -0.158288, 0.277216, -1.380270, -0.705990, 1.898329, 1.633801, 0.797343, 0.333826, -0.916517, -0.343819, -1.941551, -2.659954, 0.899938, 1.646713, 0.240902, 0.930502, 1.896860, 0.822185, 0.376799, -1.321127, -0.177624, 0.442824, 0.168674, 0.181087, 0.910120, 0.716105, 0.176247, 0.523385, -1.585621, -2.269039, 1.365178, -0.000903, 0.439503, 0.823428, 0.105879, -0.319020, -1.256909, -0.091339, 0.470377, 1.826246, 1.049592, 1.058657, 1.147809, 0.005518, -0.229537, 0.751820, -0.600997, -0.475272, 0.040907, 0.940435, 1.010874, 0.172369, -0.338131, -0.002675, -1.900991, -0.249206, -0.061160, 2.119178, -0.562272, 1.355101, -0.153558, -0.173012, 0.629839, -0.287610, 1.092384, 2.102783, -0.240033, 1.108734, -0.414165, 0.521104, 1.469408, -1.506161, -1.031272, -0.820187, -0.470265, -0.251875, -1.109841, 0.575056, 0.753598, -0.682367, 0.761866, -1.722160, -0.186837, -0.678390, 0.411942, 1.241272, 0.055214, 0.008162, 2.022293, -0.855282, 1.381054, 0.932051, -2.634721, -1.812392, -0.629672, 0.906354, 0.131617, -0.219392, 0.436579, -0.575038, -0.449251, -0.099989, 0.980274, 0.816991, 0.993293, -0.150170, 0.700800, 1.470074, -2.663074, -1.169814, -0.214794, -1.351583, 0.119720, -0.308005, -1.755427, 1.405712, 1.739113, -1.767692, -0.761572, -0.996369, 1.599346, 2.062212, 0.998300, 0.465828, -1.459449, -1.149142, -0.495526, 1.057950, 0.409852, -1.400118, -0.108800, -1.567302, -0.448069, 1.259582, -0.509495, -0.211012, -0.791084, -0.664852, 0.482233, 0.364763, -0.332307, 0.778693, -1.105056, -0.193468, -1.587775, -0.516265, -1.775565, 0.442435, -0.592751, 0.358167, 2.195438, 0.945585, 0.922516, 0.655586, -1.268811, 0.704422, -0.826508, -0.408747, -0.613750, 1.005483, -1.348624, -1.602620, 0.245705, 0.908893, -0.437051, 1.016272, -0.014419, -0.672794, -1.119709, -0.666124, -0.878984, 1.375063, -0.313656, -0.363759, 0.405344, 0.106491, 0.546738, -0.257917, 0.175730, -1.764664, 0.182478, 0.515303, -0.785181, 1.763464, -2.880225, -0.980999, -0.938217, -1.212937, 1.281045, -1.720786, -0.457808, 0.144417, -0.550054, -0.191556, 2.251851, 1.513575, -2.429590, 0.101762, -3.759408, 1.280609, -0.539650, 0.135571, -0.548838, -0.225000, -1.078143, 1.464744, 0.404280, -2.346449, -0.783903, 1.049154, 1.820471, -2.347962, 0.573997, -0.555419, 0.507236, -0.154260, 0.434660, -0.871840, 2.120586, -1.256035, -0.017529, -0.559575, 0.421102, 0.585003, 0.585159, 0.908434, 0.514332, -1.128788, 0.401680, -1.013912, 1.067575, -1.516495, 0.169177, -0.097426, 0.192956, -0.718959, 0.582367, 1.360153, 2.147080, -0.720380, 0.981351, 0.097823, 0.379249, 1.726984, -0.504502, 0.427244, 0.162551, 0.186997, 1.235908, 0.173754, 0.327032, -0.435981, -1.166288, 1.764825, 0.599417, 0.931381, 2.012013, -1.481371, -1.087629, 1.364344, 1.001370, -1.018495, -0.736548, -2.134489, -0.812104, -0.757629, 0.905960, -1.872599, 0.386431, 1.029242, 1.192792, -0.454748, -2.690569, 0.874195, -0.029691, 1.300324, -1.085132, 0.403398, -0.207355, 1.230123, 0.577793, -0.955572, -0.406727, -0.063125, -1.764886, 0.934884, 0.099197, 1.120223, 0.560783, -0.238207, 0.328889, -0.167509, 1.067484, -0.740136, -0.270884, -0.735030, -1.025883, 1.346156, -1.032623, -1.090146, 0.369653, -0.374994, -0.071139, 0.429560, -0.937073, 0.067470, 1.753754, -2.189332, -0.230147, -0.576506, 0.984958, -1.346845, -0.889718, 1.055733, 0.173711, -1.043351, -0.092081, 0.204624, 0.029544, 0.333585, 1.015987, -0.190098, 0.306731, 0.924562, 0.600304, 1.036391, -0.121117, -0.294259, -0.357607, 0.036491, 0.105124, 1.149403, -0.532418, -1.417174, 0.036239, -1.812491, 1.110548, -1.518699, 0.105785, 1.249620, -2.066090, 0.274301, 0.269194, -0.186939, -0.446635, 0.060505, -2.277602, 0.009507, -1.032385, -0.225275, -0.629420, 0.522340, -0.199028, -0.982369, 0.780459, 1.764165, -0.470174, 0.851934, -0.796089, -0.540451, -0.148242, 0.186572, 0.715156, -0.060060, -0.871258, -0.154651, 0.873260, 0.818201, -1.213716, 1.221143, -0.940491, -0.793235, -2.034941, -1.772504, 0.047780, 0.590210, -0.335933, -0.192690, -0.308205, -0.022371, -0.075514, -0.251876, -1.060925, -0.827893, -0.734465, 1.083451, 0.678851, -0.748360, -0.579405, -2.043067, -0.205387, -0.222139, 0.729636, 1.684441, 0.283943, -1.150393, -0.871965, -0.881961, 1.203945, 1.553315, -0.619045, -0.125554, 0.121248, 0.528419, 1.363936, 0.812072, 0.302559, 0.018770, -0.769241, 0.453390, -0.016566, 1.008043, 0.131184, 0.089034, -0.645575, -0.334990, -0.530296, -0.916719, 0.054930, -0.323717, -1.172135, -0.059878, 0.398895, -1.165693, -1.252991, 1.062225, 0.668890, -0.287053, 0.686392, 0.021130, 0.800252, 0.087858, -0.547733, -0.556327, 1.588500, 0.784886, 0.893107, -0.581933, 0.429863, -1.584400, 0.628144, 0.777813, -0.786816, 0.234226, 2.222605, -0.132825, 0.011211, 0.040131, 0.588700, 0.058501, 0.487232, -0.745702, 1.351873, -1.771446, 0.781601, -0.917594, -0.993617, -0.076136, 1.091963, -0.037647, 0.773636, 0.104507, 0.361208, -0.096246, 1.525120, 1.477642, 0.206207, -0.385964, 0.368721, -0.362713, 1.241820, 1.328871, -1.369378, 0.211334, 0.999504, 0.315272, -1.256159, -0.769664}, + { 2.202407, 0.501290, -0.755820, 0.416613, 0.756057, -0.509687, -2.362441, 1.446230, 0.022124, 0.291915, 1.068703, 0.956692, -0.063365, -0.189200, -0.561635, -1.088576, 1.083949, -0.077018, -0.867175, -0.084837, 0.324703, -0.508849, -1.619539, -1.609367, 1.065280, 0.069153, 0.325631, -0.527621, 1.367229, 0.383812, -0.453832, -0.995964, 0.898697, 0.648746, 0.756521, -1.617740, 1.158094, 0.137592, 1.139043, -0.074633, 0.960908, -0.852070, 0.022085, -1.107504, -1.033909, -0.987106, -0.179843, -0.893372, 0.235343, 1.356839, -1.137402, 0.351645, -0.582341, 0.488301, -1.102853, 0.126407, -0.393851, -0.573073, 0.161375, 0.298289, -0.576586, 0.794551, -0.176779, 0.375813, 0.858207, 1.664762, 0.793062, -0.857777, 0.000556, -0.473162, 0.835018, 1.719433, 2.057390, -0.082182, 0.053926, 1.049116, -0.363114, 0.104333, 0.218432, -1.162856, -2.730109, -0.127826, 0.390132, 0.048729, 1.094793, 0.547145, 0.661964, -0.879199, 0.279034, -0.005527, -0.736870, -1.101948, -0.459373, 0.015395, 0.177593, -1.668108, -0.842849, 1.680795, -1.520088, -0.257050, -0.335250, -2.939787, -0.922862, 0.347944, 0.300520, -0.632114, 0.307643, 0.424108, -1.815464, -0.229956, -0.201791, -0.199655, -0.239248, -2.471761, 0.041952, 0.791646, 1.930681, -0.860339, 1.056446, 0.762751, -1.976380, 0.659719, 2.008522, -0.007085, 0.033454, 0.909128, -0.342495, 0.552609, -1.718059, -1.808342, -0.241020, -0.782643, 1.260443, -0.664975, 0.704856, -0.068836, -2.651599, -0.861826, 0.314262, 0.582512, 0.877312, -0.567826, 0.092596, 0.551238, 0.089075, 0.652096, 1.129130, 0.138396, 1.243777, -1.160959, 1.059795, 0.328778, 0.760383, 0.592309, 0.781342, -0.397990, 0.958648, 0.616753, 2.392642, 0.725613, -0.192992, -1.099511, -1.765582, 0.744881, -2.037528, 2.166214, 0.026850, 0.850753, 1.344465, 0.936954, -0.382028, -1.085827, 1.723600, -1.689354, -1.287933, 0.563178, 0.822514, -0.087595, 1.179597, -0.803092, -0.578637, -0.268331, -0.500977, 1.474237, -1.505034, 0.080563, -0.895748, 0.239534, -0.457207, 1.731004, -2.058022, 0.604015, -1.813185, 1.381655, -0.736304, -1.428878, -0.494533, -0.341142, -0.186191, 0.096191, 1.350293, -1.456329, 0.841529, -1.093756, -0.172708, 0.320089, -0.223409, 0.532690, -0.239650, -0.057809, 0.187439, 0.825705, 1.634498, -0.199457, 0.643074, 0.470114, -1.448523, -1.432276, -0.251043, 0.169201, 0.736676, 1.127620, -0.664626, 0.173055, -0.537373, -0.055242, 1.428576, -1.227188, 1.256439, -0.037856, 1.497849, 1.028515, -0.736346, -0.102228, -1.922901, -1.297662, -0.566416, -0.173954, 0.046899, 1.563084, 0.179148, -0.294485, 0.769807, -0.723559, 0.185583, 0.581581, 2.186070, -1.802907, 0.134842, -2.350676, -0.546042, 0.861289, 3.103399, -0.189959, -1.865096, -0.618156, -1.128880, -0.513095, 1.478035, 0.302390, -1.559745, 1.617525, 1.264067, -0.475702, -0.400622, 0.732602, -1.022744, -0.025244, 0.099215, -1.153135, 1.236335, 0.980163, 0.132217, 1.075014, -1.397059, 0.195444, 0.247156, 0.927562, -1.456905, 0.902314, -0.322951, 0.664101, 1.746017, 0.106319, 0.440355, 0.067194, 0.970329, -0.814279, 0.452210, -1.551295, 0.032255, 0.398329, -1.496538, -0.993922, 0.111641, 0.589097, -0.468227, -0.898702, -0.092102, -0.345804, -0.685853, 1.816402, -0.409107, 0.258531, -0.618784, -0.769211, -0.397859, -0.225178, -1.058101, 3.017122, -0.590296, -0.343442, 1.073830, 1.530886, -0.753589, 0.390734, -0.693601, 0.541365, -0.380499, 0.229588, -1.355997, 2.172126, 0.698642, 0.192071, 0.330922, -1.699427, -0.419567, -1.295911, -0.216370, -0.146987, -0.434581, -0.312853, -0.406282, -1.490115, 0.067122, 2.079941, 0.764382, 0.405363, -0.928500, -0.000144, 1.064079, -1.328800, -3.615869, 0.806618, 0.046166, 1.816744, 0.970818, -1.191103, 0.431961, -0.391314, 0.363185, 0.396323, -0.348027, -0.128458, -0.419685, 1.089288, 0.890837, -0.917780, -1.652598, 0.281118, 0.379080, 0.298193, -0.794344, 0.722422, 1.008522, -1.657440, 0.938869, 0.583926, -1.321133, -0.520227, -0.185865, 1.174213, -2.251489, 1.583295, 0.052728, 0.245859, -0.449765, -1.615052, -1.223050, -0.218382, -0.858382, -0.344699, -0.329322, 0.704617, -0.642459, 0.017687, -1.200845, 1.053833, 1.682868, -0.278476, -1.087214, -1.305353, -0.754506, 0.610204, -0.944692, 0.943746, 0.876142, 1.838447, -0.532211, 1.323353, -1.061883, -0.067915, 0.205757, 0.396139, -0.102436, -1.778368, 1.361760, 1.850200, 1.250291, 1.103465, -0.291772, -0.170900, -0.492872, 0.336753, 0.281053, -1.475272, 0.519157, 0.266176, 0.009043, 1.438090, 0.792370, -1.907820, 0.778639, 0.459271, 1.102649, 1.164672, -0.972662, -0.227863, -2.119545, 0.295237, -1.343501, 1.178069, 0.134134, 0.044030, 1.287581, -0.184811, 1.391160, 0.286470, 1.854419, 0.502874, 1.678322, -0.368422, 0.432593, -1.865800, 0.023897, 0.318362, 1.739973, -1.463982, 2.169323, 0.059196, -1.398651, -1.175324, -0.334314, -0.471122, 0.160991, -0.429977, -0.883911, -1.897437, -0.928531, 1.122813, 0.322474, -0.929582, -1.067089, 0.057222, 0.332761, 0.566720, 1.838192, 0.215767, -0.333877, -0.003687, 0.115884, -0.424043, 0.274618, -0.733945, 0.677529, -1.480495, 0.959548, 1.436143, -1.327167, 0.658075, -0.223388, -0.958140, -0.017099, -1.657934, -0.212187, -1.515853, 1.971891, 0.800620, -0.919113, 0.778743, 0.148008, -0.114556, 0.858995, 0.430111, -1.950643, -1.073631, -2.820686, 0.467041, 0.656771, -1.140318, 0.137241, -0.102636, -0.770215, -0.687964, -1.907871, -1.153601, -0.635367, -0.771967, 0.225260, -1.058244, -0.592758, -1.120356, 0.635770, 2.007467, -1.542176, -1.810625, 0.887673, 0.852083, 0.029702, 1.911922, 1.728125, -1.109058, 0.916240, 0.702629, -1.177386, 0.774753, 0.440182, 1.090317, 0.591267, -0.488971, -0.337695, -0.838134, -0.809259, 0.297127, -1.319407, 1.771996, 0.505534, 1.001547, 0.076197, 1.197425, 0.490718, -1.372669, 0.088512, 0.078226, 0.751533, 0.530102, -1.388455, 0.213656, -0.863598, 1.124646, 0.117048, 0.668450, 0.142299, 0.083431, -0.691457, 0.350426, -1.530275, -0.544576, 0.166745, 1.838863, 1.621041, 0.605296, 0.148060, 1.866453, -0.896192, 0.822422, -0.774788, 0.596514, 0.530877, 0.830130, 0.538515, -0.627216, -0.059944, -0.332596, 0.105710, 0.029467, -1.814086, 0.937604, -1.706427, -1.027913, -0.819241, -0.160659, -1.156907, -0.914204, 0.531718, -0.814348, -0.871615, -0.506692, 0.220928, 0.439352, 2.126628, -0.953973, -1.063376, -0.048008, -0.626177, -0.058277, -0.949783, -2.113424, -0.212806, -1.144282, 0.510841, -0.886486, -0.825515, -1.678878, -0.418237, 1.492856, 0.613246, 0.366567, 0.580646, 0.395945, -0.454201, 0.195667, 0.899577, 1.140460, -0.604149, 1.429128, -2.609872, -0.513908, 0.363900, -0.726305, -0.863113, -0.517918, 0.113200, 0.507809, 0.276648, -0.879074, 1.010420, 1.092461, -0.417503, 0.100037, 0.260289, 0.914943, -0.336199, 0.455709, 1.314833, -0.717222, 0.650409, 0.703595, 1.597296, -0.573642, 0.057845, -0.032949, 1.440785, -0.973496, 0.126981, 0.551354, -0.860516, -0.184644, -0.775622, -0.324282, 0.601371, -0.509432, -2.026147, 0.633660, -0.611010, -1.451099, 0.460755, -0.268770, -0.060278, -1.253776, -0.745375, 1.781469, 0.331207, 1.026964, -0.960810, 0.642603, -1.025680, 1.292920, 1.007717, -1.896157, -0.744296, 1.128173, -1.216311, 0.824177, 0.337031, -0.099763, -0.251727, 0.728793, 0.564296, -0.332292, -0.163496, 1.213536, -0.236846, -0.429757, 0.197628, -0.567817, 1.499762, 0.250484, -0.132269, 0.916284, -0.619486, -0.064591, -0.222087, 1.066619, -1.166298, 0.067988, 0.587567, -0.960461, 0.244057, 1.229079, 1.049206, 1.044654, 0.812387, 1.425235, -0.549290, -1.268198, -0.566072, 0.355135, 2.312342, -0.433800, -1.023334, -1.659927, 0.510776, -0.809476, 0.187178, 1.057458, 1.042592, 1.696877, -0.893494, -0.987421, 0.712230, 1.695499, -0.159557, 0.084446, 0.847372, -0.140588, -2.095881, -2.033877, 0.018781, -1.582547, -0.125429, -0.410043, -1.481174, 1.776911, -0.314229, 0.105683, -0.537980, -0.589903, -1.786572, -0.289869, -0.016978, 0.332514, -0.369476, -1.095598, 0.251477, 0.299563, 1.185398, 0.884376, 1.909467, 0.893577, 0.144957, -0.867949, -0.000211, 1.287146, -0.494185, -1.534174, 2.174720, -0.593022, 1.115512, -0.213000, 2.606250, 1.672317, -0.153430, -0.871178, 1.135893, 0.186539, 0.963108, 1.800604, -1.252765, 0.945403, -0.191125, 0.424643, -0.444271, -1.093414, -2.144698, -0.613608, -0.101511, -1.443099, -1.925681, 0.939602, 0.504715, 0.162747, -3.124796, 0.307271, -1.045741, 0.355322, -0.445353, 0.659352, 0.206921, 1.708674, -0.269690, 0.715581, -0.421048, -1.086826, -0.818724, 1.870610, -0.895063, 1.723959, -0.574418, 0.936743, -0.352284, -0.252792, 0.491579, -0.145222, -2.058807, -0.013346, 0.595458, 0.851863, 0.003092, 1.262228, -1.785903, 0.716500, -0.122812, 1.069616, -1.393052, -0.886496, -0.810450, 0.297144, 0.829052, 0.572732, -0.744420, -0.168369, 0.711610, -1.670300, 0.701286, -0.419277, 0.791709, 0.239788, 0.648806, -1.420125, 1.059813, 0.832197, -1.039155, 0.979023, 0.584910, 0.563655, -0.644088, 1.066292, 1.291532, -0.541206, -0.270904, -1.350010, -0.241990, 1.318519, 0.617874, -0.902196, 0.237991, -0.011197, 0.128171, 0.837205, 0.793140, -1.552267, 0.880716, -0.994971, -0.421702, 1.235023, -0.711111, -1.111321, 0.469355, 1.841557, 0.295743, -1.317714, 1.028625, -0.570413, -1.829334, 0.832905, 0.997229, 0.007728, -0.785173, -0.991446, 1.950897, 0.289048, -2.616466, -1.192948, 1.261504, 0.359284, 0.554619, 1.241305, -0.964094, 1.887028, 2.254318, -0.391291, -0.072041, 0.052330, 0.622949, 1.639181, -1.776636, -0.473023, -1.593499, -1.642527, 0.433863, 0.673157, -0.609619, -1.853486, 0.429450, 1.067076, 0.297582, 0.723383, -0.081191, -0.319166, 2.516265, -1.217585, 0.041377, -0.517084, 1.615324, 0.120481, -0.717347, 0.430065, -2.233584, -1.424153, -1.506614, -0.847092, -1.130765, 0.664158, 0.013785, 0.559790, -0.076069, 0.085170, 1.070377, 0.417302, 0.386577, -0.209964, -0.524383, 1.014307, -1.245314, -1.592469, -0.729273, 0.318690, 0.891281, -0.781488, -0.182286, 2.087186, 1.024650, 0.649086, -0.492290, -0.385178, -1.324224, 2.323074, 0.142645, 0.044801, 1.813416, -0.460890, -2.260847, 1.016192, -0.877366, 0.542984, 0.302267, -1.408820, -1.195458, -0.300297, 1.082836, -0.237345, -0.618278, 1.383891, -0.501467, -0.178305, -0.215956, 1.055894, 0.116965, 1.591748, -1.884014, 0.123407, -1.440592, -0.610890, 0.681107, 0.691364, 1.849546, -0.334262, -0.354661, 2.421940, -0.972354, 1.453511, 0.045909, -0.214678, -1.255557, 0.630261, 0.681819, 0.932965, 1.139026, -0.756976, -0.719851, -0.644845, -1.138043, 1.001685, -1.478760, 0.562928, -0.123489, -0.689885, 0.626220, -1.193764, 0.455518, 2.634384, -0.319684, -0.572873, -1.288928, -1.263664, -0.499159, 0.478507, -0.528077, 0.918218, -1.303074, 0.048690, 0.392543, 0.164890, 0.304358, 0.195399, 0.415675, 0.918434, 0.404910, -0.829623, -0.756533, -1.019927, -1.438446, -1.143142, -0.979558, 2.738326, 0.071265, -0.187456, 0.318744, -0.470631, 1.660982, -0.798867, -1.798954, -0.497250, 0.640604, -1.251535, 1.295683, -1.612830, 0.659311, 0.474363, 0.910734, 1.096985, 1.213389, 2.183885, 0.064826, 0.262037, -1.633800, -1.231014, 0.939177, 0.119651, -0.645659, 0.533343, -1.170916, -0.920674, 1.924088, -1.463035, 2.482004, 0.468507, -0.004691, 0.945189, 0.041997, -0.218707, 0.257864, 0.923200, -0.838496, 0.667791, -2.307730, -1.392105, 2.031344, -0.748605, 1.823367, -0.527525, 0.048480, 1.280545, -0.480234, -1.392508, 0.406107, -1.999963, -1.077629, 0.945935, -0.084997, -0.543797, 0.427892, -1.782325, 1.300475, -0.819628, -2.690083, -2.093628, -2.074759, 0.734750, -0.116643, -2.227761, -0.007943, -1.056612, 1.803950, 0.327142, -0.001042, -0.528581, -0.359555, 0.740857, -1.875843, -2.613689, 0.675776, 0.806259, 0.151694, -0.692624, -1.647680, 0.464204, -0.296819, 0.818035, 0.972600, 0.079753, -0.903515, 0.732821, 0.389616, 0.699909, 1.058385, 0.594587, 1.123021, -1.047240, -0.774516, 1.266542, 0.469522, 2.280334, 0.141043, -0.914176, -0.827567, -2.056981, 0.838257, 0.120797, -1.155867, -1.078389, 2.576058, 0.872422, 1.856925, 0.076125, 2.090398, -0.260619, 0.796658, -1.339563, -0.333744, 0.354095, 0.223890, -1.791985, -0.708607, 0.665593, -0.215186, -1.394499, 1.223856, 1.844529, 1.435116, 0.233361, 0.513057, -0.185318, 1.591415, 0.394695, 0.279339, -2.476651, -0.987594, -0.251599, -0.787169, 0.247308, -0.218426, -1.179014, -0.637258, -0.800324, 0.106372, -0.744466, 1.347601, -1.244057, -0.274364, -0.973317, -2.492704, 0.184428, -0.595952, 2.160734, 1.670366, 1.036692, 0.348936, -1.745845, 0.587199, 0.002137, 0.394041, 0.241950, 0.237771, -1.248925, -1.259061, -0.210407, -0.026451, 0.107485, -0.849833, 0.044733, -0.806286, -1.563649, -0.481359, -1.603732, -0.858170, -1.519709, -1.202094, -1.261256, -1.141943, -1.509268, 1.020517, 0.579615, -0.923427, -0.012640, 1.881362, -1.632399, -0.728439, -1.054691, 0.128681, 1.364909, -0.682774, -2.148727, 1.448452, -0.953598, -0.063042, -1.608997, -0.544602, -1.179325, 0.482936, 0.000697, 0.980347, 1.165115, -2.575654, 0.836068, 0.085019, 1.430900, 0.147359, -0.680586, 0.595726, -1.381233, -0.776833, -0.606949, 0.462725, 0.704626, -0.225730, 0.466783, -0.365826, 1.899861, 0.167444, 0.368994, 0.153482, -0.029003, 0.645890, 1.422182, 0.628400, 0.789337, 0.852450, 1.738077, 0.959545, 1.129276, 1.628401, -0.776447, 0.053559, 1.490628, 0.802581, -0.237694, -0.371874, -0.885957, 2.021629, -0.440965, -0.800877, 0.035742, 0.374294, 0.506557, 0.122600, -0.112882, 0.206508, -0.939945, -1.121023, -0.456585, -0.423641, 0.373846, 1.216651, 1.636300, -1.167319, 0.167324, -0.400765, -0.704040, 0.324556, 1.111552, 2.326811, -0.436892, -0.301385, -0.399669, 0.046622, 1.224228, -1.061941, -0.688071, 1.163274, 0.402946, -1.390913, 1.077437, -1.367930, 0.450956, 0.038306, 0.643800, -0.127053, -1.928394, 0.326124, 2.664683, 0.128408, -0.136195, -0.416258, 0.130770, 2.160097, 0.983741, -0.470414, 1.820268, 0.960124, 0.745732, -0.588889, 1.244781, 0.408043, 0.080386, 1.397256, -1.203826, -0.540076, -0.796453, 0.568963, 0.452896, -1.448485, -0.766937, 0.830600, -1.552641, 0.133805, -0.351979, 0.797156, 1.832321, 0.669573, -0.709533, -0.396206, 0.778707, 0.471994, 0.329589, 0.818608, -0.232575, 0.565614, 1.134063, -1.022236, -0.496688, 1.315336, 0.015484, 1.049227, -0.857126, 0.503429, 2.087516, 0.210734, 1.443229, 0.910938, -0.793429, -0.042967, -1.023748, -0.482345, -0.755361, 2.970853, -0.228552, -0.436625, -1.851197, 0.425291, 0.458503, -0.090371, 0.535489, 0.886618, 0.547152, 0.256644, 1.777673, -0.674148, -0.927113, 0.288900, -0.845258, -0.944981, -1.220020, 1.514492, 0.182120, -3.756649, -0.208861, -1.010421, 1.205937, 1.300032, -2.276371, -1.842820, 0.682560, 0.741234, -0.501142, -1.782638, 1.133644, 1.647879, 0.573028, -0.925674, 2.483126, 0.237496, -0.165725, 0.935442, -0.340224, 1.599633, -1.368496, -1.595820, -0.718638, -0.839121, 0.653930, 0.131952, 0.106256, -0.070298, -0.645755, -0.739307, -0.278981, -2.855678, 0.507035, -0.103785, 0.815554, -0.580113, 1.638769, -0.867058, -0.199520, -1.683357, 0.500225, -1.368108, -1.284506, 0.058674, 0.509563, 0.783058, -0.244039, -0.056425, 3.320653, -0.900288, 0.179321, -0.177915, 1.376266, -0.371139, 0.363165, -0.280526, -0.221007, -1.057832, 0.203489, 1.794716, 0.082012, -1.595992, -0.106797, -1.905074, 1.985795, 1.554948, 0.097611, -0.651485, 0.301302, -1.192711, 1.114309, -0.516214, -0.497162, 0.109354, 2.003018, 0.102989, 0.318612, 1.106055, 0.474257, 0.689162, -0.083156, 0.487659, -1.768587, 0.192268, 1.307945, -1.308160, 0.555713, 0.645254, -1.871958, 0.018137, -0.757258, 0.075946, 1.044980, -0.277332, 0.059850, 1.601884, -0.279850, -0.509645, -0.999124, -0.037248, 1.172676, -0.156926, 0.950647, 0.829209, -0.085911, 1.566731, -2.708151, -1.191436, 1.987267, -0.483372, -2.520565, -0.159729, 0.534954, -0.865477, -1.704186, 0.503034, 3.504074, -0.690176, -3.722202, 0.624042, -0.982603, 0.439505, -0.334546, -0.119677, 0.534427, -0.189035, 0.029513, -0.137330, -0.133384, 0.159185, 0.514432, -0.820320, -1.774685, -0.148505, 0.647669, -0.058415, -0.403893, 0.715670, -1.841835, 0.440822, -0.109641, 0.177988, 0.083022, 2.059491, 1.349646, 0.281904, -0.895638, -0.117824, -1.351033, -1.389770, 0.427715, -0.431622, -0.253923, 0.956189, 0.528233, -0.982272, 0.223964, -0.053232, -3.309626, -0.636650, 0.717865, -0.692247, -1.023844, -1.324425, -0.256643, 0.503877, 1.038669, 0.142504, -0.894046, -2.052362, -0.345772, -0.586966, 0.036835, 0.327582, 0.701447, 0.336753, 2.108620, -0.091931, 0.714448, 0.269548, 0.486497, -0.608005, -0.612613, 0.132957, 0.499744, 1.868914, -0.110051, 0.845306, 2.089033, 0.754106, 1.045020, 1.019071, 0.661720, -0.049419, 0.891359, 1.278212, 0.172122, -2.455968, -1.729682, -0.116407, -0.323602, -1.885185, 0.346469, 0.713560, -0.178947, 0.411131, 0.473657, 0.137240, 0.004600, -1.453665, 0.387103, 1.131503, -0.060398, -1.026671, 0.271284, -0.135000, 0.872050, 2.335425, -1.463629, -0.635835, -1.170255, -0.978006, -0.222761, 1.269978, 1.013824, 0.712431, -0.797002, 0.988050, 0.895173, -0.137772, 1.639617, 0.272233, -0.150640, 0.881611, 0.844577, -1.507226, -0.679848, 0.170616, -0.063381, 0.612472, 0.900862, 1.542817, 0.367615, 0.122778, 2.814967, 0.314117, 0.595116, 0.114589, 2.088732, 0.053141, 0.341778, -2.266651, 0.162414, -1.514784, 0.507374, 0.047483, -1.676361, 0.798636, 0.367801, -1.354663, 1.476619, 0.183036, 1.069503, 0.262476, 0.124234, 1.219253, 0.750142, -0.951980, -0.014617, 0.353776, -0.609075, -0.440896, 1.503247, 0.155515, 0.578884, 0.954638, 0.494237, -0.618991, -0.739220, -2.709824, -1.225917, -0.041313, -0.289322, 0.743831, -0.658827, -2.827656, -1.433807, 0.800753, -0.543397, 0.206533, -0.406691, -2.001334, 0.193953, -2.055019, 1.584675, -1.799314, -0.554538, 1.235732, 0.255502, 2.108980, -0.772655, -0.422786, -1.900994, 1.624016, -0.598351, -0.429577, -0.225256, -0.115965, 1.258746, 1.382367, 0.548029, -1.865437, 1.855697, -0.813085, 0.149920, 2.251776, -1.691024, 0.813107, 1.253356, -1.187044, -1.757091, -2.019655, 1.207907, 0.362207, -1.321627, -0.885213, 0.640244, 0.839037, 1.742690, -1.611078, 0.668315, -0.852199, -1.026696, 0.080945, 0.480555, 1.154014, -2.739587, -0.381532, 0.205749, -0.688489, -0.141637, 1.849398, -0.916934, -1.264959, -1.370011, -0.006671, 0.627378, 1.401355, -1.095207, 1.048437, -1.832132, -0.792077, -2.943996, 0.246667, -0.442815, 0.977543, 0.404871, 1.026999, 2.394586, -0.885092, 1.013617, -0.720094, -0.881698, 1.087516, -1.340583, 0.486865, -0.940303, 0.872775, -0.253423, -1.726625, 0.344542, -0.531941, -0.456384, 0.379359, -0.215022, -0.224754, -2.456322, 1.908696, -0.679590, 0.074308, -0.711004, -0.735616, 1.091135, -0.052534, -1.070793, 0.130976, -1.908431, 0.041099, -0.819977, 0.976177, 0.973414, 0.043108, -1.318488, 0.286330, 0.331819, 0.325604, -0.735757, 0.555598, 0.640339, -1.806676, 0.437116, -0.354780, -0.514365, -0.349750, -0.965982, -0.810985, 0.315748, 0.251990, 0.968556, -0.697874, 0.270377, 1.028001, -0.121850, -0.048529, 0.759572, -0.798235, 0.450303, 1.209232, 1.287215, 0.736628, -0.320684, -0.017798, 1.387886, 0.410671, -2.089627, 0.211727, -0.704497, -0.400250, -0.780119, 1.323815, -0.998117, 1.738493, 1.225846, 1.579372, -0.755191, 1.882717, 0.174798, -2.895694, -2.241069, 0.478110, -0.913512, 0.623818, -1.593714, 1.050625, 0.334868, 0.650025, 1.844604, -0.097674, 1.089659, 0.213554, 0.408026, -0.534483, 0.200220, 0.781483, 1.385418, 0.731045, 1.942252, 0.758991, 0.943697, 0.333975, 1.433700, -0.096569, 0.650949, 0.670062, -0.077623, 0.456808, -1.020862, -0.866931, -1.391849, -1.594173, -1.343600, 1.471665, -1.205426, -1.551051, 0.787579, -0.820027, -0.531795, 0.160303, -0.552002, 0.039174, -1.042516, -1.100737, 0.221017, 1.676202, -0.742451, 1.223978, -0.940187, 0.204964, -0.279585, -0.584146, -0.170544, -1.716305, 0.316820, -0.159871, -0.637017, 1.074986, -0.539383, 1.376580, 0.892451, -0.363723, -0.144646, -0.232654, 0.509979, -0.186264, 0.325335, -0.361472, 1.409343, -1.833847, -0.762621, 0.743815, -1.142141, -0.594710, 0.468526, -0.994251, 0.703567, -0.554034, 0.389144, 1.407173, -1.436839, -0.150065, -1.225387, 1.419068, 1.707044, 0.153756, 1.521535, 0.866590, 0.680812, -1.480789, 0.273826, -0.492680, -0.145707, 0.975589, -0.748282, -0.157891, -1.527124, -0.102752, -0.261935, 0.618276, -0.359328, -0.708638, 0.489765, -0.112005, -0.162444, -0.703104, -0.874094, 0.512092, -0.637987, -1.316424, 0.225509, -1.275537, -0.023827, 0.743995, -1.415476, 0.261494, -0.437169, -0.301049, -0.316213, -0.229617, -0.269858, 0.175845, -0.558457, -2.014599, -0.371651, 0.257052, 1.647324, -0.704553, 0.797086, 2.433834, 0.640240, 2.581459, 0.323005, 1.944852, 0.380274, -1.989039, 1.480016, -1.339141, 0.708475, 1.580062, -0.045464, 0.677710, -1.824744, -0.889016, -1.317852, 1.048593, 1.706404, -1.304262, -2.730358, 0.217899, -1.601091, -0.058532, -0.399825, -1.494852, 1.788317, -0.354862, 0.163999, 0.106352, -2.093994, -0.428917, -1.102260, 1.186914, 0.687905, -1.286555, 0.123024, 0.893400, -0.606771, -0.909105, 0.774096, -2.528580, -0.240026, -1.012785, 1.722732, -0.211943, 1.226095, -0.415078, -0.640543, 0.347469, -1.004663, -0.368267, -0.519077, 0.612018, 0.026284, -0.913291, -0.483627, 0.623407, 0.708546, 1.056631, -0.633303, 0.968666, -0.344148, 1.227963, -1.039902, -1.586162, 1.665446, -1.914994, -1.791969, -0.999968, -0.759027, 0.369693, -0.413312, -1.249696, 0.237251, -0.399640, 0.558933, -0.653205, 0.502370, -0.383883, -0.071334, 0.594192, 1.503336, 0.217856, 0.917178, -2.155702, 1.074507, -0.899861, -0.768825, -0.889441, 0.252241, 1.021087, -0.073918, -0.786716, 0.512181, -0.405504, 0.080028, 1.797519, 1.159522, -0.130962, -0.489820, -1.260310, -1.153670, 0.157666, -0.050374, -0.205562, 0.275873, 0.272609, 1.788926, 0.191621, -2.243406, 2.394803, 2.030279, -0.008380, 0.616333, -1.093910, -0.618523, -0.772706, 0.214202, 1.090486, -0.056821, -1.000049, 1.120457, 0.471925, -0.017474, -0.932191, 2.448223, 0.312786, -0.570233, 0.103254, 0.412084, 2.138385, -1.424234, 0.526878, -0.030993, -0.483080, 0.711400, 1.570059, -0.045757, -0.615562, -0.202112, -0.186906, -0.355662, -1.499499, 0.452176, -1.306366, -0.060845, 0.687419, -0.426334, -0.677161, 0.953849, -0.246114, 0.283662, 0.052363, 0.888625, -0.648133, -0.883023, 0.132355, 0.617834, -0.801756, -0.206490, 0.834138, -0.069569, 0.827816, 0.530390, 2.583523, 2.378686, 0.231530, -0.472425, -0.718416, -0.074558, 0.844882, 0.238385, -1.061172, -2.141033, 0.346715, 1.455691, -0.064735, -1.897900, -0.340222, -0.082148, -0.198286, -0.184554, -0.026063, 0.196635, -0.120027, 0.445230, 0.725064, 0.323062, 0.549894, -1.247355, 2.445707, -0.786796, 0.601871, -0.051169, -1.119982, 0.614433, 0.299321, -0.284203, 0.574165, -0.197308, 0.133723, 1.427952, -1.244693, 1.909488, 1.582976, -0.571251, -0.845582, -0.267984, -0.754143, 0.310975, -1.059667, -0.298561, -1.076711, 1.052108, 0.776001, -0.213370, 0.319792, -1.109760, 0.671688, 0.119422, -0.543591, 0.551007, 0.480275, 1.771482, -1.293824, 0.229311, 0.025143, 0.149236, -0.442184, 1.412518, 1.674555, 0.197456, -0.223144, -1.409458, -1.389691, -1.039414, 0.695984, 0.566634, -1.385879, 1.405706, 0.645872, -1.035509, -1.245561, -1.928605, -1.469069, 0.098430, 0.251602, 1.207269, 1.962450, 0.053232, -0.848431, 0.026797, 1.035832, -0.508173, -0.274124, -0.876143, 0.489302, 0.057040, -2.049574, 1.810043, -1.783591, -0.727251, 0.748529, -0.143345, -0.321486, 0.967581, -0.616159, 0.389917, 0.631891, 2.819839, -0.569773, -0.439533, 0.785680, -2.140511, 1.281066, -0.974431, 1.287095, 0.315956, 1.357504, 0.468886, -1.152190, 0.376193, -0.322438, -0.553610, -0.652906, -1.298764, 0.942262, -0.206670, -0.610650, -0.254701, -0.484246, -0.748808, 1.358993, -0.551174, -1.054484, 1.363765, -0.459157, -1.385064, -0.723829, -0.900977, 0.316384, -1.416369, -0.844753, -0.199117, -0.359055, -1.533950, 0.921003, 0.567535, -0.821189, 0.791639, -1.716919, -0.980149, 0.257582, -1.279201, -2.002789, -0.585638, -0.481773, 0.161000, -0.099305, 0.116177, 0.173858, -0.087902, 0.050081, 1.041255, -1.268709, -2.377311, 1.615988, 2.395039, -0.573038, -1.580473, 0.642813, 2.576947, 0.664358, 0.960551, 0.260078, 0.716135, 0.189141, 0.458350, 0.702744, 0.162669, -0.562829, 0.658312, -0.269642, -0.793999, 0.310773, -0.899019, -1.766469, -0.400017, -0.952291, -0.014443, 0.470082, 0.284529, 0.652241, 0.455674, -0.733946, 0.539400, 0.920863, -1.504751, 0.255409, -0.741640, 0.694701, -0.445413, 3.122810, 0.386979, 0.687063, 1.034158, 1.582009, 0.877097, 0.355180, 0.168807, 0.667832, -0.256917, -0.189042, -2.753169, 0.461727, 1.014557, 0.938720, -1.102713, -0.315307, 0.632602, 0.780972, 0.268898, 0.283712, 2.984571, 0.249064, -0.918872, -0.443747, -0.288149, 0.854929, -2.419526, -0.024338, -0.124747, -0.389400, 0.381251, -1.563854, -0.404464, -0.027618, -0.358348, -0.437135, -0.109179, 0.656523, 1.233804, -0.053291, 2.064710, -0.302933, -1.014404, -0.350766, 0.976182, 1.157565, 0.544869, -1.216118, -0.035945, 0.526483, 0.761278, -0.093863, -0.023768, 1.057672, 0.601090, 0.761974, -0.073394, -0.718574, -0.661424, 0.716005, 1.262573, -0.166284, -0.165801, -0.763309, 0.907407, -1.746724, -0.264277, -0.276137, -2.132658, 0.253038, -0.961316, 0.503105, 0.059558, -0.179085, 0.687936, -1.450311, 0.836182, -1.552948, -0.850773, -1.069188, -0.222868, 0.880518, 0.116282, 0.128223, -0.415909, 0.722790, -0.165264, -0.263296, 0.996883, 1.574473, -1.517527, 0.724709, -0.702674, -1.815968, -1.890065, 0.628119, -0.335020, 0.381691, -1.995636, 0.839345, 0.395197, -1.636671, 0.006266, -0.162563, 0.665479, 0.634188, -0.770526, -0.218571, 2.700738, 0.092893, -0.120705, 0.858537, 0.092137, 0.395640, -2.096134, 1.172338, 1.842091, 0.365980, -0.022981, -1.065968, -1.085350, -0.255632, -0.063124, -0.862086, 2.061833, -1.214078, -1.426198, 0.979296, -0.732898, 0.548372, -1.650792, 0.274925, -0.397693, 1.030965, -0.347018, -1.014469, -2.042359, -0.190615, -0.913491, -0.478975, -1.890718, -0.507786, -1.067903, -2.522357, -2.697023, -0.916697, 0.312874, 0.971749, 0.145942, 1.476816, -1.272319, 0.455715, 0.173124, 0.424844, -0.632877, -1.846036, 1.000657, 1.383268, -0.409663, -0.511002, 0.228873, 1.308887, 0.117155, -0.569325, -0.457979, 0.796540, -0.602732, 1.742786, 0.181494, -1.128430, 0.866648, -0.008198, -0.755870, 0.553129, -1.182762, -0.968411, 0.430716, 0.696532, -0.453921, -0.515100, 0.567421, 0.203976, 0.635604, -0.040386, -2.086328, 0.104618, 1.849123, -0.983445, 0.294923, 0.975473, 0.269779, 0.275598, 0.194512, -1.254995, -2.214264, 0.017599, -0.793475, -1.272358, 0.296770, 0.441972, 0.032215, 1.948137, -0.199612, 0.631908, 0.167630, -0.219031, -1.019063, -0.936647, -1.601210, 1.035708, 0.914466, -0.021400, 0.972169, -1.198022, 0.664877, 0.417958, -0.549424, -0.431941, -1.367107, 0.595558, 0.808811, -0.079015, -2.231074, 0.542931, -0.570214, 2.557182, 0.029229, -1.111075, 0.817198, 0.506270, -2.572650, -0.205799, 0.714069, 0.905818, 1.059992, -0.099123, -0.759091, -0.058292, 0.804693, -0.678893, -0.124130, 0.227400, -0.114052, 0.290914, -0.672628, -0.416457, -0.107799, 0.582565, -0.538141, -0.891721, 1.339715, -0.530201, -1.542516, -0.217258, -1.436383, 0.591169, 0.252790, -1.475958, 0.554232, -0.758492, 0.643670, -0.719136, -1.145808, -0.971530, 0.855600, 0.492393, 1.859212, 0.619952, 1.124673, -1.176322, 0.956296, 0.676405, -3.005822, -1.100873, 0.216065, 0.084559, 1.800594, 0.687811, -0.821150, -0.671863, -0.065151, -0.433684, 1.322238, 0.246229, -0.133013, -0.624855, 1.189197, 0.598540, -0.588955, -0.878977, -2.154656, 0.383747, -0.571774, 0.966242, -1.617877, -0.294130, 0.474843, -1.378153, -0.402337, -0.657712, -0.355810, 1.911092, 1.806948, -0.646646, 0.264055, 0.306268, -1.586184, -0.210411, 1.024532, 1.273616, 0.508824, 0.311745, 1.121528, -1.325789, -0.118821, -1.082738, -0.429775, 0.068407, 0.172191, -1.688624, 0.677475, 0.114101, 0.174666, 0.877175, 0.358579, 0.388201, 1.055913, -1.361012, 0.247648, 0.120634, 0.996759, 0.072905, -1.242962, -1.242010, -0.243775, 0.361070, 0.347500, -0.447048, 1.609029, -1.206522, -0.448835, 2.303598, 1.233788, 0.682812, -0.758433, 0.537724, -1.045537, 0.487396, 1.312670, -0.557142, 1.039417, 0.105405, 0.964287, 0.222252, 1.578494, 0.337669, -1.570955, -1.441346, 0.612728, -2.067993, 0.427430, 0.390304, -1.274493, -0.470260, -0.053443, -1.244934, -0.038436, 0.932271, -1.057389, -0.841705, 0.005869, 1.499803, 1.515065, 0.342324, -0.321612, 0.571636, -0.094475, -0.662625, 0.963008, -0.320264, -1.696618, 1.184545, -0.969765, 1.421304, -0.413662, 0.751396, 0.870260, 0.119614, 1.433314, 0.187571, 0.482808, 1.574479, -0.065548, 0.109305, -0.859730, 0.363374, 0.528040, -0.215061, 0.397912, -0.763185, 0.988961, 1.160911, -0.053102, -0.606195, 1.095434, -0.692076, 0.671270, -1.205575, 0.144518, -0.533849, -2.461264, -1.232280, -1.695626, 0.320749, 0.497435, 0.461227, 2.040773, 1.470384, 2.262313, 1.575332, -0.422186, 1.048181, 0.410031, 0.693048, -0.971745, 0.756518, -0.685695, -2.265130, 0.102192, -0.805292, 1.271520, -1.189375, -1.208521, 0.119064, -0.082353, -0.062604, 0.583199, -0.734485, -0.011299, -0.309595, -1.249067, -0.168101, -0.073886, -1.928694, 0.119868, 0.589827, -0.696624, 1.735564, -0.776031, -0.223677, 0.204086, -0.605697, -1.032657, -0.790152, -0.851046, 0.109058, 0.577901, 0.153441, 0.963552, -0.393585, 0.552297, 0.537398, -0.519305, 0.930691, 1.214716, 0.424321, 0.880533, -0.944533, 1.783358, -0.456452, -1.404230, 1.021792, -1.223593, -0.663051, -0.014047, -1.249957, 0.884051, -1.099918, -0.970737, -0.972150, 0.347681, -0.291815, -0.477583, 1.096438, 0.224036, -0.812916, -0.100534, 0.095870, 0.582518, -0.781115, -0.027749, 0.002074, -1.083760, -0.204547, -0.410241, 0.252550, 0.036799, 1.079212, 1.187525, 0.066114, 0.957340, -0.325493, -0.562176, -0.805265, 0.792827, -0.203212, -1.241583, -1.591024, 1.017288, -0.105552, 1.174423, -1.202687, -0.360328, 0.995262, 1.171603, -0.138051, -0.037817, -0.292088, 0.653707, -0.772936, 0.575747, -1.408628, 0.038211, -0.851917, -0.871240, 0.456340, 1.088471, -1.208210, 0.794887, -0.026783, 1.501776, 1.008402, 1.327928, -0.685640, -0.313839, -0.240896, -1.642584, -1.481331, 1.130448, -1.058729, -1.207120, -0.591751, 0.093304, -0.133169, -0.299287, 2.423010, 0.653286, 0.594701, 0.204569, 0.852043, -0.208294, -1.191066, -0.817401, -0.878747, 0.172002, 0.146648, 0.540305, -2.096557, -0.478583, -0.465355, 1.783981, -0.210733, 1.199453, 0.483422, -0.626852, -1.221009, 0.160450, -0.865561, 0.165649, -0.143489, 0.216056, 0.047132, -1.423612, -0.210721, 0.525906, 0.276112, -0.467089, 0.562238, -2.271231, 1.219086, 0.119222, -0.823306, -0.609421, 0.009412, 1.741470, -0.995418, 0.902640, 0.378936, 0.149090, 0.569097, 1.831045, -0.150073, 0.435419, -0.970630, 0.745214, 0.362934, -0.602778, 0.892790, 1.212886, -0.535595, -0.095723, 0.258318, -0.565528, 0.130863, -0.636893, -2.203274, 1.941860, 0.636706, -1.689915, -0.753445, -0.138319, 1.469374, -1.483642, -0.143226, -0.068979, -0.033960, 1.240809, 0.145407, 1.308154, 0.160239, 0.335553, 0.026599, 0.846044, -1.029148, 0.651536, 0.615950, -0.560944, -0.545467, -1.053978, -0.626967, -1.094171, -0.801897, -0.544148, 0.386038, 0.506968, 0.388224, 1.951980, 0.747297, 2.460152, -0.370456, -0.630324, 0.490673, 0.409630, 0.702227, 0.423207, 0.121961, 1.298426, -0.665022, -0.268486, 0.367943, -0.318143, -1.197364, -1.087145, -1.284371, 0.193698, 0.764441, -0.358747, 0.217584, 1.368642, 1.682070, -0.656644, 2.121108, 0.140474, -0.542248, -1.315086, -0.321160, 0.254592, -0.611636, 0.494306, -0.441404, -0.230432, 0.242161, 1.094802, 0.304504, 1.049116, -0.995623, -0.031750, 0.865594, -0.595591, -2.007646, 0.228565, 0.851940, 0.996282, 0.012932, 0.097732, -0.055978, -0.068229, 0.452398, -0.087864, 1.856238, -0.158062, 0.230057, 0.485353, -0.942492, -0.380043, -0.816379, 0.995688, -0.872643, 1.285164, -1.911689, -0.943544, 0.792354, -0.171818, -2.967786, -0.990091, 1.190321, -0.433448, -0.971406, -0.981417, -0.471746, 0.283640, -0.480423, 0.338877, -1.099430, -0.410402, 1.026978, 1.925956, -1.210134, -0.587294, 0.890915, 1.964697, -1.618644, 0.598483, 0.161867, -2.640347, 0.422235, 1.855615, -0.686472, 0.878173, -0.955851, 0.735719, 1.537305, -0.624413, 0.769929, -1.639714, 2.081826, 0.293566, -0.253718, -1.571105, -1.678064, -1.024081, -0.960972, 2.148795, 0.429450, 0.789889, -0.546483, 2.601382, -1.037341, -0.772325, 1.159914, 1.414944, -0.531199, -0.709725, -1.056136, 0.072706, -1.138966, 0.426360, 0.453583, 0.189144, 0.174739, -2.751483, -0.862172, 0.703835, 0.690066, 0.871391, 1.386454, -0.508981, -0.686251, 0.985681, -0.616873, -0.412116, -0.659893, 0.497967, -0.562584, 2.579193}, + { 0.403650, -1.014357, 0.574913, -0.445437, 1.094661, 1.134115, 0.288358, -3.385571, 0.796048, -0.249780, -0.558531, -0.122649, -0.784038, -0.550558, 1.465000, 2.474917, -2.028365, 0.037672, -1.641080, 2.301788, 2.071623, 0.529941, -1.252949, 1.237254, 0.581403, -0.412883, 0.124912, 0.372891, -1.263205, -0.131711, -0.016222, 0.011139, 0.032905, -0.899638, -0.115517, 1.845425, -1.015900, -0.241577, 0.755320, 1.847321, 1.040070, 0.645562, 0.458842, 1.458119, 0.492040, 0.553860, -1.059370, 0.916266, -0.071800, 0.298681, 0.924285, -0.578455, 0.852463, -2.131735, -1.582429, 0.266644, -0.066622, -1.542669, 1.645423, 0.162123, -0.861890, 0.204836, -0.949205, -0.534554, 0.187803, 0.319879, -0.461831, 0.973578, -0.110314, -0.245235, 0.296543, -1.703765, -0.904522, 0.698099, 0.408387, 0.474978, -1.206558, -1.632827, 0.700368, -0.393521, -0.479803, 1.813555, -0.199872, -0.132172, 0.177989, -0.350155, -1.085370, 0.329317, 1.423793, -0.597576, 1.364015, 0.026374, -0.347868, -1.509244, 0.412236, -1.668170, 0.335332, -0.205457, 0.000051, -0.995482, 1.260030, 1.582177, -2.220616, 0.018139, -0.070463, -1.000663, 0.738686, 1.008254, 0.791168, 0.457487, -0.511023, 0.654914, -1.290303, 0.233504, -1.667212, -0.580289, -1.596230, 0.121505, 0.119900, 1.126179, -0.776565, -2.421473, 0.913234, -0.512228, 0.156020, 0.242267, -0.156494, -0.352227, 0.568852, -2.372196, -0.558408, -0.814404, 0.803400, -0.450912, -1.039012, 1.618778, -0.928862, 0.124976, 0.313682, -0.113927, 1.977735, -0.319704, -1.107360, 0.145451, 0.636119, -0.118886, 1.906191, 0.576585, -2.355120, -1.030013, 0.398517, -0.249832, -1.228368, 1.194110, 0.999952, 0.335488, 1.686971, -1.345639, -1.161981, 0.321674, -0.010277, 0.621946, -0.543480, -1.836735, 0.252794, 0.207638, -1.201019, -0.569695, -0.869720, -0.024617, -0.319028, 1.334856, 0.202437, 0.156878, -0.675716, 1.020870, 1.567374, -2.376426, -0.006889, -2.060126, 0.289579, 0.646099, -0.299576, 1.220229, 0.699140, -0.316892, 0.279181, 0.645902, -0.917055, 2.099333, -0.108554, -0.588589, -0.262278, 0.076212, -0.900526, -0.588247, 0.277803, -0.862968, -0.556489, -0.720162, 0.836842, -0.458211, 0.407476, 3.323483, 0.102982, 1.435021, -0.107586, 2.581338, 0.884011, -0.151865, -0.985982, 2.176918, -1.975165, -0.709848, -1.878093, 1.787065, 1.624997, -1.110798, -0.035640, -0.286764, 0.573791, -1.434333, 0.330872, 0.001660, -0.349379, 2.340239, 0.384685, -0.383720, -0.524242, 0.446390, 1.453213, 1.073712, 0.367489, 0.854753, 0.401788, -0.268169, -0.795803, 1.344657, 1.914867, 0.060212, 1.342665, 1.844248, 0.683149, 0.844919, -1.045163, -0.749471, -0.938539, 1.070481, 0.216803, 0.276765, -1.007369, -0.094269, 1.749082, -1.110859, 0.876878, -0.720469, 1.077733, 0.797991, 0.598824, 0.367988, -1.418543, 0.805829, 0.141320, 0.816281, -0.102348, 0.544938, 0.949649, -0.041311, -0.848627, -0.167435, -1.061705, 1.722685, 1.909846, 0.945638, 0.383591, 0.481468, -0.980928, 0.801423, 0.775630, 0.118020, -0.707412, -0.690296, -0.623419, 0.476887, -2.095384, -0.170983, 0.268854, 1.187011, 1.044914, 0.860511, -1.358630, -0.401680, -0.106810, 0.366891, 0.110413, -1.553775, -0.005772, 0.179523, 1.446954, 1.863318, 1.373255, -0.296341, 0.531260, 0.763358, 0.856919, 0.251658, -0.874166, -0.297233, 0.612500, -0.404567, 0.358791, -0.794084, 0.358868, -0.479656, 0.432944, -1.300818, -0.007985, 1.816262, -0.320376, 0.716702, -1.205585, -0.434012, 0.308615, -1.479865, 0.218971, 0.648748, -0.316473, 1.573821, -2.559482, -1.362501, -0.559912, 2.069263, 1.614291, 1.455573, -1.171642, 0.189204, -0.316051, -1.499253, -0.572555, -0.057391, 1.766878, -0.515420, 1.623991, 0.963558, 0.531500, -1.596240, -1.151685, -0.775070, 0.196245, -1.126315, -1.547278, -0.810357, 1.497284, 0.670666, -0.493768, 0.259942, -0.285163, 0.452725, -0.943477, 0.819788, 0.523223, -0.898829, -0.041125, 1.404306, 0.002926, 1.286466, -1.065030, -1.354182, -0.218270, -0.474482, -2.351792, -0.119771, -1.437854, 0.402988, -0.829463, -0.336072, 0.104880, 1.382572, 0.832138, -0.826629, -0.441240, -0.957771, 0.449953, -0.016467, -0.127841, -0.461525, 2.356978, 0.397976, -0.370878, -1.734662, -0.017854, -0.048064, 1.897087, 0.141245, -1.561147, 1.435536, 0.324683, 1.141221, 0.045720, 1.228539, 0.786667, 0.322392, -0.145924, -0.433266, 0.668625, -0.337349, 0.469963, -0.821507, 0.361637, -0.185504, -0.226764, 1.463808, -1.170744, 0.962554, -1.067644, 0.680177, -0.352000, 0.766491, 0.368286, -0.041368, -0.185891, 0.572279, 0.475622, -0.015614, 0.595553, 0.312691, -0.444387, 0.858805, -0.714035, -0.860998, 1.232973, 0.746909, -0.146962, -0.097159, 0.017668, -0.773621, -1.153864, -0.551942, 2.250875, 0.417342, 1.060219, 1.964819, -1.127420, -0.828311, 0.896610, 0.378337, 1.623264, -0.317616, 1.352037, 0.434727, 0.917286, 3.294066, 1.122401, 0.039238, 0.805987, -1.854270, 1.640013, -0.823682, 0.548888, -1.544348, -0.260741, -0.160354, -0.800431, 2.378434, -0.331215, -0.166094, -0.193455, -0.147849, 0.551494, 0.756349, 0.387109, 0.814995, -0.801545, -0.932988, -0.046805, 0.264169, -0.673894, -0.563174, 0.634202, 0.199476, 0.222129, 0.324260, 0.438683, 0.689621, 0.473255, -0.577350, -1.890997, -0.498742, -1.030212, 1.960762, 0.426586, 0.799986, -0.304973, -1.334436, 0.441415, -0.361671, -0.153559, 0.279821, -1.035372, -0.395245, -1.655331, -0.484320, 0.327468, -0.816196, 0.403930, -1.319878, 0.138421, 0.289832, 1.316994, -0.656594, -1.419364, 0.461996, -1.002195, -0.715450, -0.714658, -0.315496, 0.496665, 0.684950, -1.976423, -2.019666, -2.141942, -0.067594, 0.115619, 0.227518, -1.205330, 0.339143, 0.594462, 0.806198, -0.402049, 0.289432, 0.012881, 0.352648, -0.279749, -0.061365, 0.388821, -0.358784, 0.764064, -0.321759, -0.625129, 0.261736, -0.345302, 0.798635, -2.688097, -0.993953, -0.338664, -0.069779, -0.597257, -1.847885, 0.280960, -0.002756, -1.244031, -0.313816, 0.144402, 1.648641, 0.496644, 0.579856, -1.757140, -1.638650, -0.629387, -1.456585, 0.692796, 2.217984, -0.594434, 0.437397, 0.405732, 0.033633, -1.318801, 0.384458, 0.451332, 1.184789, 1.466613, 0.327402, -0.603376, 1.002395, 1.427166, 0.494772, -0.720510, 1.444688, 0.093412, -0.252758, 0.298626, -1.023951, 0.757852, 0.265532, 0.522633, -0.577624, -0.223571, -0.424457, -2.437884, 0.037673, -0.313798, -0.877012, 0.058171, 0.299391, 0.457107, 1.108758, -1.004998, 1.108680, 1.092108, 0.347071, 0.561858, -0.309738, -1.961865, 0.067770, 0.208781, 1.406564, 0.079408, 0.292537, -1.290361, 0.522549, 0.417226, -0.124813, 0.921581, 0.995435, 1.536781, 0.655386, 0.403072, -0.741236, 0.258980, 0.920533, -0.233766, -1.730940, -1.213816, -0.171870, -0.270637, 0.124970, 0.417329, -2.067523, -0.100395, 0.346188, 1.321396, -1.070765, -0.207533, -1.659396, 1.943506, -1.032507, 0.448917, -1.258586, -1.352016, 0.256929, 0.078243, 0.199747, -0.261881, -1.095747, -0.041415, 2.314274, 0.125063, -0.875276, 0.007655, -0.224708, 0.067192, 0.510492, 0.054327, 0.309587, 1.689233, 0.332936, -0.663006, 0.508924, -1.402498, 0.113803, 1.751177, 0.089091, -0.581800, -0.690685, -0.698377, 0.789543, -0.264834, 0.819967, -0.179253, 0.597610, 1.024996, 1.777037, -0.101047, 0.818741, -1.127099, 0.202876, -0.545788, -1.996230, 0.285502, 0.739056, 0.348153, -1.570766, -0.845416, 0.577325, 0.532560, 1.448241, 0.951012, 1.601069, 0.562329, 0.912995, 2.233775, 0.242845, 0.827675, 0.323510, -1.859925, -1.202888, -0.476400, 0.429710, -1.308589, 0.295224, 0.612134, -1.331652, 1.018703, -1.283876, 0.760105, -0.676802, 1.605096, 0.842045, -0.210628, 0.240826, -0.633423, 0.516157, 0.184192, -0.200448, -0.744881, 0.551060, 0.694408, -1.253124, 0.203826, -0.277176, -0.320803, -1.490409, 0.798990, -0.853038, -1.508126, 0.559247, -0.055065, -0.525157, 0.703393, 0.964516, 0.226263, 0.087568, -1.247614, -0.031154, 0.372990, -0.008329, 0.671473, -0.466580, -0.984668, -0.266251, -1.040791, -0.328515, 0.523336, -0.061269, 0.136050, 1.734326, -1.684678, 0.097109, -0.033681, -1.866523, -0.114286, 0.483032, -0.783239, -0.848321, 1.238794, 0.073016, 0.990971, -0.305485, -0.471023, 0.419819, 0.859822, -0.822961, 0.733795, -0.627316, 1.533442, 0.441122, -0.011299, 0.125103, -0.028121, -0.354656, -0.321765, 0.612309, -0.623230, 0.699508, -0.671007, 0.173559, -0.634868, -1.128972, -0.529348, 0.551161, 0.127342, -1.614116, -1.543403, 1.040704, -0.874271, -0.323190, 0.791401, -1.117346, -1.268923, -1.496959, -0.322501, -0.691180, -0.878479, -0.389889, 0.224996, 1.052182, 0.814613, -0.203115, -1.430450, -1.156906, 0.093334, 0.268751, -1.231103, 0.358831, 0.717739, -0.526319, -0.871801, 1.118623, -0.286269, 0.807651, -0.171898, -0.244346, -0.292616, -0.312339, -0.778441, 2.283582, -1.153663, 0.010582, 0.292626, 0.637879, -0.395363, 0.652680, -0.170944, 0.261480, 1.018349, 0.420863, -1.273513, 0.226659, 0.211982, 0.768227, 0.624927, -0.387252, -1.259928, 1.280543, 1.144495, -0.764596, 1.433049, 0.012981, 0.835417, -0.245949, -0.243545, 0.144518, -0.992883, -1.044753, 0.438425, 0.253992, 0.453029, 0.501885, 1.681062, -0.684413, 1.024482, -1.231547, -0.223500, 1.481364, 2.259431, -0.010872, 1.206360, -0.518804, -1.566448, 0.224529, 1.407457, 0.205682, -1.231488, -1.093900, -0.864383, -0.470304, -0.283235, -1.523998, 0.588132, 0.799795, 0.540549, 1.298360, 0.432368, -1.537464, 0.926389, -0.242382, 0.376326, -0.084512, -0.614499, 0.592639, 0.924944, 0.553291, 1.157093, 0.221752, 1.283735, 0.506319, -1.305093, 1.103942, -0.066378, -0.649467, 0.468847, -0.823644, 0.677119, 0.257429, 0.052998, -1.195108, -0.225365, 1.553572, 0.409460, -1.194006, -0.572291, 0.947205, 1.586773, -0.563282, -0.075441, 1.123739, 0.475328, 0.334366, 0.414407, 0.373830, -0.429325, -0.905962, 1.032345, 0.849797, 0.199190, 1.287890, -1.264970, 0.501707, 0.598815, -0.456416, -0.820294, 0.189219, -0.780710, -0.884509, -1.518949, -0.315514, 2.512309, 1.348925, -0.220670, 0.183711, -0.129030, 1.156924, -0.672819, -0.987780, 0.147582, -0.565920, -1.716531, -0.224108, -2.168154, 1.186326, -0.930835, -0.512965, 0.973275, 1.725040, -1.534523, -1.010800, -0.701094, 0.520839, 0.597366, 0.391436, 0.460181, -1.120708, -0.081569, -0.907186, -1.543816, 1.838788, -0.772729, 0.153728, -0.081366, -1.700483, -1.361371, -0.268214, -1.442124, -0.541602, -1.692319, -1.569642, 0.638361, -1.876925, -1.571427, -0.450344, 0.960780, 0.253591, -1.229348, -0.841928, -0.613002, 2.213668, -0.902062, -0.537889, -0.204258, -0.207101, -0.240051, -0.698893, 1.015808, -0.788519, 0.090246, -1.647101, -1.219294, 0.371430, 0.608064, -1.007720, -0.716862, -1.317105, 0.370004, -0.503596, 0.233341, -0.576625, 0.049660, 0.310022, 0.207220, -1.493660, 0.074741, 0.043931, 0.241622, 0.183654, 0.433645, 0.856215, 0.987696, 0.526214, -1.911603, 0.701377, 0.199308, 0.161817, -0.049446, -0.958827, -1.441590, -0.922162, -0.459064, -1.387224, -1.526984, 1.527146, 0.832633, 0.728032, 0.160987, -1.868734, 2.432333, -1.181181, -1.075494, 0.168446, 0.258317, 2.488678, -0.857732, -0.264983, -0.092322, -1.020084, -0.417596, -1.739162, -0.284714, -0.278035, -0.912109, 1.192221, -2.834740, 1.489730, -0.990097, -0.749150, -0.168077, -1.074848, -1.793903, -0.215131, -0.387670, 0.984328, -0.581987, -1.598644, -0.155541, 0.828786, -0.025096, -1.434835, 0.269190, 1.554233, 0.956460, -1.707802, 0.942780, -0.044878, 1.581209, 0.589502, -0.656406, -0.273697, -0.694312, -0.804025, -1.068324, 1.002741, 1.254451, -0.241819, -1.008920, 0.190989, 0.531043, -0.172930, -0.721633, 0.157305, -0.574001, 0.618801, -2.038373, -0.530031, -1.931389, -0.718863, -0.379351, 0.325355, -0.592091, 0.983623, -0.773068, 0.234150, 0.286031, 0.331320, -0.480235, 0.465021, 0.915267, 0.262110, 0.844248, 2.533713, 0.277368, 0.150545, -1.431177, -0.495116, 0.534041, -0.728234, -2.267874, 2.226621, -1.051680, -0.308458, -0.170056, 0.651044, 0.751770, -0.786996, -0.252661, -0.073379, -0.309679, -1.085102, 0.141903, 1.199780, -0.167697, -0.828849, -0.933525, -1.206744, -0.994324, 0.618158, 1.827536, 0.011788, 0.549670, -0.082109, 0.295925, 0.687917, 0.158110, -0.425561, -0.562384, 0.056593, 0.060151, 1.945135, -0.558745, 0.291663, -1.522245, -0.425124, 1.756151, 1.150879, 0.876375, -1.069071, -1.506176, -0.391403, -0.481686, 0.952427, -0.979452, 0.181769, -0.235477, -0.694768, 0.409172, 0.041034, -0.592468, 0.821789, 0.654778, 1.333243, -1.323900, 1.275142, 0.466929, -1.028773, -0.752241, 0.316623, 0.989202, -0.946536, -0.016043, 1.382814, -0.641642, 1.937514, -1.397096, 0.774539, -1.020369, -1.626969, -1.614144, 0.063889, -2.955909, 1.438022, -0.121510, -0.326616, 0.646469, -1.078933, -0.611948, 0.993523, 0.585306, -0.615415, 0.792652, -0.846684, 1.232522, -0.447847, -1.078540, -0.759884, -0.178300, -0.424913, -0.106878, -0.029422, -0.570760, 0.416001, -1.114337, 0.419540, -1.296435, 0.057007, 1.049508, -0.445451, -0.920846, 0.933629, -1.290948, 0.597998, 0.191925, 0.478656, 0.404023, -0.098274, 1.008412, -0.231724, 0.077271, 2.410440, 0.114034, -0.833849, 0.083616, -1.800023, -1.332195, 0.436132, 0.880319, 0.543931, 1.060894, -0.555089, -0.467839, -0.504384, 0.691468, 0.813803, -0.757775, -0.922457, 0.806198, -2.327282, 0.209234, 0.795627, -0.093983, 1.289781, 0.594643, -0.719695, 0.433027, -0.284932, -1.542211, 0.900129, -1.230149, -1.902017, -0.441231, -1.210279, -0.197998, 0.282436, -1.650350, -0.199126, 0.838268, 0.249907, 1.528176, 1.499617, -0.824535, 0.011667, 1.582711, 0.025462, 0.407588, -0.424479, -0.355147, 1.418948, 0.190102, -0.229875, -0.823422, 0.656396, -0.802241, -0.539804, 1.084687, -1.191797, 0.032747, 0.854266, 1.138491, -0.727793, -0.744864, 1.115566, 0.787275, -0.245471, -0.887163, -0.306688, -0.773476, -2.166873, 0.675027, 1.941835, 0.378349, 0.271412, 0.613518, -0.573172, 0.335306, 2.135315, -0.194711, -0.731636, -0.703300, -1.779873, 1.021432, 1.722873, -0.100871, -1.051369, -0.612717, -0.362892, -1.261449, -1.470752, 0.116421, -1.879108, -1.051846, -0.058405, -0.248763, 0.630028, -0.427359, 0.370717, -0.380314, -1.685083, 2.028761, -0.627172, -0.736063, -0.000232, -0.378465, -0.320739, -0.702141, -0.851224, -1.683412, 0.275351, 0.765837, -0.056659, 0.490378, 0.579577, -0.789724, 1.422014, -0.854742, -1.209662, 0.969723, -0.812093, 0.088157, -0.433541, -1.857995, 1.764611, -0.560070, 0.921676, -0.128485, -0.641978, 0.089977, -1.137541, 0.851115, 1.717667, 0.204153, -1.386338, -0.012240, 0.538882, 0.316104, 1.279872, -0.343778, -0.550929, -0.157596, -0.831566, -0.736403, -0.728087, 1.325507, 0.223421, -1.793291, -0.561975, -0.090290, -0.645108, 0.190792, -0.997602, 0.918327, -0.977693, -0.693141, 0.863141, 0.496938, 0.797128, -0.837729, 0.116220, -0.645902, -0.244782, 1.608342, -0.599335, -0.656318, 2.884092, 0.839951, -0.704683, -0.946596, 3.295261, 1.409860, -0.536865, -1.355396, 0.710234, 0.969652, -1.663202, -0.964779, -0.938305, 1.159045, 0.836793, -1.099281, 0.116668, -0.801463, -0.670267, 0.087341, -1.858877, 0.168464, 0.413383, -0.738234, 1.079499, 1.444205, 2.041893, 1.291946, 0.784241, -1.111100, -0.644108, -1.241789, -0.491682, -0.166509, 1.551962, -0.450500, -0.845400, -0.729360, -0.345683, 0.837829, 0.478985, 0.678351, -1.389608, 0.534791, -0.089142, -0.114093, 0.093009, -0.340041, 0.250614, -0.151415, -1.652256, -0.853159, 0.774902, 1.958038, -1.450961, -0.859910, 0.546809, -0.477893, -0.211489, -0.876248, -0.821221, -2.123207, -1.492650, 1.156059, 0.895164, -0.738948, 0.233253, 1.905542, -0.079593, -0.155136, 2.305882, -0.273484, -0.566885, 0.279136, -0.395144, -1.230924, 0.272750, 0.270651, -0.571963, 0.910520, 0.725947, -0.309072, -0.023248, -0.562326, 0.640770, -0.278303, 0.731448, -0.351787, -0.960881, 0.942895, -0.472951, 0.529909, -0.355112, 0.847091, -0.494718, 0.429351, 0.483058, 1.133634, 1.167801, -0.264509, -2.373041, 1.109496, -1.287663, 0.294950, -0.287150, 0.939537, -1.278916, -0.620015, -0.146790, 0.294089, 0.609734, 0.119335, 0.123527, 0.130386, 0.734867, 0.234173, 0.659366, 0.238540, 0.579723, 0.680795, 0.246009, -0.951645, -0.795111, -0.065673, 0.544346, 2.934424, -0.533174, 0.977978, 1.103460, 0.868221, 1.463206, -1.697608, 0.287286, 0.334054, -0.649849, -1.654191, 0.684923, 0.523903, 1.758263, 0.877924, -0.934760, 0.274968, 0.213620, 0.001457, 0.056218, -0.555498, -0.270374, -1.752823, 1.047068, 2.734392, -0.466875, 0.287841, 0.737404, -0.647578, 0.417001, -0.542664, 0.527525, 0.459630, 0.172339, -1.172532, 0.509536, 0.621444, -0.610799, -0.415070, -0.509843, -1.658756, -1.093467, -2.126905, -0.518205, 0.067556, -0.553795, -2.878675, -1.575168, 0.319597, 0.574191, 0.078536, -0.180321, 0.247530, 0.967652, 0.925374, -0.160885, -0.844323, 1.234135, 0.336521, 0.661189, -0.542232, 0.670142, 0.683886, -0.436394, 1.447906, 1.129992, -0.634565, 0.082254, -1.142330, -0.096293, 0.767680, 0.893264, -1.237613, -1.126703, 0.728170, 0.575194, 1.240174, -1.768852, 0.536677, -0.252502, 0.486789, -0.171011, -0.257381, 1.307250, 0.229467, -1.236534, -0.787848, 0.061045, 0.031829, -1.014912, 1.439787, -1.135896, 0.291074, 0.018218, -0.963381, 0.878649, -0.205836, -0.046363, 0.759615, 0.043303, 0.178095, 0.652399, -1.565304, -0.659674, 0.454158, 0.224785, -0.039544, 0.466910, -1.408313, 0.039009, 0.668789, -1.829626, 0.164978, 0.965653, -1.894616, -0.171453, 0.575807, 0.311404, -0.256240, -1.144235, -0.314146, -0.101274, 1.469922, -1.595728, 0.688351, -0.058753, 1.599472, 1.346916, 1.141347, 0.402206, 0.509964, -0.447592, 2.039549, -0.264526, -0.483366, 0.212342, -1.211447, 1.127557, -0.175670, -1.582539, 1.916948, -0.418697, -1.361261, 0.701625, 0.836808, 1.694200, -1.922272, 2.785683, -0.001746, -0.582601, 0.569545, -0.059714, -0.413965, -0.237097, 0.410471, 1.614576, -0.518125, -0.150064, 0.185868, 1.248381, 0.290936, -1.017554, -0.546839, 1.598038, 1.252281, 0.408563, -0.105386, -0.918977, -2.108553, -0.873579, -0.054834, -0.482299, -0.023416, -1.716354, 1.028809, 0.106077, -0.867786, 2.341866, -0.244537, 1.083142, -0.780861, -0.114854, 0.281570, 0.657147, -0.745454, -0.118075, 0.224655, -0.130497, -0.018081, 0.594210, -0.880708, -0.736090, 0.405108, 0.248463, -0.103432, 0.804367, 0.050547, -0.297901, -0.106650, -0.665342, -0.607072, -1.426338, -1.312137, 0.316742, 0.857733, -1.819282, -1.744692, 0.193747, 0.303592, 0.545289, -0.216144, -1.621939, 1.609917, 0.008518, -1.416048, -0.386168, 0.811665, -1.138723, -0.719371, -1.223980, -0.565182, -0.620800, 0.978672, -0.265252, -0.147947, -0.574011, 1.317613, 0.550122, -0.927371, 0.267496, -0.434137, -1.126929, 0.222792, -0.093836, 0.573814, 0.684660, -0.289461, -0.673617, 0.031222, -0.390207, -1.875464, 0.650939, 0.063618, -0.018508, 0.385772, 1.324701, 1.379135, 1.818650, -1.064153, 0.362183, 0.341372, -1.406471, 0.069905, -0.350700, -0.223056, -1.918347, -0.652705, 0.292548, -0.410094, -1.077892, 0.156263, -0.972401, -1.905446, -0.268428, -0.407302, 0.500146, -0.625782, 1.044492, -1.250173, 0.863476, -0.215112, -0.108704, -1.235056, 0.944494, 0.107667, 0.589667, -0.117342, 0.155034, -1.884534, -0.539770, -1.125896, -0.883840, -0.611908, 2.753627, 1.652613, -0.767095, 0.385451, 0.051766, -1.323072, 0.049867, -0.512946, 0.827393, 2.294214, 1.477571, 0.716674, 0.679587, 1.309817, -0.388980, 1.676723, -0.992685, 0.623931, -0.577933, 1.296038, -0.282157, 0.776775, 0.124468, 0.907620, 1.804456, -0.895438, -0.740157, -0.380904, -0.495472, 1.646763, 1.178004, -0.521876, -0.624476, -0.080065, -0.095494, 0.968431, 0.473506, -0.457273, 0.994473, -0.367438, 1.373465, 1.127022, -0.316771, 1.893742, 0.446486, -2.047539, 0.031481, -0.257734, -0.253363, 1.331671, -0.839316, 0.805521, -1.042728, -1.186315, 0.001378, 0.486470, 1.802370, 1.272869, 0.183356, -0.741275, -0.151712, 1.621823, 0.934742, -0.702545, -0.673393, -2.141491, -0.376082, -0.301698, -0.468269, -0.848141, -0.757061, -0.441397, -1.714403, -0.864817, -0.567808, 0.395281, -1.035108, -1.244881, 0.982442, 0.234864, 0.657748, 0.201716, -0.239845, -0.170057, 0.923069, -0.515938, 0.736369, -0.373563, -0.594491, 1.300918, -0.057348, 1.134259, 0.608627, -1.007348, 0.478846, 0.580348, 0.017821, -0.072000, 0.517446, -1.714189, 1.895427, -0.555520, 1.415054, 0.982356, 0.232862, -0.075252, -0.119670, 0.116894, 0.035425, -2.981077, -0.642234, -0.490223, 0.949176, -0.492867, 0.386664, 0.604940, 0.153660, -1.455345, -0.360739, -0.516151, -0.742326, -1.070877, 0.902510, -1.352179, 1.136226, 1.352921, 0.699752, 0.359441, 2.592792, -0.887433, -0.123843, 0.503732, -0.683479, 0.591829, 0.616676, 0.893981, 1.239937, -0.835748, -0.921213, 0.471332, 1.959629, -0.712119, -0.876056, -1.461577, 0.725497, -0.433947, -0.280278, -0.759501, 1.579697, -0.242384, -1.185813, 1.214715, 0.841201, -0.943776, 0.155406, 0.286934, -0.252360, -0.349418, 0.310711, -1.282880, 0.383753, -0.354927, 0.549806, -0.237914, -0.019383, 0.008966, 0.795499, -0.132362, -0.315418, -0.290750, 0.201498, -1.654917, -1.539167, 0.193551, -0.167884, 0.742253, 0.493177, 1.316069, 0.696697, -0.343644, -1.723649, 1.641208, 1.192964, -0.551287, 1.309234, 0.366176, -0.507910, -0.549484, -1.331046, -0.077263, 0.817586, -0.582795, 0.197074, -0.293068, -0.179441, 1.826765, 1.214504, -1.421991, -1.394491, 0.509878, 0.302011, 0.726037, 0.486916, -1.390760, 0.129507, 0.246152, 0.542568, -0.243816, -0.920033, -0.022152, -0.122849, -0.034907, -1.010447, -2.115669, -0.921480, 0.363158, 0.298078, -0.264359, 2.521276, 0.469212, 1.964345, 0.562863, -0.565281, 0.617093, 1.008149, 0.614923, 0.670064, 0.662407, 2.162896, -1.506033, -1.414300, 0.915611, 1.129178, 1.151091, -0.407912, -1.311165, -0.946797, -1.872198, 1.717881, -0.220359, -0.915865, 0.937339, -1.567913, -0.452273, -0.573111, -1.037161, -1.147535, -0.398549, -0.245396, 0.223974, 0.712700, -0.396805, 1.659639, 0.258945, 0.061332, -0.099915, -0.386359, -0.138077, -2.285939, -2.107903, 0.260845, 0.260295, -0.107461, -0.277447, 2.913926, -0.736411, -1.028210, -0.176374, 1.521541, 0.700929, -1.935581, -0.639139, 0.602713, 2.188656, -1.247290, -0.937184, -0.474168, -0.052560, -0.472749, -1.427891, -1.642530, -0.554331, -1.323366, 0.146956, 0.226637, 0.744074, 0.353701, 1.127897, -0.526748, -1.164095, -0.289418, 2.689822, 2.136349, -0.656709, -0.761043, 1.388401, -1.598813, 0.418309, -1.421558, 0.657747, -0.536230, 0.059853, -0.261367, -0.154115, -0.116551, -0.782348, -0.531219, -2.741324, -0.194774, -0.808758, -0.230346, -1.052592, 0.773294, -0.099241, -1.002693, 0.590679, 2.288377, -0.341220, 0.657274, 0.383222, -0.548760, 0.813253, -0.348239, -0.295838, 0.405406, -0.401578, 1.629204, 1.016865, 1.820713, 0.620749, -0.422787, 1.370819, 0.437397, 2.728343, -0.665351, 0.360643, -2.952486, 0.726280, -0.464092, 1.564664, 1.183746, -0.140077, -1.609305, 0.388781, 1.805430, 0.673783, 0.847742, -1.429641, -0.364561, -0.782296, -0.461391, 0.945367, -0.002263, -1.951044, 0.163468, -1.216889, -0.347887, 0.603077, -2.571118, 0.402727, 0.833914, 2.043092, -1.134621, 0.657550, 0.646142, -1.701417, 1.505809, 0.744325, -0.160547, 0.038150, 0.878490, -0.487961, -0.023531, -1.338219, 0.644638, 1.212874, -0.601670, 0.312677, 2.061152, -0.540609, 0.364667, 0.634646, 0.868277, 0.793666, -0.742269, -0.544547, -1.302459, 0.560828, -0.551382, -0.789269, -1.880177, 0.948593, 1.310579, 1.261896, 1.073440, 0.898310, -0.179731, -1.141158, 0.942666, 0.270296, 0.439961, -0.897617, -1.544970, -0.234612, 0.575016, 1.305525, 0.636647, 0.177148, -0.734641, -2.059326, -2.203162, -0.030725, -2.377880, 0.681216, -0.833386, -0.125028, 0.325196, 0.850329, 1.069324, -0.901739, 1.796688, -1.703425, -0.970516, -0.348875, -0.188258, -2.238509, -0.275880, -0.084813, 0.224025, -0.134691, 0.297070, -1.479561, 0.473431, 0.199697, 0.984612, 0.427675, -1.427747, 1.524924, -1.267863, -0.303976, -0.980761, 1.242003, 0.084785, -0.789370, 0.576805, 0.949141, 0.171224, 0.923626, -0.894551, 0.293951, 2.999224, -0.695536, -0.657224, -0.370457, 0.289485, 0.376630, 0.327050, -0.658003, 1.224362, -1.173111, -0.103859, 1.353293, 0.492534, -1.136925, -0.405728, -1.831111, -1.460551, -0.596232, 0.419152, -0.047052, 0.010094, -1.293542, -0.473344, -1.735135, -0.444567, -1.151635, 2.254477, -0.105680, -1.138938, 0.232102, 0.893697, 0.481107, 0.129821, 0.828834, 0.012631, 2.125962, 0.770060, 1.416905, -1.365304, -1.116700, 1.928549, -0.482531, -1.659604, 1.427824, 0.913770, -1.967791, 0.763760, 1.051851, 0.091184, -0.640880, -0.682313, -1.194793, -1.060970, -0.300702, -0.927257, -0.211245, -0.421115, -0.908739, 0.978105, 1.454828, 0.504301, -1.917201, -1.165814, 1.727954, -2.046449, -1.813825, -2.800429, -1.574381, -0.035876, -0.534210, -1.861530, 0.230464, 1.751231, -0.204038, 0.674686, 0.390044, 0.464456, 1.548922, -0.645087, -1.020081, -0.746528, 0.060918, -0.384667, 0.439998, 1.210240, -0.900052, -0.242748, -0.896840, 1.320688, 0.704749, 0.144492, -1.536981, 0.022620, -1.078140, -0.121028, -0.396926, 1.431968, -0.037225, -0.215811, 0.198981, -0.337709, -0.495669, 0.537513, 0.226481, -0.051115, 1.409801, -0.447711, 1.142646, -0.417949, 0.710524, -0.535885, -0.889719, 1.272967, -1.810272, 1.876250, 0.530862, 0.017543, -1.715143, -0.873434, 0.861819, 0.648042, 0.380872, -0.246158, -0.874763, 1.175764, 1.598093, 1.319488, -1.803118, 0.310229, -1.354173, -0.176996, -0.644531, -0.431836, -1.553841, 0.676229, -1.967339, -0.360646, -1.452337, -0.408455, -0.636573, -0.611551, -0.342793, 0.144527, -1.094639, 0.376491, -1.941913, 0.095123, 0.083729, -2.190884, 0.508485, -1.253052, -0.453907, 0.522360, -0.150098, -0.928572, 1.523357, 0.033463, 0.021376, 0.171265, 0.635548, -0.619018, -1.182319, 0.276227, 0.195062, 1.003434, -0.326149, -0.233598, 0.506441, 0.586626, 1.094506, 0.732796, -1.038504, -0.032688, -0.223191, 0.706378, 1.385335, -0.736105, 1.505928, 0.576942, 1.102368, 0.342808, 0.232175, 0.329078, -0.281622, -0.268113, 0.297442, -1.654862, -1.387284, 0.347010, -0.427002, 1.435983, -0.211988, 1.432677, -0.137043, 0.868494, -1.438739, -0.432645, 0.180190, 0.166272, -1.941954, -0.654251, 0.159904, 0.735305, 1.289666, -0.491510, -0.360136, -0.625220, -0.622546, 0.038664, 1.307312, -1.072097, 1.644663, 1.395235, 0.335790, -2.346597, -1.453871, 0.124641, 0.979782, -0.187530, -0.402526, 1.596517, -1.249949, 1.381190, 1.153673, -0.646039, -1.135743, -2.064886, 0.443188, -0.392404, -0.183575, -0.595350, -0.373553, -1.731477, 0.293917, 0.464925, -0.131654, 0.338280, 0.971592, 0.544083, -0.593729, 0.581391, 0.049570, 0.665698, 1.554073, 2.051040, 1.264994, 0.284753, -0.223940, 0.013025, 1.578663, 0.397423, 0.338771, 0.948901, -0.255468, 0.543271, -1.441572, -1.017584, -2.343974, -0.892020, -1.164765, 0.890379, 0.677515, 0.566318, 2.722571, -0.175620, 0.733549, 2.479710, -1.086199, 1.976917, -0.240016, 0.958143, -0.305520, -0.028627, -0.959700, 0.456449, 2.217017, 2.160115, 0.797643, 1.160221, -0.220677, -0.294599, 0.427451, 0.273464, -0.793952, -1.726198, 0.103973, 1.275484, -0.916343, -0.213839, 0.346862, -0.066235, -1.658777, 1.847968, 0.442934, 0.646220, -1.019012, 0.130128, 0.672232, 0.406632, 0.282525, 1.111466, -0.610471, 0.913907, -0.569503, 0.668567, -0.492053, 0.752004, 0.593907, 1.273272, -1.709688, -1.420430, 0.402947, 0.238491, 1.901797, -1.429218, -1.065302, -0.423841, 0.184660, -1.154388, -1.728662, -0.433297, 0.031642, -1.399173, -2.610458, 0.684569, 0.443293, 0.284231, -0.775240, 0.727082, -0.141152, -1.259207, -0.813588, 1.201866, 1.065534, -1.061569, 0.112190, 0.371255, -2.560068, -1.674337, 0.580230, 1.545776, -0.202455, -0.330252, 0.165186, 0.659836, 0.455610, 1.060875, 0.377072, 0.704615, 0.137726, -0.406939, 0.721694, 2.010913, -0.650981, 0.044983, 1.758263, -0.172722, 1.729487, 0.658749, -1.807022, -0.071710, 0.299541, -0.406716, 1.708485, -0.078615, 0.874915, 0.721516, -0.562142, 0.444970, 0.030435, 1.062719, -0.009797, 0.331812, -0.257507, -0.642826, 1.489980, -1.078856, 0.505459, -0.208200, 1.489289, -1.108806, 0.086110, -1.148330, 0.318746, 0.528346, -1.276897, -1.077130, -1.821224, -0.198135, 0.425110, 1.357034, -1.416233, -1.208188, -0.440489, -2.295060, -0.307250, -0.473740, -0.637878, 0.095922, 0.204680, 0.858249, -0.728034, -0.259860, 1.365026, 0.038359, 1.619341, 0.641033, -0.848915, -1.765775, 0.434685, -0.485445, 0.620264, 0.233168, 0.496633, -0.635425, -0.444807, -0.293892, -0.478920, -0.056509, -0.207709, -0.136660, -0.903967, -1.348821, 1.734755, 0.031791, -2.587564, -1.821445, -0.308052, -0.578963, 1.397245, 0.374941, -1.060330, -0.507319, 0.208604, 1.536535, -0.398829, 1.179931, 1.059424, -0.509376, 0.139877, -1.214148, 1.960906, -0.437455, -2.009377, -2.032501, 1.029385, 0.170179, 0.449437, -0.450656, -0.991511, 0.349132, 0.299581, 1.826763, -0.655495, -1.309017, -3.002771, 0.224369, -0.670101, 0.213385, 0.016603, 0.961343, 0.711519, -0.624134, -0.021240, 0.150877, -0.735731, -0.675393, 1.166867, -0.269430, -1.837347, -0.327538, -0.292053, 0.297637, 1.412328, 0.464034, 1.005424, -0.688567, -0.220827, 0.474712, -1.795709, -0.663337, 0.870004, 0.356175, -0.744858, -0.579476, 1.464894, -2.458880, -2.249442, -0.462045, 0.217238, 0.999104, -0.355552, 1.226544, 2.202270, 1.994216, -0.442910, 0.269814, -2.211737, 0.240029, -0.805894, 0.925663, 0.390079, 0.386544, -0.357518, -1.425346, -0.356111, -0.918788, -0.937429, -0.628619, 0.987202, 1.011958, -0.040734, 1.572538, -0.916034, 2.142630, 0.323526, 1.590794, -0.807134, -0.596215, 0.258800, -0.790889, 0.779883, 0.138611, 0.484443, -0.168145, -0.268714, -0.806645, 0.946017, 0.591252, -1.167035, -0.064037, 1.010003, 0.563049, -1.123573, 1.294540, -0.051518, -0.677284, 1.036607, 0.531620, 0.018017, -0.559476, -1.076060, -0.489468, -0.018593, -1.474160, -1.086951, -0.921499, -0.164137, -0.887251, -1.057573, 0.151256, 0.260231, 0.698099, -0.030594, -1.768641, 1.466413, 0.388410, 0.932538, -0.505031, -0.783742, 1.102085, 0.610680, 0.635592, 0.101899, -0.463534, 1.837103, 0.763778, -0.777260, 0.678067, 0.397137, -1.613219, 1.638842, 1.561704, -1.408138, -1.536592, 1.031409, -2.367192, -0.646976, -1.477342, 0.692510, 0.740599, 0.570904, -1.396710, 0.152288, -0.246136, 1.575269, -0.718980, -0.691288, -0.581177, 0.111762, -0.696594, -1.287438, 0.232954, -0.648621, -1.013484, -1.421856, 0.120184, 1.421674, -0.360872, -0.531505, 0.151806, -0.274982, 2.109722, -1.779857, -1.680797, -0.934375, 0.594241, 0.779384, -2.626769, -2.076733, -1.155985, 0.105148, 0.452280, -0.040999, -0.709963, -0.939537, 0.499941, 0.180139, 0.310072, 1.806872, -1.756247, 0.144770, 0.233338, -0.135717, 0.326980, -1.926322, -1.848879, -0.900480, 0.355452, 0.311934, 0.372904, -0.712604, -0.756677, 0.075465, 1.003045, 0.948611, 0.462486, 0.047251, -1.408994, 0.144499, 1.576225, -2.117524, 0.098124, -0.085894, -0.195769, 1.879621, 0.130960, -0.452396, 0.667443, 1.466419, 1.820750, -0.161807, 2.002359, 0.659923, 0.297108, -0.459391, -1.134038, -0.343862, 0.777568, 0.889402, -0.766731, 1.259474, -0.071255, -0.056483, -1.013449, -0.229199, 1.679355, 0.360851, -0.735641, -0.556593, 0.757427, -0.123547, -0.908905, -0.366782, -0.265149, -0.905410, 1.303287, 0.269712, -0.324711, -0.782275, -0.314567, 0.770087, -0.615491, -0.502674, -1.111622, 1.272049, 0.341114, 0.850730, -0.189032, -0.442412, 0.828035, -1.326719, 1.966919, -0.974363, 1.238002, 0.687884, 1.501663, -0.562896, 0.242446, 0.403003, -1.794563, -0.956314, 0.594500, -0.219098, -1.063674, 0.077278, -0.096761, -1.331001, -0.385402, 2.303776, -0.174691, 0.843084, -0.558374, -1.760521, -1.111174, 0.748879, -0.625377, 0.121835, 0.331567, 0.883143, -0.324301, 1.132352, -0.038810, 0.220479, 1.980888, -0.589401, 1.040358, 0.135460, -0.554857, 0.726069, -0.462902, -0.043163, 0.417688, 0.265841, -1.294165, 0.812285, 0.526812, 1.840654, 0.239063, 0.294933, -0.487954, 0.692051, -1.269333, 0.745254, 0.223149, 1.056486, 0.031604, -0.857991, 1.029837, 1.733909, 1.192550, 1.580611, -0.746985, 0.134219, -0.050879, 1.376632, 0.748439, 1.244129, -1.376228, 1.563825, -0.012375, 0.441585, 0.476368, -1.023567, 0.259841, -0.551011, 0.759149, 0.381059, -0.272999, -0.559508, -0.409139, 0.636831, -0.248852, -0.137838, 0.781860, 0.141871, 0.200331, -1.981182, 0.465103, 1.055211, 0.094747, 2.063927, 0.351936, -1.149270, 0.897396, 1.751979, 1.120999, -0.026925, -0.490009, -0.445049, -1.543464, 1.282042, -0.739783, 0.719865, -1.592278, 0.937762, 0.201059, -1.547987, -1.255977, 0.885717, -0.522399, 0.220323, 0.037051, -0.069133, 0.788517, -1.048137, -1.492292, -2.161613, 1.505137, 0.740686, -0.133142, -0.172486, 1.256635, -1.400967, 1.242837, -0.559335, -1.077442, 2.187645, 0.990782, -0.179737, 0.078305, 0.626391, -1.163145, -0.724571, -1.287627, -1.283305, 0.950602, -1.361256, 0.170686, 0.602111, 1.473908, -0.046966, 1.093398, 1.192551, 0.377511}, + { -0.881922, -0.441475, 0.095216, 0.277822, 1.187204, -1.899612, -1.098378, -0.188219, -0.271675, -1.551891, -0.694090, -0.453620, -0.786726, 1.505944, 1.583824, -1.574230, -0.304759, 0.082964, -1.178429, -0.629984, 2.040542, 0.266754, 0.645194, -0.043418, -0.621926, -1.786077, 0.353232, 0.872558, -0.198297, 1.423826, -2.951744, -0.838225, 0.016662, -0.878651, 0.130458, 1.204120, 0.066266, -1.226935, 0.349790, -0.720848, -1.161333, 1.963225, -2.628083, 0.531781, 1.282090, -1.424954, -1.642135, 0.369479, 1.144751, 0.628271, 2.102018, 1.675541, 0.036108, -0.094256, -0.484588, -0.324516, -0.267067, -1.708106, 1.456672, -0.512451, -1.771174, -0.496636, -0.203187, -0.209032, 1.417528, 0.201170, 0.054343, -2.352902, -0.171269, -0.287056, 1.479919, -0.272208, 0.584413, -0.601323, 0.727503, -0.037182, -0.312569, -0.635195, 1.601334, -0.317933, -1.028278, 0.793352, -0.553760, 0.686380, -0.153927, -0.516167, -0.268562, 0.578627, 0.000580, -0.656903, 0.650811, -0.293908, 0.090713, 0.988020, 0.118716, 0.568436, 1.097589, 0.480402, -0.497558, -0.189817, -0.484848, 2.097325, 0.618577, 0.307531, -1.179443, -0.745780, -0.141165, -1.032444, -0.472793, -1.637769, 1.155855, -2.265675, -1.459298, 0.429757, -1.820618, -0.976688, 0.583280, -1.109002, 0.413996, -0.201739, 0.098282, -1.434527, -0.821132, 0.263854, -0.403834, -0.214608, 0.195771, 0.508480, 1.015544, -1.334033, -0.772913, 0.230757, 3.171164, 0.801644, -0.984648, -0.408775, 0.892276, -0.084682, -0.262540, -0.343953, 0.642774, -1.517211, 0.940200, -1.896136, 0.661245, 1.461544, -0.757805, 0.558368, -1.080584, -1.347332, 1.331923, -0.660617, 0.573280, -0.064832, 1.460700, -0.746018, 0.185523, 0.413879, 0.677270, -0.897426, -1.920292, -0.003490, 1.192940, -1.437579, 0.483549, -0.106602, 0.252345, 1.694844, 1.560199, -0.210364, 1.719331, 0.905494, -0.497101, -0.240751, -0.306421, 0.300991, 1.412517, -0.933404, -1.695450, -0.062303, -0.181337, -1.980962, 0.218808, 0.477373, 0.216669, 1.302895, -1.221518, 0.516993, -0.137677, 0.861115, 0.804766, -0.933367, 0.705496, -0.172357, -0.194780, 0.133321, 0.351466, 0.255344, -0.946124, 0.246271, -0.521414, -0.119903, -0.252033, -2.999929, 0.311372, 0.270962, 1.132810, -1.223415, -1.326929, 0.800213, -0.263988, 0.902403, 0.434560, -0.847739, 0.840797, 0.049833, -2.186665, 0.994462, 1.004662, 0.174228, -0.339594, 0.704017, 0.014614, -1.282498, 0.544331, -0.208560, -1.191696, -0.388204, -1.030882, -0.092887, -0.504820, -0.957989, 1.733145, 1.145290, 2.039025, -1.800519, 0.250587, 0.222131, -1.224767, 0.515113, -0.414525, -1.387028, 0.572231, 0.778980, 0.008108, -0.583075, -0.444417, -0.388208, -0.339023, 0.195905, 0.169182, 0.000530, -2.999993, 0.425017, -0.492439, 1.106103, 1.214372, -0.636495, -0.623705, -2.252326, -0.505196, 0.387389, 0.648679, -0.301876, 0.759134, 0.649238, 1.572919, 0.352764, -0.476879, 1.293139, 0.741614, -0.625515, -0.998262, 0.394698, -0.559627, -0.623834, -0.597203, 1.062729, -0.217285, -0.083428, -0.791258, 1.285348, 1.547900, -0.833103, 0.266786, -0.348633, -1.148197, -1.081452, -0.633465, -0.219719, -0.603646, -0.432448, 2.414271, 0.521440, -0.969086, -0.778761, -0.632293, -1.418125, -0.664495, 0.678055, 0.149162, 0.826395, 0.953730, 1.915789, -0.635126, -0.507180, 0.874297, 0.941489, 0.139489, -1.183554, -0.565548, -1.180420, -0.375897, 0.077466, 0.857649, 0.318530, -0.080861, 0.792615, -0.022289, 0.502704, 0.473651, -0.080403, 0.815462, 0.114641, -0.324211, 0.287149, -1.638044, 0.832413, -1.156925, -0.738518, -0.043875, 0.900965, 1.144693, 0.173568, 0.123190, 0.067719, -0.333825, 0.267890, -1.058012, 1.336774, -0.450500, 0.561924, 0.340607, 0.124565, -0.123169, -0.558627, -0.643291, 0.178710, -2.703767, 0.900895, -0.133826, 0.534285, 0.772143, 0.709713, 1.960788, -0.863720, -0.945287, -1.015019, -0.270637, 0.853249, 0.263402, -0.417374, -0.469738, 1.077232, -0.789801, 0.254249, -0.244236, 0.374345, 0.077507, 4.163978, -0.214677, -0.660921, -1.183298, 0.843937, 0.190921, 1.076918, -1.637761, -0.540155, -0.870821, 0.501623, 0.234239, 0.802983, 0.965028, 0.526389, 0.623481, 0.645466, 0.517610, -0.027501, -0.126191, -1.393792, -1.366363, -1.586830, 0.162576, 0.014585, -0.089766, 0.798340, -0.382945, -0.442585, -3.508447, 0.053691, -0.261107, 1.081604, -0.713828, 0.651608, -0.537735, -0.725444, -0.893032, 0.818583, -2.692069, -0.181880, 1.471898, -2.103962, -0.923691, -1.294132, 0.846215, 0.863169, -0.868037, -0.216476, 1.026033, -0.597380, -0.400197, -0.157312, -0.242278, 0.750249, -0.697439, -0.653707, 1.269485, -0.184855, -0.268337, 0.452186, -0.704510, -0.733193, 1.460170, 1.037376, 0.483194, -1.254678, -0.839436, 0.367864, -0.027925, -3.197841, -1.427614, -0.066117, -0.463247, 2.727879, 0.454125, 0.863162, 1.697308, -1.554835, 1.234633, -0.406632, -1.904808, -0.705320, 0.749228, 0.451145, 2.181263, -1.069893, 0.775668, -1.233840, 0.852005, -0.448346, 0.509341, -0.352564, 0.633048, -1.190605, 0.223186, -0.150575, -2.856350, -0.149040, 1.205862, -0.612369, 0.998939, 1.319145, 1.458498, -0.996119, -0.504002, 1.215494, 0.804158, 0.664033, -2.198613, 0.472915, 0.969556, -0.433604, -1.165602, 0.845389, 0.456149, -0.710381, 1.178303, 0.612422, 0.266654, 1.348515, -1.705691, 1.605785, -2.178704, 0.512979, 0.582276, -1.361259, 0.204127, -0.367851, 0.856941, 0.398114, 0.569099, 1.548776, -1.025822, 0.049280, -0.245633, 1.692654, -0.109666, 0.536395, 0.171944, 0.154791, -0.797560, 0.089322, -0.083234, 1.634436, 1.184060, 0.438092, -0.155353, 0.271874, 1.208094, -0.450600, -1.658713, 0.370131, 0.648125, 0.548693, 0.818451, 0.912229, -0.788066, 0.194086, 1.276482, -0.112466, -1.151196, 1.513922, -3.711241, 0.092354, 1.463342, -0.099834, 2.668918, 0.693174, -0.514847, 1.459478, 0.176794, 0.092626, 0.071760, -0.267300, 1.083152, 1.080383, 0.201979, 0.825793, -0.302209, -0.435496, 0.901130, 0.774261, 1.473601, 0.125915, 1.015194, -1.321496, -1.338176, 0.606074, 0.229791, 1.174267, 1.004795, -1.409657, -1.064941, 2.499508, 0.083731, -1.130139, -0.997475, 0.742749, 1.674309, -0.414880, 0.230781, -0.494016, -1.281798, -1.272924, -0.755912, 1.140988, -0.288875, 0.624233, 0.124953, -0.926546, -0.927038, -0.107384, -0.259576, -1.107491, -0.117098, 0.462850, -0.798517, 1.409912, 1.704733, 0.570611, 0.329553, -0.674943, 0.046271, 0.793233, -0.345799, 0.749524, 0.329532, -1.011016, -0.763064, -0.168968, -0.056861, 1.066920, 0.893196, 2.185479, -0.794679, -0.427544, 0.070849, 0.433064, 0.077359, 0.003436, 0.162383, 0.983868, 0.554784, -0.691311, -0.826291, 1.643626, 0.854292, 1.125333, -0.017044, -1.224044, -1.075267, 1.208748, 2.325320, 0.449146, 1.184311, -0.371697, -0.099171, -1.223464, -1.574479, 0.104012, 0.518046, 0.087771, -0.859436, 2.244544, -1.370255, -0.552702, 0.078036, 1.237150, 0.013732, -0.710365, 0.176021, 0.486684, 1.407215, 1.646811, 0.262505, 1.551575, 3.188217, -0.770889, -0.077134, 0.089741, 1.206549, -0.822351, 1.054732, 0.102670, 2.206458, 1.445395, 0.833297, 2.457510, -1.728800, 0.599150, -0.582643, 0.097194, -1.136378, -0.688553, -0.195513, -0.245099, 1.844040, -0.105100, 0.853352, -0.309574, -0.563897, -0.441236, 0.237346, -0.408479, -0.138365, -1.625808, 0.868811, -0.280192, 0.493001, 0.674456, -0.343582, 0.434312, 0.669937, -0.175451, 1.365134, -2.892808, -1.183394, -0.091017, 1.387830, 0.703267, -0.623548, 0.942164, 1.632241, -1.306528, -2.749374, 0.276803, -0.745572, 0.798255, -1.000637, -1.458244, 0.491269, 0.959132, 0.346337, 0.075468, 1.185422, 0.271902, -1.419956, 0.282057, 1.918228, 1.089584, -0.010469, 0.458757, -0.767412, 1.301465, 1.389624, -1.260870, 1.180853, 0.484705, -2.188981, 0.792479, 0.714185, 0.605025, 0.952898, 0.134912, -1.235238, 1.607226, 1.451735, 0.415238, 0.077623, 0.470180, -0.342912, 1.028479, -0.055690, 1.028239, -0.900879, -0.427759, -1.243175, -0.115151, -0.929140, 1.427196, 0.653424, 2.145258, -0.476897, -3.224758, -1.172282, 1.368746, -1.494570, 0.231549, 0.024774, 0.033839, 0.337740, 0.186950, -0.421734, 0.350482, 1.797337, -0.688539, -1.145910, -0.454249, 1.222528, 1.535292, -0.005720, 0.010158, -0.123753, -0.332244, 0.398909, 0.412471, -0.544447, 0.578117, 0.075340, 1.343170, -1.052085, -1.049295, -1.226794, 0.967907, 0.793526, 0.301906, -0.256535, -0.841373, 1.313865, 1.160292, 0.562957, -1.555518, 1.409643, 0.154059, 1.303371, -0.594280, 0.305819, 0.683273, 0.292133, -0.189054, 1.152105, -1.326082, -0.190841, -1.361771, 1.867669, 0.529327, -0.184337, -0.951420, 0.844195, 0.548164, -0.329046, -0.298008, -1.232516, -0.848725, 1.039243, 0.677688, 1.754691, 0.211559, -0.421213, -1.451701, -1.075094, 1.433823, 0.589598, -0.592737, 1.001268, -0.164301, 0.831514, -0.851337, -0.319376, -1.188594, 0.490024, -0.953329, -0.328743, 1.067372, -0.092798, -0.148887, 1.048740, 1.668782, 0.073771, -0.642713, 0.178989, -1.247878, 0.969800, 1.126590, -0.214965, -0.651847, -0.848796, 2.386024, -0.627260, 1.843457, -0.396643, 1.590733, 0.084648, 0.679973, 1.752495, -1.346202, 1.198498, 0.286413, 1.400917, -0.832526, -0.309414, -1.580427, 1.645774, 0.375651, -0.988303, 0.244476, 0.875341, -0.132433, -0.104962, 1.059073, -0.170972, 0.113055, 1.083726, -0.863104, 1.060560, -0.286064, 0.378833, -0.699312, 0.195520, -0.062180, 0.062546, 0.670877, -0.187040, 0.549768, 0.723665, 0.158522, -1.080894, -2.022463, -1.330280, 0.769321, -0.623390, 0.589122, -2.603539, 0.077963, 2.492569, 0.949839, 0.028214, 0.908321, -0.472304, -0.312787, 1.152931, -1.700557, -0.314476, 1.546729, 0.487628, -0.798660, -0.341185, 0.025688, 0.095764, 1.328377, 0.245065, 0.553417, 1.078881, 0.106080, -0.560438, -0.789023, 1.021754, -1.279406, 0.637431, -1.054778, 0.191064, 2.140608, 2.750964, -2.403914, -0.623919, 0.523767, -0.960161, -1.645391, -0.678351, 0.649959, -1.282536, -1.647174, 0.155191, -0.026512, 1.405654, -0.398208, 1.053135, 0.816466, 0.857483, -0.168654, 0.207787, -0.568376, -0.009338, -0.023136, 0.318650, 1.315814, 0.058477, -1.807736, -1.965529, -0.862158, 1.125721, 0.973043, 1.557969, 1.440967, -0.703748, -0.248196, -1.045089, -1.163703, 0.253765, -1.475202, 1.137774, 0.364498, -0.152420, -1.089788, 0.210508, -0.554863, 2.076716, -1.219146, -0.893798, 0.206912, -0.047258, 0.132269, 0.337451, 1.204410, 1.146869, 0.169324, 0.405697, -1.026699, 0.051197, 0.885041, -1.310795, 2.922701, 1.224093, 0.150798, -0.434110, 1.899445, -0.531133, -0.305585, -0.030248, 0.763784, -0.911392, 0.485970, 0.098812, -0.394887, 0.791757, 1.350301, 0.017140, -0.551452, -0.066585, 1.045994, 1.823092, 1.926965, -1.074952, -0.277081, -0.344379, -0.291810, 0.053751, -1.126909, -0.075890, -1.087656, -0.714200, -0.296798, 0.246123, 0.852739, 0.037882, 1.301080, 1.259783, 0.612830, 0.429907, 1.390299, -0.677781, 0.362874, -2.233999, -0.234516, -1.888978, -0.064577, 0.960304, 0.166318, 0.802973, -2.222100, -1.414177, 0.085681, 0.104343, -1.633848, -0.008128, 0.000967, 1.283816, 0.708171, -0.971977, 0.670413, -0.159861, -0.371016, -0.086713, 0.121429, 1.349553, 0.692302, 0.186588, -0.056225, -1.605362, 0.158325, 0.105081, -0.441081, -1.171210, -0.824036, -0.425089, -0.780167, 0.467271, 1.477060, -0.186394, 0.933010, 2.070554, -1.843193, -1.774896, -0.797813, 2.149390, 1.135622, -1.018471, -0.415634, 0.653175, -0.891686, 1.067191, -0.007165, 0.496180, -0.787690, 0.568704, 1.638926, 0.070631, 0.920519, 0.349549, 2.156247, -1.983065, 0.290679, -0.677541, -1.760506, -0.715745, 1.116771, -1.209096, -1.816491, 1.033952, -0.362942, 0.884537, 0.827786, 0.730876, -0.669978, 1.813718, 1.402303, -1.700528, -1.013634, -1.820079, 0.095952, -1.035872, -0.480061, -0.379839, -0.912898, -0.264880, 1.517827, -0.463551, 0.352251, 0.130164, 2.332497, -0.028922, 0.443766, -1.304958, -1.472410, 1.035763, -1.101846, 2.901433, -0.354998, -0.450480, -1.216262, -0.603764, 0.160699, 0.274182, -0.533108, -1.080594, -0.985764, -1.257313, 0.407175, 0.123992, 0.313562, 0.495335, 0.280934, -1.395029, -0.447972, 0.913930, -1.448814, 1.679359, 0.104837, -0.427140, -0.224953, 0.068672, 0.067730, -0.823906, 1.118350, 0.437090, 1.245209, 1.410232, 0.487148, -0.367850, -1.282146, 0.739470, -0.508719, 1.249100, 0.503872, 0.249262, 0.815700, -0.972942, 0.397513, 1.485023, 0.799986, 1.096092, -0.624241, 0.767271, -1.491576, 0.600328, 1.144898, -0.068248, -2.020988, 0.592130, -0.951313, 0.840826, 0.333156, 0.667291, 0.855686, -0.347796, 1.322176, 1.204352, 0.114998, 1.027900, -1.777248, -1.778332, -2.412091, -0.205883, 0.973647, -0.284563, 1.261633, 1.501836, 0.866648, 2.017867, 0.175566, -0.166357, -0.128714, 0.820255, 0.142926, -1.543707, -0.039183, 0.135456, -0.871004, 0.960942, 0.806418, 0.072109, -0.466384, 0.119727, 0.599797, 1.930298, -0.119280, -0.311788, -0.162368, -1.588966, 0.301218, -0.670223, 0.188717, -0.365654, 2.227688, 0.153143, 0.670092, 0.786637, 0.830828, -0.266765, -1.964233, 0.729069, -0.375852, -0.249783, -1.414957, 0.586597, -0.352794, 0.327521, -0.237322, 0.818482, 0.984688, 1.711303, -0.125945, 1.197571, 1.483743, -0.378969, -0.119920, -0.560513, 0.287176, -0.530987, 0.601947, 0.218575, -0.237280, -0.610846, -0.466199, 0.224395, -0.517297, -0.516917, 0.857552, -0.037768, -2.095469, -0.531140, 0.017974, 0.560206, -1.164554, 0.664445, -1.406126, 1.565798, -0.444494, 0.445471, 0.265461, -1.283813, -0.202963, -2.097519, -0.551163, -1.068015, -2.491025, 2.381917, -1.443396, -0.116319, 0.016134, 1.145433, -0.622011, -0.195866, -0.191009, 0.066968, -1.522375, 1.116776, -2.081887, -0.698877, -0.004324, 0.103909, 0.797424, 1.602896, 0.201399, 2.134752, -0.065543, 1.055553, 0.561204, -0.413320, 0.779557, -0.508724, -0.834424, -0.361137, -0.057420, -0.094977, 0.672547, -0.680201, -1.257418, -1.960751, -0.898814, -0.573116, 0.334908, -0.098769, -0.248138, -0.790284, 0.846287, 0.221012, 0.913824, -0.931201, 0.051975, -0.547636, 1.206176, -2.326738, -1.325514, 0.808084, -1.077789, -0.422059, 0.323329, 0.102727, 1.970550, 0.675910, 0.769067, -1.165315, 0.233005, 0.274330, 1.146954, 0.299627, -0.040996, 0.269804, -1.162999, 1.291527, -0.889786, -0.230086, -0.825445, 0.576964, 0.108649, 0.436685, -0.479446, 0.033433, -0.534048, 0.335921, 1.894276, -1.233628, -0.308310, -1.675360, 0.311542, -0.921139, 0.736703, 0.212206, 0.386166, -1.441360, -1.438089, 0.760145, -0.530970, 1.732343, -0.820658, 0.465698, 0.519485, 0.624739, -1.027241, -1.386933, -1.280267, -0.946869, 1.603771, -0.353522, -0.793781, -1.118903, -0.598790, -1.947302, 1.257481, -0.339479, -0.512596, -0.573824, -1.003128, 0.752786, -0.476255, 0.397884, -0.999493, -0.804579, -0.075201, -0.628777, 0.175562, -0.983386, -0.602899, 1.126484, 1.068613, -0.030540, 1.262273, 0.413888, -1.618262, 0.977425, -0.265147, -0.863149, -0.961986, -1.949951, 0.130440, 0.945878, 1.186437, -0.983058, 0.443571, 0.790726, -1.478379, 0.034085, -1.128010, 1.074454, 2.588352, 2.328054, 0.643465, -1.744763, 0.382313, 0.657340, -1.932727, 0.145758, 1.837286, -2.810978, 0.657765, 0.276446, -1.058729, 1.101085, -0.085697, 1.163795, -0.710919, -0.164517, 0.028117, -0.214978, -1.008693, 0.347523, 1.274251, 0.135901, 0.535375, 0.375694, 0.942406, 0.141696, -0.161005, -1.511698, 1.916786, -2.035104, 0.244508, -0.420288, 1.057638, -0.175824, 0.791098, 0.092408, 0.827614, 0.204406, -0.639299, -0.291948, 0.367686, 0.349552, -0.367517, -0.720946, -0.890992, 0.076202, 0.436535, -2.071006, -0.973718, -0.879978, 0.079384, 1.485519, 0.149479, 0.502984, 2.798131, 1.392370, 0.384372, -0.677758, -0.250453, -0.965124, 0.564233, 0.361695, 0.585218, -0.951781, 0.093972, 1.075999, 0.183504, 0.235872, -0.309443, 0.413366, 0.634793, -0.892458, 0.404762, -1.802691, 0.476768, -0.040187, 1.110379, 0.932290, 1.122344, -0.120403, 0.397679, -0.455845, 0.236457, 1.410093, -0.601208, -0.207682, -1.858027, 0.142867, -0.060832, 0.820478, -0.599163, -0.367270, 1.446840, -1.186845, -1.432450, 1.343965, 0.363510, 0.206087, -1.130621, -0.028088, -0.879500, -2.348903, -0.439495, -0.312865, -0.344653, 2.273295, -0.746024, -0.087415, -0.181760, 0.583880, -0.650429, 1.308432, 1.021131, 0.909715, -2.342439, -1.470911, 0.074364, 1.616066, 0.008424, 0.347278, -1.907093, 2.279639, 0.912322, 2.629043, -0.812293, -1.213392, 0.839442, -1.164493, 0.413603, -0.114130, 0.041607, -0.863448, 2.116364, 1.222635, 0.632420, -0.820922, -0.650576, -1.854771, -1.236575, 1.568214, 0.046729, 0.881926, -0.835425, 0.205124, -0.053262, -1.305565, 0.114088, 0.371250, 0.095793, 1.054353, 0.814413, -0.467907, -0.456350, -0.185025, 0.313252, 0.218872, 1.577726, -0.845508, 1.090848, 0.662741, -2.960680, 0.996808, -0.884228, -0.473740, 0.354764, -0.000670, 0.174945, -2.637402, -0.605583, 0.255331, 0.375933, 1.762564, 1.516608, 0.095531, 0.192385, 0.800741, -0.568484, -0.587810, 0.343944, 1.446319, 0.117862, -2.636307, -0.763755, -2.891528, 1.025460, 1.124344, -0.412155, 0.327251, 1.236045, 0.653691, 2.154784, -0.514347, -0.058963, -0.231906, 1.314250, -0.496456, 0.177061, 0.347333, 0.268927, 0.020891, 0.710353, 0.587201, 0.921417, -0.498401, -1.720635, -0.385663, -0.098711, -1.433234, -1.423126, -0.349140, 0.205020, -0.502561, -1.178710, -0.022038, -0.532369, -0.460549, 0.682050, 2.387576, 0.563303, 0.400730, 0.313201, 0.816143, -0.223170, -0.046886, 0.578917, -0.841060, 0.458140, -0.506423, -0.922431, -1.175617, -0.191638, -0.784792, 0.380983, -0.385590, 0.318427, -0.037819, 0.556483, -0.957075, -0.235619, -0.187277, -0.346809, -0.855409, 0.628025, -1.509265, -0.293857, 0.620634, 1.059672, -1.475793, 0.412013, -0.064256, -0.441233, 0.817410, 1.097804, 0.360774, 1.068397, -1.353745, -0.455986, 1.384126, 0.690355, 1.221958, 0.557418, 0.103649, 0.186476, 1.080419, 1.008509, -0.388546, -1.912660, -1.048290, 0.361955, 0.037930, 0.790550, -0.977382, -0.355440, -0.169698, 0.266259, -1.558135, 0.202029, 0.273389, 0.553430, -0.194001, 1.321441, 1.320206, -0.127143, 0.567237, -0.820418, -2.475253, 0.492874, 0.260979, 0.812465, 0.291753, 0.244083, -0.289416, -0.861417, 0.297614, -0.868261, 0.122020, -0.106085, 0.018623, -1.082180, -1.642747, 0.811081, 0.234866, -0.067180, -0.553996, 1.602895, 0.747538, 0.299346, 1.356720, -0.386431, -0.039293, -0.496731, -0.255590, -1.123560, -0.650510, -0.650795, -1.063649, -0.215478, -0.676532, 2.112758, 0.568889, -0.682662, -1.789211, 0.526914, -1.885903, -1.231516, -0.929049, -0.839145, -0.305659, 0.362864, -0.140336, -0.555466, 1.150828, -0.002115, 0.640784, -0.367025, 0.365086, -0.358707, 2.868566, 2.837660, -0.162320, -0.779964, 1.670955, -0.512765, 0.386066, -0.220777, 0.278390, 0.556234, -0.852708, 1.064032, 0.131845, 0.335708, -3.166561, -0.094939, -0.106683, -1.019679, -0.065065, -0.087549, 0.165368, 0.642381, 0.888100, 1.388455, 0.506448, -0.261452, 2.180812, 0.334105, 0.935125, 0.018916, -1.284985, -0.612871, 0.181584, 0.575108, -0.855314, -2.471379, -0.735328, 1.129301, -1.127553, -0.432614, -1.112375, -0.980567, -0.877408, -1.185331, 0.385646, -0.470406, 1.998922, 1.550787, 0.192449, -1.433948, -0.069114, 0.492900, 0.862598, -0.616737, -1.135970, 2.375081, -0.059984, 1.459782, 0.418617, -1.053723, -0.584916, 1.427206, 0.353895, 0.358891, -0.216249, -2.002320, -0.699313, 0.880428, -1.882237, -1.312622, -0.295044, -0.537725, 0.283550, 1.139247, -0.660279, 0.536278, -3.170810, 0.048857, 1.062004, -1.229809, 0.561541, 0.065720, 0.665227, -0.766287, 1.114112, 1.236612, -0.290817, -0.957704, 1.304326, 0.849858, -0.212679, -0.832184, -1.035586, 0.228477, -0.200378, -0.122340, -0.182645, 1.115644, -0.440816, -1.823129, -0.745467, -0.645722, 0.590903, -1.514485, -1.391965, -1.841697, 0.875155, 1.276177, 2.152644, 0.684107, -1.539459, -0.911951, -0.119516, -1.217774, 1.515266, -0.863684, 0.593592, -0.514919, -0.410263, -0.549296, 1.425411, -0.169282, 1.148017, 0.410914, 0.406741, 1.707894, 0.375225, 1.572652, 0.866476, 0.004789, 0.552830, 0.065118, -0.176754, -0.440454, -0.640308, -0.436749, -0.252697, -0.332317, 1.201348, 0.107903, 1.792038, -3.274158, 0.750333, -1.506759, 2.618268, -1.248676, -0.141491, 0.877191, 0.514080, -0.165380, 1.550525, -2.908632, -1.051421, 0.878593, 0.041384, 1.314228, -2.015728, -0.244169, 0.566571, 0.201047, 0.020901, -1.015448, 0.781054, -1.337709, 0.121043, -0.138398, 2.351187, -0.384905, 0.008869, -0.818706, -1.377856, -0.146257, -2.092710, -0.153646, -1.014776, 0.739208, -0.270509, 1.120150, -0.328009, 1.010280, -0.963525, -0.785014, 1.135739, 0.870727, -3.178505, 0.996472, -0.029343, -0.971175, -0.702670, -1.902041, 0.599985, -0.096797, -0.583084, 0.726020, 0.856930, 1.178495, -0.286306, 0.742989, -0.284985, 1.536316, -0.171397, -0.057572, -1.511549, 0.147823, -0.023687, 1.879345, -0.704230, -1.450555, -1.108542, 0.295747, 0.819734, -1.537456, 1.019990, 1.466569, 2.083033, -0.549885, -0.896451, -1.078444, -0.509836, 0.640672, -0.281184, 0.886987, -1.296474, 1.278729, -0.018402, -0.314649, -0.572640, -0.765351, 0.462305, 1.378988, 0.741147, -0.813850, 0.353960, 0.253429, -0.790994, -0.196322, -0.980238, 1.093953, 0.951914, 1.094002, -0.436871, 1.620881, -0.115925, -1.079942, 0.664795, 1.525141, -0.024042, 0.006837, -1.452153, 1.166962, 0.541562, -0.152434, 0.028712, 1.242315, 1.324968, -0.555496, -1.129462, 0.878241, -1.046364, -2.105438, -0.114743, 0.694103, 0.312592, 0.101893, -1.369664, 0.373999, 1.629687, -0.169910, -0.247077, -0.778456, 0.283832, 0.674214, 0.321660, 1.486508, 1.387328, -0.380597, -1.191547, 0.026962, 1.032993, -1.044210, 0.672911, -1.174432, -0.798523, -0.154865, 0.290119, 0.816309, 0.287407, -0.707331, 0.663273, 2.229958, 1.819381, -0.238843, -0.800596, 0.250382, 0.174613, 1.394184, -1.011165, 1.831030, -0.199448, 0.373930, 0.079597, -0.156153, 1.948584, -2.309557, -0.499350, -0.380272, 1.550372, 0.566938, -0.784970, 0.840266, 0.802237, 1.034324, -0.951168, -0.151087, 0.521729, -0.160848, -0.098417, -1.941358, -0.852052, -0.513054, 1.574704, -1.931041, -0.576806, 0.620982, 1.923834, 0.442249, 0.048758, -1.171994, -0.018641, 1.177161, 0.749860, 0.304717, -1.281929, -0.981491, -1.673674, 0.075436, 2.060573, 1.588352, 0.224248, 0.908720, 0.648349, 0.917754, 0.712913, -0.727731, -0.281513, -0.236952, 2.066495, 0.839659, -0.084867, -1.344536, -1.276762, -1.844733, 1.164718, -0.414993, 0.269311, -0.388316, 0.341097, -0.074387, -0.992266, -0.516338, 0.846021, 0.109766, -0.229995, -1.422504, -0.733193, -0.170473, 1.472753, 1.210416, 1.107681, 0.077759, -1.064770, 1.143862, -1.366929, 1.362047, 0.580229, -0.932737, 0.119755, -0.238056, -1.601105, 0.928629, 0.708296, 1.233007, -0.490027, -1.536985, -0.165683, 0.477898, 0.494831, 0.738171, 1.702583, -1.009274, -0.340488, -0.017557, 0.110842, -0.822950, 0.855275, 0.174597, 0.495674, -0.056231, -0.181632, 1.068847, 0.312378, 0.868944, -1.295914, -0.379480, 1.407339, -0.962619, 0.786099, -0.156102, -0.648525, 0.830405, -0.345259, 0.777856, -1.412597, -0.848113, -0.960953, -0.461577, -1.029847, 0.432415, 1.743716, 1.190725, 1.268154, -2.553616, 0.583195, 0.719288, 0.019859, -0.245786, -0.277849, 0.134980, 0.327712, 1.535849, 1.322112, -1.625558, 3.074630, 0.378514, -0.900456, -0.658942, -1.291657, -0.384568, -0.024976, -1.985516, 0.667845, -0.198051, -0.641738, 0.286313, 1.213348, -0.364882, -0.845175, -0.085825, -0.909018, -0.796189, -1.846105, -1.029620, 1.686773, -0.288002, -0.456407, 0.229126, -1.012804, 1.256675, 0.395701, 0.334437, 0.373426, 1.752798, -0.332288, -1.175152, 0.125282, 0.609567, -1.460314, 0.868646, -0.141740, 0.755100, 1.958667, -0.756435, -1.349188, -0.345672, 0.789610, 1.683662, 0.390632, 1.546828, -1.073412, 2.021458, 1.050944, -1.338132, -0.518155, 0.444027, 1.820359, 0.167465, -0.329012, 0.785518, 0.900773, 0.417825, 1.815703, 0.311853, 1.441529, 1.700556, -1.423484, -1.373104, -0.980469, -0.303256, 2.071674, 0.248387, 0.033582, 1.127916, -0.906861, 0.643511, -0.100844, -0.250065, -1.165741, 0.941070, -0.072895, 1.609546, 2.089129, 1.503252, -1.138760, 1.022542, -0.665060, 1.591020, -0.802288, 0.723045, -0.690499, -1.689816, -0.243705, -1.210942, 0.259324, -0.418267, -2.126488, 0.396425, -0.617675, 1.079907, 2.122475, 0.293392, -2.595889, 0.369907, 0.441051, -0.187928, -0.326055, -0.219322, -0.971088, -0.151217, 1.278926, 0.220847, -0.677934, 1.100636, -0.345281, 0.418767, -0.966717, 0.348046, 1.376881, 0.381549, -0.339071, 1.217970, -0.998819, -0.598224, -0.346389, -0.029439, 0.590923, 0.533556, 2.042408, 0.032883, 1.132560, 0.766818, 1.299712, -0.934534, -0.178002, -0.026773, -0.859456, -0.790302, 0.253254, -2.049632, 0.300394, -1.250193, -0.321342, -0.572749, -2.804044, 0.372897, 1.441523, -1.456649, -0.145398, 0.403655, -1.302139, -0.323873, 0.034422, -0.359558, -0.258767, -0.269207, 0.033304, -0.489046, -1.988850, -0.901370, 0.881076, -0.364360, -0.445980, -1.085344, 0.347185, 0.644059, -0.691416, 0.617382, 0.287261, 0.940514, -0.604116, 1.026581, -0.371150, 0.336167, -0.361897, -0.079658, 0.915591, -1.702460, 0.857129, -0.706100, 0.267868, -0.172295, 0.445122, -1.952904, -1.252272, -0.085508, -0.553325, 0.374018, 0.222693, -0.471334, -0.717840, -0.884423, -0.628685, -1.102572, -0.100826, -0.633390, 0.002218, -0.890179, 1.437047, 1.182940, 0.796394, 1.408563, 1.635527, -0.146837, 2.552778, 0.617330, 1.544822, 1.892926, -1.118390, -2.215963, -0.023060, 0.111138, 1.516372, -0.606042, -0.449226, -1.944569, -0.458289, -0.179059, 0.656626, -1.054081, -0.909960, 0.107664, 1.842379, -1.018586, -0.119134, 0.705051, -0.195532, 1.658544, 0.788681, -0.152538, 0.492369, -0.293989, -0.521998, -1.616632, 0.479045, 0.877403, 0.645449, 0.378188, 0.759829, -0.063468, -1.933527, 0.457304, 1.080467, -1.573578, -0.699171, 0.420302, -0.328182, 1.447962, -0.828517, 1.064114, -0.542364, 0.290381, -0.538679, -0.466245, 1.199234, -0.273288, -0.967941, 0.659453, 1.968379, -1.417598, -0.136527, 1.184574, -1.074898, 0.214242, 0.290383, -0.206632, 1.582061, -0.384771, 0.788284, 1.450816, 0.451441, -2.061872, 0.940121, 0.576555, 0.336989, -1.127818, -0.163571, -0.517262, 0.420306, -1.206828, 1.039765, 2.896665, -0.598912, 0.439686, -1.166044, -1.357214, 0.049388, -1.494847, -0.889396, 0.955254, 3.130605, 0.991595, 0.701981, -0.886781, 0.548963, 1.486610, 0.820349, 0.462546, 0.162739, 1.030247, -0.249395, -0.443981, 0.400527, -1.249348, -0.204139, 1.501553, -0.710105, -0.180677, 0.761653, -0.123226, 0.705874, -0.536304, 0.296038, 1.341150, -0.083476, 0.444904, 1.502023, -0.313660, 0.213639, -0.060028, 0.791046, -0.313777, 0.015319, -0.089583, -0.166763, 2.203184, 0.639267, 0.221027, 0.079686, 1.154981, 1.232699, -0.538654, -0.772357, -1.974569, -0.505430, -0.129025, 1.895915, 0.424560, 0.428099, -0.133725, -0.885217, 0.203022, -0.589729, 1.784148, -0.381472, 1.232490, 0.047793, 0.429282, 0.517375, -0.018025, -0.118813, 1.050464, -0.120960, 0.580269, 0.330632, -0.528192, -0.893002, 0.353178, -0.061197, 0.540435, 1.016047, 0.513322, -0.378343, -0.471803, -0.573490, -1.760579, -0.852294, 1.015304, -0.797230, -2.240814, -0.934675, 0.452018, 0.539630, 0.755198, 0.054010, -0.628689, 0.676392, 0.908796, -0.737947, -0.173215, -0.154435, 0.061049, -1.820747, -1.069377, 0.333487, 0.768496, -0.467100, -0.735552, 0.674373, -0.621329, -0.118467, 0.181377, 0.119910, -0.523939, 1.098148, 0.912044, 0.413595, -0.550656, 0.174836, 0.984044, 1.052446, 0.901621, -1.784663, 1.402209, 1.525380, -0.689647, 1.202817, -0.272716, 0.697391, -0.958346, -1.232387, -0.391263, -0.531669, -0.874702, -0.111323, 1.586736, 0.541447, 0.112361, 0.002850, -0.640366, 0.110621, -0.892347, 0.651657, 0.622092, -1.197867, 0.171882, 0.955913, -0.420170, 1.076496, 0.031850, -0.483227, 0.130544, -0.259519, 0.892904, 0.745312, -0.623183, -0.194230, -0.848095, -0.730427, 2.440153, 1.313519, 0.313307, -2.304621, -0.114957, 0.038365, 0.230991, -0.221570, -0.051813, -0.968248, -0.382071, -0.185296, -0.916142, 0.764156, 1.207455, 0.110737, -0.697520, 0.004359, 0.497101, -1.246626, 0.776336, -0.971389, 0.900781, 0.545013, 0.221045, -3.624343, -0.179332, 0.416681, 0.714520, 0.410994, 0.485850, -1.827451, -1.734341, 0.395246, -1.177950, -0.011145, -0.116578, -1.290493, -2.975739, 1.029267, 0.165221, 0.215991, 0.166056, 0.186584, -0.419394, -0.990354, 0.914803, 1.207179, 0.633648, -0.463292, -1.601626, -0.012953, -0.114577, 1.629724, 1.697032, -0.842245, 1.901347, 1.172064, 1.655557, -1.022669, -0.252382, -0.217159, -0.243679, -1.881943, 1.437304, -0.073220, -0.171109, 0.178968, -0.465553, -1.169522, -2.048234, 0.660666, 0.016530, -1.399306, 0.079903, -0.395331, -0.606240, -0.717732, 1.035233, 0.578479, -0.766344, 0.291540, 0.828631, -0.264489, 0.252914, 0.839953, -0.914266, -0.939197, -0.086787, -0.174329, -0.899346, 0.226852, 0.952315, 0.042178, 0.919733, 0.893023, 1.232539, 0.092457, 1.005046, -0.610252, 0.923529, 1.004334, 0.917837, 0.075240, 2.234123, -1.893703, -2.066901, -0.624758, 2.226923, 0.123714, 0.557044, 1.287487, 1.768175, -0.225645, -0.512870, 1.710537, 1.232614, -1.126071, -2.332517, -0.867636, 1.429713, -1.425202, 2.742917, 1.561269, 0.701638, 0.207679, -0.467569, 0.083176, -0.998672, -0.563386, 0.229913, -0.811327, 1.042571, -0.472220, 2.402308, 0.173181, -1.338089, -0.385145, -0.847959, -0.715156, -0.631694, 1.531796, 1.614695, 0.176082, -0.189494, 0.674136, 0.012790, -0.646178, -0.023701, 0.708185, -1.934791, 0.064592, 1.265034, -0.199290, -0.644541, -2.007693, 0.380045, 0.483091, -1.903050, 0.780035, 1.473295, -1.773733, -0.773828, -0.076878, 0.037464, 0.684390, 0.847965, -0.297854, -2.373667, 1.096025, -1.019376, 0.183695, -1.261570, -0.969170, -0.265311, 1.463061, 0.091775, -0.394271, 2.185644, 0.176432, -0.883051, 0.538685, 0.430007, 1.328085, 0.070688, -0.158855, -0.556540, -0.809787, -1.169645, 0.823804, 0.259492, -0.570716, -0.278238, 0.649705, -0.286741, -0.513373, 0.991930, -1.117432, -0.518094, 0.779473, 0.374975, -1.663482, 0.946010, -0.587003, 0.826821, -0.604905, -0.606628, 1.373131, -0.942280, 1.070948, 0.202506, -1.152681, -0.424173, -1.606313, 0.279731, -0.316660, 0.629499, -0.136853, 0.903446, -1.553894, -0.333378, 2.138888, 0.403615, -0.702710, 1.018782, 2.481591, -0.184669, 1.198353, -0.623040, -0.381351, 0.506452, 0.721207, 0.516375, -1.011259, -0.242117, 0.776201, -0.370294, -0.518844, -0.514973, 1.091080, 1.669463, 0.385912, -0.411481, -3.000129, 0.195795, 0.901197, 0.478825, -0.158952, 0.608984, -1.523480, -1.077663, -0.553221, 0.990451, -1.360416, -0.684818, -0.193963, -0.736405, 0.524206, -0.014413, 0.482968, -0.535576, -0.515588, 0.055106, -1.915295, 1.780386, -0.216515, 0.408402, 0.747409, -1.107107, 0.504950, 0.813346, -0.084400, 0.980024, -2.523302, 1.185954, -1.412941, 1.958553, -0.471887, 0.935598, 0.226762, -0.823328, -0.381229, -1.545965, 0.239025, -1.339292, -1.204573, -0.038170, 0.162243, 0.284924, 0.160284, -0.075831, -1.204118, 1.950845, -0.027041, 0.502562, -0.233833, 0.228521, -1.324953, 0.641207, 0.440546, -0.616214, -0.981713, -0.189221, 0.155695, -0.435234, 0.425463, -0.475733, 0.356660, 0.599701, -0.514314, -0.268036, -0.539240, 0.207156, 0.207203, -1.093896, 0.773720, -0.624260, 0.960475, 0.351199, 0.699440, -0.229281, 1.198004, 1.792920, 0.842821, -0.761879, -0.676045, -1.111442, 0.747222, 0.755971, 0.589334, 0.794957, 0.006024, -1.026940, -1.240171, -0.304907, -1.389341, 0.744292, -0.513514, -0.130207, 1.222011, 1.379931, 0.116939, -1.799626, 0.631320, -0.205399, -0.539173, 1.766677, 0.076616, -0.900857, 0.685288, 0.844339, -1.400584, -0.302496, 1.957520, -0.247281, 0.443760, -1.317921, -0.272959, 0.941583, -0.579566, -1.597064, -0.122253, 0.887002, -1.851339, -0.841908, 0.473235, 1.037434, 1.445248, 0.743396, 0.395094, 1.225506, 1.662126, 0.316668, -0.798783, -0.772848, -1.142628, 0.819518, -0.564070, -0.870163, -0.991737, 1.391020, -0.457231, 0.614237, 0.019516, 2.037912, 1.358165, 1.281120, 0.427062, -0.265299, 0.620793, -1.141888, 0.685051, 1.018313, -0.281270, 0.207921, 1.894215, -1.636014, 0.414347, -0.541211, -0.817818, 0.674079, 0.868940, -0.428386, 0.658202, 0.262049, -0.301668, 0.146478, -1.107759, 0.708071, -0.049975, 0.184183, -0.932660, -1.709101, -0.309602, 0.101522, 0.360043, 0.763528, -0.700444, -0.183832, -0.069885, 0.201585, 1.075564, -0.458042, -0.350673, 1.389256, -1.479800, 0.682230, 0.289885, 0.703015, 1.683242, -0.147036, -0.828292, 0.984562, 0.477242, 0.485064, 0.112665, 0.622281, 0.492070, -0.263405, 1.163628, 2.010934, -0.506844, 0.695653, 1.263529, 0.366341, -0.936147, 0.015777, 0.133691, 0.311393, 0.069390, 0.495545, -0.837437, 1.649048, -0.167114, 1.328848, -1.609527, 1.558907, 0.277797, 1.925958, -0.386554, -0.381685, 0.047441, -0.293147, -0.587781, 1.382169, 0.304343, -0.658820, 0.439627, -1.144301, 1.420872, -0.927780}, + { 0.292891, -1.708510, -2.185706, -0.244947, -0.821272, 1.450950, 1.424964, -0.431861, -1.383292, -0.716461, 1.974213, -0.894689, -1.719556, -1.356400, 0.231541, -0.966506, 0.083534, 0.242377, -0.191265, -0.197449, 1.660832, -0.311673, 0.313023, 0.351125, -0.925571, -0.193178, 0.025055, -2.324670, 0.107742, -1.632257, -0.297190, 0.291926, 2.664977, -0.664031, -0.569963, -0.408873, -0.460503, 1.598926, 0.868365, -1.450154, 1.005934, 0.375826, -0.670606, 0.637593, 0.332802, 1.373593, -0.475296, -0.819583, 0.977991, 0.735534, -0.966828, 0.148544, 0.024582, 1.390121, -1.102279, -1.688447, -1.119557, 0.650295, 0.639350, -0.312520, -0.507114, -0.779926, 1.957356, 0.567040, 0.146519, 0.783273, 0.818639, -2.491803, -2.004623, -0.529808, 1.483119, -2.366978, -0.249309, 0.287323, 1.506401, -0.792854, -0.397687, -0.917683, -0.316980, -0.599443, 1.357496, -0.301975, -0.111516, -1.229903, 0.169000, 0.046529, -1.357439, 2.156298, 1.600920, 0.405498, 0.443675, -1.054478, 0.377440, -0.396471, -0.497906, 0.869869, -1.064701, -0.513512, 0.964440, 0.421268, 0.323402, -0.111356, -0.265792, 0.769441, 0.335623, -1.308464, 1.009527, 0.145549, 0.929947, 0.357812, -0.814115, -0.209047, 0.787138, 0.300938, 0.633906, -0.431068, -0.047960, -0.515060, -1.067042, -1.460882, -1.047530, -2.632407, 1.237485, -1.945593, -1.211345, 0.132771, -0.536113, 1.009678, 0.085230, 0.753992, -0.583521, -0.460307, 2.059750, 1.285325, 1.032129, -0.269690, 0.257610, -0.158392, 0.280761, 0.682041, 1.159714, 1.618063, -1.309796, 0.956775, 1.018945, -1.336185, 0.464816, -0.561561, -0.831023, 1.262633, 1.327701, 2.373687, 4.542273, -0.097010, -0.556613, 1.112400, 0.738165, 0.742581, -0.564402, -0.011848, 0.171923, -0.719148, -1.576356, -1.121765, 1.115668, 0.737594, -0.938355, -0.435746, 0.190921, 0.658826, 0.303713, -0.730322, -2.438232, 0.114269, 0.078303, 0.958724, -1.934861, -1.423180, 1.351432, -1.647877, -0.331842, 1.111123, -1.560790, 0.065268, -2.271621, -1.275978, 0.779194, 0.933272, -0.017336, -1.952305, 0.283716, -0.739312, -0.530806, -2.005578, -0.161424, -0.371535, 1.898929, -0.527492, 0.463612, -0.655326, 0.218653, -0.406655, -0.559668, 0.790860, 1.301448, -1.465441, 0.403506, -1.223558, 2.100382, -0.829208, -0.502725, 0.151171, -0.778230, -1.695609, 0.294853, 1.518498, -1.350138, 0.775311, -0.329676, -3.415075, -0.219203, 1.971403, 0.075180, -0.369401, -1.542137, -0.530304, -1.474646, 1.582011, -0.917005, 0.538405, 2.114314, -0.124029, 0.477711, 2.336969, -0.396765, -1.123354, 0.039216, 0.112787, -0.139218, -0.944495, -0.763684, 0.997287, 1.417784, -0.345995, -0.423057, 1.397287, 0.376601, 1.267979, 0.745433, -0.854055, 0.164431, 0.566650, 0.773948, -1.213448, 0.919028, -0.003071, 0.302285, -0.363874, -1.382851, 1.801374, -1.493086, 0.558097, 1.105853, 2.173006, -1.676891, -0.299052, 0.538238, 0.201006, 0.723465, 0.977900, -0.182530, -0.005362, 1.795848, -0.182832, -0.493448, 1.452400, 0.064221, -1.466771, -0.126108, -0.107220, -0.994895, -1.085001, -0.026704, -1.339095, 0.963092, 1.384430, -0.246086, -0.797056, -0.454069, 0.027056, -0.603872, 1.452029, 0.030280, -1.217478, 1.798160, -0.712081, -1.012086, 0.923644, 0.164759, 1.287082, 0.347788, -1.712420, -0.173141, 0.401047, -0.406398, 0.034959, -0.680275, -0.206232, -0.613904, 0.649680, -1.152045, -1.048357, -0.193687, 0.852478, -1.478935, 0.208540, 1.292965, 1.498585, 1.795307, 1.266239, 0.568582, -0.403831, -1.284378, -0.338240, -0.632272, 0.410119, -0.371463, -0.140562, -0.419117, 0.005570, -0.760282, 1.208550, 0.646112, -1.974479, -1.757854, -1.413260, 0.002034, -0.921508, -1.019410, -0.091603, 0.310681, -1.665338, 0.553750, 0.545329, -1.001807, 2.265850, 0.963306, -0.438406, -0.117895, -0.607653, 1.448049, -0.041341, -0.565033, 0.592700, -0.557312, -0.321587, 0.423004, 0.701197, -1.261603, 0.462973, -2.714076, 0.554875, 0.359922, -0.739469, -0.805084, -3.426799, 0.847265, 2.208081, 0.789774, 2.150444, 0.624629, -1.038113, -0.413425, 2.454882, 2.626144, -1.102012, -0.950069, 0.030648, 1.271111, 1.061401, -1.165392, -2.327266, 1.014271, 0.475691, -0.625056, 1.027901, -0.475552, 0.031236, 1.309724, 0.736699, 0.218125, 0.541387, -0.677458, -0.307832, -0.486233, -1.526194, -1.661415, -0.944457, 0.644331, 2.167019, 0.215784, 0.601616, -0.430486, 0.818222, -1.794037, 0.982718, 0.291569, -2.085956, -0.386507, 0.056042, 0.785065, -0.369807, -0.300279, 1.382001, 1.241396, 0.226918, -0.534698, 0.281058, 0.790899, 0.704463, 1.104488, 0.206228, -0.115892, 1.362966, 2.040797, 0.930832, -0.499394, 1.308533, 0.038474, -0.481727, 1.271917, 0.093185, 1.027524, -1.058642, 1.453905, -0.119899, 0.282057, -0.797613, -0.613116, 0.598727, -1.978262, 1.581403, 1.768274, -1.371727, 0.596770, 0.483326, 1.248562, -2.072330, 0.345192, -1.130156, -0.413975, 0.308699, -0.999458, 2.000450, -0.727893, -0.799304, -1.748235, 0.342308, 0.572691, 1.094910, -0.131486, 0.391579, 0.856615, -0.379866, 0.709835, 2.301630, -0.295983, 0.366237, 0.095394, -0.943021, 0.072385, -0.692351, -0.491897, -1.942546, -0.209199, -0.976951, 0.703390, 0.882315, -0.140885, 0.971320, 1.046713, -1.833827, -0.848040, -0.902475, 1.206739, -0.186708, -0.513700, -0.636293, 2.189780, 0.099314, 1.396261, 0.999723, 1.206330, 0.201980, -0.236837, 0.551101, 0.020832, -1.287175, -0.012679, -1.168575, 0.952123, 1.187614, 0.174262, -1.833502, -0.788792, 0.284911, -0.923546, -0.701950, 0.579197, -1.288502, -0.934693, -0.531277, -0.550297, 0.424981, -0.481678, -0.568877, 0.165475, -0.398001, -0.655614, -0.660530, -0.722770, 0.104100, -1.557982, -1.216011, 0.578792, -1.123166, -0.152202, -0.610867, -0.235874, 1.436928, 0.664378, -0.069716, 1.190115, -1.484155, 0.055556, 0.776146, 1.890962, 2.352409, -0.996553, 2.278443, -0.186201, -0.685986, 1.368316, -0.555180, -1.442758, 0.050701, 0.189587, 1.115584, 0.712029, 0.383487, -0.474714, -0.819532, 0.553201, -1.006239, -0.470012, -0.794397, 0.592416, 2.015376, 0.563762, -0.525463, -1.046815, 0.415018, 1.023756, -1.226087, -0.715211, -0.457262, -1.475429, 2.053750, -0.817486, -0.144130, -1.408412, 0.312953, -0.045965, -0.742768, -0.592396, -0.498212, -1.161338, -1.123862, 0.868017, -0.387588, -1.149278, -0.098976, -0.538908, -0.275223, -0.673831, -0.236932, 0.522214, 1.862571, -0.724714, 0.113470, -0.030180, 0.867167, 0.615528, -1.491319, -1.245311, -1.653809, -0.112606, -0.309782, -0.473697, -0.819074, -0.448935, 0.030836, -1.095170, 0.165387, -0.503660, 0.866712, -0.346152, -0.314465, -0.677123, -0.177118, 1.267335, -0.212055, -0.268177, -0.576133, 0.959965, 0.608411, 0.252166, -0.227027, 0.455450, -0.163730, -0.945263, -0.564231, -1.475780, 0.120220, -0.554524, 0.060990, 2.423817, -0.213706, 0.001410, -0.711890, -0.680973, -0.383531, -0.290049, -0.507651, -0.031594, 0.905885, -1.816476, -0.468269, 0.796781, 0.322228, -0.528841, -0.723818, 1.211553, 1.105538, -1.433756, -0.644082, 0.647983, -1.180568, -0.752597, -0.704020, -0.505185, 0.885326, 0.005479, -0.550318, 0.615822, -0.873853, 1.142081, 1.184152, 0.103964, 1.647361, 0.967744, 0.673536, -0.536562, 0.056784, -2.077467, -1.919048, 1.252205, -0.718282, 1.116761, -0.242194, 1.143201, -0.026847, 0.608832, 0.708688, 0.079831, 0.134089, 0.930380, -0.729393, 0.367778, -1.318354, 1.522532, 0.085972, 1.593959, -1.981243, -1.378361, 0.286758, 0.762529, 0.939118, -0.244318, -0.451555, -1.183896, 0.107928, 0.533478, -0.840499, 0.133740, -1.422853, -0.343426, 0.597483, -0.107674, 0.321853, 0.546763, -0.114930, 1.183602, 1.846683, -1.481568, -1.713139, -3.027448, 1.102476, 0.065993, 0.029244, 0.775203, -0.562777, 0.868315, 1.638600, -1.509365, 1.186059, 0.303477, 0.109088, -0.152322, 0.866439, -0.117734, 0.640226, 2.034814, -0.601030, -1.161561, 0.304143, 0.969342, -0.643773, -0.408139, 0.760046, -1.843315, 0.162190, 0.477456, -1.710225, -0.604101, -0.194816, -0.678343, 2.378602, 0.442871, 0.590240, 1.190987, 0.387996, -0.652592, -0.349694, 0.269263, -0.257546, 0.489823, -0.005972, -0.523285, 0.461713, 0.983745, 0.966786, -1.214870, -0.449246, -0.158108, -1.027027, 0.905758, 0.485926, 0.311863, -0.954620, -0.370001, -0.983756, 1.309037, -0.993112, -1.464900, -0.453496, -2.169531, 2.327251, 0.766307, -0.365884, -2.178003, 0.042199, 0.228299, 1.827621, 0.205068, 0.928119, -1.129028, 0.215187, -0.667648, 0.544146, -0.642307, -1.216451, 0.282151, 0.417768, 0.095059, -0.581879, 0.840889, -0.420691, 1.167246, -0.645507, 1.426113, 0.933374, 0.865025, 0.166366, -0.188546, 0.959291, -0.056122, -0.008197, -1.415343, -0.548600, -0.943413, -0.807224, 0.233624, -1.630257, -1.002499, -1.024861, 0.396569, -0.302054, 0.021819, -1.061831, -0.471147, -2.242388, 0.194980, 0.174102, -1.419076, -1.179402, 0.649922, -1.579208, -0.460712, 0.367351, 1.100219, 0.520826, -1.114273, -1.879597, -0.530805, -0.831654, 0.631768, 2.452335, 1.131999, -1.081673, -1.136642, -1.465356, 1.305989, 0.789847, 0.042800, 0.076241, 1.658439, -0.647155, -0.896072, 0.481696, 1.797639, 0.159411, -0.248198, -1.460728, -0.404525, -1.654078, 0.924408, 1.771791, 0.476497, -0.491226, -0.720338, -1.234394, 0.202733, -2.122692, -1.149185, 0.056084, -0.517622, 0.752513, -0.225029, -0.269667, -1.196974, -0.218352, 1.093614, 0.208290, -2.412891, -0.397495, 1.140108, 1.019041, -0.478599, 0.294369, 0.419145, -0.760007, 0.592244, 0.151055, 0.755161, -2.210251, 1.506074, 0.305659, 0.331512, 1.957274, 0.769484, -0.872395, -0.340453, -0.484196, 0.430044, -0.374944, -0.064067, -0.484668, 1.451902, 0.290851, 0.345923, 0.408974, -1.741815, -0.977260, 1.117456, -0.851607, 0.013538, 0.361242, -0.049036, -0.836200, -1.665353, -0.655521, -0.486741, -0.961460, -0.867219, -1.151246, 1.509381, 0.241365, -1.168545, 0.120289, 0.723778, 0.265600, -1.524131, 0.359123, 1.800541, 0.296537, 0.779271, -0.543676, 1.626263, 0.497753, 0.534732, -0.432103, 0.636541, 0.593076, 0.413430, -0.493843, -0.099982, 0.467438, -0.593307, 1.405572, 0.607467, -1.963034, -0.210452, 0.091405, -1.174371, 1.468553, -0.268140, -1.708917, -0.723537, -2.672091, -0.733406, -1.562848, -0.925071, -0.116377, 0.973578, -1.873076, 0.606714, 0.939712, 0.876750, -0.895680, 0.043429, 1.002743, 1.204138, 1.141840, 1.552457, 0.516442, -1.020007, -0.064621, 0.626035, -1.588657, 0.686750, -1.730330, -0.769423, 1.731730, -0.298637, -0.818697, 0.644770, 1.986733, 1.005610, 0.444123, 0.217915, 0.534630, 0.347506, -0.252165, -0.419583, -0.231749, -0.454531, 0.217733, 0.019112, 0.820521, -1.840944, -0.333867, 0.662126, -0.593705, 1.470261, 0.470701, -0.160169, -0.792550, 0.312170, -0.617706, -0.217511, 0.056290, 0.417560, -0.738338, -1.057764, -0.678686, -0.511943, 0.087805, -1.178904, -0.020077, -0.735312, 2.225171, 0.800270, 0.307776, -0.867212, -1.096273, 0.326317, 0.557982, -0.679935, -0.191818, 0.175686, -1.618904, -0.590567, -0.570022, 0.781748, 0.462327, -0.040145, -0.855343, -0.115104, 0.041352, -0.382528, -1.040630, -0.754828, 1.059888, 1.446273, -2.367270, -0.393964, 1.498215, 0.949906, -1.220955, -1.028000, -0.646646, 0.597771, -1.376758, 2.454723, 0.547693, -0.644849, -0.266013, -1.838894, 0.593752, -0.462218, 1.172756, -2.429083, -1.188214, 0.680437, -0.962133, -0.182934, 0.995955, 0.785354, -0.182547, 0.997651, 1.069256, -1.853381, -1.233168, -0.086025, -1.636772, 2.082049, 1.851984, 1.205178, 0.451759, 0.889009, 0.999693, -0.248210, 1.156428, 1.004071, 1.532621, 0.079613, 0.445009, -1.388159, 0.520110, -0.819688, 1.848428, -1.377076, 1.085867, -0.141614, 0.861770, 0.276234, 0.035827, 1.225758, 0.684828, 1.369979, -0.410746, -0.820309, -0.377636, -0.423588, 0.595391, -1.244304, -0.390997, 0.778996, -1.181772, 0.299752, -0.354254, 0.125417, -0.625872, -1.942388, 0.825644, -0.059739, -0.513850, 0.616186, -0.580190, 1.449074, -0.495146, -0.127389, -1.154311, -0.067258, 1.918328, 0.588570, 1.920000, -1.576218, 1.528751, -1.122871, -0.134969, -0.946113, 0.089608, -1.008826, -0.221527, -0.143156, -0.100505, 0.446338, 0.169057, 1.698623, 1.607382, 0.188724, 1.018286, 0.905217, -0.102444, 0.475338, 0.193732, 1.070050, -0.063235, 0.435163, -0.417609, -1.132598, -1.638451, 0.048354, 0.495399, -0.425564, 0.595727, 0.606261, 0.475582, -0.847307, 0.389538, -0.885340, -0.389737, 0.611642, 1.989955, 0.228534, 0.282527, 0.208047, -0.338404, -0.477009, 0.123264, -0.511459, 0.634120, -0.609135, 1.334642, 2.303862, -1.827268, 0.043426, 0.304302, -1.076522, -0.034358, 0.643726, 0.186605, -0.361674, -0.387850, -0.196510, -3.149267, -1.358457, -1.089782, -0.776390, 0.519703, 1.502051, -2.449704, -1.217901, 0.622746, -0.046500, 0.561773, -0.721465, 0.417034, -0.146263, 0.255638, 0.343702, 0.162747, 1.131130, 0.547638, 0.686442, -1.400053, 0.611963, 0.041466, 0.625173, -0.287345, 0.764026, 0.499103, -0.848533, 2.211276, 0.318991, 0.369081, -0.419225, 0.461029, 0.673602, 0.190658, -0.626521, 0.955305, 0.829342, -1.397739, -0.032750, -1.406936, 0.803207, -0.557970, 0.175772, -0.794910, 1.165292, 1.091059, 0.380290, 2.041073, 1.646045, 1.178117, -2.504400, 0.332805, -0.694430, 0.105917, -0.774951, -1.343382, -0.100343, -2.266622, -0.623679, 0.254797, -1.548932, 2.874456, -1.521962, 0.131839, 1.147142, -0.138694, 0.032951, -1.226551, -1.464446, 1.581435, 1.407592, 0.603723, 0.853720, 0.399882, -1.098830, -1.262822, 0.311992, -0.454619, 0.048546, -0.403091, 0.479674, 1.122055, -0.863642, -0.572461, 0.307126, 0.134515, -1.134196, -0.697220, 1.503836, -0.612185, -0.134003, 0.851509, -0.426730, 0.518561, -0.692058, -0.254887, -0.442444, -2.284838, -1.922591, -1.090347, 0.265984, 1.055776, 0.247543, -0.035070, 0.697355, -1.213801, 0.701310, 0.651835, -0.124529, 0.508516, 0.862556, -0.741192, 2.027012, -1.202887, 2.278743, 0.107991, -2.065218, -0.301215, 0.255792, -0.305803, -0.591421, 0.437408, 0.755406, -0.651447, -0.786370, -0.446447, 0.689408, -0.914871, 1.561946, -1.494240, 1.000568, 0.156876, 3.194226, -0.252239, -1.588185, -0.142343, -0.903314, 0.303029, 0.809735, 2.731235, 1.064802, 1.342311, -0.890441, 1.049239, -1.544716, 0.609665, -2.905241, 1.280152, 1.009786, -0.211146, 0.432507, 0.109842, -0.196329, 0.650985, 0.411019, 1.910696, 0.489661, 0.914273, 0.305095, 0.131587, -0.639844, -1.057865, -0.415362, 0.763949, -1.743765, -0.887085, -1.587725, 0.803191, -1.211341, 0.415068, 0.681620, -0.248724, -1.734414, 0.061383, -0.150479, -0.791074, -1.264693, 1.038573, -0.654671, -2.685874, 0.286722, -0.986716, 1.278460, -0.263806, -1.095659, 0.710411, -0.436489, 0.346448, -0.846777, -0.403399, -0.136516, 0.610977, 2.001507, 2.172742, 0.212230, 0.655414, -0.475522, 0.491290, 0.985538, 1.673805, -0.552468, -1.057271, -0.756938, -0.276423, -0.122831, 0.063485, -3.406634, 0.056409, 0.500615, 0.296047, -0.893557, -0.470523, 0.265109, 0.051965, 1.235011, 0.133661, 0.644713, -0.340267, -1.117079, 0.020120, 0.093797, -0.439721, -0.612145, 0.766791, 0.245905, -0.015878, 0.474079, -1.062378, -1.446133, -0.353047, 0.077878, 2.559675, -1.040980, -1.128039, -1.611361, 0.386166, -1.455491, 0.648884, 1.013590, -0.666501, 0.747269, -0.789928, 0.271830, -0.177431, 2.176266, -0.714339, -1.270784, -1.934228, -0.788925, 1.342962, 1.440324, -1.150443, -0.209699, -0.180819, -0.242046, -0.695413, -0.408575, -0.386395, 0.561054, 0.937899, 0.387918, 1.350737, -1.682938, -0.131034, 0.162744, -0.669833, -0.260482, -1.658021, 0.501010, -1.059402, -1.902739, 0.600738, 0.510977, -0.960409, -2.073417, 0.526822, -0.161208, -0.218772, 1.431358, -0.133447, 2.009278, 2.163928, 0.428371, 1.429709, 0.487019, 1.312181, 0.139452, -1.344984, -0.753194, -0.601805, 0.952805, -1.213544, -0.735502, 0.222692, 0.503392, 0.591962, 0.220531, 0.067417, 0.009803, 0.033539, -1.374292, 0.786708, 0.314891, 1.504740, -1.166156, -0.717198, 0.819826, 0.071165, -1.149643, 0.864733, -0.810493, -0.077067, -1.190500, -0.601995, 0.297059, 1.709856, 0.513614, 0.685256, -0.886553, 0.590667, 0.781852, 1.515978, 0.541267, 0.972015, 0.515594, -0.755665, -1.196803, 0.129995, -0.280775, -0.886776, 2.097949, 0.263299, 1.317637, 1.840404, 0.984385, -1.069731, -1.216292, -0.886254, 0.271411, 0.694655, -1.284353, -0.758446, 2.365119, -0.573235, -0.657749, 1.394524, 0.254811, 0.659707, -0.896089, 0.412251, 0.201681, -0.870381, 0.672244, -0.029943, 0.637134, 0.256491, -0.420665, -0.956037, 0.234495, 0.969257, -0.537339, -0.738158, -0.312571, 0.058444, -0.657838, 0.413471, -0.320519, -0.059049, -2.792986, 1.537826, -0.752734, 0.886925, -0.330531, -2.573396, 1.461152, -1.668271, -0.540423, 0.512467, -0.488480, -0.314196, -0.167764, 0.185336, 0.747084, 1.717574, 0.066471, 0.615602, -0.717860, 0.459512, 0.328669, -0.116149, -0.221468, 0.408906, -0.143066, -0.767844, 0.938640, -0.321025, -1.378388, -0.234962, 1.094633, -0.868932, 2.986082, -1.126683, 0.734696, -0.402107, -1.252201, -1.532368, -0.664881, 1.087629, 0.448883, -1.888391, 1.375879, -0.516788, 0.172639, -0.009919, 1.044257, 0.022091, -0.859001, -1.243192, -0.647605, 0.446667, -0.338769, 0.988514, -1.210149, -0.330996, -0.533625, -1.863738, 0.190243, 1.692262, -1.524095, -0.566387, 0.620357, 1.142895, -1.699816, 0.288415, -0.056193, -1.227904, -0.219258, 0.623016, 0.846967, -0.259036, -0.081195, -0.308153, -1.394274, 0.934198, -0.545730, -0.161737, 0.638075, -0.049673, 1.265629, -0.598267, -1.390629, -1.036259, -1.067406, 0.123528, 0.305077, 0.856855, -0.897730, -0.960500, 1.943170, -1.833273, -1.636155, 0.912541, -1.169834, -0.651926, 0.950193, -0.896680, 1.220830, 0.834673, 1.222897, 2.003617, -0.532680, -0.137615, -0.546514, 0.075600, -1.336629, 0.983891, -0.364252, -0.089601, 1.253298, 0.254480, -0.471829, 0.867606, 1.176369, 0.062034, 1.178102, -0.525081, 1.161275, -0.193067, 0.139609, 2.463785, 1.461310, 0.766934, 2.281673, 1.209999, 0.519513, 0.068587, 0.097167, -0.108971, 0.207804, 1.257828, 0.774688, -0.381719, -0.269692, -0.720154, -0.781548, -0.903291, 0.555728, -0.552487, -0.352502, 1.527233, -0.753100, 0.269822, -0.851738, 1.662200, 0.644648, 1.797857, -0.549966, 1.246007, -1.445524, -0.299174, -0.925746, -1.467359, 0.041498, -0.519567, -0.323140, -1.069878, 1.555201, -0.502747, 1.765482, -1.828932, -1.256124, 1.881498, -1.290076, -0.514382, -0.990444, 1.528788, -1.345397, -2.085680, 0.546039, -0.997838, 0.420786, 1.091363, -1.921797, 1.417968, -1.588256, -0.349233, -1.880143, 0.609446, 0.183582, -0.277156, 0.501461, 1.545049, -0.754368, 0.242740, -0.393583, -0.006779, 0.859682, -0.008279, 1.328433, -0.226712, 0.256763, 0.763203, -0.585298, -0.600372, 0.608268, -0.224290, -0.075229, -0.944613, -1.421874, -0.220666, 0.347021, -1.926725, 0.872041, 0.439350, -0.300862, -0.262054, 2.043514, -0.448024, 0.052036, -0.377657, -0.577341, 0.252018, 0.234727, -0.031186, -0.869760, -0.766313, -2.689955, -0.218688, -0.450176, -1.216507, -0.045255, -0.266067, -0.626529, 0.480286, 0.748951, 0.491928, 1.459725, -1.750205, -1.251004, -1.203791, 0.321140, -0.299866, -2.022978, 1.052269, 1.147653, -1.040212, -1.489554, -0.367603, 1.223913, 1.129208, 0.435260, -1.644381, 1.047900, -0.632342, -0.286455, -2.216182, -0.501942, -0.649034, 0.270376, -0.239904, -1.695754, 0.863139, -0.215888, 0.498591, -0.807422, -0.619186, -0.352490, -0.987165, 0.922463, 0.630104, 0.155820, 0.712317, -2.025440, 0.739338, -0.827246, -0.877744, 0.333282, 0.093306, -0.353306, -0.573530, -1.720615, 0.164724, 0.277571, -1.539407, 0.696843, -1.314282, 1.279053, 2.097290, 0.329142, 0.860229, 0.171302, -1.209728, -0.065187, 1.025886, -0.994287, 0.364668, -0.851759, 1.422363, 1.255699, -1.245092, -0.836066, -0.075105, -0.186672, -2.514777, 1.378517, 0.512229, 2.281718, 0.005549, 1.252450, -1.458085, -0.535434, -1.911853, 0.818133, 1.546728, -0.629296, -1.448725, -1.028722, 0.370583, 0.630838, -0.662629, -1.851900, 0.278069, 1.609316, -0.278265, -0.423641, -0.771315, -0.233973, 1.117934, 0.723387, -0.442049, -0.469074, 1.741392, -1.077910, 0.278056, -0.384259, -0.026249, -0.610386, 0.979903, -0.030335, 1.789018, 2.301672, 0.414716, 0.491515, 0.858355, 1.432340, -2.232933, -0.963937, 0.764947, -0.081959, 0.734473, 0.871468, -0.901378, 0.113705, 0.759349, -2.049533, -0.195830, -0.264110, -0.215689, 0.453122, 0.713367, 1.182610, 1.142626, -1.766239, -0.340621, -0.629056, 0.622529, -1.480955, -0.563009, 0.475270, -1.613631, -0.832101, 0.013527, -1.105328, -1.753744, 1.104966, 1.055996, 0.624471, -0.427321, -0.008244, 1.360452, -0.038796, -1.834075, 0.735670, -0.125000, -0.216410, -0.601347, 1.004473, 1.165247, -1.688021, 0.811148, 0.906928, -0.922489, -1.562956, 0.908931, 0.316262, -1.135446, -0.081845, -0.321890, -0.462137, -0.308414, 0.191668, -0.229555, -1.248932, -0.389092, 0.727887, -1.090106, -0.145516, 1.049549, 0.374020, 1.151163, -0.504337, -1.112494, -0.450709, 0.987908, 0.576634, 0.307261, 0.129751, -0.108852, 1.563658, -1.571587, -0.234733, -0.519843, -0.793486, 1.354939, 1.461516, -1.112439, 0.924630, -0.076241, -0.665127, 0.885971, 1.368419, 0.862948, 0.060260, -0.820589, -0.321140, -0.192278, -0.616737, -0.774871, -1.585511, -1.034324, 1.178423, -0.465963, -0.926429, 0.842551, -0.639459, 1.311219, 0.576606, 1.643043, -0.932883, -1.403570, -0.332349, 0.722983, -0.865942, -1.071464, -0.072637, -0.220877, -0.161178, 0.144614, 0.941853, 0.776319, -0.972007, 0.721637, -0.536685, 0.137130, 0.015957, -0.760158, -0.212186, 0.441671, -0.196893, -0.292674, -1.033663, 1.574584, -1.936772, 0.077969, 1.389032, -0.734494, 0.810573, -0.782792, 2.121448, 0.486889, -0.981116, 1.450077, -1.331966, -0.404402, -0.270852, 1.152673, -1.875978, -0.340984, 0.470770, 0.016166, 0.326169, 1.503670, -0.178025, 1.045433, -0.843477, -1.352006, -1.027982, 0.791837, 1.460205, -0.831909, -0.644491, -0.320261, 1.320606, 0.950770, 0.556535, 0.295401, -1.306557, 0.422963, 0.123349, 0.503248, -0.744786, 0.486533, -2.408756, -0.614059, -1.272639, -0.154480, -0.243890, 1.063763, 1.465359, 0.554328, -0.746714, -2.018773, 0.237961, -0.392855, -0.797780, -0.484219, 0.853947, 2.007815, 1.459001, -1.731505, -0.423916, -2.136174, 0.047897, 0.560132, 1.690631, 2.392580, 0.549979, -0.333159, 0.152302, 0.524191, 0.699575, -0.922877, -0.368055, -0.698793, 0.214048, 1.026225, 0.977724, -0.476521, -0.850956, -0.312651, -0.363223, -0.049452, -0.799464, 1.108645, -0.335565, 1.339667, -0.621804, 2.614281, 0.373765, 0.307237, -1.778127, -0.203879, -1.504643, 0.652233, 1.033645, -0.152112, 0.477987, -1.046903, -0.558052, 0.970424, 0.545387, -1.861901, 0.250406, -0.260694, -0.589204, 0.656227, -0.107706, -0.039342, -0.053218, 0.153837, -2.135235, 0.602633, -1.993757, -1.052201, -0.036309, -0.651222, 0.061159, -0.492028, 0.700293, 1.410145, -0.465270, 1.123876, -1.209428, -1.693274, -1.699338, -0.882237, -0.149133, 0.834647, -1.018124, 0.822442, 1.003223, 0.245477, 0.593216, -0.607539, -0.236567, 1.727665, 0.784726, -1.500339, 1.546760, -0.498538, -1.562123, 1.501674, -1.648893, 0.715318, 0.743820, 0.376845, -0.522694, 0.759597, -0.825380, -0.608655, 0.050804, -2.316278, 2.008482, 2.394639, 0.109615, -0.993553, -0.053334, -1.049782, 0.769240, -0.700958, 0.300825, 1.492070, 0.283139, -0.846569, -0.950123, -0.914549, 0.232677, 0.712320, -1.799841, -0.331977, -0.912701, 0.821955, 0.935060, -2.244362, -0.115074, 0.435303, 0.526526, -0.162080, -0.086235, 1.172745, 0.904955, -0.095507, 0.813715, -1.288053, -0.763342, 0.363022, 0.965670, -1.281185, 0.317115, -0.416058, -0.898607, 0.922693, -1.696935, 0.217736, -0.228798, 0.248914, -0.751413, 0.133102, 0.908114, 1.528758, 1.147066, -0.957855, 0.132555, 0.093994, -0.262816, 0.976301, -1.537189, 0.424576, 0.304050, 1.880432, 2.122470, -0.812044, 0.514938, -1.749113, 0.309892, 1.862914, 0.836823, 1.110028, 1.015239, -0.588796, -1.747168, 1.251882, 2.337649, 1.198727, -0.694477, 0.390293, 0.722892, 0.261920, 0.549463, 0.576119, 0.599389, 1.344038, -0.879712, 1.393368, -0.780667, 1.195700, -0.246208, 0.719912, -0.007648, 1.961045, -1.453336, -0.002449, -0.141741, 0.427325, -2.422113, 0.695441, 2.022704, 0.017737, -0.596918, 0.155318, -0.858020, -0.520189, -1.453613, 0.816655, -0.593158, -0.844048, 0.358683, 1.632988, -1.399397, -1.344688, -0.917759, -0.030035, 0.234188, 1.358806, -0.101600, -0.474973, 0.369328, 1.646710, 0.121548, 1.602458, 0.780981, -0.593549, 0.417278, -2.432728, 0.249042, 0.660860, -0.345129, -0.760740, 1.199562, 1.023778, 0.529702, -0.183113, 0.623992, 0.794430, 2.513446, -0.012140, -0.662494, 0.246767, 0.311046, -1.491785, 1.067445, -0.938982, -0.831476, 0.919879, -0.853041, -0.764526, -0.351859, 0.311569, 0.738344, -0.028153, 0.539080, 0.779188, 0.964853, -1.733557, 0.682349, 0.388291, 1.695299, 0.760431, 0.173611, -0.273504, 0.244218, -0.345069, -0.105760, -0.984397, 0.209721, -0.203139, -0.677633, -1.332104, 0.814355, 0.378778, -1.209317, -0.487814, 0.339988, -0.475619, -1.345430, 1.914988, -0.571983, 0.277617, 0.639979, -0.046215, -1.771259, -0.154392, 1.341459, -1.466065, -1.013458, -0.281309, 0.309099, -0.214550, 0.084995, 0.491035, -0.531771, -0.450929, -1.461833, 0.219309, 0.773946, -0.467971, -0.641384, 0.310318, 0.540565, -2.837778, 1.528794, 0.307575, -1.057888, 0.635492, 0.451333, -0.322562, 1.752682, 0.974493, -1.201776, -0.405035, -1.488871, 0.300513, -2.175068, 0.955324, -2.212816, -1.864128, -0.857669, 0.940579, -0.630297, -1.123194, -0.651623, 0.629504, 0.520490, 0.110960, 0.572056, 0.577275, 1.597715, -1.006731, -2.229998, -0.761004, 2.592788, 0.836680, 0.307343, -0.201454, -0.206884, 0.429721, -2.511901, 0.963045, -0.660989, 0.169770, -0.883397, -0.108154, 0.903001, 0.222154, 2.461946, 0.322017, -1.059526, -0.376265, 0.742527, -0.827880, -0.278785, -2.317195, 0.637021, 0.022313, 0.641768, 0.421516, 0.499739, 0.522512, -0.086299, 0.058879, -0.215715, 0.290025, 0.499986, 0.619287, -0.829891, -1.387232, 0.347831, -0.095727, 0.640363, 0.024536, 0.626070, -1.131388, -0.510303, -0.753886, 0.917931, 1.644192, -0.231398, 0.446463, -0.506301, -0.096248, 0.388652, 0.286085, -0.429816, -0.597529, 1.362114, 1.021289, 0.965536, 0.849185, -0.899132, -1.131406, -0.216204, -0.825323, -1.056397, -0.473163, 1.462392, 1.551040, 1.251491, -0.088721, 0.701875, 0.709237, -0.637144, -0.195304, 1.949687, 0.996440, -0.111126, 0.016823, 0.623643, 0.844338, 2.228092, 0.611183, 0.644143, -0.230474, 1.764777, 0.784049, 1.328226, 0.964108, -1.940537, -0.430083, -0.382930, 1.268362, 0.250581, 0.924466, 0.420056, -1.198357, -0.581462, -0.184268, 0.207480, 0.637975, -2.098031, -1.343645, 0.395007, 1.135976, 1.579757, -1.502006, 0.337460, -1.034233, 0.216000, 0.776910, 1.052276, -2.708989, -1.037782, -0.139173, -1.382878, 0.895287, -0.016969, -0.744158, 0.052344, -1.415435, -0.635015, 0.497164, -1.186337, -1.922488, 1.289869, -1.855075, 0.909266, -0.245163, -1.540543, -0.122026, 0.656166, 0.633519, 1.043577, -1.132829, 0.497291, -0.222675, -0.143908, 1.135145, 0.197856, -1.297522, -0.662142, -0.879106, 0.201731, -0.323394, -1.486506, -1.170497, -0.903873, 0.262275, 0.106676, 0.344558, 0.274238, -1.682186, 0.483856, 2.086176, -0.318197, -1.650790, 0.158982, 0.013069, -0.447818, 0.865378, -0.260138, 0.362155, -1.190720, 0.084464, -1.095194, -0.373772, 1.029437, -0.130929, 1.509885, -0.221927, -0.442260, 0.924319, 0.846035, 0.424969, 1.427361, -0.475618, 0.000885, -0.230159, 0.045590, 1.162345, 1.985336, -0.841627, -0.426462, -0.678987, -0.948554, 0.417560, -0.086297, 2.054386, -0.535873, -0.244189, 1.089798, 1.488903, 0.095581, 1.405582, 0.959342, 0.412968, -0.865895, 0.502475, 0.759015, -0.053159, 1.474974, 3.311616, -2.726684, 0.201715, -0.776050, -0.654310, 0.922350, -0.732019, -0.243712, -0.918842, 0.407679, -0.172024, 1.252879, -0.700771, 2.686821, -1.067172, 0.365555, -0.391219, -0.300030, -0.578497, -1.978502, -0.776273, -0.625032, -1.051527, -0.399244, 0.710774, -0.562948, -0.223699, 0.492573, 1.007358, 0.972846, -1.387209, 0.582019, -1.426677, -0.008003, 0.265598, 0.552070, 0.777388, 0.818219, -0.136261, 0.039044, 0.246083, 1.091513, 0.778749, 0.633168, 0.109980, -0.013590, 0.897413, -0.463689, -0.896730, -0.036204, 0.032072, 0.997550, 0.055774, 0.232243, -1.368917, -1.291377, 0.784231, -0.574608, 0.746839, -0.066957, -1.259130, 0.031658, 1.024423, -1.309216, 0.044281, -0.522100, -0.537462, 0.200850, -0.233059, -0.410379, 1.988236, -0.199114, -2.977719, -0.556046, -0.932151, 0.857484, -1.064307, -0.300298, -0.525847, 0.968885, -0.269495, 1.587986, 1.478272, 0.099931, 1.095847, -0.447675, -0.630767, -0.014909, -0.404349, 0.092116, -1.904968, 1.620780, 0.685424, 0.166678, -1.116913, 1.176257, 0.955548, -0.005178, -0.889623, 1.759122, 0.098328, -2.833148, -0.843227, -1.122339, 0.372779, 2.148740, 0.148913, -2.040244, -1.440733, -2.519475, -0.819943, -0.801535, -2.454587, -0.123305, -0.974747, 1.020552, 1.183795, 0.963816, 0.211812, -0.717252, -0.977562, 0.258807, 0.050002, 0.538316, 1.429791, -0.708449, 0.378926, -0.905112, -0.148238, 0.425067, 0.144572, 1.625686, 0.796075, 0.640701, -0.705840, 1.034225, -0.299034, 0.590012, -0.861962, 0.641564, -1.355265, 0.086982, 0.607299, -1.406732, -0.071551, -0.646230, -2.016154, -0.228500, 0.135832, -0.893615, 0.980445, 0.667505, 1.059190, 1.273170, 0.923153, 0.233411, 0.705158, 0.681301, -0.639919, -0.680036, -0.845177, 2.011084, -1.515560, -1.787846, 1.719361, 1.001815, -1.299586, 0.204942, 0.900031, 0.796488, -0.498832, -0.912853, 0.414596, 0.389513, -0.385443, 0.736788, -0.181731, 1.634039, 0.514451, -0.300646, -0.132658, -0.421377, -1.448779, 2.394668, -0.960910, -0.529001, -0.655801, 1.013660, 0.103203, 2.503516, -0.041665, 0.070174, 0.502330, 1.330866, 0.326154, -3.084213, -0.461131, 0.576619, -1.394261, -0.616433, 0.155895, -1.259295, -0.458393, -0.537426, -0.156774, 0.066851, 2.088616, -0.448071, 0.222122, -1.649537, 0.907412, 1.730049, 1.451952, 1.402704, 1.228492, 1.188904, 1.755113, 0.071429, 0.869794, 1.189267, 0.856337, 1.923983, 0.855815, 0.326022, 1.167820, 0.010653, -0.397656, 0.698905, 0.258567, 0.003295, -1.432642, 0.810588, 1.081931, -0.202994, 1.039256, 1.166966, -0.521562, -2.195156, 0.338812, 0.435148, -0.129992, 0.667046, 0.917094, -0.022450, -1.697108, -1.048027, 0.449520, -1.876792, -1.001283, 0.710211, -0.763948, 0.491031, -0.338711, 1.397417, 0.237465, -2.064210, 0.740985, -0.517271, -2.677195, 0.437818, -1.215550, -1.539046, 1.286696, -0.870245, -1.476366, -1.034659, -0.087172, 0.034080, 0.513004, 1.121356, -0.927337, -0.690235, 0.186683, -0.723085, 0.368796, -1.374483, 0.741311, 0.137899, -0.693621, 1.293474, 1.113973, 0.725431, -0.513985, -0.386443, 0.322043, 0.261640, 0.887429, 1.252439, -2.384531, -0.040552, 1.336827, 0.641073, 2.312727, 2.210737, -0.104167, -1.625606, -0.453935, 0.611962, -0.836001, 0.847648, -0.692852, 0.065729, 0.502129, 1.794014, -0.603319, 1.993123, 1.125630, -1.480434, 0.678249, 1.059124, 1.125257, -0.012855, 0.330655, 1.537045, -0.890942, 1.340598, -0.658356, 0.593778, 1.176481, 1.247908, -0.786720, -2.270212, 1.765034, 1.028400, 0.456530, -1.584285, 1.720204, -1.113021, -0.302439, 1.228953, -1.397177, 0.977870, 0.239450, -1.525943, -1.123345, -0.658571, -0.988388, -0.248297, 0.146819, -0.318589, 1.350987, 0.239436, -0.742782, 0.233791, -1.043852, -0.105036, -0.632381, -0.515999, -0.918480, 0.357263, 0.604040, 0.240700, 2.000727, 0.115686, 1.306229, -0.255383, -0.642580, -0.860596, -0.926360, -1.364598, 2.063289, -0.267165, 0.367679, -1.777664, -0.826145, -0.069895, -0.167629, 0.207241, -1.065631, 1.309244, -0.617902, 1.454542, 0.153149, -0.036952, 1.227826, 1.243757, 1.261898, -0.066420, 0.476860, 0.155793, -0.358413, -0.064075, -0.908484, -0.293375, 0.536978, -0.392840, -0.789004, -1.823451, -0.980039, -0.356630, -0.122844, -0.955951, -0.048716, 1.080556, 0.437407, -0.720724, -0.379348, -0.255609, -0.962648, -1.698318, -0.677181, 0.779339, 0.945545, 1.508962, 0.498305, -0.900018, 0.074643, 0.313226, -0.577610, 0.128087, -0.971260, 0.712669, -1.011854, 0.703006, 0.457057, 1.455630, -0.145059, -0.389027, -0.530551, 0.217589, 0.142119, 2.125057, 0.566416, 1.359129, 1.166560, 0.110256, 2.295379, -0.667212, -0.561118, -1.343902, -2.398419, -0.728303, 0.108555, -0.611231, -0.029871, 2.319218, 0.068388, -0.996810, 0.829313, 0.823211, 1.255286, -0.107265, -0.166906, 1.591236, -0.630983, 0.646015, 0.076722, 0.054033, -3.119606, -0.389339, -1.723783, 0.630847, 2.791872, 1.028374, 0.523483, 1.315657, 1.991441, 0.383832, -0.307406, -1.206428, 0.065238, 0.640835, -1.728876, -1.836075, -1.003828, -0.589259, -0.745668, -0.355166, 1.269328, -1.036189, -0.141874, -1.332710, -0.403485, 0.385235, 0.963984, 0.003028, -1.178468, -0.609446, -1.105644, -1.372298, -1.101461, -1.390052, -0.308819, 1.102935, 0.179133, 0.830299, 0.496424, -0.090244, 0.517730, -0.428464, -1.391725, 1.220459, 0.550446, -0.036274, 0.209970}, + { -0.873797, -0.848738, 0.434394, 0.165952, -0.101749, -1.035490, -0.313941, 1.901035, -0.700648, -0.075471, -0.845506, -1.490779, -0.059166, -0.216956, 0.965000, -2.053168, 1.183160, -0.124705, -0.073124, -0.964602, -1.012523, 0.175003, -0.593043, 0.837658, -0.948471, -1.660789, 0.364952, -0.619076, -0.205556, 1.231340, -0.032919, -0.623376, 2.630106, 1.001652, -0.541699, 0.510936, -0.844868, 0.333981, 0.590360, 1.539893, 0.121047, -0.326439, -1.142898, 0.100881, 0.001682, 0.226457, 0.455227, -2.178535, -1.930263, -1.940689, -0.535355, 2.456134, -0.842179, -1.431153, -0.341559, 0.826787, -0.870120, -0.224147, -0.630461, 1.170811, 0.061555, 0.332346, 0.344112, 0.467991, -1.455549, 0.901558, 0.609355, 0.004234, 0.045178, -0.775070, -0.056467, -0.186505, 0.102892, -0.162622, -0.107156, -0.855904, 0.212941, -0.592138, 2.223728, 0.567127, -1.973265, 2.420116, -0.155879, 0.123229, 1.717498, -0.907038, 0.156527, 1.441655, 0.738692, 0.514639, -0.253390, 0.309961, 0.525147, 1.214306, 0.966114, -0.212056, -0.028691, -0.959778, 1.220209, -0.392920, -0.583386, 0.549408, 0.567118, -0.388875, 0.510404, 1.207088, 1.067818, 2.785378, 0.119904, -0.309696, 0.085133, 1.613665, -0.213364, 2.088050, -1.747495, 0.512213, -0.739886, 1.429557, 1.183244, 0.359349, 0.699110, -0.229758, 0.394552, 0.850096, 1.506585, -0.150035, -0.664259, 0.077857, -0.115529, -0.198777, -0.324835, 0.440172, -0.410794, 0.064644, 2.482541, 0.663723, -1.026647, -0.753733, 0.606273, 1.908399, 2.288875, -2.382905, 0.185754, -1.359612, 0.526965, -0.336724, -0.301072, -0.192350, -0.911742, -0.914910, -2.069892, 0.448750, 2.022995, 0.292217, 0.689663, 0.857953, 0.857013, 0.496406, 0.330190, -0.334918, -1.269139, -1.219388, -1.287231, 0.126139, 0.248839, -0.006057, 0.286530, 0.283814, -0.029719, 2.597322, -0.232601, 0.035984, 0.453491, 0.259375, 1.594944, 0.299652, 1.063329, -0.428121, 0.883773, 1.323527, 1.469233, 1.079023, 1.544922, -0.796412, 0.317603, 0.594706, 1.502108, 0.713799, 1.263587, -0.051119, 1.575659, -0.559676, 1.466976, 1.303368, 0.794425, -0.056557, 0.437781, 1.135189, -0.171401, -0.503153, -0.258255, 0.282217, -0.229790, -0.443361, -0.133894, -1.271598, -1.086809, 1.053922, 0.362512, 1.625527, -1.131755, -0.154455, 0.215111, 0.157766, -0.339994, -0.134817, -0.163873, 0.070482, 0.822340, 0.501798, 1.239665, -0.178244, 0.194652, 1.483102, -0.376957, 0.165967, 0.348799, -0.184718, -0.123104, -0.004752, 0.349809, 0.808950, 1.053163, -1.154732, 0.397341, -1.790398, 1.952309, 1.133645, -0.549162, -0.380406, -0.249190, 0.542042, 2.855514, -0.419409, 0.691657, 1.575807, -0.110361, 0.263098, 0.032790, 1.337082, -1.250040, 0.763334, -1.417936, 0.787585, 0.012291, -0.114913, -0.870507, 0.763329, -0.397274, 0.591245, -0.537081, 1.551406, -0.536766, -0.740443, 0.586634, -0.971348, -1.399864, -0.398851, -0.730361, -0.006105, 0.126774, -0.945285, 1.812753, -0.850067, -1.243495, -1.297913, -0.222988, 0.534580, 0.825200, 1.004085, 0.887223, 1.258721, 0.404682, -0.341614, -0.728742, -1.276063, -1.446142, -0.308469, 0.522140, -0.706649, 0.385457, -1.652104, 0.377075, -0.587679, -0.060075, 0.435365, 0.636048, -1.143908, -0.051553, 1.598327, -0.177369, -0.519292, -0.888987, -1.278914, 1.128265, 1.716922, 0.322868, 0.615016, 0.255010, 0.929196, -0.587114, -0.093149, 0.670374, 0.013461, -1.869998, 0.879745, 0.165750, 0.410311, 0.617640, -0.098478, -0.043505, 2.344395, 1.043987, -0.188261, 0.381790, 0.042312, -1.256711, 0.370431, 1.242003, -0.689607, 1.101824, -0.694310, 0.494667, -0.819248, -0.591947, -1.423812, -0.368861, -0.260623, 0.692585, -0.014712, 0.321562, -1.137205, -1.942794, 0.173974, 1.239827, -0.255088, 0.515221, 1.069920, -0.179254, -0.624410, 0.998396, 0.463096, -1.133941, 0.200623, 0.982487, -1.282192, 0.531911, -0.150898, 1.157475, 0.737805, -0.138015, -0.038034, -2.561984, 1.240103, 1.580067, 1.360010, 0.274650, -0.419968, 0.258068, -0.019160, 0.284717, -2.363257, 1.246648, -0.068826, -0.189712, 0.301607, -0.430255, -1.701566, -1.662705, 0.336265, 1.188985, -0.277080, 0.038711, 1.753275, -0.354583, -0.030541, -0.635535, -1.350001, -0.453627, 0.485518, -0.310117, -1.991418, -1.394487, -1.204275, 1.385730, 1.532049, -0.743426, 1.726983, 1.107863, -0.855946, -0.961546, -0.495941, -0.735220, 0.434227, 0.100410, -1.540966, -0.993406, 0.162378, 0.485831, -0.807926, 0.786809, -0.013933, -0.182386, -1.773660, -0.409443, -0.300064, -1.691005, -0.700845, 1.251145, -0.515880, 3.084770, -0.196229, 1.341347, 0.695394, -0.392186, -1.540710, -0.785667, 0.029593, 0.518960, -0.179704, 0.086364, 0.228524, 1.096202, -1.575037, -0.534947, 0.325853, 0.882455, -0.051859, 1.480205, 0.590740, -1.057869, 0.001325, 0.270726, 1.132633, -0.782542, 0.312935, 0.896330, 0.507983, -0.365484, -0.712971, 3.394018, -2.490313, -1.125502, 0.206467, 1.599721, 0.657169, -0.283679, 1.124174, -2.348284, 1.158276, -0.729405, 1.331504, 0.728637, -0.010471, 0.853176, -0.540158, 0.710491, -0.648670, -1.261007, 0.659760, -1.602068, 0.385471, 1.236530, -0.373931, -1.216723, 0.782166, 0.518858, 0.741126, 1.181222, -0.452245, -0.310623, -1.592700, -0.840693, -0.190214, -0.913470, 0.343869, -1.387528, -2.146013, -0.244781, -0.831834, -0.837137, 0.244755, 2.495455, -1.153015, 1.277186, -0.971267, 0.588025, -1.154546, 0.336293, 0.926829, 1.499895, 1.330487, 0.631662, 0.131026, -1.181064, 0.394847, -0.757980, 0.679984, -0.890153, 0.533177, -1.126614, -0.925741, 0.253237, 0.810413, 0.449212, 0.714676, 0.255307, 0.330430, 0.954011, 0.548512, 0.848720, 1.380340, -0.641731, 0.287658, 0.502756, 1.067452, 1.856128, 0.385449, 0.763073, 0.279837, -1.192479, 1.987592, 2.017749, -0.596425, 0.702303, 1.582034, 0.259425, 1.140055, 0.230562, 0.741972, 0.074263, 0.458920, 0.199115, 1.359564, -0.839329, -2.541946, -0.491798, 0.371719, 1.352471, -1.210687, 0.491899, -0.475649, 0.507362, -0.791749, 0.517009, -0.384639, -1.172105, -1.063940, 0.921971, 0.444174, 1.094059, 0.287988, -1.274336, 1.197093, 0.114402, -0.392596, -0.334581, 0.742851, 0.230382, -1.044681, -0.260198, -1.060002, 0.161679, -1.366182, 1.715493, 0.209306, 1.106504, -1.441134, 1.291332, 1.787589, -1.581039, -1.660450, 0.856094, 0.173957, 1.193662, -0.010061, -1.120459, -0.234718, -0.649268, -0.587739, -1.134397, 1.177334, -0.167345, -0.857602, -1.271244, 0.274089, 0.694503, -0.852496, 1.864025, -1.209389, -1.311375, 1.830360, -1.357040, 0.234062, -2.102948, 1.517784, -0.943160, 1.044338, -0.350490, 2.443066, 1.127010, -1.708234, 1.092864, 0.236638, -2.241469, 0.971953, 0.949029, -1.333067, -0.687228, 0.603503, 0.878563, -0.973861, 0.838152, -1.061702, -0.198305, 1.495856, -0.649506, 0.272413, 0.521770, -0.132953, -0.037420, 0.106475, -0.344337, 0.492315, 0.446872, -2.509764, -0.670762, -0.960145, -0.816795, -0.053331, -1.027300, 1.226148, -0.033900, 2.407965, -0.221452, 1.425465, -1.311877, 0.013489, 0.008113, -0.191251, 2.021773, -3.252783, 1.689220, -1.509074, -0.916271, 0.623727, 1.759822, 0.701114, 0.231413, 1.493022, 0.053286, 0.194039, 1.398027, 1.552581, -1.376504, 0.588012, -0.956358, 3.370157, -1.695171, 1.505114, -0.276534, -0.484877, -0.974936, -0.570646, 0.780547, 0.365633, -1.182399, 1.681789, 3.150536, -1.725887, 1.237103, 0.383390, -0.462370, 1.023093, 1.177954, 0.082964, -0.684876, -0.939594, -0.162199, -0.418712, -1.879254, 0.320162, -2.534414, 1.286754, 0.486903, 0.199877, 2.164792, 1.028128, -0.485419, -0.596682, 1.829474, -0.985803, -0.179419, -0.466334, -0.067507, 0.013825, 1.129545, 1.016373, 0.237486, -0.015376, 0.120091, -0.069139, -0.409013, -0.222964, 0.354003, -0.469577, -1.378805, -0.463160, -0.193178, -1.071038, 0.935398, -0.468805, -0.565995, 1.398633, -0.682929, -1.204336, 0.394559, -0.448119, 2.308041, -1.190700, -2.944988, 0.503053, -0.861273, 1.403163, -1.010805, 0.062732, 0.931844, 0.701437, -0.312693, 0.835784, -1.129111, 0.414414, -0.001500, -0.908178, 1.339091, 1.351958, 1.430699, 0.872436, -1.369176, 0.460138, 1.954497, -0.434556, 1.318717, 0.158252, -0.553733, 0.567646, -2.140976, 0.427230, -0.587030, -0.065860, 0.340750, 0.793745, 0.026856, 0.932550, 0.574330, 1.644600, 0.056040, 2.007151, -0.868476, 1.326848, -0.577642, 1.320018, -0.026505, -0.936118, -1.411375, -1.504570, 0.027733, -2.179797, 1.987123, -0.363308, 0.034969, -0.154959, -0.672077, -1.134341, 0.653236, -0.377601, -0.231364, 2.208291, -1.377131, 0.375767, -0.867021, -1.167802, -0.510440, 1.779801, -0.548639, -0.062339, -0.371849, -1.968101, 2.398468, -1.447563, 1.790997, 0.017191, 0.028676, 0.024980, -0.623947, -1.332594, 0.118911, 0.493238, 0.152728, -2.150569, -0.439688, -1.828365, 2.434748, 1.759992, -0.310606, -0.013625, 1.051821, -0.827251, 0.326990, 0.589416, -0.096940, 0.338640, 1.035044, 1.343994, -0.331351, 2.242577, -1.399551, 2.062928, -1.202526, -0.481986, 0.371684, -0.408488, 1.638926, 0.356934, 0.290026, 1.014995, -0.480828, -0.059920, 0.469033, 0.818101, -1.861719, -0.427206, -1.553181, -0.111263, -1.027036, -0.273159, -0.293965, 1.437975, -1.677643, 1.511291, -0.464462, 0.083231, 1.444706, -0.690580, 1.430769, -0.107777, 0.290893, -1.815149, -0.360414, 0.844302, -0.638143, -0.056138, -0.127960, -0.699033, 0.494976, -0.217468, 0.931234, 0.748696, -0.236775, 1.116828, -0.909744, -0.041435, -0.260521, 0.927551, -1.006051, -0.731290, -0.867307, 1.167866, -1.071291, 1.119445, -0.163502, 1.031572, -0.553013, -0.062647, 0.677530, 1.237563, 1.131280, -0.829031, -0.313977, 0.744128, 1.602186, 0.740259, 0.273573, 0.110629, 0.803115, -1.319286, 0.537474, 0.343758, 0.750090, -0.225904, -1.282854, -0.244730, -1.796310, -0.042886, -1.348148, 0.726813, 0.780839, -1.283072, 0.898169, 1.196588, -0.528897, -0.426531, 0.095184, 0.282711, -0.267767, 1.532729, 1.115751, -0.145530, 1.657048, 0.429187, -0.080514, 0.122684, 0.684693, 0.789753, -1.426426, -0.189109, -0.688439, 1.737359, -3.321473, -0.441590, 0.155393, 0.945181, -0.122142, 0.151183, -1.243692, 0.658338, -0.739791, 0.479664, -0.867412, -0.647682, -1.436106, 0.097294, -0.762940, -1.316606, 0.929163, 0.294908, -0.150324, -1.508457, -0.574610, -0.507425, 2.037915, -0.985695, -0.572796, 1.252800, 0.977083, 0.329874, -0.276343, -0.343509, 1.197196, 0.186276, -2.006528, 1.563665, 1.140794, -0.866908, -0.161542, 1.071668, 1.752032, 0.583046, -0.253452, -1.027896, 0.099582, -0.507812, -1.285015, 0.363874, -1.059797, 0.702654, -0.325248, 0.490160, -0.659730, 0.780183, -0.216917, -0.245822, 0.689520, 0.025683, 0.711573, -1.346126, -0.555475, 0.012099, -1.599186, 0.469211, -0.120177, -1.124876, -0.861453, -0.292163, 1.975580, -2.214300, 0.855478, -1.891435, -0.679762, 0.610162, -0.352326, 1.538534, 0.588692, -1.623438, 0.250309, 0.933469, 0.328425, -1.483896, -1.599679, -0.351933, 0.151970, 0.117031, -0.649682, -0.131687, -0.779215, 1.688697, -0.918232, 1.200791, -0.151135, 0.099577, -1.721239, 1.901751, 0.181824, 1.044146, 0.434374, -0.519283, 0.608095, 1.933566, 1.488835, -1.741835, -0.937609, -0.018013, 1.345228, 0.273830, -1.149869, 1.121986, -1.263159, 0.477750, -0.092138, -1.863020, 0.496620, 1.065773, -0.503982, 0.388646, 2.007415, -1.375215, -0.184766, 0.910255, 0.056525, 1.144221, -0.057490, -1.091968, 0.492871, 0.968269, 0.324450, -0.669989, -0.537623, -0.045442, 2.118505, -1.169907, 0.137405, 0.104216, -1.343479, -0.134893, -0.448355, 1.556915, -0.892209, 0.073962, -0.311453, 0.948830, 0.220449, 0.056991, -0.682761, 0.393614, -0.735674, 1.198820, 0.945771, -1.015016, 0.837880, -0.736158, -0.279484, -1.033231, -0.774380, -0.225892, -0.117209, -0.803421, -0.216841, -0.372019, 1.668499, -0.303796, 0.199436, 0.602118, 1.160118, 0.132227, -0.966832, -0.248106, 0.682929, 1.887359, -0.485334, -0.435572, 0.926605, 1.921098, -0.456458, -1.021343, -1.167305, -0.217193, -0.296922, 0.598713, 0.135461, -0.851969, -2.482450, 0.719498, 1.871426, 0.447754, -0.729774, -0.064988, -1.305964, 0.142061, -0.417794, -0.958928, -0.554571, 0.913503, 0.056664, 0.758304, 0.407414, -0.799513, 1.865229, 0.137471, -0.935868, 0.499112, 0.840425, 0.200003, 0.212648, -0.282735, 1.887994, -0.956180, 1.131944, -0.882155, -0.934613, 1.165504, 1.199214, 0.679276, -1.120585, 0.602116, -1.896793, -1.706442, -0.703670, -0.947852, -0.840680, -0.234873, 1.326432, -0.153049, 0.201148, 0.787004, 1.347252, 0.499391, -0.057229, 1.624402, 0.987720, -0.414107, 0.012290, 0.004895, -0.752822, 0.711551, -0.557629, -0.810728, -1.731287, 0.195009, 0.629647, -1.200022, 0.311762, 0.508083, 0.567836, -0.641662, -0.928611, 0.545434, -0.948312, 0.207666, -0.850181, 2.400131, 0.134273, 0.074509, -0.686494, 0.277727, 1.153168, 1.032671, 0.987121, 0.678164, -0.977768, -0.052123, -1.717382, -0.509175, -0.463965, 0.652137, 1.443825, 0.640481, -2.073364, -0.619372, -0.735560, -0.851541, -2.002999, 1.286310, 0.034971, 0.150300, -1.160925, -1.258954, 0.422683, 0.427521, -0.679861, -0.454075, -0.197073, -0.635795, 0.784844, 1.820831, 0.945207, -0.384067, 2.049506, 2.184735, -0.329881, -0.854281, -0.113531, 0.659425, 0.777964, 1.120278, 0.246555, -0.748567, 0.694933, -0.033036, 0.472583, 0.353728, -0.683101, -0.053967, 0.832413, 1.176380, 2.500025, -0.058649, -2.196164, 0.082696, -1.409087, 0.794452, 0.729199, 0.803465, -1.026470, -0.857664, -0.886748, 0.782177, 0.523280, -0.379187, 0.772289, 0.324344, -0.266541, 2.075259, -0.752601, 1.725607, 1.632782, -1.057611, -1.094484, 0.898664, 1.329297, -0.724967, 0.295164, -0.780565, 1.676351, -1.121012, 0.777508, -1.112347, 0.181298, 1.917919, 0.392110, 1.008776, -1.475828, 0.701189, -1.211434, 0.998752, 0.106608, 0.409920, 0.341130, 0.290987, 1.876673, 0.529106, 0.040157, -0.570756, -0.074173, -1.214770, 0.615687, 1.121859, -0.907450, -0.568124, -0.424018, 1.042878, -0.975851, -0.550150, 1.892082, 0.720620, -1.169587, 2.019148, 0.440019, 0.073882, 0.884144, 0.918236, 0.327920, 0.658107, -0.303924, -0.383038, 2.123507, -1.153664, 0.560738, -0.419070, 2.195846, -0.120590, -0.617304, 0.196093, -1.322234, -0.956740, -0.035418, -0.068704, 0.886061, 1.812267, 0.716877, -0.484067, -1.702875, -2.159582, 0.615750, -0.857899, 0.719776, 1.226220, 0.308468, -1.369228, -0.690921, -0.446609, 0.855350, 0.456788, 1.420410, -0.420214, 1.412506, -1.570202, 1.082759, 0.365710, -1.007448, 1.037896, 0.769644, 0.536410, -1.276756, -1.274338, 0.612264, -0.629952, -0.504407, -0.199097, -0.481339, 1.450813, -0.409533, -0.188472, -0.631239, 0.862969, -0.098147, -0.964330, 1.252065, -0.093279, 0.137864, -1.199482, -1.788731, 0.769994, -0.400072, -1.830476, -1.394949, -1.278353, -0.563996, 0.618985, -0.062313, 0.296633, -0.040673, -0.136020, -0.328873, 0.041308, -0.059497, -1.289437, -0.204424, -1.230821, -0.593215, -0.055707, -1.353388, -1.085863, -0.361064, -0.836223, -1.297228, 0.227810, -0.662086, 1.700719, -0.150082, -1.231130, 1.889481, -0.309077, -1.080283, -0.877697, 0.450691, -2.065777, 0.473671, -1.005220, -0.685562, -0.209055, -0.297017, 1.234457, 0.599300, -0.207727, 0.408132, -0.888000, 0.809001, -0.258091, 1.156533, 0.562945, 0.423880, -0.206558, 0.236992, 0.708378, -1.079169, 0.786600, -1.449186, -0.616572, -0.340739, -0.521175, 0.488493, -1.822978, 0.262799, -0.251985, -0.534117, -0.753024, 0.859978, 0.462873, 2.527222, 0.227939, 3.183127, -1.767398, -0.837983, 0.326343, 0.784119, 0.222906, 1.294762, -0.445501, -0.071532, -0.423394, -0.046706, -0.347847, -0.298138, -0.079034, 0.403114, -0.145433, -1.924442, 0.106588, -1.465761, 1.869713, 0.549044, -2.200667, -1.284504, 0.828727, -0.189690, -0.621107, 0.128566, 1.462825, -1.125143, 0.122825, 0.666666, 1.579664, -2.042778, -0.735023, 0.883986, -0.966238, 0.281108, -1.446397, -0.223070, -0.707126, 2.315877, -0.092012, -1.102111, -1.108305, -1.030284, 1.539808, 0.455301, -0.356866, -0.598221, 0.956522, -1.436536, -1.484100, -0.004964, -0.200254, 0.666967, -0.116351, -0.086557, 1.248488, -0.494315, -1.005199, 0.472840, 1.267421, 1.562253, -0.693598, -0.550248, 0.216879, -1.292486, 0.247419, 0.237888, -2.072490, -0.139263, 0.407916, 0.689437, 0.590112, -0.463972, -0.068615, -0.178135, 0.253229, -0.451894, -1.941185, -1.022730, 0.973522, -0.966210, -0.948426, -1.234626, -1.155081, 0.743852, 0.956592, -0.547490, 1.782894, 1.317237, 0.477779, -0.919065, -0.321530, -1.749841, -1.050047, 0.266870, 0.499318, 0.154896, 1.397807, -1.208349, -1.314981, -0.111247, -0.716556, -0.545996, -1.147961, 0.927733, 1.395322, -1.108331, -0.390796, 0.538215, 0.532420, 0.197091, 0.366025, 1.122880, 0.355584, -1.520536, -1.471314, 0.102963, -0.739418, -0.152815, 0.625759, -0.477605, -0.543125, -0.533872, -1.256792, -2.013792, -1.821953, -1.129859, -0.698191, 0.222712, -0.350098, 1.535496, -0.652162, -0.921907, 0.157317, 0.491219, -1.133797, -0.251725, 0.770432, 0.069771, -1.747186, 2.412967, -1.034829, -0.444732, -0.981540, -0.224378, -0.911424, 1.578627, -0.767356, 0.335464, 1.712580, -2.346518, -0.361063, 0.126530, -0.726743, 0.778664, -0.022063, 1.452461, -0.194446, -0.726396, -1.224825, -1.057556, -1.125874, 0.722100, -0.871614, -0.020428, 0.324345, 0.268552, 0.832808, 0.319075, 0.431505, -0.800401, -0.038801, -2.086641, 0.649966, 1.235451, -4.070897, -1.339530, 1.289486, -0.722219, 0.565223, 1.034162, 1.303374, -0.990778, -0.414443, -0.746867, -2.194612, 0.711904, -1.192039, 0.514182, 0.143451, -0.766785, -0.255545, 0.928006, -1.898451, 0.714790, 1.152362, -1.035173, 0.315182, 0.243698, 0.901493, 0.248293, 0.168933, -0.423861, -0.978658, 0.691964, -0.798738, 0.154340, -0.175135, 1.116433, 1.405095, 0.679093, -1.813615, 1.019598, -0.870041, 0.794375, -0.738155, 0.696922, 1.056967, 0.434083, -2.276902, 0.821846, -0.917113, -0.744667, -0.806971, 1.013628, 0.509641, 1.162024, -0.655226, 1.574152, 0.690670, 0.742796, 0.178534, 0.818483, -0.313130, -0.221297, -1.424399, -0.745591, 0.707514, 0.970455, -0.014214, 0.156618, -1.155821, 1.255942, 3.028221, -0.489321, 0.050097, -0.152184, 1.291576, -0.459446, 0.708037, 0.475632, -0.316036, 0.458191, 0.745359, 1.435928, -0.338627, 1.819806, -0.761714, 0.747827, 0.367706, 0.266772, 0.344456, -0.901315, 0.576411, -0.387344, 0.014081, -0.322828, 0.685115, 0.776365, 1.589674, -0.268129, -1.650495, 0.848776, 0.413434, -0.768873, -1.680851, 0.997750, 0.942062, 1.376000, -0.345001, 0.892045, -0.758244, 1.953168, -1.764911, -0.679837, 0.424989, 0.991842, -2.356953, -0.813163, 1.398479, 0.378674, 0.504555, 1.506965, -0.413046, -0.442354, -0.867619, 0.076633, 0.602498, -0.341242, -0.320856, 1.622438, 0.126537, 0.514419, -1.166277, 0.875710, 0.077184, -1.256653, -1.438137, 2.148986, 0.335838, 0.835136, -1.388356, 1.474581, -0.197286, 0.482615, 0.996656, -1.405659, -1.418190, 0.749739, -0.867667, 0.485051, 0.456310, 0.831420, -0.668103, -0.568000, -0.330922, -1.074203, -0.774532, -0.643523, -0.102030, -0.806592, -0.770076, 2.659268, 1.016761, -0.571417, -0.311601, -0.885764, -0.296915, -0.288180, 1.147856, -1.023605, 0.031077, 1.436114, -1.375351, -0.433529, -0.039206, 0.038817, -0.304904, -2.759342, 0.371967, 0.723791, 1.044183, 0.367574, -0.355216, 1.785020, 0.031121, 0.075485, 1.493547, 0.213006, 0.294329, 0.829292, -0.406182, 0.372803, 0.527657, 0.016925, -0.739515, -0.989221, -0.722495, 1.819109, -0.896739, -0.659261, 0.100044, 0.451640, -0.308397, -0.223542, 1.298188, 0.968934, 0.037445, 1.430147, 0.416938, -0.079124, 2.172876, -0.421029, -0.663412, 0.067004, 1.032880, 0.280201, -0.241083, -1.814517, -0.125518, 0.770768, -0.958126, -0.325494, 1.666037, -0.369086, 0.515020, -0.160673, -0.162137, -0.346009, 0.433268, -0.857580, -0.373611, -0.586818, -1.405049, -0.563264, 0.351220, 2.014155, -1.868559, -0.911191, -0.029116, 0.020609, 0.663296, 0.249491, 0.315867, -1.744432, 0.941553, -0.789900, -0.051125, -1.083393, -0.961400, 1.331433, 1.483558, -0.423383, 2.454194, 1.514235, 0.376916, -1.131882, -0.895033, 1.956283, -0.309296, 0.004177, -0.422090, -1.001029, -1.235326, -1.575620, 0.553659, 0.619426, -0.432587, -1.210699, -0.562986, 0.937443, 0.495339, -1.617236, -0.675779, 1.006997, -0.897973, -1.865404, 0.254398, 1.652028, 0.003558, 0.445099, 1.600728, 1.887262, 0.337496, 0.028757, -0.438310, -0.518615, 0.189860, 0.225079, 0.475631, -0.616208, -2.361126, 1.381669, 2.546078, -1.069124, 1.203774, 0.064036, -0.177754, 0.187311, 0.292041, -1.980481, 0.569163, 1.275161, 0.229022, -0.434644, -0.186941, -0.806234, 0.457997, -0.345218, -0.650751, -0.262977, 0.549816, -0.235493, -1.573061, 0.274166, -0.045476, 0.104714, -1.065665, -2.423514, 0.362955, -0.199590, 0.168000, -0.158713, 1.103296, -0.878555, -0.496114, 0.822615, -0.084075, 0.658370, 0.567438, -0.230872, -1.978313, -0.093761, 0.123903, 0.555242, -1.062465, 0.848796, -1.509971, 0.461129, -0.658232, -0.559032, 1.128587, 0.636297, -1.425189, -0.067258, -0.845536, -0.415927, -1.578033, -1.620856, -0.324745, -0.891440, -2.679261, -0.817751, -1.106844, -1.082666, 0.275680, 1.100832, 0.252276, -0.336593, 0.814005, 0.637513, 0.794632, 0.206239, -0.040442, -0.818978, -0.366419, -0.109293, 0.368692, 0.876775, 1.090275, -0.389706, -2.402212, 0.984706, 0.700412, -0.661401, -0.441826, -1.419492, -1.409017, 0.560914, 1.029681, -0.602908, -0.982583, 0.263798, -1.025388, -0.780952, 1.625930, -0.073587, 0.885151, -1.980669, 2.042013, 0.842933, -0.390833, -0.601025, 0.807707, 1.254403, -1.052967, -0.365726, -0.694004, -1.081829, -0.479693, -0.609262, 0.744993, 0.882722, 0.926648, 1.249139, -0.253078, 0.457072, -0.383332, 1.265803, -0.172052, -0.365335, -1.200692, -0.057059, 1.577216, -0.958708, 2.119287, -0.002816, -0.211187, 1.230592, 1.087342, -0.127134, -0.490526, -1.253417, -0.097866, -3.023724, 1.004901, 1.301354, -0.286095, 1.543983, 0.421830, -0.326886, -0.017270, 0.766024, 1.246374, 0.257410, -0.644069, 0.832286, -0.149492, -0.175627, 1.709921, 1.261924, -0.713043, 0.827875, 2.204624, -0.456179, 0.290482, -1.062459, 0.090632, -0.100989, -0.518460, -0.075443, -0.004797, -0.184420, 0.194285, -1.157088, 2.513550, -0.894272, -1.771312, 0.124259, 0.005337, -0.027383, -1.438518, -0.633817, -0.635977, -0.780004, -0.835784, 0.240183, -1.122456, 1.110533, -0.551751, 0.387411, 0.920062, 0.051877, -0.154550, 1.371476, -0.750778, 0.051156, 0.699646, -0.143831, 1.361109, 0.011445, 1.288524, 0.897092, -0.168982, 0.672107, 0.434787, -0.495754, -0.587873, -0.202011, -0.872038, 0.147401, 1.562312, -0.128341, -2.550588, 1.082401, 1.406234, -0.017021, 2.685938, -1.381512, -1.386910, 0.115679, -0.957897, 0.047144, -0.084572, -1.183553, -2.155967, 0.748992, -0.394829, 1.378111, 0.181634, 1.443300, 0.984785, -1.698986, -1.787799, 0.480374, -1.247162, -1.450890, 0.010151, 1.331369, -1.185209, 1.567533, 0.176878, 0.006673, 1.509334, 0.656064, -0.208520, 0.790275, 1.287370, -0.988057, 1.352323, -0.965644, -0.226695, -0.747641, 1.267734, 1.194362, -0.937150, 0.746607, -0.066101, -0.018767, -0.559041, -0.092517, 0.267197, -0.251746, -1.465711, -0.751503, -0.102418, 0.376199, -0.935842, 0.297394, 0.061692, -0.409963, 0.348228, 0.939848, -0.416218, 0.543367, 2.159775, -0.183789, -1.399992, -1.619005, -0.266010, 0.225379, -1.257629, -0.534396, 0.911954, -0.914061, -0.486434, -0.459721, 0.407377, 0.156536, 0.246381, 0.712111, -0.178444, -0.330799, 0.391883, -0.150403, -0.321764, -1.634665, -0.589779, -0.576479, 1.604025, 0.044423, 0.504510, 0.289461, 0.226769, -0.998265, 2.690823, 0.613966, -0.140237, 0.679621, -0.197719, 1.236124, -0.960280, -0.015742, -0.897404, -0.168263, 0.815817, 0.977649, 0.343593, 0.050616, -0.158133, -2.074888, -1.612293, -0.339457, -0.050051, -1.126577, 1.861130, -0.452999, 1.338810, 1.283842, -0.450604, 0.866034, -0.228560, 0.194316, -1.797786, 1.455428, -1.355997, 0.285064, -1.415562, -1.932892, 0.081709, 0.714059, 1.371520, 0.379305, 2.052870, -2.220613, 1.345166, 0.464530, 0.153611, 1.036399, -0.034561, -1.411508, 0.501317, -0.418068, -1.607486, -0.265424, -1.061974, 0.415014, -0.649094, 1.600215, -0.249604, 0.178480, 0.260814, -3.084882, -1.084545, -1.489688, -0.361095, 1.684645, 0.097904, 1.256284, 0.555350, 1.316304, 2.437455, 0.291673, 0.329692, 0.933851, -0.414571, 0.691242, 0.430749, -1.042392, -0.649095, -0.415587, 1.178646, -0.217135, 0.060029, -0.297771, 0.088406, -1.205931, -2.160835, 1.332246, 0.284249, 0.529039, -0.594714, 0.984719, 0.797587, 0.581423, 0.104946, 1.455793, -1.910314, 0.504864, -0.321062, 0.121363, 0.281242, 1.108340, 0.700861, 1.095647, 0.535462, 0.262465, -0.025890, -1.750286, -2.005204, -0.424577, -2.246840, 0.214356, 0.831948, -0.444376, 0.817716, -0.143438, 0.429254, -1.760056, 0.413482, 0.214755, 1.273360, -0.246099, -0.810043, 0.890382, -2.385448, -0.130046, -1.297735, 0.371049, -0.913487, 1.407911, -0.257704, 1.337519, -0.081812, 0.480331, 0.192156, 1.260653, 1.096467, -0.127971, -0.886982, 0.894815, 0.968389, -0.301500, 0.387681, -0.387086, 0.684037, -1.555130, -0.633499, 0.512972, 0.385627, 1.611803, -0.464580, -1.364141, 0.652880, -0.643743, 1.007357, -1.016502, 0.295243, -0.489078, 0.682236, -1.220332, -1.109950, 0.704243, 0.475046, 0.444595, 0.848337, -0.582109, -0.500207, 0.819681, 1.372505, -0.293911, 0.006119, 0.982636, 2.509520, -1.590701, -0.516746, 0.689921, 0.027434, -0.251855, 1.205500, -0.607565, 1.177772, -0.220909, 0.046881, 0.247935, -1.024456, -0.055081, -0.986375, -0.293950, -1.565924, -1.082573, -0.370663, 0.979864, 0.566557, -1.663469, -0.726270, -0.961424, -0.504228, -0.721721, 0.234565, 0.538642, -0.789872, 0.868366, 1.041327, 0.172043, 1.314795, -0.457944, -0.613631, 1.322537, -0.030772, -0.624614, -1.096802, 1.396122, 0.086538, 1.805860, 0.861613, 1.297135, 0.852249, -0.964579, -1.412429, 0.482533, -0.351218, 1.300716, -0.423286, 0.908448, -0.000239, 0.030886, 0.715455, 0.406061, 0.082275, 0.393866, 1.795231, 0.202189, -0.375593, -1.054657, -0.541270, 1.456591, 0.795750, 0.002464, 0.842138, -0.695211, -1.249563, -0.509197, -1.205473, 1.295496, 1.894109, -2.063459, -0.444362, 1.328915, 1.459168, -0.053515, -1.585185, 0.678189, 0.526809, -0.953041, -1.016779, 1.018460, -0.452276, 1.970402, -0.244466, 0.206433, 0.334839, 0.534692, 1.338601, 0.795001, -0.009104, 0.532033, -1.029491, 0.093857, -0.211267, 1.504938, 1.320888, 0.349648, 1.773109, 1.159588, -1.789474, 1.503369, -0.229268, 0.285640, 1.318248, -0.193005, 0.186943, -1.435524, 0.196402, -1.075722, -0.511935, 0.649947, -0.621740, -1.034519, 2.135831, -1.077765, -0.200548, 2.065387, -1.597836, -0.249370, -1.934236, -0.330658, -1.191767, -0.076250, 0.150176, 0.406204, 0.323697, 3.698026, 0.211789, -2.661479, 1.602004, -1.266778, -0.664475, 1.356215, -1.584628, 0.092662, 0.344788, 0.873712, 0.658920, 0.100393, -0.893233, 0.258816, 0.056905, -0.422986, -0.705525, -1.541934, 0.411968, 0.587822, -0.856278, -1.149795, -1.372157, 1.993783, 0.417225, 0.249678, -0.501093, -1.052675, 1.509805, 0.729904, -1.524687, -0.587286, -0.241062, 0.229873, 0.873946, -0.374790, 0.167224, -0.710537, 0.706672, 0.609731, 1.501700, -0.872201, -0.264805, 0.308999, 1.120724, -0.467259, -1.403144, -0.171249, 0.027821, 1.402304, 0.437091, 0.300520, 0.428991, -0.417355, -0.860895, -0.078252, -0.338569, 1.243772, 0.139089, 1.237436, 1.046122, 1.758577, -0.056001, -1.080089, -0.318887, -0.165384, -0.659895, 0.929234, 1.041019, -0.270315, -0.547705, -1.190991, 0.840146, -1.577911, -1.255538, 0.141685, -1.121234, 0.354572, -0.597731, -1.384831, -0.240799, -1.942411, -1.046672, 0.720966, 2.493818, 0.879957, -2.212848, 0.111741, -0.267388, 0.934117, 0.089279, -0.000436, 0.107630, 0.143939, -0.819166, 1.700851, -0.471980, 0.310459, -0.178048, 1.128049, -1.592222, -0.693166, 2.404939, -0.129209, -0.127624, -0.104250, -0.244974, -0.614714, -0.048168, 1.135242, -1.841301, 0.444470, -0.369818, -1.147391, 0.854430, 1.825092, -2.209159, 2.176996, -1.346555, -0.384842, -0.474091, -0.343165, -1.344626, 0.451168, 0.129410, -2.659615, -0.912160, -1.285282, 0.654044, 1.643453, 0.028151, -0.349026, 1.439204, -0.518539, 0.757308, 1.491009, 0.223655, -0.702354, -0.353384, 1.156588, 1.766105, 0.509288, -0.477258, -1.016374, 2.185866, -1.464329, 0.804440, -1.149002, -0.115668, -1.518874, -1.132489, -0.547996, -0.355139, -0.037153, 0.138885, 0.448524, -0.643943, 0.768945, -0.028494, 1.330506, 1.342354, 1.309262, 1.002246, -0.872878, 1.984760, -0.266478, 0.566562, -1.007468, -0.306489, -1.001227, 0.589821, -1.682174, -0.843755, -0.846889, 0.644372, 0.950076, -1.954880, -0.622601, 0.808321, 0.211067, -0.099052, 1.187003, -0.134028, 0.750249, 0.238632, -0.361291, 0.986631, 0.092130, 1.326910, 0.413339, -1.180656, -0.673874, -0.054493, -0.196562, 0.928118, -1.231475, -0.247857, 0.219444, -0.477481, 2.117707, -0.154310, -0.788292, 1.126048, 0.608914, -0.085963, 0.452387, 1.516219, 2.029900, 0.110328, -0.552955, 1.371373, 1.015613, -0.870824, 1.305929, -1.351783, 1.183690, 0.557685, -2.189965, 1.307642, 0.575329, -1.316755, -0.545651, -0.733798, 1.549197, 0.982687, 0.552113, 0.620669, 0.432007, -2.005233, 0.830597, 0.192245, 0.279492, 0.541324, 0.554233, -0.604246, 1.188891, -0.565041, -0.111041, -0.133189, 0.465130, 0.287658, 1.154719, -0.115181, 1.699646, -1.027687, 0.177179, 0.940629, -1.050065, 0.924721, 0.015353, 0.056962, -1.470531, 0.692122, 1.031810, -1.298798, -0.094780, -0.542055, 0.453849, 0.019877, 0.275461, 1.306992, -0.387133, -0.720945, -1.384032, -0.776934, 0.800107, 0.297293, 2.844329, -1.404095, 0.017348, -0.124833, -0.795513, -0.331723, -1.333538, 0.999705, 0.696514, 2.221155, 0.953933, 0.946105, -0.272155, -0.687570, 0.722434, 0.932711, 0.306941, 0.729121, -0.954006, 1.687498, 0.066421, -1.249341, -0.003440, 0.774590, 1.373644, -0.021675, 1.202662, -0.525433, 0.254912, -1.717258, 1.595962, -1.250993, 1.840066, 0.776272, -0.053064, 0.827546, 1.317726, 1.787302, 2.163496, 1.430301, 1.907054, 0.694875, -0.280525, 0.260386, -0.352011, 0.458037, -1.110236, 1.267851, -0.534593, -0.588764, 0.309135, -1.879492, 0.035352, -0.139536, -0.742433, 0.742947, 0.745155, -0.704302, 0.784523, 1.054547, -0.421769, 0.011103, -1.998637, 0.119192, 0.124622, 2.825203, -0.460627, -0.430910, 0.366712, 1.041711, 1.476939, -1.608557, -0.261650, 0.064011, 0.246476, -1.521877, 0.431569, -0.218499, 1.881978, -0.419796, 0.227128, -0.213425, -0.831999, -0.696144, -1.488770, -0.249433, -1.439417, 0.888266, 0.692098, 0.734017, -0.763255, 1.502400, 1.066486, -0.234031, 0.623760, -1.265111, -0.223055, -1.584564, -0.982820, 1.074746, -0.432197, -0.063675, -0.634958, -0.919212, -0.433748, 0.339003, -1.147149, 0.155465, -0.803854, 0.480936, -1.530631, 0.639619, -0.584894, -0.881128, 1.382256, -0.568161, -0.601746, -1.697621, 0.585114, -1.891512, -1.233945, 2.312901, -0.286202, 1.023677, -0.833774, 1.562487, 0.888749, 0.846609, -1.384236, -1.249270, 0.611012, -0.319369, 0.185535, -0.684286, 0.963202, 1.487249, 0.932574, -0.919274, -0.107438, -0.201333, -1.151745, 1.627880, 1.440148, -0.573841, 0.038769, -0.037364, 0.731012, -0.882477, -1.442649, 0.647167, -1.522481, -0.268122, 1.323239, 0.621295, 0.141608, -0.516510, 0.406066, 0.239028, 0.695781, 1.016956, -0.869642, -0.024607, 0.124703, 0.321867, 0.365313, -1.692990, -1.110927, -0.524307, 0.070632, 0.326163, 0.397645, 1.022518, 0.509502, 0.741798, -0.534563, -0.909392, 0.710225, -0.793412, 1.015276, 0.203276, 0.048521, -0.520939, -0.599181, 0.169474, 0.712557, -0.146814, 0.790916, 0.262489, -1.183904, -0.414311, -1.456739, -0.532087, 0.492914, 0.443717, -1.224561, 0.652479, -0.381101, 0.631142, -0.951389, -0.748055, 1.958987, -1.621339, 0.219838, 0.953179, -0.549319, 1.214279, 0.600105, 0.616500, 0.474453, 0.352334, 1.781357, -0.131343, 1.826006, -0.397309, -0.879419, -0.981829, -1.032522, -0.999648, 2.178363, -0.077233, -1.956051, 1.457633, 0.382946, 0.860043, 0.571539, -1.925714, 0.738957, -0.411493, -1.556813, -0.678739, -0.880405, -0.111712, 0.134208, 0.861920, -0.127082, 1.562567, 0.687603, 1.027770, -1.012644, -0.862965, 0.228224, 0.867151, -1.607630, -1.615450, 0.520643, 0.905501, 0.017299, 0.609877, -0.301121, -2.213011, 0.350527, 1.106638, 0.482060, -1.072284, -1.693080, 1.429630, 0.164684, 1.160576, -0.980296, -0.126100, 0.674160, -1.052648, -0.317049, 1.049771, -0.466878, -0.358464, -0.931413, 0.668481, -0.850745, -0.305409, 0.465397, 0.167509, -0.839169, 1.125066, -0.916545, 0.104113, -0.034595, 0.699454, -0.119113, -0.397297, 0.925237, -0.534460, 0.340951, -1.038565, 0.331929, 1.531489, 0.765263, -0.388036, -0.233204, 0.151217, 0.694961, 1.053589, -0.201690, -1.535868, -1.294136, -1.335026, 1.431389, 0.020607, 0.918079, 0.529109, 0.678749, -0.822431, 0.068077, -0.914206, -0.181805, 0.288102, -0.427557, 0.481091, -0.438777, -0.602720, -2.422925, 0.266526, -0.887787, 0.715369, -0.006406, -0.550246, -0.040513, -2.680595, -0.973400, 1.081469}, + { -1.832720, -1.832301, -0.858971, -0.068511, 0.015957, 0.290116, 1.971678, -1.818348, -0.171814, -0.607553, -0.728880, -0.441366, 0.858876, 2.170838, -0.364291, -0.829784, 0.012024, 0.694301, -0.471728, 0.533645, -2.756962, 0.344333, -0.424362, 0.119773, -0.122927, 0.057514, -0.004152, -0.039561, -0.612580, -0.230801, 0.137849, 0.240761, -0.169301, 0.456201, -0.721595, -0.872174, -0.288688, 0.255072, 1.326190, 1.211307, 0.513432, -0.468443, 0.373509, -0.792299, 1.450765, -0.415729, 2.088330, -0.106131, -0.043062, 0.968273, 2.410419, -0.235828, -0.797940, 0.751688, -1.564137, -0.640848, 0.212215, -1.039907, 0.185821, -1.470347, 0.349961, -0.207751, -0.378918, -0.753879, -0.930603, -0.345121, -0.229026, -1.150897, 0.066851, 1.770378, -0.543972, 0.184164, 0.398250, 0.929519, 0.023276, 0.484811, -0.624795, -0.665576, -1.271366, -0.751242, -1.510183, -0.701861, -1.110028, -1.332270, 0.358947, 0.886726, 1.266427, 0.979999, -0.016413, -1.086805, 1.895910, -0.121508, 0.554533, 0.862734, -2.948685, -1.875964, 0.898773, 0.562024, -0.484180, 0.442920, -1.016102, 0.427959, 0.664658, 0.519379, 0.699151, -1.260125, -0.394596, 0.767132, -1.205431, 0.354781, -0.356781, 0.193565, 0.510048, -0.572174, -1.350218, -0.129569, 0.242325, -0.105176, -0.226456, 1.051061, 0.158634, -0.200009, 2.841508, -1.140844, -1.462400, -0.907046, -1.141460, -1.085693, -0.960574, -1.226325, -0.471773, -0.280140, -0.505682, -1.638406, -0.631178, -0.614763, -0.446756, 0.718442, 0.693146, 0.435755, -0.638107, 0.797300, 0.179674, -1.070701, -0.541512, -1.400111, 1.144544, -1.396786, -0.492346, 0.752622, 0.066662, 0.914564, -1.012139, -1.494793, -0.521299, -1.873981, 1.265147, 1.512550, 2.974113, 1.182032, 0.759378, -0.690800, 1.808796, 1.401083, 0.847649, 0.802560, -1.396436, -0.315149, 1.822089, 0.725991, -0.004979, 0.968417, 0.416611, 1.363325, 0.466866, -0.077580, -0.095541, -1.406930, -1.484723, -0.915263, 0.072917, -1.466353, -0.065023, -0.658928, 0.576274, -1.147621, -1.056663, -0.068673, 0.880450, -1.145829, -0.193310, 0.661180, 0.573130, 0.269451, 0.513838, -0.596401, 0.246365, 1.414554, -0.090303, -0.613901, -0.840856, 0.653172, 0.613870, 2.125894, 1.610134, -0.471377, -1.230640, -0.007436, 1.088735, -0.195634, -1.577360, 0.007677, 1.062298, -0.128449, 1.264510, 0.597773, -1.096283, 0.475706, -0.733746, -0.687970, 0.796791, 0.256732, 0.722035, 1.082146, 0.423609, 0.577310, -0.365878, -0.496381, 1.341201, 1.129766, 1.175709, 0.580556, 0.136516, 0.746958, 0.872743, 0.233471, 0.912820, -0.818716, -0.209696, -0.231288, -1.115904, -0.707770, -1.173894, -0.683225, 1.008227, -2.021586, 0.215633, -0.395726, -1.350853, 1.054856, 0.036285, 0.592611, 1.490920, -0.306426, -1.733382, 2.096300, -1.702142, 0.794681, -0.573523, -1.543606, 0.251101, -0.814978, 1.209185, 0.257427, -0.467054, -0.231642, 1.365641, -0.022341, -0.195658, 0.929227, -2.461080, 0.277429, 0.806286, -0.119442, -0.151015, 0.138489, -0.139592, 0.344145, 0.723801, 0.078990, 0.372359, 0.139291, -0.112992, -0.262053, -1.438716, 0.526531, 0.164840, -0.365649, 1.257863, -0.163226, -1.424476, 0.085861, -0.065369, 0.054693, 0.015411, 1.315456, 0.948639, 0.494314, -1.497777, 0.469180, 0.760513, -0.167401, -1.211327, -0.206842, -2.275510, 0.406543, 0.138142, -1.265705, 0.004515, -1.475990, 0.499026, -0.161267, -1.581079, -3.206524, 2.897883, -0.532960, -0.166146, 0.554681, 1.294470, -0.625242, -0.379908, -1.071774, 0.636361, 0.381188, 1.096051, -0.346525, -0.466328, 1.722085, -1.031056, -0.601266, 0.544335, 1.931753, -0.551171, 1.320578, -0.840517, 1.393607, -1.427305, 0.202009, -0.568021, -0.225273, -0.586006, 1.125578, 0.015065, -0.066697, -1.185297, 1.081961, 0.488671, 0.233902, 0.880454, -0.500196, -1.530206, -0.475919, -1.061961, -0.901775, -1.407697, 0.194499, -0.067511, -0.435849, 0.167759, -0.046169, -0.082012, -0.922595, -0.726355, -0.185417, -0.137887, 0.127443, 1.373420, 0.658410, 1.215808, -0.813472, -0.684199, 2.648791, 0.441740, 1.938400, 0.109648, -0.236162, -1.431709, 0.582799, -0.389025, 0.277761, -0.337447, -3.193700, -0.221675, 0.663196, -0.607676, 0.117341, -0.691970, 0.891802, -2.124604, -0.379848, -1.323032, -0.176311, -0.288646, -0.587781, -0.559636, 0.294699, -0.766015, -0.464369, -1.888323, 1.668840, -0.135138, -0.911677, -0.798953, 1.501290, -0.088101, -1.330508, -0.729768, -0.795864, -0.719788, 0.856310, 0.218073, -0.139238, 0.248479, 0.704901, -1.052365, 0.106043, 0.192382, 0.482444, -1.383192, -0.417042, -0.279515, -0.420451, -0.950209, 0.565158, 0.107145, 1.493626, 1.135680, -0.384439, 2.292500, -0.852784, 0.033379, -0.823245, 0.275555, 0.840976, 1.467319, -0.046799, 0.593424, 0.179664, 1.275595, 0.441259, 0.189890, 0.755776, 0.062193, -0.030754, -0.147529, 0.038369, -1.106183, -0.758992, 0.807666, 0.147525, -0.360158, 0.756533, -0.815082, -1.088857, -1.195562, -0.625136, -1.546773, -1.907767, 0.491687, 1.402890, -0.836658, -0.556929, -0.357503, 1.039553, -0.315287, -0.862386, -1.647083, -0.207310, -0.588979, -0.442073, 0.213923, -1.506858, 0.283633, 0.500758, -1.495604, -0.346149, 0.315409, -0.221715, 0.127251, -0.462193, 0.097718, 0.905177, 0.539254, 0.542988, -0.699242, -0.768073, 0.478406, -1.973436, 1.005495, 1.411217, -0.376640, 0.914643, 2.122389, 0.179373, 0.335835, 1.605174, -1.332542, 0.560720, -1.304283, -0.214007, -0.368071, -0.361121, 0.088270, 0.852277, 0.676035, -1.668912, -1.088159, 0.728319, 0.070816, -2.142621, 0.133536, 1.304933, 1.604591, 0.364144, -0.918253, -0.889311, -0.772152, -0.109712, -2.507555, 0.612365, 0.922212, 0.269101, -1.306834, 1.662199, -0.952345, 0.080564, 1.261690, -1.065717, 0.447004, 0.578322, -0.605190, 0.405597, 0.208439, -1.513911, -0.967321, 0.662348, -2.511435, 2.148412, -1.824987, -1.407923, 0.207946, 0.465404, 0.111866, 0.568392, 0.663037, -0.573058, -0.252268, 1.180791, 2.533222, -0.982789, -2.392091, 1.514748, -0.786343, 1.256342, 0.690187, -0.519451, 1.145276, 0.627233, -0.046189, -0.292440, 0.167778, -1.281944, -1.418141, -1.294809, 1.703806, -1.274521, 0.433678, 1.340039, -1.085837, -0.419466, 0.392586, -0.076883, -1.202521, -0.254105, -0.129938, -1.213844, 0.215077, -0.577627, -0.576037, -0.395255, -0.432890, 0.065108, 0.385916, -0.421567, 0.680867, 0.050080, -0.038231, -0.579365, -0.376047, 0.047513, 1.822100, 0.348665, -0.237937, -0.250587, -0.216700, 1.285351, 0.673508, -0.332168, 0.485875, -1.115937, -1.933738, 0.092374, 0.113479, 1.871990, -2.083959, 2.236064, -0.596336, 0.753577, -0.370309, -0.974957, 0.154728, -1.722148, 1.599687, -0.599239, 0.047513, -0.263175, -0.138233, 0.657799, -0.104442, 0.226136, -1.586790, -0.978153, 1.350703, -0.256937, -0.381376, -1.441363, 0.487806, 1.699068, -0.319092, -2.177988, -0.953121, -0.973794, -1.070862, -1.698470, 0.541639, 0.668873, -3.107235, 1.655452, 0.794379, -2.353640, 0.237908, 1.039634, -0.620145, 1.731915, 0.969508, -0.116990, 0.537241, -0.796226, 0.099674, -0.715086, -1.882007, -0.071374, 0.215035, 0.575879, 1.360723, 0.561983, -0.036119, -0.954396, 1.044683, 1.550348, 2.127364, 0.943453, -0.297135, -0.218404, -2.061828, -0.445342, -0.894547, 0.544565, 1.451985, -1.014841, 0.579430, -0.726554, 1.344709, -0.550160, -0.303196, -1.198609, 0.077399, 0.768315, -0.999268, 0.519522, -1.051224, 0.931482, -0.395536, 1.162513, 0.278089, -0.425839, -1.166338, -0.359470, 1.594578, 0.081606, 0.541795, 0.268801, 1.330165, -0.149018, 0.796014, -1.124921, -2.210028, 1.153039, -0.019499, -0.427745, 0.112874, 0.343361, 2.295793, 1.582641, -2.030160, -0.641952, 1.653663, -0.835255, 2.106245, -1.253538, -1.021218, 0.132782, 0.920243, -1.913165, -1.480320, 1.390349, 1.405211, 0.447508, -1.130453, -1.836359, -0.142439, -1.110296, -0.316201, 1.062991, 1.171153, -0.605924, -0.183538, 0.573447, -0.804833, -0.380529, -1.068994, 0.819859, -0.156425, -1.132608, 0.970302, -0.877054, -0.968523, -0.759535, -0.204436, -1.202424, 0.450419, 1.451980, -0.895043, -0.252793, 0.042345, 0.171996, -0.431470, -0.194020, 2.010751, 2.093337, -1.276787, -1.818508, -0.883565, 0.725713, 2.360842, 0.103035, 0.218545, 0.184122, -0.337625, -1.713123, -0.259713, -0.068365, 0.750867, -0.289981, 0.293062, 1.460979, -1.428279, -1.602283, -0.519933, 0.291780, -0.541845, 1.944392, -0.848068, -0.055059, -0.575102, 1.139731, 0.300089, 1.244637, -0.444968, -0.473716, 1.352966, 1.002676, 0.518000, 0.045769, 0.742580, 0.213750, -0.288912, 1.460568, 0.904971, -0.332375, -1.212083, 1.191515, -0.313142, 0.525902, 0.314540, 1.430933, 0.901913, 1.119165, 1.287069, 0.097020, -1.333638, 0.025993, -1.795957, 0.227036, 0.901899, 0.731792, 0.448340, 1.146886, -1.029467, -0.749836, 0.385661, 0.227530, 0.541757, -0.285274, -1.029459, 3.143156, -0.673093, 0.183598, 1.170165, -1.265325, -0.110300, 1.668278, 1.304225, -0.197501, 1.205860, -0.525641, 0.832874, 0.096193, -0.015025, -0.402876, -0.892037, -1.435559, -1.131844, 0.887976, -0.362663, -0.795465, -0.288803, 0.954447, -0.290530, 1.531746, 0.288380, 0.057554, 1.145870, -0.629790, 0.606378, -0.031671, 0.860599, 1.394345, 0.559602, 0.708591, -0.352719, -1.275779, -0.816685, -0.798901, 0.236109, -1.024711, -0.820713, -1.596872, -0.270651, -0.966266, 0.926692, -0.145946, 0.854088, 0.835014, 1.099812, -0.318658, -1.557490, 0.915004, -0.210137, -0.887933, 0.276610, -1.697332, 0.285334, -0.021032, -1.857608, -0.700330, 1.589297, -1.511928, -2.671510, -0.685265, 1.029548, -0.107692, -0.299445, 0.502867, -0.720859, 2.159889, 0.025626, 0.450715, 1.272231, -1.585154, 2.098454, -0.924828, -0.004269, 2.454919, -0.534183, 0.252459, -0.596137, -0.403467, -1.860237, -0.488636, 1.001635, -0.401582, 2.360323, -0.355156, -0.274386, -0.343852, -0.300800, 0.250864, -0.462338, 0.264199, 0.559447, 0.395857, -0.473311, -0.956768, 0.180765, -1.820016, -0.930589, 0.537459, 0.136038, -0.543921, 1.116435, 0.628245, 1.916098, -1.992828, -0.287836, 1.293815, -0.772859, 0.338769, -1.437588, -0.526812, -0.458092, -0.381313, -0.095355, -1.235589, 0.393244, -0.065132, -1.077925, 1.595350, 1.835047, -0.562597, -0.483414, 1.095102, -0.367654, -1.105523, 0.633395, -0.194306, 1.364053, 1.124175, -1.737561, 0.869281, -0.734572, -0.149817, 0.485881, -0.345455, -1.151689, 0.547390, 0.432561, 1.336705, -1.884141, -1.135753, -1.585466, -1.011228, 0.554296, 2.381828, 1.025961, 0.912554, 0.861448, -0.080987, 2.130682, -1.874841, -0.864526, -0.187719, -0.498674, -0.211500, -0.595008, 0.034636, 1.181810, 0.361560, -0.475286, 1.743335, 0.193003, -1.352088, -1.713440, -1.195427, 0.567539, 0.277035, -0.860542, -0.776021, -1.035137, -1.112260, 1.138129, 1.493088, 0.776855, -0.733063, -0.106431, -0.670845, 0.057474, -1.047425, -0.932289, -0.255616, -1.421560, -0.034466, -0.807775, 0.436437, 0.112443, -0.125924, -0.247341, -0.696251, 0.690554, 0.062915, -0.291037, 1.614712, 1.802697, 1.747259, 0.359763, 2.167287, 0.721800, 0.553362, 1.585231, -1.219909, 0.292659, -0.175155, 0.250576, 0.433762, 0.978129, -0.192516, 0.926476, 1.709025, -0.196189, -1.419010, -1.610725, -1.139151, 0.418477, 0.030781, 0.428467, 0.955228, -1.329049, 2.136544, -0.753554, 0.144378, -1.309009, -0.319252, 0.107476, 1.100365, -0.912521, -1.695622, -0.812841, -1.670146, 0.165089, -2.167830, -1.395043, -0.240092, -0.956234, 2.072348, 1.244422, -0.367778, 1.155234, 0.255655, -2.433108, 1.811857, 0.465015, -0.801403, 1.000156, -0.738690, -0.758785, -0.720474, -0.360317, 0.259860, 0.884560, 0.272492, 1.525586, -0.576470, 2.047932, 0.135484, 0.551894, 2.383303, -0.955489, 0.178403, -0.092787, 0.223843, -0.771744, -0.261845, 1.081957, -0.977109, 0.019251, -0.546238, 0.274337, -1.248699, 0.676887, -0.349812, -1.017841, -1.433567, -0.248887, 1.819039, 0.184725, 1.013275, -1.002464, 0.608662, -0.671547, 0.889142, 0.821296, -0.301276, 0.167438, -1.690382, -0.594733, 0.181993, 0.024378, -0.840144, -0.440406, -0.995634, 2.284890, -0.954848, -0.549651, 1.281924, 0.398530, 0.214604, -1.571814, -0.723159, 1.025694, -0.131527, 1.511320, 0.101087, 0.379709, 1.005073, 0.219690, 1.867635, -0.602519, -0.175249, -1.208021, 1.990277, 0.305184, 0.312529, -1.529788, -1.648523, 0.458170, -0.047002, -0.167763, -1.502900, -0.736849, 0.057294, 0.191503, 0.028819, 0.871960, -0.075299, 1.080283, -1.097980, 0.553851, -1.281829, 1.702711, 1.489629, -0.467573, 0.651820, 0.080584, 1.232225, -1.631917, -0.707350, -0.820758, -0.550567, -0.114626, -0.980827, 0.215939, -0.888754, -0.044568, 0.021106, -1.694772, -1.290123, -0.449361, 0.201360, 0.307135, -0.236631, -0.497062, -0.008269, -0.079835, -0.477083, -1.013636, -1.081288, -0.650827, -1.004003, 1.938105, 0.910352, 0.125397, -1.068286, -0.932632, -1.579465, -0.369639, -0.247112, 1.062374, -0.408199, 1.482614, -0.460721, 0.186753, 1.481219, -0.489907, -1.337796, -0.699971, 0.808863, 0.330573, 0.796773, 0.493474, 1.002080, 1.190109, 1.285149, -0.342454, 0.004594, -0.810426, 0.256017, 2.175907, 0.478686, -0.974704, -1.650560, -1.919799, -0.806684, 1.051057, -0.607070, 0.663752, 0.270259, -0.430638, 1.120565, 0.087927, 2.074924, 0.341147, 2.966357, 0.593779, 0.663429, -1.682544, 0.139702, 0.506686, -0.941655, -1.716694, -0.806997, 0.248225, -0.081305, -1.143662, -1.654156, -0.653636, 0.912851, -0.017424, -1.201388, -1.235504, -0.580401, -1.734266, -0.500781, 0.232107, -0.233127, 0.353267, 2.143698, -0.892033, 1.679429, 0.409703, 0.692034, 0.135149, -0.127969, 1.853854, 0.666951, 0.854184, -0.262366, -0.888163, 0.425473, 0.125431, 0.536852, -0.433712, 1.129834, 1.142447, 0.964107, 0.475582, -0.869154, -1.984985, -0.461826, -0.958307, 0.428953, -0.349023, -0.722149, -0.506030, 1.771888, 0.811316, -0.173751, -0.491654, -0.636194, -1.172714, 1.070790, 1.203398, -0.137311, -0.855569, -1.357612, 0.378279, -1.863734, 1.382591, 0.011161, -1.917006, 2.309142, 1.009754, 0.280754, 0.611907, -0.911189, -0.995606, 2.437438, -1.078067, 1.152842, 0.310598, 1.330012, -2.374388, 0.508518, -0.003723, -0.536883, -1.564876, -1.709864, 0.211008, -1.114856, -1.267503, 0.804683, 0.595315, -0.210372, -1.404252, 2.588056, 0.606274, -0.851993, -1.447979, -0.348797, -0.229041, -0.514998, 1.409166, -0.407386, 0.679208, -1.228353, 1.360178, 0.324280, 0.649254, -0.012220, -0.707265, 0.131290, -0.467987, 0.640930, -0.559834, -0.252676, -0.597875, -0.562935, 1.400386, -0.424715, -0.513280, 0.855115, 0.191991, -0.964520, -0.352933, 1.081527, 0.190430, 0.749862, 1.467684, 0.727411, -0.477440, -1.095180, 0.179929, -1.044553, -0.830838, -0.363329, 0.575085, 0.461175, -0.688499, 0.429750, 0.402037, -1.836882, -1.343481, 1.654838, -1.162995, 1.352182, 1.885412, 0.471842, -0.214834, -1.703495, 0.202681, 0.709370, -0.447599, -1.471250, 0.199692, 0.875522, 1.048451, -0.065706, 1.700373, -2.122299, -0.090670, -0.201647, 1.091765, -0.379659, 0.401704, 0.833976, 0.731895, 0.709447, -0.716736, 1.911557, -1.902063, -0.518437, -0.797185, -0.235644, 1.499953, 0.308034, -0.259524, -1.326812, -0.966541, 0.738371, -0.642539, 0.572851, -1.120586, 0.427213, 0.299291, 1.581746, -1.596753, -0.973999, 0.965577, -0.479069, 0.557041, -0.319204, -0.217317, 0.091067, 0.094040, -1.680667, 0.072046, 0.373416, 1.088088, -0.062071, 0.105099, 0.786048, -1.472981, -0.201788, -0.110247, -0.124703, 1.582004, 0.138461, -0.182415, -1.592387, 0.741989, -0.558639, -0.519499, 0.115620, -0.566589, -0.851491, 0.051869, -2.199328, 0.093601, 0.315632, 1.293925, -1.664142, 1.020213, 0.606874, 0.803589, -0.082597, 0.499662, 0.228775, -0.448975, -1.426017, -0.140244, 0.716109, 1.553304, 0.719433, 0.975645, 0.837441, 1.120692, -0.498690, 0.216276, -1.416430, 0.547602, 0.884554, -0.883310, -0.177371, -1.273554, 1.098291, 1.180377, 1.756399, -0.333211, -0.435881, 0.519508, 1.114167, 1.609321, 0.071498, 0.581950, -0.299901, -0.765122, -0.488867, -0.035351, -0.826499, -1.425051, 1.434185, -2.210378, -0.940950, 1.816813, 0.063278, 0.753839, 0.144365, -0.979390, -0.045419, 0.297778, -0.383652, 0.864681, -1.206591, 1.243333, 1.348250, 1.174847, -0.953818, 0.840999, -0.557367, 0.314909, -1.597800, -1.079209, 0.089300, 1.671589, -0.808067, 0.076293, 0.096278, -0.324097, 1.691696, 1.088688, -0.102197, 0.713123, -2.436126, -1.598818, -0.794874, 0.210923, 1.283019, 0.547768, -0.579813, 0.036665, -0.833858, -1.421240, 0.138998, -0.325604, 1.347060, 1.670095, -1.604636, -1.615392, -0.460504, 1.857504, 1.631746, 1.057933, -0.055917, -1.313222, -0.422599, -0.455539, 0.352716, -2.021872, -0.631336, -1.906826, 0.767665, 0.506621, -0.745368, -2.332947, 0.296637, -1.559323, 0.071974, 0.169996, 0.840164, 1.604448, -0.374057, -0.587066, -0.986345, -0.414328, 0.850159, -0.583975, -1.069348, 1.588573, -0.591482, -0.796043, 0.680985, 1.771477, -1.231028, -0.448036, -1.177586, -1.279473, 0.321128, 1.709116, -0.429261, -0.260985, -0.207789, 0.436985, 0.088741, 0.429940, -0.731834, 0.052336, 1.085671, 0.893380, 0.509342, -1.013332, -1.639478, -1.357020, 1.414649, -0.899549, -0.376484, -0.306010, -0.792559, -0.055293, 0.482073, 0.641750, 1.808035, -0.040113, 0.704865, -0.915666, -0.265766, -0.023698, -0.925227, -0.746802, 0.304658, -0.184038, 0.726465, -0.155801, -0.556488, 0.655451, 0.320722, 0.093133, -0.784770, -0.076329, 1.074745, -1.257506, -0.258270, -0.301241, -0.722143, 0.731017, 0.167733, 0.636896, 1.598458, 1.704751, -1.142440, -0.685851, 1.584837, -0.626776, -0.328650, -1.091329, 0.971738, 1.043644, 0.636459, -0.312368, 1.026271, -1.633195, 0.539821, -0.964621, -0.400355, 0.132008, -0.179207, 1.159695, 0.955293, -0.303751, -0.217484, 2.513990, 0.006818, 1.458397, 1.128086, 0.183672, -0.298289, -1.102964, 0.110033, -0.208438, -0.686324, 0.899560, -1.023875, -0.859286, -0.054482, -1.038903, 1.151221, 2.548196, 1.908477, 0.645170, -0.369748, 0.810512, -0.793427, -0.527577, -0.077106, 1.186085, 0.483219, -0.320033, 0.698668, 1.683920, 0.120677, 0.988550, -1.493364, -0.723505, 1.647273, -0.100119, 0.438654, 0.719387, 0.246423, 0.010835, -1.617130, -0.479237, 0.434476, -0.064019, 0.166649, -0.006954, 0.024624, -0.196386, 0.907595, -0.046163, -1.095835, 0.691906, -0.998547, 0.673572, -1.293808, 0.368095, -2.459684, 0.205549, 0.994630, -0.035405, 0.655553, 0.210941, 0.881665, 0.522077, -0.416486, -0.501087, -1.235737, 1.380430, -0.896689, -1.126449, -0.861117, -1.431397, -2.374008, -0.185161, -0.301201, 0.348443, 0.192501, 1.046262, -0.469976, -0.498890, 0.674246, 0.308645, -0.763818, 0.463878, 0.370435, 0.017343, 1.601899, -0.941614, 1.008298, 1.594859, 0.178323, 0.637547, 0.078154, -0.958955, 1.312140, 0.096965, 0.933447, 0.181134, 0.097072, 0.052523, -0.295644, -0.979182, 1.415053, -0.556326, -0.102701, -0.510035, 0.550682, 0.363609, 1.633884, -0.310255, 0.013011, 0.593944, -1.758845, -1.518336, -0.633596, -0.383157, 0.163710, 1.571116, 1.590887, 0.072846, 0.871000, 0.914114, -0.498564, -1.488947, 1.305893, 0.905593, -0.227759, 0.241577, 0.191664, 0.456879, -0.794243, 1.409171, -0.744751, 0.360987, 0.473105, -0.391104, -0.905041, 0.197796, 0.320883, -1.731515, 1.453186, -1.293101, -1.584068, 1.283133, 1.476748, -0.405433, -0.493755, -0.052667, -0.204378, -0.541118, 0.492995, 1.250793, 0.172867, -0.667022, 0.677376, 0.179161, -0.777011, -2.078700, -1.441447, 1.048290, -1.487841, 0.294937, -0.452218, -0.472494, 1.731985, 3.650026, -0.748173, -0.511208, -0.744948, 0.017124, -1.601023, 0.232189, -0.721906, -0.198432, 0.396972, -1.718849, -0.180867, -0.529996, -0.838769, 1.875711, 3.127018, -0.494097, 2.461127, -0.644371, 1.168177, -0.150548, -0.736924, -0.582264, 1.461116, 0.402506, 0.569627, 1.566779, 1.184108, -0.874220, -0.039653, 0.212669, -0.989231, -0.177178, -0.326706, 0.289737, -0.194158, -0.352394, 1.279422, -1.613065, -0.546365, -0.947715, -1.307459, 0.228799, -0.325311, 1.857904, 2.367548, -2.143504, 1.185711, 0.023310, -0.245319, -0.053544, -0.714797, -1.207599, -1.017377, -1.153081, 1.471800, -0.533222, -0.106148, -0.435499, -0.688528, 0.656703, 0.574933, -0.005387, -1.395935, -0.104269, -0.041974, -1.274262, -2.136190, 0.863266, -0.901615, 1.035668, -0.844594, 1.283889, 1.755277, -1.890345, -0.731781, 0.709649, -0.313370, 0.332204, 1.560688, 0.055312, 0.138974, -0.560567, 0.677662, 1.751913, -0.258554, 0.290400, -1.187742, -0.071480, -0.079336, 0.250645, -0.204532, 0.252637, 1.147611, -1.279423, 0.355029, -0.927427, 0.858100, -1.442043, -2.436779, -0.571746, -1.054116, 1.802603, 2.568276, -0.159607, -0.859052, -1.755104, -0.075094, 0.429452, -1.066747, -0.327732, 0.900284, 1.293475, 0.276533, -0.250297, -1.543613, 0.290647, 0.933780, -1.894013, 1.612368, -0.305038, -1.473978, -0.414879, -0.597143, -1.643668, 0.926439, 0.284534, 0.730527, 0.589243, 1.370415, 0.247107, -0.581779, -0.423290, 0.896937, 0.578896, 0.511773, 0.637184, 1.315664, -0.373985, 0.337739, -0.314847, 0.928552, -1.051257, -0.182437, 0.619872, 1.506933, -1.069797, -1.396807, 0.876967, -2.091229, -1.156655, 2.691005, -0.585278, -0.225732, -0.034191, 0.634141, 1.449422, -1.051603, 0.026337, 0.924095, -0.585849, -0.333940, 0.320869, -0.078419, -1.023535, -0.673724, -0.946902, -0.576454, -0.123051, -0.696129, 0.947458, 1.158253, -1.118220, -0.088368, 1.723133, 0.866373, 1.321266, -0.190917, -0.354790, 0.016682, 0.199741, 0.076106, -2.472578, -0.491191, -2.213902, 0.196228, 2.089944, -0.411776, 2.540997, -0.091430, -0.098488, 0.489360, -0.307179, 1.029859, 0.807510, -1.159881, 0.117357, -0.490907, 0.707053, 0.678481, 1.080089, 0.715684, 0.392280, 1.221960, 0.265962, -0.557330, 0.048529, 1.294021, 0.719138, -0.532130, 0.813531, 0.469985, 0.261738, -1.594005, -0.788719, -0.911482, -0.952686, -0.764332, -0.574385, 1.037331, -1.486272, 0.428177, 1.293537, 1.290042, 0.406969, -0.124457, 2.316815, -1.143812, 0.641655, 1.688069, 0.462520, 1.728105, -2.043435, 1.850362, 1.750298, 1.289351, 0.872667, 1.511825, -1.111976, 0.591458, -1.504478, -0.400845, -2.375541, 0.574131, 1.670279, 0.082997, -0.891840, -0.406302, -0.698602, -1.408785, 0.481809, -0.187033, -0.097334, -0.633844, -0.185018, -0.273898, -0.073878, 1.428934, -0.053016, 0.264499, 0.102886, -0.643190, -1.125247, -1.210615, 0.318774, 0.647272, -0.335101, -0.642515, -0.202426, 0.977787, -0.303940, -1.143692, 0.081544, 0.612070, -0.146524, 0.035038, 0.376637, 0.528662, 0.028879, -0.666669, -0.328715, 0.782662, -0.252001, -0.690979, -0.469470, -0.708381, -0.923942, 1.304723, 0.370498, -0.702136, 2.529210, -0.054950, -1.187487, -0.773994, 0.278975, -0.066161, 0.794054, 0.504187, 0.416453, -0.379658, -2.723108, 1.534548, 0.762826, -1.756781, 0.547000, -0.091992, 0.610848, -0.860154, -0.568627, -0.950247, -0.804920, 0.094614, -1.800706, -0.957929, -0.320965, -0.430799, -0.273611, 0.908135, 1.306168, -0.062194, -0.090874, 0.912942, -0.646390, -1.807085, -0.933588, -0.043086, -1.305417, 0.050470, -0.895961, 1.310764, 0.325361, -0.191396, -0.824477, 1.590671, 1.758281, -0.422506, 1.825948, 0.476100, -0.775445, -0.588464, -0.446426, -0.199340, -0.919906, 0.858454, 1.077656, -1.283093, 0.956044, 1.074878, 0.652241, -1.355035, -0.212005, -1.201545, -0.353020, 0.531426, 1.915986, -0.965934, 0.190336, 0.986044, 0.037555, -0.529147, -0.311364, 0.181307, 0.533788, -1.400613, 0.775118, 0.701766, 0.295929, 0.886815, 0.687763, -0.114143, 0.539465, 0.115756, -0.460651, -0.316303, 0.939736, -3.304141, 0.450156, -0.150967, 2.590709, 0.475691, -0.205907, 1.243305, -0.637208, 0.222785, 0.748470, 0.327467, 0.099044, 0.032882, 1.738621, 0.283333, -0.374721, -0.404877, 1.469799, -0.053844, 1.463576, 0.215078, -0.376748, 0.739035, 1.232927, -0.653800, 1.776496, 0.890157, 0.706800, -0.507877, -0.380121, 0.118047, 0.689611, 1.743918, -0.404770, -1.151464, -1.695880, -0.247196, 3.640188, -1.533481, -0.319891, 0.076200, -1.185571, 0.724319, -0.097713, -0.008245, -2.476176, -1.042394, -0.678655, 0.153472, 0.218226, 0.139165, -0.681017, -1.256133, -0.485314, 0.202880, 0.737773, 1.368623, 1.149944, -0.349254, -0.539458, 0.673286, 0.197265, -0.546732, -0.936812, 0.438582, -0.255539, 1.015393, 0.830016, -1.748915, 0.401725, 1.051908, -0.120281, -0.238244, 0.804372, 0.132807, 0.436494, -0.404823, -0.035251, -0.534760, -0.289785, -0.845962, -1.671271, -0.229290, 2.076859, 2.112873, -1.734705, 1.491760, -1.510347, 1.728574, 0.348427, 0.931202, -0.590530, -0.623766, -0.825722, -2.842976, -0.180604, 0.063132, 0.524808, 0.880048, 1.452389, -1.411420, 0.406923, -0.009063, -0.083285, -0.258333, -0.411093, 0.422656, 0.351526, -1.174328, -0.700595, 0.957094, 0.464154, 0.961940, 1.651793, -0.459023, 0.032361, 1.719693, -0.214426, -1.066313, 1.203414, 1.512252, -0.013053, 0.078026, -0.355100, -1.151602, 0.038365, 0.746541, 0.082617, 1.483096, 0.532986, -0.779316, 0.470299, 0.304849, -1.239046, 0.833531, -0.991812, 0.001219, 0.173022, -0.671808, 0.625388, 0.298280, 0.077275, -1.210524, -0.468787, -0.921020, -0.478186, -0.619984, -1.110261, 0.231596, 0.518341, -0.374246, 0.364306, -0.562572, 0.492916, 0.312070, 0.588313, 1.482537, -0.015267, -0.783096, 0.834487, -1.457625, 1.100386, 1.968092, 1.456164, -0.946590, 0.203014, 0.477965, -1.088596, 0.540124, 0.629137, 0.011425, 0.905091, 1.384760, -1.472135, 1.190629, 2.056539, -0.319791, 0.130147, 1.271055, -1.372692, -1.440046, 0.155413, -0.549882, -1.216933, -0.015819, -0.415747, 0.416547, -0.130419, 1.552997, -1.359725, 0.513762, -0.531440, 1.063322, -0.155506, 0.520833, -0.800494, 0.013978, -0.176839, -0.779325, 0.078672, 0.725792, 1.546884, -1.768456, -0.794239, 1.242195, -0.893333, -0.502014, 0.070600, -0.002877, -0.731447, 0.871525, 0.182300, 0.421710, -1.074521, 0.645462, 0.754332, -1.022830, 1.445887, 0.281259, 1.092868, 0.415702, 0.041165, -0.861055, -0.345498, 0.856263, 0.615832, -0.432934, -0.813447, -0.851235, 1.111349, -3.271591, 1.546055, 1.239123, -1.086900, -1.780178, -1.544458, 1.873742, 0.374872, 0.415019, 0.469029, 0.937666, 0.049280, 0.529974, 0.003972, -0.480289, -0.680859, 0.451785, -1.514718, -1.901561, -1.334306, -0.493515, 0.337956, -0.781422, -2.140366, 0.328653, 0.174495, -1.144279, -0.566132, 0.672687, -0.089142, -0.648147, 0.545837, -0.986966, -2.011614, 0.259612, 2.211427, 0.211769, 0.397450, -0.224143, 0.499279, -0.465039, -0.018928, -0.256960, 1.115301, 1.085668, 0.455206, -0.426466, -0.145627, 0.715345, 0.300405, -1.221085, -0.755768, -2.435087, -0.035126, -2.416443, 0.488851, 1.770282, 0.528806, -1.465314, 2.651483, -0.128389, -0.417145, -0.577149, -1.435889, 0.905378, 1.964585, 0.894539, -1.143834, -2.072651, 1.425874, -0.124561, 0.389397, -1.235276, -0.594976, -1.501140, -1.478278, 0.740822, -1.062056, -1.572316, -2.148202, -0.152699, -0.186795, 1.114281, -0.963079, 0.069280, -0.894024, -1.605450, -1.513596, 0.530406, -0.645352, 1.083404, 0.359742, 1.405155, 0.044220, -1.192332, 0.917870, 0.855886, -0.670823, -0.254677, -1.302230, -1.053527, -0.272081, 1.250596, -0.953726, -1.029437, -0.859062, -0.629846, 0.961099, -1.023370, 0.629703, -0.341659, -1.246644, 0.595643, -0.020413, 1.129626, 0.275426, -1.704722, 0.773559, -0.604371, -0.377520, -0.792514, -0.408869, 1.876892, -0.904421, -1.188380, 0.658271, -0.445619, -0.551301, 0.335250, 0.279356, -0.326728, -1.484962, 0.847658, -1.794759, 0.811666, 1.128677, -0.788439, -1.644893, -1.258992, -1.379385, -1.906459, 0.497265, 1.033804, 1.151994, 0.456040, -0.774154, -0.012932, -1.069791, 2.342337, 1.340138, -1.019621, 0.425536, 0.735433, -0.142667, -0.560009, -0.683843, 1.341919, 0.859628, 0.137526, 0.492168, 0.054559, 0.083764, -0.791269, 0.056748, -0.414487, -0.863183, 2.167135, 0.286823, -0.313111, 0.553862, 0.000764, 0.187081, 0.415014, -0.025802, -0.304829, -0.418926, -1.503555, -0.728779, 1.791107, -0.841265, -1.676302, -0.522063, 0.116286, -0.168111, 1.006858, 0.101588, -0.587156, -0.705265, 0.165976, -0.946316, -2.553041, -1.526274, 0.298436, 1.922130, -0.205348, -2.022770, -0.205359, -1.507347, 1.873686, 0.673701, 0.306206, 1.039660, -0.038807, -0.043503, 0.350892, -2.025926, 0.437385, 0.458255, 1.634356, -0.854927, 0.371193, -0.254437, 0.073511, 1.285112, 0.519757, -0.228653, 1.085662, -0.791520, -1.802710, -0.449006, -0.484930, 0.119999, 0.560412, 0.440483, -0.542622, -1.215385, 0.284334, -0.250832, -0.322118, -0.851089, 1.981881, 0.650384, 0.415281, -0.822203, 0.005297, 1.911241, -1.385507, -0.036001, 0.816934, -0.378025, 0.169822, -0.399903, 0.239210, 0.001490, 2.054050, -0.406740, 1.091864, -0.547333, -1.399578, 0.162506, 0.490285, 0.052707, 1.901091, 0.474383, -1.488865, 1.136825, -2.066674, -0.006272, -0.850482, -0.035556, -0.235673, -0.218231, 0.282727, 0.491038, 0.287284, -0.097007, 0.115075, 1.457639, -3.244357, 0.470283, -0.098323, 1.030281, -0.464562, -0.475466, 0.046398, -0.243231, 1.409080, 0.194063, -0.350261, 0.745933, 0.467701, 0.776280, 0.235805, 0.157086, -0.076641, 0.586459, 0.434680, -1.791565, 0.026298, 0.676300, -1.933337, 0.501824, 1.718093, 1.288899, 0.260463, 1.045297, -1.146577, 0.918897, 0.953756, -0.042108, -2.098849, 0.199197, 0.322978, -0.817203, -1.332367, 2.005766, -1.458670, 0.591116, -0.432035, -0.049552, -0.598772, -1.272601, -0.008249, -1.420874, -0.134552, 1.230841, 1.296471, 2.309085, -0.049947, -0.267413, 1.373158, -1.519797, -0.545450, -0.721523, 1.381696, -1.716540, 0.787918, 0.554416, -0.070415, -0.762030, -0.824556, 0.283408, -0.479842, 1.808094, -0.094731, -1.870258, -1.043470, 0.024725, 0.248764, 0.703275, -1.028994, -0.107399, -0.053329, -2.229501, -1.665794, -0.031335, -0.125519, -0.599666, 0.731239, -0.421697, 0.417807, 1.440879, 0.735590, -2.647292, 0.874610, 0.068902, -3.034189, -1.514768, 1.375592, 0.138118, 1.404842, 0.102398, -0.253506, -1.386411, -0.538118, -0.184038, 1.438215, 0.493969, -0.344355, -1.197392, 1.258777, -0.539622, 1.933346, 0.174602, -0.641495, 2.560009, 0.559602, 0.081997, 1.169597, -1.220777, 0.234462, -0.656987, 2.071997, 0.665757, 1.414597, 1.569744, 0.661390, 0.028050, -0.450470, 0.289979, -1.190956, 0.048685, 0.806834, -0.217576, -0.051532, 0.061492, -1.341624, 0.204468, 0.275311, 1.015437, 0.390251, -0.190717, -0.765341, -1.368739, -0.462784, 0.637006, -0.131510, 0.360640, -0.004806, -0.531379, 0.609566, -0.608923, -0.201313, -1.309795, -0.631704, 0.626638, 0.900704, 0.671277, -2.451971, 0.267234, -0.331389, 0.085007, -0.389346, 0.581410, 1.572095, -0.876835, 0.656450, 1.103068, 2.145412, -0.329937, -0.144463, 0.489393, -0.236403, -0.864358, 0.506528, -1.366651, -0.288515, -0.242011, -0.249457, -0.689139, 1.594921, 0.178823, -0.543440, -0.212464, 0.580742, 0.784289, 0.682584, -1.622043, -0.654385, 0.722397, 0.800628, -1.158074, 0.123853, 0.264135, 1.566360, -0.495162, 0.559053, 1.675383, -0.264058, -1.245865, 0.682013, 0.000450, 0.147345, -0.998236, -0.175671, -0.534080, 0.808792, 0.319772, -0.367929, 0.974291, -0.049030, -1.117112, 1.419691, -0.501245, -0.725041, 1.341914, 1.344847, 0.253530, 0.158335, 1.682190, -1.131622, 0.167605, -1.342492, -0.446232, 0.349514, 0.185182, -0.928107, -1.647748, -0.625048, 0.311100, -2.428436, -1.072399, 0.715704, -1.987772, 0.292917, -2.224710, -0.744249, -0.702430, 1.110776, 1.642087, 0.232296, -1.799583, -0.788508, 0.667428, -0.747804, -0.234830, -0.306652, -0.182916, 2.065650, 1.100246, -0.033264, -1.415357, -0.515378, -0.811896, 0.025481, -1.196895, 1.921172, 0.185095, -0.489697, 0.986528, 0.013538, -0.041245, 0.219131, -1.576243, -0.437772, 0.696383, -0.081948, 0.215104, 0.455184, -1.427389, -1.780960, 2.597677, -0.157039, 0.020257, 0.820653, 1.046425, 0.050160, -0.094993, 1.200100, 0.346938, 0.850390, 0.367304, -2.310000, 1.211297, 0.150482, 0.043871, -0.508709, -1.609964, -0.297195, -0.181224, 0.111775, -0.982257, 0.678733, 1.204637, -0.920422, 1.300763, 1.967843, 0.612005, 0.491201, -0.360247, -0.975194, -0.668533, 0.805851, 0.523935, 0.195248, -0.130975, -1.337807, -0.786042, 0.599628, 1.169225, 2.658781, 1.300806, 0.177758, -0.573090, -0.419563, 0.170684, 1.118638, -0.425810, 0.999040, -0.059230, -1.428994, -0.652792, 0.191031, 0.170650, 0.706141, 1.963883, -0.381524, 0.169058, -0.872359, -0.993459, 1.201042, 1.368303, 0.624524, -2.418988, 0.149065, 1.952251, -1.809313, 1.548608, 0.564970, 0.469068, 1.563380, -0.134034, -0.510471, 1.281595, 1.207709, -1.528424, -0.044249, 1.197483, -0.093338, -1.051536, -0.398160, 0.772390, 0.157586, 2.020971, -0.659765, 1.254528, 0.567158, 0.622205, -1.150470, 0.139632, 0.142316, -0.064545, 0.260148, -0.534607, -0.931033, -1.101969, 0.532323, -0.767783, -1.608334, -0.313577, 0.086653, 0.291630, 0.036925, 0.030688, -0.117193, 0.185717, 0.623620, -0.210230, -0.096605, -0.283992, -2.347278, -1.262812, 1.042450, -0.429306, -2.661640, 0.675233, -0.607473, 1.390264, -1.861211, -0.134102, 0.901294, -1.293585, 0.742760, 0.391332, 0.926030, -0.426751, 0.337803, 0.991124, -0.618245, -0.664740, -0.103559, -0.255470, -0.502952, -0.043288, -0.672390} +} +}); + +#endif /* EXPORT_PARAMETERS_INPUTNODE_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode.hpp new file mode 100644 index 000000000..e82011643 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode.hpp @@ -0,0 +1,7 @@ +#ifndef EXPORT_ATTRIBUTES_OUTPUTNODE_H +#define EXPORT_ATTRIBUTES_OUTPUTNODE_H + +#define _OUTPUTNODE_IN_CHANNELS 16 +#define _OUTPUTNODE_OUT_CHANNELS 10 + +#endif /* EXPORT_ATTRIBUTES_OUTPUTNODE_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_b.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_b.hpp new file mode 100644 index 000000000..cc150ee13 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_b.hpp @@ -0,0 +1,11 @@ +#ifndef EXPORT_PARAMETERS_OUTPUTNODE_B_H +#define EXPORT_PARAMETERS_OUTPUTNODE_B_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> OutputNode_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 10> { +{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } +}); + +#endif /* EXPORT_PARAMETERS_OUTPUTNODE_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_w.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_w.hpp new file mode 100644 index 000000000..303ae8366 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_w.hpp @@ -0,0 +1,22 @@ +#ifndef EXPORT_PARAMETERS_OUTPUTNODE_W_H +#define EXPORT_PARAMETERS_OUTPUTNODE_W_H + +#include <aidge/data/Tensor.hpp> +#include <memory> + +std::shared_ptr<Aidge::Tensor> OutputNode_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 10, 16> { +{ + { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630}, + { 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164}, + { 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481}, + { -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, + { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876}, + { -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245}, + { 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104}, + { 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, + { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258}, + { 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219} +} +}); + +#endif /* EXPORT_PARAMETERS_OUTPUTNODE_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/dnn.hpp b/aidge_core/unit_tests/dummy_export/include/dnn.hpp new file mode 100644 index 000000000..3a4d5c02e --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/include/dnn.hpp @@ -0,0 +1,17 @@ +#ifndef DNN_HPP +#define DNN_HPP +#include <aidge/graph/GraphView.hpp> +/** + * @brief This file contains all of what is related to the construction of the + * neural network + * + */ + +/** + * @brief This function generate the exported Aidge::GraphView. + * + * @return std::shared_ptr<Aidge::GraphView> + */ +std::shared_ptr<Aidge::GraphView> generateModel(); + +#endif /* DNN_HPP */ diff --git a/aidge_core/unit_tests/dummy_export/main.cpp b/aidge_core/unit_tests/dummy_export/main.cpp new file mode 100644 index 000000000..640fc1fe6 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/main.cpp @@ -0,0 +1,23 @@ +/* +Example main.cpp used to test aidge export. +This file is copied in the test export. +*/ +#include <iostream> + +/* Register default cpu Tensor implementation */ +#include <aidge/backend/cpu/data/TensorImpl.hpp> + +/* Include model generator */ +#include "include/dnn.hpp" + +int main() +{ + + std::cout << "BEGIN" << std::endl; + + std::shared_ptr<Aidge::GraphView> graph = generateModel(); + + std::cout << "END" << std::endl; + + return 0; +} diff --git a/aidge_core/unit_tests/dummy_export/project_name.txt b/aidge_core/unit_tests/dummy_export/project_name.txt new file mode 100644 index 000000000..eade0289a --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/project_name.txt @@ -0,0 +1 @@ +dummy_export \ No newline at end of file diff --git a/aidge_core/unit_tests/dummy_export/python_binding/pybind.cpp b/aidge_core/unit_tests/dummy_export/python_binding/pybind.cpp new file mode 100644 index 000000000..6514fe0d5 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/python_binding/pybind.cpp @@ -0,0 +1,14 @@ +#include <pybind11/pybind11.h> + +#include "dnn.hpp" + +namespace py = pybind11; + + +void init_dummy_export(py::module& m){ + m.def("generate_model", generateModel); +} + +PYBIND11_MODULE(dummy_export, m) { + init_dummy_export(m); +} diff --git a/aidge_core/unit_tests/dummy_export/src/dnn.cpp b/aidge_core/unit_tests/dummy_export/src/dnn.cpp new file mode 100644 index 000000000..69a5269b6 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/src/dnn.cpp @@ -0,0 +1,232 @@ +/******************************************************************************** + * This file has been generated by the Aidge export. + ********************************************************************************/ + +/*** STD INCLUDES ***/ +#include <memory> // std::shared_ptr + +/*** AIDGE INCLUDES ***/ +#include <aidge/graph/GraphView.hpp> // Aidge::GraphView +#include <aidge/graph/Node.hpp> // Aidge::Node +#include <aidge/graph/OpArgs.hpp> // Aidge::Sequential + +/*** AIDGE OPERATORS ***/ + +/*** OPERATOR ATTRIBUTES & PARAMETERS ***/ +#include "aidge/operator/Producer.hpp" +#include "attributes/InputNode_b.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/InputNode_w.hpp" +#include "aidge/operator/FC.hpp" +#include "attributes/InputNode.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/FC1_b.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/FC1_w.hpp" +#include "aidge/operator/FC.hpp" +#include "attributes/FC1.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/FC2_b.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/FC2_w.hpp" +#include "aidge/operator/FC.hpp" +#include "attributes/FC2.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/OutputNode_b.hpp" +#include "aidge/operator/Producer.hpp" +#include "attributes/OutputNode_w.hpp" +#include "aidge/operator/FC.hpp" +#include "attributes/OutputNode.hpp" + +/*** HEADER ***/ +#include "dnn.hpp" + + +std::shared_ptr<Aidge::GraphView> generateModel() { + /*** BUILDING GRAPH ***/ + std::shared_ptr<Aidge::GraphView> graph = std::make_shared<Aidge::GraphView>(); + + /*** INPUTNODE_B ***/ + std::shared_ptr<Aidge::Node> InputNode_b = + Aidge::Producer( + InputNode_2, + "InputNode_b" + ); + graph->add(InputNode_b); + + + + /*** INPUTNODE_W ***/ + std::shared_ptr<Aidge::Node> InputNode_w = + Aidge::Producer( + InputNode_1, + "InputNode_w" + ); + graph->add(InputNode_w); + + + + /*** INPUTNODE ***/ + std::shared_ptr<Aidge::Node> InputNode = + Aidge::FC( + _INPUTNODE_IN_CHANNELS, + _INPUTNODE_OUT_CHANNELS, + "InputNode" + ); + + InputNode_w->addChild(InputNode, 0, 1); + InputNode_b->addChild(InputNode, 0, 2); + + graph->add(InputNode); + + + + /*** RELU0 ***/ + std::shared_ptr<Aidge::Node> Relu0 = + Aidge::ReLU( + "Relu0" + ); + + InputNode->addChild(Relu0, 0, 0); + + graph->add(Relu0); + + + + /*** FC1_B ***/ + std::shared_ptr<Aidge::Node> FC1_b = + Aidge::Producer( + FC1_2, + "FC1_b" + ); + graph->add(FC1_b); + + + + /*** FC1_W ***/ + std::shared_ptr<Aidge::Node> FC1_w = + Aidge::Producer( + FC1_1, + "FC1_w" + ); + graph->add(FC1_w); + + + + /*** FC1 ***/ + std::shared_ptr<Aidge::Node> FC1 = + Aidge::FC( + _FC1_IN_CHANNELS, + _FC1_OUT_CHANNELS, + "FC1" + ); + + Relu0->addChild(FC1, 0, 0); + FC1_w->addChild(FC1, 0, 1); + FC1_b->addChild(FC1, 0, 2); + + graph->add(FC1); + + + + /*** RELU1 ***/ + std::shared_ptr<Aidge::Node> Relu1 = + Aidge::ReLU( + "Relu1" + ); + + FC1->addChild(Relu1, 0, 0); + + graph->add(Relu1); + + + + /*** FC2_B ***/ + std::shared_ptr<Aidge::Node> FC2_b = + Aidge::Producer( + FC2_2, + "FC2_b" + ); + graph->add(FC2_b); + + + + /*** FC2_W ***/ + std::shared_ptr<Aidge::Node> FC2_w = + Aidge::Producer( + FC2_1, + "FC2_w" + ); + graph->add(FC2_w); + + + + /*** FC2 ***/ + std::shared_ptr<Aidge::Node> FC2 = + Aidge::FC( + _FC2_IN_CHANNELS, + _FC2_OUT_CHANNELS, + "FC2" + ); + + Relu1->addChild(FC2, 0, 0); + FC2_w->addChild(FC2, 0, 1); + FC2_b->addChild(FC2, 0, 2); + + graph->add(FC2); + + + + /*** RELU2 ***/ + std::shared_ptr<Aidge::Node> Relu2 = + Aidge::ReLU( + "Relu2" + ); + + FC2->addChild(Relu2, 0, 0); + + graph->add(Relu2); + + + + /*** OUTPUTNODE_B ***/ + std::shared_ptr<Aidge::Node> OutputNode_b = + Aidge::Producer( + OutputNode_2, + "OutputNode_b" + ); + graph->add(OutputNode_b); + + + + /*** OUTPUTNODE_W ***/ + std::shared_ptr<Aidge::Node> OutputNode_w = + Aidge::Producer( + OutputNode_1, + "OutputNode_w" + ); + graph->add(OutputNode_w); + + + + /*** OUTPUTNODE ***/ + std::shared_ptr<Aidge::Node> OutputNode = + Aidge::FC( + _OUTPUTNODE_IN_CHANNELS, + _OUTPUTNODE_OUT_CHANNELS, + "OutputNode" + ); + + Relu2->addChild(OutputNode, 0, 0); + OutputNode_w->addChild(OutputNode, 0, 1); + OutputNode_b->addChild(OutputNode, 0, 2); + + graph->add(OutputNode); + + + + return graph; +} diff --git a/aidge_core/unit_tests/dummy_export/version.txt b/aidge_core/unit_tests/dummy_export/version.txt new file mode 100644 index 000000000..77d6f4ca2 --- /dev/null +++ b/aidge_core/unit_tests/dummy_export/version.txt @@ -0,0 +1 @@ +0.0.0 diff --git a/unit_tests/Testing/Temporary/CTestCostData.txt b/unit_tests/Testing/Temporary/CTestCostData.txt new file mode 100644 index 000000000..ed97d539c --- /dev/null +++ b/unit_tests/Testing/Temporary/CTestCostData.txt @@ -0,0 +1 @@ +--- diff --git a/unit_tests/Testing/Temporary/LastTest.log b/unit_tests/Testing/Temporary/LastTest.log new file mode 100644 index 000000000..0a73a46cc --- /dev/null +++ b/unit_tests/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: Nov 29 13:22 UTC +---------------------------------------------------------- +End testing: Nov 29 13:22 UTC diff --git a/unit_tests/operator/Testing/Temporary/CTestCostData.txt b/unit_tests/operator/Testing/Temporary/CTestCostData.txt new file mode 100644 index 000000000..ed97d539c --- /dev/null +++ b/unit_tests/operator/Testing/Temporary/CTestCostData.txt @@ -0,0 +1 @@ +--- diff --git a/unit_tests/operator/Testing/Temporary/LastTest.log b/unit_tests/operator/Testing/Temporary/LastTest.log new file mode 100644 index 000000000..fc82d020e --- /dev/null +++ b/unit_tests/operator/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: Nov 27 09:25 UTC +---------------------------------------------------------- +End testing: Nov 27 09:25 UTC -- GitLab From b7ad65bda0103ca1b6bb1a1072d1e6fb4b77574f Mon Sep 17 00:00:00 2001 From: bhalimi <benjamin.halimi@cea.fr> Date: Fri, 17 Jan 2025 13:30:15 +0000 Subject: [PATCH 092/157] add pybind_Abs --- python_binding/operator/pybind_Abs.cpp | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 python_binding/operator/pybind_Abs.cpp diff --git a/python_binding/operator/pybind_Abs.cpp b/python_binding/operator/pybind_Abs.cpp new file mode 100644 index 000000000..6c7cd6bae --- /dev/null +++ b/python_binding/operator/pybind_Abs.cpp @@ -0,0 +1,31 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <pybind11/pybind11.h> + +#include "aidge/data/Tensor.hpp" +#include "aidge/operator/Abs.hpp" +#include "aidge/operator/OperatorTensor.hpp" + +namespace py = pybind11; +namespace Aidge { + +void init_Abs(py::module& m) { + py::class_<Abs_Op, std::shared_ptr<Abs_Op>, OperatorTensor>(m, "AbsOp", py::multiple_inheritance()) + .def(py::init<>()) + .def_static("get_inputs_name", &Abs_Op::getInputsName) + .def_static("get_outputs_name", &Abs_Op::getOutputsName) + .def_readonly_static("Type", &Abs_Op::Type); + declare_registrable<Abs_Op>(m, "AbsOp"); + + m.def("Abs", &Abs, py::arg("name") = ""); +} +} // namespace Aidge -- GitLab From c776851cac468a211f2d10656b1f14b380749714 Mon Sep 17 00:00:00 2001 From: bhalimi <benjamin.halimi@cea.fr> Date: Fri, 17 Jan 2025 14:21:56 +0000 Subject: [PATCH 093/157] Revert "add pybind_Abs" This reverts commit 8c8ebb2b8cd778f5daedea5d20d2a9ef52da88fc. --- python_binding/operator/pybind_Abs.cpp | 31 -------------------------- 1 file changed, 31 deletions(-) delete mode 100644 python_binding/operator/pybind_Abs.cpp diff --git a/python_binding/operator/pybind_Abs.cpp b/python_binding/operator/pybind_Abs.cpp deleted file mode 100644 index 6c7cd6bae..000000000 --- a/python_binding/operator/pybind_Abs.cpp +++ /dev/null @@ -1,31 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <pybind11/pybind11.h> - -#include "aidge/data/Tensor.hpp" -#include "aidge/operator/Abs.hpp" -#include "aidge/operator/OperatorTensor.hpp" - -namespace py = pybind11; -namespace Aidge { - -void init_Abs(py::module& m) { - py::class_<Abs_Op, std::shared_ptr<Abs_Op>, OperatorTensor>(m, "AbsOp", py::multiple_inheritance()) - .def(py::init<>()) - .def_static("get_inputs_name", &Abs_Op::getInputsName) - .def_static("get_outputs_name", &Abs_Op::getOutputsName) - .def_readonly_static("Type", &Abs_Op::Type); - declare_registrable<Abs_Op>(m, "AbsOp"); - - m.def("Abs", &Abs, py::arg("name") = ""); -} -} // namespace Aidge -- GitLab From 4baf738468b40f66ae5481b3e09f6ce2f142e7af Mon Sep 17 00:00:00 2001 From: bhalimi <benjamin.halimi@cea.fr> Date: Fri, 17 Jan 2025 14:22:10 +0000 Subject: [PATCH 094/157] Revert "add pybind for abs and mean" This reverts commit 9329b770580e2748fecb7679cc09bbc8431f24bb. --- Testing/Temporary/CTestCostData.txt | 1 - Testing/Temporary/LastTest.log | 3 - Testing/Testing/Temporary/CTestCostData.txt | 1 - Testing/Testing/Temporary/LastTest.log | 3 - .../unit_tests/dummy_export/CMakeLists.txt | 155 ------------ aidge_core/unit_tests/dummy_export/README.md | 5 - .../__cache_export/CMakeLists.txt | 155 ------------ .../dummy_export/__cache_export/README.md | 5 - .../cmake/PybindModuleCreation.cmake | 22 -- .../dummy_export-config.cmake.in | 8 - .../__cache_export/include/attributes/FC1.hpp | 7 - .../include/attributes/FC1_b.hpp | 11 - .../include/attributes/FC1_w.hpp | 44 ---- .../__cache_export/include/attributes/FC2.hpp | 7 - .../include/attributes/FC2_b.hpp | 11 - .../include/attributes/FC2_w.hpp | 28 --- .../include/attributes/InputNode.hpp | 7 - .../include/attributes/InputNode_b.hpp | 11 - .../include/attributes/InputNode_w.hpp | 76 ------ .../include/attributes/OutputNode.hpp | 7 - .../include/attributes/OutputNode_b.hpp | 11 - .../include/attributes/OutputNode_w.hpp | 22 -- .../__cache_export/include/dnn.hpp | 17 -- .../dummy_export/__cache_export/main.cpp | 23 -- .../__cache_export/project_name.txt | 1 - .../__cache_export/python_binding/pybind.cpp | 14 -- .../dummy_export/__cache_export/src/dnn.cpp | 232 ------------------ .../dummy_export/__cache_export/version.txt | 1 - .../cmake/PybindModuleCreation.cmake | 22 -- .../dummy_export/dummy_export-config.cmake.in | 8 - .../dummy_export/include/attributes/FC1.hpp | 7 - .../dummy_export/include/attributes/FC1_b.hpp | 11 - .../dummy_export/include/attributes/FC1_w.hpp | 44 ---- .../dummy_export/include/attributes/FC2.hpp | 7 - .../dummy_export/include/attributes/FC2_b.hpp | 11 - .../dummy_export/include/attributes/FC2_w.hpp | 28 --- .../include/attributes/InputNode.hpp | 7 - .../include/attributes/InputNode_b.hpp | 11 - .../include/attributes/InputNode_w.hpp | 76 ------ .../include/attributes/OutputNode.hpp | 7 - .../include/attributes/OutputNode_b.hpp | 11 - .../include/attributes/OutputNode_w.hpp | 22 -- .../unit_tests/dummy_export/include/dnn.hpp | 17 -- aidge_core/unit_tests/dummy_export/main.cpp | 23 -- .../unit_tests/dummy_export/project_name.txt | 1 - .../dummy_export/python_binding/pybind.cpp | 14 -- .../unit_tests/dummy_export/src/dnn.cpp | 232 ------------------ .../unit_tests/dummy_export/version.txt | 1 - .../Testing/Temporary/CTestCostData.txt | 1 - unit_tests/Testing/Temporary/LastTest.log | 3 - .../Testing/Temporary/CTestCostData.txt | 1 - .../operator/Testing/Temporary/LastTest.log | 3 - 52 files changed, 1456 deletions(-) delete mode 100644 Testing/Temporary/CTestCostData.txt delete mode 100644 Testing/Temporary/LastTest.log delete mode 100644 Testing/Testing/Temporary/CTestCostData.txt delete mode 100644 Testing/Testing/Temporary/LastTest.log delete mode 100644 aidge_core/unit_tests/dummy_export/CMakeLists.txt delete mode 100644 aidge_core/unit_tests/dummy_export/README.md delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/CMakeLists.txt delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/README.md delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/cmake/PybindModuleCreation.cmake delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/dummy_export-config.cmake.in delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_b.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_w.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_b.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_w.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_b.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_w.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_b.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_w.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/include/dnn.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/main.cpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/project_name.txt delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/python_binding/pybind.cpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/src/dnn.cpp delete mode 100644 aidge_core/unit_tests/dummy_export/__cache_export/version.txt delete mode 100644 aidge_core/unit_tests/dummy_export/cmake/PybindModuleCreation.cmake delete mode 100644 aidge_core/unit_tests/dummy_export/dummy_export-config.cmake.in delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC1.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC1_b.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC1_w.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC2.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC2_b.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/FC2_w.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/InputNode.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/InputNode_b.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/InputNode_w.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/OutputNode.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_b.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_w.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/include/dnn.hpp delete mode 100644 aidge_core/unit_tests/dummy_export/main.cpp delete mode 100644 aidge_core/unit_tests/dummy_export/project_name.txt delete mode 100644 aidge_core/unit_tests/dummy_export/python_binding/pybind.cpp delete mode 100644 aidge_core/unit_tests/dummy_export/src/dnn.cpp delete mode 100644 aidge_core/unit_tests/dummy_export/version.txt delete mode 100644 unit_tests/Testing/Temporary/CTestCostData.txt delete mode 100644 unit_tests/Testing/Temporary/LastTest.log delete mode 100644 unit_tests/operator/Testing/Temporary/CTestCostData.txt delete mode 100644 unit_tests/operator/Testing/Temporary/LastTest.log diff --git a/Testing/Temporary/CTestCostData.txt b/Testing/Temporary/CTestCostData.txt deleted file mode 100644 index ed97d539c..000000000 --- a/Testing/Temporary/CTestCostData.txt +++ /dev/null @@ -1 +0,0 @@ ---- diff --git a/Testing/Temporary/LastTest.log b/Testing/Temporary/LastTest.log deleted file mode 100644 index 0a73a46cc..000000000 --- a/Testing/Temporary/LastTest.log +++ /dev/null @@ -1,3 +0,0 @@ -Start testing: Nov 29 13:22 UTC ----------------------------------------------------------- -End testing: Nov 29 13:22 UTC diff --git a/Testing/Testing/Temporary/CTestCostData.txt b/Testing/Testing/Temporary/CTestCostData.txt deleted file mode 100644 index ed97d539c..000000000 --- a/Testing/Testing/Temporary/CTestCostData.txt +++ /dev/null @@ -1 +0,0 @@ ---- diff --git a/Testing/Testing/Temporary/LastTest.log b/Testing/Testing/Temporary/LastTest.log deleted file mode 100644 index 0a73a46cc..000000000 --- a/Testing/Testing/Temporary/LastTest.log +++ /dev/null @@ -1,3 +0,0 @@ -Start testing: Nov 29 13:22 UTC ----------------------------------------------------------- -End testing: Nov 29 13:22 UTC diff --git a/aidge_core/unit_tests/dummy_export/CMakeLists.txt b/aidge_core/unit_tests/dummy_export/CMakeLists.txt deleted file mode 100644 index d7fe26d9c..000000000 --- a/aidge_core/unit_tests/dummy_export/CMakeLists.txt +++ /dev/null @@ -1,155 +0,0 @@ -cmake_minimum_required(VERSION 3.18) -set(CXX_STANDARD 14) - -file(STRINGS "${CMAKE_SOURCE_DIR}/project_name.txt" project_name) -file(STRINGS "${CMAKE_SOURCE_DIR}/version.txt" version) - -project(${project_name} - VERSION ${version} - DESCRIPTION "Export of aidge" - LANGUAGES CXX) - -message(STATUS "Project name: ${CMAKE_PROJECT_NAME}") -message(STATUS "Project version: ${version}") - -# Note : project name is ${CMAKE_PROJECT_NAME} and python module name is also ${CMAKE_PROJECT_NAME} -set(module_name _${CMAKE_PROJECT_NAME}) # target name - -############################################## -# Define options -option(PYBIND "python binding" ON) -option(STANDALONE "Build standalone executable" ON) -option(WERROR "Warning as error" OFF) -option(TEST "Enable tests" OFF) -option(COVERAGE "Enable coverage" OFF) -option(ENABLE_ASAN "Enable ASan (AddressSanitizer) for runtime analysis of memory use (over/underflow, memory leak, ...)" OFF) - -############################################## -# Import utils CMakeLists -set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") - -if(CMAKE_COMPILER_IS_GNUCXX AND COVERAGE) - Include(CodeCoverage) -endif() - -############################################## -# FIND Dependencies -if(NOT $ENV{AIDGE_INSTALL} STREQUAL "") - set(CMAKE_INSTALL_PREFIX $ENV{AIDGE_INSTALL}) - list(APPEND CMAKE_PREFIX_PATH $ENV{AIDGE_INSTALL}) - message(WARNING "Env var AIDGE_INSTALL detected : $ENV{AIDGE_INSTALL}. Set CMAKE_INSTALL_PREFIX to AIDGE_INSTALL & added to CMAKE_PREFIX_PATH" - "\n\tCMAKE_INSTALL_PREFIX = ${CMAKE_INSTALL_PREFIX}" - "\n\tCMAKE_PREFIX_PATH = ${CMAKE_PREFIX_PATH}") -endif() -find_package(aidge_core REQUIRED) -# find_package(aidge_backend_cpu REQUIRED) # example if you want to add aidge_backend_cpu as dependency to your export - -############################################## -# Create target and set properties -file(GLOB_RECURSE src_files "src/*.cpp") -file(GLOB_RECURSE inc_files "include/*.hpp") - -add_library(${module_name} ${src_files} ${inc_files}) - -target_link_libraries(${module_name} - PUBLIC - _aidge_core # _ is added because we link the exported target and not the project - # _aidge_backend_cpu # example if you want to add aidge_backend_cpu as dependency to your export -) - -#Set target properties -set_property(TARGET ${module_name} PROPERTY POSITION_INDEPENDENT_CODE ON) - -# PYTHON BINDING -if (PYBIND) - include(PybindModuleCreation) - generate_python_binding(${CMAKE_PROJECT_NAME} ${module_name}) -endif() - -if( ${ENABLE_ASAN} ) - message("Building ${module_name}Â with ASAN.") - set(SANITIZE_FLAGS -fsanitize=address -fno-omit-frame-pointer) - target_link_libraries(${module_name} - PUBLIC - -fsanitize=address - ) - target_compile_options(${module_name} - PRIVATE - ${SANITIZE_FLAGS} - ) -endif() - -target_include_directories(${module_name} - PUBLIC - $<INSTALL_INTERFACE:include> - $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> - PRIVATE - ${CMAKE_CURRENT_SOURCE_DIR}/src -) - -target_compile_features(${module_name} PRIVATE cxx_std_14) - -target_compile_options(${module_name} PRIVATE - $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: - -Wall -Wextra -Wold-style-cast -Winline -pedantic -Werror=narrowing -Wshadow $<$<BOOL:${WERROR}>:-Werror>>) -target_compile_options(${module_name} PRIVATE - $<$<CXX_COMPILER_ID:MSVC>: - /W4>) - -if(CMAKE_COMPILER_IS_GNUCXX AND COVERAGE) - append_coverage_compiler_flags() -endif() - -############################################## -# Installation instructions -include(GNUInstallDirs) -set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/${CMAKE_PROJECT_NAME}) - -install(TARGETS ${module_name} EXPORT ${CMAKE_PROJECT_NAME}-targets - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} - ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} - RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} -) -install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) - -#Export the targets to a script -install(EXPORT ${CMAKE_PROJECT_NAME}-targets - FILE "${CMAKE_PROJECT_NAME}-targets.cmake" - DESTINATION ${INSTALL_CONFIGDIR} - COMPONENT ${module_name} -) - -#Create a ConfigVersion.cmake file -include(CMakePackageConfigHelpers) -write_basic_package_version_file( - "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config-version.cmake" - VERSION ${version} - COMPATIBILITY AnyNewerVersion -) - -configure_package_config_file("${CMAKE_PROJECT_NAME}-config.cmake.in" - "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake" - INSTALL_DESTINATION ${INSTALL_CONFIGDIR} -) - -#Install the config, configversion and custom find modules -install(FILES - "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake" - "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config-version.cmake" - DESTINATION ${INSTALL_CONFIGDIR} -) - -############################################## -## Exporting from the build tree -message(STATUS "Exporting created targets to use them in another build") -export(EXPORT ${CMAKE_PROJECT_NAME}-targets - FILE "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-targets.cmake") - -if(STANDALONE) - if(AIDGE_REQUIRES_PYTHON AND NOT AIDGE_PYTHON_HAS_EMBED) - message(WARNING "Skipping compilation of standalone executable: missing Python embedded interpreter") - else() - add_executable(main main.cpp) - target_link_libraries(main PRIVATE ${module_name}) - endif() -endif() diff --git a/aidge_core/unit_tests/dummy_export/README.md b/aidge_core/unit_tests/dummy_export/README.md deleted file mode 100644 index 1ce48d527..000000000 --- a/aidge_core/unit_tests/dummy_export/README.md +++ /dev/null @@ -1,5 +0,0 @@ -To compile: - -> mkdir build && cd build -> cmake -DCMAKE_INSTALL_PREFIX:PATH=/data1/is156025/cm264821/anaconda3/envs/aidge_demo/lib/libAidge .. -> make all install diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/CMakeLists.txt b/aidge_core/unit_tests/dummy_export/__cache_export/CMakeLists.txt deleted file mode 100644 index d7fe26d9c..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/CMakeLists.txt +++ /dev/null @@ -1,155 +0,0 @@ -cmake_minimum_required(VERSION 3.18) -set(CXX_STANDARD 14) - -file(STRINGS "${CMAKE_SOURCE_DIR}/project_name.txt" project_name) -file(STRINGS "${CMAKE_SOURCE_DIR}/version.txt" version) - -project(${project_name} - VERSION ${version} - DESCRIPTION "Export of aidge" - LANGUAGES CXX) - -message(STATUS "Project name: ${CMAKE_PROJECT_NAME}") -message(STATUS "Project version: ${version}") - -# Note : project name is ${CMAKE_PROJECT_NAME} and python module name is also ${CMAKE_PROJECT_NAME} -set(module_name _${CMAKE_PROJECT_NAME}) # target name - -############################################## -# Define options -option(PYBIND "python binding" ON) -option(STANDALONE "Build standalone executable" ON) -option(WERROR "Warning as error" OFF) -option(TEST "Enable tests" OFF) -option(COVERAGE "Enable coverage" OFF) -option(ENABLE_ASAN "Enable ASan (AddressSanitizer) for runtime analysis of memory use (over/underflow, memory leak, ...)" OFF) - -############################################## -# Import utils CMakeLists -set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") - -if(CMAKE_COMPILER_IS_GNUCXX AND COVERAGE) - Include(CodeCoverage) -endif() - -############################################## -# FIND Dependencies -if(NOT $ENV{AIDGE_INSTALL} STREQUAL "") - set(CMAKE_INSTALL_PREFIX $ENV{AIDGE_INSTALL}) - list(APPEND CMAKE_PREFIX_PATH $ENV{AIDGE_INSTALL}) - message(WARNING "Env var AIDGE_INSTALL detected : $ENV{AIDGE_INSTALL}. Set CMAKE_INSTALL_PREFIX to AIDGE_INSTALL & added to CMAKE_PREFIX_PATH" - "\n\tCMAKE_INSTALL_PREFIX = ${CMAKE_INSTALL_PREFIX}" - "\n\tCMAKE_PREFIX_PATH = ${CMAKE_PREFIX_PATH}") -endif() -find_package(aidge_core REQUIRED) -# find_package(aidge_backend_cpu REQUIRED) # example if you want to add aidge_backend_cpu as dependency to your export - -############################################## -# Create target and set properties -file(GLOB_RECURSE src_files "src/*.cpp") -file(GLOB_RECURSE inc_files "include/*.hpp") - -add_library(${module_name} ${src_files} ${inc_files}) - -target_link_libraries(${module_name} - PUBLIC - _aidge_core # _ is added because we link the exported target and not the project - # _aidge_backend_cpu # example if you want to add aidge_backend_cpu as dependency to your export -) - -#Set target properties -set_property(TARGET ${module_name} PROPERTY POSITION_INDEPENDENT_CODE ON) - -# PYTHON BINDING -if (PYBIND) - include(PybindModuleCreation) - generate_python_binding(${CMAKE_PROJECT_NAME} ${module_name}) -endif() - -if( ${ENABLE_ASAN} ) - message("Building ${module_name}Â with ASAN.") - set(SANITIZE_FLAGS -fsanitize=address -fno-omit-frame-pointer) - target_link_libraries(${module_name} - PUBLIC - -fsanitize=address - ) - target_compile_options(${module_name} - PRIVATE - ${SANITIZE_FLAGS} - ) -endif() - -target_include_directories(${module_name} - PUBLIC - $<INSTALL_INTERFACE:include> - $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> - PRIVATE - ${CMAKE_CURRENT_SOURCE_DIR}/src -) - -target_compile_features(${module_name} PRIVATE cxx_std_14) - -target_compile_options(${module_name} PRIVATE - $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: - -Wall -Wextra -Wold-style-cast -Winline -pedantic -Werror=narrowing -Wshadow $<$<BOOL:${WERROR}>:-Werror>>) -target_compile_options(${module_name} PRIVATE - $<$<CXX_COMPILER_ID:MSVC>: - /W4>) - -if(CMAKE_COMPILER_IS_GNUCXX AND COVERAGE) - append_coverage_compiler_flags() -endif() - -############################################## -# Installation instructions -include(GNUInstallDirs) -set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/${CMAKE_PROJECT_NAME}) - -install(TARGETS ${module_name} EXPORT ${CMAKE_PROJECT_NAME}-targets - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} - ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} - RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} -) -install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) - -#Export the targets to a script -install(EXPORT ${CMAKE_PROJECT_NAME}-targets - FILE "${CMAKE_PROJECT_NAME}-targets.cmake" - DESTINATION ${INSTALL_CONFIGDIR} - COMPONENT ${module_name} -) - -#Create a ConfigVersion.cmake file -include(CMakePackageConfigHelpers) -write_basic_package_version_file( - "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config-version.cmake" - VERSION ${version} - COMPATIBILITY AnyNewerVersion -) - -configure_package_config_file("${CMAKE_PROJECT_NAME}-config.cmake.in" - "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake" - INSTALL_DESTINATION ${INSTALL_CONFIGDIR} -) - -#Install the config, configversion and custom find modules -install(FILES - "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake" - "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config-version.cmake" - DESTINATION ${INSTALL_CONFIGDIR} -) - -############################################## -## Exporting from the build tree -message(STATUS "Exporting created targets to use them in another build") -export(EXPORT ${CMAKE_PROJECT_NAME}-targets - FILE "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-targets.cmake") - -if(STANDALONE) - if(AIDGE_REQUIRES_PYTHON AND NOT AIDGE_PYTHON_HAS_EMBED) - message(WARNING "Skipping compilation of standalone executable: missing Python embedded interpreter") - else() - add_executable(main main.cpp) - target_link_libraries(main PRIVATE ${module_name}) - endif() -endif() diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/README.md b/aidge_core/unit_tests/dummy_export/__cache_export/README.md deleted file mode 100644 index 1ce48d527..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/README.md +++ /dev/null @@ -1,5 +0,0 @@ -To compile: - -> mkdir build && cd build -> cmake -DCMAKE_INSTALL_PREFIX:PATH=/data1/is156025/cm264821/anaconda3/envs/aidge_demo/lib/libAidge .. -> make all install diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/cmake/PybindModuleCreation.cmake b/aidge_core/unit_tests/dummy_export/__cache_export/cmake/PybindModuleCreation.cmake deleted file mode 100644 index 217a48351..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/cmake/PybindModuleCreation.cmake +++ /dev/null @@ -1,22 +0,0 @@ -function(generate_python_binding name target_to_bind) - - find_package(Python COMPONENTS Interpreter Development.Module) - - Include(FetchContent) - FetchContent_Declare( - PyBind11 - GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.10.4 # or a later release - ) - FetchContent_MakeAvailable(PyBind11) - - message(STATUS "Creating binding for module ${name}") - file(GLOB_RECURSE pybind_src_files "python_binding/*.cpp") - - pybind11_add_module(${name} MODULE ${pybind_src_files} "NO_EXTRAS") # NO EXTRA recquired for pip install - target_include_directories(${name} PRIVATE "python_binding") - - # Link target library to bind - target_link_libraries(${name} PRIVATE ${target_to_bind}) - -endfunction() diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/dummy_export-config.cmake.in b/aidge_core/unit_tests/dummy_export/__cache_export/dummy_export-config.cmake.in deleted file mode 100644 index f0be5e076..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/dummy_export-config.cmake.in +++ /dev/null @@ -1,8 +0,0 @@ -@PACKAGE_INIT@ - -include(CMakeFindDependencyMacro) -find_dependency(aidge_core) - -include(${CMAKE_CURRENT_LIST_DIR}/aidge_backend_cpu-config-version.cmake) - -include(${CMAKE_CURRENT_LIST_DIR}/aidge_backend_cpu-targets.cmake) diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1.hpp deleted file mode 100644 index db45424cb..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1.hpp +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef EXPORT_ATTRIBUTES_FC1_H -#define EXPORT_ATTRIBUTES_FC1_H - -#define _FC1_IN_CHANNELS 64 -#define _FC1_OUT_CHANNELS 32 - -#endif /* EXPORT_ATTRIBUTES_FC1_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_b.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_b.hpp deleted file mode 100644 index 7bbef95ae..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_b.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef EXPORT_PARAMETERS_FC1_B_H -#define EXPORT_PARAMETERS_FC1_B_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> FC1_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 32> { -{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } -}); - -#endif /* EXPORT_PARAMETERS_FC1_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_w.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_w.hpp deleted file mode 100644 index ccdc12470..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC1_w.hpp +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef EXPORT_PARAMETERS_FC1_W_H -#define EXPORT_PARAMETERS_FC1_W_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> FC1_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 32, 64> { -{ - { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164, 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, - { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245, 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, - { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219, -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365}, - { 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620, -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814}, - { -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116, -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061}, - { 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394, -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534}, - { 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535, -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270}, - { -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022, -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879}, - { -0.483628, 0.272165, -0.921403, -0.867794, 0.253838, -1.017495, -0.035984, -0.680159, -0.116601, -1.917364, -0.293144, -1.680917, 1.482456, -2.643867, -0.589814, 1.864317, 0.810974, 0.449891, -0.523071, -1.701221, 1.129147, -0.414783, 0.039269, -1.340263, 0.165569, -0.458461, -0.978111, 0.656720, 0.531054, 0.426182, 0.701776, 1.073439, -0.749516, -0.560629, -0.634230, -0.186059, -0.122258, 0.021843, 0.543000, -0.314648, -0.946935, -0.333649, 0.596433, -0.647178, 0.790704, -0.074659, -0.043766, 1.429068, -0.058342, -0.809171, 1.030495, 0.050716, -0.116684, -1.944978, -1.793352, 1.627739, -0.369663, 2.177690, 1.651580, -2.036985, -1.240169, 0.036523, -1.150051, 0.116815}, - { 1.104999, 1.341058, 0.309679, -1.755930, -0.378678, -0.806254, -1.054984, -0.320765, -0.266736, -0.225193, 0.169121, 0.865690, -0.885389, 0.095123, 0.870764, -0.091391, 1.401193, -0.193103, 0.621627, 0.369497, -0.816600, -0.202823, -0.159167, 0.872668, -0.273115, 1.938011, 0.684697, 1.704309, 1.204039, -0.959246, 1.359703, 0.799502, 0.776908, -0.756584, -0.640936, 0.990894, 0.256858, -3.137142, 0.545601, 0.109409, 0.181050, 1.120293, -0.914028, -0.097133, 0.133803, 0.496900, 1.070259, 0.223329, -0.368285, 0.345049, 1.432678, 1.382178, 0.558631, -0.126281, -1.479764, -2.136274, 0.879013, -0.931591, 0.460165, 0.663047, -0.782686, -2.017072, -1.219782, -1.615018}, - { 0.023152, -0.351595, 0.384548, -0.350487, 0.861079, -2.343885, 0.206722, 0.492284, 0.227113, -0.832889, -0.669958, -0.069160, -0.609277, -0.255370, -0.752728, -0.765413, 1.094080, 0.368862, 0.024828, -0.518220, 0.009554, -0.353964, 1.897386, -0.901690, 0.077136, -0.747170, 0.407625, -1.418082, 0.823818, -0.750032, -0.318462, -0.949275, -0.005721, -0.311060, -1.375086, 0.638032, -0.070481, 0.265967, -1.677426, -0.803207, 0.331928, -0.337461, 1.145064, 0.517522, 2.248859, -0.155701, -0.185320, -0.430223, 0.633950, 0.594881, -0.373053, -0.183769, 0.781241, -1.100458, -1.127900, 1.536747, 0.694964, -1.317671, 0.552416, 0.214635, 1.172117, 0.057319, -0.083945, -2.744316}, - { -2.083668, 1.579024, 0.846874, -0.559092, 1.025974, 0.889658, -1.337327, -2.154229, 0.283269, -0.084246, -0.448027, 1.076064, -0.171827, 0.712631, -0.291771, -1.532148, 0.525627, -0.182083, -0.584263, 0.758026, -0.011926, 0.048968, -0.683809, -0.367121, -0.808110, -0.745193, -0.025946, -0.974672, -0.667272, -1.253634, -0.933169, 1.543063, -0.558194, 0.333470, 0.300683, 0.875321, -0.650058, -0.402874, -1.479110, -1.422508, -1.490082, -1.066710, 0.818719, 1.130872, 0.726068, -0.644154, 0.015556, -1.297712, -1.807793, -0.449898, 0.678534, -0.343751, -0.438977, 1.005177, 0.789181, -0.868195, 2.963583, 0.127910, 0.762864, 2.106842, 0.059183, 1.106624, -0.173846, 0.506085}, - { -0.803235, 0.456489, 1.792648, -0.413096, 0.174623, -0.670578, 1.004736, -1.211046, -0.177172, -1.173558, 1.704121, -0.717132, -0.315196, -0.955144, -0.844640, 0.219873, 0.439474, -0.111900, 0.382651, 0.037409, -0.715340, -0.458230, -1.518173, 0.580286, -0.180067, 0.251145, 1.541854, -1.799514, 0.415876, 0.045524, -0.935430, -0.941019, 0.476378, -0.045153, -0.346679, -0.071810, 0.468796, -0.303942, 1.868755, 0.052552, -1.115326, -0.951675, 0.823079, -0.264655, -0.460295, 0.024275, 0.681858, 1.360035, -1.231762, -1.203111, -0.181563, 0.198488, -0.813774, -1.178844, 0.972454, -0.134574, 0.030472, -0.967580, 0.152757, -2.177683, -0.678582, 1.439619, 0.329668, 1.977801}, - { 0.547752, 0.150742, 0.597613, 0.320251, 0.629068, -1.048041, 1.226918, -1.397015, 0.530945, 1.934914, -0.360577, 0.601554, -1.164239, 0.144575, 0.725861, -0.442685, 0.083200, -0.289393, -1.016526, 1.067162, -0.018115, -0.224101, -0.241866, -0.064766, 2.522637, 1.326687, -0.214645, 0.652540, 0.005862, -0.888118, -1.111310, -0.301777, -0.060108, -0.383830, 0.692486, -0.268334, 0.663172, -1.008340, -1.682795, 0.617490, 0.376519, 1.881652, 1.198976, 0.919806, -0.134369, 0.542711, -0.636402, 2.075232, 0.367750, 0.078205, 1.175514, 0.312489, -0.545571, 1.806641, 0.572128, 0.969595, 2.196302, 0.144951, -0.069890, -0.024643, 0.096254, -0.913089, 0.207929, -0.024540}, - { -2.364928, 0.403653, 0.957075, 0.605313, -0.084031, -0.881650, 0.617897, -0.514700, 1.021071, -2.341326, 0.867535, 0.276200, -1.536776, 1.063557, -0.265884, -1.019689, 0.034769, 0.374245, 0.308205, 0.941602, -2.383936, 0.053763, 0.080351, 0.805516, -1.034883, 0.112969, 0.225962, 0.529344, -0.533202, 0.826293, -0.530990, -0.941042, -1.409687, -0.616595, 0.083008, 0.597792, 0.564483, -0.277788, 0.275536, -1.167859, 0.234086, 0.923334, -1.550176, -0.317221, 0.167047, 0.842336, -0.197037, -0.189047, -1.258022, 1.233136, 2.043196, -0.972316, -0.211159, -0.644789, 0.550668, 0.263230, 0.510620, -0.340782, -0.076202, -0.532805, 0.028492, -0.711909, -0.041329, -0.716095}, - { -0.438745, 1.613258, 1.203239, 0.964917, 2.008562, 2.526586, -1.076117, -1.172786, 1.202410, -1.702984, 2.141656, -0.421657, 0.506291, -1.005197, -1.210642, -1.006717, -1.024502, 0.616641, -1.584712, 0.891012, -2.477347, -0.572187, 0.864046, -1.402610, 0.412339, -0.276108, -2.752150, 0.592655, 0.632535, -0.195088, 2.281385, -1.077261, -0.790374, -1.883068, 0.079064, 0.400938, -0.359422, -0.905535, 0.275971, -0.708639, 1.268833, -1.304649, 1.220814, 0.345417, -1.035277, 1.694809, -0.453738, -0.100811, -0.711486, -2.032043, 0.247771, 0.125351, 1.414129, 1.130891, -0.594405, 0.797592, 0.053162, 0.395181, -0.421787, 0.288705, -1.071319, 0.932462, -0.609468, -0.239886}, - { 0.426226, -0.566084, -0.555236, -0.395055, -1.607937, -0.454888, 1.086999, 0.064433, -0.630807, 0.537331, -0.079178, 0.544384, -0.345341, -0.755680, 0.194209, -0.915100, 0.664959, 0.136650, 0.145284, 0.658129, 1.353991, -0.482921, -1.267343, -0.525734, 0.427054, -0.567577, -0.977804, 0.581563, 0.731378, 0.287522, 2.394391, -0.044662, -1.842992, 1.271125, -0.347839, -0.222826, -0.068077, -0.131304, -2.144952, -2.350498, -0.053892, -1.022586, 0.598608, -3.063631, -0.889890, -0.169715, -0.043919, -1.031522, -0.314142, -1.721556, -1.423945, -0.517471, -0.617123, -0.140159, -0.793929, 0.361729, 0.918396, -0.399743, -0.736005, 1.568120, -1.300957, 1.526744, -0.297900, -0.062842}, - { -1.966952, -1.071676, 1.570217, 1.112780, 0.185776, -0.637180, 1.313317, 1.172860, -0.915400, 1.177792, -1.942183, 0.390201, 1.388212, -0.477988, -1.579742, -0.683059, 1.172021, -0.980434, 0.059954, -0.457660, -0.634426, 1.500102, 0.078013, -0.986448, -0.762938, 0.195547, 1.015367, 1.245432, -0.282828, 0.081046, 0.307498, -0.669810, 0.721569, 0.057625, 0.501820, -0.104848, 1.437235, 0.117299, -0.523084, -1.118009, 1.560399, 0.104631, 0.489168, 0.760339, 1.449355, -1.377321, -0.715611, -1.029579, 0.073359, -0.825450, -0.229307, -0.421830, -0.666367, -0.440156, 0.023840, -0.751700, -0.361373, 0.986500, 0.851569, 0.123599, 0.390027, 0.277061, 0.940906, -0.103239}, - { -0.445279, -0.919782, 0.639714, -0.902529, -1.874779, -1.719761, -1.893759, 0.269624, -0.578221, -0.202651, -0.392257, 1.412725, -0.629082, 1.413975, -0.064950, -0.204246, 0.975600, -0.282429, 0.352274, 0.795323, -0.966890, 0.600321, 0.459449, 1.495051, -0.693799, -2.130963, 2.241615, 0.016742, -1.380529, -0.693764, 0.788271, -2.084727, -0.605345, -0.393199, -1.431592, -0.019263, 0.154902, 2.003049, -0.505429, -0.279594, 1.178694, 0.081671, -0.253501, -0.928567, -0.470637, -0.599760, 0.105334, -0.558767, 0.306641, -1.247424, -1.136135, 0.388699, 0.240216, -0.539604, 0.748712, 1.514203, -0.053900, 0.146477, 1.415987, 0.035719, 0.852351, -0.505780, -2.203605, 1.287532}, - { -0.138672, 0.707916, 0.732445, 0.034828, 0.916650, -0.960419, -1.104703, -1.910655, 0.738577, -1.784924, 0.377324, 0.942214, -2.147115, -0.657372, 1.937143, -0.640029, 0.813896, -1.856751, 0.293933, 0.407355, 0.828903, -0.258431, 0.651304, 1.024936, -1.113730, 0.727588, 0.244997, -1.608019, 0.678481, -0.704592, 0.512401, -0.693952, 0.200313, 0.382440, -0.155662, -1.873614, -1.368903, -0.209850, -1.454814, -0.029855, 0.192369, 1.508715, -0.212503, 1.176330, -1.738381, -0.637968, 0.576972, 0.808788, 0.434982, -0.529857, -1.056989, -0.818170, -1.858517, -1.504275, -1.812055, 1.817686, -0.827064, -0.970820, 0.661065, 0.146447, 0.291060, -0.408877, 0.068819, 0.295079}, - { 0.663102, -0.166278, 0.770570, -1.142846, -0.806847, -0.730912, -0.447671, -0.015643, 0.619293, 0.202428, 1.665242, -0.790555, 1.475059, -0.881476, 0.390759, 1.258389, 0.324598, 1.822245, -0.058715, 0.600523, 1.136708, -1.679807, 0.288505, 0.744363, -0.611639, 1.300585, 1.380471, -1.169925, -0.777400, 2.193714, -0.475082, -0.242079, -0.336258, 0.471824, -0.658170, -1.063402, 0.417935, -1.189927, -1.703003, -1.247581, 0.862522, 0.934985, 1.998402, 0.301988, -1.167236, -0.040485, -0.692792, -0.118653, -0.085074, -0.157554, -0.597173, -1.148901, 0.479436, -1.334729, 0.435822, 0.728494, -0.447077, 0.395057, -0.449488, -0.970525, 1.506991, 0.701021, 0.331930, -0.781135}, - { 0.695741, 0.447304, 0.814847, 2.051350, -0.694026, -0.032321, 0.024414, -0.642007, 1.006013, -0.816746, -1.214119, -2.295536, 0.402007, -0.404793, 0.312364, -0.727692, 0.190903, 1.319342, 2.484523, -0.751330, 0.517379, 1.607649, -1.566784, -1.809135, 1.457683, -0.908496, -2.220334, 0.243166, 0.595011, 0.379217, 1.088163, 1.147452, 0.633369, 0.346038, 0.347236, -0.325225, 1.888308, -3.072945, 1.297680, -1.506335, 0.205380, 0.664307, 0.979495, -1.097883, -0.745897, -0.303797, -0.563891, 2.451149, 0.088773, 0.480402, -0.445841, -0.637341, -0.792031, -0.643933, 0.330410, 0.895335, 1.612401, -0.050137, -0.272140, 0.770629, 0.586540, -0.882999, 2.427387, 0.907571}, - { 1.020693, -0.572768, -1.022579, -0.633937, 1.401881, -0.251258, -1.633224, -0.467908, -1.371026, -0.969493, -0.825524, 0.605472, 0.183619, -1.847969, -1.878521, 1.177194, -0.710708, 0.769348, 0.636449, 1.019374, 1.298586, -1.192946, 0.573427, 0.357284, -0.348353, 0.929739, -0.583619, -0.075304, -2.041761, -0.158822, -0.179691, -3.007082, -1.240545, 0.256757, -0.732539, 0.213922, -3.068860, -0.118184, 1.317333, 0.639406, -1.638411, -0.856709, 0.936945, -0.200855, 0.592933, 0.934265, -0.506393, -2.097188, -0.686307, -0.841321, 0.113067, -0.659559, -0.225567, 0.278005, 0.185259, 0.321431, 1.222981, -1.271038, 0.553208, -0.798184, 0.259451, 0.417953, -0.004145, -0.694951}, - { -0.227405, -0.808163, 0.415147, 0.657638, 1.917061, 1.630171, -1.438121, -0.981062, 0.436875, 1.518751, 0.353086, -0.147144, 0.741269, 1.950936, 2.739364, 0.733956, -0.655084, -0.021943, 2.113906, 1.009407, 0.544371, 0.768170, -0.927640, 0.817491, 0.744725, 0.843117, -0.691860, -0.747689, 0.265487, 0.741109, -0.117990, -0.336553, 1.219656, -0.894997, 0.185234, -0.876471, 1.620419, -0.154121, -0.562478, 0.724263, 0.392547, -0.183256, -0.952905, -0.482131, 0.056012, 1.362304, -0.669158, -1.197868, 1.035019, 0.921444, 0.293030, -0.064290, 0.039056, -1.971230, -0.748615, 1.521501, -1.063615, -1.614336, 0.859108, 0.664434, 0.582681, 0.891293, -0.682233, -1.063711}, - { 1.022504, -1.064391, -0.238194, -1.287860, -1.136086, -0.599646, 2.083999, -0.251891, 1.635609, 0.142861, 0.311812, 1.059390, -0.011250, 0.999566, -0.376215, -0.275687, 1.269079, 0.547754, -0.021728, -1.003898, 1.155573, -0.133892, -0.820203, -0.399042, 0.011735, -0.004630, -1.624290, -3.214955, -0.302276, 0.162449, -0.165589, -0.324434, -0.858639, 1.214711, -0.088071, 0.692165, -2.298264, 0.109115, -0.152067, -1.400125, -0.798508, 0.065675, 0.840315, -0.535997, 0.989161, -0.666881, 0.422332, 2.565203, -0.348443, 0.292504, 0.955866, 1.009752, 2.071980, 1.349440, 0.222731, 0.470191, -2.257708, -0.124012, 0.316573, 0.914732, -0.237629, 1.217734, -0.413807, -1.373763}, - { -0.449355, 1.434391, -0.433576, -0.174979, 0.556502, -0.430827, 1.936127, 0.067958, -0.865320, 0.760247, -0.580725, 0.018868, -0.033391, 0.721388, 0.462043, -1.425273, 0.678470, 0.302006, 0.756002, 0.167077, 0.766390, -0.043001, 0.394925, 1.800999, 0.090170, -0.554982, -0.095026, 0.112222, -1.022792, 0.053468, -0.428305, -0.314164, 1.135005, 2.346780, 0.916245, -0.659896, -0.498403, -0.046144, -0.553811, -0.108004, 0.122168, -0.002586, 0.768014, -0.692886, -1.433461, 0.473015, -0.064335, 1.647390, 0.779012, -0.843045, 1.077922, 0.382245, -1.250200, 0.643778, 0.443442, 0.904600, 1.065371, -0.027124, -0.566289, -0.665816, -0.354307, -0.877381, -1.659182, -0.191498}, - { 0.162333, 0.498699, -0.395470, 1.743060, -1.321712, -0.936546, 0.274050, -0.159812, -0.355672, -1.676516, -0.600875, 0.034010, 0.114026, -1.140778, -0.492318, -1.908774, -1.484320, 1.081611, -0.934511, 1.064218, -1.353714, -0.314849, -0.105485, 2.178031, -0.409103, 0.933178, -2.048981, -0.298461, -2.592589, -0.488420, 0.835982, -1.151600, -0.189469, 1.288512, -0.699727, -0.624615, 0.460098, -0.202874, -0.346232, 0.267220, -0.158052, 1.825733, -0.869135, 0.123580, -0.991966, 0.750955, 1.741264, -0.764096, 0.010258, -0.192117, 0.027155, -0.265093, 1.277057, 0.043134, 0.090176, 0.277584, 0.372338, 0.948639, -0.836552, -0.589544, -0.745397, 0.382427, -0.232827, -0.892618}, - { 0.882999, -0.799134, 0.054087, 0.408222, 1.345659, 0.814261, -1.389691, 0.093555, -1.494835, -1.735067, -0.009094, 1.548697, -0.411162, -0.575812, 0.405427, 0.855615, 0.896117, 0.274727, -0.114478, -0.488888, 0.450323, 0.212904, -0.196283, 0.326608, -1.224662, 0.087978, 1.183714, -0.601534, -0.298352, -0.654938, 0.161118, 1.607924, -0.909086, 0.273687, -2.044743, 0.746246, -1.040757, -0.908652, -0.731929, -0.509273, 0.037672, 0.032804, 0.348324, 0.257188, 0.500905, 0.020275, 0.119230, -0.704439, -2.530083, -1.678277, -0.676852, -2.791788, 0.164539, -0.123641, -1.377383, -0.361288, -1.299663, -1.483092, 0.434668, -1.035801, 1.730346, -0.469573, 0.417228, 0.019251}, - { -0.072003, -0.198577, -0.569901, 0.935016, 0.314889, 0.034155, 0.430543, 0.898514, -0.164523, -0.214377, -0.653906, 0.201249, -1.524915, 0.701587, -0.324459, -0.917747, 1.476484, 0.469838, -0.381519, -1.311817, 0.720365, -0.310191, 1.025053, 1.889874, -0.966916, -0.871145, -0.383549, 1.698432, -0.956719, -1.682718, 1.309966, -0.491572, -0.018925, -1.528414, -1.133854, 1.203479, -1.144830, -0.353264, -0.932797, -0.802824, -1.524664, 0.034604, 1.323310, -0.947217, 0.987849, 0.756220, -0.057331, -0.199653, -1.039496, 0.408915, 0.663561, -1.235246, -0.877334, -1.213858, -0.555124, 0.169166, 0.415630, 0.262026, 1.884413, -1.458849, -0.292172, 0.790321, 1.437780, 0.489940}, - { 1.181251, -0.222410, -0.539658, 1.178497, -0.118368, 0.197939, -0.060905, -1.908541, -1.067447, -0.342585, 2.388675, -0.280412, 1.539183, 0.566500, 0.411963, 0.188143, 1.485968, -1.613623, 0.613969, -1.523564, 0.413067, -0.666758, -0.972755, 0.970277, 0.681646, 0.277529, 1.423990, -0.392149, 0.430833, -0.371182, 1.011777, -0.384506, -1.010383, 0.828187, 1.044202, 0.477430, 0.180531, 0.352829, -0.393196, 0.816648, 0.551559, 0.998243, 0.261241, 0.620633, 0.858043, -0.634724, 1.524376, -1.243713, 1.891966, 0.661525, 0.833298, 1.810750, 0.947274, -0.728384, -1.603718, -0.813418, 1.071318, -0.801694, -0.168650, 0.474758, 0.241127, 0.903248, 0.334180, 0.991895}, - { -1.314739, 0.998850, -0.519051, -2.067554, 1.896067, 0.501201, 0.556987, 0.641588, 0.272504, -0.742982, -0.470703, 1.240292, 1.259373, 0.565328, -0.720676, 0.004026, 0.600226, 0.090100, 0.011061, 0.369402, 0.011070, 0.233415, -0.282847, -0.903427, -0.816539, -0.871172, -2.226825, -1.740848, -0.339944, 0.215897, 0.323387, -0.254469, -0.515725, 0.073948, 0.563910, -0.653186, -0.306754, -0.546975, 1.372907, -0.970252, -0.487223, -0.078836, -1.081625, 1.588108, 1.202025, -2.122401, -0.237531, -0.685333, 0.173563, -0.576237, -0.297172, -1.762223, 0.460683, -1.041090, 0.097664, 0.414681, -0.378730, -0.441698, -0.569381, 1.072555, -1.684300, 0.737147, 0.341000, 0.049181}, - { -1.632741, 0.077021, -0.530017, -0.163073, -1.158130, 2.668592, -0.433849, 0.091581, 0.232981, -0.300411, 0.835452, -0.168550, 0.713216, 0.851907, -1.087314, 0.900005, -0.786708, -0.618744, 0.001694, -3.176547, 0.126415, 0.362694, 0.369459, 0.931487, -1.290275, -0.717392, -0.335578, 0.703348, 0.756063, 0.260056, 0.778826, -0.129166, 0.101717, -0.342590, -0.295437, 0.198471, -1.717762, 0.015128, -0.576792, 0.512532, 0.672616, 1.389580, -0.476444, 0.404700, -0.532910, -1.795952, 0.241228, 1.383689, -1.515232, 0.271979, -1.543068, -0.150854, -1.174402, 0.882491, 0.149071, -0.917308, -0.689293, -0.382830, -1.111705, -1.484126, -0.148355, -0.445174, -0.362349, -2.037557} -} -}); - -#endif /* EXPORT_PARAMETERS_FC1_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2.hpp deleted file mode 100644 index a2b18e037..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2.hpp +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef EXPORT_ATTRIBUTES_FC2_H -#define EXPORT_ATTRIBUTES_FC2_H - -#define _FC2_IN_CHANNELS 32 -#define _FC2_OUT_CHANNELS 16 - -#endif /* EXPORT_ATTRIBUTES_FC2_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_b.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_b.hpp deleted file mode 100644 index 6a2087cc8..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_b.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef EXPORT_PARAMETERS_FC2_B_H -#define EXPORT_PARAMETERS_FC2_B_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> FC2_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 16> { -{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } -}); - -#endif /* EXPORT_PARAMETERS_FC2_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_w.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_w.hpp deleted file mode 100644 index 07e90c19f..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/FC2_w.hpp +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef EXPORT_PARAMETERS_FC2_W_H -#define EXPORT_PARAMETERS_FC2_W_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> FC2_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 16, 32> { -{ - { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164}, - { 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, - { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245}, - { 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, - { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219}, - { -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365}, - { 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620}, - { -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814}, - { -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116}, - { -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061}, - { 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394}, - { -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534}, - { 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535}, - { -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270}, - { -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022}, - { -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879} -} -}); - -#endif /* EXPORT_PARAMETERS_FC2_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode.hpp deleted file mode 100644 index d6da9ad65..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode.hpp +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef EXPORT_ATTRIBUTES_INPUTNODE_H -#define EXPORT_ATTRIBUTES_INPUTNODE_H - -#define _INPUTNODE_IN_CHANNELS 3072 -#define _INPUTNODE_OUT_CHANNELS 64 - -#endif /* EXPORT_ATTRIBUTES_INPUTNODE_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_b.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_b.hpp deleted file mode 100644 index e5b492ced..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_b.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef EXPORT_PARAMETERS_INPUTNODE_B_H -#define EXPORT_PARAMETERS_INPUTNODE_B_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> InputNode_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 64> { -{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } -}); - -#endif /* EXPORT_PARAMETERS_INPUTNODE_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_w.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_w.hpp deleted file mode 100644 index e18c700f3..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/InputNode_w.hpp +++ /dev/null @@ -1,76 +0,0 @@ -#ifndef EXPORT_PARAMETERS_INPUTNODE_W_H -#define EXPORT_PARAMETERS_INPUTNODE_W_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> InputNode_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 64, 3072> { -{ - { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164, 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088, 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245, 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640, 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219, -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365, 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620, -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814, -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116, -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061, 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394, -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534, 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535, -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270, -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022, -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879, -0.483628, 0.272165, -0.921403, -0.867794, 0.253838, -1.017495, -0.035984, -0.680159, -0.116601, -1.917364, -0.293144, -1.680917, 1.482456, -2.643867, -0.589814, 1.864317, 0.810974, 0.449891, -0.523071, -1.701221, 1.129147, -0.414783, 0.039269, -1.340263, 0.165569, -0.458461, -0.978111, 0.656720, 0.531054, 0.426182, 0.701776, 1.073439, -0.749516, -0.560629, -0.634230, -0.186059, -0.122258, 0.021843, 0.543000, -0.314648, -0.946935, -0.333649, 0.596433, -0.647178, 0.790704, -0.074659, -0.043766, 1.429068, -0.058342, -0.809171, 1.030495, 0.050716, -0.116684, -1.944978, -1.793352, 1.627739, -0.369663, 2.177690, 1.651580, -2.036985, -1.240169, 0.036523, -1.150051, 0.116815, 1.104999, 1.341058, 0.309679, -1.755930, -0.378678, -0.806254, -1.054984, -0.320765, -0.266736, -0.225193, 0.169121, 0.865690, -0.885389, 0.095123, 0.870764, -0.091391, 1.401193, -0.193103, 0.621627, 0.369497, -0.816600, -0.202823, -0.159167, 0.872668, -0.273115, 1.938011, 0.684697, 1.704309, 1.204039, -0.959246, 1.359703, 0.799502, 0.776908, -0.756584, -0.640936, 0.990894, 0.256858, -3.137142, 0.545601, 0.109409, 0.181050, 1.120293, -0.914028, -0.097133, 0.133803, 0.496900, 1.070259, 0.223329, -0.368285, 0.345049, 1.432678, 1.382178, 0.558631, -0.126281, -1.479764, -2.136274, 0.879013, -0.931591, 0.460165, 0.663047, -0.782686, -2.017072, -1.219782, -1.615018, 0.023152, -0.351595, 0.384548, -0.350487, 0.861079, -2.343885, 0.206722, 0.492284, 0.227113, -0.832889, -0.669958, -0.069160, -0.609277, -0.255370, -0.752728, -0.765413, 1.094080, 0.368862, 0.024828, -0.518220, 0.009554, -0.353964, 1.897386, -0.901690, 0.077136, -0.747170, 0.407625, -1.418082, 0.823818, -0.750032, -0.318462, -0.949275, -0.005721, -0.311060, -1.375086, 0.638032, -0.070481, 0.265967, -1.677426, -0.803207, 0.331928, -0.337461, 1.145064, 0.517522, 2.248859, -0.155701, -0.185320, -0.430223, 0.633950, 0.594881, -0.373053, -0.183769, 0.781241, -1.100458, -1.127900, 1.536747, 0.694964, -1.317671, 0.552416, 0.214635, 1.172117, 0.057319, -0.083945, -2.744316, -2.083668, 1.579024, 0.846874, -0.559092, 1.025974, 0.889658, -1.337327, -2.154229, 0.283269, -0.084246, -0.448027, 1.076064, -0.171827, 0.712631, -0.291771, -1.532148, 0.525627, -0.182083, -0.584263, 0.758026, -0.011926, 0.048968, -0.683809, -0.367121, -0.808110, -0.745193, -0.025946, -0.974672, -0.667272, -1.253634, -0.933169, 1.543063, -0.558194, 0.333470, 0.300683, 0.875321, -0.650058, -0.402874, -1.479110, -1.422508, -1.490082, -1.066710, 0.818719, 1.130872, 0.726068, -0.644154, 0.015556, -1.297712, -1.807793, -0.449898, 0.678534, -0.343751, -0.438977, 1.005177, 0.789181, -0.868195, 2.963583, 0.127910, 0.762864, 2.106842, 0.059183, 1.106624, -0.173846, 0.506085, -0.803235, 0.456489, 1.792648, -0.413096, 0.174623, -0.670578, 1.004736, -1.211046, -0.177172, -1.173558, 1.704121, -0.717132, -0.315196, -0.955144, -0.844640, 0.219873, 0.439474, -0.111900, 0.382651, 0.037409, -0.715340, -0.458230, -1.518173, 0.580286, -0.180067, 0.251145, 1.541854, -1.799514, 0.415876, 0.045524, -0.935430, -0.941019, 0.476378, -0.045153, -0.346679, -0.071810, 0.468796, -0.303942, 1.868755, 0.052552, -1.115326, -0.951675, 0.823079, -0.264655, -0.460295, 0.024275, 0.681858, 1.360035, -1.231762, -1.203111, -0.181563, 0.198488, -0.813774, -1.178844, 0.972454, -0.134574, 0.030472, -0.967580, 0.152757, -2.177683, -0.678582, 1.439619, 0.329668, 1.977801, 0.547752, 0.150742, 0.597613, 0.320251, 0.629068, -1.048041, 1.226918, -1.397015, 0.530945, 1.934914, -0.360577, 0.601554, -1.164239, 0.144575, 0.725861, -0.442685, 0.083200, -0.289393, -1.016526, 1.067162, -0.018115, -0.224101, -0.241866, -0.064766, 2.522637, 1.326687, -0.214645, 0.652540, 0.005862, -0.888118, -1.111310, -0.301777, -0.060108, -0.383830, 0.692486, -0.268334, 0.663172, -1.008340, -1.682795, 0.617490, 0.376519, 1.881652, 1.198976, 0.919806, -0.134369, 0.542711, -0.636402, 2.075232, 0.367750, 0.078205, 1.175514, 0.312489, -0.545571, 1.806641, 0.572128, 0.969595, 2.196302, 0.144951, -0.069890, -0.024643, 0.096254, -0.913089, 0.207929, -0.024540, -2.364928, 0.403653, 0.957075, 0.605313, -0.084031, -0.881650, 0.617897, -0.514700, 1.021071, -2.341326, 0.867535, 0.276200, -1.536776, 1.063557, -0.265884, -1.019689, 0.034769, 0.374245, 0.308205, 0.941602, -2.383936, 0.053763, 0.080351, 0.805516, -1.034883, 0.112969, 0.225962, 0.529344, -0.533202, 0.826293, -0.530990, -0.941042, -1.409687, -0.616595, 0.083008, 0.597792, 0.564483, -0.277788, 0.275536, -1.167859, 0.234086, 0.923334, -1.550176, -0.317221, 0.167047, 0.842336, -0.197037, -0.189047, -1.258022, 1.233136, 2.043196, -0.972316, -0.211159, -0.644789, 0.550668, 0.263230, 0.510620, -0.340782, -0.076202, -0.532805, 0.028492, -0.711909, -0.041329, -0.716095, -0.438745, 1.613258, 1.203239, 0.964917, 2.008562, 2.526586, -1.076117, -1.172786, 1.202410, -1.702984, 2.141656, -0.421657, 0.506291, -1.005197, -1.210642, -1.006717, -1.024502, 0.616641, -1.584712, 0.891012, -2.477347, -0.572187, 0.864046, -1.402610, 0.412339, -0.276108, -2.752150, 0.592655, 0.632535, -0.195088, 2.281385, -1.077261, -0.790374, -1.883068, 0.079064, 0.400938, -0.359422, -0.905535, 0.275971, -0.708639, 1.268833, -1.304649, 1.220814, 0.345417, -1.035277, 1.694809, -0.453738, -0.100811, -0.711486, -2.032043, 0.247771, 0.125351, 1.414129, 1.130891, -0.594405, 0.797592, 0.053162, 0.395181, -0.421787, 0.288705, -1.071319, 0.932462, -0.609468, -0.239886, 0.426226, -0.566084, -0.555236, -0.395055, -1.607937, -0.454888, 1.086999, 0.064433, -0.630807, 0.537331, -0.079178, 0.544384, -0.345341, -0.755680, 0.194209, -0.915100, 0.664959, 0.136650, 0.145284, 0.658129, 1.353991, -0.482921, -1.267343, -0.525734, 0.427054, -0.567577, -0.977804, 0.581563, 0.731378, 0.287522, 2.394391, -0.044662, -1.842992, 1.271125, -0.347839, -0.222826, -0.068077, -0.131304, -2.144952, -2.350498, -0.053892, -1.022586, 0.598608, -3.063631, -0.889890, -0.169715, -0.043919, -1.031522, -0.314142, -1.721556, -1.423945, -0.517471, -0.617123, -0.140159, -0.793929, 0.361729, 0.918396, -0.399743, -0.736005, 1.568120, -1.300957, 1.526744, -0.297900, -0.062842, -1.966952, -1.071676, 1.570217, 1.112780, 0.185776, -0.637180, 1.313317, 1.172860, -0.915400, 1.177792, -1.942183, 0.390201, 1.388212, -0.477988, -1.579742, -0.683059, 1.172021, -0.980434, 0.059954, -0.457660, -0.634426, 1.500102, 0.078013, -0.986448, -0.762938, 0.195547, 1.015367, 1.245432, -0.282828, 0.081046, 0.307498, -0.669810, 0.721569, 0.057625, 0.501820, -0.104848, 1.437235, 0.117299, -0.523084, -1.118009, 1.560399, 0.104631, 0.489168, 0.760339, 1.449355, -1.377321, -0.715611, -1.029579, 0.073359, -0.825450, -0.229307, -0.421830, -0.666367, -0.440156, 0.023840, -0.751700, -0.361373, 0.986500, 0.851569, 0.123599, 0.390027, 0.277061, 0.940906, -0.103239, -0.445279, -0.919782, 0.639714, -0.902529, -1.874779, -1.719761, -1.893759, 0.269624, -0.578221, -0.202651, -0.392257, 1.412725, -0.629082, 1.413975, -0.064950, -0.204246, 0.975600, -0.282429, 0.352274, 0.795323, -0.966890, 0.600321, 0.459449, 1.495051, -0.693799, -2.130963, 2.241615, 0.016742, -1.380529, -0.693764, 0.788271, -2.084727, -0.605345, -0.393199, -1.431592, -0.019263, 0.154902, 2.003049, -0.505429, -0.279594, 1.178694, 0.081671, -0.253501, -0.928567, -0.470637, -0.599760, 0.105334, -0.558767, 0.306641, -1.247424, -1.136135, 0.388699, 0.240216, -0.539604, 0.748712, 1.514203, -0.053900, 0.146477, 1.415987, 0.035719, 0.852351, -0.505780, -2.203605, 1.287532, -0.138672, 0.707916, 0.732445, 0.034828, 0.916650, -0.960419, -1.104703, -1.910655, 0.738577, -1.784924, 0.377324, 0.942214, -2.147115, -0.657372, 1.937143, -0.640029, 0.813896, -1.856751, 0.293933, 0.407355, 0.828903, -0.258431, 0.651304, 1.024936, -1.113730, 0.727588, 0.244997, -1.608019, 0.678481, -0.704592, 0.512401, -0.693952, 0.200313, 0.382440, -0.155662, -1.873614, -1.368903, -0.209850, -1.454814, -0.029855, 0.192369, 1.508715, -0.212503, 1.176330, -1.738381, -0.637968, 0.576972, 0.808788, 0.434982, -0.529857, -1.056989, -0.818170, -1.858517, -1.504275, -1.812055, 1.817686, -0.827064, -0.970820, 0.661065, 0.146447, 0.291060, -0.408877, 0.068819, 0.295079, 0.663102, -0.166278, 0.770570, -1.142846, -0.806847, -0.730912, -0.447671, -0.015643, 0.619293, 0.202428, 1.665242, -0.790555, 1.475059, -0.881476, 0.390759, 1.258389, 0.324598, 1.822245, -0.058715, 0.600523, 1.136708, -1.679807, 0.288505, 0.744363, -0.611639, 1.300585, 1.380471, -1.169925, -0.777400, 2.193714, -0.475082, -0.242079, -0.336258, 0.471824, -0.658170, -1.063402, 0.417935, -1.189927, -1.703003, -1.247581, 0.862522, 0.934985, 1.998402, 0.301988, -1.167236, -0.040485, -0.692792, -0.118653, -0.085074, -0.157554, -0.597173, -1.148901, 0.479436, -1.334729, 0.435822, 0.728494, -0.447077, 0.395057, -0.449488, -0.970525, 1.506991, 0.701021, 0.331930, -0.781135, 0.695741, 0.447304, 0.814847, 2.051350, -0.694026, -0.032321, 0.024414, -0.642007, 1.006013, -0.816746, -1.214119, -2.295536, 0.402007, -0.404793, 0.312364, -0.727692, 0.190903, 1.319342, 2.484523, -0.751330, 0.517379, 1.607649, -1.566784, -1.809135, 1.457683, -0.908496, -2.220334, 0.243166, 0.595011, 0.379217, 1.088163, 1.147452, 0.633369, 0.346038, 0.347236, -0.325225, 1.888308, -3.072945, 1.297680, -1.506335, 0.205380, 0.664307, 0.979495, -1.097883, -0.745897, -0.303797, -0.563891, 2.451149, 0.088773, 0.480402, -0.445841, -0.637341, -0.792031, -0.643933, 0.330410, 0.895335, 1.612401, -0.050137, -0.272140, 0.770629, 0.586540, -0.882999, 2.427387, 0.907571, 1.020693, -0.572768, -1.022579, -0.633937, 1.401881, -0.251258, -1.633224, -0.467908, -1.371026, -0.969493, -0.825524, 0.605472, 0.183619, -1.847969, -1.878521, 1.177194, -0.710708, 0.769348, 0.636449, 1.019374, 1.298586, -1.192946, 0.573427, 0.357284, -0.348353, 0.929739, -0.583619, -0.075304, -2.041761, -0.158822, -0.179691, -3.007082, -1.240545, 0.256757, -0.732539, 0.213922, -3.068860, -0.118184, 1.317333, 0.639406, -1.638411, -0.856709, 0.936945, -0.200855, 0.592933, 0.934265, -0.506393, -2.097188, -0.686307, -0.841321, 0.113067, -0.659559, -0.225567, 0.278005, 0.185259, 0.321431, 1.222981, -1.271038, 0.553208, -0.798184, 0.259451, 0.417953, -0.004145, -0.694951, -0.227405, -0.808163, 0.415147, 0.657638, 1.917061, 1.630171, -1.438121, -0.981062, 0.436875, 1.518751, 0.353086, -0.147144, 0.741269, 1.950936, 2.739364, 0.733956, -0.655084, -0.021943, 2.113906, 1.009407, 0.544371, 0.768170, -0.927640, 0.817491, 0.744725, 0.843117, -0.691860, -0.747689, 0.265487, 0.741109, -0.117990, -0.336553, 1.219656, -0.894997, 0.185234, -0.876471, 1.620419, -0.154121, -0.562478, 0.724263, 0.392547, -0.183256, -0.952905, -0.482131, 0.056012, 1.362304, -0.669158, -1.197868, 1.035019, 0.921444, 0.293030, -0.064290, 0.039056, -1.971230, -0.748615, 1.521501, -1.063615, -1.614336, 0.859108, 0.664434, 0.582681, 0.891293, -0.682233, -1.063711, 1.022504, -1.064391, -0.238194, -1.287860, -1.136086, -0.599646, 2.083999, -0.251891, 1.635609, 0.142861, 0.311812, 1.059390, -0.011250, 0.999566, -0.376215, -0.275687, 1.269079, 0.547754, -0.021728, -1.003898, 1.155573, -0.133892, -0.820203, -0.399042, 0.011735, -0.004630, -1.624290, -3.214955, -0.302276, 0.162449, -0.165589, -0.324434, -0.858639, 1.214711, -0.088071, 0.692165, -2.298264, 0.109115, -0.152067, -1.400125, -0.798508, 0.065675, 0.840315, -0.535997, 0.989161, -0.666881, 0.422332, 2.565203, -0.348443, 0.292504, 0.955866, 1.009752, 2.071980, 1.349440, 0.222731, 0.470191, -2.257708, -0.124012, 0.316573, 0.914732, -0.237629, 1.217734, -0.413807, -1.373763, -0.449355, 1.434391, -0.433576, -0.174979, 0.556502, -0.430827, 1.936127, 0.067958, -0.865320, 0.760247, -0.580725, 0.018868, -0.033391, 0.721388, 0.462043, -1.425273, 0.678470, 0.302006, 0.756002, 0.167077, 0.766390, -0.043001, 0.394925, 1.800999, 0.090170, -0.554982, -0.095026, 0.112222, -1.022792, 0.053468, -0.428305, -0.314164, 1.135005, 2.346780, 0.916245, -0.659896, -0.498403, -0.046144, -0.553811, -0.108004, 0.122168, -0.002586, 0.768014, -0.692886, -1.433461, 0.473015, -0.064335, 1.647390, 0.779012, -0.843045, 1.077922, 0.382245, -1.250200, 0.643778, 0.443442, 0.904600, 1.065371, -0.027124, -0.566289, -0.665816, -0.354307, -0.877381, -1.659182, -0.191498, 0.162333, 0.498699, -0.395470, 1.743060, -1.321712, -0.936546, 0.274050, -0.159812, -0.355672, -1.676516, -0.600875, 0.034010, 0.114026, -1.140778, -0.492318, -1.908774, -1.484320, 1.081611, -0.934511, 1.064218, -1.353714, -0.314849, -0.105485, 2.178031, -0.409103, 0.933178, -2.048981, -0.298461, -2.592589, -0.488420, 0.835982, -1.151600, -0.189469, 1.288512, -0.699727, -0.624615, 0.460098, -0.202874, -0.346232, 0.267220, -0.158052, 1.825733, -0.869135, 0.123580, -0.991966, 0.750955, 1.741264, -0.764096, 0.010258, -0.192117, 0.027155, -0.265093, 1.277057, 0.043134, 0.090176, 0.277584, 0.372338, 0.948639, -0.836552, -0.589544, -0.745397, 0.382427, -0.232827, -0.892618, 0.882999, -0.799134, 0.054087, 0.408222, 1.345659, 0.814261, -1.389691, 0.093555, -1.494835, -1.735067, -0.009094, 1.548697, -0.411162, -0.575812, 0.405427, 0.855615, 0.896117, 0.274727, -0.114478, -0.488888, 0.450323, 0.212904, -0.196283, 0.326608, -1.224662, 0.087978, 1.183714, -0.601534, -0.298352, -0.654938, 0.161118, 1.607924, -0.909086, 0.273687, -2.044743, 0.746246, -1.040757, -0.908652, -0.731929, -0.509273, 0.037672, 0.032804, 0.348324, 0.257188, 0.500905, 0.020275, 0.119230, -0.704439, -2.530083, -1.678277, -0.676852, -2.791788, 0.164539, -0.123641, -1.377383, -0.361288, -1.299663, -1.483092, 0.434668, -1.035801, 1.730346, -0.469573, 0.417228, 0.019251, -0.072003, -0.198577, -0.569901, 0.935016, 0.314889, 0.034155, 0.430543, 0.898514, -0.164523, -0.214377, -0.653906, 0.201249, -1.524915, 0.701587, -0.324459, -0.917747, 1.476484, 0.469838, -0.381519, -1.311817, 0.720365, -0.310191, 1.025053, 1.889874, -0.966916, -0.871145, -0.383549, 1.698432, -0.956719, -1.682718, 1.309966, -0.491572, -0.018925, -1.528414, -1.133854, 1.203479, -1.144830, -0.353264, -0.932797, -0.802824, -1.524664, 0.034604, 1.323310, -0.947217, 0.987849, 0.756220, -0.057331, -0.199653, -1.039496, 0.408915, 0.663561, -1.235246, -0.877334, -1.213858, -0.555124, 0.169166, 0.415630, 0.262026, 1.884413, -1.458849, -0.292172, 0.790321, 1.437780, 0.489940, 1.181251, -0.222410, -0.539658, 1.178497, -0.118368, 0.197939, -0.060905, -1.908541, -1.067447, -0.342585, 2.388675, -0.280412, 1.539183, 0.566500, 0.411963, 0.188143, 1.485968, -1.613623, 0.613969, -1.523564, 0.413067, -0.666758, -0.972755, 0.970277, 0.681646, 0.277529, 1.423990, -0.392149, 0.430833, -0.371182, 1.011777, -0.384506, -1.010383, 0.828187, 1.044202, 0.477430, 0.180531, 0.352829, -0.393196, 0.816648, 0.551559, 0.998243, 0.261241, 0.620633, 0.858043, -0.634724, 1.524376, -1.243713, 1.891966, 0.661525, 0.833298, 1.810750, 0.947274, -0.728384, -1.603718, -0.813418, 1.071318, -0.801694, -0.168650, 0.474758, 0.241127, 0.903248, 0.334180, 0.991895, -1.314739, 0.998850, -0.519051, -2.067554, 1.896067, 0.501201, 0.556987, 0.641588, 0.272504, -0.742982, -0.470703, 1.240292, 1.259373, 0.565328, -0.720676, 0.004026, 0.600226, 0.090100, 0.011061, 0.369402, 0.011070, 0.233415, -0.282847, -0.903427, -0.816539, -0.871172, -2.226825, -1.740848, -0.339944, 0.215897, 0.323387, -0.254469, -0.515725, 0.073948, 0.563910, -0.653186, -0.306754, -0.546975, 1.372907, -0.970252, -0.487223, -0.078836, -1.081625, 1.588108, 1.202025, -2.122401, -0.237531, -0.685333, 0.173563, -0.576237, -0.297172, -1.762223, 0.460683, -1.041090, 0.097664, 0.414681, -0.378730, -0.441698, -0.569381, 1.072555, -1.684300, 0.737147, 0.341000, 0.049181, -1.632741, 0.077021, -0.530017, -0.163073, -1.158130, 2.668592, -0.433849, 0.091581, 0.232981, -0.300411, 0.835452, -0.168550, 0.713216, 0.851907, -1.087314, 0.900005, -0.786708, -0.618744, 0.001694, -3.176547, 0.126415, 0.362694, 0.369459, 0.931487, -1.290275, -0.717392, -0.335578, 0.703348, 0.756063, 0.260056, 0.778826, -0.129166, 0.101717, -0.342590, -0.295437, 0.198471, -1.717762, 0.015128, -0.576792, 0.512532, 0.672616, 1.389580, -0.476444, 0.404700, -0.532910, -1.795952, 0.241228, 1.383689, -1.515232, 0.271979, -1.543068, -0.150854, -1.174402, 0.882491, 0.149071, -0.917308, -0.689293, -0.382830, -1.111705, -1.484126, -0.148355, -0.445174, -0.362349, -2.037557, -0.949282, -1.611513, -0.153610, 0.424405, -0.395808, 1.023179, 0.975042, -0.311931, 0.324270, 0.113626, 0.309115, -0.332104, -0.238800, -0.368156, 0.400204, 0.779575, -1.039874, -0.180268, 0.655636, 0.785250, -1.127972, 0.777665, 0.016652, 0.727648, -1.386528, 0.678570, 0.272134, -0.734405, 0.346691, 0.710352, 0.413029, 1.777285, 0.155423, -0.484363, 1.320690, -1.946193, -0.524754, -0.771088, -0.524043, 0.604248, -0.816410, 0.472590, 0.311729, 0.459517, 0.275026, 1.501116, 0.012700, 0.194177, -1.557604, 1.287073, 0.858426, -0.366481, -0.492214, 0.540634, -0.216906, 1.056813, 0.108197, 0.326910, 0.087416, -0.722098, -0.256490, 0.602468, 0.997557, -0.674882, -1.212450, 0.208286, 0.332696, -2.512025, -1.130804, 0.673082, -1.404227, -0.519971, 0.151259, 1.565283, -0.179690, 3.395982, 0.026674, -1.768538, -0.786760, -0.626921, -0.460870, 0.031497, -0.499570, 0.244112, -0.106123, 0.594928, 0.170613, 1.934060, 0.623652, 1.197117, -0.110753, -1.273471, 1.488819, -1.185202, 0.929832, -0.626908, 0.888896, -1.537817, 1.271557, -0.716535, -0.464746, 1.185983, 1.854573, 1.425654, -0.058017, -0.799256, 0.199133, -0.372743, -0.782147, -0.250217, -0.433804, 0.302341, 0.958295, 0.577269, -0.597675, 0.314995, 1.007424, -1.008409, 1.329026, 2.672855, 0.998121, 0.112067, 0.621820, 0.410118, 0.875217, -0.653587, 0.630092, 0.656486, 0.819713, 1.881184, 1.612515, 0.570351, -0.235872, 1.513090, 0.096251, 0.057704, -2.665689, 2.195297, -0.780487, -0.533711, -0.066655, -0.448292, -0.190116, 1.032401, 1.406327, -2.502980, -3.354525, 0.273516, 1.866227, 0.377479, 0.603672, 2.100813, 0.560821, -2.054955, 0.294400, -0.702300, 0.245335, -1.990072, 1.331997, 0.240215, -1.157135, -0.986040, 0.094928, 0.310835, 1.343763, 0.611746, -1.530175, 0.958943, 0.312722, 0.799592, -0.721303, 1.173564, -0.672806, -1.797724, 1.004274, -0.386549, 1.453313, -0.063464, 0.013326, 0.878770, -0.071918, -0.329081, -1.047271, 0.103185, -1.203935, 1.063529, -1.318201, 0.814826, 0.313617, -0.437196, 0.199292, -1.691726, -0.373155, -0.320716, 0.369388, 0.154613, -0.500642, -0.215388, 0.843930, -0.794182, -0.562701, 1.475003, 1.817497, 0.291827, 0.101184, 0.643614, -1.082114, -0.320927, 0.268631, -0.829719, 1.740005, -1.009110, 0.260317, -0.119149, -3.099813, -0.484698, 0.170382, 2.142591, 0.884803, -0.084357, -0.333901, 0.542875, 0.408539, 0.191847, -2.333756, -0.190223, 0.353178, -0.478883, -1.652882, -1.062859, -0.973991, 0.706297, -0.987439, -1.111054, 0.016979, -0.965271, -0.126417, 0.185341, 1.020485, 0.927526, -0.687493, 0.186440, 0.258571, 1.418577, 0.272011, 1.191018, -1.985886, -0.178206, 0.025245, 0.853979, -0.219570, -0.115001, 1.075246, 0.332232, 0.646989, 0.038275, -1.700743, 0.274573, -1.093827, -0.999136, 0.973571, -0.102699, 0.525674, 0.577398, -0.752118, 1.026548, 1.114586, 1.369077, 0.584804, -0.621655, 1.168142, 0.804781, 0.343986, 1.096203, 1.070783, 1.806614, -1.190219, -0.198395, -0.963841, -1.604436, -1.206218, -0.090030, -1.204958, 0.051241, -0.064168, -1.143898, -0.845679, 0.557284, -0.452700, 0.498488, 0.110566, -0.650531, -0.372469, -1.809649, -0.047768, 0.590213, -1.239304, 1.075142, 0.102358, 0.349711, -1.567159, 2.841117, -1.355863, -0.675081, 1.360123, -1.135762, 0.580593, 0.215153, -1.305609, -0.741612, 0.289778, 0.528629, -0.038775, 0.165159, -0.281788, -0.230657, 0.741059, -1.011146, -1.999856, -0.688773, -0.393231, 0.423286, -0.524114, -1.335793, 0.485363, -0.006235, -0.169893, 0.060844, 0.587908, 0.591803, 1.300798, 0.207293, -0.011734, 0.396885, 0.493708, 0.094967, 0.129666, -0.461424, 0.391614, -1.299748, 1.165409, -0.333323, -0.674106, 0.604386, -1.632012, -0.666379, -0.449477, 1.772636, -0.359355, 0.276887, 0.825800, -0.419506, 1.212223, 0.669444, 0.077342, 2.958738, -0.544855, 0.346167, -0.758018, 0.907585, 0.426352, -0.546804, 1.497249, 0.320760, 1.542374, -0.436480, -0.165733, 0.735464, 0.376609, 0.727380, 1.467214, -0.045451, 0.828314, 0.557330, -0.704539, 1.426054, -0.143571, 1.415633, -1.029139, -0.685039, 3.734304, -0.399661, 0.973099, 1.363623, -0.412255, -0.825430, -0.093730, -0.072947, -2.813968, -1.236721, -0.114895, -1.899929, 0.377031, 0.503660, -0.724370, 0.146165, 1.325534, -1.177018, -0.133923, 0.132714, 0.598730, 1.007868, 0.204387, 0.205703, -1.167212, -2.288567, -0.344970, -0.482560, 0.473897, 0.614909, 1.272410, -1.425560, -1.296793, 1.514753, -0.035810, 1.974070, -2.745449, 2.172904, -1.414158, 2.639008, -0.768351, -1.916167, -0.194903, -0.439431, 1.382882, -1.183044, 1.417865, -0.319718, 0.439528, 2.562625, -0.835081, 1.387452, -1.035946, -1.466946, -1.200867, -0.906393, 0.036630, -0.374630, 0.871451, 0.833122, 1.253911, 0.567000, -0.537273, 1.376860, 0.760199, 0.838544, -0.320509, 1.032247, -0.955733, 1.140584, -0.409046, 0.075324, -1.463270, 0.494432, -0.210940, -1.047624, 0.827575, 1.219817, -0.300007, 0.269813, -1.480722, -1.200738, 0.135519, -1.401633, 0.244732, -0.801174, -0.847630, 0.914612, -1.664178, -0.329912, -0.222111, 0.668047, -1.233335, -0.340507, 0.017628, -1.942019, -0.024778, 0.153863, 0.374352, -1.316392, 1.012054, 1.741003, 1.305630, 0.891019, 0.507232, 0.600619, 1.130118, 0.891952, -1.102907, -0.258095, -0.862249, -2.186176, -1.528700, -1.588713, -1.748829, 1.373339, -0.400587, -0.378748, 0.338176, -0.666251, -0.590839, -0.664750, 0.961008, -0.424795, 2.517701, 0.161817, 1.337533, 0.683717, -0.877583, 0.743000, 0.295750, 0.458967, 0.521527, 2.021405, -0.682616, 1.116257, 0.790794, -1.669943, 0.658199, -1.551574, 2.174583, -2.009853, -1.172726, 1.735298, -0.597603, 0.248709, 1.080414, -2.354634, 0.674898, 0.030266, -1.799594, -2.267624, -0.204637, 0.157424, -0.226376, 1.397952, 0.599074, 1.006063, -0.147075, -0.676597, 0.430587, -0.950560, 0.621860, -0.730571, -0.411861, 0.024380, 1.017599, 1.600327, 0.673456, -0.044896, -0.793557, -0.825355, 0.581568, 0.436996, -2.016153, 0.972259, 1.955608, -0.487107, 0.776204, 0.179620, -0.871618, -0.153258, -0.775054, 2.840904, 1.402854, -0.415008, 1.684875, -1.129291, -0.732454, 0.383098, 0.392689, -1.109019, 0.519680, 1.383790, 0.847850, -0.589012, -0.036424, 1.344046, 1.363295, 1.761992, 0.377844, -1.436695, -1.970094, -1.180632, -0.809178, 1.797209, -0.149285, 0.132401, -0.713662, -1.275082, -1.197905, -0.748634, 0.237209, -1.333120, -2.745325, 0.713881, 0.232845, 0.831090, -0.296095, -0.867552, 0.485242, -0.616120, -1.055965, 0.820971, -0.939916, 0.157495, -0.177354, -2.702216, 0.453328, 1.668784, -0.167276, 0.238334, 0.286401, 1.521507, 0.465304, 0.746890, 1.281111, 0.059721, 1.142529, -0.279406, -0.601295, -1.321091, 0.383939, -0.168319, -1.025849, -1.156128, 1.139910, -1.696016, -0.286395, -1.129498, 0.473730, -0.407834, 0.158420, -1.677758, 0.256852, 0.911341, -0.564925, -1.183455, -0.526705, 0.483374, 0.300456, 1.321482, 0.093388, 0.770189, 0.450334, 0.274731, -0.973051, -0.801585, 0.306781, -0.287825, -1.279992, -0.071329, -0.236271, -0.894338, -0.507214, -1.932352, -1.815300, -0.761447, -0.059965, -0.388040, -1.562640, -0.924461, 0.056389, -0.907379, -0.577252, -0.008059, 0.336369, 1.204455, -0.359990, 0.330235, 1.671894, 1.162308, -0.792580, 0.901545, 0.270950, 0.401148, 0.307969, -0.746227, 0.023639, -0.225019, -0.274379, -1.332720, -0.787131, -0.559917, -0.376785, 0.093683, 0.256641, -2.401024, 0.135685, 1.889152, 0.411340, -0.997004, -1.039582, -1.404646, -0.049727, 1.022393, -0.051089, 0.572572, 0.660656, -0.977950, 0.032098, 1.482607, -0.801451, -1.397866, -0.157505, 0.200904, -1.141862, 0.692075, 0.212825, -0.726461, 1.048337, 1.177044, -1.594877, 0.436792, 1.541752, -0.130615, 1.517058, 1.184071, -2.406118, 0.688700, 1.849778, -0.274477, -0.802801, 0.945356, -0.556384, -0.892448, -0.354862, -1.172656, -1.878773, -1.678301, 0.555834, -1.905515, -0.186236, -0.680109, 0.143936, 0.139477, 0.623513, 1.273880, 0.851637, 0.090370, -0.037056, 0.132823, 0.770665, 0.972567, 0.880003, -0.766449, 1.112240, -1.871778, 0.387332, -0.286746, -0.159725, 0.114820, 0.390126, -0.495996, 0.443110, 0.990618, 0.958876, 0.454360, -0.153635, 1.360347, 0.392153, 0.108345, 0.565794, 0.381280, -0.268314, 0.033666, -0.953113, -0.862205, 2.132107, 0.768619, -0.382404, -1.818438, 0.090521, 0.379119, 0.424749, -1.435447, 0.571269, -1.929907, 2.909792, 0.121825, 0.076226, -0.391732, -1.454764, 0.306095, 0.375485, 0.765917, 0.665369, 0.192011, 0.396967, 0.389895, 0.404369, 0.093362, 0.454103, -0.011704, -0.021997, -0.312407, 1.611869, 1.352119, -0.519063, 0.566702, -0.644022, -1.989684, -0.459097, -0.640570, 0.490471, 0.395119, -0.138599, 0.161169, -0.907985, 0.125904, 0.023362, -0.950623, 1.168311, -0.054330, -0.629465, -1.824191, -1.735295, 0.091745, 0.686547, -0.356245, 0.020564, 1.221096, 1.105374, -1.289991, -0.635291, 0.144271, -1.884302, -0.829538, -0.211958, 0.785631, 0.023984, -1.370053, 0.818047, 0.463937, -0.461188, -0.398834, -0.945416, 1.490969, 0.065619, 1.524260, 2.470697, -0.218250, -1.038640, 0.320372, 0.679273, -0.994275, 0.987532, -0.059098, -0.255913, -0.359327, 0.437101, -1.957016, 2.023776, -0.777541, 0.544046, -0.634359, 0.202622, -2.537697, -0.880690, 0.262395, 0.022746, 0.670331, 0.382700, -0.550049, -0.225985, -0.658639, -0.845300, -0.038983, -1.177553, -0.153436, -1.193876, -0.664998, -2.020264, -2.023222, 0.324771, 0.407006, 0.097901, 0.239137, 2.563511, 0.554227, -0.773526, 2.304720, 0.661692, -0.240537, -0.570215, -1.067428, -1.571948, -1.857316, -2.437285, 0.541499, 0.110785, -0.521269, 1.400451, 0.523955, 0.587476, -0.483776, 0.441642, 0.510013, 0.337857, -0.129384, 0.182896, 0.464079, -0.293459, -1.041778, -0.409600, 0.818222, -0.446246, -0.276326, -1.245914, 1.087373, -0.799157, 0.486454, -0.031705, -1.009549, -0.654358, 0.085969, 0.855879, 0.598715, 0.624939, 0.736916, 0.979428, 0.997864, 0.307965, 0.286235, -0.849707, 1.034841, -1.771177, 0.096200, -0.576832, -0.052888, 0.459083, 0.048119, -1.041326, 1.098587, -0.644037, 0.174581, -0.173699, 0.959956, 0.925711, 0.603697, -0.198832, -0.475749, 1.521169, 0.004493, 0.952271, -0.742357, 0.296712, -0.146022, -1.299515, -0.769878, 0.790328, -1.721681, 0.724551, 0.132630, -1.088783, 0.753908, -0.644844, -0.408361, -0.307816, -0.953280, 1.544019, 0.468724, -0.086609, 0.769120, 2.025079, 0.452213, 0.269482, -0.521790, 0.184583, 1.194644, 2.081644, -0.790718, 0.092783, -0.234092, 1.369498, -0.629570, -0.023905, 1.019000, -0.330552, -0.373826, -0.539825, 0.928078, 0.010203, -0.041057, 0.529640, -0.048649, -1.111100, 0.514363, 1.565414, 1.223987, -0.003894, 0.686597, -0.402719, -1.054044, -0.717959, 0.476371, -0.934562, 0.268760, -0.264276, -0.225479, -1.619312, 0.203887, -0.164995, 0.509049, 0.579713, 0.193660, -0.168138, 1.828611, 2.593979, -0.172799, 1.210807, 0.301616, 0.094140, 1.051921, -0.351484, 0.228479, 0.759428, -1.627644, 0.256001, -1.516263, -0.324057, -0.895028, -0.698632, 1.030831}, - { 0.498600, -0.630364, -1.934851, 1.978740, 1.297702, -0.366390, 0.396950, -0.474528, 0.365379, -0.384767, 1.053095, -0.796208, 0.118948, -0.200839, -2.280172, -0.828167, -0.266828, -0.326641, -1.628112, 0.359216, -0.532697, 0.297303, 0.886123, 0.536909, -0.502440, -0.563721, -0.318734, 0.163537, 0.738058, -0.406623, -0.650341, 1.666817, 0.316455, 0.172766, 1.239138, -1.374082, 0.306644, -2.331464, 0.929375, -1.947381, 0.708352, 2.265958, 0.512173, -0.975597, -0.143397, 0.167462, -0.501506, 0.183967, 0.549654, -0.103497, -0.466289, 0.386910, -0.752389, 0.483060, -0.773666, -0.035798, -0.975706, 0.400843, 2.763508, 0.066222, -0.512881, 1.116536, 0.748304, -0.041251, -2.250712, 0.389888, 0.192828, -0.112889, -0.606110, 0.144230, -1.006171, -0.708104, 1.159180, 0.261429, -0.346232, -0.340050, -0.492282, -0.699225, -1.828571, -1.178086, 1.848835, -1.606901, -0.689881, -1.485548, -0.396604, -0.630256, -0.016148, -0.569914, 0.029803, -0.444130, 1.975413, -0.428265, -0.836023, 0.614451, 1.597898, -0.153646, -0.392575, -0.371178, -0.781775, -0.327638, -1.684671, 0.623956, 0.449735, 0.809483, -1.333013, -1.194109, -0.457923, -0.262625, 0.170568, -0.575261, 0.531945, 0.621200, -1.347152, -1.707142, 1.850222, 0.793587, 0.046903, 0.254743, -0.243458, -1.104970, -0.124515, 1.517588, 0.520323, 0.504096, 0.464529, 1.435610, -0.901409, 0.082204, 0.269690, -2.488350, 0.983689, 2.245436, 1.562155, -0.611086, -0.915243, 0.741547, 0.733133, -0.652388, 0.156579, 0.538230, -1.072847, 0.751287, 0.137664, -1.842280, -0.748604, 0.774597, 0.224907, -0.422822, -0.004653, -0.644180, -0.597642, -0.403732, -0.211798, 1.645996, 0.501405, 0.034623, -0.313537, -0.821324, -1.109246, -0.346518, -1.183343, -0.477077, 1.565661, 2.162567, 0.463808, 0.584915, -2.479038, -0.063887, -1.344777, -0.524891, -0.443048, -0.756877, 0.548129, 0.551165, 1.415485, -0.476431, 1.599387, 0.112393, -0.604599, 0.238660, 0.342879, -0.347186, -0.811838, -0.407510, -1.161911, 0.332919, -0.143734, -0.003872, 0.331830, 1.909795, -0.461120, 1.125101, -1.160524, -0.037597, 0.021065, 1.190991, -1.867031, 0.925425, 0.230105, 1.687341, 0.911828, 0.603531, 0.733339, -0.410497, 0.691719, 1.662063, 1.328381, -1.544447, 1.470204, -1.736659, -0.725563, -0.701414, -1.063086, -0.526010, -0.033144, 0.656060, -0.941699, -1.359735, -0.808648, -0.792566, 1.688558, 1.727384, 0.639528, -0.434445, 2.609233, -1.220485, 0.760613, -0.945875, 0.891968, -0.163294, -1.261257, 0.467184, 2.259121, 1.180275, -0.049289, 0.161012, 1.137014, 0.841523, -0.345265, 1.652922, -0.083475, 0.443857, -1.080949, -0.259055, -1.338761, -1.331164, 0.116265, -0.316040, 0.037631, -1.354656, 0.116217, -1.596441, 0.507521, -1.084110, -0.822434, 0.934781, -1.503291, 0.193167, 0.148730, 0.053301, -0.273592, 0.242086, -0.105414, -0.067733, 1.200888, -1.026494, 0.946440, 1.340357, -1.607273, -1.335891, -1.691025, -0.498899, 0.138916, -0.025839, 1.236057, -1.061116, -0.029666, 0.213228, 0.652542, 0.224519, 0.965390, -1.976661, 0.302520, -0.569860, 0.034934, 1.485381, 0.853022, 0.543659, -0.429706, -1.382558, -0.678502, 1.548906, 0.590621, -0.588423, 0.277246, -0.109895, 0.531839, 1.036831, -1.907868, 0.398361, -0.013880, -0.619297, -1.700102, -0.260177, -0.638563, 1.833697, 2.153433, 0.597775, 1.823454, 0.758914, -0.704724, -1.094395, -2.033701, 1.016783, -0.847457, 1.450119, -0.051495, 0.282050, 0.481209, -0.074188, 0.320197, 0.060417, -1.101019, -0.853074, 0.831001, -0.867891, -0.808916, -0.553487, -0.305298, -1.977615, 0.700406, 1.495796, -1.270270, 0.274327, 0.235669, 1.443637, 0.530089, 0.732876, 0.456071, 0.934206, 1.806708, -1.179482, -0.987963, -0.204915, -0.890853, 0.401321, 0.194023, -0.725235, -1.076367, 0.122571, 0.584353, -2.119283, 0.784755, 0.215461, 0.896773, 1.264879, -0.379028, -1.793941, -0.031743, 0.453713, -0.357120, 0.445265, -1.947280, 1.359870, -0.340473, 1.061085, -0.864080, 0.299490, -1.367263, 0.172260, 0.229675, -0.305726, -1.734245, 2.508320, 1.056079, 0.412452, -0.107441, 0.276507, -1.801411, 1.311701, 1.064675, 0.499074, -1.454018, 0.029158, 2.093279, -0.459083, 0.082882, 0.984361, 0.286337, -0.414942, 0.170918, -0.901985, 0.471364, 1.500944, 1.241543, -0.849459, 1.275193, 1.591275, 1.182822, 2.080917, -0.049049, -2.429894, 0.586602, 0.040475, -1.208794, 0.629368, -0.096037, 0.673191, -1.795674, 1.672328, 1.348753, 1.782115, 0.196033, -0.460948, 2.572930, 1.168051, -0.940551, -0.191133, -0.872147, -0.960073, 0.379402, -1.676307, -0.233545, 1.432444, -0.985572, 2.047824, 1.958467, -0.765291, -0.104188, 0.317891, -0.529768, -1.303015, 0.985363, 0.076202, -1.467007, 0.472621, -0.443107, -0.203267, -0.894790, -0.432701, 0.778032, -0.014877, -0.351363, -0.899447, 0.871419, -0.655006, -0.335003, -0.860796, 1.174089, -0.123632, 0.230959, 0.681467, -0.615895, 1.942438, -0.086646, -0.770541, -0.955458, -1.032896, 1.415443, -1.145293, 0.653932, 0.594903, -0.094169, 0.383691, -0.727563, -2.290730, 1.054179, 1.383306, 0.859246, 0.905080, 0.974548, 0.373188, 0.079963, -0.808236, 0.233153, -0.089717, -0.241619, 0.456371, -0.361749, 1.074772, 1.292462, -0.654600, -1.401936, 0.134937, 0.385610, 0.034410, 0.999438, 1.056893, 1.428685, 0.079046, 0.746196, 0.916434, -0.443332, -2.537755, 0.990478, -0.992442, -0.757811, -0.554858, 0.599378, -0.238326, 1.822607, 1.696197, -0.246041, 0.850187, -0.526443, -0.625866, 0.908694, -0.706092, 0.420556, 0.072978, 1.682558, -0.326236, 2.142879, -1.027462, 0.207436, 0.415592, -2.821089, -1.211530, -1.119491, 1.176020, -0.545044, 0.527122, 1.075734, 0.052872, 1.039222, -0.959000, 0.132693, 0.038326, -0.742397, 0.148741, -0.293556, 0.636246, -0.122293, -0.585191, 2.393996, 0.907956, -1.273070, -0.862822, -0.945147, 0.874301, -2.142893, -0.157647, 0.664078, -0.116931, -0.924814, -1.690552, -0.489379, 0.525611, -2.022288, 0.620293, -1.005329, 0.602536, -0.618161, 0.773970, 1.153424, 0.767592, -1.490730, -0.441524, 0.378543, -0.714283, 1.795595, 1.543324, 1.474025, -0.453359, 0.606984, 0.004696, 0.441260, 0.116171, 0.520404, 0.839695, -1.738653, 0.538265, -0.051506, 0.225686, 0.823927, -0.898231, 0.277226, 0.132438, -1.014787, 0.013427, 2.744513, -1.379169, -0.159827, -1.622324, 0.312074, -0.801969, -0.132457, 1.199220, 1.762816, 2.614702, -1.251020, -0.292932, -0.650674, -0.366716, 2.432578, 0.034004, 0.364269, 0.638649, -0.951142, -1.007079, -3.639020, 3.559285, -0.202650, -0.070716, -0.588417, -0.689876, 1.259315, 0.279627, 1.322981, -0.703149, -0.320339, 0.591559, -0.248742, -0.603587, 1.447409, 0.854169, 1.176190, 0.462784, -0.163880, 1.225252, -0.188107, 0.474241, 0.722550, -1.386720, 1.805160, -0.728132, 0.744601, -0.859084, 2.809067, -1.140650, -0.280099, -1.631087, 0.347477, 0.517512, 0.981620, -1.607984, -0.064968, 0.381553, 0.119513, -0.012089, 0.725931, -0.740354, 0.990801, -0.786111, 0.942182, -0.930947, 1.047784, -0.359566, -2.470492, -0.535079, -1.882133, 1.415739, 0.755526, -0.785738, -0.422217, -2.157502, -0.075675, -1.724756, -0.214210, -0.316398, -0.448632, -2.191588, -0.337842, 0.635482, -0.869785, -0.289716, 0.008577, 0.685914, -1.767045, 0.130024, -0.699719, 0.703842, 0.266145, -0.954319, 0.998666, -0.091582, 0.173133, -0.994769, 0.673786, -1.245531, -0.436189, -0.709814, -1.404860, -1.015782, -0.020176, -2.400612, 0.095698, 0.624370, 0.329876, -1.679498, -1.694843, -0.194741, -0.363958, 0.320114, -0.474492, 1.137740, 0.791094, 0.697049, 0.721421, -1.592182, -1.344499, -0.021251, -0.570454, -0.670966, -2.020386, -1.248654, 0.660396, 0.445477, 0.421517, 0.023469, -0.303631, 0.826053, -0.583889, 2.743410, 0.896533, 0.252610, -2.119778, 2.325007, -0.394109, -0.319441, -0.154400, -0.493423, -0.245623, 0.044359, 0.674579, 0.609360, -0.289882, 0.199548, 0.082043, -0.402017, -1.526817, -0.597538, -0.454720, -0.293778, 0.607726, -0.936898, 0.293511, -0.213769, -0.439017, -0.158604, -0.962467, -0.980164, -0.100530, 0.457554, -0.137260, 0.943699, 0.436898, -0.428960, -0.784887, 0.945776, -0.051841, -0.714418, 1.290290, -0.147452, -0.588972, 0.699039, 0.053845, -0.516412, -0.414229, 0.298465, 1.241984, -0.644308, 0.237210, 0.408205, 0.790844, -0.459350, 0.922009, -0.214878, 0.720270, 0.281951, -2.078843, -0.187262, 0.484475, 0.206875, 0.408172, -0.964247, 0.770193, 1.189002, -0.875251, 1.355666, 1.606735, 0.390186, 1.775172, 1.465068, 0.050377, -0.071914, -1.097418, 0.318219, 1.179317, -0.444139, 0.402958, 0.663078, 0.466497, -1.897668, -1.576414, 0.502513, -0.882007, -0.160975, -0.042891, 1.064051, -0.627360, -0.434418, 0.095608, -0.153836, 0.218954, 0.128237, 1.235171, -0.335874, -1.734261, 0.911400, 0.350893, 0.809636, -1.171943, 0.464698, 1.175104, -1.900901, -0.025425, 0.406024, 1.093599, 0.741210, -1.074187, -0.113963, 0.054027, 0.499148, -1.934338, 0.359452, -0.330697, 0.084156, 0.548030, -1.615265, -0.516798, -0.110019, -1.258339, 0.225121, -0.029273, -0.352252, 0.038000, 2.922897, 0.860672, 0.023219, -0.371106, 1.357774, -0.929375, -0.181150, -1.519803, 0.301891, 0.209642, 0.875006, -1.522879, -1.262935, 0.885418, 0.229146, -1.094486, 1.068061, -0.284890, 0.226158, 0.591172, -0.165347, 0.466614, 0.181490, -2.115568, -0.387427, -0.865010, 1.320431, -0.496358, -0.479626, -1.233676, 0.855247, 0.364460, 1.018782, -0.329787, -1.532578, 0.806446, 0.881082, 1.401609, 1.368758, -0.063228, 0.144286, -0.853197, -1.161441, 0.393941, -0.456803, 0.331404, -1.935883, -0.576243, -0.374308, 0.500627, 1.482619, -0.650121, 0.418620, 0.829698, 0.381839, -0.416514, -0.318647, 0.401735, 0.857991, -0.925324, 0.072773, 0.432449, 2.136667, 0.591740, 0.000894, -0.989923, -0.964892, -1.002391, -0.979134, -0.312657, -1.947916, -0.433204, 0.678539, -1.548827, -0.221351, -1.182740, -0.520955, -0.108246, 0.676326, 0.642880, -0.579660, -1.172029, 0.180481, 0.145567, -0.553995, -0.123572, -1.377090, 1.649688, 1.172847, -1.009557, 1.696461, 1.489116, 0.464210, -0.386753, 0.798605, 2.423591, -1.067660, 0.428387, 1.063113, 0.068168, -1.043389, -0.152927, 1.994861, -1.278035, 0.070708, 0.546025, -0.937271, 0.077218, 0.343963, 0.646248, -1.974246, -1.533420, 0.914345, -0.263439, 0.945293, -2.819857, 0.282333, 0.325182, -0.794679, 0.574447, 0.810553, -1.356496, -1.064521, 0.038704, 0.162952, -0.293545, 0.869195, -0.049179, 1.175396, -0.663484, -0.228122, 0.460879, 1.506221, 0.619085, 0.035940, -2.057078, -0.364081, 0.341804, 0.412966, -0.827478, -1.010396, -1.733934, 0.004979, -0.055362, -0.882838, -1.690594, -0.648414, -0.823177, -1.247144, -1.409382, -0.489024, 2.222220, -1.552172, 0.138275, 0.313593, -0.085941, -1.136765, -2.510321, 0.187420, -0.367543, -1.117285, -0.870430, -2.042670, -0.820943, 0.707323, 0.499850, -0.081534, -0.323482, 1.315124, 0.636423, 1.616224, -0.166473, 0.458523, -1.577853, 2.771953, -0.939610, -0.500617, 1.134954, -0.596695, -0.884782, -2.324834, -1.523583, -0.558413, 0.308515, -0.656419, -1.630020, 0.121766, -0.321717, 0.738284, -0.150970, -0.319377, 1.694014, -0.369920, 0.957237, -0.774793, 0.683244, 0.723942, -0.984938, 0.869628, -0.407774, -0.527981, 1.419893, 0.916213, 0.359340, 0.281274, 0.532969, 1.358405, 1.112822, 1.247943, 0.736070, 0.448360, 0.064406, 1.131104, 1.018164, 0.021234, -1.008104, -0.101913, -0.098800, 0.404524, -0.653387, 0.919976, -1.151311, 0.192772, -0.900603, -0.435119, -0.195076, 1.178728, -2.195306, -1.699499, 0.689685, -0.070511, -1.645161, -0.353244, 0.920113, 0.268945, 0.010245, 0.158192, -0.397984, 0.372596, 1.122764, 0.398309, 0.355010, 0.314810, -0.362476, -0.001019, -1.118581, 2.261982, -0.829255, 1.313405, 0.419686, 0.975783, 0.077348, -0.680541, -0.646671, 1.215562, 0.298133, -0.032200, -0.822940, 1.872837, -0.091985, 1.590571, 2.189615, 0.671482, 0.959947, -0.227700, 0.121324, -0.777780, 1.105815, 1.191487, 0.564404, 1.170724, -0.678744, -0.174674, -0.791007, 0.160115, 0.617460, -1.771890, -1.014007, 0.108575, -0.094883, -0.041363, -0.698639, 1.431201, 0.055950, 0.522269, 0.782784, 0.329436, -0.081920, -0.749310, 0.721772, -0.919258, 0.228491, -0.094053, -0.151695, -1.453414, -0.111173, 0.193356, 1.298390, 1.302749, -2.400853, 0.089225, -1.948672, 0.695801, -1.082552, -1.382506, -1.364050, 1.763154, -1.346791, -2.205111, -0.487307, -0.439755, 1.296285, 1.151645, 1.061861, -0.393782, 0.699981, 0.851676, -1.661902, -1.748502, -1.270151, 0.031468, 0.688376, 0.934216, -0.642324, -0.074840, 0.002208, 0.528916, -0.477442, 1.049474, 0.637585, -0.163023, -0.965330, 0.201402, 0.884500, 1.568763, 0.682966, 1.875984, -0.008904, 0.628444, 0.096640, -1.850374, -0.765162, -1.577299, -0.594107, 0.613427, 1.222398, 0.258605, -1.217890, -0.656070, 1.179256, -0.225954, 0.805915, 0.146057, -1.989709, -0.370744, 0.803784, 1.112917, 0.684902, -0.102059, -1.119677, -0.630912, -1.063871, 0.331905, -0.199834, 0.135074, 0.223982, -0.562146, -0.459546, -0.936665, 0.336523, 2.065681, -0.994555, 0.233976, 0.044739, 0.311842, -1.869856, -0.004827, 0.181460, -1.088715, 0.775957, 0.390985, 1.644371, 0.967996, 0.634975, 0.130202, 1.647675, 0.310514, 0.016864, 0.719848, -0.460764, -0.883501, -0.720083, -1.272417, 1.220531, 0.353710, 0.078132, 2.441542, 0.122551, -1.573647, 0.147233, -0.003191, 2.267303, -0.303616, 2.241765, -1.264280, 0.491044, 0.454064, -1.194816, -0.097203, 0.561550, 0.402088, -0.519705, -0.739811, -1.837483, 0.281988, 0.527873, 0.965765, -0.110451, -0.093962, -1.316626, -0.144071, 0.366697, 0.085085, 0.463985, -1.153225, -0.807744, 0.842997, -0.155893, 0.462589, -1.204939, -0.110900, 1.867847, -1.724745, 1.217191, 0.777816, -0.665992, -0.330855, 0.103533, 1.251164, -0.899884, 0.357965, 0.641076, -0.691929, -0.427051, -0.489703, -0.173351, 0.256565, 0.358023, -0.332414, 1.024814, -1.391588, 0.254832, -0.975139, 0.621087, -0.052536, 1.105053, -0.202236, 0.178073, 0.686421, -0.238463, -0.742911, -0.916062, -0.115710, 1.721554, 1.318805, -1.935127, 0.393952, 0.371033, 0.081142, -1.242742, -0.843665, 0.526875, -0.376163, -2.277156, 0.175020, -1.010671, -0.854628, 0.479450, -1.374991, -0.960397, -0.845392, -0.423776, -0.104226, -0.938695, -1.074392, 0.681518, -0.929067, -0.325328, 0.222046, -1.217866, -1.036856, 0.134252, -0.982169, 1.443324, 0.202745, -0.980911, -1.893088, 0.058971, 1.033726, 0.915244, -0.321112, -0.526253, 2.219343, -1.490468, 0.076183, 1.302339, 0.846440, -0.347658, 1.005859, -0.027592, -0.907004, -0.753489, 0.641079, -0.223017, 0.093323, -0.393854, 0.817221, 0.271533, -0.801750, -1.095142, -0.979342, 0.813610, 1.313003, 0.146132, 1.132320, -0.089613, -0.008423, 1.188470, -0.229290, -0.660246, -1.580706, 0.005675, -0.197319, 0.592839, -0.825189, 0.299222, 0.369708, -0.550421, -0.333250, 0.923634, -0.330064, 0.660208, -0.346987, 0.420864, -0.966817, -0.290246, 0.553422, 1.117027, -0.705553, -0.998050, 0.749883, 0.896945, -0.415782, -0.023040, -0.970122, -1.378783, -0.553771, 0.500768, 0.055368, 0.575297, 0.845588, 3.163929, -0.206427, -0.645871, -1.290812, 0.951909, 0.230984, 0.640766, 0.687113, 1.130615, -0.729285, 0.064664, 1.905062, -0.534741, -0.084036, 0.064332, 0.512932, 0.559215, 0.435457, 0.112609, -2.229610, -0.363946, 2.104479, 0.269953, -1.365839, -0.194544, 0.442989, -0.916018, -1.102157, -0.432396, -1.845771, 0.250807, -1.205893, 1.555903, -0.248013, -0.390279, 0.566889, -0.430657, 0.203078, 0.051656, 0.049730, 0.752098, -0.953414, 0.888385, 0.754414, -0.226461, -1.796367, -0.436016, 1.887462, 0.086257, -2.540550, 0.460174, -0.230777, -0.238524, -0.077088, 1.097227, -0.358950, -0.852384, -0.108136, 0.089569, 0.197142, 0.191996, 0.417871, -1.934974, -0.252158, 0.012013, 1.815527, -0.797995, -0.422927, 0.163177, -0.678507, -1.223878, -0.574484, -1.077810, 0.982228, 0.942096, -1.082984, -0.315990, 0.379165, -0.675427, 0.929860, 0.985859, -1.661204, -0.533872, 0.667684, 0.482606, -0.323883, 0.934162, -1.721741, -1.165999, -0.657639, 1.436376, 2.145906, -1.250238, -0.419071, 1.441633, 1.048542, -0.410452, -0.233101, -0.196294, 0.801836, -0.776944, 0.769657, -0.408917, 0.312041, -0.815606, 1.295848, 0.283211, -0.371126, 1.828149, 0.844474, -0.477986, -0.250453, 0.339010, 0.171278, 1.247593, 0.457815, 0.861051, 0.496436, 2.031770, -1.045570, 0.690956, -0.209337, -0.130950, 0.677668, 0.726198, -0.310236, -0.052020, -0.571697, 1.354022, -0.476486, -0.123084, 1.464579, 1.342380, 1.010569, -0.075310, 0.516703, -0.255226, -0.846005, 0.250577, 0.678318, 1.250262, -0.581924, -0.837191, -0.052001, -1.609562, -0.487951, 0.220230, -0.952890, -0.828554, -1.013836, 0.519786, 1.554351, 0.063381, -0.387435, 1.151662, 0.418503, -0.473609, 0.341987, 0.095320, 0.373941, -1.509981, 0.544070, 0.867939, -0.895089, -1.476093, 0.348520, 0.876986, -0.460812, -0.455791, -0.608436, 1.968207, -0.685293, -1.311222, -0.019769, 0.027398, 0.163930, 0.004945, -0.595132, 0.627187, -1.747154, -0.340727, 1.042050, 0.548571, 0.203586, -0.531577, 0.916435, 0.674560, 0.264932, 0.795920, 0.835980, -2.293107, -0.121481, -0.199880, -1.424760, 0.269736, 0.224302, -1.276516, 0.270943, -0.044360, -0.046254, 0.296121, 1.339972, -0.001777, -2.171376, 0.843261, -1.511411, 0.211905, -0.704402, 1.254118, 1.085893, 0.096693, 0.255339, -2.751762, -0.609475, -1.233330, 0.898609, -0.404407, 0.705861, -1.037741, -1.661959, -0.173625, -0.108401, -0.145233, 0.896454, 2.550848, 0.224521, 0.608556, 0.149591, 0.311065, -0.383015, -0.437713, 0.904401, 1.137051, -0.566618, 0.905288, -2.012599, 0.773460, -1.388191, 0.036844, -0.908313, 0.827142, -0.564213, -2.279496, -0.523770, 0.406829, 1.196736, -1.000412, -0.123413, -1.063237, 0.118590, -1.730392, -0.800990, -0.295268, -1.539280, 1.074800, 0.990241, 0.938344, 0.008648, 0.270552, 1.504636, -1.992391, 0.840412, 0.114271, -0.818257, 1.016207, -0.065419, 0.719255, -0.422184, 0.967049, -1.198595, 1.379827, 0.209556, 0.899116, -0.459669, 0.305595, 0.263592, -1.081652, 1.019637, 1.788260, -1.029073, -0.774219, 0.248703, -0.282321, 1.095758, 0.188455, 1.324632, 0.014700, -1.270554, 0.446974, 1.079532, -0.687912, 0.200267, -0.074585, -0.090963, -1.538364, 1.634101, -0.862753, -1.604892, -1.786448, -0.668017, 1.077949, -0.742842, -0.908906, 0.001696, -0.204625, 0.047484, -0.755280, -0.414966, -0.126783, 0.424308, 1.520521, -1.531182, -0.197597, 1.911759, 0.258339, 0.073342, 0.252828, 0.589639, -0.292894, -0.320263, -0.142690, -0.819674, 0.607538, 0.818658, -0.848856, -0.014286, 1.060685, 0.765401, -0.151427, -0.697303, 0.359113, -0.261557, -0.120428, -1.176533, 1.626248, 0.878618, 0.634200, -0.831657, 0.003904, -0.714046, 0.723078, -0.382527, 0.981350, 1.594958, -1.187487, 0.275221, -0.455454, -2.006084, -1.692158, 0.452176, 2.030479, -0.253968, -1.625709, -0.359816, 0.296818, -0.308585, -1.835828, 0.039642, 0.548832, -1.542726, 1.216405, -0.419782, 0.793618, 0.589789, 1.527137, -0.610310, 1.612953, 1.678237, 0.769253, 0.624159, -1.450371, -0.467088, -1.247703, -1.614081, -1.038799, -1.450659, -0.579249, 0.505138, -1.520023, 0.782548, 1.715204, -0.914999, -1.236802, 2.692922, -2.258207, -1.305801, 0.302295, -0.179105, 1.138938, -0.408856, 1.093325, -0.381717, 0.724882, -0.127229, 0.199732, 1.090881, -0.243553, 1.390858, 0.480334, -0.428308, -0.233091, 1.193697, -0.832480, -0.978503, -0.105364, -2.142534, -0.211938, -0.646781, 0.112030, -0.627763, 0.012003, 2.016760, 0.063875, 0.805672, -0.588321, -0.008961, -0.461640, 0.606676, -0.622125, 1.080776, -0.714583, 0.295806, 0.062171, 0.301859, -0.488713, 0.446270, -0.703305, -0.446033, -0.064286, 1.478045, -0.590927, 1.806130, 1.675596, -1.228243, -0.039367, 1.441270, 0.725322, -0.579056, -0.786712, 1.662601, -1.004281, -0.059023, 1.017297, 2.551392, -0.541552, 0.133698, 0.470523, -0.950493, 0.925239, -0.842815, -1.016801, 0.917952, 0.244602, -1.583197, 0.068994, 1.085170, 1.278637, -0.848786, -0.409601, -1.183971, -0.127387, -0.332900, -0.955443, 0.240069, -0.230033, 1.265599, -0.921187, -1.160511, -0.643802, 0.492340, -0.178216, -0.459460, 1.385097, 0.345105, 1.424889, 0.337604, -0.873427, -1.799328, 0.994206, -0.107136, -0.390023, -0.992338, -0.043299, -1.259286, -1.526205, -1.148374, -0.462512, 0.291424, -0.344562, 1.166278, 0.705970, 0.551753, 1.148313, 0.748673, -0.193060, -0.728595, -0.079233, -0.073007, 0.315085, -1.327685, 0.096009, 1.024534, 1.037750, -0.643653, 1.089484, 0.332034, -1.921824, 0.825178, 0.281066, 0.044033, -1.029022, -0.775630, 0.812846, 0.241263, 0.438447, -1.523057, -0.390679, -1.181283, 1.435409, -0.463888, 0.820352, 0.496726, -1.506960, 0.976491, -0.026568, 0.534467, 1.358570, 1.132596, 0.431385, -0.781128, -0.497669, -0.844447, -0.432680, -1.227080, -1.693156, 1.067945, -0.235915, 0.869937, 1.374782, -1.931202, 0.041417, 0.004889, 0.596894, 0.718105, -1.105204, -1.226033, -1.544991, 1.755095, 1.399246, -0.107737, 0.251172, -1.247777, -1.792983, -2.513066, -0.981324, -2.235411, -1.497458, -0.373662, -0.816140, -0.924858, -0.401730, -0.828722, 0.251567, -1.579836, -0.954801, 1.205989, -0.674743, 2.553820, 1.274381, 2.445274, 0.169583, -0.749331, -0.361765, -2.167931, 0.116224, -1.612522, 1.437178, 0.518369, 0.925946, 1.244001, -0.287581, 1.533695, -1.254095, 0.607090, -1.852139, 0.968363, -1.566348, 0.753822, -0.212007, 1.061535, 1.432382, -0.655633, -0.512329, 0.455304, 0.808479, 0.319832, 0.550245, -1.810582, -0.038852, -0.242902, -0.396533, -0.311935, 0.871135, 1.531660, -1.758956, 0.768577, 0.947164, -0.925342, 0.392665, -0.054169, -1.051204, 0.540079, -1.371150, -0.312267, 1.528846, -1.971221, -1.083212, 0.125064, -2.283222, 0.387995, -1.171463, -0.507675, 0.789502, 0.908121, 1.597176, -0.549736, 0.645642, -1.586370, -1.211177, -0.505284, -0.197607, 1.748958, 0.618762, -1.501589, -0.506183, -1.400233, 1.660637, -1.228425, 0.114984, 1.479920, 0.515851, -0.750474, -1.709443, 0.932454, 1.151439, 2.728647, -0.591449, 0.780029, 0.807998, 1.180349, 0.362442, -1.069364, 1.860791, -0.210566, 0.137039, 0.688006, -0.826477, 0.856380, 0.035750, 0.318166, 0.076763, -2.678424, -1.146179, -0.484830, 1.078147, -0.732110, -0.876544, 0.725752, -0.229854, -0.178575, -0.401983, 0.593291, -1.134600, 0.299971, -0.080647, -1.355316, 0.075274, 0.176714, 0.041601, 0.547252, 2.035405, -1.610458, 3.304648, -0.688604, 1.342285, 0.676487, 0.635658, 1.234083, -2.906488, -0.936661, 0.646795, 0.229119, -0.338055, 1.679101, -0.275683, 1.685993, 0.289674, -0.702806, -1.067165, -0.438921, -0.167604, -0.386343, 1.515304, -0.890131, -1.560939, -0.888819, 0.180830, 0.739056, 0.385542, 0.054245, -0.247060, 0.904239, 0.914448, -0.132387, 0.240149, -0.116692, -1.323525, -1.292280, -1.146213, -0.576850, -1.234097, 0.729883, 0.931078, -1.232934, 0.291481, -0.579669, 0.584854, 0.001575, 0.165488, 0.735198, -1.034704, 2.057282, -0.356086, -0.276032, 0.835456, 0.426434, 0.864435, -0.439887, -1.931927, 0.698827, 0.612898, 0.273311, 0.222419, -0.215456, -0.390212, -0.039740, 0.264148, -1.326302, -1.669482, -0.109314, 0.275399, -1.197135, -0.737204, -0.667844, -1.696526, -1.024282, -0.838153, -0.140210, 0.257477, 0.357491, -0.774643, 0.262323, 0.840553, -0.133754, 0.006898, 0.310085, -1.470412, 0.740721, -0.497280, -0.205097, 0.936296, 0.563652, -2.475411, -0.098824, 0.302977, 0.544696, -0.702273, -0.224016, 1.488240, 0.340930, 0.770135, -0.559111, -0.799438, 0.253213, -0.483138, 0.575897, -1.438512, -1.167161, 1.028894, -0.317772, 0.367781, -0.175546, 1.144240, -0.947621, -1.261444, -0.037873, 0.405451, -1.824173, -1.013213, -1.812381, 2.083658, 0.146819, -0.548985, -0.849855, 0.075940, -0.252510, 0.799214, -0.152363, 0.591349, 1.570370, -0.816732, -0.612182, -0.773485, -1.673563, -1.008755, -1.378837, -1.820998, 0.599782, 0.855464, 1.294876, 1.170179, -0.721917, 0.473666, 0.335093, 1.213475, -0.514751, -0.312647, 0.667063, -0.955969, -0.332286, 2.051668, 0.560123, -0.872217, -1.153726, 1.150429, 0.583915, -1.059292, 0.155215, 0.066745, 1.824363, 1.725572, 0.351913, -0.255321, 0.213747, 0.544924, 1.070085, 0.967913, 1.209858, 1.285793, 0.165512, -1.205263, 1.027338, 1.200385, -0.099305, -0.359821, 0.958892, -1.164842, 2.059499, -0.293423, -1.681142, 1.485179, 1.167770, 0.259798, -0.490254, -0.173270, 1.494035, 0.865552, -1.037125, -2.299628, 0.857576, 0.664129, 0.706929, -1.808215, -0.032979, -0.025548, 0.436533, 1.800980, -0.019184, 0.273754, -1.771974, 0.192992, -1.912216, 0.678894, 0.482888, 1.946389, -0.801648, 0.652475, -0.120300, -0.613245, -0.298331, -0.278718, 0.319872, -0.538019, 0.526453, 0.355085, 1.615025, 0.010841, -0.433678, 0.074101, -0.372801, -0.996397, -0.628399, -1.600311, -0.156809, -0.296482, -0.072060, -0.922985, -1.350325, 1.570328, 0.453621, 0.249506, 0.517055, 0.839752, 1.212247, -0.355969, -0.834899, -2.256092, 1.508950, 0.958231, 0.627800, -1.119957, -0.445233, -1.314693, -1.156792, 1.222933, 0.056463, 1.139011, 1.133834, -1.954986, 0.911514, 0.284220, 0.146273, 1.283033, -0.541273, -0.206320, -1.315816, -0.724174, -1.779215, -0.726110, 0.751588, -1.242158, -0.935277, 1.231239, 1.132305, -0.978927, -0.800345, 0.592947, -0.771981, -0.289251, -1.884033, -2.330992, -0.975545, 0.685898, -0.646062, -0.795275, -0.383030, 0.000804, -0.148897, -0.712477, 0.581027, 1.094729, 2.210095, 0.216186, 1.224661, -1.028130, -1.278383, 0.169229, 0.292108, 0.877600, -1.117363, 1.673167, 0.023445, -0.452841, -2.543711, 0.470517, -0.231038, -0.193303, 0.648278, -0.477477, 0.331214, 0.755570, 0.045610, 0.533408, 0.660642, 0.596556, -0.054480, 2.405887, -1.561524, 0.735585, -0.010487, -0.642784, -0.511849, 0.872943, -1.049492, 0.366129, -0.304031, 0.400193, -0.258380, -0.672031, 1.229638, -1.581198, -2.069448, 0.399057, -0.778449, -0.407193, 0.510858, 0.525076, 1.312252, 0.735877, 0.790376, -0.319886, -0.118436, 1.215148, -0.493103, 0.478139, -1.259715, 0.936273, 0.765667, -0.930100, 1.902143, 0.371726, -1.246367, -1.849395, 1.108525, 0.478887, -0.037993, 0.073749, -1.424276, -0.618281, -0.189405, 2.227087, 0.792688, 1.111051, 0.458507, 1.006177, -0.060704, 0.029167, 0.476807, -0.072299, -0.594517, 1.224957, 1.403397, -0.681391, -0.750033, 0.641810, 1.321338, 2.481421, -0.326549, 1.089872, 0.274751, -0.140629, 0.240780, 0.470571, -0.660207, -0.972413, 0.572010, 0.540627, -0.099027, -0.424190, 0.470737, 0.958158, -2.573777, 0.944992, 1.288011, -1.236674, 0.248440, -0.276320, -0.920838, 0.925885, 0.723091, -1.035724, 1.069552, -0.325077, -0.801796, -1.388701, 0.290580, 1.181303, -0.750910, -1.579917, -0.249554, -1.615275, -0.544449, -0.022362, -0.969041, -0.384764, -0.426919, -0.122412, -0.187072, 0.354822, 0.413978, 1.759249, -0.604203, -0.529838, 1.174600, -0.167540, -0.893276, 0.745195, -0.985655, 0.837010, 0.623226, -1.297125, 0.809458, -1.255280, 0.242493, -0.228881, -1.250483, -0.658232, 0.780472, 0.321582, -0.379518, -0.160174, -0.176678, -0.623748, 1.062364, -1.170764, -0.499050, 0.613400, -1.617004, 1.092308, -0.682719, 1.044111, -0.523858, 1.079999, 1.125256, 0.782317, -0.773193, -0.615507, -1.905080, -0.372791, 0.266970, -0.232541, 0.421497, 1.106063, 2.054860, 1.944606, 0.449349, -1.150533, 0.466411, -0.369180, -1.936198, 0.353288, 0.343445, -0.206814, 0.144677, -0.779067, 0.139409, 0.726236, 0.383863, -0.166169, 0.920671, 0.842909, -0.940188, -0.708426, 1.132965, -0.567276, -1.776396, 1.000999, 0.324230, -0.286391, -0.709427, -0.506209, 2.008922, -1.408515, 1.697712, 1.427112, -0.764681, 0.503639, -0.857550, 0.137164, -0.393988, -0.645424, -0.466057, -0.263195, 0.188539, 1.348784, 1.076512, 1.817029, 0.657550, 1.261102, 0.609959, -0.740831, 0.196078, -0.743779, -1.184573, 0.650455, -1.960792, 1.084642, -0.279466, 0.145483, -0.997303, 0.080009, 0.499684, 0.062574, 0.405807, 1.946896, -0.646038, 0.874223, -0.946148, 0.076162, 0.187738, -0.289608, 0.254565, 1.167982, -0.126705, -0.758044, -2.476125, 0.623089, 1.213360, -1.738868, 0.146560, 1.000399, 0.486940, 1.993934, 1.306430, -1.001753, 0.895397, -0.800027, -0.243823, -0.517256, -0.703311, -0.749954, -1.189894, -0.313332, -0.249444, -3.232671, 0.300845, -0.092155, 0.460650, 1.927405, 0.187557, 0.940361, 0.523489, -0.762684, -0.534927, 0.320713, -0.626661, -0.532747, 0.805675, 0.527081, -0.502156, -0.318472, 0.107356, -0.880202, 0.561103, 0.118711, -0.116539, 1.601423, 0.526576, 0.658094, -1.072707, -0.604475, -0.067742, 0.201239, 1.058724, 1.070100, 1.358473, -1.740627, -0.509498, 0.196283, -0.296208, -0.237573, -2.243055, 0.380953, 0.431689, -0.335545, -0.112867, -0.422986, 0.450012, 1.100065, 0.163314, -0.653564, 0.590977, 0.019812, -0.782144, -1.281447, -0.949235, -1.068316, -0.059770, 0.111876, 0.622994, 1.885855, -1.205939, -0.143202, -0.881391, 1.709445, -1.305343, 1.705924, 0.260919, -0.212098, 0.328828, -1.038350, -0.926027, 0.663006, -0.322986, 1.267319, 0.574209, 1.779133, 0.040785, 0.587367, -1.047119, 0.063418, -1.164881, -2.262731, -0.172727, -0.516903, 1.334643, -0.228500, -0.055950, 1.088091, -0.340928, -0.416462, 0.435197, 1.259548, 1.501645, 0.076284, 1.566954, 2.186026, -0.456482, -0.215436, 0.674405, -0.181536, -0.973145, -1.401503, -1.558267, 0.219778, -0.721509, -0.837303, 0.135807, -0.316957, -1.438389, -0.485605, 2.274061, 0.057356, 0.771073, -0.524855, 0.976812, -0.721963, -0.574090, -0.139908, -0.211448, 0.897787, -2.094179, -2.007833, -0.469451, 0.262724, -0.286139, -0.211648, 1.842703, -1.731299, -0.696976, -0.563637, 1.106420, 0.191047, 0.030182, 0.116623, -0.330102, -0.949236, -1.734516, 1.071167, 0.761497, 0.946811, 0.344153, -0.932545, 0.474702, 1.261517, 0.438154, -0.312641, 2.218739, -0.636284, 0.177427, -0.891629, 0.073059, 0.432573, 1.519030, -1.342308, -1.574174, -0.776080, -0.044776, -1.306273, -2.023080, 0.622893, -0.619993, -1.069019, -0.668112, 0.062935, -0.125840, -0.766712, -1.815272, -1.599102, -1.021402, -0.171320, -0.847002, 0.602906, -1.240145, -0.651905, -1.394652, 0.188672, -1.536856, -0.607298, -0.213942, 0.415434, -0.899680, -0.679669, 0.442699, -1.006434, -0.478302, 0.370300, -0.711353, 0.037286, 0.007108, -0.066142, -0.686171, -0.503276, -0.859378, -1.450166, -2.110347, 0.560666, 1.816826, -1.325563, 0.794742, 0.449122, -0.166732, 1.159933, 0.922354, -1.629065, -1.071650, -0.473958, -0.462836, 0.771678, 1.811227, 0.667743, -0.405866, -0.446916, 0.091320, 0.307196, 0.775608, -0.596851, -0.285515, -0.122423, 0.254493, -1.624426, -1.347769, 0.013939, 0.922401, -0.519619, -0.198171, -0.989232, -1.601648, -0.030778, 0.627954, -1.264892, -0.876560, -0.416890, 0.950213, 0.262130, 0.729413, -1.816510, 0.768735, -0.922000, -0.625709, 0.346602, -1.325937, 1.182077, 0.093946, 0.289798, 0.108753, -0.873945, 0.889817, 0.512309, -0.940536, 1.293848, 0.142711, -1.416883, -0.313962, 0.060443, -1.465414, 0.889088, 0.116119, 0.671001, -0.412079, -0.284037, 0.020374, 0.502909, -1.214663, 0.263673, 0.778859, 1.570789, 0.919372, 0.109478, -1.041236, -1.134445, 0.463988, -0.933648, -0.902000, -0.674116, -0.165772, -0.136524, 0.030182, 0.512634, -1.308213, 0.408942, 0.839246, 0.495097, 0.462561, 0.192995, -1.624213, -0.618026, 1.414266, -0.878879, -0.090491, 0.492939, 0.628859, 0.525880, -0.039021, 0.617737, -1.267245, 0.956660, -1.720725, 0.385655, 1.282341, 0.084000, -0.150844, 0.866546, -1.516527, 0.851712, 0.471689, 2.531880, 0.542086, 0.100295, 1.398098, -1.109739, 0.617787, -0.284909, -1.231408, 0.406820, -1.410199, 0.329036, 0.944494, 1.259406, -1.009261, 1.611839, -0.339957, 1.574730, -1.418461, 0.378514, 1.829653, -0.790625, 0.074517, 0.881604, 1.710198, -1.543031, -0.617113, -0.434464, -1.234593, -1.610144, -0.568606, 0.755789, 1.969215, 1.434471, 0.121619, 1.816659, -1.294432, -1.519971, -0.125081, 0.103685, -0.099768, 0.272657, 0.046338, 0.803169, 1.364452, 0.089515, 0.636846, -0.435049, -1.817132, 1.656341, -1.197036, 0.520743, -1.056417, 0.150290, 1.026894, 0.536498, 0.663240, -0.645223, 1.216482, 2.042433, 0.856201, -0.703970, -1.208082, -0.091632, -0.108666, -0.098345, 1.509354, -0.230640, -1.448274, -1.886524, 0.007456, 2.477842, 0.707337, -2.054148, -0.091582, 0.153579, -0.460725, 0.198817, 0.987613, -1.813821, -1.239454, 0.204163, 0.322734, -1.487123, -0.019094, 1.265777, -0.271168, -0.951826, -0.662571, 0.189142, -0.743110, -0.982357, -0.619117, 0.957933, 2.201865, -0.159187, 1.589898, -1.510805, 0.223414, 0.481670, 1.486963, -0.445288, -0.545946, 0.282803, 2.658768, 0.453831, -0.351686, 0.658675, -1.217944, -0.229624, 1.645123, 0.558230, 1.028391, 0.734674, -0.596569, 1.089123, -0.629326, 0.777236, 2.115886, -1.612976, -0.850611, 1.502406, 1.180521, -0.393392, -0.002920, -0.450433, 0.914858, -0.239300, 1.055565, 0.939469, 2.186308, 1.500550, 0.776769, -1.219393, -0.181543, -0.077796, -0.296048, -1.050082, -1.164428, -1.626741, -2.193989, 0.945202, 0.239424, 0.338808, 2.003991, 0.485541, -0.476657, 0.608667, -1.516347}, - { 0.971813, -0.920174, 1.846539, 0.629848, 0.343860, -0.418023, 0.196509, -1.013686, -1.319651, -1.013042, -1.224583, -1.107630, 0.744378, -0.328667, -1.674248, 1.161416, 0.972131, -0.569480, 0.743796, 0.751730, 0.022005, -0.893676, 0.611287, -0.259918, -1.227763, 1.042601, 0.325731, -0.480853, 1.523066, -0.348158, -0.975072, -0.611629, 1.136848, 0.474921, 1.187678, 1.289511, 1.501528, -2.782071, 0.803552, -1.408013, 0.730737, 1.321385, 0.382434, -0.342034, -0.436544, -0.560894, -1.522092, -0.041509, -0.969737, 0.041066, 0.337097, -0.748090, -1.187868, -0.786850, -1.258359, 0.060814, 0.773434, 0.433587, 0.896879, -0.001600, -0.512817, 0.910728, -1.512975, -1.102233, -0.035423, -0.467501, -1.068874, -0.216873, 0.368641, -1.982073, -0.058476, 1.155416, 0.506792, -1.439055, -1.501287, -1.194824, -1.634018, -0.485168, -0.565400, 0.421402, -0.066977, -0.534743, 1.346970, 1.597382, -0.959063, -0.213779, 0.906425, -1.332859, 1.143031, -0.034087, 1.032573, 0.942437, 0.304260, 0.028277, -1.107901, -0.795919, 0.300141, -0.319785, 2.304236, 0.966513, 0.418149, -0.588981, -0.032505, 0.715881, -1.054713, 0.112103, 0.450980, -0.472431, -0.897862, 1.297535, 0.189193, 1.541018, 1.662518, -2.520785, -0.395973, -0.608422, 0.239942, -1.757357, 0.061939, 0.614363, 0.684749, 0.002828, 0.408846, 0.002571, 0.270919, -0.584605, 0.827381, 0.641225, 1.003051, 0.048399, 1.097997, -0.207120, 0.925233, -0.347599, -1.346167, 0.254696, -0.771559, 0.019891, 0.077092, -0.390164, -0.542696, -2.276683, -0.165124, -0.591951, -0.053938, -2.427174, 0.549246, -1.046526, 1.143240, -2.201089, 0.249985, -0.325234, -0.369794, -2.147344, 0.030667, -2.855161, 0.499867, 0.601390, -0.039920, 0.755047, -0.754678, -0.390014, 1.947499, 0.904867, 0.798818, -0.309321, 0.005252, -0.670809, -0.075017, -0.018729, -0.335959, -0.566311, 2.013777, 1.496688, -1.387787, 1.153324, 0.106980, -0.082899, 0.587804, -1.155205, 1.085579, 0.369825, 0.417089, 1.021712, -0.669302, -0.758896, 0.210923, 0.253470, -0.212504, 1.052913, -0.834339, -0.955122, -1.501965, 0.044251, -0.089116, 0.154636, -0.468314, 1.942479, 1.130711, 1.554711, 0.897517, 0.133241, 0.767225, -0.541034, 0.952236, -0.127024, -1.076128, -1.306692, 0.139515, 1.760366, -1.612195, 1.024336, 1.058249, -0.530043, -0.659581, -0.332121, -1.381470, 0.717139, -1.315567, 0.023098, -0.430636, -0.297089, 0.113438, -0.623983, -0.043908, -0.347067, 0.769097, 0.578816, -0.549213, -1.051440, 0.863544, -0.719289, 0.040030, -0.225305, 0.455594, -0.848245, -0.083824, 1.066442, -0.809301, -0.935748, -0.506573, -0.691330, 0.452970, -1.568340, 0.095337, 1.097788, 0.484391, -0.076441, 0.918378, -1.009492, -0.861432, 0.487705, -0.307148, 0.776054, 0.300242, 1.140218, 0.645286, 0.916950, -1.916275, -0.076287, 1.318896, 0.290422, -0.894996, -1.127544, -0.964298, 0.413565, 0.533709, -0.028855, 1.717943, -1.305980, 0.366002, 1.339150, -0.114969, 0.703352, 1.129595, 0.358759, -0.974376, 0.655035, 0.971618, 0.478921, 0.870140, -0.688404, 1.579125, -0.486345, 1.295197, 0.246409, 1.380043, 0.396221, -0.566857, -0.554473, -1.665938, -0.365643, -1.619207, -0.176565, 0.014242, -0.294738, 0.436808, -0.685948, -1.435917, 0.806713, 1.312199, 0.904785, -0.466605, 1.105168, -0.663831, -2.719723, 1.384892, 0.507204, -0.623716, -0.521850, -1.347116, -0.380209, -0.355050, -0.144522, -1.331080, 0.827650, -0.997355, -2.578861, -0.311889, -0.630814, -0.149935, -1.488386, 2.417150, 0.009275, 1.545489, 1.421100, -0.299038, -0.857799, -1.470489, 0.631914, 0.356574, 1.123001, 0.661686, -1.220224, -1.751932, -0.033867, -0.479748, -1.062558, -0.161204, 0.237046, -1.089888, 1.117793, -0.897274, 1.024702, 0.481106, 0.821814, 1.698008, 0.284859, -2.886798, -0.601113, 0.846343, 0.115336, 0.986459, 0.950422, 0.894066, -0.251326, 0.367570, -0.491369, 0.984153, 1.201833, 0.134712, 0.298497, 0.370454, -0.542984, 0.844034, 0.603911, -0.817840, -1.607979, -0.636919, -1.321260, -0.442724, 0.847497, -0.139469, 0.853183, 0.863377, -0.355089, 0.198343, -1.283811, -0.650588, 0.682261, 0.190765, 0.987441, -0.583438, -0.255676, -0.655559, 0.241466, -0.201111, 0.244188, 0.388859, 0.948580, -1.755311, 1.834091, -1.680032, -0.727987, 2.572913, 0.719841, -0.186008, 1.287947, -0.299030, 1.760421, -2.423195, 0.026613, -1.619953, -0.077301, 0.746800, -1.073566, -0.750002, 1.798259, 0.717453, 1.662824, -1.126805, 0.218205, 0.619591, -1.511202, -0.942170, -1.394857, -1.411789, 0.676113, 0.366643, -1.712855, 0.297478, -0.000230, 1.145733, -0.716335, -1.835205, 0.089205, 0.008892, -1.566904, -0.402140, -1.292695, 0.187779, 1.725797, 1.543179, -0.920616, 0.719518, -0.668737, -1.601129, -0.767975, -0.341658, -0.746770, -0.970000, -1.065336, 0.665581, 0.098309, 1.094631, 0.406114, 0.602856, -0.335420, 0.386918, 0.199210, 1.615882, -2.408951, -0.380376, -0.069536, 1.405371, -2.024847, -0.386590, -1.046656, 2.673621, 0.920108, 0.471663, -0.281005, -0.793354, 2.093169, -1.379986, -0.513385, -0.386928, 0.968884, -0.301650, 1.508372, -0.148648, -1.161270, -1.733997, 0.974015, -0.314582, 1.800069, -2.159910, 0.203225, -0.343901, -0.665765, 1.140197, 0.010250, 1.164854, -0.226451, -1.194389, -0.963590, 0.920885, 0.193840, -0.783899, -1.798317, -0.707328, -1.207207, -0.844507, 0.697535, 0.691267, -0.939020, 0.059549, 0.283004, -0.443326, -0.055189, -0.593534, 0.892826, 0.406508, 1.316018, -1.844848, 0.148372, -0.559569, -0.364895, -0.469858, -0.941906, -0.099158, 0.831627, 1.189852, -0.976663, 2.835562, -0.127476, -0.548714, -0.079719, -1.930110, -0.811902, -1.033335, 1.896706, 0.109211, 0.505187, 0.607807, -0.817037, -0.670715, 0.315486, 0.302596, 1.796894, 0.568534, 1.437424, 1.223598, -0.910170, -0.350935, -0.905451, 0.953954, -0.856089, -1.593141, -0.191105, 0.431107, 0.084841, -0.032016, 0.900846, -1.074397, -0.139936, -0.107714, 0.090016, -0.099433, 0.374506, -1.302671, -1.236478, 1.501433, 0.300742, 1.589936, 1.893235, -0.277069, 1.365385, -0.004377, -0.004247, -0.177179, 0.170261, 0.937936, 0.795878, -1.595454, 0.439143, 0.028638, -0.471835, 1.336467, -0.014874, 1.259495, 0.407983, 1.405498, 1.327009, -0.822830, -0.488193, 0.250268, 0.253280, 1.340945, -0.205361, 1.224654, 1.227148, 0.327843, 1.307411, -0.952049, 0.914469, 0.606254, 1.096813, -0.813158, 0.281851, 0.152936, 0.846013, 0.857708, -0.410271, 0.060223, 0.434891, -0.489143, 0.125288, 0.353961, -0.003488, -0.028117, -1.571742, -1.519079, 0.193470, 0.122562, -0.700344, -1.355346, 0.237293, -0.443501, 0.662822, -1.198535, -1.069011, 0.487202, 2.241471, -1.375819, -0.934614, -1.675911, -1.713843, 0.974879, -1.738360, 1.601777, -0.105966, -0.377980, -0.469952, 0.562329, -0.558756, -0.186445, -0.333349, -0.998854, -0.083348, -0.449209, 0.923690, 0.268688, -0.611534, 1.254464, 1.308631, 1.126693, -0.257512, 1.420009, -1.121793, 0.787145, 0.424889, -1.497740, -0.636727, -2.255743, 1.646417, -0.712464, 1.075660, 0.396806, -0.584058, -2.412119, 0.711252, 0.381605, -0.842922, 0.376938, 0.229876, -0.046180, 0.289171, 0.827664, 0.194347, -0.001255, -1.991791, -1.303784, -0.558858, 0.473175, 0.886602, 2.228929, -0.535967, -1.766033, 0.005980, -1.272594, 0.579264, 1.129129, -1.179870, -0.653437, -0.328890, -0.285420, -0.354478, 0.977197, 0.113783, 0.226503, -0.665439, -1.370713, -0.239997, 1.174984, -1.134012, -0.581365, 0.539099, 1.524967, -1.312458, -0.153321, 0.217497, 0.602811, -0.876007, -0.234869, 2.577600, 0.343239, -0.805436, 0.073816, 0.000318, -0.646728, -1.523271, 0.743044, 0.594229, -0.750330, 0.285405, 0.464418, -0.082225, 0.250548, 0.900854, -1.744746, -1.234793, -0.294216, 1.651288, 1.633520, 0.015482, 0.052410, 0.653854, 0.936157, 0.087540, 0.562775, 1.357288, -0.031579, 0.468495, 0.647439, 1.540446, 1.867660, 1.021137, -1.439585, -1.180619, 0.122432, -0.428441, -1.893297, -0.794879, 0.832536, -0.178663, -0.522226, 0.608327, -0.591676, -0.717490, 0.869065, 0.878123, 0.038759, 1.013347, 1.233262, 1.121326, -1.818453, -0.855657, -0.875917, -0.764359, 0.498708, -1.105016, 0.738071, 2.519559, 0.910957, -0.208716, -0.085094, 1.695150, 0.955911, -0.671634, -1.259013, 1.454198, -1.542137, -0.478988, 0.051290, -0.582529, -0.847671, 0.247783, -0.497812, -0.151810, -0.558376, -0.033536, 0.203148, -0.802974, -1.374078, 0.731130, 0.527886, 0.030048, 3.744859, 0.087207, -0.158493, 1.009677, 0.258204, 0.125366, -0.337034, 0.054513, 0.407245, -0.250819, 0.915709, -0.488188, 0.056892, -1.411888, -0.923479, 0.080322, -0.991549, -0.298401, -0.490447, 1.223770, 0.299586, 0.162116, -0.898755, 1.599583, 2.296298, 0.045946, -1.799554, -0.709610, 1.954485, -0.008311, 1.066191, -0.150060, -0.774191, 0.300882, 0.059664, -1.699009, 1.096290, 0.010271, -0.034781, -0.171092, 1.085680, 0.268309, -0.962462, 0.105220, -0.044777, -0.248024, 0.102901, -0.942928, 0.339519, 1.140226, 0.953310, -0.114524, -0.368990, -0.772944, -0.576804, 2.357136, -0.634191, -0.265064, 0.461750, 2.215632, 0.304108, -1.139323, 0.424672, -0.601927, -0.594569, 1.377077, 0.124884, -0.180933, 0.437936, -0.882867, -0.621552, -0.073142, 0.430129, -0.704793, 0.471346, 1.557045, 0.843472, -0.024710, 0.415605, 0.898428, 0.147821, -0.144825, 0.367620, -0.142628, 1.009105, 0.028088, -0.682879, -0.755734, 0.216086, 0.711905, 1.269009, 1.052855, -0.954055, -1.217704, -0.076662, -0.041843, 0.510446, -0.947420, -0.283176, 0.226060, -0.466057, -0.061122, 0.946984, -0.855128, 0.540702, 0.525191, 0.161850, 0.028560, -0.409095, 1.284615, 0.325593, -0.847021, 0.513871, 0.205773, 0.582434, -0.245673, -1.126008, 1.128173, -0.716222, 0.946040, -1.303834, 0.272117, -0.759836, 1.294235, -1.801852, -0.264292, 0.761123, -0.488240, 0.030704, -0.576573, -0.799884, 0.382460, -0.326242, -1.020764, 2.012962, -0.493112, 0.777578, 0.338564, -0.096767, 0.975525, 0.738551, 0.193163, 0.648066, -0.617337, -0.805184, -0.049253, 1.032000, 0.552918, 0.389483, 0.217783, 0.784359, 0.949948, -1.573999, 0.132809, -0.210008, 0.227654, -0.222163, -1.515145, 2.102382, 0.530020, -0.140866, 0.187320, -0.397628, 0.347515, 0.487305, -0.376161, -1.595558, 0.486900, -0.299084, -0.115807, 1.076742, 1.647478, -2.662083, 0.931876, -1.473537, 0.945647, -1.537945, 1.006837, 0.872007, 1.154192, -0.135422, 1.421912, -0.006298, -0.726809, 1.638857, -0.768131, 0.059250, -1.286659, 0.223529, 1.472108, -1.562910, -0.516101, -0.978386, 0.261524, 0.067219, -1.549361, 0.547936, -0.104764, -1.216422, -0.378732, 0.564135, 1.452287, 1.876404, -1.680602, -0.822061, 0.937479, 0.615516, 0.599575, 1.533458, -0.890088, 0.522776, -2.854117, 2.320244, 0.388879, -0.389888, 0.455235, 0.295684, 1.563179, -0.871747, 0.309036, 1.594712, 0.210101, -0.492190, -0.662566, -1.338976, 0.566235, -1.288773, 0.718287, -0.876564, 1.182189, 1.034080, 0.542032, -1.434643, 0.647351, 1.308984, 0.658362, 0.341634, 1.367687, -1.035447, -0.756976, -0.831769, -0.312966, -0.260625, -1.389426, -1.250990, -0.160787, 1.137220, -0.299648, -0.248941, -0.581429, -0.631343, -0.475784, 0.360374, -0.618511, -1.569376, 0.332820, 0.575447, -0.972190, -0.953109, -1.652333, -0.416522, 1.190706, -0.916058, 0.166155, -0.086494, 0.003397, -0.188485, -0.024024, 0.333510, 0.529733, 1.768549, 0.754436, -1.503722, -1.835428, 0.548523, -2.067754, -0.148840, 0.883645, 1.827315, 0.647267, 0.849674, -0.953655, -1.808820, 0.161266, 0.632572, -0.453001, 0.123088, -1.612214, 0.442415, 0.193868, -0.012294, 1.517930, 1.124382, -0.756879, 1.162058, -2.235952, -0.367381, 1.364506, -0.040604, -0.181010, 0.886222, -1.775406, -0.933216, -1.519562, 1.422214, 0.209427, -0.155873, 0.210300, 0.134160, 1.211529, -1.802308, 0.515630, 1.641126, 0.689008, 0.043007, 0.589520, 0.935665, -0.813095, -0.720976, -0.693965, 0.682387, -0.047922, -1.558724, 1.987596, 0.932124, 0.887283, 1.912086, -1.299665, -0.077051, 0.126033, -1.148273, -0.120544, 0.578289, 0.801707, -0.304225, -0.469446, -1.017890, -0.962110, 0.806902, 1.311600, 1.187824, -2.629572, -1.202088, 1.273359, 1.887361, -0.642433, 1.306468, 0.766928, -0.950644, -0.303460, 0.169253, 0.698658, -1.105081, -0.058064, -0.883515, -0.198951, 0.560059, -1.973132, -0.167510, 0.157681, 1.615469, -0.314562, -0.772741, -0.298139, 1.643603, 1.720051, 1.530203, -0.623360, 1.214878, -0.970001, 0.910209, -1.006051, -0.090853, -0.036730, -0.022288, 0.576968, -0.012129, 1.735744, -0.043744, 2.147399, 1.423504, 0.888891, -0.941176, -0.914758, -0.264422, 0.154247, -1.014878, -0.011012, -0.062793, -0.365773, 2.523519, 1.783464, 0.368886, 0.680752, 2.454685, 0.716968, 0.712061, -0.053589, 0.593336, -0.427347, 0.580925, 0.588111, -0.363578, 0.477619, -0.970110, 0.653638, -0.255987, 0.537856, -0.322035, 0.018959, 1.341503, 1.378237, -0.518096, -0.291986, -2.383266, 1.354055, 0.322570, 0.474119, -2.190690, -0.235221, 0.932107, 0.223629, -0.605306, -0.010049, 0.399634, -0.443307, 1.176211, -0.708537, 0.787653, 0.024496, 0.225631, 0.697763, -0.303147, 0.394061, -1.406711, 0.933753, -0.417042, -1.621655, -0.005629, -0.104089, -0.018177, -1.396924, 1.182165, -0.915042, -0.989190, -0.931818, 0.199863, -1.164411, 0.035943, -1.123842, -0.726692, 0.475951, -0.101742, 0.674788, 0.847375, 0.148091, 1.000266, -1.646230, -0.378429, -1.106680, 1.467531, -0.083979, -0.752996, -0.011458, 0.715144, 0.761876, 1.115057, 0.086972, 0.590307, -0.649086, -0.589264, 0.866955, -0.418955, -0.923752, 1.245276, 0.106807, 0.634579, -2.190740, 0.652071, 1.903773, 0.280164, -0.324085, -0.354360, 0.018221, -2.151176, -0.498744, 0.230777, -0.569936, -0.036628, -1.789605, -0.856402, -0.853208, 0.730745, 0.190610, -0.229136, -0.504730, -1.447500, 1.542168, 0.150378, -0.891806, 0.984614, 0.882121, 1.240062, -0.189251, -0.336081, 0.882380, -0.469770, 0.186600, -1.199768, 0.883424, -0.361033, -1.321942, -0.153831, 0.770083, -0.426436, -0.964800, -0.953939, 0.299613, -0.793931, -0.787713, 0.153326, 0.575251, 1.056142, -0.630192, 1.135133, 0.296740, -0.362268, -0.515882, -1.379330, -0.091961, -0.801024, 2.285999, -0.117616, 1.558606, -2.038399, 0.856770, -0.980715, 1.326690, 0.429703, 0.666089, -1.557004, 0.324893, 0.588794, 0.370877, -2.240965, -1.030808, -0.363712, 1.606537, 1.056159, -0.225490, 1.362141, 0.952315, -1.919861, -0.534532, -0.962749, -0.553841, -1.181948, 1.173754, -1.570500, -0.806858, 0.989303, -0.132119, 0.356266, 0.430132, -0.821426, -0.616771, 0.794070, 0.227103, 0.165308, 1.187267, -0.605798, 0.945808, -0.514199, -0.363247, -0.275213, -0.141464, -0.554355, -0.753045, -1.087246, -0.962494, -2.295231, 2.494291, 1.174601, 0.621080, 1.303096, -1.748542, 0.657429, -0.911710, -1.794990, 0.662236, -0.751830, 0.629277, 0.847901, 1.597533, -0.212010, 0.227406, 0.279594, -1.693786, 1.231303, 0.010829, 2.509286, -0.287808, 1.092718, -1.409460, -1.129427, 0.939660, -0.619020, 0.917412, -0.103279, -0.335687, -1.525955, -1.494753, 0.542674, 0.129437, 1.894534, -1.294623, -0.498218, 0.176489, -0.110692, -0.420677, 0.713729, -1.598181, -0.957914, -1.337547, 0.023698, -0.285161, 0.232140, -0.781073, -0.040973, 1.183703, -0.692324, 0.670933, -0.414949, 0.242312, -1.121752, 1.063712, 0.071522, -0.790074, -1.060368, -0.967597, 0.667568, -0.512581, 0.508028, 1.216053, 0.298135, 0.101781, -0.197221, 0.223722, -0.952113, 1.767540, -0.716713, 1.029834, 0.094344, -1.914947, -0.432848, -1.600961, 0.524762, 0.199797, 1.255647, 0.243163, 2.695452, 0.189915, -0.518012, -1.006203, 0.754227, -0.808953, 2.201628, 1.221990, -1.157120, -0.308827, -0.029266, 0.072014, 2.096768, 1.621062, 1.756547, -0.599873, -0.129024, 0.323896, -0.628606, -1.562733, -0.946005, -0.414196, -0.384258, 0.472222, -0.699227, 0.618444, -1.038929, -0.762177, -0.296663, 0.950127, -0.057706, -0.720077, 3.099193, -0.478931, 0.511509, 0.180634, 0.667542, -1.792011, -0.303764, -1.652293, -1.280203, -0.062729, 0.596576, -0.263964, -1.193720, -0.303549, 0.216534, -0.796900, 0.040397, -0.251684, 0.297526, 0.912297, -1.034247, -1.017054, -1.206869, 1.352986, 0.969517, -1.595762, 1.099380, 0.543110, -0.479170, -3.358348, -0.127788, -0.558697, -0.456841, -2.552514, 1.062199, -1.648405, -0.676737, -0.572096, -0.510583, -0.111546, -0.774599, -0.382882, -0.827536, -0.272139, -0.176061, 0.757217, 1.647794, -0.819430, -0.867901, 0.838656, -0.361105, -1.078085, 2.461106, 1.291247, 1.366076, -0.027307, 1.716192, 1.454110, -0.984450, 0.562563, -0.404285, 0.570545, -0.616408, -1.294423, -0.260217, -2.380855, -1.358480, 0.665907, 1.369127, -0.519710, 0.425237, 0.089161, -0.558228, -1.228448, 1.984715, 0.326622, 0.560814, 0.179908, 1.102964, 0.634109, 0.836891, 0.298898, -0.430326, -0.394783, 0.579352, -1.177464, -0.198226, -0.121994, 1.923454, -0.006262, -0.706024, 0.305504, 0.588560, 0.601342, -1.400091, 2.379891, -0.824755, -0.056605, 1.274209, -0.408111, -0.527862, 0.041188, 0.380470, -0.451442, 0.363334, 1.402236, -0.232648, 1.329393, 0.402984, 1.173035, -0.467945, 0.522728, -0.533722, -0.656040, 1.288262, 1.193023, -1.313586, -0.340013, 1.489951, 0.474619, 0.362209, 1.583132, -1.180411, -1.787519, 0.829754, 0.722097, 0.873255, 1.238939, -0.517981, -0.229627, -0.422582, -0.624532, -1.337405, -0.737128, -1.412669, 0.986173, 0.438277, -0.019205, 1.021370, 0.598993, -0.148298, -0.763043, 0.579651, 0.422510, -0.509580, 1.072799, -0.983634, -1.027078, 0.749448, -1.316331, -2.035858, -0.902220, -1.118457, -0.350836, -3.290744, 1.538079, 0.593238, -0.548930, 1.220102, -0.021955, 0.441516, 1.193944, -0.977958, -0.792941, 0.333881, 0.459984, -1.270217, -0.316534, -0.474043, -1.435200, -0.098169, -0.146348, 0.302231, 0.018440, 0.451915, -0.408195, -0.160546, -0.148002, 0.170020, 0.577289, -1.218128, 1.333437, -1.782829, -0.953887, 0.193308, 0.009397, -1.558472, -1.079982, 0.967111, 0.935985, 1.104000, 0.306498, 0.048959, -1.535052, 0.218331, -1.639868, 0.246992, -1.486356, 2.848007, -0.181802, -0.927040, -0.666915, -0.692319, 0.473089, -1.191594, 0.467454, 0.529816, 1.023217, -0.796036, 0.664019, -0.996616, 0.182204, 0.242223, -0.030521, 0.794364, -0.692690, 1.744260, 0.251815, 0.283903, -0.590698, -0.774000, 1.273107, 1.231728, -1.476550, 0.349324, -1.163586, 0.503046, -0.708940, -0.720347, 0.795058, 0.933600, 1.018722, -1.971080, -0.157388, -0.907509, -1.537901, -1.533309, -0.783092, 0.334103, 0.536473, 0.074305, -1.499410, 1.870492, 0.188172, 0.301038, -0.524217, -0.600346, 0.296362, 1.886847, -0.532337, -0.120864, 0.855696, 0.948470, -0.873934, 0.411673, -0.108981, 0.239930, 0.517267, -1.673661, 0.630848, -0.781659, -2.124833, -0.147121, 1.412322, 0.066195, 0.024525, 0.491079, -1.417892, 0.594024, -0.105015, -2.475106, -0.323457, -0.111461, -0.727591, 0.477356, -0.840608, 0.328171, -0.234355, -0.424616, -0.526582, 0.626653, 1.784402, 0.362903, -0.267303, -0.782190, -0.909535, 1.244296, -0.407208, -0.119454, 0.389337, 1.345816, -0.735962, -0.924169, -0.607997, -1.319383, -1.333291, 0.722979, -0.680176, 0.220947, -0.298770, 0.852112, -0.611865, 0.895760, -1.391772, 0.390544, 0.453035, 0.344289, 1.386752, -0.419754, 0.070027, 0.901925, -0.629054, -0.525925, -0.224853, -1.738995, 1.056784, 0.283250, 1.673737, -1.492004, -0.807594, 1.616719, 0.059522, -0.525472, 2.103395, 0.618304, 0.048548, 0.434617, -0.442420, 0.647397, -0.853310, -0.183788, 0.047155, 0.066744, -0.433075, -0.912800, -0.345984, 0.969438, 1.108527, -1.094352, 0.927107, 0.654865, 0.999573, -0.500909, 0.234292, 0.298394, 0.071158, -0.753990, -0.024070, 0.394929, -0.313079, -1.811564, 0.674493, -1.397763, 0.922982, -0.267128, -0.957053, 1.480111, 0.353777, -2.088970, 1.858404, -0.040560, -1.235375, 0.139376, -0.983130, 0.240955, 0.714288, 0.885126, 0.220309, -0.792366, -1.187943, 1.461065, 0.183228, 0.423110, -0.580854, -0.690032, 1.093411, 0.662932, -0.005757, 0.767360, 0.520753, -0.617891, 0.317027, -0.373111, 1.942600, 0.854538, 0.127914, -0.318061, 0.339670, 1.777531, 0.867699, 1.043440, 0.221468, 0.447914, -0.200078, 0.199318, 0.551104, -2.190970, 0.255184, -1.608382, -1.278952, 1.571371, 0.249518, 1.058376, -0.789240, 2.812099, 0.725047, 0.542104, 0.256587, 0.239273, -0.114991, -0.099124, -1.114297, 0.628005, 0.082941, 0.307606, 1.056695, -1.765013, -1.586355, 1.027566, -0.065029, -0.635301, -1.667406, -0.513803, 1.136289, 0.122947, -0.146331, -1.145963, 1.184713, 1.233809, 0.176630, -0.593536, -0.962742, 0.508538, 1.265618, -1.282028, -1.208776, 0.736253, 1.441993, 0.852333, 0.540907, 0.275650, -0.861491, 0.549781, 0.364437, 1.706620, 0.551301, 1.011261, 0.667913, -0.666879, 0.505472, -1.109132, -0.019596, 0.736578, -0.261241, -0.603579, 0.487883, -1.498205, -1.385296, 1.253567, 0.527889, 0.072070, -1.229519, 0.021725, -0.232425, -0.457872, 1.274671, 0.864985, 0.141963, -0.103384, 0.625382, 0.850684, 0.098495, -0.889554, -1.130785, 0.031865, 1.588821, 0.963561, 0.442547, 1.164780, 0.754968, -2.020823, -0.621038, -0.944792, -1.131911, -0.987944, -0.638715, -1.900232, -1.561238, -0.561367, -0.448166, -1.050050, 1.056443, 0.441451, -1.391055, -0.816149, 0.776623, 0.159550, 0.692669, 0.344331, 0.042670, 1.713334, -0.364159, -0.390255, 1.319268, 0.933050, 0.309050, -0.592574, -1.628771, -1.857893, -3.068927, 0.214256, 0.302144, 0.254882, 0.438567, -0.278715, -0.955446, -1.259480, -0.479821, 1.476324, -0.152102, -0.076762, 2.891149, 1.164605, 0.449336, 1.181607, -0.761865, -0.339467, -0.930732, 0.267239, -0.159446, 0.077732, -0.145504, 0.879262, -1.327493, 0.737494, -1.304277, -0.824024, -0.479485, -1.208102, -0.622517, -0.598328, 0.673618, -0.330795, -2.187228, 0.322942, -0.373992, 0.803198, -0.039636, 1.115615, -0.060927, -0.688936, 1.059522, 0.224974, -1.749339, 0.182948, 0.100304, 0.058683, -0.416857, -0.123788, 0.216024, 0.295013, -0.640923, 2.268791, -0.326884, 1.283744, -0.624295, -0.712606, 0.246953, 0.354621, -0.986225, 1.007678, -1.115502, 0.878721, 1.689297, -0.383738, 1.043325, 1.691676, 1.486106, 2.696296, 1.178405, 0.221530, -0.908419, 0.328012, -0.374297, -2.623704, -2.309197, -0.716143, 1.266856, 0.346911, -0.265984, 1.047110, -0.112382, 1.365114, -0.030201, 0.533709, -0.332707, -0.261632, 0.946086, 0.064392, 0.794587, 0.437872, 1.562116, 1.256813, 0.574278, 0.349693, -1.506280, 0.465180, -0.268917, -0.551112, -0.632856, -1.891182, 1.499568, -0.671930, -0.080869, -0.487188, -0.337470, -0.673157, 1.129903, 0.031568, -0.437237, -0.576593, -0.897238, -0.104980, 0.087607, 2.342418, 0.864323, -1.211711, 0.640604, 1.931100, -1.033041, 1.807031, -0.609410, 0.192863, -0.230001, -0.204107, -1.257146, 0.235375, 0.497319, -0.522283, -0.047603, 2.247055, -0.472672, -0.742728, 1.887584, 0.297853, 0.019960, -0.346045, 0.642405, 0.908946, -0.190561, -0.903710, -0.200454, -2.026911, -1.987453, 0.441738, 0.803257, 1.005574, 0.304628, -0.810955, 0.719511, -0.061451, 1.819792, -0.801520, 1.559348, -0.082772, 2.704689, -0.026683, 0.844406, -0.694418, -0.047838, -0.671424, 2.624848, 1.394493, -0.180582, 0.721058, -0.125405, -0.871509, -0.265418, -0.435092, 0.514038, 0.000100, -0.302822, -0.822031, -0.010094, 0.864020, -0.714704, -1.123714, 0.660663, 0.336561, 1.147660, -2.273621, 1.129006, -0.178031, -1.377156, 0.792094, 1.170925, -2.218573, 0.337177, -0.612150, 0.719061, -1.819574, -0.947904, -0.242153, -1.994135, 0.836154, -0.569495, 0.998790, 1.436393, 0.080266, 0.314516, 0.891994, -1.376253, 1.360397, -0.165339, 0.866988, 2.559131, 0.777232, -1.187380, 1.287731, 0.094124, -0.730634, 0.485846, 0.513444, -0.818649, -0.455261, 0.580234, -0.878480, -1.731625, -0.131472, 1.166456, 0.910154, -0.902469, 0.590506, 0.428243, 1.010460, 2.472925, 0.255461, -0.858515, 1.170253, -0.357613, -1.214351, -1.245906, 0.238280, 0.082317, 1.852567, -1.318894, -0.858178, 0.339556, -0.643254, 0.907428, -0.033898, 1.877326, 1.533348, 0.975519, -0.446442, -1.541719, -0.984386, 0.018960, -0.697507, 0.559199, 0.723013, -0.773009, 0.493163, -1.300100, -0.493068, 1.902532, 1.547151, -0.303401, -0.508648, 0.270874, 0.507754, -0.616424, 1.134995, -0.937899, 0.238074, 2.290282, -0.390994, -0.975604, -0.155326, -0.178728, 0.511132, 0.398456, 1.100996, -0.757965, 0.870789, 1.209118, 0.617684, -0.132987, 0.129870, 0.179757, -1.401115, 0.496647, 0.496407, -0.901952, -0.121360, 0.549526, -1.048672, 0.090208, 0.596081, -0.445324, -1.725782, -0.956257, 0.226075, -0.248751, -0.247744, 1.002601, -0.774292, 0.167107, 0.533074, -0.040924, -0.157621, 1.437727, 0.304615, 0.319718, -0.303391, 2.116110, -0.405676, 1.252120, -0.037453, -0.008630, -1.969046, -0.692743, 2.409692, 0.126349, 0.636677, -0.437878, -0.823856, -0.162109, 0.868169, -0.689817, 0.275756, 1.306606, -0.073079, -1.154076, 1.638784, -0.192958, -1.113801, 2.071736, 0.495999, -0.046639, 0.236917, -0.719900, -1.269621, -0.803141, -0.634999, 0.167393, 1.458770, 0.944166, 0.217359, 0.934394, -2.149999, -0.102730, 0.291910, -0.483770, 1.106285, -0.261264, -0.495627, -0.504177, 0.268520, -0.197266, 1.430473, -1.499636, -1.068286, 0.035220, 1.113044, -1.479456, 0.756326, 0.319994, 1.437050, 1.778368, 0.761751, 0.188487, -1.126828, -0.167963, 1.391164, 0.626894, 0.996698, 0.342408, 0.252847, -0.223673, 1.989495, 0.206736, -1.098589, -0.939435, -1.544804, -0.940315, -0.814343, 1.727745, -0.211864, 1.713724, 0.622814, -1.097588, -1.328360, 0.464264, -1.404117, -2.184486, 0.319263, 0.412176, 1.341600, 0.036501, -1.143893, 1.207517, -0.743986, -0.225329, 1.573940, -1.041914, 0.389225, 1.620758, -2.315213, -1.738401, 0.077456, -1.885578, 1.180387, -0.651181, 0.169728, -0.838826, -2.134971, -0.867158, 0.502595, 0.142177, 0.049358, 2.363822, -0.887378, 2.034538, 2.519930, 0.049951, -0.876273, -0.980878, 0.456311, 0.778226, -0.144836, -1.291349, -0.797972, -1.301330, -0.309712, 0.826805, 0.580028, 0.551396, 1.410279, -0.236090, 1.064316, -0.379266, 1.010815, 0.765353, 0.612462, 0.533685, -0.734670, -0.702826, 0.902122, -1.025042, -1.077872, -0.280234, 0.768349, -0.873531, 0.617642, 1.164467, -0.982887, 1.284477, 0.507335, -0.189306, 0.837987, 2.037528, 0.484350, 1.602050, 0.263021, 0.097864, 1.608288, -1.080719, -1.339452, -0.861968, -2.282254, 0.797448, -0.025785, 0.823465, -0.930541, 1.080138, -0.105426, -0.149637, 0.728237, 0.958368, -2.512169, -0.648876, 0.450217, 0.471417, 0.069004, -0.112511, -0.836981, -0.780356, -0.401388, 0.631717, -0.709272, -0.169853, -0.867400, -0.114735, -0.250278, -0.589930, 1.565497, -0.242609, 0.531088, 0.315663, 0.459644, -0.195170, -0.230764, 0.378899, -0.062841, 0.695626, 0.121692, -0.879932, -2.399155, -1.839934, -0.566015, -0.406802, -0.996987, 0.963469, 1.014006, 0.270777, 0.619836, 0.330515, -0.433092, -0.610199, -0.454567, 1.874223, -0.812274, 1.479860, 0.293079, 1.079191, -1.665428, 0.698277, 1.251763, 0.217812, 0.816184, -0.205709, -0.452428, 0.672523, -0.922743, -2.879743, 0.675595, -2.220519, -0.298541, 1.404589, -0.509544, 0.204987, 1.988579, -0.843112, -1.309876, 0.018853, -0.272084, 0.799356, 0.050541, 1.056019, -0.222319, 0.227980, 1.184379, 0.032781, -0.264699, -0.110375, -0.215949, 1.965842, 0.170879, 0.928995, -1.201973, 0.418469, 1.172599, 0.950635, -0.945837, -1.105076, 0.811742, 0.990821, 0.042311, -0.959333, -0.666812, -1.304557, 0.475595, 0.002756, -0.720316, -1.420150, -0.341490, 0.796456, 0.070078, -0.053087, -0.748564, 0.117776, -0.935660, -0.978098, 0.656585, 2.443043, 1.158344, 1.581965, 0.849176, 1.335384, -0.821780, -1.552891, 0.134091, -0.475488, -0.316487, 0.493461, -0.685609, 0.750872, 1.335694, -0.058513, 1.445563, 1.201822, -0.946800, 0.281683, -1.246872, 0.130106, -1.172482, 0.874065, 1.029111, 0.337881, -1.866338, 1.405511, -0.405088, -0.902345, -0.362323, 0.481963, 0.789111, 1.150148, 0.088632, 2.682568, -1.272945, 0.844879, -1.080114, -1.274087, -0.026501, -1.314465, -1.031805, 0.299062, 0.808069, 0.628225, -0.547387, 0.714948, -0.247041, -0.120229, 0.284313, 0.693740, 1.314882, 2.263302, 0.319014, 0.165651, 0.571691, 0.623252, 0.260181, -1.833646, 0.990031, -0.289431, -0.409693, 1.082961, 1.152201, -0.348899, -1.637911, -0.213421, -0.178989, -0.492583, -0.347373, -0.099031, 1.177058, 0.062711, -0.416057, 1.449955, -0.251558, -1.009918, -1.014540, -3.107098, -0.343748, 1.482357, -1.136439, -1.685111, -2.002580, -0.130317, -0.088109, 0.261270, -0.539753, 1.846484, 0.450707, -0.319699, 0.858138, -0.786194, -0.413516, 1.465221, 0.812131, 1.751616, -0.586267, 1.053182, -0.389006, -1.207141, -0.456188, -0.682035, -0.113984, -0.218750, -0.813892, -1.150459, 0.365009, 0.257702, -0.808845, 0.332905, 0.330440, -0.733580, -0.621455, 1.069198, 0.232972, -0.173688, 1.089804, 1.077080, -1.537364, -1.160265, -0.827133, 2.969784, -0.380828, -0.174024, 0.895129, -0.595677, 1.369341, -0.742931, 1.821479, 0.840993, -0.288871, 0.458630, 0.666277, 0.241158, 0.191612, 0.036389, -1.152994, 0.349647, 0.611416, 1.108040, -0.449885, -1.075631, -0.057494, -1.911325, 0.083033, -1.049838, -0.432355, 1.244782, 0.986063, 0.436598, -0.085157, -0.472627, -0.655530, 1.098706, 0.290803, 1.287088, -1.332629, -1.046975, -1.254226, -0.197748, 0.446187, 0.338644, -0.701213, 0.828524, 0.645492, -0.813817, -0.697010, -0.083626, 0.874070, 0.631169, 0.167962, 1.979197, 0.518246, 0.002537, -0.093608, 2.074943, -0.969589, -0.767457, -0.626315, -1.170803, 0.365757, -0.286812, 0.310755, 0.644034, 0.386650, 0.026644, 0.668145, -0.023332, -2.174154, -0.590257, 0.185610, -0.279616, 0.150596, -0.533425, 0.325675, -2.208292, 1.302406, -0.350507, 0.749857, -1.247586, -0.024519, 0.832427, -0.210042, 1.213729, -0.692158, 1.393602, 0.496035, -0.017001, -0.157795, 0.422846, -0.690903, -0.478644, 0.271725, 1.028905, 1.307697, -0.873003, 0.375732, 0.223415, 1.521141, -0.103832, 0.845385, -0.902537, -0.191197, -0.520706, 0.715710, -0.144872, -1.069634, 0.228421, 3.094215, -0.241571, -0.174412, -1.226843, 0.841745, -0.277049, 0.227562, 0.667720, -2.239697, -0.793509, -0.910455, 0.027401, -1.830518, -0.243316, 0.168970, -2.414641, -0.147897, -0.620089, 2.558652, -0.000057, 1.661484, 0.677712, 2.488127, -0.568762, -1.201332, -1.723140, 0.158921, 0.460419, -0.740550, 0.564684, 0.171478, -0.563114, -0.109429, 0.823484, -0.738401, 0.920455, 0.791381, 0.334914, -1.621531, -0.847671, -0.130315, -0.537176, -0.700846, -0.494190, -1.096820, -0.056814, -1.836258, -0.896149, 1.626858, -0.272714, -0.551725, 0.166678, 1.343282, -0.211742, 0.018142, -0.362325, 0.464796, -1.238167, -0.684141, 0.535091, -0.758839, -1.982718, -1.209737, 0.433154, 0.338704, -0.048311, 0.069631, -0.278169, 0.595718, -1.162647, 0.163905, -0.128582, -0.887832, -1.531715, -0.481626, 0.628036, -1.796754, -1.570508, -0.604021, 0.234261, 0.320008, -0.765202, 0.087421, -0.393904, 0.234731, -0.405125, 0.246564, -0.172009, 0.076080, 1.493095, -0.827760, 1.292185, 0.130032, -1.630737, -1.161111, -0.390723, 0.211540, -0.496253, 1.050335, 0.183662, -0.347180, -0.676433, -1.164106, -0.195154, -0.222503, 0.711885, -0.718925, 0.764717, 0.081814, -1.651702, 0.639418, -1.388937, 0.500354, -0.029187, -1.250546, 1.773692, -0.272374, 0.326819, -0.261313, -0.738117, 2.001954, -0.761357, 0.362197, 1.516437, 0.196018, -0.989632, -0.910374, -0.223146, 0.504880, 0.336588, 1.570307, 0.663175, -0.365961, 0.720082, 0.255691, -0.398342, -2.252949, 0.896608, 1.016340, 0.307385, -0.019093, 1.362621, 0.333366, 1.089450, -0.792678, -0.048040, 1.142190, 0.357204, -0.004240, -0.250458, -0.798590, 0.417309, -1.303907, 1.389667, 0.522712, 0.006600, 0.370091, -1.109512, -0.357632, -2.379878, 0.603968, 0.018663, 0.055206, 1.358885, -1.209405, 0.025900, 0.356927, 1.959827, -0.287294, 0.896338, -0.218103, 0.970927, 0.712794, 0.578861, 1.404701, 0.318558, 1.164792, -1.409568, 0.973918, -0.815496, -0.214010, -1.409923, -0.925293, -0.357835, -0.667657, -0.276477, 0.486161, -0.874614, 0.180940, 0.532994, 0.121336, 1.054200, 0.760681, -0.078399, 0.621015, 0.607999, 0.352320, -0.106320, 0.320432, 0.383911, 0.266024, 0.697116, 0.867710, 0.080710, 2.035456, -0.281142, 0.025039, 3.302772, -0.296941, -0.190671, -0.173798, -0.834814, -1.201109, -0.434305, 0.405013, 0.308712, -0.711574, 1.803364, -0.070834, 1.233203, 1.552413, -0.285635, -2.380870, 0.480311, -0.107579, -0.458753, -1.096381, -0.210808, -0.199755, -1.408006, -0.482792, 0.724200, -0.050026, -0.055566, 0.018171, -3.453251, -1.452587, -1.605376, 0.473555, 0.836121, 2.006517, 0.919471, -1.828668, -0.215271, 0.910352, 0.224749, 0.486680, -1.428302, -1.787159, 0.171893, -0.737114, -0.275540, 0.247846, -0.354593, -0.260594, 1.422811, 0.609530, -0.197687, 0.843860, -0.856948, 1.198039, -0.882144, -0.249322, 1.893704, 0.853703, -2.073418, 0.648907, 0.765741, -1.588450, 0.612558, -1.239891, -1.501171, 1.242420, -1.883491, 0.718154, -2.456889, 0.451654, -0.135719, 0.519739, 0.491944, 0.277727, -0.680570, -0.075004, -1.013855, 0.577856, -0.443291, -1.673644, 0.092935}, - { 0.940526, 0.887387, 0.309132, -0.937364, -1.405484, 0.042481, 0.992950, -1.340081, -0.015140, -0.574928, -0.507835, -1.142446, 0.824822, 0.993765, -1.133806, -0.390372, -1.992765, 0.898597, -0.583480, 0.876658, -0.876132, 0.407157, 1.640619, 1.006239, 1.135340, 1.241958, -0.240657, -0.799536, -0.768057, 0.199818, -1.315046, -1.600416, -0.012148, 0.130446, -0.235852, 0.205656, -1.484646, 1.288140, -0.068559, -0.228333, 0.831898, 1.768803, -1.585690, 0.652062, 0.209220, -1.771986, -0.978867, 0.586275, 0.402439, -0.043299, -0.306034, 0.159427, -0.006557, -0.690996, 2.300789, 0.587313, 0.391062, -0.940961, -0.674125, 0.700082, -0.681964, -0.615783, -0.081372, -0.896282, 0.232699, -0.255126, -0.100263, 1.214195, 0.723305, 0.152433, -0.257539, 1.419703, 0.872340, -0.987622, -0.251330, 2.327261, 0.103543, 0.931798, 1.312482, 0.138533, 0.394271, 0.695938, -0.409393, -1.399902, 0.139501, -0.231048, 0.711327, 0.608661, -0.646272, -0.920056, 0.253304, -0.339334, -2.043987, 1.514823, -0.045538, -2.004462, -0.722375, -0.989673, -1.623197, -0.410901, -0.757147, 2.119746, -0.101556, -0.050354, 0.871860, -1.343920, -0.971318, 1.069508, -0.281959, -0.156714, -0.699701, 0.676886, -0.394877, 0.124446, 0.867944, 0.155741, -2.323891, -1.117519, 0.544463, -1.448807, -1.599253, 1.022935, 0.071111, 1.069493, 0.049684, -0.485061, 0.917281, 0.970418, -0.040711, 1.045886, -1.508376, 0.866566, -0.839336, -1.175106, 0.599689, -0.208608, 0.807379, 0.724269, -1.442641, -1.123863, 0.241164, -0.353247, -0.858006, -0.582642, 1.563841, -0.825886, 1.132508, -1.809314, 0.126486, 1.387790, -0.437504, -1.401641, 0.506998, 0.522143, -0.190632, 0.141195, -0.618607, -1.077614, 0.522254, -2.197108, 0.423611, -0.505221, 0.261767, -0.512533, -1.937629, 0.620771, 0.739900, -0.349168, 2.972752, 1.011305, 1.081848, 0.267255, 0.891520, 0.242948, 0.160616, 0.571391, -0.556764, -0.416337, 0.228978, 0.847622, 0.083379, -0.288222, -0.146149, -0.190783, 0.937473, 0.374239, -0.862612, 0.063180, -0.503953, -0.821632, 0.865393, 0.061638, -0.558521, -0.667048, -0.549572, -0.348509, 0.093502, -1.038754, 0.584890, 2.492065, -0.064212, 0.784852, 0.048595, -1.606579, 2.401086, -0.642349, 0.523450, 0.266800, 1.871073, 0.260841, 0.759216, 0.263080, 0.840160, 1.298602, 0.931528, 0.902908, 2.401204, -0.315305, -0.823406, -1.437014, -0.329049, -1.381237, 0.133680, 0.798418, -0.584474, -0.225122, 1.117085, 1.080177, -0.304421, 2.512603, -1.522030, -0.388842, -0.142835, -0.931814, -0.232359, 1.911014, 2.263468, -0.272604, 1.236671, -1.331730, -1.247643, -0.540547, -1.933454, -1.061987, -0.178697, 1.992812, 0.504918, 0.111620, -0.189832, -0.631413, -0.156127, -1.206439, -0.385447, 0.463096, -0.801485, -0.162023, 0.000562, 1.128822, 0.339864, 0.416473, 0.700814, -0.223725, -0.827491, 1.097825, -1.265630, -0.727988, 0.227635, 0.912893, 0.008795, -0.074968, 0.898770, 0.161034, -2.745800, 0.992101, 0.407895, 0.598136, 0.674322, -0.398716, 1.326816, -1.694708, 1.716335, -0.180579, 0.244268, 0.209196, 1.331395, 0.434155, 1.600800, 2.192872, 0.673845, -0.221391, -0.884999, -0.659403, -1.614005, -0.136580, 0.761343, -1.303276, 0.867821, -0.380751, -1.114501, -0.185373, 0.282322, 1.141597, -0.192928, 1.257557, -2.113192, 0.346356, 0.656475, 0.366368, 0.507368, -0.192517, 2.086732, -0.568287, -1.367349, -1.128475, 0.292438, -1.225625, 1.716491, -0.203610, -1.175708, 1.574390, 0.032061, -1.078944, -1.076593, -0.907408, -0.026308, 0.037099, -0.987890, 0.539579, -0.708428, -0.743176, -1.488049, 0.649591, -0.826594, 1.874313, 1.620186, 0.145343, 0.223312, 1.592611, -1.291578, -0.008859, -0.172940, -0.723387, 0.876983, -0.499470, -0.969061, 0.200791, 1.098158, 0.281714, -1.343299, 1.843204, -1.119645, -1.434076, 0.787892, -0.889741, 2.804718, 0.338952, 1.360404, 0.316914, -1.903448, -1.491209, -0.955582, 0.313923, 1.715639, -0.388586, -0.565613, -1.265825, -0.966466, -0.326571, 0.232721, -0.688230, 1.451941, -1.432288, 1.382565, 0.718879, 0.806800, -1.294727, -0.101493, 0.836169, -0.704357, 0.345892, -1.012159, 1.463798, 0.891712, 1.576033, 0.004615, -0.091832, -0.591403, 0.890560, -0.115643, 0.182762, -0.663205, 0.150053, 1.185333, 1.123098, -0.548641, -1.125101, -0.497673, 0.857784, 0.651230, 2.220247, 0.562432, -1.319893, 0.692175, -0.998087, 1.177240, 1.077739, -2.617096, -1.158213, 0.587090, 1.622966, 0.009008, -0.932717, -0.280580, -0.215901, 0.529568, -1.321549, -1.732153, 0.427205, 0.966982, -0.143685, 0.431669, -1.479178, -0.212818, 1.526083, 0.730856, 1.036207, -0.082696, -0.319906, -1.602095, -1.370153, -0.471111, -0.554854, -1.283618, 0.594372, -0.245750, 1.083385, -0.566870, 1.287830, -0.669923, -1.949077, 0.265545, 0.965428, 0.717874, 0.039618, 0.706706, -0.038704, 0.060564, -0.059399, 0.158943, -0.804668, -2.431096, 0.658742, 1.113609, 1.388871, 1.146664, 1.961212, -0.277887, 0.351079, -0.640366, 0.244719, -0.438159, 0.469400, -0.387198, -0.510851, 0.327828, -1.195682, -0.223334, 0.429879, 0.392374, -2.173770, -0.252019, -1.467999, 0.082957, 0.865147, 0.971516, 0.376630, 1.457638, -0.690048, -0.507254, 0.225998, -0.402772, -0.926409, 0.297716, -0.083123, 0.502191, 0.628109, 0.449516, -1.853666, 0.808515, -0.244907, -0.759893, -0.693971, 0.030414, -0.686166, -0.197380, -2.518680, 1.144789, -0.573087, 0.004007, -0.735187, 1.022803, -2.045648, -0.896991, -1.840741, -0.027391, 2.213709, 0.085896, 0.996516, 0.416912, -0.576612, 1.160453, 0.390934, -0.556056, 0.419952, -1.255214, 0.141892, -0.438810, 1.275985, -1.540116, -1.836285, 0.283771, 0.102123, 0.621224, -0.709577, -1.257253, -1.274538, 2.539695, 0.545706, 0.624028, 0.353077, -1.227228, 1.218095, -0.421982, 0.415457, -1.597139, -0.495200, -0.225658, 0.396558, 0.555077, -0.616111, 0.507593, 1.899810, 0.307952, -1.633628, -0.312383, -0.309716, -0.330314, 0.755856, -0.019170, 0.114432, 0.206483, 1.082221, -0.122932, 0.136367, 1.134921, 0.458193, -0.137511, -1.534386, -0.600983, 0.620910, 0.147590, -0.536225, -0.452255, 0.079495, -1.580624, -2.265837, 0.730491, -2.283147, 2.364879, -0.472926, -1.422249, -0.442355, -0.165429, 0.826578, 1.255601, -0.117737, 0.162070, -1.660082, -2.475524, 1.087775, -0.177648, -0.475232, -0.992624, -0.760889, -1.267435, 0.688817, 1.405906, 0.341179, 0.638841, -0.601002, -0.065936, 0.254887, -0.083637, -1.078369, 0.831542, -0.238792, 1.761856, -0.076984, 1.029634, 1.175075, 0.302846, 1.139395, -0.084567, -1.104801, -0.964944, -0.815327, 1.425555, -0.513680, 0.483789, -1.008315, -0.195667, 0.860141, -0.338004, 0.290731, -0.719580, 2.240007, 0.912252, 0.089787, -0.614922, 0.531358, -0.822009, -1.720064, -1.398278, 1.162112, -1.184831, 0.265589, -0.231697, -1.234419, -0.598225, 0.766560, 2.398124, -0.191674, -1.411627, 1.602533, 0.431152, 1.507087, -2.247573, -1.700305, 0.879822, 0.853328, -0.650790, 1.225139, 0.584583, -0.052447, 0.031025, -1.371664, -1.200770, 0.363609, 1.953235, 0.642444, -2.453701, 0.010915, -0.700079, 1.076349, 1.184752, 0.131645, -0.651101, -2.714039, -0.368345, 1.243199, 0.788225, -1.401640, -1.382137, 1.285882, 1.057002, -2.120762, -0.670265, -1.731633, -0.830834, -1.144851, 2.464682, -0.333216, -0.461933, 1.221566, -0.304211, 0.834752, 0.275251, -2.751639, 0.241242, 1.261281, -2.620539, 1.753883, -0.741609, 0.584930, 0.786554, 0.035789, 2.115420, 0.575085, 0.138786, 0.472845, 0.813167, 0.651782, 0.652535, 2.741705, 0.850771, -0.229544, -0.506982, -0.861370, -0.978247, -0.681520, -0.866314, 0.492584, -0.611082, -0.869338, -0.401526, -0.708807, -0.052963, -0.815406, 0.409059, -0.269102, -0.970492, -0.285170, 1.434604, 1.360422, 1.798268, 1.158577, -0.208801, 0.419049, 0.658380, 0.300169, 1.945927, 0.779334, -0.996911, 0.857130, 0.967446, 1.727473, -0.763530, 1.001292, -1.170105, 0.247736, -0.545548, 1.099868, 0.088913, 0.930548, 1.015224, 1.341713, 1.040489, -0.443463, 0.940143, -1.202178, -1.401692, 0.956253, -1.453889, 1.138730, 0.047507, -0.408518, 0.663838, 0.477821, 0.126877, -1.521904, 0.234010, -1.152321, 1.251971, 1.355889, 1.157867, 0.074907, -0.204920, 1.165760, 0.319168, -0.636174, 0.359267, 0.354501, 1.300310, 1.321581, -0.102251, 1.723456, 0.595957, 1.505832, -0.323219, -0.602265, 0.684557, -1.479206, 0.750292, 0.257895, 1.410151, -1.613866, 1.342770, 2.885222, -0.440332, 0.736052, 0.093906, -0.988739, 0.911747, 0.937869, -1.038208, -0.096772, -0.531313, 0.022134, -0.777897, -0.554110, 0.303482, -0.256398, -1.409659, -0.781860, 0.429085, -1.503121, -0.551766, -1.060799, -1.454215, -2.513233, 1.058468, 0.651489, 1.303681, -0.607029, 1.667378, 0.523476, 1.010740, -0.002082, -1.395638, 0.614751, -0.773249, 1.464555, -1.065634, 0.571230, -0.753449, 1.132764, -0.408891, -0.528530, 0.556729, -0.209366, 1.546020, -0.102627, -0.721234, -1.034548, 0.653230, 1.218829, 0.153500, 0.241851, 0.231240, 1.742368, -1.082954, 1.578017, -0.916967, -0.206152, 0.294879, -1.667612, -1.546908, 0.720675, 1.068973, -1.147804, 0.784052, 0.056616, -0.536692, 0.089015, -2.053860, 0.359396, -0.017881, -0.279121, 1.298982, -0.874506, -0.569842, 0.520096, -1.149758, -0.607831, -1.190130, 0.031831, -1.082223, -0.532112, -0.640784, -0.854931, -1.395686, 0.769793, -0.129004, 0.708788, 0.695424, -0.126532, -1.364286, 0.817777, -2.114746, -0.435771, 1.179339, -3.188931, -0.872089, -0.097222, -1.413917, 0.715516, 0.038682, -0.862494, 0.061328, -0.753394, -1.080710, -2.193052, 1.655002, 0.707736, 1.727937, -0.569483, -0.365498, -0.805186, -0.586932, -1.201593, 1.585724, 0.853430, -2.148236, 0.788765, 0.970394, -0.506235, 1.191214, -1.078663, -1.103025, -0.325589, 0.311707, 1.580385, 0.044905, 1.724720, 0.692422, -1.084512, 0.336065, -1.489352, 0.717867, 2.175291, 0.165281, 2.174848, 1.463336, 0.320850, -0.326204, -0.547052, -0.793737, -0.501631, -0.520167, 0.369639, 0.533181, 1.126470, 0.210579, 0.400558, 0.229428, -0.729577, 0.038107, 0.058491, 0.004158, 0.127478, -0.713990, 0.763348, 0.566215, -1.552309, -0.559973, -1.568112, 1.126845, 1.074668, -0.048499, 2.022139, -0.255659, 0.088336, 1.320908, -1.341480, 1.842938, 0.172599, 0.999700, -1.349347, 0.780501, 0.182180, -0.699305, 1.141438, -1.015053, 0.741596, 0.424962, -2.789942, 1.388358, 0.111885, 0.728245, 1.062062, -0.416011, -1.476984, -0.577584, -0.484234, -1.281961, -0.058160, -2.860554, -0.265195, -1.655357, 1.810852, 0.686490, -0.129861, -1.023600, 2.480591, -1.204899, -0.842177, -0.596075, -0.580947, -0.383060, -1.889659, -0.077926, 1.122478, 0.233547, 0.023356, 0.656460, -1.625884, -0.998433, -1.348194, 0.455943, 1.586826, -0.249676, 0.611781, 1.694345, 0.938767, 0.934505, -1.139524, -0.535455, -1.371842, -1.531794, -1.655446, 0.664407, -0.360252, 1.356037, 1.292781, 1.694829, -0.694999, -0.289380, -0.611472, 0.014235, 0.786110, -0.210534, 0.160611, -0.986672, 0.828771, -1.060977, -0.437840, 1.073428, 0.686817, 0.507301, 0.945078, 0.563399, 0.587414, -0.919150, -0.492664, -0.249485, -1.309486, -0.942244, 0.103900, 0.242000, -0.140187, 0.678244, 1.038158, 1.591696, -0.498914, -0.713459, 1.011112, -0.418695, 0.179414, -0.744385, -1.061182, -0.639207, -0.309561, -1.107782, 0.442813, 0.733172, -0.312097, -0.008863, 0.217318, -0.309280, 0.703689, 2.082483, -0.025158, -0.217275, 1.111380, -0.312404, -0.501761, -1.319379, 0.843017, -0.491185, -0.328615, -2.157022, -0.982700, -1.233174, 0.275016, 0.237246, 0.543454, 0.147259, -1.825428, -0.831559, -2.241464, 0.317358, -0.254904, -1.063616, -0.528527, 0.381869, -0.717303, -1.327763, 0.202781, 2.040626, 0.940327, -0.417828, 0.111837, -1.937566, -1.524740, 1.079186, -0.812008, 2.728725, -0.401091, -1.100778, 0.968973, 0.780684, 0.753094, -1.602348, -0.769126, -0.668304, 0.515670, -0.835429, 0.621628, -1.149018, 0.488431, 0.411247, -0.569995, 0.243786, -1.822899, 2.100520, 0.463380, -1.167050, -0.340112, -0.076574, 0.460609, 1.245818, 1.144194, -1.073804, -1.336356, 1.926519, 0.732360, -1.477801, -1.316168, 0.047259, -0.627070, -0.229594, -0.805999, 0.600884, 0.990705, -0.609192, -0.798750, 0.872692, 0.937063, -0.323447, 2.871616, -0.531921, 0.827662, -0.006886, 0.049655, -0.063115, -1.192432, -1.169224, 1.762000, -0.044798, -0.534325, -0.298343, -0.077906, -1.000037, -0.274247, -1.775476, 0.674259, -0.760887, -0.306521, 1.018695, -0.761243, 0.398712, -0.323686, 0.615993, 1.630701, 0.619615, 1.300986, 0.462491, 0.108679, 0.301135, -1.545958, 0.753607, 0.398092, 0.490709, -0.738653, 0.147129, 1.026423, 0.620080, -2.907449, -0.490195, -0.025168, -0.651507, -0.951932, -1.363866, 0.599453, 1.740867, 0.934134, 0.227936, 2.163285, -0.721143, -1.596901, 1.157426, -1.317045, -0.511804, -0.484685, -1.596244, 0.088449, -0.062781, -1.180691, 1.495677, 0.861199, -0.980752, -0.087046, 1.043560, 0.374902, 0.310324, 0.837729, -0.975785, -2.076079, 0.569342, -0.530965, -2.392098, 0.015678, -0.966770, 0.621173, 0.651022, -0.252235, 0.785422, -1.648217, -1.193201, 0.743098, -0.149356, -0.229308, -0.339430, -2.255997, 2.705487, -0.961928, 0.382274, 0.251098, -1.162365, -0.830047, 0.612514, 1.117482, 0.709976, 0.887568, 0.255098, -0.210429, 0.879077, 1.887006, -2.056711, -0.046913, 1.394084, -1.040551, 1.216761, 0.513911, -0.009769, 0.054156, 0.669614, -0.875619, -0.879960, -0.315495, -2.181774, 1.323698, 1.235317, 0.906991, 0.692222, -0.232224, 0.711802, -1.121761, -0.319626, -1.265987, -0.285759, -0.503947, 0.959616, -0.522615, -0.227509, -0.612520, 0.474007, -2.526826, 0.278075, -1.205121, 0.771113, 0.149123, -0.809881, -0.247451, 0.233745, 0.069097, -0.290915, 1.488276, 0.040352, -0.858144, 1.932050, -0.433662, -1.524598, -0.171841, 0.673445, 1.157464, -2.525804, -0.234460, -0.590567, -1.880041, -1.514791, -0.621075, 0.174272, -0.346065, -0.907222, -0.426922, -0.906698, -0.003719, -0.750335, 0.567493, -0.691667, -0.332419, -0.410227, 1.144540, 0.294669, -0.479069, 0.076921, -1.068625, -0.000040, -1.271460, 0.453549, -0.811271, 0.396292, 1.337204, -0.505309, 0.504452, -0.056127, -0.049573, -0.224637, -0.924415, -0.226021, 2.767811, -0.499822, 0.238916, 1.455410, 2.409404, 0.765089, 1.027142, -0.732396, 0.438889, 0.540349, 1.687249, 0.592111, -0.569481, -0.204368, -0.561730, -0.118713, -0.005295, 0.645404, 0.395124, -0.067770, -0.917294, -1.681609, 0.033654, -1.418023, 0.019211, -0.194692, -1.008386, -1.202643, -0.645315, -1.046724, 0.728620, -0.643703, 1.528484, -0.717905, -0.357343, -0.665428, 0.735647, 1.848674, 1.453481, -1.512419, 0.185966, -1.806614, -1.814222, 0.590736, -0.556669, -1.859202, -1.599929, 0.457145, 0.593688, 0.925193, 1.006301, 1.100023, -0.180675, -0.089713, 0.405569, 0.696484, 0.818583, 0.079157, -0.571366, 0.137363, 1.651717, -0.977439, 0.925075, 0.012146, -0.643164, -1.013904, -0.086907, -0.138112, -1.602633, -1.814572, -0.466615, -0.923824, 2.305109, -0.626958, 0.013557, -0.768376, 0.344966, -0.114292, -1.708193, 0.729413, 1.646970, -0.284462, 1.268415, 0.023695, 1.447427, -0.678493, 0.487337, -1.429773, 1.420931, 1.029969, -0.108640, -0.249168, -0.124584, 0.516319, -1.761558, 0.054916, 0.309581, 0.074176, -0.313250, 0.265805, -1.171613, 2.206824, -1.806538, 0.357016, 0.689345, 1.089329, -1.147482, 0.168832, 0.650902, -0.314960, 0.979762, -0.631349, -0.366186, -0.747488, -0.112594, 0.184929, 0.702753, -0.322038, -0.882463, -0.379425, -0.336891, 0.731327, -1.013576, 0.553206, -0.687139, 0.077979, -0.440938, 0.741133, 1.535822, -0.505320, -0.755037, -0.767538, -2.991638, -1.325684, -1.547404, 1.603531, -1.495010, -0.232593, 0.713062, -0.440391, 1.802875, 0.115387, 0.165683, -2.459484, -0.248380, -0.233782, -1.236610, -1.616550, -0.686213, 1.212663, 0.352518, -1.867745, 0.391217, 0.295719, 0.507461, 0.714676, 0.154403, 0.840564, -0.761439, -0.263041, -0.239408, -2.464345, -0.595947, 0.198922, 1.846304, 0.012942, 0.000918, 0.393114, 1.918203, 1.096173, -0.188537, -1.477900, 1.120755, -0.486376, 1.604251, 0.076044, 0.711321, 0.509937, 0.745275, 0.012120, 0.571369, -0.099875, -0.121695, 0.001356, 0.291662, 0.644422, -0.873065, 0.149963, -0.248319, -0.937181, 1.812800, 1.000859, 1.604721, -0.694614, 1.166088, -0.891790, -0.245980, -1.044806, 0.291431, 1.229583, 0.437321, 0.662905, 1.269442, -1.843804, 1.120986, -0.550116, -0.139720, -0.644274, 0.290627, 0.456884, -1.493160, 0.888222, -1.902829, 0.103934, -0.755085, 0.559701, 0.973925, 0.382425, -1.846877, -0.056663, 0.794203, 0.969839, 0.148291, 0.661202, -0.645339, 0.004266, 0.238014, -0.179047, -0.372602, 0.524936, -0.394560, 1.274504, 1.534236, 1.634632, 0.243235, -0.119428, -1.256966, 2.107261, 0.426591, -1.705651, 0.221400, -1.060943, -0.740140, 1.469806, 0.721159, 0.454433, -0.387493, 0.063305, 0.793529, -1.926678, -0.745509, 1.547774, -0.415599, 0.679532, 0.742551, -0.262276, 0.483877, -0.552918, -0.007194, 0.532652, 0.406929, -0.372980, -1.602074, -0.636809, 1.777902, -0.188021, 0.667559, -0.293030, -0.878388, 0.270273, -0.320048, 1.608794, 0.198568, 0.616044, -1.253145, 1.057194, -1.034038, 1.543244, 1.063046, 1.340640, -1.009972, 0.001709, 0.012912, -0.706588, -1.131786, 0.235221, 0.991750, -1.701807, -0.482821, 0.983203, -0.923239, 1.311897, 0.282940, 1.035744, -0.070229, 0.462706, 0.982819, -1.089813, -0.245042, -0.648462, -0.964822, -0.644799, -0.447359, 1.037254, 1.664551, -0.396625, -0.434554, 0.786647, -0.067926, 1.339954, 1.791237, -1.683401, 0.035166, 0.289901, 1.443648, -0.257986, -1.787606, 0.865624, 0.159365, 2.366563, 1.300579, 0.149055, -0.927566, -0.495982, -0.556095, -0.307571, 0.188555, 1.559767, 0.203126, 0.414107, 2.202690, -0.296530, 1.277944, 1.397699, 0.416067, -0.870662, -1.643675, 2.525369, 0.669229, -0.997304, 0.460952, -0.320531, 0.513951, 0.102732, 0.368117, 0.152434, -1.486880, 0.713778, 0.577108, 0.633847, -0.061359, 0.127291, -0.227663, -0.565365, 0.533232, 0.570740, 1.041588, 0.940619, 1.167342, -0.002836, 0.164584, 0.537048, -0.629868, 0.654777, 0.943004, -1.230325, 0.809898, 0.329693, 0.175072, 0.685910, -2.340250, 0.181857, 0.520950, -0.826398, 0.505053, -0.253696, -0.019515, 0.364053, 0.180645, -0.918615, 0.763246, 1.551783, -1.093729, -0.425336, -0.013297, -0.499103, 0.052858, -1.049092, 0.668183, -1.476376, -0.276600, -1.240288, 1.358208, -0.468263, 0.132595, -0.782875, -1.053637, -0.289345, 0.168417, -0.167430, -0.335913, 1.761245, 1.757716, -0.560587, -0.760889, 0.470775, -1.170096, 1.260187, -1.879163, -2.770560, 1.029848, -1.214506, 0.843518, -1.180444, -0.005717, -0.301006, 1.740381, 0.074337, -0.305847, -0.738706, 0.338764, -1.078533, -0.664572, -0.102138, 0.120747, -0.403462, -0.533463, -0.119733, -0.664668, -2.002666, 0.247811, 0.502806, -1.313671, 0.370975, 0.232601, 0.132243, -0.598320, -0.664703, -0.552567, 0.130383, -0.383350, 0.576975, 0.518866, -0.330835, -0.722144, 0.037399, 1.227627, 0.657799, 0.651969, 1.623170, -0.809349, 0.651820, -3.065103, 1.507050, -0.707046, 0.383874, -0.297895, -0.030726, -1.551289, 0.815146, 0.436793, 0.843672, -1.413977, -0.707373, -0.966325, -1.009925, 0.726912, 0.368701, -0.074487, -0.952476, -2.084474, 2.028796, -0.164717, 0.052187, -1.718413, -0.667007, -0.222215, 1.319468, 0.404146, -0.725416, -0.775996, -1.765674, -0.304063, -0.442627, 0.070624, 0.168125, -1.103981, 0.369296, -1.896372, -1.317223, 0.217692, 1.546734, -0.681958, 0.720146, -0.680538, 0.208336, -0.012354, -0.376611, 0.355713, -0.429052, -0.827290, -0.314084, 0.597497, 1.839279, -2.118891, -0.941276, -0.047448, 0.017547, 2.282560, 0.942305, 0.099224, -0.211880, 1.282972, 0.562168, -1.003576, 0.122679, -0.137638, 0.852672, -1.207618, -0.291122, -0.674193, 2.067981, 0.387535, -0.598566, 0.492513, 1.566337, 0.316197, 0.803851, -0.910228, -2.760594, 1.022515, -0.902013, 0.990269, -0.650464, -0.033795, 0.260880, 1.231654, 0.916473, 0.115825, 1.058442, 0.302749, -1.317326, 0.055116, -0.646666, 1.149097, -0.291527, 0.431140, -0.063607, 0.216260, -0.350655, -2.117795, 0.242829, -0.050827, 1.230035, -0.566987, 0.076513, -1.326295, 1.032293, -0.259736, -0.620771, 0.954626, 0.766084, -1.069348, 0.112920, -0.822272, 1.267524, 0.971574, -0.133473, -1.507629, 0.569266, 0.060907, 0.008979, 0.381692, 1.056639, -0.028541, 0.050194, -0.647694, 0.176354, 0.007581, -1.848455, -0.158585, -1.281686, -1.067409, 0.444980, 1.513490, 0.931571, -0.274106, 2.300519, 0.887455, -0.386968, -1.207925, 0.822575, -0.913211, -0.445866, 1.593749, 0.320163, -0.428290, 1.162631, 0.158736, -0.179814, -1.145749, 0.105351, -0.467657, 1.769470, -0.652457, -1.808436, -1.667299, 0.897776, 0.414695, 0.842697, -0.233000, 1.119390, 0.225108, 0.709879, -0.869811, -1.369341, -1.636471, -0.822347, -1.080083, -0.830137, 0.329208, 0.350142, -0.821055, -0.531446, 0.198401, -0.352964, 0.966670, -0.108505, 0.120679, -0.487222, -0.713007, 1.284985, -0.128009, 0.218244, 0.883929, -0.866034, 0.694990, -0.408727, 0.712352, -0.794204, -0.221023, -0.659065, -0.001451, -0.051257, 0.966171, 1.533197, -2.153540, 0.957859, 1.683044, 1.548128, -0.469343, -0.912069, 0.623761, 0.459791, 2.378263, 1.379164, -2.479560, -1.381770, 0.223994, 0.581903, 2.462769, 0.357460, 0.580593, -0.679694, 0.302157, 0.993067, 0.885331, -0.006423, 0.497747, -0.177228, -0.369860, -0.564683, -0.638989, -0.881432, -1.665654, -0.130389, 0.585423, -0.753778, -0.932322, 1.898966, 0.756286, -0.284318, -0.895073, -0.636077, -0.395144, 0.622954, -1.594219, -0.855068, 0.547991, 0.138027, 0.083437, -0.793249, -1.639088, 0.706620, 1.457656, -0.699871, -0.224520, -1.793717, -0.726605, 0.382871, -0.692738, -0.288011, -0.794972, 1.579095, 0.253690, 0.997295, 1.925212, -0.220757, -0.360908, -0.055112, -0.153784, -0.233199, -1.201126, -0.545576, -0.439421, -0.971251, 0.605837, 0.776413, 0.394598, 1.656441, -1.544852, -2.957562, 0.228542, -0.983380, -1.292152, 0.459452, -0.197741, 0.998687, 0.308993, 0.655450, -0.493743, -1.486049, 0.382888, 0.631073, -0.371239, 0.514159, -0.097317, 1.225145, -0.638378, 0.342363, -1.580652, -2.446595, 0.769604, -1.444124, -0.657230, -0.113286, 0.577576, 0.238484, 2.364442, -1.381381, -1.207125, -0.899980, 0.419608, 0.689530, 0.208504, -0.266494, 1.227303, 1.123001, 1.237160, 0.056717, 0.654519, -1.299933, -0.400978, -0.623902, 0.525421, 1.187168, 0.031041, 1.871590, -1.473323, -1.173467, 0.694392, 0.310131, 0.998769, -0.093835, -0.361254, -0.128190, 0.630134, 0.327430, 0.517911, -0.355291, 0.844662, 0.960411, 0.386081, 1.041679, -0.091655, -0.027101, 1.410294, 0.411787, -1.332057, -0.459408, -1.070325, -0.614363, -0.825695, -0.928216, 0.604325, -1.460609, -0.192262, -0.004410, -0.524866, -0.179887, -0.309788, -0.139984, 0.717091, 0.223635, 0.128181, 1.414812, 0.219963, 0.256240, -0.190217, -0.388563, 1.462272, 0.875212, -0.481109, -0.684982, -0.994921, 0.517506, -0.950163, -0.492670, 0.475388, 1.314657, 1.750620, -1.213376, 1.648163, -0.195402, 0.664914, -0.094891, 0.973404, 0.454690, 0.188792, -0.737362, -1.051652, 0.193673, 0.706130, -0.814144, -1.296558, -0.068961, 0.239795, -0.205138, -1.516257, -0.930584, -0.772402, 0.242668, 2.736581, -0.333195, -0.351602, 1.468608, 0.715578, 1.155788, -0.091197, 1.564632, 1.249670, -0.126512, 0.786249, -1.518057, 1.600814, -1.204734, 0.009395, 1.148951, 0.589218, 0.032962, 0.491163, -0.600983, 1.023351, 0.581409, 1.100210, 1.244052, 0.901803, 0.265863, 0.707759, -0.485055, -0.043618, 0.857998, 0.006887, -0.425407, 1.041564, 2.396044, -0.339230, 1.347777, 0.112678, 0.341312, -1.573165, 0.904727, -0.439225, -0.704625, -1.605155, -0.132223, -0.414968, 1.809788, 1.380576, -0.445033, 0.962185, -0.690909, 0.627085, -0.819576, -1.038175, -1.797299, 1.142296, -2.796450, -0.397238, -0.548388, 1.001740, -1.052414, -0.471114, 0.105292, -0.391651, 0.233797, 0.917240, -1.001446, 0.532974, -0.490091, -1.097559, 0.659390, -0.942814, 1.192824, -0.376587, -2.398330, -0.522802, 0.104258, -2.075186, -2.474453, 0.375520, 0.852840, 0.286258, 0.437765, -0.125125, -0.427362, 0.757399, -1.009901, 0.703712, 0.349340, 0.068894, 2.156740, 0.232376, -0.222264, -0.385089, -0.251131, 0.048317, -1.095175, -2.171664, 0.480706, 0.051593, -0.311058, -0.422785, -0.399902, 1.382518, -2.428111, 0.259279, 0.195612, 1.250679, 0.476466, -1.284679, 0.859136, 0.165677, -0.075955, -0.795367, 0.011942, 0.044537, 1.854053, -1.176886, -0.249800, 0.568523, 1.325002, -1.483092, -0.199339, 1.658340, -0.645532, 1.746280, -1.907639, -0.081327, -0.491918, -0.079938, 0.165468, -1.028362, -0.282269, -1.389076, 1.354632, -0.646270, 0.400435, -0.700321, -2.046731, -1.270018, 2.537819, -0.195418, 1.616142, -1.002783, 1.938049, -0.231846, -1.275888, 0.975771, 1.867821, -2.517521, -1.055571, -0.979233, 2.479350, 0.423528, -2.692297, -2.634333, 0.075809, -1.943608, 0.091067, -0.511079, 0.211322, -0.560384, 0.531533, -0.711254, -0.992869, 0.377976, 0.663449, -0.207054, -0.161622, 0.783406, -0.054875, 1.458825, 1.144048, -1.265718, 0.020294, 0.323040, -0.845896, 1.813638, 2.005624, -0.434095, -0.109263, 0.161651, -0.624304, -1.716682, -0.819730, 2.222390, 0.926520, 0.196876, 1.408468, -1.334636, -0.137650, -0.019383, 1.261439, 0.618483, 1.216183, 0.582504, -1.212431, 1.625142, -0.990585, -1.418532, 0.977245, 2.328674, -0.887481, -2.217097, -1.159147, -1.240270, 0.308745, -0.818975, 1.308973, 0.506362, 0.159078, 0.110513, -0.680036, -0.120664, 0.097619, 0.149916, 0.342207, -0.487246, 2.650337, -0.390253, -1.253697, 0.671902, 1.799849, 0.673474, -0.277662, 0.847310, -1.149167, 1.045030, -0.450937, 1.099226, -1.101415, 1.581423, 1.290898, -0.945054, 0.699864, -0.449924, -1.330844, -1.199549, -1.037826, -0.261741, 0.322473, 1.208010, -0.108038, 1.853039, 0.263362, 1.242270, -0.269046, 1.301799, -0.140519, 0.375859, -0.459513, -1.946383, -1.168694, -0.387385, 1.079513, 0.224769, 0.464253, 1.877396, -1.981441, -0.395818, -0.614816, 0.584426, 0.024514, 2.307854, -0.367066, 0.074375, 0.109017, -1.159713, 0.498944, -0.986801, -0.619723, -0.286456, 0.079653, -0.129912, -0.075097, 0.535491, 2.374083, -0.480849, 0.906860, -0.145243, -0.429104, 0.535679, -0.106580, 1.272346, -0.395097, -0.587267, 0.153514, 0.003306, 0.275903, -2.010791, 0.369468, 2.565899, 0.658069, 0.625572, -0.292657, 0.426859, -0.039537, 0.466782, -0.213646, -0.998102, -0.432814, -0.096134, -0.400232, 0.118353, -0.250267, 0.347886, 1.054453, 1.375482, -0.749868, -0.200890, -0.533132, 1.440839, 0.078127, 1.293177, -0.800576, -0.372939, -0.823248, 1.142839, 0.779238, -1.025555, -0.528999, -0.489301, 0.002016, 1.384675, -0.063106, 1.580018, -0.511192, 0.515575, -0.242889, 1.597541, -0.449379, -2.313836, 0.433332, -0.328102, -0.348891, 0.049113, 1.143714, -0.606944, -1.021334, 1.020627, 0.463043, 0.211384, -0.167821, -1.121984, -0.741784, 0.682838, -0.582474, 0.085909, 2.029262, 1.135633, -1.250152, -1.223211, 0.007997, -1.245446, -0.435278, -1.105139, 0.616406, 0.753225, 0.854637, 0.823325, -0.422497, 0.593634, -0.593916, 0.304636, 0.280708, 1.694358, 1.329585, 0.247179, -0.279895, 0.651856, -0.102773, 0.913088, -0.440420, 0.123232, -0.863050, -0.171629, 0.400619, -1.512546, 0.062961, 1.398601, 0.088090, 0.279573, 1.282322, -0.080128, -0.004702, -0.976383, -1.642297, -0.616974, -1.043240, 0.229035, 1.730206, -0.600759, -0.164065, 0.716513, 0.730629, 1.054250, 0.866217, -0.216470, 0.993549, 1.460599, 0.591707, 0.314538, 0.796852, -0.332350, 1.264228, 1.797137, -0.195246, 0.113306, -0.728226, -1.068509, 1.119313, 0.174270, 1.602209, -1.230554, -2.169655, 1.684373, 0.943918, 0.861171, 2.066307, -0.161146, 0.467258, 0.210221, -0.902464, -1.913673, 0.977871, 0.298279, -0.112413, -0.010105, 0.669705, 0.935085, 1.659433, 1.734217, -0.008280, -0.437842, 0.058607, 0.304021, 2.458997, 0.169586, -0.968576, -0.972189, -0.327630, -0.573669, -0.846364, -0.359719, 1.043108, 1.911941, -0.662465, -1.018908, -0.816293, -0.568155, -0.420614, 1.480624, 0.229438, -0.493321, -0.645297, -0.603714, 0.961630, 1.163723, 0.556973, 0.403312, -0.282806, 0.806484, -0.551240, -0.499907, -0.639638, 1.585647, -1.076977, -0.494800, 0.345501, -0.081872, -2.397432, 0.169326, 0.149086, -1.075565, -1.189096, -0.578485, 0.052927, -1.336818, 0.820895, -1.699156, 0.161837, 0.128269, -0.682065, -0.511034, -0.302649, -0.297757, -1.770633, -1.402995, -1.574083, -0.802078, -0.808154, 0.853138, 0.929639, 1.234076, 1.021366, -0.612301, 0.939807, 1.422796, -0.055038, -0.376734, 1.556973, 0.607052, 1.083412, 0.130041, 0.255501, -1.094005, 0.352081, -0.584930, 0.159433, 0.296823, -0.740273, 0.008519, 0.141079, -0.384061, 0.442857, -0.865421, 0.474803, 1.979470, -1.906425, -0.224100, -1.591969, 0.741749, 2.277313, -0.934287, -0.549533, 0.762357, -0.000739, 0.719938, -0.831228, 1.335212, 0.000618, 0.084169, 0.634156, -0.037498, 0.061090, -0.708419, -1.107336, 0.218445, -0.798154, -0.077214, -0.041986, -0.365435, 1.920474, -1.003709, -0.575926, -0.896164, -0.977762, 0.950663, 0.385647, 0.026513, 0.007574, -0.604650, 0.076311, -0.566295, 1.767049, 3.196131, 0.000131, 0.377919, 1.602773, -1.779870, -1.514597, 1.440958, 0.117473, 1.601819, 0.558959, -0.792584, -1.261061, 0.562293, -0.410142, -1.819307, 2.783495, 0.003900, 0.673560, -0.801667, -2.213346, 1.375020, -0.761294, -0.158954, -0.151664, 1.487704, -1.573357, 0.171300, -0.873633, -0.510119, -1.462343, -0.283168, 0.697521, 1.124460, 0.945671, 1.712378, 1.721964, 0.230917, 0.194659, -1.396264, -0.576336, 1.537436, 0.237531, -0.597759, -0.738369, -0.601753, 0.230585, -0.543026, -1.382452, -0.767581, 0.539591, 0.658891, 0.370795, -1.123319, -1.128508, 0.431978, 0.390993, 1.178774, 0.410019, -1.303392, 0.942956, 1.327732, 0.186054, 0.021305, -0.880841, -0.017911, 1.762350, 1.378189, 0.279522, -0.326773, 0.180000, -1.097935, 1.209249, 0.694255, 0.680515, -1.146881, 0.528379, 0.655943, -1.664021, -0.675777, 1.142683, -0.055859, -0.378568, -0.579741, -0.408200, 0.269103, -1.362701, 0.873458, -1.072699, 0.108220, -1.072228, 0.052957, 0.972322, -0.670796, 0.771325, 0.698519, 1.662428, -0.955793, 1.267732, -0.884990, 1.103815, 0.349899, 0.689126, -0.697367, -0.279191, 0.159953, 0.278799, -0.830304, -2.486086, -0.809876, -0.907824, 3.074993, -0.528381, 0.608962, 0.808748, 0.064482, 0.459938, -0.666045, 1.579249, 0.464766, -1.973515, -0.097804, 1.183425, -0.403961, 0.463900, -0.902652, 1.469840, -0.164329, 1.171188, -0.075618, -0.079109, 0.857114, 0.537591, 0.135858, 1.139763, 1.885059, 0.848467, 0.975857, -0.187125, 0.493947, 2.722894, -0.259751, -0.103315, 0.634920, -0.185781, -0.055063, -0.477004, 0.268640, -0.061299, 0.722828, -0.000579, -0.363334, -0.006565, 0.831911, -0.347205, 0.652493, 0.303242, -1.390029, -0.324232, -2.590419, -0.347550, -0.520888, 0.712762, 1.347832, 0.712340, 0.749463, -1.300805, -0.239872, 1.426470, 0.879974, -0.317680, 1.114858, 0.177073, -0.842019, 0.071504, -1.036478, -0.425654, 0.409760, 2.089564, -1.131355, -0.224425, 0.176514, 0.003063, -1.022606, -0.607528, -0.184959, 0.140400, -0.029518, -0.184174, 1.240667, 1.911520, 0.093550, -1.106623, -0.234596, -1.186179, -0.143543, -1.053546, -0.259176, 0.310255, 0.031607, -1.377744, 1.302794, -1.220217, 1.900659, 0.008092, -1.108560, -1.359943, -2.354624, -0.107920, 0.966216, 0.408460, -0.676664, 0.640905, -1.063868, -1.801584, -0.803397, 0.999650, -1.071502, -0.228426, -0.557674, 0.424089, -0.020392, 1.626072, 0.518945, -0.644892, 1.410088, -1.076187, -0.183477, -1.476076, 1.066781, 0.045591, -0.708241, -1.061886, -0.069735, 0.268439, 0.996012, 1.577090, 0.652477, -1.169383, -1.877606, 0.241385, -0.716275, 1.076989, -0.004071, -0.144108, -0.737553, 1.776167, 0.247408, 1.470623, -0.401614, 0.798566, 0.999228, 0.117658, -1.185933, -0.383031, -0.383739, -0.988735, 0.924957, 0.884045, 1.678148, -2.295000, 0.313245, -0.216504, 0.230821, -0.622617, 0.251752, 0.110113, 0.717413, -0.804830, 0.851634, 0.558755, 0.247025, -1.310933, -1.333926, -0.185024, -0.328081, -2.074067, -0.726968, -1.285351, -0.159432, 0.630274, -0.164899, 0.601325, -0.641290, -1.510466, 0.923575, 0.155575, -0.893360, -0.445703, -0.851990, 0.099344, -0.922377, 0.313641, 0.205622, -0.349394, 0.608267, 0.285746, -0.392929, 1.175276, 1.965447, 0.558696, 0.150607, -0.748425, -1.521350, 0.488068, 0.093578, 0.510095, -0.073489, 0.137762, -0.180477, -1.113647, 0.757016, -0.357791, -0.407108, -0.507146, 1.248808, 1.846160, -1.376829, -0.176339, 0.661752, -0.797810, 1.703219, -0.303573, -1.071365, 0.953577, 1.271903, 2.462126, -0.535654, 1.303970, 2.613081, -0.456449, 1.181750, -1.107752, -0.163638, -1.374968, 0.879616, 0.322532, -0.224062, 0.194928, 1.504785, 0.020028, -2.529463, 0.324772, 0.003576, 0.012668, 1.084877, 0.289536, 0.448849, 0.605379, -0.097210, 0.098546, -1.305508, 1.396452, 1.264388, 0.792639, 0.323461, 0.638596, -0.358651, 0.956730, 1.160253, 1.653206, -0.309618, 0.080314, 0.671156, -1.409953, -0.235518}, - { 0.382059, -0.756124, -0.268898, 0.670647, -0.722895, 1.233612, 0.019898, -0.227095, -1.047232, -0.102094, 0.262718, -0.056508, 0.047468, 0.031591, -1.147398, -1.131913, 0.837965, 2.021922, 0.763104, -2.425157, -0.823654, -0.121762, -0.793927, -0.604823, 0.498514, 1.295028, 2.282117, -0.730465, -0.112153, -0.351011, 2.763001, -0.115223, 2.129663, -0.188060, 1.015183, -0.469658, -1.064144, 1.883169, -1.472189, -0.583824, -0.351299, 1.601087, -0.158024, 1.030751, 3.135841, -1.037427, -0.452121, 2.110509, 1.046477, -0.982384, 1.466126, 1.351951, -0.949733, 0.354520, -1.524563, 0.065414, 0.497113, -0.734463, -0.492778, 1.666764, 0.200520, -2.004752, -1.030668, -0.323292, -1.114985, 0.788598, 1.704072, 0.513804, -0.234502, -0.427492, 1.331277, 1.338116, 1.600348, -0.896026, -0.305012, 1.462368, -1.064661, -1.037984, -0.448500, -0.467702, 1.689152, 1.115221, 0.822431, -0.364413, 0.233804, -0.574877, 0.631714, 0.503844, -1.209398, -0.035902, 0.519446, 2.187777, 1.488170, 1.956980, -0.775304, 0.054704, -1.033544, 1.270657, 0.650151, 0.066474, -0.165130, 0.741537, -1.244502, 0.193526, -0.345141, 0.291083, 0.470458, 0.798296, 0.374880, -0.304612, 0.416809, -2.090556, 0.086823, 0.934948, -0.457083, -0.809578, 1.342113, -0.041538, 0.398531, -0.472814, 0.200100, 0.036538, -0.440097, -2.455165, -0.916274, -2.536629, 0.406445, 0.006890, -1.014239, 0.500616, 2.705946, -0.022637, 0.538087, -2.044204, -0.353036, -1.296478, -1.523036, -0.196764, -1.287256, -0.577633, 0.544843, 1.022733, -0.013695, -0.347855, -0.550234, 0.084698, -1.354719, 1.720470, 0.342556, 0.599860, -2.525371, 0.469707, 0.371450, -1.794418, -0.027776, -0.228502, 0.049353, 1.204295, 0.049864, 0.437735, 0.222994, 1.888575, 0.998941, 0.282273, 1.345065, 0.513661, -1.163260, 1.623799, -1.164773, -1.830389, -1.062759, -1.548091, 0.132407, 0.071544, -0.536221, -2.505579, -0.189660, -0.498596, 0.814257, -0.289688, 0.113668, -0.128814, -0.085521, -0.494300, -1.048639, 0.675048, -0.048130, -0.416781, 0.697961, -0.118799, 0.308944, -0.957638, 0.682217, -0.083334, 0.345109, -2.258950, 1.311002, 0.742619, 1.338444, 1.137395, -0.247233, 2.207792, 0.034036, 1.122454, 0.001738, -0.477747, -0.664504, 0.034436, -2.298915, -0.688178, 0.485656, -0.155005, 0.699738, -0.182813, -0.277011, 0.269205, 0.277718, 2.345576, -0.119955, -0.212371, 0.079055, -0.675778, -1.075429, 0.082380, 1.528678, -1.655458, -0.668242, 1.481890, -0.733430, 2.166434, 0.178931, 1.212819, -1.575392, 0.445340, 0.367124, 0.454937, 1.617629, -1.830756, 1.902955, 0.325177, 0.015093, -0.829517, 1.900083, -0.315760, -0.705444, -0.337590, 0.347599, 0.562739, -0.551997, 0.711850, 0.552669, -1.563068, -1.330176, -1.040038, 1.064567, 1.614874, 0.934245, -1.642661, 0.717998, -0.610720, -0.983824, 0.859206, -0.964966, -0.320549, -0.388639, 1.195694, 0.817436, 0.664509, 1.687307, 1.669409, -0.014416, -0.914878, 0.045907, 0.197022, 1.022861, 0.055055, -0.066334, -1.712152, -1.004981, 0.279715, 0.674143, 1.665503, 2.384454, -0.790930, -1.360469, 0.899800, -0.093856, -0.120326, -0.282830, 0.955345, 0.289944, 1.986020, 0.486134, 1.398686, -0.266424, -0.888304, -1.435087, 0.093107, 0.759727, 0.396672, -2.664654, 0.911650, 1.075412, 2.049538, 0.621762, 0.665132, 0.008100, 0.143697, 1.156016, 0.227429, 0.108149, -1.560778, -0.660750, -0.143933, 0.024302, -0.978624, 0.993727, -0.227724, -0.162943, 1.215951, 1.270337, -0.470716, 1.143346, 0.728295, -0.709416, 0.355111, 0.605511, -1.026261, -0.385031, 0.340678, 0.862034, -0.613504, -0.750120, 0.097246, -0.962190, -0.602672, 0.453841, 1.866659, -1.427991, -1.492646, -0.692929, 1.255367, -2.168110, -0.237477, -0.608745, 0.199082, -2.008715, -1.333466, -0.210509, 3.017457, 0.697097, 0.351825, -0.019699, -1.488519, 0.090121, 0.795999, 0.102292, 0.204322, -0.630613, 0.929686, 1.323448, 0.162824, 0.465104, 0.562041, 1.001537, -0.109705, 1.105437, -1.957387, -0.924382, 1.440254, -0.616247, -1.104835, -0.361146, -0.126514, -0.364270, -0.641116, 0.389182, 0.487654, -0.632764, 0.258316, -0.065638, -0.232363, 0.934742, 3.004745, -0.466283, -0.856876, -1.719915, 0.081078, -0.733059, 0.745355, 0.922169, -0.205358, -1.573404, 0.700384, 2.055251, 1.944711, -1.240147, 0.297236, 1.653817, -3.043529, 0.369082, -0.376191, -0.793096, -1.058544, 0.202065, 1.702075, 0.980632, -1.538775, -0.087307, 0.224487, 1.661905, -0.435689, 0.944074, 2.596069, 0.586904, 0.357412, -0.029610, -0.701129, -0.596044, 0.049660, 1.366184, 0.236003, -0.385317, -1.325649, 0.525150, 1.503238, -0.034382, 0.393256, -1.117113, -1.050756, -0.430850, -1.681886, 0.913539, 0.075520, -0.858186, 1.138578, 0.592154, -1.308793, 0.060918, -1.914763, -1.781331, -0.494782, 0.879823, 0.009281, 0.705704, 0.662487, -0.562745, 1.685661, 1.204443, 0.261912, -1.174259, -0.820031, 0.179824, -0.362322, 0.878144, -0.908297, 0.331722, -1.319254, -0.717314, -1.085246, -1.958957, -1.296220, -1.099202, -0.391190, 1.254537, -0.964507, 0.348543, 0.766253, -0.495980, -0.439942, -0.261941, -1.351386, 1.509463, 0.418022, 1.429536, -1.450138, 0.902776, 0.124037, -0.610596, 0.203545, -0.498523, 0.776397, 1.514069, 0.039039, 1.017294, -0.563437, 0.679385, 0.169064, 0.269506, 1.080527, -0.465674, 0.874369, -0.219138, -1.489180, -2.615988, -0.367151, -0.055648, 1.501447, -0.619220, -2.449960, 0.464516, -0.000535, -0.326176, -0.110683, 0.811327, -1.274049, 0.881897, -0.248487, 0.325582, -1.875550, 0.062114, -1.237213, 0.087808, 0.173102, 1.246930, -0.271178, 0.651691, 0.212459, 1.478099, 0.398686, -0.281847, -0.963581, 0.734263, 0.990676, -0.841449, -0.198852, 1.382271, 0.178462, -1.368272, -0.349254, -0.378986, -0.271455, 0.736766, 1.163576, 0.563409, 0.368660, 1.346949, 0.981946, -2.272106, -1.379623, 2.029833, -0.428224, -1.055603, -0.931259, 0.782737, -0.577287, 0.360062, 0.964592, 0.327885, 0.167229, 0.213906, -2.060635, 0.223158, 0.437575, 0.559332, -0.398564, -1.245556, -0.964019, 0.780927, 1.239923, 0.089169, -0.149114, -0.919069, 0.634949, 0.909422, 0.462337, 0.659830, -1.744606, 0.495139, 1.736703, -0.263927, 0.747554, 1.943027, 0.180411, -0.330468, -0.943574, 0.058006, 0.979571, 0.387951, -0.008286, -1.581976, -0.657403, -1.084765, 0.140902, -0.449816, -0.357501, -1.147356, -1.487937, 0.348165, 0.195799, -1.942437, 0.807144, 0.785277, 1.015885, 0.826304, 0.899044, 0.347857, -0.413957, 0.224523, 2.176913, 2.646751, -0.710003, 0.081168, -0.705328, -0.196207, 1.229838, 0.258339, -1.479319, -0.109133, -0.681406, 0.153488, 0.663806, -0.324739, -0.363910, 1.700875, 0.141772, -1.249241, -1.696840, -0.119858, -0.497950, 1.025684, -1.448539, -0.192165, -0.060901, -1.692251, -0.045484, 0.630726, 0.335616, 2.048478, 0.221174, -0.103263, 0.652923, -1.804758, 0.228436, 1.222847, 0.358293, 0.421496, -0.791960, 1.947306, 1.248854, -0.867100, -0.666459, -1.531495, -0.390254, -1.437477, 1.594514, 1.038594, -0.745096, -0.080827, -0.299325, 0.066211, -1.634254, -2.234896, -1.152932, 1.052401, 0.329964, 1.335873, 0.432223, -2.088759, -1.020118, 0.948494, -0.485056, -1.492027, -0.113937, -1.343985, -0.829372, -0.268781, 0.662770, 0.599540, 0.833252, -1.501010, 0.533089, -1.754615, 1.959507, -0.498201, -0.002809, -0.110131, -0.902340, -0.876667, 0.481718, -0.998151, -0.347933, 0.936260, 0.865499, -0.200296, -1.041223, 0.610695, 1.061170, 0.375502, -0.219200, 1.789266, 1.308462, 1.543149, 2.161704, 0.119549, -1.309706, 2.051585, -1.100319, -0.434722, -0.603976, -1.127354, 1.992013, -0.191003, 0.032470, 1.004440, 0.549231, 0.705583, 2.208463, 0.717833, 0.167186, 0.275973, -0.776252, -0.781164, -0.903851, -0.887587, -0.078421, 1.166423, -1.426779, 0.595513, 0.527694, -0.052090, 0.019514, -1.108611, -0.882998, 0.141618, 0.453112, 0.749485, 0.269211, -0.308234, 1.104774, 0.553994, -1.128259, -1.135981, -0.345478, -0.729224, 0.149570, 1.639662, 0.110621, -1.922511, -0.746145, 0.187155, -1.725436, 1.352881, -0.396462, 0.665984, 2.734129, -0.786993, 0.650727, -1.645926, -0.365741, -0.928118, -0.162804, 1.215651, -0.105507, 0.215606, 1.080293, 1.194821, -0.554374, -0.255487, 0.349845, 0.853962, -0.972678, -0.285763, 0.480039, 0.166039, 0.335910, 0.671465, -0.829052, -0.160457, -0.111635, 0.820356, 0.863077, -0.267192, -0.078685, 0.631299, -0.669211, -0.204799, -0.136229, -0.202992, -0.087659, 0.128671, 1.260443, -1.249178, -2.798633, 0.340411, -0.473649, -1.299904, -0.622390, 0.506174, -0.208705, -0.346622, 1.211028, -1.634334, -0.447706, -1.037892, 0.841851, -1.264424, -0.969955, 0.168473, 0.612454, -1.405871, 0.003603, 2.402675, -0.561010, 0.485877, -0.151942, -0.061614, -2.191525, 0.458814, -0.276728, 0.530174, -0.751052, -0.846799, -1.531303, 0.041635, -0.243618, 0.740602, -0.027810, 0.034180, 0.096023, -0.979097, -1.048058, 0.381958, 2.025718, -0.117946, 0.235742, 0.237039, 0.239039, 0.058563, -0.835180, 1.450489, -1.070995, 0.833846, 0.740038, 1.778937, 0.490873, 0.439209, -3.230690, -0.610515, -0.118432, 0.229473, 0.061777, 0.217299, 0.704839, 1.528250, -0.485037, -1.411039, -0.631554, -0.582107, -0.186172, -0.522741, -0.490199, -0.416542, 1.086767, -2.098762, 0.936904, 0.065106, -0.229315, -1.983214, 0.037280, 1.661507, -0.906222, 0.156427, -0.715053, -0.573588, 0.783703, -1.645982, -1.512202, 1.449465, -0.897894, 0.982410, 1.627641, -1.316233, -0.236404, 1.291026, -1.694265, -1.829128, 1.919201, 0.906396, -0.339507, 0.503020, 0.346296, 0.815150, 1.020208, -0.261457, 1.428235, 1.713231, 0.324184, -0.311596, 0.280373, 0.167352, -1.741678, 0.142945, 0.224572, 0.790027, -0.187601, 1.810110, 0.254688, -0.511187, -0.879314, 0.136074, -0.201431, 0.487789, 1.411333, -1.584449, -0.569379, 1.030299, 0.312562, 0.464376, -0.750697, 0.151506, 0.147195, 0.819245, 0.249036, 0.490367, -2.129723, 0.197688, 0.209628, -0.522797, 0.270370, -1.839541, -1.225898, 1.291117, -0.680506, 0.530471, -0.653734, 0.539361, -0.056638, -1.450216, -1.272983, -0.170609, -1.956840, -2.456795, -0.531451, 0.451671, -1.162901, 0.138955, -0.130039, -0.200198, 1.309971, -1.170939, 2.640239, 0.961979, 0.007073, -1.018755, -0.139291, 1.483178, 0.267623, -0.341609, -0.531584, 0.086517, -0.751275, -0.554852, -0.333852, -2.284164, 1.769114, 0.231000, 0.598336, 0.526093, -1.110846, 0.600715, 2.275986, -0.018750, -0.080620, 0.217101, 0.538192, -0.194818, -0.916838, -0.157432, -0.596418, 0.353062, -1.293293, 0.925400, 0.268169, 1.704831, -0.148937, -1.045687, 0.097606, -2.001956, -0.772268, 1.257815, 0.137249, 0.891564, -1.183802, -1.063159, 1.238094, 0.973459, 0.757664, -0.192597, 0.008110, -0.692726, 1.954843, 0.305383, -0.004067, 0.347564, 1.098256, -1.411022, 0.428267, 0.288067, 1.355488, -0.122372, -0.536689, -0.545794, 0.485193, 1.661622, -1.237771, 0.380034, 1.757733, -0.966951, 0.446081, 0.826341, 0.034387, -0.344282, 0.122601, -0.133951, -2.647708, 0.240524, -0.244076, 1.557510, -0.505505, -1.457286, -0.112656, -1.023001, 0.599384, 0.884535, -0.626787, -1.346594, 0.935042, -0.775457, -0.930951, 0.590213, 0.452432, -0.938790, 0.805782, -0.350595, -0.592970, 1.680689, 0.843593, 0.132452, -0.841636, -0.930182, -0.427818, -0.022887, -0.397914, 2.337185, 0.066307, 0.029618, -1.055913, -1.327883, 1.010142, 0.423029, 0.818162, 1.112986, -1.100333, 1.129665, -0.521119, -1.009762, -0.176153, 0.954177, -0.238755, 0.163068, 0.721406, -0.406305, -0.371310, -2.167452, -0.383150, -2.178418, -0.211284, 0.632274, 0.428763, -0.549847, -0.077475, 0.358896, 0.935344, -0.116820, 0.042490, 0.632999, -1.496621, 0.294719, 0.251196, 0.211936, -0.272773, 0.505324, 0.468646, -0.416746, 0.517494, -1.180855, -0.334057, 1.065670, 1.088631, 0.071595, 0.451374, -0.556994, -0.640171, 0.358023, -0.127145, -0.316040, -1.022120, 2.401750, 1.335340, 1.412372, 0.557954, 0.337608, 0.535724, 1.725849, 0.556922, 0.272821, 0.385750, -0.413290, -0.131951, -0.150539, -0.113936, 2.031130, 0.307317, -1.013190, 0.082152, 0.260691, 0.508713, -0.268346, 0.295205, -0.475464, 2.412240, -0.018501, 0.716163, -0.862697, 0.939820, -1.338693, -1.532533, 0.870847, 2.036955, -1.457022, -1.033978, -0.226362, 0.612688, 0.019719, -0.394044, 1.351239, 0.240877, 2.110411, 0.094527, -0.445468, -0.412644, -1.391369, -0.344252, -0.623643, -0.322644, 1.117232, 0.687389, 0.755359, 0.641025, 0.632983, 1.263062, -1.549328, -1.566109, 0.508483, -0.499566, 0.934570, -1.388095, -1.972671, 0.383109, -1.554389, 1.282048, -0.314249, 0.244176, -0.929808, 0.750151, 0.538923, -0.903286, -0.702035, 0.512179, -0.291152, -0.419729, -1.037791, 0.706775, 0.235843, -0.323291, -0.307070, 1.163700, -1.123638, 1.339157, 0.422202, 0.211622, -1.802166, -0.102486, -0.482759, 0.110254, 1.695480, -0.573106, -1.885119, 1.681647, -0.317307, 1.407837, -0.340345, -1.341479, -0.127103, 1.046783, 0.876001, -0.507508, 0.063203, -1.178663, -1.428701, 1.024696, -0.896592, 0.053648, 0.580304, -1.716423, -0.604713, 0.178515, 0.226823, 1.818136, -0.396441, -0.216096, 0.241328, -0.935681, -2.599711, 0.298774, 0.142816, -2.043109, -2.757879, -0.226371, -0.856734, 0.685580, 0.032610, -0.314795, -1.044021, -0.059882, -0.347866, -0.517393, -0.738436, -0.167800, 0.061006, -0.612486, -1.202937, -0.586060, 0.263318, 1.325335, 1.538581, 0.464627, 0.250619, 1.180136, -0.062583, -1.311607, -1.173635, 1.181178, 0.739139, 1.322723, -1.272996, -1.303412, 0.873488, 1.008013, -1.498082, 0.113426, -0.553117, -0.036235, 0.374515, 1.103926, 3.328024, -1.022932, -0.421770, 0.262564, -0.503790, -1.633372, -0.007215, -1.793562, -0.599036, -0.574131, 0.307367, -0.578097, -0.603297, 1.036978, 0.525538, 0.255428, -0.734761, -0.206187, -0.929634, 0.815794, -0.976295, -0.084094, -1.288993, -0.045804, -2.553293, 1.341587, 0.834528, -0.658100, -0.330164, -1.596242, 1.379503, -0.051641, 1.338710, 0.003061, -0.975803, -0.772650, 0.789224, 0.155685, -0.470558, 1.422664, 0.922696, 0.539045, 0.334621, -0.382806, 0.986372, 0.403048, 1.097702, -0.343614, -2.157048, -2.003753, -0.301641, 1.385413, 0.345771, 0.541487, 0.982265, 0.973675, 0.545239, 1.334835, 0.145104, 0.694036, -1.940873, -0.155251, 0.952639, -0.828553, 1.449055, -0.963560, -1.566589, -0.452516, 1.144256, -1.138718, 1.058887, -1.227144, 1.352370, 0.893869, 0.553074, 0.590197, 0.919767, 0.739209, -1.018547, 0.619404, 0.222069, -1.122920, -0.389960, -0.872692, 0.329413, 0.535901, -0.037393, -0.184809, -0.768187, 1.777426, 0.580693, 1.055400, 0.585909, 0.327382, -0.704963, 0.240446, -1.395908, -2.819053, -0.384524, 2.115703, 1.038788, -0.386047, 0.394414, 0.014153, -1.083468, -1.268366, 0.536117, -0.926263, -1.745804, -0.126100, -0.330795, -0.002477, 0.006076, -1.751601, -0.414086, 0.342491, -1.246699, 0.227819, 0.104210, 1.963027, -0.973180, -0.072700, 1.289908, -0.525466, -0.194186, -1.123758, -0.028480, 0.140284, -0.449811, 0.249794, -1.954564, -0.501909, 3.107896, -0.537157, -0.615363, 0.833358, 0.130818, -0.470886, -0.598067, 0.485613, -1.002959, 1.054358, 0.922946, 0.493656, -1.295034, 0.178383, -1.298867, -0.902897, -0.186459, 0.297287, -2.278912, -2.306244, -0.553346, -0.810070, -0.692834, -1.223441, 0.102538, 1.072940, 1.420007, -1.079470, 0.556298, -0.017055, 1.374812, 0.117503, -0.497939, 0.429562, -0.742376, 0.205753, 0.201880, -0.481039, 1.490959, -0.947261, 0.971029, -0.108493, 0.720250, 0.440317, -0.416947, 1.383560, 0.471141, 0.100752, 0.262796, 0.253040, 0.246668, -1.583514, -0.908608, -0.432621, 0.734936, -0.704864, 0.372885, 0.865412, 0.654514, -0.335699, 0.875965, 0.966441, 0.043451, 1.130952, -1.448211, 0.084560, 1.562433, 0.897327, -0.478653, -1.555636, -0.342984, 0.141601, -1.480922, 0.727107, 0.155291, 0.729729, -0.341500, 0.277332, 0.986748, -0.353078, -2.394480, -0.337447, 1.226549, -0.903471, 1.040266, 0.818542, 0.224118, 1.912971, -0.540235, -0.104006, -0.276808, -0.636575, -0.188062, -0.769401, 1.244844, 1.113535, -0.103677, -0.230933, -0.026137, -0.319776, -0.008241, -0.280197, 0.163175, 0.409097, -1.531480, -0.212707, 0.993851, 2.238241, -0.430772, -0.664651, 2.236682, -0.194209, -2.817317, 1.369213, 0.691955, -0.065841, -1.836263, 1.580153, 0.463895, -0.451494, -0.019339, 0.793518, -0.698635, 0.743865, -1.935537, 0.746649, -0.273229, 1.496653, -0.932133, 2.122871, 0.348416, -0.715187, 0.284995, -0.826647, 1.210554, 0.192236, 1.027849, 0.741061, -0.105768, 0.676569, 1.511936, 0.625080, -0.573357, 0.089922, -0.754655, 0.933946, -0.907716, -0.902172, -0.382202, -0.279071, 1.007410, 1.360056, -0.338614, -0.656702, -2.972382, -0.343269, -0.068953, -1.184716, -1.570419, 1.230470, -0.034472, 0.413933, 0.421515, -0.829905, 0.430061, 0.842059, 0.522409, -2.363926, 0.270115, -0.462297, 0.609779, 0.810664, -0.397330, -0.301961, 1.102627, 0.336136, -0.949634, -0.075748, 0.942352, 1.969863, 1.222832, -0.315211, -0.182519, -0.541826, -0.394947, -0.434682, -0.212007, 0.315701, -0.988780, -0.032872, -0.346798, -1.302104, -0.794423, -0.408617, -0.107816, -0.783035, -1.310212, 1.584678, -0.236133, 0.548946, -1.954693, 1.183554, 1.385798, 1.144646, -0.662593, -0.360306, 0.667431, 1.659822, -0.131879, -0.379783, 0.656328, -1.123773, 0.082908, 0.712996, -0.554024, 0.563332, -0.199654, -0.591824, -0.561203, -0.426122, 1.403884, -0.903585, 0.605969, -0.267066, 0.394250, -1.134614, -0.140413, -1.815379, -0.376101, -1.036198, 0.119113, 1.289139, -1.048372, 0.056461, 0.210852, -1.502173, 0.430627, 0.942377, 0.948156, -0.288107, -0.331095, 0.346218, 1.452065, 1.446460, 0.310730, -0.599100, 1.074394, -0.277119, -0.100676, -0.755747, -0.604814, -0.135194, -0.147059, -0.320600, 0.565933, -0.601891, 2.256898, -0.966677, 1.544399, 1.176373, 0.523012, -1.033173, 0.019421, -0.847849, 0.383928, 0.668527, 1.245495, 0.262286, -0.543192, 1.228638, -0.524260, -0.818620, 1.324099, 0.864988, -0.441179, 1.662709, -0.438737, 0.214887, -0.483506, -0.834040, 0.807325, -0.454915, -1.349250, 0.223666, 0.062603, -0.182985, -0.822051, 1.002139, -0.292325, -0.025453, -0.661704, 0.985902, -0.182107, 0.287878, -1.975922, 1.205834, -0.228720, 0.679974, -1.008461, -0.223986, -0.548418, 1.051901, 0.692890, 0.719782, -0.303480, 0.153221, -1.393792, -0.441942, -1.498185, -0.169126, 0.742102, -0.474701, 0.888013, 0.472060, 0.637395, -1.894348, 0.084049, 1.787478, -1.303280, -0.771379, 1.150421, -1.216579, -1.432280, -1.126357, -0.680823, 0.239725, 0.110651, 1.101968, 1.195594, 0.492082, 0.003649, -1.672103, 0.973431, 0.208777, 1.851184, 0.745595, -1.197848, -0.554000, -0.700665, 0.582748, 0.519406, 0.948609, -0.406675, -0.375352, 0.068398, 0.035967, 0.229828, 0.328180, -0.659148, 1.003073, 0.138572, -0.698168, -0.617026, -0.445099, -0.157105, 1.164395, -0.938300, 0.675986, 0.603065, 0.266605, -0.626078, -0.078041, -1.407729, 0.369928, 0.626755, -0.414400, 0.729216, 0.155342, 1.095113, 0.825624, 1.569832, -1.084364, 0.102525, -1.174111, -0.105123, 0.633358, -0.028924, 0.228623, 0.130390, -0.236850, -0.144029, -0.573546, -1.032795, -0.417168, -1.504977, -1.354221, -0.403611, -1.461983, -1.129268, 0.892131, -0.335983, -0.676187, 1.446193, 1.193494, 0.306674, -1.055063, 0.704590, -0.435023, -1.763519, -0.550816, 2.047600, 0.822127, 0.040306, -0.033598, -0.242002, 0.147377, 0.250908, 2.251618, -0.041361, -0.358791, -0.181501, -0.591130, 0.254489, -0.714953, -0.740986, -1.279546, 0.949467, -0.873217, -0.467208, 0.190946, -1.008175, 1.801631, -0.126082, 1.067338, 0.288161, 0.249066, -0.617229, 0.593719, 1.530435, 1.884994, -0.081046, -0.968992, 0.160153, 1.969566, -1.053953, -0.836548, 0.139843, 1.494685, 0.352406, -0.926121, 1.569402, 1.523643, -0.278746, 0.898174, 0.658881, -1.684113, -0.701539, -1.447959, 0.663772, 1.112158, 0.061477, -0.059743, -1.103660, -0.182346, -1.185428, -1.876082, 0.655456, 0.558117, -2.022881, -1.520818, 0.347973, -1.594027, -1.155989, -0.045850, 0.731735, -1.289687, -1.541892, 0.210944, -0.625924, 0.199930, -0.080277, 0.903839, 1.231986, 1.067262, -0.068049, -0.699953, 0.822718, -0.296499, -0.221543, -0.278970, 0.513237, 0.827613, 1.713596, 2.597856, -0.140316, 0.362628, -0.821054, 0.157040, 0.118295, 0.553996, -1.485809, 0.258481, 0.355334, -1.177092, 0.103126, 0.398919, 0.190596, -0.803824, -0.397641, -0.372418, -0.009174, 0.162730, 0.611300, 1.236188, 1.789484, -0.232265, -1.521689, -1.170176, -0.831056, -1.337540, 0.137027, -0.417757, 1.164534, -0.801658, -0.389173, -1.443340, -0.920076, 0.441733, -0.040641, -0.035823, -2.645470, -1.232161, 0.147755, -0.421072, 0.532214, -0.856269, -0.634907, -0.403554, -0.346834, 0.839574, -0.087193, 0.441669, 0.738109, -1.393023, 0.478111, -1.067152, -2.588732, 1.711142, 1.215224, -0.728539, 1.647228, -0.973777, -0.713173, -0.077688, -1.157092, -0.827909, -0.856171, 1.090561, 1.046554, -0.058885, -0.559543, 1.384331, 1.161126, 1.337533, 0.097788, 0.670159, 0.911006, 0.529475, -1.536989, 0.349344, -0.096134, -1.219789, 0.046755, 0.823575, -0.009236, 0.107935, -0.477113, 0.648281, -0.213923, -0.803146, -0.329485, -0.572589, 0.652331, -0.207981, 0.727378, 0.381030, 0.022028, 1.303343, -0.468149, -0.477167, 0.456223, 0.125330, 0.478265, -0.628370, -0.159488, -0.967702, 2.533384, -1.029571, 0.114859, 1.126299, -0.223379, 0.059862, -1.161115, 1.011638, -1.229890, -2.005553, -0.727579, -1.437629, -1.777161, -1.213175, 0.875985, 0.028471, 0.050240, -0.783120, -0.064472, -0.759533, 0.589579, 0.430470, 0.649749, 0.209732, 0.040350, 0.941712, -0.323346, 1.486470, -0.150771, 0.344093, -0.475365, -0.936564, -0.502017, 0.144467, -0.759579, -0.750176, 1.734031, 0.114979, -0.829583, -0.024601, -0.897302, 0.670654, -0.412803, 0.400521, 0.668734, -0.957613, -1.484817, -0.345223, 1.250503, -0.535899, -0.009035, -0.528449, 1.986513, 2.060075, -0.130140, 1.040218, 1.052733, -1.392318, -0.435285, 1.826712, 0.505820, -1.051085, -0.080287, -0.617848, 0.883152, -0.647066, -0.396832, 0.743422, 0.887783, -0.697282, -0.544166, -0.702491, -0.623455, 0.374829, -0.785628, 0.003286, 1.263164, -2.329807, -0.614077, -1.238433, 0.891699, 1.553901, 0.704964, -0.671187, 1.504610, -2.033374, 1.953688, -0.124666, -1.080682, 0.884962, -1.197730, -0.583376, -0.131424, 0.280526, 0.926353, -1.122543, -0.911031, -0.265768, -0.019021, 1.521266, 0.602850, 0.893976, -0.913951, 0.292408, -0.037936, 1.372991, 0.969045, 0.231774, -1.618405, 1.453707, 0.110059, -0.115255, -0.276925, 0.413341, -0.438483, -0.553558, -2.901073, 0.260692, 1.145421, -1.203136, 0.948973, -1.298123, -1.958885, 2.066862, 0.112493, 1.208171, 1.674916, -0.020802, -0.838846, -0.305266, -2.597898, -2.074761, -0.180108, 0.895331, 0.244444, -0.338277, 2.188682, 1.884206, -0.598579, -0.558468, -0.410476, -1.159934, 0.309216, 0.381153, 1.448310, -0.998552, -0.910545, -2.139353, 0.663926, 2.045503, 1.095219, 1.955748, 1.028688, -0.651780, 1.632300, -0.943432, 0.911641, -0.684423, -0.327019, -0.505193, 0.135176, -0.888351, -1.751179, -0.208985, -0.932757, 2.598347, -0.609779, 0.307194, -0.886524, 0.034716, -1.398090, -0.614924, 0.288838, -0.632283, -0.272610, -0.929351, -0.378669, -0.077282, -0.006521, -0.058322, 0.491247, 0.351092, -0.072483, 0.992031, -0.283934, 0.642206, -1.271951, 0.840728, -0.348995, -0.172767, 0.194900, -0.274372, 1.686866, 0.365430, -0.762178, -1.689258, 0.396351, -1.103336, -0.433077, -0.610659, -0.476620, 0.920566, -2.285129, -0.080145, 0.183470, -0.357605, 0.029375, -1.174137, 2.090874, -0.468729, -0.646514, -0.704356, 0.751061, 2.093110, 1.365408, -0.647215, -0.607229, 0.553309, 1.028274, 0.500955, 0.044174, 0.391770, -0.964070, -0.389583, -1.040431, -0.149200, -1.870575, -1.083602, 0.407257, -1.515209, 0.945394, -0.877288, 1.202483, 0.329300, -0.414634, 1.363362, 0.701967, 0.021943, -0.336957, 0.563201, 0.362663, -0.096563, -0.352436, -0.313084, 0.774509, -0.292444, 0.235398, -1.047354, -0.217255, 1.224749, 1.198082, 0.243714, 0.413656, -1.563167, 0.009253, 1.336108, 2.276343, -0.816204, -0.609763, -0.106606, -0.211859, -0.419947, -1.252650, 0.678270, 0.364397, -0.303829, -0.496633, 2.521461, 0.444512, -0.690825, -1.091630, -0.674005, 0.256683, -0.522537, -1.058666, 0.717487, 0.029575, 0.583096, -0.262566, 0.638153, -0.294252, 0.399917, -1.033148, 0.216968, 0.547010, -0.973192, -0.242378, -3.080508, 0.707494, 0.985695, 2.193674, -0.246119, -0.737012, 1.426696, 0.295096, 0.250086, -0.610012, 0.053014, -0.253414, 0.018542, -1.049275, -1.513752, -0.445451, -1.492897, -0.601685, 1.208795, 0.409892, -0.361743, -0.293387, -0.145330, 1.127861, -1.852282, -1.495407, 1.223743, 1.118501, -0.598514, 1.016503, -0.598052, -0.816620, -0.111217, -2.164274, -1.506453, 0.848012, -1.684716, 0.397399, -0.025137, -0.082389, -1.592093, -0.931004, -0.053304, 1.186109, 0.241978, 0.001271, 1.244314, 0.253956, 1.508187, 0.336085, -1.638505, 0.342083, -0.468752, -1.653105, -0.983859, 0.236307, 1.104780, 0.414965, -0.465309, 0.983627, -0.832675, 1.590554, 0.267019, 0.442295, 0.089077, 2.132010, 0.776167, 0.638996, -0.450323, 0.347643, -0.923947, 0.255782, 0.168298, 0.509174, 0.443585, 0.944438, 0.087974, -0.828370, 0.002427, 2.078786, 0.805401, -1.471338, 0.357937, 0.164135, 0.867548, -0.882660, 0.310870, 1.745017, 0.497361, 1.018385, -0.306170, 0.729058, -0.505483, -0.030711, -0.949488, -2.127658, 0.498005, 0.361026, -0.372618, 0.036155, -1.172335, 0.421863, 0.232184, -0.246218, 0.118726, 1.610804, -1.378174, 0.283408, -0.947898, 0.004621, 0.352545, -0.418786, -0.284877, 1.156360, -1.784031, 0.586838, -1.190856, -1.825560, 0.391753, 0.204176, 0.679014, 1.117311, -0.053043, -0.381388, 0.225296, 1.156356, -0.565207, 0.946840, -0.772552, -0.281142, -0.716169, 1.183331, -0.462058, -0.133600, 2.386313, -0.954903, 1.617639, -1.990874, -0.503741, 0.805940, -1.798753, 1.018242, -0.069681, 0.768632, 0.829163, 0.248769, 0.473693, 2.759011, -0.175960, -1.088549, 0.090859, 0.868354, 1.221065, 0.098714, 0.504231, -0.488036, 2.065358, 0.424258, 0.932790, 1.445589, -0.535498, 0.323761, -1.241941, 0.770135, 1.600767, 0.377585, -1.561460, -0.315027, 0.809735, 0.208054, -0.680719, 0.951335, -0.057570, 1.001270, -0.167095, -0.205945, 1.083783, -0.006386, 0.507432, -0.509077, -1.529743, 1.234340, -1.826191, 0.331366, 0.708026, 0.112583, 0.828184, 0.093870, -1.045377, -0.439622, -0.689164, -1.625109, -1.033484, 1.300538, -1.205164, 0.735395, 1.848574, -0.412589, -0.460112, -0.654017, 0.824179, 1.737731, 1.692008, 0.217702, -0.920894, 0.289846, 0.489996, -2.763100, -1.476797, -1.584765, 1.324330, 0.241056, -1.376677, 0.798251, 0.989410, 0.486622, 0.432964, -0.127954, 0.255011, 0.235208, 0.324400, 0.242507, 0.850728, 1.853686, -0.769172, -0.676401, 0.981819, -0.665699, -0.436257, -0.746578, 0.719598, 0.670031, -1.617423, -0.765698, -0.130638, 1.339001, -0.250610, -0.233239, 1.887988, 0.395393, 0.443265, -0.357346, -0.932440, -0.041591, 1.545087, -0.827120, -0.328962, -0.258529, 0.272733, 0.755365, 0.316440, 0.583357, 0.307030, 1.749242, 0.128056, 0.731642, 2.486978, 0.222047, -1.213414, -1.748090, -0.666311, -0.726829, -0.102644, -1.158301, 1.226055, 0.189799, 0.249707, 0.297159, 1.648256, 0.602773, -0.078200, 2.368379, -1.029276, -0.031718, -0.060050, -0.106025, 0.208640, -0.297482, -0.594718, -0.536860, -1.618080, -0.012819, 0.665794, -1.306326, 0.329952, -0.384732, 0.471170, -0.692423, 0.352658, -0.353765, -0.624031, 1.618181, -0.117278, -0.160651, 0.133729, 0.416183, 1.741488, -0.132032, -0.096393, -0.667343, -0.126846, -1.023001, 0.756026, -0.216776, 0.307320, 0.185616, 0.765330, 2.698803, 0.155681, -0.284734, -0.049457, 1.226896, 1.321137, 2.105102, -0.024803, -2.351218, 0.955395, 1.623109, -2.593519, 0.880723, 1.366364, -0.453704, -0.169199, 0.101298, -0.339878, 0.669135, 0.084879, 0.898043, -0.671916, -0.210344, 1.651739, -0.314424, 1.108827, -1.167360, -0.458726, -0.480828, -1.032212, -0.385593, 0.958898, -0.979084, -1.761650, -0.311020, -0.663789, 3.002856, 0.500758, 1.869690, -0.009320, 0.976446, -1.649059, -0.016867, 1.788669, -0.281528, -0.820604, -0.935893, -1.498471, -0.762326, -0.425157, 0.495993, 1.540421, -0.284625, 0.385401, 1.375196, -0.032166, -1.812318, 0.580485, -0.579971, 0.569041, -0.324428, 0.429991, 0.747618, 1.127255, 0.482443, -1.583986, 0.003698, -0.794320, -0.131490, -1.469137, -0.287240, 2.368807, 1.997617, 1.975032, 1.281578, 0.030255, -0.206150, -0.613783, 0.652650, -0.132643, 0.566216, 0.201846, -0.410452, -1.550183, 1.027754, 1.109950, 1.231980, 0.117048, 0.026106, -1.141737, 0.522628, 0.560496, 1.075405, -1.829545, -0.032200, 0.580612, -0.329021, -0.479999, -2.144433, 0.689593, -0.942547, 1.524227, 1.470467, -0.180339, -0.560179, -0.947481, -1.483103, -2.078937, 0.546303, -1.200161, 0.443168, 1.246248, 0.467015, 0.041833, 1.185161, -0.327042, -0.262802, -1.070756, 0.465227, 0.014188, -1.044144, 0.186583, -1.184165, 1.554506, 1.030036, 0.886680, 0.014195, -0.589994, -0.918017, -0.297715, -0.964505, -0.339930, -0.349669, -0.342444, 1.181813, -1.065601, -0.118944, -0.326901, -1.334548, -0.159863, 0.837796, 0.027617, 2.080922, -0.133526, -0.319612, 1.616086, -0.166965, 0.420309, 0.407471, -0.707876, 0.146836, -0.485669, -2.241846, 0.058797, 1.638197, -0.281664, 0.363624, 0.224746, 0.347689, 1.504757, 0.867705, -1.058335, -0.757657, -0.233610, -0.605775, 0.103034, -0.782511, 0.484143, -0.614415, -0.849009, 0.009519, 0.851913, 0.783826, -0.705088, 1.500142, -0.516031, -0.475369, -1.390907, -1.310930, 1.388639, 1.468088, -0.862605, 0.641629, -1.331897, -0.420069, 0.996633, 2.415989, -0.690723, -0.248493, -0.120515, -0.383829, 0.621671, 1.196772, -0.290069, -0.656415, -0.050779, 0.442847, -1.222851, -0.512616, 0.694622, 2.135243, 1.632016, 0.463504, 0.163877, -0.432316, -0.074746, -0.036560, -0.136754, -0.902811, -1.496528, -0.072025, -0.228463, 1.702090, -0.363793, 0.074235, 1.243025, -1.659096, -0.603901, 0.414347, -1.563740, 0.905980, -2.441795, 0.378857, 0.365431, -2.931975, -0.640035, 0.491280, -1.182243, -0.057325, -0.705213, -0.623949, 0.589179, -0.011464, -0.339350, 1.278987, -0.350046, -2.259562, 1.156975, 0.431198, -0.448226, 0.181641, 0.884539, 1.563273, -1.797369, 0.938881, 0.276529, 0.733857, 2.082041, 1.287495, -0.493925, 1.098816, 0.598159, -0.414070, -0.519057, 0.482735, 0.509668, -1.662336, 0.028147, -1.365872, -0.233200, -0.490152, 0.327856, -2.546453, -1.171195, 0.957049, 2.172434, -1.613645, -0.725649, -0.333343, 0.723008, -1.046704, 0.184869, 0.302755, 0.632297, -0.213238, 0.131648, 1.907775, 0.501460, 1.272059, 1.344904, 0.474290, -0.362896, 0.230117, 0.467075, 0.454175, 1.339638, -0.595783, -1.008737, -0.238725, 0.480643, -1.216938, -0.362692, 0.718953, -0.532518, -0.293144, 0.455388, -1.204346, -0.509517, -0.672102, -0.347790, -0.355769, 0.668932, 0.450684, -0.464111, 0.428428, 1.070328, -0.769980, -0.040134, 0.211202, -0.117045, -1.614071, 0.612755, -0.749004, -1.503798, 2.681678, 0.526501, 1.302395, 1.850410, -1.570418, 0.552783, 0.555774, 0.647278, -1.540283, 1.126552, 0.716625, -0.805623, -0.784180, -0.457727, -1.494954, -1.800645, -0.247513, 0.770136, -1.755537, -0.064888, 0.334915, -0.438589, 1.378984, 0.304287, -0.828168, -0.082067, 0.025025, -0.641677, -0.957067, 0.192324, 1.713293, -0.198615, -0.430762, -0.307394, 0.108820, 2.067800, 1.753175, -0.175777, 0.380387, 0.287044, 0.822855, 1.312685, -0.011331, -1.184620, -0.706590, -0.960235, -0.371950, 0.484617, -0.307238, -0.415538, -0.450592, -1.798892, -1.024896, -1.962870, 0.383872, -0.945319, -0.546227, 0.143008, 0.885236, -1.415447, -0.607128, -0.073790, 0.839108, 0.095335, -0.612102, 0.131944, 1.497239, 0.703147, -0.762010, -2.455624, -0.550255, -0.527730, -1.200463, -1.335213, 0.198714, -0.853133, -0.108890, 0.778238, 0.519175, -1.099018, 1.044160, 0.064686, -0.248143, -1.123017, -0.104113, 0.593299, -0.328193, 1.238760, 0.289982, -0.120638, 0.543488, 1.481058, -1.728156, 0.557878, -0.564819, -1.294336, -0.365197, -0.903325, -0.736969, -0.593731, 0.231700, 2.312100, 0.044761, 0.605234, -0.402889, 0.293846, -0.238520, 0.792277, 0.399851, -1.271464, -0.143157, 0.817546, -0.414382, -0.584692, -1.231259, -0.610151, -1.301072, -0.960832, 0.844918, -0.394307, 0.091667, 0.049415, -0.228930, 1.193390, 1.165965, 0.239050, -2.000160, 0.563655, 0.524789, -0.323701, -0.288131, 0.586101, -1.919066, 0.788416, 1.076393, -0.267581, -2.066545, 1.361658, 0.192215, -0.268293, 0.685415, -1.066501, -0.890900, -0.753302, -0.943416, 0.136978, -2.134350, -0.177144, -2.083099, 1.529065, -1.324988, -0.713418, -1.698089, -0.951384, -0.528493, -0.824585, -2.350519, -0.055867, -1.488417, -0.436066, 0.015655, 0.713698, -0.390350, -0.624259, 1.473821, 1.544823, 0.261959, -0.437874, 0.531292, 1.669885, 0.309119, -0.113530, 1.824166, 0.706350, 0.716046, -1.927026, 0.799317, -1.153619, 0.480715, 1.901056, -0.734579, -0.028224, -2.146215, 1.224755, 0.135683, 0.707858, 0.074689, 0.815132, 0.006397, -0.226859}, - { -1.775708, 1.577773, -1.357120, -1.948466, 2.379937, 0.974103, -0.075040, 2.195132, 0.891181, -0.713695, -0.795392, 0.952692, 0.562669, 0.395196, -1.223407, 0.087385, -0.574228, -0.018478, -0.592905, 1.485322, 0.147479, 1.544212, -0.067118, -0.527288, -1.324014, -0.092526, 0.218096, 1.054857, -0.207179, -1.471871, -0.072510, 0.128589, 0.313770, 0.527617, 0.781455, -0.560813, -0.497827, 0.763926, -0.081313, 1.627997, 0.422461, -0.470420, 0.163412, -0.515582, 1.152705, 1.348188, -1.169136, 0.777720, -0.124728, 0.823216, -0.321754, -1.199779, -1.373755, 0.059612, 0.408166, -1.728657, -0.574989, 0.558442, 1.049780, -0.651828, 0.478471, -1.564489, 1.136657, 1.178832, 0.361032, 0.250224, -1.324271, 0.368622, 0.609381, 0.041441, 1.023976, -0.317153, 0.008926, 1.497955, 1.331776, -1.366921, 1.694042, 0.319073, 1.243736, -0.275788, -1.386266, -0.239738, -1.453370, -3.428048, 0.438705, -0.963804, -0.878525, -0.583121, -1.116015, 0.049740, -0.222268, -0.115479, 0.255961, 0.240079, 1.159971, -0.515537, -0.405841, 0.556940, 1.876047, 1.499914, 0.318520, -0.357236, 0.616091, 0.319665, -0.036077, -0.409389, 2.053128, -0.509843, -0.178014, 0.089493, 0.768478, 0.241166, 0.286690, 0.398833, 0.478272, 0.465642, -1.566303, 0.228673, 0.268823, -0.600708, 0.250576, -1.016163, 0.510160, 1.088357, -1.432796, -1.336184, -1.323552, 1.956550, 0.650685, -0.353928, -0.315436, 0.735578, 0.247915, 0.539326, -0.048299, 0.596354, -0.172272, 0.679505, 1.323684, 2.440036, -0.953941, 2.264165, -0.857901, -0.282070, 1.451947, 1.021027, 1.484610, -0.326566, 1.162769, -1.563729, -0.125484, 0.731224, 1.693233, 0.546951, 1.626992, -0.224999, -0.349068, -1.081630, -1.393522, 0.187838, 2.066783, -0.542921, 0.555104, 2.261391, 0.445907, 0.630637, -1.327879, -1.552196, 0.495191, -0.901314, -2.284741, 0.505776, -0.772807, -0.435042, 1.676813, -0.687331, -2.071118, -1.328349, 0.025718, 0.102198, -1.748192, -1.294535, 1.859533, 0.864871, 0.344695, 0.195630, 0.000184, -1.547332, -0.790501, -0.568389, 0.756407, 0.561980, -0.585830, 0.653992, -1.078229, -1.255563, -1.558588, -1.028194, 0.143493, -2.542594, -0.032492, 0.019688, -0.150061, -0.345382, -1.687949, 0.772111, 0.063768, 0.599223, 0.593575, 0.103457, -0.040748, -0.232488, 0.090344, 0.048193, -0.810328, 1.002816, 0.856849, 1.381180, -0.230105, -0.805479, -2.013278, 0.432458, 2.037941, 0.659237, -0.259172, 0.392761, -1.393723, -0.267069, -1.790866, 0.528086, 2.181783, 1.148085, -1.356451, 0.083570, 0.046276, 0.663066, 0.199981, 0.755376, -0.627783, -0.792499, 0.361999, 0.498776, -0.480737, -0.203732, -2.370168, 0.786610, -0.194616, -0.831342, -3.450214, -0.093845, 0.401587, 0.471217, -1.019708, -0.591133, -0.353336, 0.370283, -1.552086, 1.005746, 1.153766, -0.595319, 1.459991, 2.573270, 0.350138, -1.293580, -0.739786, -0.737980, -0.458690, 0.994674, -0.650658, 0.809190, 0.253029, 0.273181, -2.272073, -0.374725, 0.861526, 0.381432, 0.638572, -0.059434, -0.392367, -1.576198, -1.080680, 1.085267, 0.581584, 1.250279, -0.270705, 0.907434, 0.204817, -1.132815, -0.312156, 0.325631, -0.068137, 1.716925, -0.569874, 1.850344, 0.140704, -1.427467, 0.519566, 2.054110, 0.238838, -0.338579, 0.426959, 0.788494, 0.231708, -0.179429, 1.521585, -0.346507, -0.639987, 0.708528, 0.055052, -0.138056, 1.218998, -0.040668, -1.703094, 2.910345, 0.515357, 0.775643, 0.537399, 2.486140, -0.158430, -0.652643, -1.694820, -0.671851, -0.432173, 0.155075, -1.529571, -0.912793, -0.039052, 0.300161, 2.178182, 0.957360, -1.162344, -0.119158, 1.773908, -0.912277, -1.059169, 0.230747, 1.762620, -0.648301, 0.746444, -0.210026, -2.037598, -0.063281, -0.662760, 0.634799, -0.725785, 0.010431, -0.767840, -0.923967, 0.006651, 0.660096, -0.345080, 0.551504, 0.236843, -0.259468, 0.400491, -1.287899, -1.383754, 0.323031, 0.167118, 0.666256, 1.135421, 0.207733, -0.476413, -1.314378, -0.184729, -1.721126, -0.643044, 1.427276, 1.711674, 1.453249, -0.969912, -1.113708, 0.534715, -0.571263, -1.024817, 1.747044, 0.565119, -0.441453, 0.132921, -1.238919, -0.862933, 1.144910, -0.989436, 0.832204, 0.206228, 0.601980, 0.735158, -0.530706, 0.454795, 0.087421, -0.110428, -1.532028, -2.125558, -0.732246, -0.095187, 0.314524, 2.072491, 0.141578, -2.154202, -0.996405, 0.154052, 0.386981, -1.527894, 0.662735, -0.728092, -1.277087, 1.947863, 0.176360, -1.577321, 0.470118, -1.595076, 0.330754, -1.172099, -0.333187, -0.295277, -1.073788, -0.182389, 1.065091, -0.422886, -0.648396, 0.001978, -0.573041, -0.319242, 0.563175, 0.190408, -1.009268, -1.572550, -0.229680, -1.521161, -1.606081, -0.186338, 1.084512, 0.767137, 1.324980, 0.294943, -1.189233, 0.840304, -1.238156, -0.515402, 0.684759, -0.514806, -0.035721, 0.423411, -0.939540, -0.027619, -0.170692, 0.607354, -1.620211, -0.028658, 0.451254, 0.062468, -0.687237, -0.712231, 1.869627, -0.853865, -1.928953, -0.855752, -0.092192, 0.251865, -1.488517, 1.201767, -0.762946, 1.061949, -1.292997, -0.980431, 0.764382, -0.321076, 0.423421, 1.114901, -0.291273, -1.751577, 0.198999, -0.393977, 1.105855, -0.220299, -0.149601, -0.976882, -2.059405, -0.264161, 1.898186, -0.281793, 1.114171, 1.217944, -0.076797, -0.038639, 1.210367, 1.624460, 0.317270, -0.168522, 0.248750, 1.351528, -1.778224, -0.007352, 1.591936, -1.030857, 0.068813, -0.931847, 1.498091, 0.340230, -0.715672, -0.810611, -1.280811, 0.904199, 0.994395, 2.076841, 1.768701, 1.654172, -1.064972, -0.471928, 0.319467, -0.027157, -0.431668, 0.541589, 0.588718, -0.657105, 1.404547, 1.463650, -1.647953, 0.033319, -0.228811, -1.716704, -0.084922, 1.160699, -1.855660, 0.486622, -0.448874, -0.534979, 0.538831, 0.398621, 1.816244, 0.617336, 0.509768, 0.278272, -0.407466, -1.102746, -0.640729, 2.204052, -1.090603, 0.428259, 1.131038, 0.484830, -0.219091, -1.273546, 2.582221, 0.129235, 0.225636, -0.446631, -0.947427, 1.641930, 0.001540, -0.222013, 0.516219, -0.217888, 1.285172, -1.654165, -0.400398, -0.263518, -0.577081, -0.614662, -0.034810, 1.151575, 1.481600, 1.029548, -1.324441, -0.033114, -0.464003, 0.746416, -1.513239, -0.557277, 0.613971, 0.323732, 1.050647, 0.454061, -1.844451, 0.506889, 1.338220, 0.263406, 0.014499, -0.399012, -0.244619, -0.058918, -0.545773, -0.612247, 0.460900, 0.033688, -2.438305, 0.830354, -1.647037, -1.478666, -0.471272, 0.275862, 0.658311, 1.516656, -0.435511, 0.083734, 1.399203, 0.297462, -1.815983, -0.623867, -1.854946, 0.668973, -2.180854, -0.364391, 0.081705, 0.823075, 1.776006, 0.067504, 0.224016, -1.491039, 0.748698, 1.074837, 0.131548, -1.422208, -1.920705, 1.442040, 0.222505, 0.046959, -0.564873, -0.932313, -0.873606, -0.200770, -0.425828, -1.369458, 2.656986, -0.879825, -1.926587, -1.297984, -0.591694, 0.624829, 1.122620, 0.371118, -1.125153, -0.211166, -0.105891, -2.217010, -0.442485, -0.340532, -0.656841, -1.088273, -0.361514, -0.770818, -0.421875, 0.334398, -1.338224, -0.958271, 0.872752, -0.808662, 0.255063, -1.515681, 0.493300, -2.064736, -0.552958, 0.626030, -0.549370, -1.835676, -0.196684, -0.050138, 0.269438, 1.094259, 0.135782, -1.033487, -1.065508, 1.876711, 1.126448, 1.844628, 0.980747, -2.225693, 1.555722, -0.480570, -0.482708, 1.575417, 2.144323, 0.720656, 0.341507, -0.451255, -0.423274, -1.030605, -0.895396, -0.963350, -1.078762, -0.261076, 0.218953, 0.991210, -0.844975, 0.154304, -0.726847, 0.198680, -0.486901, -1.515643, -0.716145, -0.628174, -0.907404, -0.451294, -0.314370, -0.051817, -1.352604, -1.062598, -1.005519, 3.518583, 1.019941, 0.668420, 0.945828, 0.293143, -0.273200, 0.386627, 1.298502, -0.742222, 0.434938, 0.206664, 0.817568, -1.004614, -0.172594, 0.959674, 1.426990, -0.500679, -0.283698, -0.720258, -0.188524, -0.504126, 0.778705, 0.545453, -0.376503, 0.294048, 1.174140, -0.089970, 0.642154, -0.150266, 1.027822, 1.254247, -0.507758, 1.931679, 0.434283, -0.349654, 1.071715, 0.989825, 0.959410, 0.691310, 0.179832, 0.795462, -0.460646, 0.271950, -0.210593, 0.990797, -0.306692, 0.789792, 0.609754, -0.840308, -0.719276, -0.467790, 0.607719, 0.210216, 0.737544, 1.578652, -0.332656, -0.369550, -1.562057, 0.406025, -0.072135, 0.705253, 2.786014, -0.782209, 0.144101, 0.027090, 0.411446, -0.103862, -0.794118, -2.550025, -0.794052, 1.197102, -0.070774, -2.141302, 1.142176, 0.571104, -0.106905, 1.215271, 0.411307, 0.322397, -0.143596, -1.489449, -0.012869, -0.030781, 0.289805, 2.102154, -0.468891, 1.575945, -0.154692, 1.109218, 1.013330, -0.850630, -0.691914, 1.364860, -0.484503, 1.456156, 1.014713, 0.734903, 0.449798, 0.716608, 0.162605, 0.186169, 0.215676, -1.057875, 1.186841, -1.372339, 0.688239, 1.331015, -0.296080, -0.676232, -1.943690, 0.173155, -2.314358, -0.320911, -0.085317, 1.200871, 0.103588, 0.201949, -0.215095, 0.357064, 0.688957, 1.057573, 1.973270, 1.274735, -0.571417, 0.226696, 1.014030, -1.502967, 0.707380, 1.203169, -0.515187, 1.283324, -0.620082, -0.051055, -0.089619, -0.117189, -2.145127, 0.826318, 0.567406, 1.020097, -1.139863, 1.425147, 2.643832, -0.201424, 1.463312, 0.842408, 0.771046, -0.658888, -0.638513, 1.154166, 0.506405, -0.269198, -1.747310, 0.748471, -1.039160, -1.183894, -1.773082, 1.734395, -0.218093, -1.189979, -0.639931, -0.287645, 0.479232, 0.375571, -0.884342, -0.646296, -0.627006, -0.175362, -0.523969, 0.968641, 1.286379, -1.329833, 0.122692, -2.351994, -2.193979, -0.104421, 0.457688, -0.122849, 0.118144, 0.721333, 1.005934, -0.030132, -1.142573, -0.811456, 1.625021, 0.472148, -1.774473, 1.366981, -0.061792, 1.655075, 0.823839, -0.406401, -0.709887, 0.263895, -0.582684, -1.147522, -0.243877, -1.173104, 0.715198, -0.135716, 0.970815, -0.506302, 1.256250, -0.304273, -0.622631, 0.774186, -0.098001, 0.511715, -0.653205, 0.405905, -1.144706, -0.762377, 0.104969, -1.191963, 0.436752, -0.486578, -0.738273, -0.218448, 0.677714, -0.140663, -0.176665, -0.231104, 0.824045, -1.405195, -1.396788, -0.678873, 0.932869, 1.584708, -0.859148, -0.525673, 1.603462, 0.185084, 1.146181, -1.679175, 2.919252, -0.378511, -0.078541, -1.639030, -1.181860, 1.001962, -0.226263, 0.300445, 0.952903, 0.349240, -0.018386, 1.339089, -0.852537, 1.293326, -1.234429, -1.259413, -0.574849, 0.341944, 0.635390, 1.248488, -0.518246, -0.009616, -0.395374, 0.335589, -0.391057, 0.967579, -0.431392, -0.244620, -1.216109, -0.676797, -1.929863, -1.927927, -0.145844, 0.203886, -1.372941, 0.613168, -1.291676, -1.549550, -1.404324, 0.543865, 0.743535, 1.588470, -0.780898, -0.366438, 1.637097, 2.270249, 0.516151, -0.650590, 1.958283, 0.533614, -0.362792, -0.280270, -0.472363, 1.033453, 1.194234, -1.257510, 0.269215, -0.458214, 0.383964, -1.431215, -0.533049, 0.633671, -1.486081, -0.395552, 0.883551, -1.189532, 0.229135, -1.089706, -0.079819, -0.131758, -0.042324, -1.633988, -1.674003, -0.630605, -1.468850, 0.382644, -0.553704, 1.748937, 1.870357, 0.231930, 0.566580, 1.053156, 0.482045, 1.192855, 0.770437, -0.205162, 0.221310, 0.384379, 1.852206, -1.237267, -1.810564, -0.175734, -1.025309, -0.719673, 0.014981, -1.054880, 0.129170, 1.155245, 1.084922, -0.131768, -0.778565, -0.683912, 1.632237, -0.270281, -0.515743, 0.554145, -1.552635, 0.728398, -0.513917, 1.028731, 0.946778, 0.101074, -0.222134, -0.453484, -0.157685, 0.686110, -2.657552, 0.213809, -0.570501, 0.398271, -0.034616, 2.299735, 0.617206, -0.009037, 0.489672, 0.259026, 0.982366, -0.916636, -0.835163, 0.452656, -0.636508, -0.837199, 2.029793, -1.028072, 0.241387, 0.490390, -1.198617, 0.827183, -0.101270, 1.271432, 0.647919, -0.252802, 0.025678, 1.099627, -0.192586, 0.382749, -0.229662, 0.425308, -1.479770, -0.144008, 0.926339, -0.078180, -0.442595, -0.084503, -1.174988, 2.062048, 0.220858, 1.023074, 0.629293, -0.758778, -0.161750, -0.801879, -0.903283, 0.944132, -0.906454, -0.522810, 2.106923, -0.956492, 0.746447, -0.041929, 0.477438, 0.883054, 0.558895, -1.335454, -0.346808, 0.259823, -0.158528, 2.285153, 1.922114, -0.490711, 1.660747, -0.132825, -0.163069, -0.080119, -0.153927, -0.650564, -1.200334, 1.385344, -0.390135, -0.207605, 2.078298, 1.237065, 0.141470, 1.033145, -0.540462, -0.494870, -0.071068, -1.664295, -0.274671, -1.468852, -0.578119, -0.396694, -0.442577, 1.973585, -0.069533, -1.006045, -0.315918, -0.726714, 0.706754, 0.468841, 0.083514, 1.290425, 0.190972, -0.139193, -0.506232, 0.982724, 0.544418, -1.815975, 1.874176, 0.871083, 0.033521, 0.629592, 1.304928, -0.700882, 0.789623, -0.586080, -0.848986, 1.135839, 0.634214, 1.201540, -0.870741, 1.944623, -0.496977, 1.444003, -0.405687, 0.822867, 1.676593, -0.520585, 0.578250, -1.194576, 1.823117, -0.996548, 2.402521, -1.021042, -0.027274, -0.354823, -1.500319, 0.931279, -0.417669, -1.397350, -0.182041, -0.048365, 0.996540, -1.742504, 1.150031, 1.341433, 1.367734, -0.822363, -2.223567, 1.100254, 0.653989, -0.807970, -0.189016, -0.804092, 0.213814, -1.485453, 2.800562, 0.110801, -1.951356, 0.363166, -0.586134, 1.883338, 1.420361, 0.034059, -0.056076, -0.755489, -0.082437, -0.258651, 0.796638, 1.511878, 0.495026, -0.059032, 0.371131, -0.809234, 1.961914, -0.189696, 0.467770, 0.473456, -0.160251, 1.425941, 0.161275, 0.331375, 1.081585, 1.100084, -1.512353, -0.023201, -0.144617, 0.521923, -2.516715, -0.221022, -0.908016, -0.541444, 1.576889, 0.516303, -0.896864, 1.080233, 1.054607, -1.323635, -0.506084, 0.737874, 0.682534, -1.312657, 1.105786, -1.857938, -1.067394, -0.134948, -0.358176, -0.440916, -0.085567, 0.083360, -0.361560, -1.121371, -0.293974, 0.835560, 0.161648, -0.763389, 0.137067, -0.369772, -0.363351, -0.014890, 0.637033, -0.383004, -1.248646, -0.349934, -0.491336, -0.234832, -2.255174, -1.491752, -0.360289, 2.037044, 0.770860, 0.579947, 1.045691, -0.754107, 0.800637, -0.685494, -0.155525, 0.324770, -0.844874, -0.242755, 1.075303, -0.881917, -1.878024, 0.241259, 1.222231, 0.224661, 0.574867, 0.216944, 0.264035, 0.650297, 0.722769, -0.080460, -0.660219, 0.617302, 0.885114, 1.609503, 0.535712, -0.732011, 1.418941, 2.063185, 1.824984, 1.660638, 0.896825, -0.029203, 1.372220, -0.952185, -1.322015, 0.556037, 0.580473, -0.104982, 0.046964, -0.117813, -0.705521, -0.646329, -0.173694, -0.131886, -0.087059, 1.104625, -0.242121, -0.307542, 0.093469, -0.619114, -0.004495, -0.096606, 0.822098, -1.272659, 0.418360, 1.847186, 1.086269, -0.424036, 0.467723, -0.494768, 0.950519, 0.387744, -0.350703, -0.700662, -0.125557, 0.555294, 0.678339, -0.080568, 1.735546, 0.174262, 1.191062, 0.136239, -0.154005, -1.542194, -2.308535, -0.596132, 0.315933, 0.819645, 1.340121, -0.660858, 0.370789, 1.327930, -1.018899, -1.055663, -0.815302, -1.597600, -0.958477, 0.813381, -0.443054, 1.867535, -0.765669, -0.894600, 1.424273, -0.097083, -0.098563, -1.085633, -0.058550, 0.554588, -0.377396, 0.119660, 0.711123, -0.026442, -1.025043, -0.376491, 0.119248, -1.533973, 0.095374, 0.617827, 0.987291, -2.183068, 0.027208, 0.221829, -3.005217, 1.090522, -0.993239, -0.445808, 2.030088, 0.922485, -1.083660, -1.347993, -0.880972, -0.724366, -0.340507, -1.374918, 0.967600, -0.512508, -0.616746, 0.766628, 1.796489, -0.300281, -0.428366, -0.245438, 2.327469, -0.597833, 0.103056, 0.595945, -0.848635, -0.154962, 1.697285, 0.553511, -0.408970, 0.226626, 0.156645, 0.170564, 0.553376, -0.706542, 0.822720, 1.343730, -1.500968, -1.947354, 0.107539, -0.651983, 2.212274, 0.544837, -0.326758, -0.064990, 1.426269, 0.385979, -2.018229, 0.389803, -0.614532, 0.857144, 1.853422, 0.333639, -1.681254, -0.127935, 1.169867, 0.743258, 0.812147, -0.013091, -1.023290, 1.279952, 0.218842, -0.052876, 0.494333, 0.518687, 0.655237, 0.224787, 1.017037, -0.862203, -0.755503, 0.874073, 0.676425, -1.137551, -1.548401, -0.509317, 0.612588, -0.290280, -0.496163, 1.142411, 1.085601, 0.784212, 2.014164, 0.055325, -1.718364, 0.263004, 0.073543, 0.055354, 0.879918, -0.334428, 0.081678, 0.578851, -0.897087, 0.412534, -1.877735, -1.256565, -0.733116, -1.046757, 0.679224, -1.610478, 0.024093, 1.440681, -0.838338, 0.126584, -0.343775, 0.547078, 0.375123, 1.018756, -0.730928, 0.328524, -1.705947, -1.048713, 1.091643, -0.028292, -1.224218, -0.089561, 1.217982, -1.989449, 1.088431, 0.252731, -0.162801, 0.768207, -1.699195, 1.247580, -0.220136, 2.589546, 0.660711, -0.565806, -0.054828, -0.553599, 0.884829, 0.188387, -0.076428, -0.506129, -0.551856, -1.062665, 0.738606, -0.427905, -0.987469, 0.245128, -1.223548, 0.091279, -1.566992, -0.265303, -0.134684, -0.682425, -0.756457, -1.467724, 0.660941, 2.109020, 0.143626, 0.428602, 0.143336, 1.300321, 0.748056, 0.432438, 0.847719, 0.947533, 0.139024, -1.571151, -1.071211, -0.468524, 0.384259, -1.189497, 0.406632, 0.681126, -0.440703, -0.773902, -0.838168, -1.208226, -0.988567, 0.150959, -0.643446, 0.856990, 0.980113, 1.162811, 1.596140, -0.724479, 0.105303, -0.186950, 0.283084, -0.064893, 1.990701, -1.785999, -0.864643, -1.870263, 1.107410, 0.504602, -0.732027, -0.570880, -1.302793, 1.154628, -0.054597, 0.399226, -0.225317, -0.212890, -0.855952, 2.569160, 0.545390, -0.824547, 1.599204, 0.058183, -0.919645, -0.917455, 0.832989, -0.170566, 1.908245, 0.001603, 0.627770, -1.670792, -0.301800, 0.935163, -1.255118, 1.568303, 0.005433, 0.449391, -0.077267, -0.647444, -0.168594, -0.784819, 0.187211, 0.134343, -1.045220, 0.826532, -0.677676, -1.064600, -1.007895, 0.002193, -0.934753, 0.455572, 1.054577, 0.325151, -0.727604, 0.948810, -0.040443, 1.009822, -1.099845, -0.685704, -0.577473, 1.042355, 1.585365, 0.508017, 1.250269, 0.834853, -0.187163, -0.974382, -0.558890, 0.751242, 0.520268, 0.563874, -1.592970, 0.392170, 0.749258, -0.909995, -0.609332, 0.145706, -0.495422, 2.282540, -0.553180, 1.030593, -1.251119, -2.292460, -0.680006, -1.029058, -1.053776, -1.431870, 0.712730, -0.193627, 0.298942, -1.077898, -1.324547, 0.561727, 1.385163, 1.295232, -0.768190, -0.172363, 1.791400, -0.230682, -0.779946, -0.612985, -1.317359, 0.680402, -0.902588, -1.318383, 0.624819, -0.360594, -1.340570, -0.789035, -0.505029, 0.517947, -1.639783, -0.098554, 0.615573, 0.362778, 1.149147, 0.900741, -0.108052, 1.909900, -0.094781, 1.451123, -1.404963, 0.405052, -3.160711, -0.217405, -0.236148, 0.559246, -0.330710, 0.530316, -0.571844, 0.323980, 0.478754, -0.385131, 1.908600, -0.399630, -0.617568, -0.445279, -0.065905, -1.197955, -1.117299, 0.422909, 0.249833, -2.023288, -0.905316, 1.100531, -0.474970, 0.398178, -0.009706, -0.923664, -1.106093, -2.069996, 0.094279, 0.199192, -1.646251, 0.115020, -1.870811, -0.610377, -0.101928, -1.591876, 1.248467, -0.967401, -0.958078, -0.983985, -0.525775, -0.238477, 0.073324, 0.690220, -1.192351, 0.706804, -1.027691, 0.445164, 0.445526, 0.507654, 0.458278, 1.214694, -0.991027, 1.694324, -1.962804, 1.587605, 0.267685, 0.597028, 1.384048, -1.207393, 1.402665, -1.002188, 0.542966, 0.205386, 0.161106, -0.490303, 1.384367, -1.525820, -0.147554, -0.579420, 0.132134, 0.437392, 1.344328, -1.230314, -0.423900, -1.136409, -0.975552, 1.292045, 0.059140, 0.513426, 0.204706, 0.137762, 0.752766, -0.074565, -0.323963, 0.981965, -1.418644, -1.048476, 1.083746, 1.441313, 1.109894, 0.686279, 1.962865, -0.585661, 0.404725, 0.501347, -0.741332, -1.222185, 0.062794, -0.990662, -1.739711, -0.393303, 0.218227, 0.775324, -0.120361, -0.379616, -0.023608, -0.567983, 1.541468, -1.188268, -0.009361, 1.022319, 0.100692, -0.764004, -1.399661, -0.101892, -1.273206, 0.306998, -0.100859, 0.968483, 1.012353, -1.814927, 1.443665, 0.329604, 0.226099, 0.420079, 2.182723, -0.706210, -1.743484, -0.223990, -0.981296, -1.344207, 0.026827, 1.165722, 0.080950, -1.436192, -0.727950, -0.335521, 0.016692, -1.943586, 1.010619, 0.863864, 0.555188, -1.724232, 1.179763, -0.652402, -1.187410, -1.128296, 0.034642, -0.470956, 0.579688, 1.028719, -0.029948, -2.009375, 0.160249, 0.183795, 1.233182, 1.465205, -0.782515, -1.590237, -0.384087, -0.240510, 0.091320, -2.005267, 0.477657, 0.151191, 0.108872, 1.003721, 0.339393, 1.325678, 0.393562, 0.088816, -0.309190, 1.301266, -1.186674, -0.019479, -0.799372, -0.677829, -0.390775, -0.247341, 0.382879, 0.638548, -0.637109, 0.594272, 1.228869, 1.298967, -1.971720, 0.344073, -0.096511, -0.454820, 0.920726, -0.285646, -0.051787, 0.050206, 0.262606, -0.152623, -1.407591, 0.733645, -0.491175, -1.989340, 1.805234, -0.303618, -0.425677, -0.078338, -0.177448, 1.035850, -0.380796, -0.909890, -0.026420, 0.506166, -0.346338, -0.110518, -0.353320, -0.851201, 1.400690, 1.005261, -1.665477, 0.541884, -0.815251, -1.433695, -0.054924, -1.830152, 0.618322, -0.024651, 0.556516, -0.083552, -0.099854, -0.531426, -0.592710, -0.924229, 1.361632, -1.784960, 0.541107, 1.805802, -1.070639, 0.324827, -0.538632, 1.372235, 0.399999, -2.064262, -1.449957, -0.770128, 0.344969, 0.359928, -0.164216, -1.695213, -1.053622, -0.406078, -1.306273, 0.862667, 0.016658, -0.522787, 0.670778, 2.279625, -0.249720, 0.159726, 0.094341, 1.340139, 0.734755, 0.019777, 0.170436, -0.502489, -0.723570, 0.899053, -1.660418, 0.618812, 0.026541, -1.285614, 1.535885, -0.316763, -2.671963, -1.499371, -2.017975, -0.054807, 0.063276, 1.133049, 0.382705, 0.581800, -0.365803, -1.150293, -0.891006, 0.575040, -0.572197, 0.694885, -0.471478, -1.217547, 1.155872, 0.807433, 0.283096, 0.465342, -0.278141, 1.816866, 0.345605, 0.411659, 0.593769, -0.324959, -1.703209, 0.036549, -0.434589, -0.863085, -0.645012, 0.020649, -0.402335, 0.328794, -0.854237, -1.490313, 0.519622, 0.260884, -0.622462, 2.225539, -1.734284, -0.708441, 0.891565, -0.320693, -1.241685, 0.922951, -0.616811, 1.213397, 0.883570, -0.577842, -0.254065, -0.660441, 0.416066, 1.458002, 0.262960, 1.419493, -0.733050, -1.214074, 0.471576, 0.604537, -0.610646, -0.568204, 0.895381, -0.224940, 1.307829, -1.066282, -0.278069, -1.010297, -0.085463, -1.070483, -2.524631, -1.657709, -0.328665, 0.196075, -1.536689, -0.269993, -1.468156, 1.200014, 1.317859, 0.496922, -0.821136, -0.750105, 0.734596, 1.882009, 0.258236, -0.506153, 0.805853, -1.016002, 0.072952, 1.331897, 0.914816, -0.782357, 1.472884, 0.090339, -0.145303, -0.811489, 0.532729, -0.032703, 0.450639, 1.463354, -1.675764, 0.561146, 1.615618, -1.071429, -0.794066, 0.541196, -1.009295, -0.953484, -0.319365, 1.330206, -0.263253, -0.106828, -0.085058, -0.342887, 0.204592, -0.961015, -1.119459, -0.403068, -0.781531, 0.350601, -0.563330, -0.333154, -1.629797, -1.377713, -2.357569, 0.616803, -0.863318, -0.279692, -0.138355, 0.489389, -2.114235, -0.566127, -1.161819, -1.795574, 0.332270, -1.024892, 0.190045, -0.714724, 0.981877, -1.083411, 1.132376, 0.779131, -0.701695, -0.457713, -0.580509, -0.257548, 0.752325, 0.356168, 0.341560, -0.915911, -0.025256, 0.119849, -1.390833, 1.626216, -1.821793, -0.610723, 0.219096, 0.846793, -0.442989, -0.173498, -1.037215, -1.003763, 0.815575, 0.990365, -1.440434, -1.308487, -0.299982, 0.146772, 1.355022, 0.459104, 0.650038, 0.437847, -1.841343, 0.806706, 0.404297, 1.577582, -1.052571, -0.204794, -1.621402, -0.039549, 0.528580, 1.951219, 0.582628, 0.328794, 0.096244, -0.978636, -0.490978, -0.655558, 0.902283, -0.156434, -1.272759, -1.105615, 0.541369, -0.494170, 0.661613, -1.141477, -0.250881, 0.775980, 0.377850, -1.538527, 0.568645, 0.422027, 0.142389, -1.120289, -0.949990, -0.975085, 0.012336, 0.080454, -0.798149, -0.140873, -1.567917, -1.678914, -1.199589, -0.240739, -1.167511, 0.474352, -0.615202, 0.432346, -0.431418, -0.973709, 0.128807, -2.114420, -0.752288, 1.514651, 1.201147, 1.381283, 1.833200, -0.684496, -0.644019, -0.032498, -1.739330, 0.604950, -0.668583, 0.731599, 0.935346, 2.529008, -0.080260, -1.535189, -1.623080, 0.472362, 0.112937, 0.034706, 0.108317, 1.351220, 0.384778, 0.270590, 0.004455, -0.060803, 0.962521, 1.806219, -0.382347, 1.010272, 0.610690, 0.321843, 1.995162, -0.925456, -1.426959, -0.503160, -0.859878, 0.997869, 0.180420, 0.022802, -0.543608, -0.395936, 0.384772, 0.731211, 0.643875, -1.024770, 1.055487, -0.209147, 0.483721, -1.921153, -0.330497, 1.164398, 0.841495, 1.261328, 0.811130, 0.465430, -0.060005, -0.599450, 0.396830, -0.042464, 1.646814, -0.393928, -0.663650, -0.203225, 1.342105, -1.615342, -0.955749, 0.132427, 0.349548, -0.172642, -0.381730, -0.674794, 0.004365, 0.885937, -0.744909, -1.050710, 0.114999, -0.017450, -0.140872, 0.368162, -1.381751, 2.223168, -1.247892, 1.309157, -0.992121, -0.406124, 0.600386, -0.523733, -1.714635, 0.957007, -0.521903, -0.381957, -1.151117, -1.468466, 1.366095, 1.416929, -0.569795, -0.189906, -0.528922, 0.140109, 0.104641, -1.388965, -0.374247, -1.695187, 1.141310, -0.354672, 0.367612, -0.681574, 0.742611, 2.481385, 0.117414, 0.639853, -1.632688, -0.802826, -1.183616, 0.162699, 1.067759, -0.219933, -0.467832, 1.759198, 1.095757, 1.927000, -0.106438, -2.846754, -0.373539, -1.139454, -0.983262, -0.404448, 0.405138, 0.488139, -0.594759, -0.794701, 0.825140, -1.023294, 0.586792, 0.533998, 1.212344, -0.001632, 0.077263, 0.811187, 0.409740, -1.464570, 0.079236, 0.672090, 1.719249, 0.727476, 1.228663, -1.702258, -0.287894, -0.626606, -0.522534, 0.097011, -1.508073, 0.061058, -0.259103, 0.417731, 1.522940, 0.910828, -1.885467, -0.016602, 1.623869, -0.295934, -0.371918, 1.205788, 1.157457, 0.007835, -0.599605, 1.144053, 0.316588, 0.369770, 1.872153, -0.509227, 1.261109, 0.572774, -2.557551, 0.638096, -0.217323, 0.145953, -1.567689, 0.119539, 1.160691, 1.642228, -2.761168, 0.829417, 0.250574, -0.284405, -1.078680, -0.087639, -1.283276, -0.880838, -1.095592, 0.292243, -0.113082, -0.120326, 0.152604, 1.391578, 1.480961, 0.689682, 0.384452, -0.976138, -1.013940, -2.097892, -0.689014, 1.334035, 0.802433, -0.775227, -0.331985, -0.134870, 0.386745, 0.926449, 1.966517, 0.002414, 0.225337, 1.830822, 0.087287, -0.191044, -1.228650, -1.103200, 0.535576, 0.448832, -0.882940, -1.389402, -0.474648, -2.912386, -0.321580, 1.491610, -0.027717, 0.322831, -0.197970, 1.970081, 0.647669, -2.086119, -0.719397, -2.231312, 0.280339, -0.064404, 1.711110, -0.193742, 0.236382, 0.896318, 1.831130, -1.704295, 1.253539, 1.391618, 0.713065, -0.850322, 1.207138, 0.981926, 0.464186, 1.251897, 1.556553, 0.524986, 1.014675, 0.055805, -0.235241, 0.076670, 0.538526, 1.730335, -0.587256, -0.473110, -0.247164, -1.197966, -0.035639, 0.155089, 0.593809, -0.185745, 0.323978, 0.018321, 1.346498, 0.707829, -1.064135, -0.775178, -1.528107, 0.203195, 0.183634, -0.930529, 0.398016, 0.015713, 0.017203, 1.094427, 0.154613, 0.986109, -0.668638, 0.045320, 0.624950, 1.218392, -0.590207, 0.039290, -0.939700, 0.347518, -1.080879, 1.109423, 0.459649, 0.808434, 0.860789, -0.147751, -0.549967, -1.264631, -0.115886, -1.017183, 0.071367, -1.792004, -0.873864, 0.356028, -0.335641, -1.232728, -1.179856, 0.662938, -0.380446, 0.972452, -1.985803, 0.596918, -1.288895, -2.476754, 0.367720, 1.158958, -0.287308, 1.612499, -0.639899, -0.992828, -1.023186, -1.277189, 0.228138, 0.430396, 0.708025, 0.857596, 0.401366, 0.385236, 1.049906, -0.728567, 0.602123, 1.514122, 1.434843, -0.691096, 0.505747, 0.700124, -1.047528, -1.404575, -1.183536, -2.092552, 1.644240, -1.167867, -0.720097, 1.379291, 0.192405, 0.245716, 0.701627, -1.780863, 0.176897, 1.108580, 0.837794, -0.717489, 0.014237, 1.514900, 0.832846, -0.058489, -0.006861, -0.957518, 0.630517, -0.896191, 0.183444, -0.537597, -0.048099, -0.163294, 0.353119, -0.480711, -0.476088, 0.077457, -0.921198, 1.196173, -0.161084, -1.282600, -0.011753, -0.202328, 0.111695, 0.334534, 0.529977, -0.176867, 0.296759, -0.031366, 0.867123, -1.197649, -0.797153, 1.227730, -1.936863, -0.475364, 1.146740, 1.550781, -0.188952, -0.118396, -0.117279, -0.568768, -0.056729, 1.434670, -1.344079, -0.012801, -0.864768, 0.263012, -2.174557, -0.079170, 0.198756, 1.080901, 0.213995, -0.138920, -0.184450, 0.736849, -1.015848, 0.591306, -0.868033, 0.175184, -1.353097, -1.088848, -0.391434, -0.238016, -0.762331, 0.096874, 0.618679, 0.615525, 0.474266, -1.956552, -0.886348, 0.065288, -1.279955, -0.396800, -0.054905, -2.140511, 0.720317, 0.111989, -0.188230, -0.904910, -0.699197, -0.753609, -1.370695, 0.522442, -1.144708, -0.824139, 0.578492, 0.032596, 1.234211, -0.140526, -1.204944, 0.414282, 0.672143, 1.386806, -1.174552, 0.260907, -0.101144, -0.688084, 0.334148, 0.658840, 1.339427, 0.866108, 0.251280, 0.849447, -0.296863, 0.813822, 0.592182, 0.666626, -0.417604, -0.704341, 1.805481, -1.085395, -1.471843, -0.526046, -0.798585, 0.461616, 0.455374, 0.198808, 0.643054, 0.848528, -1.025526, 0.251955, -0.684070, 0.987381, 0.010578, -0.552161, 0.433957, -0.049865, -0.379219, -1.249383, 1.708083, 0.379515, -0.785636, -0.829067, 0.712277, -1.557817, -0.938206, 0.702534, 0.575845, 1.052007, 0.765936, -2.690529, -1.018806, 0.973163, 3.894614, -0.141342, -0.212867, -0.998326, 0.434509, -1.221487, 1.642527, 0.505829, 0.527765, -0.139643, -0.485151, 0.571778, -0.990793, -0.776317, 1.889388, -1.816237, 0.467499, -1.211371, -2.260401, 0.889239, -0.600719, 1.246642, -1.670895, 1.030508, -0.120777, -0.910964, 0.101612, -0.078331, -1.618454, 0.660884, -0.001900, 0.029511, -1.436794, -0.871114, 0.107618, 1.334153, -0.084568, 0.108842, -0.409169, -1.805117, 0.198104, 0.001397, -0.151294, 0.652565, -1.538362, -0.244384, 0.518996, -1.674269, -1.726131, 1.548832, -0.212926, -0.494182, -2.498331, -0.789039, 0.615790, -1.651339, -0.992343, -1.785200, 0.087360, 0.932293, 0.696440, -2.408025, 0.947396, 0.075647, 0.333008, 0.124958, 0.141207, -1.117673, -1.637799, -1.466103, -1.280784, 0.944840, 1.777779, -1.163379, -2.880063, -0.994002, 0.141081, 0.020690, 0.484998, -0.466470, 0.095529, -1.180752, 1.111776, -0.517998, -1.325843, 1.735500, 1.548226, 0.734140, 0.983640, 0.709410, -1.586697, -0.354250, -0.886171, 0.968904, -0.064094, 0.926899, 0.880921, 1.188696, -0.207731, 0.049663, 0.001441, -1.286147, -0.098486, -1.176948, -1.014778, 0.787811, 0.806721, 1.149112, -0.071881, 1.469494, -0.535219, -1.081428, 1.659162, 0.475277, -0.088917, -0.190097, -0.213815, -2.845499, -1.058624, -0.097921, -0.076876, 1.143328, -0.266844, -0.438507, -0.237990, 1.942492, -0.883034, 0.129053, 0.948352, 0.028201, -0.830583, 0.816437, 2.073250, -0.101159, 0.851635, -0.541708, -1.613257, 0.287060, -0.805527, 0.541621, -2.505954, 2.066478, -0.667170, -0.183563, -1.245635, 1.305435, -0.893380, 1.530889, -0.682172, -0.610702, -0.313108, 1.001325, -1.068051, -0.658278, -0.119745, 0.785136, -0.169412, -2.839016, 0.780181, 0.098738, 0.045568, 0.198376, -0.309532, -0.135328, -1.202397, 0.030464, -0.922725, -0.047256, -0.486867, -0.472834, 0.520375, -0.608999, 1.027450, 0.056838, -0.386279, 1.171524, -1.253464, 0.357801, 2.306967, 0.046679, -1.295139, -0.111503, -0.720255, -0.486340, -0.702307, 0.826913, 0.317037, 1.154962, 0.479846, -0.901476, -1.106205, 1.195696, -0.304677, 1.885280, -0.197662, 0.184613, 0.755152, 1.122081, 0.763658, 1.124159, -0.798773, 0.714035, 1.183381, 1.764612, -0.484801, 1.711390, 0.852786, -0.798011, 1.922672, -0.174849, -2.038882, 1.979155, 0.006627, 0.284280, -0.488100, 0.211718, 0.213431, -0.075562, 0.602582, -0.076912, 1.226605, 0.102534, -1.087868, 0.622465, 0.362372, -0.594104, 0.752425, -0.316477, 0.256494, -1.782364, -0.602093, 1.136649, -0.009733, 1.606517, -0.463423, 2.587354, 0.294361, 0.586736, 0.822519, 0.262047, 0.314503, 0.007418, -0.351994, -0.505615, 0.196448, 1.035212, 0.369256, -1.052827, 2.105798, 0.590610, 1.458264, -0.889388, 0.788536, 0.300303, -0.490584, 0.777276, 0.469276, 1.157301, -1.181388, 0.537685, -1.172405, 0.048209, -0.203005, -0.366984, 0.869575, -2.246902, 1.876398, 0.729724, 0.518105, -0.711057, -0.877547, 0.374919, -0.744996, -0.385429, -1.044250, -0.603253, -0.397732, -1.148584, -0.559165, 0.630078, -0.083826, 0.101190, 1.158692, 0.884957, 1.146484, 0.305474, 0.672290, 1.127642, -1.219168, -0.732483, 0.583748, -0.594153, 0.557610, 1.322005, -0.759000, -1.780601, 0.195723, -1.692121, -0.291109, -0.694366, 0.205620, 0.773941, 0.543874, 0.232398, 0.722553, -0.320214, 0.055977, -1.867450, 0.440543, 0.545316, -0.360690, 0.939106, 1.926783, -0.458366, 0.258509, -0.718722, 0.262705, 0.160377, -0.503539, -0.469412, -1.173705, -0.644112, -0.482584, -1.015266, 0.536556, -0.749363, -1.061847, 0.516571, -0.823574, 0.581866, -1.664287, -1.022961, -0.521343, 0.776000, -0.501781, 0.828502, 1.419262, 1.959566, 0.963908, -0.116325, -0.939014, 0.029349, 2.198124, 0.877653, 1.002720, 2.497785, -0.268468, 0.287738, -0.329702, 0.580366, -0.803510, -0.988516, 0.131645, -0.897182, -0.275945, 0.680384, 0.735429, 1.126706, 0.176773, 0.055237, 1.057445, -0.178276, 0.073145, 0.472411, -0.685040, -0.087068, -0.118235, -0.782402, 0.283651, -2.162942, 0.551814, 0.803555, 0.609387, 1.664766, 0.387063, 0.518703, -0.298149, 0.135753, 1.455144, -0.764563, 1.029194, -0.840962, -0.164008, 0.191356, 0.648072, 0.812507, 1.492637, 1.504805, 0.661302, 0.865894, -0.309037, -0.112874, -0.073699, -0.562879, 0.251284, -0.223203, 0.344566, -0.567345, -0.128516, 0.264010, -0.740563}, - { 0.686786, -0.412827, -0.954384, -0.250036, -1.279124, -0.388454, 0.772480, 0.265782, 0.239731, -0.320993, -0.236322, -0.213086, 0.483063, -0.963978, -0.512312, -1.003315, -0.715501, -0.460491, -1.350278, 0.292528, 0.761338, -2.479331, -0.365349, 1.054416, 0.636595, -1.082940, 0.138221, 0.633486, 0.956523, -0.367531, 0.190268, 0.227681, 1.191601, 0.235072, 0.462468, 0.577388, -0.374628, -1.099212, -0.855962, -0.272587, 0.200696, 0.546901, -0.517906, -0.684247, -0.410653, -1.310561, 0.013227, -1.526165, -0.188351, -1.117439, -0.434290, -0.651184, -0.507773, -0.091448, 1.411584, -1.198217, 0.795058, -1.118065, 0.069142, 0.909652, -1.140848, 0.282164, -1.091999, -1.669020, 0.019183, 0.874124, 0.223936, -1.417213, 0.303794, 0.084386, 0.944091, -1.135258, -0.156557, -1.306080, -1.545901, 0.760520, -2.129505, -0.680492, -0.379109, -1.060158, -1.884403, 0.970512, 1.085505, 1.550855, -1.069825, 0.829637, -0.848534, -0.885269, -2.420554, 0.418745, -1.232314, -0.856177, -0.500907, -0.020048, 1.892329, 0.868363, 1.321794, 0.129578, 0.770199, -0.730568, -2.257548, -0.293321, 1.740305, -0.370603, 0.350315, 0.161306, 0.204819, 1.780152, -2.041967, 0.321083, 2.138391, -0.504547, 0.171929, -0.001936, 1.164255, 1.210264, -0.418027, 1.150411, 0.259347, 2.006141, 0.276597, -0.079845, 1.802190, -0.177237, 1.440719, -0.165683, -0.115821, 0.360355, -1.609864, -0.428472, 0.256303, 0.567704, 0.089992, 0.876491, 0.809326, 0.707831, 0.635360, -0.986334, -1.337440, -0.331593, 1.338936, 1.320294, 0.865981, -0.872283, -0.162961, -1.218794, 1.324572, -0.073147, 1.053123, 2.220264, 0.567374, 0.193227, 1.079667, 0.349257, 0.894225, -1.426330, -0.763945, -1.976367, 1.339014, -0.582789, -0.626101, -1.051183, -0.666207, -0.801345, -1.051876, -0.116021, -0.329459, -0.442221, -0.089336, -0.984451, 0.993044, 0.013954, -0.035889, -0.626623, -1.307395, -0.431291, -0.843793, 1.016768, 1.678853, -0.000837, -0.335257, -0.390500, 0.705424, 0.566030, -0.302734, -0.327476, 0.848161, -0.945110, 0.808173, 0.427212, 0.883622, -1.986534, -0.787966, -0.063913, 1.011009, 0.156580, 0.846975, -0.210390, 0.441976, -1.721662, -1.546866, 0.290919, 0.445625, -0.313846, -1.069270, -1.714673, -1.980601, 0.009956, 0.789273, 0.483036, -0.823980, 1.208253, -0.964687, -0.072437, 1.668113, 0.743317, -0.271165, 0.168597, -0.007601, 0.740105, -0.504425, 1.276407, 1.038000, -0.704446, -0.144954, -1.012597, 0.087733, -0.230432, 1.409416, -1.760558, 0.283564, 0.158769, -1.019383, -0.129060, -0.239653, 1.723891, -3.909227, -1.239985, 0.014286, -0.342466, 0.376859, 0.798029, -0.993885, 0.271538, -0.394079, 1.854243, -0.610577, 0.298628, 0.162271, -0.791895, 1.019610, -1.524958, -1.039182, -0.845453, 0.453652, 0.561561, 0.640124, -0.052841, 0.374167, -0.241185, 1.117634, -0.173280, -0.137072, 0.552920, -0.552898, -1.432745, 0.511922, 1.363761, 0.550298, -0.763824, -1.243657, 0.656262, -0.740492, -0.851194, 0.657613, 1.222592, 2.190613, 0.753660, -0.142028, 0.950250, 0.311732, -0.544070, -0.454233, -0.426882, 1.224790, -1.297737, 0.788370, 0.454713, -0.357497, -0.467719, 0.203628, -0.255674, 1.075629, 0.008185, -1.093055, -0.272300, -0.416621, -0.422433, 0.222307, 2.056519, 0.674456, -0.130661, 0.712831, 1.779856, 0.709882, -2.260879, 1.420516, 0.373098, 0.540918, 1.067045, -0.526540, 2.264968, -0.834754, -2.032719, -1.506854, -1.534465, -0.483309, 0.456616, -0.105632, -1.294574, 1.209211, 0.528366, 0.564573, 1.516921, -0.336675, 0.384380, 0.755788, 0.885710, -1.328422, -0.347906, -0.373588, 1.385492, -0.997038, -0.753151, -0.101377, 0.754270, -0.157166, 1.728030, -1.003422, -0.242540, -2.582107, 0.281566, 1.718961, 0.105754, 0.567749, -0.458978, 0.441752, -2.504363, 0.747901, 0.443635, -0.986823, 0.543094, 0.758128, 0.276799, -0.838422, -0.254628, 0.154302, 0.023075, -0.620657, -0.531672, -1.173659, 1.179663, -0.183430, -0.446886, -0.061832, 0.705365, -0.773264, 0.088834, 0.509560, 0.919250, 0.962761, 0.049566, -0.535423, -0.072359, 0.533825, -0.355980, 0.166492, -0.550328, -0.832446, 0.678626, -1.229817, -1.259421, 0.421155, 0.630249, -0.800549, -0.808628, -0.966701, 0.202434, 0.271819, -0.332733, -0.414194, -0.663516, -1.349441, 1.137386, -0.742321, -0.914946, 0.413743, 0.269309, -0.139922, -0.115573, -1.027439, 0.016030, -0.590604, 0.311563, -0.476149, 0.020791, -1.659814, 0.400162, 1.366274, 0.521312, 1.199674, 0.272051, -0.244506, -1.702876, 0.519922, -0.251876, -3.415838, -0.123890, 0.490404, -1.402815, 0.919506, 0.289372, -0.532127, -0.258929, -0.070306, 0.943063, -0.808710, -2.718118, 0.153334, 0.564909, 1.000353, -0.227652, 0.631858, -0.947609, 0.895864, -1.980478, 0.184859, 1.177037, 0.235448, -2.432657, 0.619778, 0.698334, -0.212454, -0.515430, -0.172867, 1.027052, 0.977117, -0.205310, 0.507572, -0.201579, 1.140437, 0.317274, 0.370059, -0.119170, -0.959528, 0.390766, 0.539213, 1.710125, 1.329072, -0.370380, -0.468552, -1.006907, -0.696435, 0.410752, 1.709874, -1.336538, -0.737561, -0.657240, 0.606588, -0.705513, 0.507796, -0.916452, 1.412139, -1.740738, -0.970704, -0.169924, -0.599638, 0.771926, 0.790928, 0.790850, 0.113795, -0.283163, -1.028869, 0.430322, 0.019492, 0.504161, -0.621251, -1.716833, 1.359194, 0.559757, -1.119485, -0.154378, 1.299095, 2.195402, 1.545555, 0.369028, 0.903856, 1.088053, -0.970528, -0.542894, 0.663104, -0.101616, 1.339739, 0.354353, 0.880610, -0.713797, -1.697795, -0.097082, 0.743069, 0.465664, 0.278032, -0.799819, 0.890183, 1.288068, -1.110344, 1.255000, -1.001724, 1.127172, -0.716119, -0.992804, -0.162644, 1.304924, -0.710251, -0.582232, 1.376230, 0.431043, -1.098114, 0.037602, -1.773925, 0.785106, -1.060948, -0.320657, -0.724032, -1.467829, 2.076141, -0.536129, -0.415248, -0.627632, 1.345590, 0.610116, 0.515450, 0.051921, 1.018772, 1.585701, -1.408608, 1.159209, 0.175208, 0.318945, -1.725426, 0.125371, 0.318990, 0.462319, -0.208388, -0.988782, 0.930157, 0.919493, 0.292909, -0.389948, -0.102549, -0.390623, -2.126758, -1.574990, -0.235185, -0.208250, -0.942776, 0.869169, 2.481962, -0.035201, -0.304398, 1.126150, 0.141366, 0.315819, 0.704915, 0.104685, 0.105298, 0.098470, 0.955901, -0.320000, 0.620367, -0.000443, 0.616779, -0.264065, -0.451803, 0.714067, 1.659721, 0.822508, 0.562821, -0.090356, -1.948032, 1.066526, 0.129443, -0.544590, -0.320278, 0.809754, -2.441317, -0.719177, -0.919938, -1.384614, 0.241870, -0.694270, -0.170047, 0.206789, 0.905787, 1.251660, -0.624036, 0.964863, 0.224957, -0.307109, -0.161758, 1.728824, -0.764930, 1.011986, 0.400483, 0.263698, -0.485156, 0.540260, 0.098768, -0.846968, -0.475801, 0.503877, -1.005066, -1.509396, 0.439936, -1.346023, 0.193136, -0.151591, 1.484433, -0.008946, 0.499975, 1.317144, 1.196448, 0.652226, 0.597085, 0.481827, -0.925874, 1.096406, -1.180965, -0.314917, -0.270137, -0.934176, -0.782880, -0.231976, -1.231468, -1.270191, 0.863512, 0.065505, -0.842318, 0.226728, 0.205516, -0.260108, 0.714896, 0.649742, 1.094028, 0.023332, -1.544193, 0.562718, -0.275914, -1.453496, 1.526585, -2.339322, -0.254268, -0.386339, 0.627062, 0.388599, -0.563492, -1.261876, 0.520191, -0.162895, 0.674523, -1.395587, -0.452683, 0.865333, 2.106666, 0.462597, -0.640847, -0.678950, -0.698807, 0.135454, 0.619530, -0.975410, 0.799226, 0.862220, -0.065348, -0.095913, 0.316879, 0.518147, -0.366385, 0.850906, 0.088455, 0.417005, 1.256919, -0.877705, -0.145089, 0.186268, 0.212057, -0.549067, 0.376268, -0.965200, 0.832861, -0.117663, -0.336138, -1.705418, 1.285777, 2.040204, 0.217795, -1.043740, -1.497164, -0.616132, -0.217728, -0.868704, -1.033684, 0.482896, 0.441117, 1.330352, 1.082108, -0.076171, -0.038633, -0.743616, -0.774865, 0.212039, -0.695159, -0.575788, -1.359800, -0.630690, -0.521749, -1.137597, 0.800093, 0.285926, -0.512262, 1.054841, -0.722327, 1.090069, 1.612239, 0.299381, -1.331767, 0.238730, 0.021873, -1.443125, 0.041261, -0.204166, 1.149507, 0.194036, 0.698985, 0.363813, -1.576851, -0.807296, 0.696471, 0.241355, 1.124999, -0.743816, -1.344677, -1.230981, 0.941631, -0.305382, -0.443746, -0.374589, -0.053789, 0.488511, -0.409527, -0.241075, -1.027440, -0.024958, -0.410471, -1.608270, 1.693856, -0.158322, -1.077427, -0.309164, 0.922232, -0.308500, 0.997683, -1.328948, -1.737507, -0.384962, 0.653399, -1.463339, 0.592553, -0.740229, 0.418823, -0.487712, -0.191475, 0.038117, -0.799629, -1.302999, -0.175122, -1.704433, -0.012633, 0.212992, -1.363732, 1.203866, 1.435550, -0.318578, -1.213288, 0.912331, -1.773704, 1.330481, 0.314178, -0.894960, -0.815668, 0.859242, -0.799324, -0.913832, 0.605599, 1.674654, 0.366161, 0.000371, 1.778550, -0.667728, -0.480150, 0.413115, 0.942118, -2.385074, -0.332675, 0.139496, -0.053274, -0.398646, -2.203224, 1.022387, 0.707606, 0.461915, 1.584127, -0.536401, 0.309274, -0.685028, -1.776032, -0.213263, -1.847616, 1.542393, -1.295443, -1.393740, -1.276267, -0.046056, 0.296055, -0.946070, 0.143859, -0.134447, 0.557150, -0.851634, 0.987143, 3.034742, 1.179105, -0.840504, 0.758509, -0.853593, -1.303635, -1.527710, -0.425551, -0.518229, -0.408586, 0.657220, -1.793430, -0.155493, 0.340596, -1.117213, 0.766365, -0.615975, -0.308872, 0.904717, -0.708467, 0.496372, 0.232802, -0.555202, -1.007697, 0.336694, -0.839170, -1.200312, 0.355497, -1.055986, -0.367983, -1.803417, -0.885488, 1.251403, -0.270784, 2.308097, 1.079320, -0.760809, 0.078073, -1.058863, -1.019223, 0.312140, 1.264329, -0.094438, -0.669735, -2.188102, 1.082121, -0.019285, -0.686093, -0.461736, -0.340094, 0.877557, -1.095224, 1.099599, 0.561499, -0.102243, 0.125279, 0.798579, 0.335828, 0.041117, -0.443373, 1.078746, 0.938751, 0.227797, -0.614971, 1.235823, -0.057603, -0.137368, 0.473112, 1.191525, -0.308574, 0.162644, 1.329305, 2.044406, -0.247064, 0.584813, -0.590792, -0.139225, 0.918273, 0.766051, 0.722334, -0.524138, -1.700157, 1.659801, -1.543023, -0.358191, -0.628182, -0.511199, 0.862120, 1.053664, -0.755867, 0.376711, 0.183212, -0.765554, 0.961003, -0.870851, 1.764497, -0.290330, -0.047319, 0.007996, 0.486137, 1.393689, 0.324664, 0.374559, -2.226274, 0.561006, -0.450550, -0.375078, 1.095775, 1.105933, 0.156463, 0.393381, -0.125902, -0.508615, -1.187574, 1.635680, -0.931458, 1.939179, 0.527625, -0.098392, -1.436941, 0.855899, 1.395831, -0.593924, -2.774503, -1.404459, 0.511385, 0.998486, 0.180451, 0.362988, 0.454479, 1.598041, -1.196180, 1.071723, 0.299573, 1.856691, -0.196294, -0.228442, 0.538361, -1.626858, 1.200136, -0.148306, -1.102481, -0.235780, -0.297007, -1.166779, -1.179737, -0.967552, -0.993188, 0.920322, -0.155835, -0.425178, -1.199717, 0.539237, -0.222480, -2.277026, 0.656393, -0.362945, 0.087165, 0.387593, -0.492040, -0.410881, 0.213712, 0.309292, 0.685655, -0.333987, -1.880259, -0.604153, 1.240811, -0.249888, 1.905823, 0.103252, -0.147296, -0.390929, 0.082614, 0.409527, 1.635633, -1.906732, 0.310449, 1.177089, 0.098295, -1.950454, 0.176045, -1.834756, -1.159774, 0.366167, 0.715917, 1.104433, -1.160204, -1.352480, 0.651027, 1.491238, -0.317499, -0.621631, 0.203636, -0.424024, 0.190574, -0.803283, 0.983866, -0.953901, 1.660653, 0.143466, 1.063439, -0.939690, 0.723419, -0.387405, 0.562349, 0.003468, -0.040658, -0.580987, -0.527315, 0.767364, 0.096242, 2.815122, -0.998191, -1.139517, 0.498806, -1.421889, -0.387422, 0.828329, 0.813944, 1.146248, -3.228796, -2.094913, -1.050164, -0.102330, -0.224840, 1.780088, -0.896367, -0.887257, -0.770723, -1.796928, 0.631518, 0.178172, -0.662787, 1.282492, 1.930620, 0.344506, -1.731976, 0.944697, -0.477242, 1.441443, -0.694415, 0.392576, 0.199819, -0.060354, 0.720098, 0.729184, -0.361049, 0.722444, -1.086976, 1.490175, -0.662072, -0.095159, -1.506942, 0.277037, -0.747569, -0.881556, -0.551217, -0.931725, -0.009303, 0.673059, -1.078026, 1.703707, -1.050703, -1.027260, -0.107057, -1.340918, -0.973599, 0.285315, -1.935603, 0.198716, 1.192959, -0.945462, 0.416709, -0.421329, 1.464060, -0.692199, -0.277998, 1.180237, -2.403859, 0.665797, -2.041831, -0.879629, -0.745589, -0.279683, -0.786548, 0.594801, 0.459740, -1.148127, 1.332565, 0.799983, 0.154175, -0.594357, 0.927541, 0.817094, 0.012064, 1.550141, 0.338382, -0.928847, -0.809447, 1.201927, -0.218417, 0.389575, -1.073272, 1.782594, 0.790329, 2.690952, -0.854106, 0.605478, 0.397799, -0.292042, -0.545598, -1.796967, -0.033556, 1.271666, -1.494714, 0.516119, 0.215435, 0.283051, -0.026076, -0.845024, -0.529101, -0.719377, 0.533285, 0.513572, -1.270989, 1.749668, -0.610834, -0.521547, -1.498350, -2.216109, -1.674349, 0.602783, 0.085579, 1.919086, -1.049912, -1.840025, 0.742700, -2.070721, 1.616043, -1.205884, -0.499156, -0.680976, -0.078202, -0.552070, 0.760756, 2.213746, -1.204720, -0.139873, -0.454880, -1.731420, -1.926642, -0.568161, 0.216731, -0.340966, -1.555043, -1.333619, -1.227993, 0.479945, -2.477036, -0.039328, 0.155679, -1.630847, 0.747141, -2.849936, -0.282815, -1.446722, 0.270661, 0.539898, -0.145862, 0.699798, -0.626077, 0.437131, 1.885929, -0.658615, 0.459139, 1.084074, 1.658282, 0.753585, -0.990620, -0.613555, -0.061971, -0.397148, -0.197585, 0.245847, -1.653196, 0.816565, -1.008766, -0.760112, -0.917557, 2.789919, -0.195072, 1.892358, -1.432319, 1.541289, -0.079494, 0.985417, 1.910793, -1.697142, -0.180906, -0.352929, -2.099798, -0.367024, -0.908286, -0.272068, -1.437038, 0.258898, 0.636025, -0.269686, 0.056963, -1.607519, 0.041652, -2.093534, 0.905654, -1.398328, -0.715254, 1.272977, 0.710819, 0.687911, 0.001742, -0.221029, 0.209738, 1.141345, 1.988818, -0.668183, 0.193601, -0.849359, -1.522522, 1.050579, -1.128853, -0.800873, 0.600003, 0.665269, -0.365811, -0.369379, -0.117044, 1.544924, -0.812353, -1.177569, -1.005114, -1.080506, -0.229261, 1.664228, -0.827576, 0.741223, 0.678941, -0.847511, 0.229853, -0.740431, 0.542731, 1.688227, -0.239932, 0.114038, -1.296318, 1.800347, -1.497541, -1.353060, 1.242992, 1.041044, 1.524270, 0.823733, -0.508059, -1.218891, 0.922841, -0.551410, -0.342022, 0.865529, -1.248247, -1.209369, 0.598614, 0.324598, 0.235621, -1.418816, -0.621824, -0.505364, -0.411728, -0.019689, 0.105613, 0.935643, 0.646233, -2.496740, 1.380557, -1.091092, -1.940543, -0.512763, -0.790937, -0.644819, 1.347443, 0.213199, 1.282681, -0.271331, 2.417922, 0.571479, 0.749029, 1.067326, -0.632802, 0.539238, -0.633065, 1.522586, 0.554098, -1.174882, 0.211887, -1.244379, -0.026399, -0.231448, -0.645496, 1.363875, -0.660919, -0.859490, 1.550215, -0.391130, 0.256604, -0.714977, 2.365872, 1.091650, 1.455415, -0.512348, -0.236868, -0.123357, -0.451179, -1.887984, 0.299722, 2.047120, 0.057376, 0.523066, 0.120305, 1.919198, -0.983197, 1.497362, 0.893917, 0.365696, -1.749394, -1.047617, 0.572081, -1.369414, 0.124660, 0.434574, 1.350827, 0.958559, 1.471701, -0.901075, 0.710243, -0.768128, 1.631744, 0.255488, 0.194679, -0.149011, 0.928359, 1.968508, 1.017136, 0.464226, 0.780892, 0.940171, 2.191196, 0.396962, 2.175486, 2.812886, 0.186325, 1.145789, -0.248121, -0.314955, 0.297093, -1.034387, -0.399280, -0.707100, 0.271872, 0.075209, 0.039129, 2.262311, -0.929207, -0.277004, 1.315781, -0.271506, -0.858215, 0.035157, 1.715799, -0.168779, -1.442646, 0.950059, -0.370277, -0.256212, -0.226615, 2.825429, -0.758130, 0.111143, 0.558345, -0.399092, 0.675165, -0.942873, 1.110861, 0.090156, -1.076805, -0.371468, -0.391298, -1.827450, 0.101201, -0.580944, 0.365027, 1.258143, -2.037072, 1.875970, 0.800073, -1.105441, -0.754599, 0.167846, 1.134017, 0.310822, 0.567510, -0.493330, -1.017928, -0.252374, 0.163640, -1.008037, -0.437007, -0.870018, -1.429713, 0.914931, -0.877254, -0.470576, -1.016514, -1.321604, 1.130046, 0.333676, 0.520429, -0.350936, 0.045528, -0.240283, -0.756092, -1.684721, 0.108907, -0.085249, 0.283357, 0.105023, 3.114342, -0.614636, 1.369744, 1.002582, 1.532972, 0.807571, 0.776130, 0.766981, 0.223366, 0.380151, -0.421675, -0.185594, -1.240574, -0.607701, 0.443978, 0.893475, 0.516036, -0.041775, 0.784014, 0.888409, 1.795471, 1.333600, -1.716295, 0.444112, 0.531101, 0.438343, 0.488325, -0.123772, -1.777215, -0.429330, -0.805608, -1.365521, 0.294407, -1.637442, -1.508557, 0.294235, 1.154034, 1.373750, -1.216943, 0.117971, -0.207947, 2.667760, 1.193870, 0.170425, -2.861491, -0.920327, -0.401834, 0.051076, -0.763792, -0.419237, -0.253164, 0.548181, -0.260666, 1.114218, -0.472359, 0.000777, 0.942669, 0.274244, -0.804280, -0.920966, -0.479232, -0.896244, -1.296808, -0.485839, 0.256575, 0.472418, -1.099501, 1.083782, 0.175227, 1.739817, 0.086799, 1.452611, 1.473743, 0.236520, 0.894751, 0.539812, 0.228592, 1.260415, -0.235119, -1.538888, 1.089239, -0.557788, 0.434740, 1.238091, 0.699313, -2.177261, -0.346899, 2.130578, 0.534032, 0.606903, 0.342108, 1.473813, -0.673447, 0.163659, 0.198401, 0.669836, -1.735455, -0.613109, -0.497421, 0.373850, -0.666279, 0.539778, -0.012893, 2.137125, -0.172673, -0.203354, 1.786115, 1.621231, 0.153345, -0.687931, 0.042081, -0.240865, -1.153801, 2.108947, -0.088081, -0.627526, 0.220326, 0.520893, -0.197772, 0.859140, -0.030755, 2.204912, -0.088261, -0.322531, 1.113869, 0.192430, -0.091217, -0.799817, 0.356725, -0.570216, -1.129366, 0.090061, -0.492572, 0.070809, -0.721441, 1.008628, 0.002018, 1.507723, 1.058046, -1.074672, -1.881438, -1.998306, 1.115537, 0.026094, -0.220509, 0.273241, -0.548247, -0.002409, 1.650509, 0.601163, 0.106623, -1.572271, 0.718868, 1.036136, -0.067851, -2.264058, -1.075715, 0.733057, 1.856139, 0.139983, -0.464700, 0.619518, -0.595357, 3.258187, 0.330511, 0.351369, 0.822868, -0.378564, -1.044285, -1.769115, -1.022173, 1.098753, -0.365373, 0.158807, 1.058372, -0.762679, -0.268012, -0.988236, -0.376957, -1.499588, -0.650633, -0.195035, 1.215868, -1.784685, 2.135588, -1.465462, 0.204122, -0.401013, 1.004250, -0.366283, -0.796044, -0.268670, 0.175652, -0.995022, -1.143925, 1.574796, 0.731559, 0.384915, -0.840597, 0.482574, 1.150213, -0.167820, 0.398102, -0.093998, 0.105793, 0.677898, 1.613358, 0.815593, 0.827124, -1.223293, 0.683526, -1.235659, -1.675279, 0.077846, 0.101757, 0.669349, -0.619003, 0.834292, 0.246638, 0.387830, -0.205522, -0.997976, 1.503187, -0.620129, -0.506207, -0.591371, 0.114501, -0.730490, 1.271365, 0.745807, 1.632571, 0.220765, 0.357309, 0.672587, -0.469215, -0.881775, -0.814130, -1.942472, -1.011197, 0.224068, 0.097396, -0.817933, -0.194047, 0.919817, -1.466467, 0.195265, -0.072863, 0.063559, -0.859960, -0.017212, 0.960897, -2.295446, 1.322414, 0.105254, 0.815768, 0.617768, -1.321106, -0.252745, -0.671972, 0.339428, -1.348388, 0.737005, -0.237628, -0.465819, -1.030587, -0.530554, 0.087951, -0.199632, -0.318314, -1.073532, -1.698142, -1.671828, 1.344701, 0.003553, -0.559478, 0.811507, -0.555669, 1.308364, -0.620497, -0.000049, -0.415008, -0.181747, 2.221251, -1.662945, -0.519566, 0.136829, 0.079531, 0.033857, -0.620097, 0.423572, 1.017152, -0.024860, -1.670799, -0.497549, -0.621389, 1.408771, 1.131663, -0.504252, 0.018398, -0.678687, -0.154862, 1.336222, 1.276668, 0.838400, 1.464020, -0.208965, 1.182976, 1.161914, 0.684418, -0.248047, -2.366961, 1.694174, -0.274180, 0.206851, -0.105770, 1.171527, 1.552044, 0.610508, -0.196718, -0.371139, -0.746466, -0.227213, 0.494243, -0.182971, 0.233854, -1.703848, -0.128566, -0.505413, 1.051162, -0.095104, -0.446183, -0.998096, 1.572434, -0.435290, 0.304048, -0.238648, 1.034630, 0.199094, 0.498759, 0.308008, 0.567423, 0.535799, 1.247896, 1.101454, -0.512195, 1.708025, -1.160282, 0.399715, 0.342799, 0.860835, -0.981930, 0.966950, 0.176748, 0.114596, -0.465750, -0.720403, 0.912818, -0.634569, -0.015950, 1.681451, 0.796052, 0.161531, 0.115802, -0.037630, 0.506112, 1.203614, -0.722811, -0.321431, -0.292871, 0.021080, -0.267876, 0.649199, -0.087122, 0.238224, 0.117405, -0.796072, 0.043822, 0.106367, -0.858445, -1.923243, 0.001214, -0.383780, -0.793290, -0.298617, 0.711272, 0.673491, 0.314610, -0.888251, -0.679692, -1.327119, 0.275225, -0.920021, -0.496445, 0.875245, 0.535981, 0.114400, -0.299781, 0.403232, 0.294880, -0.923130, 0.825482, 1.730328, 1.532264, 2.092793, -0.391504, 1.081222, -0.524529, -0.022091, -0.328772, -1.802426, -3.191733, 0.810919, -1.148615, -0.073164, 1.119239, 1.209517, -0.137190, 0.591770, 1.159989, -0.503019, 1.082312, 0.211661, -1.352652, -0.939927, -1.410106, 0.278397, 0.204997, 0.343849, 0.527669, -0.209864, -0.159209, 0.667135, -0.663653, 0.568100, -0.943844, 0.968383, -0.584700, 1.035199, -1.330756, 0.185383, -0.287200, -1.398206, 0.987634, -0.948540, -0.761210, -0.476222, 1.679815, 0.190751, -1.774180, -1.118783, -2.163490, -0.681097, 0.886447, -0.393574, -0.156353, 0.806331, 1.445205, 1.760609, 0.775289, 0.476010, 1.406761, 0.448653, -0.668189, -1.231927, -0.653629, 0.500012, 1.325792, -1.548845, -0.483784, 0.831622, -1.314894, -1.561311, 1.811731, -0.912836, 0.630485, -1.403108, -0.391168, 1.268278, 0.168812, 0.088604, 0.130069, -1.499388, -0.849860, 0.208970, -1.548968, 2.431698, 1.501798, 1.145675, 0.511107, -0.294855, -0.445006, -0.125896, 0.834638, 0.352165, -0.801772, -1.507155, 0.771091, -0.598979, 2.869002, -2.871846, 0.155109, -0.123399, -0.539084, 1.917127, 0.622973, 1.223195, -0.088143, 0.041642, 0.925027, 1.111906, 0.792184, 2.656297, -0.209163, 1.669466, 0.717435, 0.243146, -0.051716, 0.683014, 0.899531, 0.134089, 1.159671, 1.415220, 0.827601, -0.047416, -1.872233, 0.506747, 0.800150, 1.101284, -0.003516, 0.047211, 1.433037, 0.230170, -1.622533, -0.698518, 0.122633, -1.203151, -0.474861, 0.508189, 0.346365, 0.240614, 0.322376, 0.639400, 0.626123, 1.446888, -1.370581, 0.497816, -0.946326, -1.198888, -0.194216, 0.220833, 0.813054, 0.750587, 2.132821, 0.410698, 0.202643, -0.262041, -0.029299, 0.835202, 0.721498, -0.739723, -0.103559, 0.746257, 0.012022, 0.637422, 0.180977, 0.425005, 0.810973, 0.094005, -0.425275, -1.144537, 1.509941, 1.235870, 2.426218, 0.950339, -1.697245, -2.842267, 0.088028, -0.943818, 0.118406, 1.056480, 0.873825, 0.694412, -0.380172, 0.728019, 1.598631, -1.262186, 0.456457, 2.355905, -1.225146, -0.073613, -0.029739, 0.348293, 1.389075, -0.585340, -0.531548, 1.049350, -1.524120, 0.565031, -0.878409, -0.475034, 1.708689, -0.821485, 0.091255, 1.589056, -1.197163, 1.336935, 0.235905, -0.938052, -0.624809, 0.531845, 2.105759, -0.549775, -0.960220, -1.652345, -1.301098, -0.605823, 0.361772, -0.868646, -1.089649, -1.282840, 0.854270, -0.087551, -2.123483, 0.386107, 0.028299, 0.206407, -0.835850, 0.057705, 1.393362, -1.547544, 1.418833, -0.726110, -1.609997, 0.284366, 0.133282, -0.113803, -0.246302, 0.385716, -1.342819, 0.802481, -0.747192, -0.168460, -0.410725, -0.676639, 0.501431, 0.701874, -1.112610, -2.127012, 0.844464, 0.120311, 0.335041, -1.169146, -0.486243, 1.991832, -0.725771, 0.414585, -0.013879, 1.460312, -1.775961, -1.494349, 1.276276, -1.334565, 1.342523, -1.006457, 0.451700, 0.538312, -0.642308, 0.988902, 0.344799, -0.993196, -0.566174, 0.839782, 2.086088, 2.044614, -0.435779, 1.037257, -0.408007, -0.928194, -0.576962, -0.507459, -1.375975, 0.077665, -0.321384, -0.037849, -0.523371, -0.321993, -0.764563, -0.491723, 0.738228, 0.704627, 1.607469, -0.927576, -0.394017, 0.249020, 0.479376, -0.730120, -0.214330, 1.451152, 0.789474, -0.656674, -0.436832, 1.409303, -0.169377, 0.031340, -0.195310, 0.072180, 1.309401, 0.438797, -1.208211, -1.192136, -0.115447, 0.850717, 1.463341, -0.321036, -0.198649, 0.141033, 1.239271, -0.785351, 0.832252, -0.552908, -1.609960, 0.197240, -1.632666, -0.047350, 1.204379, 1.903071, 1.023687, -0.402241, 1.194819, -1.232732, -0.171118, -0.218171, -1.127609, 0.001241, 1.623563, -0.833868, 1.034040, -0.272128, 1.444232, -0.414683, -0.794986, 0.457525, 2.211998, -1.412703, -0.882442, -1.041413, -0.894098, -0.015035, -2.559808, -1.231526, -0.334869, -0.409786, 0.502894, 0.563420, -1.208762, -0.756070, -0.564320, 1.080210, 1.122943, -1.392264, 2.110693, 1.787055, 0.262440, 1.456286, -1.393583, -0.105681, -0.820904, -0.504632, -0.052866, 1.159623, 0.032887, -0.250310, -1.119535, 0.247586, -0.605135, 0.511148, 0.005030, -1.153227, 0.147900, 0.797783, -1.144099, 0.571842, -1.287317, -0.639211, -0.143556, -0.862830, -0.170144, 0.563183, 0.230548, -0.112485, 0.517635, -0.557753, -1.331880, 2.015481, -1.005509, -0.845512, -1.196353, 1.349394, -0.672747, 0.168585, 1.240524, -2.042310, 1.634272, 0.277167, 2.580223, 1.310991, -0.113471, -0.213667, 0.546703, -0.659731, 1.408466, 0.215727, -0.125880, -0.415096, 0.589020, 0.963551, 1.390151, -0.568232, 0.010769, -1.282196, 0.731194, 0.691128, -0.168497, 0.636977, 0.169990, -0.554185, 0.509476, -0.018903, -1.392492, -0.390973, 0.039503, 0.540164, -1.239303, -0.195522, -0.710986, 0.407797, 1.338748, -1.045769, -0.547504, -0.618966, 1.000677, 0.641639, 1.665834, -2.476673, 1.194500, 0.244884, -0.612303, 0.963516, 0.822845, -1.977967, 2.666875, -0.240559, -1.600907, 0.041680, 0.145598, -0.276400, 1.129459, 1.092059, 1.278152, -0.221769, 1.133793, 2.168534, -0.069488, 1.005401, -0.874005, -1.124220, -0.741599, 1.837862, 2.094641, 1.319952, -1.770013, 0.332870, 0.012995, 0.736634, 1.339620, -0.820453, -0.105114, -0.732068, -1.169210, -0.668723, -0.017110, -0.141183, 0.310239, 0.283326, 0.031051, 0.226616, 0.591523, 0.896183, -0.592901, 0.576669, -0.948299, 0.386607, -1.387453, 0.362097, 1.726283, 0.560772, 0.975516, -0.245287, 0.839740, 0.340040, 0.745198, -0.750384, -0.718762, -0.001350, 1.366076, -0.972330, 1.569860, -0.466808, -0.709081, 2.652749, 0.874044, -1.134175, -0.071458, -1.567075, 0.088887, 1.004075, 0.550873, 0.350425, 0.015071, -1.363464, 0.341334, 1.126974, 1.112274, -0.022050, 0.358191, 1.264031, 0.338957, 0.185863, -1.360988, -0.836657, -1.608280, 1.500583, -0.971778, 0.257653, -0.227526, 0.465699, 0.188826, -0.849953, 0.491701, 0.676032, -1.168220, -0.381367, -0.022353, -1.842891, -0.171064, -1.284449, -0.072340, -0.876003, -0.720632, -1.405663, -0.620966, -0.076243, 0.982724, 1.181013, -0.562688, -1.019681, 0.669343, -0.161448, -0.552471, 0.340967, -0.536234, 0.679144, 0.232275, -0.178437, -1.231996, -0.985292, 0.866831, -0.297292, -0.984240, -1.611099, -0.713850, 0.090579, -0.859244, 0.522835, 1.511846, -0.287760, 0.003001, -0.091751, 0.879735, 1.096157, 0.522097, -1.202111, 1.220460, 1.514596, -0.214418, 0.293782, 1.305268, -2.114405, 0.372568, -1.816376, -0.872256, 0.696825, -0.960278, 0.419332, -1.002015, -1.223839, -0.103561, -1.248187, 0.313550, -1.053969, -1.706059, 0.881536, -0.310815, -0.925452, 0.566417, -1.073520, -1.011073, -1.163271, 0.915884, -0.233023, 0.860841, 0.493819, -0.174333, 0.106531, -0.472695, 0.132618, 1.326250, 0.086093, -0.179486, -0.582379, -0.303287, -0.027709, 0.339106, 0.334272, 0.888361, -0.586072, 1.521095, -0.621835, -0.163574, -0.544514, -1.551514, -0.491152, 0.876617, 0.339755, -1.271527, -0.011788, -0.285099, 1.249713, 0.961025, -0.261550, -0.046599, 0.644335, -0.462460, 1.060666, 0.056946, 1.487455, 0.331886, -0.360921, -0.131251, -1.610050, 0.929308, -1.871521, -0.400929, -1.189950, 0.067779, -0.792719, 1.218581, -2.228314, -0.004547, -0.560896, -0.115964, -1.301079, -1.561295, -0.008356, -0.172635, -0.908535, -0.341397, 0.685877, -0.158706, -0.130564, 2.384541, -0.098827, 0.449443, 0.950520, 0.761160, 1.653470, -0.202540, -0.390809, -0.329936, 0.055520, 0.231570, 1.532906, -1.252980, -1.216625, 0.262683, 0.058548, 0.093706, -0.035446, -0.202067, -1.954899, 1.235684, -1.118334, 0.987205, 1.836035, -0.827753, 0.245321, -0.236708, 0.432973, -0.434754, 0.427317, -1.766231, 0.804420, -1.451646, 0.729757, -1.556782, 0.313522, 1.132205, 0.790076, 1.132085, -0.244644, -0.048008, 0.520618, 0.507019, -0.517541, 0.349050, -1.029242, 1.620831, 0.704765, -0.257112, -0.996632, -0.348176, 0.293673, 0.463793, 0.599818, 1.126504, 0.629891, 0.003862, -2.478686, -0.876447, 0.937444, -1.476415, -1.158235, 0.922548, 1.686318, 1.073159, 0.838935, 0.868073, -0.268444, 0.074560, -0.494903, -0.974432, -0.043104, 1.536741, -0.984721, -0.019144, 0.337097, 1.113034, 1.128949, -0.688006, -0.971811, 0.663827, 1.976121, -0.612086, -0.830535, 0.801822, 0.976767, -0.073481, -0.413936, -1.723152, -0.708928, 0.553123, -0.268435, -0.458164, 0.337600, -0.015853, -0.430938, 0.482120, 0.632976, 0.855297, 0.369161, -0.350407, 0.119413, -0.654142, 0.283021, -0.249341, 1.927499, -0.089492, 0.805017, -1.127186, -0.993823, 0.694021, -0.099729, 1.335679, 1.833143, -0.536073, -0.002318, 1.607860, -0.431108, 0.624783, 0.760140, 2.909349, 0.479077, 0.739320, 0.523408, 0.036420, 1.204480, 1.006408, -0.668286, -0.100322, 0.780936, 1.131848, -0.248103, 0.865610, -0.439550, 0.668874, 2.303895, 0.428077, -0.798268, -0.240835, 0.712137, 0.539072, 0.477924, -0.319070, -0.455309, -0.359487, 0.795799, 1.450555, 0.935734, -0.115616, 0.076071, -1.013090, 0.661341, -0.035756, -0.839959, 0.697285, 1.181995, -0.957671, 1.467023, -0.415440, 0.670669, 0.050084, 1.101031, -1.796386, -0.383964, -0.506647, 1.700881, -1.474094, -0.887938, 1.086542, -0.236236, 1.501965, 0.661134, 1.084216, -0.529496, -0.599299, -0.167001, -0.627688, -0.971668, -0.613478, -0.057687, 0.140727, -0.671385, -0.280310, -0.329909, 0.144409, -0.048162, 0.719904, 1.569735, 1.270838, -0.551058, -0.316185, -0.026704, -2.606563, -1.123548, -1.389630, 1.857853, 0.453112, -0.537148, -0.119366, -0.188593, -0.133040, 0.570386, -0.689890, 1.261455, -1.203871, 0.118285, 0.673056, 0.314670, -0.467185, 0.890509, -0.640167, 1.316349, 1.760802, 0.381836, 3.156204, -0.548873, 0.309878, -1.721900, -1.461609, 0.323998, -1.449580, 0.419490, -1.025768, -2.196789, -0.427061, -2.127100, 0.495228, -1.407256, -0.768990, 2.156069, -0.253221, -0.436109, 1.126936, -0.981917, -0.607818, -0.136395, -0.233681, -0.758238, -1.968764, 0.513559, 0.650059, 0.363139, 0.297366, 0.645142, -0.177422, 0.951003, 1.610096, -1.260217, -1.041405, 0.349460, -0.053213, -0.879416, 0.704586, -0.495656, -1.164474, 0.749899, -0.358014, -0.684477, -0.233709, -2.041568, -0.401728, -1.567360, 0.744014, 0.657171, 0.049838, -0.093999, -0.701229, 1.605713, -1.157617, -0.276461, -1.111061, 0.588042, -0.509359, -1.521079, 0.715904, 0.424626, -1.572558, 0.863950, -0.847231, -0.819362, -0.234975, -0.205080, 0.244306, 2.532727, -0.282346, 0.813899, 1.237427, 1.316864, -0.595758, -0.438923, -0.192364, 0.651349, -1.155411, 1.332552, 0.365111, 0.287079, 1.388856, 0.784964, 0.962629, -0.067794, 1.554280, 0.133279, 0.045459, 0.076014, -0.041055, 0.392661, -0.229723, 0.226269, 0.170076, -2.228773, 1.195458, 0.160948, -0.448022, -0.306435, -0.433887, 0.647301, 1.566533, 1.025537, -1.856659, 1.369221, -0.332818, -0.416411, -0.685193, 0.142815, -2.053967, 0.479696, 1.388820, 0.072373, -0.165684, -0.723197, -1.120170, 0.721519, 0.694942, -1.327925, 0.852870, -1.270574, -1.671023, 2.365201, -0.429087, -0.264616, 1.305838, 0.051837, -1.489186, -1.379524, -0.267827, -1.513242, 0.206231, -1.226853, 0.262906, 0.804098, -0.662063, -0.737027, 0.006400, -0.097888, 1.409563, -0.005622, -0.265703, 0.430784, -0.374082, -0.353639, 0.498409, 0.634408, 0.423830, 0.794608, 0.230726, 1.496160, -1.248603, -1.345097, -0.461340, -0.594938, 1.276330, 0.049087, 2.877397, -0.155074, -0.402770, 0.395112, 2.750214, -1.599486, 1.171930, -0.626030, -0.359968, -0.526952, 1.355983, -1.127950, 0.562453, 0.803102, -1.026099, -1.751319, 0.910812, -0.138222, 0.039850, -0.588132, -1.006941, 1.155574, 1.700764, 0.533998, -0.594966, -0.045537, 0.042856, 0.142323, -0.689567, 1.367362, 0.793721, -0.318274, -1.230443, -0.804394, -1.556826, 1.295637, -0.410950, -1.001370, -0.142660, 0.011917, -2.000602, 1.701693, -0.204075, 2.126241, 0.571278, 0.213523, 0.273277, 0.711628, -0.644814, 2.377962, 0.067837, -0.203787, -0.492727, 0.825123, 1.750371, -0.056338, 0.152948, 2.230357, -0.698760, 0.077599, -0.029802, -0.571621, -0.258995, 0.154825, -0.607714, 0.042422, 1.871377, -0.459544, 0.204277, 0.902499, -0.681999, 1.033516, 0.134362, 1.066330, 0.626885, -1.045229, 1.773388, -0.070718, 0.272405, -2.291435, 1.153380, -0.936707, -0.686482, -1.712940, -0.250838, -1.797788, 1.208108, 2.012615, 1.753916, 0.404781, -0.871592, -0.479848, 1.139744, -0.567713, -0.342623, -0.658585, -1.999230, 1.718585, -0.937630, 0.722913, 0.748836, -0.649737, -2.078196, -0.152699, 0.548236, -0.728365, 0.325118, 0.566414, -0.077661, -1.900146, -0.146621, 1.614005, 1.609826, 0.110968, -1.507258, 1.761579, 1.040985, 1.095699, 0.164434, -1.315387, 1.237369, 0.115449, 0.342713, -0.205608, 0.290848, -0.450209, -0.384163, 0.453791, 0.773005, -0.344453, 0.751582, 1.051541, 0.773914, 0.514508, -0.866921, 2.373794, 1.549060, 0.868504, 0.940303, 0.037269, 1.596310, -1.622590, -1.321213, 0.422387, -1.556589, 0.278207, -0.715823, 0.442452, 0.611006, -1.406512, -0.400933, -0.036381, 0.682282, 0.440410, 0.337547, 1.054140, -2.370662, 0.500439}, - { -1.557117, 1.354714, -0.507189, -1.677046, 2.251007, -1.236535, -2.730527, -0.135517, 0.426629, -0.840740, -0.484746, -1.135077, -0.431187, 1.055289, 0.722851, -0.033690, -0.104293, 0.511147, -1.845357, 1.101776, -1.811933, 0.339437, 0.540583, -0.475171, 0.639632, -0.340200, 2.074263, 0.891054, -0.257403, 1.878608, 0.436490, -0.221761, 0.107039, -0.395112, 0.723690, 2.195958, 1.373352, 0.191767, 0.965378, 0.134876, -0.511638, -1.963900, -0.601847, 0.888348, 1.360059, -1.005337, -1.352559, 0.275802, -0.996586, 3.429792, -0.089151, 0.671209, -1.229815, 2.154351, -1.125775, 1.665587, 1.796281, -1.711791, -0.930979, 1.180638, -2.721949, 0.367663, -1.339680, 1.915345, 0.653384, 0.853967, -1.278708, 0.210739, 0.496017, 1.707879, -0.676035, 1.144740, 0.241170, -0.088847, 0.894312, -0.015625, 1.366835, 0.855726, 0.146110, 0.439883, 0.526952, 0.463049, 1.613597, 0.931085, -0.005703, 0.176923, 0.200233, 1.221886, -2.212358, 0.244618, -1.479742, 0.157874, -1.162725, -0.935696, 0.654720, 0.802513, -0.598277, -0.626279, -0.992366, -0.009777, -1.218925, 1.364486, -0.350957, 0.921134, 1.114492, 0.866894, -0.703489, -0.684720, -1.438787, -1.062744, 0.357847, -1.529508, -2.131406, -2.031877, 0.099589, -0.392503, 1.824714, -0.434718, 0.283077, -0.821671, 1.593158, 0.891252, 0.344510, 0.950365, 0.122338, 0.235416, 0.070577, -0.591245, -0.544214, 0.048842, 0.493935, 1.145389, 1.823551, -0.779781, 0.339646, -0.679694, -2.653334, 2.521782, 2.455108, 0.610537, -1.119245, -0.202094, -0.355687, -0.778566, 0.002674, -0.544540, -0.318923, -0.780856, 0.707767, 0.345975, -0.617952, -0.596359, 2.635500, 1.579006, 0.259500, 0.323165, 2.359543, -0.594938, 0.068492, 0.549249, -0.512844, -0.190790, 0.595400, -0.590486, -1.031470, -0.524377, 3.203436, -0.281427, 1.053369, 0.065607, -0.721295, 0.919299, 1.060299, -0.661467, -0.107674, -0.576129, -1.235150, 1.660981, 1.133712, 0.287339, 0.287246, -1.554665, -0.787339, -1.351613, -1.062265, -0.455838, 0.038943, 1.090834, -0.414549, 0.426604, 0.106733, -1.156028, 0.792491, 0.414883, 0.984235, 0.527139, 0.293199, 0.899923, -1.988108, -0.444575, -1.584547, 0.422906, 0.194498, 1.025737, 0.828271, -1.456154, 0.117757, 0.066355, -0.211340, -0.518127, -1.217674, -0.178295, 0.704854, 0.483708, 0.294321, 0.526501, -1.291551, -1.874611, 1.592156, -1.805152, 0.266123, -2.492696, -0.868882, 0.479426, -0.023887, -0.316269, 2.259561, 1.800243, -0.758295, -0.150794, 0.780820, -1.185125, -1.673051, -0.047029, -0.266093, 0.890193, 1.160271, 0.772067, 0.528865, -2.118247, -0.731128, 1.012658, -0.319670, 0.551970, 1.067810, -1.249290, -1.229468, 2.821555, -1.244210, 0.298691, -0.381823, -0.315208, 1.066915, 0.879789, 0.276744, 1.559746, -0.424278, -0.031569, -0.061117, 1.112057, -0.164522, -0.667368, -0.406287, 0.502148, 1.479977, -0.718784, 1.329454, 0.365968, 2.085443, 0.904310, -0.472464, 0.304797, -0.022248, -0.718791, -0.443014, 0.357514, 1.831675, -1.094502, -1.025506, -0.365520, 1.171117, 0.328614, -0.655944, -0.755994, 0.373699, 0.845346, 0.283553, -0.768500, 0.031940, 1.364133, -1.017221, 0.676596, 0.187238, 0.099184, -0.763140, -0.222902, -0.219223, 1.826233, 1.093794, -1.138860, -0.418974, 0.317812, -0.395524, -0.838842, -0.399299, 0.882260, 1.344751, -0.557243, -0.890126, -0.708344, -0.170535, 1.518636, -0.398429, -0.349143, 0.182937, 0.644080, 0.293535, 1.330478, 0.042729, 0.713383, 0.670294, -1.489232, -1.952641, 1.089116, 0.766679, 0.260208, -0.092512, 0.722679, 0.971277, 2.077432, 0.688735, -1.332670, -1.730159, -0.281100, 1.178166, -1.937678, 0.121702, -0.959751, 0.380197, -0.126586, 0.660441, 0.096211, 1.854894, -0.148417, -0.486456, -0.668114, -0.692463, -1.034927, -0.111797, 0.648791, -0.568638, -1.028907, -0.716304, 0.046795, -0.030656, 0.504981, 0.063141, 1.611272, 0.801220, 1.375850, -1.128715, -0.191421, -0.477263, -0.473041, -0.558201, -1.297186, -0.522119, -0.257538, -0.114766, -0.259126, -1.069742, 0.269224, 0.245706, 0.948744, -0.731799, 1.502836, -0.898101, 0.093258, -0.898092, -1.043162, 1.211760, 0.724990, 0.967940, 1.255183, -0.689236, -0.829589, 0.429128, 1.443109, 1.570252, -0.740298, -0.316961, 0.536463, 0.199828, 0.121909, 2.004791, 0.756453, -0.507309, -0.730538, 1.615830, 0.445823, 0.877933, 0.155118, 1.033334, -1.077395, 1.656990, 1.328022, 0.191761, -1.031495, -0.584851, 0.797350, -0.634260, 0.835749, -0.358748, 2.032304, -0.591092, 0.223780, -1.314651, -1.699066, -0.239608, 0.020907, 0.160940, -2.688284, 0.658536, 1.486791, 1.620062, -2.104166, 1.188102, 0.370384, 0.059716, -0.252538, 0.579343, 0.462017, 0.295460, -0.229596, 0.256024, -0.244064, -1.136943, 0.187441, 1.188502, 0.057767, -1.243613, 0.071384, 1.709040, 1.539935, 0.934083, 0.649864, -0.236786, -2.584575, -1.431453, -0.517931, 0.321816, -2.963837, -0.718307, 0.924068, -0.789880, 0.751059, -0.214046, -1.650300, -0.094235, -0.208179, 0.887398, 0.425317, 0.836094, 1.120878, 0.777292, -1.955840, -2.196150, -0.366979, -0.323786, 0.098094, -1.240425, -0.153496, -0.368574, 0.323803, 0.422725, -0.383971, 0.486266, 1.912627, 1.069989, -0.835923, -0.688125, 1.032788, 1.070619, -0.608596, 1.254905, 0.085726, 0.105570, -1.843710, 1.407650, -1.347667, 2.621028, 1.587248, -1.376651, -0.653023, 0.707422, 1.455100, -0.831775, -1.663748, -1.495220, 0.571127, -2.077593, 1.572516, 1.161790, -0.313553, 1.834049, 0.544914, -1.143451, -0.702849, 0.885798, -1.707950, 0.410130, -1.565802, 0.165077, -0.549966, -1.959193, 1.167866, 1.802445, 0.431422, 0.885983, 0.600516, -1.363368, 0.510890, -0.554945, 0.048845, 0.737844, 0.663687, -1.842748, 0.811965, 0.853685, 1.683111, 0.482860, -0.208920, -0.515260, -1.023627, 1.893778, 0.929339, 0.550755, 0.818082, 0.502538, 0.725463, -0.246349, -0.238920, 0.952603, 0.569799, -1.001931, 1.969856, 0.716774, -1.137192, -0.798399, -0.965910, -1.612037, 0.749674, 0.280505, -0.516543, -0.854051, -0.574175, -0.813508, 0.360200, 0.170275, -0.329160, -0.876415, 1.163529, 1.020010, 0.275865, 1.429493, 0.206745, 0.669694, 0.988536, -0.111673, -1.064488, -1.381906, 0.054743, 0.094889, -0.177771, 0.803945, 0.576841, 1.221266, 0.325914, -0.372008, 2.111483, 1.932752, -0.565688, 1.122114, -1.310081, -1.008726, -0.338272, 0.277182, 0.642604, -1.775700, 0.739044, -0.906823, 2.325243, 1.046948, -0.423112, -2.036797, -1.761800, -0.975541, 1.134551, 1.344011, -0.117449, 0.172826, -0.823505, -0.143463, 0.863610, -0.210688, -0.619058, 1.870949, 0.063990, -0.651090, 0.195268, 0.501306, -0.607498, -0.710503, -1.635040, 1.027606, -3.069799, -0.638853, 0.540163, 1.745569, 0.567150, -0.134887, 0.158715, 0.410833, -0.526851, 0.454765, 0.716343, -0.623224, 0.695090, -0.598681, 1.241086, 0.683083, -0.041679, 1.525075, -0.962389, -1.307760, 0.675192, -0.578039, 0.245004, -1.231397, -0.829305, 0.115689, -2.717426, 0.144028, 1.032865, 0.148114, -0.952908, -1.504366, -2.247828, 0.406948, 2.433513, -0.463547, -0.020855, 1.089980, 1.915876, -0.780706, 1.175394, 0.066952, -0.950170, 0.834358, -0.846286, 0.016857, 1.175339, 0.215610, -0.584048, -0.401780, -0.832289, -0.202046, 0.711954, -1.264368, -2.883734, -0.423156, 0.936798, -0.289677, 0.709213, 0.479675, -1.788116, 0.398553, -0.343703, -1.613222, -0.507234, -0.480106, -0.091324, -0.299687, -2.786705, 1.600875, -0.662804, 1.011639, 0.092112, -0.066656, 1.343879, -1.046727, -0.410463, -1.168224, -1.704453, 1.066022, -2.321124, -0.224048, -2.070347, 0.694574, -1.826250, -1.852257, -1.834839, 0.343259, 0.656732, -2.709880, 1.514210, 1.956066, -1.795674, -1.797701, 0.592806, -0.607482, -1.512448, -0.090299, -0.638567, 0.687265, 0.252648, -0.057771, 0.418299, 0.324606, 0.880168, -0.114430, 1.441478, -1.031433, 1.357451, 1.081684, 0.073322, 0.385400, 1.574116, -0.838686, -0.562279, 2.803296, -0.062337, -0.715824, -1.483479, 0.697064, -1.511971, 0.622425, 1.685541, -0.185731, 0.977569, -2.076476, 0.372813, 0.019008, -0.659924, 0.837051, -0.646133, -0.279275, -0.313328, -0.301571, -0.288674, 0.040925, 0.691603, -0.455363, 0.381743, 1.438290, -0.958760, -0.402769, -0.331764, 0.213186, 0.493733, 0.604938, 0.149029, -0.182319, 0.764589, -0.690511, 0.395842, 0.433151, -1.657155, 0.999666, -1.443099, 1.285412, -0.236826, 0.579664, -0.935998, -0.233323, -1.267898, 0.026270, -0.775491, 0.257070, -1.378352, -0.907157, -2.086672, 0.873207, 1.008371, -0.623795, 2.244254, -1.394387, -0.493002, -1.006927, 0.900087, 0.526529, -0.408201, -0.909291, -0.412598, -1.666606, 0.336379, 1.937729, -0.072592, 0.678691, -0.614418, 0.250235, 1.045207, -0.581390, 0.755579, -1.646924, -1.423800, 0.230081, 1.003887, -0.725993, 2.114760, 0.806880, 0.096856, 0.559407, 0.107620, -1.821931, 0.121767, -0.515205, 0.172496, -1.398159, -0.312484, -0.835134, -0.092868, -0.714001, -1.111573, 1.999733, 0.130829, 0.798623, -0.440334, 1.082063, -1.787091, 0.127145, -0.937345, 0.413789, 2.730453, -0.905496, -0.800846, 0.027002, 1.017213, -1.605840, -2.170621, 0.333026, 0.989201, 0.322813, -0.144388, 0.788195, 1.910774, -0.027260, 0.648311, 0.398361, 0.110731, -0.267675, -0.614838, 1.994243, 0.494190, 0.428123, 0.933699, 1.799689, -0.682839, 0.278480, -0.196905, 0.478146, -0.801117, 0.827211, -0.208584, 1.749742, -0.309020, 0.550399, 0.029851, -1.455646, 0.604909, -0.079668, -2.667139, 0.087649, -0.460940, 0.762463, -2.313522, 0.324131, -0.051233, 1.416637, -1.459987, 0.823470, 1.385938, -0.935317, 0.286730, 1.344583, -0.171006, -1.096904, 1.473253, 0.965604, -1.496269, -0.178862, 1.717303, -0.583761, 0.113950, -0.018208, -0.327182, 1.401059, 1.389596, -0.796274, 0.020972, 1.471807, -0.812743, 0.257384, 0.751148, 0.047724, 0.700667, 0.265306, -2.105040, 1.943851, 0.336538, 0.061315, -0.880601, 2.034990, 0.390806, -0.251553, 0.949620, 0.569913, -1.127480, -0.133491, -0.360130, 0.507190, -0.120065, 0.239050, -0.186229, -0.451519, -1.754476, 0.374530, 0.611022, 0.789310, -0.348057, 1.140915, 0.085280, -2.326496, 0.418783, 0.016176, 0.686528, -0.627661, -2.044782, 0.762335, -2.777923, -0.539664, 0.490943, 1.338368, 0.666821, -0.109984, -0.242139, 0.338926, 0.599906, -0.988994, 0.075134, 0.612756, -0.137218, -0.329234, 0.209015, -2.814755, -1.220983, 1.693280, 0.505602, -1.028624, -1.108691, -0.708004, 0.897789, 0.116973, 0.676235, 1.243742, 0.574093, 0.568279, 0.204379, 0.320489, 3.624524, -0.107981, -1.071918, 0.476256, 0.647188, -0.725657, -0.683423, -0.150823, -1.443447, 1.602178, 0.200285, 0.649823, -1.720011, 1.414100, -0.197545, 0.515355, -0.374684, 0.283812, -0.470898, -1.063043, -1.816326, 0.250095, 0.935557, -1.139354, -0.466160, 0.405362, -0.622125, 1.001775, 1.485674, 1.143600, -2.325331, -0.168706, 0.076381, -0.256243, 0.727384, -0.405000, -0.397265, 2.091771, 0.961732, -0.555531, 1.535828, -0.058543, 0.309129, -0.454639, -0.373124, -0.027610, -0.002329, -1.562552, 0.450250, 1.854350, 0.136018, -1.061123, 0.668776, -1.319662, 0.071643, 0.671723, -1.192360, -0.847854, -0.117530, 0.658111, -1.046560, -1.172832, -1.027798, 0.205758, 1.142023, 1.912734, -0.143382, -0.007215, -0.348592, -0.052300, 0.602616, 0.149774, 0.986381, 1.471414, 0.300240, 1.089306, 1.396079, 1.683783, -0.992930, -1.046782, -1.896329, 0.023814, -0.529550, 0.032748, 0.078279, -2.043210, -0.488937, -1.731646, 0.052488, 0.245970, -0.086917, -0.119635, 0.661894, 2.422866, 0.264647, 1.130475, 0.825577, -0.210446, 0.789719, 0.806348, 0.487728, 1.400573, -0.602437, 0.084405, -0.589990, 0.158884, -0.442584, 0.780902, 0.867537, 0.161949, 0.543853, 0.588014, 0.573093, 2.175162, -1.271450, 1.267353, -0.965747, -0.371463, -1.254071, 0.676379, 0.064895, -1.493244, -0.402029, 0.549497, 1.876008, 0.531956, 0.855622, -0.113579, -0.856276, 0.550516, -1.477120, 0.125452, -0.081384, 0.451109, -0.396976, -0.067359, -0.695863, 0.102945, -0.662459, -0.344884, -0.912358, 1.044545, -0.038694, -0.989957, -0.876553, -0.233115, 1.001486, -0.033651, -0.073757, -0.031075, -0.008064, -1.806170, 0.047935, 0.193671, 1.413952, 0.040483, 1.190362, -0.462616, 2.006792, -0.942195, -0.404081, -0.688151, -1.438415, 0.360901, 0.442568, -1.319612, 0.296704, -1.096544, 1.121205, -1.854651, -1.497170, 1.133617, 0.176775, -0.322742, 0.632726, 2.031226, -0.141536, -1.193344, -0.719150, -0.907301, -0.302887, 1.501997, 0.222989, 0.607424, 0.715540, 0.135347, -0.180373, 0.872393, 0.302123, 0.621171, 0.565502, -0.865762, 1.556385, -0.639774, 0.770244, -0.289162, 0.909540, 0.198509, -0.406314, 1.114900, 1.965350, 0.376352, -0.487214, 0.252000, -1.466713, -1.148095, -0.376994, 0.142340, -0.733264, -0.264959, 0.718959, -1.021395, -0.760192, 0.573613, -0.240009, 0.920737, -2.227340, 1.754826, -0.455740, -0.071718, 0.527629, -0.288560, -1.655325, -0.214926, -1.059318, -0.110169, 1.234615, -1.071158, -1.332628, 1.193424, -0.052697, -3.007507, -0.231441, -0.501489, -0.097044, 1.156758, 1.010388, -0.699723, 0.011532, -0.366105, -0.354938, 0.706469, 1.324823, -0.723851, -0.765305, 0.104078, -0.152778, -1.760532, 0.108150, 0.417053, -0.240973, -0.631443, -0.842603, 0.085735, -0.642529, 1.114929, -1.277776, 0.069594, -1.270295, -0.762618, -0.099499, 1.846426, 0.813036, 0.018230, -0.703635, -1.385186, 0.787865, 0.149337, 0.922254, 1.058334, -1.488605, 0.733014, -1.218047, 0.062609, -0.080778, 0.922523, -0.317111, 1.008965, 1.554433, 0.315259, -0.477063, 0.615799, 0.560589, 1.504575, -0.779535, -0.156815, -1.290895, 1.693081, -0.978720, 0.512226, -0.009672, -0.435017, -0.708193, -0.773288, -0.470815, -0.014696, -0.098243, 0.889275, 0.518527, 1.333418, 2.264540, -0.357673, 1.677651, -0.796292, -0.421162, -1.647305, 0.941487, -0.896379, 0.661574, 0.953356, 1.050237, 1.914091, 0.551282, 0.489249, -0.597443, 1.130541, -0.318466, 0.830834, -0.953340, 0.086149, 1.435785, 0.604072, 1.209609, 0.774671, -0.592657, 1.467651, -0.351216, -1.484281, 1.343407, -1.611825, -0.332055, 0.723110, -1.139692, -1.001073, -0.325930, 1.749366, -0.148873, -0.610217, -0.543498, 0.691570, 0.888235, -1.561314, 1.459599, -0.535249, 0.541400, 0.009179, -1.395937, -1.128175, -0.649366, -2.114625, -0.065877, 0.312541, 0.018073, -0.647090, -1.427603, -0.124610, -0.474331, 0.632228, 1.363993, -1.584020, 0.068125, 0.103750, 0.936805, -1.948344, -1.349068, -0.072204, -0.331641, -0.963022, 1.867544, -0.187147, -0.352917, -0.375159, -0.799938, -1.031288, 0.619725, -1.233922, 0.823035, 1.129496, -1.508481, 0.391089, 0.034143, -1.486469, -1.511410, 1.540567, -0.317665, -0.751800, -0.848927, 2.832581, -0.103704, -0.566887, 0.323637, -0.135427, 0.105963, 0.002972, -0.731210, 1.706718, 0.280686, -0.847416, -0.587071, 0.208485, -1.240083, -0.850757, -1.066710, -1.459347, -1.611627, -0.793716, -0.393560, 1.027389, -0.439485, 0.268820, -0.862088, -1.119811, 0.318000, -0.260147, 0.325984, -0.622883, -0.669476, 0.408702, -1.056129, -0.584641, 0.000201, -0.752587, -0.787775, -1.164250, -0.723832, -0.746187, -1.927120, -0.840254, 1.385708, -0.078547, -1.140047, 0.166102, -1.191008, 1.178601, 0.959276, 0.618510, 0.405589, 0.196847, 1.581025, 0.967423, -0.514203, -1.092266, 2.248667, -0.973327, 1.737345, -1.705929, 1.422695, 1.555662, 1.207116, -0.733619, -0.009778, 1.435663, 0.167343, -0.979807, -1.046875, -0.735424, 0.845894, 0.153676, -1.047022, 0.701910, 1.023052, 1.084728, 0.371670, 2.275627, -0.458659, 1.762021, -0.151062, -0.459453, -0.346671, -0.439336, 0.138806, -0.071424, 1.075717, -0.707650, -1.222287, -0.326649, -0.365195, -0.631663, -0.452039, 0.076999, -0.453122, -0.758912, -0.603327, -0.946270, -0.568353, 0.655457, 0.228447, -1.157819, -0.140629, -0.815454, -0.364001, -0.907113, -0.252045, -1.557672, 1.351852, -0.024363, -0.142018, -0.672413, -1.739248, -1.996266, 0.644202, 0.169764, 0.561553, -0.785866, -0.596929, 0.816867, -0.039996, -0.239989, -0.885165, -0.459998, 0.368302, -0.012020, 1.504429, 1.469093, 1.607059, 0.214752, 0.528592, 1.533930, -0.534178, -0.160462, 0.810724, -0.253174, -0.118833, 0.692363, -0.085343, 0.265335, 2.406784, 0.634014, -0.260212, -0.024009, 0.971677, 0.807658, -1.138677, 0.453462, -0.757718, -0.680201, -0.436209, 0.276405, -1.000322, 0.249727, -1.897274, -1.480437, 0.476978, -0.360568, -0.847952, 0.348301, 0.162966, 1.566202, -0.367893, 0.860830, 1.780864, -0.369717, -0.078052, -0.871633, 0.089699, 0.194816, -1.254903, -0.435643, 1.155469, 0.630962, 1.598219, 0.578034, -1.298599, 0.152819, -1.568090, -0.751830, -0.978385, -0.454237, -0.846124, -0.385268, 0.042639, 0.610340, -0.833527, -1.874566, -0.595565, 0.412910, -0.488504, -1.235172, 2.326921, -0.177846, -0.577322, 0.351844, 0.326709, -1.063931, -0.535155, 0.011826, -0.945323, 2.371784, -0.027007, 2.269670, 0.383736, -1.519508, 0.935869, 0.732636, 1.390427, -0.078902, -0.449151, -0.488681, 1.094915, -0.202084, -0.287595, 0.142216, -0.898288, 2.426931, 0.845492, -0.003604, -0.077900, -0.072413, 0.543166, 1.372370, -0.550238, -0.903998, 1.768091, -1.157348, -0.973716, -2.085474, 1.285981, 0.297159, -0.563190, -0.990179, -0.928343, 0.036833, -0.132404, -2.793431, 0.140091, -0.561387, -0.766239, -0.463243, 0.720224, 2.433175, 0.577626, -0.102106, 0.453248, 1.149690, 0.060122, 0.184904, -0.086450, 0.222498, -0.269881, -1.756782, -0.212303, 0.348684, 0.063343, 0.479133, -0.627331, -1.242213, -0.885179, -1.534372, -1.079785, -1.334267, -0.946222, 1.621160, 0.765204, -1.648988, 0.154881, 0.588840, 0.001410, -0.856360, -0.693779, -0.593685, 0.636250, 0.527808, 0.391954, 0.056132, -0.915853, -0.785997, 0.354604, 0.048352, 0.482858, -1.549876, 1.140285, -0.729221, -1.000013, -0.238574, 0.009340, -0.850482, -0.096991, -1.063285, -0.254214, -0.269767, -0.314655, 0.538193, 0.731428, -0.129746, -1.956473, 0.700639, 0.620613, 0.330232, -0.752340, -0.109973, 0.342319, 1.606716, 0.399675, 0.540330, -1.416298, 0.053976, 1.417298, -1.874458, 1.070427, -0.199754, -1.608628, 1.103573, 1.588237, -0.520360, 2.218319, 0.946560, 0.782908, 1.249461, 1.181448, -1.122672, -0.953556, -0.140751, 1.528455, 0.497748, -1.076518, 1.041024, 0.312284, -0.210207, -0.169994, -1.827092, 1.115518, -0.652308, -1.621547, 1.297407, 0.709014, -2.372253, -0.410997, 0.167149, 1.097231, -1.976804, 1.373858, -0.905328, -0.057656, -1.195878, 1.042341, -1.602360, 0.462578, -0.849047, -0.932067, -0.823945, 1.781272, 0.363393, 0.286439, -1.312072, 0.100421, 0.864303, -1.370142, 0.512092, -2.117177, 2.141616, -0.741381, -0.326326, -0.652323, 0.911839, -0.490780, -0.167039, -0.325924, -1.554214, -0.287802, -0.376901, -1.526887, 1.817247, 0.668049, -0.201002, 1.068239, 0.614162, -0.688809, 0.617680, -2.282654, -0.369808, -0.868731, 1.832154, -0.112420, 2.153309, -0.472138, 1.746971, -0.158361, -1.330890, -1.004652, -1.304650, 1.164770, 0.598732, -0.678409, -0.649571, 0.374289, -0.366423, -0.830665, 1.085109, -0.147578, -1.173575, 1.365459, -0.240607, 0.585568, 1.074867, -1.771816, 0.350242, 0.542322, -0.903360, 0.779767, -0.455828, -1.087029, 1.143988, -1.087878, -0.338279, -0.006980, 0.206698, 0.573161, 0.405787, -0.170474, -0.435998, -0.853423, 0.626173, 0.954629, -0.851737, -1.767429, 1.012765, -1.027125, 0.084180, 1.653846, -0.017657, -2.041177, 0.478052, 0.301108, 0.794047, 0.326979, -1.696737, 1.239793, 0.817544, -0.544289, -1.079586, 0.480169, 0.697885, 0.029189, -0.157003, 0.244460, 1.471116, -0.058096, -0.335356, 0.846185, -0.706565, 0.893403, 0.064045, 0.599305, 0.777811, -0.327337, -1.161725, 2.090903, -1.326161, -0.725093, 0.899056, -0.310031, 0.595842, -1.982696, -0.449979, 0.321119, 0.298156, 0.428420, 1.595750, -0.426936, -0.019715, 0.544453, 0.529716, 0.950191, 0.161947, 0.216113, 0.021033, -0.859725, -0.311713, -0.044644, 1.123937, -0.388754, -0.457174, -1.975546, 0.253457, -0.143959, -1.257514, 1.608866, 0.903306, -1.594638, -1.004951, -0.747047, -0.465666, -1.048783, -0.784695, -1.166549, -0.079232, 2.567748, -1.117581, 0.466456, 1.777307, -0.754517, 1.052868, 0.842280, 0.407805, -0.438280, 2.096974, 1.599941, -1.144482, 0.706852, -1.079994, 0.446117, -1.588874, 0.153943, 0.146844, -1.031799, 0.044539, -0.077193, 0.546758, -0.220017, -0.961376, -0.194828, -0.623218, -0.677772, 0.770816, -1.187404, -0.468903, -0.558702, 0.077340, -0.589303, -3.303533, -1.043170, -0.552415, 1.136450, -0.528130, 2.127850, -1.585950, -1.345437, -0.114537, -4.300495, 0.925318, -0.632387, -0.778907, 0.161790, 1.695711, -0.044800, 0.293022, 0.606354, -1.381420, -1.688716, -0.366741, 0.739439, -0.851905, 0.077586, -0.817667, -0.648724, -0.079391, 0.092442, -1.654611, -0.380085, -2.359384, 1.422481, 0.341910, -0.367495, 0.139648, 0.648311, 0.002428, -0.543509, 0.638240, -0.719029, -0.973774, -0.585278, 0.887388, 0.623954, 0.637385, 1.235658, 0.536885, 0.840931, 1.843361, 0.016616, 0.186860, 0.748575, 2.052685, 0.946707, 0.714075, -0.867320, -0.349556, -0.232103, -0.788715, -0.059042, -1.367973, -0.816085, 0.363620, 1.263519, -1.900187, 1.133963, -0.170226, 0.395506, -0.050084, 1.661634, 0.187009, -0.275987, 0.532311, -0.792247, -2.209967, -0.174388, -0.503377, 1.043901, 0.377315, 0.878469, 1.666189, 0.166155, 0.959415, 0.293677, -0.547424, -1.362808, -0.224272, -0.881520, -0.981233, -0.608290, -1.230971, -1.684822, -0.285943, 1.015244, -0.462072, -0.906668, 1.921854, 0.834137, 1.904203, 1.734076, -2.155846, 0.447119, 0.113841, -0.105290, 1.140077, -0.635905, 1.161924, -2.251748, 0.265711, -0.485624, -0.335880, -1.445401, -0.090981, 0.506388, -1.738436, 1.396771, -1.923806, 0.108555, -0.403277, -0.952693, -1.975905, -0.589969, 1.068580, 0.474613, -0.207443, -0.941785, 0.313337, -0.338199, -0.504333, -1.717215, -1.175869, 0.506519, -1.085890, -0.807780, -1.406470, 0.812941, 0.715761, -0.760918, -1.890742, -1.925585, -2.049034, -0.331508, -1.221669, -0.160516, -0.069893, 0.004622, 0.969929, -2.446832, 1.740517, -0.695053, 0.477487, 0.505786, -0.566565, 0.045836, 0.561914, 0.082420, 1.275409, -0.079680, 1.554209, 0.297980, 1.545889, 0.056693, 0.929750, -0.800087, 0.174759, -2.121391, -0.425979, 0.494141, 0.410757, 0.484254, -1.115728, 0.595760, -0.141025, 0.215541, 0.069802, 0.710761, -1.362658, -0.911008, -0.997132, -0.309394, -1.834935, -1.014773, 0.265875, 0.023405, -0.946596, -1.590703, -1.228491, 0.870008, -0.340985, -0.070390, -0.818430, 0.343354, 0.487150, -1.982794, 1.011562, -0.285269, -0.328664, 0.065852, 0.708075, -0.077594, 0.242811, -0.212249, -2.497117, 0.048809, 0.660148, -1.865733, -0.975017, 0.949623, 0.690463, 0.848092, 0.969258, 1.463848, -0.822141, -1.599392, 0.067922, -0.156459, 0.479083, 1.138052, -1.001565, 0.013482, -0.712189, -0.382242, -0.509447, 0.208836, 0.049709, -0.843975, 0.715524, 0.547512, 1.015411, -0.172784, -1.112108, -0.776726, 0.966446, -0.159367, -0.589542, -0.596102, 0.307302, -0.255558, -0.316782, -1.974549, 0.160857, 0.911458, 0.035802, -0.674841, -1.071291, -0.951451, -0.506916, -0.336920, -1.328063, 1.967865, 0.092645, -1.456744, 0.276830, -1.130429, 1.217138, -1.679936, -0.630305, 0.825974, -1.209480, 1.591581, -1.723964, -0.816020, -1.048776, 0.490735, -0.475880, -0.437219, 0.188528, 0.137812, -0.544941, -0.067159, -0.739706, -0.552998, -1.000327, 0.402042, 0.407939, 0.525162, 0.731016, -1.266692, -1.411585, -0.306509, -1.058082, 0.033268, -0.255101, 1.359707, 1.967774, 1.511500, 0.762854, 0.118548, 1.599814, -0.615524, -0.048723, 0.488591, 0.375427, -0.038320, 0.288628, -0.103925, 0.464141, 1.240456, 0.272748, -0.596565, 0.223885, -0.735085, -0.188305, -0.797489, -1.422948, 0.304770, 0.208513, -1.319620, -1.178728, 0.792189, -0.454396, 0.621427, 0.750056, 0.046164, -0.571839, -2.198831, -0.557676, 0.504787, -0.340769, 1.155886, -0.602151, -1.350994, 0.183326, 0.093178, 0.139263, -0.499876, -0.481268, -0.954176, 0.126912, 0.116863, 0.765332, 0.205981, 1.341605, -0.257970, 0.183472, -1.824464, 1.337553, 0.334509, -0.061754, -0.234325, -0.100152, 0.330343, -0.424811, -1.439790, 1.195658, -0.595843, -0.259344, -2.044168, 0.064204, -1.652589, -0.321069, -0.553556, -0.832698, 0.446229, -0.861846, -1.806791, -0.617371, -0.742199, -2.485753, 1.249662, 1.421692, -0.797433, -0.802611, -0.225920, -0.261215, 1.820470, -1.821068, 0.966022, -1.272230, -0.142168, 0.865661, 0.848400, 0.611056, 1.000821, -1.189157, -0.380715, -0.641966, -0.008629, 0.268261, 0.722904, -0.659296, -0.685737, 1.440202, -0.573664, -2.913980, 0.933113, -1.917645, 1.351861, -0.616408, -0.477297, 0.862531, -0.572179, 0.874445, 0.260035, -1.265886, -1.105464, 0.865375, 1.365638, -0.292919, -1.419697, 1.938201, 2.356994, -0.044798, -0.973055, -0.167109, 0.351039, 0.340722, -1.461834, 1.426527, -0.185248, 0.773286, 0.484805, 0.819893, 0.211411, -0.651001, -0.355170, 1.774631, -0.358988, -1.109809, 1.330151, -0.355999, -1.124707, 1.063322, 0.345758, -1.876200, -1.120688, -0.767086, -2.450008, -0.501714, -0.528775, -0.575405, -0.828807, 0.855159, -1.767087, 2.053926, 0.211529, -1.357369, 0.573687, 0.828535, 1.517782, -0.308071, 1.303685, -1.689624, -1.065987, -1.741522, -0.897759, -1.484677, 0.306969, 0.512068, 0.467876, -1.774692, 1.742781, -0.482540, -0.769283, -0.361696, -0.446929, -0.018232, -0.818328, -0.384064, 0.238841, 1.017175, 0.797651, 0.862126, -2.394478, -0.685041, 1.141945, -1.219869, 0.749380, 1.208255, -2.420062, 0.082417, -0.605711, -1.090430, -0.634442, 0.291487, 0.551130, 0.146109, 0.966412, -0.377455, 1.150829, -0.249140, 0.102413, -1.299381, 0.847570, -1.151470, -1.402707, -0.280173, -0.329089, -0.632742, 0.609246, 1.443998, -1.252176, -0.142825, -0.991600, 1.400027, 0.861248, -0.296644, 0.744214, -0.754783, -0.625774, -0.463525, -1.249192, 0.158552, 1.489001, 0.334800, -0.329807, -0.135256, 1.075552, -1.358308, 0.929805, -0.376771, 0.826095, -0.954144, 0.478493, 0.585142, 0.269756, 0.157139, -0.620211, 0.310792, -0.256908, 1.776156, 1.336898, -2.289882, -0.446814, 1.089413, 1.598865, -1.099717, -0.899428, -0.107001, -0.314352, -1.160159, -0.378809, 0.466047, -0.309189, 0.615682, -2.061841, 0.157211, 0.341351, -0.894049, -0.513637, 0.988657, -1.150672, -0.489670, -1.102414, 0.056941, 0.766576, 0.763492, -0.840921, -1.135290, -0.262023, 0.935517, 0.589387, 0.312873, 1.666263, -1.146234, -2.163281, -0.942766, 0.158120, 0.307408, 0.262979, 0.047560, -0.015414, -0.118879, 0.557691, -0.383128, -0.575649, -0.123407, -1.248606, 0.351627, -1.961615, -0.475022, -0.082092, 0.756998, 0.481618, -0.933765, -0.387378, -1.044283, 0.444688, -2.110740, 0.882128, -0.192984, 1.581900, -1.505186, 0.938435, 0.799770, 1.165289, 3.024083, -0.206379, -0.100118, 0.782040, -0.444366, 0.636295, -0.461406, -0.136020, -0.479741, 0.048873, 1.005753, -1.541248, 0.492095, -1.258456, -0.883361, -0.198476, 0.733936, 1.512280, 1.325008, -0.690003, 0.674963, 0.021092, 0.464440, 1.246704, 1.231883, 0.238418, -0.820233, 0.393607, -1.380600, 1.094744, -0.556734, 1.299303, 1.089489, -1.127183, 0.193055, -1.021661, -2.162528, -0.238160, 1.853278, -0.535029, 1.064245, -1.025247, 0.030453, -0.970250, -0.726249, 0.522500, 0.625467, -1.975249, 1.210737, 0.727929, 0.852778, 1.331287, -0.025068, -0.089720, 1.173838, 0.356005, 0.021698, 1.572658, -0.701724, 0.001808, 0.326351, -1.064895, 0.335627, 1.420564, -1.447721, 0.048674, 0.120460, 0.192077, -0.159222, 0.620979, -1.132691, 0.885596, -0.672108, 2.108951, 0.590129, 0.004810, 0.551644, -1.410655, -0.591229, -1.774089, -0.472742, 2.436532, 0.016593, 0.762421, -0.294313, 0.128433, 0.176181, -1.316388, 0.476815, -2.096947, -0.504716, -0.338564, -0.966901, 1.216820, 0.153871, 1.074961, 0.282674, -1.091407, 2.347421, -1.042338, -0.022819, 0.318516, 0.057826, -0.165713, 0.266254, 0.697009, -0.816301, 0.192424, 0.605237, 0.893806, -0.442881, -1.431923, 2.216052, -0.541955, 0.140457, 0.630794, 0.658994, 0.063157, 0.007512, 0.287694, 1.829861, 0.775708, -0.179263, -1.828487, 2.307510, 0.584948, -1.051735, -0.635638, 0.529219, -0.275500, -0.477878, 0.151203, 0.033712, 0.784343, 0.564970, -0.387843, -1.125990, -1.917728, 1.454181, -1.629448, 0.192831, 0.745016, 1.751915, -0.179042, -0.819542, -0.095948, -2.742397, 0.653421, 0.982961, 1.460629, -1.362661, 1.510778, 0.824519, -0.275595, 0.354997, 0.488819, 2.258819, 0.359619, -1.283820, 0.897959, -1.922831, -1.211657, -0.786508, -0.335672, -0.066206, -1.885398, 0.106196, -1.075324, -0.130771, 0.936019, 1.199241, 0.818597, -1.295691, -0.252380, -0.580393, 0.718272, -0.219422, -0.083880, 0.817375, -0.477985, 0.342383, 0.880923, -1.288045, -0.107524, -0.291669, -0.782096, 0.243727, 0.085524, -0.525933, 0.431572, -0.983014, -0.880919, -0.301686, 0.111170, -0.353627, 0.147223, 0.644625, -0.010997, 1.672121, -0.647457, 0.854281, 0.129677, 1.886402, -1.613103, 1.083120, 1.666750, -1.137492, -0.193517, 0.481021, -0.777120, -0.636568, 1.088941, 0.169902, 0.514698, 1.019902, 0.618131, -1.584765, 0.950636, 0.091505, 1.036228, 0.804537, -0.568730, 0.419557, 0.424344, 0.613427, -0.565812, -0.561972, -0.450024, -0.150461, -2.487002, -0.772121, -0.789989, -0.601415, 1.164385, -0.989414, 0.172397, -1.331528, -0.946586, 0.646704, 0.481265, -1.474057, 1.019306, -0.378230, 0.152290, 1.763388, -1.424848, 1.907498, -3.040169, 1.664067, 0.629568, 0.703467, -0.895947, 0.097275, -0.199917, -0.108095, -0.778527, -1.699217, 1.018501, 0.375550, 1.372404, -1.116008, -1.420740, -0.423042, 0.221206, -0.534473, 1.665612, 0.037007, -1.744174, -0.168484, -1.889772, -0.253912, -0.865062, 1.123276, -0.171041, -0.557752, -0.544259, 2.175464, -0.924443, -0.868644, -0.204754, -0.421062, 0.173582, 0.311574, -0.250844, -1.658209, -1.277540, -1.286674, 0.520298, 1.740611, -0.238448, -1.193111, 0.238622, 1.807017, 0.273297, -1.451350, 0.320300, 0.034210, 0.409694, -0.019713, -0.729223, 1.203844, -1.094943, -0.065545, 0.478520, -1.504856, 0.309317, 1.420546, -0.193712, 0.880712, 1.616937, -0.234721, -0.619091, 1.839139, 1.640983, -0.153224, 0.299766, -0.196582, 0.604506, -1.481387, -1.129494, 1.480800, 0.483069, -0.181322, 0.633865, 0.468024, -1.259344, -0.772260, -0.090819, 0.045058, 1.221004, 0.309356, -0.795301, -0.322054, -0.747134, 0.942645, -0.855732, 0.571040, 0.418151, -0.311619, 1.451395, -1.253479, -0.816530, -0.844545, 0.465934, 0.142660, -1.574321, -0.607416, -0.865954, -1.985933, -0.357751, -2.003364, -0.165155, 2.120625, 0.424884, 1.625462, -0.635548, -0.828839, 0.962227, -0.458569, -0.263883, -0.003447, -0.811828, 1.466801, -0.861442, 1.817312, 0.763435, -0.077283, 1.171337, 1.852980, -0.825663, 0.380816, -0.763107, -1.273469, 0.050053, 1.128880, -0.529200, -0.491573, 0.518026, -3.078030, 1.453127, 0.168322, -1.354980, 0.054666, -0.483361, 0.086041, -1.201428, 0.910132, 1.136404, -0.822585, 0.583446, -1.146909, 1.098380, 0.492739, -1.194805, -1.016227, -0.906808, -0.923640, 0.064073, -0.993246, 0.267169, -2.204418, 0.137569, -0.545028, -0.088738, 1.513250, 0.174449, 0.795486, 0.742522, -0.746636, 0.508116, -0.132021, 1.098349, -0.252487, -0.686360, 0.895944, -2.132263, -0.394777, 0.741522, -1.430188, -0.150352, -0.534067, -1.836780, -0.145386, -1.950096, 0.612955, -0.126225, -1.251469, 0.652834, -2.065746, 0.217627, -1.366868, -1.038746, 0.078324, 0.008992, -0.592714, 0.004255, -0.615789, -0.054335, 1.936118, -1.043879, -0.680675, -1.986930, 0.177496, -0.491806, -1.685774, 1.324623, 2.353280, -0.011818, -2.221364, -0.197860, 0.934152, 1.032305, -1.041719, 1.736700, -0.724483, 0.039847, -1.148865, 0.377469, 0.367587, -1.228222, 0.845540, -0.122739, 0.534080, 0.826322, -1.324016, -0.306079, -0.528325, -0.233354, 1.066766, 0.501423, 1.135994, 0.214983, 1.068522, 0.537713, -0.859421, -0.100945, 0.367885, 0.100765, -0.446465, 0.467550, 0.195550, -0.795318, 0.723142, 1.315103, 0.113011, -0.803484, -1.844653, 1.593148, -0.679890, 0.633723, -0.651584, 2.387120, -0.559977, 1.153716, -0.117818, -1.709053, 0.537448, 1.140011, 0.388794, -0.586205, -0.652244, 0.582954, 0.572474, -0.486873, 0.469235, -0.835635, 1.059082, 1.087970, -0.869034, 0.550068, -1.201545, 1.172184, -1.311114, -1.168822, -0.854887, -0.988639, 0.652909, -2.012884, 2.881532, 0.385573, 1.328973, -0.406575, 0.357078, 1.203155, 2.004030, 0.168714, -0.185673, -0.900449, 0.198355, -0.666205, 0.589277, 0.590101, 1.282242, -0.965786, 1.271261, -1.952521, 1.558415, -1.673966, -0.533179, 0.121260, -2.861208, 0.223961, 0.209302, -1.273812, -2.248562, -1.150613, 0.657367, 3.058783, -1.890622, 1.149055, -0.726599, 2.517329, -0.804355, -1.732042, -0.665235, -1.699141, -0.006095, -1.908328, 0.113505, -0.279544, -0.390446, -1.757928, 0.572983, 1.184147, -0.133289, 0.097485, -0.538614, 0.174600, 0.167428, 0.201676, -0.526435, -2.325884, -1.249860, 1.076213, 0.046791, 1.713099, 2.231667, 0.122428, -0.492444, 0.103533, 1.546822, -0.242880, 1.092226, -0.194675, -0.230519, -0.396828, 0.395040, -2.256280, 2.101752, -1.612372, -1.471967, 0.567622, -0.362724, -0.822732, 0.051362, 0.232761, -1.345580, -1.438230}, - { -0.310151, -1.641493, -1.683665, -1.581617, -1.556019, -0.116435, -1.287109, -0.966370, -0.089292, -0.211547, 1.763310, 0.579855, -1.045628, 0.436643, 0.261845, 0.733646, -0.396500, -0.378268, 0.603173, -0.280098, 0.924935, -4.027768, 0.153613, -1.119465, -2.695040, 0.877621, -0.015011, 0.379179, -0.697479, 2.227116, 0.843324, -2.411422, 1.100514, -0.646175, -0.407407, 0.774470, -0.059263, 0.068859, 0.807068, -1.031870, -2.000034, -0.105345, -0.559362, -0.083196, -0.427561, -0.935833, -1.558999, -0.303375, -1.066436, -0.134515, 0.720490, -0.393071, -0.245085, 1.327125, -0.220163, 1.293344, 0.650545, 0.319051, -0.240703, -0.727662, -0.031034, 0.061075, -0.110715, -1.196082, 0.593898, 0.346634, 0.876513, -0.117547, -2.411158, 0.597994, 1.512122, -0.912695, 1.315173, -0.781762, 0.978962, 0.268485, -0.372545, 0.076102, -0.866315, 0.589567, 0.888052, 1.358490, -1.514236, 0.230478, 1.034699, 0.546458, 0.358096, -2.007857, -1.543755, -0.772075, 0.052994, -0.933745, 1.866748, -0.558237, -1.004363, -1.252712, 0.315357, -0.203742, 0.345551, -0.349825, 1.221299, 0.301064, 0.390154, 0.019005, 1.667327, -0.377088, -0.297350, -0.162071, -0.491520, -0.870485, 0.703710, -0.439612, 1.075361, -0.748508, 0.315140, -2.672870, -0.294738, -0.310354, 1.946445, 0.253400, -0.375124, 1.511451, 0.686464, 0.911366, 0.194062, -0.458325, -0.196889, -1.567737, -1.187004, -0.275806, 1.240922, -0.791952, 0.950935, -0.873036, 0.328712, 0.308279, -0.582859, -0.854740, 0.950263, -0.151132, -1.356655, 1.183778, 0.756249, -0.154072, 0.190848, -0.870682, 1.205910, -0.332975, -0.005420, 0.610894, 1.967734, -0.371011, -0.502420, 0.905882, -0.475590, 0.275417, 1.430607, 1.296125, -0.067216, 1.404206, -0.383606, -0.569027, 0.193384, -0.510845, 0.203063, 0.571223, -1.494977, -0.609065, -0.087508, 0.493762, -0.042944, 0.731347, -0.927992, -1.050806, -0.152273, -0.121183, 1.115768, -0.292373, -0.725986, 0.748516, -0.569663, -0.390570, -0.300701, 1.460526, 0.147317, -0.035903, 0.984443, -0.143064, 0.380947, 0.498990, 1.140561, 0.255050, -1.428924, -0.580013, -1.232750, 0.225186, -1.279091, -1.844107, 0.519803, -0.271412, -0.793659, 1.333586, 0.676960, -0.887825, -0.287264, -0.407759, 0.565029, 0.834353, 0.070054, -0.105081, 2.022605, -1.062835, -0.273014, -0.825507, 0.485221, -0.128918, 0.569196, -0.073302, -0.614044, -0.231966, 1.473376, 1.065993, 0.120870, 0.340169, 0.551432, -1.128610, 1.066085, 1.443780, -0.081021, 0.627802, 0.627782, 0.698831, 0.410732, 0.737487, 1.662959, -0.625680, 0.769234, -0.871365, 0.155800, 0.334328, 1.124731, -1.542722, -1.143543, 0.054246, 0.932913, 0.838537, -0.614754, 1.241706, -0.848885, -1.055196, 1.483312, -1.149844, -1.305572, 0.203506, 1.807135, -0.227899, -1.209714, -0.097224, -1.331722, -0.123500, -0.204608, -1.271745, -0.573085, -0.325283, -1.784665, 1.137962, 1.286999, -0.635914, 0.011226, 1.555348, 1.911332, -0.388874, -0.789669, 0.344745, 1.082035, -0.172750, -1.410603, -1.313485, -1.390669, 0.511204, -0.260211, -0.386496, 0.206977, -0.975190, 0.584153, -0.695019, 0.594575, -0.596553, -0.136340, -0.153377, -0.994783, 0.907626, -0.642956, -2.737844, -0.656160, 1.322876, 0.403209, 0.367092, -0.727361, -0.079238, 0.616475, 0.482636, -0.492358, -0.670880, -1.324560, 1.606926, -0.481022, -0.234074, -0.603051, -1.673742, 0.896434, -2.246106, -1.000184, -0.468452, -0.965423, -0.821975, -1.904006, -0.878640, 2.397516, -0.990474, 0.514271, 0.091049, 0.446070, -0.521314, 1.093349, -1.001414, -0.954734, 0.370627, 1.362720, -0.669483, 0.300900, 1.034795, -0.198767, 1.066936, -1.675233, -0.109229, -0.685550, 1.011421, -1.617687, 0.572178, 0.140233, -0.134989, -1.772660, 0.681099, -1.634689, -1.012262, -1.148095, 0.529883, -0.407684, 1.062071, -0.113872, 1.945737, -0.575557, -0.264226, -0.020241, -0.602449, 1.246558, -1.544465, -0.512249, -1.066577, 0.093703, 1.682195, -1.705918, 0.580953, 0.196687, -0.540479, 0.122659, -1.501659, 1.405684, -0.613692, -1.392747, -0.131502, 0.691649, 0.472306, 1.002877, -1.098071, 2.402353, 1.660777, -2.961617, -0.357633, -1.701014, -0.183279, -0.408472, 0.051728, 0.533615, 0.009234, -0.010222, -1.194633, 0.321439, -0.278805, -0.181466, 0.744299, 0.351215, -1.382850, -0.161837, -1.342715, -0.574785, 0.010487, -0.449983, 0.385413, 0.600294, 1.524382, -0.397665, -0.597690, 0.940345, 1.160229, -1.168342, 0.253787, 0.030955, -0.611624, -0.120345, 1.550938, -1.101529, 0.081941, 0.441206, -1.908851, 0.581606, -0.956610, 0.397061, 0.554236, 0.633761, 0.602822, -0.515505, 0.028329, -1.087766, -1.004993, 0.332241, -0.362820, -0.880724, 1.039595, 0.694672, -0.564924, -1.217957, -0.491260, 0.291386, -0.519124, -0.206957, 0.570894, -0.550539, 0.325174, -0.116496, 1.018754, -0.119980, -0.422186, -0.911080, -1.127013, 0.557183, -0.741349, 0.417320, -1.845168, -0.476819, -0.428370, 0.908760, 0.309934, -0.175018, -2.417913, -0.181377, -0.118255, -0.828087, 0.033081, -0.891520, -0.734479, -0.881171, 0.197650, -1.576140, -0.103693, -0.046928, -0.889378, 1.213214, -2.124298, 1.053849, 2.803650, -1.182848, 2.114977, -0.897833, 0.737297, 1.267197, 1.323833, 1.463259, -0.261870, 0.221097, 1.595391, -0.131520, 0.568046, -0.790963, -0.822192, -0.835176, 1.614148, 1.067247, 1.303380, 2.334189, -1.938402, -0.778444, -1.239119, 0.720032, -1.162438, -1.092555, -0.763218, 0.525978, -1.553559, -1.526637, -0.095601, 1.053814, 0.441394, -1.123411, -0.164210, -0.486548, 1.166285, 0.288927, 0.407736, -0.051392, 1.205685, -0.443430, -2.251801, 0.139248, -1.504257, -0.583445, -1.534388, -0.230572, -0.196783, -3.209231, 0.612040, -0.200021, 0.677319, -0.774423, -1.594781, 0.500904, 1.427571, -0.002244, -1.288796, 1.020730, -1.391180, 0.816931, -0.563466, -0.890417, 0.087841, -1.058150, -0.094071, -1.714016, 0.705109, -1.059075, -0.520994, 0.684637, -0.679719, 0.969776, -1.003722, -0.196672, 0.472371, -0.340139, -0.212567, 1.521100, -0.479488, -2.244764, 1.353559, 0.211539, -0.911525, -0.291194, -1.369187, -0.255942, 0.014644, 0.206609, -0.447558, 0.179153, -0.600172, 1.487605, -0.046165, 0.633974, 0.741361, -1.266746, 0.669063, -0.465436, 0.950921, -1.228601, -0.463809, -0.464304, 0.499068, -0.201404, -0.748462, 1.770598, -0.281201, -1.431788, 0.258918, 1.616739, -0.327229, -1.762581, 0.756684, -1.270479, -0.703220, -1.431333, 0.156219, 0.233116, -0.581765, 1.769609, 0.135386, -0.524163, -1.748615, 0.760809, -0.687220, -1.236011, -1.140508, 0.511009, -0.152677, 0.681075, 0.221346, -0.565020, -0.662267, 1.448199, 0.579600, -0.859085, 0.641966, -0.329431, -0.033679, 0.855319, 1.574513, -1.373427, -0.222315, 0.279325, 0.810730, -0.596319, 1.562196, 1.070140, -0.071247, -1.385282, -0.776424, -0.929720, -0.240324, 0.572532, 0.566468, 1.043381, -0.766918, -0.433388, -0.824041, 0.105005, -0.426479, -0.476288, -1.379433, 0.328408, 1.025340, 0.545463, -0.760219, -1.181240, 0.977242, 0.409170, -0.423137, -0.059377, -2.025424, 1.280215, 1.248784, 1.458418, -0.662637, 1.229671, 0.638619, 0.098351, -0.059211, 0.464381, 0.865670, 0.388890, 3.230340, 0.875133, -0.109925, -0.147007, 0.396882, 0.413388, -0.135330, 0.067621, -0.748232, 1.022368, -0.002326, 0.176242, 0.983975, 0.444501, 1.375921, -0.176766, -1.201070, 0.002097, 2.248635, 0.647923, -0.196902, -0.902357, -0.887038, 2.005423, 1.208699, 2.898546, 1.236021, -0.581685, 0.278169, -0.581965, 0.241766, -1.703681, 0.929086, -0.256205, -0.402781, -0.078960, -1.494719, -0.304907, 0.689507, -0.104299, -0.444205, -0.519252, 1.121699, -0.574500, -0.247439, -0.355541, -0.130872, -1.393619, 0.165875, 1.164973, 0.252271, -1.702936, -1.327904, -0.471345, 0.094060, -0.379685, -0.119167, 1.536727, 0.232353, 1.401327, -0.345654, -0.551768, 0.286880, 0.977198, -1.085671, -0.335262, 1.388834, 0.309359, 1.463658, 1.031883, -0.103777, 0.957895, 1.358527, -0.307526, 1.054264, -1.478447, -0.711435, 0.451137, -2.019896, -0.811723, -0.208723, 0.734780, -1.706889, 0.079485, -0.111662, -0.434619, -2.141463, -0.024723, -0.239503, -0.872730, -0.017037, -0.112162, 0.268361, -1.524560, -0.170977, -0.917587, 0.645516, 0.984182, -0.223178, 0.524829, 0.299534, 0.217136, -0.910675, 0.668189, -0.803499, -0.349058, -0.367616, -2.212027, -1.494074, 0.202834, 1.204517, 0.505635, 0.453109, 0.371346, 1.300557, -0.529976, 0.190081, 0.938478, -1.940067, -1.391734, -1.617529, 0.928458, 0.054658, 0.335628, 0.001279, -0.244629, -0.038825, 0.448149, 0.269513, -2.270245, 0.082001, -0.426183, 1.473616, 1.191829, -0.364693, 0.973891, -0.233262, -0.507476, 0.299866, -0.863028, -0.660551, -0.239455, -1.072409, -1.834458, -0.497106, -0.513471, -0.566059, -0.792595, -0.508657, -1.449835, 0.116803, -0.717022, 0.890431, 0.889788, -0.350094, 0.986653, 0.015442, -0.956295, 0.226685, -0.740512, 0.413079, 0.860112, 1.236905, -0.630845, -0.931731, -0.147487, -1.422998, 0.402559, 0.579921, 1.271513, -0.963529, -1.024402, -1.439640, -0.393807, 0.467550, 0.797238, 0.108384, -0.390986, -0.262875, 0.654479, 0.856139, 0.232487, 0.767878, 0.924483, -0.531363, -0.740987, 1.066798, -0.561043, 0.740392, -0.566895, -0.363379, 0.247682, 0.644484, -0.344641, -0.804242, 2.148025, 0.217033, -0.153000, 0.950998, 0.551147, -0.610186, -0.177180, 0.909568, -0.343768, -0.670508, 0.718671, 0.490303, 0.170217, -1.490391, 0.593561, 0.436733, 0.499217, -0.836626, -1.197528, -0.588773, -0.597544, -1.802702, -0.029295, 1.081923, 1.588356, -1.588753, 0.240571, -0.445431, -0.046116, 0.271433, -0.131587, 0.806012, -1.463762, -1.134691, -1.386343, 0.810560, 1.020875, 0.007190, -1.056850, -1.568949, -0.059256, -2.179584, -0.483692, -0.217182, 0.328203, -0.684399, -1.970007, -0.324724, 1.307183, -0.140845, 0.203176, -0.111262, -0.023455, -0.020441, 0.917440, -2.455155, -0.914688, 0.817847, 0.435525, 0.174985, 0.438944, 0.485137, -0.186118, 0.160377, 0.081294, 0.406003, -1.665644, 0.999643, 0.631962, 0.812076, 0.630455, -0.253524, 0.227897, -0.598656, -2.095248, -0.657193, 1.101583, 1.349289, -1.815911, -1.092206, -1.926853, -1.295744, -0.099835, 0.048909, -0.184993, -1.185609, -0.301085, 0.379236, -0.124415, 0.555805, -0.304434, 0.109467, -0.333628, -0.686461, 0.869904, -0.703766, -0.489518, -0.139309, 0.016252, 1.215338, 1.332435, -0.714926, -0.623521, 2.100325, 0.958336, 0.597919, 0.285964, -0.302350, 1.134882, 1.264198, 0.058059, -2.245315, -0.982188, 1.426329, -0.930261, 0.427298, 1.099799, 1.612976, -0.998279, -0.119997, 1.255413, -0.428746, -1.137348, -0.043879, 0.215420, 1.824946, 0.303328, 2.110681, 0.408459, 0.002890, 0.439512, 0.879812, -0.590043, 0.799313, -2.001028, -0.679687, 0.110229, 0.030804, -0.598085, 0.963913, -0.205722, -0.528403, 2.269712, -0.631607, 0.389748, -0.046796, 0.974459, 0.153934, -0.382556, 0.152428, -0.859834, -2.198076, 0.212276, -0.108004, 0.895122, -0.748592, -1.785119, -1.272737, 1.385509, -1.542201, -0.282588, 1.646902, 0.394683, -0.345625, 1.255681, -1.489733, 1.278147, 1.789601, -0.116686, 0.276218, -0.576014, 0.480398, 0.564563, 0.090023, 0.342563, -0.659904, 0.646081, -1.617043, -0.127928, -0.179244, -1.258273, -0.339893, 1.884799, -0.314919, -0.647343, -0.675543, -1.846914, -0.205921, -1.041431, -1.602912, -1.013722, 0.202905, -0.427558, 0.480325, -0.265356, 0.691178, -0.841844, 0.595422, 0.257490, -0.211061, 0.443674, 2.164342, -0.964128, -0.610492, -0.394115, -1.044007, -0.702231, 0.163212, -1.083503, -1.427791, -0.544006, 1.351743, 0.023961, -0.858073, 0.405021, 0.203585, 0.399556, 1.308953, 0.370530, 0.778679, -2.003744, -0.490781, -1.137240, -1.093967, -2.007708, 1.014723, -0.303606, -0.950006, 0.086146, -0.619831, 0.055449, -0.339410, 1.257595, 0.448026, 1.419038, 0.202594, 0.487320, 0.948779, 1.788145, 0.305789, -0.121315, -0.575190, -2.008777, 2.231899, 1.415720, -0.520328, 0.408420, -0.876427, -0.047159, -0.251633, -2.315549, 0.443662, 0.022653, -0.051200, -1.455249, -0.305578, 0.704665, 0.218667, 0.036960, 0.606606, 2.255737, -1.572563, -0.415935, 1.001221, 0.188568, -0.723376, 0.173396, -0.801289, -0.139955, 0.606574, 0.606333, -0.918415, 0.084749, -0.771950, 0.878474, -0.113157, -0.679438, 1.498421, -1.075501, 1.023144, -1.234719, 0.980799, 0.164045, 0.414859, 0.551970, 0.128727, 0.115802, -1.212982, 0.473085, 1.188062, -0.302362, 1.039614, -0.717064, 2.174548, -0.139021, -0.889077, 0.364911, -1.019333, -2.179367, -0.236315, -0.606734, -0.880041, -0.038874, 0.246082, -0.049309, -0.309367, 0.353062, -0.950315, 0.832331, -0.796088, -1.044570, 0.893077, 0.854818, 0.134419, -0.399943, -0.396154, 1.005236, -0.042738, 0.848694, -0.055694, 0.132425, -0.350843, 0.821841, 0.610316, -0.282661, -0.292886, 1.793833, -0.577801, -1.402546, 0.994330, -0.449941, 1.533199, 2.157122, -0.170263, 1.691110, 0.809207, 0.837475, 0.404157, 1.172644, -0.856839, -1.302981, 0.553534, 0.435473, 0.555584, 0.251128, 0.363303, 0.183690, 2.546469, -1.365064, -0.993427, 0.446809, -0.209524, 0.027349, -0.677232, 1.718123, 0.093526, 1.223074, 0.003940, 1.341304, 0.256256, 0.453635, -0.477263, -0.257878, -1.252648, 0.124172, -0.648575, -2.087541, -1.018370, -0.079769, -1.798382, -0.206057, -0.289375, -0.256719, -0.677412, 0.144033, -0.336674, 0.246354, 0.450361, -0.417430, -0.420206, -0.502874, -0.308524, 0.887787, -1.253018, 0.705646, 2.798658, 0.810133, 0.615424, -0.945940, -0.108846, 0.602770, -0.242829, 0.494183, -0.723774, 2.298913, -2.140609, 0.167969, 1.731453, 0.798705, 0.833450, -1.081802, 0.896913, -0.553075, 1.281635, -0.463550, 0.603082, 1.334096, -1.198750, -0.549820, 0.260556, -0.860542, -0.797400, -0.277765, -1.915504, 0.825628, 0.337622, -0.351585, 2.237904, -0.241973, 0.053173, 1.222113, 1.083499, -0.415134, -0.947996, -0.465939, -1.502165, -0.053548, 1.496980, -0.656529, -0.149603, 0.605857, -1.023077, -0.573270, -1.280582, -0.557406, -0.146291, -0.038841, -0.216691, -1.577769, -0.196704, -0.904112, 0.584148, 0.649687, 1.968806, 0.288819, -0.525708, -2.805209, 0.901529, -0.523971, -0.051543, -0.480624, 0.665921, -0.524600, 0.417170, 1.019296, 1.705064, 0.449199, 1.202385, 0.200063, 0.587563, 0.707577, -0.194253, 0.411877, 0.459522, -0.976448, -0.492446, -0.119110, 0.999352, -1.018420, 1.033762, -1.123915, 0.072348, -1.551234, 0.032980, 0.013613, 0.279831, 0.575874, -0.552735, 0.992108, -0.338639, 1.669724, -0.205140, -1.432228, -0.213240, -0.203441, 1.256557, 0.381836, 1.317111, -1.252723, 0.605235, -2.336290, 0.450344, 2.135969, 1.632366, -0.703203, -0.103031, -1.083230, 0.324939, 1.380566, 1.518380, -1.286865, -0.396283, -0.686912, 0.043801, -0.171330, -2.167181, 0.106603, -0.073512, -0.709928, 0.496409, -1.606301, -0.082459, -0.522890, -0.258991, -1.465826, 0.285836, -1.252133, 1.644876, 0.458423, -1.120672, 0.495272, 0.860859, -0.862916, 0.493858, 0.231052, 0.333055, 1.078423, -0.430531, -0.426262, 0.739665, -0.051367, -1.536554, -2.138158, 1.224571, -0.416434, 1.642096, -0.306261, 0.854513, 1.630692, 1.299029, 0.785019, -0.128641, 0.878071, -0.430557, -0.661864, -0.463054, 1.450376, -0.778230, -1.100004, -0.691200, 0.060367, 0.433526, -0.314556, -0.895461, 0.902982, 0.694510, 1.841522, -1.441770, 2.002311, -0.209057, -2.192071, -0.295782, -1.235335, -0.570194, -0.187680, -0.538743, -0.314282, -0.969063, -1.213279, -0.702292, -0.595821, 1.987409, 1.436946, -0.236897, -0.621210, -1.929375, 2.243590, -0.180490, 0.905122, -0.272006, 0.724476, 0.881353, -0.497596, -1.092774, 2.150041, -0.723889, 0.332220, -0.146065, 0.921359, -0.250293, -2.020249, 1.197382, 0.100955, -0.347675, -0.356890, 0.779672, 0.722382, -0.478699, -0.109197, -0.533204, -0.881675, 0.214805, 0.433422, 1.055058, -0.148328, 0.662964, -0.307062, 0.303768, 0.113056, -0.678854, 0.960057, -0.684778, -0.601479, 0.642987, -1.016820, 0.919149, 0.027752, 0.040127, -0.400100, -1.700941, 0.327812, -0.960601, 0.066818, -0.868953, -1.226377, 0.813049, -0.125870, 2.407048, 1.660116, 0.307024, -2.974072, 0.016078, -0.598350, 1.093386, -0.557983, -0.474581, -0.268793, -0.941962, -0.546879, 0.344974, -0.937501, 1.950975, -0.916045, 1.245198, 1.504125, -0.189757, 0.745054, 0.063587, -0.765522, -0.779060, -0.765481, 0.371388, -0.232414, 0.734661, 0.484605, 0.923389, 0.946756, 0.767741, -1.552785, 0.247190, -0.942871, -1.426758, 0.105174, 0.583194, 0.342345, -1.668015, 1.322648, -0.543859, -0.592447, 0.177456, -0.965898, -0.375638, 0.884468, 0.064959, 2.742650, 1.124398, -1.718729, -1.031690, 1.620995, 0.535332, -1.034079, -0.745892, -1.957268, 0.361841, 0.504717, -0.255257, -0.819853, 0.548913, -0.088541, -0.107280, 1.124136, -0.366217, 0.764901, -0.439781, -1.687703, -0.359027, 0.056989, -0.652481, -2.371082, -2.023236, -1.138334, 1.095922, -1.061795, -0.077270, 1.112138, -1.757375, 1.879672, 1.005198, -0.003898, -0.302811, -0.362128, -2.424897, -0.204675, 0.369157, 2.291474, 0.279842, -2.648222, 0.281477, -0.292614, -0.609326, -1.584215, -0.577252, -1.414526, 0.234824, -2.030697, -0.261067, -0.611428, 0.965207, -0.134344, 0.678341, 0.343700, 0.483760, 2.277985, 0.248091, 0.068842, 0.847192, -0.021343, 0.010816, -1.063793, -0.157371, 0.213674, -0.644417, -0.411241, 0.025639, 0.384020, -0.868608, -0.505267, -0.448896, 1.591835, 0.448985, 0.122964, 1.176225, 0.308975, -0.051793, -2.101740, -0.041024, -0.466685, -1.528628, -0.939093, -2.123558, -0.087205, 0.301431, 0.302289, 0.648901, -0.455770, 1.454976, -0.026293, -0.110300, -1.185548, 0.162560, 0.340710, 1.294543, -0.749508, 1.169249, 0.424025, 0.271612, -0.059737, -0.589331, -0.020771, 0.730268, -0.882745, -0.287966, 0.154120, 1.157551, 0.922601, 0.579842, 0.089463, 1.590788, -1.666092, 0.727716, 0.414143, -1.515764, -0.551236, -1.228522, -0.151851, -1.213655, -0.435873, 0.242595, 0.088702, -0.689951, -1.055395, 1.238220, 0.127997, 0.965761, -0.283036, 0.147813, 1.754206, 0.405498, -1.992561, 1.762365, -1.084132, -1.073596, -1.878363, -0.839287, -1.099495, 2.436202, -1.300402, -0.064908, 0.098924, -0.151576, -0.415735, -0.261413, -0.575746, 0.343917, -0.979946, 1.461867, 0.279795, -0.053731, -0.700137, 1.116902, 0.445720, 0.519343, 1.301252, -0.824556, 0.290675, 0.471464, -1.664197, -0.587274, 1.773432, 0.076869, -0.478612, -0.997378, -0.608230, -1.146604, 0.612330, 0.587869, -0.467863, -0.830914, -0.434591, 0.823486, -0.307968, 0.803833, 0.356400, 0.119798, 0.994389, 1.646933, -0.319657, -1.143077, 0.238084, 0.073254, 0.290750, -0.496784, 0.127839, -1.134333, -0.475590, 0.342793, 0.561700, 1.083739, -0.621562, 2.007190, -0.749681, 0.306245, 1.410570, -1.027610, -0.607160, 0.526426, -1.053345, -0.662391, 0.999669, -0.267399, -2.100553, -0.107248, 0.428875, 2.392276, -1.260995, 0.838607, -1.438173, -1.543364, -0.173887, 1.161157, -1.656016, 0.768624, -0.503136, 0.242731, -0.797137, 1.457012, 1.194033, -0.219754, 0.787140, -1.074659, 1.075281, 1.488120, -1.631383, -0.880727, 0.903084, 1.710677, -1.608465, -2.258219, -0.760839, -1.488068, -1.009893, 0.316453, 0.247425, -0.436649, 0.594081, 1.520355, 0.365858, 0.479449, 0.396479, -0.317011, -1.829359, -0.861024, 0.389624, -2.236999, -0.998257, -0.436500, -0.646010, 0.255605, -0.108665, -2.391119, -0.715518, -0.306217, -0.129100, -0.773214, 0.124885, 0.053684, -1.027598, -0.439747, 0.971525, -0.586588, -0.654349, -0.224725, 0.881898, -0.926858, 0.036545, 0.577139, 0.646965, -0.760576, 1.764605, 1.315793, -1.383656, -1.295657, 0.567028, 1.313968, 2.156826, 0.622794, -0.577323, 0.966672, -0.162567, -0.166342, 1.071267, 1.346142, 0.631020, -0.446261, -1.328898, 0.313343, -0.147901, -0.841389, 0.222595, -1.015563, -0.361185, -0.544159, -0.780957, -0.306144, 1.295227, -0.198116, 0.595291, 2.193578, 1.139577, -0.948389, 0.779828, -0.104870, 1.307266, -1.220165, 1.471168, 0.529367, 0.376907, 0.104109, -0.652195, 0.989544, -0.643177, -0.699260, 0.071478, -1.316203, -0.715383, 0.034564, -0.225686, -0.417212, -0.932655, -1.355596, -0.543498, 0.549977, 0.665187, -1.051346, -0.024952, -1.021750, 0.908657, 0.396883, -0.666521, -0.919344, -0.933225, -1.349254, 1.280828, 0.300822, 1.487108, 0.073654, 0.798379, 1.840953, 0.096050, 0.251136, 0.426554, 0.075867, 0.818025, -0.702888, -1.547570, -0.297522, -1.040091, -0.622535, -0.548506, -1.736907, 0.281682, 1.684424, 0.412191, 0.257385, -0.985927, 1.380737, -0.621087, 1.157389, -0.921362, -0.752636, -0.214531, 1.910784, -1.778952, 0.945402, -0.432019, 0.984830, -0.943382, 1.006706, 1.012294, 0.261448, -0.510279, 0.201624, -1.683555, 0.890802, -0.211688, 1.077732, -0.639263, -1.678163, 1.711292, -0.100516, 1.304589, 0.604852, -0.365599, -0.010730, -0.952301, 0.107426, -0.070798, -1.157372, 1.055539, -0.391167, 0.345501, -0.060577, -0.913950, -1.936471, -1.686686, -1.226831, -0.343731, 0.042320, -0.698214, -0.471303, -0.060837, -0.004004, -0.807956, -0.639474, -1.626745, -0.777022, -0.167135, -0.716723, 0.211603, 0.701444, -0.079420, 0.765703, 0.172018, 0.487554, 2.338663, 0.204641, -0.628556, -0.908164, -1.524089, 0.895699, -3.181342, 1.838353, 0.941070, -0.181201, -0.077085, -0.037133, -0.745765, -0.341597, 0.358737, -0.607055, -0.960976, 0.341276, -1.718026, 0.507012, -0.185008, 0.496628, -0.115866, 0.254557, 0.858412, 0.452447, 0.068163, -0.948059, -0.867992, -0.294745, -0.171641, 1.307509, -0.536352, 1.572355, -1.285495, -1.583022, 0.609885, -0.545417, -0.567351, 0.017278, -0.472687, -0.539322, -0.738005, -0.040125, 0.238187, 0.225476, 0.195657, -1.121244, 0.524517, 0.867339, -1.223749, 1.100164, 0.192512, -0.424814, 0.213192, -0.726144, 0.057377, -2.277452, 1.454617, -0.431642, 0.968204, 0.286864, -0.864763, -1.835117, 1.137366, 0.855414, -0.805245, -0.415130, -1.920147, 0.101846, 0.071377, -0.995996, 0.113731, 1.397568, -0.154424, -0.559770, 0.017713, 1.083274, -0.217913, -1.286497, -2.510026, 0.198235, 0.440841, -0.588075, 0.286140, -0.129562, -0.532723, -1.131228, -1.967916, -0.562502, -0.595027, 0.692927, 1.506119, 0.927660, -1.429361, -0.352394, 0.063303, 1.241069, 0.821308, 0.580679, 0.342259, 2.192977, -0.061027, -1.330248, 0.371904, -0.709655, 0.258159, 0.435750, 0.059419, -1.496021, -1.258572, -0.884779, -1.229493, 1.417518, 0.922647, -1.193793, -0.556581, -2.006065, -0.915661, -0.080225, -1.148947, -0.587301, -0.902605, 0.946050, 0.233480, -0.090540, 0.440161, 2.058893, 0.516855, 0.627407, 0.361430, 0.745026, -0.914920, 1.360206, 0.516031, -1.467430, 1.161816, 1.197780, -2.351098, -0.139326, 1.524526, 0.923400, 0.489121, -0.993048, -1.734001, 0.945297, 1.220334, 0.331749, 1.684402, -0.353123, 0.175850, 0.168414, -0.172173, -0.998616, -0.875388, -1.447039, -0.846360, -1.000666, 0.415238, 0.615538, -0.618100, 1.020172, 0.565845, -0.592145, -1.146130, -1.457018, 1.207882, 1.496605, -0.849828, 0.508080, 0.003622, 0.328261, -0.701423, -2.800366, -0.183583, 0.355335, 0.481280, 0.507019, -0.085662, -0.721476, 0.699493, -0.177184, 0.195426, 1.372931, 0.829205, -1.648045, -0.080820, 0.233745, 1.047875, 1.427457, -0.909939, 0.744946, 0.475579, 0.333252, -0.263291, 1.990240, -1.365667, 0.917134, 0.441225, 0.673682, -0.916110, 0.405118, -0.474774, 1.917762, -0.697735, -0.036623, -0.980998, 0.263049, 1.467996, -0.034055, 0.349727, 0.678725, 0.158301, 0.803709, -0.507814, -0.038403, 0.307919, 0.857095, -0.097496, 0.924752, 0.025445, -1.237824, -0.214348, -0.027085, -1.736331, -1.239600, 0.248293, 0.509233, -0.386509, -1.181276, -0.152069, 1.553040, 0.696582, 0.525683, 1.597154, 1.901917, 0.805370, -0.698043, 0.649477, 0.602392, -0.016678, 1.092806, -1.774571, -1.435562, 1.890936, 0.086065, -0.924814, -0.591353, -1.121881, 0.197200, 0.238419, 0.279097, -0.100666, 0.264216, -1.421075, -0.454308, -1.724634, 0.282924, 1.083129, -0.838754, 0.225976, 1.307797, 1.058809, -0.031642, 0.645758, 0.317284, 0.724163, -0.198597, -0.906990, 0.213882, -1.088142, 1.040360, 0.821178, -1.045283, 2.308885, -2.524420, 1.119177, 0.076171, 1.262248, -0.446808, -1.195896, 0.075890, -0.900165, -1.757358, -0.718774, 2.174259, -1.032000, 0.096615, 0.157903, 0.791328, 1.081137, -0.885764, -1.850947, -1.183055, -1.507301, 0.712992, 1.732668, 0.901277, 0.016435, -0.280354, 0.840882, -0.210382, 0.142032, -1.124885, 0.127261, 0.672604, -0.363000, -2.047144, -0.855219, 2.181710, 1.751058, 0.153848, 0.438194, 0.697085, 0.420518, 0.038862, -0.221947, 0.122238, 1.160154, -2.507385, 0.933318, 0.083480, -0.243918, -0.462833, -1.409920, 0.273440, -1.463539, -0.835774, 0.111227, 0.909224, 0.835322, 2.172103, -0.918187, -1.175444, 1.129680, 1.078784, -0.153537, -1.893563, -0.960224, 0.538696, -0.871992, -0.067772, 0.758162, -0.883632, -0.842116, -1.591063, 0.083256, -0.171992, -0.981999, -1.731926, -0.688443, 0.998944, 0.501271, 0.958474, -0.555670, -1.501655, -0.075017, -0.461104, 0.255650, 0.704346, -1.337912, -0.823977, -0.244628, -0.687529, -0.098329, 0.074311, -0.598204, -0.076985, -0.120871, -0.990464, 0.770631, 0.611492, 0.268503, 1.004112, -0.033537, -0.533634, -0.190868, 0.246541, 0.721708, -0.159107, 0.971243, -0.508424, 0.050478, -0.373519, -0.608556, -0.462618, 0.352636, 0.034063, -1.038757, 0.112267, 0.508388, -0.985115, -0.906600, 0.477189, 0.114287, -0.497110, 1.734062, -0.070026, 1.023882, -0.248691, 0.300448, -1.759610, 1.276085, 0.857557, -0.072614, 1.019292, 0.237518, -0.888582, 0.097059, -1.039182, 0.076510, -0.590849, -2.305364, 1.030212, 0.864798, -0.430117, -0.408832, -0.242595, -1.267063, 0.795501, -1.928859, 0.376409, 1.295978, -1.117510, 0.280895, -0.876879, 0.091945, -1.255657, 3.164684, -0.845828, -1.349402, 0.988130, -1.029804, -0.195219, 0.075179, -0.632267, 0.017759, -1.341069, 0.822836, -0.283893, -0.406789, -1.505872, 0.927258, -0.622945, -1.971337, 0.077713, -0.038158, 1.411234, -0.694144, 2.075378, -1.479411, -0.003131, 0.868766, 1.517291, 0.307990, 0.541939, 0.453360, -0.144542, -1.692116, 1.079328, -1.769774, -0.618976, 0.555567, -0.791216, -0.428293, -0.256351, 0.653905, 0.386770, 0.817421, -0.549590, 1.713343, 0.201976, -0.434063, 0.225663, -0.269358, 1.769395, 0.956612, 0.420838, -0.443193, -0.257455, -0.426874, 0.050375, -0.423207, 1.757968, 0.799518, -0.000807, -0.056956, 0.896834, 0.719281, 0.561073, -0.191542, 0.415154, -1.456944, 2.303187, 0.217195, -0.493105, -0.334977, 0.566781, 0.521812, -1.376313, 0.278076, 0.030406, 0.015732, -0.661941, 0.298692, -0.880820, 0.914317, -0.399431, 0.626608, 0.038130, 0.152455, 0.445241, -0.365663, 0.076561, 0.717730, 0.161654, -1.670412, 1.087152, -0.023482, 0.950588, -0.775232, -0.612186, -1.959710, 0.313728, 1.046517, -0.985566, -0.193551, -1.296268, 0.925013, 1.223331, -0.776702, 0.575320, -0.083190, 0.072640, 0.769301, -0.923038, -1.320054, 0.082854, -1.710474, -0.372311, -1.412019, 1.723844, 1.000924, -0.467507, -0.484589, 0.036566, 0.313383, 1.179591, 0.020684, -1.160053, 1.247307, -0.807505, 0.020688, 1.742298, 2.024711, 1.184497, -0.008964, 0.609727, 0.490184, -0.202058, 0.258400, 1.085185, 0.833418, -2.779565, 0.555570, -2.094595, -0.186561, 1.142307, -0.918973, -0.149209, 2.213779, -0.920077, -0.025114, -0.520302, -0.393919, -1.789394, 0.880283, 0.356621, -0.221776, 0.586213, 0.904796, 0.838269, -0.760575, 0.743000, -0.919198, -0.184044, 0.415012, -0.271382, -0.646863, -1.523698, 1.051963, -1.069894, -1.012604, -0.236637, 0.915695, 0.138098, -0.053403, 0.523349, -1.830911, -0.696539, -0.001436, -0.920409, 1.509446, 0.024678, 0.310692, -0.042820, -1.470886, -0.340588, 0.680679, 1.090556, -0.748067, 0.626648, -1.431427, -1.539084, -0.003610, -0.619504, 1.573656, -0.173368, -0.424501, -1.383728, -0.566086, 0.335188, -1.185907, 0.049138, -0.005151, 0.837219, 0.624121, 0.006286, 0.429383, 0.712850, 0.089235, 0.698854, 0.525458, 0.760112, 0.688253, 0.205123, 0.837281, -0.446258, -1.340193, 0.380758, 0.035583, -0.819312, -1.087095, 0.556273, 0.011733, 0.139557, -0.317590, -0.611950, -0.571309, -0.264010, 0.440053, 0.727609, -0.344671, 0.909651, -0.884586, -0.578869, -0.234492, 1.454889, 1.430487, 1.378302, 1.598956, -1.083427, -0.310009, -0.155737, 0.374251, -1.429693, 0.430718, 0.081822, 0.190631, -1.557784, 2.139986, 0.704301, -0.080527, -0.488847, -0.180615, -0.825121, 0.797745, 0.070422, -1.379337, 0.770112, -0.201300, 1.257681, -1.559767, 0.954702, 0.262251, -0.390231, -0.453681, -0.534720, -1.245797, -0.808851, -1.323062, 1.197518, -0.367002, -0.404558, -1.260693, 0.498798, -2.126786, 0.699288, 0.844992, -1.062545, 0.554952, 1.029685, 1.534529, -1.016991, 0.796071, 0.322459, -1.053258, 0.172888, 1.664207, -1.116758, 0.820305, 0.537864, -0.358862, -0.167093, 0.234392, -1.219927, 0.799502, 0.155219, -1.551043, -0.470551, 0.215138, 0.726536, 0.755432, 1.197583, 0.000180, 0.270339, 0.559760, 0.091093, -0.958068, 0.497680, 1.529384, -0.919723, -1.789068, 0.821277, 1.786879, 0.830937, 0.365744, -1.024045, 0.396144, 1.451209, -0.177993, 1.148332, -0.754967, -1.498588, 0.878133, 0.255672, -0.929071, -0.174194, -0.241098, 0.216625, -1.421072, 0.258611, -0.006258, 0.001316, -1.967351, -0.911126, 1.642749, -0.194109, 0.446810, -0.511681, -0.366206, -0.894649, -2.520897, -1.271178, -0.061469, 0.525111, -1.054646, -0.477613, -0.037780, 0.264983, -0.670012, 0.193640, 2.239022, 0.782237, 0.093453, 1.217922, -1.125239, 0.186524, -1.217536, 0.387808, 0.651438, 0.228257, 0.493827, -0.857188, -0.422560, -1.046046, 1.994965, 0.955670, 0.277036, -1.562797, 0.263950, 0.649883, -0.358410, 0.036053, -0.464641, -1.852338, -0.067981, -0.286028, -1.326705, 1.640515, -0.624299, -0.191637, -2.227155, 0.815211, -0.207173, -1.084288, 0.814027, 0.043674, -0.340180, -0.587977, -1.414120, 0.365860, 2.202248, -1.857453, 0.345494, -1.445607, 0.042674, 0.928611, -0.789138, -0.041123, -0.806838, 0.408333, 0.711270, -1.676877, 1.006731, -0.741377, 1.658223, 0.589143, -1.066477, 0.018940, -0.587039, -0.708912, 0.363412, -0.062402, -0.180554, 0.908121, -0.222007, 0.698433, -1.838004, 2.588210, -0.701208, -3.094547, 0.113705, 0.340981, 0.351077, -1.757313, 0.042251, -0.747120, -0.598821, -0.767167, -0.981324, -0.265951, -1.473342, -0.744741, 1.115091, 1.427784, 1.449736, -0.561037, 0.856597, -1.670493, 0.383029, -0.470917, 0.260866, 0.738071, 1.077008, -0.441587, -0.558199, -0.738047, 0.844971, 0.085258, 0.286147, 0.000820, -0.986124, 0.186742, -0.669454, -0.438728, 0.791371, 0.523009, 0.797874, -0.641454, -0.438565, 2.624934, -0.907067, 0.218986, 0.752567, 0.201835, -0.356921, -1.209756, -2.072974, -0.269782, -0.906181, -0.723429, -0.913182, 1.081401, 0.366046, -0.514189, 0.866532, -0.002830, -0.438531, 0.114696, 0.534298, -0.514706, 0.073194, 1.388721, -0.035413, 0.719548, 0.579709, 1.387984, -2.423218, -1.576603, -0.732477, 2.100616, 0.570651, 0.738533, -0.543864, -1.255042, -0.655080, 1.399053, 1.169010, -0.504083, 1.312875, 0.408026, -0.409128, 1.085221, 0.851448, -1.116794, 0.983143, -0.560507, -0.303669, 1.019848, 0.018468, -0.780123, -0.954622, -0.399165, -0.048510, 0.355284, 1.066423, -0.664636, -0.814613, -0.955034, -0.086364, 0.584881, -0.723788, -1.248137, 0.296047, -1.910484, -0.965900, 1.701747, 1.668487, -0.118189, 0.422676, -0.846454, -1.045484, 0.343870, -0.447060, 0.292989, -3.203964, -0.327839, -0.434155, 0.874992, 1.161777, -1.142981, -0.792215, 0.152357, -1.935103, -0.573060, -0.429037, -0.155364, -0.638707, -0.349531, 0.166698, -2.132177, 1.008922, 0.327766, -0.561583, -1.204961, -0.112316, -0.738355, -1.066753, 1.036466, 0.970635, -0.270422, -1.670643, 1.391918, 0.317374, 0.375373, -0.015045, 1.008280, 0.670953, -1.171077, -0.595101, -1.363801, 0.356327, 0.073796, 0.544178, -0.537264, 0.712877, -0.976084, 0.080749, 0.174769, -1.004800, -0.152914, -0.740234, 0.239566, 0.462955, -0.133066, 0.491680, 0.348344, 0.686421, -0.072592, -2.053041, 0.307036, -0.035607, -0.246717, 0.801397, 1.787263, 0.131559, 0.658268, -0.457083, 2.907004, 1.559669, -1.232428, 1.958302, -1.127388, -0.366609, 1.465390, -0.153982, 1.393130, 0.120811, -0.454076, -0.333829, 0.216967, 0.459765, 1.119988, 0.727001, 0.473132, 1.994609, -0.910677, -1.239176, 0.857230, -0.747760, -1.601133, 1.279362, 0.014875, -0.179844, -2.320856, 0.956510, -0.352767, -0.206347, -0.872153, 1.218439, -0.017155, 0.025791, -1.473008, 2.048477, 1.054912, -1.111531, -1.165017, -1.164368, 0.932443, -0.044897, 1.022811, -1.594181, 0.989384, 0.501250, -0.589144, -1.352458, -0.268539, 0.049744, 1.325826, -0.062814, 0.336177, 0.055328, 1.848644, -0.833365, 1.594352, 0.027282, 0.289210, 0.047497, 2.022735, 0.717957, 1.995398, -0.195936, 0.707879, 0.633227, 0.706728, -0.231926, 0.156454, -1.090426, 1.174006, 0.361361, 1.231607, 0.316276, -1.048609, 1.149534, -1.185685, -1.035447, 0.027341, -0.932903, -1.118645, 0.230071, -1.587508, 0.320556, 0.262587, -0.539882, 1.216443, 0.208325, 0.845333, 1.121565, 0.192880, -3.140594, -0.418211, 0.417657, 0.604396, -1.241822, -0.710761, -0.536584, 0.075336, -0.186761, 0.511881, -0.177559, -0.480942, 0.169375, -0.371069, -0.627916, -0.362166}, - { 0.143918, 1.209518, 1.415510, -0.205715, -0.936060, -1.237411, -0.550202, 0.353154, -1.200365, 1.122263, 0.051693, -0.242302, -0.423628, 0.457544, -1.246581, 0.056824, -0.501337, -1.175486, -1.992990, 1.536908, -1.326588, 0.369966, 0.888753, -0.370986, -2.471787, 1.719236, 0.214642, 1.686835, -0.614896, -0.971546, 0.843978, -1.383184, 1.441207, 0.613419, -1.833871, 1.638187, -0.534332, -1.698133, -0.572502, -0.189408, -1.674664, 0.625750, 0.734396, -0.836157, 1.706086, 0.513340, -0.701658, -1.403919, 0.266223, -0.062718, 1.810517, 0.228098, 1.830545, -1.476762, 1.306687, 1.103031, 0.535736, -0.657251, 1.088705, -0.459884, -1.079125, 0.280869, -0.242346, -0.240299, 0.698342, 0.648797, -1.159735, -0.234159, 0.979236, 0.506642, 1.702918, 0.677144, 0.560954, 1.171368, -0.347971, -0.902574, 1.580047, 1.084753, -0.054096, 0.806028, -0.511310, -0.799868, -1.636023, 1.932105, 0.223907, -0.891992, 0.042282, -0.392356, -0.768495, 0.126914, -1.136937, 0.882718, 2.173886, -1.358792, 0.968487, -0.341842, -0.539973, 1.378629, 0.365335, 0.271343, -0.068264, 1.730835, 0.478729, -0.465711, -0.027898, -0.203940, -0.003608, 0.280007, -0.189025, 0.476227, 0.834066, 0.038117, -0.070393, -1.541939, -1.693667, 0.973008, 0.464555, -0.318185, -0.404033, -0.063626, -2.232232, 0.114086, 0.356333, 1.004483, -1.832418, 0.465320, 1.570264, -0.366883, -0.463609, -0.788944, 0.015914, -2.478295, 0.570409, 1.439167, 1.545094, -0.722282, -0.104137, 1.477334, 0.776044, -0.401765, 1.417226, -0.054772, -2.109218, 0.498766, -0.746104, -0.754237, 0.523962, -0.534865, -0.711868, 1.287099, -2.812712, -0.388172, -0.958290, -0.049340, 0.039339, 0.069759, 0.270166, 0.481200, -0.216221, -1.089272, 2.103500, -0.105479, 1.080820, -0.010104, 0.752620, 0.629320, 1.407724, 2.823805, -0.083349, 0.390308, 2.006799, 1.829215, -0.620298, -0.285180, -0.496323, -2.107688, -0.781278, 0.420345, 0.128184, -0.248174, 0.246796, -0.489934, 0.502627, -0.047097, -0.467564, -1.481424, 1.808712, 0.401177, 1.625860, 1.393245, -1.362942, 1.661454, 1.332333, -0.696751, -0.196716, 0.096774, 0.024129, -0.138905, -0.645495, 0.497227, 0.259457, 1.249452, -0.478036, 0.997549, 0.261659, 0.195590, 0.570529, 1.352992, 0.418749, -2.513577, -0.062813, 1.950935, -0.285982, 1.124080, -0.297805, -0.366265, 0.617152, -0.680090, -0.791329, 0.353119, 1.280112, -0.272498, 0.772698, 0.545199, -0.262263, -0.511896, 0.043836, 0.760013, 1.099155, -0.894746, -0.402218, -0.303505, -1.390923, 0.582289, -0.262984, -0.352570, 0.206513, -0.715337, -0.119958, 0.734848, 0.252623, -0.907771, -0.270547, -1.466006, -1.062064, -0.000257, -1.590410, 0.534492, 0.354389, -1.255308, 0.141845, 0.411606, 0.042744, 0.438899, 0.432145, -0.393618, 1.632343, -0.119138, -0.462697, -1.693901, 0.214942, 0.013048, 0.677745, -0.059431, 2.389953, -0.518742, -0.332149, 0.905615, -0.032889, -0.809388, 0.362643, 2.089731, 0.518698, -0.933710, 0.980651, 1.069113, -0.621232, 0.762645, 0.861475, 0.193316, 2.363846, -0.181789, 2.246472, 0.036937, 0.715949, 0.216091, 0.303439, 0.542813, 1.152276, -0.204929, 0.151618, -1.560658, -0.853676, 0.442658, -0.333495, 0.329665, 0.134486, -1.939936, 1.357361, 0.603543, -0.221472, 2.120132, 0.164142, -0.095962, 0.993437, 0.693298, -0.962013, -0.654571, 2.396662, -0.384940, -0.336034, -0.728558, -2.115731, -0.109374, 0.254983, -0.104400, -0.512464, 0.212592, -0.774205, 1.446622, 0.863379, 1.015948, -1.241960, -0.311417, 1.105041, 0.607457, 1.796587, 0.968534, -0.728675, 0.879589, -1.026476, 0.681945, -0.893970, -0.846563, -1.386097, 0.481104, -0.298373, 1.235945, -0.714278, 0.057681, -1.265714, 1.026161, -0.258595, 0.215059, 0.433780, 0.030152, 1.322083, -0.313523, 0.661436, 0.574634, 0.062002, 0.448030, -1.351823, -0.342904, -0.899390, -0.833402, -0.862040, 0.286503, -1.596009, 0.185339, -1.228744, -0.152450, -1.264958, -0.438211, -1.699029, 0.611233, -0.207356, -0.153936, -0.971623, 1.650841, -0.663815, -0.001463, 1.006120, -0.724176, 1.397104, -0.385031, -0.873603, 0.211383, -0.235104, 0.929222, -1.606893, 1.195198, 1.390564, 1.376394, 2.098204, -0.906723, 0.976047, -0.690193, -1.349634, -0.111960, -0.838166, 1.232577, 0.919637, -0.303729, -0.397418, 0.429518, 0.729866, -1.931267, -0.145646, 1.260670, -0.208229, 2.540711, 0.491056, 0.784049, 0.716853, 0.918358, -0.600872, 0.501814, 0.820461, 0.524352, 0.976756, 2.045748, -2.222711, -1.123774, -2.081546, 0.974690, 0.518746, 0.383969, 1.239864, -1.661525, 0.022700, 1.527257, -0.353291, -0.567537, -0.017469, 0.944910, 2.294375, 0.633391, 1.017232, -0.228991, 0.192200, 1.263752, 1.009429, 0.028072, -0.481217, -0.472747, -1.361700, 1.005212, -0.706737, -0.513133, -0.284827, 0.251549, -0.011069, -1.922108, 1.862506, 1.080771, -0.777661, -0.772122, 0.657934, 0.862764, -0.397629, 0.713396, -2.084646, 0.597535, -0.234314, 0.174427, -1.272333, 0.121910, 0.144938, 0.720131, -0.576369, 1.027848, -0.150313, -0.415464, -1.326369, 0.423022, -1.877166, -1.212137, -0.937541, 0.182630, 1.056029, 0.356087, -0.505843, 0.115067, -0.961201, 1.755523, 0.101426, -0.425238, 2.520553, 0.587572, 0.349178, 0.500825, -0.588090, -1.049082, 1.396782, -0.335828, -2.316049, 1.318304, -1.005887, -0.254008, 0.683383, 1.599672, 0.034560, -0.430784, -1.242570, -0.456116, 0.469624, -0.639228, 0.649453, -0.586729, 0.969864, -0.222494, -0.271476, 0.551550, -0.183159, -0.980633, -0.098881, 0.108335, -0.560834, 0.054874, -0.838989, 0.361214, -0.330196, 0.580019, -0.027323, -2.657912, 1.404254, -0.693355, -0.489336, 2.060231, 0.887965, 1.127442, -0.693249, -1.873725, -0.056001, 1.895301, -0.727537, -0.908226, 0.386019, 0.186846, -1.116179, -0.406045, -0.433380, 0.844938, 0.581732, -1.597412, 0.004275, 0.343639, -0.872025, -1.765925, -0.013071, -0.963240, -0.142272, -1.763152, 0.071830, 0.695810, -0.613795, 0.846098, -0.586315, 2.437475, -0.998368, 0.217887, 0.361830, -1.314214, -0.895564, 0.023789, -1.806738, -0.878966, -0.280102, -0.358086, -0.751641, -0.372304, -1.919498, -0.068374, -0.641328, -0.093263, 0.443248, -2.281028, 0.372234, 0.047600, -0.300436, 0.409499, -0.154587, 1.105725, 0.213204, -1.581790, 0.202304, 0.022584, 0.430704, 0.315257, 1.327084, -0.676229, -0.660351, 0.572701, -1.569216, -1.618231, 1.628285, 0.345966, 0.599971, -0.323887, 0.595413, 0.092189, -0.426243, -1.522186, 0.215856, 0.683957, -1.714237, -0.507090, -0.180805, -0.003548, -0.284993, 0.030777, 0.218056, 0.870802, -0.341984, 0.893762, 0.659915, -0.063454, -0.384196, -1.008250, 1.221139, 0.185160, -1.581144, 1.307092, 1.238129, -1.433739, 0.433266, -0.071964, 0.508833, 0.081763, -0.827419, 1.452268, -0.190060, -0.557385, 0.034104, -0.108170, -0.461960, -0.232610, -2.454894, 1.049523, 1.396392, 0.372988, 1.789103, 0.695052, 0.673884, -0.010802, 0.489616, -0.521052, 0.523827, 0.682258, 0.582782, 1.253322, -0.417443, 1.110823, -0.416431, 1.098492, -0.867697, -0.045616, 0.076892, -0.805973, -0.785036, 0.368724, -0.379459, 0.939626, -0.462018, 0.821758, -0.693737, -0.448729, 1.220697, -1.297246, -2.077047, -1.337539, 1.464895, -0.607275, -0.982364, 0.070545, 2.344499, 0.520427, 0.207627, -1.502672, 1.238815, 1.813022, 2.026497, -0.704383, 2.309919, -1.071715, 0.147977, 0.340072, -0.082867, 1.210100, 0.283416, 0.903177, -0.111705, 1.187372, 2.902369, 0.160699, 1.492474, 0.935065, 0.256235, -0.875925, 0.416311, 0.427472, -0.016680, -0.190924, 0.336898, -1.218016, -0.293958, 1.242140, -0.684970, 0.298323, 0.353376, -2.102941, -0.668866, 0.077764, 0.376080, -0.542232, -0.353828, 0.433790, -1.662959, -1.770191, -0.762407, 0.348892, 1.327524, 1.224735, 0.787652, 0.325507, -0.950806, 1.652738, 0.150331, -1.022907, -1.179663, 1.667096, 0.503125, -0.054708, 0.577142, 0.049615, 0.078269, 1.179773, 0.278827, -1.584616, 1.104613, -0.726730, 0.822010, 0.846132, 0.682486, -2.378982, 1.412871, 1.371286, -1.503497, -0.621429, 0.343486, 0.869514, -0.763580, 0.063196, -1.331506, -0.872145, -0.589685, 0.869377, -0.627132, -0.096647, 1.075544, -1.148070, 1.280006, -0.090411, -0.076110, 0.872075, 0.021528, -0.713879, -1.633595, 1.551635, -0.580211, -0.222397, -0.774978, -1.497328, 0.668740, 0.183756, -0.979620, -0.250338, 1.108617, -1.055104, -0.198191, 0.393876, -0.964888, 0.990976, 2.007022, -0.790667, 1.565048, -0.027922, 0.311114, 0.454034, 1.232266, 1.681190, -1.048765, 0.863171, -0.141154, -0.120735, 0.086368, 0.164663, -0.032055, 1.088944, -0.817960, 0.551714, -1.044344, -1.529323, -0.657256, 1.413873, 0.011763, 0.618154, 1.725017, 1.397573, -1.000053, 0.227320, -0.662110, 0.918212, -1.637119, -1.068358, 1.723664, -1.057421, -0.020259, 0.254529, -0.465879, -2.277395, -0.014294, -1.506582, 0.055501, 0.334060, 1.220469, 0.168996, -1.874954, 1.555025, -0.776264, -0.841947, 1.214907, -1.277503, -0.229906, -0.325316, 0.047284, -1.065174, 1.422059, 1.370473, 0.161496, 1.117566, -0.516433, -0.823126, 0.720307, -2.176265, -1.456730, 0.399478, 0.153443, -0.231652, -0.889814, 1.125761, 3.337486, -0.812580, 1.513475, 0.347073, -0.517041, 0.457599, 2.543773, -0.676577, -0.661725, 0.519489, -0.125325, -0.461115, -0.028126, 1.710458, 0.863779, 0.053281, -1.373120, 0.046816, -0.052169, -0.170530, 1.939812, 0.843303, 1.586381, 1.687643, -1.155204, -1.093468, -0.125768, -0.679091, -0.746591, 1.520703, -0.441585, 0.630180, 0.560079, -0.604709, 0.889147, -0.697132, 0.214768, -1.058395, 0.629487, -0.134298, -0.614105, 0.688999, -0.937614, -0.049793, -0.472484, -1.140216, -1.491043, 0.660714, -0.011643, -0.794925, -0.785080, 0.460955, 0.583837, -0.362863, 0.762094, -0.410582, 0.967799, -0.789362, -0.816914, 0.847880, 0.242090, 0.526234, 0.299295, -0.783677, -0.383676, -1.031198, 1.446156, -1.050907, -0.738330, -0.452281, 1.029508, 0.098506, 0.294438, -0.519765, 1.167788, 0.583584, 0.047951, 0.388703, 0.474761, 1.140131, -0.305717, -0.732303, 0.303618, -0.053867, -1.327068, -0.986698, 0.725678, -0.493701, 0.755276, -0.186091, -0.026841, -1.437410, 1.191415, 1.280375, -0.263418, 0.046663, 0.589329, 2.056455, 0.176193, 0.020132, -0.264343, -1.067982, 0.442591, -2.012205, 0.212100, -0.715966, 1.622531, 0.891194, -0.430566, 1.575854, -0.681447, 0.975758, 1.461304, 0.471763, -1.521512, -0.747590, -0.113143, -0.962984, -0.454598, 0.469894, -0.816372, 2.305019, 1.109768, 0.499653, 0.507731, 0.797073, -0.670619, -2.103842, -0.378361, 0.096315, -0.186113, 0.353704, 0.731541, 0.912456, -0.226365, 2.475935, -0.947046, -1.215867, 0.944136, -1.263590, -0.325788, 0.212705, -1.481161, 0.425147, -0.240799, -0.894787, -1.315372, 0.588340, 1.164927, -0.137595, -0.635644, 1.273758, -0.697351, -0.342219, 3.102881, 1.345796, 0.134191, 0.248090, 1.791207, 0.789727, -2.943933, 1.219192, 0.858836, -1.307881, -0.049507, -1.782492, -0.272808, 1.634433, 1.078393, 0.191553, 0.959971, 0.148198, 1.350678, 1.034535, -0.796547, -1.385673, 0.637981, 0.145088, 0.308295, -0.865624, 0.212762, -0.868204, -0.998864, 0.170664, 1.130297, -0.723851, -0.347515, 2.647883, 0.362370, -1.870187, 0.332791, 1.916221, 1.634928, 0.280556, -1.200652, 0.364559, 0.825790, -0.924397, 0.392393, 1.486134, 0.562158, -0.724153, 0.383157, 1.402983, -0.449497, 0.250040, 0.491233, 0.978817, -0.614823, -1.266325, 0.275805, 0.110052, 0.009780, -1.369228, 0.862445, 0.002470, 0.319805, -0.381020, 0.196468, -1.267349, -0.388345, 1.337526, -0.380834, 1.679628, 0.825904, 0.435964, -0.430529, 0.368636, -1.526051, -0.133137, 0.316569, 1.188769, -1.034041, 0.442261, -0.833932, 0.726919, 0.444092, 0.021020, -0.180114, 0.691879, -1.276975, 0.779742, 0.560705, 1.497143, 0.820534, -1.050074, 0.976326, 0.829330, -0.749170, 0.440191, 0.052696, -1.297568, 0.389543, -0.305468, -0.475802, 1.882753, 0.690292, -0.829858, -0.793177, 1.153632, -0.606419, 0.738836, 0.138331, -1.588802, 0.596538, 0.576173, 0.721506, -1.873809, 0.620846, 1.030279, 1.397279, 1.467184, -1.979299, 0.206453, 2.100982, 1.052231, -1.041611, 1.370476, 0.119844, -1.215214, -0.362735, 1.641905, -0.235563, 0.335580, 0.008142, 0.506156, -0.102518, 1.561611, -1.659342, -0.470413, -0.953792, 0.621376, -0.357466, 1.727999, 1.385200, -0.988300, -0.771211, 1.932962, -0.001637, 1.854878, -0.434222, -1.308446, 2.165843, 0.759218, -0.186683, 1.168201, 1.201224, 0.808716, -0.228364, 0.686502, 0.749201, -1.014981, 0.693725, -1.151095, 0.791120, 0.841981, -1.314296, 0.223916, -0.485333, -0.776303, 0.845748, -1.570707, 1.229241, -0.320438, 1.503051, 1.582160, 0.018349, -1.270061, -1.105981, -1.095752, 0.638423, 1.095289, 0.915528, -0.993148, -0.247416, 1.440400, -1.027800, 0.379999, 0.768198, -0.609642, -1.873906, 0.847325, 0.781594, 0.439981, 1.410181, -0.228625, -0.682470, 0.341436, 0.962507, -1.456151, 0.515019, -0.974384, 0.057340, -0.847645, -0.253236, -0.571886, -0.669795, -0.705352, -0.341011, 0.672880, 0.461658, 0.104177, 0.246889, -2.279662, -1.214561, 0.038690, 0.623432, -0.758409, 2.829443, 0.043046, 0.925939, -0.619343, -0.080817, 1.717057, 0.426861, 0.377949, 0.524727, -0.363203, -0.190493, -1.111771, -0.570682, -0.804020, 1.652374, 0.646142, 0.360384, 0.606764, -2.267877, -1.578426, 0.634695, -0.039773, -0.675857, -0.408203, 0.790941, -0.414555, -0.791152, -1.447742, -0.101123, 0.694835, -0.235019, -2.014651, -0.544846, 1.644013, -0.579032, -0.376821, -0.792559, -0.534888, -0.528000, 0.485593, 0.726400, 0.219275, -1.606865, -0.637418, -0.194022, 1.938055, -0.230561, -0.392530, -0.029433, -0.079863, 0.030547, -1.690866, 1.021236, 0.330774, -0.849816, -1.200827, 0.018342, 0.952855, -1.847905, -1.157915, 0.385315, 1.523961, 0.189226, 0.284901, -0.236001, -1.128477, -0.257783, 0.733517, 0.906165, -0.186465, 0.330822, -0.100674, 0.227714, 1.047101, 0.402691, 0.178935, -0.479966, -0.972547, 0.085684, 0.280473, -0.680743, -0.956101, -0.067043, -0.043444, -0.423860, -1.431487, 1.785578, -0.403868, 0.135247, 0.177338, 1.266297, -1.419286, -0.019987, -0.600000, 0.376572, 0.395711, 0.547185, -0.851191, -0.810450, 1.620857, 0.198021, -1.340421, -0.169411, -0.181947, 0.829641, 0.347308, -0.139790, 1.043162, 0.414267, -0.185098, -1.125200, 0.767852, 0.486725, 1.362585, 0.075763, 0.591354, 0.410808, -2.174905, 0.546123, 1.098918, -1.846365, 1.125447, -0.394972, 1.009875, 0.493997, -0.034090, -0.358880, -0.164017, 0.497917, -0.836251, 0.274598, 0.892336, 0.292421, -0.523671, -0.476477, 0.366224, 0.297864, -1.293940, 1.572629, 0.218977, -1.208299, -1.468921, -1.005271, -1.315076, 0.050478, 0.000118, 1.472276, -1.779780, -0.487180, -1.989578, -0.175389, -0.114721, -0.340563, -0.786085, 0.229292, -0.389049, 0.231493, 0.460837, 0.280056, -0.805843, -0.578639, -1.268060, 0.870908, 1.022897, 1.444145, -0.611573, -1.557369, 0.000382, -0.685728, 1.060017, 0.324899, 0.666328, 0.608093, -0.640875, -0.431135, 1.740098, 0.213174, 0.311500, -0.648503, -0.411613, 0.814678, 1.005494, 2.068207, -1.827732, -0.214563, -0.387490, 1.629509, -1.224637, 1.646266, 0.218674, 2.009914, 1.692994, 1.331669, -0.635512, 1.679007, -1.288978, -0.777167, 1.117640, 0.772795, 2.818392, -1.129921, 0.012129, 0.359697, -1.113243, 0.187010, -1.637286, -0.985339, -0.231506, 1.687171, 0.632401, -0.187848, 2.037420, -1.028750, 0.879615, -0.820166, -1.137429, 0.709749, -1.735245, -0.364049, 0.081651, 0.434274, -1.594779, -0.090954, -0.520978, 0.414483, 0.847307, -0.179835, -1.248063, 0.523093, -1.133471, -0.052280, -0.572817, -1.477456, -1.484785, 0.765020, 0.198138, -1.604406, 0.105591, 1.091369, 0.985142, -0.489852, 0.641059, 0.278474, 0.783888, 0.264552, -0.516150, -0.404999, 1.012161, -0.052900, 1.064197, -0.234965, -0.703951, -0.616026, -2.164735, -0.826753, 1.519988, 0.264698, -1.721244, -0.782308, -0.744139, 0.903597, -0.642493, 0.965614, -1.225115, -0.935501, -1.780527, 0.156984, -1.093822, 2.617778, -0.456001, 0.256682, -1.975094, -0.351159, -0.945742, -0.756613, -2.432863, 1.322113, 0.796331, 1.773006, -0.321627, 0.221067, 0.930219, 1.083945, -0.831533, 0.772991, 0.111766, 0.238352, -0.416830, 0.104399, 1.332182, -0.403450, -0.040660, -0.151557, -0.738574, 1.098338, -0.077803, 0.170047, -0.023169, -1.855730, -1.286719, -0.671617, 0.276023, 0.258835, 0.450115, 0.348014, 0.138224, 0.678333, -1.175952, -0.118125, -1.281212, 0.219560, -1.396473, -2.031704, 0.169597, -1.558197, -0.507837, -0.341647, -0.411748, -2.353515, -0.823815, 0.547196, 0.152572, 0.941773, -0.132502, 0.353957, -0.374074, 1.933327, -0.693691, 0.097224, 0.384921, 0.614135, 0.836104, 1.748898, -0.556862, 0.541714, 0.539119, 2.504559, -2.247921, -0.144833, 0.715338, 0.244103, -1.194156, 0.315205, -0.195992, -1.109842, -0.681922, 1.305083, 1.632660, 0.174473, 1.081053, -0.697581, -1.249751, 0.064262, -0.079740, -0.641816, 0.423762, 2.282303, 0.504471, 0.481696, -0.143376, 1.618654, -1.241618, -0.821932, -1.071982, -1.552989, -0.430421, 0.053239, -0.150558, 0.357365, -0.941143, 0.324645, -0.219965, -0.320421, -0.306399, -0.162997, -0.043216, -0.299875, -0.190169, -0.175823, 1.598249, 0.302305, 0.531722, 0.529184, -1.227818, -1.263368, 0.910903, -1.352136, 0.414417, -0.691839, 0.184465, -0.709986, -0.817126, -0.850985, -1.500053, 0.064047, 0.552074, -0.493353, 0.334505, 0.476269, -0.839961, -0.324028, -0.504277, -0.341015, 0.280118, -0.217858, 0.011077, 0.053562, -0.829168, 0.944967, -0.945398, -0.370070, -0.793656, -1.054477, 0.072705, -1.163156, 0.096346, 1.211309, 0.372250, -0.013209, -1.186569, -1.223648, -0.069903, 0.143383, -1.102027, 0.174251, 0.185013, 0.444361, 1.877374, 0.124881, 0.265931, 0.313493, -0.380179, 0.528459, -0.294885, 0.020683, 0.268312, 0.686996, -0.822764, 0.356774, -0.104993, -0.147408, -1.873306, -1.028076, 1.286824, 0.752496, -0.374466, 0.579663, -1.304120, -0.392455, -0.526908, 0.394459, -0.613859, -0.091887, 0.903183, -1.109726, 0.675838, -0.085295, 1.051192, -0.016866, 0.326990, 1.263379, -1.585195, -0.661578, 0.620993, 1.378048, 0.475401, 0.177983, -0.971243, 1.099195, -0.763719, -0.048398, 0.487208, 1.164095, -0.527009, -0.600236, 0.266523, -1.329845, -0.185820, -0.587015, 1.197968, 0.483367, 1.180162, 1.000607, -1.666219, 3.592965, 0.005810, 0.103460, -0.379997, -0.804158, -0.762023, 0.487444, 0.012350, -0.381975, 0.854549, 1.102220, -0.791890, 1.011859, 1.422311, -0.201551, 0.430874, 0.706137, -0.621989, -1.431359, -0.541830, -0.109603, -1.803321, 0.599062, 1.082363, -1.727323, 0.581667, -0.388399, -0.387510, -0.268347, 0.230137, -0.211202, 0.728521, 1.242526, -1.079046, 1.062484, 0.359966, -1.226313, 0.739156, 0.030655, -1.765626, -0.149636, 1.459785, 0.762530, -0.492712, 0.218338, -0.135339, 0.563411, -2.098810, 1.348681, 0.722642, -0.685129, 0.189547, -0.143518, 0.698839, -0.304914, 0.224611, -1.772923, 1.202020, 2.585183, -1.160130, 1.122913, -0.426645, -0.959485, 0.223545, 0.251159, -0.225319, -0.424503, -0.476923, -1.237562, 2.097269, 0.966247, 0.458852, 1.176988, -0.595764, 1.428310, 1.377048, 1.064520, 0.944863, -0.471240, -0.127947, -1.572854, 1.865792, 2.083482, 0.670633, 0.104540, -0.397667, 1.997226, -0.106271, -0.608268, -0.870572, 0.072127, 0.986973, -0.416156, -0.653851, 0.074068, -0.019042, -0.986571, -0.018002, -0.983321, -0.613986, 0.560652, 1.261426, -1.042631, -1.747539, 0.745243, -0.133538, -0.379869, 0.216768, 1.195644, 0.405613, 2.045917, 0.365249, -1.354414, -0.376270, -0.006553, 0.362668, -0.904080, 0.747589, 0.198446, -0.538016, 0.881561, -0.310994, -0.343918, 1.244070, 2.000613, -1.600150, 0.647509, -1.256487, 0.701125, 0.246671, 0.108562, 0.922212, -0.804351, -0.850594, 1.013685, 0.900552, 1.270867, 1.563839, 0.907486, -2.005560, 0.442177, -2.103153, -0.044940, -1.520954, -1.306385, -0.792545, 0.958612, 1.956637, 0.949954, -0.245294, 0.129125, 2.445799, 1.646368, 1.013799, -1.098808, -1.164370, 1.533652, 0.686235, 0.792318, -1.574291, 0.198587, 1.505112, -0.704153, 1.539799, -0.786237, 0.742085, 0.436683, 0.952655, -0.080700, 1.385913, 1.776141, 0.391914, -0.014451, -0.578049, 2.047994, 0.561269, -0.209200, -0.783461, -0.469990, -1.229856, -0.210625, 0.115914, 0.830101, 0.725687, -0.299943, 0.116684, -0.784304, -0.806670, -1.978712, -1.180928, 1.131475, 0.542189, 0.256547, 1.075608, -0.195630, -0.542400, -0.789014, -0.324209, -0.859475, 0.649801, -0.767602, -0.998245, 3.291083, -0.527494, -0.194860, -0.520921, -1.045487, 0.578567, 0.303074, 0.681786, -0.293648, 0.594617, -0.808306, 1.320991, 2.622552, 0.048417, -1.228960, -0.263984, -0.414892, 0.007103, -1.335975, 0.422645, -0.267703, -1.172696, -0.158137, 0.394125, -0.697199, -0.335698, -0.193902, 0.383253, 1.800366, 1.100667, -0.642460, 0.154940, -0.475391, 0.409989, -0.232179, 1.574244, 0.375923, 1.598368, 0.781955, 0.104189, -0.937510, 0.304039, -0.513409, 1.284597, -0.048314, -0.997324, -0.424721, 0.696322, -0.595087, -0.249153, -1.799990, 0.073800, -0.644472, 1.315935, -0.818653, -1.500680, -0.083754, -0.280041, 1.310595, 0.254121, 0.209215, -0.619412, 0.337245, 0.014890, 0.228921, 0.478691, -0.438901, -1.667995, -1.456345, 0.409701, 0.424796, 1.148928, -0.062927, 0.970516, -0.227197, 1.446486, -1.698990, -0.483551, -0.950690, -0.506982, -0.560694, -0.677606, -0.956363, 0.242048, -0.935352, 0.847280, 0.736683, -0.501086, 0.445259, -1.219422, -1.543004, -0.060447, -0.742367, -1.057063, 0.902699, -0.905459, -0.559891, -1.946507, 0.207084, -0.074622, -0.042401, -0.658913, -0.519988, -0.076985, 0.081014, 1.171612, -0.979588, 0.023708, -0.252099, 0.461627, 0.960544, -0.503724, -1.777104, 0.280910, 1.165504, -0.506259, -0.172485, -1.143889, 0.913221, -2.011524, -0.512824, -1.680265, -0.525892, 0.094003, 0.815813, -1.150683, -1.011090, 0.178379, -1.070876, 1.490121, -0.552821, -1.201117, 0.882974, -2.115034, -1.575595, -0.387130, 0.439784, 0.539421, -0.055772, 1.364372, 0.861246, 0.344243, 0.259153, -1.255549, 0.400312, -0.616561, -0.979032, 0.412833, -0.004636, -0.343319, -0.716839, -1.208622, 0.475568, 0.527625, -0.047370, 1.400738, -1.619014, -1.203610, -0.555936, 0.103826, 0.440331, -0.136716, -0.610684, 0.802815, 0.894211, -0.471609, 1.063656, 0.543890, 1.560269, 0.597948, 0.538398, 0.291025, 0.607748, -1.218361, -1.394040, 0.880483, -0.743415, -0.494944, -0.763028, 1.347232, 0.202154, -0.503577, 1.650189, 0.619100, 0.679815, 0.017464, -0.379545, 1.285849, -0.634801, 0.586431, 1.363330, -0.465049, -2.353583, -1.368040, -0.110282, -0.763812, -0.534703, -0.080556, -1.277511, -0.192667, 0.773091, 1.558537, -0.072994, 1.244117, -0.292472, -0.099457, -0.572902, 1.330516, 0.284130, 1.109900, -0.011437, -1.822190, 0.696207, 0.287361, 0.134555, 0.730946, 0.693094, 1.278310, 0.603130, -0.502733, -0.298057, -2.120405, -1.252650, -0.585504, -1.697913, -0.153409, -1.381612, -0.355373, -0.419217, -2.147746, 0.437598, 0.071903, -1.250967, 0.888995, -1.279496, -0.524999, 0.847654, 0.540934, 0.988537, 0.220426, -0.248349, 0.702039, -0.373690, -0.292794, 1.251551, -0.136726, -1.349951, -2.006402, 1.952456, -0.426821, 1.660869, -1.662619, -0.426596, 0.329979, -0.925119, 1.086507, 1.247635, 0.759971, 2.748834, -0.230738, -1.384721, -1.122254, -0.456420, 0.376815, 0.136528, 1.334217, -1.259515, -0.380063, 0.847187, -0.507247, 1.168831, -0.899540, 0.364901, -0.565273, -0.762716, -0.390254, -0.313475, -0.480110, -0.124875, 1.051658, -0.815459, 0.616314, -0.816195, -0.149589, -0.196263, -1.823787, -0.747584, 0.604710, -0.635718, 0.838170, 1.318557, 1.380034, 0.030648, 0.189420, 0.103005, -0.202615, 2.178581, 0.144942, 0.288130, 0.428349, -1.358391, 0.895738, 0.288058, -0.148462, -0.762656, -1.249119, -0.999641, -0.825954, -0.045740, -0.876863, 0.081127, 0.180492, -1.070712, 0.069462, 2.499226, 1.208066, -1.089126, -1.153212, -0.633523, 1.041080, 0.179309, -0.044136, -1.243529, 1.406187, -1.471448, -0.501115, 0.395088, 0.172486, 0.509783, 0.077203, 1.388737, 2.525844, -0.136487, -1.234559, 1.299042, -0.846108, 0.774194, 0.968037, 0.215330, -0.469177, 0.401849, -0.263293, -1.531249, -1.588852, 2.390583, -0.819375, -0.286632, -1.405893, 0.265913, 1.948279, -1.763698, -1.313349, -0.196341, 0.746557, -0.197265, 0.385748, -1.354313, 0.445977, 0.218553, -2.012631, -0.414542, 1.017698, -1.847814, 0.242002, -0.195827, 0.482920, -1.964476, 1.842669, -0.301600, -1.450880, -1.458653, 0.743479, -1.936708, 0.315710, -0.631097, 0.434831, 0.012618, 0.566895, 0.888040, -0.426595, -2.086709, -0.582593, 0.331953, 0.191696, 0.202003, -1.453614, -0.118366, -0.988162, 0.655168, -0.067755, -0.601428, 0.210343, -0.526311, 0.093570, 1.624383, 0.533583, -1.011251, -2.975027, -0.197862, 1.731261, -1.455112, -1.351827, -1.005466, 0.775502, -0.274310, -0.834313, 0.026578, -0.923564, -1.162562, -0.438935, 1.310981, -0.844952, -0.639270, -1.005501, -1.157427, 0.799392, 1.471006, 0.587484, 0.762854, 1.430742, 0.190146, 1.277148, 2.050369, 0.392673, -0.155007, 0.168144, -0.552254, -0.926370, -0.612983, -0.457701, 0.578693, 1.110674, 0.425022, 0.229803, 2.166550, -0.245349, 0.044718, 2.327867, -0.755978, 0.735073, 0.691000, -0.372918, 0.559897, -0.227446, 0.126589, 0.138772, 0.441423, 1.871359, -0.049067, 1.158514, 0.573930, 0.132841, 0.210897, -1.937643, 0.819365, -1.493229, 0.140068, 0.358949, 2.188984, -0.014209, 0.028942, -0.271618, -2.212539, -1.036573, 0.832698, 1.260570, 0.243328, -1.764464, -1.089780, -0.308576, -0.940177, -0.517370, -0.356109, 0.271797, -0.370817, 1.200888, -0.961231, 1.697590, 1.183354, 0.966891, 0.447719, -0.575066, -0.140690, 1.753668, -1.293170, -0.835097, 0.519911, -0.871805, -0.818254, -1.142053, -1.029756, -0.453165, 0.744701, 0.428048, 0.517613, 0.413268, -0.412662, -0.416161, 0.077534, -1.844502, -0.210068, 0.960682, 0.722467, 0.722120, 0.356762, 0.579144, 0.844782, -2.218417, 0.292815, 1.243716, 0.190755, 0.296549, 1.637157, 0.489667, 0.492616, 1.724824, -0.446847, 0.040712, 0.703715, 0.807092, 1.300552, 0.101970, -0.082710, -1.083100, -2.629662, 1.190288, 0.248348, -0.408591, 0.569903, -1.923930, -2.354898, -0.460324, -1.052738, -2.032039, 0.284669, 0.221328, -2.382770, 0.412199, -0.057338, 0.932570, 1.713927, 0.616716, 0.678924, -1.007089, -1.855047, 2.245682, -0.797435, 0.366729, -0.537063, -0.278747, 1.156163, -0.211522, 0.030367, 1.655177, -1.306086, 0.293756, -0.001744, 0.283854, -0.159195, 0.688433, -0.859293, 1.593975, -0.914517, 0.430648, 0.605256, -0.041184, 0.861674, -0.042582, 0.363541, 0.902050, -0.289410, 0.194056, -0.653735, 1.456413, -1.652748, 0.524409, 0.774439, -0.507796, -0.218706, 0.783481, 0.239214, -1.056154, -0.843452, -1.439239, 1.113900, 0.882122, -0.924865, 0.627621, -2.506988, -0.658403, 1.062265, -1.683057, 0.442730, 0.274948, 2.348994, -0.765417, 0.776610, 0.241322, 1.128288, 1.515094, -2.085134, 1.049170, -0.605473, -0.140245, -1.321326, -0.045581, 0.855986, -0.443743, -1.354501, 0.388817, 0.095488, 0.261038, 1.011495, -0.314717, 0.029782, -0.038697, 2.136642, 0.014697, -3.011778, 0.173705, 0.146129, -0.845379, -1.288893, 0.848944, 0.605097, 0.152458, 0.974621, 0.765603, 0.771062, -1.775870, -0.678981, -0.176923, -0.686449, 1.898232, -1.020612, -1.354837, -0.043068, -0.300015, 0.154585, 1.755027, -0.426490, -1.267349, -0.268653, -0.287218, -0.186931, 0.547677, 0.648549, 0.466099, 0.503078, 0.317238, 0.244550, 0.796795, 0.902169, 0.387778, 0.662838, 0.099500, -2.226891, 0.597740, 0.715034, -0.633031, -1.679369, 0.543111, -0.257643, -0.828987, 0.312307, 0.596694, -1.297439, -0.802969, -1.838572, 0.200758, 1.614324, 0.775535, 0.505559, 0.778013, -0.509092, -1.135050, -1.178565, 1.338580, 0.237240, 1.010507, 0.570691, 1.146659, -1.472037, 0.828128, 1.012029, -0.465989, 0.402074, -0.416875, -0.131153, -0.679788, 1.259486, 2.123017, 0.080991, -0.609785, -0.022760, 0.680924, -0.799098, -1.604908, -0.864820, -0.567600, 0.097648, 0.827421, 0.196851, 1.194387, -1.823332, 1.136009, -1.352971, 0.931056, 1.025733, 0.996780, -0.300885, 0.749047, 1.874420, -0.216025, 2.865738, -2.151413, -1.571273, -0.657617, 0.502213, -0.324155, 0.821925, -0.090171, 0.288615, 0.513541, 0.168332, -0.484436, -0.030806, -0.323216, 2.515737, -0.768082, -0.584409, 0.118621, -0.963008, -0.133828, -1.249792, -0.131978, -0.531103, 1.225566, 0.918561, 0.668808, -0.101127, 1.508622, 0.606976, -1.378289, -0.452788, 0.041343, 1.316459, 0.160414, 1.701994, 0.551498, -0.483048, 1.251926, -1.526237, -0.736546, 0.754953, -0.817343, 1.015382, -0.031105, 0.370372, -1.199750, 1.627179, -1.657286, -1.168224, -0.244165, 0.160987, -0.112550, 1.019035, 2.280782, -1.871327, -0.524802, 1.821679, -0.685914, 0.062724, 0.257558, -0.676704, 1.419979, 0.651204, -1.068474, -0.052351, 1.203416, -0.652589, 2.327816, -0.660048, 0.692844, 0.793130, 0.158290, -0.585633, -0.087601, 1.173301, -0.290935, 0.040166, 0.542299, -0.582586, 0.271306, 0.122196, 0.665061, -0.779517, -0.718081, -1.877276, -1.252328, 0.360431, -0.955324, -1.978227, 0.803410, -0.178430, -0.959295, 0.630731, -1.279081, 0.192315, -1.903189, -0.675285, 0.309240, -0.541594, -0.056293, 1.776019, -0.894201, 0.056392, 1.404103, 0.113519, 1.104897, -0.443649, 1.219918, 0.353797, -0.501165, 1.113912, 1.278034, -0.871461, 1.172982, 0.596697, -1.548223, 0.313286, -1.333420, -0.430893, 1.573169, -0.253580, 0.267122, -0.075675, -1.109400, -0.277010, -1.027555, -0.433901, 0.033297, -1.141899, 0.648755, 1.568496, 1.162342, -0.543404, 0.400204, -1.257169, -0.629579, -0.571377, 0.805252, -1.225040, 0.934275, -0.578302, -0.638888, -0.206949, 0.495699, 1.793069, 0.501017, 0.776776, 0.585656, 0.573843, 0.149676, -0.200380, -1.574862, 0.346256, 0.339128, -0.278733, -0.165454, 1.829574, 0.196033, 1.282044, 0.130789, 1.727596, 1.790129, 0.659798, 0.716811, 0.683067, -0.346571, 0.242042, 0.860938, 0.485511, 1.276565, -0.919079, -0.862969, 0.183405, 0.152476, 0.260639, -0.173565, 0.512594, 1.375960, -0.396851, -0.363907, -1.641055, -1.822389, 0.039212, 0.164753, 0.116395, -1.774030, -0.323417, -2.230603, -1.179728, 0.202419, 0.876117, 0.793657, 0.788611, -0.763736, 0.385331, -1.549563, -0.499845, -1.011770, -1.517638, 0.468193, -0.087922, -1.224269, -1.178208, 0.620655, 1.900572, -0.532846, 0.170689, 0.848457, -1.394555, 0.201337, 1.128630, 0.196815, -0.035499, -0.033795, -1.607241, 0.260005, 1.942873, 0.747811, 0.431182, -0.930874, -2.030816, -1.885500, -0.883294, -1.315229, -0.025818, -0.418902, -0.132735, 1.010110, 1.156663, 0.072571, -1.051639, -2.090901, -0.328538, 0.114635, 0.008651, -1.125049, 2.466474, -2.917685, 0.142033, 0.624541, -0.703083, -0.477289, 0.011147, -0.192426, -0.526601, -1.148287, -1.278181, -0.204467, 0.548412, 0.015905, 0.571718, 1.646519, 1.344547, -0.624031, -1.397568, -0.246429, 0.510796, 2.391095, -1.335905, 0.536445, 0.380635, 0.770062, 0.257350, 0.433161, 0.568259, 0.424748, -0.897766, -1.044633, 0.239560, -0.902328, 0.781752, -0.465627, 2.061125, 0.820822, -0.518875, -1.257676, 0.012471, -0.245483, -0.865950, 1.924137, -2.220682, 0.438959, -0.703392, -0.032280, -0.619949, -0.591307, -0.358743, -1.207613, -0.569484, 0.006838, 1.575664, -1.596865, 1.020027, 3.073270, 0.222619, -0.458251, 1.803644, -1.981149, -0.206486, 0.611732, -0.247545, 0.020892, -1.118521, 1.372310, -1.083308, 1.166251, -1.587290, 0.532322, 0.046277, 1.646540, 1.197983, 1.695619, 0.730179, -1.827557, 0.878910, 0.644323, -0.346873, 0.053954, -0.504006, -0.331597, -1.512858, -1.540880, -1.150630, 1.236867, -2.611885, 0.733829, 1.598033, -0.823751, -0.150936, -0.162573, 0.682289, 0.457879, 1.494980, 0.572642, 0.551503, -0.000152, 0.327813, -0.229658, 1.122496, 1.376082, -0.616302, 0.546517, 1.918280, 1.781606, 0.034718, -1.993492, -0.692250, -0.241492, 0.530820, 0.235702, 0.481145, -1.984227, 0.364654, 0.135874, 0.292133, -0.104011, 0.679996, 0.751805, 0.040565, -0.487294, -0.065285, -1.540447, -0.336744, -0.748744, -1.238833, -1.685375, -1.168528, 0.276482, 1.191660, 0.892987, -0.786405, 0.062498, 0.351929, 1.982254, -0.168346, -0.130996, 0.485008, -0.156850, 0.420248, -0.239325, 0.566120, 0.467160, -0.382663, 0.212102, -0.343557, -0.672544, -0.869294, 0.816820, -0.178021, 0.344465, 0.092975, -0.417941, -0.180374, 0.703312, 0.181560, 0.257753, 1.029101, 0.158804, 0.233925, -0.968973, -1.988769, -0.099716, 1.106740, 0.135644, 0.181653, -0.957438, 0.608039, -0.096022, -0.800750, -2.378509, 0.404807, -0.566938, -0.750786, -0.464362, -1.428267, 1.457952, -0.079389, -0.700990, -1.147858, -0.091208, 1.321306, -1.806182, -0.080394, 1.529596, 1.466066, -0.605815, -0.769387, -1.386900, -0.769394, 0.555541, -1.459008, 0.859010, 0.736189, 1.352214, -0.072282, 0.552458, 1.679355, 0.220488, 0.680177, -0.557058, -1.079371, 1.756279, -0.337515, 0.858185, 0.347230, 1.037756, 0.868605, 0.893179, 1.515999, -0.350862, 0.109698, -1.271031, -1.546041, -1.970385, 0.463732, 0.494671, -1.669773, 0.236069, -0.271946, 0.498189, 0.246775, 0.922381}, - { 0.913403, -0.295290, 0.086092, 1.005054, 1.725580, -0.133652, 0.342107, 0.357993, -1.589066, -1.048333, 0.238940, -1.376018, 0.188080, -1.612856, -1.934624, -0.467801, 1.277703, -0.948792, 0.674268, 0.123088, 0.316576, 0.237434, 0.979154, -0.574009, -0.795337, -0.240708, -0.113751, 0.081421, 0.008718, -0.347913, -1.123316, 1.777761, 0.883286, 0.590090, 0.171913, -1.182438, 1.350497, -0.361385, 0.017211, 1.504698, 0.313551, -0.844819, -0.618732, -1.577376, 0.061875, 1.193806, 1.537125, -1.725651, -0.242986, -1.837148, 0.931901, -0.073035, 1.073268, 0.077756, -0.756300, -0.829790, -0.974044, -1.524843, 0.713368, 1.474400, 0.910172, 0.446263, 1.585931, 0.679202, -0.658093, 1.826162, -0.009757, -0.232815, 1.243577, 0.091568, -0.167431, -1.431377, 0.030063, -1.932114, 0.316663, -0.944830, 1.162451, -1.131858, 1.491109, 1.691544, -1.329376, 0.139726, -0.804626, -0.022518, -1.044561, 0.420332, -0.743144, -1.822255, -0.437006, 0.400183, -0.317712, 0.693633, -0.564303, -0.098094, 0.760899, -0.110091, 0.403445, -0.315074, 0.066276, 1.978001, 0.437739, 0.995208, 0.282942, -0.233445, 0.073684, 0.410945, 0.387493, -0.173382, -0.985331, 0.575592, 0.679394, -1.915635, -0.500575, 0.799922, -0.200503, -0.149439, 0.762506, 0.649875, 0.194384, -0.425565, 1.513602, -0.583543, -1.442096, 0.553279, 0.256465, -0.683770, 0.798597, 0.662315, -1.552708, -1.651697, -0.261657, 0.028729, -1.660404, 1.625884, -0.622325, 0.314700, 0.095353, 0.081231, 0.293623, -0.206468, 1.204259, 0.358432, -2.016816, -0.265700, 0.478025, -1.895010, -1.461382, 0.785414, -1.590029, -0.082857, -1.039708, 0.250805, 0.874629, -0.080413, 2.482724, 0.172107, 0.792439, 0.187465, -1.579936, -0.794222, -0.636311, -0.889284, -1.921318, -0.657590, 1.778675, -1.843720, 0.325486, 0.043203, -0.713850, -0.728758, -0.968976, 0.727232, -1.064471, 0.878060, -0.008737, 1.160822, -4.114590, -2.042076, -0.611600, 0.127878, -1.159296, -1.170815, 0.117916, -0.272055, 1.234184, -1.810103, -1.356371, -0.376263, -2.450144, 1.233387, -1.217582, -1.679335, 0.457814, 1.050618, -0.544435, -0.368644, -0.232821, 0.043874, 0.935485, 0.454126, -0.906432, -0.304290, -0.159284, 1.410072, -0.236534, -2.195936, 0.789080, -0.632066, 0.486165, 1.460808, -1.166771, -0.242664, 0.770249, 0.891180, 0.852778, 0.752358, 0.833951, 1.350073, 0.604933, -1.119053, -0.316285, 2.170391, -1.073226, -1.425531, 0.811938, 0.054409, -0.976320, 0.114019, 0.460297, 0.913301, -2.035406, -0.970896, 0.731869, 1.361570, -0.797868, 0.169634, 0.462445, 0.358620, -1.109236, -0.403613, 0.209397, -1.120581, 0.164944, 0.411159, -2.269710, -1.255673, -0.666517, 0.536336, 0.995050, 1.141749, 0.019619, -1.227143, 0.278797, 1.348266, -1.650656, -0.183376, 0.281023, -0.662262, -0.604583, 0.302586, -1.789549, -1.043313, 1.654594, -0.282964, 0.249613, -1.353860, 0.972507, 0.514998, -0.460577, 0.081415, 1.438501, 1.162506, 2.461328, -0.342899, -0.099116, 1.703849, -0.799054, 2.250685, 1.002557, 1.032787, 0.366252, -0.088449, 0.578996, 0.309805, 0.080233, 0.034031, -1.366195, -0.889938, -0.942371, -0.715408, -0.073784, -0.614486, -1.335649, 1.281016, 1.416838, -0.793418, -0.183820, 2.226790, -1.275784, -1.301143, 1.175273, -0.645667, -0.094837, -1.158250, -0.176231, -0.563877, -1.035846, -0.530539, 0.461159, 0.791217, 0.132766, -2.418760, 0.059318, 0.267904, 0.566350, 1.005936, -0.034073, 0.214185, 0.054725, -0.173895, -1.022204, 0.593985, -2.160395, -0.791361, -0.835063, -0.063793, 1.239700, 0.004030, 2.958032, 0.050634, -0.426058, -2.227523, -0.748648, 0.845190, 0.981113, -1.794394, -0.652911, 2.441202, -0.200283, -0.847372, 0.230857, -0.958025, 0.390691, -0.494975, 0.606822, 0.236227, 1.278609, 0.504989, -0.348713, -0.768320, -1.662945, 0.738913, -1.376755, -0.720088, 1.546482, 1.591030, 0.769729, 0.568637, 0.230630, 1.194979, 1.088164, -1.099574, 0.892180, -0.036292, -1.117458, -0.308925, 1.214907, 0.240722, -0.204111, -0.333902, -0.299545, 0.202653, -0.827144, -1.210344, -0.584223, -0.527318, -0.713438, 0.553275, -0.154885, 0.821249, -0.650773, 0.268670, -0.610320, 0.917912, 1.157194, 0.768376, 0.161635, -0.141360, -0.893721, -1.227267, 0.715565, -0.738901, -0.359867, 0.205392, -0.916198, -0.206067, 0.791689, -1.651486, -1.188522, 0.612037, -0.572621, 1.337013, 1.317472, -0.536303, -1.465946, 0.732252, -0.775071, -1.521306, -0.707566, 0.200054, -0.926414, -0.193990, 0.938176, 0.753778, 0.133653, -1.589309, -0.230409, -0.818231, 2.010239, -0.541675, 0.645513, -0.577786, 0.219515, 0.316971, 1.299165, 1.183105, 0.476046, 1.353827, -0.547525, -1.224698, 0.179259, 0.737115, -1.128772, -2.165439, -1.049073, 1.585385, 1.247090, -0.453924, 1.617306, -0.702724, -0.171480, 0.062967, 0.106036, 1.561527, 0.251820, -1.065674, -0.309443, 0.452167, 0.307494, 1.753611, 1.577688, -0.735904, -1.224096, -0.611819, -0.387908, -0.739698, -0.704023, 0.006210, -0.727352, 0.742725, -0.705610, -0.237533, 0.670380, -1.012794, -0.690726, 1.418735, -0.466697, 0.052781, -0.175423, -0.421615, 0.346860, 0.023260, 1.570746, -1.280639, -0.467799, 0.225527, 0.704658, -1.811950, 0.252413, 1.139279, -0.461804, 1.275409, 1.531644, 0.795347, 0.580419, 0.745464, 0.858649, 0.676112, 0.131382, -0.684164, -0.191336, 0.379843, -0.087554, 0.820696, 1.686524, -0.113226, -0.008035, 0.548109, -0.147544, -0.631111, 0.597068, -0.065515, 0.349485, 0.842227, -1.377857, -1.018725, 1.181294, -0.497171, 0.902685, 1.457999, -1.685141, -1.146413, 0.237137, -0.471157, 2.239570, -0.841215, 0.537012, 0.105813, 0.419670, 1.262526, -0.825573, -0.319996, 0.514645, 1.022644, -0.245500, 1.401732, 0.137622, 1.096113, -0.386344, 0.135761, 0.515783, -0.303785, 0.042243, 0.648488, 0.231282, -0.385912, -1.805604, 0.169719, -0.084000, 1.922627, 0.880066, 1.794085, -0.012218, -0.369052, 0.169733, 1.229249, 0.546774, -1.153349, -0.162112, -0.395439, -0.799835, -0.934362, 0.379754, 1.143776, -0.854335, -0.465476, -0.129304, 0.194105, -0.479547, -0.172307, 0.570265, 0.144661, 0.897203, 1.067333, -0.171449, 1.230701, -0.521839, -0.529737, 0.148736, -0.717064, 0.291837, -2.632122, 2.647436, 0.708961, 0.428708, -1.842660, -2.135876, 0.965447, -1.783203, 0.710079, 1.166904, -0.408116, 0.488993, 0.106535, 0.763684, -0.171735, 0.221046, -1.703968, -0.563011, -1.429563, -0.650974, -0.876201, 0.635325, 1.594456, 1.123131, -0.734087, -0.333893, 0.165535, -1.229982, 0.088228, -1.286999, -1.878592, -0.665636, 0.949814, 2.002466, 1.301372, -1.208860, 1.186290, -0.315561, -0.784986, -0.783045, -0.160142, 1.492897, -0.139057, -0.220124, 0.086398, -3.372561, 1.073421, 0.171393, 1.089487, 1.343760, 0.672042, 1.825138, -0.476072, 3.042275, -0.315788, 0.815354, 0.595959, -1.188119, -0.762317, -0.880267, 1.719976, 1.014601, 0.659368, 0.335869, -0.243646, 0.610776, -0.996865, -0.471263, 1.047923, 1.439167, 0.520818, 1.570329, -0.068086, -0.646972, 0.401265, -0.225824, -1.905432, 0.372691, 1.056847, 0.362449, -0.395691, 0.290200, 1.286069, 0.419890, -0.215639, -0.948611, 1.051324, -1.628543, -0.178035, -0.641380, 1.323620, -2.443933, 1.262372, -1.519546, -0.798928, -0.805421, -0.123867, 0.872316, -1.505693, 0.574153, 0.017660, -0.349287, -0.639374, -0.200385, -2.029329, -2.302649, -0.783666, 0.654354, -2.658243, 1.251016, -0.106872, -2.195074, 0.155139, -1.320805, -0.207960, -0.989584, 1.087116, -0.688379, 0.405956, -0.359556, -0.555725, 0.420931, -1.102275, -1.355091, 0.153878, -0.316535, -0.095558, -0.299016, 0.775489, 0.141287, -0.204345, -0.118941, 0.039299, -0.485611, -0.592696, -0.994134, 0.094326, -1.561734, 0.167129, 1.455357, 0.639588, 0.663504, 0.356364, -0.145230, 1.663015, -0.951385, -0.645525, 1.364940, -0.239877, 0.756187, -0.262879, 1.380013, 1.571304, 1.042977, -0.316306, -0.016299, -0.584617, 0.130968, 0.769290, -1.686567, -0.884075, 0.127944, 0.804433, 0.297289, 1.242926, 0.949061, 1.883114, -0.112831, 0.105122, 0.102241, 1.948179, 0.021827, 0.589759, 0.136672, -1.136392, -1.032745, 0.051008, -0.380643, -2.210566, -0.699576, 0.380231, 1.438732, -0.270174, -0.383435, -1.272785, 2.043159, -0.870828, -2.338278, -1.844778, 0.746975, -1.230290, -1.002257, -2.078463, 1.853119, -0.910829, -0.270036, -1.715081, -0.338202, -0.614883, -0.425491, -0.735518, 0.633470, 0.297810, -0.360796, -0.122611, -0.608419, -1.504582, 0.355186, -0.399242, -0.590992, -0.652033, -0.552218, 2.013478, -0.698620, -0.189950, -0.818127, -0.764823, 1.078019, 2.396269, -0.299505, 0.696984, -0.808472, 0.190950, -1.212633, 1.043719, 0.602868, -0.089388, 0.061692, 0.824064, -0.348082, -1.172253, 0.142974, 1.221284, -0.318246, -0.069737, -0.451380, 0.493433, 0.311425, -0.827212, 0.315756, 1.180425, -0.589397, 1.388996, -0.732194, 0.942442, 1.578300, -0.379549, 1.172463, 2.034979, -0.405942, -1.561896, 0.784890, 0.548668, -0.220109, -0.243668, -0.079107, -0.645614, -1.801148, 0.620777, 0.017744, 1.159341, -0.184901, -0.670137, 0.551791, -2.393059, 0.317979, 1.178799, 0.422720, 1.431991, 0.638591, -1.123644, 0.832713, -1.074586, 0.449156, 0.129873, 0.795875, -0.964696, 0.728549, -0.286222, 0.714366, 0.837298, 0.498846, 0.128404, -1.170166, -0.420597, 0.472304, -1.232533, 1.454803, 0.230409, 0.082428, 0.624540, -0.464645, -0.000915, 0.218237, 1.222162, -1.074255, 0.687082, 1.180105, -0.132165, -0.095443, 0.203219, 0.781170, 1.306183, -0.226083, 0.682511, 0.620491, -0.813432, -0.302646, 0.946222, 2.840906, 0.028700, 1.533162, -0.037276, -0.239754, 0.400961, 0.624923, -1.481543, 0.647345, -1.516621, -1.841342, -0.542951, 0.599887, -0.890403, -0.630342, 1.803004, -1.111105, 0.753599, -0.379072, -0.848904, -0.882156, -0.887099, -0.494679, 0.189248, 0.890949, 0.498730, -0.412214, 0.441821, -0.456395, 1.671962, -0.077532, -0.549207, 1.112935, 0.418469, 0.547161, 0.467275, 0.060746, 1.100012, 0.376833, 0.577460, 0.343832, -1.308718, 0.732842, -1.251363, -1.595083, 1.503064, 1.999101, -0.382579, -0.304532, -0.091495, 0.475582, -0.381950, 0.187116, 1.152055, -0.748732, 0.188938, 0.488012, 0.225913, 0.129863, 1.541680, 2.369422, -0.637973, 0.055969, 0.411817, -0.667355, -3.527637, -0.984312, -1.048900, 0.202127, 0.819740, -1.334814, -0.070994, -2.014429, 0.361486, 1.130946, -1.602990, 0.000375, -1.476401, -0.935506, -0.353213, 1.010574, -0.942318, 0.950611, 0.764468, 0.695908, -0.623897, -0.458631, 1.035566, -1.608659, -1.857964, 0.698215, -0.010384, 0.651333, 1.090681, 1.635870, -2.248759, 2.289357, 1.205925, 1.089136, 0.065225, -1.380599, -0.387291, -0.513308, -1.740715, -0.773301, -1.163052, -0.939172, 0.082578, -1.920769, -0.092279, 0.460818, -2.234457, 0.375061, 0.277873, 1.579771, -0.894758, 0.176911, 0.798657, -1.262394, -0.318567, -1.264222, 1.332434, -1.653745, 1.659940, -1.865237, -2.056912, 0.077004, -0.578130, -2.308095, -0.302860, 0.624086, 1.000560, 1.467000, -0.104386, -1.291158, -2.436184, 0.490167, -0.329805, -1.290207, 0.136893, -0.151299, 1.218869, 0.778693, 0.088672, -0.370493, -0.177106, 0.175202, -0.231248, 0.515380, -1.190236, -0.334552, 0.021026, -0.995821, -1.295010, -1.116324, 0.811160, -0.870292, -1.672778, -0.593456, 1.443441, 0.446948, 0.452867, 1.664361, -1.341895, 0.240986, -0.436342, 1.704268, -1.324615, 0.945221, -2.050392, 2.912199, 0.494053, 1.687847, -0.013021, 0.127526, 1.051579, 1.388188, 1.653286, 0.440886, 0.346153, -0.194893, -1.179121, 0.080471, -1.478681, -0.124384, 0.185349, 0.042733, 0.608128, 1.920044, -0.333860, -0.033559, 1.288794, 0.568745, -0.601229, -1.724765, -0.158642, -0.753548, 0.411068, 1.313829, -0.555419, 0.642677, -1.193577, 0.321132, -0.413717, 0.821574, -1.962753, -2.132265, -0.524618, -0.433854, 0.165799, 0.927373, 1.492068, 0.537762, 0.649336, 0.569878, -0.321524, 0.967405, 0.338689, -0.238759, 0.496493, -2.441943, 1.996752, 0.991112, 0.039014, -1.018100, -2.082364, -1.607005, -0.071409, -0.580939, 1.907665, -0.776569, 2.208256, 0.017919, 1.100528, 0.517153, -0.090844, 1.060116, 0.569297, -0.304519, -0.067431, -0.889586, 0.614484, -0.205404, 0.189071, 1.549247, 1.650078, -1.481414, 0.481248, 0.282041, -0.191443, 0.505036, -0.090998, -2.091541, -1.710783, 0.663430, 0.355174, 0.762291, -0.143409, 1.294493, 0.015476, 0.759706, 0.367099, 0.018843, -0.728650, 0.670583, -1.792846, 1.239986, 1.203303, -0.531529, -0.255791, -0.000355, -0.248994, -0.679766, -0.087303, -0.690944, 2.031164, -0.139140, 1.190683, 0.300215, 0.467673, 0.691671, -1.315433, 0.189585, -2.325052, 0.156303, -1.952984, 0.537005, -0.923529, -0.775256, -0.539709, 1.403758, 0.260577, 0.661433, 0.145085, -0.384894, -1.017240, -1.627399, -1.203338, -1.201718, 1.885988, -2.356426, 0.494031, -0.420237, 0.051255, 0.092339, 1.825015, 1.059425, -1.181145, 0.569534, -0.023212, 0.204816, -0.298683, -0.974444, -0.688290, 0.131769, 0.659427, -0.830690, 0.460499, 1.831640, -1.254516, 1.366628, 0.113751, 0.077125, 0.213675, 0.830589, 2.167343, -0.330955, -3.130218, 0.898353, 0.787544, -0.905263, 0.298872, -0.001970, 0.610958, 0.342370, 1.357600, -0.695130, -1.377497, -0.888876, 0.208488, 0.177307, 0.531810, 0.133495, -0.944870, 1.062205, -0.090498, -1.051363, 1.793358, 1.033854, -0.542087, 0.731653, 0.571691, -0.330579, -1.357541, -0.478325, 0.933061, 1.731145, 2.090360, -1.411629, 1.028173, 0.493643, -1.119598, 0.216493, -0.073794, -0.309202, -0.424162, -1.916224, 0.228828, -0.258099, -1.626322, 0.916342, 0.847263, -0.955396, 0.028673, -1.430828, -0.202529, -0.238464, 1.353451, 0.943183, -0.178260, 1.037155, -1.494147, 0.800795, 1.586948, -0.692738, -1.992311, -0.014793, 0.378782, 0.298682, 0.681722, 1.348960, -1.024274, 0.803142, 1.416649, 1.359811, 0.275028, 0.949459, -1.038998, -0.352822, -0.162785, -0.111768, -2.208667, -0.120801, 0.785123, -1.899193, 0.742753, -0.435845, 0.503526, -0.850572, -0.920864, -0.937710, 0.115942, -0.065955, -1.682792, -1.768431, -0.286779, 0.189624, 1.275929, -0.183378, -0.987214, -1.360563, 1.742706, 2.509756, -0.027711, 0.573839, 0.787127, -1.858311, 1.299002, -0.128850, -0.610663, 0.843929, -0.062417, 0.863325, -0.085206, -0.351954, 1.739607, -2.504574, -0.896298, 1.701456, -0.050931, -1.881217, 1.616482, -0.482369, -1.394796, -0.041055, -0.859732, 0.325654, 0.524310, -1.166517, 0.432988, 0.207665, -2.117461, -1.600686, 0.613088, -0.332504, 1.597860, -0.365008, 0.175404, -0.417082, 0.982976, 0.675928, -0.171601, -0.481248, 0.560674, -1.444848, 0.788258, -0.402086, 0.011922, -1.333007, 0.326771, 0.249193, 0.574481, -0.352502, 1.395494, -0.461596, 0.822688, -1.617339, 0.058780, 0.652375, -0.360354, -2.080351, 0.952601, -0.837369, -1.335315, -0.582457, -0.725704, -0.736837, -0.891244, 0.576048, 1.019237, -1.325011, 0.508911, 0.730365, 0.043901, -1.410119, -0.079602, -0.143578, -0.217001, 1.783046, -0.833245, 0.684810, -0.460381, 0.605139, 0.303966, 0.920487, 0.865388, 0.871592, 0.868629, 2.036801, 1.348196, 0.713841, 0.456392, 1.632854, -0.644074, -1.069048, 0.181974, 0.374629, -0.405599, -0.316621, -1.517407, 0.046311, -0.522704, 0.146426, -0.819076, 0.534937, -0.681408, -1.548025, 1.521171, -1.032147, 0.120204, -0.157576, -0.330034, -1.335280, 1.551339, 1.018876, -1.583021, 0.728387, -2.541262, 0.760436, 0.788721, -0.114877, -0.337016, -0.531941, 1.012118, 1.881705, -0.392592, 0.260281, -1.752325, -1.128482, 0.148766, -0.099091, 0.353457, -0.996570, -0.161375, 0.528342, -0.303480, 1.929400, 0.799600, 0.573743, -1.254646, 1.702658, -0.134820, 1.186657, -1.662686, -1.583298, -0.874662, -0.209792, -0.291872, 1.698716, 2.325266, 0.521890, -1.472887, 1.142520, -1.312554, -1.397017, 0.260880, 0.705056, 0.134479, 1.996535, -1.591174, 0.374104, -0.885840, -0.385429, -0.964313, 0.489072, -0.065803, -1.330338, -0.914240, -0.857496, -0.109447, -0.927463, 1.819203, -0.155816, 0.454896, 0.712746, -0.417292, 0.311138, 0.197462, 1.205566, 0.648917, -0.755831, -2.616862, -0.163157, 1.237701, -1.230158, -0.016490, -0.637669, 0.465496, 0.001832, -0.143131, 0.705141, -1.023242, -1.268311, 0.381315, 0.841478, 0.293367, -0.782445, -0.756819, 0.592478, 0.364340, 0.918993, -1.262358, 0.664348, 0.304306, -0.560838, 0.027819, -0.366784, 1.045292, 1.412022, 0.708641, 2.108564, 1.287159, 0.591160, -0.302547, -0.585347, -0.585575, 0.006980, -0.903736, -1.349664, -0.700131, 1.001958, -2.518805, 0.167720, 0.657626, 0.312682, -1.384503, -1.132080, 0.485172, -1.407931, -0.835635, -1.141446, 0.963320, -1.220829, 1.045625, -1.488148, -0.229424, -1.416775, 0.733098, -1.353227, 1.484108, -1.001539, 0.399988, -2.312788, 0.141654, 0.279016, 0.359828, 0.291394, 0.436174, 0.740175, 0.788727, 0.075608, 0.218465, 0.818498, 0.410584, -0.552661, 0.464544, 1.005693, -1.013873, 1.999746, -0.424312, -0.732459, 1.196663, -1.775183, -1.129266, -0.998833, -0.431410, -0.776909, 0.006672, 0.562266, 0.140724, -0.197857, 0.331699, 0.422590, 0.568836, 0.671404, -0.136716, 1.271331, 0.079040, 1.413950, 0.556110, -0.669662, -0.350413, -0.076738, -1.461412, 1.384252, -0.121194, 0.574469, 0.639011, 1.118204, 0.995114, 0.641265, 0.132009, 0.411010, 1.086222, -0.787708, 0.313102, 1.534390, -1.489901, -2.595364, 0.374673, -1.182831, 1.544350, -0.136823, -0.698017, -0.607790, -0.563755, 0.230661, -0.114301, -0.618625, 0.049853, 0.206117, 0.702277, 0.671852, 1.904894, -0.743612, 1.052593, 0.355758, 0.996889, -0.787670, -0.141536, -1.666204, 1.784780, -0.360527, -0.111677, -1.495615, 1.082809, 0.239898, -0.442906, -0.235109, 1.110178, -0.822740, -0.133057, 0.435325, 0.472139, 0.638112, -0.340802, 0.829507, 0.482909, -0.061095, -1.193948, -0.046133, -0.298780, -0.203912, 1.019176, -0.566364, -1.467158, 1.190117, 0.443801, -0.460225, 0.907993, 0.467284, -1.487065, 2.425051, 0.981015, -1.344281, 0.481750, 0.065548, -1.250557, -0.678110, 0.384018, 0.040002, 1.665672, 1.390966, 0.847474, -0.019644, -0.443412, -0.284247, 0.408083, 0.861682, 0.143609, 0.200291, -0.091713, -0.220923, -0.438046, -0.060802, 1.797990, 0.516717, 0.216150, 1.730818, 0.534644, -0.813614, 2.036968, -1.081348, 0.101518, 0.595408, 1.428694, -0.681440, -0.633095, -0.067956, 0.637223, 0.314772, -1.136123, -1.453235, -0.999856, -0.636267, -0.154853, -0.132758, -0.524910, -0.413373, -0.533090, -0.009956, 0.585465, -0.025168, 0.372844, -0.852343, -0.710855, -0.161087, -0.106839, 1.096798, -0.139601, 0.519056, 0.296049, 0.392487, -0.405439, 0.147789, 0.193749, 1.401156, -0.734772, -0.107948, 1.605380, 0.104968, -0.422602, -0.777041, 0.097238, -0.786663, 0.257706, -1.290495, 1.498422, -1.034299, 0.637373, -1.815397, -2.048041, 1.175819, -1.321941, 0.003204, 0.571317, -0.020497, 0.647902, 1.045323, -0.633302, -0.303898, -0.756791, -0.535225, 0.257244, -1.160991, -1.097740, 0.821813, -1.143465, 0.367682, 0.736349, -0.594280, -0.104580, 1.026055, 0.917265, -0.204418, 0.307431, 1.100862, -1.032685, 0.513092, -0.127439, -1.795178, 0.110245, -0.171046, -1.159945, 0.138175, 1.005968, 0.451161, -0.365544, -0.237846, -1.096985, 1.616921, -0.057506, 0.480996, 0.073631, -1.042372, 0.257152, -1.713247, -0.451949, -1.209089, 0.080691, -1.942874, 2.342692, 2.698232, -0.873547, -0.849517, 0.041467, 0.769473, 0.882044, -0.388577, 1.141990, -0.269912, -0.659595, 0.952904, 1.648635, -1.364752, -0.389308, -0.998666, -1.255390, -0.910889, -1.814911, -1.248577, 0.409798, 0.430065, 0.204084, -0.257947, -0.882907, -0.606953, -0.364158, -0.116928, -1.727485, 1.094589, -1.583883, 0.275217, 1.427145, -0.785385, -0.479235, -1.862024, -0.665783, 0.583499, 0.571398, -0.418106, -2.161863, -1.477446, 0.530406, -0.969047, -1.540887, 1.313533, 0.393603, 0.739096, 0.122418, -1.559744, 1.223960, 0.458846, 1.578485, 0.517954, -0.684393, -0.125996, -0.763663, -0.327630, -0.473866, -0.816504, -0.202052, -0.295117, 0.518002, -0.557734, 0.457844, 0.830280, -0.635566, 1.040560, -0.777955, -0.173942, 1.855183, -1.757794, 0.421589, -0.055937, 0.884173, -1.334001, 0.421763, 0.273419, -0.168015, 0.605136, 1.488071, -0.275083, 0.379397, 0.403700, -0.061764, 0.339857, 0.504642, 1.650509, -0.345053, -0.261294, 0.597117, -0.351792, 0.304133, -0.279741, 0.102362, -1.167461, 0.766256, 0.764644, 0.433666, -0.345296, -0.624376, 1.427717, 2.154486, -0.143827, 1.928755, 0.031296, 0.182007, 1.531425, 0.252431, -1.038667, -1.353779, -0.404474, -1.818243, 0.484782, 1.430379, -1.886377, 2.537169, 0.064042, -0.699539, 2.435627, 0.790189, -0.551094, 0.598359, -0.559784, 0.011286, -0.724970, 0.774402, 0.064860, 0.331265, -0.131036, -1.218105, 0.321921, 0.302713, 0.000870, 0.414696, 0.762788, 0.205052, 0.701044, 0.153276, 0.286723, 1.738822, -1.576476, 0.825534, -0.356657, -0.320160, 0.306882, -1.225395, 0.791589, 0.308400, 0.903629, 1.263457, -0.329563, -0.560733, -0.568888, 0.500984, 0.324989, 1.538370, 0.302471, 0.056957, 0.788040, -2.308721, 0.352296, -0.180490, 0.558103, 1.132525, 0.872064, -1.893678, -0.395341, -0.418926, 0.379508, 1.203501, -1.386672, 0.040549, -0.624092, 0.842019, -1.006843, -1.550552, -2.426134, -0.378154, -0.098406, -0.035565, 1.493141, 0.644917, -1.433892, 1.209951, 2.090833, 1.332629, 0.070709, 0.290186, -0.118776, 0.518135, -0.726204, -1.063034, 2.350941, 0.692363, -1.412961, 0.764082, -0.046269, 0.905475, -0.187353, 1.153199, -0.069834, 0.254013, -0.922581, -1.785706, -0.561326, -0.226021, 1.481277, 0.056705, -0.792192, -0.787747, -0.310655, -0.487953, -0.266872, -1.206300, -0.309148, 0.171846, -0.270655, 1.219158, -1.363111, 0.166464, 0.114144, 0.478354, 1.160402, 0.469235, -0.653176, 0.808511, 0.285775, -0.212631, 0.293289, 1.425705, 0.576202, -1.441844, 0.426328, 0.543491, 1.350556, -0.158943, 1.055269, -0.198036, -0.351125, -1.079552, -1.893802, 0.432161, -0.133249, 0.302658, -0.351570, -1.234667, -0.626159, -0.664196, 1.037593, 1.155569, -0.522709, -1.077202, 1.002297, 0.585420, -0.217901, 0.198175, 0.318026, 1.768833, -1.058664, 1.492809, -0.302124, -0.421800, -0.678741, 1.878892, -0.774489, 0.755585, -0.106241, 0.904974, -0.504471, -0.829184, 0.555512, 0.585367, -0.191608, 1.262370, -0.277712, 1.431052, -0.508953, -1.756781, -0.001432, 0.495361, 0.342478, -0.805958, 0.946354, 0.186571, 1.636587, -0.219186, -0.406737, -1.108580, 0.139791, -0.493492, 0.347928, -1.138091, 0.741415, -0.353863, -1.019975, 0.595426, -0.611289, 1.147716, -1.071537, 0.350685, -0.640571, 1.872764, 0.735030, 1.654490, 0.034209, 0.850442, 0.765857, -0.620457, -0.015989, 2.013378, -0.022775, 0.099577, -0.697340, -2.879510, 0.372183, 0.243963, -0.043717, -1.029111, 0.336166, 0.127513, 0.019005, -1.102317, 0.491639, 1.571659, 2.176620, -0.012573, 2.280913, 1.064391, -0.324564, 0.832812, 0.078775, 0.020725, -0.159046, -0.028331, 0.715936, -0.096145, 0.579009, 0.053481, -0.164582, 2.100804, 0.972980, 1.361413, 2.197529, -0.816555, -0.157454, -0.318873, 1.079657, -0.314151, 0.054441, 0.222260, 1.165442, -0.298025, 0.144725, 0.784585, 0.199756, -1.003200, 0.888169, 0.654144, 0.934175, 0.103473, -0.640708, 1.178961, -0.304657, 0.887440, 2.279331, 0.453346, 0.603411, -0.531799, 0.130137, -0.565762, -0.134563, 1.156452, -0.288235, -0.852428, -0.194860, 0.777655, 0.334638, -0.437264, 1.376237, -0.992949, -1.716769, -1.366388, -0.315270, -0.490887, -0.127992, 0.841555, -0.251131, 0.671576, 0.302325, 1.012264, 0.123762, -0.127324, -0.968504, -1.480337, -0.746352, -0.531919, 1.302861, 0.831615, -0.182994, 1.218896, -0.080928, 0.723429, -1.217126, -1.356633, 1.432953, -1.152604, 0.106947, 1.471100, -0.181404, -3.568440, -0.316173, 0.435846, -1.916468, -1.512657, 0.009091, 0.426266, 2.402625, 1.567715, 1.496022, -1.168769, 1.047770, 0.179737, -0.348029, -1.098742, -2.063512, 1.027799, 1.780596, 0.612523, -1.574373, 2.524835, -1.374561, -0.778436, -0.957637, -2.054949, 0.145749, 0.175394, 0.505519, 0.977582, 0.345112, -2.037111, -0.927995, -1.212412, 0.223951, -0.989434, -1.294394, 0.242332, -1.101422, 0.008829, 2.642361, 0.601457, 0.511484, 1.104965, -0.740049, 1.032274, 1.521340, 0.418595, 0.186579, -0.254883, 1.787646, -1.254245, 2.032933, 1.517695, -3.545144, 1.183899, -0.270412, 0.487055, 1.166276, -0.438415, -1.514135, -0.554513, -0.617940, -1.687389, -0.227842, 0.106053, 2.023804, -0.363783, -0.996351, 1.135031, 0.936972, 0.565574, -0.095137, 1.578855, 0.446448, -1.758693, -0.473102, 0.426665, 0.593770, 0.236990, -0.408046, 0.421205, 1.228682, 0.012840, -0.083265, 0.476912, 0.923252, -0.467840, 1.300762, -0.556500, -1.642052, 1.630240, -0.708485, -0.633587, -0.762091, -0.508881, 0.398978, 0.447225, -0.830081, 2.413004, -0.451778, 0.526217, 0.909779, 1.075033, 0.831975, 0.446355, 0.287110, -0.845184, -1.169920, 1.174785, -2.768360, 0.957603, 0.324926, -1.586653, -0.290031, -0.083768, 0.382290, 1.231667, 0.136754, 0.297569, 0.574737, -1.223524, 0.300898, -1.867978, 0.650859, -0.201653, 0.144520, 0.749572, -0.326839, 0.139823, 0.148926, -0.838488, -0.730101, -0.449120, -2.092322, -1.563825, 1.270334, -0.294818, 0.328440, 2.064492, 0.804310, -0.095004, -0.131517, -0.188995, -0.716594, -0.249630, -0.399271, 0.062273, 0.197774, 1.688540, 0.560332, 1.966268, 1.862716, 1.274138, 0.853900, -0.409317, 1.301466, -1.221812, 0.588668, 0.512362, 1.194384, 0.354985, -1.861071, 0.853644, -1.465980, 0.553109, -0.618291, 0.463894, -0.929551, -1.479010, 1.760136, -0.877305, 0.483413, -0.574642, 1.050095, -0.762708, -0.920617, 1.307727, -0.324027, 0.306300, -0.430994, -0.632565, -0.319898, -1.390639, 0.527508, 1.719242, 0.060705, 0.347969, 0.894917, -0.202357, -0.230826, -0.811858, 2.757146, -0.234030, 0.955649, -0.304265, 1.015319, -1.160955, 0.469541, 0.508901, 0.670137, -0.957369, 1.033738, -0.481820, 0.869655, 0.535868, -0.018482, -1.741288, 0.293051, -1.637447, 0.388526, -0.228709, 0.372566, 2.362631, -2.146944, -0.713169, 0.592027, 0.787872, -0.162650, 1.708984, 1.409063, -1.025890, 0.841282, 0.405074, 0.801964, -0.327892, -1.275438, 0.926400, 1.357385, -0.073323, -0.485023, 0.021156, 0.243930, 0.091909, -0.068057, 1.403117, 0.467883, 1.400371, 0.805564, 1.889632, -0.118338, 1.764054, -0.736752, -1.122008, -0.377373, 0.009527, -1.623898, 0.836203, -0.363454, -0.640454, -1.875459, -1.092256, -1.441671, 1.558256, -0.750560, -0.373675, 0.865361, 1.234995, 1.125266, 0.395811, -0.022773, 0.197167, 0.007381, 0.923891, -0.831439, 0.226626, -1.099458, -0.926198, -1.339785, -1.544265, 0.580473, -0.285662, 2.265238, -0.139878, 0.789782, 0.579527, 0.168491, 0.422958, 0.186334, 0.372643, -0.812192, -2.483223, -0.916413, 0.259543, -0.433709, 0.727875, -0.208566, 0.240940, -1.575465, -1.074365, -0.254755, 0.045610, 0.746528, 0.374914, 1.528220, -0.341982, -2.043488, 1.321139, -2.265050, 1.655388, 0.682077, 0.991440, -0.027207, 1.412758, 0.151436, 0.369345, -0.590194, -1.095364, -4.028951, 0.159493, -0.166382, -0.298497, -0.057245, -0.620391, 0.338155, 0.659787, -0.863450, -0.429374, -0.414803, -0.156152, -0.683025, -1.155642, 0.950042, -1.293040, -1.672338, 0.717449, -2.059910, 1.487892, -1.812863, 0.278829, -0.120026, -0.717550, -0.731674, 0.433853, -1.116572, -0.840175, 2.280801, 0.609194, -0.992410, 1.731396, -0.473380, 0.932571, -1.212812, -0.081151, 1.184658, 0.611622, -0.938133, 0.275685, -0.481444, 0.541503, -0.432204, -0.232005, 0.614604, -1.562121, -1.478809, 0.076820, -0.402272, -0.762268, -0.013962, -0.380914, -1.118065, -0.343008, -1.202855, -0.710815, 0.398142, 1.036885, 0.041031, -2.082236, 1.602139, 0.876305, -1.633099, -0.288876, 0.916554, -1.215253, 1.698726, -1.858373, -1.112238, -0.450475, 1.107043, 0.388873, -1.135089, -0.927723, 0.999405, 0.014627, 1.744954, -0.238647, -0.972019, 0.559564, 1.442079, -0.196181, 0.891297, -1.127344, -0.902923, 1.016003, -2.524766, -1.043598, 1.100892, 0.217631, 1.653156, -0.422902, -0.076812, 1.116328, -0.349129, 0.877345, -0.715883, 0.722114, -1.184385, -0.439747, 0.143207, -0.267721, -0.091531, -1.265011, -1.159084, -0.788831, -0.468603, -0.421225, 1.402885, 1.165097, 0.864080, -1.194031, -0.895374, -0.461266, 0.254826, 0.973134, 0.038159, -0.167948, -1.066567, 0.435731, 0.768859, 1.089454, -0.147396, -1.752767, 0.413201, 0.120852, -0.228817, -0.547546, 1.313816, 0.883920, 0.198701, -0.954609, 0.892256, 1.188296, -0.127875, 0.281723, -0.730584, -0.515162, -0.576808, -0.669400, 0.747251, 0.922279, -0.451017, -1.312547, 0.488410, -0.015164, -0.630987, 0.244804, -0.023600, -0.110172, -1.688636, -1.099755, -1.264311, 0.605284, -1.047630, -2.270113, -1.160437, 0.188070, 0.929694, 1.638460, -0.407882, 0.553695, -0.133639, -0.752260, 0.000383, 0.027980, 0.374554, -0.805770, 0.326732, -0.811344, -1.801671, -0.882372, -0.308596, -0.745292, 0.369921, -0.389137, -0.139044, -0.982609, 0.673312, 0.709306, 0.836314, 2.148085, -0.919646, 0.987193, -0.713852, 1.128606, 1.217113, -0.448392, -2.102051, -0.990894, -0.444901, 0.141034, -1.249807, -1.233114, 1.871157, 0.213236, -1.498692, 0.977776, 1.237016, 0.619078, -0.648968, -0.534807, 1.062609, -0.941795, 0.570307, 2.201882, -0.750764, 1.029423, 0.593815, -0.183899, -0.391740, 0.691329, -2.525548, 0.075094, -0.541265, 0.199680, -0.548531, 0.365055, 0.991206, 0.809004, 0.578658, 0.060022, -0.096914, 0.296141, -0.135291, 0.710508, 0.197356, 0.245742, -1.228728, -1.098207, -2.686509, -1.169829, 0.597920, -0.632502, -0.139874, -0.400868, -0.011230, 0.599821, 0.382221, 0.048743, -0.525958, 1.026595, 0.601787, 1.415860, 0.129519, 0.708026, 0.435735, -2.330690, -0.389387, 0.776127, 0.584931, 2.257942, -1.515005, -0.511448, 0.303596, 0.595484, 1.656856, -0.771827, -0.994817, 1.422932, 1.332034, -0.149090, -0.265294, -0.397469, 0.379033, 1.694423, 0.447997, -1.570153, -0.089158, -0.086017, -0.967446, 0.067988, 1.695774, 0.701273, 2.164411, 0.463189, 0.903775, 0.511064, -0.401185, 1.571891, -2.644824, 0.016108, -1.617177, 0.322496, 0.000156, -1.160804, -0.139238, 0.773385, -0.098137, 0.260448, -0.053990, 0.698565, 0.577274, -0.294196, -0.941537, -1.247872, -1.111137, -1.100471, 0.323913, 1.138807, 0.514017, -0.239844, 1.716664, 0.955563, 0.086412, 0.091778, 1.886840, -0.134974, -0.412190, -1.321164, -0.014370, 0.441097, -0.275041, 0.776471, 1.532128, 0.009101, 1.068483, -0.324029, 0.726338, -0.363590, -1.251564, -0.151983, -1.621185, 0.603166, 0.472064, -1.021529, -1.300062, 0.117378, -0.221013, 0.826730, 0.258223, -1.540108, -0.299465, 0.389069, 1.826519, 1.375158, -0.610503, -0.640270, -2.128700, -1.361019, 0.304397, 1.268630, 1.982280, 2.374999, -1.582392, -0.859749, 0.202352, -0.311795, -0.123896, 0.191879, 0.058069, 0.558738, 0.520384, 0.004194, -0.602771, 0.142611, -0.054142, -0.357365, 0.969687, 0.361977, -0.196208, 1.106786, -0.627201, -1.801704, -0.782003, 0.155789, 0.041914, 1.272822, -0.090475, -1.188388, -0.233435, -1.427323, 2.346176, -0.142670, -0.266223, 0.008481, 0.723429, -1.186255, -0.008313, -1.798804, 0.570339, 1.121206, -0.364187, 0.054683, 0.422579, -2.383863, 0.265590, 0.846815, 1.370411, 1.080774, -0.085602, -0.474165, 0.257208, 0.617063, -0.582138, 1.476125, 0.650199, -0.733512, -0.556780, 0.028073, 0.408167, -1.229586, 0.676080, -0.981668, -0.143881, -1.260435, -0.672088, -0.400708, -0.762909, 0.841157, 0.584557, 0.514956, 1.394566, 0.871759, 0.435483, 1.880680, 1.308004, -0.430115, 0.690599, 0.741397, 0.758247, 2.519149, 0.634506, -0.317702, -0.560100, 0.300683, 0.412415, -0.188594, 0.221788, 0.763854, 0.138656, -0.309080, -0.223011, -1.008753, 1.995117, -1.077216, 1.147962, -0.118815, -1.661076, 1.628467, 0.283830, -0.556320, 0.478977, 0.191957, 1.100823, 0.210399, 1.011432, -0.092414, 0.659339, -0.723105, -0.415904, -0.033294, -0.897675, -1.369242, -0.355525, -1.128827, -0.753842, -0.125666, 1.182246, -0.477374, 0.802720, -0.339999, 0.507273, -2.108042, 1.246653, -1.355852, -0.072143, 1.443943, 0.960883, 2.195333, 0.602771, -0.970382, 0.647908, 0.128111, 1.487054, 1.909764, 1.827573, -0.343491, -0.326354, 1.239794, -1.149675, -0.388032, 0.474306, 0.931638, -0.165641, 0.302087, -0.050422, -1.193716, -0.732192, 0.660223, -0.639095, -0.872254, 0.949212, 0.575310, 0.867402, 0.522579, 0.407141, -1.567226, -0.792121, 1.232461, -0.077620, -0.046321, 0.421619, 1.094008, 0.829440, 0.212569, 0.523233, 0.873317, -0.599018, -0.787512, 0.913969, -1.591831, 0.360243, 0.088424, -0.626259, -0.550966, -0.004342, 0.285390, -2.558359, -0.298232, -0.596415, -0.584835, -0.399839, 0.145515, 0.553095, -0.391628, -0.534985, 0.407951, 1.708183, 0.883380, 0.049504, -0.461170, -1.496085, 2.129611, 1.130048, -0.381561, 0.184587, -0.020660, -0.257374, 0.792080, -1.234028, 0.520797, 0.656905, 0.857286, 0.021623, 0.608729, 1.949707, -0.081103, -0.291643, -2.045269, 1.410216, -0.762949, -0.374732, 1.181215, 0.858358, -0.084233, -2.348849, 0.000924, 0.376552, -0.658585, -0.636248, -0.728522, 0.990217, -2.061188, -1.423783, -1.120863, 0.137497, 1.061472, 2.002100, 0.309031, 0.922598, -0.642286, 1.010850, 1.215770}, - { 0.506871, -1.028086, 0.333454, -1.819913, -0.932727, -0.734647, 0.436107, -2.435479, -0.102241, -1.142667, 0.344360, 0.493277, 1.356089, -0.638260, 0.525237, 0.191718, -0.384910, -0.100187, -1.245053, 0.817766, 0.073222, -0.900262, -0.809003, 1.168447, -0.341697, 0.110161, 1.084642, -0.207496, 1.277462, -0.495653, 0.506607, -1.644226, 0.101372, 0.951081, 0.714621, -0.213582, 0.416974, 0.267479, -0.558939, 1.162816, 0.595401, 2.163417, 0.128427, -0.988476, -0.779671, 0.651281, 1.248581, 1.208375, 0.783666, -0.518446, 0.918311, -0.837449, 0.817109, -0.848641, -1.517951, -0.653286, 0.857924, -0.550692, 1.739208, 0.525253, 0.876505, 0.053974, 1.003027, -0.348235, 0.432844, 0.330946, -0.872178, 0.193459, 0.873235, -1.114055, -0.474327, -0.350354, 0.564311, 0.702254, 1.388021, -1.034526, -2.131092, -0.179557, -1.019807, -0.863690, 1.087397, -1.333162, 1.035943, 0.232971, 0.235359, 2.487620, -2.392188, -0.491525, 0.057287, 0.111865, 1.159882, -0.291180, -0.610021, -0.926663, -1.293061, 0.457060, -0.210178, 0.146676, 0.055559, -2.348365, -1.118778, -0.561984, 1.968548, -0.924064, -0.277752, 1.962906, -1.413839, -1.280119, 0.365970, 1.126217, -0.818652, 0.293583, -0.429567, -0.800594, -0.613970, -0.435983, -0.518738, 1.398532, 1.074233, 1.203743, 1.224673, -0.073099, 0.472020, 0.866863, 1.174188, -0.365996, -0.328835, -0.838208, 1.231001, -0.977838, -0.924533, 1.105622, 0.119830, 2.386402, 0.014295, 0.259958, 0.578555, -1.384730, 1.941279, 1.256005, -0.582506, 0.528746, 1.083225, 0.345880, 1.191796, -1.093438, 0.416329, -1.044629, 1.157839, 0.190983, -0.535723, 0.315568, 2.768559, 0.229484, 0.530878, -0.070951, -0.472648, -1.314054, 1.251120, 0.065611, -1.787489, 1.533268, -0.143985, -0.083775, 1.695184, 0.781711, 1.401290, -1.462094, -1.498528, 0.818587, 0.232110, -2.752134, 1.074952, -0.265990, 0.027901, -0.326848, -0.266229, 0.394909, 1.286935, 1.903423, 0.856421, -2.996159, 1.053779, -0.133058, -0.417529, 1.325012, 0.829651, -0.157210, 0.483997, 1.605611, -0.363794, 1.154716, 0.907180, 0.689966, 1.813809, 1.167121, -0.880650, -0.829636, -0.610522, 0.666763, -1.207582, -0.502017, -0.035137, -0.252211, 1.918513, -0.735611, -1.137445, -0.018183, -0.072106, 1.910286, -2.254370, -1.206579, -0.390499, 2.195765, -2.016397, 1.479767, 0.373619, -0.207920, -0.121880, 0.800550, 0.960348, 1.111823, -0.144936, -0.561242, -1.075166, 0.575082, 1.688228, -0.554783, 0.056927, -0.242473, 0.998442, 0.757760, -0.598126, 0.219568, 0.291908, -1.253682, -0.315116, -1.430570, -1.295462, 0.981643, -0.911552, 2.184510, 1.388381, 0.680599, -0.128096, 1.229210, -0.296642, 1.051676, -0.737744, 1.661701, -0.158732, 0.233756, 0.642761, -0.014594, -0.125602, -0.113192, -0.259449, -0.128961, 0.041865, -1.263608, -0.275140, -1.805762, -0.974947, 0.689844, -0.093764, 1.393099, 0.139042, -2.776862, 1.327671, -0.891649, -0.306699, -0.056004, 0.371399, 2.118679, 0.756505, 0.530864, 1.945587, -1.016823, -2.678065, 0.886110, 1.478257, -0.021938, 0.670166, 1.511554, 0.257807, 1.080266, 0.085661, 0.475338, 0.619186, -0.784234, 0.244970, -0.633055, -2.021925, -0.157997, 1.498005, 1.403562, -0.525906, -1.365122, 0.090063, -0.523221, 0.406834, -0.196108, 2.293954, 1.449968, 1.096979, 0.221007, -1.271333, -0.299820, -0.156128, -1.472537, 1.473026, 0.429491, 0.361121, -0.837088, 0.827901, 1.341356, -0.269251, 0.523660, -0.229372, -0.742076, -0.908911, 0.166586, -0.635219, -0.251923, 0.621899, -0.033928, 1.182387, 1.154744, -0.155309, 1.106757, -2.055408, 1.394407, 0.949440, -0.802971, 0.922736, 1.729809, -0.354811, 0.069899, -0.206281, -0.291407, 0.229849, -0.760588, -0.617826, -0.919752, -0.052122, -1.800281, 1.319551, 0.099214, 0.530939, 0.406997, -0.507261, 0.650796, -0.846924, 0.672875, 0.776650, 2.675063, -0.376680, -0.388394, 0.350965, 0.933035, 1.701591, 1.521972, 0.895261, 1.050842, 1.440968, -0.574800, -1.059955, 0.975209, 0.989358, -0.342347, -1.632231, 0.677422, -0.553473, 1.199497, -1.325147, -0.592882, 2.101669, -0.454906, -0.908048, 0.248221, -0.159892, -1.605081, 0.325971, 0.324244, 0.084135, -1.540794, -1.990782, 1.635770, 1.414592, -2.063030, -0.327807, 0.347032, 1.708667, -1.981109, -0.820924, 1.699660, -0.257613, 0.418403, 0.583817, 0.591380, 0.369215, -0.062806, -0.486724, 0.112751, -0.210611, 2.228692, -1.228723, 1.476886, 0.394358, -0.494808, 0.179041, -1.474099, -0.265910, -0.107076, 0.634432, 0.116593, 2.213573, 0.133815, 0.198002, -0.228198, -2.432275, 1.383376, 0.584339, 1.779321, 0.515977, -1.095016, -1.850108, 1.844631, 0.886836, 0.043783, -0.809067, 0.340003, 0.760413, 1.594715, 1.620687, -0.382691, -0.692038, 0.153532, 0.306218, -0.175919, 0.594845, -0.098605, 0.362574, 0.457859, 0.079462, 0.611952, -1.281256, -0.281107, -1.356612, 0.209347, -1.704631, -0.444404, 0.149201, 0.185288, 1.238491, 0.644852, 1.037144, 1.294864, 1.172776, 0.236729, -1.648224, 0.121968, 0.464514, 1.458154, -0.361933, -1.028064, -0.584922, 0.681206, 1.354488, 0.330542, 0.371674, 1.762697, -0.392456, -0.351427, 1.375817, 0.229419, 0.401568, 0.607066, -0.147476, -2.140150, 0.940149, 0.180005, -0.204660, -0.061595, 0.853025, -2.095792, 0.374727, -0.670594, -0.586398, -0.352146, -1.959643, -0.130573, 0.188901, -0.050050, -0.245464, -0.100226, -0.336154, 1.337047, -0.022380, -0.206537, -2.316825, 1.811419, -1.213860, -0.086513, 0.907867, 0.504951, 1.552537, 0.731573, 0.359746, -0.295048, -0.319915, -0.956043, 0.231407, -1.471618, 0.879083, -0.517082, 0.989525, -2.106552, -2.004617, 0.579055, -1.063423, -0.687609, -0.487427, 1.725849, 0.215699, 0.331319, 1.364488, 0.023214, 0.939430, 0.313982, -0.172831, 0.551678, -1.424885, 1.575445, 0.611882, -0.573376, 0.021266, -1.169879, -0.910127, -0.116495, -0.836225, -0.886003, -1.668261, 0.232375, 2.032125, -0.784490, -0.185926, 0.415972, 1.294493, -0.842082, 0.493804, 1.545032, 0.017830, -1.348155, 0.019232, -1.079451, -0.432134, 0.337105, 0.069256, 0.795754, -0.913074, 0.800524, -0.690408, -0.932996, 0.439641, -1.472380, -0.830286, 1.298978, -0.143003, 0.394168, -0.027879, -0.594239, -0.554857, -0.489994, 1.941572, -0.843086, 0.317650, 2.585401, -0.616249, -0.323175, 0.143159, -1.212935, -0.945922, 0.702520, 0.129841, -0.157044, -0.278909, 0.774934, -1.450155, 0.500172, 0.919218, -0.918897, 1.549385, -0.876927, -0.522283, 0.621508, -0.950915, 0.498941, 2.595968, -0.439244, 0.792227, 0.563457, 0.974904, 0.630945, 0.231264, -0.316774, -1.000644, -0.165804, 2.867201, -0.038242, 0.198213, -0.137874, 1.900393, 0.581758, -0.416139, 0.042761, -1.273061, 0.320319, -1.478072, -1.566672, 1.625317, 0.921591, -0.442340, -0.594859, 1.362286, -0.595977, 0.842920, -0.838669, -0.030282, 0.682832, 1.626037, -0.571340, -0.072957, -0.143661, 0.424387, -0.954722, -1.810794, 0.852989, 0.453505, 0.494626, -0.293041, 0.106772, 0.367856, 0.659164, 0.049241, 2.415543, 1.293567, -0.259524, 1.171583, 0.963811, -0.538546, 0.582951, 0.080358, 1.011190, 0.234570, -0.906878, -0.385064, 0.284654, -0.563148, 0.841669, 0.052451, -0.471298, 0.625580, 0.413415, 0.639706, -1.003508, -0.841501, -2.666129, -2.569904, -0.054244, 1.332208, -1.322868, -1.716580, 0.480922, -0.346452, 1.401289, 0.168639, -1.664780, 0.097196, 1.241899, -1.171405, 0.307442, -0.046475, -0.200474, 1.518368, 1.661219, 0.709184, 0.076947, 0.309252, -0.112947, 0.857385, -0.773066, 0.251622, -0.293660, -0.150191, 1.066686, -1.313290, -0.380943, 1.175184, -1.119341, -2.330105, 0.091631, 1.811531, 1.816462, 1.323631, -0.248926, 0.519820, -1.497895, -1.427420, -0.894503, 3.141955, -0.782951, 0.720175, 0.297401, -1.202899, 0.403146, 0.268448, -0.440790, 1.277633, -0.404780, -0.922715, -0.315402, 1.040566, 0.284810, -1.648353, 0.310636, -0.515322, 1.432741, -0.203496, 2.212134, 0.541273, 0.799907, -0.881617, 0.498619, -0.852932, -0.606683, -0.412065, -0.174265, 0.525445, 0.735102, 1.053567, 0.856562, -0.699227, -1.290829, 1.154974, 0.098077, -0.317221, -0.044988, -0.478438, -1.559106, 0.478874, 0.842738, 0.990144, 0.204637, 0.069872, -1.196687, -0.336675, -1.453377, 0.959646, -0.453675, -0.953995, -0.792530, 0.179286, 0.456367, -1.993210, 1.252418, 0.996201, 1.040510, 0.256077, 0.048956, -0.061825, -0.508976, 0.110576, -1.091321, 0.366939, -1.964138, 0.288748, -0.010288, -0.052438, -0.657884, -0.591872, -1.722020, 0.106935, 1.274984, -0.731850, -0.977478, 0.834308, -0.218229, -1.657773, 0.391947, 1.512284, 1.293613, 1.391057, -0.229947, -2.463298, -0.697818, 1.620220, -1.891001, -1.342276, -0.916236, -0.287045, 2.447347, -1.608303, -0.632753, -0.701817, -1.046284, 0.835508, 1.410092, -0.806470, -0.654273, -0.312000, 0.018473, 1.503586, -1.450711, -1.484290, -1.073414, 1.732454, 0.057267, -0.586281, -1.847580, -0.792489, 0.167536, -1.171918, 0.846681, 0.773065, 0.157679, -0.092978, -1.494971, 1.379326, -0.940499, 1.205699, -1.481086, 0.506050, 0.971329, -0.124867, -2.097896, 0.931591, 1.240504, 0.373941, -1.255740, -1.290441, -0.503910, -1.802223, 1.098247, -1.060801, 0.490538, 0.666955, -0.550195, -0.652218, -0.416328, 0.873299, -0.155807, -1.088966, -1.060395, -0.813621, -0.890119, 1.854597, 0.201048, -1.145748, -0.842745, -0.754172, 0.280163, 0.670149, -1.529600, 0.845964, 0.776126, 1.751540, 0.929870, -0.916049, 1.418379, -0.711054, 1.211871, 0.820014, -0.275866, 0.529241, -0.499945, 0.889727, 0.330485, -1.385394, -0.624781, 1.727812, 3.236132, 1.263788, 0.821377, 0.517941, -0.747952, -1.103399, 0.149550, -0.411932, -1.044878, 0.896470, -0.982389, -0.235136, -0.076455, 1.380224, 1.285976, -0.677620, -1.571596, 1.031534, -0.920591, 0.670592, -1.957642, 1.024900, -0.227494, -0.360212, 0.587193, -0.668121, -0.419393, 0.383979, -0.056639, 0.308851, -1.047747, 1.170383, -0.520963, 0.553909, 0.582051, -1.079941, 2.551904, -1.720110, 2.643331, -0.247719, 1.161635, -0.216542, 1.761458, -0.034812, -0.536079, 0.237921, -1.414752, -1.301362, 0.417568, 2.041728, 0.660027, 0.545726, -1.126332, 0.560860, 0.585227, 0.801462, -0.431444, 0.118115, -1.832895, -1.315447, -0.575500, 1.294888, 0.409696, 0.459431, 1.627473, -0.705610, 0.918548, 1.310587, 1.117737, 0.876004, -1.538982, -0.005994, 0.611343, -1.045217, -0.046796, -0.083676, 0.059462, -1.695141, -0.462115, -1.011114, 0.053949, 0.818080, 0.086923, -0.357674, 1.588792, 1.154733, 0.354007, -0.482375, -1.001638, 0.347242, -0.820048, -0.995227, -0.365395, 0.028502, 0.741760, -0.500802, 1.051582, 1.328797, -0.409088, 0.250948, -0.241273, -0.058813, 1.290199, 1.573330, -0.307897, 0.593547, 1.267628, 0.479333, 0.345604, 0.158933, 0.480968, -0.131331, 0.819696, -0.724365, 0.271693, 0.740934, 0.201645, 0.422690, 0.549102, -0.194907, 1.745630, 0.481871, -0.068105, 0.640891, -1.529325, -0.582696, -0.199383, -1.016337, -0.795540, -0.889001, -0.159208, -0.568989, -1.718636, -0.676042, -0.738582, -1.321692, 0.361849, -1.310735, -0.208890, 0.410868, -0.887178, 0.099447, -0.764170, 0.039897, -1.117652, -0.800166, 0.655029, -0.930351, 0.168240, -0.106752, -1.621915, 0.817746, -0.248909, 0.386667, -2.155398, 2.413433, -1.077559, -0.980679, -0.980901, -0.220881, 1.029266, -0.053464, 0.278127, -1.489136, 0.085160, 1.144071, -0.040595, 1.110302, 0.306260, 1.092719, -0.904907, 0.425772, 1.542143, 1.568737, 1.742242, 0.236294, -2.103586, 1.186467, -1.336452, -1.704430, -0.264710, 0.956143, -1.277454, 0.909651, -0.709555, 0.441285, -2.492730, 0.578628, -0.039776, 0.932590, 0.342762, 1.017311, -1.949276, 0.902927, 0.806446, -0.767128, 1.004084, 0.523543, 1.647147, 0.481824, -0.513073, 0.197556, -0.799432, 0.778539, -0.598990, 1.147692, -0.676291, -1.341436, -1.129938, 0.149855, -0.500207, -1.425462, -0.915792, -0.997488, 1.412546, -1.360756, 0.420496, 0.531553, 0.579871, 1.475505, -0.647488, 1.249395, -0.113180, 1.187444, 0.718361, -1.315768, -0.642989, 1.813761, 0.252616, 0.703685, -0.096955, 1.039348, 0.280344, -0.055094, 1.657718, -0.938784, 0.172565, 0.067420, 0.789561, -0.633658, 0.509149, 0.281715, 0.089393, 0.855006, -0.724415, 0.879228, -0.787023, -0.184318, -0.109537, 0.358242, -0.286756, -0.050717, 1.765066, 1.884827, 0.101998, 0.224162, -1.903940, -0.986853, 1.109637, 0.398010, 1.863332, -0.787027, 2.025484, 2.446731, 0.319619, 1.063879, -0.947871, 0.849518, -1.517322, -1.093576, 1.846027, 0.387379, -0.733536, 0.482120, -1.820065, -0.074766, 0.099638, 0.431822, -0.588051, -0.059725, -1.470170, 0.542445, -2.095173, -0.412288, -0.490622, -0.020717, 0.754266, -1.085695, -0.027239, -0.000256, -0.141635, 0.051191, -1.285789, -0.026179, 0.930485, 0.342043, -0.500810, -0.397122, -0.123563, 0.369116, 0.358340, 0.400340, 1.155835, 2.169096, -1.972283, -0.305014, -1.458149, -0.428184, -1.232554, -0.204267, 2.251776, 1.058856, -0.007572, 2.085565, 1.271874, 0.395161, 0.545344, -0.272638, 0.502239, -0.465174, -2.652681, 1.612404, 2.123525, 2.777124, -0.455072, 0.673251, -1.416709, 0.618070, -0.437798, -0.926230, -0.746872, 1.535608, 2.212188, 0.331347, 2.924891, -0.192770, 0.603248, -0.256141, -0.187339, -1.137936, 0.948356, -0.330431, 2.454799, -0.510886, -0.497687, 0.322173, 0.287284, -0.079310, 0.750227, -0.084722, -2.814213, 0.164766, 0.678554, 1.249843, 0.186978, 0.405097, 0.446662, 1.532967, 1.719244, -0.415792, 0.552896, 0.499597, -1.112121, 0.296269, -1.678740, 0.177937, 1.875700, 0.460890, 0.274979, 0.237006, 1.640100, 0.250203, -0.925616, -0.308156, -0.133147, 0.179228, -0.407543, -0.548646, 1.004794, -0.183196, -0.013951, 0.000581, -0.284944, -1.678542, -0.703226, -1.326370, -2.487555, 0.394824, 0.910227, 2.095461, -0.701369, -0.641264, 0.882170, 0.751649, -0.176613, 0.232415, -0.512985, -0.137294, -2.181886, -0.191429, -0.500312, 0.480463, -0.406384, 0.784873, 0.790667, -0.790792, -1.044979, -1.223992, -1.360119, 0.770312, 0.133672, -0.598479, -1.481717, -0.302640, 1.508606, -0.960015, 1.860304, 0.588767, 0.261833, 0.127649, -1.229028, 0.062990, -0.669371, 0.254091, 0.597324, -0.521907, -0.210969, -0.213732, -0.302381, -1.999495, 2.120083, -0.143616, -0.549552, -0.336638, -0.007274, -0.404452, 0.372276, 0.783185, 0.754677, -1.840979, -0.145493, -0.374200, 0.601742, -0.878945, 0.528481, -0.199148, 0.390582, 1.160950, 1.456968, -0.143279, 1.509058, 2.154591, 0.910885, 0.151467, -0.953222, 1.432171, -0.068581, 1.677911, 0.201722, 0.225224, -0.025024, 0.004803, 0.414296, -0.224015, -1.830733, 0.703402, -0.521498, -1.002795, -0.137668, -2.482194, 0.496311, 0.619543, -1.870157, -0.178087, 0.770708, 0.156051, 0.308312, -1.246587, -1.880291, 1.272365, 0.455820, 1.347884, 0.372269, -1.626357, 1.395024, -0.059604, 1.363501, -0.380455, -0.109333, -0.093111, 0.837738, 0.572406, -0.691148, -0.913825, 0.180630, 1.637246, 0.854042, 0.070308, -0.400941, 0.569554, -0.022394, 1.708702, 1.163423, -0.926487, -0.548629, 1.106915, 0.126070, -1.102774, 0.735142, -0.090377, 1.252778, 0.583071, 0.430026, 0.712146, 0.898740, 0.934713, -0.761003, 0.827986, -0.403717, 1.472393, 1.115206, -0.431013, -1.113927, 0.207012, 0.793702, -0.112140, 1.782927, 0.083311, -0.674532, 0.836910, 0.893381, 2.285878, 0.407556, 2.638236, 0.133887, 1.704314, 0.631884, -0.436137, 1.009384, -0.220273, 0.428627, -1.281090, 0.258248, -1.312715, 1.677697, -0.003655, -0.077159, 1.091310, 0.218095, 1.335132, 2.203062, 0.031074, 0.219608, -0.406351, -0.138634, -0.894790, 1.217463, -2.464502, -0.449169, 0.765943, 1.738895, 0.503656, 0.806471, 0.947300, 0.751978, -0.947777, -0.779963, -0.042770, 0.153708, 0.263995, 0.574917, 0.240454, 0.048193, -0.153488, 0.995589, -0.473756, -0.891060, 0.324455, -1.332687, 0.796229, -0.649612, -0.560629, 0.439378, -0.454064, -0.305545, 0.972624, 0.976789, -0.169617, 1.229982, 0.296208, -1.374517, 1.927219, 0.536131, -0.437695, 0.505251, 1.491130, 1.868266, 0.460997, -0.420729, -0.336885, 0.628547, 0.329609, 0.853064, -1.465502, 0.641196, 1.004532, -0.398041, 0.725100, 0.921336, 0.724147, -0.449764, 0.547855, 0.994646, 0.181740, -1.043676, 1.128018, 1.018493, -0.814496, 0.535093, -0.973439, -1.348941, 0.784595, -0.850829, 0.165486, 0.701197, 1.171839, 0.322300, -0.513352, 1.180496, -0.256156, 0.146038, 0.287136, 1.320017, 0.209384, 0.459464, -0.514783, -0.061917, -0.165566, -0.337388, -0.488494, -0.323833, -0.498187, -1.132023, 0.630765, -1.375017, -1.528158, -0.631622, 0.353248, 0.278390, -1.728644, 0.967450, 1.915133, 0.008400, 1.120531, 1.148627, 0.283694, -1.218961, 1.191173, 0.313243, 2.628294, 0.014973, -1.578803, 0.510189, -0.459030, 0.417873, 1.328510, 1.001685, 0.435731, 2.473753, 0.342514, -0.196086, 0.075623, -2.500268, 0.869280, -0.308600, -0.850861, 0.496634, -0.803739, 1.857542, -0.715025, -0.460637, -0.145001, 0.260115, -0.536407, -0.110595, -0.336350, 0.714081, -1.563972, 0.607812, -0.225697, -0.862958, -0.800225, 0.533645, -0.972355, 0.837920, 0.966941, 0.370413, 0.885577, -0.974826, -1.263638, 1.061987, -0.552872, -0.619585, 0.648594, 1.505130, -1.654396, 0.686558, -1.649517, 0.311883, -0.501729, -1.694383, -2.224716, 1.287914, -1.110329, 0.400074, -1.341282, 1.511002, 0.302405, -0.203600, -0.247756, -0.541213, -0.478103, 0.763005, 0.571285, 0.348176, 0.190957, -0.609966, 1.132619, -0.056162, -0.629209, -0.665975, -1.649907, -0.019061, -0.804076, -0.740870, -1.081288, -0.581413, 0.146947, -1.049989, 0.851972, -0.684561, 0.309312, 1.450863, 0.534242, -1.257457, 0.163640, -1.321139, 1.871381, 0.204001, 0.225022, -0.006182, -0.871379, -1.544991, 0.345622, -1.048773, 0.332245, 0.709824, 1.047056, -1.737401, 1.776759, 0.686156, 0.452645, -1.342992, -0.653955, -1.555712, 2.745269, -0.672848, 1.377458, -0.581897, 0.767704, -2.187953, -1.319155, 0.263353, -0.938119, 0.671757, -0.070144, -0.265803, 1.457119, -1.071312, -0.250789, 0.885817, -0.010378, 0.295291, -0.266068, -0.077381, 0.935330, 0.406207, 0.974234, -0.241043, 1.084916, -0.653807, 1.761725, -0.885310, -0.344039, -0.633939, -1.319513, -1.490815, 0.854836, 0.108802, 1.546312, 0.975535, -0.937013, -0.794646, -0.600795, 0.801212, 0.592837, 0.283805, 1.205427, 0.754122, -0.563656, -0.293502, 0.155604, -1.031581, 0.154729, -1.222623, -0.103622, -0.625553, 1.045250, -1.131021, 2.464154, 0.937471, -1.266288, -0.188779, -0.275916, -0.497747, -0.127946, -0.709713, -0.599648, 1.025313, 1.191717, -0.613292, -0.334053, 0.689072, 0.021405, -0.426098, -1.287400, -1.174470, -0.955824, -2.391423, -1.559399, 0.986952, 1.247572, -0.582415, 0.457641, 0.403906, 0.564281, -1.600985, -0.247129, 1.996557, 1.701653, 0.111502, -0.687072, -1.600166, 0.846035, -1.001467, 1.884078, 0.227117, 0.535211, 1.351557, -1.621079, 0.597410, 1.692688, 0.285438, -1.731304, -0.564751, -0.458676, -1.435193, -0.423758, -0.507657, -1.468365, -0.090999, -0.767928, -0.333034, -1.404603, -0.445295, 1.214692, -0.663413, -1.544612, 0.476879, -0.713801, 0.787993, 1.315051, 1.674923, -0.696790, 0.653380, 1.209520, 1.809957, 0.145681, 0.866202, -1.198370, -0.738158, 0.197560, 0.564865, 0.829181, -1.157142, 1.475927, 0.122292, -1.119002, -0.549447, 0.362558, 1.420274, -0.315410, -0.413908, 0.089396, 1.315787, 2.040618, -0.570274, -0.995665, -1.415478, 0.149018, 0.812447, -0.451894, 0.088294, 1.773157, 0.506789, -0.768359, -0.539299, 0.918118, 2.742515, 0.246748, -0.319611, 1.392044, -2.421969, -0.800373, 1.661154, 0.276272, -0.980296, -1.387524, 0.505219, -0.066690, -0.265554, 2.174703, 0.184386, -1.066870, -0.477847, -1.485337, -1.160334, 2.134926, -1.108147, -0.375237, 0.675928, -1.354667, 0.333366, 0.499028, -0.264162, 0.071411, 0.895376, 0.109540, -0.587700, 0.424386, -0.485216, 0.339988, 1.186576, -0.710255, 0.268619, 0.069845, 0.257942, 1.135555, -0.025192, 1.194465, -0.771367, -1.110150, 0.524895, -1.592030, 0.319311, -0.801286, 0.856355, -0.378300, -0.909329, -0.279168, -0.224338, 0.643724, -0.746465, -1.286630, 0.331874, 1.984558, -1.038907, 0.240234, 1.425839, 0.336086, 0.702880, -1.689978, -1.613898, -0.185241, -0.091918, 0.355665, 2.165458, 0.030535, 0.260799, 1.165721, 0.802152, -0.179855, 1.475334, -0.753776, -1.268127, -2.253018, -0.014508, 0.231118, -1.091745, 1.708748, 0.356360, 1.737976, -1.762605, -0.727196, 0.464652, -0.712995, 0.756724, 1.541533, -0.625384, -0.701337, -0.589535, -0.879455, 0.457790, 1.933675, 1.397282, 1.279628, 1.300772, 1.314083, -0.613075, 0.931141, 0.309561, -1.774472, 0.318761, 1.524575, -0.626034, -0.492233, -1.701324, 0.875026, 0.342994, -0.236374, 2.670813, 1.826012, 1.016830, -0.000991, 1.344566, -0.794488, 0.702906, -0.022783, 2.516826, -0.179120, -0.689675, -0.195425, 1.208217, 0.888653, -0.924768, 0.527770, 0.325938, 0.029111, 0.155565, -0.010599, 1.916196, -2.021047, 1.168798, -0.543831, 0.575642, 0.583487, -0.779686, -0.006324, 0.280509, 0.910827, 1.495097, 0.155135, -0.710840, 0.643256, -0.733887, -1.491193, -2.241921, -0.657447, 0.471319, 0.622343, -0.301092, -0.365548, -0.111016, -1.228983, 0.768110, 0.079455, -0.428603, -1.494595, -1.007126, -0.695683, -0.629224, -0.483811, 1.317885, -0.667013, -2.072384, -0.789599, -0.289670, 0.539358, -0.276089, -0.245423, -0.797629, -0.748536, 1.538998, 0.456474, 0.109480, 0.700305, 0.209454, -1.753698, -0.199737, 0.366180, -0.141180, -2.086135, 0.409999, 0.092900, 0.577046, 0.080824, 0.447036, 0.181249, 0.275332, 0.732036, 0.331610, -0.085078, -0.902146, 0.011851, 0.537836, -0.713226, 0.105185, -0.499172, 0.994670, -0.615682, -1.233502, -0.808508, -1.370478, 0.946874, 0.237686, -0.347345, -0.751645, 0.218581, 0.476560, -0.802249, 0.334654, -0.358024, -0.122794, -0.084316, 1.728971, -0.263379, 1.042413, -1.412475, 0.458972, 0.332932, 0.274856, 0.483925, -0.633042, -0.724539, 0.219797, 1.277416, -1.470168, 0.874251, -1.556984, 0.218211, -1.117856, 0.366932, 0.597500, 0.794865, 1.719607, -0.867824, 0.431786, -1.498545, 0.635509, 1.030200, -0.342009, -0.736825, -2.026460, -0.855395, -0.620872, -1.208344, -1.456857, -0.530180, 0.273012, 1.059494, -0.019405, -0.816723, 1.057766, -0.089720, -0.892084, 0.480461, -0.001814, -1.169565, -1.996294, 0.051384, -0.269828, 0.400033, -1.093477, 0.844433, -0.317918, 0.872635, 0.624898, 1.334590, 0.883614, -1.644275, 0.997656, 2.814571, -0.139504, 0.249623, -0.642635, -2.105332, 0.742291, -0.229777, 0.235703, 0.183855, -1.449033, 0.537369, 0.890137, 1.986003, 1.635879, 1.533882, -1.177689, 0.306512, -0.172724, -2.235410, 0.258579, 1.515709, 0.480840, -0.518566, -0.997434, 0.449247, 1.774214, 0.033595, 0.113604, -0.787320, 1.067512, 0.534114, 0.391503, 1.377359, 1.533713, 0.237806, -0.580997, 0.262743, -2.688823, -1.181593, 0.317966, 1.056735, -0.265381, -0.845975, 0.705788, -1.476477, 0.104007, -0.061571, 0.132525, 1.172665, -0.403183, -0.676646, 0.961702, -0.504385, -1.199482, 0.293052, -0.596697, -1.245085, 1.474648, -0.764356, 0.640714, -0.150225, -0.493172, 0.582959, 0.331081, 1.338902, 1.647818, 0.130065, 0.460612, 1.262606, 1.728806, -2.861237, -2.247664, 0.148536, -0.232905, -0.051161, -0.610389, -0.539013, 0.051441, 0.604580, -0.371963, -2.230177, 0.563327, -0.625428, 0.604905, 1.205526, -0.422607, 0.116579, 0.220437, -0.406820, -1.209645, 0.217361, 0.172896, -0.446617, -1.318840, 0.891240, -0.333473, -0.160212, 0.867340, -1.056876, 0.264609, -0.260226, -0.964260, -0.347383, -1.520069, 0.267511, -0.101279, -2.250854, 0.503038, -1.270890, 2.420293, -0.269200, 1.013116, -0.385248, 0.716852, -1.288336, 0.049615, 0.549253, 0.204417, 1.523709, 1.415952, -1.213428, 0.046334, 0.498685, 1.607935, -0.107502, -0.012489, 1.113093, -1.262372, 0.635310, 1.079105, -1.272005, -0.390408, -1.666804, 0.459862, 1.971103, -1.087889, -0.921188, -2.152943, 1.172582, -1.627422, 1.494756, -0.466420, -0.919285, -0.012257, 1.503815, 1.129391, 0.366269, 0.097845, 1.788218, 0.024079, 0.533088, -0.253594, 0.691081, -0.403347, -0.241545, -1.386020, 1.119385, 2.332255, 0.026364, -0.694972, -0.534860, 0.557126, 1.070677, 0.143742, 1.162118, -0.373626, 0.675855, 1.296753, 1.222787, -0.417039, 1.794739, -1.131771, 0.251165, -0.153850, 0.679615, -0.592602, 0.967419, -0.825761, 1.026805, 1.314102, -0.147767, 0.933058, -0.750476, -0.607121, 0.158971, 0.819274, 0.886966, -0.489672, -0.762964, -0.556662, 0.249269, -1.189935, 0.149237, 0.794543, 1.539583, 1.117802, 1.493570, 0.081249, -0.688845, 1.236806, -0.136323, -0.642509, 0.791909, -0.316187, -1.486396, -0.286044, 0.601812, 1.020883, 0.483257, -0.498491, 1.510354, -0.846811, 1.463543, 0.816403, -0.128102, 1.293291, -0.892125, 0.065162, 0.800300, -0.230737, -0.843545, 1.281737, -1.595139, -0.252319, -0.777570, 1.140861, -0.984396, -0.267249, 2.108263, -1.003959, -0.513135, 1.075903, 0.091835, -2.677899, -1.111084, 1.194312, 1.320407, -0.328568, -0.667354, 0.376435, -1.547423, -0.539298, -0.371540, -1.739619, 0.206203, -1.633796, 0.340958, -0.144559, 1.320986, -0.504530, 0.131376, -0.045478, -0.016382, -0.656809, 0.399018, -0.673054, 1.411125, 0.066629, 1.119156, 1.223984, -1.243670, 0.624111, 0.162919, 1.506701, 0.369993, -0.651917, -0.536100, 0.122017, 0.315836, 0.223999, -0.441284, 0.702756, 3.399359, -0.937984, -1.277279, -0.320646, 1.110265, 1.352486, 0.392803, -0.217718, 0.592121, -2.828296, -1.273913, 1.010857, 0.803452, 0.362336, 0.744039, 1.513910, -0.123968, -0.478849, 1.216170, -0.834086, -0.520943, 0.476857, -1.432903, -0.264333, 0.174768, -0.130957, -2.319249, 0.018810, -0.472043, -0.714302, 0.483415, 0.948798, -1.954869, 1.905223, -0.789518, -0.756109, 0.944602, 0.015665, 2.361336, 0.824000, 0.235085, 2.874695, 1.586301, -0.351636, 0.008695, 0.187248, -0.778460, 0.367337, -0.801179, -0.846551, 0.192538, 0.475482, -1.701226, 0.024326, -1.082116, 0.599711, -1.787788, 0.474537, -0.176982, -1.006472, 2.020376, -0.565137, 0.181229, 0.233631, -1.479626, -0.121306, 0.485107, -2.170983, -0.936832, 1.271556, 0.824126, 1.162649, -0.526079, 0.397148, 0.041766, 0.058662, 0.841343, 0.150001, 0.412063, -0.437563, -0.290072, 0.534768, -0.293810, 1.005391, 0.820057, 0.205259, 1.501838, 0.402394, -0.902669, -1.947405, 1.195238, -0.691564, -0.583608, 0.292778, 1.341641, 0.307124, -1.195522, 0.928294, 0.110196, -1.008178, -1.924284, 0.571656, 0.931630, -0.609255, 0.409721, 0.062547, -0.719543, -1.481461, -0.142414, -0.189412, -0.292694, -0.349087, -1.150324, 0.239773, -0.818704, 0.143214, 0.797478, -0.667021, -0.827515, -1.675469, 1.087868, -1.474185, 0.067507, -0.537100, -1.716275, -0.812033, 1.563121, -0.580177, 1.211277, -0.024871, -0.319198, -1.714087, 0.175352, -1.221683, 2.118346, -0.705239, -0.404739, -1.947605, -1.148222, -0.461689, -0.607428, -1.339699, -1.007118, -0.750962, -0.454246, -0.112804, 1.257235, 1.102586, -0.644324, 2.078511, -0.003431, 0.365301, 1.759221, 1.043148, -0.073328, -1.107175, 0.328991, -1.366089, 0.045647, 0.382893, 0.785101, -0.356169, -0.765107, -0.312606, 0.625214, 0.040221, -1.520915, 0.296356, 0.448759, -0.630433, 1.359117, -0.246462, -0.028595, -1.366253, 0.938096, -0.311617, 0.684739, 0.038732, -0.011837, 2.324516, 0.082977, 0.442350, -0.240775, -0.859987, -0.319721, -0.588970, -0.483831, -0.263322, -0.336983, 0.124937, 0.052341, 1.341358, -1.459795, -2.099358, -0.610480, 0.809997, 1.111102, 0.125458, 0.185947, 1.712147, 0.946655, 0.195306, 1.663208, -0.812384, 1.375934, -0.135452, -0.008247, -0.434778, -0.350705, -0.268835, -1.639927, -1.125024, -1.417332, -0.585967, -0.314052, -0.923774, 0.318371, 0.386757, -0.352994, 0.717880, -0.523875, 0.766112, -1.422297, -1.619022, 0.069192, -1.315972, -0.617964, -1.323193, 2.456321, -0.972811, -0.273706, -1.839287, -0.231148, 0.269941, -0.324045, -0.452531, 0.878415, 0.161730, 0.956676, -1.621601, 0.201484, -0.973074, -0.727023, -0.917278, -1.511942, 1.427847, 0.478701, 1.241028, -1.418374, 1.776652, 1.233867, -0.164416, -2.178570, -0.195001, 0.697629, -1.774063, -1.836039, 0.457045, 1.326695, 0.011643, -0.354881, -0.411363, -0.163280, 1.450767, -0.431097, 1.132592, 0.343753, 1.120846, 0.077151, -1.794622, -0.619901, 1.281413, -0.418432, 0.201495, 0.633136, 2.338012, 0.591667, 2.086289, -0.824611, -0.339316, 0.584931, -1.341490, -0.081706, 1.083835, 0.554222, -1.156499, 1.427610, 0.082780, -0.915099, -0.745243, -0.032628, -0.677012, -1.078401, -1.678155, 1.131563, 0.161781, -0.432355, 0.363152, -0.060627, 1.408744, 0.150847, -0.600754, 0.743023, 0.635570, -0.001342, 0.329122, -0.173368, -0.292805, 0.245684, -0.680523, 1.851528, 0.029777, -1.657625, -1.398327, 0.180173, -0.077970, -0.241042, -2.196875, 0.029724, -0.326221, -0.210451, 0.360744, -0.106676, 1.697662, -0.808074, -0.982597, 2.129099, -0.547203, 0.383010, -0.659713, 0.285108, -0.322815, -1.110508, 0.838579, -0.169701, -0.026920, -0.642277, 2.522694, -1.711465, -0.343259, 0.651668, -0.497310, 1.260940, 0.374315, -0.760889, -0.711834, -0.567988, -0.992907, -0.559066, 1.697468, 0.332616, 1.024768, 0.550566, 1.224745, -0.654200, 2.032773, 0.082563, -1.295397, -1.051432, 0.567468, -2.107276, -1.400129, -1.008241, -0.105041, 0.733549, -0.317511, -0.321361, -0.107378, 1.738176, -0.415773, -0.235396, 0.276437, -0.401816, -0.484924, 1.966882, 0.317909, -0.529905, 0.267830, -0.458091, 0.483079, -0.192916, 1.227695, -1.093794, 0.906393, -0.865770, -1.496917, 0.956625, -1.373152, -0.215082, 0.231005, 0.709967, -1.166990, 0.855483, 0.534399, 0.172511, -0.036255, 0.609297, -0.912030, 0.657148, 0.980654, 0.018551, 0.557849, 0.550249, 0.042714, 1.107041, 0.664145, -0.691010, 0.059476, 0.687923, -0.605355, 0.129882, 1.175040, -0.190449, 1.057329, -0.379636, -1.658650, -2.028174, -1.327957, -0.030442, -0.385998, -2.905207, -1.043786, -0.387258, -1.424118, 0.741109, 0.689532, -0.656806, 1.157464, 1.537871, 0.623958, -0.592050, 0.230121, -1.103302, 0.089339, 0.432980, 2.284280, 1.034716, -0.076819, 0.744677, 0.326310, 0.202031, 1.039770, 0.512596, -0.523637, -0.109553, -0.768347, 1.166721, 0.262571, -0.078743, 0.469324, 0.925129, -1.099557, 1.230837, -0.414925, 1.048999, -1.785126, -0.073170, -1.055125, -1.277047, -0.744703, -0.535291, 0.433479, 0.717865, 0.264718, 2.387341, 1.607247, -1.267971, -0.921362, -1.426878, 0.066004, 0.187551, -0.766656, -0.593011, -0.747655, 1.040539, -0.592087, 2.084353, 1.174902, -0.705021, 0.532277, -1.003524, 0.191509, -0.847932, -0.346876, 0.561315, -0.429310, 0.993986, 0.769355, -1.023120, -0.952315, 1.878818, -0.020951, -0.476551, -0.067435, 0.398025, -0.616951, 0.932660, 0.746036, -1.728409, -0.388349, 0.061211, -0.171022, 1.860426, -1.147508, 1.432770, 1.151326, 0.449021, 0.129542, 1.078047, 0.985745, -1.006536, -0.709188, -0.006087, -0.069743, -0.654086, -0.101824, -0.527980, 0.236388, -0.545744, -0.278505, 1.732982, 0.654190, -0.548465, -1.169641, -0.909830, -1.139532, -1.294405, 0.410543, 0.978736, -1.443742, 0.379763, -0.006065, -0.577878, 0.368109, -1.466094, 0.610852, 0.470614, -0.147005, 3.206289, -0.405871, 2.097315, -0.060147, -1.276298, -0.560039, 0.256024, 0.152755, -0.340687, -0.325523, 0.132116, -0.499273, -0.576767, 0.890889, -2.108584, -0.088569, -0.674214, 0.927033, -0.245145, 0.995695, -0.023889, -0.139383, -1.062445, -1.211801, 0.870238, 0.028575, 0.063234, 1.353849, 0.022134, 1.651862, 0.213931, 0.062244, -0.759874, -0.966781, 1.090717, -0.621585, 0.528606, 1.942844, -0.819251, 0.065602, -0.532211, -0.387889, 0.449216, 0.096665, -0.501901, 0.131407, 0.240525, -1.033219, -0.055638, 0.869617, -0.187925, 2.207625, 0.306278, 0.847202, 0.206908, 1.009583, 0.084580, -0.012668, -1.033329, -0.148545, 0.618870, 0.399428, -0.924602, -0.559469, 1.652509, -0.783998, -1.375497, -0.155683, 0.228549, 0.488797, -1.157642, -0.763601, -1.153309, 0.353518, -1.743940, 2.141547, 1.027402, -2.250444, -0.762393, -0.172657, 0.256640, 0.251934, -1.478273, -0.556554, 1.185991, -1.174300, 1.121918, 0.362458, 0.205066, -1.068521, -0.153926, -1.456109, 0.027802, 0.027177, 1.813897, 1.802821, -0.009907, 1.011838, 0.308289, 2.702428, 1.196861, -1.238380, 0.320980, -0.157653, -0.421377, 0.082636, -0.273268, -1.626294, 1.041722, 0.068328, 0.396877, -1.190137, 0.875380, -0.307799, -1.115998, -0.977425, 0.182764, -0.202348, 1.528468, 1.751493, -2.430546, -0.241253, 0.038598, -0.467628, 0.551568, -1.215156, -0.677621, -0.721341, 1.425326, 0.749313, -1.626045, 0.374403, 0.681429, 1.033166, -2.205969, -0.190492, -0.141536, 1.628953, -0.321825, 1.530588, 0.462488, -1.938315, 0.933523, 0.986000, 1.365227, -0.758421, 0.256652, -1.623406, -0.185373, 1.156479, 0.061563, 0.127256, 1.275467, -0.010870, 0.530133, -0.219159, -0.688762, 0.012882, -0.710524, -0.273936, 1.142749, 0.633708, -0.739569, -1.094733, -0.207656, 0.735874, -0.143747, -0.553577, -1.494831, -0.721280, 1.377119, 1.355121, 0.540618, -0.667525, 1.260628, 0.724238, -0.912280, 1.434365, 0.411682, 2.308520, 1.800172, 0.093727, -0.475210, -1.738169, 0.491769, -0.167128, 1.664286, -0.779238, 3.895680, 2.018933}, - { 0.369689, -1.453203, -0.084053, -1.002592, 0.326842, -0.440155, 0.567610, -1.035517, -0.302129, -1.156545, 0.710368, 0.572679, 0.885492, -1.743570, 0.795580, -1.307853, 1.321114, -0.786144, 0.537529, -0.516815, 0.538087, 0.602819, -0.975910, 0.228100, -0.969746, -0.928184, -1.092438, 0.875759, 0.501662, -1.771648, 0.055292, -0.512473, -2.446271, 0.530254, 0.227196, 0.151845, -0.449478, -0.177817, 0.214641, 1.499790, 0.340742, 0.684597, -1.554874, 0.240645, -0.102351, 2.457285, 1.096147, -0.856053, 1.101331, 0.716102, 0.094902, -0.477282, -0.395248, -1.171082, -2.174341, -0.737518, -1.428781, 0.333930, -0.695825, 0.521078, -1.043650, 0.956063, 0.254790, -0.402749, -1.005517, 0.288685, -0.275279, 0.724000, 1.223699, 0.716951, 0.656162, -1.087510, 0.393052, -1.563124, 0.818448, 0.390672, 0.534776, 0.405630, 1.792928, -0.096517, 0.710342, 0.911791, 0.115740, -1.416866, 0.037790, 0.042211, -1.457783, 0.651088, -0.906669, -0.334106, 1.045581, 1.064233, -1.034228, 0.649035, 0.651082, -1.155782, 2.747354, 1.452138, 1.761604, -0.510621, 1.129589, -0.585258, 0.332348, 0.874178, -0.065626, 2.074037, -0.188338, 0.267385, 0.446834, -0.390049, 1.293800, 0.744112, 0.553123, 0.065390, -0.501732, -0.329394, 0.848650, -1.109138, 1.143934, -0.516926, 0.497432, 0.616393, -0.642400, 1.392112, 1.192614, 0.863733, -1.111371, 2.384692, 0.183054, 0.674574, -0.724793, -0.749809, 0.455305, 1.035621, -0.777965, 0.897956, -0.493177, 1.170380, 1.035612, -1.126469, 0.035366, 0.407703, 1.058143, -0.465718, 0.163207, -0.208828, 1.162260, -0.148163, -0.805230, 0.200731, -0.753959, 0.771479, 0.874691, 0.051820, -0.709412, 0.914033, 0.140355, -1.430717, 0.339664, -0.111629, 0.308109, 0.592078, -2.115375, 0.000744, -1.145634, -1.039584, -0.045592, 0.596309, -0.537589, -0.780524, 0.431188, -0.567912, 0.342105, -0.628612, 2.060537, 0.016569, -1.505612, 0.945865, 1.807107, 0.217729, -0.644192, 1.000326, -0.125984, -0.157555, -0.505954, -2.400203, -1.221491, 0.288849, 0.697424, 0.423409, 0.013814, -1.543810, -0.268002, -0.664635, 0.619712, 1.110208, -0.993203, -1.761034, 0.560374, -0.683994, -0.088302, 0.919979, -2.354632, -0.697850, 1.519281, -0.557671, -2.558178, 0.054532, -1.284076, 0.478767, 0.992271, -0.955872, 0.631003, -1.427651, -0.268507, -1.414831, -0.677730, 0.022256, 0.192281, 0.761786, 0.092861, -0.740192, -0.588563, 1.363043, 0.401617, 1.379578, -0.109945, 2.016294, 0.527714, -0.602640, 1.241739, -0.812055, 0.726616, 1.081297, 0.515926, 1.523206, -0.189192, 0.571368, 0.768785, 1.261674, -0.034119, -2.127709, -0.487732, -0.350357, 0.775456, 0.320789, -0.674258, 0.047525, 0.742857, 1.614325, -0.353965, -1.353718, 0.777219, -0.031324, 0.070399, 0.268705, 0.075449, -1.261787, 0.973170, 1.088630, 0.421289, -0.350645, 1.061954, 0.510234, 0.621404, 0.932031, -0.641082, 0.120774, 0.371778, 1.158704, 1.550140, -1.215098, 1.148910, 0.395027, -1.140883, -0.913957, 0.785054, -0.017105, -0.058446, 0.261973, -2.248816, 0.487702, 1.356698, -0.058001, -1.663495, -0.332430, -0.359360, 0.139886, -1.463473, -0.526742, 1.175166, -1.473695, -0.380607, 0.732220, -0.431963, 0.291989, 0.527473, 2.854968, 1.150628, 0.422467, -1.975060, 1.717803, -0.237129, -0.831081, -2.234257, 0.778262, -0.297309, -0.215805, 0.384649, 1.561229, -0.088332, -0.354620, 0.215478, 0.208409, 0.038895, -2.122936, -1.292107, 0.947442, -0.857196, -2.921377, -1.244198, 0.293632, -0.651422, -1.018784, 0.459424, -0.591164, -1.016176, -0.152256, 0.546038, -0.989675, -0.912033, -0.264038, 0.400981, -1.121412, 0.472131, -0.219662, 1.155358, -0.024484, 0.372769, -0.114488, 1.655474, 0.528671, 0.086342, -0.781975, -0.455583, -0.123450, -0.396102, -1.506722, 2.484445, -1.636081, -0.531117, -1.927067, 0.342912, -0.293332, -0.581212, -0.850019, 0.861472, 0.250241, -0.332538, -0.594993, -1.560828, -1.727583, 0.839703, 0.301217, 0.240456, 0.069477, -0.257552, -0.284075, -1.083013, -0.279790, 1.222841, -0.512705, -0.006829, -0.853864, 1.189641, 0.354379, -0.909794, -0.507967, 0.574376, -1.091098, -0.458638, 0.383160, 0.863653, -1.296254, 0.973990, 0.882776, 0.541169, -0.293698, 1.621275, 0.367914, -0.498681, -1.000963, 0.991296, -2.331301, 0.835760, -1.083304, -1.718730, -0.168252, -2.017599, -0.213571, 0.827002, 0.218285, 0.233484, 0.765916, 0.789751, -0.636025, 1.087739, 0.065238, -0.696152, -1.524986, 0.794677, 1.975290, 0.937155, -0.079810, 1.483511, -0.819275, 0.229394, -0.360053, -0.313955, -1.227792, -0.156955, -2.156920, -0.259614, -1.165592, -0.248625, 0.922018, -0.606049, -0.517682, 0.471080, 0.879359, 0.785953, 0.643077, 0.029058, 1.029680, 0.226352, -1.837588, 0.842358, -0.188321, 0.135403, 0.376958, 0.722064, 1.456808, 0.489466, -0.187465, 2.473450, 1.244644, 0.970772, 0.370720, -0.172166, 1.910470, 0.493223, 1.390667, 0.248679, 0.137445, -0.106974, 0.552990, -0.230598, 0.419236, -0.228156, 0.464455, 0.976817, 1.362111, 0.387325, -1.610563, -0.746007, -0.525078, -1.092137, -0.648174, 0.884429, 2.360616, 0.821417, -0.785905, -1.561717, -1.872034, 0.926875, 0.255245, 0.513380, 0.409484, 0.293854, 1.215249, 1.229824, -0.634025, -1.116084, -1.047516, -0.688904, 1.566175, -0.463718, -1.161816, -0.061057, 0.232937, -0.129579, -0.701311, 0.096780, -0.134332, 0.705358, 0.535672, 0.678041, 0.791912, -0.842546, 0.562181, -0.196512, -0.262346, -0.472723, 0.817032, 1.041303, 0.941651, 0.728860, -0.711400, 0.253174, 0.827447, -0.823291, -1.206290, 0.120566, -0.799829, 0.442896, -1.101857, -0.660444, -0.251467, -1.663550, -1.417972, 1.453454, 0.052903, 1.315999, 0.675551, -0.789463, -0.514772, -0.831269, -2.765714, -0.133113, -0.948486, 0.609700, -0.034798, -0.016230, 0.114713, 0.155087, -0.922049, 0.454080, -1.631591, 0.897473, 0.589649, -0.747470, 0.036998, 1.470163, -0.088558, -0.294550, 0.631283, 1.234150, 0.718360, -1.683148, -0.039850, -1.046863, -0.232456, -0.058628, 0.865256, -1.650519, -0.419546, -2.025628, -0.357157, -0.595798, 0.232194, -0.754949, -0.247473, 2.242571, -1.137297, 2.155089, 0.379669, -0.320925, 0.380617, -2.125954, 0.708342, 0.443547, -0.573545, -1.398831, 0.882674, -0.535715, -0.377176, 1.228115, 0.223747, -0.239107, -0.724356, -0.042103, -0.127807, -0.821020, 0.049000, -2.140369, 0.090695, -1.261153, -0.352746, 1.598261, -0.699843, -1.375553, -0.841864, 1.771109, 0.533353, -1.364781, 0.137542, -0.312220, 1.471829, 0.993276, -0.827561, 0.218342, 0.500259, -1.013958, -0.532696, 1.884176, -1.321814, 0.216314, 1.655990, 1.626722, 0.746489, -1.364250, 0.557495, -0.460634, -1.216966, -2.173369, 0.996067, -0.996231, -0.429574, 0.018420, 0.910546, 0.318917, -1.408834, 1.934830, 0.779283, -2.334530, 0.164922, -0.397106, -0.309615, -1.370774, 0.144893, 0.577256, 1.341239, -0.217499, -0.408152, -0.025371, 1.929946, 1.550775, -1.020726, 0.211927, 0.892306, -1.474161, 1.173576, -0.568810, 2.267454, 0.597750, 1.029649, -0.368160, 0.042378, 0.386285, 1.410877, 1.063391, -0.848895, 0.708512, 1.241466, 0.465842, 2.189624, -0.467179, 0.828411, 0.554927, -0.804239, 0.119211, -2.023518, -0.781659, 0.847321, 1.018253, 0.636135, -0.628185, -0.830827, -2.747293, 1.192954, -1.463552, 1.768067, -1.150370, 0.518232, 2.337300, 0.929799, 0.209229, -2.126120, -1.720864, 0.360394, -1.192737, 1.091630, 0.324888, 1.090668, 0.632533, 1.164260, -1.782221, -0.375809, -0.635192, -0.110880, -0.821958, 0.856985, -2.019447, 0.140317, 0.109698, -0.523703, 0.552862, 0.457601, 0.807561, -0.176591, -0.176117, -1.953221, -0.712108, -1.130132, -0.207610, -1.210260, 0.743578, -2.072756, -0.317122, 0.113129, 1.186310, 0.417103, -0.512384, -1.529987, -0.948777, -0.004296, 0.306080, -0.212301, -1.632694, -0.312521, 1.621936, 1.300571, 0.118023, -0.551320, -0.606357, -1.596477, -0.778995, 0.221404, 0.518199, -0.284117, 1.595672, -0.033958, -0.071420, -0.764661, -0.230472, 0.678405, -0.305870, -0.667839, 0.889213, -0.188320, 1.298133, 0.126381, -1.557205, 0.130069, 1.207199, -0.087984, 0.111300, 0.418719, 0.188591, -0.115041, 0.660011, 1.822436, 1.389691, -1.272622, 0.995286, -0.719182, 1.142639, -3.092916, 1.772221, -0.518963, 0.783928, -1.039579, -1.171307, -1.247914, 0.403026, -0.211691, 0.258523, -0.247828, 0.143368, 0.566572, -0.576677, 0.059365, -0.288350, 0.100396, 1.180954, 0.519914, -0.149029, 0.367727, -0.524921, -1.528320, 0.178626, -0.217439, -2.139006, -1.557480, -1.343548, 1.402936, 0.101325, 0.621454, 0.499847, 0.990730, -0.467496, -0.777940, 0.096640, 0.287830, -1.330762, 0.152709, -1.408787, -1.934963, 0.895951, -0.086200, 0.023863, -0.516398, 0.750345, -0.829315, -0.406156, -0.000638, 0.464036, -0.225698, 1.260206, 1.484522, 0.562975, -0.690382, -0.865064, -0.700290, 0.346072, -1.015117, -0.524614, -0.409801, 0.178105, 1.662082, 0.245050, 0.347665, -0.796964, 0.633326, 1.212025, 1.381881, 0.402262, -0.054441, 0.205107, 0.459338, 1.292623, -1.203604, -0.664533, -0.919210, -0.003714, -0.964518, 2.054479, 0.387152, 0.791512, -0.923715, -1.564013, 0.605946, -1.075409, -0.158372, 0.066748, 1.545785, 0.510247, 1.272004, -0.607648, 0.403179, 1.146457, -1.219555, -0.833820, 1.379713, 1.346889, -0.856198, 1.831080, 0.352397, 0.688834, 1.052052, -0.326348, -0.703215, -0.677543, 0.587165, -0.315590, -0.919319, 0.137460, 1.328630, 0.597373, 0.825097, 0.247880, 0.513533, 0.012934, -0.712791, 1.027502, 0.599187, -0.149577, -0.173370, 0.734984, 1.201526, 0.736430, -0.725606, -0.118309, -0.579155, 0.790588, -0.147930, 0.262254, 0.980089, 0.021544, 0.147380, 0.121886, -0.186734, 0.313215, -0.261702, 0.190823, 1.429472, 0.073399, -1.515437, -1.734010, -2.191942, 1.859195, -0.725058, 0.328375, -1.534722, 0.877910, 1.584877, -0.363275, -0.330748, 2.467584, 0.575761, 0.091246, 1.482049, 2.058556, -0.715661, -0.839751, 0.168422, 0.125029, -1.080540, -0.482786, 0.504113, -0.451936, 0.119925, -0.844221, 0.777926, 0.593844, 0.004039, -1.019550, 2.652729, -1.378957, -0.570600, -0.821353, 0.454466, 0.325693, -0.190419, -1.854241, 0.326960, 2.373198, -0.798869, -0.334264, -0.494334, -2.656583, 0.534943, -0.924612, -0.343005, 0.729580, -1.925721, -0.585522, 0.350715, 1.727118, 2.076452, -0.382337, 0.388629, -1.030397, 0.075613, 0.327214, -0.171853, 0.563928, 1.466995, -1.367164, -0.609201, -1.196493, -0.978365, -1.155945, -1.099621, -1.396894, -1.201453, -1.820136, -0.310980, 0.071132, -0.493406, -1.507086, -0.809904, 1.475229, 1.411258, 0.815289, 0.246215, -0.187638, 0.050374, 0.065441, 0.950469, 0.094546, -0.298355, 0.949661, -0.164806, 0.640183, 1.393049, -1.420712, -1.135173, -0.629025, 0.446102, 0.409624, -0.752536, 1.054140, 0.912412, 0.438262, -0.337505, -0.885521, 0.396660, 0.882099, 1.244400, 0.583222, 0.541942, 0.046336, -0.375729, 1.259741, 0.694516, 0.822852, 1.150303, 1.813050, 1.196570, 1.532458, -0.112561, 0.765254, 0.734017, -0.200022, 0.495340, -0.179774, 0.193926, -0.365785, 0.251324, -0.628043, -0.491628, -1.613178, -1.098310, 0.819850, 1.621907, 1.731538, -0.531335, 0.830041, 0.873087, 0.418166, 0.613090, -1.081968, 0.334713, -1.092727, 0.924228, -0.168361, -0.219248, -1.515555, 1.613762, 0.196898, -0.320409, -0.020910, -0.414135, 0.293997, 0.313748, -0.948665, 0.595197, 0.985700, 1.884190, 0.953941, 1.559382, -0.845496, -0.541110, -1.037165, 1.355440, -0.240251, -2.945162, -1.690170, -0.583808, 0.565909, 0.324842, -1.581359, 1.335000, 0.540263, 0.821007, -0.811234, 0.640032, -0.517974, 0.905773, -0.212125, -0.811519, 1.160139, 0.248193, -0.337304, -0.311801, 1.309863, -0.655936, 0.578354, 0.230677, -1.260614, -0.206843, -0.129614, -0.319422, -0.063451, 0.410484, 1.054411, -0.507901, 0.621336, -0.094623, 1.689099, 2.085285, 0.949036, -1.062983, 1.475254, -0.133039, 0.796293, -0.541350, -1.175893, -0.309451, 0.467444, 0.322762, -0.637914, -0.174805, -0.526288, -1.071649, 0.182267, 0.291260, 0.391122, 1.824953, 0.807077, -0.554600, -2.606520, -0.543214, 0.708949, 2.355566, 1.211389, -1.691016, -0.236906, -0.064956, 1.235964, 0.311686, 1.345693, -0.423804, -0.176127, 0.487110, -0.320497, -0.262928, -1.055427, 0.952468, -0.291215, 0.235028, -0.701469, 0.471249, -0.241191, -0.312293, -0.231193, -0.596198, 0.303463, 0.593136, 1.235870, 0.248424, -0.101594, -1.645068, -2.480258, -0.587485, 1.231571, -2.174002, 1.286151, -0.076383, -0.951833, -0.103295, 1.017001, 0.129254, 0.126655, -2.584477, 1.033152, -1.816085, 1.082703, 1.941277, 0.142964, 0.381827, -0.485206, -0.474895, -1.376646, -0.864314, 0.586723, 0.388182, 0.883993, 0.180967, 0.910626, 0.533516, 0.177026, -0.256922, 3.074898, 0.472876, 0.594846, -1.658655, -0.037229, -1.298519, 1.702570, 0.574459, -0.229606, 0.628596, 0.237106, 0.835682, 0.422320, 1.230000, -0.903944, 1.288396, 0.349564, 0.735781, -0.098097, -0.364939, 0.522232, -0.883011, -0.485902, -0.881221, -1.338988, 0.479825, -0.836477, 0.083343, -0.148984, 0.324212, 0.591756, 0.147278, 1.276035, -0.361051, 0.940623, -2.598221, 2.397041, -0.191901, 1.962914, -0.038508, -0.382499, -0.887144, 1.162506, -0.012613, -0.504076, 1.165283, 0.234544, -0.384904, -0.222327, 1.167807, -0.870831, -0.369651, 0.955762, -1.401175, -1.504423, -0.020265, -0.679867, -0.935231, -0.056145, 1.868584, -0.594031, -0.527776, -0.554549, -0.514957, 1.516269, 0.116693, 0.473745, -0.102826, 0.513894, 0.932561, 0.027228, 0.623840, 1.032128, 0.104418, 0.741575, -1.679415, -1.192255, 0.321627, -0.828913, -1.349335, 0.632935, 0.890292, 0.437688, -0.227034, 0.335418, 0.049459, 0.724373, -1.671488, 0.176020, -0.374343, 0.254090, -2.075548, -0.484902, 0.296412, 0.523166, 0.768178, 0.087610, 0.926462, -2.186858, -1.198580, 1.643683, 0.234801, -0.486080, -2.117910, 0.603340, -1.004678, 1.682788, -0.961916, 1.797310, 1.884647, 1.475095, 0.584586, 0.165867, 0.272881, 1.133891, 0.556460, 0.742031, -0.275031, 1.235634, 0.932589, -1.053908, -0.257892, 0.332026, -1.056460, -0.145212, 1.533126, -0.120149, -0.113588, 0.050304, 1.456181, 0.407513, 0.237643, -1.416271, 1.533071, -0.165018, 0.336539, -0.661115, 0.800157, -0.398622, -0.868135, 0.267367, -1.306977, -0.879139, 0.079973, -1.219551, 1.697130, 0.373199, 0.858831, 0.652219, -0.565992, 0.338268, -0.154019, -1.419849, 0.738985, -1.254001, 1.941751, -0.593920, 0.675499, 0.004605, -0.289304, -0.512924, 0.632265, 1.450813, 1.609672, 1.046503, -0.909683, 1.554108, -0.235379, 1.712608, 0.795843, 0.401878, -2.291585, 0.743067, 1.316745, -0.024247, -0.817712, -0.372298, -0.379659, -0.217670, 1.053197, 0.204553, 0.684404, -0.375207, -0.039076, -1.894295, 0.605904, -1.081617, 1.279664, -0.292974, -0.052085, -0.705365, 1.019907, 0.763236, 0.044657, 0.424004, 0.987251, 1.066817, 1.515459, 0.836232, 1.188274, -1.554347, -0.177143, -0.519960, -0.198786, -0.855771, -2.644951, 0.025266, 0.772202, 1.190315, 0.108014, 1.866243, 0.029881, 0.387912, 0.907149, -1.359823, -0.669153, 0.259995, -1.987492, 0.193020, 1.035968, 0.501884, -0.938998, 0.691270, 0.969736, -0.139169, 0.159928, 0.542495, 0.417110, -2.229785, -0.378399, 0.205535, 0.379204, 0.248025, -0.284299, -1.812779, -0.624310, -0.696426, 1.225554, 1.653222, -1.563704, -0.070534, -0.643461, -1.572547, -0.442934, 0.146049, 1.130921, 0.361494, 1.430582, 1.323829, 0.438721, -1.404530, -0.647201, 1.195281, -1.732942, 0.106817, -0.627603, -0.502232, -1.020040, 0.090695, 1.215738, 1.850232, 2.119719, 0.336909, -0.866658, 0.884403, 1.424762, -0.658921, -0.200636, -0.105434, 0.525333, -0.651487, 0.444109, 0.936841, 0.200815, 0.300288, 1.481389, 0.636704, 1.063698, -0.446502, -0.481675, 1.295370, 0.195739, 0.571653, 0.803317, 1.365239, -1.033470, 0.273164, -0.603607, 1.246939, 0.397400, -0.111385, 0.149312, -1.333105, 1.599795, -1.049144, 1.605232, 0.480585, 0.019586, -0.170216, -0.539797, -0.611482, 1.022604, -1.543115, 1.575168, 0.900111, 0.619460, -0.379933, 0.812058, 0.716127, -1.386156, -0.285592, 1.645362, -0.122247, -0.984852, 0.181130, -0.897139, 0.577652, -1.846773, -0.792216, -0.459891, 1.237503, 1.218345, 0.507659, 0.401161, -1.580426, -0.645551, 0.431850, 0.272556, -0.640024, 1.501328, 0.097618, -0.226089, 1.357681, 0.642397, -0.301296, 0.238793, -2.028144, 1.237056, -2.047739, -0.003138, 1.279416, -0.013295, -0.040423, 1.273679, 0.095526, -1.510416, 0.338575, -0.897153, -1.574995, 0.667604, -0.647126, 1.297509, -0.189834, -1.735131, 0.346467, -0.387383, 0.334408, -0.731959, 1.659167, 0.328247, 2.043740, -0.727637, -0.471995, 0.107684, 0.451542, -0.212427, 1.032818, -0.396457, 0.967522, 0.026766, 1.060822, -0.410064, -0.651738, -0.635912, -1.324542, 0.042411, -1.248637, 0.632750, 1.088512, -0.955982, 0.060488, 0.205236, -0.236711, 1.644439, 1.388496, -1.038161, 2.250437, 0.582821, 0.243450, -0.330602, -0.126818, 1.711435, -0.306606, 0.562323, 0.758824, 0.332204, 0.564271, 1.549712, -0.077883, -1.043365, 0.874691, 0.419816, 0.472237, -1.799613, 0.582136, 1.221781, -2.275681, 0.210618, 0.161319, 1.805974, 0.618748, -1.602444, -0.202080, 0.308053, 0.912782, -0.831882, -0.519299, -0.479760, 0.647252, -0.447211, -0.330485, 0.549397, 0.636230, -0.175237, 0.647608, -1.060936, -0.834699, 1.573222, -0.771146, -1.445732, 1.544112, 0.989244, -0.222379, -0.980293, -0.358746, 0.631122, 0.024881, 0.493351, -0.980924, -1.496515, -1.476285, 2.123760, 0.448699, 0.324939, 0.889897, 0.827959, 1.053775, -1.215044, -0.028244, -0.414609, -1.750615, 0.418347, 0.122679, 0.500184, -2.390927, -0.272080, 1.344650, -0.025173, -0.100997, -0.338371, 0.323430, -0.920693, -0.305362, -0.621262, -1.168995, 0.169776, 2.018693, -1.086431, -0.039656, -0.189374, 0.718889, 2.486898, 0.609052, 0.520889, -0.706367, 0.130882, 1.321332, 1.355950, -0.275612, 0.417053, 0.157980, 0.870940, 0.811623, -0.284646, 1.687041, 0.128169, 0.466296, 0.021437, -0.492624, -1.213931, 2.175844, 0.577146, 0.821402, -0.549181, -0.638525, -1.552969, -0.270153, 1.053716, 0.069494, 0.161928, 0.727706, 1.820071, 1.300635, -1.880401, -1.011756, -0.704841, 0.444285, 0.700306, 0.153119, 0.063772, 0.341860, -1.218569, -1.562679, -0.092077, -1.086208, 0.230478, -2.428952, 0.433562, 0.615468, -1.023752, -0.019248, -2.004397, 0.858222, 0.131786, 1.063129, 1.460445, 0.640818, -1.843242, -0.161401, -0.609158, -1.728559, -0.291499, -0.586932, 1.159234, -1.059424, -1.761687, -0.620608, -0.757412, -0.666260, -0.644637, 1.136447, 0.977482, 0.100492, 0.496077, -0.873040, 2.891653, 0.533914, 0.813691, 0.377243, 1.158747, -0.384126, -0.305206, -0.062554, 3.634307, -0.449640, -1.742369, -0.722342, 1.064901, 0.370198, 1.479394, 0.087976, -1.801567, 1.414482, -1.734688, -0.119935, 0.789686, 0.800417, -1.191572, 0.481645, 0.921589, -0.697429, 0.481370, -0.332025, 0.239390, 1.008940, 0.717251, -0.358650, 0.973406, -0.046911, -1.341880, -1.490852, 0.799696, -0.166077, 0.018684, -1.533417, 0.313054, -0.209294, -0.525398, 0.600222, 0.453679, 0.332193, 0.277139, 1.375135, -0.792214, 0.922301, 0.334927, 0.368115, -0.952988, 1.288529, 0.046073, -0.049559, 1.533648, -0.769050, 0.124602, 1.396857, 0.131933, -1.433377, 1.153672, -1.283796, -0.743035, -0.736097, 0.819984, 0.188190, 0.238723, 0.777744, 0.715049, -1.457234, -0.149734, -0.871964, -1.722914, -2.343277, 0.756449, -0.469095, -0.105168, -0.102212, 0.519162, -0.949081, 0.317942, -0.008905, 0.880694, 0.768018, 0.102661, -1.424841, -0.067067, -0.293462, 0.962291, 0.212433, 1.118502, 1.148754, -0.412285, -1.022446, -0.700458, 0.979952, 1.919874, 0.398266, 0.490786, -1.626828, 0.648067, 1.135415, 0.311954, -0.292344, -0.652591, 1.160436, -1.128722, -0.738498, -2.548654, 0.439208, -0.123548, 0.806428, -0.385683, -0.381651, 0.492031, 0.554466, 0.306599, -0.317037, -0.657626, 0.276241, -0.799675, -1.135994, 0.025576, 1.524356, 1.779939, 0.075114, -0.698642, -0.285887, 1.285481, 0.215047, -1.027201, -0.284533, 0.380795, 0.706966, 0.366309, -1.011600, 0.631539, -0.282359, 2.982848, -1.153484, -0.189096, -1.137280, 0.818690, -0.171569, 1.042511, -0.632542, -1.102181, 0.689640, 0.422844, -0.547450, -1.131301, 0.312503, 0.637665, -0.751289, 0.155013, -0.328764, -0.792004, 1.417963, -0.160974, -1.402231, -0.932805, -0.685808, 2.398775, -0.471940, -0.547215, 0.908190, -0.265153, 2.262488, 1.384673, -0.840720, -0.701540, -0.172422, 0.850958, -0.153448, -0.278825, -0.757067, -1.187760, -0.043663, -0.570766, 0.154946, 0.594962, -1.070082, -1.765571, -0.712869, -1.771842, 0.046882, 1.024883, -0.347007, 0.098460, -0.061667, 0.656342, -1.433418, -2.280200, -1.835229, 0.225144, -0.485068, -0.486958, 1.327062, 1.548246, -1.496099, -0.968958, -0.224064, 0.028635, -1.441095, 1.091844, -0.795990, -1.443695, -1.037121, 0.192777, 0.233803, -0.780962, -1.293411, 0.707099, -1.497790, -0.846497, -0.494631, 1.074160, -0.013830, 0.174071, -0.201901, -0.486750, -0.362127, -0.267790, -0.270937, 1.111896, -0.046425, 0.310211, 0.538690, 0.246840, 1.603209, -1.006151, 1.399642, 0.516344, -1.119212, 0.011564, 1.032392, -2.137830, -0.458846, 1.076548, -0.421424, -0.030632, -0.934729, -0.518425, 0.651381, 1.247126, 0.972164, -0.214589, 0.053051, -0.642297, -0.753393, 0.697890, 1.972582, -0.065124, 0.659279, 0.207376, -0.546509, -1.274967, -0.065927, -0.419302, -0.251757, -0.638892, 1.805074, -1.801460, -0.108050, -1.346863, -1.705499, 1.452543, 0.755774, 1.092339, -1.012060, 1.814085, 0.545268, -2.122539, -0.280203, -0.426116, -0.256643, 1.048114, 0.155350, 1.364737, 0.395107, -0.022182, -0.653808, -1.266924, -0.426717, -0.359394, -0.179963, -0.773853, 0.089784, -0.740791, 0.367406, 0.407117, -0.689775, -0.731657, -1.155499, 0.893848, 1.235849, 0.320152, 0.059431, -0.604499, -1.350062, 0.125098, -0.814026, -0.506056, 2.164879, -1.353691, -1.011465, -0.685051, 1.104228, -1.157439, -0.485205, -2.497320, 0.604647, -1.420419, 0.602604, 0.278328, 0.150027, -0.138131, -0.050711, -0.841844, -0.070716, -0.595316, 0.010523, -0.203920, -0.225158, -1.402896, -0.126184, -0.593979, -0.145913, 0.167566, -0.596005, 2.164720, 0.217478, 0.742733, 1.029717, 0.628989, 0.806181, -0.248373, 1.520913, -0.438485, -0.566362, 0.652311, 0.866376, -0.269359, -0.113015, 1.266411, 0.594742, 2.423619, 0.543786, -0.115658, 0.857222, -0.940680, -0.214410, -1.496817, 0.500499, 0.141213, -0.806804, -0.237316, 0.447476, 0.168397, -0.172755, 1.882573, 0.240807, -0.297934, 0.611999, 0.966728, -0.078697, 0.168583, 0.205307, -0.952354, -0.320256, 0.832322, 1.666139, 0.631517, -0.506827, -0.551355, -0.657646, 0.575448, -1.135399, 2.069389, -0.841543, 1.787026, 1.482088, -1.690799, 0.524223, -0.594750, -0.077839, 1.278702, -1.026274, -0.978542, -0.393522, 0.004852, -1.052877, 1.080055, 0.734276, -1.044457, -1.639061, -0.755365, 0.800940, -0.184771, -0.412833, -0.531526, -1.402736, 0.940678, 0.166610, 0.144127, -2.324184, -1.375890, 0.537638, -2.428773, 0.509257, 1.208723, 0.928230, 2.237816, -0.288016, -0.211706, 0.966168, 0.021801, -0.601339, 0.686722, 0.120243, -0.109425, 0.983141, 1.350210, 0.351095, -0.580328, -0.471648, 0.837873, -0.419865, 1.950191, -1.676164, -1.986370, 0.535044, -1.917312, 0.519233, 1.278150, -2.637649, -0.931096, 0.118603, 0.208989, 0.886885, -0.091652, 0.377726, 1.055290, -0.649825, 0.433201, 0.086600, -0.017669, -0.332059, -0.156662, -0.450940, -1.142937, -1.463332, -0.243229, 1.614473, -0.170515, -1.079244, -0.849102, 1.475989, -0.930568, -0.487682, -0.630463, 1.860586, -0.264389, 0.156278, 0.447009, 0.016093, 1.353387, 0.646973, -0.220601, 0.994193, -0.775016, 0.351284, 2.529540, -0.645325, 0.582984, -1.466871, 0.789530, -0.782410, -0.199359, 1.063133, -1.527282, 0.697280, -0.916191, -0.797119, -0.148378, -1.099864, -0.918967, 1.772733, -0.293160, -0.175819, -2.873878, 0.210562, 0.133415, -0.447022, -0.369241, 1.551989, -0.777479, 1.698630, 0.308076, 0.278889, -1.220540, -0.180882, -1.663167, -0.552691, 0.126772, 0.002524, 1.350661, -0.513274, -0.644278, -0.488755, 0.066758, -0.210896, -0.287152, 0.636588, 1.123429, 2.485032, 0.986254, 1.648961, -0.075521, -0.548075, 1.986850, 1.357698, 2.300064, -0.284665, 0.543455, 1.592470, -0.184173, -0.111129, -0.580227, 0.220468, -0.208687, 0.448734, 0.032736, -0.966882, 0.317363, -0.481474, 0.684299, 1.336560, 0.027664, -0.437053, 0.020271, 1.879279, 0.982406, -0.496204, -0.909334, 0.454811, 1.069827, -1.622297, 1.827473, -0.816461, 2.020078, 0.805258, -1.092625, 0.198462, -0.714587, 1.197768, 0.916227, 0.396992, 0.253684, 1.290877, 1.118490, 0.079442, 1.900216, -0.119153, -0.384979, 0.524162, -0.592564, -0.999366, 0.199682, 1.003846, 0.474500, 0.327132, -1.394262, 0.752885, 0.283028, -0.360385, 0.428653, 0.014572, 2.063022, 1.644953, -0.036233, -0.295001, 0.869577, 0.983596, 1.707063, 2.156869, 1.711904, -0.502335, 0.147112, -0.873209, -0.035239, 0.523164, -0.462570, 0.900196, -1.329216, 0.601497, -2.313992, -0.413853, 0.438713, 1.284026, -0.428070, 1.461834, 0.398688, 1.465784, -1.900860, -0.729031, -0.142893, 0.168145, 1.704455, 0.512674, -0.244008, 2.288321, -1.461442, 0.456502, 0.660286, 1.396450, -0.079329, 1.148720, -0.483842, 0.477136, -0.125468, -1.041603, 1.084591, 1.639639, 0.376313, -0.469184, -0.598421, 0.442313, -0.119095, -0.946090, 0.831479, -0.121850, 0.701710, -0.260115, 0.230561, 1.623636, -0.190297, 0.415193, -0.057653, -1.480215, 0.053738, 1.113153, 0.218547, -0.671041, -1.507383, 0.717438, 1.844223, 0.630939, 1.625890, 0.127088, -0.071475, -1.260457, -1.249726, -0.959038, 2.164299, 0.507268, 0.194375, -0.568231, -0.606358, -0.074386, 1.034043, 1.147497, 0.100215, -0.636835, 0.568724, -0.068536, -1.281750, 1.593863, 1.938854, 1.019770, 0.663070, -0.956689, 0.100639, -0.398490, -0.916473, -1.039211, 0.554584, -0.261504, -0.073555, -0.130241, -0.882494, -1.379310, 1.844366, 0.617660, 1.127325, -1.575470, -0.154042, -1.422882, -1.155640, -0.707396, 1.282934, 0.003124, -0.224813, 0.284165, 0.232662, 0.929362, -1.390440, -1.287308, 1.866545, -1.010280, 1.712442, -1.134542, -0.303493, -0.868544, -0.916382, -1.447089, -1.748556, 0.324426, 1.156134, -0.435936, 0.033932, 0.515855, -0.717973, 0.027965, 1.252700, 0.997011, -1.459125, 0.939454, 1.253726, -1.565335, -0.006108, -1.643310, 0.873896, 1.374321, 1.225836, 0.564169, 2.153342, 0.162568, 0.651912, -0.418130, 2.703199, -0.767437, -0.534123, -0.294185, 0.285560, -1.023888, -0.096266, 1.327629, -0.547232, -1.165852, 0.056561, -0.068240, -0.574851, 2.475833, 0.610420, -0.604346, -1.104933, -0.095885, -0.108639, 1.184208, 0.000399, 2.368381, 0.941614, -0.641642, 0.324708, -0.957477, -1.203021, 0.813082, -0.150098, -0.296032, -0.135761, 0.870696, -0.107229, 0.634188, 0.866151, -0.081902, 0.325302, 0.842824, 0.390093, 0.025223, -0.203878, -0.570896, 0.164745, -1.844790, 0.520028, -0.023327, -1.829439, -0.456234, 1.800588, -0.199132, 0.992753, -1.584012, 1.606374, 0.349932, 0.682876, 1.050901, 0.870898, 1.312261, -2.837859, 0.733290, -1.073519, -0.025142, 0.738580, -0.574779, 0.580421, -1.445295, 0.138911, -0.580722, -1.430385, -0.628842, -0.905252, -1.387759, -1.177275, 1.764368, -0.966234, -0.530609, 1.081259, 0.225107, -1.078352, -2.185733, 1.035257, -0.793806, -1.409346, -0.784551, -1.106549, -0.126562, -0.905708, 0.269379, -1.128022, -0.242388, -0.423059, 0.105344, -1.024157, 0.202763, -0.063013, -0.088429, 0.655410, -1.110098, 2.428923, -0.502188, -1.386327, 0.226384, 0.604643, 1.620373, -0.364794, 0.778856, 1.857160, -2.043384, -0.325213, 0.132761, -0.545914, -0.417377, 0.042706, 0.209212, -0.701293, -0.149360, 1.221534, 0.417134, 1.092080, 1.184439, 1.789684, -0.040896, -0.480061, 0.916486, 2.427948, -0.111680, -0.231581, -0.041493, -0.379683, -0.015162, -0.145177, 0.646470, -1.081743, -0.558725, 0.075091, -0.658205, -1.520468, -1.368554, -0.435683, 0.404889, 0.623453, -1.698661, -0.045201, 2.583282, 1.622723, 0.515381, -2.472880, -0.349608, 0.761993, -0.425938, -0.247565, -0.165860, 0.578170, 0.214630, -1.104797, 0.237689, 0.099863, -0.344605, -0.584362, 2.300824, 1.934830, 0.870265, -1.091693, 1.200358, -1.127811, -0.624323, 0.413726, 0.279315, 0.453928, -0.681680, -0.627302, 0.258638, 0.344921, -0.623981, 0.562794, -0.215639, -0.856844, -0.794088, 1.259898, 0.237298, -0.622015, -0.548554, -0.502306, -0.174810, 1.027696, 0.806162, -0.467659, -0.239836, -1.998171, 1.063450, -0.718953, -0.139901, 0.545427, -0.714572, -1.050039, -0.315258, 0.345020, 1.039544, -0.948866, 0.298364, -1.238915, -1.511428, -0.610218, -0.938979, 0.377812, -1.114161, -0.372858, 1.207247, 1.328421, -0.238980, 0.268872, 0.167597, -0.487284, 0.463517, -0.361816, 3.039635, 2.437635, -0.044734, -0.258641, 1.838695, 0.080889, -1.251838, 2.388910, -0.033314, 0.069068, -1.440609, 0.259411, 0.343637, 1.518689, 1.273710, 1.182842, -0.750187, 1.290238, 0.002208, -0.352721, 0.390876, -1.150684, 0.119555, 0.282951, 0.501361, -0.069848, 0.949723, -1.317181, -0.989062, -0.088267, 0.520365, -1.843896, 0.089088, -0.195586, -0.311254, 0.659937, 1.233026, 1.125150, -2.106544, -0.356165, -0.779234, -0.691224, 0.484419, -0.931746, 0.809339, 1.002660, 0.370814, 0.853346, -0.548096, 1.514438, -1.187621, -0.662147, 1.479093, 1.327541, 1.307220, -0.234879, 0.403882, 1.447610, 0.589404, 0.694251, 1.343502, 0.272674, 0.695819, -1.971697, -0.448987, -0.082878, -1.171790, 0.567854, 0.177039, -0.769617, -0.249011, 0.916148, -0.773082, -0.621623, 0.152847, -1.794625, -1.364801, 0.501819, 1.037467, -2.247378, 0.861127, -0.657073, -1.112528, 1.174116, 0.983575, 1.945536, -0.734273, 0.342169, -0.452515, -0.989329, -1.565692, 0.567737, -2.375162, 1.539514, 0.180613, -0.231800, -0.754102, 1.981379, 3.051359, -1.317772, 1.254228, -0.000224, 0.684869, -0.271161, 0.132324, 0.312634, -0.484563, -1.966262, -0.647917, -1.647337, -0.648669, -1.341726, 0.174658, -0.761759, -0.014404, 1.944759, 0.014563, 1.354151, 0.974332, 0.585895, 1.500535, -0.562382, -0.906372, -0.462941, -0.996713, -1.512921, -0.180466, 1.329657, -0.379760, 0.280724, 1.320967, -0.749961, 2.008527, -1.209985, -0.731997, 0.308620, -1.720397, 3.468847, 1.166597, 0.364208, -0.477032, 0.365462, -1.407846, -0.146539, -0.430565, 0.746793, -0.504040, 1.846322, 0.308604, -0.199607, 0.464713, 0.967399, 1.176451, -0.954085, -0.310357, -0.312332, 0.376844, -0.141200, 0.626920, 0.526404, 0.487815, 1.620388, 1.133050, 0.610087, 0.787252, -1.111351, 0.080964, -0.643370, -0.551468, 1.412445, 0.110894, 0.437612, -0.533933, 0.197843, 0.660002, -1.448300, 0.303212, 0.222153, -0.010663, -0.377082, -1.287343, -1.244848, 0.992829, 1.138175, 0.372370, 0.172019, 0.384046, 0.685067, 0.370009, 0.150763, 0.040075, 0.499127, 0.037870, -1.727757, -1.036404, -1.291844, -0.674590, 0.435098, 1.315524, -0.050060, 0.092492, 0.867327, -0.280056, -0.815012, 0.058775, 0.279875, 0.304464, 0.336304, -0.606496, 0.249897, 0.147141, 0.326585, 1.065376, -0.200741, -0.024578, 1.711345, -1.081244, 0.254302, -0.493614, -0.766170, 1.137178, -2.513116, 0.477851, 1.114748, 0.535397, -0.476511, -0.349666, 0.930684, 1.363176, 0.299322, -0.473799, 0.240119, -0.145147, 1.566139, -1.574533, 0.856187, 0.557551, -1.186705, 1.320359, 0.925068, -0.289164, -0.113207, -0.469041, 1.077772, -0.092773, -1.313327, 0.292556, -1.077790, -1.116142, -1.835961, 1.567392, -0.789563, -1.157259, -0.066608, -0.020266, 0.295775, -3.064260, -1.619626, -1.247574, -0.333937, 0.639552, -0.738649, -0.343526, 0.413276, 1.288495, -1.008308, -0.294123, -0.610943, -0.259599, -0.501844, -0.520179, 1.200212, -0.934556, 0.989451, 0.180485, 1.793080, -2.066965, 1.462470, -0.795857, -0.960574, -0.416713, 0.013765, 0.915275, -0.294831, -0.220237, -1.689309, -0.923329, -0.069512, 0.005182, 0.564783, -1.919777, 1.912786, 0.417144, -0.031081, 1.462456, -0.391718, -0.624316, 0.173232, 0.252350, 0.016398, 0.595127, 2.154663, -0.027733, -0.755305, 0.187097, -0.971865, 0.063590, -1.592528, -0.266684, -0.138495, -2.285557, -0.799050, 1.624028, 0.547817, 1.956761, 0.141741, 0.388984, -1.128071, 0.169306, 0.129080, 2.300993, -1.876662, 0.113277, -0.157561, -0.498305, -2.280520, -0.410952, 0.207234, -1.054393, 0.599088, 0.355501, 0.107757, 0.097653, -1.604631, -0.844321, 0.464462, 0.658170, -0.357475, 1.042900, 0.223686, -0.420273, -0.090101, -1.214755, -1.180588, -1.094236, -1.393801, -0.637307, -1.002002, -0.755302, 0.072168, 1.117273, 0.103632, -0.369438, 2.210273, 0.170898, -1.366383, 1.044325, -0.513313, 0.389067, 1.236725, -0.929034, 0.783262, -0.005786, -0.271203, 1.839131, 1.016765, 1.187792, 0.323238, -0.113888, -2.164189, -1.405855, -0.274058, -1.355127, -1.506934, -1.182847, -0.370296, -1.614776, 0.297431, 0.052085, 2.701141, -0.926264, -0.659334, -1.514827, -1.096203, 1.766446, -1.792354, -0.516676, -0.970751, -0.610784, 0.214726, -0.105453, -0.081795, -1.493617, -0.187128, -0.801699, -0.350642, -0.525621, -2.161659, 0.584065, -1.357938, -0.521444, 0.499180, 1.660716, -0.291489, -1.528784, 2.352291}, - { -1.032016, 1.854591, -0.215522, -1.387603, 0.004889, 0.449155, 0.104728, 0.020874, 1.222272, 1.480285, -1.191374, 0.947607, 0.888379, -1.506574, -0.559701, -0.055621, 0.291745, 0.597127, 2.152806, -0.869542, 0.017395, 0.930051, -0.744311, -1.700843, 0.436947, -1.766412, 0.529422, -1.023080, -0.772948, -0.697452, -1.501460, 0.432844, 0.322991, 0.389627, -0.792569, -0.314687, 1.667322, -0.355861, 0.120736, -0.273842, -0.784053, 0.184458, 0.210351, -1.140201, 2.409621, 1.449104, -0.002138, 1.021659, -0.911501, -0.843906, 0.111113, 1.964941, 1.542510, 1.406612, 0.517131, 0.368924, 0.024763, -0.337369, -0.031090, 1.290943, 0.087439, -1.344030, -1.033239, -0.346714, 0.852564, 0.677325, -0.901013, 0.418104, -0.480731, -1.097337, -1.691154, -0.532958, 0.617703, 0.877878, -0.645001, -1.062746, -0.380974, -0.614441, 1.092631, -0.866036, -0.931524, -0.626952, 1.226366, 0.168713, 0.950177, -0.557153, -0.267041, 0.042744, -0.072765, -0.571458, 0.371207, -0.181331, -1.174651, 0.100353, 1.152169, -0.245983, 0.276579, 0.630689, 0.645390, -1.542664, 0.287892, -1.966227, 2.895799, 0.473836, 1.288372, 0.148612, 2.475049, 0.527445, 0.937163, 2.688011, 1.219828, 0.277092, -0.749727, 1.249389, 0.387824, 0.423623, 0.037290, 0.043830, 0.360338, -2.508510, 0.465263, 0.561708, 0.609726, 0.690628, -1.026875, -1.010403, 2.002129, -1.971392, 0.112570, -1.539712, 0.553410, 0.028059, -0.004749, -2.133714, -1.014866, 1.476596, 0.280019, 1.398513, 1.157147, -0.290232, -1.981096, 0.674028, -1.511503, 0.483117, 1.363053, -0.514163, -0.776454, -0.158192, -0.253181, -0.428754, -0.288293, -0.172351, -0.911873, -1.360609, 0.307155, 1.873235, -0.963907, -0.135169, 0.562139, 0.774167, -0.882563, -0.615164, 0.180195, 0.077910, 1.179424, -0.874645, 0.056420, 0.331574, -0.023752, 0.944618, 1.629864, -0.829140, -0.198809, 0.936105, 0.310516, -0.208277, -0.423705, -1.217533, -0.213382, -0.126103, -0.052538, -0.506724, 1.581277, -0.358663, 1.089691, 0.531895, -0.027278, 0.703215, -0.882655, 1.394934, 0.099182, -0.450208, -0.920682, 0.480102, -1.393848, 0.554102, 1.890914, -0.238349, -0.189114, 1.912245, -0.986157, -0.889509, 0.745610, -0.605612, -1.891715, 0.032407, 0.659069, 0.421151, 0.084908, 0.125713, -0.180533, 1.662164, -0.622092, 1.279968, -0.944012, -0.838864, 1.417750, 0.707576, -0.980073, 1.642846, -0.071000, 0.053094, 1.109880, 0.708380, 0.488305, -0.069913, -0.599691, -1.161746, 0.700080, 1.521088, 1.792642, 1.218995, 1.926570, -0.364577, -1.702465, 1.949011, 0.908122, 0.130924, 1.668756, 1.884508, 1.399567, 0.008585, 0.936778, 0.240411, -0.407272, -0.708686, -0.546560, 2.050210, -0.026404, 0.231036, -0.869428, -1.228726, -0.153557, -0.346251, 1.184444, -0.400680, 1.094365, -0.002089, -0.941457, 1.553974, -0.433057, 0.789555, 1.313542, 0.020200, 1.500007, -0.669353, -0.302262, 1.709308, 0.432081, 0.398792, -0.536806, -0.653943, -0.196166, 0.832619, -0.867496, -0.153895, -0.252974, -0.741366, 0.639479, -1.318888, -0.038313, -0.693417, -0.927080, 0.932684, 0.803425, -1.728262, 1.682792, -0.857272, 0.657629, 0.849434, 0.296028, 0.144598, 0.062429, 0.801032, -0.897822, -0.890341, 1.054406, -0.498566, 0.090428, -1.076260, -1.598137, -0.581367, -1.173660, 1.061905, 0.356659, 1.304267, -0.801799, 1.246165, 0.667837, -0.820372, -1.309478, 0.459676, 0.541285, -0.618476, -0.739771, 0.330440, 1.564528, 1.084407, 1.471269, -0.526647, 1.086766, -0.206993, -0.920489, 1.210893, 0.645602, 0.103009, 0.930268, -0.095701, 0.229570, 0.513355, 0.115237, -0.324102, 0.812715, 0.602063, -0.215722, 1.318895, 1.701331, -1.467334, 0.958047, 0.194303, 0.194073, -1.831349, 1.143847, 0.775388, -0.707565, -0.774336, 0.262818, -2.312440, 0.591929, -0.148091, -0.065918, 0.584594, 0.481410, -1.359851, 1.005084, 0.144354, -0.367480, 0.664287, 2.416342, -0.296834, 0.749579, 1.132690, 0.002088, 0.825948, 2.032626, -1.084534, -0.283351, 0.682833, 0.014223, 1.041453, 1.116392, -1.086432, 0.125484, -0.321226, -0.203686, 0.296916, 1.481791, -0.622020, 0.474773, 0.132598, -0.975393, -0.026756, -0.700388, 0.646137, 0.185499, 1.233930, 1.029603, -0.135610, -1.317337, 1.330919, 0.274546, 0.261772, 1.215554, 0.114212, 1.033923, 0.616942, 1.403023, -0.722602, 0.327544, 1.391384, -1.382234, -1.821349, -0.125506, -0.706927, 0.199987, 0.351954, 1.134098, 0.870109, -0.078746, -0.857906, 0.717979, 1.274832, -0.765643, 0.232387, -0.521633, 1.727670, -0.260526, -0.987254, -0.742446, -1.446580, 0.181792, 0.888987, 0.472363, 0.634425, -0.716143, 0.079465, 1.374539, 0.493535, 1.927585, 2.140982, 0.401549, 0.890757, 0.774744, 0.199304, -0.420552, -0.874384, 0.143213, -0.470475, -0.834608, -0.113475, -0.040145, 0.985630, 1.303231, 0.270954, -2.334831, 0.751316, -0.360642, 0.429777, -0.561546, 0.001370, 0.500387, -0.685473, -1.119624, 2.591336, 1.973171, -1.495251, 1.147286, -1.476510, -0.750757, 1.819601, -1.387690, -1.674675, -0.820915, -0.841003, -1.054115, -0.878545, 0.450059, 0.302665, -0.304095, -0.657107, -1.373809, 0.683586, 0.513120, -0.153538, 0.587214, -0.178789, -0.771145, 0.981733, -2.678084, -0.360978, 0.579160, -0.979916, 1.180557, 0.906121, -0.988775, 0.429118, -0.243366, -2.479257, 0.148848, 0.418409, -1.841728, 0.005940, 0.478099, 1.772866, -1.233891, -2.564396, -0.056156, 2.089041, 1.088386, -0.353672, 0.668447, 0.149646, -0.553954, -0.566497, 0.442340, -0.011381, 0.471670, 0.602019, -1.436193, -1.254965, 1.780027, 0.052386, 0.989152, -0.421028, 1.482023, 1.574207, -1.785544, -0.611356, 1.006527, -1.607428, 1.321297, -0.296010, -0.895521, 1.118481, -0.601377, -0.067650, -0.281833, 1.592834, -0.043791, 0.239481, 0.117711, -1.326522, -1.173818, -0.889782, 0.499607, -1.229618, 1.352457, -0.375628, -2.688049, 0.484384, -0.675598, -2.851353, 0.418927, -0.531147, -2.178747, -0.620355, -0.687873, -0.452168, 0.078381, -0.788451, -0.126407, -1.430971, 0.301005, -0.420261, -1.044814, 0.721834, -0.224389, 1.269181, -0.673290, 0.610022, 0.322914, 0.288976, 2.962226, 1.555213, 0.670430, -2.914404, 0.775814, 1.530241, 0.044895, -0.413111, -0.450824, 0.535644, -1.102416, 0.855280, 0.046259, -0.269084, 1.433368, -1.204725, -0.032151, 0.867805, 1.311642, 1.228350, -1.213409, -0.469054, -0.711696, 2.192108, 0.172786, 0.015074, 0.886867, -1.970909, 0.222367, -0.839810, -1.680780, -1.506236, 0.595583, -0.460526, 1.304477, -0.301202, -0.942746, 0.799834, -1.234622, 0.997966, -0.343350, 0.125635, -0.249554, -1.039301, 1.197757, -0.589366, -0.758682, -0.623128, -0.513029, 1.001507, 1.726441, 0.384944, -0.077365, -0.946518, -1.145625, -0.468252, -0.785403, -0.589111, -0.590267, 0.253627, 0.345603, -0.551738, -0.487664, -1.393245, -0.251796, -0.112630, -0.761932, 0.513099, -0.722046, -1.397475, -0.062571, -0.006208, -0.344936, 0.898064, -0.406844, -1.058608, -1.038658, -0.707946, 1.597920, -0.832562, -0.419433, 0.073509, 1.006773, -1.736862, 0.820719, 0.019082, 0.353860, 0.408105, -0.055810, -1.098349, -0.817160, -0.311048, 0.405275, -0.629797, 0.755819, -0.238527, -1.026413, -1.139971, -0.280944, -1.043725, 0.112288, 0.062357, -0.387122, -0.676964, -2.498029, -2.384445, 0.339674, 0.715561, -0.850102, 0.794963, 1.235157, -1.154691, -0.911378, -1.116083, 1.677790, -0.586472, -1.897209, 0.254429, 0.190187, -0.011855, -1.017788, 1.839750, -1.371098, 1.144897, -1.102128, -0.237888, -0.471465, 0.802670, 1.046923, -0.476656, 0.760300, 1.681519, -1.869753, -0.557502, 0.121166, -0.169569, -0.759741, -0.747529, -1.215231, -0.652986, -1.626459, -0.341549, 0.504136, 0.896154, -0.831009, -0.882100, -1.043559, -0.576469, -0.036531, 1.900556, 0.272033, -0.473085, -0.882971, 1.533360, 0.438491, 0.201686, 1.772072, 1.311067, 0.290760, 0.721544, 0.680458, 0.309648, -1.778819, 1.091028, 1.652424, -0.703120, -0.368153, -0.064626, -0.516528, 0.088144, 0.755239, 0.446299, 2.049288, 0.853415, 0.410563, -0.441081, 1.941374, 0.318625, -0.929125, 0.888702, -0.217404, -2.055099, -0.298698, 0.433219, -0.851539, 0.028616, -3.073194, 0.197669, -0.214431, 1.393304, 0.457332, 0.282850, 0.748774, -0.370778, 0.512766, -0.869590, 1.775725, -0.381640, 2.064993, -0.150312, -2.011588, -1.000874, -0.619422, 0.759872, 1.527296, 0.246786, 0.102310, 0.121937, -0.123196, -1.073119, 0.353966, 0.538203, -0.672015, -0.445545, 0.472643, -0.278015, -0.274855, 0.201580, -0.291376, 0.979554, 1.285204, -0.079972, 1.845073, 0.018455, -0.332106, 0.538070, 2.261812, -3.153538, -0.900794, 1.344540, 1.438202, 0.378637, 0.743369, 2.143876, 1.284867, -0.180881, -0.405424, -0.591861, 1.657997, -0.371613, 0.616362, 0.244465, 1.690240, 0.469006, 0.312795, -0.107786, -1.433827, 1.043196, 0.540520, 0.625573, -0.632253, 0.054265, 0.009328, 0.440699, 0.096355, 0.482888, 0.013599, 0.721417, 0.758791, -0.674839, -1.084236, 0.194385, -1.488305, -1.531361, -1.141776, -0.333379, -0.044094, -0.332861, 0.170944, -0.919710, 1.492268, -0.138132, -1.301799, 0.090258, 1.217156, 0.747416, 0.275898, -1.078026, -1.568503, -1.258780, -0.401220, -0.797802, 0.888903, 1.191863, -0.857255, -1.323898, -2.001235, 0.192529, -1.139978, -1.305345, 1.444400, 0.820702, 0.086833, 0.972912, -0.738201, 1.272847, 0.435851, -0.581540, -0.068129, -0.577289, 2.224838, 0.014232, -1.024243, 0.219190, 0.413199, 1.241418, -1.174235, 0.017577, 0.019241, 0.784325, 0.914175, -0.453461, 0.667504, -0.809297, -1.750080, -0.141297, -0.831413, -0.125206, -0.465609, 1.580447, -1.012284, -0.849111, 0.306523, -0.320722, 1.377635, 1.430311, 1.658944, 0.309130, -1.601476, -0.300309, 0.356393, -0.100079, 1.858357, 0.734674, -1.489920, -0.702290, -0.577557, 0.845826, 0.925556, -0.133251, -0.250079, -0.270773, -0.440477, -0.419883, -0.364977, -0.275343, -1.290047, -1.257682, -0.580341, -0.808149, -0.677219, 1.351719, -0.465671, -1.343446, 1.863603, 0.059346, 1.143813, 0.467443, 2.004931, -0.065551, -0.069550, 2.081304, -1.088374, -1.724354, 0.986678, 1.349470, -0.287666, 0.636318, -0.831416, -0.276590, 0.096441, 0.400207, 1.761069, 0.033869, -0.239444, 1.927289, 0.326985, 1.861964, -1.027518, -0.252546, -0.914581, -1.493719, 0.687954, 0.431235, 1.293586, 1.036075, 0.309026, 0.008513, -0.431012, 1.367234, 1.897807, 2.296672, 0.948918, 0.600105, 0.522261, -0.368362, 0.892143, 0.249466, 0.482641, 1.448118, 1.727586, 0.565913, -0.290096, 1.535042, -0.757973, -0.086502, -0.669223, 0.620891, 1.306139, 0.836862, -0.059012, 0.161054, -0.110510, 0.248580, 0.423718, 0.776868, 1.771792, 0.019362, -0.314416, 0.230599, 0.292728, -0.568906, -0.411275, -0.858015, -1.882231, -0.529734, 0.197664, -1.177380, -0.626984, 0.442823, 0.330114, -0.523000, 0.152460, 1.968234, -0.743490, 0.672194, 1.995935, -1.006615, -1.737551, -1.133825, 1.569160, -0.550759, 0.260316, 0.061030, -0.299893, -1.398609, 0.464938, -0.578189, -0.674429, -0.892877, -1.309711, 0.967669, -0.016976, 0.074026, 1.035867, 0.579666, 0.139395, -1.750185, -0.507347, -0.542170, 0.013362, 0.964037, 0.991608, -0.373843, -0.694114, 1.507900, -0.593654, -1.487798, -1.497645, 1.669663, -0.458306, -0.706962, 1.662581, -1.918587, 0.084422, 0.421538, 0.496799, -1.673889, 0.555501, -1.068548, 0.731318, 1.562805, -1.740687, -0.297419, 0.128330, -2.583031, 0.075735, -0.311489, -0.097381, -1.189062, -0.663472, 0.639390, 3.145621, -0.405558, 0.410006, 1.408620, 0.725816, 0.656646, -1.805473, -0.804754, 0.005580, 0.015301, 1.217217, -1.187022, -1.129431, -0.802469, -0.073172, -1.370412, 1.145019, 0.297423, -0.303112, -0.154936, -0.087705, -0.487541, 0.076855, 0.900322, 1.459603, -1.114173, -0.560727, 0.828400, 0.568284, 0.247648, 0.069986, 2.343649, 0.483855, -0.491534, 1.264371, -0.386331, 2.186863, 0.176023, -0.320987, 0.538502, 1.360584, 0.091475, 0.728556, -0.024649, 1.377089, -0.621904, 0.375754, 0.889572, 0.147274, 0.287843, -0.257625, -0.354862, 0.236499, -0.057406, -0.076215, 0.582610, 1.831080, -1.549489, 0.369506, -0.231272, -0.555946, 1.105228, 1.310853, -0.381417, -0.592675, 0.445043, 1.412374, 0.509445, 0.499025, -0.202159, -0.301325, -1.021279, -0.213811, -0.307318, 1.265393, 0.518794, -1.086239, -1.037994, -0.553106, 1.546336, -1.005629, -0.566092, 0.461581, 0.757976, -1.161483, 0.208647, -0.514475, -0.415844, 0.292909, -1.012986, 1.179868, -0.008937, -0.065337, -0.647396, 0.424811, -1.308007, -0.544268, 0.065002, 0.618984, -0.507736, -1.052013, 0.093192, -0.221534, -1.012366, -0.000609, -0.712374, -0.525488, -2.226508, 0.986113, 1.093016, 0.599521, 0.482077, -0.396838, 0.220787, 1.014042, -0.481698, -1.213871, 0.538134, 0.482876, 1.040492, -0.636604, -0.822290, -0.387025, -0.250082, 1.851348, -0.984867, -0.305903, 0.132120, 1.211872, -1.638612, 0.857618, 0.275511, 0.711673, -2.569485, -0.712061, 2.313772, 0.018603, 0.436174, 0.594517, 1.579452, 0.709101, 1.343971, -2.581629, 0.880758, 0.037315, 0.769113, -0.181262, -0.486842, 2.206519, 1.570604, -0.700580, -0.985305, 0.209329, -0.590215, -0.184059, 0.727232, -2.210170, -0.798697, -2.763262, -1.204549, -0.898423, -1.647859, -1.284928, 0.076998, 0.020094, -0.140689, -1.921330, 0.104324, 2.374990, 0.842787, 0.546089, 0.317766, -0.498612, -0.458068, -0.226340, 1.538769, -0.114176, -0.142312, -0.408754, 0.919678, 0.478961, -0.374630, 0.883696, -1.454080, 2.120202, -0.769070, 0.368273, -1.414514, 0.071525, 0.066694, -0.893816, 1.744107, -1.628857, -1.190436, 1.830014, 0.798957, 1.285507, 0.414290, -0.365950, 0.212305, 0.541625, 0.519255, 0.206425, 0.083886, 1.522180, 0.597596, 0.972386, -1.417210, -0.419069, -1.046872, -1.408441, 0.460918, 0.604269, -0.003579, 0.915099, 0.020660, 1.913400, 0.595366, -0.925062, 0.470077, -1.667605, -0.947630, -0.550432, -0.127000, 1.520927, -0.075824, 0.408459, 1.006025, -1.145472, -0.549303, 2.061292, 0.645890, -0.500019, -1.351231, -0.283737, 0.694273, 0.044929, 1.779419, -1.637010, 2.111714, 0.767379, -2.375297, 1.179533, -0.101051, -0.066479, -0.008702, -0.694684, 0.393051, 0.873756, -2.176816, -1.770323, 1.470756, -0.029126, 1.166746, 1.217988, 0.559861, -0.695957, -0.065061, -0.070542, 0.546533, 0.898012, 0.266859, -1.274410, 0.678097, 0.061996, -0.400796, -2.607193, -0.851315, -0.406411, -0.547298, 0.054909, 1.414761, 1.246948, 0.467590, 1.095844, 0.482120, 0.437341, 0.263228, 1.033184, 0.252267, 0.093054, 0.805185, 0.315904, -0.520940, -1.022251, 0.019651, 0.586666, -0.070927, 1.777155, 0.191013, 0.488259, 0.874730, -1.575678, 1.953128, -0.075579, 0.412057, -0.045897, -0.595760, -0.876899, -0.166518, 0.121110, -1.338137, -0.408745, -0.581085, 1.783476, 0.292805, 0.504644, -0.766789, -0.717569, 0.747268, 0.881905, -1.250172, 0.419696, -0.937994, -0.229856, -0.333113, -0.387024, -0.166988, 1.472329, -1.239947, 0.218135, -0.170028, 0.168799, 1.355003, -1.128460, 1.150250, -0.598744, 1.887246, -1.435522, 0.053824, -0.097469, -0.247719, -0.908708, 0.957033, 2.029927, -0.265685, 1.980939, -0.295662, -1.032470, -0.312848, 1.586759, 2.132348, -1.538381, 0.228691, -0.049835, -1.399582, -0.073877, -1.006920, -1.325234, -0.726887, 0.771350, 0.892443, -1.405279, -0.136513, 0.428208, 0.050376, -2.476303, 0.707187, 0.569651, 1.378333, -1.367301, -0.792259, 1.247573, 1.154033, -1.178072, 0.121984, -1.333111, 0.552416, 1.027333, -0.239504, 0.696476, -0.128553, -0.095029, -0.103731, -0.420336, -0.136789, -0.732562, 0.643649, -0.304384, 1.173717, 0.441279, 0.148747, 0.905687, -0.431355, -0.803931, 1.021063, -0.909395, 0.628105, -1.691992, 0.841441, 1.819508, -0.221426, -0.430381, -0.019026, -1.349211, 2.117701, -2.244253, -0.940768, 0.943783, -0.492540, 1.163696, 0.055375, 0.587787, -0.819144, 0.328868, 1.232107, -1.007656, -1.393181, -1.672471, 0.536193, -0.228995, -0.965492, 0.785634, 0.710431, 0.079519, 0.316411, -0.182454, 0.490831, -0.513063, 0.476037, 1.466525, 0.220559, -1.405481, -0.026434, 2.269587, -0.058644, 0.952468, 1.499490, 0.831637, 0.490270, 0.111448, -0.682964, 0.391554, 0.579796, 0.197869, -0.920101, 0.163704, 1.364783, 0.604521, 0.460194, -0.268582, -0.199590, -1.166637, 0.442435, -0.103673, -0.431949, 1.355813, -0.615516, 0.813909, 1.960588, -0.043940, -0.643737, 0.494287, -1.988429, 0.144331, 0.190850, -0.403714, 1.187951, -1.695865, -0.276980, 1.428582, 0.346514, 0.886400, -0.464825, 1.083113, 0.701988, -0.590220, 0.005318, 1.247763, -0.209317, 1.099862, 0.921660, 1.456642, -0.456111, 0.595674, 0.212764, -0.328237, -0.214248, -0.707355, -1.580833, -0.168709, 0.146383, 3.446459, -0.122041, -0.734542, 1.032795, 0.831277, -0.047282, -0.412163, 1.512903, 1.538750, 1.471705, 0.094461, 0.075108, -0.136330, 0.658774, 1.018835, 0.050999, 1.389396, -1.198546, 1.702388, -1.481226, 1.578812, -0.298361, -0.263696, 0.188468, -0.175714, 0.700729, 0.594524, 1.296757, -0.191567, 1.559525, 0.866800, 2.456388, -1.235216, 0.037084, -0.677195, -2.670623, 0.046851, 0.322372, -0.572669, 0.897736, 2.094399, 1.085917, 0.906435, -0.155260, -0.659601, 1.238277, 1.040122, 0.812068, -0.832285, -0.283456, 0.582074, 0.515003, -1.281442, 0.631931, 0.596915, -1.637752, -0.443029, 0.236002, -1.155528, 0.613431, -0.523756, 0.323791, 1.396541, -0.571049, 1.104737, 0.736704, 0.557855, 0.285693, 0.189533, 0.930596, -0.210904, -0.920275, 0.052844, 0.074781, 1.949393, -2.412667, 1.003973, -0.589588, -0.003506, -0.902035, 1.377478, -0.778610, -0.407606, 0.117293, -0.651661, 0.054945, -1.211458, 0.462582, 1.873424, 0.722806, -2.770347, -0.119273, -0.503750, 1.473681, 0.975476, -1.010413, 1.042296, 1.238433, -0.938008, -0.728560, 0.376925, -0.956081, 0.011466, 0.725805, 0.520027, 0.024736, 0.395166, 0.276382, -0.758967, 0.371791, -0.277016, -0.482217, 1.516854, 1.238215, 0.357917, 0.753775, -0.044133, 0.383709, 0.499183, 0.163549, -1.717057, -2.024710, -0.611703, 1.943177, 0.701638, 0.592317, -0.267938, 0.321441, -0.256890, 1.579996, 0.203618, 1.526209, 0.179004, -0.660084, -0.069916, -0.014608, 1.471248, -0.897747, -0.235631, 0.112548, -0.346779, -0.728746, 0.624949, -1.149650, 0.757305, -0.896338, 2.843814, -1.371808, -0.448464, 0.954617, -0.962784, -0.036211, 0.610669, -0.092109, 1.645823, -1.188056, -2.315273, -0.528662, -0.717103, -1.277390, 1.336446, -0.147532, 0.654006, 0.463884, -0.552874, 1.955063, -1.285863, 0.992872, -1.916208, -2.395226, -0.408732, -1.977409, 0.917685, 0.383861, -0.142092, -1.318711, 0.124619, 1.056977, 0.413814, 0.336144, 1.533921, 0.223313, 1.060642, -1.283249, -0.631323, -0.175790, 0.651299, -0.630352, -0.704957, 1.356616, -0.880676, -0.030906, 0.542885, 0.846886, 0.586080, 0.093319, -0.157209, 1.112800, 1.229595, 0.005031, -0.391875, 0.533880, -1.191926, -0.791639, 1.051172, 1.205914, 0.558227, 1.948544, 2.067349, 2.409107, 0.266498, 0.328651, 0.865006, 1.353431, -1.515322, -2.389339, 0.145200, -0.671403, -1.114850, -0.061807, -1.386645, 0.393648, -1.953225, -0.282228, -1.394624, -0.523367, 0.237623, -0.684228, -1.456224, -1.633033, 1.499257, -0.893801, -0.464386, -0.877572, -0.206085, -0.447041, 0.758949, 1.617575, 0.753378, -0.250988, 1.006753, -1.099142, 0.881237, -1.572938, -1.160119, 0.644720, 0.225622, -1.069600, -2.109837, -1.390318, -1.611650, -0.714760, 1.134972, 0.643940, 1.706788, 0.115340, -0.530326, -1.246605, 0.487469, -0.132878, 0.409373, -0.859713, 0.799765, -0.413604, 1.000953, 0.798361, -1.259677, 0.428005, -0.923447, 0.631390, -0.500858, 0.557168, -0.275840, 0.438324, -1.572771, 0.445342, 1.004666, -1.209943, -0.357591, 0.068273, 2.305620, 0.597706, -1.054057, -1.814628, -0.788999, -0.588640, 0.206967, -0.103477, 1.809712, 1.267682, -1.026873, 2.027195, -1.285425, -0.972916, 1.352830, -0.526871, 0.544960, 0.541204, 1.308058, 0.834290, -1.286143, -0.154372, 1.407742, -0.246564, 0.830907, -0.967135, 1.820153, -0.549792, -1.070620, -0.534266, -0.919116, -0.185253, 0.731539, 0.212810, -0.332154, -0.510626, -1.454790, -0.080025, -0.351333, 0.157283, -0.549266, -1.615344, 1.730455, -0.649297, 0.190744, -0.831886, -0.936667, 0.015948, 0.720576, -1.876699, -0.682965, -0.453794, -1.414689, 1.736050, 0.008561, 0.312144, 1.296210, -1.280944, -0.704392, 0.290724, 1.565238, -0.202578, 0.191801, -0.968651, 1.514850, -1.114058, -1.096789, -0.820385, 0.845176, 0.413650, 1.021525, 1.222043, 0.154778, 0.454504, 1.096233, 1.266801, 1.635947, -0.113073, 1.154464, -1.577966, -0.794192, 0.220213, 0.399331, -1.302455, -0.416022, -1.026614, -0.097876, 0.951085, -0.519640, 1.567650, -0.060696, 0.663175, -0.077574, -0.192225, -0.149003, -1.062935, -1.037653, 0.408102, 0.479170, 1.558305, 0.678527, -0.581692, 2.430110, 1.163041, -0.680079, 0.396466, -0.705365, 1.590397, -0.740765, 0.867322, 0.040142, -1.303725, -0.684827, 0.131530, -1.807243, 1.528909, -1.010846, 1.640436, -0.908713, 0.787411, 0.231352, -0.745874, 0.160292, -0.279531, 0.961012, -0.797647, 1.366180, -0.901171, -1.337296, -1.238572, -0.402956, 0.460458, 0.380735, -0.154166, 2.192153, 2.028020, 0.337790, -0.527919, 0.713404, 1.199757, -0.055861, 0.851719, 1.414778, -1.763312, -0.001033, -0.542141, 1.378675, 2.086765, 2.305128, 0.547403, -0.851679, -0.333418, 0.070833, 0.965707, 1.560105, 1.510050, 2.643993, -0.706800, 1.003849, 1.358109, 0.846680, 0.901954, 0.112089, -0.836486, -0.064886, 0.430954, 0.607838, 0.375196, 0.289134, 0.330539, -0.097550, 1.617773, 0.903045, 0.742820, 1.826865, 0.926677, -0.718733, -1.047407, -0.886977, 0.369895, -0.606141, -0.572282, -0.479812, -0.218184, -1.774815, -0.805873, -0.730471, 0.823628, 1.142655, -1.514761, 1.791532, -0.234077, 0.955067, -1.358827, 0.616646, -1.283117, 0.877659, -1.940242, -1.246764, 0.640437, 1.130462, 1.001348, -1.680912, 0.409822, -1.666909, -0.030885, -0.516816, -1.856195, 1.018544, -1.724585, 0.522068, 0.700098, -1.143859, 0.572873, -0.961349, 0.820750, -0.010485, -0.116311, 0.203981, 0.590563, -1.003838, -0.787620, 0.344983, 1.350685, 1.458603, 0.420328, -0.033227, 1.323458, -1.059601, -1.720771, 0.709019, 0.913253, -0.470768, 1.742693, -1.082031, -1.177111, -1.998001, -0.563768, 0.971397, 0.067253, -0.101241, -0.186177, -0.508653, 1.322866, -0.055172, 0.618867, -0.008830, 0.975024, 0.869386, 1.234461, -1.351817, -0.236427, -1.868688, 0.786276, -0.265823, -1.178222, -0.578450, 0.256279, 1.031529, -2.289628, 0.553063, -0.661698, -0.990158, 0.396663, -1.957404, 0.999205, -0.109836, -0.985665, 0.083380, -0.534359, 0.222067, 1.084438, -0.862686, 1.312481, 0.760783, -0.581048, 0.268677, -1.480391, -0.107075, -1.184436, -0.048022, -0.344521, 1.393321, 0.044444, -0.383481, 1.147731, 0.360637, 1.734339, 1.802311, -0.726881, 0.249944, -0.373506, 0.898014, -0.964003, 0.876672, 0.426642, -0.194719, 0.564961, -0.697050, -0.312073, 1.120262, 0.044470, 0.470137, -0.122352, -0.604833, -0.349258, 0.833419, 0.169384, 1.268513, 1.729769, -0.236001, -0.233723, -0.580897, -1.161469, -0.365901, 0.312669, 0.887875, 1.546978, -0.890675, 0.862030, -1.636754, -1.424074, 1.165398, -0.158082, 0.288339, -0.451497, 0.285630, -0.240152, 1.615812, 0.680265, 1.595659, -0.756025, -1.018565, 2.034748, -0.485651, 0.994230, -0.604563, 1.064825, 1.926302, 0.336396, 1.088176, 1.708239, 0.502367, 0.116351, 0.103977, 0.588522, 0.063292, 1.254127, 0.304198, 1.096845, 2.508130, 1.049502, -1.006886, -1.027467, 0.397627, -0.794067, 0.662102, 0.864420, -0.024122, 0.505713, -1.151320, 0.891628, 0.202978, 1.682321, 0.795602, 0.633982, -1.115798, -1.693797, 0.127936, -0.077949, 3.344180, 0.242363, 1.002810, -0.503455, -0.550001, -0.147092, 1.216906, -0.316945, -0.260383, -1.388100, -1.169067, -1.270534, -0.625484, 1.227430, 0.935123, 0.037409, 0.372030, -0.154392, -0.684856, -0.208470, -0.657843, 0.125208, -0.582134, 0.382061, 0.860177, 0.611998, -0.317250, 1.057534, -0.342993, 1.550719, -0.594171, 0.035464, -0.591165, 1.047574, 0.960892, -1.699322, 1.535361, -0.667340, -0.900123, 0.201211, 0.033034, 0.346498, -1.110052, 0.407570, -0.038033, 0.250053, -2.031626, 0.315210, 0.641723, 0.562864, -0.090892, -1.308061, 1.533030, 1.242754, 0.098800, -0.646152, -0.523367, 1.535242, 1.043365, -0.850727, -0.521824, -1.078189, 0.648358, -1.514060, 0.725995, 0.384459, -1.331182, -0.760957, 1.403442, 0.563748, -1.040899, -0.193141, -1.567497, -1.193108, 0.190353, 0.552560, -1.074500, 0.653699, 0.819858, 1.906865, -0.750278, 0.314379, -0.029354, 0.286899, -0.536086, 0.059802, 0.380686, 1.620046, -0.571762, 1.314672, -1.293426, 0.307908, 0.419348, 0.371080, -0.928048, 0.122027, -2.604293, 1.059884, 0.027451, 0.903947, -0.272890, 1.052297, -0.386181, -0.983350, -1.723490, -1.499208, -0.251930, -1.946835, -0.064450, -0.491760, 1.573286, 0.032768, 0.013694, -1.061894, -0.974271, -1.146702, -0.716149, -0.752461, 0.653892, 1.547198, 0.103832, 0.698579, 0.671568, 0.478396, 1.627655, 0.271561, 1.359593, -0.324283, 1.696703, -0.258062, -0.728895, 0.863040, -0.091661, -3.772455, 0.230892, 0.292104, 2.534233, -0.102419, -0.913761, 0.931531, -0.155057, 1.769632, -0.535695, 0.382460, 0.152282, -0.467083, -0.668859, 0.105002, -0.660106, 1.467721, -2.155798, -1.704149, 0.336524, 0.662871, -0.103230, 0.879865, 0.516020, 0.295518, -0.013646, 1.164235, -1.102249, -0.198510, -0.366394, -0.628972, 1.193508, -0.151948, -0.271104, -0.145160, 1.066895, -0.149989, -1.064653, -0.525015, 0.144321, -2.076643, 1.067538, 0.170173, -0.818574, -1.257330, -0.471032, -0.086021, -1.968988, -0.577781, 2.044721, 0.206383, 0.607284, 1.592395, -0.679272, 2.263664, -2.147050, 1.049730, -0.600864, -1.215987, -0.982422, -1.701561, 0.923156, 0.597927, 0.614331, 1.865459, -1.263711, -0.680304, -0.845397, 0.711188, -1.246963, -0.683299, -1.446251, 0.976431, 0.345499, 0.951938, -1.102222, -1.069594, 0.055713, -0.192610, 2.048524, 0.161287, -0.153846, 0.644674, 0.279740, 0.610724, -0.395827, -1.502689, 1.101688, 1.885468, -0.833984, -1.900289, 0.050612, -1.994453, -0.851452, -0.404429, -0.258913, -0.406011, -0.073366, -0.044755, -1.064263, 0.507616, 0.948567, 1.255216, -0.455703, 1.300927, 0.413346, -0.719824, 1.005476, -0.324980, -0.180993, -0.995937, 0.297535, -1.116001, -0.872563, -0.451288, -0.347697, 1.236664, -1.293019, -1.524871, 0.372686, 0.408280, 0.442732, 0.212313, 0.551812, -0.306874, 0.456919, 0.395687, -0.775057, 0.045567, 1.546288, 0.759643, 2.396427, -0.557435, -1.166623, 0.799720, 0.351509, 1.172748, -1.392950, 0.735341, 1.069346, 0.229549, -0.953077, 1.005276, 0.663233, 0.132659, -0.214504, -2.755625, 0.994023, -0.486711, -0.309840, -0.861233, 1.559172, 0.136010, 0.334843, 1.440723, -0.000989, 1.111148, 0.120530, -0.331084, -0.365218, -0.824321, -0.869514, -0.083013, -1.126565, 0.672072, -0.459549, -0.767582, 1.208314, -0.446348, 1.161726, -1.721873, -0.679274, 0.028978, 1.341399, -1.245065, 0.317287, 0.321357, 0.079317, -0.716698, 1.170179, 0.237163, 0.675552, -0.166115, 0.407111, 0.399885, -0.968576, 0.681371, 0.598661, -1.752539, -0.173853, -0.020455, -0.382180, -1.068781, -1.096903, -0.225546, -1.855226, -0.748854, -0.070013, 1.912014, 0.588166, 0.074576, 0.592623, -0.314434, -1.202972, 0.241658, 0.100086, -1.498520, -0.707393, -0.846801, -0.742180, 0.590103, -0.524420, 0.919087, -0.822203, -1.158576, -0.899081, 0.648302, -0.917771, 0.299502, -0.398934, -0.573695, 0.978786, 0.304536, 0.903239, 0.655523, -1.492181, 0.154611, -0.171831, 0.740646, -0.143299, -0.483662, 1.385643, -1.079088, 0.177135, -1.194415, 0.830433, -1.193854, 1.845001, -0.396713, 0.032579, 0.471722, -1.786436, 0.890630, 1.617960, 1.248826, 1.158249, -0.032984, -0.356479, -0.821236, 1.848518, 0.505010, 0.113255, -0.600625, -1.074236, 0.526376, 0.223529, -0.064476, -0.152476, -1.299967, 0.121514, 0.633766, -1.049633, -0.465552, -1.145384, 0.276140, 0.259913, -0.046988, -0.515279, -0.310216, -0.142159, -1.217004, -0.804346, 0.823779, 0.673845, 1.646384, 0.531953, -1.010857, 0.896076, -1.067919, 1.282693, 0.461994, -1.065891, -1.117791, 0.369392, -0.782354, -0.158739, 1.103918, -0.254131, 1.109031, -1.705459, -1.135567, 1.165624, -2.075440, -0.058033, 1.362951, -0.755137, 0.971397, -0.016074, 1.099171, -0.710694, 0.461655, 1.444956, -0.747823, -2.926803, 0.770790, -0.063315, -0.539705, -1.823800, 0.689401, 0.735259, 0.319308, 1.269656, -0.682643, -1.140455, 0.623030, -0.749413, -0.874429, 0.118068, 0.048593, -0.680377, -0.645648, -1.434522, -0.360171, -1.977347, -1.589783, -0.201440, 0.626622, 0.223287, -1.358728, -0.351137, 0.609879, 0.723918, 0.848012, -1.229136, 0.509654, -0.234734, 1.237493, 1.174296, 1.377581, -0.630168, 0.851766, -0.958202, 0.514781, -0.729680, 0.817819, -1.662856, -0.595757, 0.462144, 0.613390, 1.107780, -0.658617, 0.498097, 0.549595, 1.972459, -1.004603, -1.881727, -0.726333, 0.791114, -0.202812, 0.055109, 0.761539, 1.179312, -0.531588, -0.748678, 1.684076, 1.143644, 0.161425, -0.932355, -0.394319, -0.289218, 1.400532, -1.612496, 0.241063, -0.201612, 0.827243, -0.108612, -0.114052, 1.354226, 1.432404, -1.608047, 0.473381, 1.027832, -0.709460, 0.365425, 0.070829, -0.665322, -1.205278, 1.123336, -0.735939, 0.226728, 1.492900, -0.933165, -2.980941, -0.732041, 0.192348, 2.012847, 0.270914, -0.280728, -1.110859, -0.704557, -1.215169, -0.044518, -0.222197, -0.713530, 0.023918, -0.027181, 0.708304, -0.549459, 0.492234, -0.338531, -2.626127, -0.720413, -2.854406, 0.786457, -1.835711, 1.135623, -1.766952, 1.192702, -0.183353, -0.697780, -0.404982, -0.209856, 0.747576, -0.179077, -0.826658, 0.211499, -0.949399, -1.093148, 0.763003, 0.368006, 0.616929, 1.799301, -0.248912, 0.815946, -2.082269, -0.233851, 0.480418, 0.433150, 1.435929, 0.674256, -0.821936, -1.744937, 1.349838, -1.143740, -0.042019, -1.068779, -0.036604, -0.826578, -1.269788, -0.163324, 0.980576, 0.145160, -0.168131, -0.299735, -1.432980, 2.077291, -0.623178, -0.946511, 0.013062, -1.109483, 0.853656, -2.031153, -0.035052, 1.027674, -1.615746, 3.277532, -1.530270, 1.090109, -0.919569, 0.758519, 2.209165, 0.194935, 0.533125, 0.905261, -0.647402, 0.093282, -1.119283, 1.824330, -0.971285, -0.928625, -0.855520, -0.140929, 0.151129, 0.639285, 0.727474, 0.934177, 0.163255, -0.077864, 0.140581, -0.190447, 0.106935, 2.394971, 1.526551, -0.111116, -0.327693, 0.531850, -0.906037, 0.309561, -0.716739, 0.578917, 0.355348, -2.203720, 0.195933, 0.660357, -1.340626, 0.395982, 0.019702, -0.258033, 1.631359, 0.232673, 1.084207, -0.524542, -2.116215, 1.392312, -0.102300, 0.781665, 1.136476, -0.213952, 0.728676, 0.621558, -0.023629, -2.278256, 2.337897, -0.810747, 1.760615, -0.853349, -0.594865, -1.097098, -0.030849, 1.177287, -0.568098, -1.555266, -0.547187, -0.466962, -0.304102, -1.745990, 0.457723, -2.220311, -0.004086, -0.285437, 1.551086, -0.453740, -1.330529, 2.456252, 0.326602, 0.895571, 0.666339, -0.732530, -2.124988, 0.915875, 1.982891, 0.257027, -0.239658, -0.522056, 1.463049, 0.467841, -0.402214, 0.055518, -0.324530, 1.333185, -0.318277, 0.146713, 1.087032, -0.330806, 0.764165, -0.577693, 0.693955, -0.448005, 0.900752, -0.427641, -0.877528, 0.264105, 0.729760, -0.714564, -1.728755, -1.856451, -0.684253, 0.446021, 1.480096, 0.986339, -1.027836, 0.502443, 0.835218, 1.092301, -0.705589, 1.796223, 1.050501, 0.100831, -0.395559, -1.775399, 0.691389, -0.214155, 0.736650, -0.632579, -0.085798, 0.167135, -0.374284, 0.087788, -1.962084, 1.509764, -0.910973, 0.496838, -0.505171, 0.626436, 0.276608, 0.033155, 0.548369, -0.355129, 0.724806, -0.938911, 0.730872, -0.139884, -0.352924, 1.209760, -2.784087, 1.582661, -1.541018, 0.120211, -0.319449, 0.290768, -0.453909, -0.719737, -1.028474, -1.322815, 1.617754, 1.243056, 1.668473, 0.719025, -0.790461, 0.213352, -1.156175, -0.240148, -1.699316, -0.465595, -2.036089, 2.570208, 0.524211, -2.019296, 0.675555, 0.294202, 0.627027, 0.029701, 0.209171, 2.119109, -0.837285, -1.555292, -1.214675, -0.778165, -0.730934, -0.220054, -0.572724, -1.244467, 0.899617, -1.774891, -0.501535, 1.232534, 0.249357, 0.724067, 0.299136, 1.117942, 1.226046, 0.409235, -0.231697, -0.592938, 0.226446, -1.561394, 0.228419, 1.810575, -0.327771, 0.819889, 0.158609, 0.342542, 1.094945, 0.343868, -0.858801, -0.777628, -0.887488, -0.096936, -0.793064, -0.305448, -0.716926, -0.696180, -0.129663, 0.246629, -1.211957, -0.055691, -1.139108, -0.274116, -0.996722, 0.128087, -0.160157, -0.741477, 0.078587, -0.221049, -0.480052, -1.808400, -1.180372, -1.117711, -0.595097, 0.741232, 0.311395, 0.490400, -0.083445, 0.234577, -0.503631, 0.461917, 0.099144, 1.048437, 0.564109, 1.520398, 0.015736, -0.709918, -1.858296, 0.443715, -1.230118, 1.172389, 1.223183, -1.077773, 1.593823, -1.943502, 1.225823, 0.026566, -0.199898, -0.059304, 3.115885, -0.439566, -1.177517, -0.211195, 0.608833, -0.922508, 0.283197, 1.771180, -0.554386, 0.073628, 1.094411, 1.877895, 1.245303, -0.636822, -1.386112, 1.222266, -0.743528, -0.318297, -0.295041, 1.103942, -1.514988, 0.791654, 1.226119, 0.879487, -0.461865, 1.663185, 0.104435, -0.101085, -0.766770}, - { 0.689951, 0.097325, -0.842049, -0.408984, 0.681186, 0.431712, -0.574087, 0.153478, 1.313640, -0.851003, -0.033713, 0.634940, 0.363657, 0.784135, 0.926034, -1.200096, 0.831650, 0.371080, -1.426944, 1.458924, -0.105939, -0.756442, -2.004988, 0.770335, 1.108040, -2.033500, 0.312406, -0.534367, -0.031998, 0.559736, -0.961870, 0.932116, 0.687371, -0.400492, 0.507023, -0.341746, 0.965531, -0.048065, 0.375511, 1.402407, 1.079850, 0.406902, 1.444163, -0.033590, 0.275076, 0.263476, 0.054831, -0.794711, -1.773072, 0.029096, -0.901910, -1.457686, 1.229610, 0.042231, 1.098095, 0.186009, 1.943123, -1.130041, 0.269797, 0.755049, 0.417993, 0.333036, -0.329134, -0.693672, 0.511281, 0.268551, -1.040382, -1.149143, 0.502747, 0.067995, -1.342633, 0.436317, -0.314542, 0.488527, 0.920689, -2.299440, -1.353595, 0.015131, -0.671603, -0.018836, -1.529278, 1.005406, 1.503572, -1.575159, 0.413875, -0.287277, 2.131307, 0.870388, -1.705459, -1.411482, 1.323493, 0.869190, 1.635208, 0.637823, 0.630954, 0.578550, -1.111362, 1.848269, -0.947274, 1.111124, 1.254176, 0.210646, -0.164543, -0.523212, 0.671140, -1.610833, -1.249851, 0.533944, 0.196678, -0.734848, -0.156679, -1.202376, 1.310191, 1.402138, -1.031699, 0.438359, -0.126641, -1.756959, -0.898102, 0.084334, -0.126336, 1.198977, -1.002284, 0.889119, 0.139882, 1.493109, 0.537658, -0.732972, 2.012621, -0.502716, -1.080049, 0.457279, 0.674679, 0.076529, -0.745520, -0.158427, 0.375695, -0.601720, 2.490990, -0.445907, 1.225331, -0.961198, -1.169462, 0.154979, -1.580261, -0.734533, 0.294848, 0.850115, 0.247139, -0.294829, -2.265285, -1.089797, -0.588404, 0.475075, 0.647060, 0.169229, 0.249568, -0.208935, -1.153369, -0.845720, -0.371088, -0.662505, 0.123438, -1.839646, 0.699477, -1.214284, -1.246900, 2.034276, -1.397566, 1.146364, -0.028732, 0.512021, -0.888734, -0.122492, -1.622697, -0.834302, -1.547315, 1.126431, -1.158501, -1.691902, -0.650445, -1.907658, -0.027434, 1.058581, -1.730337, 1.705516, -0.687672, -2.149556, 1.591849, -0.293423, 1.101824, -0.625354, -0.186441, -1.600639, 0.429803, 0.868616, -1.646954, 1.413395, 1.753749, 1.716950, 0.101521, 0.937510, 0.457540, 0.202797, 2.227267, 0.334415, -1.323006, 1.549792, 0.196139, -1.021303, -2.404240, -0.785139, -1.401868, -1.681349, -0.091364, 0.031759, -2.506438, 1.650650, 0.292867, -1.181819, -1.076227, -1.223304, 0.246239, 0.646191, -1.189787, 0.294281, 1.147983, 0.413658, -0.235058, 0.414948, -0.837366, 1.328595, 0.388871, 0.532362, -0.004196, -0.971951, 0.406416, 0.208283, -0.517296, -1.595229, 1.520931, 2.184674, 0.283389, -1.169685, 0.856360, 0.690161, 1.157026, -1.294999, 2.405818, -1.000748, 0.547409, -0.779746, 0.297089, -0.357001, -0.585580, 0.549026, 0.171888, 0.298578, -0.350796, 0.310001, -0.497194, 0.098578, -1.898388, 0.975992, -2.216721, 0.995036, 0.364646, -0.974152, -0.316486, -0.955412, -1.513883, -1.036198, 0.313992, -0.639762, 0.794014, -0.212252, -0.767540, 0.520552, -0.982692, -0.920780, -0.048713, 1.626255, 0.282115, -0.777698, -0.835181, -0.418324, -1.680892, -0.934136, -1.537712, -0.113042, -0.060567, 2.078120, 0.544885, -0.647449, 0.950259, -0.272968, -0.078856, -0.524596, 0.843698, -0.075209, 1.782109, 0.564126, 2.029315, 0.111872, 0.599726, 1.980710, 0.662641, 0.566985, -0.355790, 0.326389, 1.348127, 0.985709, 0.230372, -0.374585, 0.889464, 1.538096, -0.545130, -0.357992, 1.251312, 0.631189, 1.612237, -2.079338, 0.015839, -0.134100, 1.345410, 0.490089, -0.424754, 0.760101, -0.493129, -1.728163, -0.579848, 1.294129, -1.945330, -0.149489, 0.054411, -0.164451, 0.393074, -0.835098, 1.108992, 0.424708, 0.006197, 0.540134, 0.073163, -0.270356, -0.866458, -0.806532, 0.701126, -0.125671, 0.992588, 0.676596, 1.043440, -1.011311, 0.075780, 0.453422, 2.106599, -0.241383, -0.619887, 0.623556, -0.498441, 1.641868, -0.887002, 0.218399, -0.210046, 2.037644, 1.125943, -0.249855, 0.684336, -0.159822, -2.276832, -0.780667, -1.900090, 1.240956, 1.778817, 0.888939, -0.852585, -0.751947, -0.045643, -0.484234, 0.675671, 0.444654, -1.022348, -1.149806, -1.031918, -0.324696, 0.656732, -0.258560, 0.986993, -0.772448, -0.217280, 1.702929, -0.201151, 0.452720, -1.056508, 1.474309, 1.341681, -0.958542, 0.635343, -0.555497, 2.146910, 0.826012, -0.544909, 1.457129, -2.649341, -0.169285, -1.786415, -0.786847, -1.254448, 1.459025, -0.254798, -0.366311, -0.742762, -2.138465, -1.182953, -0.184985, -3.140683, 0.375086, -0.189853, 0.684027, -0.744228, 0.826484, 0.455434, -1.718065, 1.518439, 1.249987, -0.523672, 0.211889, 0.684187, 0.355597, -0.027999, -1.737903, 0.849408, 0.461129, 1.120344, 0.424578, 0.528711, -0.055951, 0.291723, -0.779995, 0.151308, -0.634254, -1.199173, 0.108834, 0.550735, 0.381578, 1.151941, 2.402412, -0.177042, -0.228641, -0.339709, 0.766508, 0.767482, 1.088771, 0.052341, -0.169850, 0.856926, 0.346416, 0.623490, 0.867838, -1.582609, 1.580532, 1.158016, 1.064035, 0.987111, -0.544885, 1.192940, 0.394496, -0.212381, 0.191806, -0.255303, 0.491913, 0.494330, 0.767965, 0.836769, -0.740160, 0.041891, -1.748031, 0.422618, -1.368583, 0.201665, 1.486212, -0.336275, -0.562319, 1.679778, -1.023449, 1.101054, 0.108002, 0.365185, -0.200283, -0.775822, 0.247592, -0.800007, -1.416423, -0.280428, -0.196346, -0.617912, 0.740562, -0.076115, 0.662654, -0.968496, 1.273145, 0.082485, 2.339176, 0.672833, -0.376356, -0.170802, 1.277735, -2.182541, -1.006511, -0.561782, 0.439777, 0.106182, -2.161812, -0.548316, -0.208754, -0.135248, -1.427445, 0.149820, -1.952311, 0.522910, 1.175716, -0.470227, 0.620100, -1.549889, 0.354314, 0.733683, 0.121963, 0.961040, 0.121256, 0.216021, 1.257174, -0.037237, -1.156936, 0.251176, 0.395304, -1.017317, -0.744162, -1.268397, 0.614057, -0.699220, 0.012200, 1.765265, 1.458704, -1.509709, 0.406552, 0.716127, 0.851425, -1.653791, 0.699570, 1.925062, -1.628428, 1.492858, 0.441321, 0.219389, 0.091819, 0.612288, -0.361136, 0.142359, -0.515524, -1.096450, -0.260036, 0.466881, -0.531250, 2.186645, 0.087140, -0.575417, -0.879779, -0.794964, 0.693024, -0.075257, -1.420365, 0.218337, 0.059935, -1.002202, 1.266697, -0.341917, 0.187407, -0.205643, 1.535496, 0.018877, -0.603322, -1.064602, -0.515364, 0.793993, 0.322875, 1.075979, 2.021308, 0.864498, 0.572107, 0.838082, 1.576862, 0.979788, 1.207642, -0.382269, -1.507238, 1.256837, -0.535220, 1.090951, -0.761628, 0.814542, 1.118759, 0.785260, -1.302554, -1.003707, 1.032231, -1.104005, 0.563237, 0.801158, 0.402821, 0.572866, -1.589107, -1.475629, 1.309771, -1.013358, -0.359048, -1.917231, 1.301166, 0.304311, 0.134104, 0.693582, 0.226595, -1.053878, 0.374178, -1.396904, 1.537522, -0.722396, 1.115089, 0.192487, 0.591805, 0.297311, 0.495835, -0.059763, 0.710920, 0.688616, -1.242882, 1.064096, 1.164572, -0.381910, 0.333554, -0.165045, 1.385929, 0.118782, 2.058575, 0.752836, 1.546412, 0.421473, 0.388646, 1.197587, -1.006244, 0.061473, -0.052546, 1.931221, -1.155875, 1.083126, -0.481900, -0.173046, 0.266837, 0.538307, 1.738582, 0.138797, 0.302340, -0.208745, 1.494761, 1.121132, 0.676848, 0.799758, 0.091338, -0.121311, 1.291842, 1.227370, 0.100644, 1.029869, -0.356102, -2.536334, 0.017960, 0.747882, 0.820157, 1.579158, -0.239047, 0.625578, 0.287629, 1.486529, -0.897932, 1.621744, 1.505213, -2.509670, 1.147579, -0.531808, -0.303608, -0.027603, -0.229468, 0.769872, 0.127854, -0.570592, 0.020179, 0.220692, -1.323555, -0.059471, 0.879047, -0.278977, -0.780658, 2.081504, -0.644623, 0.702622, 2.190915, 1.435745, 0.251836, -0.189986, -0.513796, -0.645874, -1.168766, -0.004392, -0.363151, 0.763016, -1.795154, -0.731690, -0.755075, 2.421360, 0.829916, -0.135463, -0.607727, -1.120921, 0.315364, -1.230479, 1.653468, 0.319027, 0.204565, 1.467268, 0.456773, -0.851812, 0.213705, 1.676578, -0.285764, 0.301515, 1.332813, 0.600311, -0.476211, -0.137864, -0.823748, -2.163814, 0.450754, -0.239860, 0.503297, -1.392177, -0.549346, -0.320510, -1.252463, -1.234705, 0.296886, 0.001639, 0.974450, 0.811300, -1.426436, -0.296600, -1.480214, -1.838463, 1.361903, 0.378138, 0.683977, -1.236287, 0.972597, 0.883192, -0.817253, 0.349986, 2.450875, -2.369201, -2.049398, -0.804404, -0.242203, 0.236606, 1.158959, -0.073065, 1.111717, -0.238728, 1.079087, 0.028575, 0.594414, 0.649470, 0.648669, 0.684385, 0.067773, 0.427567, -0.716782, 1.404021, -0.115824, -1.273082, -2.014765, 1.929856, -0.255229, 0.759660, 0.263310, -1.848238, 1.487085, -0.567849, 0.780816, -0.866246, -0.295951, 1.953309, -0.274259, -1.010306, 1.530594, 0.620051, -0.096109, -0.168808, 0.150951, -0.627841, -0.589723, -0.356848, -2.310044, 1.103195, 2.360602, 0.062967, 2.556126, -1.037190, -1.382720, 0.606276, 1.624485, 0.484098, 1.379322, -2.310276, -0.236863, 0.602291, 1.895646, -1.477609, 1.495901, 0.504772, -0.444953, 0.048502, 1.356260, 0.725614, 1.486398, -1.264815, -0.473068, -0.371919, -0.589942, 0.128515, -1.200270, 0.517064, 0.676906, -0.657623, 0.820499, -0.711324, 0.635742, -0.639673, 1.414845, 0.047139, -0.017878, -1.020773, -2.526667, 1.287521, 0.717717, 0.959860, -1.130456, 0.946305, 0.704199, -0.281039, 0.137291, -1.262645, -2.493693, -0.062852, -0.705149, -1.149192, 1.416286, -0.480593, -1.014492, -1.023887, 0.822643, 0.644911, -0.211240, -0.926601, 0.774906, -0.123407, 0.141567, -0.892026, -0.396529, -0.881941, -0.203568, 0.110894, 3.105673, 0.003495, -0.922527, 0.633054, -0.586052, 0.179168, -0.146498, 0.591064, 0.480728, -0.457135, 0.440798, -0.411088, -0.523075, -0.934501, 1.007854, -0.212754, -0.204960, -0.657488, 1.611085, 0.705908, 1.407740, 1.056035, -0.865148, -0.143939, 0.106342, 0.055493, -0.383948, 0.984916, -0.150570, 0.470642, 0.691638, -2.718007, -1.176383, -0.891762, -0.525282, 1.187093, 0.429278, 1.726022, 0.012820, -0.625768, -1.200608, 1.957109, -0.941112, 1.144450, -1.827447, -1.078862, 2.438508, -0.642301, 0.007786, 0.530299, 1.263526, 0.418815, 0.948315, -0.227298, -0.793847, 0.691715, 0.041646, 0.681119, 1.270043, -1.327954, -0.484842, 1.424195, -1.109722, -0.159692, 0.874995, 0.130359, -0.935802, 0.028840, 0.575948, -0.032305, 0.568211, 0.742064, -1.990100, 0.840136, -1.255754, -1.452344, -0.147453, 0.506626, 0.041868, 1.424585, -0.722389, 0.041051, -0.666766, -1.011511, 1.511575, -0.787040, -0.790681, -0.956542, 0.626786, 1.726152, 0.510006, 0.923796, 1.032875, 0.513635, -2.553805, 0.364535, 1.132312, -1.804569, 0.399767, 0.054799, -1.521679, -0.401453, 0.044042, -1.831755, 0.155594, -0.748367, 0.001518, 1.972288, -0.053589, -0.501293, -1.346921, -0.129338, -0.562946, -0.918586, 0.702406, 1.186264, -1.062100, 0.809271, -0.918817, 0.202526, 0.702233, -0.536687, -0.584059, -0.398902, 0.765598, -0.658668, -0.306280, 1.355754, -0.529804, -0.341567, 0.307767, 0.677244, 0.613362, -0.833459, -0.740232, 0.538345, -0.613070, -0.978365, -0.297489, 0.180805, -0.181251, -1.378169, 0.055562, -0.160816, 1.337232, -0.687753, -2.501628, 0.493473, -1.618955, 1.936835, 0.967083, -0.466566, 0.766623, 0.662131, 1.018864, 1.967128, -0.460887, 1.665411, 1.033160, -0.145536, 1.289797, -1.046282, -1.369588, 1.851337, 0.128872, -0.188017, -0.525318, 0.055145, 1.856867, 0.166017, -0.706766, -2.313396, -0.946809, -0.162566, 0.148104, -1.655266, -0.480423, -0.186119, -1.706330, 2.677828, 0.671232, 0.676647, -0.270442, 0.061081, -0.224509, 0.528219, 1.092839, 1.327743, 0.451997, -0.569849, 0.254065, -0.221835, -0.159471, 0.534886, -1.036622, -0.934938, -0.403508, 0.947760, -2.413657, -0.529632, -3.518771, -0.614162, 0.796558, -0.012038, 0.319317, -0.663647, 0.967605, -0.143816, 0.319052, 0.084799, -0.587701, 1.410346, -0.264971, -2.232334, 0.135336, 0.963922, -0.809729, 1.572595, -0.407254, -0.122816, -0.245609, 0.859615, -0.629885, -0.893999, -0.615149, -1.866086, -0.211278, 1.048110, -0.899428, 0.653544, 0.223033, 1.338657, 0.975614, 0.848968, -0.903068, -0.895025, -1.147771, 0.979434, 1.089331, -0.134982, -1.813801, -0.203818, -0.431249, -1.030787, 0.363526, 0.336111, 1.125790, 0.511567, -2.156148, -0.022344, 0.511465, -2.458836, -0.561654, 0.685231, 0.890424, 0.326576, -0.915420, -1.477009, 0.049069, -2.777364, -1.107728, 0.473764, -0.356226, -0.209892, -1.305071, 2.297559, 0.007586, -0.477850, -1.209193, 2.437358, 0.673404, -0.313004, -0.629245, -0.008791, -0.201551, -1.665222, -0.117304, -0.017763, 1.321082, -0.607701, 0.361099, -0.407215, -1.353533, -0.404353, -1.718252, -0.563913, 1.225477, -1.522315, -0.431783, -0.793643, 0.195019, -0.229563, 1.363223, -2.131078, -0.142930, -0.559743, 0.331740, 0.096874, 0.846838, 2.282031, -1.967080, -0.412563, -1.370682, 0.426974, -0.164373, -0.172370, 0.173863, 0.659006, -0.106026, -0.780781, -1.142493, -0.780159, -1.046248, 2.660763, 0.198689, -1.165937, 1.556963, 0.136510, -0.482644, -0.249452, -0.828123, 0.898070, -0.600479, -0.054621, 0.882806, 0.324823, -1.185672, 1.566899, 0.165478, -0.279222, 0.024702, -0.115087, -0.302168, -1.511801, -0.315636, -0.066304, -0.946190, 0.938942, 1.837181, -0.422219, 0.057165, 0.549397, 1.205996, -0.957544, -1.536323, -0.483584, -1.170062, -0.926848, -0.430654, 1.581395, -0.518038, 0.935770, 1.254127, 0.178089, 0.203655, 0.261586, 0.062107, -2.089841, -0.714563, -0.605176, -1.277198, 0.902273, -0.002155, -0.692019, -0.391753, 0.925146, 0.634683, -0.370590, -0.620713, -1.964169, -0.143595, 0.657318, -0.526561, -0.833524, -0.217829, -1.072824, -0.220489, -1.422366, -0.308954, -0.148304, -0.280740, 0.802444, 0.829230, 0.519280, 0.922508, 0.306362, 0.697459, -1.468117, -0.012703, 0.212841, -0.377306, -2.176012, -1.094402, 2.020101, 1.120107, 0.918825, -0.167031, -0.647291, -0.759218, 0.344466, 0.786638, -0.241205, -0.355834, 0.069892, 0.606373, 0.697831, 1.725827, 1.032838, -1.722355, -0.671316, 0.999247, -0.962374, 1.379095, 1.612645, 1.459141, 1.556968, 1.585498, -3.151633, -0.114706, -0.185889, -0.728116, 2.369860, 0.712221, -0.246149, -0.442294, 0.745291, 0.615263, -0.671254, -0.630518, 1.009828, -0.709764, -1.163608, 0.481831, -1.160363, 2.209230, -0.365026, 0.420480, 0.350655, 0.476352, 2.650240, 0.475697, -0.125365, 0.018619, -1.398115, 0.303437, 1.336541, -0.423916, -0.783772, 0.544236, 0.244661, -1.407908, 1.927236, -0.119040, -0.044053, -0.156227, 0.618746, 0.658073, 0.896918, -1.494020, -0.645091, 0.070294, 0.104391, -0.529914, 1.384208, 1.843973, 1.561845, -0.370182, -0.195020, -1.277415, 0.299448, 0.620786, 0.577719, -1.003523, -1.381766, -0.258438, -0.257932, 0.434490, -0.320915, -0.705110, -0.811845, 0.405571, 1.544974, -0.619623, -0.527351, -0.147414, -1.136473, 0.285752, -0.259591, -1.401924, -0.217241, -0.008307, -1.197842, 0.365585, 0.029320, 0.280738, 0.755116, -0.949056, 1.016546, -0.782295, -0.173897, -1.507983, 0.700204, 1.636836, -1.015340, 1.655845, 0.756329, 0.937876, -0.421995, -1.837983, -1.179858, 1.532997, 1.784707, -0.295226, 0.620657, 0.392981, -0.374932, 0.551260, 1.432416, -0.978373, 0.646885, -0.180465, 1.124926, -1.300982, -0.623740, -1.019707, -0.045381, 1.889375, -0.473028, 0.640459, 0.662821, -1.809385, 0.163778, -0.617824, 0.042024, 0.086220, -0.474637, 0.803472, -0.416286, 0.296489, 0.824755, 0.624393, -0.311561, 1.394036, -1.291485, 0.225611, -2.085091, -0.481727, 1.666851, 0.807123, 1.517455, 1.078587, -0.310616, -0.414556, -0.323790, 0.676409, -0.633905, 1.680565, -1.117972, 1.486107, 0.345268, -0.431747, -0.352119, 1.991086, 0.542998, -0.555641, 0.986888, 0.363573, -0.269045, 0.518710, -0.017023, 0.156984, 2.848249, -0.870059, 0.971870, -0.095933, 1.733612, 1.204900, 1.162228, 1.587313, -0.957012, -0.584765, 1.356757, 1.539821, -0.329039, 1.113182, -0.349085, -0.414514, -0.156979, -0.792844, -0.911605, 0.066953, -1.407517, -1.014863, 1.556662, 0.606896, -3.144268, -1.199586, -0.251315, -0.828759, -1.633119, 1.911084, 0.459197, 0.483186, -0.715589, 0.238635, 1.184666, -2.090992, 0.799604, 0.390985, 1.881968, 1.116412, -0.993002, -0.093208, 0.837373, -0.048322, -2.225270, 0.566448, -1.836706, 0.044398, -0.379642, -0.268883, 0.382874, -0.358089, -0.993963, -0.473572, -0.068528, 0.301505, 0.549659, 0.042897, -0.911584, 1.309377, -1.215561, 0.646133, 0.232844, -1.036913, -0.045538, 1.467173, -1.858081, -0.595858, 0.998807, 0.226299, -3.177863, -0.510722, 0.552987, -0.761040, -0.864725, -1.621404, -0.300462, -0.901508, -2.554041, 1.624015, -0.526292, 1.161477, -0.821660, 0.759873, -1.390754, -0.058209, 0.330061, -0.559312, 1.406890, 1.227153, -0.792305, 0.073252, -1.438588, -0.342459, 2.938545, 0.542821, 0.001294, -1.261566, 0.028344, -1.068127, -1.072300, 0.112531, -0.199821, -0.210584, -1.354290, 0.702377, -0.130634, 2.363247, -0.666392, -1.546358, 0.032210, -0.809096, 0.170851, -0.406261, 0.384160, -0.562774, 0.129590, 1.274760, -0.482624, 0.424922, -1.824954, 0.680147, -0.398809, 0.936751, 0.785594, -0.940701, -0.410107, 0.953090, -1.661574, -1.745428, 0.120935, -0.388712, 1.169878, -0.816516, 0.748471, -0.021897, -0.522100, -0.820570, -0.063556, -1.127231, 0.514458, -0.449865, -0.635535, 0.522894, 2.497557, -0.250279, 0.487238, 0.228305, -0.585258, -0.336766, -0.232703, 0.115284, -0.337079, 1.522525, 0.737065, -0.444942, -1.397517, 0.768168, 0.055502, -1.169985, 1.449758, 0.753520, 0.924678, 0.918896, -0.299539, -0.900524, 0.592958, -0.518402, -2.105719, -0.878156, -1.889809, 0.661141, -0.848325, -2.232933, -0.553246, 2.054680, 1.349866, -0.076245, -0.319977, 0.007274, -0.149635, -0.877156, -0.463378, 0.992310, 0.427740, -1.385775, 0.577726, 1.186789, 1.481043, 1.057210, 0.202869, 0.383348, 0.699782, 0.123751, 1.495927, -0.071317, -0.955680, 0.396725, 1.279496, -0.625692, -1.375270, 0.433448, -0.088306, 0.214709, 1.825950, -0.963132, -1.618750, -0.089555, -0.385440, 0.651028, -0.142174, -0.003333, -1.358945, 2.038163, -1.844265, 1.127256, 1.312969, 0.005573, -1.026542, 1.435329, -0.864539, 0.458897, -0.596632, 0.004456, 1.714298, 1.571266, 0.355165, -0.492291, -0.359605, 0.956705, -0.219066, 0.838829, 1.262553, -0.893147, 2.071190, -0.819357, 0.144827, -1.180013, -2.675898, -1.801138, -0.271235, 0.091470, 1.578775, -1.810200, 2.211401, 0.341638, 2.131899, 0.226534, 0.574974, -0.134434, -0.901934, 0.802280, -0.630921, 0.385228, -0.528319, 0.623985, 0.226264, 0.045753, -0.609097, -0.266002, 0.923718, -1.537924, 0.443569, 0.326099, 1.380187, -2.034181, 0.129372, 0.575436, -1.013484, 0.018747, 0.574896, -1.858508, 0.240098, -1.518029, 2.389091, 0.300058, 0.487881, 0.651746, -0.861572, 0.237501, 0.961166, -0.477314, -0.634790, -0.073697, -0.983401, 0.798057, 0.441296, 1.441929, 1.120153, -0.003484, 0.646387, 0.164941, -1.334906, 1.703917, -0.677255, -2.028932, 0.115060, -2.429360, 0.158223, -1.164888, -0.553035, -2.236114, -0.369689, -1.362703, -1.044752, 1.059387, -0.765227, -1.785291, 2.649995, 0.544274, 0.272920, -1.149533, 1.052560, 1.285578, -0.623496, 0.632952, 0.918364, -1.832775, -0.173056, -0.934890, 0.611699, -0.289570, 0.472510, -2.247237, 0.401005, 0.832871, -0.532777, 1.305856, -1.178315, -0.445150, 0.185634, -1.907742, -0.237095, 0.907344, 1.133945, 0.400838, -0.118532, -1.553778, 0.708180, 0.034324, 0.185476, -0.035903, -0.362920, -0.124697, -0.215565, 0.918645, -1.223034, 0.649649, -0.413386, -1.055784, 1.002770, 0.347673, -1.149993, -0.591752, -0.047227, 1.150191, 0.680954, 0.754580, -0.362268, -0.046219, 1.320621, 0.358015, -0.425496, -0.948636, -0.515211, 0.488664, 2.220851, 0.152475, -0.322572, 1.507703, -2.554930, 1.702484, -1.232286, -1.689592, 0.452119, 0.114869, -0.806358, -0.966084, 0.665500, -0.064516, 0.283972, -0.591314, -0.984988, 0.035453, 0.807580, -0.241146, -0.003432, -0.669793, -1.684809, 0.931758, 0.339282, 0.001183, -0.548606, -0.242845, 2.112411, 0.613434, -0.868501, -0.630718, -0.985912, -0.040889, -0.559499, -0.549284, 0.262270, 1.482466, -0.779960, -1.958737, 0.679269, 1.513424, -0.230433, -1.309387, 0.440715, 0.022414, -0.457279, -1.279781, -1.294270, -1.067273, -0.328560, 1.370852, 0.280138, 0.122968, 0.083914, -0.603845, 0.383693, 0.272936, -1.075067, -0.216858, 0.460976, 1.051391, 0.145911, -0.483209, -1.644570, -0.477524, 0.450814, 0.014885, 0.377842, 2.794503, 1.442519, 0.365051, 0.009436, -0.497912, 0.943976, -0.007877, 1.186802, 0.567637, -1.015810, -1.237468, 0.872254, 0.268269, 2.360038, -0.118789, 1.185400, 0.078120, -1.349240, -0.452304, 1.073710, 0.239071, 0.118497, 0.422855, -0.637594, 0.825759, 0.816487, 0.752923, -0.237677, -0.321493, -0.588262, -0.801402, -0.193311, 0.753435, 0.951404, 0.445178, 0.449208, 0.068602, 0.068707, -1.773906, -1.241951, -0.567524, -0.412615, -1.361336, 1.106563, 0.524876, 0.735194, -0.041026, -1.473043, 0.456746, 0.169889, -0.343237, -0.823120, 1.665329, 0.011515, -2.577429, 0.441031, -2.770078, -0.341169, 0.571461, -0.499455, 0.275399, -0.655399, 0.824817, -1.152406, 0.884240, 0.724289, 1.334040, 1.169334, 0.732458, 0.959342, -0.114453, 1.314417, -0.515421, -0.894781, 0.193774, -1.490651, -0.561932, -1.739149, 0.257442, 0.160792, -1.424366, 1.032708, 0.587867, 0.434294, -0.357654, -0.575172, 1.507984, 2.734978, 0.082878, -0.624155, -0.326743, -0.852063, -0.232097, -0.248054, -0.700945, -0.077735, 1.555807, -1.781611, 0.649070, 0.404625, 0.686619, 0.945486, 0.801426, -0.170022, -0.568949, -0.464811, 1.400599, 0.950386, -0.339802, 1.250202, -0.386284, 0.520567, -0.032774, 0.587078, 1.241796, -0.004177, 2.710072, 1.444975, -0.206976, 1.840633, 0.363532, -1.494168, -0.030833, -0.282444, -0.601110, -0.776506, 1.584413, -1.534149, 0.204492, -0.344900, 0.837779, -0.308939, 0.566983, -0.664053, 0.270641, -0.465199, 0.337096, -0.272767, 0.746510, 0.444334, -0.691783, 0.749312, -0.069301, -0.798368, -2.546450, -0.363543, -0.163682, 0.264635, -0.279781, -0.663371, -1.244567, 3.110087, -0.139270, -0.361728, 1.099998, -0.234408, 0.008094, -1.763912, 0.047577, -0.378853, -0.478202, 0.566272, 0.534376, -0.201511, -0.375988, 0.670718, -0.160961, 0.640467, 0.162820, 0.545340, 0.197701, 0.785218, -0.022056, 0.792162, -0.445726, 0.567696, -0.846011, 0.015103, -0.264506, -0.365400, 0.953287, -1.125247, -0.958488, -0.771544, 0.060966, 0.102147, -0.881208, 0.401661, 1.216240, -0.669951, -0.518098, -0.683614, -0.817399, -0.612922, 1.249587, 0.307398, 0.264048, 0.503022, -0.853762, -1.377160, 0.223325, -0.038358, -0.681615, 0.085604, 0.660566, 0.236031, -1.199727, -0.670853, 0.783312, 1.498755, 0.788163, -0.605429, -0.386896, -1.421776, -0.150687, -1.219539, 0.349966, 0.408757, -0.032311, -1.265151, -2.531996, 0.133071, -0.910598, 1.658162, -1.244183, 1.776458, 0.165311, -0.791087, -0.082474, 0.658419, -1.115934, -0.868666, 1.047547, 1.602957, 0.057903, -0.268394, 0.757399, -0.376680, 1.852453, 0.320095, 0.044151, 1.871976, -2.021899, 0.103878, -0.180849, -0.972977, -0.118703, -1.323707, 1.255112, 1.085167, -1.054004, -0.560121, -0.445981, 0.628089, -0.053967, -2.152822, 1.367440, 1.422836, -0.484046, -1.330399, -0.374115, 0.016599, -0.904930, -0.567050, -1.219723, -0.315913, -1.724965, 0.028067, -1.198853, -1.035153, -0.372658, -0.474694, -0.729823, 0.665056, 0.958688, 0.412038, 0.207809, -0.467525, -0.119375, 0.285823, -0.651859, 0.009197, -1.533368, -0.684782, 0.740215, 1.365385, -0.345835, 0.749870, -0.118998, -1.814807, -1.650023, 0.664261, 1.546283, 1.710806, 1.337344, -0.386794, 0.831154, 0.548415, 1.182900, 1.234695, -0.394526, -0.175544, 0.086942, -0.933525, 0.771633, -0.619899, 1.017690, -0.904702, -0.687981, 2.384723, -1.210470, 0.183095, -1.678221, 0.551925, -0.016682, -1.395844, -1.084251, -0.846659, 0.739384, -1.225799, 0.174492, 1.699094, -1.427296, -0.275089, 0.058298, 0.622816, -0.584472, 1.262084, -1.181654, -0.136373, -1.233015, 2.687593, 0.608488, 0.500834, -0.527371, 1.103202, -0.099323, 0.387246, 0.120024, -0.580303, -0.370761, -0.371187, -0.416018, -0.882484, -0.154651, -0.859116, -0.231416, 0.824197, -2.102131, 0.615009, 1.071167, -0.911007, -1.963166, 0.849541, -1.177846, 0.065931, 0.320462, 0.868366, -0.089241, 0.982755, 0.322218, -0.909825, 0.013015, -1.921611, 0.111185, 0.964889, -1.733390, -1.655811, 0.486229, -0.824584, -1.668262, 0.253930, 0.327927, 0.426296, 0.748701, 0.220388, -1.759823, 0.550759, 0.824168, -0.551185, -1.091939, -1.426232, -0.617009, 1.231535, -0.846114, 1.745201, 0.549594, -0.411470, 0.074375, 1.105149, -1.036461, -1.134496, 0.984107, 0.284496, 1.538397, 0.327994, 0.024905, 0.509709, 1.778015, -1.385756, 0.355541, -1.329181, -0.379967, -0.242900, 0.356713, 0.585702, 1.434050, -0.794927, -0.686445, -0.112819, -0.393019, -0.019249, -0.463003, -1.827535, 0.137492, -1.410532, -0.470562, -1.694991, -0.349440, 0.280145, -0.141225, -0.510468, 0.600104, 0.991855, 0.339032, -0.084664, 1.306915, -0.394277, 0.965358, -0.703340, -0.572282, -1.652121, 1.804445, -0.239519, -0.394140, -0.708797, -1.359255, 0.429076, -0.515791, -1.702558, -0.294286, -0.541623, 2.477447, -0.057299, -1.470669, 0.923536, -0.490483, 0.195253, -0.624888, 0.685188, 0.028561, 0.190944, 2.229516, -0.860915, 2.602502, -0.306506, 0.534472, 0.008106, -0.843431, 1.349477, 0.676840, 0.128719, -1.345515, -0.956253, 1.838857, -1.022696, 0.093328, 0.282279, -0.503747, -0.273130, -0.622884, -1.087304, 0.287185, 0.745202, -0.464979, -0.697113, 0.310591, 0.490624, 0.755517, 0.542252, 0.619584, 1.020937, -0.910798, -1.786292, 0.190994, 1.826668, 0.317975, 1.002769, -0.323183, -1.529315, 0.175847, -1.264847, -1.109033, 0.589359, -0.388068, 0.571923, 1.426574, 0.532142, 1.347649, 1.333089, 0.855593, -1.258241, -0.799740, 1.098480, -0.600058, -0.245217, 0.429308, -0.615835, -0.636877, -1.949426, 1.431403, -0.654288, -0.657554, -1.772552, -0.593896, 0.822839, -1.210681, -0.389798, 0.490135, -1.151668, 0.279475, -0.615684, 0.540278, 0.047094, 0.641617, -2.142809, 0.065758, -0.029447, 0.290168, 1.181075, -1.233810, -0.114679, -0.635931, 0.533989, -0.338375, 0.139303, -0.660744, 0.207312, 0.399703, -0.232142, -1.156039, 1.081304, 0.464406, -0.225901, -0.111770, 0.335748, -1.823993, -1.073698, 0.129325, -0.797490, -1.016337, 0.160893, 0.933567, 1.084396, 0.541481, -0.339006, 1.983097, -0.518898, 0.026699, 0.656000, 0.411235, -0.668627, -0.310930, -0.791654, -0.688810, 1.431014, -0.277610, -2.575974, 1.433862, 0.803749, -0.614599, 0.413957, -1.207011, 0.247740, 2.347045, 1.125360, -0.936704, -0.183356, -0.103509, 0.947096, -0.995407, -0.281098, 0.970853, 0.985308, 1.059436, -2.079844, 1.233139, -1.118749, 1.872540, 0.293127, -2.942135, -1.317322, -0.548362, -2.202464, 2.041263, 1.225500, 1.013580, 0.344977, -0.919268, 0.185573, 0.382029, 1.421248, 1.135969, -0.056160, -0.841260, 1.705358, 0.602895, -0.122235, 0.914267, 0.476182, -0.148793, 0.332019, 1.452618, 0.298480, -0.818239, -1.029908, -0.706829, -1.726506, 1.356200, -1.368737, 0.483196, -0.946670, 0.491303, -0.826232, 1.000457, -1.353634, -2.040248, 0.874328, 0.844261, 0.022611, 0.503355, -1.224456, -0.475208, 0.788530, -0.835018, 0.967597, 1.911875, 0.675145, -1.343399, -0.718974, -0.083156, -0.140760, -1.125658, 0.488638, -1.121232, -0.426824, -1.330101, -0.425513, 0.796960, 0.079897, 1.614927, -0.401868, -2.133731, 0.231331, -0.826151, -1.860929, 0.573775, -0.514173, -0.607531, -0.228410, -0.995703, -1.491366, -0.519542, -0.025651, 0.256424, 0.037396, -0.685564, 1.791118, -0.832128, -0.113558, 0.785820, 0.949209, 0.641642, -1.150795, 1.338832, 0.239832, 0.944731, -1.324968, 1.678841, 0.002645, -0.077697, 0.195573, 0.432307, 0.954298, -0.406977, -1.277759, -0.907420, -1.806958, 1.234875, 3.014520, -0.799077, 2.742745, -1.324165, -0.255825, -0.541757, 0.482968, 1.721113, -1.522342, 1.163748, 2.403505, -0.509342, 0.483471, -1.428428, -0.061458, 1.587781, -0.783354, -0.050433, 0.629520, 0.864240, -1.395597, 0.107228, 0.823915, 0.005444, 0.499131, -0.339062, -0.295097, 0.991396, -0.322221, -0.530987, -1.197486, -0.753621, 1.670541, 1.436926, -0.411578, 0.339897, -1.289984, 0.061021, 0.209111, -0.348547, -1.259163, 0.894381, -1.279974, -0.439007, -0.299394, 0.637945, -0.519612, -1.145587, 0.571898, 0.041607, 0.885507, 1.553901, 0.023756, 0.872025, -0.811794, -1.424095, 0.086840, -0.689333, 1.187767, 0.865142, -0.339892, -0.243186, -0.645244, -0.773328, -1.231678, -0.086912, 1.713869, -0.144804, 0.393021, -0.089343, -0.279151, -1.799816, 0.602509, -0.268784, 0.588497, -1.190337, -0.787351, -1.882528, 0.659920, -0.724093, 0.775418, -0.675166, 0.000686, 0.428083, 0.463684, -0.476841, 1.469501, -0.654527, 0.327880, 0.879131, 0.248746, 2.101594, 0.122552, 0.276876, -0.001911, -0.957076, -3.208823, -1.615574, -0.433487, 0.226720, -0.420281, 0.965141, 0.095147, -2.242007, 0.300449, 0.076282, -1.365614, -1.870833, 0.054189, 0.827640, -0.661032, -0.210772, -1.194631, -1.017595, -0.752148, 1.116002, -2.304146, 0.951749, -0.110114, -0.844786, 0.494828, -0.260262, -0.674481, -1.129930, -0.215812, 0.546032, -0.466306, 0.644153, -0.147925, 0.867174, 0.045759, 1.034827, 0.426746, -0.423652, -0.162697, -1.408930, 0.475538, -1.071504, -1.037191, 0.298321, -0.976895, 0.700682, -1.893396, 2.326948, -1.282179, 0.209819, 2.152333, -0.192697, -1.056775, -2.076637, 0.480162, 1.810017, -0.928973, 0.737307, -0.032687, 0.888973, -0.071929, 0.032594, -0.660783, 0.907694, -0.257774, -0.232050, 2.377575, 1.621866, -1.180327, -2.478682, 0.091084, 0.154767, 0.741321, -0.688070, -0.753984, 1.973991, -0.734224, 0.814869, 0.547152, 1.889799, 0.601632, -0.644769, 0.022917, -1.941745, -1.630398, 1.299110, 0.339750, 0.351955, 0.805760, 0.913119, 0.313713, -0.005974, -0.044722, 0.019067, 1.481980, -0.043148, 2.381949, 0.681642, -0.979021, 1.069971, -1.382439, -0.396834, -2.139694, 0.203082, 0.770693, -0.126867, -2.356263, 0.322232, 2.007141, -1.794395, 0.592197, -0.643780, 1.823006, 1.518627, 0.885696, 0.766732, 0.099202, -0.195026, -0.948018, -0.879934, -0.757266, -0.760687, -0.520707, 0.458947, 0.204648, 1.474144, -1.286402, 1.345399, -0.013325, -0.260802, 0.562541, -0.342927, -1.058143, 0.114277, -0.180343, -1.749448, -0.835538, 2.076169, 0.090361, -0.890402, -0.036053, -0.994488, 0.322276, -1.521323, -0.151094, 0.153495, 2.220248, 0.383992, 2.816355, 0.456995, -2.097848, -1.012078, -0.130407, 1.508551, -0.538089, 0.716734, 0.062955, -1.580951, -0.665447, -0.141319, -0.178174, 0.369904, -0.545363, 0.533221, 1.376949, 0.354799, 1.810270, 0.813193, -0.225814, -1.114854, -0.696925, -2.085944, 0.119469, -0.108404, 0.826254, -0.901839, 0.476316, 0.552266, 0.561827, -0.622024, 0.646186, -0.088715, 1.228750, -0.670279, 0.545059, -1.626673, -0.369648, -0.730830, -0.500690, 0.106717, 2.246510, -0.528366, -1.766289, 0.757272, -2.234733, 0.646477, 1.300462, -0.217834, 1.427958, -2.461451, 1.260720, -0.558624, 0.475943, 0.538607, 0.075726, 0.582705, -1.335014, 0.997488, -0.067525, 1.061844, -1.603271, -0.383171, 1.668311, 0.221180, -0.912917, -1.163807, -1.211920, 1.597408, 0.585032, 0.040529, 0.357959, 0.345990, -1.053388, 1.458777, -0.223465, -0.201855, -0.986164, -0.968193, -0.488270, 1.007701, -0.811985, 0.304515, -1.169742, -0.855871, 0.919790, 0.219357, 1.091413, 0.807782, -0.083979, 0.324193, -0.947443, 0.053717, 0.936797, -0.562786, 1.660110, -0.462107, 1.672204, -0.311008, 0.728481, -1.537524, -0.438393, 0.905430, -0.666430, -0.074606, 0.193948, 0.979103, 0.185768, -0.841039, 0.947116, -0.648128, -2.545181, 0.229775, 1.931381, -0.429992, 0.836756, 0.669885, 0.167988, -0.232264, -0.136503, 0.868582, 0.082799, 1.170592, -1.664669, -1.246595, -1.272071, -0.198292, -0.392002, 0.347999, -0.360833, -0.486329, -0.348076, -1.260678, 0.542108, -1.889541, 1.900921, -0.437571, 1.135884, -0.008839, -0.709594, -0.312676, 1.010754, -1.775021, -0.090376, -0.374285, -0.010112, -0.325232, -0.481684, 1.135251, 1.191691, 0.073755, -2.006225, -0.958194, -0.416396, -0.866296, 1.725761, 0.957189, -1.396519, -0.400844, -0.555836, 2.281839, -0.811664, 0.280439, -0.663291, -0.250193, 0.003751, -1.002213, -1.056557, 0.281373, 0.489768, -0.576792, 0.705104, -1.671691, -0.103901, 0.354344, -1.342603, 0.283845, -1.798113, 0.608776, 1.885199, 0.114857, -0.508227, 0.679871, 0.991424, 0.494670, -0.737955, -0.387582, 0.563049, 0.333657, 0.402739, -0.412585, -0.710063, 0.130640, -1.366815, 2.520833, 0.900841, 0.079563, 0.603177, -0.111528, -0.043496, 0.882482, 1.217692, 0.460307, 0.999374, -0.063308, 0.084357, -0.800679, 0.078081, 1.235522, 0.101629, -0.119091, 0.080906, 1.461462, 0.065047, 0.341452, 0.151233, 0.011513, -2.571426, -0.348576, 0.716042, 0.209402, -1.981607, -1.342325, 1.406166, -0.787436, -0.833536, 0.745685, -0.156950, -0.429805, -0.344611, -0.001708, 2.021371, 0.113006, -0.248351, 0.943292, -0.157886, -1.143932, 0.333702, 0.569119, 0.997018, -1.264709, -0.389552, -2.655914, -1.382412, 0.008260, 0.294783, 0.322707, 1.110824, -0.204515, -0.295807, 0.497328, -0.256779, 0.281451, -0.202429, 0.566785}, - { -1.182033, -0.990724, 0.104045, -0.115285, -1.609855, 0.874568, 0.892411, 2.007296, -1.968755, 0.132095, 1.820703, -1.159879, 1.056728, -1.621238, -1.735622, 0.365577, 0.044551, 0.245102, 0.781900, -0.568182, -0.903664, -0.761595, 0.577774, 0.012518, 0.323001, 0.806387, -0.715938, 1.291085, -2.341664, 1.049098, 1.647642, 0.563267, -0.447792, 0.824436, -0.023639, 1.219416, 1.102642, 0.113489, 0.912743, 0.109638, -0.302463, 0.690598, -0.237857, 0.894208, -1.035659, 2.328670, -0.562059, -0.296181, 0.916796, -0.357272, 1.160758, 0.451315, 0.196456, -0.884296, -0.654022, 1.668492, 0.461198, 0.293342, 0.186362, 0.759364, 0.196021, -0.673123, 1.369451, -0.822186, -0.668167, 0.891107, 1.046052, 2.174824, -0.217663, 0.222540, -1.491159, -0.951655, -0.819255, 0.668112, -0.063466, 0.046701, 1.053596, 0.644253, -0.096507, -0.742529, 0.039552, -0.116341, -0.947332, -1.350485, 0.413847, 2.598992, 2.459606, 0.514045, -0.290478, 0.531872, 0.623313, 0.705847, -2.440353, -2.229876, -0.243842, -1.659471, -2.184856, 0.347365, -1.520216, 0.068324, 1.212021, 1.090282, 1.625544, -0.242690, 0.978063, -0.647997, 2.228631, 0.150888, -0.448686, 0.282191, -0.638558, 0.313404, -1.548489, -0.987350, 0.504220, 0.200817, 0.331415, 1.698722, -0.194588, -0.867004, 0.635534, -1.404777, 1.130592, 0.307063, -1.019221, -0.937982, -1.596464, 2.248796, -0.375377, -0.286856, 0.710374, -0.679039, 0.084932, -1.272005, 1.762173, 0.306859, -1.000013, -1.563703, 0.070367, -1.731430, -0.129567, 0.680612, -0.211895, -0.482885, -0.626461, -1.691782, 1.110358, -0.086106, -0.515570, -0.987962, 1.169888, -0.406341, -0.483877, -2.080735, 0.285999, 2.004029, -1.256048, -1.882583, -3.047656, 0.099457, -1.818615, 0.062210, -0.807041, 0.039765, -1.493414, 0.152758, 0.973733, 1.504650, -0.852136, -2.933638, 1.068753, -0.301381, -0.352158, 0.204912, -1.223965, -1.252604, 1.693246, 1.631687, -0.671105, 0.906412, -1.280496, 1.915374, -0.177969, 0.159518, 0.816535, 0.450977, -0.750484, -0.018431, -1.190060, 0.166193, -0.067318, -0.043534, 0.206740, -1.341822, 2.316914, -1.613452, 1.066080, 1.425543, -1.780641, 0.325450, -0.450151, -1.997296, -1.621558, 0.920813, -0.135516, -0.763896, -0.021063, -1.167069, -0.144444, -0.213741, 1.478804, -0.263028, -1.013180, 2.245053, -1.356859, -0.690404, -0.222947, -1.624552, -0.464506, -1.517442, -0.308159, 0.499479, -0.057061, 1.228032, 0.299066, -1.380981, 0.777070, -0.209613, 0.410636, -0.353264, 0.487815, 1.036224, 1.503528, 0.274954, -2.000251, 0.030772, 0.677885, -1.276899, -0.096168, 0.444528, 0.714932, -0.997932, -0.241405, 0.596798, 3.191526, -0.441197, -0.770703, 0.198933, -0.503894, -0.636223, 1.316053, -2.422652, -1.003362, -0.645443, 1.312824, 0.696529, 0.496544, 1.254918, 0.067976, 0.579736, -0.612679, 0.095804, 1.179636, -0.306940, -0.835429, -1.120113, -0.728495, 0.573919, -0.505831, -0.404828, 0.545294, -0.942293, -0.709087, -0.990315, -0.051144, 0.850603, -1.056156, 0.342539, -0.403991, 0.856288, 0.058781, -1.306745, -0.195350, -0.604557, 1.110527, -0.889690, -0.333949, -0.460623, -0.472012, 0.224678, 0.653727, -0.296846, 1.589186, 0.289251, 0.571712, 1.807680, -0.241117, 1.578081, -0.230120, -0.019002, -0.284344, -0.733357, -0.494227, -1.510475, -0.881025, 0.011355, -1.695467, -0.552732, 3.597214, -0.760997, 0.160454, 1.604971, -0.056311, 0.782432, 0.012931, -0.721449, -0.482569, -0.645418, -0.685215, 1.484420, -2.147895, 0.319111, 0.434472, 0.613192, -0.443633, 2.904831, -0.377940, -0.816888, 0.681861, -0.331878, 1.322679, 0.426241, 1.535460, 1.807671, -0.155240, 0.608807, -0.789376, 0.066064, 0.173941, 0.442881, 0.302427, 0.675783, -0.206586, 2.158039, 0.509036, -0.928564, 1.916680, -0.162566, 0.047139, -0.392633, 0.773404, 1.075810, -0.377545, 1.240136, -0.423998, -1.755018, -0.376135, -0.800686, -0.907901, 1.713279, -1.289116, -0.828548, -0.957205, 0.919591, 1.058795, -4.015570, 0.303151, -1.871327, -0.258658, -0.663640, 1.705543, -0.665959, 0.171985, 0.205161, 0.997869, 0.335844, -0.581812, 0.141911, -0.898024, 0.905078, 1.467683, -0.516611, -1.066879, -0.183614, 0.145401, 0.406541, -0.495786, 2.152388, -0.157968, -0.255234, -0.027002, 0.287821, 1.262139, -0.598631, 0.507232, 0.125771, -0.334446, 1.279116, 0.292011, 1.215638, -1.050658, 0.150421, 0.836198, 1.265561, -0.782982, -1.379708, -0.112104, 0.130101, -1.144690, -0.833199, -0.217920, 0.025572, 1.152740, -1.165658, 0.466775, 0.393018, -0.510852, 0.753150, 0.736648, 0.414469, 0.710530, 0.562602, 0.620719, 0.500728, 1.057322, 0.300625, 0.736402, -1.602048, -0.129288, -0.974479, -0.420793, 0.447426, 0.182499, -0.019345, 0.804603, -0.216000, -1.647184, -0.023763, 0.740351, 0.610837, 0.093540, -0.744371, 0.508537, -1.447733, -1.206406, -3.590968, 0.141688, 1.332558, 0.751247, -0.871550, -0.202231, 2.078777, -0.794069, 0.915636, -0.040179, 0.458278, -0.840516, 0.119802, -0.482384, -0.161426, 0.704770, 0.153015, -0.000750, -0.219447, 0.262337, 1.518239, 1.355411, -0.458673, 1.161361, -1.054924, 0.579480, -0.119109, -0.329629, 0.812682, 1.857557, 0.099020, 0.820302, 2.090000, 0.247340, -2.325257, 0.304030, 0.084419, -0.821864, 0.456438, 0.748984, 0.468434, -0.745492, -0.411619, -0.268436, 0.998883, -0.801896, -1.206509, 0.889848, 1.676262, 0.598750, -0.508465, 0.084038, -0.475236, -1.639909, 0.357904, -0.408079, -0.583212, -1.119743, -1.706453, 0.186840, -0.800573, 0.090565, 0.463982, -1.350953, 0.548916, -0.819529, -0.005303, 0.342667, 0.033524, 1.180686, -0.240149, -0.082084, 0.121012, 0.584651, -0.081447, 0.435425, -1.062111, -1.297010, -0.354924, 0.058040, -1.326069, -2.293762, -0.826101, 0.425946, -1.302736, -0.436073, -1.042596, 0.276245, 0.392518, 0.717258, 3.301770, -0.644866, 0.377213, -0.406736, -0.318716, -0.816595, 1.013310, 1.477392, -1.298086, -0.234732, 0.282106, 1.522305, -0.734220, 0.467740, 0.545424, 1.020615, 0.653171, 0.453015, 0.254356, 0.018373, 1.661917, 1.118822, 0.098586, 1.395874, -0.187699, 0.508652, -0.548066, 0.257491, 0.235350, 0.505458, -0.372710, 0.271288, -2.049830, -1.394902, 0.715808, 1.042062, 1.460668, 1.376373, -2.056576, 0.345659, 1.282268, 1.746942, -1.589097, 0.516501, 0.139361, -0.154290, -0.924339, 0.335194, 0.889294, 1.160918, -0.638914, -0.657616, -0.993357, 0.032571, -2.107877, 0.991383, 1.390078, -0.715143, 1.641153, 0.043067, 0.817948, 0.154437, -1.268595, 0.718767, -1.082909, 2.428075, -0.849468, 0.428728, -0.346973, -0.109188, 1.310439, -0.497318, -0.107854, -1.039751, -2.319314, 0.506966, 1.154441, 1.849161, -0.592776, 0.613116, -0.039152, -0.464128, -0.161897, -2.227032, 0.045890, -0.564227, 1.103639, -1.510715, -0.291276, 1.967509, 0.785963, -0.990884, -0.216925, -2.164696, -0.003942, 1.009959, -0.098606, -1.182608, 0.338989, -1.038732, 0.870748, -0.982860, -1.151487, -0.728321, 1.248880, -0.466434, 1.601769, 0.551422, -0.658448, 0.502653, -1.053988, 0.594415, 0.163925, -0.080079, 0.536887, -0.056005, 1.457503, 1.138792, 1.634425, -0.078903, 0.236324, -1.198733, -1.716764, -0.803560, 0.022557, -1.092070, -0.833702, -1.877477, -0.304326, 0.053183, 1.887550, -1.147866, -0.803854, -1.541034, 0.969796, 0.074783, 1.486452, 0.236390, -1.117702, 0.486334, -1.841179, 0.660699, 0.905663, 0.222406, 0.840630, 1.689011, 1.449841, 0.785060, 0.247622, -0.384732, 0.759199, 1.906931, 1.065960, -0.041626, 0.394889, 1.688113, -0.075546, -0.361648, 0.062103, 0.283601, 0.159933, 1.277289, -1.323852, -0.593494, 0.123995, 1.324236, -0.205210, -0.803219, -1.340778, -0.710786, -1.370338, 1.156267, -0.077055, -0.244050, 0.000291, 1.988200, -0.147974, 0.640865, 0.225355, -0.208274, 1.147141, 0.221391, 2.376750, -0.683141, -1.561707, -0.037740, 0.244160, -0.294200, -1.515108, 1.197305, 1.414708, -2.325714, -0.867730, 0.048080, -1.325000, -1.754054, -0.048702, 1.316129, -0.557108, 2.111063, 0.014839, 0.740811, 1.187295, -0.211452, -1.235271, -0.203892, 1.170752, -0.515556, 0.534500, -0.589873, -0.085859, 0.757107, -0.454449, -0.242475, 0.892581, -1.583763, 0.163886, 0.928978, 1.342655, 0.689295, -0.647056, -0.398740, -0.562487, -0.144457, -2.807038, -0.966036, -0.073517, -0.997487, -1.895521, -0.048410, -0.245080, 1.371564, 1.418200, 1.927510, 0.724537, 0.348282, 0.097457, -0.752247, 0.547111, 0.452678, 1.842658, -1.372846, -1.080536, -0.492402, -0.948238, 1.248988, -0.136566, 0.888306, -0.507940, -1.208086, -2.109605, 0.216898, 0.124905, -0.012725, -2.139055, -1.029584, 0.245014, 0.518949, -0.145007, 0.894423, -1.507149, 0.469880, 0.737765, 0.172519, -1.487251, 0.292384, -0.270667, 0.462509, 0.022113, 0.120434, 1.887821, -0.366725, -0.578942, 0.309197, 0.071899, 0.919132, 0.111711, 0.953862, 0.928987, -0.178857, 1.024506, 0.298323, 0.723635, -0.954093, -1.873633, 0.262402, 0.516609, -1.279220, 0.186461, 0.766670, -1.462925, -0.746575, 1.293203, -0.019324, 0.552474, 0.804343, 0.905144, -0.795691, 0.237082, -0.288253, -0.256831, -2.167557, 0.241622, -0.362114, 0.098529, -0.730083, 0.694702, 0.472205, -1.018633, -0.665194, 0.318752, 1.942694, 0.947298, 0.384414, -0.949530, -0.242625, 1.494762, 1.116680, -1.165330, -2.006563, -0.167549, 0.318343, 0.327429, 0.268683, -0.256726, -1.094689, -1.933067, 0.575581, 1.576788, -0.790888, -1.421626, 0.559636, 0.169084, -0.614721, 1.249090, -2.028653, 0.033302, 0.703858, 0.810570, 0.525806, 0.553967, 0.309991, 2.161190, 0.487782, -0.203454, 0.939968, 1.521396, 1.169673, -1.308519, -0.611268, 0.808024, 0.655301, 0.096592, -0.148393, 0.276038, 1.716933, -0.142533, -1.244457, -1.249490, -1.574976, 0.870563, -0.885578, -1.213086, 1.120872, -1.189445, -0.585305, 1.269445, 0.305883, -1.062068, 0.799435, -1.251410, -0.600416, 0.804726, -0.271234, -0.895507, 0.268118, 0.273714, 0.817049, 1.620739, 0.042687, -0.247700, 1.158443, -0.032706, 0.186347, -1.014765, 1.309911, -0.993179, 0.638214, 0.353942, 0.262249, -0.515910, 0.905912, 0.071666, 1.425258, -0.214364, -0.405860, 0.322082, -2.038569, 0.663869, 1.374939, -1.704746, 0.001251, -0.468250, -0.543265, 0.786153, -0.014665, 1.744427, -0.396289, 0.065601, -1.783098, 1.628016, 0.221392, -1.623130, 0.913457, 1.569945, 0.074148, 0.681321, 0.167484, -1.354388, 0.372236, 0.355057, -0.698553, 0.243511, 0.047298, 2.324381, 0.494232, -0.354383, 2.683529, -0.299160, -0.732044, 0.591202, 1.365810, -0.674266, -0.143102, -1.892520, -1.891342, 1.712276, 0.588573, -2.112565, 1.322950, -0.567429, -2.209439, -0.507957, -0.494205, -1.052432, 1.107759, -0.111659, -1.599427, 0.569260, -1.142308, -0.376497, -0.704686, 1.216245, -1.656430, 0.237153, -0.554729, 0.689873, 0.358264, 0.023091, -0.409037, 0.936587, 0.768994, 1.378372, -1.399549, 1.208693, 0.486285, 0.331197, -0.686468, 0.005126, -0.502025, -1.036639, -0.491039, 0.596697, 1.302914, 0.067185, -0.120411, 0.208858, -0.718485, 1.843144, -0.853323, -1.646446, 1.443056, 0.396544, -1.461868, -0.994024, 0.601044, -0.368966, 2.109496, -1.858449, 1.675221, -1.689736, 1.414936, 0.620734, 0.209911, 0.220183, -1.311763, -0.902506, 1.203832, -0.180132, -0.140792, 0.127870, 0.298109, -0.249634, 0.353379, -0.839347, -1.157898, 0.144337, 1.485741, -1.117781, 1.176339, 0.510259, 0.027923, -0.198288, 0.257066, 0.478007, -1.653934, 1.118124, 0.876101, -0.894446, 0.218383, -0.441243, -0.736363, -0.941684, 1.215643, 1.784836, -1.096164, 0.644597, -1.001155, 0.851863, 2.314310, 0.762955, -0.773405, -1.224005, -0.020442, 0.490393, -0.691299, 0.399926, 0.624403, 0.150433, 1.792048, 0.370861, 0.041537, -1.017301, -1.209133, -1.222578, -1.331111, -0.583000, 0.278368, -1.546722, 0.849334, -0.545177, 0.993589, 0.697411, -0.158505, 1.562587, -1.661492, 0.717039, -0.292506, 1.020398, 0.207425, -0.015711, 1.666373, 0.993838, -0.854248, -0.120354, -3.378056, -0.980753, 0.011066, -0.532348, 1.887271, -1.352068, 0.338103, 0.796058, -0.171730, 0.397031, -0.160426, -1.037023, 1.285795, 0.090821, 1.216535, -1.318853, 0.012382, 0.535242, 0.261766, 1.071842, 0.440831, 0.611455, -0.929570, 1.570926, -0.154514, -1.659442, -1.652807, 0.832240, -0.746617, -0.675656, 0.661198, 0.398967, -0.735796, -0.746877, 0.984032, -0.199201, -0.758471, 0.311492, 1.004689, 0.393983, -0.663058, -0.629355, 0.167509, -0.618294, 0.567620, -1.938332, 0.922270, -0.415272, 1.212559, -0.023118, -0.767115, -1.495589, -1.255184, 0.118539, -0.745166, -0.672295, -1.545429, -0.716545, -1.106630, -0.078553, 0.879629, 0.974308, -0.137689, -0.464611, 0.936891, 1.147917, 0.509769, 0.563796, 0.052862, -1.284131, -0.291096, 0.081777, -0.400073, 0.705509, -0.114025, -2.159276, -1.544984, 1.674441, -0.926547, 0.125256, 2.087236, 0.725663, 0.776126, -0.827905, -1.981602, 0.603253, -1.184810, -0.678212, 0.307489, 0.226716, -0.616348, -0.111767, -1.820482, -1.417757, 0.634413, -1.138639, -1.298559, 0.384734, 0.579211, 1.705501, 1.469555, 0.019641, -1.401232, -0.141805, 1.087576, -0.941758, -0.581052, -1.658015, 0.918930, -1.896925, -1.185906, -0.032664, 0.928568, -1.145188, -2.217072, 0.696880, -0.139694, 1.611320, 1.590444, -0.823083, -0.161521, -0.190495, 0.298279, 2.147478, -0.143921, 1.850659, 0.124507, -1.676375, 0.262602, 1.173930, 0.952699, -0.956552, 0.898254, 0.844637, -0.745090, -0.864909, 1.577642, -0.472348, 0.594579, 1.323665, 0.695430, -1.457288, 1.197672, -0.530519, 0.850585, -0.886207, -0.718863, -0.129478, 0.875762, 1.344030, 1.166345, 1.406504, -2.190434, 0.701644, 0.558108, 0.409784, -1.656140, 1.208338, -0.519180, 0.223482, 0.748124, 0.097323, 0.715970, -1.527134, 0.535389, 0.370611, 0.578901, -3.046126, 1.462143, -0.752133, 1.250911, -1.494899, -0.161154, 0.243344, -0.134417, -0.373131, -1.073105, 1.267560, 0.738967, 0.249464, -1.528957, 1.407050, 1.296934, 2.696871, -1.198885, 0.404112, -0.563298, 1.905446, -2.483317, 0.607973, 1.400213, 0.785318, -2.427183, -0.573498, -1.450760, -0.413151, -0.139899, 1.530708, 0.277043, -0.188913, 0.514852, 1.399172, -0.811467, 0.005990, 0.181239, 2.083996, 0.098943, -0.232644, 0.346235, 1.252002, 1.810240, 0.430197, -1.269393, 2.199245, 0.635753, -1.036215, -0.120450, 1.199328, 0.517621, -0.289110, 0.409783, 1.080916, -0.200301, 0.234920, -0.758630, -0.054944, 0.343013, -0.487173, 0.227276, -0.880040, 1.823280, 0.018873, 0.449070, 0.141262, 0.434751, 1.174268, -1.907374, 1.270779, 0.117235, -0.495601, 0.370781, 0.034318, 0.708558, -1.016281, -0.809590, -0.236292, 1.413989, -1.018390, -0.604388, 0.077290, -0.322879, 0.317386, 0.195364, -0.224596, 0.419801, -0.051214, -1.294279, -1.585191, -0.614829, 0.291316, 0.527026, -0.035368, 0.862249, 0.429781, 0.026719, 0.311587, 2.149591, -0.723808, 0.083928, -1.263941, 0.565994, 0.607109, 0.051392, -0.647140, 0.408378, -0.325048, 0.666051, -1.812193, -0.481149, -0.895440, -1.487628, -0.051724, 1.030995, -1.429187, 1.616624, 1.332899, 0.817643, -0.651819, 0.180374, -0.928031, -0.574170, -0.987816, 1.026662, -0.001211, 1.132437, -0.461924, 0.799407, 0.009504, -1.247738, 1.366446, 0.485234, 1.683592, -0.818062, 0.466098, 0.618622, 2.081132, 0.386411, -0.376256, 2.302080, -0.472404, -0.197619, 0.041499, -1.151170, -1.806785, -0.376674, 0.063492, 0.754902, -1.170045, -2.322990, -0.137742, -0.243928, -1.468925, 0.545148, -0.357012, 0.064328, -0.243415, -0.822864, 2.019027, -0.769357, 0.468290, 1.882418, 0.342787, -0.696157, -1.560195, 1.948524, -1.407121, -1.124421, 0.828790, -0.299129, 0.966997, 1.135263, -1.492739, -0.168288, 0.316350, 2.065712, -1.206027, -0.600245, 0.478660, -0.659134, 0.893908, 0.667413, -1.680572, -0.442523, 1.186590, -0.160877, -0.469502, -1.533293, 0.285390, 0.658302, 0.701033, -0.191945, -0.192662, -1.602242, 1.633399, -1.609775, -0.988848, 0.669548, 3.220970, 0.415837, -1.343026, -0.014933, -0.094364, 0.099381, -0.991866, -1.052532, -0.023157, 0.114131, -0.470556, -0.677907, 2.241443, -1.891253, 2.090881, -0.236475, -0.115302, -0.847335, -0.678742, 1.631226, -0.350954, 0.746013, 0.439496, 1.703137, 1.978385, 1.502600, 1.832951, 1.006809, -0.861861, 0.136237, 0.194582, -0.049889, 0.768008, 0.729039, -0.789408, -0.493955, -0.174524, 1.164600, -1.410962, 1.338335, -0.093167, -0.143927, 1.037471, 0.355913, 0.721230, -0.114761, -1.068794, -0.369482, 0.678685, -1.852772, 0.870384, 0.507279, -2.306766, -0.691351, 0.339238, 0.874056, 0.175721, -0.274644, 1.222448, 0.249203, 1.455549, -0.233866, 0.288981, 0.317599, -0.811498, -0.908194, 0.418703, -1.026886, 0.901506, 0.421606, -2.355229, -2.010783, 0.639056, -0.387780, 0.529579, -0.115747, -2.026635, 0.762252, 0.342841, -2.721693, 0.225247, -1.119844, 1.762495, -1.234644, -1.186285, -1.118980, -0.790823, 1.372955, -0.144790, -0.289554, -1.474859, 0.935327, 0.257315, 0.657742, -0.752228, 0.373652, -0.877215, -2.682745, -0.610774, 0.455652, -1.285036, 0.938585, -1.040668, -0.506063, -0.635054, 0.734377, -0.148222, -0.766240, -1.794213, 0.264920, -0.651568, -0.127556, -1.511425, -2.408001, -0.065094, -0.500168, 0.081581, 0.293386, -0.918540, 0.481355, -1.415078, -1.506683, -1.791014, -1.940797, -0.731344, -1.251695, -0.309286, -0.693743, -0.796699, 2.297995, 0.736554, -0.360015, -0.145277, 0.265324, 2.174685, 1.361956, 0.418747, -0.028816, 1.201867, 0.282520, -0.736020, 1.589420, 2.311612, -0.158355, -0.348948, -1.570364, -1.064447, -0.871774, 0.836884, -0.241113, 0.680196, -1.468255, 0.360123, -0.117796, -0.902268, 1.206016, -0.273557, 0.294911, -1.407273, -0.659960, 0.424815, -0.386988, -0.913246, -0.508748, -0.219080, -1.651974, 0.775883, -0.051616, 0.325976, -0.485320, 3.142784, -0.518282, -0.524431, 1.943767, 1.705564, 0.440877, 1.349568, -0.489779, -1.226827, 0.056258, -1.534418, 0.178679, -0.212164, 0.418668, 1.318532, -0.727790, 0.187988, 0.370431, 0.477882, 1.348819, 1.123202, 1.293542, -1.830254, -0.906303, -1.160818, -1.499872, -0.749063, -1.843293, -1.209419, -0.094008, 0.906350, -0.514163, -0.674518, -1.229189, -0.251380, 0.089014, -0.394945, -0.948207, 0.179413, 1.705880, 1.481214, -1.569964, 0.258922, 1.706765, 0.790410, 0.240023, -1.391616, 0.714121, -0.987433, -1.098027, 0.849551, -0.103418, 0.365080, -0.282595, 1.164164, 0.665270, 0.355595, 0.115689, 0.125766, 0.361181, 0.763215, 0.968049, -0.107044, 1.016707, 0.088473, 1.193165, -0.435059, -0.100778, -0.317268, -0.825614, -1.051258, 0.243711, 0.377545, -0.094623, 0.723646, 0.814205, -0.030798, 2.052617, -1.259441, 0.093852, -1.847167, 2.151407, -0.583909, -0.202982, -1.409784, 0.071909, -0.173323, -1.325530, -1.612066, 0.111486, 1.877957, 1.020731, -1.090581, 0.027436, 0.718217, -0.159228, 0.039074, 0.135114, 1.141439, -0.369754, 0.149730, -1.332786, 0.405130, 0.189829, -0.142822, 0.268124, -0.188454, 1.224434, -0.977509, 0.763707, -0.161697, 0.024968, -0.057457, -0.658942, 0.393707, 0.024037, -0.402251, -0.383377, -0.600593, -0.577664, 0.917264, -0.666357, -1.869187, -0.336415, -1.091990, 0.102598, 2.138619, 0.122753, -1.135455, 1.134380, -0.036447, -1.175676, 0.533750, 1.721340, 0.999408, -1.620160, 0.556890, 0.988642, -0.176587, -0.737106, -0.513593, -1.156436, -1.011539, 0.529095, -1.561689, -0.278184, -1.858055, -1.853150, 0.158110, -0.144312, -0.149990, 0.307596, -0.655647, -1.150726, 0.081073, 0.339135, 1.373845, 1.286314, -0.258182, -1.679334, -0.694605, -0.384283, -1.940498, 1.066846, -0.198975, -1.389420, 0.048676, 0.454977, -0.304671, 1.722365, 0.605073, 0.601758, -0.839313, 0.817142, -0.023608, 0.431783, 0.567458, -2.460163, -0.277263, -2.522150, -0.843465, 0.475266, 0.155524, -0.182731, 1.290886, -0.031742, 1.595315, -1.487618, 0.434404, -0.151036, 1.554354, -0.442486, -0.971564, 1.536515, 2.030288, -0.091330, -0.639896, 0.675043, 0.372680, -0.097302, -1.079158, 1.616633, -1.180672, -1.134611, 1.106823, -0.264735, -0.428301, 0.321761, -0.428073, 0.837635, 1.779821, 0.889562, 0.014049, -1.663147, -0.709730, 1.815853, 0.826502, -1.832997, -1.001730, -0.035752, -0.883202, 0.198855, -0.720034, -0.512378, -1.235309, 0.637103, -0.318085, -0.722293, -0.725155, -0.516654, 0.106518, -0.725105, 1.835024, -0.927853, -1.955561, 0.763174, 0.373548, 1.146230, -3.753366, 1.273680, 0.012062, 2.852662, 0.236338, -0.295475, -0.244922, 0.767836, 0.119353, 0.993934, 0.756175, -0.980474, 0.385351, 0.172012, -0.332472, -1.052266, 1.427503, -1.895816, -0.447396, -0.139730, -0.679052, 0.213772, 0.266755, -0.519739, -0.077430, -0.093825, -0.202419, -0.238314, 0.651187, 1.560948, -0.184705, -0.627118, -1.269736, 0.615082, -1.105759, 0.617015, -1.084346, 0.146138, 0.743565, 0.139173, 1.156885, 0.492462, -0.067773, -0.635241, 0.085324, 1.302415, 0.467737, -1.612368, -0.877104, -0.044858, 0.088059, -0.897877, 1.781092, 0.053566, 0.452692, 0.362189, 0.052842, 0.158434, -1.563583, -0.030714, 1.672257, 0.357928, 0.162656, -0.415725, -0.400887, -0.459514, -1.245656, 0.002331, -0.005904, 0.030327, -1.433488, -1.353397, 0.020028, 1.164917, 0.313599, 1.181723, 0.352966, -0.858882, 2.606408, -0.512971, -1.197124, 0.464680, 1.313213, 0.204163, -1.415648, 1.007134, 2.564667, -0.089119, 0.345481, -1.031982, -0.521176, 0.519781, -0.763010, 0.733503, 1.814899, -0.001072, -0.708667, -0.513932, -1.814224, -0.592833, -0.525615, 1.370029, 2.308789, -0.976814, -0.314422, -0.477806, 0.305997, -0.872631, -0.088829, -0.662893, -0.569024, -0.066163, 1.533401, 0.366497, -0.212668, 0.755595, 0.449040, -0.108833, -0.587931, -1.009151, -0.799894, -0.154522, 0.107163, 1.425453, 1.631916, -0.073408, -0.440364, 0.631786, -0.737705, -0.055127, 0.772019, -0.258056, 1.539292, 0.395897, -0.343193, -1.031211, -0.302418, 0.288518, -0.135447, 1.438798, 0.294601, 0.405512, -0.561546, -0.409586, 0.651017, -0.272401, 0.930303, -0.630249, -1.622772, -1.261243, -0.249885, -0.019325, 0.512813, 0.933841, -0.463988, 0.305396, 1.287911, -0.758046, 0.661103, -1.843919, -2.065572, -0.410313, -1.541864, 1.339012, -0.804902, 1.045279, -0.769203, -0.032602, 0.063275, -0.662296, -0.144066, -0.243627, 0.332526, -0.820790, 0.603103, 1.184764, 0.448711, 0.616243, 1.898227, 0.515180, -0.455631, -0.818757, 0.443795, 1.069992, 0.636242, -0.286327, -0.666330, -0.737574, -1.093274, 1.225394, -0.243206, -0.112195, -1.572394, -1.555291, 0.235222, 0.662835, -0.140926, 0.550963, -0.469103, 0.586619, -2.375870, 1.041302, 0.594935, -0.382474, 1.445974, 0.908579, 0.825926, -0.652322, 0.437661, -1.902363, 0.509471, 0.382050, -0.154797, 1.412613, 1.231123, 0.285335, 0.323703, 1.230827, -1.325370, -0.882106, -0.040444, -0.254714, -0.257117, -0.529394, 0.779346, 0.682189, 1.133347, 1.187395, -0.223462, -1.298226, -0.275506, 0.331544, -0.445988, 0.123823, 0.696435, 0.421639, -1.261232, 0.776110, 0.132655, -0.720933, -0.609152, -0.061301, -1.048410, 0.921329, 1.112192, 0.370525, -0.019465, -1.114954, 0.277303, 0.901529, 1.694158, 0.529833, -0.882069, -0.245371, -0.603769, 0.758759, 0.508264, -2.029322, -0.040732, -0.494105, -1.147427, 0.495379, -0.041708, 0.730202, -0.422939, -0.632949, -1.984159, -1.108105, -0.993817, 0.282263, -0.080835, -0.788011, 1.243930, 0.742627, -1.815206, 0.314197, 0.602959, 0.055921, 0.130547, -1.698285, 0.671603, -0.306370, -0.550947, -3.093813, 0.376060, -1.627970, 1.799160, -0.125827, 0.449279, 2.025550, 1.338993, -1.261597, 0.445731, 0.609896, -1.726927, -1.364881, 0.542433, -0.810466, 0.863934, -2.478897, 1.668358, -0.060390, -0.424467, -2.022434, -1.145987, -0.837309, 0.083879, -1.809817, 0.723728, 0.859393, 0.372108, -0.237508, 0.796737, -0.447039, -0.194162, 0.796565, 0.074311, -0.011911, 0.224484, 1.298364, -0.619427, 0.397665, 0.720958, -0.174028, -0.027007, 0.152947, -0.616935, 0.528441, -0.548607, -0.046968, 0.866270, 0.233197, -1.674556, 0.186067, 1.357813, 0.557800, -0.558316, -2.339965, 1.293808, -0.709143, -0.565500, -1.154304, 0.312092, -1.036005, 1.043651, -0.780841, -0.368151, 0.179745, -0.306073, 0.255710, 2.103900, -1.071129, -1.279216, -0.703963, 0.759521, -0.140323, -0.608581, 2.917427, 0.248669, 0.338649, 0.485611, -0.531817, 0.863207, 2.153741, -0.296518, -0.459129, 0.270417, 0.935235, 1.394564, -0.551661, 0.226926, 0.216715, 0.541608, 0.363598, -0.583128, -0.483484, 0.219572, 0.346102, -0.184419, -0.312754, -1.021271, -1.778001, -1.153524, -2.060209, -0.038508, 1.803398, -0.673404, 0.185306, 1.306659, 0.976398, -0.081853, -0.609699, 0.843565, 0.276698, -1.175775, -0.586864, 0.344750, -2.477780, 0.177836, 1.484502, -2.088840, -0.491484, 0.254499, -0.891253, 0.922149, 0.397272, 0.140329, 2.255648, -0.080438, 0.190627, -0.344085, 0.914310, -0.492837, -1.322400, -1.311848, -1.906278, -1.127237, -0.759115, 0.843289, 1.298117, 0.127567, 0.050809, -0.053783, -1.038648, 0.462915, -0.432071, 1.638138, 1.477372, -1.211059, -0.154430, 0.024262, 0.067581, 1.115890, 0.367321, 1.327273, -1.408346, -1.128287, -0.922713, 1.145809, 0.008678, -1.854904, 0.523576, -0.329485, 0.303820, 0.575895, -0.402776, -0.599858, -1.450637, -1.904945, 1.265459, -0.159827, 1.406783, -0.024990, 0.239961, -1.854666, 0.086036, 1.209725, 1.887180, 0.583309, -0.083836, 1.048282, 0.552419, -0.207426, -0.064380, -1.575963, -0.378237, -0.229650, -0.601722, -0.960228, -0.102083, -0.414764, -0.832576, -0.893981, 1.439118, 1.311700, 0.636207, 2.695851, -1.953427, -1.121281, 0.109427, 0.807637, -0.640741, -0.935607, -0.514951, 0.799321, 1.356677, -0.019797, 0.608427, -1.336663, -0.452547, 0.544517, 1.252920, 0.707849, -0.067403, 0.464638, -0.964007, -0.427682, 1.191631, -0.465947, 0.013992, -0.394630, -0.407368, -1.767068, -1.423715, 0.157861, 0.322349, -0.721958, 0.288086, -0.113849, -2.595654, -1.889727, -1.893902, -0.979257, 0.563037, 2.069219, 0.486238, 0.484894, -0.508484, -0.654682, 0.501518, 0.447948, -0.899938, 1.609891, 0.372200, -0.465811, -0.876349, -0.989570, 0.322810, -0.163933, 0.162493, 1.217476, 0.941825, -1.047924, -0.181836, -0.693214, 0.549036, 0.863952, -0.714402, 0.862002, -1.796094, -0.728835, -0.976425, -2.619379, -0.215380, 1.479812, 1.673869, -0.086293, -0.036034, 0.267581, 0.287811, -0.344847, -1.304700, -0.825427, -0.848370, -0.457317, 0.080942, -0.758908, 0.629612, -1.074773, 0.757741, 0.668105, -1.219031, -0.208474, -1.711361, 0.226617, -0.841018, 1.660807, -0.697073, 1.393023, -0.787531, -0.761010, -0.984526, -0.814087, -0.013918, 1.599091, -2.240978, -0.874549, 0.712055, 0.085046, 1.011351, 0.840473, -1.043489, -0.823256, 0.668104, -0.592289, -0.046664, 1.144287, -0.559592, -0.729162, 0.849113, 0.222759, 0.195738, -1.121981, -1.121979, -0.066825, -0.157941, -1.773485, -0.782219, 0.655074, -0.262132, -0.712077, 0.752541, 0.425039, 0.972398, -1.672732, 0.634087, -0.214051, 0.568499, -2.309596, -1.113105, 1.696879, -0.353259, -0.290204, -1.128185, 0.674188, -1.267031, 0.637262, -0.530526, -0.875749, 0.967556, -1.556293, -1.117577, 0.668908, -0.388012, -1.702704, -0.982943, 0.825036, 2.169169, 1.586789, -1.343200, 1.101355, 0.883851, -0.868814, -0.497662, -0.431353, 0.442203, 1.489853, -0.126395, -0.648795, -0.169522, 0.297527, 0.310265, -1.304085, -0.760477, -0.037992, 0.027178, 2.459609, -1.534498, -1.575119, -1.700460, 1.139519, -0.014968, 0.234533, -0.067230, 0.096728, -1.786536, -0.602227, -2.189427, 0.519104, -0.040212, 0.775011, -0.830357, -0.571322, 1.384906, 1.701390, -1.280063, -0.678924, -0.492366, -0.248255, 0.288810, 0.746716, -0.854638, -0.343785, -1.035924, -0.604085, -0.946944, -0.631828, 1.844068, -2.555476, -1.448799, -0.092470, 1.225179, 1.333341, -0.746759, 0.315804, -0.878796, -1.078185, 1.097040, -0.105570, 0.333994, -0.377507, 0.378326, -0.053087, -1.126848, 0.934960, 0.410731, 0.197805, 0.223323, 0.312033, -1.840421, -1.807174, -0.840043, 0.068570, 1.757604, -0.076322, -3.128909, 0.140312, 2.139157, -0.905102, 0.111514, -0.848952, 1.090445, -1.340872, -1.455730, 0.399908, -0.420877, 0.155199, -1.340483, 0.471297, -1.757322, 0.636677, 0.590320, 1.093107, 0.007619, 0.358078, -0.672528, -0.494688, 1.306112, 0.778751, 0.926516, 0.932918, -0.652896, 1.519377, 1.808176, 0.580447, -1.560422, 1.103326, -0.711911, 0.589932, -0.025245, 1.441283, 2.070462, 1.525393, -0.429804, -2.243278, -1.381306, 2.027807, -0.717750, 0.158620, 0.203938, 2.275288, -1.290036, -0.763332, -1.005744, -0.104188, 1.433085, 1.138323, 1.260414, -0.772884, 0.603607, -0.961641, -0.146728, 1.131142, -0.586622, -0.793266, 0.422120, 0.238596, 0.988546, -0.920935, -0.354626, -1.574340, 1.132674, -0.846445, -1.345843, -1.729672, -1.271401, 1.427218, 1.986580, 0.541635, 0.295550, -0.500550, -0.408490, 0.070781, 1.784228, -0.119234, -1.159608, -1.380432, -0.149607, 0.415031, 0.891507, 0.955257, -0.360345, -0.136555, 0.424249, -2.018592, 0.386525, 0.801126, 0.304958, 0.605012, -1.027500, 0.412363, -0.358259, 0.185826, -1.080077, 1.157918, -1.356224, 0.723348, -0.996599, -0.896110, 0.106722, 0.654700, -1.110127, 0.826412, -0.939684, 1.592098, -1.599002, -0.705636, 0.939622, -1.749310, -0.142900, 0.329500, 1.537404, 0.539679, 0.535866, 0.931259, 0.999876, -0.289414, 0.793408, -0.344457, -0.194481, 0.817257, -1.476450, -0.202502, -0.193899, -0.959493, -0.599850, -0.467182, 1.566532, 0.805961, -0.020652, -0.408956, -0.347758, -0.380462, -0.143103, 0.292589, 0.436122, 1.453586, -2.999577, 0.010084, -1.748454, 0.400327, 2.423968, 1.875613, 2.410515, 0.474966, -0.477082, 0.079202, -1.377004, 0.044919, 1.120112, 0.935645, 0.670242, 0.954505, -0.254576, -0.067505, 1.072077, 0.464383, -0.971635, -0.734305, 0.529991, 0.320964, 0.660038, -0.884118, 0.868322, -0.054656, 0.408413, -0.928430, -0.848887, 0.336249, -0.827988, 1.095226, -1.161564, 0.709723, -0.387843, 0.890326, -2.268380, -0.640441, 0.252365, 2.276407, 1.348281, 2.029460, -1.695108, 0.308716, 0.235891, 1.914263, 1.649640, -0.477879, -0.117208, 1.872425, 0.445807, -0.961056, -1.492970, -1.115844, 1.930394, 0.047135, -0.256759, 0.197470, 0.421923, -0.422296, 0.433128, 0.399215, -0.802778, -0.563040, 0.757818, -0.844195, -0.663983, 0.162023, 0.396168, 0.111668, 0.755298, -0.691091, -0.758507, -0.364105, -0.365148, -1.240560, -0.643815, 1.971015, -0.117173, 0.856542, 1.257437, -0.198269, 0.234995, -1.532506, -2.353866, 0.077296, -0.019384, 0.389523, -1.019283, 0.472070, -0.966912, 0.300588, 0.252483, -0.804045, -1.730821, -1.365752, -0.990922, 0.849213, 1.604441, -1.362975, 0.748139, 2.501775, -0.126310, 0.612473, -0.064447, 0.004416, 0.568888, -0.222759, 0.974630, -0.767727, 0.380578, 0.317705, -0.143703, 0.413208, -0.947242, 0.131730, 0.025382, -0.758325, 0.580607, 1.039693, -1.978096, -0.352989, -0.141092, 1.056524, 0.148448, 1.169638, -0.284465, -0.692905, 0.985378, 1.801891, -0.582393, -0.519100, 1.096080, -0.047229, -0.112265, -0.608350, -2.452482, -1.220425, 0.902638, 0.880592, -1.106066, -0.118210, 0.672128, -0.363375, 1.247757, 0.170906, -0.849769, -1.609034, -1.015062, -0.428678, -0.238637, -1.086833, -0.200252, -2.326732, -0.301218, -0.342991, 0.407981, 0.123120, -0.474811, 0.689556, -0.535312, -1.460389, -0.656256, -0.872668, -0.959749, -0.130226, 0.850948, -0.461050, -0.035449, 0.660750, -1.518566, 0.156001, -0.919434, -0.540750, -0.000871, -0.811852, 0.247025, -2.625853, -0.525114, 1.337842, -0.158807, -1.316601, 0.409387, 1.545733, 0.177541, 1.264480, -0.296738, 0.380318, -0.214996, -0.976262, -0.337425, -0.525910, -1.026923, 0.461673, 0.652946, -1.557104, 1.204365, -0.346271, -0.451315, -0.885818, 0.694764, 1.227606, -0.274514, -1.055869, 0.995573, 0.388055, 0.735920, 0.395819, -2.003695, -0.743029, -1.165036, -0.017400, -0.420809, 1.536804, -0.478933, -0.710430, -0.991006, -1.514194, 0.586450, 0.658552, -1.800328, -0.749451, 0.634071, 0.005889, -1.048293, 0.904292, -1.275187, -2.073517, 1.546540, 1.003061, -0.180415, -0.774517, 0.980949, 1.035466, -0.760792, -0.699135, 1.418587, -1.223056, -0.537477, 0.496585, -1.549317, -0.643062, -0.079485, 1.035337, -1.035709, -0.055925, -0.811267, 0.842547, -1.028167, 0.781426, -2.309164, -0.514714, 0.196260, -0.648122, 1.232203, 0.212556, 0.123973, -0.290506, 0.097181, 1.624703, 0.648933, -1.808541, -1.562539, 1.907293, -0.763823, -0.301554, -0.579386, -0.758413, 1.312228, 1.365965, -0.516405, -1.030932, -0.766624, -0.207938, 2.671840, 1.144630, -0.243363, -0.291062, 0.177277, 0.661588, 0.292051, 1.060794, 1.012830, 0.316930, 0.771680, -0.438249, 2.304440, -0.352412, -0.701439, 0.242441, 1.985065, -0.229084, -0.028268, 0.306352, -0.007879, 0.460231, 1.329044, 0.514899, -2.989984, -0.687685, -1.007076, 0.912048, -0.774717, -0.389092, -0.196883, -0.006537, 0.630364, 0.382722, 0.332988, 2.250091, -1.396306, 0.624280, -0.699713, 0.960984, 2.080729, -0.652034, -1.975734, -0.415395, -1.465640, 1.562211, -0.175790, 0.824711, -0.356191, -1.150109, -0.233485, 0.285365, 0.260212, -0.193945, 1.516209, -0.896587, 0.768712, 1.036168, -0.243662, 0.481208, -1.441876, -0.560259, 1.113345, 0.471965, -0.431091, -1.250092, -1.683304, -0.300121, 1.046572, -2.410199, -0.211774, 0.808844, -0.314220, 1.518381}, - { 0.128537, -0.670602, -0.941475, -2.075702, 3.765909, 0.102639, -1.360386, -1.352912, -2.199890, -0.356542, -0.548534, 1.083015, -0.219626, -1.837468, 0.307975, 2.474036, -1.179890, -1.226841, -0.035152, -1.388017, -1.100560, 1.459469, -0.322957, -0.382961, 0.962851, 0.544617, -1.090333, 1.191922, -2.301647, 0.082504, -1.564297, 0.133258, 0.024619, 1.143878, 1.393599, 1.292673, -1.089038, -0.879109, -0.815245, -1.486507, -1.627000, -0.363177, 0.734727, -0.906984, 0.140965, 0.228108, 1.041279, -0.104223, 0.782667, -1.843960, 1.740561, -0.013574, 0.694218, -0.155485, -0.521172, 0.752713, 0.998398, -0.833192, -1.114559, -0.794343, 2.989994, -0.872038, 1.513704, 0.629367, -0.925364, 0.304949, 2.170120, -0.046620, -1.439427, -1.969413, 0.007699, -0.622994, 0.360708, -0.186120, 0.513979, 1.093525, 1.388947, -1.641175, -0.434575, -2.174075, 0.568396, 0.369095, -0.962749, 0.636245, -0.749850, -0.312564, -0.439927, -1.049657, 0.715777, -0.830842, 0.336457, -0.458061, 0.361679, 1.312442, -1.349914, -1.373442, 0.466411, -0.321108, -0.987542, 1.310365, 0.459285, -0.259899, -1.179171, -0.526067, -1.657148, 0.510295, 0.151148, 0.373471, -0.181669, -0.628925, 1.297304, -0.709963, 0.627065, 1.784400, -0.514238, -0.331305, 1.821596, 0.667845, 0.706016, -1.452509, -0.192294, -0.168034, 0.145840, 0.009496, -0.120101, 0.383971, -0.783377, 0.499506, 0.009345, 0.352568, -1.011090, 0.796884, -0.738463, -0.462101, 0.439446, 0.765423, 0.012124, -0.360724, 1.710252, -0.876721, 0.634070, -1.742265, 1.081704, 0.714346, -0.651518, -0.124076, -0.834885, -1.095042, 0.815158, 0.481116, -0.464446, 1.367829, -0.565797, 0.548488, -0.730504, -1.194563, 1.524745, -0.156051, -0.411893, -0.480487, 0.840294, -0.338822, -0.240886, -0.628193, 1.357250, 0.036518, 0.377764, 1.100770, -0.501338, -0.084643, 0.718565, 1.343306, 0.786453, -0.286447, 0.056912, 0.764441, 0.167947, -1.104121, 0.937350, -0.488405, 0.077020, 0.572429, -0.363019, -1.137365, -0.072138, 1.179134, -1.281425, -0.162017, 1.292157, -1.460789, -1.169910, -0.695259, 0.781697, -0.757298, -0.186544, 1.030351, 1.226103, -0.061206, 0.741831, -0.205310, 0.336452, -0.418091, 0.256129, -0.589552, -0.016107, -0.528205, 1.183622, 0.274816, 0.948890, -0.883414, -0.823517, 1.601086, -1.625964, 2.577285, -0.010679, -0.614043, -1.524519, 0.492720, -0.712786, 0.010297, -0.166608, -0.737975, -0.776431, -0.407772, 0.217062, -1.372896, -0.251997, 1.635961, 0.384630, 0.942922, 0.007065, 0.083350, 1.269261, -0.470669, 1.239913, -0.952311, 0.856264, -0.709488, -0.092519, 0.712155, -0.731621, -0.132552, 0.097545, 1.907118, 0.396839, 0.974610, -0.636824, -0.714329, 2.447124, -0.217811, 0.034559, -1.698206, 0.287549, -0.361915, -0.151098, 1.223457, -0.121801, -2.212093, 0.351750, 0.820912, 0.369526, 0.842379, 0.029458, 0.699306, -0.019367, 1.311826, 0.005036, 0.975546, -0.801337, 1.417394, -0.553596, -0.905190, 0.543119, 2.164182, 0.184621, 1.121817, -0.094439, 0.538848, -0.764849, 0.234015, 0.350500, -0.353927, 0.915828, -0.795170, 0.578837, -0.446255, 1.414809, 0.040365, 0.543634, -0.414916, -0.396937, 0.083738, -0.305781, 0.162280, -0.422275, -0.515621, 0.919775, 2.824093, 1.883923, -2.059076, 1.156116, -1.033594, 1.424248, -0.129631, 0.993868, -1.338105, 0.121313, 1.424818, -1.360097, -0.845116, -0.698107, 0.603760, 1.111564, -1.650275, -2.248919, 0.635334, 2.317605, 0.492146, 0.769590, 0.498856, -0.280956, 1.201436, -0.498265, -1.181321, -0.131460, 1.644883, -1.362115, 1.204524, -0.677628, 0.914850, -0.835515, -2.359968, -1.756582, -1.616609, 2.451912, -1.037418, -0.519811, 0.333044, 1.110450, 0.725847, -2.335431, -0.912301, 0.304967, -2.190945, -0.511443, -0.334613, 1.204966, 0.165317, -1.656046, 0.755813, -0.594507, 0.623824, 1.212355, -0.852367, -1.451164, 0.557766, -0.184797, 0.524469, -0.788076, 0.158610, 0.473008, -0.703875, -1.824585, -0.955644, -0.482006, -0.244215, 0.268331, 0.883281, -0.112941, -2.095427, -0.683533, 0.059003, -0.399347, 0.006024, -0.900482, 0.378172, 0.125599, -0.637001, -0.056601, 0.046604, -1.389300, 0.816312, -1.187900, -0.388857, -1.456877, 0.365000, -0.437971, -1.506913, -0.720490, -0.626345, 0.025915, -0.827044, 0.561066, -0.641411, -0.005865, 0.958764, 0.582838, 0.720305, 0.711929, -1.257981, 0.755007, -1.731898, 1.240253, -0.644459, -1.490373, -1.524186, 0.063530, -2.491212, 1.069354, 0.375626, 0.466196, -0.737508, -0.642321, -0.965403, 0.181980, -0.012027, -0.947776, 2.623076, 0.902594, -2.090675, 0.066975, 0.684317, -0.092737, 0.433291, 0.151832, 0.306097, -0.439875, -0.807361, 2.468966, 0.910381, 1.491696, -0.354918, 0.663040, -0.519321, -0.639173, -1.514122, -0.080023, -0.674681, -0.513976, 0.491233, -0.019003, 0.380971, -0.949059, -0.325129, 0.395044, -0.551756, -0.531165, -0.194571, 1.537157, 0.051242, -1.280902, -0.015943, 0.643221, 0.579922, -1.336749, 0.112255, 0.247440, -0.087321, 0.568656, -0.795775, -2.210391, -1.045927, -0.018885, -0.503057, -0.792914, -0.078247, -1.250512, 1.242041, 1.075042, -0.321397, -0.307762, 0.565773, -0.505933, 0.825109, -0.239967, 0.039210, -1.164223, -1.883010, 2.009194, -0.177216, -0.572038, 0.181038, 0.955104, 1.457119, 1.829673, 0.958096, 0.467236, 1.799874, 0.387139, 1.599357, -0.938158, -0.379826, 0.992256, -1.682731, 0.445734, -0.014583, -0.065345, -1.549021, 0.857328, 0.288644, 0.613711, 0.704716, -0.860672, 0.845589, 0.698174, -0.811378, 0.652019, -0.311993, 0.977202, -0.322329, 0.994609, 1.411611, -2.117161, -1.039453, -0.920591, -0.364939, -0.918867, -0.360990, -1.502650, 0.063864, 0.308797, 0.174872, 1.420781, 1.441314, -0.427689, -0.453411, -0.026318, -0.470474, -0.306527, 0.415312, -2.049282, 0.112369, -2.217676, -0.605638, -0.797510, -1.266255, -1.149408, 0.565867, 0.294566, 0.398265, 0.205364, 0.573439, 0.655674, 0.224139, -1.184827, 1.444275, 0.742321, -0.205954, -0.508863, -0.416045, 2.000826, -1.183707, 1.119605, 0.636358, -0.284115, 0.835066, -0.671253, -0.492639, 1.653319, 0.361982, 0.261258, -0.765324, -0.704395, 1.489597, -0.409022, -0.684278, 1.296253, 0.262459, -0.594065, 0.892053, 0.113591, -0.186571, 1.419554, -1.146256, -2.032616, 1.269508, 0.417317, -0.368275, -1.037489, -0.577215, -0.468349, 0.295703, -0.806165, -1.034132, 0.055423, -0.565423, 0.256421, -0.310760, 0.160878, 0.669311, -0.276824, -0.278637, -1.085305, 1.311609, -0.214098, -0.774199, -0.952059, 1.702484, 0.254200, 1.105872, 0.164157, -0.548066, 1.451453, -0.267770, 0.924385, 0.202977, 0.663506, 1.385014, -0.830456, -0.163753, 0.023945, -0.970770, 1.295719, -0.908838, 0.153189, 2.110795, 0.030225, -1.121889, -1.222903, 0.905045, -1.277809, 1.038556, 0.249766, -0.403726, 0.539607, 1.684138, 1.831428, -0.976582, 0.087286, 1.290690, 0.492419, 0.369827, -0.124068, 1.040885, -1.491401, -0.150024, -1.300743, 0.655696, 1.271876, 1.837865, 0.477435, 1.515435, -0.783233, -0.079367, 1.605294, 0.970216, -0.595700, -0.830469, 0.157640, -0.442686, -0.176556, 1.183612, 0.767809, -0.992447, 0.227132, -0.580263, 0.558280, 0.785622, -0.351400, -0.722470, 0.239416, -1.377898, -0.399519, -2.971084, -0.523780, -0.843012, -0.511529, -0.732507, -0.208483, -0.682648, 0.488962, 0.392924, -0.490841, -0.770259, -0.916399, -0.044535, -0.348905, -2.096553, 0.312618, -0.069986, -0.031483, 0.567567, -1.575987, 0.072220, 0.509980, 0.680870, 0.394275, 0.687129, -0.155187, -0.126079, -1.355249, 0.386133, -0.252273, 0.343249, 0.486025, 0.289659, 0.845483, 1.056263, 1.247721, -0.023424, -1.230134, -0.358446, 0.201851, -0.730165, -0.326684, 0.864638, 0.705886, -0.443817, 0.673669, 0.155611, -1.365210, -1.179507, -1.099509, 1.135222, 0.315041, 1.890617, -0.793469, 0.640021, -1.046628, 2.068006, -0.242118, 0.350408, -1.485754, -1.386601, 1.522136, 1.177601, -0.592218, 0.230992, 1.630994, 0.777690, -0.354331, 0.189101, -0.649541, 0.507858, -0.273123, -0.182222, 1.928086, 0.702538, -0.033511, 0.429416, -0.243823, 0.205272, -0.179475, -0.182058, -0.926379, 0.124603, -1.114894, 0.330274, -0.523904, 0.137802, 1.168966, -0.571995, -1.514846, 0.209383, -0.621317, -0.213881, -0.664374, 1.449134, 1.103543, -0.289954, 0.906567, -0.111004, -1.436180, 1.670286, -0.372349, -1.003621, -1.277356, -0.137835, -0.488894, 0.084217, 0.626066, 0.565942, -0.303904, 0.659792, -0.780545, -0.124051, -0.571281, 1.183033, -1.458519, -1.106880, -0.473537, 1.644144, -1.017864, -1.598076, 1.190213, -0.836535, -1.568818, 0.788704, 0.927541, -0.752101, 0.313344, 0.281777, 0.636353, 1.549493, 0.280524, -0.264606, -0.610554, -1.919711, 0.653319, 1.424934, -0.785417, 1.224268, -1.180971, 0.165936, 0.487368, 1.153089, 0.517848, -1.275576, 0.726610, -1.368032, -0.237849, -1.126041, 0.173694, -0.490255, -0.432427, -0.624869, 0.133623, 0.312649, 0.185147, 1.707235, -1.720660, 0.609835, -0.307185, 0.204924, -0.701712, 1.179198, -0.783892, -0.523260, 0.046386, -1.268280, -1.503855, -0.650664, 1.492274, -0.145696, 0.415971, -0.241327, 0.466000, 1.157454, 0.128617, -1.629637, -0.637176, -0.664575, 0.364718, -2.124861, 1.196481, 1.774055, 0.431801, 1.150000, 0.361367, -0.085435, -1.240195, 1.132389, -0.378835, -1.600777, -0.462424, -0.336643, -1.316186, -0.326879, 0.076930, -0.547768, -0.604841, 0.077580, 0.066181, 0.227490, -1.619251, 1.118006, 1.595455, -0.125496, 1.191157, -1.634163, -0.075634, 2.262978, -0.312201, 0.515258, 0.059529, -0.595164, -1.324728, -1.227759, 0.136685, -0.417678, 1.203606, 1.439591, 2.726557, 1.459409, -0.739902, -0.317488, 0.967969, -0.362139, -0.659066, -0.695904, -0.686681, -2.677735, 0.777344, -1.215838, 0.780265, 0.556658, 0.494166, -1.660920, 1.788701, 0.522706, -2.010412, -0.590015, 1.350011, -0.693924, 0.975793, 0.428045, 0.305442, 1.107949, 0.438695, 1.007582, -1.087590, -0.046311, -2.461139, 1.658997, 0.161683, 1.753198, 0.412367, 0.545545, 1.314341, -2.367570, 0.031012, 0.660228, -0.236705, 0.021732, -0.669543, -0.594148, 0.791439, 0.076700, 2.471543, 0.138551, -1.947648, 0.959014, 2.217317, 0.270679, 0.313646, -0.479831, 0.162036, 1.416550, -0.540616, 0.345573, 1.087326, -0.274019, 0.261633, 1.301664, -0.922612, -1.272690, -2.031605, -0.894200, -0.816444, -0.671471, 0.555713, 0.716231, -1.667320, 0.375600, -1.005561, -1.016563, -0.206470, -0.204039, -0.530330, 0.278247, 0.152441, 0.632744, -0.877953, 1.200536, 1.551752, 0.609659, -1.628131, 0.050063, -0.728106, -1.397370, 1.346165, -0.684604, -0.447864, 0.772922, -0.998592, -0.058879, 0.142974, -0.137613, -2.175337, -0.113236, -1.786672, 0.895229, 0.560018, 1.781616, 0.172600, -0.875082, 0.699555, 0.790223, 0.351233, -1.690040, -0.995523, -0.980984, -0.099059, 1.840148, -0.617950, 0.226358, -0.388735, -0.199827, -0.321202, 0.568149, -1.226010, -0.780106, -0.809263, -1.057186, 0.286066, 0.912921, 1.170311, 0.294013, -0.430193, 0.471392, 0.093757, -1.789928, -0.690895, 2.009739, -0.440292, -0.591010, -0.752697, -1.950452, -1.905393, -0.016078, 0.197080, -1.915355, -0.416469, -0.995245, -0.788576, 0.645035, 0.560849, -0.753182, 1.994099, -0.453359, 0.954400, -1.021221, 0.359962, 0.574895, 0.378318, 0.035199, -0.097529, 1.596637, -0.248035, -0.520152, -0.016553, -0.048196, 1.020556, -0.086239, 0.387346, -0.935816, -1.278336, -0.076711, -0.745448, -0.327161, -0.881434, -0.218145, 1.767851, -1.983002, 0.028666, 0.343880, 2.552683, -0.219072, -0.098383, 0.990083, 0.680412, -1.582882, 1.289372, -0.805342, 1.432774, -0.316938, 1.768718, 0.044016, -0.737437, -0.660707, -0.188507, 1.201987, 0.941607, -0.345131, 1.336218, -1.189798, 1.262702, -0.401241, 1.290309, -1.823167, 1.585083, 0.838783, 0.774985, -1.042511, -2.090751, 0.124269, -0.795024, -0.797538, 0.931702, 0.329542, 1.208447, -0.228311, 1.111298, 0.810721, 1.645589, 0.250281, -0.065167, -0.745058, 0.202196, -1.090299, -0.384741, -1.819925, -1.375296, -0.100273, 0.740362, 1.074953, 1.535626, -0.319866, 0.463111, -0.870584, -1.058462, -0.681389, -0.740061, -2.142427, 0.528938, -0.781072, 0.002958, 1.170330, -1.476504, -0.206220, -2.350513, -0.752907, 0.953063, 0.112923, -1.140730, 0.846724, 2.043769, -2.252817, -0.419277, 0.604017, -0.336120, -0.034494, -0.548516, 1.441508, 1.305745, 0.602722, -0.092164, 0.584616, 0.048808, -0.273065, -0.275118, -0.965446, -0.760297, 0.412038, -0.827024, -0.898347, 0.406026, -0.989714, 2.746835, -0.216432, 0.831026, -0.007489, 0.968373, 1.007589, -1.638642, 0.871265, 0.876579, 0.449295, 1.561519, 0.625705, -2.217768, 0.386854, -1.517621, -0.547360, 1.097745, -0.657576, -0.595142, -1.737785, -1.320253, 1.135759, 0.851784, 0.417392, -0.438072, -1.083232, 0.358709, 0.355959, -0.169862, 1.822577, -1.977698, 0.937350, -0.380408, -1.800249, 2.085992, 0.641473, 0.133226, 1.167038, 1.099830, 0.680796, -1.563612, -1.261751, -0.710462, -0.329412, 2.099457, -2.715281, -0.834858, -0.762551, 0.383127, -0.280792, 0.822590, 0.228282, 0.383899, 0.634356, 0.249231, -0.888757, -0.533496, -1.086838, -1.790170, 0.806613, -1.106673, 1.808679, -0.420361, -0.288687, 0.471998, -0.538887, 0.698892, -2.139881, 0.671664, -1.375760, 0.662905, -0.293531, 1.370349, -0.114384, -0.886915, -1.549728, -0.347021, -0.104266, -0.268895, 1.002261, 0.684305, 0.204034, -0.467146, -0.475951, -1.880544, -2.424715, -0.641136, 0.450963, -1.094303, -1.325613, 2.193413, -0.889185, -1.324216, -0.108056, 0.925173, -1.317150, 0.560328, -0.294670, 1.143298, -0.710969, -0.850945, 0.667384, -0.540053, 1.411986, 0.413841, 0.524822, -0.422901, -0.054853, 1.599552, -0.569855, 0.414951, 0.030399, -1.218638, -0.238978, -0.524193, 0.861659, 0.005022, 0.673670, 0.484431, -0.174391, -0.629718, -1.380824, -0.597543, 0.282676, 0.452901, 0.476013, 0.117948, -2.397279, -0.136835, -1.860596, -2.529751, 0.582910, -0.868149, 1.069501, 2.023673, 0.414396, -0.423402, 3.365510, 0.682345, 2.005574, 0.586835, -0.568037, -2.197620, 0.713272, 0.157667, -1.136658, -0.923565, -0.857041, 0.027589, 0.946651, -1.166997, 0.141450, -1.764942, 0.616596, 0.203131, 0.892084, -0.411506, -1.488316, -1.520469, 0.589313, -0.289657, -0.695093, -0.967629, 0.240132, 0.580963, 0.492055, 1.604860, 0.708413, -0.896701, 0.609267, 0.324537, 0.875412, 1.689012, 1.316985, 0.200579, -1.525594, 0.979660, -2.835577, 0.492330, -0.059049, 0.998389, -1.816064, -1.491397, 1.616248, -1.500978, -0.246793, 0.128212, 0.979156, 0.338202, 2.115990, -0.929127, -0.001349, 1.908698, 1.466267, 0.336205, 0.633462, 0.319305, -1.143877, 0.871177, -0.322407, 0.946998, -0.151078, -0.004548, -0.565339, -0.756891, -1.881408, 0.379964, 0.905631, -0.059628, -0.718056, 1.111951, 0.822387, -0.864100, -1.088078, -1.815400, 1.055168, -0.649688, -0.520341, -1.995433, -1.554481, -0.435070, -0.034064, 1.131726, -0.579123, -1.347430, -1.141215, -0.124311, -0.086594, -0.281484, 0.476107, -1.748589, -1.068276, 1.647245, 0.069615, -0.078227, 1.208101, 1.241545, -0.111028, 0.345575, -0.682716, 0.432327, -0.096485, -0.401960, -0.610776, 1.025829, 0.959307, -1.235978, 1.031188, -1.574948, -0.227899, 0.584832, 0.760406, 2.469717, 0.256413, 1.655118, -0.180078, 2.644947, 0.652479, 0.981664, -1.701316, 0.163683, -0.139815, -2.065104, -0.207387, 0.480101, 0.835322, -1.683494, 0.612152, 0.981000, -0.326164, 1.324524, 1.090115, -0.761424, 0.210655, 0.072510, 0.363037, -0.048188, 0.261154, -0.355165, -0.379591, -0.408861, 0.069162, 1.571172, -1.384401, 1.039511, 0.113424, -0.766459, 1.245786, 0.531509, 0.887918, -0.974149, 0.066867, 1.294011, 1.488115, 1.599605, 0.477251, -1.103884, -0.393892, 1.252033, -0.151463, -0.504116, -0.202424, -1.702858, 1.006998, -0.249685, 2.179104, -0.154331, -2.121810, -0.891202, 0.515123, -0.564630, 1.267366, 1.372638, -0.376694, -0.448909, 1.245027, -0.475679, -0.172053, -1.242728, -0.869827, -1.112337, -0.743300, 0.174500, -0.662093, -0.482210, -0.019174, -0.613502, 0.451104, -1.466087, -1.546249, 0.481771, 0.901356, -0.586204, -0.160295, -0.139245, -1.274105, 0.254188, -1.718351, 0.891518, -0.537422, -1.102405, -0.069243, -0.461786, 0.956110, 1.053045, 1.169975, 0.460827, -0.627802, 1.079890, 0.688306, 0.621129, 0.540451, -1.079225, -0.359015, -0.101863, 0.766714, -0.731075, -1.282088, -0.469996, -0.526358, -1.218683, 0.319503, 0.650002, 0.248635, 0.156987, -0.036215, -1.264908, -0.349433, 2.733280, 0.605436, -2.182984, -0.535243, 0.137908, 1.634333, -0.032955, 0.070663, 1.881920, -0.015118, 0.094975, -0.840910, 0.338012, 0.370459, -0.851801, 0.954864, -0.324575, 0.957873, -0.385518, 1.634035, 1.096395, 1.313862, -0.982811, -1.718714, 0.327434, -1.758455, -0.099843, -0.542603, 0.931352, 0.615328, -0.209592, -0.138691, 0.952544, -0.803807, 1.022720, -0.995755, 0.469721, -0.639294, 0.423762, 0.983858, 0.334180, 0.099188, 0.194572, 0.117675, -0.307973, -0.052692, -0.887336, -0.048526, -1.203387, 1.136108, -1.284760, -0.711396, 1.423754, -1.286746, -1.063178, 0.293632, 0.071649, -0.948240, -0.666323, 0.295953, 0.005905, 0.948598, -1.290044, 0.045857, -0.198361, -0.376395, -0.672173, 0.285037, -0.058442, -0.813423, 1.315453, -0.747336, 0.123433, 0.318759, 0.868046, -1.456905, -0.366207, 1.892226, 1.258285, 1.083913, 1.103781, -0.450662, 0.373093, 1.912441, -0.323160, 1.196849, 1.032394, -0.489225, -0.611835, 0.646563, 1.305835, 0.314645, -0.895626, -0.259233, 0.101800, 1.312914, 1.129141, 0.343941, -0.692631, -0.685989, 0.044296, -0.424293, 0.498901, 1.196001, 0.213762, 0.515535, -0.523633, 0.063178, 1.522725, 0.532717, -1.690319, -1.239101, -2.257515, 1.777094, -0.909916, 1.293131, 0.264584, 2.153925, -2.007944, 0.552625, -0.763890, -0.562035, -0.953106, -1.863531, -1.204616, 0.091707, 1.100253, 1.077512, -1.864751, -0.048694, 0.440074, 0.365932, -0.187143, -1.357357, -1.749817, 0.693002, 2.213509, -0.562541, -0.956100, 0.296205, -0.342402, 0.016615, -0.714624, 1.392855, 0.398274, 1.376125, -1.112563, -2.039956, -0.501882, -0.628819, -0.274327, -0.069416, -1.093633, 0.774201, 0.095567, -0.170180, -0.667728, -1.652667, -1.280517, 1.217072, -1.523037, 0.237479, -0.681775, -0.670266, -0.385816, 1.015591, 1.445426, -0.430446, -0.278403, -1.610721, 0.380949, -0.643644, 0.282753, 0.424551, -0.410483, 0.455569, -0.464155, -1.521376, -1.357681, 1.755529, -0.450180, 0.578626, -0.360625, 1.117646, -0.320945, 1.237796, 0.596200, -1.057519, -1.374348, 1.234651, -0.738660, -0.596546, 0.169076, -0.254177, 0.094557, 0.611700, -1.091182, -0.767056, 0.812085, -1.293561, 0.433524, 1.517909, 0.311327, 0.255798, -0.159060, 0.021957, 0.033504, 0.721222, -1.024611, 1.300561, 0.522489, -1.989534, 0.350933, -0.475699, -1.926994, 0.794393, 1.638186, 0.131138, 1.596888, 0.351886, 0.811365, -2.126849, -1.773102, -0.385086, 0.288300, 0.422061, -0.127214, -1.815054, -1.704918, -0.628168, -1.850733, -0.279316, 0.623252, -0.632217, -0.434341, 0.589068, -0.051822, 0.658519, -0.747813, -0.879590, 3.326272, -0.961751, 0.730675, -1.017394, 1.260736, 0.300467, 0.560240, -1.309674, -0.420158, -0.369774, -2.090397, -0.565354, 0.046129, 0.849049, -0.460684, 0.091789, 0.205908, -1.132166, -1.973450, -1.186814, -1.622404, -1.758816, 1.202013, -0.377011, 2.403231, -1.590112, -1.032344, 0.972198, -0.654387, -0.351407, 2.172723, 0.626657, -0.219501, -0.203482, -0.720068, 0.695508, -0.680560, 0.350919, -0.009336, -0.602829, -0.523066, 0.687998, 0.761637, 0.007375, 0.551127, -0.640848, 0.760267, 0.996246, -0.988837, 0.118537, -1.512689, -0.967337, 1.052003, 0.335907, -1.059500, -0.181654, 0.338329, -0.803241, -0.196976, -1.121395, -0.975595, 0.374180, -0.605473, 1.275259, 0.432008, -0.588684, -0.929118, -0.009496, 1.351648, -0.300524, -0.351779, 0.103595, -0.490596, -1.535599, -0.437618, -0.531483, 1.320316, -0.746982, -1.977622, 0.274763, 0.659368, 0.265058, 0.393151, 0.948197, -1.527902, 1.070292, 0.531644, -0.025967, -2.585584, 0.109236, -0.349427, 0.714527, 0.081005, 1.599536, 0.364819, 0.504110, 0.134927, -0.042656, -1.741699, -0.427442, -0.570640, 0.570292, 1.048239, -0.738686, 0.886855, -0.218045, 0.644869, 0.126317, 0.176439, -0.186015, -0.142634, 1.140198, -2.284539, -1.304675, -0.825940, -0.591909, -0.024776, 0.638917, -1.677299, -0.661704, -0.230292, 0.168203, -0.132978, -1.292803, 0.600158, 0.141014, 1.583463, -0.652423, -0.430009, 1.442691, 0.811679, 1.069620, -0.649406, 0.064184, 0.138485, -0.521861, 0.966340, 0.315617, 0.746724, -0.507305, -0.424242, -0.379260, 1.918421, 0.404286, -0.063935, -1.416665, -0.802534, -2.562267, -0.019566, 0.646719, 0.482523, -1.075180, 0.549775, -0.805887, -0.448409, 0.810043, -0.201821, -1.662197, 0.781888, -1.562957, -0.251527, -0.135668, -2.216716, 0.572576, -2.239706, 0.507306, -1.782985, -1.791312, -0.365453, -0.201207, -1.364960, -1.356800, -1.161624, 0.901004, -0.053705, -1.299121, -0.758874, -0.464280, -1.956964, -1.210469, 0.290738, 0.357532, 0.098175, -0.914227, -0.410533, -0.063066, -1.431780, 1.307595, -0.255819, 0.920684, 0.839122, -1.104104, 1.509767, -0.205813, -0.154908, 0.767213, -0.094795, 1.296136, -0.443297, -1.138982, 0.501735, -0.852770, -0.812613, 1.194576, -2.665832, -0.799391, 1.358673, -2.086300, 0.499290, 0.748209, 1.179608, 0.699183, -0.616288, 0.183494, -0.904054, -0.491022, -0.143933, -1.115812, -0.189929, -1.065354, 0.046956, -0.822499, 0.701307, -1.420680, 0.181819, -1.173984, 0.105723, -0.447377, -1.163066, -1.672108, -0.566332, 0.326219, -0.011615, 0.604640, 0.181881, -0.291125, -0.262693, 0.532989, 0.243873, -2.278914, 0.378499, -2.177700, -0.050487, -0.423321, 2.964864, 1.611710, -2.748098, 0.055403, -1.072288, 1.405921, 0.622425, -0.810689, -0.105351, 1.467777, 0.238425, 0.699128, -0.790384, 0.429293, 1.989825, -0.325836, 0.475885, 0.963313, -1.548403, 0.989366, -0.977546, 1.001289, 1.094308, -0.061254, 0.716554, -0.259068, -1.026794, 1.200617, 2.348669, 0.884227, -1.173520, 1.361217, -0.132846, 0.886013, 0.755648, 1.097248, 0.904229, -1.964036, -0.677520, -1.076012, 0.531972, -0.285703, -0.220560, -1.324212, 0.676223, 0.889158, 0.211189, 0.201764, 0.195226, -1.678255, -0.592627, 0.944011, 0.102422, -1.166668, 0.691240, 0.816047, -0.466195, -0.215434, -1.532484, -0.525226, -0.541634, 0.331564, 1.496379, 0.007882, 0.267803, 0.116316, -1.200258, 1.241892, 1.654223, 0.501049, -1.001680, -0.232856, -0.534538, 0.816728, -0.733738, -0.379755, -0.028850, -0.293135, -1.180674, -1.255911, -0.362506, -0.343649, -1.515994, 2.508415, 0.628740, -0.091337, -0.210417, 1.485599, -2.606368, -0.152286, -0.355858, 0.616820, 0.214789, 1.067787, -1.462990, -0.220144, 0.323410, 0.554181, -0.247375, -0.619222, -0.097113, -1.130752, -1.059527, 0.354404, -0.867502, -0.574209, 1.064287, -0.701589, 1.160461, 0.079184, -0.769385, -1.034086, -0.402912, -1.754543, -0.496846, 0.996719, -0.437931, -0.465567, -0.087749, 0.803148, 1.478224, 0.069322, -1.048425, -0.156366, -0.911584, 0.189066, 0.382192, 1.911009, 0.425621, 0.850026, 0.846915, -1.179356, 0.727010, 0.827595, 0.410849, 1.371772, -0.606145, -0.080613, 1.102135, 0.026705, -1.231639, -0.953569, -0.448215, -0.915990, 0.762368, 0.827003, -0.029055, 0.762329, -0.579281, 0.249816, 1.436914, 0.228266, 0.483711, 0.918707, -0.732941, 0.974577, 1.192704, 1.304704, 1.280495, 0.454713, 1.910975, -0.420849, 1.500076, 1.232506, 0.397188, -1.325852, 0.177486, -0.520000, -0.754956, 0.958913, -0.681294, -0.229633, -0.346341, -1.254670, 2.325723, 0.929674, -2.462046, -1.923749, 0.181683, -0.518890, -0.296452, 0.824116, -0.189372, 0.500839, 0.203966, -0.498178, -0.859768, 0.249729, 0.139699, 0.399916, -0.036136, -0.679596, 0.636561, -0.736321, 1.960231, 0.282792, 0.173209, -1.663080, 0.966210, -0.275866, -0.434864, -0.298571, 0.274940, -1.463957, -0.428047, 0.327412, -1.420246, -1.283784, -0.072660, 1.565956, -0.782935, 0.218355, 0.324207, -0.289147, 1.158334, -1.163833, -0.824748, -0.999101, 1.269441, -0.267956, -1.118836, 0.709604, 0.309737, 1.385169, -0.189328, 0.299190, 0.224285, 1.104959, -1.813469, -1.524392, 0.350099, 1.329354, -0.484162, -2.297920, -0.826873, 0.801493, 1.033009, 0.405450, -0.230036, 0.116736, 0.131545, -0.186365, -0.042283, -0.932860, -0.690057, -0.741857, 1.065376, -0.759045, 0.068818, 0.353222, 1.617720, 1.114845, -0.608284, 1.118746, 0.724212, -1.559718, -0.173792, -0.313056, 0.074559, -0.603105, 1.789751, 0.595971, -0.819520, 0.281272, -0.476995, -1.010833, 0.229635, -1.849665, 0.864481, -0.216551, -0.034766, 2.420255, 0.349244, 2.043260, 0.427657, 0.932241, -2.422338, -0.805430, 0.021119, -0.426717, -1.000772, -0.633513, -1.831402, -0.333146, -1.220375, -0.191128, -1.276040, -0.770326, 1.576051, -0.271034, 1.414798, 0.832555, -0.266150, -1.477493, 0.857825, 1.804461, 4.130207, 0.239867, 1.543715, -0.496270, -0.017649, 1.490691, 0.328614, -0.138745, 0.413253, -0.522791, -0.744054, -0.205437, 0.620186, -0.344427, -2.035611, 0.849596, 0.948447, 1.025948, 0.996796, 0.196479, -0.790346, 0.804284, 0.280843, -0.703696, -0.082807, 1.527246, 2.337364, -0.767139, -1.486588, -0.585225, -0.496735, -0.196173, 1.656400, -0.755068, 0.721025, 0.505150, 0.093764, -0.214065, -0.644444, 0.762856, -0.267866, -1.162107, -0.433391, 0.006584, 0.469195, -0.530328, -2.336403, -1.424684, 0.452840, 0.921251, -0.048104, -1.530046, -0.008502, -0.678213, 0.596110, -0.804504, -0.099055, 0.260235, -0.252246, -1.425888, 1.595043, -1.171057, -0.530394, 0.700477, 1.433159, 0.647698, -0.310902, -1.127235, -1.803936, 0.973383, 1.165033, -0.934748, 0.489157, 0.463883, -0.172083, -0.405608, 0.316482, 0.767434, -0.668231, 0.076947, 0.958626, 0.608010, -0.731403, -0.576228, -0.387127, -0.179981, 0.193513, -1.338057, 0.193783, -0.792103, 1.634757, -0.785151, 0.602284, -0.028170, -1.098832, 0.350796, -0.936700, 1.519341, -1.453602, 0.800259, -1.211707, 1.356336, -0.219330, -0.023373, -1.704031, -1.104505, 0.226076, 0.040124, -0.948625, -2.774177, 0.617655, 0.447202, -0.987279, -0.634783, 0.103508, -1.135967, 0.517512, 0.291683, -2.054892, 2.244324, 1.370581, 1.970615, -0.939026, -1.674758, 0.257961, 0.225425, -1.919457, 0.476954, -1.071607, 0.611884, -1.612559, -1.132235, -1.026179, -0.533038, 1.272140, -0.257043, -1.253260, 0.245808, -1.014841, 0.279744, -1.814775, -1.127045, -1.419677, 0.376369, 0.591224, -0.458866, -0.716003, -0.964200, -0.383081, 0.179936, 1.216983, 0.958687, -0.994106, 0.778144, 0.251646, 1.697774, 1.387842, 0.813823, -2.525960, 0.370418, -0.205953, -0.084161, -0.832263, -0.541393, -0.574338, -1.120311, -0.872154, 0.035485, 0.053247, -0.053344, 1.038644, 0.712385, 0.794505, -0.030323, 1.516880, -0.390367, -0.199084, -0.394014, 2.235563, 0.092503, -0.302474, 0.115420, 0.120407, -0.425892, 2.012095, -0.292872, -0.326430, 1.081680, 0.102949, -1.784114, -0.973225, -0.387002, 0.820568, 0.045591, 1.530530, -0.565542, -1.143308, 0.021528, 0.156963, -0.732662, -0.751316, -0.089788, -0.635457, -0.040644, -1.117088, -1.937384, -1.243058, -0.114646, 1.289554, -1.441474, -0.484146, -0.798555, -0.457454, 1.190964, -0.641817, 0.564035, 0.106007, 0.094236, -0.753865, -1.042466, -0.989856, -0.295683, -0.706202, -1.169450, -0.460193, -1.657395, -0.841694, -0.995539, -0.358772, -1.664882, 0.570838, -0.396289, -1.731477, -1.115403, 0.620929, 0.061335, 0.399668, -0.068127, -1.585043, -0.701610, 1.284485, 0.952493, 1.419603, 0.247697, -0.100541, 0.713978, -0.006986, 0.702984, 0.159201, -1.497845, 0.154597, 0.162456, -0.939554, 1.490744, -0.332034, 0.977357, -1.559501, 0.866462, 0.694334, 0.087797, -1.824179, 1.325368, 0.730660, -1.234466, -0.703555, -0.656350, -0.652637, -0.902969, -2.319799, 0.871028, -1.552981, 0.833205, 0.895942, 0.251900, 1.552731, 0.354995, -0.553135, 0.710911, -0.582761, -0.638968, 0.066044, 1.636780, 1.402966, -0.262480, 0.059942, -0.771936, 0.458813, -0.581053, 1.514566, -0.373376, -0.635316, 1.723701, -0.319360, 0.079383, -0.695946, 0.552839, -1.008440, -0.413302, -0.011188, -0.671497, 0.217848, 1.610889, 0.494483, -0.155197, -1.746254, -0.218598, -0.824741, -1.004146, -0.259388, 0.950771, 0.998660, -0.069742, -0.789814, 1.255958, 1.008365, 0.720721, -1.145533, 0.297605, -1.335619, -1.139722, -0.754910, -1.285328, 1.704588, -2.935427, 0.558715, -0.207603, 0.019552, 1.065160, -0.670505, 0.118061, 1.883379, 0.194770, 0.455807, -0.454709, 0.875503, -0.072469, 0.336244, -0.134423, -0.324554, -0.140578, 0.657979, 1.918190, 0.633870, -0.296094, -0.039935, -1.658460, 1.233894, 0.438655, -0.562516, 0.589375, 1.154545, 0.953974, 0.406260, -0.346270, 2.092486, -0.226207, -0.323744, 1.271546, 0.326654, 0.620056, -0.088792, 0.687579, -0.610112, -2.305884, 1.035462, 0.957462, -1.229826, 1.101536, -1.357840, 1.136547, -0.033601, -0.560270, -0.718953, 0.175790, -1.112367, -0.348648, 0.767139, -0.647391, -1.114609, 1.195654, -0.250543, 1.967953, 1.025841, -0.476287, -0.211184, -0.899513, 0.831512, 0.330946, 0.703301, 0.475542, 0.206674, 1.011727, 0.720259, -0.710573, 0.453554, 0.596722, 0.921845, -0.487315, -0.605008, 0.772409, -0.191312, -0.690173, -1.238858, 0.438486, -1.187214, 0.537621, 1.885140, 0.403860, -0.171882, -0.238482, -0.383263, -0.632753, 0.339261, -1.671580, -0.111760, -2.289896, 1.533002, 0.618681, 0.996485, 0.614050, 1.264215, -0.790580, 1.127925, -0.038441, -0.200495, -0.322968, 0.642345, 0.931459, 1.031330, -0.087173, -1.137137, 2.167655, 0.053971, -2.000159, 0.250566, -1.785509, 1.340821, -1.530557, -0.324439, 0.588352, -1.982796, 0.707953, -1.464408, -0.056328, 1.742646, 0.175610, -0.190105, -1.070601, -0.511225, 0.131527, -1.180681, 1.042335, -0.776898, 0.895998, -0.313644, 2.331589, -1.112329, 1.270100, -0.366736, -0.434087, -0.810905, -0.026635, 0.497211, 0.684384, 1.741307, 0.616157, -1.282660, -0.120078, 0.987783, -0.168482, 0.723899, 1.038838, 0.100580, 0.029448, 0.144325, 0.073713, 1.574727, 1.177462, -0.051801, 0.865571, -0.324303, 2.109416, -0.107176, -0.376570, 0.686553, -0.262115, -0.150045, 0.978806, -0.265865, 1.750817, -0.519104, -0.418066, -0.484084, -0.821681, -2.023824, 0.641041, 1.435649, -1.512143, -1.894185, 0.067978, 0.559519, 1.192820, -0.225480, 2.114467, -0.097792, -0.461523, 1.083582, -0.597585, 1.228360, -0.321451, -0.659091, -1.595330, 0.058044, 0.350588, 0.021272, 0.487109, -1.692837, -0.806641, -0.212023, -0.066364, 0.739048, -0.062819, -0.733062, 0.803858, -0.623208, 0.404414, -0.731762, -1.420083, -0.025725, -0.398996, 1.446463, 0.863140, 0.314338, 0.133996, 2.370759, 1.478229, 0.425683, -0.752016, -0.879089, -0.643364, 0.110096, -0.991735, 1.316670, -1.112914, 0.563816, -0.654088, 0.473336, -0.009078, -1.340841, -1.323081, -0.686711, -0.235782, 0.225756, 0.293093, 0.127440, -0.069312, -0.511438, -0.119174, 0.278989, -0.257616, 1.174912, 1.910318, 1.846705, -0.485785, -0.110256, 0.174367, -0.134730, 0.725907, -1.468874, 1.246396, -1.046981, -0.594833, -1.276122, -2.771809, -0.721197, -0.482600, -1.567459, -0.481347, 0.674979, 1.274488, 2.423560, -0.267976, -0.793804, 0.001143, 0.736860, 0.107118, -1.235729, -0.577313, -0.734275, -0.347611, -1.187458, 0.919333, 0.560804, -1.156626, -1.012794, -1.061025, -0.532376, 0.083541, -0.132204, 0.129508, -1.381266, -0.240195, -1.444914, 1.165820, 1.439741, -1.324961, -0.654943, 0.655981, 0.243397, 1.198244, -0.486708, 0.560428, 0.137818, 0.823235, 1.164202, 0.077050, -1.022000, 0.558753, 1.074133, -0.575440, 3.846572, -0.861372, 0.878048, -0.443052, 1.340118, 0.546710, -0.702909, -0.145654, 0.811572, -0.272769, 1.172947, -0.046379, -0.627028, -1.117964, -0.399355, -1.573482, 0.089649, -1.009108, -0.747467, -1.852126, 1.218465, -1.799042, 0.420656, 1.315488, -0.044988, -0.329546, -0.729793, 0.165016, -1.077543, 0.190401, 0.498616, -1.555304, -1.564459, -0.649043, -0.621572, -0.901994, -0.437664, 1.572078, 1.090919, -0.347152, -0.097114, -0.008492, -0.088418, -1.314030, -0.852944, 0.515324, -0.138421, -2.133178, 0.257018, 1.494010, -0.666710, 1.053039, 1.119645, -0.233466, 0.926570, 0.628476, -0.732007, 2.396122, 0.764430, 0.452404, -0.781547, 1.157910, 1.192325, 0.069585, 0.440461, 1.527722, 0.724217, 0.015602, 1.229416, -0.284238, -0.283669, 0.043592, -0.231933, -0.428403, -0.755100, -0.398849, 1.700462, -1.345873, -0.182431, -1.399765, -0.186655, -0.409987, -0.649845, -0.045203, 0.429021, 0.262803, -0.399553, -0.871401, -1.168656, 0.738563, -0.049850, 0.892668, 0.132433, 0.610917, 0.137063, 0.433859, 0.514240, 0.695130, -0.335846, -0.581702, 1.686332, -0.009841, -1.626923, -0.814719, -0.487415, 0.580132, 0.447047, 0.999129, -2.298136, 3.174378, 1.590696, -0.602044, -0.655543, -0.064960, -1.081756, 0.217372, 0.213395, -1.828219, 0.915394, -0.687638, 1.220056, 0.645803, -0.522768, 0.291591, 1.527654, 1.557375, 0.140858, 1.160296, 0.570901, -0.350977, 0.075466, 1.235740, 0.417247, -3.039995, 0.729048, 0.148605, -0.266659, -0.124755, -0.319608, -0.222303, -0.540852, -1.181588, -0.313741, -0.477109, -0.314955, 0.297445, 1.841823, 0.674925, -0.054718, 0.447850, 0.370269, -0.639421, 0.665439, -1.082406, -0.446864, -0.012731}, - { 0.149201, 0.607848, 0.571009, -0.942545, 0.771453, -0.212226, 0.058464, 0.774646, -1.963408, -0.465182, 0.359998, 0.894922, -0.886981, -0.247132, -0.003471, -1.460085, -0.663854, 1.135019, -1.642478, 1.008311, 0.731790, 0.450006, 0.773482, -0.061462, 0.052153, 0.678651, 0.573115, -1.208215, 1.909858, 0.421693, 0.929735, 0.864259, -1.141738, 1.223686, -1.109217, 0.984746, -0.978247, -2.176719, 1.648515, -1.188535, 2.736112, 0.333844, 0.226158, 0.846350, 0.236238, -0.281712, -0.535999, 1.093299, -0.052205, 3.367359, -2.017437, 1.276153, -0.521063, -2.192487, -1.224024, -0.703188, -0.615570, -0.250131, 0.756666, -0.393562, 1.301098, 1.452987, -0.375948, 0.905563, 1.463920, 0.264936, -0.888188, -0.901797, 1.230940, -0.964646, 2.814580, 0.578438, 0.639298, -0.244537, -0.186156, 1.481897, -1.301719, 0.163302, 1.538474, -0.186097, 0.752612, -0.556733, 0.261054, 0.790453, 0.107251, -0.094122, 0.452418, -0.334284, 0.172710, -0.817803, 0.808597, -0.092870, -1.813319, -0.654746, -0.620809, -0.079379, 0.193466, 0.049231, 0.065597, 0.138429, -0.059022, 1.448003, 0.039527, -0.667836, 1.358580, 0.417994, -0.252500, -0.881600, 0.494864, 0.688595, 2.067117, -0.531967, 1.112465, 0.374695, 0.565772, -0.144289, 1.995160, 0.737967, 1.488846, 1.175379, -0.916523, 0.086072, -0.966446, -1.253574, -1.060612, 2.033441, -0.384185, -0.863025, 0.720623, -0.690059, 0.576666, 1.499698, 0.373314, 0.620510, 0.338523, -0.265990, 1.055906, 1.529830, -1.118868, -0.871804, -1.769321, 0.034801, 0.219992, -1.281552, -0.884433, 1.567363, -0.157295, -0.019330, -0.898638, -1.331085, -0.655498, -0.594928, -1.130312, 1.325868, 0.714797, -0.303128, 1.538395, -0.498912, 1.095302, 0.852048, -0.007978, 1.772600, -1.026688, 1.601207, 1.036925, -0.128326, -0.172162, 1.193384, 0.022913, 0.574300, 0.321012, -2.067840, -0.552600, 0.651050, 1.105677, 1.871612, 2.019039, -1.303980, 0.084590, 0.691413, -0.960544, 0.372917, -0.245415, -0.455332, 0.661441, 0.441852, -2.310091, 0.252972, 1.067785, 0.989216, 0.821433, -1.836955, -0.568899, -0.115600, 0.060218, -1.829445, 0.199915, 1.806750, -1.454021, -1.403841, -0.193774, -0.321435, -0.907775, -0.477136, -0.474733, 1.683291, -0.153215, -0.081198, 0.615531, 0.249131, -0.255322, -2.091997, 0.078301, 0.850972, 0.619311, -0.203184, 0.171706, 0.839984, -2.222275, 1.399564, -1.318785, -0.274813, 1.207025, 0.841960, 0.825615, -0.427766, 0.481194, 1.869943, 0.311663, 0.472879, 0.741636, 1.143243, 0.147972, -0.279252, 0.075799, -0.669681, 0.644069, -0.029855, -2.389512, -3.206553, 1.216014, -0.097270, -1.907906, 0.396996, 0.624075, -0.714592, 0.840651, 0.562035, -0.656425, -0.271064, -0.677881, -1.008011, -0.275070, -0.845542, 0.366825, -0.406152, -0.061023, -0.590583, -1.158842, 0.481301, 0.972210, -1.209690, -0.068309, -0.898814, -0.460966, 0.374733, 1.239942, -0.464876, -1.255529, 0.775415, -0.080818, 0.292881, -0.877401, -0.312969, -0.609988, -0.779694, -1.169048, 1.024208, -1.249409, 0.975934, -0.148221, 0.120674, -0.007175, -0.219167, 1.167609, -0.543154, 1.892106, -0.689056, 1.831157, -0.872480, 0.659092, -1.905825, 1.356023, 1.868800, -0.657159, 1.051402, 1.289349, 0.066189, -0.321068, 0.200492, -0.248553, -1.297939, -0.623279, -0.764325, 0.889382, 0.441994, 0.118719, -0.309078, 1.833939, 0.156771, 0.499061, -0.197711, -1.751932, -0.770309, -0.754101, -1.275840, 0.882715, -0.974121, 0.712038, -0.921530, 1.934155, 0.602529, -1.815789, -1.121674, -0.686113, -1.004526, -0.239342, 0.363483, 0.863386, -0.698767, -1.856703, 0.873302, 1.689974, 0.458752, 0.821154, -1.495647, 0.244811, -0.507818, 0.122410, -0.906406, 0.517280, 1.502776, -0.740901, 0.133321, 0.530318, -0.411730, -1.241181, 0.193992, 0.124217, 0.078860, -0.270026, -1.332654, 1.425538, -0.594217, -0.488097, 1.004978, 2.255169, 0.277357, 1.256154, 0.570166, 0.509349, 1.390481, -0.487943, -0.751929, 0.400332, -0.004789, 1.042529, 0.082396, -0.730154, 0.786876, -0.576375, -0.929996, -0.732195, -0.942859, 0.850259, 0.998232, 2.242853, 2.980645, 0.758255, 0.081561, -0.959155, 1.420790, 0.302579, 0.527391, -0.213157, 0.788526, -2.607101, 0.579846, -0.870390, 1.622177, 0.936404, 1.838332, -1.761127, -0.649259, 0.305144, -1.543134, -0.234822, -0.007515, -1.297053, 0.204279, 1.541178, -0.173477, -0.469038, 0.383388, -0.939410, -1.677596, 0.206556, -1.113159, -0.516805, 0.208911, -0.428605, -1.174720, -1.789550, 1.406195, 0.892721, -0.144223, -0.830940, 1.587967, -0.705649, 0.503895, -0.427511, -0.631396, 1.619334, -0.305129, 0.750430, 0.897113, 2.013000, 0.029861, 0.262749, -0.668467, -0.121179, -0.391992, 0.277025, -0.460582, -0.557721, 0.554165, -0.868609, 1.665734, 0.016450, -0.846482, 0.969759, -2.007837, -0.127694, -1.832206, 0.765123, 1.592913, -0.559585, 0.710764, -1.117246, 0.728141, -1.255409, -1.403969, 0.063065, 0.337141, -0.784380, 1.106666, 1.465880, -1.355253, 0.885339, 1.505471, -0.651014, -1.665309, 0.307230, 0.442420, 1.216134, 0.437539, -0.826053, 0.207671, -0.212459, 0.408485, 1.968118, 1.045585, -0.347560, -0.019622, -2.069206, 0.976641, 0.797163, -1.203767, 0.098658, -0.906575, -0.328720, -0.812596, -1.147026, 0.256450, -1.648167, 1.900817, -0.167441, 0.742017, 0.411506, 1.129699, -2.890979, -1.246854, -0.517934, -0.586635, -0.477197, -0.455523, -0.266780, 0.636626, 1.171635, -1.040942, 0.772996, 1.604347, 0.820293, -0.239571, -1.569811, 0.554919, 1.256917, -0.029403, -0.461808, -1.464663, 0.707973, -0.988706, -0.271798, 0.656110, 0.221315, -0.511569, 0.049245, -2.632035, 2.090562, -0.666088, 0.436966, -0.550321, -0.792834, 0.018997, -0.346333, -0.702599, -1.068031, 1.088632, 1.970409, -0.037554, -0.800670, -0.757214, -0.797822, -2.528800, -0.970495, 0.060879, 0.111033, -0.334404, 1.172868, 0.288381, 0.822279, 1.194054, 0.168564, -1.689323, -2.573836, 1.303644, 0.126792, 1.538782, -0.563871, -0.359045, -0.768851, 0.731580, -0.550312, -1.098872, -0.073123, 0.429948, -1.089006, -0.014579, -0.641638, 1.249358, 0.923591, 0.325363, 0.048936, -0.140937, 0.940481, -2.177061, 0.413712, -0.113942, -0.109343, 0.929529, 1.354857, -0.264771, 0.225420, 0.386258, -0.146628, 1.099721, -1.330830, -0.293051, 0.862432, -0.167110, 0.524110, -0.116484, 0.386106, 1.191900, -0.347398, 1.892673, 1.150784, -0.715381, -1.152122, -0.104430, -0.092699, 0.539072, -0.281348, -0.860378, -0.791183, -0.367574, -0.169019, 0.731042, -0.348181, -1.302638, 0.772865, -0.343593, 0.384028, -0.632844, -1.505481, 0.117213, 0.743553, -0.267846, 0.015909, -0.422074, 1.379979, -0.159648, -0.486311, -1.567048, 0.800332, 1.029405, 0.047318, 1.640302, 0.871179, 0.373822, -1.415608, -1.521852, -1.163931, 0.756666, -0.241035, 0.948581, -1.587851, -0.780195, -1.124518, 1.415949, -0.498076, 0.840156, -0.351807, -0.823556, 0.087739, 1.069030, -0.615327, -1.719704, -0.450357, 1.284308, -0.236312, 1.133519, -0.318956, 1.154290, -1.389853, -1.205672, -0.012555, -1.205553, -0.637079, -1.156984, -0.197456, 0.141278, 0.367560, -1.127421, 1.330321, 1.129526, 0.261183, -0.462119, -0.888573, -1.259332, -1.395158, 0.535289, 0.713098, 0.761988, -0.167740, -0.544483, -0.837973, -1.138644, -0.175192, -0.712883, -0.406908, -2.441294, -0.661088, 0.094047, 1.590959, -1.042496, -1.725298, 0.848982, 1.612410, -0.227921, -0.080204, 1.175641, -0.679755, 0.638943, -1.603580, 1.430700, -0.891440, 0.439303, -1.065962, 1.672859, -0.007660, -1.387395, 1.641540, -0.295314, -0.819496, 1.323874, -0.053013, -0.056089, 0.775836, 0.987990, 1.530613, -0.564851, -0.030366, -1.585126, -0.028851, -0.188450, -0.480429, 1.039645, -0.776626, 0.144817, 2.396612, -0.528075, -1.227692, 0.299480, 0.093125, 0.629944, -2.456309, -0.453557, -0.475528, -1.229707, 1.229101, -1.008786, -0.880102, -1.077733, 1.803171, 0.212662, -0.848684, 0.167281, -1.137621, 0.439724, 0.631176, -0.598245, -1.577634, -0.596036, -0.365109, -0.295102, 1.920111, -0.359934, 0.276507, 0.961542, 0.257167, 0.167061, 0.858438, -0.322175, -2.071193, -0.980438, 0.987964, -0.052062, 0.604191, 0.855799, -0.494034, 1.588121, -0.032285, -1.015721, -1.651904, 0.078028, 0.915060, 0.828652, -1.146578, 0.070168, 1.461110, -0.151155, -1.137509, -0.761922, -0.950942, 1.997504, -0.361643, 0.491155, -0.040032, 1.260619, -0.251878, -0.290040, 0.382053, 0.083459, -1.050812, -2.145545, 0.279021, -0.067025, -0.161817, -1.446462, -1.217072, 1.204879, -0.592065, -1.081154, -0.850625, -1.173197, -0.062487, 2.118081, 0.506652, -0.449009, 1.751553, -0.321272, 1.507819, -0.314958, 0.134979, 1.384565, -2.955125, -0.283867, 0.078814, -0.211898, -0.226967, 0.573109, 0.200208, 1.605955, 0.248580, 0.757331, -0.255479, 1.307199, 1.010151, -0.326622, 0.792750, 0.051186, -0.376606, -0.317637, 0.447989, -0.723224, 0.554832, 0.640609, -0.056975, 1.801513, 0.414428, 1.088714, -0.283683, -1.499129, 1.398144, -0.296018, 0.610458, 0.884158, -0.836216, -1.489107, 0.431303, -0.359063, -0.007515, -1.010872, -0.453721, -0.374391, 0.994950, -1.359902, -0.786621, 0.318597, -0.386631, 0.185353, -0.350736, 0.185003, -0.637703, -0.480557, -0.409032, -1.106753, 0.483084, -1.171951, -0.105414, -0.555543, -1.197392, 0.651101, 0.045685, 1.834311, 1.104711, 0.999883, -1.422899, 0.270038, 0.174272, 0.312557, 0.598122, 0.427074, -0.036128, -1.154482, -0.866233, 1.695838, -0.316850, 0.158765, 0.187985, -1.011472, -1.478120, 0.137634, -0.338142, 1.644206, 0.902956, 0.521377, -0.511349, -0.945625, 0.121090, 0.620034, -1.820078, -0.105173, -0.675237, 0.864920, 1.067501, -1.228684, -0.755016, -0.628408, 0.375815, -0.697170, 0.220100, 0.399190, -0.211824, 0.130923, 0.044351, -0.282484, 0.952266, 0.611868, -0.007632, 1.163557, 1.955808, 0.758852, -0.990990, 1.202379, -0.529358, 1.166041, -1.224939, -0.558407, 0.464950, -0.245553, 0.981848, -2.755735, 1.109626, -1.092044, -0.535157, -1.187582, 0.437637, 0.340411, 0.207799, 1.382684, -0.099487, -0.924974, -0.604575, -0.280310, -1.924818, 1.730679, -0.099489, 0.927105, -0.524098, -0.702229, -0.150720, 0.543267, -1.093150, 0.711867, 1.621031, -0.368971, -0.494024, 1.224635, -0.462169, -1.248082, -0.022194, 2.379237, 1.748775, -1.734834, 0.320724, -0.048801, -0.890791, 0.093482, -0.845531, -0.502929, 1.363672, 0.521064, 1.767126, 0.911220, -1.470797, -0.681921, 1.018354, -1.042110, -0.281185, -1.131075, -0.927553, 1.241408, -0.544769, 0.829601, 1.602589, 0.646913, 0.034951, -1.645524, -1.019176, -1.466121, -0.248557, -0.117175, -2.106003, 1.169941, 1.660831, -0.747520, -1.270801, -0.124126, -0.095915, -0.607709, -0.780736, -2.290315, 0.974936, 0.537196, -0.670478, -0.211151, 0.309119, 0.959258, 0.174146, -0.517605, -0.834903, 0.372601, 1.456180, -1.258510, 0.151260, 1.379354, -0.231260, -1.185922, -0.346028, -0.621739, -0.584649, 0.847721, -0.388086, -0.218502, 1.172472, -1.234970, -0.317102, 0.286069, -0.152869, -1.730038, 0.938823, -0.452470, -0.150653, -0.751000, -0.861125, -1.673548, 0.015942, -1.769763, 0.342681, -1.033299, -0.884228, -0.241775, -0.852191, -0.986658, -1.880001, 1.335850, -1.067870, -0.275532, 1.219326, -1.242037, -0.846159, -0.168420, 0.196826, -0.529145, 0.365818, 0.227110, 0.408198, -0.494421, -0.831610, -0.471365, 0.774180, -0.226798, 0.570199, 0.529078, -0.542267, 1.450386, 0.592933, -0.379372, -1.425411, 0.144318, 0.179941, 1.041530, -0.774547, 0.463808, 0.673805, -0.004938, -0.122694, 0.497543, 2.568955, -0.083913, -0.155812, -0.217187, -0.810842, -1.603720, -1.248545, -0.645904, 0.075846, -1.061958, 0.088274, -0.765172, -0.405291, 0.790168, 0.475921, -0.337083, -1.641051, 0.119987, -0.530493, -0.614599, 1.330474, -0.674055, -0.839359, 0.851403, -0.684143, 0.260262, -0.606028, -0.211830, 0.954393, -0.559420, 2.421412, 0.692107, 0.797535, -0.995547, -1.262061, 0.111319, -0.203991, -0.062493, -0.994530, 0.492733, 1.917762, 1.462497, -0.478587, 0.299400, 0.414351, 0.750356, -1.117146, -0.048830, -0.498265, 1.264890, -0.574407, -0.262815, 0.242167, -0.459163, -1.072892, -1.047095, 1.023642, -1.051941, -0.132526, -0.597137, 0.958617, -0.491855, -0.688306, 0.612433, 0.573038, -0.862718, 1.242017, -0.903679, -0.746634, -2.584370, 0.613286, 0.084027, -0.585794, 0.810032, -0.340284, 0.116032, -0.085611, -1.260334, -0.048354, -0.240084, -0.666387, 0.847188, 3.106357, 0.113349, 0.328906, -1.138530, 1.591675, 1.320039, 0.934805, -2.541944, -1.011793, -0.969712, -2.413254, -0.123661, 0.177802, -0.636519, -0.382558, 0.199456, 0.749215, -3.064507, 0.347773, -0.327088, -0.247124, 0.965566, -0.607548, 1.062786, 0.122809, -0.199329, 0.556261, 1.823568, 1.468847, 0.397709, -0.784720, -0.575994, 0.586440, 1.047005, -0.123366, -0.363057, -2.624258, -0.767382, -1.728837, -1.500550, 0.083723, 0.492181, -1.649778, 0.235831, -0.300202, -0.049904, -0.127694, -0.253886, 1.372372, 0.519919, 0.134778, 0.077695, -1.845336, 0.799809, -0.102759, 0.820715, 1.719161, 0.958062, -1.652676, -1.991410, -1.017608, -1.036588, 1.057431, -0.602496, -0.277506, -1.259548, 1.066618, -0.711275, -0.425878, -2.139620, 0.822112, 0.163018, -0.511526, 0.325567, 1.446156, 0.389453, 1.072211, 0.221189, -0.123412, 0.164455, -1.445186, -1.096777, 0.413386, -0.445980, 1.196981, 1.041197, 0.334185, -1.063610, -0.149294, 0.064874, 1.285635, 0.285338, -0.631886, -0.597928, 1.613712, -1.026082, 2.722634, 0.227651, -1.630924, -0.771793, -0.176722, 0.457608, -0.337623, 0.508725, -1.155671, 1.195770, 0.728704, -1.860535, -0.356027, 0.626465, 0.721880, 0.073398, -0.818486, -0.390084, 0.207500, 1.366954, -0.748259, 1.525421, -1.260207, 0.875698, 0.500301, -0.731830, -0.820801, -0.410863, 0.421485, 0.898028, 1.548518, 2.117296, -1.593225, -0.723634, 0.306897, 1.033075, -0.021910, -1.038486, 0.666074, 0.591077, -0.865629, -1.137821, -1.350243, 2.461920, 0.068409, -1.146083, -0.458541, -0.070093, 1.263338, -0.706218, -0.957105, -3.294787, -2.299563, 0.131921, -0.154168, 1.196194, 0.584646, 1.283428, 0.103624, 0.774664, -0.654099, -0.202629, -0.357849, 0.730825, 2.051115, 1.437440, -0.310151, 1.856034, 1.297169, -0.392272, 0.338569, 0.639314, -0.343742, -0.318258, 1.642427, 0.901359, -0.267214, 1.213424, 1.844536, 1.260031, 0.911591, -1.231594, -1.330641, -0.131112, 1.345875, 0.442911, 2.489695, -0.174064, -0.922050, 1.498562, 0.095677, -0.388545, -0.728232, 0.967035, -1.047480, 0.117068, -0.055944, 0.517253, 1.520160, 0.765177, -0.168312, -1.970597, -0.042346, 0.897118, 1.020232, 0.057082, -0.373285, -2.071722, 0.068116, -0.825410, 0.292560, -0.193112, 1.234488, 0.267386, 0.330797, -0.183826, -1.654482, -0.266647, -1.299870, 0.953848, 0.483609, -0.083428, 2.536303, 0.250108, 2.370729, -0.547940, -0.609660, -0.058822, 1.443196, 0.685863, -0.432354, 0.961740, 1.264327, 1.196046, 1.057996, -1.309299, -0.305432, 2.316704, 0.672968, -0.776782, -1.221628, -0.050847, 1.243562, -0.392993, -1.600202, 1.322430, 0.925353, -0.829251, -0.985898, 0.016973, 1.116976, 0.618889, 1.421038, 0.433715, 0.439900, 0.233164, 0.188565, 0.488959, -0.732365, -0.749850, 0.524333, -0.565628, -0.575503, 1.169017, 1.283895, -1.652527, -1.043620, -0.716208, 0.385822, 1.072892, 1.396946, 1.140387, 1.969026, 0.398739, 1.797070, -0.692053, -0.423477, -0.027239, -1.167946, 0.738102, 1.550322, -1.279032, -0.520762, 0.117092, 0.450279, 0.781322, 0.445715, -0.840788, -1.668623, 0.546266, 0.101741, -0.836997, 2.093446, -0.390265, -0.493358, -0.858428, 0.870861, -0.541845, 1.318626, -0.229913, -2.302627, -0.107648, -1.349221, -0.064091, 0.505872, -0.518531, -0.872966, 2.338731, -0.515348, 0.296947, 1.061729, 0.440155, 1.055311, -1.477064, 0.428967, 1.933912, 1.163326, 1.555506, -1.086426, -0.730437, 0.107253, -0.684363, 0.720184, -0.309668, -1.337294, -1.773575, -0.563587, -0.222956, 0.889119, 0.067291, -0.902921, -0.657469, 0.587936, -0.159503, -1.372482, 0.307291, -0.044918, -0.532010, 0.334640, -1.165935, 0.174595, 0.808977, 0.214787, -0.413598, 0.206775, 2.155323, 0.971580, -1.243864, -0.190765, -0.917861, -0.998484, -1.769660, -0.333549, 0.696826, -2.299335, -0.519640, -0.899774, -0.925672, -0.576504, 0.440411, -1.345894, -0.203047, 0.036914, 1.642719, -0.778267, 0.253421, -1.691178, -1.274574, -1.298600, 1.419747, 1.787647, 0.115205, 1.721722, 1.435250, 0.836909, 0.818980, -1.156009, 0.525674, 0.713775, 0.218713, 0.061268, 0.549883, 1.018396, 0.032054, -1.040015, -1.298242, 1.291810, -0.829988, 1.453031, -0.081897, -0.488900, 0.482968, -1.202772, 0.690761, 0.357578, 0.717751, 0.312866, 0.377382, 0.911278, -0.017509, -0.917956, 0.146617, 0.591575, -1.079441, 1.351288, 0.416063, 1.266100, 0.486867, -1.351142, -0.543511, 0.201936, -0.115333, 0.246885, 0.812562, -2.725627, -0.903915, 0.056077, -0.688293, 0.955303, -0.042529, -0.435986, 0.995610, -0.537746, -0.646035, 1.985819, -1.440160, -1.212804, -0.303726, 0.184776, -0.204591, -1.577412, 1.409813, 0.931170, 1.869951, 0.642564, 0.473252, 0.045894, 0.327160, -1.022547, -0.226534, -0.046579, 1.541723, 0.559081, 0.198642, 2.653671, -0.470270, -0.056498, -1.815817, -0.695746, -0.390758, -1.059136, -0.287565, 0.500386, -0.453675, -0.214689, -1.314294, 2.124161, -0.481870, -1.221630, 1.518887, 0.310977, -0.166154, -0.538045, 0.320023, -0.373452, 0.684540, -0.541411, 1.175937, -1.548541, -0.815471, -0.419730, -1.818922, -0.812239, 0.651535, 0.246888, 0.909491, 0.757587, -0.878225, 0.720263, 0.788756, 1.894143, -0.183486, -1.147772, -0.321078, -1.568437, -0.575769, 0.314336, 0.064963, -0.920860, 0.739571, -0.799163, -0.020605, 1.069005, 0.221032, 0.033306, 0.722869, 0.217193, -1.125440, -0.286937, 2.593075, -0.324396, -0.021025, -0.147873, -0.108357, -1.017214, 0.167601, -0.100800, -0.641358, -0.148384, 1.146581, -0.172189, -0.079754, -0.337982, 0.264845, -0.667049, 1.522982, 0.068352, -1.421352, 0.553754, -1.029660, -1.389621, -0.650323, 0.608450, 0.765460, -0.480427, 1.719323, 1.530837, 1.352147, -0.539452, -0.728205, -0.289440, 1.238384, -1.859709, -0.164917, 0.611183, 0.333272, 0.043235, 0.107394, -1.506761, 0.630302, 0.670784, -1.485462, -0.885507, -0.857629, -0.544483, 1.226999, -1.398027, 1.976142, 1.945029, -0.717879, 1.083131, 0.601411, 0.616302, -0.555335, -0.555318, 0.711178, -0.244854, 1.047159, 0.193479, -0.468753, -0.082854, 1.945026, 0.908903, 1.613671, 1.244805, 0.285969, 0.699130, -1.232457, 0.407800, 0.720733, 0.778562, -0.603465, 1.162670, -0.255111, -0.017728, -1.314711, 0.217689, 1.497094, 0.818944, -0.234143, 0.072500, -0.410634, -2.607684, 0.921220, -0.037439, 0.246088, -0.605548, 0.439275, -0.795736, 0.797346, -0.716717, 0.339123, -2.019090, -0.182187, -1.335673, 0.259978, 1.653428, 0.675601, -0.922123, -0.166392, 1.249810, -0.997363, 2.208431, -1.242374, -0.534548, -0.993581, 0.500817, -0.392681, 1.652644, -0.069704, 0.640649, 0.537264, -0.967187, 0.549753, 0.989922, -0.522108, -0.756870, -1.516896, -1.469859, 2.094418, 1.084111, -0.184690, 0.714410, 1.446437, -0.759202, 0.921436, 0.136870, 0.481108, 2.348843, -0.335309, -1.350474, 0.717339, 0.702010, 0.224093, -1.692914, -2.196663, -0.451444, -0.871143, 1.985705, -1.197093, 2.628658, -0.855127, 0.078917, 0.712711, 2.063890, 0.345424, -1.713913, 0.053198, 0.097076, 0.084486, 1.085831, -2.942844, 0.908334, 0.160938, 1.023398, 0.366058, -0.060187, -0.575407, 0.639791, -0.088645, 1.604726, 2.927742, -1.082644, -0.270145, -1.335198, 0.338717, -1.821043, 0.964323, -1.625552, 0.780702, 0.477826, -0.800376, 0.523111, 0.369025, 1.245785, -0.381496, 0.148221, 0.274938, 0.518518, 0.358801, 0.433234, -0.654964, -2.137191, 2.364537, 0.213943, 0.424608, -0.333920, 0.064086, 1.331688, 1.487929, 0.564217, -1.056354, 1.114637, -1.033250, 0.834008, 0.077213, 0.735597, -0.385114, 1.233065, -0.404703, 0.975694, 1.953189, 0.710061, 0.874974, -0.873350, 0.734087, 0.015294, -0.428246, -0.221910, 2.749456, -1.303687, 0.254639, -0.320381, 1.185232, -2.557705, -0.854437, 0.095059, -0.247995, 1.111029, 0.682240, -0.507852, -0.019989, -0.192194, 0.475778, 0.839589, -0.051492, -1.493541, -0.504765, -1.407140, -0.463491, 1.611016, 0.777079, 0.756655, 2.298157, 1.279991, 0.054396, -0.929516, 0.280770, 0.063491, 2.124701, 1.032480, 0.242202, -0.784070, -0.164317, -0.752295, -0.311986, 0.357116, 0.646169, 1.211834, -1.153229, 1.638067, -0.909612, 0.040453, -0.760889, -0.728214, 0.624168, 0.233724, -1.486220, -0.936797, 1.810260, 0.095250, 0.642192, -1.078182, 1.228718, -2.251075, -0.787528, 0.674758, -0.452898, -1.450645, 0.075598, 2.195413, 0.120605, 1.675799, 1.028607, 1.133095, -0.687797, -1.330897, 1.906713, -0.421618, 2.282566, 1.650577, -1.571260, -0.022753, -0.813847, -0.700581, -0.612438, -1.962804, 1.206240, -0.317857, 1.085146, 1.409747, -0.796394, 0.233119, -1.212614, -0.019540, -0.104782, 0.065606, 0.568877, -0.370864, 1.514297, 0.911852, 0.852035, 1.382020, 1.206218, 0.388230, -0.109975, -1.643510, 0.219096, -1.823825, 0.708963, -1.286280, -0.108092, 1.715523, -1.250175, 1.374728, 0.435218, 1.874771, -1.587252, -0.573409, 1.062077, 0.200179, 0.160916, -0.054276, -0.441074, 0.668816, 0.635072, 0.706346, -0.515625, 0.969951, -1.836677, 0.664553, 0.161248, -0.504426, 0.418334, -0.766124, -1.631492, 0.060867, -1.556152, 0.110655, 0.237738, -0.076750, -1.897029, 1.301633, 0.103754, -0.023509, -2.091118, 1.593171, -0.798912, -0.241198, 1.177807, 0.847342, 0.754564, -0.702858, -0.953498, -1.067529, 0.480264, -2.544836, -1.025979, 0.261932, -0.990739, -0.352954, -1.576018, -0.674583, 0.573619, -0.348575, 1.430100, -1.359205, 1.160196, -0.475650, -1.418547, -0.724067, 0.052394, 0.241321, 0.189390, -0.458566, 1.715675, -0.259126, -0.560336, -0.336420, 0.307523, 2.103936, -1.086089, -0.941402, 1.360882, -0.078568, 1.069642, 0.406190, 1.228448, 2.080045, 1.710971, 0.703004, -0.022652, -2.304456, -0.728997, -1.795338, -0.498077, 0.540722, 0.187551, 0.529428, -1.151801, -0.310114, 0.153387, -1.404219, -1.813480, 0.794346, 0.352173, 1.338165, 0.850162, -0.225038, -0.167416, -0.404632, 0.270419, -0.687981, 0.535449, -0.101477, -0.165800, 1.069551, 0.437195, -1.463546, 0.317318, -0.042081, -1.874462, -0.234735, -0.158075, 0.468044, -1.225636, 0.021927, -0.692164, -1.240567, -0.238586, -0.321754, 0.058038, 1.749179, 0.780722, 0.899346, -0.362388, 0.512818, -0.347653, -0.122173, 0.486668, 0.254972, 1.060605, -3.330893, -0.848603, 0.169145, -1.903979, 1.658314, -0.142390, 0.109099, 1.521919, -1.099334, 0.510142, 2.015790, -0.887881, -3.088587, -0.731992, -0.640893, 0.273448, -0.649989, 1.281792, -0.469102, -0.908237, -0.281290, 0.418677, -0.350093, 0.175188, -1.346333, -0.135523, -1.242874, -1.599269, 0.946620, 0.933084, -0.986967, -1.475112, 0.337279, -0.759522, 0.773863, 0.360864, 0.375795, 0.342019, -2.193547, -0.591675, 1.099452, 0.050526, 0.596584, -1.589102, -1.447948, 0.294333, 0.198311, -0.207655, 1.063678, 0.712125, -0.250338, -0.830990, 1.454679, -0.078153, -0.182746, 0.729893, -0.756329, -0.727408, 0.030368, -0.518128, -0.737160, 2.216797, 1.075264, 0.689296, 0.195180, -0.688191, 1.085504, 0.484290, -0.135030, 1.927774, -1.130193, -0.083181, -0.914206, -0.051457, 1.147075, -0.114333, -1.065647, 0.612540, -1.855985, 0.077113, -1.758529, -0.575775, -0.198210, -0.136353, 0.983723, 1.167087, -1.282908, 0.394032, 0.441478, 0.706853, -0.153504, 0.570595, 0.700878, 1.926696, 0.689210, -0.759217, 1.123449, -1.755343, 0.433145, 0.322592, 2.163970, 1.764772, -0.221501, -0.077027, -0.344597, -1.229059, 0.675558, 1.354935, -0.357937, -0.018455, 0.539297, -0.094365, -0.670102, 0.208960, -0.470608, 2.131201, -0.409162, 1.196678, -0.916581, -0.993127, -0.507149, 0.831271, -0.217001, -0.361255, -0.133153, -0.879703, 1.018339, -0.127916, 1.704769, -1.338772, -0.445393, 0.153549, -1.881477, 0.600847, 1.509023, -0.249080, 0.160151, -1.344914, 1.182460, 1.177651, -1.666785, -0.151305, -0.815749, -0.844017, -1.054972, -0.797645, -0.878460, 1.161515, 0.988742, 1.637632, -0.205189, 1.118304, -0.170133, -0.295434, 1.443829, -0.514089, -0.433477, 0.170094, 0.321378, 1.147670, 0.260662, 1.086005, -0.196800, -0.434707, -0.758094, 0.926730, -0.015249, 0.179387, 0.107703, -0.965584, 0.358516, 0.804347, -0.299195, -0.882999, -0.861585, 0.561087, 0.702533, -1.874868, -1.656486, 0.951960, -0.738889, -0.552069, -1.125096, -1.702933, -0.259888, -0.557553, 0.126570, -0.200831, -0.343166, -0.423782, 0.465506, -1.730303, -1.379234, 0.274824, -0.120863, 0.141093, 0.468650, 1.307742, 0.496847, -0.963365, 0.147135, -0.726274, -1.249636, -1.665222, -2.323496, 1.251643, -0.394400, 0.126252, -0.527650, 0.060189, 2.206653, 1.133147, 1.196164, 1.536704, 0.284010, -2.522779, -1.372270, -0.116722, -0.942591, -0.881784, 0.298016, 0.166188, 0.008092, 0.768952, -1.035638, -0.553823, -0.689117, 0.522422, 0.838712, 1.828365, -0.250781, 0.059916, -1.611368, -0.192312, 0.914720, -1.490616, 0.515060, 0.686156, -0.624570, -0.493592, -1.710923, 1.098963, 0.945378, -0.248058, 3.227589, 1.793707, -0.370564, -1.237949, -1.176003, 1.107723, -1.281360, -0.949722, -1.525117, 0.445103, 0.464639, 0.721906, -0.524428, 0.153295, -0.967464, -0.300795, 1.672709, -0.343525, -0.664938, -1.266006, 0.948389, -0.019081, -0.536341, 0.628003, -0.111193, -0.378715, -0.315987, 0.315329, -1.416956, 0.937942, -1.096324, 0.264338, -1.493933, 2.323896, -0.438985, -0.441054, -1.118096, -1.283621, 1.418447, 1.701715, 1.145482, -2.225544, 1.807544, 0.456759, 0.287953, -0.886350, -2.127660, 0.521931, -1.014119, -0.665152, -0.955395, 0.332580, 1.345558, -0.150654, -1.806973, -0.382947, -0.383030, -0.547349, 0.740724, 0.195575, -0.758256, -0.194345, 2.613254, -1.474896, -1.161848, 2.464419, 0.164068, -0.518511, 0.430016, -0.889948, 0.528219, 0.833695, -1.688696, -2.375681, 0.918920, -0.916112, -0.615052, 0.280241, -0.362451, 1.744795, -1.067756, -0.897074, -0.602246, -0.041602, -0.230906, -0.984118, 0.215107, 1.356938, 0.641882, 0.827869, 1.879166, -0.009978, -0.706269, 2.123842, -0.610725, 1.391842, -0.114912, 0.436658, 0.419251, -1.192562, -0.296644, 1.623204, -0.128263, 0.890636, 1.002930, -0.322791, 1.575811, -0.866970, -0.247719, -0.285896, -0.044846, 0.399279, 0.485904, -2.111681, 1.458884, -0.686243, 1.017792, 0.181967, 0.160032, -0.363940, -0.789405, -0.045901, -0.398053, 1.482738, 0.174865, 0.133076, -0.831572, -0.626974, 0.004535, 0.538366, 0.179657, -0.720387, 0.156853, -1.069117, -1.158555, -0.574731, -1.823767, 0.160691, 1.385460, 1.804040, 0.068777, -0.169229, -0.895321, 0.736519, 0.943490, 0.276774, -0.544262, 1.934911, 1.100312, 0.135381, -0.208266, 0.805393, 0.895910, 1.220592, 0.839968, 0.656904, -0.947809, 0.250160, 1.327527, -0.275230, -0.896859, -1.552629, -0.122891, 0.514040, 0.908310, 0.806895, -0.138531, -0.325118, -0.857067, 0.660311, -0.781029, -0.211677, 0.735403, 1.297556, -0.123127, 0.345860, 1.141471, 0.766391, -1.926411, 0.262821, -2.196987, -1.157269, 1.083074, 0.480122, 0.613028, 1.002370, 1.016511, -0.260060, -0.704010, 0.499189, -0.261603, -1.223492, -0.328900, -0.166102, 0.650941, 0.419420, -0.039127, 1.132943, -0.864713, -0.610824, -0.889720, 1.274654, -0.360884, 0.430137, -0.082666, 0.631616, 0.826398, -0.352772, 0.123987, -1.163990, -0.395595, 0.490041, -0.518836, -0.543182, -0.884489, 0.502251, -1.325089, 0.688049, 0.760975, 0.866051, -0.955380, 0.082390, -0.653710, 0.618073, -0.373580, 0.162492, 0.981884, 0.296001, -2.428015, -0.014876, 2.027094, -1.382469, -0.695400, -0.028213, 0.128615, -0.561253, 0.185778, -0.484359, 1.215579, -1.691350, -0.030627, -0.571790, -0.580195, -0.055000, 0.455679, -2.040278, 1.605490, -1.308529, 0.593147, -0.387072, 0.236456, -1.525982, -0.787845, -1.501738, 1.479215, 0.762102, -0.551032, 0.727081, -0.692409, 1.064490, 0.573914, -0.039996, -1.015630, 1.066914, 1.166375, -1.948346, -1.364063, -0.570753, 1.871874, -0.005461, -2.582093, -1.056135, -1.215165, -0.015245, -0.030541, 1.367074, -1.094980, -0.421514, -1.409598, -0.080573, -1.109689, -0.170495, -0.701886, -1.663771, 0.504651, -1.730618, 0.814758, -1.189907, -0.022678, -0.900925, -1.282092, 1.036108, 1.286971, 0.146561, -0.104122, -0.900358, 1.194999, 1.085071, 0.245473, -0.344552, 1.136613, -0.222807, -0.039748, 1.226650, -0.477331, -0.306240, 0.009091, -1.133449, -0.478763, -0.027651, 0.548283, -0.265791, -0.506056, -0.455783, -0.531620, -0.555388, 0.045440, 1.051072, 0.820059, -1.720696, 0.085284, 0.954460, 1.756948, 1.133869, 2.490584, 1.392225, 1.155582, 1.258072, 1.336534, -0.048626, -0.184858, -0.478615, -1.935108, 1.392227, -0.606312, -0.414760, 2.026889, -0.219457, -0.172333, 0.781231, -0.698827, 0.875314, 1.233227, -1.634788, -1.039862, 0.117942, 0.849633, 0.863716, -1.065377, -1.686738, -0.598673, 0.771012, -0.885423, 0.289281, 1.727263, 1.318882, 0.274868, -0.906274, 1.264238, 0.468178, -1.039663, 1.496806, -0.417078, 1.272921, 0.630650, -0.438431, -2.277566, -1.210622, -0.473948, -0.899909, -1.035093, 0.051717, 0.911415, 0.192445, 0.155345, 1.762306, -0.973867, -0.376061, -1.763172, 1.802793, -0.291311, 0.669337, -0.928726, -0.157349, 0.044624, -0.820466, 0.637974, -1.097872, 0.332506, -0.760951, 1.372918, -0.663406, 0.168231, 0.171713, 0.367454, 0.449412, -1.563049, 1.201667, -0.465472, 0.631889, -1.641761, 0.653492, 0.605014, -0.406481, -0.343667, -0.678263, 0.781456, -1.912179, -0.539338, 0.841557, 0.054534, -0.263837, -0.024809, 0.414199, -1.054561, 1.104222, -1.499765, -0.781907, -0.478213, -0.881519, 0.383298, -0.529201, -0.104214, 0.120789, 1.019846, 0.487809, 0.482114, -0.323590, 2.476811, -1.636494, -0.444597, -0.866103, 0.611504, -0.239812, 2.578005, -0.164232, 0.218792, 1.885903, 1.183741, 0.914319, -0.233472, 0.475280, 0.534430, -0.980125, -0.801128, -0.879462, -0.745111, -1.004103, -1.354266, 0.326177, -0.630928, -0.000771, -0.559626, -0.307599, -0.788990, 0.301350, -0.658314, 0.440005, 0.001909, 1.008989, -2.232125, 0.863060, -0.304955, 0.945003, 0.884038, -0.175643, 0.372697, 0.946738, 1.915100, 0.993498, 0.284672, -1.038963, -1.358843, -1.153239, 0.320318, -2.755738, -0.352300, 2.253395, -1.447105, 0.692975, -0.868532, -1.236475, -0.502317, 0.531573, 1.502469, -2.444619, -1.179295, 0.601001, 0.311607, 0.395198, 0.755518, 1.976267, 0.204615, 1.106207, 0.561237, 0.387203, -0.837171, 0.077322, 1.821755, 0.565255, 1.198347, -0.004862, 0.416905, 1.302956, -0.599332, 0.485901, -0.151075, -0.020921, -1.034141, -0.806071, -0.029095, 1.188493, 0.258671, -0.978080, -1.268929, -1.063724, -1.467195, 1.252039, -0.386705, 0.711198, -0.920883, -2.420926, -0.290539, -0.062117, 2.074835, -0.374069, 0.878367, -0.205094, 0.256383, 1.434138, -0.183714, 0.539224, -0.861300, 0.859191, 0.136592, 1.724366, 0.280813, -1.047397, 0.639498, 0.721197, 1.109048, 2.530865, 0.172151, 0.992468, 2.380822, 0.705975, -0.259773, 0.281196, -0.699031, -1.064526, 1.441540, -0.521743, -1.387615, 0.687498, 0.200466, 1.723945, 0.186570, -1.188742, 0.736814, -0.855797, -1.308723, -0.238915, 1.852911, -0.664917, 0.973878, 0.461865, 0.916721, 0.540135, 1.163384, -0.082009, 1.349012, 0.345283, -0.369935, -0.295485, -1.424258, -0.949818, -0.678800, 0.311844, -0.727653, -0.826054, 2.215930, 1.217589, -0.425064, 1.584409, -1.576904, -0.501944, -0.437954, -0.227501, -0.470265, 1.538283, -0.999006, -1.588923, -0.701121, 0.652228, 0.547492, 0.330306, 0.745149, 0.445952, -1.599581, 2.355876, -0.259323, 2.147191, 0.789432, -1.193722, -0.308272, 0.905792, -0.237533, -0.420663, 0.186424, -0.060277, 0.329435, -0.251988, 1.206661, 1.455311, -0.102099, 0.439973, 1.874725, -0.875383, 1.538812, 0.151283, 0.754883, 1.218416, -0.307863, 0.362797, 0.556609, -0.206668, 1.156604, -1.623848, -0.121572, -0.527849, 0.296861, 0.523361, 1.128567, -0.085918, 0.635616, 0.176748, -0.708314, -0.687628, 1.695505, -1.628185, -0.483821, -0.545136, 0.909749, 0.300384, -0.824013, 1.799047, -1.172044, 1.656234, 1.297919, -0.493350, 1.103375, 0.392184, 0.994335, -0.259227, -0.649651, 0.896740, -0.138826, 0.765243, 1.909679, 0.049780, -0.237862, -0.258180, 0.298850, -0.028429, 0.910624, 0.474021, -0.298196, -0.061631, -0.135204, -1.599762, -1.395628, 0.669363, 2.177910, 0.030061, -0.343063, 0.546187, -1.514810, -0.286909, -1.139559, 0.235273, -0.019798, 1.206490, 2.374522, -0.375667, -1.670095, 1.552036, -0.523969, -0.670330, 0.555415, 1.334496, -0.423447, 1.411823, 0.487578, 0.696663, -1.266013, 1.235226, -0.235227, -0.962345, -1.845408, 0.859036, -0.757812, 0.046500, -0.466294, -0.979230, -0.743074, -0.780998, 0.641689, 0.707992, -0.872524, -0.029345, -0.086639, -0.134237, -0.634409, 0.147895, 1.344257, 0.274307, 1.013566, -1.450009, 0.159792, -0.694519, -0.119801, -0.315509, -0.391460, 2.225720, -0.613707, -0.501829, -0.538628, 0.585139, 0.894433, -0.090804, 0.632710, 2.402012, 0.381078, 1.504487, 0.519381, 0.664636, -1.680124, 0.150588, -0.772539, -1.055521, -0.926961, 0.892638, -1.844589, 0.208582, 1.267388, 1.237923, 1.799750, 1.482798}, - { 0.866080, -0.625056, 0.121576, 0.683522, -0.202481, -0.031306, 1.427738, -0.488166, -0.186778, 0.894950, 0.925825, -0.191137, 0.717836, -0.879052, -1.100222, 0.353360, -0.417645, 0.605303, -1.253296, -0.669116, -1.194778, 0.623267, 2.341286, -0.657832, -0.878181, 1.181717, -1.897064, 0.811238, -0.730155, -0.570854, 0.767517, 0.119827, 0.534865, 0.272399, 1.227020, -1.742613, 1.004194, -0.442072, 0.670814, -1.506767, -0.752951, 0.486330, 2.335784, -0.555937, -2.128456, -1.597014, -0.329895, 1.121284, 0.738840, 0.243518, 0.375629, -0.170737, 0.763442, 1.587682, -0.692817, -0.936445, -0.194823, -0.074044, -0.404243, 0.471099, 0.186785, 0.421224, -1.671246, 0.968159, 0.758238, 0.142311, -0.077029, -0.051229, 1.091731, -1.126450, 1.034504, 0.072515, 0.795068, 0.023054, 0.600066, -0.256137, -1.477674, -0.442686, 0.308367, -0.813398, 2.630720, -1.785801, 2.496218, -0.892052, -0.833671, -0.637926, -1.563931, -0.068708, 1.009903, 0.239129, 1.387142, -0.877682, -0.097589, -1.138588, -1.256634, -2.490517, 0.166882, -0.445716, -1.342862, -1.024068, 0.699409, -0.604573, 0.696067, -1.088224, 1.358951, 1.520175, 0.056891, -1.030266, 0.454259, 0.851122, 0.178090, -0.044059, 0.723282, -0.632171, 1.512396, -0.272019, 1.413195, -2.408789, -0.609614, -2.469491, -1.568153, 0.098862, -0.503856, 0.836568, 0.604145, -1.944672, 0.070242, -0.238194, 0.113773, 1.589729, 0.025282, 2.289331, -2.281631, 0.535196, -0.324952, -1.049516, -0.989250, 0.162283, -0.760608, -0.279558, -1.365060, -1.015585, -1.531056, -0.537421, -1.016214, -1.166797, 0.941740, 1.365052, 0.518987, -0.261628, -0.632740, 0.533625, 1.756043, 0.500323, -0.156668, -1.423898, -0.079336, -1.659259, -0.235127, 0.530761, -0.551240, 1.344640, -0.138553, 0.055545, 0.945635, 1.249807, -0.246087, -0.167804, 0.036563, -0.701682, 1.880804, 0.044013, -0.588649, 0.857985, -1.601004, 1.568145, -0.004795, 0.513520, 1.473438, -0.240329, -0.940371, -0.406401, 0.527143, -0.619889, 1.161171, 0.994367, 1.144915, -1.411791, -1.105600, 0.124040, 1.229793, 0.006724, -0.329356, 0.338324, -0.373046, 0.316355, 0.253644, -0.591294, 1.157036, 2.007112, -1.217574, 1.344516, 1.483402, -0.261257, 0.014705, 2.063675, 1.919235, -0.004932, -0.530673, -0.684331, -0.780340, -0.473427, 1.812634, 0.115207, 1.092782, -0.705669, -0.465017, -0.430005, -0.150851, -0.698143, -0.145435, 1.191302, 0.947306, -0.422873, -0.636114, 0.596539, 0.930528, 1.250969, -0.194961, -0.421729, -1.357245, -0.291536, -0.471628, 0.210783, 1.466112, -0.812788, -0.597556, 0.831338, 0.128582, -1.379366, -0.823598, -1.109293, -0.927909, 0.117315, -0.482314, -0.975568, 1.141278, 1.009733, -0.754042, 1.562002, 0.436963, 1.514210, 0.234493, -0.849063, -0.383298, 0.483355, 0.501147, 0.959971, -0.389813, -0.195204, 0.158393, -0.706217, 0.369670, 0.457643, 0.012449, 0.032779, -0.606546, 0.151965, 0.116383, 0.304348, 0.737343, 0.945559, 1.946601, 1.404633, -1.637507, 1.189380, -1.143859, 0.634591, 1.429753, 0.077491, -0.608245, -1.815699, 0.481323, -0.283573, -1.637408, -1.551261, -0.515094, -0.202550, 2.245906, -0.621128, 0.558414, 1.476321, 0.513519, 1.627048, -0.818652, 0.777813, -1.993592, -0.728490, -1.123018, -1.066344, -0.022479, 0.282836, -0.385306, -1.049368, -0.098289, -1.206473, -0.299108, -0.534904, 0.965860, 0.171924, -0.284782, 0.306616, -1.007264, -0.478522, -0.137854, 0.730069, -1.743119, -0.077908, -0.209660, -0.599580, 1.872925, -0.592893, 0.938033, -0.153283, 0.324590, -0.993903, 1.162394, -0.440835, 0.281423, 0.701583, -1.295074, 0.227009, 1.732142, -0.791053, 1.133152, 0.409532, 1.334237, -0.536727, -1.378523, -2.128803, -0.992456, -0.288152, 0.783170, -0.599178, 0.079859, 1.314679, 1.168192, 0.555146, 0.117692, -1.584788, -0.796828, 1.045045, -0.391945, 0.743054, 0.034987, -1.627516, 0.281056, -0.434273, -1.226724, -1.755962, -0.305257, -1.636569, -0.038305, -1.202151, 0.803421, -1.357541, -1.492121, 0.930937, 0.393656, 0.491163, 1.866477, -0.092015, -0.545907, 0.386556, -0.372691, 0.808851, -0.971420, 0.551977, -1.222459, 0.674766, -1.729624, -0.372694, 1.424360, 0.516517, -0.993228, -1.156948, 1.193111, -0.346497, 0.512757, 1.610829, -0.049649, -0.106986, -0.241958, -0.158423, -0.164717, 2.527416, 0.685740, -0.674470, 0.260833, 0.500579, -0.220337, 0.048914, 0.682433, 0.518936, -0.353085, 0.232056, 1.231053, 1.279112, -0.305579, -0.749819, 0.746049, 1.289129, 1.575381, -0.218919, 1.365493, -0.808482, -0.121943, -1.112036, 1.540329, -1.934186, 0.420315, 0.240255, -0.129204, 0.429837, 0.476000, -1.351878, -0.854836, -0.059540, 0.167376, -0.567624, 0.395599, -0.672338, -0.784793, -0.648753, 1.263464, 0.338883, -0.087137, -0.343555, -1.367965, -0.774313, 2.242901, -0.820300, 0.092045, -1.530808, 0.123239, 0.314421, -1.061623, 0.598152, -0.061931, 0.486039, 0.153387, 0.461348, -1.587206, -0.788664, 0.332952, 0.155265, -0.141890, 0.397604, -1.084012, 0.090640, 0.853002, -0.426816, 0.212600, 0.607898, 0.740935, -0.658008, 2.020804, -1.354068, -1.085039, 2.034110, 0.073370, 1.119913, 0.925678, -0.121731, 0.169471, -1.021834, 0.554295, 0.304618, -0.285245, 0.050441, 0.320287, -2.384048, -0.872404, -0.169052, 0.557579, -0.527850, 2.183009, 1.661903, 0.247150, -1.697130, 1.474665, -0.896336, 0.590937, -1.740218, 1.095348, 0.088326, 0.598268, -0.989111, -0.498938, 1.754319, -0.734885, -0.475523, -0.441134, -0.282573, 0.259958, -0.803159, -1.139269, -0.009103, -1.187762, -1.011415, -0.985840, -0.865901, 2.678457, -2.276532, -0.855305, 0.972495, 1.283762, -1.111560, 1.442450, -0.711381, -0.570406, 0.906598, -0.770528, -1.061474, -0.673857, 0.147451, -1.082723, 1.180839, -0.436853, -0.524940, 0.601215, 1.179201, -1.050460, 0.405990, -1.458281, 0.793042, -0.711795, 0.406700, 0.018243, -0.370712, 0.654176, -0.302028, 0.393976, -1.058034, -0.902753, 0.381339, 0.692187, -0.738020, 1.057761, 0.015325, -1.110343, -0.656409, -0.055695, 1.310873, 0.750534, -1.363022, 1.175762, -0.120519, -1.031137, 1.140029, -0.329029, 0.025319, -2.087813, 0.247282, -1.452162, 0.827695, -0.739062, -0.529970, 1.102839, 1.530424, 1.055784, 2.305816, -1.632225, 0.709391, 1.464674, -0.102572, -0.365037, 0.071583, -0.831253, 0.858458, -0.545418, -0.939763, 0.136604, 0.362291, 1.180735, 0.282425, 0.258424, -1.024531, -1.023833, -0.465537, 0.641825, -0.754757, -0.470048, 0.553161, 2.572747, -0.452273, -0.082609, -0.484712, 0.709840, -0.347187, -1.283469, 0.726399, -1.376245, -1.017341, -0.769386, -1.460398, 0.756859, 0.074215, -0.883605, -0.085961, 0.513298, -0.887467, 1.093229, 0.786730, -0.889586, -0.439322, 0.566151, 0.682972, 0.966316, 0.762452, 2.145279, -1.417722, -0.399061, 0.312206, 0.876386, -1.744653, -0.326833, -0.975932, -0.125209, -0.025324, 0.392906, 1.547869, 1.431672, 3.566266, -0.212317, -1.933719, -1.742438, -0.443646, -0.386387, -0.649715, 0.316112, 0.720124, -0.621040, 2.019113, -1.868344, -1.204657, 0.592919, -0.719526, 0.080945, -0.120886, -0.212831, -1.136993, -0.489251, 0.087271, -1.557861, 0.010958, 0.735884, -0.088227, -0.302970, -0.471382, 1.537142, 0.216014, 2.509764, 0.797699, 0.193308, -0.544166, 0.018125, -0.644585, -0.393085, 0.533862, -0.223951, 0.716247, -0.072976, 0.089957, 1.529737, 0.309489, 0.960230, -0.202549, -0.409538, -0.362624, 0.773931, -0.143382, -0.983237, 0.925479, 0.290366, -0.771150, -1.087026, -1.597768, 1.495027, -1.862602, -0.963893, -0.448775, -1.895035, 0.518529, -0.284084, -0.560165, 0.124057, 0.371273, -0.432069, -1.086086, -0.546512, 0.833328, 1.623601, 0.536892, -0.147260, -2.005611, 0.629331, -1.469961, -1.097785, 1.662673, 1.141078, -0.563562, 0.627441, 0.302879, -1.433626, -1.259479, -1.558900, -0.501172, 1.432016, 0.205649, -0.231006, -1.392617, 0.455032, -0.521806, -0.011940, -0.171073, 1.289475, 1.278206, -1.023689, 0.697618, -1.264072, 0.277073, -2.001110, -1.683971, -1.146299, -0.871609, -0.253327, 0.363848, 0.861232, -0.715006, 0.512186, -0.145668, 0.370110, -0.571338, -1.151515, 1.232720, -0.793683, -0.741712, 1.055755, -0.694236, 0.810106, 2.199485, 0.140183, -0.963557, 0.845009, -0.987688, 0.990250, -1.577770, 1.431587, -1.301437, 1.239062, -0.677719, -0.522684, 1.874665, 1.225909, 0.928061, 0.052261, -0.684423, 0.221779, 1.707296, -1.300179, 1.240287, -2.429695, -1.032099, -0.421101, -1.879222, 1.260394, -0.293095, -0.325011, -0.555053, 1.830536, 0.237767, -0.631116, -0.230862, -0.462782, 0.476752, 0.352012, -1.417231, -1.111102, 0.646558, -2.226050, 0.349928, -0.754827, -1.185599, 1.020158, -0.674111, -1.444716, 0.513836, -1.380571, 2.237895, -0.915158, 0.852023, -0.089503, 1.688970, 0.427471, -0.894534, 0.497518, -1.223063, -0.319078, -0.626563, 0.443969, -1.835064, -0.085767, 1.786129, -0.490578, -1.494761, -0.111281, 1.525945, 0.627078, -0.479635, 0.392405, 0.830649, -0.979098, -0.880157, -0.741741, 1.788440, -0.059044, -0.096899, -0.289844, -0.864377, -1.861610, 0.887553, -0.243750, 0.682854, -0.818693, -0.403739, 0.407293, 0.952543, 0.184516, -0.264644, 0.603370, 0.157254, -0.265024, 0.506363, -0.970555, -1.871022, 0.046592, -1.393637, 0.469394, 0.368070, -0.205906, -0.437604, 0.580834, 0.987258, -1.476638, -0.007926, -0.533343, 0.857065, 0.402322, 1.555581, 0.628366, -0.079442, 0.467065, -1.277888, 0.871195, 1.789343, -0.761707, 0.306273, 2.548108, 1.391456, 1.624150, 0.260732, 0.682083, -0.562809, -0.024022, -0.594007, -0.878409, 1.621674, -1.316073, 0.593073, -0.740887, -0.468724, 0.459892, -0.665582, 0.858507, 1.290915, -1.296884, -0.300729, 0.048045, -0.031714, 0.063180, -0.086559, 1.021989, 0.798749, -0.036070, 0.526889, 0.267839, -0.555943, -0.170009, 1.871376, 0.179436, -0.414829, -1.182134, -0.632216, 1.612467, 0.067326, -0.477916, 0.362054, 0.133632, 0.457566, 0.471967, -0.416417, 1.944087, 1.588940, 0.945364, -0.712993, 0.359503, 0.768896, -1.333828, 0.289991, -0.095798, -1.194459, -0.340439, -0.380044, 0.788486, -0.841882, 0.432185, -0.257383, 0.226356, 0.800804, -1.746093, 1.833542, 0.129083, -1.562647, -0.674053, -0.872678, 0.409536, -0.417973, 1.468005, -0.654525, -0.738618, 1.283969, -0.106187, 0.673474, -1.587501, -0.176866, -0.057429, 1.063939, 0.371306, -2.029183, 1.153850, -1.476369, 0.490714, 0.735153, 2.296438, 0.383435, -0.337478, -0.127492, -0.083371, 1.315445, -1.657943, 0.333524, 2.280654, -0.179751, -0.560651, -0.851302, 0.447417, -2.058154, -0.462227, -0.284589, -1.198078, -0.754108, 0.698126, 1.636841, -0.265110, 0.370307, 0.799386, -0.893016, -2.349732, 1.437648, -0.693910, 1.043736, 0.643352, 0.207635, -0.142330, -1.384235, 0.128748, -1.065996, 0.371468, 0.293711, -0.043013, -0.917557, 0.214133, -1.264201, 0.809578, -0.720514, -1.374734, 0.461260, -0.840797, -0.591591, -1.010133, 0.431669, -0.002577, 0.561860, -1.076547, 1.551711, -0.954878, -0.174032, 1.381817, 0.836243, 0.335142, -0.778518, -1.642962, 0.049834, 0.564255, 0.004090, 1.947392, 2.338240, 0.718297, -1.833553, 0.058871, 0.271972, -0.175633, 1.629816, 0.700878, -0.288959, 0.592680, -1.515393, 0.472875, 2.112240, 1.162787, -1.495415, 1.190261, -0.393630, 0.253107, -0.464610, 0.492040, -0.097936, -0.817057, -1.044482, 1.897956, -0.808720, -0.135495, -0.107551, 1.302777, 0.240345, 1.090704, -0.839641, 0.158970, -0.907895, 0.722996, -0.266976, -0.082540, -1.054283, 0.028118, 0.241373, -1.243846, -0.054739, 1.537156, -0.099751, -0.084943, 0.340408, 1.221556, -1.409493, -0.387700, -0.415074, -0.342647, -0.929319, 2.220125, -1.464192, -0.165621, 1.047390, -1.715423, -1.594238, 2.273807, 0.655294, 0.479319, -1.015210, 0.806681, -0.209447, 0.204576, 0.258196, -0.483063, -1.681366, 0.008328, -0.219593, 1.909453, -1.053701, 0.396671, -1.061971, 0.363481, 0.330236, -0.226809, 0.018982, -0.037943, 0.023632, 1.074286, -0.839933, -1.674575, 0.147764, 0.454554, -0.538546, 1.224776, -0.966047, 0.394956, 0.683762, 0.223490, -1.441312, 0.101555, 0.122068, -0.368579, -0.438313, 0.897250, -0.679879, 0.354355, -0.261714, -0.887968, 0.379458, 0.563363, -0.032173, 0.460656, 1.790193, -0.411473, -0.398949, -0.313208, -0.696975, -2.386993, 0.560689, -0.918726, 0.273229, -0.506375, 0.535167, -0.039461, -1.288077, 2.248814, -0.342561, -0.795268, 0.453964, 0.473058, 0.727831, -0.089775, 0.432799, -1.112878, -1.938059, -1.390420, 0.948197, -0.090147, -0.284371, 0.590925, 0.134578, -0.291504, -0.505787, -3.847496, 0.176390, 0.282504, -1.096974, 0.610727, 1.086551, -0.199676, 0.111785, -0.300103, 1.174017, 1.694637, 0.817853, 0.242458, -0.527984, -0.185254, -0.777582, 2.046369, 0.882931, -0.876828, -0.604258, 0.986735, -0.603645, -0.032872, -1.423635, -0.195754, 0.166335, -1.298287, 0.276551, 0.723668, -1.974046, -0.813926, -0.021943, 0.486148, -1.429870, 0.626000, -1.124876, 0.273593, 0.823846, -0.253530, -0.431954, -0.761624, 1.459349, 1.799130, 0.391437, -1.278682, 0.004817, -0.503401, 0.722611, -0.250671, -0.602714, -0.437887, 0.572359, 0.142011, -0.427153, -0.828514, 0.011911, -0.717657, -0.030854, -1.313396, -0.507176, 0.785684, -0.712978, -0.564218, 0.804374, -0.581219, -1.211383, -1.014890, -0.752703, -0.860390, -0.100982, -1.224481, -1.636135, -0.010095, -0.717337, -0.549612, 1.428019, -0.709451, 0.403979, -0.687782, -0.622907, -0.139188, 0.216700, 1.714843, 0.539288, 0.683704, -0.663875, -0.793943, 0.624918, 0.676490, 0.208840, 0.962314, 0.362820, 0.772940, 1.606428, -0.122450, 0.216362, -1.182223, -0.969204, 2.276088, 0.195578, -0.861958, -0.064710, -0.252919, 0.072252, -0.297379, -1.139888, 0.615842, -0.797196, -2.362969, -0.425130, 2.479320, -0.502803, -0.189390, 0.741748, -0.491664, 0.951242, 0.827396, 0.178470, -0.641742, -1.533794, -0.593862, -1.626103, 1.130744, 1.131827, -3.772321, -0.559363, 0.719245, 1.122014, -0.287638, -1.169031, 0.651085, -0.510943, -1.510822, -0.063816, -0.722222, 0.255818, 0.697665, 0.320904, -1.289394, -1.224787, -0.347790, -0.166135, -1.791772, 0.258354, 0.498435, -0.539995, -1.567683, -0.865629, -1.814919, -1.128370, 0.790603, -0.132310, -0.448530, 0.145025, -0.244010, 0.224476, -0.890154, 0.306108, -1.298195, 2.108936, -0.582208, 1.452610, -0.312109, -1.236338, 0.094996, -0.009935, -0.470598, -0.403244, 0.204501, -0.428012, 0.439674, -0.128136, 1.276248, 2.559436, -1.016343, -2.112634, -1.441053, -1.185648, 0.039115, -0.228886, -1.430952, -0.515052, 0.167344, -0.604830, -0.284895, -2.520651, 0.054911, 0.325911, 0.411236, -0.324748, 0.013136, 1.646319, 0.022821, 0.785766, 0.320375, 1.178190, 0.918574, -2.096366, 1.599525, -1.156967, -1.291589, 0.173924, 0.544679, -0.099780, 1.046660, -1.000173, 1.632640, 1.536410, 0.752063, 1.089912, 0.600260, 0.988167, -0.059682, 1.664781, 1.607080, -0.383973, 0.715836, -0.588035, -0.171650, 0.724845, -0.009811, 0.144272, 1.485045, -2.468019, -0.625782, 0.629748, -0.149571, 0.094794, -0.720417, 0.466368, 0.839744, 2.813787, -1.109426, 1.788474, -0.152154, 0.011179, -0.493324, 1.116369, 1.123329, 0.789971, -0.980939, 0.410504, -1.580570, 0.170416, 0.543618, -0.843891, -1.015638, 0.719766, 1.441691, 0.216968, -0.667386, -1.094302, -0.794691, 0.723954, -0.464506, 1.488797, 0.747929, 0.359773, 0.292485, -0.207020, -0.427866, -0.325735, 0.776294, 2.377958, -0.225268, 0.528907, -0.123222, -0.741996, 0.379008, 1.084395, -0.455357, -0.113783, -1.016427, 0.333656, 0.022496, 0.578530, -0.791001, -0.036372, -0.098465, 1.911017, 0.755293, 0.160291, -1.019335, -0.021960, -1.173783, 0.158222, 1.221956, 0.391605, -0.688374, 0.674036, 0.162344, 1.607492, 1.079123, -0.963116, 1.791465, -0.381475, -1.076895, -0.942434, 0.183333, -1.544643, 0.186308, 1.006477, 0.028194, -2.687652, -0.497943, 1.155251, -0.160850, 1.779146, -1.038186, -0.027444, -1.656326, -0.070191, 0.226612, -1.105460, 0.838924, 0.424065, -1.230931, 0.398621, -0.039785, 0.628192, 1.014558, -0.377979, 0.373647, 0.531381, -0.379779, -0.599680, 0.399506, -0.812143, 0.041911, 0.599747, -1.560446, 0.080338, -0.541123, -0.727403, 0.038486, -1.330103, -0.046058, -0.335335, 0.368983, -0.448917, 0.682676, 0.568725, -1.714079, 0.921011, -0.206732, -0.368350, 1.321718, -0.020491, 0.531012, 0.021592, 0.339343, -1.140593, -0.391564, -0.107119, -0.236683, -1.034557, 0.100708, -0.449282, 0.030256, -0.465716, -0.455046, -1.184186, 1.723527, -0.258237, -1.290475, -1.421946, 1.294195, 1.379051, 0.136141, 0.351948, -0.018266, 0.847237, -0.021566, -0.931318, -2.056534, 0.365122, 0.997505, 2.602920, -0.761167, 1.264392, 1.830410, -1.213272, -1.553209, 0.234176, 0.323397, -0.725278, 0.526702, 0.226803, -1.958645, -1.091297, -0.011619, 0.684826, -0.009424, 1.215389, -0.909560, 0.050839, 1.758763, -1.407746, 0.423231, -1.959009, -1.254847, 1.125488, 0.552132, -1.654553, -0.554040, 0.637097, 0.696657, -1.386460, -0.505970, 0.740580, 0.850192, -0.161729, -0.587337, -0.218720, -0.599069, 0.804794, -0.057150, -1.209704, -1.395190, -0.767662, -0.064794, 0.372170, 1.135837, 0.429881, 0.525413, -0.352796, 1.233959, -0.973516, 1.073572, 0.593402, 1.543265, -1.188478, 2.123628, -0.248787, 0.491973, -0.494814, -0.762773, -0.033604, -0.534293, -0.310574, 0.036215, -0.064379, 1.902932, -0.277711, -0.855579, -0.859116, 2.425140, 1.447875, 0.651337, 1.091749, 1.120395, -1.221832, 0.112273, 0.024132, -0.983881, 2.035450, -0.567740, -1.363777, -0.499334, -1.012821, 0.094597, -0.852352, 0.655773, 0.239259, -0.877779, 0.228158, -1.236552, 0.320742, 1.445940, -0.025044, -0.003785, 1.563272, 1.172344, -0.884234, -2.289657, 0.830618, 0.327599, 0.157927, -1.882563, -1.508342, 0.382493, -0.994105, -1.779637, -0.350338, 0.644919, -0.162481, -0.561791, -0.292453, 1.661347, 2.744623, 0.508979, 1.267254, 0.387200, 1.116384, -0.153209, -0.353780, 1.885726, -0.446143, -0.996422, 1.312443, -0.348828, -0.179586, 0.226335, 0.340366, -0.251821, 0.824876, 0.775029, -0.116069, 1.221625, -0.649652, -0.262559, -0.189682, 0.340743, 1.709756, 0.585655, -0.661662, 0.342280, -0.232525, -0.562666, 0.174523, 0.066243, -1.599213, 2.531471, -0.142645, -0.125509, -0.915869, 0.308407, -1.158598, 0.408644, -0.083824, 2.681291, -1.546395, -1.523349, -0.304321, 2.641508, -1.475251, -0.817083, 1.122185, 0.612842, 1.328678, -0.526128, -0.234835, -0.679203, 0.369675, 1.542627, 2.138129, -1.202362, -0.275408, -0.319938, 0.769256, -0.899474, -0.128025, 0.727383, -1.950824, -0.532140, 0.577920, 0.544175, -0.275512, -0.661959, -1.184935, -0.539799, -1.251001, 1.061214, 0.987375, 0.952338, 2.106361, -0.445452, -0.102870, -0.987018, 0.796406, -1.589291, -0.984786, 2.175890, 0.878986, -1.303779, 1.381738, -0.382568, 1.545153, 1.120980, -2.607963, -0.742678, -0.797142, 0.054504, -1.254030, 0.531856, 1.495502, -1.095563, 1.238427, 0.145039, -2.147918, -0.614304, 2.304283, 0.572977, 1.878409, -0.820310, -1.299808, -0.251479, 0.402326, -1.094128, 0.419399, -1.453472, -0.353842, 0.449488, 1.035677, 0.602080, -1.049608, 0.215506, -0.370363, 0.614483, 0.213826, -0.110799, -1.268846, 0.550292, 0.488564, 0.650422, 0.094543, 1.400128, 1.085979, 0.078700, -1.454187, -0.659944, 0.808809, -0.898729, 0.486505, -0.660853, -0.663082, -0.753350, 0.122708, -1.486485, -1.044857, -0.462478, -0.629648, -1.037736, 0.523050, 1.289400, -1.188837, 0.345922, -0.079748, 1.544174, 0.825203, 1.494623, 1.013468, -0.493277, 0.190401, -1.227905, 1.450422, -1.793353, -0.669938, 0.444625, -0.687635, 1.703094, -1.738284, -0.975158, -0.883730, 0.117322, -0.653096, 1.693622, 1.288797, 1.490813, -1.174640, -0.157626, 1.514826, 0.431111, 0.490108, 0.365193, -0.330806, 0.257561, 0.162109, -0.956062, -0.678524, -0.696529, 1.573911, 0.260740, 0.734999, -1.957596, -0.469499, -0.468998, 0.991787, 0.380781, 0.421273, 0.178817, 0.751496, 1.052312, 1.117894, 0.159977, -0.107782, 1.719500, 0.774930, 0.556565, -0.318402, 1.262776, -1.698784, -1.735955, 0.483090, 0.155759, -0.920446, -0.593141, -0.464839, 1.747810, 0.574726, 2.271998, 1.096809, -2.022347, 0.486468, -0.310964, 0.979258, -0.299639, -0.662594, -1.161256, 0.826822, -0.482803, 0.848660, 0.000758, 1.692897, 0.235913, -1.935236, -0.346001, -0.353184, -2.144652, 1.034221, -0.673041, 0.287329, -0.777888, 0.351853, 0.490109, 1.474277, -0.183182, 0.319611, -0.456337, 0.133169, 0.467387, -0.565013, -0.421942, -0.193670, -1.332679, -0.874967, 1.613541, -1.136294, 1.854410, -0.556349, 0.548563, -1.671199, -0.043325, 0.817063, -0.128590, 2.412078, 1.331446, 0.378804, -0.043284, -0.286320, 0.848561, 1.278577, 1.773656, 0.911615, -1.805698, 0.234705, -0.181564, 0.121394, 0.466954, 1.267693, -0.371449, -0.020568, -2.171257, 1.000126, 1.061159, 0.505495, -0.969288, -1.152498, -0.182558, -0.628118, -0.373315, 2.211878, 1.285323, 1.186292, 0.845856, 0.427614, 0.721105, 0.031726, 0.776502, 1.512902, -1.046481, 0.904783, 1.308605, -1.539528, -0.040557, 0.361875, -1.012259, -0.940666, 0.037068, -0.065892, -1.155974, -0.841934, -2.347145, 0.075728, -0.316108, 0.972830, -0.589255, -0.191023, 0.463864, 0.390986, 0.181009, 0.190874, 0.766675, 1.032602, -0.593371, 0.503112, -1.045168, 0.550146, -1.900579, -0.272935, 1.148232, -0.245716, 0.754492, 0.157743, -0.063951, -0.912690, -0.323499, 1.655576, 0.727205, 0.337494, -0.746560, 1.979771, -2.154375, 0.238954, 0.674898, 0.290035, 0.508623, 0.238075, -0.746953, 0.917649, -1.644612, 0.502363, 0.089401, 0.508571, 0.623569, 0.477996, 0.387759, -1.172721, 0.970701, 0.733727, -0.125840, 1.773905, -1.121656, 1.333812, -0.251404, -0.896054, -0.381041, 0.118461, -1.629806, 0.067714, 0.061594, 0.321507, -0.050412, -0.278915, 0.627870, -0.044515, 1.287073, -0.979405, 0.685551, -0.380886, -1.643892, 1.313650, 0.141613, -0.970911, 1.184946, -2.157228, -1.459640, 0.538561, 0.699558, -0.303640, -0.108299, 1.245393, -1.913161, -1.542441, -0.163104, -0.324393, -2.242914, 1.630139, 0.948557, 0.426050, -1.618316, -0.696065, 0.586882, -1.018793, -0.437240, 0.745870, -0.316719, -1.665113, -1.242550, -0.814925, -0.325437, -1.117700, -0.212810, -0.756375, 0.390049, -1.004653, -1.651104, -0.871851, -0.698587, -1.425555, -0.811383, 0.642577, 0.310604, -1.859788, -1.692393, 0.238403, 0.386056, -0.340491, -1.001342, -0.593708, -0.064249, 0.659165, 0.187226, -0.772300, 0.453423, 0.841282, 0.934110, 0.864331, -0.940953, 0.345837, 0.103412, -0.027145, -0.227788, -0.300733, 1.372915, -0.477588, 0.031030, -1.770696, 1.731423, 1.594679, 0.596607, -1.023487, 2.074233, -0.666359, 0.644589, 0.841822, 0.277574, 1.564192, 0.863628, 0.836216, 0.870658, -1.265987, -0.124717, 0.600019, -0.471383, 0.269590, -0.919838, 0.523051, 1.549593, 2.487397, -0.595452, -0.166794, -1.103905, 0.878145, -0.211910, -1.791964, -0.838534, -0.957797, 2.505346, -1.169337, -0.472157, -0.388990, 1.302714, -2.537949, -2.488113, 0.853702, 1.182353, -0.000154, -2.121131, -0.028600, 0.761508, 1.429013, 1.292225, 0.204175, 0.752785, -1.226625, 0.351576, -1.568331, 0.702363, 1.777936, -1.854469, -1.040808, 1.192233, -0.013438, -0.512396, -1.555198, -1.442163, 0.892473, 1.234882, 1.289877, 0.280704, -0.169063, 1.375754, 0.857097, 1.336896, -0.441673, -1.566456, 0.778496, -0.695970, 0.006153, -1.720969, -0.889830, -0.763117, -0.528502, -0.097321, 0.195173, -0.625830, 0.195705, 0.940522, 0.773672, -0.100510, 0.918883, -1.060731, 0.131079, 0.828299, -0.624251, 0.127454, -0.978299, -0.323283, 0.334632, -1.449966, -1.445615, -0.293141, -1.611847, 0.023450, -0.024560, -0.114500, 0.120742, 0.012154, 0.433593, -0.967235, 1.190966, -0.358853, -0.510341, 1.171354, -0.738971, -0.500408, 0.152481, 1.438761, 1.207522, 0.901185, 0.800722, 0.160888, 0.186841, 0.692368, 0.073113, 1.058602, -1.590634, 0.515061, -2.049998, -0.465840, -0.693507, -2.183272, 0.524993, 0.423880, 0.408038, -1.054390, -0.880862, 1.538043, 0.909203, -0.725540, -1.434025, 0.403302, 0.587620, 2.974963, 0.931787, 0.173392, -1.230264, 1.998399, -0.359904, 1.391133, 2.113743, -0.386662, -0.621082, 0.300080, -1.373614, -0.209795, 0.667779, -2.221721, 0.754526, 0.022138, 0.135022, 0.803149, 1.884429, 0.606001, 2.013745, 0.112433, 0.133606, 1.429963, -0.960882, -1.305413, -0.140874, -0.856742, -0.701118, 0.315902, -1.346026, -1.838305, 2.523635, -0.460362, 2.023920, -1.283741, 0.247436, 0.372712, -0.120169, 0.459905, 0.575902, -0.389160, -0.998085, 0.207795, -0.550396, -0.222576, 0.658455, 1.385007, -1.329448, 0.186255, 0.186056, -0.203054, -0.372280, -0.871205, 0.104640, 1.582643, 0.337969, -0.476638, -0.096993, 0.509839, 1.311044, 0.267209, 0.547898, 0.606629, 0.661469, 1.478996, 0.303150, 1.054283, 1.963517, -0.701416, -0.644236, -0.670002, 1.485709, 0.867337, 0.330906, 0.310329, 1.293163, 2.306950, 0.512658, -0.694413, 0.068148, -1.136732, -0.810269, 1.395791, 0.997877, -1.143858, -1.089280, -0.496521, -0.050454, -1.358466, 1.567171, -0.141172, -1.363225, 2.074891, 0.231248, -0.591231, -1.028763, 1.302356, -2.111721, 1.336129, 1.147171, -2.028263, 0.841178, 0.102087, 1.241837, 0.512563, 0.467606, -0.240968, 1.268157, 0.389327, 1.278809, -0.102705, 0.408528, -0.488802, -0.377720, -2.062289, -0.370082, -0.420057, -0.001716, -0.112779, 1.504343, -0.853454, -1.042517, 0.212851, -0.472853, 1.170080, -0.541422, -0.039304, 0.933957, 1.357692, -0.429652, -1.702277, -0.159772, 0.001983, 0.000002, -0.543599, -1.698953, -1.104731, 0.698160, 0.442014, 0.421941, -0.584926, -0.385530, -0.571799, -0.154162, 2.106135, -1.281321, -0.289063, -0.004227, -1.236964, -0.364015, 0.404688, -1.278293, -3.094613, -2.402176, -0.350939, 0.559308, 1.620555, 0.702482, 0.313948, -0.120019, 1.820701, -0.209859, 0.034231, 1.009775, -0.240234, 0.641508, -0.830939, 0.047171, -0.461867, -1.351455, 0.045219, 1.273847, -0.067354, 1.777573, 0.194085, 1.382331, -2.380929, 1.322756, 0.066846, -0.443359, 0.844103, -0.182564, -0.321789, 0.525938, 1.558613, -1.000298, 2.095170, -1.273995, -1.048167, -0.047360, -0.398325, 1.345394, 1.237966, -2.107172, 1.281710, -0.688015, 0.340963, -0.761513, 0.036355, 0.751413, 2.138854, 0.837824, -0.661121, 2.223464, -0.024160, 0.258210, -1.262901, 0.101704, 0.886722, -1.530659, -2.376492, 1.471753, -1.091717, -0.080357, 0.328669, -0.709377, -0.627621, 0.200232, -0.399206, -0.985927, -0.316829, -0.887110, 0.441063, -0.730294, -0.483783, 0.309477, 2.657938, 0.741498, -0.014179, 0.548736, 0.297112, 0.053352, -0.534102, 0.675665, -2.457662, 1.756811, -0.656191, 0.648414, 2.293105, -3.063736, -0.371508, 0.669888, 2.075385, -1.055540, -0.389699, -0.202379, 1.000234, 0.851372, -0.286208, 0.386047, 1.082359, 1.027662, 0.695166, -1.019722, 1.415310, -0.850611, 0.228916, -0.172337, 0.788785, -0.490355, -1.012435, 0.779454, 0.867956, -0.622320, -0.090468, -1.180841, -0.527309, 0.799429, 0.602665, -0.816127, 0.165748, 0.310293, -1.297851, -2.127904, -1.053795, -0.662907, -0.250302, 1.088920, -1.113692, 1.543742, -0.576911, -0.213999, 2.256395, 1.962789, -0.383080, 0.069965, 0.347551, -0.185584, 1.376954, 1.159101, -0.256020, -0.125754, 0.057725, -0.205835, -0.687395, 0.268903, -1.814178, -0.008433, 0.397908, -0.419803, 1.289426, -0.781659, -0.554355, -1.473182, 0.696459, -0.066383, 0.987544, 0.880593, 0.066657, 0.378186, -1.038281, -0.351476, 0.993799, 0.353034, 1.967381, -1.244548, 0.979393, -1.938769, 1.197030, 1.552737, -1.013856, 0.278807, -0.776079, -1.393610, 0.417863, 1.896697, -0.583991, 0.845668, 0.072539, 0.416493, 1.224551, -1.032908, -0.800929, -0.257251, -0.341851, 0.654992, -0.062871, -0.126248, 0.638023, 0.411336, -1.146026, -0.871349, -0.107819, 0.159237, 1.084878, -0.096234, 0.008714, 0.363630, -0.885676, 0.824603, -0.348342, -0.290375, 1.992267, -0.944929, -1.033954, -2.124754, 0.306700, 1.568433, 0.237954, 1.011253, 0.890108, 1.137032, -0.970933, 0.323666, 1.409332, 0.634482, -1.863711, 0.136564, -0.031205, -0.990787, 0.078272, -0.388315, 1.529234, -0.180333, 0.654552, -2.241537, -1.685225, 0.276770, 0.787062, -0.951388, 1.494093, -1.052059, 1.363340, -0.606494, 0.435609, 1.032341, 0.854363, 1.151113, -1.584345, 1.533453, -0.254832, 1.204281, 0.745791, -1.491793, -0.078630, -0.463900, 1.553098, 0.563620, 0.278828, 1.504271, -0.418872, -2.625763, 0.123032, -1.236659, 1.284504, -0.158240, 0.797906, -0.748526, -0.288808, 1.613181, 0.715834, 0.409639, 0.231675, -2.486954, 1.359262, 0.693055, -0.053956, 0.688209, -0.542796, 0.917013, -0.156186, -0.733029, 1.300479, 0.103335, -1.143418, 0.927558, 0.673648, -2.786823, 0.630348, -0.596049, -1.192626, 0.397885, 0.935736, 0.360845, -0.102760, 0.171726, -0.122494, 0.717100, 0.825085, 1.096298, -0.337822, -0.632185, 1.125006, 0.330534, -0.448444, -0.118234, 1.081982, -0.706928, -1.447757, 0.784149, -1.080579, -0.007369, -1.275368, -2.074418, -0.341810, 0.625092, 0.693246, 0.013951, 0.951710, 0.833433, -0.562873, -0.379527, 0.339144, -0.118447, -0.630108, -0.064035, -0.243146, 2.724359, 0.696421, 0.882557, 1.114483, 0.474649, -0.078484, 0.923468, -1.233502, 0.081886, 0.561078, 1.546341, -0.227950, -0.476978, -0.602240, 0.058573, -0.939124, -0.895486, 0.703519, 1.507734, 1.295597, 0.444187, -0.967023, 1.312898, 1.001435, -1.094791, 0.311407, 0.544028, 1.649227, -0.539164, -0.748347, -1.037615, -0.085585, 0.944574, 2.846277, 1.472078, -0.338934, 0.938910, -1.315354, 0.807254, -1.851259, 1.563321, 0.552499, -0.790993, -0.083347, -0.822957, 1.003915, -0.061260, 1.095248, -1.742030, -0.688430, 1.127627, -0.263740, 0.733030, -0.540750, 0.238349, 1.293281, 0.870832, 0.997744, 0.185250, -0.110307, -1.537922, -0.365415, -0.039089, 0.982837, 0.319798, 1.032417, -0.576030, 1.310834, 0.136676, 1.127323, -0.089150, 0.896282, 0.417950, 0.070422, -0.157127, 1.234319, -0.978378, 1.476864, 0.538272, 0.385858, 0.320429, 0.022871, 0.392842, 0.177457, -0.332814, 1.390906, -0.397742, 0.112415, -0.340343, -1.330629, 0.912444, 0.346352, -0.483079, -0.433957, -0.328288, 0.074146, 0.337486, 0.741707, -0.383569, -0.563149, -0.218291, -0.517675, 1.377026, 1.542241, -0.767136, -1.118123, -1.837940, -0.696887, 0.324369, 0.830081, 0.464813, -0.125971, -1.908897, 1.403316, 0.166996, 0.582172, 0.572374, 0.348029, 1.436253, 0.242459, -0.271409, -1.317343, -0.374362, -1.281095, 1.020371, 1.681033, -0.711967, 1.158792, 2.966699, -0.125565, -1.093711, -0.243393, -1.654180, -0.591599, 0.718302, -2.049595, -0.703539, 0.167982, -1.420567, 0.662354, 1.062625, -0.681258, 0.888918, 1.372472, 0.330192, -0.557152, -1.373163, -1.256078, 0.872913, 1.500677, -0.400971, -1.098439, 0.752767, -1.375299, -0.704750, 0.398118, 0.120716, 1.290664, -0.248734, -0.061709, -0.315851, 0.413841, -0.991105, -1.510866, -0.408108, 0.405287, -0.293155, 0.179160, -1.653138, 0.990054, 0.711607, 2.209724, 0.325221, -0.042293, 1.082162, -1.343456, 0.150146, -0.968255, -1.531807, -0.504254, -0.317111, -0.196447, 0.191399, -0.762299, -2.040827, 1.885169, 1.282522, 0.962386, 0.280749, -0.036098, -1.639054, 1.170920, -1.492695, 0.143669, 0.650995, 0.234237, 1.230955, 0.057640, -0.214090, -0.534227, -0.578776, 0.125763, 0.019438, 2.150549, -1.869604, -0.313717, -0.314017, 0.486108, -1.115248, 0.462417, 1.098508, -1.190247, -0.727925, 0.669302, -0.021880, 0.807131, -0.897302, -0.413006, -1.143647, 0.747145, -0.446139, -0.165424, 0.761598, -1.464150, 0.308694, -0.945917, -0.416103, -0.305428, -0.898248, -0.159927, -0.425741, 0.027930, -0.645810, -0.023443, 1.363165, -0.682764, -0.867862, -1.430043, 0.673272, 0.214845, 1.537753, -0.012069, -0.946378, -0.503318, 1.903265, -0.604833, -0.912314, 0.350789, 1.039350, 0.201091, -0.759496, -0.787621, -0.507002, -0.951064, -0.133818, 0.853275, 0.360311, -0.057158, 0.810785, 0.417495, 0.018208, -1.632295, -0.809766, -1.169716, 1.522623, 0.568319, 1.102799, -0.209293, -0.215655, -1.167315, -0.206248, -0.816123, -0.874441, -0.190806, 0.378056, -0.895094, 2.001792, 0.279251, -1.649177, 0.514400, 1.805737, -0.539054, 0.846530, 0.238871, -0.573209, 1.738087, 0.746235, -0.279255, 0.450477, -1.008486, 0.495469, 0.077325, 0.477148, 0.261582, -0.645051, -0.633761, 0.032262, 0.253078, -0.305077, -0.837905, 1.051906, -0.275461, -0.468255, 2.785873, 0.995899, 1.418191, -0.675931, 0.529137, -0.604013, -0.395066, -1.748740, -1.505819, -0.289815, -1.232342, -0.690178, 0.448758, 0.124130, -0.210617, -0.672301, -1.221108, 0.537656, 0.654851, 0.032209, 0.592418, 0.254624, -0.710136, -0.086747, -0.622997, -1.310471, 1.036720, -0.903373, -0.959263, 0.262379, 0.998065, -0.182319, 1.007750, 0.356757, -0.022003, 0.824459, -0.359133, -0.017737, -1.407765, -1.187161, 1.273830, 0.118736, -0.700377, -0.752612, 0.450680, 0.089769, 0.594245, -0.793705, -0.084685, -1.136831, -0.721463, -1.679135, 0.053687, 0.193615, 1.107299, -0.015698, -0.156326, 0.076302, -2.239511, -0.128651, 1.292904, -0.779378, -0.786066, 0.832118, -0.525856, -1.994214, -1.537125, -1.580682, 0.208293, 0.372145, -0.463928, -1.100816, 0.726475, -1.400278, -0.435401, -0.748394, 0.314515, -0.398082, 0.045251, -1.189218, -0.538288, -1.333592, 0.439772, -0.373387}, - { 0.445119, -0.473154, 1.043832, 0.777392, 0.336832, 1.607917, -1.256141, 0.886497, -0.493596, 0.676463, 0.012833, 1.039813, -0.030301, -0.612872, -0.133890, -1.667399, 2.916224, 0.100309, -1.667854, 1.436229, -1.732758, -0.453935, -0.285197, -0.322268, 0.601576, 0.176054, 0.811950, 0.836817, 0.551970, -1.137375, 0.317023, 0.097334, 0.680212, 0.770360, -0.797717, -0.379524, -0.795399, 0.194768, 1.628859, -0.217443, 0.030528, 0.945046, 0.292479, 0.136449, -0.635604, -0.628854, 0.572396, -1.108107, 0.805043, -0.575554, 0.191515, -0.600326, -1.467304, -0.160230, 0.968471, -0.371370, -0.642809, 0.517223, 0.645355, -0.865668, -1.973043, 1.192697, -0.546544, 0.234783, 0.831680, 1.071745, -0.306672, -1.219912, -1.655767, 0.471195, -0.732462, -1.356594, 1.425433, 2.090956, -1.082446, -0.234593, -0.601599, -0.647650, -1.406416, -0.080426, -2.663863, -0.766313, 1.641921, -0.352298, 0.745640, 1.491805, 2.281355, 0.514820, 2.185823, -2.314241, -0.169153, -0.298561, 0.334818, -0.491147, 0.328098, 0.915667, 0.402621, -0.746891, -0.946256, -0.144328, 0.227210, -0.478551, 2.912821, 0.470826, -0.404351, 0.548383, 1.860363, 1.211489, 0.244203, 0.065883, 1.231655, -0.481459, 1.409605, 0.744219, 0.665025, 0.692379, -0.019274, 1.339805, -1.001782, 0.111468, -0.955685, 1.245185, -0.316737, -0.090949, 0.013979, -1.520471, -1.386841, -0.411242, 0.920072, 1.776073, -0.082401, 0.157874, 0.091302, 1.025784, -1.359340, 2.027332, -1.349896, 0.385464, 1.905441, -1.127224, 0.482441, 1.913600, -0.617968, -0.898145, 1.119693, 0.358507, 0.019756, -0.191372, 0.703550, -0.547417, -0.346055, 0.184678, -0.111272, 0.619518, -1.948512, 1.083403, -0.085566, 0.281789, -0.864147, -1.348143, 1.721284, 0.542809, -0.605238, -0.662774, 1.618685, 0.026117, -0.999879, 1.073480, 1.695607, 0.686530, -0.070985, 0.067097, 0.441073, 1.058383, 0.236613, -0.122160, 1.226766, -2.121287, 0.864963, -0.906502, 0.788784, -0.114583, 1.716322, -0.140293, 0.803576, 0.097291, -0.079516, 0.731232, -0.179123, 1.447323, -0.404925, -1.159394, -0.096744, -1.058249, 0.324214, 0.032134, -0.915288, -0.892403, 0.035589, 0.410577, 1.733285, -1.554785, 0.734351, 1.227558, 0.417913, -0.278726, -0.123782, -0.533453, -0.519297, 0.603304, 0.008567, 0.197589, -0.304968, -0.619938, -1.508928, 0.842970, 0.388260, 0.965970, 1.615622, 0.037578, 1.321452, 0.570423, 0.837113, 0.959701, -1.785599, -0.118456, 0.440891, 0.390267, -1.246232, 0.388323, -0.359202, -1.526424, 0.649643, 1.248093, 0.444873, -0.876070, 0.588197, 0.516607, -1.146631, -1.477178, -1.867158, 2.048766, 0.583620, 1.099906, 2.005556, -0.154881, -1.377580, 0.992883, 1.499071, 1.408246, -0.754189, 0.809171, -0.463964, 1.036659, 0.407151, 0.182255, 0.859734, -1.040145, -0.393154, 0.304349, 0.099052, -1.669704, -0.059810, -0.115147, 0.681644, -0.035526, 2.093822, 0.374111, 0.966913, -0.711796, 0.558377, 0.004689, -0.236323, -0.015492, 0.507350, 0.884238, 0.796181, 0.407894, -0.651447, -0.297920, -0.675614, 0.080077, -0.546734, -1.485716, 0.356631, -0.381172, 0.228533, 0.689613, -0.165249, 0.874549, 0.522173, 1.338984, 1.683538, -0.858577, 1.715507, 0.962570, -1.854659, 0.301397, 0.777961, -0.168081, 0.822478, -0.091549, -1.307847, 0.395082, -0.734842, -0.908345, -0.106309, 0.795496, -0.989138, -1.035424, -1.028767, 0.794088, -0.556766, -0.578390, -0.205136, 0.407657, 0.192795, -0.004476, 1.330971, -0.460468, -0.340379, -1.404826, -0.268784, 0.009571, 1.271649, -1.710451, -2.075173, -0.264577, -1.691788, -1.099675, -0.527835, -0.724047, -0.771612, 0.636082, -0.496467, -0.230907, 0.097217, 1.231677, 0.824362, -2.003355, -0.411184, 0.420341, -2.203910, -0.119704, 0.429810, -1.679386, -3.574735, 1.227788, -1.065000, 0.838933, -0.033208, -1.115704, 0.435834, 0.217366, -2.191301, 0.511384, -0.355264, -1.158450, 0.633463, -0.307346, -1.324384, 0.483216, 1.122067, 0.806615, -0.219632, -0.830491, -0.489634, -1.658145, -1.419990, -0.975801, 1.988137, -0.428863, -1.211944, -0.293354, -1.890205, -1.864249, 0.203997, -0.729941, 0.339944, 0.927718, 0.412664, -1.409777, -0.503725, 0.092292, 0.320979, -0.275510, -1.846167, -0.503700, -0.970977, -0.069228, 2.064976, -0.323504, -0.362595, -0.580841, 0.037430, -0.225678, -0.667707, 0.380894, 0.849483, 1.021359, -0.606119, 0.590615, 1.082592, -1.106674, -0.707658, -1.296561, 0.507987, -0.871183, -1.377768, -1.984335, 0.667969, 0.564089, 0.734477, 0.454342, -0.127853, 0.197681, -0.559246, -1.551669, 0.099377, 0.199236, -1.410957, 0.504269, 0.490630, -0.682557, -1.050351, -1.410082, -1.629301, 0.134012, 0.986930, -0.266827, -0.221795, -0.283894, 0.313460, 0.394926, 1.339049, 1.207692, -1.325734, -0.874716, -0.585774, -1.138751, 0.250473, 2.165983, 0.299551, -0.024552, 0.108212, -1.080102, 0.019353, -0.506037, -2.250953, -0.536788, -0.036371, -0.158025, 0.243695, 0.110131, -2.970728, -0.546735, -0.859855, -1.213565, 0.507321, -0.255617, -0.908084, -0.119083, -0.500949, 2.417475, -0.944488, -0.943858, 0.644891, 0.213952, -1.412248, 0.336780, -0.360798, 1.631748, -1.572463, -0.632524, -0.041980, -1.419299, -0.828942, -1.567378, -0.039727, -1.079625, 0.229201, 0.540608, -1.194643, 0.285663, 0.272545, 0.363028, -0.602567, 0.052341, -0.505195, 0.834541, 0.050153, -1.553528, -0.205532, -1.577365, -1.215052, 0.251855, 0.168267, 1.217532, -0.197365, 0.899619, 1.246372, 0.827659, 0.357098, -1.029141, -0.294885, -0.659836, 2.170795, 0.805875, 0.861501, 0.261309, -0.389645, 1.508403, 0.762291, 1.077466, 0.703692, 1.135156, 0.057295, -0.376282, 0.938975, -0.858866, 0.142821, -0.523899, -2.285423, -0.385617, 2.811867, 0.627690, -0.462247, 0.901901, 0.652575, -1.488570, -2.032548, -0.527948, -2.175511, 1.228637, -0.651459, -0.586265, 0.714938, -0.275992, -0.686925, 0.436959, 0.353218, -0.917387, 0.509369, -0.352333, 0.446812, 0.287032, -0.433148, 0.039009, -1.966737, 0.444408, -1.744633, 0.709875, 0.766815, 0.899542, -0.524911, -0.297837, -0.605165, 0.231073, 1.080600, 0.954147, 0.922436, 0.708972, -0.384127, -1.495357, 0.662669, -1.454976, -0.962301, -0.710635, -0.384602, 0.167715, 1.860776, 0.481277, -0.582406, -0.336220, -0.270634, 0.990622, -1.391581, -3.308254, 0.077200, -0.967182, 0.031076, 0.106201, 1.324206, -0.474467, 0.123622, -1.284238, -0.843066, 2.506301, -2.289709, 0.357971, -0.450290, 0.875618, -1.589743, -0.279220, -0.075697, -0.579546, 2.264063, 0.607433, 0.802204, -0.261092, 0.572771, -0.056676, 1.260767, -1.387489, -0.186559, 1.016351, -1.186001, -0.347246, 1.183536, 0.875133, -0.934673, -0.797560, 0.499391, -0.046449, 0.073275, -1.042153, -0.701949, 0.622057, 2.408287, -0.153173, 0.227560, 0.666372, 1.134668, -1.259363, -1.148901, 0.522791, 0.140595, -0.210053, -0.518753, -1.677094, -1.660687, -0.459667, 0.360807, 0.423693, -0.220381, -1.114191, 0.369428, 1.140286, -1.218788, 0.061807, 1.683959, -0.396777, 0.454495, 0.458192, -0.365413, -1.974917, 0.164067, -2.237991, 0.145513, 0.410231, 1.428426, 1.624179, 0.442423, 1.449412, 0.140301, 0.167444, 0.751907, -1.105274, -0.235989, 1.810214, -0.823111, -0.947231, -0.499959, -0.269678, -0.939640, -0.300699, -0.125594, -0.147036, -0.782391, 1.741470, 0.556263, 1.613137, 1.857892, -0.212925, 1.286526, 0.622445, 0.629121, 0.271868, 1.189664, -0.555635, 1.137723, -0.283038, -0.152573, -0.305756, -0.922141, 0.139124, -0.452746, 0.783817, -2.224815, -0.988587, 0.438941, -1.346850, -0.383588, -1.076174, 2.017057, 0.830436, -0.072499, 0.771816, 0.089721, 1.127169, -0.849913, -0.851651, -1.179918, 0.365567, -1.575183, -0.690552, -0.600083, -0.244377, 1.494794, 0.186040, -0.528508, -0.187898, 0.277297, -0.467606, -2.656732, 0.029013, 0.049409, -0.345733, -0.695619, -0.515020, 1.230146, 1.424461, 1.045369, -1.072933, -1.221967, 1.483192, 1.375120, 1.096154, -1.019855, -0.547238, 0.484669, -0.213334, 0.407507, -1.138925, 2.211552, 1.364770, -0.897791, -2.195113, -0.002323, 0.508676, -0.652900, 1.036706, -0.986855, -0.272933, 0.716294, 0.225263, 0.850050, -0.175702, 0.277604, -0.394775, 1.173868, 0.170788, -0.537138, -1.400774, -0.924265, -0.772661, -1.254959, -1.068254, 0.039644, 0.625782, -0.678057, -0.314933, -0.375694, -0.128456, 0.595554, 0.684521, 1.157750, 0.591429, 1.338761, -0.049339, 0.523924, 0.949159, -0.364290, 0.594550, -0.277029, -2.544848, 0.979828, -0.054113, 0.466571, -1.441097, 1.128570, -0.627319, -0.152311, -0.074559, 0.521714, -1.244803, -0.544302, 0.031556, -0.352984, 0.219783, -1.295021, -0.461377, -0.678573, 0.594697, -0.232036, 0.965991, 0.671720, 1.197810, -0.177209, 1.668815, 0.852600, 0.667697, -0.954891, -1.164466, 0.876681, -1.099380, 0.863135, -1.590830, 0.387270, -0.627818, -0.282209, 0.092205, 0.259731, -0.436475, 0.666336, 0.862636, -1.418429, 1.028954, 0.633128, -0.344502, -0.445413, -0.917772, 1.067161, 1.033806, -0.736623, -1.232848, -0.000046, 1.670158, 0.830659, -0.947006, -1.655568, 2.115228, -0.204682, -0.317320, -0.259247, -2.256614, 1.768609, -0.940352, 2.617489, -1.161082, 0.488415, 0.160001, -0.462501, -1.547884, 0.061177, 1.531977, 0.885637, -0.115703, 0.110924, -1.409144, 0.480873, 0.066116, 1.202956, 1.374884, 0.055035, -1.198477, -0.552291, -0.982413, -0.388546, 0.495215, 0.732222, -0.372056, -0.402332, 0.740621, 0.382441, -2.032376, -0.336690, -0.559466, 0.160377, -0.150932, -0.333271, 1.341663, 1.160145, 0.076670, 0.170253, -2.123780, -0.558750, 0.138413, 2.014167, -1.759145, 0.869138, 0.123394, 0.076442, -1.298242, 0.437281, 1.676512, 0.162649, 0.832893, -1.591976, -0.819439, 0.214216, -0.911420, 0.139072, 0.532018, -0.780894, -1.067391, 1.148767, -1.122494, -1.501490, 0.805299, 0.517967, 1.044873, 1.127760, 0.503342, 0.116609, 0.905633, -0.056781, 0.468285, 1.822238, 1.779784, -1.304204, -0.787120, -2.216815, 1.331130, -0.342338, -0.419741, 0.605828, -0.010802, -0.285163, -0.026632, 1.611123, -0.061228, -1.101793, -1.718956, 0.203809, -1.272315, 0.616155, 1.924212, -2.224122, 0.411870, 0.814128, 0.080769, -0.490324, 0.918461, -1.869735, -0.878138, -0.159494, -0.926811, -0.062024, 1.141993, 0.880375, 0.625960, -0.429581, -0.936075, 1.072202, 1.320746, 0.404902, 0.113128, 1.007151, 1.177857, -1.744764, -2.508235, 0.014618, -0.115547, 1.815358, -0.316185, 1.275342, 0.061115, -1.660781, 1.610791, 0.327311, 1.821667, -0.435296, 0.474132, 0.231506, -0.397195, -0.019476, 0.320195, -0.158928, 0.184390, 0.227816, 0.591366, 0.338935, 0.481443, 1.192742, 0.464517, -0.188714, 0.137157, -1.042174, 0.812147, 0.420455, -0.501368, 0.361881, -0.514902, 0.803301, -0.321871, 1.194072, 1.162477, -1.042911, -1.043543, 0.194267, -1.305863, -1.247235, 1.296510, 0.273247, 0.259932, 0.485477, -1.181866, 0.951560, -0.387023, 0.276561, -0.363700, 0.727754, 0.278888, 1.496657, 1.174182, -0.662167, 0.397465, -0.097367, 0.556628, 0.890196, -0.827231, 2.505127, -0.322196, 0.318376, 2.180679, 0.461050, 1.313473, -0.404756, 0.094558, -0.258227, -0.430046, 0.029090, 0.308702, 1.467458, -0.377381, 0.183779, -1.228246, 2.507902, 0.770001, -0.483459, -0.709113, 0.679286, 0.300974, 1.381046, -1.338413, 0.169533, -0.152893, -0.731757, 0.317206, -1.132385, -0.171978, -1.593291, -0.277441, -1.082818, 0.058690, -0.743156, 1.375419, -0.175848, 2.298379, -0.758842, -0.344876, -0.065156, 1.701633, -2.291595, 0.911433, 0.163927, 0.067509, 0.430522, -2.050629, -0.985868, 0.031607, -1.156353, -1.942840, -0.734165, 1.143682, -0.747089, 0.378977, 0.719969, -0.257888, -1.444776, -1.299187, 0.081402, -0.380061, 0.411510, 0.920972, -0.648182, -0.610466, 1.554721, 1.295226, -1.258189, -1.439284, -0.200945, 0.208935, -0.978033, 1.031139, -0.753402, -0.789891, -0.215346, -1.658424, 0.375993, 0.139050, -0.689565, 1.005204, -0.023334, -0.191030, 0.289306, 0.178403, 0.579095, -0.040404, 1.720090, 0.394306, -0.913215, 0.662100, 0.754405, 0.853628, 0.605991, -0.933922, -0.647689, -0.105286, 0.363477, -0.108114, 0.732689, 0.425879, -0.043327, 1.814529, 0.155269, 0.289706, 0.035651, -2.006486, 1.632694, 1.373249, 1.345818, 0.053766, -0.923442, -0.344884, -1.671897, 0.915645, -0.498141, -0.127691, 0.706245, -0.814765, 0.781381, 0.045203, 0.972048, -1.784395, 1.173390, -0.494823, 1.487358, 1.446239, 0.034313, 1.603450, 0.074342, -0.816015, 1.586687, 0.386678, 0.737776, -0.601382, 0.171102, 0.522108, 0.543032, 0.335067, -1.505013, 0.282409, -0.654412, -0.847894, 2.247601, 0.933468, 1.241868, -0.776326, -1.514374, 0.447895, -0.259333, -0.842128, 0.384512, 1.351975, 0.062370, 2.568610, -1.990075, -0.951339, -0.262280, 0.596171, 0.663489, -1.177934, 0.492811, -0.886424, -0.797710, -0.121154, 1.552999, 0.313108, -0.298076, -0.156315, 0.351074, 0.125582, -0.207448, -0.178823, 0.785584, -0.126075, -1.112788, 2.490072, -0.473838, -2.842844, 0.868082, -0.833170, 0.195383, -0.932486, -0.794868, -0.266260, 0.985101, -1.522821, -1.158494, -0.722767, 0.514334, 0.015415, -1.122106, -2.154212, -1.518069, -0.541851, 0.768034, -0.803622, 0.427963, -0.841106, -0.670725, -0.382748, -1.333887, -2.448131, 1.174273, 0.730021, -1.206206, 0.584151, -0.865172, -0.302115, -0.690067, -0.446726, 1.575567, 1.058657, 0.520960, 0.914414, -0.061830, 0.128361, -0.782718, 0.370507, 1.194851, 1.343405, -0.061607, 0.263703, -0.652339, 1.207498, -0.716345, 0.846537, -0.473825, 0.042430, 0.041640, 1.234389, 1.338405, 0.738119, 0.666933, -1.267039, -0.390895, 1.062140, -1.118198, -0.846442, 0.342947, 0.351610, -0.115796, 0.016200, -1.098224, 1.091577, -1.057773, 0.007015, -0.902867, 1.813186, -1.782957, -1.121155, 0.121229, 0.404375, 1.084698, -0.607494, 1.489850, -2.232066, 0.879626, 2.396561, -0.743366, 0.602817, 0.249033, -0.224385, -1.027244, 1.475202, -0.346287, -0.354360, 0.668195, 0.288366, -1.143454, -0.254986, 1.019211, -0.883886, 0.669895, 0.335771, -2.501511, -0.000678, 0.521951, 0.926404, 0.026464, -0.100591, -0.481409, 0.446169, -0.695211, 0.140362, -0.311028, -0.651785, -0.623096, -1.360713, -0.489672, 0.549583, 0.755439, -0.260836, -0.567216, 0.030241, -0.140121, 0.246393, 0.975419, 1.382190, -0.798915, 0.239506, -0.268295, -0.159122, -1.585953, 0.747272, -0.532467, -0.285113, -0.796293, 0.356058, 1.319108, 0.757863, 0.239226, 2.130827, -0.449856, 0.101542, 2.613616, 1.723821, -0.108323, -1.593893, -1.280913, 0.795403, 1.258569, 1.309434, 0.655668, 1.482746, 0.649095, 1.144722, -0.820602, -2.744595, 0.634148, -1.483733, -0.641179, 0.551660, -0.910362, 0.473238, 0.932652, 1.372759, -1.544250, -1.516462, -0.560264, -0.238196, 2.254369, -1.064274, -0.566798, 1.100560, 1.121158, -1.439244, 0.164573, 0.082947, -1.576217, 0.359215, 0.519583, 0.277496, -2.064572, -0.553201, -0.472310, -0.531897, -1.262510, -1.490321, -0.184336, 0.213583, -0.082576, 0.712710, 0.889190, -0.184382, -1.018899, -0.865866, 1.028713, 0.255126, -1.152397, -2.668563, 1.884888, 1.037127, -0.129276, -0.983769, 0.578943, -0.315907, -2.392622, -2.068044, -0.711312, -0.699440, 0.713103, 1.154616, -0.193342, -0.056196, -0.715936, -1.829736, -0.843283, 0.291382, -0.332320, 1.464449, -0.077736, -0.179879, -0.519876, -0.884140, 2.269854, -1.099012, -0.826958, 1.547832, -1.126261, -0.877795, 0.028225, 1.254288, -1.516589, -0.016362, -0.556604, -1.370548, -0.709287, -0.253742, 0.732590, -0.269497, 0.677645, -1.076326, 0.936983, -0.153014, 0.443587, -0.371669, -0.521957, -1.564137, 0.236757, -0.856678, 0.502733, -0.034335, -0.123695, 0.031425, 0.604081, 1.792542, -0.002419, -1.149064, 2.582753, 0.757973, 0.879873, 1.036599, 2.350180, -0.481103, 1.953600, 0.519668, 0.982878, 0.373251, -1.823076, 0.935773, -0.058210, -1.619501, -1.008537, -0.111197, -0.279499, 0.020806, 0.474039, 0.510868, 0.330736, 0.789774, -0.993991, -1.225134, -0.023239, 1.798303, 0.101420, -0.145706, -1.219598, 0.717533, -0.065697, 0.081663, -0.379192, -0.822726, -0.791134, 0.618944, 0.589658, -1.060974, -0.535595, -0.849699, -0.372148, 0.165658, -1.706431, 0.246088, -0.666787, -0.649115, 1.886058, -2.048868, 0.073428, -0.127120, -0.194877, -0.895977, -0.131984, -0.452674, 0.353178, -0.872516, 0.311068, -0.992896, -0.029525, -0.354854, 1.361940, -0.156905, 0.398816, -0.410035, 2.640672, 0.195255, 1.105745, 0.591894, 1.178438, -1.658445, -2.114143, 1.353203, 1.882879, 0.647577, -0.130688, 0.182636, -0.299645, -0.836746, 1.852175, 0.260973, 0.848115, -0.445454, -1.415326, -0.682726, -0.062508, -1.373027, 0.284194, 3.046700, -0.270779, -0.485439, 0.379177, -0.533127, -2.622355, -0.305153, -2.990642, -0.382298, -0.952272, -0.564787, 0.633838, -0.497530, -1.150794, 0.521476, 0.647438, 0.982146, 0.144940, -1.737650, -0.189878, 1.814182, 0.044093, 0.250311, -0.393888, -0.646298, 0.282796, -0.546004, 0.950596, -1.219468, 0.101956, -0.329027, -0.893116, 0.382298, -0.835156, 0.455222, -0.810042, -1.728659, 0.070281, 0.522243, 0.149543, 1.081405, -2.061179, -0.342778, -1.242144, -1.000491, -1.606063, 0.400750, 0.344441, 0.475442, 0.023703, -0.817914, 1.335303, -1.244611, 0.919742, -1.430083, 0.284198, 1.519820, 1.193296, 1.914698, 0.280096, -0.082116, -1.293697, 1.806942, 0.233742, -1.727113, 1.325746, -0.125245, -1.457025, 0.440654, -0.518948, -0.542313, 0.803286, -1.918487, -0.392634, 0.309334, -1.286398, 0.642813, -0.708413, -0.980393, 0.256864, 0.895897, -0.982714, 2.412287, 0.639417, 0.296300, -0.432270, -1.326373, -1.386119, -0.859217, 0.339147, -1.205001, 2.308950, -1.297361, -1.555357, 0.871930, 1.075600, -1.038596, 0.174123, -1.466021, -0.887464, 0.439317, -1.723472, -0.773080, 1.229570, 0.724867, -1.200188, -0.651788, 1.682758, 0.623271, 0.819648, 1.764677, 1.634892, -1.234713, -1.525173, 0.033753, -1.208368, 0.772260, 0.550460, -0.752932, 0.570802, -0.145400, -0.515983, 0.929833, -0.670029, -1.338948, 0.810665, -1.075947, 3.239363, 1.214045, -0.173753, 1.086475, -2.183919, -0.727514, 0.878490, -0.231816, 0.098383, 1.069742, -0.139798, 1.383972, -1.431137, -0.155524, 0.107187, 0.818522, -0.419686, 0.090750, -0.165686, -0.032497, -0.772933, 0.675015, -0.051851, 0.604939, 0.383417, 0.006427, 0.747382, -0.786682, 0.337299, -0.811814, -0.214729, 0.046527, 1.570973, 0.590468, 1.954929, 1.115029, 0.126530, 0.151831, 1.720756, 0.185496, 0.164751, -0.716055, 1.646703, 0.470563, 0.826827, -0.707098, -0.869494, -1.056069, 1.706341, -0.947747, 0.311783, 0.850451, 1.021112, 1.052958, -0.824862, 0.359316, 0.645330, 0.836770, 0.408352, 0.783425, 0.448322, 0.118488, -0.123785, 0.543083, 1.254135, -2.438142, -0.046303, 0.687505, -0.725906, -1.399050, 0.666024, 0.020835, -1.425929, -0.504805, 0.004117, 0.251806, 1.806840, -1.289493, 0.948377, -0.173118, -0.450858, 0.899437, 0.829159, 0.648834, -0.695746, -0.500749, 0.106845, 0.643378, 1.969162, -0.384268, -1.237373, 0.657158, 1.141960, 0.576006, -0.154924, -0.522245, 0.235861, -1.251629, 1.227190, 0.124610, -0.106148, 0.882952, -1.566059, 0.394798, 0.631748, 1.561614, -0.857375, -0.298411, -0.114183, 3.107838, 0.634903, 1.697383, -1.368094, 1.414419, 1.685980, 0.469506, -2.339400, -0.470354, -0.539957, 0.752268, 1.948096, -1.299947, 2.209646, -0.972365, 3.123261, -0.499789, 0.411832, -2.754864, 0.050477, 0.469501, -2.038935, -0.878044, 0.855652, 0.199876, -0.703543, 0.374343, 1.167835, 1.153715, 0.544666, -0.532937, -0.307288, -0.517039, 0.244624, -0.107869, 0.543769, 1.484097, 0.553920, -0.599081, -0.033657, -0.389028, -0.929977, 0.167219, 1.342763, -0.579549, -0.480978, 0.014840, -1.950127, 1.157626, -0.364853, 0.077331, 0.296183, -0.877377, -0.394357, -0.290307, -1.573712, 0.192010, 1.525145, -1.233198, -0.878320, -1.396172, -0.843371, -0.083626, 1.278501, -1.203108, 2.158181, -0.338898, -0.520221, -0.763082, 0.554311, -0.414722, -0.489690, 0.903157, 0.946642, -1.763235, -0.709302, 0.733793, 2.099186, -0.430129, -1.053120, -0.707658, 0.187597, 0.870224, 0.329374, 1.564309, -0.113607, -0.449934, 1.140110, 1.148917, 0.261029, 0.854663, 1.254778, 0.149178, 1.697518, 0.218603, 1.414580, 0.662400, 1.188810, 0.866572, 0.966318, -1.228429, -0.558151, -0.775880, -0.321728, 1.015275, -1.177651, 0.624961, 1.592404, 0.658400, -0.961794, 0.788909, -0.298850, 0.474365, -0.305631, -1.274752, -0.247920, -0.565445, -1.110976, -0.094393, 0.128003, 1.523329, -0.592129, -0.273271, 0.338141, 0.164882, 0.140703, 0.856759, 0.557581, 0.725007, 0.887878, -1.575801, 1.082501, 0.802525, -0.846624, -2.450380, -0.027417, 1.160120, -0.876875, 0.665872, 0.056115, 0.678734, 0.522773, 2.375005, -0.570240, 0.351812, -1.215094, 1.496298, 0.466337, 0.004833, 1.362081, -0.665827, -0.345820, 0.240475, 0.971472, 0.138472, 0.699409, -0.897390, 0.145269, 0.442312, -0.800023, 0.691540, 0.519334, 0.839232, 0.124278, 2.193990, 0.970328, -0.130000, 1.355692, -0.177570, 0.394085, 0.140887, 0.317281, 1.499767, 1.116584, 1.466801, 0.156931, 0.172191, -0.366363, -0.816484, -0.484801, -0.394532, 1.492783, 1.097460, -1.346779, 1.065015, -0.409580, 0.587696, 0.302069, 1.053640, 1.240212, 1.116937, 0.823102, 0.532479, 1.161337, 0.534540, 1.329467, -1.635893, 1.344311, 1.031487, -0.465008, 0.011091, 1.317150, -0.706851, -0.482200, -0.555220, 0.970122, -0.915416, 0.337366, -1.188465, 0.823592, -0.280394, 1.129206, 1.262385, 0.206818, -0.958472, -0.403096, -1.960969, -0.156436, -1.817728, 0.058621, -0.937661, -2.574958, 1.196240, -2.174734, 0.660575, -0.098401, -1.124977, -0.405538, 0.262015, -1.301079, 0.054430, 0.463855, -0.392882, 0.718025, 0.927174, -0.943939, -1.886439, 0.287906, 0.142918, 0.624646, 1.909642, -0.890252, -1.237076, -0.431491, -0.385939, -0.159040, -2.060808, -0.563694, 1.703303, 0.171865, 0.610756, -1.339435, -1.033214, 1.193579, -0.112958, -0.840296, -0.875586, 1.571828, -1.117643, -0.326746, -0.642918, 1.172195, 1.261208, 0.506327, -0.973180, -0.623980, 1.680725, 0.664086, -0.557622, -1.325644, 1.221144, -0.243666, 0.273273, -1.167349, -0.277732, 0.215382, 0.296523, 1.369266, -1.529631, 1.278960, -1.446984, 0.898180, 1.610570, 0.420249, 1.580500, 0.741431, 0.415944, -0.271828, -1.327712, -0.858541, 1.980369, 0.433231, -1.345234, -0.136021, -0.712164, 0.719573, 0.002668, 0.126652, -0.225729, 1.442768, -0.005062, 0.278475, 0.548349, 0.333459, 0.569977, -0.229757, 0.542157, -0.003927, -0.229945, 0.465486, -0.338063, -0.256578, 0.621886, -1.155744, -0.989504, -0.059479, -0.681969, -0.278101, 0.844314, -1.111082, -1.351723, -0.448149, 0.024706, 0.570856, -0.816887, 1.129449, -0.586894, 1.377468, -1.419398, 0.824789, -0.553485, 0.429284, 0.072544, -0.091782, 2.559306, 1.280580, -0.053309, 1.017680, 0.011755, -0.557787, -1.749623, 0.506322, -1.244153, -0.635163, -0.052143, -0.007948, -1.450335, 0.031427, -0.445962, 0.751267, -0.226573, -1.339501, -0.697049, -0.301933, 0.741104, 1.593529, -1.635407, 1.043478, 0.560015, 0.461283, 0.577739, 0.767304, 0.563988, 0.167180, -0.716158, -0.911206, 0.059151, 1.285289, -0.023074, 0.461194, -2.312461, 0.746139, -1.397856, 1.760796, -0.265294, 0.453073, 1.694083, -0.042914, 0.141447, -1.393602, 0.203397, 1.395482, -0.538113, -0.289765, 1.915001, 1.538113, -1.045848, 0.787230, 1.567099, 0.553045, 0.923660, -0.443930, 0.190700, -0.724304, 1.197513, -1.023009, -0.517609, 1.231048, 0.311936, 0.163326, 1.128081, 1.660442, 0.910080, -0.204356, -2.158100, -0.347869, -0.281085, 0.050793, 0.504579, -1.155712, -0.036819, 0.916988, 0.121339, 0.177754, -1.907408, -0.894663, -0.528765, -2.300378, -0.314587, 0.214344, 0.199457, -0.956849, 0.338651, 0.372935, -0.230400, 0.947612, -1.382138, 0.235219, 0.578544, 2.782571, -0.931137, 0.262602, -1.670414, -0.930342, -1.986811, 0.536506, 1.707789, 1.316520, -0.279316, -1.736040, -0.094301, -0.278340, -1.575139, 2.010543, 0.125107, -0.190962, 0.947005, -0.044107, 0.902201, 0.020473, 1.511117, -0.527767, -2.871304, 0.276488, -1.317324, 0.492933, -1.073972, 1.797996, -0.489012, 0.056658, 0.511585, 1.054746, 0.137984, 1.035550, 0.467196, 0.749252, -0.161535, 0.729445, -0.623730, -0.127494, -0.320258, 0.162846, -0.790931, 0.639133, -0.409762, 0.426748, 0.311413, -1.838424, 1.447363, 1.086839, 0.781768, -1.108313, -1.115052, 0.835288, 1.382072, -0.015458, -0.245803, 0.968015, -1.123724, 0.494564, -0.038508, -0.387131, 1.106225, 0.009442, 1.200671, 0.528790, -0.144378, -0.606111, 0.371866, -0.468716, 1.733440, 0.869307, -1.476297, -2.006900, 0.705579, 0.841590, -2.070354, -0.555132, 0.746545, 0.100803, 0.814912, 1.536637, -0.787772, -0.042370, -0.310165, 1.355631, -0.719627, 0.342789, 0.973230, -0.611076, 0.906250, 0.261213, -0.369027, -0.301825, 1.835713, 2.119118, -0.865479, 0.560915, -0.812310, 1.026368, 2.041843, -0.175875, 0.574802, 0.954238, 1.171314, 0.235029, 0.002576, 0.949293, -0.143947, 0.648565, 0.677570, 0.466369, -0.045866, -0.067830, -0.182763, 0.241196, -0.589831, 0.641594, 0.469336, -0.704943, 0.765208, 1.405321, -2.586930, 0.504387, 0.923522, -0.413934, -1.287781, -1.170544, -1.276405, 2.573697, 0.866409, -0.392593, -0.611072, 0.064542, 0.500189, -1.838727, -0.045371, 0.303432, -0.228493, 0.024984, 0.247104, -0.176999, 1.729159, -0.183860, -0.322647, -1.273515, -0.431710, -0.407515, -0.529484, -0.539063, -1.531165, 0.396057, 1.322986, -0.226699, 0.099704, 0.082171, 0.573679, 1.620993, -1.754027, -0.031096, 0.159269, 1.283569, 0.132250, 2.616592, -0.027288, 0.878672, -0.852922, -0.017852, -0.068829, 0.337308, -1.504776, -0.626574, 0.482235, 0.037153, 0.766060, 0.138370, -0.782014, -0.051792, 0.035599, -0.451657, -1.357122, 0.204080, -0.537314, -0.851261, 0.625139, 1.466073, 0.450127, -0.179821, 0.829165, -0.225354, 0.510498, -1.195154, 1.283967, 0.556581, -0.196188, 0.239925, -0.251414, 0.218577, 1.006958, 1.481866, 0.618208, -1.579377, 0.209141, 2.507805, 0.643082, -0.349892, 0.210590, -0.055031, -2.033960, -0.196276, 0.563640, 1.146144, 0.533118, -1.008577, 1.259767, -0.679221, -1.768842, -0.691799, -0.050704, -0.064375, 1.203347, -1.261703, -0.029635, -1.267219, 1.261616, 1.540422, 2.697761, 0.936547, -1.383151, 1.185941, -0.784177, 0.480951, -0.088694, -1.873029, -1.000411, 0.288119, 0.026073, 1.486634, -0.368049, -0.008690, 1.211875, -0.181960, 0.052896, 0.157682, 0.413803, -0.047971, -1.276602, -0.137402, -0.932968, 1.203422, 1.985214, 0.173327, 0.826649, 1.216570, 1.537049, -0.095690, 0.894564, -0.577314, -1.067967, -1.616430, -0.892332, -0.100268, -0.162172, 0.037294, 2.931959, -0.390638, 2.476921, -0.850866, -1.880034, 0.940545, 1.168214, -0.372699, -0.997372, -1.344309, 0.366253, -0.414391, 0.806214, 1.105949, -1.735690, -0.749426, 0.442343, 0.356426, 1.309756, 0.239795, -1.498293, -1.174952, 2.026730, 1.274727, -0.631073, 0.218077, 0.842128, 0.715973, 0.513658, -1.332315, 1.421439, 0.075649, -0.485636, -1.100232, -0.425527, 1.913609, -0.424338, -0.125630, 0.826761, 0.868808, -0.515694, 0.420084, 0.837584, -0.256476, 0.462730, 2.109076, -1.325152, -2.614274, 0.381084, -1.864672, 1.062618, 0.796504, -0.548352, 0.412650, 1.802110, -0.455621, 0.653162, 0.205297, 1.088083, 1.418042, 1.840997, -1.000186, -0.129693, 0.710866, 0.349496, 1.624947, 0.663476, -0.930858, -0.764883, 0.844605, 0.344576, 1.894931, -1.110100, 0.055522, 1.457486, 0.175511, -0.673116, -0.825865, -0.312506, 0.085200, -1.005920, -1.338646, -0.968501, 1.783331, -0.033418, 1.337914, 1.354819, -1.150176, 0.542002, -0.819032, -0.929293, -0.886023, 0.540529, 0.529881, 0.461316, 2.198988, 1.039596, -0.381874, 0.994611, -0.097990, -0.618171, 1.036063, -0.128804, -0.059572, -1.422507, -1.616396, -0.567453, -1.684671, -1.154930, -2.122177, 0.020472, 0.188448, -0.281856, -0.614978, -0.861772, 1.371670, 0.963873, 1.440382, 0.819237, -1.466511, 0.046215, 1.027821, -1.062101, 0.870284, -1.170438, 1.002682, 0.128588, -0.362307, 1.194106, 1.529350, 1.079643, -0.867110, 0.173117, 1.753436, -0.384962, -0.210062, -1.211264, 0.914321, 0.831748, -0.289767, -0.393380, -1.045292, -0.218983, 0.162850, 0.576392, -0.747760, -2.132529, -0.374764, 1.075252, 1.368446, 0.614433, 0.784159, 0.998922, 1.402115, 0.413642, 0.853606, 0.307536, 1.018278, 1.186868, 0.308069, -2.051404, -0.209297, -0.007471, 0.113945, -1.181682, 0.397277, 1.547440, 0.454210, -1.422295, -0.274718, -0.886599, -2.117491, 0.094100, -1.408151, -0.910527, 0.202663, -2.111931, -0.667701, 0.016120, 0.423472, -0.129547, -0.685574, 0.277973, 0.664660, 0.154029, -0.002274, -0.112638, -0.220912, 0.710863, -1.155411, -0.602838, 0.525730, -0.493204, 0.066081, 0.762007, 1.808286, -1.491509, -1.653607, 1.320863, -1.017336, -1.597963, 0.503794, -0.552158, -0.380628, -0.232112, 1.900824, 0.449515, 0.805114, 0.281926, -1.072548, 0.304914, 0.241748, -0.147825, 0.739446, -0.575660, 0.078954, 0.503776, 0.402500, -0.871709, 1.995089, 0.141639, -0.321793, 2.458877, 0.791777, 0.213938, -0.801643, -1.176360, -1.628903, 0.227337, -0.202964, 2.377225, -0.414948, -0.212604, -0.029952, 1.667230, -0.648748, 0.793706, 0.315122, -0.127790, 0.157811, -0.023022, 1.127182, 0.690497, -0.080774, 1.389231, 1.388951, 0.315906, -0.941514, -0.668299, 0.626686, 0.366315, 0.761998, -1.691397, -0.567768, 0.782920, 0.087398, -0.989534, -0.089442, -1.112205, -1.655602, 0.845405, -0.979932, -0.621913, 0.341469, -0.841533, 0.763129, 1.964652, 0.641574, 0.125370, -0.248421, -0.119691, 0.094154, 0.187117, -0.325465, 1.033841, 1.367824, 0.035982, -1.074745, -0.205548, 1.107619, -0.639589, -0.566624, -0.071150, 1.873251, -0.414732, -0.043120, -1.491350, 0.132143, -0.795502, 1.011363, -2.610685, -1.372581, -0.216076, 1.264477, -0.814401, 1.357369, 0.830488, -1.478731, -0.739502, -0.501687, -0.126677, 1.461818, 0.332628, 1.763559, -2.403701, 1.248663, -0.115690, 0.544353, 0.911584, 0.172331, -1.461996, -1.146678, -0.504065, 0.353899, -0.222511, -0.319474, -0.712997, -0.933359, -0.259083, 0.220278, 0.984686, 0.806947, -0.352082, 0.478239, 0.540776, -0.302879, 0.218109, -0.402735, 0.043845, -0.257444, 1.330354, 0.685986, -0.628673, -0.786473, 0.451059, 0.223090, 2.746953, -3.192045, 1.050389, 1.312766, 0.185920, 0.204864, -0.980669, 0.945794, 0.469161, -0.845435, 0.295456, 0.364052, -0.432265, 1.109849, -0.645794, 0.211575, 0.035461, -0.271523, -0.934340, 1.081102, 0.399726, -1.789979, 1.380088, -0.775216, 0.308756, 0.296923, 0.621531, -0.398855, -1.944472, 0.135696, 3.078555, 1.633316, 2.472620, -0.027389, -1.379917, -1.213266, -0.552189, -1.117704, -0.627201, -0.474243, 0.233880, 0.858701, 0.597096, 0.995571, -0.149394, 0.131599, 3.023540, 0.990320, -0.387559, 0.194157, -0.661549, 0.992530, -1.085806, 1.088710, -0.492843, -0.220814, -0.586818, 1.303468, -1.165376, -0.915063, 1.198294, -1.412731, -0.014002, 0.427326, 0.613732, 1.466150, 1.146561, 0.081403, -0.760330, -1.727830, 0.764730, -0.843078, 0.992430, -0.045395, 0.474261, 1.422835, -0.962950, -0.041529, -0.922869, 0.187789, -0.711709, 0.324116, 0.454405, 0.385090, -0.869315, -2.257521, -1.488564, -1.072348, 1.090927, 0.381059, -0.805549, -0.611456, -0.237535, -1.480893, -1.207193, -1.068438, -0.626834, 1.455436, 1.616093, 1.336291, -0.844376, 1.005406, 1.957869, -0.104202, -0.074938, 0.298070, -0.459832, 1.485114, -0.101477, 0.634632, 1.515647, -0.275526, 0.030645, 1.433441, 0.666253, -1.690786, -1.178418, 2.547283, -0.257785, 0.439092, -1.469637, 0.077075, 0.431684, 0.189967, -0.494375, -0.861028, -0.332260, -0.410466, 0.989876, -1.999406, -1.827448, 1.385238, -0.346283, 2.047734, -0.404249, -0.219221, -0.085152, -0.624391, -0.257860, -2.415328, -0.952369, 0.894287, -0.984438, 1.569269, -1.042673, 0.221111, -1.406157, 0.543850, -0.633184, 0.059251, -1.574110, 1.425475, 0.077419, 0.403313, -0.536827, -1.515825, 0.789457, 1.179071, 0.953108, 0.821623, -0.973314, 0.401178, 0.229556, 0.262362, 1.087518, 0.873532, 0.379720, 0.381720, -0.085807, 0.896269, 0.461447, 2.463325, -2.518463, 0.851560, -1.329320, 0.092004, 1.578780, -0.572657, 0.767601, -1.079418, 1.168974, -0.627887, -0.011383, -0.118989, 0.531131, 1.143228, 1.902901, -0.200627, -0.486797, 1.641399, 0.608356, -0.216496, 0.725261, -0.162895, 0.330982, 0.820958, -0.921749, -0.733622, 0.310342, 0.553115, 1.359880, 0.082874, -0.149544, -0.742177, -1.103584, 0.393630, -0.398683, 0.626538, 0.424161, 1.507152, -0.502384, 1.191880, -0.234665, -1.903783, -0.023994, 0.784056, -0.657606, 0.406854, 2.338391, -1.410067, -0.127203, 0.532538, -1.027586, -0.244461, 0.232750, -1.394837, -0.424207, -0.734668, -1.031211, 0.169774, -0.503059, -2.034449, 0.502734, -1.014961, -0.293693, 1.015388, 0.374324, 0.943302, -1.221246, 0.824060, -0.720302, 1.723397, 0.505406, 0.704047, -1.924815, 0.199160, -1.213922, -2.698929, 1.703014, 0.470391, 0.648153, 0.360156, 1.165374, -1.145570, -0.052626, 1.174861, -0.747914, -1.843718, 1.308031, 2.207995, -0.748276, -0.513953, -1.100582, 0.595030, -1.228178, -0.579758, -0.033902, 0.625216, -0.004651, 2.388036, -0.914000, 0.016502, 1.338437, -1.013636, 0.240145, 0.016415, 1.743971}, - { -1.050104, 0.851740, 1.760948, -0.260951, 0.773147, -0.085042, 0.984130, -0.694930, -0.848098, -0.303356, 0.486844, -0.036915, 0.756838, 0.270384, -0.096876, -1.705442, -0.875968, 0.148035, 1.944572, 0.137014, 1.051771, 0.101055, -0.591238, 0.228010, -0.222546, -0.522328, -0.279744, -1.260191, 0.411245, -2.832319, -2.845732, -0.403106, 1.321160, -1.301782, 0.283506, -0.170718, -0.337379, 1.025586, 0.947707, -0.013840, -1.617493, -1.872769, -0.494146, -0.277383, 0.426942, 0.222001, -0.989461, 0.235463, -0.326515, -0.326163, 0.925300, -0.695288, -0.055403, 1.661719, 2.754292, 2.063362, -0.452832, 0.441295, -0.094271, -1.358375, -1.358480, 0.286429, -0.310945, -0.391619, -0.611637, 1.299027, 1.484519, -1.884884, 0.822183, -0.131740, 1.548682, 1.914729, 0.121496, 1.034936, -0.829079, 0.135968, -1.233624, 0.468950, -0.739665, 1.052215, 0.231715, 0.835897, 0.146238, -0.596226, -0.952935, 0.705589, 0.462045, -0.749679, 0.734601, 0.164376, -0.632611, -0.839422, -0.625897, -1.060581, 0.942459, -0.782899, -0.507493, -0.553138, -3.155368, 0.325823, 1.181858, 1.834368, 1.259962, -1.352813, -0.804411, -1.289760, -0.856301, -0.447351, -1.797498, -0.244937, 1.902796, 0.586957, 0.558029, 0.044265, 0.219389, -0.799320, 1.020997, -0.389787, -2.005269, -1.162310, 1.277081, -0.024593, -0.536412, -0.627559, 0.701306, 0.564163, -1.055129, 0.891800, 1.832375, -0.482354, 1.175039, -0.345960, -0.085098, 1.101402, 0.342817, -0.387280, 2.258290, -0.428307, -0.437184, 1.238583, 0.208886, -0.501958, 1.711706, -0.514997, -1.170438, 0.790473, -0.138227, 0.454635, -0.911892, -1.027287, 1.166656, -0.945643, 0.753910, 0.671653, 0.963674, -1.020669, 0.240791, 1.571823, 0.320863, 0.288264, -3.088539, 0.217848, 1.370296, 1.675737, 0.951504, 1.233946, -2.394449, -1.489108, -0.831133, 1.126583, 1.759461, 0.604534, -1.883522, 0.729702, 1.428674, 1.247608, 2.020521, 1.785367, 2.022477, 0.282335, -0.225219, -0.899817, 1.134865, -0.012182, -0.356991, -2.958370, 0.528379, -0.091994, 1.612938, 0.177113, -0.174741, -0.820671, -0.050537, -0.334556, -0.558426, -1.262703, 0.813752, 0.532830, 0.102357, -0.585148, -0.554758, 0.855231, -0.708542, 0.354830, 2.242085, -0.837441, -0.308129, 0.672828, -0.067562, 0.608800, 1.137189, -0.208148, -0.238313, 0.524548, 0.919691, -0.553098, -0.423979, 0.452772, -0.399442, -0.718471, -0.751696, 0.642043, -1.399958, 0.835269, -0.832004, 0.873779, 1.670800, -0.305059, -1.683703, 1.194154, 0.971555, -1.267333, 0.384064, -0.408261, -1.253819, -0.855192, 2.680749, 0.031036, 1.109628, 0.315149, 0.785434, 1.392679, 0.451148, -0.705222, -0.594100, -1.729232, -0.870825, 0.242882, 0.737568, 0.405518, 0.958272, 0.857112, 0.763798, 0.029028, 0.234864, 0.763468, 0.039577, 0.668616, 0.563011, 0.862598, 0.355550, 0.822836, -1.030874, -0.614458, -0.175062, -1.544618, -0.085549, 0.437895, 1.150567, 0.935721, -1.012053, 1.238802, -1.052835, 0.509425, -0.662986, -1.055440, 1.885569, -0.595978, 0.700366, 0.035828, 0.608206, -0.180353, -0.157545, 0.820219, 0.527421, 1.513075, -0.119157, 0.136759, -1.303168, 0.208308, -0.399784, -1.406116, -0.205548, -1.623276, 1.193833, 0.359449, -0.913725, 0.608309, 0.418733, -0.746842, -2.197005, -0.555930, -0.610731, -0.127108, 1.005005, 1.805324, -1.007350, -1.075301, -1.207348, -0.706700, 0.987397, 1.020994, -0.750428, 0.584071, 1.748245, -1.332641, -0.238638, -0.269564, 0.355541, 1.727980, 0.442839, -0.099061, 0.366921, -2.100170, -0.179568, 0.160748, -0.802068, -0.026250, -0.546199, -0.093223, 1.209833, 1.119917, 0.145115, 0.363496, -1.858578, 0.524531, 0.125150, 0.113246, 0.132912, 0.077245, 0.818551, 0.308586, -0.293372, 0.667801, 0.673581, -1.345068, 1.026106, -0.015549, -1.997613, -0.316884, 0.788533, -0.654679, 0.758228, -0.403889, 0.185800, 0.046381, 0.316637, 0.340012, -0.162078, 1.098674, 0.039271, -0.957268, 0.332483, 0.273801, -1.566557, -0.176081, 0.175404, -0.864928, 1.414942, 0.310111, 0.685319, 0.116172, 0.430560, 2.224497, 1.927643, 1.832579, -1.691567, 0.955506, -0.463715, -0.088780, 0.908587, -0.178115, -0.021907, 0.847479, -0.959113, 1.409545, 0.024926, -0.902441, -0.100101, -1.183805, 0.693638, -1.956918, 0.308475, -0.492400, 1.656146, -0.538849, -0.449507, 0.116587, -2.057016, -1.341323, 1.935542, 0.229906, 0.633852, 1.607449, -0.113654, -1.453684, -0.177316, -0.388556, 0.337893, -0.399097, 1.178495, 0.433103, 0.068697, -0.934139, 0.551306, -0.509546, 0.986441, -1.254727, -0.152533, 0.922647, 1.704715, -0.516479, 0.984688, -0.222721, 0.621025, -0.290732, -0.133148, 0.748114, -1.188029, 1.492964, 1.800189, -0.321394, 0.017701, 0.271388, 1.519788, 0.325735, 0.369316, -1.117259, 0.558981, 0.026964, 0.821030, -0.540670, -1.410102, 0.393539, 0.907437, 0.285348, -1.244247, 0.457723, 0.449056, 1.896329, 1.051571, 1.353777, 1.092753, -0.289386, -1.517437, -0.447366, 0.610817, -0.415439, 0.282971, 0.415185, 0.209349, -0.119361, 0.598789, -0.246369, -2.540778, -2.157437, 1.039342, 0.176405, 0.202913, 0.401381, -0.096723, -1.802381, 1.067456, 0.060001, -0.155005, 0.100308, 1.399262, -1.737475, -2.401234, -0.244674, -1.802676, 0.415239, 0.284430, -0.262086, 1.569243, 1.363004, 1.014927, 0.126073, -1.263765, 0.927902, 0.202006, 1.323096, 0.540385, 0.012786, -0.068971, -0.291507, -0.238783, -0.232579, 1.374966, 0.534851, 0.030856, 1.688450, 0.069913, 0.739804, 2.261253, -1.111018, 0.091270, -0.173607, 0.424485, 0.924848, 0.693890, 0.849674, 0.334656, 0.919878, 1.374691, 1.137824, -1.188757, 0.456192, 1.517513, -0.699862, -0.471799, -0.307264, -1.127343, 1.504756, -1.595168, 0.745482, 0.719533, -0.279094, 0.186277, 1.080644, 2.017308, -0.026321, -0.064334, 0.715085, 1.963507, -1.674630, -0.467564, 0.354547, -0.003942, -1.293154, -0.696808, 0.282367, 0.022179, 0.867287, 0.348183, 0.047591, 1.155602, -0.183960, -1.733841, -0.011869, 1.697129, 1.585940, 0.533170, -0.053558, 0.712089, 1.049178, -0.764531, 0.933778, -0.619964, -0.673276, 0.755021, -0.550821, 1.002476, 0.655378, -0.521221, -1.231635, 0.810712, 0.498618, 1.592913, -1.874308, 0.767303, 0.423292, -0.110988, -0.038420, -0.768042, -0.003506, -1.356288, 0.171800, -0.235799, 0.671319, -0.575070, -0.771590, 3.047997, -1.891565, -1.081929, -1.215924, 2.047206, 0.717007, -0.801868, 0.411989, 0.118208, -1.344364, 0.239152, -0.631539, 1.334027, -0.706374, 1.589629, 0.997319, -0.556157, -0.417240, 1.038071, 0.062831, -1.203538, 0.784616, 0.155421, -0.097677, -0.729028, -0.912433, -0.516493, 0.905656, -0.297156, -0.672749, 0.364179, -0.688422, 2.347499, 0.238138, -0.260670, -2.338491, 1.791093, -2.554378, -0.060427, -1.297048, 1.181877, -0.946683, -0.945687, 0.993629, -1.734293, -1.096941, -0.358513, 1.112343, -0.521198, -0.437314, 0.025110, -0.113967, -0.992061, -0.713330, 0.681993, -0.225123, 2.293878, 1.403153, 0.739554, 0.310456, -1.291777, -0.328176, -0.683770, 0.238519, 0.254914, 0.153806, -0.987748, 0.513807, 0.424743, 0.945607, -0.220656, -0.490016, 0.738459, 2.185630, -0.059705, 2.373328, -0.602771, -0.845253, -0.462983, 0.403368, -0.064104, -1.280047, -0.293702, 0.335559, -1.489431, 0.180948, 1.100480, -0.782283, -0.460562, 1.113970, -0.097187, -1.283036, 1.244986, -0.236520, 0.367219, 1.059567, 0.461540, -1.434444, 0.608749, -0.017703, -0.264461, 2.668455, -0.805338, -1.732785, 1.052351, -0.205993, -0.384507, 0.917261, 1.330197, 1.114638, 0.363902, 2.749459, -0.606039, -1.512052, 1.364934, 0.401135, 0.283434, -0.178777, -0.940149, 0.401252, 0.191250, -1.052515, -0.673125, 1.348890, 0.418493, -0.690067, 0.002045, -0.974710, 0.894730, 0.229738, 1.047669, 1.274858, -0.337723, -0.370015, 0.306857, 0.625710, -0.400371, -0.358819, -0.755431, -0.898174, 1.017288, 2.520072, 1.242687, 0.361563, -0.596693, -1.447858, -0.629902, 0.396876, 0.959751, -0.064345, 0.206358, 1.876887, 1.201578, 0.999628, -0.057378, -1.434791, -2.983628, -0.654079, -1.426744, 0.564790, -0.033222, -0.246810, 2.335053, -0.062262, 1.784829, 0.602693, -1.550762, -0.032094, -1.045864, -1.888092, 1.812221, -1.009752, -0.058859, 0.113872, -0.188944, 0.845872, 0.727605, -0.369217, -0.467735, -0.903551, 0.230362, -0.968503, -0.119049, 2.130219, 1.992388, -0.064370, -1.146456, -0.771580, -0.600606, 0.094632, -1.308043, 0.386780, 0.218758, -0.354974, -0.600921, 0.197313, 0.802285, 1.828176, -0.215307, 0.369628, 0.635802, 0.717933, 0.181594, 0.209398, 0.314150, -0.212557, 1.022041, 0.525169, 0.546904, 0.692528, -0.908854, 0.014867, -1.394348, 0.141442, -0.030332, 2.840991, -0.778409, 0.016614, -0.138869, -1.199519, 0.222956, 0.800841, -0.865870, -0.389325, -0.106275, 0.489065, 0.250935, -1.539800, 1.393391, -1.455775, -0.976652, 0.895871, -0.326881, 1.014845, -0.472287, 0.764726, -0.564137, -0.188655, -0.135541, -0.837198, -2.076240, 0.241777, -0.068509, 0.901481, 0.197587, 0.622280, 1.084918, 0.470674, -0.262295, 0.068701, 0.172609, -0.682893, -0.621625, 0.063194, -1.208267, -0.704549, -0.861561, -1.730424, 1.212334, -1.769090, -0.962524, -0.723652, -1.349620, -0.187003, 0.410022, 0.661138, -0.707714, 1.260247, -0.414381, 0.758798, 0.683419, -0.261396, 0.061901, 0.149950, 0.266812, -0.726238, -0.486876, 0.062698, 0.553897, 0.479294, -1.448374, 0.507636, -2.346486, 1.063414, -0.822606, -0.340498, 0.236981, -0.075136, -0.677558, 1.116128, 0.449878, -0.399137, -1.245261, -0.580172, -0.677592, -1.399622, 0.945854, -0.337612, 0.562182, 1.480059, 1.390533, -0.972220, 1.013287, -0.725117, -0.990412, 1.211104, 0.519324, -1.656554, -2.638333, 0.651821, 0.624165, 1.270033, 1.258196, 0.494269, 0.238732, 0.531198, -0.072483, 0.557525, -0.322904, -0.074844, -0.907902, -0.221786, 0.457757, -0.598915, -0.322739, 0.346953, 0.868127, 0.360280, -1.678912, 1.452304, -0.019834, -0.458903, -0.216007, 1.091661, -0.807372, -0.424735, 1.225945, 0.385545, 0.412738, -0.239363, -0.507021, -0.435201, -0.048752, -1.630993, 0.818481, 0.760323, -1.176984, 0.197156, -1.038101, -1.067224, -0.401381, 0.214429, -0.766218, -0.645589, -0.651632, -0.519759, 0.022447, 0.386456, 1.680880, 1.296471, 1.238824, -0.425002, 0.798854, 0.584602, -2.378628, 0.511520, -0.582259, -0.446778, -0.332894, 0.970097, 0.296599, 0.043734, -1.178687, -0.943815, 0.051011, -1.188565, -0.437895, -0.551500, -0.216011, -1.440180, 1.300131, -1.522742, -0.535919, 0.245617, -0.456483, -2.186481, -0.749511, -0.902191, 1.478058, -0.919501, -0.274592, -0.227791, -0.141516, 0.058764, 2.225221, -0.870458, -0.967629, -1.771994, 0.326383, 0.241432, 0.171822, 1.426217, -1.480473, 0.341936, 1.966583, -0.791514, -0.081857, -0.202100, 0.369928, 1.058743, -0.611827, 0.921819, -0.604249, 0.995822, -1.046986, -0.484409, -2.316767, 0.399777, 0.957714, 0.314163, -0.965273, 0.961739, -0.733071, 1.106458, 1.793095, 0.039524, 0.979612, 0.306513, -0.522191, -0.504139, -1.036884, -0.280283, -0.254177, 1.065350, 1.816050, -2.005032, 0.161313, -0.285361, -0.977616, -0.109072, -0.696342, -0.256539, -0.180186, 1.430899, 0.838463, -1.061960, -1.592524, 0.441530, 1.366050, -0.685318, 0.233680, -2.311427, -0.308096, 0.555344, 0.048981, -0.752526, 0.585936, 0.370827, 0.352839, -0.462694, 2.730259, 0.318348, 0.066214, -0.342504, 0.586782, 1.457488, 1.856496, -0.605141, -0.535174, -1.999769, -1.668622, -0.408905, -2.378285, -0.016774, 1.287151, -0.719079, -0.548583, -0.337331, 0.862812, -0.605760, 1.648520, 0.094051, -1.951560, 0.089223, -0.780328, -1.075616, -0.501557, 0.207018, -0.984979, 0.505881, -0.957748, 0.292560, -0.654020, -1.521583, 0.399999, -0.875850, -0.427864, 0.104920, -0.284185, -0.279061, 0.311303, 0.824885, 1.477813, 0.126833, -0.169382, 1.263168, 0.565827, 0.294153, -0.041792, -1.703477, -0.882949, -0.164699, 0.015699, -0.194581, -1.209354, 1.462874, -1.141294, 1.590655, 0.811364, 0.573021, 1.166842, 1.156637, -0.505591, 0.096107, -1.026647, -0.179227, 1.679374, -1.184700, 0.711789, 1.047191, -0.182652, 0.970459, 0.419897, 1.290955, 0.810446, -0.581004, -0.595683, -0.139267, -0.498031, 0.048846, 1.505327, -2.143813, -0.629577, -0.252255, 1.028242, -0.765101, -0.390921, -0.217402, 0.479872, 0.011424, -0.157042, 0.734651, 0.189349, -0.119298, 1.560242, 0.612179, 1.302071, -1.198902, 0.618100, 1.676716, -0.772555, 1.220210, -0.166774, -1.177870, -1.177902, 0.809546, -0.799127, 1.034321, -0.145202, 0.367323, 2.489962, 0.425243, -0.464740, -0.234826, 0.207980, -0.911901, 0.744626, 0.640711, 0.294641, 0.312020, -0.100161, 0.023665, -0.569919, 0.539226, 0.144603, -1.384257, -1.079836, -1.278033, 0.736026, -0.544919, 0.176548, -1.709892, -1.411979, 0.782916, -0.097198, 0.229842, -1.588447, -0.459033, -1.412327, 1.015274, -1.276133, 0.435498, -0.278965, -0.074937, -0.172663, -1.084600, -0.630960, -1.487925, 0.528229, 0.569579, 0.083534, 0.460871, 1.379124, 1.016671, -0.118298, 0.973762, -0.136367, 1.315556, 0.668521, 1.814967, -0.771829, -1.384105, 0.990654, 0.841416, 0.029240, -0.691763, 1.171851, 0.370924, 2.733368, -0.568443, 0.673389, 0.869627, -1.045340, 0.497292, -0.280144, -1.036110, 0.847121, -1.130689, -0.820482, -0.430357, -0.123934, 1.888240, -0.527257, -0.351635, 1.423017, -0.339125, 1.102714, -0.315699, -1.104933, 1.008917, 1.342390, 1.458689, -0.385539, -1.016880, 0.581250, -0.196346, 0.931329, 1.164288, -0.247903, -0.228536, 0.835217, -0.144650, -0.090957, 0.760739, -0.809166, 0.947617, -0.212802, 1.281088, 1.101748, -0.716830, 0.043255, -0.528309, -0.763206, -1.506980, 0.974319, 1.138049, -0.803519, 0.176812, 0.286667, -0.104673, -0.741020, -0.625206, -0.330992, 0.198928, -0.594688, 1.396620, 0.016673, -0.815823, 1.664508, -0.170367, -2.500268, -1.219836, 0.695559, 0.165445, 1.588555, -0.695296, -0.489465, 0.150997, 0.493484, 0.101510, 0.126520, -1.573688, 1.159101, -0.364522, -0.688085, -0.312782, -0.898272, 0.450867, -0.435013, 0.246921, 0.034450, -0.439975, -1.804829, -0.068320, -0.499654, -1.826085, 1.732197, -0.619400, 0.793144, -3.463029, -0.440606, -0.850981, 0.305892, 0.090604, 2.434437, 0.655124, -1.372699, -0.517537, -2.463883, 0.722855, 0.572804, -0.627829, 2.062758, -1.756823, -0.522275, 0.222496, -0.085869, 0.692665, -1.785366, 0.613105, 0.260673, -0.204498, 0.250998, 0.330212, 1.385464, 1.499173, -0.244544, -0.602137, 1.724807, 0.963152, 0.882231, 1.284749, -0.290747, 0.870654, -0.187853, 0.296364, -0.582804, 0.539557, 1.500398, -0.396130, -0.506023, 0.698999, 0.630518, -0.378596, -1.396902, 0.533503, 0.287936, 0.448920, 0.647826, 0.107994, 0.816036, -0.317601, 0.478552, 1.790181, -1.788593, 1.631016, -1.079836, 0.811293, -0.628658, -0.580595, 0.401982, 0.569849, 0.770866, 1.332316, -2.743430, -1.254921, -2.446743, -1.056456, 0.141758, 1.556393, -1.090519, -1.363106, -0.351823, 0.029793, 1.169748, 1.378610, 1.711351, 0.828068, -1.074599, -0.223655, 1.107016, -0.445439, 1.903487, -2.814875, 0.002307, -0.847779, 0.247274, -0.564948, 1.217887, -0.495183, -0.762937, -0.862757, -0.286405, 0.728582, -0.400891, -0.404757, 1.617295, 1.799583, -0.067192, -0.436241, 0.422387, -1.409052, 0.743152, 0.668135, -0.848996, -0.770020, 0.151187, -1.119343, -0.254092, -0.980843, 1.428326, -0.139192, -1.632969, -0.997932, -1.298561, 1.268624, 2.015321, 1.566318, -0.090312, -0.145650, -0.077887, -0.331785, -2.126774, 0.079247, 0.516671, -0.244639, -1.618103, 1.007665, 0.011055, 1.087784, -0.376843, -0.384728, 1.290764, 1.057104, -0.913489, -0.522801, -1.892181, -2.794821, -0.715227, -1.903783, -0.198911, -0.320695, -0.648763, 1.287908, -0.448754, -0.276334, 2.333137, -0.236980, 1.518776, 0.618936, 0.308806, 0.251606, -0.141605, 2.084855, -1.516574, 0.067112, 0.015472, -1.164162, -0.728226, -2.385466, 0.314487, -0.851540, 0.300903, -0.784852, 2.687056, 1.665760, -2.083869, 0.309880, -1.947824, 2.580373, 1.132692, -0.078935, 0.463516, -0.873756, -0.788863, 0.549656, 0.721034, 1.474422, -1.952553, 0.190517, 1.041629, -0.596603, -1.905171, 1.129173, 1.251417, -1.817391, -1.061355, 0.915165, -2.123946, 1.236051, -1.228409, -0.159711, -0.655804, -0.560730, -0.562828, 0.721478, 0.010690, 0.437009, 0.495920, -0.703829, -0.775189, -1.194754, 0.337509, -0.932305, -1.271299, 1.027621, -0.460641, 0.388271, 0.972452, -0.280572, 1.885038, -0.460650, 1.480823, 1.766066, -2.534727, -1.046588, 1.150445, -1.914867, -0.549929, 0.261702, 1.594321, -1.445070, -2.427070, 1.437757, 0.409672, 0.482781, 1.634529, 1.790684, -1.029307, 1.098532, 0.883415, -0.304889, -1.273391, 0.828298, 1.039949, -0.276642, -1.955131, 0.748213, 0.948770, -1.751379, 0.170211, -0.348103, 0.778671, -0.327411, 0.727372, -1.308437, -0.417400, -1.118454, -0.017688, 0.265638, 0.399090, 1.092914, -1.671373, 1.553571, -0.320174, 0.149660, 0.292985, -0.452985, 0.167332, 0.048975, 0.332529, 1.156851, -1.803404, -0.612971, -0.344844, -1.345627, -2.173171, 0.337222, -0.340274, 1.470315, -0.465364, 0.777066, -0.059724, 0.540948, -0.924273, -0.498785, 0.130303, -0.024488, 0.771386, -0.888127, 0.409938, -1.327856, -0.271714, -1.612004, 0.112701, -1.986177, -1.149349, 0.642528, -0.603705, -1.515244, 1.840038, 1.147426, -0.108651, -0.384249, -0.392141, -0.767295, -0.649777, 1.895359, -1.430295, -0.272704, 0.969845, 0.256234, -1.367562, 1.372657, 1.148524, 0.804224, 0.250775, -0.543023, 0.044346, -0.176317, 0.356183, 1.804415, -2.931144, -1.303446, 0.215903, 1.559797, 0.164174, -0.177832, 1.081160, 0.829425, 1.429229, 0.314129, 0.639403, 0.049648, -0.150397, 1.223584, 0.068886, -0.871838, 0.250440, -0.121434, -0.790761, -1.551351, 1.957268, 1.425010, 1.720424, -0.140462, -0.292308, -1.145658, -1.090995, 1.442057, 0.771168, -1.421402, 1.924043, 0.042159, 0.440960, 0.084090, 0.792587, 1.623435, -0.848524, -0.410371, -1.910007, 1.114971, 0.113813, 0.384190, -0.343022, 0.901978, 1.780175, 0.165075, -1.235795, -0.973140, -0.684883, 1.378608, -1.556359, 1.389666, 0.125180, 1.432838, -0.367771, 0.348334, -1.170123, 0.894740, -0.892537, -0.429992, 0.041033, 1.725004, 1.691471, 1.270950, 2.368528, -0.649795, -1.793756, 0.648308, 0.390791, 0.100766, 0.439901, -1.116386, -1.336909, 1.158723, 1.261636, -1.846923, 1.178719, 0.118388, 0.982257, -1.036349, -1.180894, -0.245587, -0.129389, -0.053290, -0.077119, 0.049128, 0.302768, -1.212949, -0.297443, 1.020663, 0.864797, 0.907904, 0.281368, 1.169923, 0.056198, 1.455476, 0.487488, -1.467424, -0.509325, -0.081169, 0.189246, 2.273947, -1.102465, -2.270064, 2.581475, 0.243144, -1.425038, 0.786366, 1.204281, -1.225804, 0.664714, 1.304731, 0.208075, 1.271172, 0.358766, -2.539291, 2.170035, 1.003199, 1.000141, 1.153371, 0.376017, 0.245331, 0.119319, 0.170506, 0.468791, 0.845317, 0.880419, -0.182267, -0.351487, 1.221351, 1.109485, -0.122763, -0.441408, 0.397473, -0.692110, -0.958655, -0.890841, -0.165561, -0.669242, -0.960004, 1.029351, -1.827937, 0.344003, 0.487598, -0.509466, -1.950244, -0.986274, -0.754782, 0.490325, -2.561658, -0.364866, 0.115597, -0.835832, -0.680565, 1.116448, 1.034222, 1.156194, -0.462367, -0.646126, 1.490184, -0.092126, -0.985075, -1.204694, 0.966325, -0.439018, -0.291853, -0.972802, 1.684901, -0.306335, -2.867162, 0.840268, 0.047128, -0.484602, -0.361164, 0.529141, 0.253967, -0.279505, 0.301664, 0.908830, 0.570776, 0.450165, 2.010303, 0.977634, 0.450457, 1.897397, 0.130140, -0.472491, -1.332368, -0.590533, -0.236377, -0.171133, 0.685940, -0.456521, 1.388796, 1.351646, 0.170174, -0.382853, -1.348521, 0.691629, -0.278505, -1.271869, -1.342085, -0.139426, 0.329207, -0.708711, 0.017592, 1.484468, -1.975322, -0.854597, -1.040721, 0.085031, -1.284979, -1.059245, 0.839824, 0.931990, -0.163811, -0.008066, 1.313868, 0.631472, 1.869960, -0.307023, 0.555135, 0.174737, -1.814567, -1.491072, -0.252474, 0.213044, 0.238095, 1.161464, -1.684574, 0.313886, -0.216870, -0.618215, 2.270164, -3.519725, -0.367013, -1.231144, -0.811809, 0.219825, 0.315066, 0.814039, -0.233066, 1.959956, 1.282328, 0.152132, -1.447953, -0.359744, -0.127220, 0.547382, 0.621872, -0.243756, -0.680312, -1.452631, 0.674617, -0.882651, 0.505583, 0.574320, -0.724038, 0.208307, -0.758440, 0.037523, -0.436246, -1.103913, 0.605163, -1.203271, -0.349048, -0.590220, -0.587942, -1.742100, -0.122615, -2.138384, 1.205681, 0.268602, -0.364161, -1.191892, 0.407916, 1.239345, -0.703523, -0.360744, -0.711938, -0.320934, -0.523445, 1.561669, -0.743672, -1.076270, -1.210861, -0.827123, 0.340647, -0.034845, -0.560500, -0.123075, 0.673215, 1.025805, -0.163507, 0.118245, -0.172347, 0.829372, 0.959543, -1.080799, 0.145325, -1.512127, 0.243233, -0.851418, -0.402083, 0.670363, -2.581012, -0.094808, -1.015808, -0.091176, 0.356494, 2.140609, 1.451248, 0.290791, 0.955669, -0.612150, 0.355083, -0.860035, -0.220295, 1.935034, -2.245154, -0.691729, -0.641136, -0.957094, 0.264666, 0.953032, 0.925415, 0.805269, -1.676702, -0.732828, 0.321373, 0.820801, 0.263415, 0.978789, 0.415271, -0.770884, -0.560305, -1.474311, 1.453777, -0.139642, -1.420674, 0.967396, -0.255116, -0.477515, 0.055763, -1.208753, 1.400063, -1.609228, 2.044857, -0.461519, -1.552521, -0.567215, 0.564991, 0.129456, -1.370450, 0.495831, -0.699535, -1.036510, -0.713296, -0.056456, -1.175707, 1.714374, -0.546644, 0.555167, 0.589690, -0.114738, -1.099528, -0.720584, 2.580354, 0.154068, -0.075990, 0.497113, -0.557604, 0.632325, -2.232875, -0.555574, -1.780078, -1.514722, 0.930837, -1.006835, 0.224690, -0.801820, -0.062706, -1.463318, 1.299447, -0.188101, 0.937312, 0.483199, -0.571289, -0.810484, -0.644893, -1.193224, 0.059205, -0.141947, 0.418589, -1.198344, -1.883460, -2.485989, -0.826594, -0.843370, -2.850616, -0.465154, -1.836882, 1.497049, 1.158938, -0.037906, 1.257824, -0.388018, 0.557795, -1.873809, -3.291062, -0.014402, 0.263339, -0.641722, -1.651595, -2.528742, -0.578036, 0.321927, -0.588572, -0.571020, 0.814622, 0.098188, 1.541206, -0.233167, -0.067291, 2.019158, 1.188454, -0.491439, -1.278601, -0.880556, -0.137270, -0.239827, 1.146000, -0.410556, 0.807072, 1.006048, 1.333995, -0.171237, 1.928859, -0.650880, 0.775498, 1.419518, 0.066664, 0.424831, 1.121179, -0.204914, -2.000347, -0.731608, -2.163165, -1.186326, -0.001448, 0.732853, -0.114406, -0.241247, -0.052114, -1.340066, 1.064839, 2.225616, 0.252704, 0.048093, -0.152621, 0.371792, 0.079982, 0.195513, 1.385363, -0.167603, 0.362770, -1.148246, 1.123373, 0.437405, 0.615800, 1.022465, 1.091354, -0.246173, 0.679600, 0.297476, 0.067711, 1.085536, 1.521773, -1.743577, -0.963234, -1.663871, 0.197685, 0.956560, -0.755337, -0.448105, -0.307985, -0.372927, -3.681711, -1.190052, -0.650981, 1.021996, -1.023422, -0.432114, -2.023940, 0.193068, 0.499775, -0.721505, -1.853910, 0.701858, -0.410427, 0.833886, 0.673609, 2.411486, -2.828877, -0.258035, -0.999973, 0.206999, 0.094633, 0.609048, 0.181900, -0.039991, -1.936095, -0.653988, 1.382607, -0.845476, 0.260008, 0.326553, -1.852391, -0.822542, -0.954687, -0.968077, 0.278658, 0.068318, -1.167719, -0.052708, 0.154352, 0.212280, 0.596978, 0.604840, 0.432039, -1.806290, -1.023921, 0.458002, -0.074754, 0.242409, -1.401399, 0.676589, 2.262212, -0.399023, -0.301030, -1.010048, -0.271403, 1.708313, -0.026174, -1.056340, -0.713290, 0.298816, 0.331817, -1.359979, 0.706568, -1.110049, 1.831745, -0.294758, 0.763841, 0.546000, -0.380547, -0.975400, -1.438008, 0.808115, -1.427639, -0.454569, 1.688931, 0.916512, 1.141009, -0.854748, 0.067646, -1.136776, -0.235838, 0.204974, 0.212840, 0.743308, 1.639927, 0.516522, -0.283163, -0.092873, -1.549742, 0.596333, -1.259256, -0.828800, 0.370436, 1.245179, 0.068038, 1.309856, 0.698309, -1.572554, 2.273052, -1.019572, -2.053736, 0.303562, 0.903053, 0.932825, -0.637823, -0.141961, 0.383576, -0.745588, 0.461201, 0.852043, 0.786838, 1.099883, 0.910615, -0.913858, -1.436887, 0.133763, 1.193469, -0.105290, 0.626564, -1.244284, -0.824674, -1.349277, -0.607738, -0.049062, 0.431512, 0.410840, 1.091541, 0.501111, -1.633811, 0.345205, 2.327626, 2.004410, 2.551513, -1.097027, 0.417169, 0.307445, -0.187798, -0.964303, -1.388449, -0.096223, 0.206668, -0.512665, 0.038904, -0.338043, 1.865018, -0.441585, 0.161255, 0.060204, -0.567725, -0.054680, -1.049167, -0.934331, -0.400814, -1.103378, 0.218030, 0.408159, -0.825384, -1.668284, -0.735799, -1.523152, 1.301409, 1.350244, -2.044044, 0.295981, 1.024060, 1.518365, 0.627217, -0.362370, 0.178887, 2.220145, 0.845519, -1.245751, 0.296076, -0.906249, -0.550781, -0.187704, -0.966384, 0.258156, 0.731842, -0.151215, 0.602581, -0.324755, 0.184688, 2.105219, -0.360765, -1.102379, 2.683188, -0.002378, 0.935326, 1.088723, -0.372392, 0.369770, 1.084281, -0.882304, 0.416716, 0.079135, -1.082771, 1.285754, 0.880396, -1.371859, 0.870100, -0.489232, -1.602242, 0.455934, 1.763801, 0.404464, -0.614565, -1.724052, -1.982593, 0.570093, 1.096289, -1.472392, 1.381516, -1.850454, 0.917283, 1.426737, -0.094476, 0.254634, -1.713858, 1.478379, 0.890432, 0.401829, -0.090656, -1.292247, -1.279843, 0.302457, -0.236417, -0.467403, -1.154478, -0.906065, 0.705937, 0.002082, -0.607295, 1.536265, -1.094748, 0.629592, -1.460641, 1.839497, -0.668563, -0.095149, 0.027071, -1.275475, 0.720768, -2.313432, -2.117853, -1.466619, -0.380405, -1.684252, -1.543230, -2.469121, 0.284849, -1.769367, 1.843941, 0.645849, 0.562916, -1.152369, -1.154117, 0.053049, -0.911990, -0.652897, 1.031700, -1.035564, 0.573847, -0.589830, 0.827473, -0.987938, -2.240338, 1.096295, 0.369008, 0.113771, -0.044153, 1.336587, 0.514051, 0.395887, -1.226199, 0.572327, 1.363572, 0.347048, 0.560013, 0.781436, 0.606495, 2.375325, -0.153912, -1.585245, 0.423466, -0.935471, 0.146285, 0.376451, -0.835973, -1.660926, 1.582481, 0.471677, 1.288726, 0.719894, -0.369299, -0.605758, 0.136684, -0.432780, -1.579723, -0.963347, 1.514310, -0.830247, -1.760513, 0.007297, 0.440421, 1.620559, 0.175405, -0.204266, -2.106836, -0.380563, -1.463042, -0.388214, 0.368389, -1.828637, 0.839464, 0.224701, -0.066454, -1.094345, -1.870579, -0.403838, 1.541245, -2.228127, -1.190789, 1.185140, 0.875489, -0.762382, 0.410577, -0.824674, 1.884373, 0.658230, -0.360211, -0.909355, -0.149655, -0.323001, -0.206297, -0.870072, 0.265621, 0.461955, 0.317674, 1.622650, -1.717764, -0.442985, -0.325512, -0.367192, -1.078023, -1.407287, -2.238735, -0.712122, 1.305645, 0.856626, 2.403688, 1.216418, -1.689685, 0.809785, 1.053149, -0.512433, -1.504532, 0.894018, 0.469305, 0.266478, 1.378944, -1.226123, -0.873641, -1.508280, 0.923169, -2.592287, -0.371285, -0.028856, 0.718734, 0.709310, 0.191418, 0.495436, 1.004859, -1.971753, 0.510060, -1.196623, -0.020200, 0.444278, -0.290145, -0.355238, -0.594349, -0.651522, 0.226935, -1.178136, 0.820969, 0.560619, 1.003440, 1.069418, -1.878259, -0.183214, 0.800477, 0.202630, 0.502726, -0.294162, 0.654934, 0.980805, -1.512176, 0.483358, 0.228810, 0.154502, -0.092433, -0.291913, 0.277689, 0.131718, -0.129950, -1.024526, 0.538989, -1.753239, 0.272279, 1.867798, 0.530696, -0.675928, 0.537991, 0.235620, 0.232758, -0.184438, -0.204704, -0.163548, 1.038092, 2.092777, -1.498174, 0.035976, -0.362997, -0.415563, 0.334518, 0.209770, -0.157115, 1.608045, 0.523456, -0.901635, 0.512854, 1.170690, -1.862518, 0.677543, 2.004447, -1.229728, -0.887000, 0.429626, 0.653907, -2.198623, 0.113910, -1.012737, -0.602652, 0.268596, -0.433785, -0.403663, 1.012576, -0.179156, 0.728264, -0.269759, 1.466707, -0.268548, -0.401664, 0.401893, 2.991096, 0.507529, -0.674686, 0.464573, 0.348770, 1.201653, -0.056604, 0.135997, -0.092281, -0.991061, -0.916831, -0.670588, -0.231594, 0.995374, 0.443734, 0.254507, 1.108321, 0.199079, -1.256905, -0.225160, 2.169815, -1.211504, -1.613809, 0.851215, 1.203705, 1.792670, 0.549233, -1.009304, 1.738254, 0.798481, -0.885659, 0.584313, -0.040680, -1.389247, -0.555906, -0.496788, 0.444996, 1.008133, 0.890202, -0.672025, 0.218345, -0.066502, 0.796782, 0.594442, 0.400180, -0.614666, 0.461127, -0.788149, 0.580780, -0.252922, 1.598786, 0.345562, -0.465401, -0.908905, 0.402144, -1.370560, 0.890239, 0.497729, -0.366781, -0.654610, -0.134878, 0.534342, 1.786823, -0.550269, 0.766497, -1.151797, -0.224203, -1.340949, 1.844077, -0.117947, -0.814984, -1.282964, -0.785406, -0.207749, 0.021620, 0.064032, -0.193473, 0.859739, 1.952088, -0.750830, 1.016058, -0.528133, -0.352504, 0.997560, -2.948111, -0.391757, -1.890509, -0.028581, -1.116947, 0.900249, 1.632925, 0.211528, 1.464261, 0.813499, -0.965834, -0.191811, 0.968300, -0.626022, -0.627869, 0.203130, 0.212776, 0.288468, -0.489586, 1.383871, -0.353621, -0.470161, -1.250769, 0.501932, 0.578503, 0.522494, 1.383515, 0.036709, 0.611702, -0.324476, -1.341430, 0.535411, 0.171775, 1.211939, -0.946181, -0.557432, 0.402751, -0.339894, -1.970996, 0.487801, -0.506185, -0.116569, -0.163749, 0.362941, -1.675222, 0.133179, -0.932245, 0.227481, -1.412128, 1.298975, -2.981760, -0.195989, -0.103139, 0.266744, -0.108065, -0.207866, -0.561348, 0.170384, 0.287127, 0.365311, -1.053901, -2.143873, -0.122602, 0.836379, 0.702712, -2.281724, 0.091834, 0.450036, -1.102499, -0.516250, 0.257807, -0.201001, 2.401299, -0.660058, 0.251632, -0.877792, 0.666423, 0.845179, 0.841628, -0.896648, -1.132187, -2.201586, -1.656882, -0.379535, 1.073976, 0.083634, 0.268975, 0.912557, 1.286196, 0.497235, 1.072200, -0.092967, 0.678398, -0.221040, 2.006468, 0.371291, -0.826240, 0.720615, 0.601670, 1.351313, 0.355805, -1.220755, 1.327509, -2.158093, -0.265237, -0.460523, -0.901234, -0.679397, 2.160350, -1.077485, -0.231026, -0.245614, 0.568309, -0.649115, -1.354293, -0.213618, 0.719830, 0.596101, -0.916382, -0.193533, -0.251266, -0.562228, 0.009247, -0.359364, 0.904510, 1.566602, 0.733213, 0.057844, 1.088685, -0.855912, 0.563026, -1.046159, -0.220802, 0.849690, 2.908533, -1.654303, 1.727432, 0.684040, -1.850934, 1.306162, -1.040588, 0.778143, 1.001766, -2.117378, 0.354126, -2.434271, 2.116376, -1.291661, -1.618389, 1.618531, -0.223615, -1.202130, 0.185509, 1.283886, -0.976218, -1.315687, 2.660844, 0.627925, -2.724558, -0.051845, 1.500147, 0.173336, -0.671355, -1.616030, 2.833105, 0.089477, 0.187101, 0.439169, 2.095438, -1.809289, -0.036200, 1.658423, -2.193846, -1.200890, 0.757756, 0.897567, 1.400721, -0.541263, 0.170801, 1.723530, 0.849128, 0.044761, -0.782273, -0.032073, -1.469752, 0.317400, -1.178158, -2.219496, 1.061824, -2.720530, 0.625581, -0.245036, -0.693298, -1.376902, 1.447943, 0.426345, 0.684331, 3.045380, 0.314667, -1.724104, -0.335636, 2.040052, 0.610763, 1.748671, -0.537217, 0.081519, -1.232412, -1.590867, 3.281409, -0.236164, 0.516442, -0.367121, 1.113477, -0.101688, -0.895257, -0.122986, 0.577028, 0.828970, -1.597559, 1.299989, 0.177506, -0.538503, 1.064118, 0.343365, -0.655215, 0.483452, -1.800218, -0.767643, -1.775171, 0.602599, -0.041027, 1.002649, 0.273201, 1.799783, 1.639954, -0.846828, -0.445425, -1.503152, 0.029173, 0.138277, -0.573592, 0.403383, -0.116117, 0.872516, 1.422441, -1.560168, -1.566623, -0.273330, -0.775797, -0.234296, 0.963701, 0.751731, 0.593447, 0.234605, -1.605393, -0.566641, 0.375025, 0.029848, 0.841423, -0.714929, 0.439749, 0.829317, 0.185950, 0.521275, -0.866284, -0.685984, -0.501778, 1.644804, -0.343457, 0.309802, -0.158656, -0.815835, 1.363981, 2.075718, 1.283538, 0.847531, 0.315317, 0.173977, 1.574663, 0.659445, -0.573065, 2.061598, -2.496942, 0.058987, -0.658761, 2.133844, -0.897984, -0.206965, 1.126628, 0.414460, -0.531610, -0.243805, -0.231926, -1.443090, 0.507506, -0.406759, 0.595977, 0.517678, 0.257494, -0.918222, -1.189355, -0.483287, -0.121459, -1.049367, 0.285166, 0.609940, -1.659741, -0.603259, -0.652179, -0.407910, 0.081981, 1.260762, 0.879977, -0.366529, 1.073076, 0.678174, -2.091066, -0.020090, 0.386587, 0.032529, 0.020348, -0.232831, -0.439285, 0.963073, -2.157159, -0.088462, 0.766416, -0.671181, 1.522421, -0.960185, 0.526432, -0.881427, -0.644743, 0.726419, -0.862196, -0.567700, -1.287147, -0.820527, -0.951630, 0.750921, -1.029318, -0.720539, 0.708780, 0.489514, -0.550919, -0.755829, 0.511643, -0.394900, -0.417637, -1.140377, 1.311014, 0.327576, 0.064683, 0.317144, -0.398887, -1.065391, 1.146876, -1.290596, -1.280738, 0.569320, 0.050438, 0.485064, 0.668543, 1.455787, 0.232036, 0.445867, -2.160827, 1.751598, -0.321649, 0.068739, 1.075140, -0.364060, -1.712742, 0.435224, 0.402828, 1.232949, -1.543923, -1.375330, 0.803641, -0.325610, 1.143298, 1.944335, -0.218840, -1.115818, -0.493478, -0.410096, -1.436890, -0.588038, -0.229452, -2.056219, 0.756037, 1.211246, -0.187034, -0.288765, 0.616333, 0.137836, -0.400240, -0.491144, -1.110797, 0.336978, 0.032051, -0.856657, -1.214663, -0.080546, 1.870633, -0.282188, -0.930166, -1.240665, 0.307673, 1.721147, 0.602459, -1.175582, 0.397474, -1.188016, -1.785199, -0.184665, -0.415283, 0.950586, 0.359571, 1.751423, -2.100031, 0.439803, -0.597166, -0.432930, -1.217145, 0.270341, 0.347048, 0.216593, -0.749260, -0.850258, 0.000787, 0.159751, 0.993618}, - { 0.301731, 0.340315, 0.356582, -0.199931, -0.692607, -0.670357, -1.513091, 1.274315, 0.483492, -1.273754, -1.048047, -0.602107, -0.509375, 1.703353, 1.416582, 0.501710, -0.075911, 1.163827, -0.229310, 1.099196, 1.963809, -0.078191, -0.665969, -1.344182, -0.013689, -0.292125, -1.779218, -0.859861, -0.708837, 0.676676, 0.499517, 0.178592, -0.402246, -1.382905, 0.686772, -0.584893, -0.575881, 0.694766, -0.024090, -0.050965, 0.953661, -0.622870, 0.836188, 0.029189, 1.159838, 0.165515, 0.378790, 2.050405, -0.660663, -1.538973, -0.847163, -0.717603, 0.253120, 1.357337, -1.058493, -0.095297, -1.081879, -0.700258, 0.044495, 1.712566, -0.921942, -0.252533, -0.414732, 0.743698, 0.743899, -0.524788, -0.260550, 0.542102, -0.918968, -1.100057, -1.059030, -0.596496, -0.272056, 1.357622, 0.634886, 0.145636, -0.154541, 0.229817, -1.773797, -2.028810, 0.109299, 0.347456, 0.827197, -0.826999, -0.722656, -0.619107, 0.389974, 1.182330, -1.423043, 0.995307, -0.913115, 0.770915, -0.616580, -1.141662, 1.683443, 0.826815, 1.089156, -0.844702, -0.448526, 0.680786, 0.595490, 1.333555, 0.827444, -1.927784, -0.372818, -0.531507, -0.113064, -1.123855, 0.118561, -2.277498, 2.295796, -0.759066, 0.758029, -0.960120, 0.191058, 0.386608, 0.070052, 1.463023, 0.398881, -0.331290, -0.185937, 0.513445, -0.667540, -0.176668, 2.967364, 0.293913, -1.354059, 1.766835, -0.318633, -1.100933, 0.254869, 0.036773, -1.315956, 1.159468, -1.080406, 1.207758, 1.385852, 1.660041, 1.465256, -1.387277, 0.005947, 1.743804, 1.441585, -0.231859, -0.606515, 1.048532, -0.191874, 0.572778, -0.492012, 0.509080, -1.410149, 0.458897, 0.311114, -0.369147, 1.200200, 0.811518, -1.115069, -1.622676, 0.519984, 0.417236, 1.205972, 1.300473, 0.606398, 1.473777, -1.091435, 0.806429, -0.932551, 0.494567, -0.837687, 0.572030, 0.869833, 0.545405, 1.315020, -2.294152, 1.148977, -1.111109, -1.989875, 0.223125, 0.794686, -0.703741, -1.232284, -0.022285, -0.359718, 1.443275, -0.402033, 1.346300, 0.237843, 0.811650, -0.433078, 1.155858, 0.617472, 1.291299, -0.461007, 0.206134, 0.490470, 1.553077, -0.067552, -0.377907, -0.904223, 0.493127, -0.250618, 2.067950, 0.333474, 1.824845, -0.807702, 0.851756, 0.228255, 0.541410, -0.531682, 0.195160, -1.644215, -0.482778, -0.162985, 0.817808, 0.118681, -0.072329, 0.082215, -0.079760, 1.836766, -0.892851, 0.395527, 0.243779, -0.183584, 0.093627, -1.158231, 0.332813, -1.346124, -0.031608, 0.942257, -0.825450, -1.106920, 1.560990, -0.653940, 0.446562, 0.553755, 0.540008, -1.595925, 1.092760, 0.395390, 0.908261, -1.507372, 1.775162, 1.122793, 0.520032, 0.900858, 0.354926, 0.314007, 0.173428, 0.836221, 0.313523, -0.022132, -0.716503, 1.184181, -0.155130, 1.076736, -1.077288, 1.020293, 0.307203, -0.372011, 1.430982, -0.312458, -0.301034, -1.045088, -0.172423, 1.224366, 0.233651, -0.698798, 1.171618, -0.277354, 0.924341, 1.228120, 1.480400, -0.592843, 0.024125, 0.369709, -0.512804, -0.807521, 1.502057, 1.286383, -0.238933, 0.194284, -1.645072, -0.759845, 0.018062, 0.599161, 0.189479, -1.045806, -0.363235, 1.012787, -1.992165, -2.280294, -0.020684, -0.167178, 0.264359, 0.214267, -0.767510, -0.269353, -1.075058, 0.240005, 0.913014, 1.122564, 3.143238, -0.219032, -0.195347, -0.819146, -0.179572, 1.151536, -0.897796, -0.575631, -0.106497, -1.558885, -0.035942, -0.677244, 0.368379, -1.527248, -0.082788, 0.448401, -0.950365, -1.297375, 1.443643, 0.671306, -0.505342, -0.528870, 0.517745, 0.724624, -1.634843, -0.279723, -0.412208, -0.044171, 0.550800, -0.380265, -1.132098, 2.779808, 1.099924, 0.900117, -0.746871, 0.698239, 0.468645, 0.927760, 0.194123, -0.226882, 0.271124, -0.569158, 0.003426, -0.011632, -1.209737, 1.318997, -0.755500, 0.401329, 0.933217, -1.236041, -0.652248, 0.725733, -1.939159, 0.740022, -0.209385, -1.428430, 0.474135, -0.639669, -1.726154, -0.973631, 0.129549, -0.290139, -0.913872, 1.676089, -0.123993, 0.723219, -1.771569, 0.458740, 0.511286, -0.197916, -0.780482, -0.568680, 1.363672, -1.133307, 0.486805, -1.041064, 0.022507, 0.898393, 0.745415, 0.670479, 2.005906, -0.649511, -1.474462, -0.572460, -0.464904, 1.396734, 0.841705, 0.263239, -0.888334, 1.429085, -0.297824, 1.555869, -0.200461, -0.133046, -1.528087, 0.964913, 0.076381, 1.768266, -0.512871, -0.041117, -0.172383, -0.378645, -0.104837, -0.988190, 0.138538, 1.027950, -0.119624, 0.966073, 1.602044, -0.380665, -0.051357, -1.047217, -0.899111, -0.922363, -0.664096, 0.449538, -0.224948, -0.785595, -0.715102, -0.442596, 0.775693, -0.661684, -0.103729, -0.573598, 0.615203, -0.499645, -0.987635, -1.082462, -0.316347, -0.045296, 0.746258, -0.671951, -1.323349, 1.501651, 1.746913, -0.147925, 0.099872, 0.346254, -1.276066, 0.232616, -0.457229, -0.915705, 0.831763, 0.256330, -1.178553, -0.826680, -0.876064, -0.198926, -0.704767, -0.303037, -0.601242, -1.082732, 1.911549, -0.253599, 0.050120, -0.644634, 0.706186, -0.981749, 0.739799, 0.059147, 0.571289, 1.460922, 0.522896, 0.152329, 0.376585, -0.094636, 0.437663, 1.308744, 0.547445, -1.529621, 0.561978, 0.635995, 1.287352, -1.073645, -1.750299, 0.933533, -0.552610, -1.338540, 0.140115, 0.379590, -0.510426, 1.103815, 0.640973, 0.376664, -0.011929, 0.644988, -0.731731, -0.218970, 1.272982, -0.226110, 0.205127, -0.368558, -0.022630, 2.318778, -1.229447, -0.290865, -0.563527, -0.829533, 0.078361, 0.054665, -1.866439, -0.601924, -1.055621, -0.081156, 0.954206, 0.878962, -0.853083, 0.433576, 0.771821, 1.650254, -1.040189, -0.943020, -0.600853, -0.951020, -0.058790, -0.412329, 0.070419, -0.327229, 0.639502, -0.130401, -1.981886, 0.892368, 1.927000, 1.395447, -0.035979, -0.268848, 1.504998, -1.268180, -2.091290, 0.692991, 1.503467, -0.595840, -0.359548, -0.598310, 0.237555, 1.361935, 1.195720, 1.488564, 0.531622, 0.639224, 0.005910, -1.281677, 0.688168, 0.436142, 0.003748, 0.505624, -0.462939, -1.437582, -1.013640, -1.273356, 1.619996, -0.860430, 0.206553, -1.011272, -0.178100, 0.907035, 0.024300, 2.001593, 0.576700, 1.030430, 0.130177, -1.339414, -0.460570, -2.994749, -1.577236, -0.323091, 1.105102, -1.486310, 0.160474, -0.957567, 0.238647, -0.401481, 1.432569, 0.710533, -0.554321, 1.213134, 1.846723, -1.439332, 0.128210, 2.619654, 0.351559, -1.153459, -0.410734, 1.109101, -0.533198, 0.350223, 0.430851, -0.982769, -0.609022, -0.522238, -0.181879, -0.459462, -0.213042, 0.142233, 0.445944, -0.789727, 0.721732, 0.917974, 0.244496, 1.145396, -2.108143, 0.193287, 0.551993, -2.250021, 1.201748, 0.716213, -0.027772, -0.580437, 0.715608, 0.196750, -0.851143, -0.354354, -0.847215, -0.505379, 2.311434, -1.452240, -0.859659, 0.149073, -0.011959, 0.247673, 0.742919, -0.853720, -0.164723, 0.966060, -2.186510, 0.341235, -0.460015, -0.183738, 0.573395, 1.611481, 0.487849, -0.149331, 0.076666, -0.816759, -1.125576, -1.069115, 0.119665, 0.487101, -2.070111, 0.113776, 0.149254, -1.227676, 0.739415, -0.402675, -0.823281, 1.107952, 0.642089, -0.383887, -0.207413, 0.679701, -0.662711, -1.606719, 1.148310, 0.587015, -0.294478, -1.032606, -0.808599, -0.676572, 0.599677, 1.284897, 0.072044, 0.537082, 0.677495, -0.841507, -1.741538, -1.199398, -1.070768, -0.381516, 0.693988, -0.246137, -0.051508, -0.442244, -1.691891, 0.104943, -0.420289, -1.544920, -0.425850, 0.648355, -0.538390, -2.096101, 0.105226, 0.027247, 0.650452, -0.307101, 1.047194, 0.746077, 1.012907, -0.396122, 0.694341, 0.743929, -1.091642, -1.909330, -0.467969, 0.402921, 0.844133, 0.546082, -0.291221, 0.645099, 0.375578, 0.090473, -1.156305, 0.909478, -0.344901, -0.915072, -2.355663, 1.861707, 0.170117, -0.345389, 1.611302, -2.380288, 1.357473, 0.907826, -3.133594, -0.119388, -2.195933, 0.699139, -0.155774, -0.943318, -0.112979, -0.345713, -0.634705, 1.501585, -1.081227, -0.081979, -2.046712, -0.880067, 1.731963, 0.432684, -2.039904, 0.167068, 0.341228, 1.122631, 1.662312, -0.441109, 1.167886, -0.092796, 1.101570, 1.728996, 1.244415, 1.014655, 0.213812, -1.410235, 1.303385, 1.574433, 1.140175, -2.336849, 0.619250, 1.743942, -0.284411, -1.236207, -0.177656, 1.440527, -0.071437, -0.997129, -1.096870, 0.251441, 1.087029, -1.145252, 0.653924, -0.166977, -1.180721, 1.442425, -0.148463, 0.327964, 0.626723, -1.094068, -1.684336, 2.216597, -1.607166, 2.419754, -0.162077, 0.432021, 1.336056, -0.083807, -0.189344, 2.150855, -0.494389, -0.073852, -0.083455, 0.761674, -0.927206, 0.831074, 0.103302, -0.717190, -0.205294, -0.896933, -1.047605, 0.776190, -0.089770, -0.851187, -0.612422, 0.209004, 0.664630, -0.463832, 0.705006, -1.380867, -0.598404, 0.618253, -0.249423, -0.287642, 0.358870, 1.447476, -1.891968, -1.251815, -1.265438, 0.868030, 1.151141, 1.387998, 1.276075, -0.161557, -0.302295, -0.781948, -1.090143, -0.907986, 1.153903, -0.158851, -2.025944, -1.752189, 0.563785, 0.832849, -0.281860, -1.422815, -0.250152, 0.390725, -0.707259, -0.255062, -0.434000, -1.832353, 0.054505, -0.874437, -0.694879, 1.724513, -1.158847, -0.799266, 1.509151, -0.321243, -1.023412, 1.458976, 0.982309, -0.224010, -0.504862, -1.925597, -0.893189, -0.089461, 0.801045, 0.786735, -1.132107, 0.191275, -0.143792, 1.279276, 0.453176, 0.150880, -1.473621, -0.487389, -2.148995, 1.275446, -1.067105, -0.194897, -0.992779, -1.082810, 0.943347, 1.304245, -0.036478, -0.003345, 0.665198, 1.935720, 1.278178, -0.040036, -0.710101, -0.749596, 0.553681, -0.745719, 0.417474, 0.520062, -1.351514, 0.427031, -0.546031, -1.492872, 0.267286, -0.504399, -1.000964, 1.273063, -0.651205, 1.030016, -0.782948, 0.497383, -0.183553, -0.401096, 1.110661, 0.872114, -0.170100, 0.282692, -0.795149, 0.332732, 0.643477, -0.249532, 1.635548, -1.044594, -0.295628, -0.920430, 2.626061, 0.487947, 0.211885, -1.296393, -1.072465, -0.203752, 0.170502, -0.088814, -0.801740, -0.737554, 0.208035, 0.940708, 1.305298, 1.212413, 0.782284, 0.230158, -0.389325, -0.566361, 0.430025, -2.453650, -0.388663, 1.011179, -0.208083, 0.858045, 1.731164, -0.202383, 0.693175, 0.927188, 0.628455, 0.986906, 0.191767, -0.140978, -0.154277, -0.997423, 0.096075, -0.183515, -0.681884, 0.713886, 1.265605, -0.525586, -0.278860, -1.008217, 1.654861, -0.021838, 0.172042, -0.755139, -0.037302, -0.154158, -0.337038, 0.273891, 0.263120, -1.773232, 1.110118, 1.178350, 1.746639, -0.104237, 2.031744, 0.165341, -0.379496, 0.501640, -0.559309, 0.275472, 1.567459, -1.102631, 0.633580, -0.930758, 0.241228, 1.100809, 0.442949, 0.599054, 0.663753, 0.186169, 0.292533, -0.423256, -0.648971, -0.136168, -0.569410, 0.031565, -1.150596, 0.595486, 0.742416, -0.546966, -1.677502, 0.951948, 1.031747, -1.099773, -1.728090, 0.585113, 0.631279, 1.600641, -0.305789, 0.437371, 1.932847, -0.537977, 0.931596, -1.838440, -0.015818, -1.622449, -0.040143, 0.362594, -0.890436, 0.426689, 0.636668, 2.481544, -0.807978, -0.110130, -1.141717, -0.094556, -0.179840, 0.354897, -0.194146, -1.837641, -1.313678, -0.445775, -0.028980, 0.800842, 0.221583, -1.936449, -0.961818, -0.846018, -0.335061, -0.720752, 1.514343, 0.269006, 0.862937, 0.192483, -1.216576, -0.956318, 2.885808, 0.765089, -0.311713, -0.945407, -0.545809, 0.725385, 1.093667, -0.061274, 1.711193, -0.433426, -0.215971, -0.543020, 0.724515, 0.403210, 0.869631, 0.157949, -0.002083, -0.464703, 0.199242, -1.738906, -0.171850, 1.478736, 0.750696, -1.278336, -0.344337, 2.085411, -0.777218, -0.750230, -2.526896, -0.429946, -0.038312, -2.605750, -0.614735, 0.938820, 0.947402, -0.577474, 0.556643, -0.798407, 0.565714, 1.477476, -0.461781, 1.676078, -1.114238, 0.069705, 0.037606, -0.657933, 1.054590, -0.808508, 1.104857, 1.529753, 1.102995, -1.080505, 0.155131, 0.142506, -0.663007, 1.160230, -0.250282, -0.522495, -3.863022, 0.065601, 1.898197, 1.294152, 0.824046, -0.446956, -2.238514, -1.023182, -0.950372, 3.760072, 1.253797, -1.685765, 1.360150, -0.572155, -0.529619, 0.015218, 1.592276, 0.533458, 0.537726, -0.396657, 1.090247, 0.574728, 1.641131, 0.244294, -0.764788, -0.294207, -0.429231, 2.160279, -0.585587, 0.008594, 0.410570, 0.459396, -2.319650, -1.987478, -0.200157, 0.084520, -0.451076, 1.142606, 1.389749, 0.199081, 0.354148, -1.355257, -0.458227, 0.033238, 0.129894, 1.666640, 1.995953, -0.302551, 1.051346, -0.520094, 0.004230, -1.607123, 0.429005, 0.270415, 0.314175, -0.524505, -0.298218, -0.391555, 1.056179, 0.443406, -1.532320, -0.053713, 0.526718, -0.159284, 1.742543, -1.159388, -0.559781, -0.422273, 1.102554, -1.729312, -1.581294, 1.895429, -0.114143, 1.484401, -0.020270, 1.242298, 1.651455, 1.336936, -0.201987, -0.751444, 0.261352, -1.025556, 0.721701, 0.301649, -0.189576, 0.339008, 1.021007, -0.467743, 0.199743, 1.331981, 0.742519, 0.702157, 1.874298, 1.026808, 0.599412, -0.185421, 0.589504, -0.127130, -0.603353, -1.266549, 0.114474, 0.456255, 0.999890, 0.660022, -0.351638, 0.974813, 0.227392, -0.426923, 0.188976, 1.035330, -1.286124, -0.632550, 0.065661, -1.141877, 0.439256, -0.411609, 0.438568, 0.245852, 0.154813, 0.786368, -1.666565, 0.101667, 0.726125, -0.258098, 1.430828, -0.973455, -1.164799, -0.804723, -1.660878, 0.724905, 0.003622, 2.518405, -0.821849, -1.203569, -0.920241, -0.347009, -0.429517, -0.218684, -0.363691, -0.676136, 0.849115, 0.253290, -0.167034, -1.677462, -0.943318, -0.059456, 0.981061, 0.228082, -0.498045, -0.011386, 0.543529, 0.675897, -0.602654, -0.332944, -1.684504, -0.138444, -1.398646, 0.695943, 1.384534, 0.048922, 0.052279, 0.445894, -0.007716, -0.948554, 1.005421, 0.110103, -0.339983, 0.308759, 0.005576, 1.540160, -0.661971, -1.930171, 1.070834, 0.552744, -0.086532, -1.003284, 0.964403, 0.368057, 1.557855, -0.683712, 0.968482, 1.560189, 0.205528, 1.204257, 0.168757, -1.089900, -0.166008, -0.276822, 1.288948, -1.579818, 1.106215, 1.764589, -0.735160, -0.513925, -0.332291, -0.432862, 0.538629, 1.970195, -0.503093, 1.825510, -0.851094, 1.043372, -0.786157, 0.195709, -1.106888, -0.862172, -1.161158, 0.194246, -1.286416, 0.268817, 1.319611, 0.258319, 0.805095, 1.427110, 0.148204, 0.733514, -0.012265, -0.129145, -1.583334, 1.019218, -0.673775, 0.912491, 0.455014, -1.683563, 0.313058, -0.788071, -1.151111, 0.137989, 0.279501, 0.131515, 0.681638, -0.811328, 2.154928, -0.920189, -0.576842, -1.868773, 1.916564, 0.892843, 1.188732, -0.495584, 0.574613, -2.128337, 0.948332, -1.652525, -0.344080, -0.925831, -0.476208, -1.295742, 0.825655, -0.219038, 2.336519, -0.542141, -0.879528, 0.998332, -0.885338, -0.410581, 1.157868, 0.887529, 0.546793, -0.119927, 0.556263, 0.603421, 2.098276, 0.234344, -1.218359, -0.228490, -1.439272, 1.276009, 0.150508, -0.488764, -1.188981, -1.618396, 2.034557, -0.311839, -1.789165, 0.714627, -3.241854, 0.605791, 0.649312, 0.614132, 0.684677, -0.899841, 0.057542, -1.937206, -1.183239, -0.593327, 0.614598, 1.041341, -0.496205, -1.751677, 1.977614, 1.683848, 1.516063, -0.328396, -1.696270, -1.209620, -0.284087, -0.382491, -0.413478, 0.141751, 0.218658, -0.626540, 0.656667, -0.912117, -1.735687, -0.704264, -0.681995, 0.614389, -0.210368, -1.721584, -1.634176, -0.041366, -1.080553, 0.401964, -1.358046, 1.129168, -0.645780, -0.547942, -0.197578, -0.119129, -0.021959, 0.975386, -1.820966, -0.545574, 0.729146, -1.524926, 0.214967, -0.703118, 0.260650, 0.355321, 1.967348, -0.479549, 0.232670, 0.609636, 0.651773, -1.856775, -0.314928, 0.490626, -0.490476, 0.065247, -1.093362, -1.710783, 0.479643, -1.266125, 2.916858, 0.395481, -0.469633, -0.005751, -1.271365, 0.362709, -0.140248, -1.805602, 0.613691, -0.759143, -0.140610, 0.267943, -0.206594, -1.412791, 0.624664, 0.547263, 0.373155, 0.709517, 0.176978, 1.641680, 2.020586, 0.466355, -0.906755, -0.071427, -1.089906, -0.029639, 0.363439, -0.198020, -0.127079, 1.956164, 0.440522, 0.513886, -1.796162, 0.837763, 0.109987, 0.075265, 0.423366, 0.523431, -2.338522, 0.063965, -0.154354, -0.488166, 0.384259, -1.091778, 0.631721, -1.660728, 1.851979, 0.300069, -0.540797, -1.068448, -0.619603, 0.179161, -0.921241, 2.601532, -0.100220, 0.764467, 1.940143, 1.481879, -0.411336, 0.400048, 0.445539, -0.642727, 1.005939, -0.559863, -0.107485, -1.133241, 2.248171, 0.148766, -0.050439, -0.763270, 1.173710, 0.543949, 0.719926, -1.380532, 1.455724, -1.954754, 0.191885, 1.047383, -0.055181, 0.067765, -0.193047, 0.685021, 0.791924, -0.063495, 0.956633, 0.333739, -0.618674, -1.535626, 2.004221, 2.568413, -0.702948, 1.907915, 0.213514, 0.074934, -1.443073, 0.588510, 1.238695, 1.949012, 0.524589, 0.137723, 2.291528, -1.002643, -2.020133, -0.173899, -0.287366, 0.633437, -0.326582, 0.301225, 0.882578, -2.893429, -1.463340, 0.979887, -1.557021, 0.197504, 0.058903, 0.760729, -0.480202, -0.534622, 0.610186, 0.962622, 1.511943, -0.482532, -0.261485, -0.071230, 0.168140, -0.061168, 1.350243, 0.618477, 1.804237, 0.257283, -0.128231, -1.728029, 0.200455, 1.200062, 0.328923, 0.432758, 0.105380, -1.131069, -0.136168, -0.069884, 0.404249, -0.408784, -0.255515, 1.395448, -0.281421, 1.655929, -0.414393, 0.066142, -0.601646, 0.783763, -0.637032, 0.350136, 1.325956, -1.455285, -0.428905, -0.317900, 0.552004, -0.102692, 2.083838, 0.934837, -0.280961, 0.063432, -0.423507, 1.076833, -0.416788, -0.502943, -0.230439, 1.904904, -0.145474, 1.116579, 0.289299, 0.712281, 0.220929, 0.723025, -0.960970, -0.191319, -0.237056, 1.936813, -0.391569, 0.608243, 0.390187, 0.220902, 0.352282, -0.044823, -1.197997, 0.005569, -1.655990, -1.963922, -1.197090, 1.120382, -1.478556, -0.608600, -0.587427, 0.283057, 0.087609, 0.567818, 0.418145, 0.273816, -0.475406, 0.802629, 0.663746, 1.292739, 1.943314, 1.728960, 0.463592, 0.592385, 0.306311, -0.239121, -0.331913, 0.753530, 1.341508, 0.045289, 1.456249, -0.112073, 0.872989, -0.525661, 1.492156, 0.512362, -0.395138, 0.921375, 0.519459, -0.392125, -1.082873, 0.338398, -0.101418, 0.087493, -0.858884, 1.320164, 0.138540, 0.899533, -0.602230, -0.395940, 0.053647, -0.406491, 0.260205, -0.280444, -0.410601, 0.303662, -0.158068, 0.123977, -0.049745, 0.661406, 1.133147, 0.301529, -0.283301, 0.086445, 1.666444, 0.143803, 1.704894, -0.475500, -0.366486, 0.211542, 0.567884, -0.129356, 1.435244, 0.020772, -1.131476, -0.089181, -0.309321, 0.077059, -0.672087, 0.572843, -0.163259, -0.978702, -1.446526, -0.625613, -1.318081, -0.721298, -0.680078, 1.847799, -0.418294, -0.602874, 1.158229, 0.769679, -0.606297, 0.876627, -1.911764, 1.578822, 0.407763, -0.198504, 1.127478, -0.601356, -1.128093, -0.897507, 0.055020, -0.695643, 1.936208, 0.163776, -0.369722, 0.344532, 0.849090, -0.630274, -2.283234, -0.053299, 1.062097, 1.169596, -0.932489, -0.064371, -2.070770, 0.928290, -0.180465, 0.217732, -0.992157, -0.635478, -0.252806, 0.405256, -0.199592, -0.824726, -0.154464, -0.119519, -1.748641, -1.031692, 0.703265, -1.448966, 0.341707, -0.260722, -1.580059, 1.958296, -1.667620, 0.232777, -1.208156, 0.596980, 1.496026, -0.153971, 0.835032, -1.623652, -1.084719, 1.161023, 0.818291, -0.194181, 0.883238, -0.164320, -0.234377, -1.062249, 1.789353, -0.455813, -0.767958, 1.205597, -1.272696, 1.768498, 1.000642, 0.492871, 1.984776, 0.446479, -0.718084, 1.936141, 0.187449, 0.227080, 1.082278, 0.178257, -0.727150, 0.152735, 0.588750, -1.347089, 0.267602, -1.589438, -0.242205, -0.348296, -0.447812, 1.332005, -0.109987, 0.713350, 1.959988, 0.886860, -1.367260, 0.315042, -0.217964, 2.561946, 1.039628, -0.648836, -1.121465, -0.972995, 0.898369, 0.700193, 0.015627, 0.463744, -0.852181, 0.437625, -0.115093, -1.762941, -1.951170, -0.403873, 0.692655, -0.592486, 0.675800, 0.695697, -0.808606, -0.666883, 0.876165, 1.473400, 0.383658, 0.018461, 2.639049, -0.589383, -1.338700, 0.017713, -0.211562, 0.906365, 0.668441, 0.775710, 1.200767, 0.430085, 1.031541, 0.051452, 0.433621, -0.046206, 0.244739, -1.009615, -0.274276, -0.150335, -0.817762, -0.078315, 0.678624, -0.460352, -0.995724, 1.225914, 0.245840, -1.384803, 0.158079, -2.820754, -1.238687, -0.259432, 0.556390, 0.430531, -0.764754, -0.008340, -0.218249, 0.378924, -1.186254, -0.370347, 0.356590, -0.541068, -1.056414, -0.178890, 0.172732, -0.220900, 0.057519, 0.052452, -0.880049, -1.181674, -0.359520, -0.319118, -1.826494, 1.781046, 1.167557, -1.682008, -2.172502, 1.150669, 2.226176, 1.164139, 0.016495, 1.215782, 0.756317, -0.134769, -0.556952, 1.902740, 1.371228, -0.049627, 1.394635, 2.187705, 0.215410, -0.711373, -0.317358, -0.042612, -0.628702, 1.252396, 0.590713, -0.509766, -0.357739, -1.272660, 0.614505, -0.785269, 1.686853, -0.817846, -0.245070, -1.540112, -0.638239, -0.140424, 1.447841, 0.180816, 0.570393, 0.732703, -0.645269, 0.045402, -0.816230, -0.157526, 0.356127, 1.551203, -0.054277, -0.514000, -0.061724, 0.746154, 0.066489, 0.281339, 0.753759, 0.644522, 0.636840, 0.951156, -0.867456, 1.764249, 0.065511, 2.010101, 0.461107, -0.422423, 0.115251, -1.428685, 0.066474, 0.780328, 0.982491, -2.252636, 1.380864, 1.385895, -0.585753, 3.060201, 0.495925, 0.257784, 0.317770, -0.724218, -0.027689, 1.005678, 0.887670, 1.887434, -0.769505, -1.215669, 0.340487, 1.799093, 0.871864, -0.661876, 0.071821, -1.227728, -0.622969, -0.357377, -1.978369, 0.303017, -0.239514, -0.084570, 0.116498, 2.666832, -0.448812, 0.804166, -0.023746, -0.507447, 1.118932, -0.347776, -0.073723, 0.740973, -0.336018, -0.549698, 0.568777, -1.881742, 1.239304, 1.367368, 0.702300, 0.272692, -1.077847, -1.121986, -0.017198, 2.111832, 0.526122, -0.580326, 0.025489, 1.342631, 0.065291, 0.656574, -0.218764, 0.626640, -0.116426, -0.834598, 0.547881, 0.968269, 0.166072, 0.674785, 1.209617, 0.274679, 0.751307, 0.964807, 1.228521, -1.255558, 1.084980, 0.019804, -1.449037, 1.159229, 0.954614, 0.092146, -0.280054, -0.519465, -1.926053, -0.061965, 0.169230, 0.850119, 0.519686, 0.372584, -1.370726, -1.197251, -1.824408, -1.072567, 1.134980, -0.503332, 0.829760, 0.133400, -1.139958, -0.655918, 0.007764, -0.278091, -0.668253, -1.296406, -0.142673, 0.277825, 0.792285, 0.246248, -0.983226, -0.497304, 0.063856, -0.729541, -0.515812, 0.381771, -0.128081, 1.189037, 0.543374, 1.755209, -0.659257, -0.156564, -1.219527, -0.748285, -1.414362, -0.206548, -0.768475, 1.753264, 0.433693, -0.456829, 1.305124, 0.944325, -0.304434, 1.567057, 0.389593, -0.805715, 0.288141, 0.001073, -0.866277, 0.856254, 1.005045, -0.575004, 1.255241, -1.267135, 0.827891, 0.627456, 0.290053, -1.751737, -0.228863, 0.877419, -1.028292, 0.207357, 1.051466, 0.473822, -0.350145, -0.227565, -0.529510, -0.163023, -0.875734, 1.733327, 1.450800, -0.170262, -1.058933, -0.907097, -0.141974, -0.458068, -0.519686, -0.325724, -0.745580, -0.534122, 1.485114, 1.081691, 0.275739, -0.601219, 0.769657, -0.416320, 0.142507, -2.762656, 1.144743, 1.180477, 0.181053, 0.074636, -0.796548, -0.186655, -1.881362, -1.085970, -0.509258, -0.606819, 0.938280, 0.124097, -0.373066, -0.661267, 1.230995, -0.385835, -1.383469, -0.035172, 0.219884, -0.257441, -1.043364, -0.169221, 1.232250, 0.528677, -0.353701, 1.476772, 2.518705, 1.523314, -0.769814, -1.381941, 0.068797, 0.872599, 0.021330, -1.554189, 0.174941, -0.817998, 0.192949, -0.193834, 1.352635, 0.126426, 0.541882, -0.822730, 0.473513, 0.926315, -0.320130, -0.254830, 0.755312, 0.361027, 0.196379, 1.042954, 0.904753, 0.696622, 1.640117, 3.010218, -2.193397, 0.534677, -0.772548, -2.197632, -1.020278, 0.407861, 0.414727, 0.042747, 0.139400, 0.735074, 0.453214, -0.200430, 1.245677, 0.734763, 1.204037, 1.591414, -0.335526, 0.194340, -0.779917, 0.883076, 0.049662, -1.339622, 1.806029, -0.075693, -0.450085, -1.486220, 0.098281, 0.205562, -0.621085, -0.503952, 0.351056, 0.194712, -1.131180, -0.063038, 2.202519, 1.897910, 0.037346, -0.961491, 0.250592, -0.583878, 0.217716, -0.096137, -0.613621, -0.436752, -2.161181, 0.331355, 1.346340, 0.716746, -0.834276, -0.333817, 0.204897, 1.152756, -0.567320, -0.247394, 0.010408, -0.114000, 0.099380, -0.872770, 0.278929, -1.660458, 0.989818, 1.567889, -0.844155, -1.212154, -0.085480, -0.273551, -2.041399, 0.660285, 1.663567, 0.054955, 0.855375, -0.587682, 0.409303, -1.572726, -0.388262, 1.008047, 0.130382, -1.128315, -1.155455, -0.916014, 1.614258, 0.320916, -1.448536, 1.034356, 0.978944, -1.461521, -2.289691, 1.578304, 0.420726, 0.891065, -1.493227, 1.011295, -1.078855, 1.048173, 1.239733, 0.640246, 0.227257, -0.257930, 0.478270, -0.433540, 1.573823, -0.065773, -0.416057, -1.590933, -0.450791, 0.046318, 0.445231, -0.215918, 0.151527, -0.237031, -0.494039, -0.164976, 0.924101, -0.206761, 1.449285, -0.427534, 0.632189, -0.247537, -1.298990, -1.342565, 1.100166, 1.377972, -0.356412, 0.637115, -1.091612, -0.245056, -0.362218, -0.200866, 0.091204, 0.544847, 1.106568, 0.507441, 0.827890, 1.258804, -1.941600, -0.881314, 0.527156, -1.086383, 0.271413, -0.901657, 0.696029, 0.417992, 0.979525, 1.042010, -1.030698, -1.874807, 3.398919, -0.641428, -1.746851, 2.144200, 0.192693, 0.571218, -1.680415, -0.052169, -0.248896, -0.306711, 0.863894, -0.523245, -0.196574, -1.166822, -2.152000, -0.149223, -0.228715, 1.210455, -1.129504, -0.704782, 1.341994, 0.954814, -0.702368, 0.981207, 0.504292, -0.347149, -0.412695, -0.054337, -0.024363, -0.988587, -0.573520, -0.144234, -1.464112, 0.813837, -0.076591, -0.411887, 1.149100, -0.962143, 0.430304, 1.755473, -0.214532, 1.147916, 1.014250, -0.906121, 0.475568, 0.498543, 0.085289, -0.700405, -1.309766, 1.146371, 1.108562, 0.612347, -1.180042, 0.370103, -0.507015, -0.293970, -0.186250, -1.140048, -1.273633, -0.168196, -2.000909, -0.451467, -0.100563, 0.279401, 0.849988, -0.013809, 0.248252, 0.832523, 2.201352, -0.740547, 0.760130, 0.314832, -1.518040, 0.466491, 1.268121, 1.333187, 0.623572, 0.253644, -1.829596, -0.245294, 0.458871, -0.980105, -1.471228, -0.376917, -0.297523, -1.094802, -1.839626, 1.981950, 1.287344, 1.422106, 1.168553, 0.237041, -0.859686, -0.631022, 1.334355, 2.119022, -0.707684, -0.249415, -1.200882, 1.242370, 0.049691, -1.020185, 0.122966, -1.275383, 0.957110, 1.405397, 1.703356, 0.882804, -0.089679, -0.877427, -1.109126, 0.380792, -1.685032, -0.033966, -1.091904, -0.138151, 1.009477, -2.220388, 0.032645, 0.544454, -0.599903, -0.907719, 0.567989, 0.269712, -0.513824, -1.126466, -0.271517, -1.188455, 0.936433, 1.120812, 1.377916, -0.276338, -0.026779, -0.154409, 1.794437, 0.117785, -1.227497, 0.165788, 0.396939, 1.903204, 0.096561, 1.512436, 0.040895, -0.146897, 0.741428, -0.028302, -0.170163, 1.651506, -1.360639, 0.537423, 0.437283, -0.278803, -1.324650, -0.976932, -0.276450, -0.978670, -1.976231, 1.193017, -0.752801, 0.088483, -0.563669, 1.415742, 0.383571, 1.978561, -0.810498, 2.032773, -1.256114, -0.723276, -0.181050, 1.213796, 0.163981, 0.734518, -0.225810, 1.000340, -2.509578, 2.372815, 0.309886, -1.332610, -0.277844, -1.120238, 0.207199, -0.322332, 0.877200, 0.668735, 1.183866, -0.383187, 0.034996, 0.021170, 0.395998, -2.275283, 0.600536, -0.490011, -0.860737, -1.934725, 0.763329, -0.036843, 0.117915, -0.427276, 0.138674, 1.466570, 0.666265, -0.708103, -0.053743, 1.731860, 3.368065, -0.186848, -0.849061, 0.128535, -0.181701, 0.645400, 0.472349, -0.756277, 0.361928, 1.036846, -0.245113, 0.800314, -0.030196, -2.445163, -0.609551, -1.066292, -0.639986, -0.060376, 1.058545, 1.555088, -0.144319, -0.888315, 0.803384, -0.084323, 2.055458, 0.405981, 0.815759, -1.047926, 0.517240, 0.377259, -0.946853, -0.504865, 0.209505, 2.288201, 0.173619, 0.497703, -1.621674, -0.752915, 1.134102, 0.544574, 0.432113, -0.943979, -0.186731, -0.706785, -0.081770, -1.146737, -0.788218, 1.182414, 0.663943, 0.008436, 0.370637, 0.191173, 0.497074, 0.609104, -0.794619, -2.050091, 1.608134, -0.010504, -0.630989, -0.293492, -0.788311, 1.608822, -1.264485, 0.378428, -1.461977, 0.870693, -1.323739, -2.027706, -0.270420, -0.020569, -0.094163, 0.604453, 0.514551, 1.309150, 0.300110, -0.132355, -1.037283, -0.601923, 1.373913, 1.836320, -1.925639, -0.447010, -1.165429, -0.575455, -0.654843, 0.222102, -1.637068, -0.386336, -0.062709, 0.469046, 0.360834, 0.885365, -1.140781, -0.660643, 1.349843, -1.142633, -1.573966, -0.581078, 0.203327, 0.173475, -1.543451, 1.253947, -2.360781, 0.052113, 0.054256, 1.489929, -2.319850, -0.875172, 1.052834, -1.168659, 1.203849, 1.873580, -1.304988, -1.195347, 0.074933, -0.819237, 0.225344, 0.878967, 1.709015, 1.049806, 1.288809, -1.032700, 0.086863, -0.946706, -0.818545, 0.872467, -0.237770, 0.155820, -1.304577, 1.636670, 0.151133, 0.967993, 0.110881, 0.150877, 1.484445, 1.121276, -0.118021, 0.608817, 2.357328, -1.016401, -0.469376, -0.550390, -0.409004, -1.288844, -0.022064, 1.322211, -0.179143, -0.222284, 0.297379, -0.227155, 0.767312, 0.742179, -0.178157, 1.907347, -1.488104, 1.752610, 0.309048, -0.687354, -1.591249, -0.066197, -0.632987, 0.156538, -0.092357, 0.657221, -0.968431, 0.013441, 1.566867, -0.779775, -0.102937, 0.187588, -0.239708, 0.514408, -0.892555, -2.006233, 1.823657, -0.516750, -2.148337, -0.790337, -0.606263, -0.473256, 1.168875, -0.090796, -0.455657, -1.093990, 1.394264, -0.037004, -0.973671, -0.703020, -0.391457, -0.883238, -0.865456, 0.194524, 0.277050, 0.197426, -2.719405, 0.999210, -1.911888, 0.768931, 0.893925, 0.798184, -0.483811, -0.109018, 1.789914, -0.732209, -0.197841, -1.148164, 0.600628, -1.104373, 0.493309, -0.578877, -0.014371, 0.244305, -1.305085, 1.323745, -0.604934, -0.431943, -1.869939, -0.342695, 0.273983, -0.637892, 0.625504, 0.060483, -0.375854, 0.481039, -0.465637, -0.493322, 2.078899, 0.965049, -1.873762, -1.398574, -1.103456, 0.023818, -0.048828, 0.499922, 1.103808, -0.407019, 0.234889, -0.290098, -0.280004, -0.255307, -1.155633, 1.745537, -0.877842, -0.153193, 1.243263, 0.414363, 0.235606, 1.926401, -1.345772, -1.537519, -0.164772, 1.319398, 0.237318, 0.387374, 0.156613, -2.544656, 1.487631, 0.696228, -0.631754, 1.044520, -0.405275, 0.442023, 1.095049, -0.476201, -0.765776, 0.969635, 0.581589, 1.887556, -0.774355, -0.087189, -1.963782, -1.440028, 1.664002, -0.453721, -2.270548, -0.133651, 1.859609, -0.091845, -0.303762, 1.874308, -0.532028, 0.968764, -1.352737, 1.735034, -1.853280, -0.311987, -1.361894, 0.162358, 0.843325, 0.860413, -0.027289, 0.627408, -0.435320, 0.282668, 0.048371, 0.703496, 0.742708, 0.124144, -0.204005, 0.829737, -0.612569, -0.464114, 0.937625, -0.369567, 2.200452, -0.926200, -2.153710, -0.903290, 1.360621, 0.382107, 0.161709, 0.122960, -1.003582, -0.105325, -0.923724, 0.092264, 0.224534, -1.563664, 0.824365, -0.955211, 0.363359, -2.580325, 0.973050, -1.143877, -1.238295, 0.763985, -1.921105, 0.683867, 1.187746, -0.038994, -0.178769, 0.315576, -2.251306, 0.634587, -0.031517, 0.665309, 0.586579, -0.391361, 2.723842, 0.173339, 0.870107, -0.129691, -1.586291, 0.012321, -2.054189, -1.348105, -0.047760, 0.648424, -0.617658, -0.555565, 0.269593, 0.378318, -0.771060, -0.035391, 0.553282, -0.554301, 0.189406, 0.020271, -0.363177, -1.372483, 0.136119, 0.310903, 0.536777, -0.664214, 0.266679, 1.377958, 0.951877, -0.505270, 0.966229, -0.165921, -0.678581, -0.292191, -0.452764, -0.471618, 1.581310, 2.239947, -0.475507, -1.166860, -0.226614, 0.330568, -0.599378, -1.029070, -0.740106, -0.991834, -0.838594, -0.286063, 0.087952, -0.578373, 1.139414, 1.418043, 0.528983, 0.813993, 0.517582, -0.440381, 1.033115, -0.499338, 1.714287, -0.184252, 0.410220, 0.155704, -0.087856, 0.197838, -0.204555, -2.190064, -0.393011, 0.180747, 1.506584, 0.310229, 0.209610, 0.208258, 0.920001, -1.320895, 1.235602, 0.875701, 0.506555, -1.510092, 0.536531, -0.756404, -0.366492, -1.553902, 0.671268, 2.275665, -1.315565, -1.990081, -2.434534, -3.003460, 0.187586, 0.024793, 1.967721, -0.615093, -0.991161, -1.947062, 0.901306, -1.009685, -0.208878, 0.389756, -0.808893, -0.183898, 2.358423, -1.266086, 1.458911, -0.997851, -1.573394, -0.739068, -0.977383, 0.027170, 1.028018, -0.915064, 1.518475, -1.839727, -1.588492, -0.319333, 2.604299, -1.544695, 0.623290, 0.478191, 0.479097, -1.104491, 0.117296, -0.278895, 0.239931, 1.488080, -0.623504, 0.123458, -1.262306, -0.923429, 0.411504, 1.373551, -0.528096, -3.115369, 0.459906, -1.543553, -0.795593, -0.983580, -0.693758, -0.718482, 0.792452, 0.183048, -1.986654, 1.163537, -1.924302, -1.021194, -0.226743, -0.057445, -0.371688, -0.000038, 0.455770, -0.803171, -0.352188, 0.427768, -0.671950, -1.397304, -0.228509, 0.243365, 1.662694, 0.321892, -0.629543, -1.920191, -0.212265, 0.168026, -0.417266, -0.202305, 0.341350, -0.817676, -0.077210, -0.016715, 0.786514, 0.259231, 0.682989, -0.400077, 0.193763, 1.432670, 0.273162, 0.438181, -1.117096, 0.279743, 0.195410, -0.492454, -1.365304, -1.138301, 0.013034, -0.808158, -0.133111, -0.433158, -0.622648, 0.269748, 0.380002, 0.502397, -0.209955, -0.469299, 0.302911, -2.705736, 1.482955, 1.012440, 1.327509, 1.845529, 0.059318, -1.288721, 0.440556, 0.132143, -0.177198, -0.020683, 0.011311, 1.007897, 0.476104, -0.954094, 1.032277, 0.854230, 0.372054, 1.306225, -0.264705, 1.803049, 0.219990, 1.237412, 0.903214, -1.408900, -0.868558, -1.045087, -0.270156}, - { -0.124556, 0.214732, -0.475685, -0.003755, -1.551845, 0.290485, 0.084813, 1.064142, 1.780594, -0.330511, 1.763450, 0.159717, -1.646925, 0.106462, 1.850661, -0.907728, 0.754688, 0.495498, 0.122055, 0.411446, 1.280869, 1.408719, -0.592297, 0.896132, 0.026837, 0.537325, 0.488521, -0.815213, 0.227998, -0.938928, 1.533882, 0.665805, 0.936838, -0.234686, 0.044656, -0.022932, 0.095962, 0.062116, 0.372148, 0.206869, -0.605317, -0.078986, -1.407345, 0.231873, -0.409335, -0.664240, 1.447953, -0.698160, 3.335412, 0.870955, -1.260834, -0.091863, -0.084850, 0.640673, 0.307444, -0.835049, 0.962834, -0.829647, 1.960242, -0.901437, 0.859880, -1.852758, 1.278928, -0.343956, 0.348270, -1.865621, 2.482861, 0.401716, 0.751886, -1.002222, -1.551203, 1.795758, -0.730999, -1.448246, -0.229022, -0.272483, 0.243393, -1.314431, 1.394117, 0.212025, 0.192108, -1.697462, 1.551802, 1.046398, -1.361587, 0.118674, -0.381348, 0.714766, 0.195474, 0.252701, -0.210753, 1.251111, 2.910465, 1.097646, -0.122490, -2.049957, 0.060060, -0.156807, -0.529914, 1.513162, -0.269578, 0.571004, 1.423364, -1.229091, -0.293224, 0.286141, 1.370368, -0.513470, -0.557197, 0.027631, 0.133527, -0.101162, -0.009544, -0.931478, 0.353155, -1.475984, -0.578765, 0.475901, 0.223068, -1.491776, 0.640581, -0.263308, -1.103687, 0.692428, 1.419664, 0.892742, -2.005419, 1.660345, -0.884437, 2.003043, -0.234451, 0.595339, 0.410456, 1.365405, 0.240031, -0.414562, -0.396543, -0.065898, -0.193108, 1.200651, -0.778109, -0.767686, 0.988285, 0.402860, -0.557806, -0.853069, 1.292825, 1.614735, -0.785408, -0.804496, -0.550633, 1.237612, -0.119418, -1.048116, 0.816668, 0.071597, -0.760067, -0.024247, 0.530724, 1.998850, -0.623444, -0.495789, -0.728117, 1.136157, -0.415790, 0.612050, -1.638522, -0.062055, 0.806061, 0.300774, 1.158025, 0.726819, 0.419197, -1.660878, 0.858088, 1.481711, -0.101485, -0.530590, -0.035412, -0.750298, 0.900485, 1.486717, 0.038184, 1.076900, -1.209982, 0.296408, -0.860844, 1.262837, -1.931212, 0.672062, 2.367405, -1.164733, -0.318571, -0.483524, 0.459769, -1.118972, -0.342848, 1.202205, 0.486918, 1.526388, 0.889725, 1.149997, -0.430029, 0.376025, 3.149772, 2.023580, 0.374976, 0.187981, 0.795106, 0.258165, -1.291416, -0.533949, -0.124301, -0.522019, 1.478513, -0.604373, -1.432819, -0.243765, 0.662953, -0.906332, -0.004578, -2.471117, -0.833055, -1.219079, 0.212340, 1.859250, 1.206218, 0.192215, -1.285447, -0.213471, 1.224513, -0.859124, -0.695230, -0.500472, 1.173397, -0.117129, 0.360284, 0.220255, 0.333413, 0.675134, -0.047669, -0.387372, 1.440709, -0.785724, 1.034797, -0.805795, 0.260910, -0.747421, -0.417968, 0.660365, -0.096735, 0.236975, 0.100046, 1.609320, -0.612572, -0.240876, -0.099845, 2.752326, -0.302302, -1.082565, -1.688467, 0.038791, -0.723517, 0.836125, -1.350985, 0.729227, -0.373164, -0.701913, -0.379932, -0.093915, -2.051312, 0.404109, 0.836971, 1.540677, 0.085790, 0.689076, -0.607341, -0.572421, 1.667701, -2.021840, -0.136856, -0.735925, -0.024302, -1.329776, -0.820792, 1.854717, -0.024481, 0.101076, -0.785774, -0.365410, 0.042571, -0.297230, 0.798715, 0.385450, -1.250740, -0.048449, 0.007554, 0.663689, 0.662752, 0.308399, 1.184945, 0.583256, 0.003352, -1.979616, 0.616051, 0.806489, -0.779062, -1.088973, -0.216438, 0.397105, -1.526621, 1.138214, 2.184197, 0.065824, -1.038327, 1.046104, -0.632096, 0.736100, -0.021066, -0.652877, -0.729231, -0.657829, -1.290562, 0.697807, 0.279240, 0.289866, 0.117573, -0.118003, -0.417927, -0.601012, 1.120439, 1.271690, -0.432336, -0.156383, -0.064426, -0.348522, -1.494706, -0.218396, 1.389066, -0.524989, 0.031994, 2.223101, -0.313071, -1.175229, 0.503698, -1.903233, -2.279456, 0.465461, -0.497311, -0.095432, 0.079771, -0.124652, 0.184967, -0.793246, -0.936887, 1.523089, -1.027867, -0.765387, -0.402405, 0.032419, 0.069341, -0.083108, -1.212047, 0.069437, 1.285615, -0.824335, -0.634190, 0.534955, -1.487075, -1.388754, -0.230385, -0.106416, 1.100100, -0.682561, -0.718692, 1.161490, -0.891574, -0.254596, -1.607980, -0.785684, 0.822982, -0.117902, -1.085879, -1.673469, 0.746334, -1.017921, 0.452566, 0.801144, 1.102851, 0.333506, 0.853609, 0.605417, 0.054769, -0.831675, -0.253099, 0.536466, -1.158812, -0.237043, 1.909930, 0.524417, -0.029045, -1.427767, 0.089708, -0.433114, 1.476551, -0.306867, -0.642571, -1.126997, -0.873396, -0.277359, -0.999856, 0.054863, 0.603877, -0.704717, 1.398580, -1.293804, -0.021676, -0.728282, 0.000341, 1.858945, -0.399946, 0.761750, 0.713962, -0.815401, -1.246949, -0.290712, 0.057757, -0.992989, 0.296043, -0.496273, 0.005757, 1.039500, 0.144973, -1.478988, -1.025327, 0.669251, 1.142326, -0.955892, 1.896616, -0.251807, -1.062911, 0.775867, 0.899093, 0.734023, 0.274711, 0.331019, -0.318289, -1.105881, 0.274094, -0.659667, 0.814517, 1.101066, -0.420062, 0.444412, 1.941795, -0.080213, -0.929138, -0.805259, -0.919051, 1.173050, -0.597020, 1.918823, 0.936452, -0.106886, 1.379318, 0.594719, 0.491022, -0.929728, -0.398663, 1.142565, 0.276807, 1.005901, -0.245142, 1.116563, -1.690943, 0.569288, -1.085292, -0.475897, -0.813621, 2.081917, 1.298205, 0.798231, 0.114789, 0.997470, -1.448101, 1.206036, 1.076599, 1.020118, -0.119822, -1.168915, -0.018358, -0.025953, -0.288002, -1.597011, -1.090315, -0.783672, 0.381058, -0.520627, 0.417752, 0.145083, -0.175108, 0.715159, 1.525393, 1.315036, 0.201650, 0.398830, -1.625843, -0.434306, -0.511978, -1.309002, -1.046297, -1.010623, -0.093374, 0.853805, -1.538929, -1.277129, -0.819305, 0.173539, -0.351919, -0.322774, 1.715311, -1.552179, -1.246247, -0.937346, 0.513066, -1.188081, 0.503276, 1.431313, -0.906037, -1.209430, 1.842265, 0.855947, 0.209670, 0.045423, -0.459216, 1.359160, 1.172179, 0.139677, 0.975699, 0.498079, 0.628391, 1.157151, -1.598262, 0.153501, 0.662128, 0.706682, -0.550672, 0.771564, 0.907013, 1.268376, -0.632004, 0.617584, -0.458430, 2.085585, -0.008046, -0.210887, 0.396583, -0.734302, 0.097747, -1.744962, -0.789943, -0.157987, -0.190494, 0.070852, -0.601011, -0.317571, -0.124127, -1.890930, -0.284864, -0.520676, -1.146291, -0.919355, 0.651292, -1.787168, 0.882431, -0.351980, -2.669798, -0.430740, 0.561496, -0.581550, 0.078186, -0.178902, 0.607134, 0.842264, 0.327635, -1.217835, 0.205561, -1.942389, -0.056853, -0.537946, -2.262090, -0.066176, 1.324403, 1.128981, -1.797952, -0.989625, -1.575181, 0.145158, 1.175949, 1.494624, 1.120458, -0.998547, 1.995705, 1.089385, 0.548776, 0.282457, 1.330262, -0.174400, -0.204203, 0.161817, -0.264929, -0.461986, -1.626783, 0.391523, 0.145890, -1.754169, 0.296589, -0.612268, 0.153805, -0.861908, 1.438167, -0.674448, -0.327895, -2.062997, -0.289202, 1.176646, 0.323835, -0.830045, 1.408956, -0.751730, -0.316489, -0.158235, -0.368825, -0.277708, 0.197704, -0.817506, 0.558676, -1.413840, -0.711814, -0.597066, -0.674612, 0.367378, -0.968266, 0.667102, 1.117752, 1.586125, 1.565250, 0.144219, -0.695463, -0.290525, 2.881412, 0.015000, 0.639978, -1.080645, -0.783334, 0.515186, -1.398020, 0.373036, -2.158046, -0.254884, -0.605621, 0.802108, -0.126641, 0.938277, 1.376617, -0.718748, -0.842720, 0.381600, -1.215405, -0.827983, -0.059611, 0.196732, -1.650873, -0.084782, -0.185829, -0.487551, -0.463072, -0.259181, -0.103362, 0.537078, 0.014879, 1.135703, -2.041666, 1.979608, -1.603868, 1.507785, 0.953596, -0.377685, 2.613216, 0.650664, -0.437154, 0.254299, -0.429017, -0.557572, -1.633633, 0.576717, 0.534072, 1.159335, -0.427657, -1.118196, -0.012284, -0.186427, -0.691040, -0.730078, 0.075365, -1.132984, -0.190870, 0.406804, 0.207879, -2.294693, 2.152850, -0.467270, 0.942535, 0.032904, -1.564979, 0.675052, 1.961251, -0.453044, -0.820623, -0.294431, -0.451907, -0.265416, -0.631487, 1.066984, -0.338139, 0.333483, 0.243287, -0.247070, 1.720912, 0.983091, -0.056447, 0.692842, -1.604852, 0.306966, -1.017264, 0.290449, 0.455763, -1.414400, 0.297050, 0.592006, -0.383773, 0.930126, 1.519644, 0.596109, -1.209475, -1.261013, 1.107478, 0.062156, -1.135464, -0.968872, 0.164482, -0.784653, -0.629053, -0.354562, -0.777726, 0.810718, -0.565584, 1.122523, 1.361012, -2.056448, -0.553321, 0.866706, 0.667344, -0.793330, 0.323302, -0.120487, 0.150663, 1.007660, -0.071390, -0.108765, 0.022239, -0.575841, 0.630777, -0.177022, -1.483497, 0.638667, -1.501063, -0.805663, -0.224633, 0.987011, -0.741495, -0.381262, 0.325782, -0.352854, 0.565832, 0.563500, -0.537951, 2.486304, 0.465521, -0.588733, 0.035477, -0.242992, -0.428474, 0.708396, -0.056116, -1.068553, 0.159806, -0.439672, 0.550554, -2.380432, 1.804097, 0.128071, 0.754179, -0.447299, 0.694061, 0.516008, -0.989336, -2.064580, 0.111212, -0.408785, 1.179455, 1.168253, -0.333812, -2.679116, -1.028988, -0.106062, 1.643627, -0.292608, -0.540806, 1.311380, -0.574682, -0.018146, -1.784798, 1.172512, 1.580119, 0.363252, 0.230218, -0.541092, 0.069216, -0.342713, -1.048313, 0.356980, 0.746783, -0.256746, 0.449411, 1.622351, -0.634571, -0.545241, 0.381035, -0.291517, 0.040134, 0.622269, 1.027205, -1.421924, -1.890758, 1.668177, 1.108259, 0.960238, -0.296446, -0.629126, 1.326619, 1.021395, -2.145787, -0.285352, 0.566308, -1.366336, -0.407285, 1.453667, -0.413106, 0.929902, -0.048213, 0.612840, -1.548366, -0.418754, 0.418942, 0.869369, -0.111274, 0.065392, 0.165834, 0.143857, 0.314177, -0.708972, -1.262740, -0.330130, -1.789362, -0.870849, 1.972676, -1.296305, -0.337860, -0.926449, 0.040697, 0.024703, 1.511723, -0.256754, 0.424117, -2.056355, -0.349122, -0.038793, -0.334562, -0.435336, -0.403743, 0.634943, -0.071141, -0.067210, -0.468274, 0.523411, 1.230742, -0.516104, 0.811010, -0.587272, 0.489719, 0.428672, -0.691886, 0.966198, -1.073430, 0.139791, -0.335730, 0.359905, -0.681301, -0.755568, 0.402569, -2.042570, 0.214874, 0.366972, 1.374920, -2.773028, 1.356821, 0.001218, 0.307316, -1.078310, -1.695454, 1.530202, -0.673198, 0.227762, 0.721745, -0.272509, 1.356354, -0.612329, -1.385841, -0.359150, -1.587610, -2.609899, 0.765939, 0.403686, -1.345989, -0.016400, -0.782035, -0.068772, -0.563583, -1.512323, -0.802373, 0.846235, -0.676507, -0.411770, 1.204343, 0.466326, 2.791710, 0.178031, 1.023895, -0.194968, -1.675175, 0.164688, 0.990177, -0.791173, -0.047906, 0.066020, -1.862855, -1.359542, 0.836239, -0.176627, -2.052211, 1.159254, -0.110586, -0.535847, -0.725505, -0.043446, -0.883788, -0.741774, -0.446175, -1.080935, -0.146795, -0.372000, -0.545105, -0.413078, -0.415851, 0.804739, -1.245653, -1.058451, -0.818105, -0.064762, -1.002594, -0.408039, -0.866596, 0.543270, 0.828634, 0.225722, 0.419858, -1.183411, -0.892608, -0.503698, 1.093961, -0.887446, -0.344446, -0.320414, 0.648191, -0.238688, -0.545827, 0.174564, -1.884116, -0.206660, 2.030400, 1.183137, 2.163397, 0.479257, -0.334608, 1.057730, -0.243829, -1.786532, -0.452534, 2.139789, 1.696456, 2.233223, -0.757544, 0.582066, -0.874874, 0.135934, 1.248448, -1.150499, -1.198146, -0.408667, 0.091871, -2.181645, 0.140551, 0.125460, 0.994109, -0.657229, 1.252808, 1.307662, -2.303020, -0.133937, 2.735802, -1.506595, -0.902908, 0.598781, -0.259200, -0.739598, -0.971033, -0.191418, 1.915108, 0.188066, 0.613548, 0.880680, -0.567797, 1.113599, -0.228490, -0.856571, -0.709118, -0.324824, -0.762390, 1.076884, 1.017765, 0.086270, 1.181267, -2.207183, 0.657843, -0.801405, 1.974467, 1.020810, -1.811095, 0.188050, 0.038996, -0.237017, -0.546838, 0.958459, 0.981209, -1.040830, -0.289389, 0.025209, 0.552407, -0.019490, -0.185065, 0.347340, -0.258149, 0.929790, 1.121788, -0.383434, 1.013352, -1.132277, -1.151446, 0.062418, -0.308587, -0.294004, 0.457512, 0.707404, 1.097272, -0.461449, 0.562656, -0.291580, 2.313274, -0.457785, -0.681476, 1.408637, 0.285265, -1.621723, 0.284824, -0.740783, -1.060114, 0.249114, -1.772057, 0.983641, 0.599315, -1.316473, 1.988788, 1.090292, 1.513413, 0.400976, -0.027280, 0.549917, 0.471572, 1.373071, -0.653361, 0.466708, -0.052620, -0.073322, -0.680658, 0.489331, -1.885395, 1.251539, 0.593031, -1.014345, 0.753572, 0.197509, 0.446290, 1.288177, 1.212358, 0.980768, 0.780476, 0.787523, -0.435219, -0.909224, 1.049510, -0.617111, -0.348352, 1.446409, 0.414974, -0.721153, 1.620298, 0.096506, -1.259982, 0.664118, -0.443832, 1.290849, 1.858972, -0.455368, -1.944236, -0.456144, -0.845723, 1.370862, 0.742908, 1.254573, -0.749793, -0.036196, 1.755142, -0.685936, -1.107264, -0.836196, 1.052430, -0.147071, 0.548983, -1.089857, -0.635970, 0.330474, -0.176892, 0.944300, 1.125057, 0.758845, -0.870518, -0.402911, 1.600570, -1.257928, -1.023360, 0.663575, -0.696277, -0.400817, -1.327128, 0.539098, 1.736591, -0.321577, -0.545796, 0.434284, -0.714456, 0.618137, 0.511372, 0.278212, -0.260021, 0.915341, -0.922452, 0.037292, 0.426179, 0.705869, 1.035049, 0.026599, 1.677043, 1.657345, 0.923044, -1.411100, -3.832237, 0.008010, 0.373282, 0.883514, -0.034189, 0.334271, -0.159206, 1.034732, 0.320248, -0.616155, 1.255802, -0.623626, -0.737680, -0.875783, -1.574785, 0.263765, -0.666912, 0.646696, 2.237981, 1.637003, -0.249799, -1.026068, -0.652068, 0.727805, -1.743778, 0.185351, -0.059293, -1.177505, -1.102831, 0.697480, 0.507852, -0.045236, -0.465180, 0.318554, 0.267656, -1.012823, 1.693587, 0.076736, 0.162081, -0.840275, 0.607198, 1.714491, -0.075592, 0.966025, 0.191240, 0.097275, 0.413008, 0.241719, -2.111725, -1.035877, 2.077765, -0.016953, 0.871715, 0.100560, 0.541924, -1.293770, -0.162740, 0.005407, 0.901538, 0.093142, 0.344972, -1.250350, -0.159083, 0.031903, -0.444135, 0.688179, 1.217298, -1.062174, -0.217747, -0.427113, -0.855284, 1.759428, 0.074507, -0.802393, 0.293451, -0.327369, -0.563558, 1.044823, 0.896199, -0.372447, -0.437880, 0.138788, 0.476211, 0.506663, -0.181221, -1.264109, -0.528839, -0.946731, -0.458235, 1.261515, -1.380901, -2.605806, 1.348817, 0.847604, 0.804814, 0.014878, 0.361055, -1.160617, -0.779195, 1.518698, 1.230783, -2.283942, 0.343663, -0.107100, -0.737299, 0.216103, -0.805411, 0.824130, -1.364841, 1.861787, -2.115733, 0.701171, -0.498939, 0.154625, -1.784520, -1.670132, 0.072219, 0.114108, -0.116636, -0.523063, 1.294796, 1.744407, 0.594212, 1.582234, -0.355617, 0.085229, 1.375400, -0.518462, -1.445663, 1.350187, -0.156895, 1.557601, 0.092361, -0.077288, 1.373156, 0.914879, -1.165836, -0.719149, -0.136050, -0.534955, 0.766915, -0.050572, -0.170610, 1.072980, -0.316467, -0.428878, -0.098019, -0.266370, 0.995632, -1.158306, 0.333018, 0.915557, 0.585576, -1.795874, -0.597102, 0.288074, -0.780558, -0.121593, -0.422456, 0.651376, -0.533608, -0.129734, 0.160401, -0.820242, 1.469957, 1.260974, -0.073573, -0.513647, -0.521365, -1.311475, -0.747555, -1.736958, 0.515721, -0.069416, -1.707808, 0.861408, -1.267705, 1.445141, 0.168282, 1.096348, -0.032258, 0.487565, -1.378492, 0.984394, 0.295189, -0.581293, -1.126321, -0.965170, 0.904861, -1.627988, 0.718193, -0.128275, 0.441543, -1.188704, 0.528057, -0.325109, -0.503576, 1.109411, 0.117337, -0.770917, 1.109915, -1.538171, -1.301114, 0.202651, 0.106116, -0.175800, 0.619204, 1.829062, 1.394035, -0.098988, 0.123457, -1.280059, -0.651270, 0.200186, -0.146245, -1.378196, -0.870654, -1.081427, -0.437840, -0.905927, -0.335555, -0.007978, -1.816853, -1.340287, -1.020128, 0.544799, -0.758345, -1.848817, 0.102965, 2.011129, 1.116329, -0.888418, -0.567218, -0.650773, 0.193882, -0.141545, -0.579191, 0.052989, 1.623450, -0.202421, 1.118551, -0.537210, -1.469557, 0.924297, 0.020956, 0.484929, -0.207247, 0.514712, 1.103358, 0.001177, -0.525153, 1.233094, -0.635913, -0.649243, 1.462223, -0.686829, 1.128536, -0.803818, -0.184998, 0.270263, 0.927053, -2.022480, 0.206045, 1.006607, 0.015428, 0.102861, 1.440047, 0.315756, 1.383134, 0.257763, -1.979327, 0.161625, -0.121104, 0.703871, 0.030053, -1.357377, 0.529402, -0.209974, -0.133984, 0.364779, -1.430084, -0.112340, -0.287188, -0.122642, 0.883928, -0.373543, 0.471797, 1.579353, 0.572610, 0.248064, 0.627978, 1.189376, 0.968811, 0.100968, 1.464239, 0.323001, 0.001922, 0.204583, 1.067669, 1.025336, -0.044850, -1.692197, 1.847710, 1.267234, -1.620949, -0.692003, -1.877843, 0.170211, -1.156007, 0.100961, -0.142167, 0.957809, -0.898717, 0.565431, 0.386347, 0.497924, 0.975725, -0.290307, -0.385659, -0.274842, 2.817502, 1.749468, 0.314457, 1.995306, -1.260524, 1.260217, 0.319917, -0.107772, -0.571743, -0.374177, -2.346767, -3.701163, -0.385988, 1.706604, -0.268029, 0.681639, -1.260063, -0.502416, 0.599105, -0.513001, 0.258413, -0.612485, 1.239879, 1.101319, -1.090047, 0.161688, -0.943966, 0.837877, -0.085611, -2.648102, 0.158742, -0.424351, 1.128505, 0.529096, -2.066522, 0.154007, -0.630589, 0.467402, -0.628746, 0.530201, 0.352529, 0.749033, -0.551184, -2.492387, -0.405858, 0.439029, 0.583280, 1.539024, 0.458645, 1.306940, -1.929151, 0.756864, 0.587704, 0.710589, -0.853597, 1.736809, -0.801042, 0.538108, -0.838605, 0.173434, 0.105998, 0.795775, -1.496930, -0.420346, 0.266893, -0.169787, -1.839956, -1.742866, -0.479910, 0.410828, -1.140694, -0.690392, 0.343315, -1.044437, -1.241186, 0.520850, -0.875228, -1.698586, 1.301165, -0.380026, -1.493971, 0.669261, 0.466058, -0.294756, 0.155520, 0.138254, -1.961680, 0.742914, 0.347212, -0.279362, 1.176827, 0.034865, -0.055329, -0.868841, 1.127957, 0.950364, -2.977225, 0.161512, 0.383668, 0.933197, 0.788786, 0.794875, 0.913040, -0.567714, 0.745576, -0.122633, -0.949421, 1.093675, -0.310490, 0.304520, 2.759228, -0.598371, 0.268793, -0.067396, 0.771450, -1.427038, -0.493772, -0.220780, -0.313156, 2.883943, 0.147233, -1.091275, 1.853781, 0.464963, -1.036713, 0.999920, 0.023326, -0.167619, 0.731841, 1.611902, 0.335417, 0.135229, -0.374251, 0.155828, 1.116370, -0.149655, 0.656955, 0.184027, 1.892442, 1.597349, -0.751827, 1.274067, 1.181018, 1.596015, 0.248309, -0.545003, -1.713966, -0.951092, -0.359620, 0.778025, -0.694317, 0.679964, -0.749977, -1.126008, -2.398620, -0.279269, -1.550496, -0.192556, 1.427267, 0.828476, 0.936609, -0.465418, -0.073531, 0.443348, 1.176055, -1.584841, -0.896934, 0.024355, -0.048658, 0.856792, -0.111085, 0.405076, -1.192463, -0.027935, 0.790964, -0.926888, -0.310886, -0.448039, -0.516360, -0.604700, -0.094143, 0.333861, -0.311795, 1.131255, -0.176567, 0.797273, 0.229303, -0.397290, 0.695944, 1.479155, -1.558551, 1.967325, -1.095525, -0.847723, -1.137966, 0.605955, -0.445466, 0.978939, -0.152505, -1.055603, -0.143988, 0.771586, 0.726765, 0.919972, -0.012515, -1.341406, -0.016560, 0.670849, -0.863836, 1.551746, -0.519147, -0.191495, -0.196949, -0.566305, 1.616965, 1.051764, 1.122878, 1.896729, -0.967552, -0.621959, 1.250674, -0.141358, -0.286530, -2.305885, 2.397047, 1.234361, -0.000481, -0.001546, 1.645498, 1.646374, -0.214856, -2.177384, 0.332065, 1.128000, -0.880155, 0.749936, -1.245540, -0.436007, -0.722076, 0.932980, -0.510917, 0.947311, -1.020211, -1.237462, 0.676312, 1.169495, -0.961555, -1.150385, -1.467081, 0.090576, 0.412152, -0.345900, -1.943398, 0.231390, -1.126427, -0.110403, -0.299365, -1.343542, 0.070518, -1.213746, -1.948285, -0.430098, 1.104704, 0.570656, -1.316857, 0.166003, -1.330528, -1.699090, 1.020340, 0.017074, 1.121869, 0.585611, 0.126813, 0.444190, 1.384652, 0.182754, 0.841823, 1.394185, -0.472243, -0.823611, -0.823375, 2.398123, -0.225179, 0.338163, 1.272070, -0.844961, 1.283233, -1.215489, 2.793196, 0.488079, -1.467792, 0.070271, -0.649087, -2.207076, -0.303574, 0.812287, -0.471858, -0.669357, 0.949947, -1.000990, 0.196791, 1.231420, 0.494419, -0.494974, -0.611909, 0.382722, -1.150502, -0.399735, -0.856167, -0.195031, 1.976696, -2.609494, -0.384130, 0.643403, 0.096395, -0.279943, -2.064576, -0.466337, -0.200146, 0.114344, 1.426532, 0.000527, -0.752574, 0.894544, -0.655629, 1.109187, -0.866218, -0.516024, 0.640022, -0.518555, 0.145864, 0.773181, 0.225581, 0.290538, 0.747641, -1.174569, -0.647270, -1.980715, -1.972549, -0.373698, 0.579239, 0.561119, -1.520669, -1.395047, 1.013265, 0.027813, -0.156359, -0.665146, 0.573089, -0.821151, 0.137131, 1.277774, -1.033218, 1.145000, 1.533029, 0.322583, 1.632788, -0.167658, 0.052905, -2.018619, -0.481707, -0.659924, 1.949958, -0.841278, -0.435364, 1.154726, 0.978961, 1.112133, 0.520385, 0.040436, 1.461085, -2.511556, 0.338614, 0.787096, 0.120330, 0.620896, -0.451394, -0.522217, -1.424278, -0.059059, 0.891092, 0.057211, 2.103189, -0.052520, 1.399019, -0.121249, -0.099928, 0.449735, -1.077104, -0.934913, -2.111855, -0.220665, -1.437807, 0.971195, -0.495310, -1.418799, 0.374201, -1.857120, 0.622335, -1.736548, 0.778899, -0.004125, -0.508303, -0.050053, 0.012916, -1.389756, 1.838392, 1.003756, -0.557629, -0.329985, -0.081035, 0.932347, -0.810706, 1.062518, 0.224968, 1.405744, 0.745647, -1.997574, 0.252469, -0.353212, 0.633688, -0.695673, 0.324678, -0.570519, -0.986554, 0.604292, -0.489062, 0.168370, 0.344445, -0.726769, -0.072534, -1.160619, -1.276769, 1.144912, -1.164568, 0.394456, -1.273124, 0.810511, -1.145871, -1.171945, 2.025588, 1.719475, 1.054481, 0.757027, -1.269937, 0.228416, -0.156074, -2.262204, 0.173409, -0.407751, 0.103071, 0.475066, -1.050379, -1.510848, -0.238104, 0.284706, 0.504880, 0.770080, -0.136400, 0.572330, 0.829604, -0.040399, -0.391842, -0.168304, 0.403776, 1.012514, 0.037916, -1.052998, 1.533547, 0.036985, 0.262151, -0.306815, 0.190909, 0.763127, 0.948737, -1.653135, -0.650829, 0.607049, 2.328665, -1.036538, -1.915372, -0.335898, -1.054629, -0.647564, 2.064487, -1.103924, 1.190822, -0.034968, -0.206577, -0.720869, 0.933140, 1.398061, 1.194782, 1.721316, 0.421452, -0.261041, -0.426014, 0.383200, -1.022142, -0.682805, 0.763092, -0.052450, -0.052127, 0.398723, 0.486852, -0.543223, 0.730223, 0.586764, -0.917056, -0.073443, -0.391036, 0.913963, 0.126772, -0.849941, 1.107111, -1.193883, -0.732857, 1.199895, -1.015222, 0.221759, 0.226034, -1.232783, 0.589265, -0.327667, 0.321114, 0.346832, 1.019846, 1.221999, 1.537736, 0.803042, -0.356546, 1.009670, 0.200623, 0.889767, -2.181979, 1.500390, 1.840137, -0.583186, 0.648864, -0.836413, -0.640562, -1.197309, -1.256311, 0.841414, -0.307614, 1.164824, 0.747089, -1.266735, 0.747264, 1.717242, 0.441949, 0.339690, 0.853023, 0.248407, -0.426098, 0.875694, -1.268495, -1.375267, 1.529163, -0.680222, -0.851567, 0.229538, -0.979576, 0.654135, 0.265722, 0.129227, 0.202677, -0.603778, -0.237018, 1.867644, -1.902437, 0.277132, 0.481365, 1.502165, -0.189917, -2.100104, 0.717783, 0.008972, -0.319309, 0.604783, 0.442692, 0.463905, -0.849629, 1.099183, 0.655235, -0.660627, 0.116045, 0.693271, 0.220451, -0.392222, 1.044933, 0.371334, -0.447102, -0.068173, -0.926980, -1.061302, 0.845635, 0.139445, 0.724504, 1.246881, 0.328783, 0.150668, -1.082396, 0.648875, 1.645309, 0.864821, -1.265298, 0.288567, -0.457901, -1.460030, 0.182971, -1.053223, -1.042254, -0.805499, 0.402352, -0.096270, -1.419052, 0.260306, -1.912350, 0.464357, 0.028771, 0.291029, -2.028773, -0.767735, -0.649982, -0.738791, 1.202714, -0.074713, 1.098142, 0.027250, -0.050268, -0.637749, 1.384421, 0.338970, -0.015888, -0.119556, 0.613569, 0.203998, 0.954284, 0.382512, -0.716652, 1.126443, 0.905335, -0.229832, 0.574947, -0.662453, -0.030610, 1.215706, 0.500625, 0.051322, -1.211131, -1.261215, 0.323648, -0.081571, 0.459103, 0.206311, 0.589389, -0.257962, 0.188781, 1.218578, 0.657053, -0.754671, -0.318125, -0.584927, -1.376840, -1.179587, -0.547652, 1.029155, 2.672415, 2.787307, 2.210649, -0.463513, 0.356750, -0.965728, -0.934902, -1.334134, 0.446187, 0.803827, -0.267750, -0.907267, 0.448584, -2.034448, 0.291839, 0.119803, 1.539824, 0.359316, -0.167523, 2.053133, -0.486958, -0.451775, -0.447460, 2.183904, -0.348901, 0.497314, 0.151343, -0.025286, 1.400967, 1.213992, 0.706893, 0.878736, -0.542568, -0.713312, 1.045372, 0.328224, 1.530628, 1.154304, -1.220586, 0.063098, 0.772705, 1.212450, 0.082040, -0.328541, 0.752032, 0.614110, -0.712406, -0.046151, 0.541844, -0.312134, -0.687797, -0.293987, 1.046043, 1.499904, 0.654042, -0.440012, -1.447626, 0.749602, 0.598931, 0.096156, 0.956299, 1.218762, -1.543216, -0.012744, 0.564561, -0.325190, -0.031480, -0.882811, -0.091742, 0.301502, -0.376800, -1.566011, -3.185509, -0.472711, 1.261891, -0.166312, -0.094215, -0.824482, -0.325673, 1.362876, 0.594479, -1.219396, -0.338121, -0.718209, -1.950390, -0.824664, -0.784586, 0.504109, -1.937794, 1.961687, -0.499681, 0.864963, -0.569470, -0.147595, 1.274664, 0.274799, -1.058419, -0.939051, -2.111732, 1.311098, -0.827448, 0.803640, -0.734731, 1.346134, 0.261815, 0.477327, 0.472301, 1.119150, 0.095586, -0.285461, 0.674269, -1.057942, 0.843822, 1.946816, -0.896351, 1.082087, -2.154961, -0.244605, -0.004460, 0.318436, -0.738881, 0.578767, 0.249968, -0.040326, -2.350247, 1.036081, 1.529633, 0.742063, -1.470166, -0.672417, -0.342264, 0.927006, -0.344444, 0.400777, 1.560836, 1.104811, 0.251211, -1.018178, -0.550247, -0.261240, 1.885252, 0.050868, 0.429471, 1.274583, -1.659118, -1.139802, 1.689020, -1.819155, -0.391737, 1.936047, -0.674383, -1.077109, 0.582478, -0.050151, -0.463283, -0.082294, -0.156641, 0.288596, -0.756687, -1.027395, -1.091916, 0.338210, -0.291455, -1.089907, 1.931904, 1.782614, -1.027111, 0.072944, 1.221987, 1.038942, -0.168081, -0.572764, -1.187558, 0.150853, 1.017483, 0.481622, -0.571727, 0.180890, -0.449917, -0.984001, -1.302260, -0.349963, -1.067973, -0.251996, -1.162151, -1.543553, -0.462163, -0.401639, -0.120303, 0.288614, 0.302817, -0.698703, -1.032643, 0.223822, -0.662259, -0.868777, 1.071301, -1.045193, -0.164127, -0.391009, 0.013630, -0.388123, 0.245041, 0.424042, 0.009748, -0.719421, -0.180480, 1.639515, 0.402062, -0.740891, 0.149684, 0.248755, 1.706435, -0.091404, 1.109994, -0.244125, 2.497059, 0.102330, -0.177319, -1.129288, 0.307627, -0.925393, -1.052974, -1.134666, 1.009218, 0.045739, 0.226864, -1.180758, 0.307602, -0.187725, -0.751480, 0.305978, 1.769848, -1.177584, 1.077664, 1.269134, 2.390996, 0.705909, 0.389782, 0.330631, -0.211538, 0.787761, -0.417390, -0.095061, -1.904208, 0.418058, -0.283909, -0.368772, -0.261908, 1.062451, -1.806426, -0.509271, -0.184831, 0.357617, -0.722223, 1.047431, -0.147525, -0.764120, -1.443322, 0.142139, 0.210944, 0.738781, 1.423368, -0.506459, -0.719896, 0.179730, -0.115166, -0.358652, 0.102097, -0.504885, 0.306345, 0.642847, -1.012690, -0.440801, 1.096082, -0.013515, 0.358865, 0.635343, -0.483523, -0.901756, -0.263051, -1.132975, -0.145640, 0.872782, 0.755807, 0.356380, 1.506973, 0.366068, -1.000958, 0.516380, 0.573854, 0.206245, 0.298657, -0.011098, 1.083328, 0.616480, -0.455971, 0.302329, -0.103590, 0.284991, 0.244868, 0.533082, 0.874814, -0.349713, -1.182924, -1.311491, 0.535004, 1.862282, -0.076467, 0.835622, 1.256029, -0.565852, -1.504594, 2.277408, 0.016275, 0.035760, 0.102109, -0.210999, 0.126120, -0.638288, -2.384612, -0.375901, 0.461192, 0.960570, 0.315896, 0.045985, 0.564629, 0.529140, -2.559819, -1.047713, 0.329466, -0.997374, 0.489387, 0.055280, -1.722771, 0.398606, 0.487157, 0.104550, -0.990803, -0.124218, -0.835197, -0.786026, 1.566341, -0.602284, 0.492510, 0.315360, 0.503011, 1.107253, -0.678015, 1.494259, 2.036781, 1.069011, -0.227542, 0.039585, 1.703182, -0.044750, -2.362349, 0.243684, -0.030508, -0.672654, -0.145267, 0.453308, -0.400244, -0.772117, 0.737629, 0.973770, 1.651525, -0.258138, -0.104751, 0.218496, 0.042494, -1.138496, 0.150492, 0.618673, -0.512350, -1.080380, -0.274232, 0.884633, 0.444273, -0.233005, 0.798308, -0.467572, 2.433550, 0.585784, -0.664523, 2.605470, 1.339960, -0.434429, 0.029536, -0.039991, -0.101863, 0.349465, 0.597840, -1.196737, -0.126427, 0.935964, -0.025526, -1.189689, 0.753324, -0.986274, 0.153445, 0.706372, 0.632197, 1.902034, -1.256663, -0.134228, 0.553498, -1.329364, -0.199758, 1.093690, 0.137674, 0.074629, 1.143971, -0.622682, 0.684820, 1.254369, -0.660103, 0.703685, -0.894909, 1.371870, 0.606431, 0.754138, 0.534528, -1.001241, 0.578271, 0.426436, 0.793215, -0.740149, -0.485584, -0.384494, 2.977618, 0.167704, 1.055053, -1.678718, -0.488530, -0.645943, -1.386534, 0.594655, 0.137613, -0.194399, 0.147244, 2.191463, 0.589561, 0.155157, -0.397009, -0.373146, 1.588335, 0.548365, -1.375504, 0.745258, -0.154341, 0.992464, -0.577978, -0.195855, 1.664223, 0.694524, -2.726967, -0.437916, 0.986295, -1.079693, 0.594812, 0.539542, -0.277344, 0.941402, -0.060753, -1.008352, 0.094972, -0.910181, -0.649991, 0.890040, -0.578983, 0.705631, -1.127651, 0.432541, 0.953788, -0.031506, 0.029359, 3.103742, -0.274652, -1.609812, 0.086658, -0.285004, -0.294109, -1.897404, -0.653915, 0.844298, 1.537646, -0.985621, 0.389841, -2.044208, 0.118238, 0.535755, -0.744912, 0.039770, 1.431132, -0.573443, 1.413536, -1.440234, 0.419968, 0.225114, 1.804120, -1.237094, 0.593894, -0.716003, 1.658175, 0.047013, -0.882131, 0.157059, -0.339198, -0.378511, -1.217220, 0.162421, 0.371167, 2.141889, 1.354069, 0.297119, -0.843006, 0.482372, 1.234613, 0.875482, 1.222869, -0.161291, -0.995356, -0.438671, 0.416588, 0.596731, 0.065985, -0.684466, 1.011878, 2.061402, 0.132167, 0.411189, 0.312151, 0.184291, 0.211096, -1.457534, -0.795647, -0.296328, -0.757931, -0.140544, -0.964305, -0.392550, 0.315525, 0.601454, 1.839404, -0.594580, 0.191142, -0.862696, -0.186251, -0.240750, 0.077531, 0.448939, -1.514732, 0.124252, -0.955633, 0.271409, 0.536774, -1.597665, 1.286043, 0.273853, 1.161376, -0.418880, -1.946422, 0.602668, -0.703806, -1.306034, 0.074630, 0.029758, 0.857925, -1.115937, -0.030894, -0.254380, 1.132448, -0.053832, 0.098550, -0.683910, 1.197410, -0.618806, -0.290345, -0.027905, -0.272453, -0.512632, -0.829069, 1.852748, -0.504823, 0.441979, -0.193136, -0.009785, -0.243243, -0.544696, 0.002690, 2.212299, -0.244478, -1.012666, 0.682170, 0.529566, 0.576155, -0.700527, 0.453308, -0.121798, 0.974262, 1.496188, -1.247547, 0.155104, -1.154205, -1.893895, -1.869161, -0.074632, -0.147338, 0.274421, 1.973705, 0.089033, 0.300854, -0.078432, -0.923467, -0.273353, 0.819620, 0.994959, 1.146665, -0.137906, -0.684620, 0.608531, -0.169350, 1.817891, 0.888513, -0.716495, 0.296398, 1.543710, 0.686084, -0.989226, -1.233147, 0.797087, -0.076455, 0.135359, 1.992051, -0.559256, -0.355711, -0.211369, -1.840335, 2.083733, -1.013689, -0.733991, 0.415794, 0.740574, -0.930320, -0.111373, 1.690626, 2.429542, -0.004308, -0.995957, 0.382483, 0.209008, 0.919120, -0.072409, -1.228856, -0.991454, -0.268372, 0.522556, -0.096552, -0.914431, 0.039501, 0.242114, -0.221412, 2.324423, -0.651460, -0.666151, -1.119609, -1.448346, -0.925386, 0.389292, 1.124154, -0.271806, -0.729049, 1.193724, -0.626982, 1.412729, -1.752315, 0.045337, -0.249343, -0.116884, -0.904167, 0.817044, 0.152291, 0.115017, 0.342553, -0.474283, 0.641435, -1.151900, -1.425590, -0.578896, -0.288439, -0.087481, -0.175025, 1.896984, -0.917184, -0.002832, -1.364489, -0.680488, 0.531802, 0.027634, 0.168496, 1.787259, -1.037840, -0.085357, 0.495851, 2.038621, -0.319107, 0.614780, 0.390782, -1.846728, 0.002384, -0.254565, -0.239848, 0.842797, 1.092042, -1.282239, 0.570512, 0.536954, -0.926982, 0.716224, -1.071743, 0.600182, 1.211640, 0.829380, 0.560705, 0.078512, -0.333731, 0.492895, 0.159626, -1.005067, -2.226572, -0.634672, 1.752485, 1.032170, 0.358745, -0.234850, -0.035530, -1.128157, 0.742679, -1.196054, -0.347674, -2.054854, 0.273413, -0.698963, -0.246795, -0.709943, 0.454131, -1.805550, -0.267575, 0.148850, -0.782469, 0.368612, -0.496542, 0.211443, -0.771216, -0.063712, -0.267752, -0.531594, 1.239240, 0.149041, 0.038675, 1.645157, 0.886968, -0.853405, -1.465230, -1.742101, -0.798284, 0.241082, -2.311634, 0.320004, -1.280485, -0.209859, -1.190324, -0.895839, 0.529627, 0.616560, -0.810841, 0.000102, -0.972396, 0.033103, 0.156390, 1.839610, -0.112166, 0.232799, 0.109225, -0.550243, 0.334020, -2.550766, 0.679509, 0.756145, 0.110251, -0.273988, -0.982102, 0.640712, -0.866290, -1.462347, 0.035077, 1.683773, -0.270578, 0.088040, 0.636150, 0.986303, 1.702691, 0.586015, 1.202545, -2.570271, -0.472190, 0.243466, 0.133880, -0.006401, 0.727936, -0.599675, -0.160660, -1.630240, 1.277823, 0.686225, 0.904499, 0.300069, -0.874093, 1.958989, 0.793191, -1.971186, 2.200583, -0.899536, 0.629933, 1.189624, -0.914638, 0.788546, -3.259173, -1.244885, 0.890972, -0.657992, 0.628539, -1.223282, 1.278668, -0.644911, 0.476486, 1.105676, 1.638826, -1.829981, 0.303061, -1.587406, 0.799293, -0.538447, 1.381353, 0.536929, 0.430886, -1.281552, 1.598193, 1.230857, 0.782224, 0.138354, -0.081236, 0.205909, -1.004968, -0.529797, -1.032847, -0.949249, 0.090189, 0.044878, -0.070573, -0.164321, 1.449813, -2.246111, 1.685842, -0.270831, 2.823672, -1.197951, 1.175283, -1.445425, 0.268843, -1.904981, -0.492387, -1.884344, 1.279282, 0.807842, 0.755428, 0.028804, -0.512331, -0.433352, 0.499296, 1.037904, -0.026814, 0.021602, 0.494125, -0.531134, 0.894899, -1.569244}, - { -0.623453, 0.954053, 1.623444, 0.693702, 1.051604, 1.869862, -1.381684, -0.695497, -1.232447, 1.529873, 0.144401, 1.715343, 3.588311, 1.314834, 0.045535, -0.811673, 0.174592, -0.866058, 0.631247, -1.116479, -0.436631, -0.047052, 0.719751, 1.785655, 1.156472, -0.219903, -0.030608, 0.299466, -0.631376, 0.573242, -0.456588, 0.610688, 0.166786, 0.115527, -0.679740, 1.058073, -0.554841, -1.111318, -0.488704, -0.761492, 0.761811, -0.104446, 0.279684, -1.022138, -1.286590, -0.794616, 0.336994, -1.249675, 1.074103, 0.809033, 0.049789, -1.003783, 1.566896, 0.021207, 0.952531, 0.373783, 0.415383, 1.061700, -0.609034, -0.176690, 1.405349, -0.054868, 0.294895, 0.078584, -0.794150, -1.227244, 0.475934, 1.527520, -0.532228, -0.031494, 1.132420, -0.035409, -0.853781, -0.205829, 1.058578, 0.312618, 1.025839, -0.992747, -0.055552, -1.097253, 0.543441, 0.701778, 0.046210, -1.613917, 1.337267, -0.123126, 0.584711, -1.261481, 1.432934, -0.044287, -0.173449, 1.030038, -1.563089, -0.447450, -0.517009, -2.013959, 1.598219, 0.112909, 0.216350, -0.605201, -1.710702, 0.045644, -1.231230, -0.914531, -1.654087, 1.329637, 2.037380, 0.791088, 0.157253, -0.710456, 1.305099, 0.566779, -0.077611, 0.989932, 0.984189, 0.685566, 0.501019, -1.280524, -1.182654, 0.803050, -0.758460, -1.057862, -0.187893, -0.339902, 1.954562, 0.212230, -0.986281, 1.165170, -0.695722, 0.020398, -1.103753, -0.230648, -0.361203, -0.834126, -0.463378, -0.716393, 0.436393, 1.824251, 0.058563, 1.480980, -1.113165, 0.679718, -0.698174, -1.151177, -0.434598, -0.485698, 0.086315, 1.172273, 1.177265, 0.968471, -0.547780, -1.143789, -1.401750, 0.833172, 0.498177, 0.727264, 2.187537, 0.059330, 1.919571, 1.752794, -0.938311, 0.962821, -0.071750, -1.666583, 1.905437, 0.335731, 1.818801, 0.302484, -0.877142, -1.477450, -0.820728, 0.743103, 0.247202, 0.215841, -0.487392, -0.488721, -0.946522, 0.000023, 0.316309, -1.721988, 1.914840, -1.302360, -0.341921, 0.248546, 0.939944, 0.528778, -0.202490, 1.004617, -1.070344, 1.615516, 0.892080, 1.994732, -1.434383, -0.056931, 2.826312, -0.413024, -0.865239, 1.903107, 0.369067, -0.065173, 1.196553, 2.428730, 0.610659, -0.083590, 1.574067, 0.219858, 0.650548, -0.280599, -0.357974, -0.838390, -0.916102, -1.290103, 0.257130, 0.137525, 1.160550, 2.504158, -0.560719, -1.026722, -0.615722, 1.716536, 0.245685, 1.426338, 1.027635, -0.050195, -0.059096, -0.528190, 0.129126, 0.221599, 0.672226, -1.345480, -0.844464, -0.310609, -0.300496, 0.004860, -1.575402, -0.105495, -1.414926, 0.109777, 0.227233, 0.919921, 1.134450, -0.991901, 0.164022, -0.830330, -0.620654, 1.062751, 0.735327, -0.253591, -0.617748, 0.869474, -1.102727, 0.343456, 0.340353, -0.711225, 0.738152, -2.494143, -0.447320, 0.261639, -0.876834, -0.621362, 0.401711, 0.403854, -1.818019, 1.734050, -1.216679, -1.266483, -1.780765, -1.295812, -0.852020, -0.971149, 0.823359, -0.709542, 0.693283, 1.294185, -1.498523, 0.993589, 0.839256, -0.284462, 1.506703, 0.037203, -0.648762, 0.930297, 0.201614, -1.370532, -1.292700, 0.403996, -1.706020, -0.318158, 0.449052, 0.497324, 0.521217, -0.194938, 0.484995, -0.504353, -1.952156, 1.490097, 0.628563, 1.015440, 0.652072, 0.548159, -0.298940, 0.681354, 1.622283, -0.709891, -2.619955, 0.027944, 0.952976, -0.583707, 1.104840, -0.280059, 1.763923, -1.689790, -0.141087, 0.682918, -2.840436, 1.242989, 0.897080, -0.023077, -0.723775, -0.620017, -0.055428, -0.074814, -0.208272, -1.530227, -2.466289, -0.389793, 0.477436, -0.563231, -1.659874, -2.046016, -0.482248, -0.512303, 0.753429, -0.329284, -0.215627, -2.592513, 0.274906, 1.215909, 0.684245, 2.300354, -0.759647, -0.418392, 1.445860, -0.724331, -0.038904, 0.909814, -0.929235, 0.804243, 0.412419, 1.321878, 0.161760, 1.228870, 1.594674, -1.760651, -1.545941, -0.017338, -0.257052, -1.342466, 0.921997, 0.363393, 1.660995, 3.110499, -1.271268, 0.796166, 1.070389, 1.248606, -0.743917, 0.252434, 0.342996, 1.066864, 0.341531, 0.739123, 0.880762, -0.279449, 1.692952, -1.129257, -0.340177, -1.940223, 0.030578, -0.796483, -1.690204, 1.375955, -1.667420, -0.451877, -2.686948, 0.624933, 1.104958, 0.213290, 0.613976, 1.402480, -0.093016, -0.868012, -0.446540, 0.454247, -0.707785, 2.101789, 0.768771, 0.804757, -0.714055, -0.005500, -0.143981, 2.309610, 0.187676, 0.922561, -0.869147, -0.932537, -0.210430, -0.740733, -0.801509, 0.138654, -0.500698, -2.191879, 0.736989, 0.050568, -0.847442, -0.467371, -0.620093, 1.071607, -1.219288, 0.701180, 1.164552, -0.062570, 1.510141, 0.579090, -0.328714, 1.614425, 0.927753, 0.732866, -0.371786, 0.725116, 0.323996, -0.123742, 0.223387, 0.482749, 1.718388, -1.261799, 0.465963, 0.768161, -1.520144, 0.590971, -0.403894, -0.482664, -0.322890, 1.520487, -1.346282, 1.322418, -1.604702, 0.292978, -0.279316, -0.856389, -0.145189, 0.665877, 0.206045, 0.268668, -0.708773, -0.195848, -0.120889, -0.853206, 1.156486, -1.407154, 1.262708, 0.763650, -1.086083, 0.164940, 1.686167, 1.206167, -0.794927, -1.167664, 1.518261, -0.408484, 0.929001, 0.281053, -0.667475, 0.045282, 0.800883, -1.227243, 1.099914, 0.289765, 0.222921, -0.326742, -0.272994, -0.578084, -1.277323, -1.328512, 1.271082, -0.323974, -0.936015, 0.152633, 0.050185, -0.061969, 0.902417, -1.872260, -1.760017, -0.665758, 1.750578, -1.115335, -0.482179, -0.721216, -0.661339, -0.354468, -0.409206, 0.860945, -0.372282, 0.981023, -1.693248, 1.216220, 0.005642, -0.246426, -0.690470, 0.454123, -0.614794, 0.282413, -0.041944, 1.619260, -1.426622, 2.134139, -1.215949, -2.555833, -0.245038, 0.482855, -0.776026, -1.288328, -0.354847, 1.575842, -1.383988, 0.424619, 1.943871, -0.038640, 0.006247, 0.367939, 0.735515, -0.101791, -0.194711, 0.411367, 0.037841, -0.149004, 0.846544, -0.668612, -0.935705, -0.372453, 0.122381, -0.678787, 1.740865, -0.387087, -1.985908, 0.036531, 0.357803, -1.141082, -0.078745, 0.757630, -1.772953, 0.995736, -0.251684, -1.044462, -0.352929, -0.159211, 0.566438, -1.353958, 0.585748, 1.164025, -0.151318, 0.892339, 0.303215, 0.102689, -0.785613, 1.720145, -1.634517, -0.077173, 2.910751, 1.238376, -1.070150, 1.717178, -0.424230, -0.860789, 0.374001, -2.334249, 0.004519, -1.068791, -0.992720, -2.348866, 1.297737, -0.266538, -0.681577, -1.446853, 0.428924, 1.508156, -0.784141, -0.346106, 0.278468, 0.633195, 0.200221, 2.339906, -0.518537, -2.456020, -1.113917, -1.030970, 0.694407, -1.515428, 1.177057, -0.107440, -1.011979, 0.417285, 0.818502, -0.189856, 0.598343, 0.415470, -1.693178, 0.641560, -0.029072, 0.568614, -1.050384, -0.059501, -0.005994, 0.841842, -1.783431, 1.251634, -1.509092, -1.244333, -0.057438, 1.210072, -0.470286, -0.142246, 0.155634, 0.119058, -0.807101, -1.966949, 0.276064, 1.928274, -0.363779, 1.778863, -0.694578, -2.953176, 0.339838, -1.257644, 0.273053, 0.905211, -0.089732, 0.618200, 1.658325, -0.113873, -0.696675, -0.635603, 0.015964, -0.840557, 0.895750, 0.660494, 1.161041, 0.854115, 0.086081, 1.356078, 1.108299, -0.087507, 1.331952, -0.295514, 0.197562, 0.585499, 0.728088, -0.866588, 0.549671, -0.378238, 1.728026, 1.274765, -1.570455, -2.396265, -0.123276, -0.144986, 2.008585, -0.199556, 0.369414, -0.773789, 1.485619, 0.116638, 1.234015, 0.124005, 1.039817, -0.558376, 0.951702, -1.545855, 0.107654, -1.080724, -1.115903, 0.393940, 0.037577, 0.440651, -0.409629, 0.713164, -0.404153, 0.278440, 0.963260, 1.742860, -0.463231, -1.209535, -0.323712, -0.231298, -0.502553, 0.285147, 0.142140, -1.282130, -0.710462, 0.855065, 0.037743, -0.677499, 0.118042, -0.454565, 0.981097, 1.722714, -0.167418, -3.202382, -0.412894, 0.701014, 2.011460, -0.315601, -0.474802, 0.075601, 0.987902, -1.040080, 0.709486, -1.125118, -0.017001, -1.904518, -0.183568, -0.975301, 2.269899, 1.557225, -0.342013, -1.417912, 0.342440, -0.435465, -0.042540, 1.618265, -0.250682, -0.787410, 1.098447, 0.045734, 1.140916, -0.005694, 0.461982, -0.680186, -2.262146, 0.030759, 2.020773, -0.861753, 0.271623, 1.596500, 0.245057, -0.408449, -0.208146, 0.483222, -0.213091, -1.737382, -0.470778, 0.852057, -0.108822, -0.705684, -1.794956, -1.733111, -1.200252, -2.157468, -0.559874, 0.013241, 1.321396, 1.098886, -0.230483, -0.590569, 0.624788, 0.741311, 0.008630, -0.626681, -0.545619, 1.076151, -0.144665, 1.064903, -1.146352, -0.754815, -0.374404, 1.490998, 1.178891, -0.458798, 1.216729, -0.051359, -0.200159, -0.192953, -0.273308, -0.769555, 0.134451, -0.097036, -0.575961, -0.938152, -0.186811, -2.027305, -1.089062, -0.271874, -0.470876, -0.105277, -0.426130, 1.131322, -1.279843, -1.123745, 0.901968, -0.286172, -0.405162, 0.464232, 0.336823, 0.051341, -0.249817, 1.398990, 0.901713, -0.828001, -1.043243, 0.426822, -1.505874, 0.011781, 1.062281, -0.662296, -0.806976, 0.826020, -0.565465, -2.312020, 1.578992, -0.759484, -0.351286, 0.704443, 0.712394, -0.767216, 0.222625, 0.860920, -1.566572, -1.182164, -1.929471, -1.352744, -0.537665, 1.514014, 0.524002, -0.405265, 0.883618, 0.530110, -1.020418, -0.688276, 1.782730, -1.240812, -1.196037, 0.742602, -1.502700, -0.961634, 0.849075, -0.450839, -0.770336, 0.108036, -0.563989, -1.165810, -1.543547, -1.403592, -1.023245, 0.964347, -1.592831, 0.128164, -0.599490, 0.338740, -0.182169, -0.753812, -0.645035, 0.563881, 1.879971, 0.735333, -1.075692, 1.077581, -0.125789, 1.003849, 0.278407, -1.279668, -0.087034, 0.557527, 0.631904, -0.364409, -0.591107, -0.530717, -0.806510, 0.021594, 1.805066, -0.234287, -1.149436, -0.510306, 1.110254, 0.245971, 0.416621, 0.190544, -0.576510, -1.649418, -1.165816, -1.057189, -0.442838, 0.566944, -0.736546, 1.999349, 1.400423, -0.248045, 0.076294, 0.286319, -1.015722, 0.082188, -1.220659, -1.588475, 1.490315, 0.568091, 1.189487, -0.032901, 0.788781, -1.683181, -0.681388, -0.322550, -0.903044, 1.105530, -0.368619, 0.305826, 0.771226, 1.621447, 0.110249, -1.263226, 0.650783, 0.775220, -0.776529, 0.744234, -0.514982, 0.333820, 2.156255, 0.772207, 0.546877, -0.541077, 1.033439, 0.027314, -1.179867, 0.112219, -1.869214, 0.254614, 0.441247, 0.600428, -1.529266, -0.828392, 1.779309, 0.421391, -1.959596, -0.101238, 1.068820, 0.078936, 0.430229, -1.120721, -1.067357, 0.496507, 1.599528, -0.626374, -0.813625, 1.463498, 0.347601, 0.927429, 1.148257, -1.586493, 0.093626, -0.772744, 1.625483, -0.478545, -0.221309, 0.000621, -1.148203, -1.438723, 1.056092, 0.733679, 0.307065, -3.348996, -0.203099, -1.277446, 1.063363, -0.950062, 1.387271, 2.128470, -0.367682, -0.833131, 1.879218, 0.097407, -0.172273, -0.580684, 0.232930, 1.930204, 0.575178, 0.290120, 2.931159, 0.548125, 0.462058, 1.261512, 0.435107, 1.618984, 0.466057, 1.992763, -1.456414, -0.613729, -0.992565, -0.609947, 0.041044, 0.086893, 1.203942, -0.676437, 0.222967, -0.350054, -0.484052, 1.286109, -0.262943, 0.667269, 1.411309, -0.931674, 0.833679, 0.780207, 1.295682, 1.058218, 0.154652, -1.299975, -0.181953, -0.067264, 1.822692, -0.143681, -1.374258, -1.710318, -0.031247, 0.856007, -0.023738, 1.750374, -1.765197, -1.000061, 1.991553, 1.324514, 1.198946, 0.221269, -1.008166, 0.015012, 0.341822, 0.520590, -0.601956, -0.497275, -1.314573, 0.375441, 0.022262, 2.559487, -0.021369, 0.876764, -0.911074, 0.572897, -0.461993, -0.118148, 0.400654, 0.091359, -1.185379, -0.114256, 2.018330, -0.378927, 0.123732, 0.065811, -0.148458, 0.009804, -0.487581, 0.920691, -1.605965, -2.316377, 1.363888, 0.557818, 0.946484, -1.411012, 0.840466, 1.765036, 0.680239, -0.673007, 1.208876, 0.578271, -0.112013, 0.373387, 1.738491, 0.654488, -0.997188, 0.371525, 0.415120, 0.312278, 0.482467, -1.144021, 0.708331, 0.298731, 0.585536, 1.304343, -0.882933, -1.174656, -0.364076, -1.735889, 0.543588, 0.815846, -0.069151, -0.161164, 0.276600, 1.124768, 0.501393, -1.081831, 1.205866, 0.335251, -0.802165, -0.728224, -0.728497, 1.744816, -0.625711, 0.318683, 0.411529, -0.240272, -0.548268, 1.784923, -0.597437, -0.839994, 0.826265, 0.208463, -0.593553, -0.343072, -0.414023, 1.643092, 0.177418, -0.837071, 0.947163, 0.598130, -0.357140, -1.193699, -0.520810, -0.049950, 0.328843, -0.115809, 1.237598, 1.429429, -0.866494, 1.067158, 0.881910, 0.755652, 1.812063, -0.101621, -0.189353, 0.588834, 2.224868, -0.215545, 0.475178, -0.785537, -1.994503, 1.138737, -0.312048, 2.111838, 0.243595, -0.217862, 1.632969, -1.048329, 1.198893, -0.330813, -0.498998, -0.109484, -1.034779, 0.962764, 0.333293, 2.275247, 2.340490, 0.578223, -0.676159, -0.778772, 0.092917, -1.291921, -0.043946, -1.006860, -0.442360, -0.352270, 0.349411, -1.729677, -1.336875, 1.257883, -0.997495, -0.007765, -0.373652, -0.057240, -0.839117, -1.462761, -0.819780, -0.160442, 1.915766, -0.492907, 0.510259, -0.663838, 1.119401, -1.068146, 0.205162, -0.730906, 1.351709, 0.036955, 0.165369, -3.168551, 0.291011, 0.116180, -1.416719, -1.666722, 0.882316, 0.493695, -0.107312, 0.892315, 1.015771, 0.086327, 0.751946, -0.999129, 0.373692, -0.891583, -0.561115, -0.127191, -0.311987, 0.915724, -1.180343, 0.749417, -0.163806, -0.872631, -0.456631, 2.761867, -0.874390, 0.290952, 0.045706, 0.067123, -0.002035, 0.811363, 1.037285, -0.192652, 1.878039, 0.408610, -0.719494, -0.987027, -0.079995, -0.148389, -1.205181, -0.614823, 0.079235, 1.937508, 0.469927, -1.000745, 1.002714, 0.756052, 0.415123, 0.323209, -1.016147, 0.617013, 1.157310, 0.299938, -0.740063, -0.369359, -1.169232, 0.295839, 0.058527, 0.870896, -0.082892, 1.213350, 0.958314, -0.768342, 0.169133, 0.226603, -0.200703, -0.769491, -0.625037, -0.515528, 0.625763, 2.897615, -1.093809, 0.075097, -0.364193, 0.153641, -0.287079, -0.696256, -0.166970, -0.602850, -0.144847, 0.430072, 1.057270, -0.427213, -0.386023, -2.026752, 0.109442, -0.782503, -0.314018, -0.129226, -0.414538, -0.761880, -0.575583, 0.539498, -0.133999, 0.405557, 1.357618, 0.768280, -1.626472, -0.940342, 0.284853, -0.960396, -2.374528, 1.334795, 0.243184, 0.763377, 0.148786, 0.214573, 0.550710, 0.581688, -0.499359, -0.324890, -0.150250, -0.438701, -0.886777, 0.664653, -0.837704, -0.737847, 1.262831, -1.006748, -0.906348, 0.603079, 2.390491, -0.335118, 0.655038, 0.337169, -0.400447, -0.435655, -0.793657, -0.061330, 0.238077, 2.079480, 0.903865, -1.330803, -0.155710, 0.992865, -1.264595, 0.629640, 0.160758, -0.760545, -0.448366, 0.922689, 1.636543, -0.148524, -1.345407, -0.336809, 0.847822, -0.888932, 0.112179, 0.810667, -0.920844, 0.699311, -1.698227, -0.072819, 0.194583, 2.913199, -1.661479, 0.491781, -1.630995, -2.292904, -0.156592, -0.831328, 0.333362, -1.346217, 0.740406, -0.646210, 0.330476, 0.011820, 0.261232, 0.891277, 2.536957, -0.098186, -1.035584, -1.477232, -1.873089, 0.441552, -1.420753, -0.728468, -2.461144, 0.518028, 0.651003, 0.749435, -0.791859, -0.140180, -0.426504, 0.280434, 0.824883, 0.019835, 0.319204, -2.522234, 2.159223, -2.491072, -0.057348, 0.492508, -0.952368, 0.097768, -1.645331, -0.449716, -1.085213, -0.928719, 0.239231, 0.751589, -1.002256, 0.215936, -0.606306, -0.733353, -0.710711, -0.394801, 1.207395, -0.347099, 0.044909, -0.232702, -2.167305, -1.001443, 1.914278, -0.477186, 0.836531, 0.691079, -0.214423, -2.006643, -0.132784, 1.232694, -0.616862, -0.004635, -1.944668, 0.213088, 1.552813, 0.374027, -1.138560, 0.406288, 0.791432, 0.525353, 1.094239, 0.706779, -1.632860, -0.739450, 0.049644, -0.108114, -1.567377, -0.250007, 0.161739, -0.440145, -0.346428, -1.196800, 0.406576, -0.200230, -0.110491, 1.468977, -1.547761, -0.052417, 0.087336, 0.697882, -0.577451, -0.048326, -0.679717, -0.389158, -0.831398, -1.364468, -0.127567, 0.241172, 0.007756, -0.640342, -0.642852, 0.778124, -1.113056, -0.032823, -0.444457, -0.613264, 1.920060, 0.820966, -0.276815, 0.195405, -0.385462, 0.802172, -1.244596, 1.319686, -0.395284, 1.687466, 0.341534, -0.362167, 0.203323, 1.585754, -0.749208, -0.255050, 0.233084, -0.267739, -0.215205, 0.679483, -0.129030, -2.025603, -0.545162, -0.177973, 0.052779, -0.571604, -0.228202, 0.326959, 1.729283, 1.202517, -0.908482, 2.067965, 0.988786, 0.221466, 0.347342, 0.339143, -0.404961, -1.616164, 0.096909, 0.302887, -0.200845, -0.385569, 0.493558, -0.514158, -1.429668, 0.704494, 0.705244, 0.794807, -0.222113, -0.233228, 0.129633, -1.693415, -0.454547, 0.814292, -0.280736, 0.661494, 0.314321, 0.288306, -0.254610, -0.240969, -0.555553, -0.860210, 1.569442, -0.334052, -0.310842, 0.264963, -0.571964, -0.754633, -0.345627, 0.134951, -0.725342, 1.321555, -0.260204, 0.427543, -0.375964, -1.056924, 0.371639, 0.567981, 0.634436, 0.030608, -0.783334, -0.450729, 0.037815, -0.275719, -0.365921, 1.114759, -1.609446, -0.669731, 2.159318, -0.278625, -0.871735, 0.077756, 0.386762, -0.392128, -0.085670, -0.604126, -1.747318, 0.555601, -0.450966, 0.710088, 2.087791, 0.312704, -1.942972, 0.116592, -0.493857, 0.831028, 2.226056, 1.483603, 0.366641, 0.685873, -0.727404, 0.443080, 0.125284, 0.725298, -1.204736, -0.597128, 0.195025, 0.732572, -0.469062, 0.477659, 1.874927, 2.106595, -0.375360, -0.362208, -0.287513, -0.056017, -0.833202, -0.912884, -0.195822, 2.167403, -0.301143, 2.482659, 1.063425, 0.367249, 0.822278, 0.112339, -0.128620, 1.102664, 0.762336, -0.321454, -0.953026, -2.228239, 0.765689, -1.747361, 0.822630, 1.092762, -1.132774, 0.693391, 0.570049, 0.958624, -0.436718, -0.281885, -1.354223, 0.471678, -0.232098, -0.714516, 0.951227, 1.214682, 0.937597, -1.029204, -1.131709, 0.534172, 0.649547, -2.054628, -0.131366, -0.447538, -0.726765, 0.597428, 0.256786, 0.145479, -0.395442, 0.612840, -0.947940, 0.642573, 0.014943, -1.608187, 0.124304, -0.676657, 0.590953, 0.710924, -1.567442, -1.030316, 1.555993, 0.361457, 1.216279, -0.402003, 1.853082, -0.595164, 0.164794, -0.743279, 0.995666, 1.586500, -0.059508, 1.808829, -2.116118, 1.635752, -0.937809, 0.567232, 1.071493, 0.303327, 0.881441, 0.219488, -0.193947, -0.923307, 0.796834, -1.878409, 1.766440, -0.067873, 0.070588, -0.618395, -0.808697, 0.671449, -1.243319, 0.291487, -0.457839, -1.264555, -0.826279, -0.032396, -0.105896, 1.023749, 0.431738, -1.273322, -0.318433, 0.586852, -0.089034, -0.468333, -1.030797, 1.747286, 0.396295, 1.589622, -0.688438, 0.472268, 1.045664, -1.120522, -2.158789, -0.700277, -0.100062, 1.224239, -0.028336, 0.780148, 0.750950, -0.863507, 0.377686, -0.294723, -0.262106, 0.771339, 0.890611, 1.060766, 0.185323, -0.135984, -0.837736, 0.525532, 0.019600, 0.881206, 0.347934, -2.414978, -2.115059, 1.023043, 1.749845, 0.678521, 0.056153, 0.557952, -0.236341, -1.056321, 0.234636, -0.956992, -0.441433, 0.732408, -0.379329, -0.011801, -0.071274, -1.706708, -2.356571, 0.786006, 0.203953, -0.317419, -1.083134, 1.149797, -2.085296, 0.752887, -0.932524, 1.746426, 0.679927, 1.135209, -0.834052, 0.098566, -0.789324, 0.636161, 0.186533, -0.732246, 0.435459, 1.226857, -0.760132, -0.433036, -0.233559, 0.651796, -0.392767, -0.237725, -0.336180, 0.194321, 0.161021, -1.181983, -0.641880, -0.016784, -0.724357, -0.022949, -0.585239, -1.621261, 1.410727, -0.120273, -1.228143, 0.226797, -0.740254, 1.990417, 0.854266, 1.119888, 1.281324, 0.464073, -0.030313, -1.021628, -2.528571, -0.496044, -0.220940, 0.296065, -1.571630, -1.411951, -1.034487, -0.183921, -0.714003, 0.554770, -1.939697, -0.870241, 1.579534, 0.407536, 0.845163, 0.169817, 0.608389, 0.522581, 1.708390, 0.111518, -0.490308, 1.335780, -0.460659, 0.411525, -0.080968, 0.269510, 0.292276, 0.101777, 0.266486, 0.455205, 0.452102, 0.769950, 1.655536, 1.619416, -0.087528, 0.070307, -0.004677, 0.765683, -2.225653, -0.560522, 0.345340, -0.702346, -0.931809, 0.341249, -0.869568, -0.103519, -0.687064, -1.030831, 0.070214, -1.221788, -1.396775, 0.556335, 1.180188, -0.548804, 1.133078, -0.592456, -0.184492, 0.130857, 0.237093, -0.987683, -0.332959, -0.951278, 0.446272, 0.898166, -1.547139, -0.388416, -0.953992, -1.619748, 0.001487, -0.373560, 0.454699, -0.301258, -0.208208, -0.338697, -1.237921, -0.038130, -0.801799, -0.389003, -1.264494, -1.949058, -1.690619, 0.338203, -0.449090, 1.154036, 2.257233, -0.045447, -0.940018, -0.135010, -1.367771, 0.675752, -0.847615, 0.836265, -3.218179, 0.772681, -0.700947, 1.329807, 2.207220, 0.660263, 0.537273, -1.650653, -1.055598, -0.432696, -0.963343, 0.674557, 0.258531, 0.091242, -0.156451, -1.876613, -0.311569, -0.992994, 1.373373, -1.083461, -0.706989, -0.837429, -0.439604, 0.610860, 1.201186, -0.152969, -0.692993, 0.303026, 1.091902, 0.562589, -0.444140, -0.397255, 0.036604, 0.782060, 1.461951, 1.215109, 1.015874, 0.411564, 0.603514, -1.187557, 0.837245, 0.186959, 0.462223, 0.269404, -0.552504, -0.882271, -0.989298, 0.366308, 0.694815, 1.008333, 1.242507, -0.410094, -0.239002, -0.812863, -1.278352, 0.616818, 0.744511, -0.071488, -1.218788, 0.335584, -0.055247, 0.190317, -1.361688, 0.092413, 1.391584, -0.089277, -0.477297, -0.297653, -1.329137, -0.176489, -0.780425, -1.242031, -0.455239, -0.128555, 0.705808, 0.652702, -0.907426, 0.115842, 1.439899, 0.583011, -0.586446, -0.508457, 0.145344, 0.474562, -0.997828, -0.497745, 1.263431, -0.498363, 1.067552, -0.140476, 0.195365, -0.339264, -0.550975, 0.430140, -2.495366, 0.820498, 1.151712, -0.580847, -0.664775, 0.300745, -1.900717, -0.246849, 0.174779, 0.095474, 0.301566, -1.462927, -0.457453, -1.198832, 0.260430, 0.525427, 2.327744, -1.917447, 0.651556, -0.082186, 1.258345, -0.599588, -0.777779, 0.395293, 2.045056, 1.120563, 1.661898, -0.539189, -0.111726, -0.107838, 0.628474, 0.855023, 0.050101, 0.291567, -0.751113, 1.743932, -1.885355, 0.827604, 1.001296, -0.799931, 0.832705, -1.218060, 0.589579, 1.204786, -1.311507, 1.293605, 0.120319, -0.673120, 0.768688, 0.896431, 0.687807, 0.565967, -0.331070, 1.144239, 0.344915, -0.536867, -0.657178, 1.542104, 0.667695, -0.314779, 0.967024, -1.946962, 0.091642, -1.883904, -1.918245, -0.747505, -0.275695, 1.471952, 1.597673, 0.643054, -1.427826, -0.940320, 0.045873, 1.094288, 1.310489, -0.449426, -0.976604, -0.161207, -0.479570, 1.346457, -0.163808, 1.376277, -0.904598, -0.484484, -0.504983, 2.231356, -0.574739, -0.925540, -0.604247, -0.651224, -0.719114, -0.761973, -0.668061, -0.255279, -0.078762, -0.022794, 0.211515, -0.920800, 0.637119, -0.714713, 1.671272, 0.192129, -0.180253, 1.393980, -1.204250, 0.737188, -0.077572, -0.695508, -0.256038, 0.124274, 0.944659, 0.957450, -0.178383, 1.970102, -0.991845, -0.507732, -0.281083, 1.439515, 2.388603, 0.230345, -0.072544, 0.788672, 0.121837, -0.605396, 1.692880, -0.838169, -0.199886, 0.096945, 0.124041, -1.143811, -0.618569, -0.211310, -0.699583, 0.170679, 0.393933, -0.008682, -1.669207, 0.139770, -0.176186, 0.586495, -0.272988, 0.639205, -0.053130, -0.899506, 0.453998, 0.075434, 0.669400, 0.193137, -0.185708, 0.555906, -1.290901, -1.267053, -0.821400, -2.053677, 2.290072, -0.077008, -0.920618, 0.023749, -0.117790, 1.077128, -1.319185, 0.177130, 0.145882, -0.796767, 2.135765, 0.174968, -0.790916, -0.701847, -0.645645, -0.226694, 0.108898, 0.454596, 0.562653, -0.731533, -1.487294, 1.617465, 0.383866, -0.994835, 0.407216, -0.261415, -0.697723, -0.238328, -0.680263, -1.702497, -0.019850, 0.412528, 0.646121, -1.124923, 0.260227, -0.676179, -0.548324, 0.113787, 1.106406, 0.478712, -0.996195, -0.400662, 0.322306, -0.183456, -1.094775, -0.714005, -2.390916, -0.124259, 1.317828, 1.232597, -0.461590, -1.142817, 0.618168, -0.314165, -1.010540, 0.747660, -1.440197, 1.082188, -1.315799, -0.236548, -0.607677, -0.547380, -0.332656, 0.705554, 0.341649, -1.080255, 0.883253, 0.532238, -2.370310, 0.643896, -0.696013, 0.560925, 1.117974, -0.119678, 1.088691, -1.319988, 0.907951, -0.366180, 0.698432, 0.550332, 0.966005, 0.904856, 1.320437, 0.729177, 0.536385, -0.569802, -0.680889, 0.695696, -1.529623, 1.016953, -0.905905, -0.263244, 0.803606, -1.550442, 0.112123, 0.600202, -0.862481, -1.347078, -1.474102, 0.142699, -0.900816, 2.040950, 0.547448, -0.408968, -0.853502, -0.859737, -1.367904, 0.703143, -0.291022, -1.893490, 1.078926, 0.006518, 0.252045, -0.835005, -0.356546, -0.261641, -1.671060, -0.326894, 1.896629, 1.012121, -0.211800, 0.338384, -0.184103, -0.122299, -0.132211, -0.855417, 0.492985, -0.099009, -0.343577, -0.082816, 1.081974, 0.921803, 0.641486, 0.499388, 1.859946, -1.221179, -0.088010, 0.308682, 1.435141, 1.082307, -1.517399, 0.101751, 0.173340, -1.151169, 0.680290, -0.174590, 1.305213, -0.671548, -0.442931, 0.129224, 2.026346, -0.768422, 0.199532, -0.226109, 1.509976, 0.721038, 1.441118, 0.020177, 1.516057, -1.973640, 1.343944, 0.303457, 0.188708, -0.331241, -0.542382, 0.879981, -0.996384, -0.137007, 0.504955, 1.750427, -0.654324, 0.904405, -0.809206, 0.759498, 0.892563, 0.407132, -0.196360, -0.305179, 0.101894, -1.022962, 1.948404, 0.211720, 0.422802, -0.151179, -0.799501, -0.708741, 0.680537, -0.245442, 0.140980, 0.211048, 0.102425, -0.714462, 0.008719, -2.286333, -0.911013, 0.410143, -0.251832, -0.635754, 0.220559, 0.273058, 0.249602, 2.147115, -1.275174, 0.441373, 0.101199, -1.209903, -1.686076, 0.697102, -0.728055, -0.599947, 0.434907, -0.742242, -0.231319, -0.485639, 1.490613, 0.456012, -0.315430, 1.032377, 1.016384, 2.071719, -0.581866, -0.997055, 0.361761, -0.579864, 0.588728, -0.431103, -0.318526, 0.593021, -1.226416, -1.543987, 1.143324, 1.317451, 0.807418, -0.951109, -0.232099, 0.030076, 0.300818, 1.741943, -2.176701, -1.189019, -1.335963, 0.927846, 0.176398, -0.225009, 1.401209, -0.256503, -0.016149, -1.241953, -1.070358, 0.369862, 0.281447, 2.637036, -1.203327, 0.529598, 0.479650, 0.802503, -0.275342, 0.086772, -0.021011, -0.208393, 0.011626, 1.438752, 0.961595, 0.581880, 0.550852, -0.738347, 1.423225, -0.690117, 0.063013, 0.530657, -1.198591, -0.260484, 0.182210, -0.888091, -0.389593, 1.579610, -0.956951, 0.701923, 0.510090, -1.268439, 0.437497, -1.000280, 0.914457, -2.079672, -0.642056, 0.575708, 0.036583, -2.124228, -0.337062, 1.520439, 1.086876, -0.443614, 0.623885, -2.132409, 1.892285, -1.028370, -1.046202, -0.244842, 0.148280, 0.422102, 0.717107, 0.483886, -0.064513, -0.102968, -0.544850, 1.843724, 0.523018, -0.426738, -0.767726, -0.163730, 0.658391, 1.490329, 0.891014, -0.760058, -0.995975, 0.941965, -0.228759, 0.819013, -1.438934, -1.759312, 1.634432, -1.490389, -0.754722, -1.157871, 1.290812, -2.045502, -1.010032, -0.745381, 0.145885, -1.085113, 0.726223, 1.356378, 0.689163, -0.025504, -1.611363, 0.116147, 0.203872, -0.883090, 0.015775, -0.445040, 0.524059, -0.738939, -1.356761, 0.632259, 0.989492, -0.288515, -1.409764, -0.190458, 0.757061, -0.195403, -0.728183, -0.279709, 1.133811, -0.069051, 1.054468, -0.336070, 2.098590, 0.798654, -0.350733, -1.387883, 0.048497, -2.198933, 0.307884, -1.533988, -0.842805, -0.163025, 1.368090, -1.688254, -0.218864, -0.168888, 0.316394, 0.803479, -0.943433, -1.784473, 0.069284, 0.821159, -1.154330, -0.397152, 1.045521, 2.045438, 0.534702, -0.009791, -1.095701, -0.311276, -0.496416, 0.792970, -0.487859, 0.325287, 0.485965, 0.432876, -1.126865, -0.685436, -0.085591, -0.414640, 0.228518, -0.821009, -0.743283, -0.161088, 1.142402, -1.018194, 0.476906, 0.276374, 0.987624, 0.383144, -1.295667, -0.488333, 0.617016, -0.033344, 0.725141, 1.008377, 0.439418, 1.472104, 0.155561, -0.110068, -1.304138, -1.165281, 1.315892, 0.444532, 2.298580, 0.227679, 1.336553, 0.946921, -0.440665, -0.680986, -0.260142, 1.197007, -0.098810, 0.861896, 0.132229, -1.200370, 0.120048, -0.474769, -1.315054, 1.050065, -1.008350, -0.255670, 0.426554, 0.174012, -0.210155, -0.068163, 2.407134, -0.601567, 0.799011, -0.624274, -0.469872, -0.280167, 0.011803, 0.864613, -0.501991, 0.980410, 0.137826, -1.481396, -2.424272, -0.223357, 0.942771, 0.688922, 0.865510, -1.111012, 0.624729, -0.025743, -1.629060, -0.758888, -2.265140, 0.975112, -2.076916, -0.129254, -0.356208, -0.606403, 1.246377, -1.888516, 0.899758, -0.849161, 0.364329, 1.925512, -0.950648, -0.616728, -0.874016, 1.383138, -0.172858, -0.918178, 1.024213, -0.941024, 0.766330, 0.153633, -1.626859, -0.475497, -0.643694, -0.905033, 0.940519, 1.136209, 0.211226, -0.467632, 0.768584, 0.706210, 1.397715, 0.138225, -0.431444, 1.122714, 0.571397, 0.548292, -0.631882, 1.414571, -0.135924, -1.275109, -0.940283, 1.720902, 0.349364, 0.680290, 0.095300, -0.323898, -0.007615, 1.202715, -0.284686, 1.662228, 0.701834, 0.034678, 1.381668, 1.859965, 0.966662, 1.430236, -0.150380, -0.372605, 0.098700, 0.696459, -0.309120, 0.459758, -0.275880, 0.799164, -0.224122, -0.528460, 1.048741, 0.905117, 0.480607, -0.296526, 0.945736, 0.133489, 0.089401, 1.380204, 1.754053, 0.779173, 1.216589, -1.024632, 0.759024, 0.537437, -1.139913, 0.696660, 0.308960, 3.609614, 0.339608, 1.885982, 0.023916, -0.875844, -1.432505, -0.408879, 0.584979, -0.618855, 1.262627, 2.090262, -1.082905, 1.685835, -0.536519, 0.173338, 1.443709, -2.353907, -1.209625, 0.035264, 0.724880, -0.802651, -0.310640, -0.851194, 0.611488, -0.269466, 0.182953, 0.029499, -1.014550, 0.994472, 1.221726, -0.131445, 0.280344, -0.855399, -0.543700, 0.270336, -0.346383, -0.531537, 0.300804, -0.090422, -1.123561, 0.287737, 0.707782, -1.353820, -1.284211, 0.480772, -1.396575, -1.554634, -0.084988, -0.186334, 2.129409, 0.530384, -0.133940, 3.329255, 0.457656, 0.867170, 0.499770, -1.001991, 1.411815, 0.040660, 0.676519, -0.624028, 0.904351, -1.411417, -0.472960, -0.996108, 2.300970, -0.662128, 1.222117, 0.269884, 0.390922, -1.267248, -1.749175, -1.508577, 1.856439, 0.123758, 0.155336, -0.293283, -0.183849, -1.440819, 1.447976, 0.524395, 0.506728, 0.757555, -0.786207, -0.849897, -1.340120, 0.481862, 1.816820, -1.376189, 0.641864, -1.924750, -2.417068, -0.160125, -0.193410, -0.381317, 0.927559, -2.568306, 1.271271, 1.303896, -2.166029, -1.530379, 0.829018, 1.732181, -0.142883, -2.048300, 0.065327, 0.763748, -1.820923, 0.940883, 0.860248, 0.229715, -0.482862, -1.746277, 1.577981, -0.148202, 0.488000, 0.667652, -0.643817, -0.639880, 0.475490, -0.112918, 0.024775, -0.303965, 0.769395, 2.331867, 1.243592, 1.776780, 1.552388, 0.815864, 0.582191, -0.822834, -1.167023, -0.017253, -0.817653, 0.886605, 1.262202, -0.163658, 1.243207, -1.652786, 0.328303, -0.799172, -0.683606, -0.429759, -0.663217, 1.450431, 0.051583, -0.195661, -0.419989, -1.419475, -0.879870, -0.730321, 0.290857, -0.046591, -0.568303, -0.166330, 2.531542, 1.964246, 0.228536, -1.092517, 0.103806, 0.250279, 0.015149, -2.444742, -0.257351, 1.175701, 0.213322, -0.241328, -1.163861, 0.221895, 1.118525, 0.805948, -0.594000, 0.242908, 2.210176, -0.552144, 0.942479, 0.553428, -1.980603, -1.221319, -1.055179, -0.439258, -0.533544, -1.869555, 1.269748, -0.761043, 0.446409, 0.411258, -0.522056, -0.788410, -1.651978, -0.697587, -0.290002, 0.255671, 1.480034, -0.405975, -0.133830, 0.677668, 0.207794, 0.705147, -0.086225, -0.452590, 0.082180, -0.046804, 1.277458, 1.057401, -0.070093, -0.595076, -2.132848, -0.703874, 0.188869, -0.392086, -0.881015, -1.165322, 0.410799, 0.471603, -0.211359, 0.070827, 0.900068, -0.444908, -1.120263, 0.003885, 2.025558, -0.908057, -0.839589, -0.755224, -0.843029, -0.568644, -0.908302, 2.828378, -0.611708, -0.665658, 0.153252, -0.034665, -0.134379, 0.770814, 2.250486, -2.436569, -0.962193, 0.319847, 0.984329, -0.923787, 0.168609, 0.847455, -0.477922, -0.283222, 1.247782, 3.877625, 0.061579, -0.597473, 0.968885, -0.724715, 2.344604, -1.180566, 1.619984, -0.016636, 1.101751, -0.591842, -1.365216, 0.003815, 1.326410, 2.052107, -1.039814, 1.038797, 1.231920, -0.644768, 1.469848, 1.424112, -0.161596, 0.181252, -0.753282, 0.211047, 1.295373, 0.198816, -0.233923, 0.998324, 0.175984, 0.024981, 0.063775, 0.806074, 0.343550, -0.334650, 0.562876, -0.468298, -0.207810, -0.874198, 0.866068, -1.239539, 0.690880, -0.212895, 0.125039, -1.686516, 0.653755, -0.386915, 1.461090, -0.691420, -1.523585, -2.568363, -0.716705, -1.886883, -0.381368, -1.872987, -0.382293, 0.415671, 1.000871, 0.636103, 0.150059, -0.234357, -0.351909, 0.730472, 1.440648, 0.353006, -0.448621, 0.898384, 0.390281, 0.584547, -0.217881, -2.378435, 1.155621, 0.800089, -1.396390, 1.286503, 0.127026, -0.257437, 0.639106, 0.143371, -0.455290, 0.187221, -0.766412, 0.533768, -0.344767, -2.099163, 1.662149, 1.249898, -0.461237, 1.105386, 1.017086, 0.128956, -1.242296, 0.388200, 0.036844, 0.059973, -0.360936, -0.232911, -0.751454, 1.359506, 1.272376, -0.691905, 0.024678, -0.614514, 0.576087, -0.285341, -0.712411, -0.866115, 0.219493, -0.667458, 0.297395, -3.397004, 0.779929, 1.371903, 0.710868, -0.948317, 0.485220, 1.393659, 1.578432, -0.396895, 0.623320, 0.804159, -1.946680, -0.118661, 0.296309, 0.770289, -2.094488, 1.354425, 0.846930, -1.323099, -0.255901, -1.112033, 0.881309, -1.045812, 0.231874, -0.437478, 0.227008, -1.548594, -1.383024, -0.498416, -1.314851, 0.645995, -0.184971, 0.301225, 1.426172, 0.333262, 0.369996, 0.477147, 0.428016, 0.393985, 1.584549, 0.594897, 0.411753, -1.484976, -0.800685, -0.022960, -1.020552, 0.152559, 1.489777, 0.871866, -0.360478, 0.780749, -2.045890, -0.555319}, - { 0.397902, -0.625628, 1.479387, 0.301508, -1.111580, -0.268341, 1.573557, -1.145249, 0.637864, -0.847365, -1.795448, -0.289333, 2.414314, 2.162613, -0.261415, -0.168199, -0.860304, -0.991795, 0.179852, 1.245093, 0.258291, 0.231043, -0.574224, 0.139197, -0.903825, -0.520385, -0.118809, 0.431198, 1.264804, 1.203976, 0.549401, 1.199434, 1.241233, 0.605376, 0.092087, 0.728034, 1.285359, -0.073010, 1.558317, -1.491558, 2.070826, -0.169041, -1.353781, -0.556507, -0.999211, -0.393171, -1.357439, 0.152901, -0.328406, 1.229994, 2.347155, -0.053017, -0.556455, -1.093065, 0.905515, -1.634576, 0.465455, 0.062382, 0.586577, -2.428869, 0.016895, 1.041459, 0.429108, 0.670191, 2.021802, -0.049661, -1.619991, 1.651106, -2.601614, 0.360174, -0.349763, 0.554840, 0.059825, 1.796347, 1.150188, 0.183160, 0.287071, -0.216400, -1.179182, 0.324511, -1.091342, 0.666005, -0.125617, 0.632509, -0.415586, 1.254706, -0.365042, -0.154315, 0.423750, -0.687698, -1.095811, -0.437080, 1.195237, -0.502768, -0.297017, 0.573047, 0.815506, 0.016211, 0.259915, -1.174870, 0.321185, -0.024461, 0.243258, -0.192603, 0.887272, 0.931584, 0.300058, -0.183879, 0.309701, -1.828334, 1.380724, -0.252967, -0.237349, -0.540729, 1.670534, -0.247425, -0.370222, 0.745058, 0.600605, 0.432842, -0.201970, -1.583855, 0.418849, -0.815864, -0.276003, -0.676250, -0.072936, -0.449164, 0.862817, 0.008487, 0.436551, -1.249150, -0.591659, -0.642105, 0.880850, 0.705326, -0.351558, -0.556165, -0.456567, -0.022146, -0.093462, 0.526523, -0.326691, 0.169439, -0.592688, 0.561000, 0.833284, 1.402720, 0.393110, 0.745189, 1.109875, -0.616299, 0.511503, -0.056702, -1.623536, 0.796917, 0.068542, 0.545954, 0.538066, 0.452050, 0.264712, 0.808458, 2.316365, -1.251816, -1.470128, -0.167181, 1.863362, 0.841509, -1.188357, 0.468992, -0.282439, -1.707706, 1.307675, -0.694134, -1.559336, 0.717897, 0.678974, -1.435963, 1.034485, -0.794434, -0.239942, -0.346986, 0.384528, 1.326524, 0.380102, -0.750890, -0.725756, 0.451464, 0.517938, 1.445675, -1.848911, -1.723534, 0.815476, -1.215246, 1.510624, 1.192425, 0.384347, -1.130144, 1.961066, -0.123552, -0.553472, -1.452633, 0.953591, 0.118772, -0.825222, -0.124089, -1.406725, -0.544679, 0.209230, -0.235874, 1.234162, -0.351002, 0.842394, -1.055806, 2.030265, -0.759735, 0.451925, 0.313142, 1.805153, 0.635674, -0.551841, -0.805381, 0.559676, -0.219827, 0.383242, 0.369866, 1.258649, 1.352083, 1.289509, -1.196115, 0.313936, 0.463391, -0.751866, 0.510596, 1.487680, -0.457503, -0.194005, -2.266080, 2.071722, -1.287911, -1.649169, 0.007173, -1.511061, -0.379841, 1.008682, -1.318822, -1.464255, -1.016002, -0.015871, -0.106886, -2.637326, -0.680773, 1.569122, -0.899328, 0.055442, -1.043027, -0.179923, -1.411653, 1.401585, -0.008668, -1.485639, -0.512759, -1.109846, -0.341646, -2.357267, -0.267082, 0.327114, -0.538263, -1.974607, 0.465478, 0.536107, 0.140605, 0.580848, 0.775572, 0.273671, -0.195684, 0.351589, -0.291344, 0.789389, 0.355494, 1.991824, 0.941108, 1.291807, 0.497956, 0.058046, 0.891124, -1.631686, 0.064557, 1.664873, 0.779738, 1.495963, 0.230727, 0.622008, -0.937111, -0.797877, 0.378265, 1.028295, 1.104523, 0.206274, -1.272290, 0.163572, 1.252883, -0.280044, -0.326013, -1.691937, 0.353829, 0.373003, 1.611550, 1.869360, 0.743680, 0.312009, -1.045734, 0.114571, -0.721438, 0.059467, 1.173317, -0.832717, -1.434169, 0.212966, 0.152695, -0.675706, 0.239844, 1.110258, -1.027962, -2.223228, -0.339359, -0.187397, 1.297618, 0.605033, 0.692649, 0.747547, -0.467109, -0.273467, -0.180523, -1.032680, 0.069647, 0.786971, -1.344939, -0.014145, -0.399295, 0.567165, -0.577537, 1.722423, 1.418422, -1.055373, 0.218069, 0.149612, -0.097183, -0.675311, 1.160755, 0.006216, -1.015604, -1.597331, 0.247162, 1.644854, 1.297949, -0.972633, -0.454446, 1.034320, 0.746576, 0.074242, 0.498527, 0.993786, -0.900211, -0.510987, -0.492017, -0.434712, -0.128737, -0.939523, 0.401896, 1.181159, 0.718623, -2.541697, 0.211067, 0.934952, 0.243785, 0.239564, 0.245031, -1.016884, 1.873756, 0.346441, -0.965325, -1.046962, 0.028684, 1.109325, -3.236459, -1.249434, -0.215591, -0.346796, 0.815893, -0.380468, -1.168015, 0.968293, 0.846781, -1.554854, 0.660721, -0.196492, -2.529359, 1.104557, 1.068576, -0.912981, 0.647836, -0.673273, 0.202953, -0.746167, 1.391816, -0.367632, -0.423983, -1.096837, -1.213978, -1.650027, -2.154068, 1.085110, -0.065280, 1.095219, 2.160916, 1.133895, 0.605502, -0.037332, -0.914821, 0.155807, -0.375078, -1.039768, -1.761924, -0.659202, 0.487244, 1.168084, 2.082662, -1.359603, -2.239086, -0.780609, -0.186767, 0.145168, -0.324051, -1.124557, -0.609289, 0.918961, 1.341877, -1.145339, -1.604142, -0.692339, 0.595833, 0.622823, 0.266690, 1.505500, 0.768237, -1.063251, -0.101952, -0.944630, 0.564766, 1.827564, 0.734241, 0.442886, 0.156192, -1.060690, 1.027479, 0.600775, -0.647523, -1.642485, 1.056724, 1.224363, 0.306832, -0.474383, -0.625286, -0.881909, 1.572986, -0.575539, 1.312308, -0.621236, -1.218176, -0.914801, 1.097045, -0.570638, 0.546480, 0.230379, -0.742362, 1.354333, 1.278417, -0.165027, -0.072332, 1.098148, -1.113943, -1.402935, 0.880472, -0.323580, -0.377257, -0.211428, 0.600710, -0.267630, 0.655203, -0.625052, -0.231555, 0.426684, -0.339672, 0.645270, 1.746541, -0.159183, 0.438685, 0.209977, 0.219198, 0.312064, -1.490843, 0.051519, 0.965100, -1.210808, -0.688722, -0.824444, -1.447609, 0.836103, -0.080510, 1.336200, 0.320610, 0.861792, 0.221703, 1.906374, 0.981361, 0.573299, 0.621737, 1.256313, -0.980522, -0.324407, -0.799707, -0.527238, -0.749697, -0.518749, 1.385509, 0.296353, -1.193576, 0.898063, -0.815179, 2.012119, -1.822363, 1.315985, -0.943272, -0.308327, -3.180191, 0.030982, 0.033757, -0.227730, -0.557081, 0.087957, -0.158858, 0.732622, -0.730323, 0.839778, 1.263403, 0.201684, 0.478520, 1.391217, 0.429208, -1.926970, 0.444913, -0.253590, 0.783124, 0.149794, 0.228818, -0.156759, 1.565686, 1.128065, -0.385326, -0.238820, 0.142572, 1.207330, -0.350904, 0.803233, 0.726274, 0.145972, 0.846257, -0.568462, -1.007236, -0.350368, -0.414480, 0.167306, -1.078522, -0.011083, -1.325884, -0.261677, -0.063001, 0.064699, -0.046340, 1.090827, 1.610452, -0.078146, 0.657580, -0.887938, 1.698157, 0.475013, -0.753172, 0.047510, 0.128340, -0.185470, 2.308815, -0.768362, -0.298944, 1.490169, -0.163181, -0.141706, 0.280293, 0.347666, -0.930147, 1.692237, 0.784575, 0.441540, -1.364817, -1.592082, -1.005267, -0.236132, 0.264326, 1.400481, -0.864173, -0.164374, -0.648073, -0.103964, -0.633422, -0.091832, -0.845128, 0.610313, -0.793220, 0.114684, 1.331711, 0.052275, -0.044252, -1.277283, 0.715250, 0.744954, 0.078848, 1.025515, -0.550467, -1.851244, 0.814695, 1.429012, -0.517363, -0.282072, -0.338155, -0.759759, -2.167563, -0.289156, 0.276747, -1.281504, 0.384948, -0.137668, -0.639828, -0.655429, -1.868230, -0.525978, -3.318033, 2.028107, -0.198462, -1.628217, 0.368521, -0.398997, -0.659896, 0.262710, 1.866975, -0.359355, -0.916458, 0.260492, -0.022290, 1.329419, 0.519441, -1.003110, 0.224461, 0.000708, -0.870572, -2.013021, 0.455899, 0.659418, -1.408089, 0.546824, -1.196154, 0.630183, 0.722417, 1.381391, -1.120544, 0.510466, -0.426731, 0.652140, 0.013611, 1.616731, -0.352046, -0.053897, -1.832929, -0.639912, -0.337219, 1.866480, -0.072241, -0.122027, -0.446886, -0.460639, 1.260563, 0.343270, 1.659025, 1.953304, -0.862370, -1.102291, 0.107293, -0.312064, 0.875453, -1.615332, 2.395746, 0.663640, 0.776950, 0.651915, 2.238382, -0.882837, 0.425103, 0.336348, -1.195239, 0.308997, 1.112996, -1.095769, 1.224501, 1.003981, 0.666561, -0.263300, 0.839102, 0.479109, 1.101422, 0.079921, -0.431181, 0.424569, 0.896718, -0.375499, 1.210316, 0.209991, 0.081365, -0.633965, 0.338000, 0.482959, -0.223752, 0.161142, -1.421300, 0.360435, -0.562725, -2.255239, -0.187742, -0.692581, 0.084831, -0.142436, 0.268714, 0.314078, -0.250118, 0.294570, -0.593531, 1.635043, 1.924079, 0.133923, 1.648445, 0.814732, -0.957051, 0.501103, 2.133228, 0.882361, -0.754572, 0.017249, -0.774283, -1.937786, 1.727056, -1.526170, 0.107468, -0.090990, -1.664206, 1.386554, 0.571319, 1.309265, -0.824381, 0.397706, 0.795643, 1.035703, 0.796255, -1.111539, -0.559384, 0.201687, 0.727894, -0.186225, -2.856054, -0.432620, 0.120702, -0.061352, 0.181169, -0.406681, -0.604765, -0.279922, 0.138639, 0.640739, -0.931177, -2.112040, 0.144120, -0.170148, 0.253386, 0.817774, 1.755317, 0.291607, 0.292368, 1.083997, 0.492946, -1.142132, -0.730558, 0.722754, -1.114944, -0.483674, 1.237506, 0.589123, -0.164140, -0.439675, -1.082012, 0.319133, -0.949891, 0.267695, 0.540682, 1.892502, 0.915960, 0.235131, 0.145682, 0.635065, -0.621037, 0.931392, 0.943104, 0.587557, 0.919953, 1.221641, 0.649709, -0.429679, 1.143710, 0.704110, 0.681591, 1.645936, -0.870068, -0.687080, -0.352319, 1.442036, 0.765700, 0.705972, -0.571633, -0.896662, -1.346071, 0.038369, -0.900158, 0.409980, 0.902031, -1.160114, 1.162613, 1.227467, -1.194573, 1.493758, 0.524206, -1.435843, 0.991254, 0.618583, -0.203432, 0.497358, -0.351674, -0.111591, 0.574600, 1.328734, -0.627848, 0.237703, -1.620735, 0.691644, -1.829404, -0.129348, -1.778855, 1.013611, -0.871972, 0.192941, -1.170202, 0.133178, -0.624322, -0.941917, 0.435955, 0.646856, -0.821544, 1.230857, 1.977842, 1.696647, -0.808502, -1.292378, 0.215458, -0.755800, -1.842436, -0.533982, 0.555028, -1.717735, 1.782895, -0.193736, 0.643441, -1.200487, 1.401901, 0.647254, 0.315923, -0.929332, 1.017438, -0.159385, -0.163197, 1.073068, 2.494771, 0.220851, 1.212367, 0.829879, 0.553959, -1.125298, 0.219472, -0.344191, -0.274845, 0.391239, 0.724445, 0.644183, 1.339640, -2.402907, 1.424422, 0.775488, 0.855621, -0.316442, 0.652609, 0.151223, -0.509427, 0.357319, -0.002232, 0.002625, 1.787257, 0.093730, 0.422814, -0.181495, 0.122268, 0.462504, 0.489205, 0.006345, 1.657085, -1.052014, 0.805784, 0.272965, 0.009273, -1.206407, -0.603380, -0.271340, 0.279851, 2.060154, -0.659178, -0.263021, 1.438617, -1.114851, 0.978198, -0.629626, 0.092254, -0.079602, 0.729486, 0.246264, -1.330521, 0.595567, -0.194329, -0.488868, 1.261218, -0.629127, -0.003524, -0.930757, -0.971893, -0.977347, 0.169135, -0.029851, 0.663033, 1.331198, -0.166863, -1.413124, -0.611232, -1.325887, 0.719540, 0.366036, -0.843728, -0.039725, -0.901228, 0.970152, -1.932931, -1.336615, -1.450713, 0.322657, -0.086283, -1.490028, 1.429576, 2.014214, 0.587086, -0.209670, -0.497042, 0.075194, -1.305046, -1.103764, -0.053643, -0.914243, -0.507178, -0.258858, 0.478769, -1.026318, 0.581566, 0.970539, 1.057537, -1.220953, 1.115451, -2.018055, -0.094590, 0.612631, -1.119480, 0.057983, 0.790750, 0.857275, -0.775829, -0.723215, -0.788819, 0.092315, -1.208597, -0.332328, 0.073370, -0.875584, -1.259870, 1.376252, -0.110302, 0.198944, 0.665233, -1.004277, -2.495070, -0.501481, 0.209519, 2.160294, -0.392717, 0.893331, -0.116144, -1.601647, -0.912129, 0.406116, -0.382399, 0.390812, 0.264827, -2.756296, -1.413604, -1.233068, -0.261524, -0.032756, -0.897102, -1.347869, -1.052447, 0.367772, 0.471368, -0.708269, 1.138336, 0.204978, -0.945817, -0.120756, 0.416951, 1.527039, 0.576882, -0.031194, -1.029366, -0.711289, -1.178913, -0.275569, -0.415667, 0.516198, -0.492818, -0.908636, -0.602793, 0.423466, -2.831839, 0.025080, -0.837435, 0.097479, 0.794901, -0.707969, -1.296508, 0.197815, -0.607117, -0.407268, 2.144266, 1.297526, -0.401619, -0.123520, -1.749741, -0.093029, -0.482218, -0.513170, -0.077495, 1.339276, -1.923275, -0.366532, -0.088114, 1.714944, 0.464533, 2.008305, 1.797857, 0.119683, -1.920210, -0.889408, -0.002820, 0.769199, 0.995564, -0.545528, -1.115026, 0.079013, -0.012283, -1.519053, 0.988466, -0.007880, 1.955811, 1.229000, 0.012550, 0.068846, -0.084205, 0.551803, 0.973551, 0.095191, -1.047018, -1.178344, 0.619286, 0.680781, 1.104758, -0.856137, -0.658829, 0.503207, 0.435084, 1.420897, -0.997445, 1.915613, -0.765488, -1.150219, -0.588657, -0.021214, 1.272808, 0.778202, 0.970973, 0.446273, -0.687227, 0.532673, -0.962006, 1.416638, -0.120991, 1.212373, -0.848133, 1.363248, -1.024722, -0.540119, -0.063279, -0.554893, 0.825082, -1.861743, -0.279161, 0.759229, -1.919250, -0.389236, 0.225432, -0.155800, -0.644842, 1.005462, -0.331361, -1.276624, 0.421900, -0.934115, -1.028485, 0.188554, -0.060705, -1.971242, -1.104679, -0.461934, 1.194904, 1.355721, -0.498667, -0.087895, -0.341180, 2.152280, -1.156931, -1.297162, 0.159961, -0.371560, -1.660581, -1.718519, -1.173714, -0.388387, -0.710685, -0.665281, 0.534684, 0.922758, -1.603039, 0.722145, 0.713343, 0.295906, 0.004487, 1.232303, -0.725855, 1.200933, -0.365656, 0.709004, 1.516460, 1.978608, -0.862091, 3.220235, -0.287797, 1.246924, -0.955292, 1.563985, 0.389392, -1.152659, -0.386489, 1.415505, 0.819921, -0.490103, -0.640921, -1.649100, 0.036991, -1.168213, 0.180131, 0.030534, 0.343469, 1.730103, 1.306038, -1.120715, -0.023258, -1.067802, -0.230431, -0.638243, -0.275032, -0.195180, -0.498887, 1.328472, 0.250918, -0.403072, 0.221525, 0.154046, -0.355871, 0.005889, -0.071270, -0.213476, 0.235303, -2.103062, 2.674556, -0.930435, -0.195183, 0.656623, -0.324090, -0.195452, 0.479278, 0.719781, 2.332605, 0.577367, 0.472275, -1.442480, 0.500991, 0.473953, -0.122388, -1.187577, 0.397951, -0.641310, -0.121393, 2.176812, -0.327258, -0.606647, 2.223547, -1.237120, -0.992715, -0.159497, 0.455373, 0.156582, 3.120859, 2.264301, 0.031816, 0.113769, -1.799282, -0.510779, 0.020287, -0.573934, 1.441873, -1.582964, -1.314808, -0.905121, 1.751048, 0.211886, 0.279688, -0.031168, 0.807837, -0.179264, -0.558977, 1.561998, 0.061429, -0.648085, -0.011632, 0.901130, 0.539795, -0.062280, 1.037842, -0.069247, -1.358977, -0.727844, 1.373096, 0.268221, -0.502699, 1.203040, 0.291188, -0.304377, 0.260948, -0.728182, 2.210609, -0.499431, -0.069824, 1.122771, 1.425929, -0.205414, 0.013548, -0.195850, 0.313866, -1.243809, -0.439834, -0.637609, -0.428886, -0.933359, 0.263488, 1.076910, 1.798448, 1.718117, -0.691431, 1.140254, 1.306156, 0.264880, -0.426295, -0.483738, 0.147290, 0.135848, 2.367270, -0.874218, -0.389739, 0.222940, -0.602368, 0.550388, -0.423112, -2.834760, -0.251033, 0.491035, 0.743647, -0.811746, -1.483979, 0.403688, -0.964126, -0.188674, 0.413081, -1.378762, 1.791452, -0.800096, -1.594639, 0.624772, 1.007449, 0.952239, 0.375546, -2.358524, -0.239566, 1.040509, -0.578055, -0.157878, -1.377931, -3.109737, -1.884068, -1.361481, 2.111804, -0.822966, 0.512906, -0.462270, -0.117832, -0.761100, 1.473985, 0.373687, -0.016655, -0.115666, 0.389894, 0.210412, -1.374144, 0.536187, 0.610932, -1.142081, 0.103665, 1.171672, -0.466920, -0.565776, 1.228711, -0.592833, -0.230855, 0.479654, 0.407419, 0.053162, 0.203749, -0.949128, 0.899117, 0.950011, 1.560256, 0.155268, 1.120049, 0.977134, -0.386127, -0.947654, 0.744135, 0.709754, 0.399837, 1.146906, 0.157047, -1.215089, 0.555536, 0.924675, 0.847462, 1.943426, 0.415244, 1.114699, 1.344164, 0.988261, 0.051285, -1.045561, 0.714125, -0.268082, -2.060783, 0.927242, -0.984802, 0.685616, -0.263042, 0.018238, -1.561641, -1.298827, -1.418777, 0.895254, -0.466107, -0.096130, 1.201377, 1.365423, 1.279658, -0.265955, 0.066162, 0.274351, 1.176118, 0.053008, -0.422437, 1.462755, -3.015315, -1.492427, -2.527809, -0.010963, 1.307484, -0.851646, -0.589602, -0.004985, -0.441831, -0.298692, -2.216329, -0.187479, -0.547348, 1.658710, 1.555562, 0.308208, 0.473002, -0.749534, -0.787369, -0.514901, -0.920756, 1.053708, -0.569274, -0.059521, -0.700414, -0.625122, 0.601374, -0.012728, 0.250269, -1.275045, 0.364849, -0.171555, -0.423571, -0.985311, 0.591574, -0.557575, 1.327642, 1.316166, -0.978657, 0.375612, -0.875736, 0.190580, 2.040755, -0.013696, -0.223093, -0.495197, -0.383582, -0.728658, 1.316873, -0.013236, 1.326230, -0.239358, 0.028608, -0.312866, -1.183085, 0.066513, -0.795607, -0.631752, -0.790130, 1.754964, -0.535769, 0.351556, 0.436180, -1.531465, 0.104114, 0.548718, -1.822194, -0.585365, 0.782286, -0.702233, 0.305163, 0.045526, 2.147397, 0.167095, 1.054680, -1.318063, -0.082929, 0.044461, 1.798332, -0.401105, 0.254712, -0.490336, -0.922367, -1.598941, 0.176974, 0.792304, 0.190157, 0.836363, 0.632260, -1.421667, -0.166150, -0.705454, -0.117918, -0.114645, -0.494666, -1.964028, -1.483485, -0.805194, -1.124968, 0.752185, -0.445609, -0.539539, 1.082037, 0.374930, 0.157324, 0.057473, 0.996430, -0.901272, -0.010872, 0.349762, -0.008421, -0.625017, -0.035655, 0.043201, 1.032874, 0.296900, 0.806917, 0.511126, 0.097089, -0.824277, 0.981837, -0.869999, 0.522362, 0.696053, 1.657134, -0.153059, -1.430641, 0.881273, 0.229371, 0.115647, -0.928265, -0.179038, 2.032038, 1.416396, 0.847308, -0.606086, -1.861907, 0.252192, -1.369171, 1.981785, -1.321295, 1.073320, -0.921769, -0.445751, 0.269134, -0.611617, -0.365908, -0.236242, -0.098734, -0.806022, -0.215842, 0.620205, -1.132795, 0.961762, 0.208385, -0.242921, 1.075466, -0.974263, -0.572946, 0.386050, -0.865346, -0.021480, 0.992734, 2.288755, -0.545419, 0.575367, -1.288827, 0.574643, 1.096143, -2.253523, -0.203932, 0.463036, -0.921544, -0.731187, -0.520028, 1.360932, -1.799895, 0.486349, -0.886007, -1.858305, 0.403362, 1.408571, 1.119234, -0.216637, 1.955386, 1.244642, 1.186321, -0.833162, 0.761052, 1.714296, -0.421925, 1.328339, 0.165691, 0.057056, 0.212240, -0.725287, -0.448622, -0.707221, 0.739069, 1.175328, -0.030339, 0.391110, 0.324313, 1.234727, -0.611348, -0.135203, -0.217118, -0.575642, -0.481307, 1.614949, -0.743329, -0.776322, 0.907290, -0.557254, -0.626826, -0.460979, -0.029481, 0.218129, 1.062821, -1.269559, -1.773411, 0.439020, -1.968440, -1.873107, 1.116506, 1.341182, -0.472738, -0.563285, -0.115501, -0.028733, 0.684597, -0.404609, -1.548671, -2.754110, 0.192049, -0.262183, 1.545758, -1.166935, 0.317727, -0.813394, 0.093455, -0.594494, 2.243908, 0.862889, 0.494756, 0.329103, 1.242202, 0.092987, -0.065457, 1.130374, -0.005381, 1.127514, -0.491244, 1.041776, -0.343603, 0.471847, -0.850555, 0.944268, 1.606235, 1.358560, 0.207087, -0.551920, -0.391832, -0.278153, -1.024869, 0.929067, -0.903400, 1.154206, -0.290539, 0.465979, -0.949779, -1.229331, -0.324859, 1.852412, -1.528874, -1.374022, 0.659562, 0.148540, 1.298361, 0.355546, 0.898985, -0.787030, 0.885879, -0.180930, 1.003042, -2.142610, -0.752738, 1.027719, 1.933525, 0.583066, -0.725643, 0.062547, 0.224479, 0.484880, -0.500071, 1.590852, -0.012077, -1.138220, 2.307087, 0.058780, 1.109037, -0.340743, -0.375280, -1.026863, 0.261883, -2.873732, 2.599088, -0.026834, -0.090668, 0.096925, -0.106037, 0.429530, 0.274213, 0.287082, -0.322930, 0.637699, 1.133164, -1.005047, 0.562509, 0.107756, -1.314345, 1.550069, 1.746011, -0.023739, -1.145663, -0.572618, -0.091766, -0.073645, -0.867268, -0.086424, 1.240232, 1.290610, 0.792627, -0.917114, 0.207297, 1.519323, 0.543178, -0.904294, 0.029228, 1.491327, -0.708791, 0.584278, 0.394101, 0.170791, 1.665265, 0.679291, 1.128493, 0.518032, 0.090865, -0.205841, 0.175440, -0.304879, 1.213930, 0.133233, 0.307538, -0.343509, -0.476510, 0.720584, 0.086064, -0.123170, -1.508930, 1.664220, -0.909256, 0.581730, 0.326905, -0.628290, -0.865279, -0.269337, 0.431555, -0.912122, 1.115049, 0.462110, 0.109722, 0.488445, 1.570567, -0.777412, -0.337776, 0.012234, -1.319299, -0.999330, 0.789943, -0.802324, 0.132238, 0.701228, 1.549307, 0.330899, -0.354603, -1.188475, -0.066450, -1.725475, -0.011502, 1.729350, -1.740283, 1.989218, 1.483074, -0.302512, -1.929752, -0.073134, -0.519722, -0.812547, -0.894488, 0.209302, 0.286915, 1.759358, 1.188033, 0.277531, -0.786866, 1.675290, -0.795249, -0.987034, -0.498810, -0.327979, -0.772105, 1.690472, -1.095643, 1.099586, -1.285466, 1.745408, -0.007676, 1.599954, -0.126218, 1.800575, 1.307515, -2.675705, 1.107394, 1.138512, 0.655565, -0.690958, -0.628045, -1.093270, -0.327841, -0.569912, 0.407510, 1.936694, 0.420488, 1.439300, 0.732885, -0.644625, 0.328560, -0.024258, -0.400122, 0.028204, -0.074894, -0.121787, -1.384298, -0.068262, -1.236813, -0.372484, -1.394397, 0.340848, 0.994900, 1.286134, -0.078777, 0.227388, -1.856870, 1.666336, 0.920616, -0.861653, -1.058923, 0.398428, 0.227442, 1.014405, -0.959578, 1.027706, 0.443570, 0.195949, -0.031804, 0.742083, 0.647662, 1.159854, -0.768153, 0.425177, -2.734565, -2.635970, -0.776466, -0.339134, 1.609774, -0.053368, 0.189059, -0.369728, 0.546454, 0.197936, 0.552730, -0.326067, -0.353512, -0.998867, 2.202140, 0.526449, 0.008358, -0.163653, -0.701090, -0.970405, -1.159152, 1.578912, -1.053726, 0.644994, -0.351175, -1.224443, -1.880515, 0.584871, -1.526418, 0.667879, 1.722451, 2.405367, -0.089798, 0.896519, -0.932062, -0.746178, -0.066302, -0.121282, 0.723257, -1.147001, -0.705364, -0.148270, -0.727830, -0.435181, -1.857304, 1.025615, -0.247655, 0.170963, 0.630386, 2.019815, -0.051581, -2.396340, -1.489793, -1.139267, -0.356815, -1.507095, 0.357992, 0.120801, 2.656139, 2.205944, -0.633099, 1.421507, -0.737112, -0.389680, 0.595222, 0.423990, -0.410285, 0.764676, 1.641639, -1.932271, 1.527080, 0.348338, 0.358684, 1.234703, -0.963635, -1.372566, 0.561248, 0.380021, 0.468774, -0.642245, -1.804695, 0.931268, 0.505565, -0.293890, 0.824634, -1.447939, -1.487093, 0.644569, 1.273257, -0.388113, -0.490511, -0.311814, 0.525488, -0.322727, 0.746299, -0.013972, 0.951541, -0.878458, -1.195304, -1.266439, 0.754591, -0.563294, -0.032327, -1.933672, -0.025318, 0.461708, 0.515547, -0.509287, 0.523600, 2.074127, 0.314889, 0.026121, 2.087113, 1.417964, 0.676282, -0.906987, 0.359946, 0.443624, -1.704957, -0.801375, 1.197335, 0.134621, 0.939449, -0.451562, 0.022929, -0.238121, 0.312455, -0.523777, 0.055907, 1.107461, 0.648612, 0.296204, 0.663174, 0.371537, 0.206355, -0.883969, -0.480764, 0.263936, -0.648345, 0.665095, 1.004315, 2.189885, -1.445895, 0.482572, -0.896395, 0.307800, -1.529635, 0.637840, -2.313832, 1.417485, -1.458698, 0.272801, 0.887301, -2.055120, 0.223960, 0.641071, 1.009966, 0.290074, 0.794865, -0.868054, 0.146543, -0.843323, -0.051535, -1.574116, 0.805259, 1.050735, -0.025870, -0.498268, 1.040492, 0.544859, -0.197614, 0.067346, 1.526364, -1.696052, 0.333217, -0.842155, -1.109141, -0.688241, -0.184381, -0.519930, -0.514361, -0.645382, -0.427517, 1.360512, 0.453192, 0.348188, 0.114309, -1.191802, 0.190292, 1.212574, -2.157988, -0.571602, 0.052900, -0.474125, -0.350652, -1.390604, 1.297446, -0.266244, -0.172165, 0.261631, 1.477623, 1.605108, -0.551839, 2.929697, 1.124276, -1.001032, -0.176865, 0.655861, -0.406324, 2.124618, -2.635197, 1.687983, -3.004538, 0.432338, 0.469672, 0.820505, -1.239035, 1.071978, -0.382358, -1.359175, 2.171713, -0.742410, 0.621414, -0.114376, -0.025554, 0.894191, -1.923222, -0.996807, -0.231399, -0.009685, 0.832969, -1.151006, 0.282607, 0.241059, 0.191672, 1.095477, 2.968779, -0.611573, 0.547394, -0.938493, 0.693095, 1.201304, -0.671215, -1.791842, -2.898029, -1.615832, 0.331113, -0.301897, 0.178059, 0.561332, 0.587000, 0.929405, -0.661530, -2.917735, 0.902986, 0.390727, -0.605329, 0.618787, 0.938493, 0.864314, -0.104563, -0.324752, 0.921397, 0.418408, 2.499801, -0.443724, 0.369828, -0.657718, -0.717587, -0.851624, -0.102751, 1.974144, -0.353687, 0.129317, -0.014258, -1.786300, 1.231025, -2.190894, 1.353528, -0.539742, 0.366985, -0.491186, -0.749337, 0.468829, 0.726582, 0.901876, 1.689844, -0.015404, 1.291313, -0.652228, -1.617892, -0.407098, 0.811635, -0.100882, -0.505936, 0.064013, 0.190718, 0.741500, -0.509659, -0.736679, -1.423419, 0.480006, -0.536431, -0.921670, -2.029162, 0.199977, 0.695036, -1.274866, 0.921030, -0.326365, -0.755873, 0.159117, 1.810865, 1.353728, -1.020579, -0.990970, 0.066096, -2.151225, 0.651172, -0.150863, -0.340168, 0.980596, -2.188121, 0.543628, 0.557794, 0.245082, 0.781492, 0.607996, 0.828434, -0.962132, 0.024858, -0.379184, -0.733837, 0.834223, 0.386350, 0.224020, 0.471652, 0.734388, -2.240056, 0.658683, -0.123757, 1.223046, 0.117629, -0.108488, 1.669346, -0.994313, -0.033688, 0.518057, 1.067093, -1.768806, -0.011158, 1.266573, -0.811456, -0.505756, 0.506981, 0.880940, 0.972582, 0.212036, 0.167964, -0.502662, -1.862485, -0.901330, -1.061944, -0.674017, 1.530106, 1.535317, -0.003357, -0.629021, 1.311750, -0.362371, -1.117139, 0.733495, -0.825549, 0.699071, 0.262661, 0.557515, -0.340045, -0.271981, -0.245013, -0.378185, 0.455393, 1.183034, 0.757507, -0.236184, -0.683246, -0.636849, 0.020856, 1.240710, 0.248111, -0.684862, 0.221066, 1.521175, 0.544850, -0.596628, -1.598467, 0.875317, 1.252968, 0.861524, 0.462880, -0.044788, -0.473580, 0.748585, 0.657940, -1.803560, -0.453853, 0.906142, 1.871403, 0.001191, 0.332404, 1.610611, -0.259326, -1.566393, -0.853359, 2.262617, -0.480641, 0.716550, 0.126798, 1.165830, -0.076613, -2.341905, 0.671848, 0.108832, -0.016483, -0.613855, 0.102640, -0.847983, -0.008419, -0.666179, 0.085670, 0.512744, 1.182312, -0.373375, -0.121694, -1.064701, -0.171300, 0.009237, -0.442841, 0.219998, -0.033954, 0.345724, -0.578005, -0.512361, 1.049148, -0.909180, 2.146466, -1.547479, 0.508790, -1.448311, 0.957618, 0.170861, -0.497308, -0.406293, -1.400490, 0.742989, 0.522649, 1.331268, 0.270015, -0.844411, -1.163259, 0.991921, 1.429273, -0.734774, -1.062894, 0.750652, -0.873146, -0.340084, -0.121451, 0.688241, 1.159015, -0.255511, 0.604745, -1.202697, -0.677825, 1.992253, -1.045228, 0.532146, -1.159546, -0.924687, 1.259292, -0.273964, -0.948197, 0.641389, -1.272496, -0.463940, -0.002209, -0.058116, 1.046463, -0.291613, -1.898186, -0.650218, -1.426814, -0.125597, -0.182237, -0.010218, -0.160333, 0.866401, -0.827633, -0.397214, -1.539608, 1.606753, -1.648968, 0.064658, -1.670380, -0.818662, -0.802417, -0.007865, -1.395617, 1.410061, 0.065654, -0.389685, -0.394439, 1.194661, -1.361651, 2.210598, 0.876620, 1.191854, 0.431486, 0.190191, -0.659261, 0.870055, -0.951275, 0.901923, -0.675700, -0.043060, -0.800696, -0.437791, 1.352623, -1.093744, -0.318814, -0.544211, 0.774899, 0.767785, -0.403334, -0.060868, -1.618558, 0.093884, 1.317460, -0.051572, 0.335705, 1.947734, 0.095813, -0.504450, 0.322079, 1.038718, 0.642387, 0.597046, -0.312992, 0.580084, 1.042214, -1.409265, 0.664566, -1.119946, -0.834135, 0.352572, -0.916297, -0.079989, -0.363696, 0.366679, -1.521041, 0.285981, 0.403917, 1.516945, 1.553444, 0.018757, -0.829727, 0.221342, -0.322714, 0.610327, -0.340918, -0.338989, -1.050245, 1.755176, 1.039579, 2.109206, 2.012368, -0.466858, -0.888285, 2.066537, 1.778743, 0.637035, 0.119061, 0.612273, 0.257950, -0.530613, -0.403464, 0.646749, -0.025139, 0.199194, -0.344601, 0.355487, -2.023522, 0.377586, 0.302126, -0.450572, -0.405818, -1.151762, -1.440746, -0.663230, 0.106122, 0.155294, -0.863698, 1.015369, 0.837256, 0.830364, -0.812796, -0.356073, -0.241617, 0.148976, -0.040264, 1.562158, -1.232786, -1.710810, -0.574893, -0.275699, -0.160778, 0.547746, -0.423288, -0.102024, -0.989349, 0.504044, -0.379042, 0.709743, -1.407546, -1.218258, 0.266243, 0.057741, -0.218605, 0.081067, -0.322416, -0.344185, -2.073922, -0.351984, -1.641033, -1.584123, 0.029263, 1.124833, 1.777017, 0.229199, -0.848880, 1.048581, 0.882925, 0.875108, 0.355294, -0.908931, -0.591330, -0.162301, 0.579405, 0.428711, -0.264838, -0.179268, -0.798161, 1.090056, 1.308645, 2.271164, 0.951394, -0.566985, 0.003633, -1.534758, -0.513952, -0.526102, -0.748872, -1.113273, -0.076867, -1.795030, 1.480317, 0.597119, 0.481580, -0.769170, 0.069823, 1.365360, -0.314300, -0.564640, -0.162384, 0.143921, -0.440087, -1.629171, -0.338432, -1.095155, -1.335774, 0.315612, 2.658962, -3.545459, 0.366555, 0.458854, -0.585870, -0.163190, 1.094791, 1.027735, -0.851878, -0.584315, -0.272664, -0.468000, 1.679178, 0.065369, 1.178473, 0.114016, -0.917252, 0.614730, 1.247345, -0.852123, 1.724295, 0.423845, 0.228764, 0.309849, -1.689854, 1.387500, -0.346404, 0.342243, 0.516343, -0.562844, -1.173812, -1.635971, 0.987711, 1.778350, -1.589562, -0.149500, 0.746067, 1.285770, 0.265498, 0.332839, -1.344064, 0.405747, 0.876179, 0.643592, 0.679825, -1.996853, 0.840229, -0.308427, -1.354843, 0.994137, -0.167879, 1.821004, -0.200148, -0.468580, -3.071407, 1.842265, -0.014271, 1.796380, 1.966879, -0.754317, 0.279862, 1.390972, -0.677753, 2.123153, 0.091538, 1.185210, -0.428905, 0.180440, 0.193139, -0.250162, 0.068827, 0.439453, -0.375087, 0.815952, -1.461931, -1.484343, 0.155991, -0.343934, -0.674934, -0.757111, -0.890701, 0.127912, -0.881186, 1.854031, 1.150320, 0.185665, 0.343833, 0.000591, -1.842694, -1.330324, -0.747392, 1.833260, 1.602708, -1.778736, 2.294672, -0.920821, 0.427335, 0.054717, -1.703291, -0.594606, -1.190024, 0.317248, -2.270661, 0.043405, 0.012945, 1.078138, 1.351644, -0.469334, -1.056596, -0.917601, -0.792745, -1.065556, 0.598509, -0.717723, -0.641035, -1.417798, 0.204366, 0.736533, -0.632759, 1.024566, 0.433833, -0.871351, 0.173831, 0.546875, -0.559636, -1.199808, 0.541229, -0.404993, 1.070378, -1.871046, -0.237491, -0.922447, 1.178701, 0.562200, 0.072855, -0.022191, -0.445932, 0.729217, 1.187591, -0.103484, -1.848249, 0.154510, 1.689602, 2.042302, 1.754312, -0.558963, -0.998207, 0.705210, -1.184328, 1.749835, -0.709990, 1.140654, -0.180331, 0.627150, -0.371165, -0.665236, 1.296182, -1.229416, -0.169815, 0.848362, -0.216884, 1.686927, 0.533186, -0.235374, 0.728526, -0.703474, -0.968710, -1.259308, -1.604750, 1.034491, 1.644409, 0.447905, -0.848401, 0.051421, -0.166443, -1.747666, 2.819800, 1.718565, -0.861314, -1.148654, -1.167886, 1.067937, 0.128287, -0.088797, 0.756557, -0.699210, -0.897109, 0.536279, -0.301925, -0.367722, 1.285569, -0.377353, -0.721170, -0.750814, 1.483239, -0.930610, -0.570279, -0.145981, -1.246912, 0.418122, 0.059250, -1.554485, -0.266390, 1.091305, 0.446368, -1.524833, -0.943701, -1.070007, 0.494341, -0.974884, -0.598197, 0.280411, 1.012184, 1.705875, -0.459727, 1.430849, 0.262635, 0.383192, 0.101176, -0.457649, -0.455794, 0.666279, -0.855365, -0.587374, 0.804247, -1.136523, 0.031035, 0.299125, -0.293908, -1.700541, -0.767805, 0.310221, 0.573647, 0.060023, 1.220455, -0.486062, 0.806113, -2.107617, 0.726239, 0.083309, 1.725120, 0.844222, -0.056153, 1.323175, -2.387690, -1.390260, 0.531682, -0.266384, 0.138585, 0.918953, -0.017883, 0.681578, -0.736954, -0.686526, -0.926517, -1.220135, 0.039758, 0.775645, -0.644901, 0.833274, 1.274415, -1.721664, -0.888778, -0.231867, 0.235912, -0.777624, 0.732187, -1.136244, 1.161911, -0.122186, 1.219785, 0.002935, 0.262351, -0.947834, -0.443407, 0.448637, -0.182164, -0.624199, 1.178681, -0.301519, -0.927613, 0.358561, 0.723395, 1.284822, 0.020915, -0.921297, 1.415148, -0.028887, 1.260009, -0.616478, -0.850232, -0.606855, 0.319328, -0.777257, 0.763812, -0.773171, -0.074065, 1.024682, -0.021542, 0.924040, 0.147887, -2.540340, 0.787905, -2.202209, 2.183229, 0.078587, 0.676481, 1.319769, -1.229369, 1.169221, 0.019099, 0.467532, 0.403137, -1.267605, 0.220141, 0.015981, -0.474303, 0.385978, 0.514755, -1.218006, 0.085768, 0.764566, 0.157970, 0.928002, -0.649639, 0.777782, 1.382949, -0.020832, 1.595039, -3.048661, 0.944558, -0.514045, 1.025427, 1.469392, -0.109880, -1.603322, 0.156127, 0.336927, 2.740097, 0.789550, -0.202094, 2.100307, -0.176833, -0.348746, -0.780790, -0.890921, -0.099375, -0.395321, 0.433843, 0.598821, -0.830188, 0.946844, -0.577158, 0.877350, -0.419625, 0.407801, -0.383112, -0.738779, -1.457638, -0.874808, -0.083943, -0.386337, -0.615102, -0.110938, 2.399594, 0.138209, 0.805105, 1.154359, 0.646286, 1.418561, 1.281643, -0.001071, -1.380921, 2.108154, 0.416818, 0.040940, 0.231086, 0.752446, 0.874355, -1.580034, 0.761316, 0.928182, -0.698029, -1.780215, 2.482449, 0.833725, 0.777575, 0.342206, 0.069072, -0.993652, -0.401144, 0.152109, -0.571896, 0.217344, -2.014789, -1.370766, 0.271145, -0.958365, 0.304366, 1.863107, -0.705185, 1.667054, -0.869407, 0.360849, 0.798730, 1.170564, 0.873055, -0.885686, -0.104314, -0.152820, -1.332623, -0.674574, 0.009500, -1.467141, 0.426071, -0.766816, 1.775136, 0.910604, -0.261173, -0.525031, -1.178618, -0.757797, -0.018717, -0.431502, -0.283731, 0.610062, -0.865533, 0.356493, 1.860568, -1.418370, 1.200678, -0.682103, -1.123933, -0.912822, 0.266417, 0.761528, -0.299052, 0.390178, 0.374262, -0.690621, 0.664783, -0.585657, 0.080661, -0.481833, 0.413695, -0.491090, 2.034048, -2.579438, 1.133765, 1.114850, -0.349869, -0.783117, 0.287694, -0.214938, -0.403892, 0.183720, 0.508172, -0.300976, 0.263131, -1.238047, -1.103012, 1.237580, 0.475203, 0.051850, 1.736512, 0.950980, -0.957073, 0.462025, 1.186640, -0.442101, 0.075753, -0.847180, 1.593524, 1.952048, 0.303155, -0.637542, 1.611378, -1.155672, 0.805596, 0.236460, 1.268958, 0.826291, -0.521109, -0.339635, -0.841301, 1.659363, 0.465622, 0.511912, 0.384712}, - { 1.488284, 1.330846, -0.371249, -0.706700, -0.128159, 0.316970, -0.222012, 1.147926, 1.074494, -0.637062, 0.645820, 0.424690, 0.354252, 2.004198, 0.211832, -1.055273, 0.540119, -0.940722, 0.629497, 0.425959, -0.821599, -0.958282, 1.062192, -0.716362, 1.112680, -0.666876, 0.418390, -0.185154, 0.596687, 0.479556, -0.831553, -0.227498, 1.544578, 1.156180, 0.989153, -0.042450, -1.442718, -0.587043, 1.858011, -0.178001, -0.960765, 0.052231, -1.499229, 0.351036, -2.049671, 0.647956, 1.755111, 1.333532, 0.819052, 0.249685, 0.106214, 0.545834, -0.180527, 1.371128, 0.973645, -0.220022, -0.330115, 0.453680, -0.305798, 0.008971, -0.969774, 1.082547, -1.058692, -0.475529, -0.055859, 0.894912, -0.235552, 0.659295, -0.283773, 0.148231, -0.590003, 0.998369, 2.745591, 0.092729, -0.763964, 1.401282, 0.380047, -2.029149, 0.699010, -0.610621, -0.151801, -2.760549, -0.478110, 1.721781, 0.153553, 1.151082, 0.731791, 0.377939, 0.415729, 0.709719, -0.155469, 1.220647, 0.660904, -0.862420, 1.319342, 0.504005, -0.329366, -1.166463, -1.182404, -1.994112, 1.179447, -1.509758, -2.109114, -0.367236, 1.618536, -1.059429, -2.462149, 0.118205, 1.528405, -0.578237, -0.425628, 0.907529, 0.531125, 2.254234, 2.074360, -0.633480, 1.329949, 1.125934, 1.944340, 0.341322, 0.215088, -0.755004, -0.723544, 0.288280, -1.372267, 1.247373, 1.176502, -0.911718, 0.379741, 0.893702, 1.406911, -0.179979, -1.021812, 0.220684, 0.636548, 0.521364, 0.768487, -0.491810, 0.014957, 0.005432, -0.014787, 2.777054, -0.022956, 1.207085, -0.462742, 1.101856, -0.864417, -0.640600, -1.250903, -0.120797, -1.380943, 0.916870, 0.468529, 0.363097, 0.179666, -0.112367, -2.044940, -1.696922, -0.419227, -0.605321, 0.130448, -1.158217, 0.888279, 0.152084, -0.595941, -0.244556, -1.835541, 0.053526, 0.850667, 0.757873, 0.816197, 0.986167, 0.211762, -0.263500, -0.554244, 0.790700, 2.296112, 0.559414, 1.450232, -0.529178, 1.441271, -0.744235, -0.615776, -0.491298, 0.222937, -0.858225, 1.559832, 0.507470, -1.184948, -0.989638, 1.792391, -0.683495, 1.609814, 0.022853, -0.665807, -0.065448, -0.708545, 0.096816, -1.596361, -0.302028, -1.020043, -0.013623, -0.597671, -0.670315, 1.102742, 0.677511, 0.155962, -0.033316, -0.280646, 0.497923, -1.033335, 0.373051, 0.560646, -0.618726, -0.285628, 0.463295, 0.652641, -0.223976, 0.444801, -0.732769, 0.345047, -0.301863, 1.172142, -1.427613, 1.106507, 2.281866, 0.049895, 0.686708, -2.283705, -2.065030, -2.146643, -0.488307, -0.960979, 0.277318, 0.358627, 1.233822, -0.138668, 0.161311, 0.244642, -2.000421, -1.477591, -0.524930, -0.178885, -0.350734, 1.376032, -1.524976, -0.495371, 2.303456, -0.155995, 0.069263, 2.487510, 2.691426, 0.183146, 0.051350, 1.506999, -0.327698, 1.740944, -0.903227, -1.490389, -0.838341, 0.670030, 0.799334, -1.150403, 0.577928, -0.210943, -0.078011, 1.724208, 1.110941, -0.428077, 1.687086, -0.219585, 0.595265, 0.264062, -0.279742, -1.581671, -0.606109, -1.112272, 0.335287, 0.743072, -1.347311, -0.658623, -0.673496, -1.277729, -0.653073, 0.547916, -0.621104, -0.930651, 2.807364, -0.070892, -0.581133, 0.529676, 0.611070, -0.197015, -0.953424, 1.066589, -0.065104, -0.125835, -1.346007, 1.649068, 0.540757, 0.159164, -0.579491, -1.737465, 1.283069, 0.597093, 0.260604, -0.431374, 0.602131, -0.854430, -0.617854, -0.942026, -0.186626, 0.073261, -0.998074, 0.304726, 0.718916, -0.033522, 2.173613, -1.447706, 0.866108, -0.486824, -1.275792, 0.421254, -0.739139, 0.637680, -1.348572, -0.146789, -0.521491, -0.259717, -0.368042, -1.691728, 0.304291, 0.185070, 0.825061, -0.141284, -0.402403, -0.712123, 0.753967, -0.462155, -0.453783, -1.315966, -0.193813, 0.069560, -0.578219, -0.709787, -0.301844, 0.488566, -0.768008, -0.552401, -1.061857, 0.094105, -0.828002, -1.140688, 0.326263, -0.222679, 0.554585, 0.229233, -1.356815, 0.592072, -0.047683, 1.034730, -1.066653, -0.696417, -0.248349, -0.282827, -0.615503, -0.099163, 0.932915, -0.116394, 2.404182, -1.306188, -1.291007, -2.419976, -1.102906, 1.350070, 1.665870, 0.944724, -1.271717, -1.256515, 1.633516, -0.187134, 0.426036, -1.911604, -0.115048, 0.369735, 0.065712, -0.197229, -0.043363, 0.015436, 0.161740, -0.503515, 1.104762, 0.151166, -0.057403, -0.328602, -0.266407, 0.390169, -1.375549, -0.072628, -1.422879, -0.026788, 1.352814, -0.791253, -0.254403, 0.081444, -0.356329, -0.723353, 2.302583, 0.241803, 0.296036, 1.984392, 0.796008, 0.618749, 1.420725, 0.032126, -0.743630, -0.246097, 0.536454, 0.152000, -1.087217, 2.426174, 0.015906, 0.275415, 2.234602, -0.376081, -0.686624, -0.866532, 1.773266, 2.695015, -0.232329, -0.301617, -0.211112, -1.271264, 0.238822, -0.493766, -2.439716, 1.040945, -0.188803, 0.765661, -1.683193, -0.464403, 0.715227, 0.616358, 0.134745, -1.047286, -0.936940, -1.233237, 1.875633, -1.380045, -0.280724, 1.117247, -0.319603, 1.157329, -0.435374, 0.652553, -2.026715, -0.792754, 1.281221, 0.145530, 0.056371, 0.985981, 0.111999, 1.095907, 0.458310, 0.500194, 0.106973, 1.977520, 1.103638, -0.571408, -0.175926, -0.236528, -0.537450, 1.429650, -1.968732, 0.810628, -0.306914, 0.163512, -0.379949, -0.051880, 1.420851, -0.850017, -0.326942, 0.047257, 1.310404, -0.608043, -0.081874, 2.195554, 0.908760, -1.108635, 0.813125, -1.255296, -1.443611, 0.624197, 0.478212, -0.797432, 2.253088, -0.759320, 1.115183, -0.029667, -0.777897, 0.791987, -0.531776, -0.228371, 0.186422, 1.055128, -0.407792, -1.172000, -0.585378, -0.098115, -1.067093, 0.530884, 0.135526, 2.428370, 1.499491, 1.278821, -0.270112, 0.899253, 1.185719, -1.276506, -0.868477, -0.847041, -0.864010, 0.919765, 0.915769, 0.553889, -0.553419, -0.026144, -1.073272, -3.356031, -0.161676, 1.541598, 0.112893, -0.255835, -0.364423, -0.717646, 0.458640, -1.558169, -1.007135, 1.120559, 0.547225, -0.814403, 1.819648, -0.653812, -1.207867, 0.505722, 1.640130, 0.463470, 0.101603, 1.078754, -0.575381, -0.191720, -0.882805, 0.547714, 0.714566, 0.447557, -1.193154, -0.512650, 0.713168, -1.260003, -1.499872, 0.085738, -0.085289, -0.686612, -2.104815, -0.673908, 0.668608, -1.421870, 1.266327, 0.462386, 0.101756, 0.602933, -0.709497, 2.599922, 0.259568, -0.892499, 0.134986, -1.129762, -1.250512, -0.614213, -0.708689, 0.596438, 0.774918, 1.041890, 0.545257, -1.597241, 0.922957, -0.791834, 1.010132, -1.028797, -2.165823, -0.780366, -0.424773, -0.988356, 0.102508, -0.089050, 1.080387, -1.048331, 1.371180, -0.404081, 1.847094, 1.459541, -0.158845, -0.832628, 0.545844, 0.139352, 1.477193, -0.539361, 0.455904, -0.241009, 1.411772, -1.478743, 0.134595, -0.298439, 2.133660, -1.245356, 0.778192, 1.548274, -0.160574, 1.636036, -1.721051, -0.529509, -0.965503, 1.400001, 0.764491, 0.581056, 0.642891, 1.139768, -0.364778, -0.854533, 0.758367, 1.223488, 0.150088, 0.835369, 1.495998, 0.999082, 0.241026, -1.091635, -0.670136, 0.437402, -0.979698, -1.066279, 0.159888, 0.022121, -0.811617, 0.351727, -0.686538, 1.669690, 0.766040, 1.542966, 0.758283, -0.377314, 0.017700, 0.314333, -0.677052, 0.927898, -3.142581, -0.825384, -0.611094, -1.687978, -0.068944, -0.305770, -0.230347, -1.308581, -0.550707, -0.309003, 0.049275, 0.865440, -0.398886, -0.394157, 0.232014, 0.623440, -1.052180, -0.577274, 0.579890, 0.474635, -0.198626, -1.058141, 0.429730, 0.730248, 1.189838, 0.420886, 0.538718, -0.219842, 1.551149, -1.145710, 2.733196, 0.496272, -0.560489, -0.666892, 1.060740, -0.031477, 0.902162, -1.023220, 1.082066, -0.229264, 2.568453, -0.971169, -0.253888, -1.264791, -0.595885, 0.110009, -0.248175, -0.050601, 1.165455, -0.804406, 0.338100, -0.174584, -1.392026, -1.276228, -0.192036, -0.643985, 0.713858, 0.040750, 1.350916, -1.697004, 0.536661, 0.926828, -1.830485, 0.403813, -0.983561, 0.996290, 0.604868, -1.261306, -0.916467, 0.896992, 0.136766, -1.049637, 0.244871, -0.155011, 1.429436, -1.207711, 0.238552, -1.366565, -0.107531, -0.551965, -0.037524, 0.468254, 1.041927, -0.409519, 0.904918, -1.365643, 1.612919, 0.796001, 0.666793, 1.900450, -0.020564, 0.499324, -0.131561, -2.954202, -1.208204, 1.424279, -0.418988, 0.449754, 0.121596, 1.311723, -0.479784, 1.438307, -0.381211, 0.979173, 0.491460, 0.682049, -2.475152, 0.255303, -0.950559, -0.503183, -0.132934, -0.556823, 2.605558, 0.197343, -1.789038, 0.634120, 0.033399, -0.758693, 0.168686, 0.628178, 0.804242, 0.573494, -0.356650, 1.053283, 0.699791, -1.106253, 1.898773, 0.675651, -0.335385, 0.107749, 0.769568, 1.026481, 0.135212, -1.660031, -1.205220, -0.512192, 1.340907, 1.036265, 0.530965, 0.360020, 1.340083, -1.315547, 1.738053, -0.837033, -0.547311, 0.541164, -0.146726, -0.925608, 0.200214, -0.466100, -0.476550, 1.026023, -0.984113, -1.113356, 0.008523, 1.304382, -1.468478, 1.928269, 0.865763, 0.773392, 2.220466, 1.946600, -0.523083, 1.065258, 0.603018, 0.692011, -0.159269, -0.311391, 1.111904, -0.730017, 1.756240, 0.002390, 0.791365, -0.476773, 0.549721, -0.577801, 1.122136, -1.082046, -0.309574, 0.441826, 0.193037, 0.747204, -2.036809, -1.237285, 1.479961, -0.617290, -0.352972, 1.160338, -0.723375, -0.105574, -1.067699, -0.945405, 0.548705, 0.595376, -1.946760, -0.317018, -0.348913, 1.065026, -0.756858, 0.807093, 1.046876, 0.696074, 1.662886, -0.473702, -0.591742, -0.236191, 0.976646, 0.429816, -1.031514, 0.524972, 0.918933, -0.458290, -0.936736, -0.827425, -1.491004, 0.869376, -0.086894, 0.185643, -0.582129, -0.767080, -0.079056, 1.784763, 1.005401, -0.008594, 0.859383, 1.217634, -0.450083, 1.052127, 0.572890, 1.032524, -1.150038, 0.187569, -0.048435, -2.569745, 1.196347, -0.938403, -0.506398, -0.177292, 0.000409, -1.179353, -0.362433, 1.669865, 0.174737, 0.676922, -0.543225, -0.870051, 1.096279, -2.339968, -0.490009, -1.951602, -1.238253, -0.137318, 1.015338, -0.520223, 0.909413, 3.127967, 0.937844, 1.377377, 1.234076, 0.835402, 0.209011, 1.641898, -0.217048, 0.399757, -0.075871, -0.305867, 0.949344, -1.648407, -1.668205, -0.494839, -0.485240, 2.044459, 0.506419, 2.242176, -0.194122, 0.293306, 0.485428, 0.072464, -0.042825, 1.169043, 0.160831, 1.362719, 0.625990, 1.199849, 0.492835, -0.783237, 0.618880, 0.973774, -0.221643, 1.327531, 0.125349, -1.420248, 0.813011, 0.904695, 0.780501, 0.391708, 1.472889, -0.073489, 0.964364, -1.995790, 0.057931, -0.274363, -0.902359, 0.301172, -0.931182, 0.171532, 0.309000, 1.311345, -0.579130, 1.441224, -1.680203, -2.368783, -1.400710, -0.025896, 0.715253, -0.672132, 0.687174, -0.357674, 0.056097, 0.056811, -1.199571, -0.152809, 1.431808, 1.030336, -0.036026, -1.724797, -0.628399, -0.222463, -1.151916, -0.384978, -0.642916, 0.132118, 1.395137, -1.119293, -1.101133, 0.706364, 0.253212, -1.222695, 0.996735, 0.784525, 1.668740, -1.218691, 0.992114, -0.115216, -0.937214, -1.412776, 1.347441, -0.037668, -1.921636, -0.305959, 1.232431, 0.002944, -0.523545, -0.454856, 1.635937, 0.730323, -1.217698, 0.826352, -0.822073, -0.674951, -0.358323, 0.233837, -1.852168, 1.088099, -0.012312, 1.330288, -0.242631, 0.522852, 1.057018, 1.630010, -0.782408, -0.872526, 0.638366, -0.530404, -0.066758, -0.925336, 1.376610, -1.461964, -0.784054, 0.087376, 1.797643, 1.571559, 0.060684, -1.409933, -0.481521, -0.883510, 1.256697, 0.283646, 0.754958, 0.304292, 1.687608, -0.301821, 1.153102, -0.873134, -0.535639, 0.169179, -1.655128, 0.280211, -0.449471, 0.456959, 0.321646, 1.154166, 0.505825, -1.371755, -0.358783, 0.245975, -1.493932, -0.178529, 0.524361, 1.506509, -0.388366, 0.780570, -2.596276, 1.722413, 1.004146, 0.946492, 1.416111, 0.338870, 1.023988, -1.408675, 1.476565, 0.279479, -1.404357, 0.306637, 0.786669, -0.897072, -0.159471, -1.132122, 0.230545, 0.087727, 0.382816, 1.102120, 0.736083, 2.330244, -0.103059, 0.186625, 0.007963, -0.428528, -0.659560, 0.738534, -0.709689, -0.545237, -1.738128, 0.410468, 0.126478, -0.019710, -1.130002, -1.951612, -2.220564, -1.076943, 1.062743, -0.067791, 0.531550, 0.916087, 0.227392, 0.906629, -0.742700, -1.377671, -1.022687, -0.072012, 0.751025, -0.338539, -0.119812, -0.437046, 0.148316, -0.137764, -0.415380, -1.126817, 0.659250, -0.837731, -0.045528, 0.821888, 1.401157, -0.953551, -1.213206, -0.585941, -0.527802, -1.804248, -1.716529, -1.782075, 0.933644, 0.004375, 1.022649, -0.220852, 0.937938, 0.617581, 0.918651, -2.484693, 0.924044, 1.042355, 0.963076, -0.548202, -1.268399, -0.899765, 0.221500, 0.280601, 0.286190, -0.688907, -0.400227, 0.644011, 0.780068, 0.036821, -0.239860, -0.254828, -0.243585, -0.459240, -0.125286, -1.511965, 0.913040, -0.305719, -0.119078, -1.224240, -0.273243, 0.172479, -1.175873, 0.928754, 0.262145, -0.265970, -0.956604, -0.630759, -0.738529, -1.028837, -1.724607, 1.196571, 0.103293, -0.612860, -0.781090, -2.612334, -0.788824, -2.389518, -1.660816, 0.842600, 1.156197, -0.580387, -0.316903, -0.735455, 1.184250, 1.024445, -1.837848, -0.493217, 0.128950, 0.708576, 0.972220, 1.083859, 0.196282, -1.049510, 0.074637, 0.583425, 0.833917, -1.146355, -0.201176, -0.346809, -1.844215, -0.366876, 1.406471, -1.441287, 0.333678, 0.003082, 0.026881, 1.983215, 1.142308, 0.665265, -1.108432, 0.481229, -0.221803, -1.833930, -1.582469, -1.138715, -0.441722, -0.148985, 0.148732, 1.642432, -0.300734, 0.282558, -0.747683, -0.402012, 0.931267, 0.219382, -0.644117, -0.723114, 0.296524, 0.697054, -1.056046, 0.078200, -1.636521, 0.712419, -1.018593, 0.010076, -0.697246, -0.066990, 0.796035, 0.110276, 0.652754, -0.154726, -0.162200, -0.322558, 0.340374, -2.566428, 0.295037, 0.304982, 1.214574, 0.209637, 0.486313, -0.504054, -0.677925, 0.143669, 0.689036, -0.540443, 0.268655, 0.466998, -0.482852, 0.654541, 0.381986, 0.578551, 0.594768, 0.394276, 0.312636, 1.981718, 1.517838, 0.355472, -2.131008, 0.458938, -0.572606, 1.143567, -0.058979, -0.995286, 0.465170, 0.137173, -0.654033, 0.689504, -1.992940, 0.697420, 0.756488, 1.490498, 1.350837, 0.664821, -1.585667, -1.174331, -0.263818, 1.714457, -1.010432, -0.831422, 1.467236, -0.324932, -1.428705, 1.213975, 0.378956, 0.288632, -1.508446, -0.055944, 0.518558, -0.645023, -1.360887, -0.175679, -0.504137, 0.480394, 0.290714, 1.614133, -1.286636, 1.538815, 0.799626, 0.294155, 1.419054, 1.357316, -0.356723, -0.244771, -0.395521, -0.449170, 1.044874, 0.722255, 0.182184, 0.410220, -3.000255, -1.016072, -1.383911, 0.851802, 0.279882, -0.184141, 0.262979, -0.437383, 2.845142, 0.146591, -0.439881, -1.697477, -0.361629, 1.120585, -1.339821, 0.623931, -0.615554, -0.199097, -0.266119, -0.331204, -0.900152, 1.104358, -0.902361, -0.401398, -0.587631, 1.405495, -1.087982, -0.271600, -0.799984, 1.158685, 0.645724, 1.738455, -1.021376, 0.053310, 0.661913, -0.633552, -0.045705, 0.651643, 1.954124, 1.911685, 1.154008, 2.321908, 0.030398, 1.049996, -0.698988, -1.367071, 0.953407, -0.462519, -1.975505, -1.416580, 0.201807, -0.213668, 0.223636, 2.096636, 0.357450, -0.727993, 1.268084, -0.696158, 0.710462, -1.209256, 0.131700, 0.296752, 0.797077, -0.410326, 0.846653, -0.285849, -0.588933, -1.018749, 1.218904, 1.283582, -0.193679, 2.028374, 1.978193, 1.917187, 1.050118, -0.751537, -0.863507, -1.192480, 1.009862, -0.117858, -1.115536, -0.924902, 1.819066, 0.276183, 1.929383, -0.268754, 0.294618, 1.190741, 1.281027, 2.162514, 0.024303, -0.539244, -0.310893, -1.321513, 1.032661, -0.075000, -1.592564, -0.696441, -0.456998, 0.681673, 0.136708, -0.361567, 1.450003, -0.630085, -1.392638, 0.275226, 0.001654, -1.386347, 0.224028, -0.157376, -0.031336, -0.180088, 0.693046, 1.490725, -0.585927, -0.951144, 0.773254, -1.421763, -1.884691, 0.093277, -0.447519, -0.365441, -1.077223, 1.071944, -1.661200, -0.542165, 0.076132, -0.616706, -1.147359, 1.405593, 0.025611, 0.187353, -0.306242, 0.205320, 2.144422, 0.523295, 0.770460, 0.150019, 1.873023, 0.822097, 0.990920, -1.418163, -2.009984, 0.145998, 1.592334, -0.036410, -0.261122, 1.221181, -0.158753, 0.134746, 0.888824, 0.527906, 1.965857, 0.111956, 0.311089, 1.566770, -2.111988, -2.078265, -0.089090, 0.974328, -0.979057, 0.247900, 0.193321, -0.149852, -0.539429, -0.488432, 2.595137, 0.735603, 0.550240, 0.495577, 0.782581, 0.882110, -0.059411, -0.178529, 0.349388, 0.877343, -1.257591, -0.846639, -0.615598, -0.523491, -0.407948, 0.279256, 2.512961, -0.388211, 1.141331, 0.034108, 0.098152, 0.513007, -0.841768, 1.322772, 0.743284, 0.319963, 1.076746, 0.576681, -1.344721, 0.071352, -1.349805, -0.396475, -1.086461, -0.394789, -0.836839, -0.121572, 0.472023, -0.978058, -0.760028, -0.858627, 0.573856, 0.470543, 1.852199, -0.106368, -1.570268, 0.857212, 1.552631, -0.186692, 0.568721, 0.687121, -0.281725, -0.622135, -0.764662, -0.673018, 0.420033, -0.212581, -0.473103, 0.717630, 0.707134, -0.451706, 1.003608, -2.253626, 0.005614, 0.058079, -0.293738, -0.493356, -0.195697, 0.099743, -0.419783, 0.050703, 0.984371, 1.025241, -0.266747, 0.876469, 1.203320, -0.513361, 0.803487, -0.232633, -0.105008, -1.891854, -0.046849, -0.522255, -1.386277, -0.316371, -0.830241, -2.125927, 1.709374, 1.306397, -0.170569, -0.006688, 0.064006, 1.116223, -0.978921, 0.070519, -0.933255, -1.048840, -0.775217, -0.269373, 1.076584, -2.839118, 0.967448, -1.164397, -0.645358, -1.193206, 1.623817, -1.092674, -0.147733, -0.014692, 0.694421, -1.149737, -0.535466, -0.412479, 0.441411, 2.685483, 0.445619, -0.250452, 0.948475, -1.584082, -0.816577, -1.569408, 0.685850, -0.692384, -1.564641, -1.476774, -0.016792, 1.584186, 0.235145, 0.098632, 1.735743, -1.580701, 1.738353, -0.648206, -1.353362, -0.290095, 0.552723, 0.269646, 0.842972, -0.462167, 0.496398, 0.734800, 0.328454, 0.783290, 1.256495, 0.148680, -1.308815, -0.028547, -0.450856, 1.224862, 0.325284, 1.991896, -0.228183, -0.677130, -0.687055, 0.019820, 0.657589, 2.874516, -1.224136, 0.240652, -0.563945, 1.604034, 0.082963, -0.586073, -1.640440, -2.542560, 1.301595, -0.698694, 0.729568, 0.082747, 0.251437, -1.202776, 1.765493, -0.131354, 1.462832, -0.597498, 0.430165, -1.414980, -0.292800, 0.375897, 0.896199, 0.912182, -0.258908, 0.143616, 1.096125, -2.102231, -0.729292, -0.765799, 2.075603, 0.628189, -1.451436, 0.067840, -0.112114, 0.681505, 0.349802, -0.921099, -0.318616, 0.786550, 0.315460, -1.797591, -0.843515, -0.642482, 0.976631, 0.450332, 1.398967, 0.618452, 0.250414, 0.719940, -0.244915, -0.406924, 0.779709, 0.914129, 1.782713, -0.241857, 1.244293, 0.161255, 1.813240, -0.437375, 0.396075, -0.396237, 0.019526, 0.685613, 0.720663, 0.681514, -0.522867, 1.339329, -0.973044, -0.053615, 0.601661, 0.649169, 1.639585, -0.945094, 0.925711, 2.531612, 0.169050, -0.456826, 3.090086, 0.869017, 0.140844, -2.067863, 1.651612, 1.254644, -0.168833, 0.436296, -1.093356, -0.054427, 1.552346, 0.226470, -1.466866, 0.078009, -0.143113, -1.294501, 0.021757, 1.377752, 1.569163, 1.924825, -0.578889, 2.057211, -0.818758, 0.658124, 0.066462, 1.243857, 1.284173, 0.030025, -0.512484, -0.146436, -1.505791, -1.033772, 3.054168, 0.520075, 1.248599, 1.188072, 0.726008, -0.272591, 0.169020, 0.161560, -1.108373, -1.100665, -0.012494, 0.951902, 0.867229, -0.750969, 0.588076, 0.384465, -0.028365, -1.023031, 0.871488, 0.028327, -0.028589, -0.050674, 0.367524, -0.098203, -0.885738, -1.181657, -0.223716, 0.413920, 0.673128, 0.561127, 0.815016, 0.112883, 1.175732, 0.376292, 1.126188, -0.249249, -0.200340, -0.374868, -0.197085, -1.119844, -0.813047, -0.154468, 0.212282, 0.194484, -1.075461, -1.610859, -0.970718, -2.410832, 1.173997, -1.071299, 1.446524, -0.924301, -0.233726, 1.741949, -0.575764, -1.756002, -1.324981, 0.389942, 0.941365, -0.715684, -0.181362, 0.521817, -0.043801, -0.970294, 0.376156, 0.236400, -0.119913, -0.843144, -1.081599, 1.436162, 0.340705, 0.848092, -0.325986, 0.913431, 0.400545, 1.090820, 0.112997, 1.353017, -0.497164, -0.385706, 0.901321, 1.132113, 1.085912, 1.217223, -0.370479, -0.647054, -0.449021, -0.275032, -1.333082, -1.039811, -0.643885, -1.764832, -0.336022, 0.349230, 0.817908, 0.158657, 0.033433, -1.894126, -0.972246, 1.381618, 0.211040, 1.057400, 0.786518, -0.517952, -0.378894, -0.516177, 0.665983, -1.047732, 0.143553, 0.949213, -0.585571, 0.093786, -0.696313, 0.000263, 0.301229, 0.888330, 0.656826, 0.675407, 0.533683, 0.789365, -1.331845, 1.190212, 2.466915, 0.502653, -0.043609, 0.318833, -0.411267, -1.119379, -1.296076, 0.318336, -0.105445, 0.943960, -0.438659, 2.029359, 1.194033, 2.397624, -0.272764, -0.593874, 0.085238, -0.397318, 0.879002, -0.235356, 0.199130, -1.762171, -1.267374, -2.115594, 0.309859, 1.680724, -0.311985, 0.115423, 1.598252, -0.621192, -0.429569, 0.480112, -1.510997, -0.730976, -0.587454, 0.977642, 1.199566, 0.022748, -0.610670, -1.199552, 0.984375, 0.744561, -0.146462, 2.142167, 0.186884, 2.555793, 0.285310, 1.336335, -0.602524, 0.513103, 1.145807, 1.048998, -2.346402, -0.950671, -1.244990, -0.032651, 0.967067, -0.754866, 0.027856, 0.003557, 0.367778, -2.143100, -0.710300, 0.551008, 0.289913, 0.245276, -0.440656, -1.922634, -0.853893, -0.874107, -0.118240, -0.757246, 0.761083, -0.735576, 0.670994, -0.809934, -1.196244, -1.321556, 1.669255, -1.681196, -0.839216, 0.193274, -1.142784, 0.140686, -1.413664, 0.804883, -0.772448, -0.821475, -0.363677, -2.017625, 0.157790, -0.316774, 0.218654, 0.992248, 0.606362, -0.720250, -0.874989, -0.141459, -0.556316, -0.186641, -0.677301, 0.661459, 0.847446, 0.145008, -0.695669, 0.597427, 0.386860, -0.952867, 0.897209, -1.176122, -0.790860, -1.097884, 1.682380, 1.370546, 0.029454, 1.532160, -1.235394, -0.092455, 0.720440, 0.793758, -1.533913, 0.120092, -0.029052, -0.715149, 0.002552, -0.914272, 0.410341, -0.337411, -1.363726, -0.005143, 0.395627, 1.409340, 1.251054, 1.992716, -1.944287, -1.073071, 0.092784, 0.804512, 0.264699, -0.008387, 2.199105, 0.111418, 0.904875, -1.035348, 0.465309, 1.119095, 1.096066, 1.005608, 0.101267, 0.041222, -1.183136, -0.829782, 0.448185, -2.592413, -1.989517, -0.546123, -0.547309, -0.774205, 1.112622, 0.498929, 0.896646, 0.260779, 0.272912, 0.856440, 2.406652, 0.118697, 1.218411, -0.961615, -0.038193, -1.373661, 0.160141, -0.034777, 0.618437, -0.176387, 0.674802, 1.197345, 0.549512, -0.389763, 3.242957, 0.240743, -0.403716, -1.079500, 0.176163, 0.532608, 0.886413, 0.717452, 1.109493, 0.457495, 0.011626, 0.258112, -0.129299, -0.707949, -0.266624, -1.152578, 1.140921, -1.588591, 1.619598, 0.938488, 0.684948, 0.201134, -1.696252, -0.279966, 1.279078, -0.841567, 0.288412, -0.332668, -0.278764, -0.082852, 0.021088, -0.194490, 0.507523, 1.009448, 0.283424, 0.226359, 0.380778, -1.469228, -0.190177, 0.572555, -0.143093, -1.114942, 0.736657, 0.326716, -2.571711, -0.756262, 0.149976, 0.964245, -0.890577, 0.591208, -1.549383, -0.498702, -0.935282, 1.628013, -1.175710, -1.058410, 0.039155, -0.683987, -0.511258, 1.120494, 0.298570, -0.266713, 1.726309, -0.048958, 0.541969, 0.943814, 0.180268, -0.233538, 0.347573, -0.836910, -0.026836, -0.610206, 0.036771, 0.157989, 0.421839, 0.308115, 0.418927, -0.888428, -0.496527, -0.037603, 0.352714, -0.474819, -0.228321, -0.552397, -0.806203, 0.631726, 1.306783, -0.383702, -0.480690, 0.639913, 0.858603, 1.047957, -1.364327, -2.217143, 0.958797, -1.368611, -0.021844, -0.569761, 0.037923, 0.130362, 1.001156, -1.234113, 0.493915, -2.019410, 1.193282, -0.886468, -0.392464, -0.070643, 0.153324, -0.301343, 1.520576, 0.858591, -0.649230, -1.310754, 2.537157, -0.089176, -0.944329, 0.182854, 0.281304, -0.844244, -0.716282, 0.795671, -1.478288, 0.324106, -0.672504, 0.051027, 0.300746, -0.460639, -1.660100, 1.389212, -2.210620, -1.400407, -0.751135, -0.940383, -1.521511, 1.844960, 0.345781, -0.967317, 0.505203, 0.618788, -0.002003, 0.138010, -0.255116, 0.798767, 1.647137, -0.784609, 0.283863, 0.056476, -0.722476, -1.238047, -0.841301, -0.811834, -1.814050, -0.534769, -0.538293, -0.191700, -0.594344, -0.733604, 0.401247, 0.669845, -1.773934, 1.296115, 1.439526, -0.125644, 0.404896, 0.689892, -1.152393, -1.053661, 1.689313, -0.432506, -0.753156, 1.757841, -0.552784, 1.958883, -0.418141, -0.341218, -0.089376, 1.126180, 0.960688, -1.626286, 0.666151, 0.803854, 0.658230, 0.648884, 0.506386, 0.736218, 1.242383, 1.970587, -0.993150, 0.438809, -1.717881, 0.656458, 1.504722, 0.673889, -0.200130, 1.872706, 0.204884, 1.363484, -0.669302, 1.344402, 0.674449, 0.475534, 0.005058, -0.575226, -0.568939, 0.202703, -1.052909, 1.141856, -0.473977, 0.216896, -0.161027, 0.605053, 1.569724, -0.103360, -0.074409, 0.252179, 0.833811, 0.815950, 0.017972, 0.643572, -0.292335, 1.200602, -0.084307, -0.452480, -0.251017, -1.712140, -0.715587, -0.834005, -1.027298, 0.033543, 0.914575, 1.646344, -0.087466, -1.964764, 0.818996, 1.939010, 0.424073, -1.153130, 0.360071, -0.587884, -0.213562, 1.389223, 0.246476, 0.432637, -1.185148, 0.995115, -0.989822, -0.728197, -0.630096, 0.385907, 0.954208, 1.333976, -1.562676, -0.778937, -1.735264, -1.381968, 0.996094, -0.738619, 0.115355, 0.026151, -0.293289, -0.354300, 0.168105, 0.637134, -0.069387, 1.549347, 0.040454, 0.862688, -1.240979, 0.349673, 2.779640, 0.908441, 0.101166, 1.049196, -0.785965, -0.687487, 0.890825, -0.364503, -0.487526, 0.238375, -1.614056, 0.233577, 0.267264, -0.110156, -0.494307, 0.572376, 0.582555, -0.905543, -1.755509, 0.067406, 0.686067, 0.289316, -1.491770, -0.803695, 0.265339, -0.507130, -1.429903, 0.279912, -0.764638, 1.661420, 1.162663, -0.280001, -1.308852, -0.846166, -0.475877, -0.933327, 0.328839, -0.016647, -1.395481, -0.105477, 0.499046, 0.147631, 0.733547, 1.146172, 1.027361, -0.340597, 0.708083, 0.346893, 1.528922, 1.390378, -1.819575, -0.230632, -0.314697, 1.083750, 1.946883, -1.210362, 0.366487, 0.665678, -0.352627, 1.558465, -0.229474, 0.503225, 0.019167, 3.242755, 0.574955, -0.355573, -0.053191, -2.154994, 0.206575, 0.861852, -1.419634, -0.552694, 0.517845, -0.135301, 1.437637, 0.913657, 0.280486, -0.676520, 0.400523, 1.494019, 0.984620, 1.644297, 0.268362, -0.599839, -0.241930, 0.203737, 0.491043, -0.266231, -0.275390, -0.671783, 0.767136, 1.268408, -0.251382, 0.980491, 0.078228, 0.366554, 1.175425, 1.568815, 0.310388, 0.314181, 1.130540, 0.487624, -1.144888, -3.380844, -1.043620, -0.820011, 0.153013, 0.454051, -1.182901, -0.178062, -1.181108, -0.635059, 0.946700, -1.446254, -0.031076, -0.300637, -0.181046, 1.180774, 0.154682, -1.572271, 1.178777, -0.796525, -1.189114, -0.007001, -0.040280, -0.240104, -0.245266, -1.071460, 0.308473, -2.266394, 0.043437, 1.375577, 0.798433, 0.341380, -0.120841, -0.496608, -0.297151, 0.041067, -0.987962, 0.022550, 0.489986, 0.383518, 0.333539, -0.001987, 0.398696, 0.360187, 0.154755, 2.650976, 1.479147, -1.020100, 0.854494, -0.440166, -0.194081, -1.165633, 0.369923, -0.424517, 0.214297, -0.545256, 1.368541, 0.410258, -1.021837, 1.856039, 2.441777, 1.179499, -0.653368, 0.529592, -0.552644, 0.805524, 0.340090, -0.381750, -0.144317, 1.836230, -0.181049, -1.159586, 0.045645, -0.801131, 0.606322, 1.325371, 0.888792, -0.827293, -1.304720, -0.702549, 1.249350, 0.401596, -0.157956, -0.599861, 1.234717, 0.020488, 2.028800, 1.048237, 0.134028, -0.172207, -2.937941, 1.001057, -0.359892, -0.455440, -1.223244, -2.194023, -1.342547, -0.265743, 1.160109, -0.098688, 0.453349, -0.913686, -0.271713, 0.555072, -1.297949, -1.083474, 1.236000, -0.172323, 0.674310, 0.540799, -1.787918, 0.543626, -0.288342, 0.157674, -1.797346, -0.192660, 1.014563, -0.007597, -0.077965, -2.058984, 0.175817, 0.707205, -0.990297, 2.186791, -0.756116, 0.996088, -0.852121, -0.110567, 2.546988, 0.156603, 0.487385, -1.340434, -0.565527, -0.309328, 1.232183, 0.823847, 0.324301, 0.466348, 0.620110, -0.620754, 2.191857, 0.504046, -0.744251, -0.260180, -1.575016, 1.771523, 0.205309, -0.194525, -0.096586, -0.942818, 1.050860, 0.575279, 0.229296, -0.727124, 1.207045, -0.644677, -0.792784, -0.568934, -1.634567, 0.557398, -0.583529, 0.614534, 1.441784, -0.448880, -0.004559, 0.771907, 1.202060, 0.156492, -0.428785, -0.419874, 1.009354, 0.411101, -0.789610, 0.728675, 0.076445, 1.729917, -0.667892, -0.033922, 0.246355, -0.384200, 0.368263, -0.331218, 0.001495, 0.708451, -0.665455, 0.299230, 0.343364, 1.108582, -0.730301, 1.090257, -1.189878, -0.924349, 0.343003, -0.671145, -0.118470, -0.048970, 0.125404, 1.820392, 0.352833, 1.111137, 0.006925, 0.540156, -0.011053, 1.515314, -0.094588, -0.997014, 0.899312, 1.359382, -0.187213, -0.180415, -0.059935, 1.363873, -0.519303, 0.188480, 1.296355, -0.175602, 0.905922, 0.023252, 0.720165, 0.684998, 0.246176, 0.361854, -0.099949, -0.567281, -0.223802, 0.098973, -0.842298, -0.322244, 0.921387, -1.103452, 1.674435, 1.013094, 0.070245, 0.081696, 0.716882, -0.401381, 0.253771, 1.404174, -0.893527, 0.713274, 0.221884, -1.063284, -0.813323, -0.709072, 1.543819, -0.145402, -0.066152, 0.628459, 0.276183, -0.885614, -0.426576, 1.599129, -0.493024, -0.331524, -0.926891, 1.815066, -1.227715, 0.456414, 0.518535, -1.376400, -0.903839, -0.704526, 0.093076, 0.540306, -0.382712, -0.372558, 1.277203, -0.457774, 0.935312, -0.887574, 1.951207, 1.094039, 1.331676, 0.222851, 1.598154, 0.456927, -0.506445, -1.402299, 1.585901, -1.733246, 0.087495, 0.371473, -0.556816, 0.310369, -0.095819, 0.050419, 1.483976, 0.174552, -1.467672, -0.063072, 0.211793, -0.572932, -1.430596, 0.213994, 1.648021, -0.980538, -1.415404, 0.344014, -0.066481, 0.086318, -2.288229, 0.855315, 0.400970, 0.551140, 1.020015, -2.006954, 1.430738, 0.096001, -0.604573, -0.674902, -0.790129, 0.531947, 0.457554, 0.607967, -0.367446, 0.824679, 0.576684, -1.161550, 0.523099, 0.394006, -0.624623, 0.010591, 0.218063, -1.603351, 0.486728, 0.511626, -0.961079, 0.407014, 0.092450, -0.760182, 0.141634, 0.149371, -0.517802, -0.502396, -2.773117, -0.725021, -0.425992, -1.439202, 0.851006, -0.624807, -1.671395, 0.153665, -1.609802, 0.146165, 0.802434, -0.455154, 0.236187, 0.256586, -0.470374, -0.697853, 0.535391, -0.594195, 0.423005, -1.000982, -0.011862, 2.612301, -0.608736, 0.036247, 0.273991, -0.452419, 0.664167, 1.196594, -1.953139, 0.426724, -0.596585, 1.571780, -0.226418, 0.558401, -1.269757, 0.623086, 0.799321, 0.187630, -0.975454, -1.384670, 0.815772, 0.518144, -0.184279, 1.482645, -1.746478, 0.254673, 1.478644, -0.361736, 0.813790, 1.117436, 0.263568, -1.652777, 0.913780, 1.239972, -0.202751, -1.036590, -0.316331, 0.731122, 0.339312, -0.180115, -0.757585, -0.285849, 0.082995, -1.474026, 1.474402, -0.454812, 1.794350, -0.548455, 0.885742, -1.258813, 0.684264, -0.471451, -1.771566, 0.129455, -1.380036, 0.563674, -0.603892, -1.463750, 0.228426, 0.911034, 0.274185, 0.422622, 1.159011, 0.118977, -1.018029, -2.479925, 1.691404, -1.568525, -1.317917, -0.537501, 1.670645, -1.890105, 0.031761, -0.071098, -1.806499, -1.736098, 0.838499, 0.436174, 0.046730, -0.871402, -0.867162, -0.301262, 0.471351, 1.469979, -0.566323, -1.020953, -0.708661, -0.285569, 0.036857, -1.383692, -0.170049, -1.703476, 0.230277, -1.358836, -0.881406, 0.693222, -0.554954, 0.365691, -0.470092, 0.519062, -0.194337, 0.341719, 2.138516, 0.590942, 0.142093, -2.554609, 2.218141, -0.944951, 1.231023, -1.405950, -1.326814, -2.452128, -0.643954, -0.033388, -0.100510, -1.043900, -0.899142, 0.473145, 1.166353, 1.694092, 1.215379, -0.325040, 0.016748, 0.508877, 0.540147, -0.211066, 1.096513, -0.855781, -0.228774, 1.135932, -0.608350, 0.489989, 1.218665, 0.773853, 0.285801, 0.481724, 0.111804, 0.322254, 0.500364, 2.179589, -1.888124, -0.127274, -0.625675, -0.671828, 0.703467, -0.832597, 0.008845, -1.203453, -0.397637, 0.106696, 0.006077, 0.230481, -1.351761, 0.547575, 2.625362, 2.146603, -1.017467, 0.271686, 0.797819, 0.941221, 1.600861, 0.950617, 2.559654, 0.609090, -0.307161, 0.060480, -0.574064, 1.583999, 1.793632, -0.711863, 0.726575, 0.270590, 2.272430, -0.157739, -1.058615, 1.622331, -1.125452, -1.843768, -0.078278, 1.740481, 1.824444, 0.784402, -0.106382, -0.467952, 1.296723, -0.764729, 1.315884, 0.152846, 0.601016, -0.262548, -0.428568, 0.446372, -1.534969, 1.636515, 1.052215, -0.544631, -0.539550, 2.270524, 0.494257, 0.585112, 1.647986, -0.398734, 0.013786, 0.209865, -1.452126, 0.599200, -1.402436, -0.613238, -0.003972, 1.067335, -0.283126, -0.245166, 0.191961, -1.449515, 0.463684, 0.815299, 0.073737, 1.082976, 0.293794, 0.670612, 0.143377, 0.171043, 0.808881, 0.032854, 0.946165, -0.367223, 1.682208, -1.323634, -0.422998, -1.249921, -0.124798, -0.254751, 0.808571, 0.028316, -2.479560, 0.971163, -0.486956, 1.713814, 0.446665, 0.053134, 0.101732, -2.470068, 1.173814, -0.838995, 2.267375, -1.557401, -1.373082, -0.450953, -1.405447, 1.055510, -0.647756, 2.538760, -0.415681, 2.130071, -0.646308, -1.117635, -0.107596, 0.715535, -1.170509, -0.447454, -1.204838, 0.620161, -0.941296, 0.353405, -0.056707, 0.050945, 1.417850, -0.092382, -1.101896, 1.076433, -0.263144, 0.393465, -1.570708, -0.876891, 0.820119, -0.681650, -0.624618, -1.420860, 0.192898, -0.063609, 0.713392, 0.496183, 0.453552, -0.862438, -1.039380, -0.910973, 0.772395}, - { -0.927943, -0.848864, -1.007952, 0.335526, -2.017541, -0.914680, 0.078810, -0.898423, -1.708599, -0.155889, 1.007167, -0.747462, -0.171016, -2.308906, -0.114479, -2.339214, -0.457396, -1.526376, 1.623720, 0.457976, 0.813552, 0.206856, -0.101218, 0.073019, -0.045020, 1.352025, -0.638211, -1.537627, -0.435254, -0.964205, 0.583681, 0.188579, 0.181941, 0.057947, -0.563493, 0.118283, 1.010443, 1.395760, -0.092736, -1.030230, -0.320378, -1.097519, 0.627467, 1.335169, 0.508092, -0.385964, -0.641630, 0.556415, -0.569044, -0.246809, -0.650686, -0.437328, 0.608802, -2.162268, -1.165045, -0.282270, -0.247688, -2.979329, 0.575926, -0.230373, -1.303513, -0.265617, -0.552202, -0.988376, 0.518985, 0.264679, -0.939547, -1.755571, -0.230379, 0.062619, 0.866288, 0.236366, -0.194471, 0.756843, 0.560732, 0.257200, -1.105184, 0.784192, 0.626963, -0.800312, 0.046077, 0.061475, -1.217718, 0.725432, -0.247772, -2.974380, -0.863058, -1.722903, -1.585467, -1.027864, 0.484068, 2.281535, 0.021882, -1.119987, -0.382134, -0.888447, 1.227709, -1.214013, -2.370314, 0.332083, -0.873489, 0.604533, 0.654887, 0.114215, -1.058772, 1.396704, -1.270196, -2.602735, 0.382191, -1.446693, 0.098017, -0.584281, 0.858455, -0.694204, -0.246084, 0.477965, 1.394454, 0.144403, -1.991599, -0.790703, -1.481822, 1.832909, -0.897893, -0.392857, -0.637408, -1.430072, -0.085667, -0.051698, -2.014769, -1.033955, -0.217898, -0.514559, -1.073518, -0.400990, 0.490306, 0.020518, -0.938738, 0.315694, 0.405789, 0.714008, 0.088199, 0.951635, -0.156677, -0.415429, -0.919523, -0.648329, 0.152128, -1.219878, 1.421183, 0.142722, -0.112126, 0.457937, -0.118108, -1.324538, 0.485108, 0.858896, 1.543063, 0.805543, 0.753079, 0.716355, -0.555134, -0.731093, -2.202731, -0.289889, 0.281604, 1.496243, 0.296459, -0.344467, 1.166366, -0.467911, -1.547582, 1.118591, 0.037099, -0.086089, 1.907300, 0.347141, 0.615853, 0.869868, 0.863162, -0.973901, 0.372848, 0.105157, -1.957845, 1.323176, -0.852377, -0.539613, -0.943925, 0.529939, -0.552553, -0.512323, -1.791544, -1.017195, -0.822663, 1.299985, 0.289184, -1.501497, -0.242835, 0.136465, -0.561395, 0.081931, -0.556423, 1.712416, 1.905352, -1.200593, -0.058503, 1.741204, 1.135129, -0.681590, 0.157162, 1.780704, 1.458561, -1.167853, -1.073411, 0.989011, 1.790497, 0.131350, -0.207506, -0.446647, -0.878583, -0.295445, -0.226523, -0.899659, -0.011195, -0.162805, 0.099131, -0.788797, -0.334394, 0.150064, -0.118765, 0.287391, 1.756517, -0.175097, -1.092550, -1.817786, 1.604110, 1.965222, -0.470014, 0.193645, -2.609614, -0.022956, 0.267545, -0.208348, -0.574019, 1.033829, -0.944228, -0.513080, -0.086179, -0.068793, 0.167631, -0.467098, -1.215286, 0.388725, -0.227476, 0.265260, -1.294074, 0.232139, 1.943728, 0.952719, -0.181417, -0.169241, -1.785415, 0.475991, -1.196911, 0.213349, 0.704132, -1.959569, -0.209594, 1.316006, -1.364279, -0.748612, -0.437346, 0.238616, 0.508802, -0.057441, 0.240803, -0.579069, -0.321784, 0.438001, 0.087155, 0.279821, 1.002000, 0.250575, 0.182982, -0.713008, 0.533901, -0.159440, -0.588976, -0.657896, 0.087516, 0.272619, -0.063072, -1.539775, -1.775648, 0.158050, 0.319217, -0.588794, 0.544648, -0.608979, -0.483757, -0.489778, 0.903135, -0.797372, 0.481088, -0.483062, -1.250498, 0.401972, -0.998930, 1.653525, -0.051723, -2.718770, 0.368626, 0.022137, -0.350321, 1.641191, -0.359209, 0.507800, 0.847977, 0.495757, 0.056085, 0.126058, 1.404442, -0.433099, -1.161144, 1.228121, 0.066707, -1.155914, -1.182173, 0.021392, 0.825278, 0.602612, 2.544014, 0.034278, -0.286417, 0.758915, 0.608593, 0.581685, -0.466770, -0.116069, -1.783712, 0.454724, -2.603312, 0.138698, 0.592285, 1.107950, -0.766594, 1.347931, 1.347740, 0.517797, 0.139061, 0.249193, 0.553629, 0.008133, 0.669462, -0.754085, -0.203519, 0.186317, 0.110165, 0.060332, 1.182343, 0.766188, 0.014383, 1.201515, 1.578160, -1.042033, 2.336762, 0.107837, 1.232856, -0.596776, -0.043819, 0.069396, 1.251105, 0.629297, -0.152866, -0.337303, 1.448249, 0.452210, -0.495416, 0.348913, 0.821613, 0.717262, -0.321402, 0.519330, -0.097419, -0.715642, 0.349553, 1.321074, 2.219332, 0.044082, -1.510974, -0.541657, 0.497968, -0.255279, -0.208367, 0.066882, 0.391862, -0.414870, 0.285611, -1.580357, 1.904696, 0.326333, -0.010005, -0.587741, 0.413864, -0.463637, -0.192878, 1.077390, -1.224993, 1.266089, 0.242087, -0.469611, 0.180648, 0.022548, 0.291803, 1.340684, -0.880295, -0.236240, -1.524891, 2.509343, 0.782742, -1.243343, -1.133610, 0.447418, 0.292570, 0.628489, 0.832094, -0.834520, 1.445554, -0.457705, 0.940864, 0.196840, 0.234719, 0.681855, 0.717254, 0.752367, 0.508608, 0.769516, 0.708943, -0.576327, -1.658545, -0.107476, -0.354848, 0.082087, 0.362338, 0.440647, 1.671895, -1.037819, -0.306201, 0.076307, 1.616233, -1.238897, 0.066267, -0.024560, 0.472596, 0.032355, -1.763085, -0.209261, 0.823012, 0.267756, -0.513282, -0.217905, 0.814842, 1.006657, -0.115592, -1.295611, 0.214233, 0.476267, -0.731630, -0.358477, -1.063962, -0.697687, -1.432371, -0.367252, 0.893559, 0.611873, -0.646305, 0.918673, 0.192326, -0.323520, -0.115658, 0.933000, -0.807400, 0.641474, 0.535697, 0.318424, 0.093264, -1.197386, 0.386390, -0.558527, 0.231152, 0.872326, -0.131630, -1.265806, -1.249577, 0.554404, 1.336484, 0.143908, -0.155708, -1.130782, 2.113932, -0.380531, 1.352066, 0.745056, -0.035679, 0.045261, 0.149299, -0.051082, 0.842708, -0.662899, -1.214880, -0.687400, 0.060657, 1.147772, 0.088104, -0.857543, -0.864207, 0.047330, 0.107283, 0.264170, 1.151708, -0.419330, 0.173155, 0.384277, -0.041881, -0.150074, 1.577698, 1.288926, -2.486381, -0.065349, 1.001110, -0.740458, 1.293048, -0.119164, -2.333424, -0.352414, 0.606735, 0.522174, -0.655393, -1.600829, -1.619429, 1.163313, 0.599836, -1.076846, 0.220918, -1.174212, -0.171512, 2.024237, -0.737483, -0.423817, -0.920860, 0.014837, -0.804615, 0.499049, -0.345348, 0.647496, -1.025689, -1.408556, 0.154800, -0.814080, -0.890445, -0.435126, 0.360664, -1.206917, 0.963296, 0.357455, 0.897320, -2.087111, -1.349186, 0.867854, 0.327595, -0.524693, 0.875666, -0.220575, 0.347752, -1.480195, 0.148482, -0.222405, 0.251350, -1.915801, 0.388131, 0.603146, -3.203593, 0.531218, 1.868075, 0.458617, -1.174954, 0.244054, -1.304455, 1.196585, -1.201653, 1.474107, -0.426473, -0.854629, -1.479377, -1.245414, 2.141289, 0.002585, 0.793922, -0.510862, -1.268813, -1.321165, 0.899540, -0.227880, 0.210332, -1.266062, 1.919314, -0.204862, 0.231374, 0.147181, 1.009484, 0.432774, 0.545192, 0.625975, 0.004619, 0.117338, 1.880970, -0.916497, 0.527592, 1.175011, 0.535266, 0.622861, -0.090368, -0.470978, 0.648491, 0.832114, 1.510331, -0.760787, -1.021950, 1.644606, -2.190853, 0.506645, -2.273086, -0.797426, 0.939197, 0.197609, 0.042075, 0.444532, -0.907776, 0.924141, 0.721633, 0.964365, 0.039645, -0.622620, 0.413722, -0.416789, -1.059769, -1.402015, -0.318759, 0.235055, 0.040810, -0.339326, 1.998217, 1.911765, -1.288431, -2.215854, -1.611742, 0.606864, 0.814347, 0.232382, 0.378639, -0.815160, 2.142320, -0.369369, -0.847102, -1.106990, 0.926171, 0.398485, 1.697152, -1.412457, -0.660148, -0.100567, 0.122255, -0.775312, 0.195316, -1.914149, -0.783259, 1.371915, 0.716988, 2.154932, -0.775929, -1.642688, -0.686566, -1.130656, 0.708010, 0.205619, -0.822354, 0.286945, -1.762586, -1.835892, -0.055453, -2.159250, -0.595203, -1.234347, -1.119582, -0.569000, 0.920316, 0.970850, -0.522653, -1.611656, 0.037889, 0.514440, -0.411900, 0.245702, -0.229427, 1.736876, -1.479308, 1.230309, 1.027730, 0.759393, 0.453581, 0.740624, -0.510150, 0.286593, -1.164558, -0.630723, -1.118675, -0.684163, 1.475408, -0.513927, -0.415364, -0.136300, -0.433766, -0.189449, -0.538142, -0.930861, -0.009446, 0.391436, 2.023198, 1.411867, -0.507803, 0.084696, -0.569933, -1.525797, 0.412340, 0.210363, 0.044233, 0.901978, 1.419834, 0.677276, -0.652197, 0.389954, -0.747245, 0.256262, -0.239018, -0.424416, 0.195915, -0.145170, -0.901196, -0.910658, 0.913185, 0.160334, -0.834326, -0.782434, -0.461058, -1.470574, 0.155376, -0.445109, 0.089911, -2.456486, -1.782437, 0.490214, 1.646560, 0.066937, -2.299922, -0.047979, 0.603489, -0.646352, -2.248479, -0.280179, 0.156131, 0.069344, -0.847731, -0.139704, 0.043159, 0.126194, 0.603933, 1.538464, -1.506664, -0.179378, 0.407332, 0.809856, -0.166067, -1.292168, -1.769859, -2.079509, 0.739625, -0.736729, -0.713354, 1.073867, 1.844931, -1.939672, 0.471914, -0.156489, 0.138424, 0.890533, 0.612764, 1.475300, -0.526159, -1.735516, 1.410267, -0.876821, 1.171168, 0.075415, -0.387776, -0.882955, -0.551826, -1.028673, -0.024397, 2.792131, -1.603245, 0.402022, 1.737134, 0.115065, -0.216108, -0.521870, 1.635362, -1.264822, 0.541659, -1.944620, -0.755439, 0.285255, -2.913314, 0.311291, 0.427674, -0.862534, -0.098715, -1.429178, -1.617302, -1.323428, 0.339025, -0.591097, -0.132334, 1.202685, 0.283947, -0.429917, -2.540929, -1.405465, 1.592140, -0.757374, 1.108627, 0.873684, -0.927622, -2.282203, 0.224326, 0.502771, -0.994116, 1.285542, -1.194033, 0.482534, 0.207624, -0.490080, 1.346618, -1.521279, -0.306631, -1.740103, 1.524379, -1.353220, 1.823642, -1.020735, -1.211194, -0.200056, -0.321512, 0.106106, -0.689623, 0.920550, -2.241492, 1.660964, -0.233836, 0.416134, 0.949040, 0.362489, 0.661448, -0.551020, -1.277775, 0.753808, -0.728999, 1.259455, -0.855020, -0.113403, 0.180453, 0.042225, -1.437568, 0.637236, 0.025830, 0.537016, -0.058317, 0.671484, -2.318072, -0.643389, -0.562461, -1.452972, -1.112109, -2.104362, -0.360837, 0.531970, 0.488858, 0.593668, 0.218039, 0.758817, -0.427450, -2.061395, 1.705541, 1.480190, -0.798173, -0.314018, 0.823357, 1.055417, 0.933325, -0.215806, -1.250151, 0.297458, 0.096078, -1.289634, -0.310853, -1.329689, -0.481198, 0.165585, -0.355458, 0.276325, 0.635595, -0.729753, 0.637424, 1.495186, -1.718847, 0.223172, -1.835021, -0.461343, -0.708494, 2.117562, -0.062408, -0.067752, -0.254458, 0.984144, 1.321805, 0.670593, 0.567188, 0.328510, 1.234885, 1.181028, -0.563270, -0.905491, 0.270681, 0.609736, -0.687382, -0.206509, 1.864390, 0.523094, -0.468049, -1.163573, 0.840661, -0.227165, 0.835723, 0.701759, 0.864262, 2.507117, 0.639601, -0.537041, 0.354290, 1.103883, -0.370686, -0.258310, -0.262834, -0.812582, -0.595378, -0.944029, -0.953974, 2.823998, 1.270386, -0.811090, -1.462563, 0.211065, -0.891727, 1.596180, -0.180620, -1.314641, 0.669107, 0.806106, 1.603680, 0.346867, -0.395742, 0.904379, -0.953341, 0.374559, 0.814034, 1.508167, 1.248294, 0.128080, 2.067523, 0.750697, 0.687511, -0.588257, 1.093959, -0.098795, -0.012618, -1.839321, -1.149667, -0.662068, 1.496468, 2.167565, -0.236460, -1.570776, -0.732336, -0.042147, 0.405120, -0.369327, 0.810185, 1.313395, -0.767107, 0.197084, -0.727138, -0.609878, -1.097356, -0.672487, 1.194189, 0.556869, -0.336657, 0.425821, 0.569506, 1.723290, -0.247420, -0.980576, -0.855025, -0.155905, 1.222950, 1.948963, -1.270618, 0.348116, -0.491914, -2.116805, 0.189608, -1.191331, -0.049422, 0.323932, -1.616547, -0.922383, 0.945364, 1.985738, 0.374413, -1.308167, -1.071365, 0.014611, -0.130538, 0.757273, -1.293112, 0.940560, 0.134145, 1.010601, 0.783650, 0.255528, 1.060758, 1.198641, 1.295738, -0.580612, 0.578393, 0.884045, 0.180836, -0.458545, 0.192984, 1.173479, -0.123109, -0.257911, 2.552269, 0.375229, -1.339672, -0.279820, 0.328244, -0.713262, 0.353616, -0.679741, -0.672665, 0.160089, 1.357111, -2.032015, -0.131624, 1.702815, -0.980851, 0.914760, -0.157481, -0.435516, -0.521515, -0.650218, 1.756954, 1.545284, -2.529951, -0.769625, -1.645308, 0.524984, 1.283369, -1.506804, -0.465938, -0.698563, -0.834909, -0.308978, -0.556149, -0.769594, 0.497699, 2.276626, -0.844418, 0.254551, 0.017238, 1.455137, 0.230232, 0.679763, 1.308492, 0.701632, -1.196901, 1.945062, -1.175911, -1.124874, 1.292782, -0.338028, 0.367165, 0.353531, 0.633568, 2.557875, -0.167781, 0.424514, -0.294773, 0.280180, 0.732246, -1.407929, -0.848970, 0.729634, 0.911062, 0.263933, -0.545052, 0.105529, -0.223433, 0.645134, -0.873666, -0.133974, 1.671354, 0.198154, 0.286433, 0.971493, -0.721881, 0.050207, -1.286270, 1.330596, -0.762040, -0.490164, -1.530473, -0.912325, -1.361833, 0.684286, 0.133923, -0.538645, -0.730002, 0.521018, -1.844207, -0.109827, -1.608073, -1.622082, 0.076888, -0.404588, 0.693388, 1.515352, -1.246440, 1.331426, -0.457352, 1.717526, 0.911947, 0.665998, 0.722040, -1.067963, -0.410837, 0.905061, 0.432025, -0.450593, -0.748104, -1.484108, -0.495278, 0.109436, 0.241716, 1.599032, -1.147695, 1.769514, -1.479689, -0.415782, -1.170278, -0.622471, 0.393543, -0.559444, 1.874969, 0.287597, 0.767469, 0.357354, 0.267501, -0.266990, 1.456886, 0.368555, -0.727274, 0.213615, -0.261534, 0.850806, -0.469329, -0.935140, 0.660715, 0.773345, 0.233064, -1.301188, -0.610967, 0.345995, -0.603919, -1.053955, 1.047476, 0.353146, 0.282915, -0.812627, 0.421331, -1.284377, 0.194997, 0.660365, -0.209087, 0.537426, 0.954637, -0.632826, 0.245715, 1.806435, 1.880646, 2.457077, -1.207209, 2.238415, -0.629680, 0.908186, 0.084370, 0.576474, 2.198799, 0.242670, -0.628591, 0.497697, 1.402853, -0.711362, -0.298425, -0.801774, 0.054332, 0.681303, 0.552893, 0.770221, 0.643135, 0.273837, 0.330350, -2.246512, -0.442313, 0.996603, -0.270699, 0.647778, -1.096185, 1.299947, 0.135745, -0.714829, -0.458041, -1.670897, 0.229702, -0.052380, -1.262217, -1.589613, -0.270982, 1.535045, 0.503076, -1.822937, -1.292228, -0.311002, 0.024634, 1.160637, -0.652208, 0.123767, -0.557057, 0.558771, 1.086947, 0.540257, 0.909246, -0.898957, 1.530163, -0.923892, 0.485648, 0.238247, -0.436018, -1.090601, 0.870652, 0.504701, 0.599472, -0.145817, 0.942055, -0.100235, 0.569638, -0.337121, 0.044976, -0.599574, 0.061402, 1.918601, 0.834554, -0.031722, -0.704964, -0.161246, 0.544671, -0.651383, -1.645877, 0.435550, 0.676679, -0.066669, -0.292441, 0.865631, -1.383248, 2.826511, 0.885830, -0.271709, 0.593572, 0.480456, 0.269602, -0.293841, 1.586214, -0.185174, -0.700619, -0.588683, 1.760091, 0.041362, 0.140348, -1.012107, 0.768306, 0.906298, -1.002926, 1.175111, -3.774929, 0.167701, -0.148679, 0.825280, -0.833319, -0.837649, -0.224188, -1.071116, 1.872995, 0.553967, -0.087436, 0.736050, -0.083514, -0.741703, -0.313768, -0.447542, 1.419413, 0.474555, -0.538200, -0.609044, 0.315440, 0.093846, -0.604892, 0.628349, 0.044505, 0.679262, 2.457449, -0.134066, -0.549109, -0.913091, 0.364055, 0.494420, -0.056844, 1.222093, 0.074178, 0.904414, 0.190268, 0.607383, 0.380522, -1.618842, 0.106518, 0.398193, -2.297612, -0.998274, 0.714249, 0.162382, 0.378262, 0.454799, 0.069100, -0.167135, -0.738255, -1.558727, 0.967726, 0.423194, 0.052705, 0.392266, -0.532611, -0.856387, 0.456523, -0.425223, -0.522495, 0.362853, -0.666647, -1.847039, 0.817615, -1.144197, -1.626253, 0.774238, 0.260345, -3.258763, 0.026512, -0.285162, -0.005065, 1.859652, 0.590737, -0.410954, -1.418287, 0.831048, 0.155411, -1.734565, 0.316919, -0.149549, 0.119297, -0.058238, -0.006399, -1.887887, -0.638349, -0.429402, -1.545517, -1.425266, 0.856502, 1.099850, -0.076803, 0.061601, -0.415425, -0.883589, -0.274312, -0.735317, -0.141561, 0.298130, 1.483487, -0.615409, -1.578746, 0.715461, 0.026218, -0.217577, 0.662090, 0.505457, 0.930162, 1.536933, 0.363893, -0.008661, 0.936962, 0.492318, -1.887021, 0.565682, -1.971513, -2.056686, -0.045446, -1.305931, -0.881378, 1.008077, -0.941508, -0.213740, -0.865698, -0.932219, 1.098633, 0.159927, -1.405609, 0.459212, -1.559741, -0.261565, 0.256250, -0.110848, -0.672365, -0.342622, -0.787630, -0.092756, 1.122715, 0.969572, -0.038907, -1.399385, 0.978575, 0.700709, -2.083883, -0.845570, -1.146723, 0.583142, -0.465145, 0.188317, -0.984040, 0.855091, 2.205299, -0.662515, 0.763596, -0.858891, 0.260237, 1.452351, -1.259991, -0.479036, 0.785177, -0.846226, 1.043118, -0.733261, 0.188875, 0.487674, 0.051956, 0.178794, 0.684831, -0.821461, 0.928840, 1.334278, -0.104548, -0.639198, 1.500090, 0.406619, -1.099985, -1.416839, -0.390211, 0.291419, 0.933916, 1.444235, 0.868859, 0.805315, 1.445146, 0.611266, 0.785611, 0.154246, 1.157670, 1.109126, 0.271696, -0.155566, 0.761438, 0.471443, 0.051751, 0.489360, -0.128504, -0.768859, 1.172385, 1.322451, 0.509303, 0.528920, -0.754073, 0.201715, 2.338198, 1.740549, -1.628224, 0.770020, -0.492662, -1.140821, 0.489712, -1.528871, 0.103982, 1.880946, 0.905111, -0.833171, -1.682546, -1.862728, -0.997107, 1.007095, -0.144976, -0.507198, -1.205614, 0.457016, -0.243494, 1.031220, -1.198406, -1.225401, 0.468323, 0.919303, -0.528095, -0.661466, 0.307176, 0.343826, 1.076542, -1.721700, -0.663999, 0.747687, 1.235697, -0.069326, -1.770146, -0.848474, -0.197615, 1.513558, -2.524689, 1.400738, 0.406095, -0.184936, 1.280244, -0.216047, -1.676776, 0.219719, -0.405184, 0.967325, -0.375629, -0.785722, 1.220597, 0.334789, 0.566480, 0.009254, 1.746741, -0.787908, 1.763453, 0.017366, 0.706532, -0.140022, -0.783722, -2.182021, -1.087504, 0.909114, -1.296626, -0.469856, 0.809443, -0.538671, 0.953015, 0.835782, -0.623321, -1.074792, -0.834355, 0.326608, -0.167698, -0.316246, 0.736643, -0.302629, 1.197693, 3.204298, 1.157178, -0.593553, -0.557982, 0.982327, -1.169718, -2.160820, 0.108015, 0.697272, -2.031981, 1.345407, 0.862154, 0.926838, -0.035839, -0.250587, -0.701835, -0.795605, 2.111944, 0.538221, 0.356078, 0.832455, 0.936934, 1.684944, 0.549750, 0.790562, -2.052320, 1.330595, 0.326634, -0.853783, 0.487032, -1.996852, -2.565112, -0.523779, -0.102644, 0.005887, -0.781062, 0.514485, -1.407459, -0.936053, 0.621269, -0.017720, -0.617706, -1.137232, -0.807767, 0.235180, -0.134021, -0.359856, -1.462101, 1.832937, -0.273101, -0.020999, -0.438320, -0.009446, -0.243226, -0.544482, 0.166262, 0.738021, 0.077360, -0.488276, -0.821518, -0.415494, -0.216131, 0.142641, -0.253094, -0.679378, -1.484582, 0.456298, 0.565872, 1.553964, -0.021438, -0.388620, -0.807010, -0.136264, -0.866476, -1.156408, -0.985454, -1.657730, 1.234892, -0.137808, -0.238852, 0.033399, 0.215430, 0.880274, 0.155169, 1.268355, 1.839431, 0.133500, 0.020458, -0.616348, 1.589242, -1.617563, -0.003197, -0.638750, 1.057412, -1.081039, -0.641924, 0.498153, -2.484929, 1.599888, -0.340949, -0.068286, 0.371734, -0.870459, -0.189091, 0.198300, -0.538583, -0.340019, -1.088236, -2.017619, 0.843293, -0.882988, 1.638878, 0.349668, 1.657731, 1.289697, 0.936379, -0.272177, 0.191521, 0.271849, -0.672913, 0.064053, -0.080055, -0.633254, -0.747562, -1.992939, 1.620304, -0.518901, 0.382423, 0.077329, -0.216099, -1.755247, -0.483255, 0.739758, -0.181267, -1.574334, -1.651722, 0.693794, 0.953994, 0.950048, -1.253076, 1.656438, -0.371822, 0.481879, 0.611983, 0.862718, 1.245632, 0.882637, -0.847025, -2.207047, 0.757778, 0.817937, 0.195750, 1.034330, -0.200130, 1.624408, 0.162437, 1.263891, 0.223653, -0.894796, -1.085478, 0.674211, 0.611244, -0.005049, -1.733819, 0.894442, 0.838969, -1.619244, 0.651272, -0.800640, 0.359469, -0.145293, -0.259317, 1.625399, -0.400067, -1.943555, 0.325960, 0.302873, 0.541227, 0.119039, -0.495761, -0.327059, 1.090673, 0.855052, -1.354466, 0.022400, -1.922561, -0.006519, 0.417387, -0.950574, 0.189850, 0.723750, 0.285134, 0.920834, 0.176980, 1.213805, -0.365228, 0.712436, 0.900792, -0.619316, -0.141724, -0.965008, 2.041592, -0.505673, 1.058618, 0.574162, -0.662834, -1.266578, -0.589979, 0.354142, 0.698730, -0.051693, -1.277285, -0.738954, 0.713953, -1.218836, 1.242006, 0.407080, -1.259255, 2.019546, 1.438067, 0.736658, -0.510014, -0.990531, -0.765166, -1.007231, -0.214694, -0.747685, -1.968806, -0.161317, 1.621844, 0.210423, -0.771294, 0.450599, 2.001394, 1.738619, 0.566885, -1.893497, -0.530683, 0.850890, 0.220721, -1.712036, -0.046604, 2.631550, 0.149449, -0.212828, -0.197895, 1.905503, 0.819902, -0.523158, -2.023850, 0.124120, 2.946158, -0.919509, -1.538836, -1.776377, 0.530943, 1.406346, 1.630764, -0.110141, -0.735590, -0.635372, 0.398702, -0.776307, 0.395137, -1.925777, -0.273339, 1.358249, -0.861496, 0.089180, -1.012947, 1.540609, -0.742041, 0.552658, 0.340891, -0.954655, 0.139637, -0.090485, 0.250190, 0.482467, -1.228982, 0.531436, 0.507531, -0.004376, 0.411277, -0.718831, -0.336491, -0.195399, 0.224481, -0.666029, -0.345856, -0.073758, 0.174176, -1.713911, 0.163176, -0.256084, 0.298473, 0.117545, 0.503351, 0.695065, 1.334711, 0.609364, 0.958845, -1.178927, 0.510191, -1.486158, 0.401862, -0.855869, 0.807488, -0.945352, -0.087425, 0.217774, -0.888259, 1.399231, 0.492064, 1.220216, 1.476372, 0.487832, 0.284453, 0.153273, -0.016706, 1.585354, -0.205146, -1.237179, 0.542567, 0.989088, 0.648264, 2.159141, -1.254500, -0.923453, -0.148642, -0.726381, -0.776980, 0.770464, 1.392206, -0.930231, 0.266298, 1.465960, 2.306773, -0.625814, 0.274268, 0.051292, -0.239717, 0.729621, 0.664993, 1.121924, 0.632058, 0.905467, 1.427446, 0.007445, -2.049455, -0.216021, -0.858709, -0.134386, 0.855359, 0.507594, -1.070304, 0.209477, 1.737250, 0.299925, 1.398934, -0.434993, 0.077866, 0.692991, -0.756430, 1.537987, -1.806252, -0.476487, -0.859116, 0.963591, 0.923220, -0.338264, 0.662789, 1.323264, -1.300412, 0.083961, -0.118212, -1.380022, -0.749058, 0.447634, 1.958049, -2.459430, 0.421433, -0.743782, 2.129945, -0.602323, -0.183671, 0.206305, -0.302544, -0.719317, 2.121706, 1.540766, -0.225557, -1.511597, 0.754543, -0.091522, 1.924275, 0.230632, 0.365935, -0.811286, 0.681153, 1.572017, 0.115002, 0.625835, 0.605080, 0.213463, 0.192024, -0.194023, -0.399103, -1.958182, -0.358869, 1.022202, 0.132406, 1.471805, 1.070965, 0.175471, 0.285277, 0.021200, 0.599523, -1.314948, 0.281622, -0.081000, 0.172158, -1.862646, 0.986665, -0.534133, -1.916276, -0.530737, 1.407987, -0.626147, 0.182106, -0.781367, 1.492690, 0.952253, 1.078951, -0.206277, 0.668398, 1.804943, 0.232114, -1.230453, 0.837795, 1.477466, -1.629281, 1.470325, 1.441007, -0.040301, -0.602422, 0.838631, -0.591540, 0.382618, -0.118419, 0.051557, 0.096159, 0.902218, 1.605196, 0.143768, 0.147585, -0.141291, 0.678024, 1.390853, -0.421511, 1.208288, 0.036119, 0.029561, -0.163579, 1.589282, -0.815432, 0.514626, 0.166672, 0.525113, 0.970681, 0.485214, 1.136702, -1.800761, 0.690678, -0.194342, 0.908171, -1.090786, 0.218515, 0.838834, -1.171016, 0.214444, 0.441577, 0.287095, -0.412562, -0.618340, 0.290903, 0.958213, -1.447302, -1.446268, -0.710906, 1.578458, -1.091832, 0.545546, 0.304186, -0.309296, 0.683226, 0.701882, 0.076304, 0.285923, 0.103014, 1.323580, -0.006013, -0.593497, -1.069417, 0.091635, -1.132696, 0.571171, 1.140896, -0.936000, 0.254236, -0.907856, -1.089543, 0.993852, 0.273657, 0.967522, 2.093941, -1.223866, 0.429392, 0.120051, 0.549104, 0.647190, -1.115838, -0.195397, 0.446270, -0.492344, -0.558010, -2.640300, 0.155339, -1.019168, -0.670918, 0.290420, 0.382878, -0.424822, -0.338645, -1.270369, 0.919237, 0.590560, 1.008365, 1.227771, -0.625557, -0.150320, -1.672765, 0.824407, 0.001227, 0.410100, 0.962835, -1.759868, -0.558739, -0.134206, -0.697611, 0.323811, -1.104477, 0.847668, -0.379923, -1.013853, -1.541471, 0.116949, -0.114481, -1.733531, -0.999286, -0.626130, 0.472367, 0.003997, 0.154539, -1.099100, -0.555579, 1.068332, 0.455766, -0.807047, 1.007023, 0.444259, 1.327401, 1.437015, -0.043844, -1.090147, 0.796512, 0.521100, -0.284028, -0.530354, 0.736647, 0.629921, 0.664883, 1.840846, 2.030298, -0.511684, -0.977230, -0.554112, -1.465355, -0.074527, -1.022036, 0.131191, -0.428613, -0.098370, 1.004801, 0.012264, -0.961686, -2.209918, 0.260822, 1.475644, -0.929505, 0.392600, -0.927285, -0.133991, 2.312371, -1.049276, 0.973929, -0.255088, 0.704127, -0.792910, 0.430684, 1.825592, 0.740534, 1.494470, -0.863474, -0.136603, -1.977052, -0.811724, 0.919494, 1.093497, 1.148729, -0.604218, -0.471478, -1.583214, 1.654827, -0.554981, 2.093590, -0.979652, -0.688824, 1.316643, -1.230648, 0.570379, -0.669996, -1.223467, -1.891810, -1.924267, -1.235424, 0.756017, -0.666367, -1.023326, 0.555475, 0.305918, 0.180063, -0.141499, 0.167064, -1.871583, 1.328987, -1.360708, 0.260314, -0.125774, 0.667003, 0.662604, 0.518516, -0.104374, 1.370616, -2.464720, -0.901188, -0.121387, 0.084551, -0.626412, -0.675372, -0.312952, 0.853075, -1.172036, -0.954390, -0.513668, 0.833627, 1.389015, -1.560414, -0.479683, -0.138798, 0.594588, 0.767498, 0.475659, 1.623153, 0.735289, 0.562974, 0.158398, -0.378628, -0.670631, 0.088275, 0.772969, -1.207289, -0.338791, -0.363498, -1.426166, -0.320898, -0.810194, -1.817028, -0.555361, -0.372655, 1.879006, -2.218235, -0.465146, -0.337877, 1.478354, -0.970064, 0.343084, -1.173539, 0.188834, 0.261888, -0.562787, 1.627506, 0.580245, 0.327927, -0.844266, -1.060338, -0.147947, -0.460550, -0.177256, -0.945131, -1.313558, -0.298973, 0.410588, -0.669070, -1.090892, 0.289215, -0.377820, 0.839338, -1.111745, -0.811818, -1.172831, 0.391945, -0.491829, -0.227326, 0.939623, -0.540792, 0.130543, -0.069212, -0.548100, 0.550014, 0.219876, 0.454632, 1.712600, 0.521004, 0.130218, 0.255326, -1.264603, -0.557759, -0.246010, 0.648926, -0.486580, 0.690779, 0.612560, 0.511398, -0.086692, -0.675319, -1.768657, -2.139894, -1.734304, 2.012283, 0.343154, -0.903062, 0.365472, 0.839142, -1.214435, 0.324033, 0.616915, 0.935193, -1.017241, 0.408117, -1.726444, -0.121322, 0.192869, 1.081294, -0.817966, -0.697636, 1.024459, -0.473298, 0.718078, -1.040346, -2.491232, 0.131391, 1.742156, 0.353938, -1.779879, -0.189823, -1.040354, -0.260624, -0.965293, 1.309706, 0.195921, -0.919993, -0.563284, -0.207294, 0.352581, 0.883915, -0.291144, 0.193367, 0.178430, -1.110159, 1.221385, -0.209801, 0.248522, -0.473450, -0.571792, -0.625436, -1.170056, 0.194336, -0.047487, -2.029404, -0.299411, -0.930910, -0.038067, -0.777132, -0.213311, 0.147254, 1.656849, 0.573813, -1.539118, 0.880464, 0.880131, -0.747459, -0.858205, 1.228164, -0.760625, -1.832125, -0.019177, 0.564201, -0.868261, -0.537545, -0.582654, -0.616964, 0.560157, -0.905352, -2.020527, 0.587057, -0.453112, 0.090689, -1.420369, -1.587916, 0.238346, -2.234722, -1.555369, -0.456377, -2.005966, -0.237870, -1.680128, 0.151082, -1.593435, 1.387881, -0.741671, 1.223455, 1.103431, -0.777037, 1.408736, 1.902882, 0.531550, 1.044782, -1.076130, -0.673309, 1.709906, 0.256266, 3.343550, -0.685823, -2.121159, 0.089676, -1.187886, -0.097671, -1.044594, -0.846009, 0.133710, 1.893877, 0.359745, 0.252651, 0.244037, -1.538918, 1.115700, -0.072269, 0.697478, 0.664608, 1.180620, 1.147225, 1.191006, 0.368092, -0.210100, -2.311575, -0.063836, -1.455704, 0.493406, -0.630681, -1.676298, -1.193554, 0.905106, -1.545751, -0.219819, -0.041734, 0.979126, -0.255762, -1.924916, -0.318397, -0.310783, 1.196124, 0.838070, 0.577734, -0.994569, -0.946624, 0.500414, 0.110417, -0.094273, -0.032592, -1.253767, 0.296884, 1.873517, 0.177414, -1.031563, 0.144232, -0.883040, -0.658280, 0.155666, 1.299628, 0.517497, -0.208179, -0.128513, -0.611170, 0.398791, -1.197398, 2.587734, 1.115386, 0.248222, -0.541405, 0.695469, -0.054985, 1.283327, -0.503008, -0.815221, 0.288918, -0.016338, -1.156937, 0.943865, -0.086148, -2.560810, -3.653342, 0.645168, -0.428726, 1.355295, -0.089028, 0.211192, 1.044049, -1.145127, -0.581369, -0.503060, -0.159572, -0.427680, 0.020536, 0.222917, 2.737014, 1.056712, -0.578037, 0.391490, -0.457669, -1.100458, 1.139609, 0.217027, -0.357803, 0.274608, -0.385472, 1.185033, 0.171908, -2.707349, 1.588948, -0.157671, 0.199787, 1.033055, -1.212648, -0.694839, -0.671615, 0.172562, 0.036933, 0.697805, 0.414519, 0.667288, -0.557510, 0.857324, -0.709816, -1.602680, 1.324861, -2.269055, 0.470487, 1.208059, 0.177478, 0.171895, -0.872168, -2.186580, -0.493671, 1.867589, 0.752896, 1.095372, -0.244078, 0.848214, -1.318316, 0.848509, 2.486402, -1.020310, -0.942185, 0.945333, 0.156182, -0.301386, -0.064850, -0.273926, -1.253156, 0.273615, 1.317315, 0.642375, -0.086330, -2.033757, 0.551518, -1.083527, -0.590233, -0.314680, 0.926940, -0.533664, 0.402880, -0.689461, 1.061647, 0.127076, 0.636953, -0.690255, 0.489191, -0.574507, 0.245246, -0.381623, 0.539626, 0.000194, -1.758696, 0.508802, -0.257727, 0.292019, 0.463272, 0.346177, -0.556291, 0.474174, -0.408458, -1.146987, -0.111829, -0.240989, 0.825932, -0.626498, -0.242822, -0.369316, 0.008353, 0.638135, -0.074198, -0.656372, -0.080627, -1.274264, -0.515446, -0.446216, -1.189520, 0.563389, 1.399765, 0.915128, 1.117257, 0.236102, -0.675459, -0.220637, 0.959634, 1.419576, 1.021667, -1.504123, 1.247329, -1.317474, -0.682281, 2.163998, 0.130203, -2.267840, 1.081378, 0.194819, -1.282587, 0.035392, 0.006418, 0.295348, 0.424520, 0.021659, -1.040777, 0.788981, -2.446877, 0.126979, -0.950303, -0.376568, -1.154711, -2.149836, 0.077384, 0.463624, -0.095168, -1.097720, -0.164080, -0.221102, 0.401866, -1.569068, 0.411337, -0.317839, -2.064783, -1.769371, 0.181743, -1.359475, 0.502654, 0.361786, -0.209982, 0.282905, 1.697727, -0.340520, 1.452186, -0.532251, -0.203603, -2.009740, -0.361879, -0.418472, 1.030548, -0.213635, 1.010984, -0.620800, 0.444597, -0.202257, 0.438767, 1.602165, 1.679331, 1.025387, -1.797996, -0.415699, -1.049389, 0.213724, 0.519129, -0.766252, -0.200632, 0.268251, -0.789505, 0.675799, 0.145076, -0.958511, 1.324622, -0.525909, -1.418014, -0.548286, 1.263579, 1.072547, 0.828219, -0.137356, 0.894170, 0.316195, 0.380372, -1.382895, 1.615364, 1.053836, -0.560380, -1.522957, -0.779194, 0.605998, -0.056610, -0.177501, -0.690148, 1.145496, -0.189536, -0.499614, -2.384019, -0.267268, 0.795484, -0.433175, -3.018608, 1.147453, 0.643098, 0.830705, 2.097276, -1.155822, -1.713669, -1.105028, -0.062009, -0.923434, 0.743138, 1.121429, -0.180391, -0.576033, 0.704896, -1.288203, -0.845380, -1.152440, -0.320244, 0.875678, 0.600936, 1.819416, -0.174057, 0.141421, 0.860840, 0.122118, -0.163375, -0.949162, 0.113648, 0.523691, -0.363049, -1.160820, 0.605130, -0.147158, -0.716509, -0.778459, 1.519413, 1.636031, 0.162499, 0.135135, 0.659129, 1.639581, 1.036743, -0.454564, -0.191258, 1.083811, -1.926418, -0.158085, -1.708622, 0.132392, 0.541703, -1.130127, 0.686314, -0.900944, 0.496621, 0.619421, -0.253409, 0.160915, 1.728672, -0.320732, 1.064396, -0.517227, -1.421334, 0.064680, 0.114182, 1.748614, -1.084048, 1.243769, 0.389261, -0.099600, 0.829103, 1.819249, 0.404720, 1.032003, -0.024367, 1.097604, 1.085647, -1.367404, 0.466983, 0.001281, 2.846629, -2.019267, -2.680492, -1.226993, 0.307601, -0.383387, 0.547387, 1.100284, -0.685923, -0.312973, -0.137570, -1.107392, -2.088766, 0.767244, -0.806956, 0.649474, -1.061088, -2.317648, 2.402853, -1.322242, -1.402705, -1.672033, -0.246687, -0.200126, -0.211244, -0.867503, 0.434005, 0.014796, 0.162539, 0.347691, -0.641239, -1.731719, -1.434930, 2.642357, 0.544128, 0.850129, -0.729942, -0.893757, 0.416484, 0.669560, -0.396419, 1.478083, -0.858730, 1.618151, -0.790242, -0.107981, -0.960111, -0.220593, -1.635601, -0.259124, 0.501547, 0.087147, -0.309044, -0.347772, -1.212590, 0.841336, -0.721862, 1.516998, -0.006928, -0.494713, 0.833561, 0.451793, 0.837156, -0.254606, 0.089599, 0.911841, -0.740064, 0.620478, -0.642798, -1.569077, 0.123068, -0.434907, 1.568962, 1.555829, 2.127965, 0.351766, -1.284559, 1.359767, 1.442204, -0.840695, -0.463315, -0.723744, 0.806839, 0.143425, 1.381059, -1.010218, -0.795730, -0.121016, 0.375328, -0.162401, -0.633000, 0.747063, 0.085978, 1.816127, -0.501502, -0.507550, 0.924022, -0.746933, -0.033771, -0.283509, -0.447803, -2.295218, -0.276337, 0.524660, 0.569275, 0.274995, -0.682910, -0.205559, 0.895590, 0.297320, -0.300603, 0.503471, -0.525355, -0.754506, 0.650331, 0.602531, -1.774355, 0.310153, -0.453766, 1.702149, -0.123849, -0.835878, 1.328351, 0.579231, -1.104562, 1.098184, -0.709438, -1.300756, 1.331591, -0.029225, -0.191343, -2.165961, 0.341162, 0.186482, 1.035492, -1.458163, -1.042048, -0.084827, 1.635345, -1.058154, -2.515314, -0.774969, -0.873007, -0.337382, -2.764482, 0.396669, 0.026367, 0.977886, -1.675156, -0.295895, 0.961347, -0.193771, -1.232363, -1.395568, 1.228016, 0.169373, -0.607413, 0.846884, -0.230924, 0.216920, 0.369623, 1.028052, -0.188690, 0.469493, -0.206884, 1.072878, 0.821573, 0.978262, 0.107876, -0.558954, -0.310885, 1.942254, 1.565964, -1.059694, 0.306540, 0.813537, -0.389594, -0.480042, 0.887445, 1.002834, 0.185267, -1.269850, -0.858702, 0.117193, -0.960910, -0.438533, -1.158435, -0.021574, 0.410309, -0.254446, 0.480523, 0.456429, -0.935506, 2.015416, -0.587284, -0.151799, 1.086539, -0.429865, -0.549879, 0.101188, -0.009451, 1.517862, 0.550616, -0.179284, 2.432602, -0.299765, -0.104424, -1.147942, 0.440644, -0.434821, 0.081770, 0.470288, 0.707236, 0.199223, 0.146954, -0.524365, -0.425456, -0.994704, 0.366282, -0.121806, 0.122624, 0.845056, -0.919393, -0.359879, 0.956572, 0.291986, 0.103772, 0.551228}, - { 0.151411, -1.717748, 0.909832, 0.848680, -0.174213, 1.263088, -0.547166, -0.254465, -0.393627, 0.981863, -0.063628, 0.768435, 0.676767, -1.886077, -0.477599, 1.720591, 0.445139, 0.211770, -0.573490, 0.197628, -2.429413, 1.403641, 0.180901, -0.551383, 0.141266, -0.805328, 0.909336, -1.198049, -0.647150, -0.041898, -0.424140, -1.486209, 0.541744, -0.650204, -0.650450, -0.266668, -0.470350, -0.322348, -0.230794, -0.632877, 1.826589, 0.257119, -1.900059, 0.178371, 0.357649, 0.174800, -0.003306, 0.580129, 0.074534, 0.170380, -1.079589, 0.116693, 0.798690, -0.125644, 0.324565, -1.273186, 0.786542, -1.503500, 1.298266, -1.386859, 0.943515, 1.528456, -0.241123, -0.397135, -1.440818, 0.518590, -1.596600, 0.046940, -0.393789, -1.503666, 1.256149, -0.077771, 0.641385, 0.609378, -1.484205, 0.483218, -0.119101, -1.565513, -1.322506, 0.277597, -0.309835, 0.200702, 0.062800, 0.200795, -1.136239, -0.040700, 1.223090, -1.810949, 1.076914, -0.895120, 0.734914, -0.113220, -0.819583, -1.268599, 1.676691, -1.244039, 0.155282, 0.420703, -0.649007, 0.236376, 0.539776, 1.063199, -1.334928, 0.970890, -0.434281, 1.358534, 0.422500, 0.864670, 0.160401, 1.680198, 2.152479, -0.633744, 1.060115, 0.532378, -0.211181, -0.320317, 0.873093, 0.222334, 0.783755, -0.610613, 1.240386, -0.014305, 0.751334, -0.859434, 0.476986, -1.686807, -0.134107, 0.761968, 0.374331, 0.897440, -1.702061, 1.573867, -0.263693, -1.161328, 0.491045, -0.007748, -1.847060, -0.449268, 1.504047, -1.042101, -0.922779, -0.600547, -0.279846, 0.447892, -0.958392, -0.670416, -0.279738, 1.925528, 0.387071, 0.087156, -0.467199, -0.050457, -0.818867, -0.709160, 0.641431, 0.418357, 0.899433, -0.108944, 0.666666, 1.292046, 0.750602, 1.089446, -1.249858, 0.011890, -0.589511, 0.258431, 0.257665, 0.245017, 0.844059, 1.980735, 1.970554, -0.618476, 1.668040, 0.149042, -1.758637, -0.510663, -0.641908, -0.462898, -0.663343, 2.079369, 0.404049, 0.323880, 2.476227, 0.527205, -1.177533, -0.323164, -1.227292, 0.149659, 0.838142, -1.732197, -0.170381, -1.812745, -0.669329, 0.408222, 0.189581, 1.780860, 1.089348, -0.418127, 1.418004, -1.832505, -1.959258, 0.481414, -0.743271, 0.046968, -0.176478, 0.943366, 0.263546, -1.735088, -0.637229, -0.419577, 1.034221, 1.286572, 1.237679, -0.345898, -1.590086, 1.615048, 0.129258, -0.345910, 1.942529, -0.074625, -3.001926, 0.771956, -2.074967, 0.406719, -1.364377, -1.481638, 1.547148, -0.303939, 0.789367, -0.303160, -0.830100, 0.699050, -0.084270, 0.141094, -0.033963, 0.667123, -0.558370, -0.540293, -0.819283, 0.791856, 0.172812, 0.654527, -0.360412, -0.248002, 0.697636, 0.571203, -1.788391, 1.050033, 0.760023, 1.536373, -0.658803, 0.302729, -0.068964, -1.207751, 0.496216, 1.059681, 1.168080, -1.060535, 0.106893, -1.464354, -0.001107, -0.642644, -1.127898, -1.015904, 1.059593, -1.373190, -1.879398, 0.050528, 0.697422, -2.616667, 1.425313, -1.698050, -1.480625, -1.119680, 0.552761, 0.788110, 0.105646, 0.118271, 1.328090, -0.029821, 0.442615, -0.281911, -1.071998, -0.104038, 0.686019, -1.131257, 2.240062, 0.585562, 0.762856, 0.194447, -0.364963, 0.871979, 0.264676, -1.065846, -0.387478, -0.712954, -0.842447, -0.366122, 0.338344, -0.384794, -1.241136, 0.724946, -0.056380, -0.860886, 0.140001, -0.957593, -0.939671, -0.371561, -1.603250, 2.313947, -0.821044, -0.441503, -0.054414, 0.679068, -0.144911, 1.152604, -1.928547, 0.058827, 0.747229, 0.506935, -0.018938, 0.781106, -0.521051, -0.295060, -0.129451, 0.750224, -0.446751, 1.368930, 0.600666, -0.671634, 0.559674, 2.402524, 0.166724, 1.174885, -0.040720, -0.861511, -1.053058, -0.826144, 0.752826, -1.898661, -0.654893, 1.444387, -0.836840, 0.794659, -2.394781, 0.783784, 1.657255, -0.590490, -0.788307, -2.466543, 1.325715, -1.255886, 0.391333, 0.090129, 0.348212, 0.506921, -0.385958, -0.386371, 0.521172, 0.807283, 0.695138, -1.416977, 0.054994, -0.115045, -0.187976, -0.567175, -0.835807, -0.310370, 0.365322, 0.522698, 0.902349, 0.154241, 0.581073, -0.533368, 0.245366, -0.341671, -0.121553, 0.558985, -0.733360, 0.816843, 0.167325, -2.306233, 0.417114, -0.200217, 0.480988, 0.251917, 0.404310, 0.891883, 1.690375, 0.546723, -0.876896, -0.338794, -0.540062, -1.604896, -0.612307, 0.126879, 1.338179, 0.245178, -1.480240, 1.167861, -0.723366, -0.795922, 0.355822, -0.657796, 0.478914, 2.208684, 0.176199, 0.046182, 0.492262, 2.924647, 0.172192, -0.276907, 1.256889, 0.455354, -0.424214, -1.372728, 1.776020, 0.096437, 0.005136, 1.061714, 0.750409, 1.840798, 0.441672, 1.163914, -1.681555, 0.535777, -0.307737, 0.013793, -0.123096, -0.601400, -1.924240, 0.427502, -0.172043, 0.945961, -0.116054, 0.344066, -0.643068, -2.248785, 0.749512, 1.075832, -0.108083, -0.173580, -0.004179, 0.558725, 0.323521, -0.109937, 0.012161, 0.371929, 0.115105, 0.405723, -0.193953, 0.063962, -0.141861, -0.904359, 0.079636, -1.149282, -0.539980, 0.275770, 0.506583, 1.593730, 0.773776, 1.622363, -1.558430, 0.364846, 0.031692, 1.005553, 0.278902, 1.013664, 0.451349, 0.191254, -0.041452, -0.048874, -1.187084, 0.052611, 0.049112, -0.001410, 0.389143, -0.306156, 0.198004, -0.794664, -1.541766, 2.126101, -0.005947, 0.499504, 1.099975, -0.089918, -0.709029, 0.617582, 0.240173, -0.649476, -0.525474, -1.368807, -0.516472, 1.750974, -1.238836, -0.171003, 1.210672, -0.563741, -1.581995, -0.081798, 1.899172, 0.942788, 0.158433, 0.031942, -1.304583, -0.549445, 0.183839, 1.168524, 0.323713, 0.690414, -2.620455, 0.719986, -1.284407, -1.085863, -0.673512, -0.855604, 0.886289, -1.839884, -0.095656, -1.055911, 0.561473, -0.027664, 0.637259, 1.985378, -1.421781, -0.695649, -1.064844, -0.211294, 0.164986, 0.600754, 1.632375, 0.108151, 0.556854, -0.610899, -1.760017, 0.007612, 0.069061, -1.400032, 0.244703, -0.425351, 1.218782, 1.624288, -0.651544, -1.367540, 0.560642, 0.457432, -0.156185, -0.470208, 0.230932, 0.984577, 1.489733, 0.956965, 1.675116, -0.398476, -1.136057, -0.873072, 0.154516, 0.670271, -1.060664, -0.343741, -0.839005, 0.011171, 0.468217, -0.045388, 1.647911, -2.634171, -0.119654, 1.694921, 1.020362, -0.480585, 1.106553, -1.052089, -0.827536, -0.797181, -1.705137, -0.141706, 0.110189, -0.733175, 0.452065, 0.193283, 0.580296, -1.742185, 1.371229, -0.443629, 0.913306, 1.475769, 0.637729, -0.997708, -1.172737, -0.752628, -1.230406, -1.369031, -1.706926, 0.889519, -0.354097, 2.076213, -0.862332, 0.229544, -0.347855, -0.142503, 0.792251, 0.353264, 1.137731, -1.046314, -0.394459, 0.289608, 2.183617, 0.751338, -2.040767, -0.833179, 1.173618, -0.015052, -0.333850, 0.622007, 1.140466, 0.129555, 0.112669, 0.047143, 1.604949, -0.591861, -1.123969, 0.414655, 0.514866, 3.112215, -0.273679, -0.842384, 1.197500, -0.417470, -0.289272, 0.356553, 0.352176, 1.748755, -0.636332, -0.219431, -1.275768, 0.821800, 0.411276, -1.084816, -0.104831, 0.978778, -0.079374, -0.758707, -1.041703, -0.811885, 0.568468, 0.142328, -1.442846, -0.740809, -1.390610, 0.960397, 0.641545, -1.344895, 0.377551, 1.243359, 0.323164, 0.790334, 0.318971, 1.204926, 1.008813, -1.542042, -0.512339, -3.494940, 2.970196, 1.192351, -0.276281, 0.961766, -0.304817, -0.085067, -0.454574, 0.936839, -0.275225, 0.846893, -1.131632, 0.282077, -0.431800, 0.614265, 1.436056, 1.008387, -0.041871, -0.276271, 0.661478, -0.937777, -0.131313, -0.914097, -1.772589, -0.380764, 0.127636, 0.117399, -0.417521, 0.581392, -0.467899, 1.401995, 0.657828, -1.243287, -0.272136, -0.642235, -0.061544, 0.040024, -0.768779, 1.344888, 0.067408, -0.300552, 0.807090, -0.222115, -3.132678, 0.293319, 2.168084, -0.322691, -0.405317, 0.144908, 0.459925, -1.140171, -1.965270, 0.777280, -1.382744, -0.431707, -0.148028, 0.074589, -0.004128, -0.826741, -0.582074, -0.624106, -0.173735, 0.068894, -2.155122, 1.139436, 0.543527, 0.707311, 0.592831, 1.143589, -0.822057, 0.197751, -0.078761, 0.154831, 0.982708, -1.766908, 0.009547, -1.667241, -0.742033, -1.793160, 0.487551, -0.013998, 1.326609, -1.084921, -0.987654, -0.827264, -1.869796, 0.753557, 0.462206, -1.814811, -0.756156, 1.033233, 2.057476, -0.700060, 0.972193, -1.499863, 0.633563, -0.334775, -0.859817, -0.109452, -2.183742, -0.047591, -1.268293, 0.197528, -0.324231, 0.138681, 0.440655, 0.904167, 0.656299, 1.502257, 0.413361, 0.946684, -0.433837, -1.734954, 0.880230, -1.216196, 1.118854, 0.124125, 0.354108, 0.374823, -1.280332, 0.931735, 0.228874, 0.650582, -0.937241, 1.865271, 0.971699, -0.727175, 0.035941, 0.731710, 1.070928, -0.065731, 0.016068, -0.662763, -1.645852, 1.397150, -1.617731, -0.588975, 0.474534, -0.466399, 0.337945, 1.484585, 0.967136, 0.379582, -0.747725, 1.635987, -0.591135, -1.706094, -0.241856, -1.180214, 1.967696, -0.778538, -0.148619, 1.000589, 0.221945, 0.822229, 1.416634, 0.662530, 1.315496, 1.237587, 1.549368, -0.372054, -0.064328, 1.692919, -0.631261, 0.446827, 1.141682, 0.979634, -0.613424, -0.224099, -0.089788, -0.792563, 0.974030, -0.016820, -0.261279, -2.080174, 0.479287, -2.069013, 0.003997, -0.976067, 0.624864, -0.519404, -1.217811, -0.850128, -0.509212, 0.351246, 1.303975, 2.022148, 1.721668, -0.230513, 0.577073, 0.846752, -0.042613, 0.616684, 0.556806, 1.412769, -1.594928, 0.443138, -0.970708, 1.583317, -0.991293, -1.655646, -0.266952, 0.605215, 0.443863, -0.950010, 0.287517, 0.404037, 0.380938, -0.326422, -0.869853, -3.260942, -0.159687, -0.585286, -0.261134, -1.438933, 0.037016, 1.200218, 1.172841, 0.387065, -0.061019, -1.915791, 0.455611, -1.069905, 0.042978, 1.858740, -0.406357, -1.502004, 1.522375, 0.787929, 0.249217, 0.673623, -0.031704, -1.506824, 1.470130, -0.367733, 0.314551, 0.687389, -1.721909, -0.005205, -1.293143, 0.033164, 0.003959, -0.095525, 0.405336, -0.430537, -1.250442, -0.038731, -0.743131, -0.087768, -0.612557, -0.461694, -0.527271, 0.598197, 1.032024, -0.638948, 1.544323, -1.565819, 0.957444, 0.963946, 0.169234, 1.257271, -0.530528, -0.995093, 0.497244, 0.928703, -0.534419, 0.250136, 1.127726, 0.034000, 1.409479, 2.575508, 1.352108, -0.187183, 0.401729, -1.443765, 0.445160, 1.091486, 0.011641, 1.351885, 2.625031, 0.319238, 0.224033, -1.333030, -1.583303, -0.562586, -0.289074, -0.696948, 0.657639, 0.440769, 1.455085, 0.372165, -0.499469, -0.526737, -0.140814, 1.153398, 0.511900, -0.342377, -0.426796, 0.642356, -0.609915, 0.614446, 1.366688, 1.288403, 1.621620, -0.430891, 0.388362, 0.033079, 0.571725, 0.252109, -0.206039, -0.472932, 0.360900, 0.969026, 0.775988, 1.251063, -0.792086, -0.657904, -0.785394, -0.859467, 0.770422, 2.618583, -0.174329, -0.519848, -1.766748, -0.909019, -0.420667, 0.410109, -2.156502, 1.123483, 0.427932, -0.816809, 0.322442, -0.269481, 0.210848, 0.248341, -0.122163, -2.050081, 0.137063, 0.233837, -1.047623, -0.491513, -0.315777, 0.145143, -0.037840, 1.063247, -0.978406, 0.305909, 1.539615, -0.752591, -0.398933, 1.659417, -0.018650, 1.646190, -0.609482, 1.385304, -0.824717, -0.131073, -1.987740, -1.099530, -0.447858, -0.629929, -0.833090, -0.480943, -0.412576, 0.136583, -1.563759, 1.148288, 1.133531, -0.662231, 1.281733, 0.584244, -0.536365, -0.594761, -1.700221, -0.653790, -1.280973, -0.545295, -0.627708, -0.639827, 0.036035, -1.412439, 0.586826, -2.069422, -0.989662, 0.827684, 1.129696, -1.145765, -0.274429, 0.625112, -1.378652, 0.422372, 0.486646, -0.116105, 1.642007, -3.108084, -0.128004, 1.866247, -0.536782, -0.715783, -2.136161, -0.967485, 0.738615, 0.302135, 0.469361, 0.092477, -2.030030, -0.955164, -0.392793, 0.282041, -0.161461, 0.736598, 1.081146, 0.195199, 0.296319, -0.310317, 0.975533, -0.658177, 0.069021, -2.309853, 0.683427, 0.611843, 0.963657, -0.302502, -0.962839, 0.460535, 0.116526, 0.403433, -0.785807, 0.443634, -2.392590, 1.463112, -1.296747, 1.300816, 0.233674, -1.186041, -0.221624, -1.593640, -0.500959, -1.441307, 0.647307, 0.729133, 2.141546, -2.192402, -1.631594, -0.028676, -0.026518, 0.256730, -2.148918, 0.331072, 0.043211, 0.866198, -0.702177, 1.580596, 0.967649, 2.396077, -1.440056, 1.031600, -1.558440, 0.406638, -1.604346, -0.160178, 1.928732, -0.366455, 0.141204, 0.087810, -0.449940, 0.727186, 0.567865, 1.196789, -0.237623, -0.192799, -1.283107, 1.791807, -0.195901, -1.552035, 0.308000, 1.009992, -0.979088, 0.533651, -0.049448, 1.249945, -0.806597, -1.041868, -0.333245, -0.148971, -0.246378, 0.388508, 0.856653, 1.435465, 1.571309, 0.552882, -0.951065, 1.196831, 0.331941, 0.162156, -0.480830, 0.242210, 0.667292, 0.883026, 1.004992, 0.049473, 0.926830, -1.043784, 1.475257, -1.773553, -1.767515, 0.384970, 0.495985, 2.247873, -0.374780, -0.218050, -0.468893, 0.615404, -0.977824, -2.056118, 1.297835, 0.429678, 0.967748, 0.489354, -0.610881, -0.827885, -1.853078, 0.169790, -0.808598, 0.777790, 1.504687, 0.137396, 0.131500, 1.981949, -1.315479, 0.440040, 1.541188, -0.022851, -0.237974, -0.446490, 1.867827, 0.715977, -0.312434, -0.495572, 0.160176, 1.110181, -0.412859, -0.619237, -0.648672, 0.650035, 0.419362, 0.242858, -0.661244, -0.807327, -1.005424, -0.169603, -1.227158, -0.993891, 0.642803, 0.091784, 1.777272, 1.469906, 1.605859, 2.148476, -1.481710, 0.885544, 0.556107, 0.717349, 0.638232, 1.429017, 1.430840, -0.800737, 1.213299, 0.963803, 1.649853, 0.644943, 0.549690, 1.281436, 0.556080, 0.883845, 0.455709, 0.875176, 0.277336, 0.139173, -0.753061, -0.790369, -1.334549, 2.365704, -1.716735, -0.412343, 0.171138, -0.600431, -0.113580, -0.882063, 0.431266, 0.859805, 1.993720, 0.087134, -1.715291, 0.040891, 0.837202, -0.367401, 1.597178, 0.379371, -0.553276, -0.194361, -0.984573, -0.639560, -0.389002, -0.194963, -0.105979, -0.379813, 1.158879, -0.485009, -0.456443, -0.008478, -0.129951, -0.338005, -0.855485, 1.883083, -0.638328, 0.669338, 0.246320, -1.106300, -0.150586, -2.072219, 1.296040, -0.843536, 0.615161, -0.391371, 1.312287, 0.733162, -1.284450, 0.080678, -0.161425, 1.616953, -2.267587, 0.438457, 0.095850, -0.225857, 1.612563, -0.431626, 0.483272, -0.804529, 0.388065, -0.135878, 0.007941, 0.235628, 0.602654, 0.799109, -1.022514, 0.265781, -0.520996, 0.514748, -1.280793, 0.161540, -1.151901, 0.224632, -1.812074, -1.374196, 1.201244, -0.242333, 0.285198, -0.335799, 0.085939, 0.763735, 3.433781, 0.527806, 1.208293, 0.160437, -2.301588, -0.128577, 0.890675, 0.107967, 1.659151, 0.602907, 0.613666, -0.997615, 0.089766, 1.519357, 0.342457, 1.556242, -0.176575, 0.700751, 0.182382, 1.294153, 0.581194, -0.912300, 0.779013, -0.385988, 0.867294, -0.327932, -0.860455, 0.886136, 1.250238, -0.251386, 0.734639, -0.527928, 1.161993, 1.060575, 0.583822, -0.337176, -0.714339, -0.711807, 1.310879, 1.224313, 1.427658, 0.111986, 0.394926, -1.447911, -0.047932, 0.836130, 0.278535, 0.111044, 0.828804, 1.828083, 1.202710, -0.647944, 1.496136, -0.366991, 0.264564, 0.682456, -0.571595, 0.142886, -0.410068, 0.579050, -0.416605, 0.389008, -0.214005, 0.452105, -0.722499, 0.414563, -1.287882, 0.434400, 0.475414, 0.402408, 0.721134, 0.625279, -0.917812, 0.829910, -1.273280, -1.189002, -2.007599, 0.583396, 0.041159, -0.378034, -0.632247, 0.998427, 0.504902, -0.348200, -2.090777, -2.028949, 1.328310, -0.308476, -0.432006, 0.530076, -0.636010, 0.369604, 0.828290, 0.690999, -1.012520, 0.980470, 1.071087, 1.109447, 0.089277, -1.268561, 0.599024, 0.415327, 0.948014, 0.539933, -1.637851, -1.963205, 0.334902, -0.517138, 0.537172, 0.614998, -0.818838, 0.532011, -1.388921, 1.140687, 0.023902, 1.088440, 1.163957, 0.295457, 1.174157, -0.847500, -0.167534, 0.174948, 0.286844, 0.101167, 0.724233, -0.149970, -0.697497, 0.149954, -0.883345, -0.804444, -0.367836, -1.022286, 0.911859, -0.600642, -0.253286, 0.631167, -0.466737, 0.263938, -0.375434, 0.400988, -0.067286, 1.317547, -0.606815, -0.881476, -0.231443, -1.579414, 1.869892, -1.075857, -0.478123, -1.531588, -0.668871, -0.085817, 0.744501, -2.457935, 0.157192, 0.679550, -1.115324, -1.434248, 0.876260, -0.256425, 0.829779, 0.784787, -1.569260, 2.092673, -0.880518, 2.306137, 0.337120, -1.584850, -0.037218, -1.033442, 0.461906, -0.342428, 0.128699, -1.850643, -1.417094, -0.848967, 0.940517, 1.061747, 0.586150, 0.369965, 0.292287, -0.871249, -0.379161, -0.949885, -0.316175, -0.363976, -1.103951, 0.638532, -1.631902, -0.655155, 1.048806, 2.264644, 0.171992, 0.259937, -0.866850, 0.455053, 1.079436, 0.469649, -0.862083, -0.772503, -0.311175, 0.290997, 0.084981, -0.794329, -0.848558, -0.443129, -0.855902, -0.744235, 0.283389, -0.977369, 0.018512, 0.308764, 1.742928, -0.771883, -1.044350, -1.180114, -0.807714, -0.712354, -0.009066, 1.756420, 0.911586, -0.536005, -1.423157, -1.000850, 2.008628, -1.011761, -1.969266, -0.239706, -0.933498, 1.007841, 0.928734, 0.985839, -1.013609, -0.569648, -1.840642, 1.422121, -0.182127, -1.804075, -1.747769, -1.180761, 0.674315, -0.777466, -1.195624, -0.199987, -1.605712, 2.825786, -0.676643, -0.736513, -2.855901, 0.972451, -1.313022, 0.942516, 0.093836, 1.984980, 1.383736, -1.199409, 0.468913, 1.012416, 0.931257, -1.298579, 0.428848, -0.220732, -0.095419, -1.019085, -0.578292, -0.834442, -0.553882, 1.164513, 1.830658, 0.738826, -0.041141, 0.010243, 0.684312, 1.065866, -0.034941, -1.622813, 1.101196, -1.447571, 0.179526, 0.122613, -0.900722, 1.546346, -0.393113, -0.770695, -0.701626, -1.229136, 0.540753, -0.824223, 1.833744, -0.302885, 0.124438, 0.617691, -1.463573, -1.183290, -0.605214, -0.459372, -0.700457, 1.110836, 0.466711, -2.236424, -0.750774, -0.481110, -1.252076, 1.101128, -1.650520, -2.257799, 0.562575, -1.714915, -0.138821, 0.821182, -1.592103, 1.197915, -0.898488, 0.302395, -0.708149, -1.498478, 0.881304, 0.700794, 0.345286, 1.014741, -1.593535, -2.013865, 1.728748, -0.135692, 0.930107, -0.820617, 0.026874, -1.930124, 2.700151, 0.891432, -0.145520, -1.069120, 1.274816, -0.492449, 0.306325, 0.418526, 1.218977, -1.276043, -1.263130, -0.753779, 0.389440, -1.015473, -1.587723, -0.089625, -0.084135, 2.111999, 0.160373, -1.461246, -0.644928, -0.728250, -0.121916, -1.254095, 0.475542, 0.486681, 1.500584, -1.211749, 0.431825, 0.363983, 1.414814, -0.863432, -0.362260, -1.629633, 0.313051, -0.778438, -0.938155, -2.192276, -0.339102, -0.805492, 1.086519, -0.747436, 0.261136, -0.497273, -0.305034, -0.300747, -1.828027, 1.639252, -0.808834, -2.095942, -0.386181, -0.074562, 0.739828, 1.030871, 1.048177, 1.076433, -0.807230, -0.951388, -0.385629, -1.668718, -0.511549, 0.180240, -0.188116, 0.950435, -1.735661, -1.275971, -0.162901, 0.772043, 0.660407, -0.711768, 1.989772, 0.304233, 2.586478, -0.967929, 0.642407, -0.681358, -1.026007, -1.144058, -0.399421, 0.207902, 0.760064, 0.712910, 0.198871, -0.646294, 1.095235, 0.327370, -0.901982, -0.445791, 0.935103, 2.652765, 0.554392, 0.590205, -0.627425, 0.904969, -0.000319, -0.363271, -0.783494, 0.678674, -1.262784, -0.289933, -0.473156, 0.876313, 0.885079, -0.985610, -1.154753, 0.046831, 1.662890, -1.920565, 1.396757, 0.414372, 0.530894, -0.131706, 0.603347, -1.264205, -0.744141, 1.897450, -0.951547, 0.179549, -1.100138, -1.318228, 0.470643, -1.870068, -0.572832, -1.048198, 0.953842, 0.711492, 0.459256, -0.031690, -1.226675, 0.315429, -0.999329, -0.274379, -1.416304, -0.443469, 0.078901, 0.002862, 0.729578, -0.376021, -0.603748, 2.383315, -1.025854, 0.194282, -0.067048, -0.984640, 1.169043, -0.251019, -1.532545, -0.746885, 1.410087, -0.443665, -0.175857, -0.273662, 0.863418, 0.862249, 0.802349, 0.703123, 0.971407, -0.577774, -0.757201, 0.083554, 0.042557, -1.039913, 0.259161, 2.039142, 1.390831, 0.670925, -1.484718, 0.824163, 0.476919, -0.217069, 1.442253, -0.712988, 0.637698, 0.864159, -0.092024, -0.564178, -0.484391, 1.253750, 0.695249, -1.395388, 0.932556, 0.159658, 0.441510, -0.416482, -1.163350, 1.897362, -0.644310, 1.599509, 0.312932, 0.008405, -0.871520, -1.471825, -0.672398, -0.338637, 0.148145, 1.280103, -0.755753, -0.046272, -0.765933, 0.031676, 1.347214, -0.995345, -0.697547, -0.249083, -1.171885, -0.656948, -0.730077, 0.177574, -0.509384, 0.955700, 1.031737, 0.387011, -0.477425, -1.118183, -0.339461, -0.849151, 1.244257, 0.366522, 0.890652, -0.023558, -0.696376, 1.598487, -1.256609, -0.423351, -0.391514, 1.230060, -0.710916, -1.315505, -0.587783, 1.954795, -0.395267, 1.210412, -0.066768, -0.097469, -0.425310, 0.299495, 0.679480, -1.247764, 0.325933, 0.206238, 0.752360, 0.189645, -0.866352, -0.354004, 0.817780, -1.962675, -0.866930, 0.558272, -0.542197, 1.047554, -0.324633, 0.086634, -2.251025, 0.977707, 0.871280, -0.847600, -1.259875, -0.869461, 2.245332, 0.515240, 0.530367, -1.700662, 0.825771, -0.357679, -1.941503, 0.954512, 1.176670, 1.406952, -0.912146, 0.752518, -0.779604, 0.210123, -1.917050, -0.161643, -0.530571, -0.310055, 0.904637, -0.764179, -0.593298, 1.261778, 0.126367, 1.195165, -0.760148, 0.240767, 0.317241, 1.506749, -1.051724, 0.771141, -0.345891, 1.254328, -0.786451, 0.427449, 0.005480, -1.257814, 0.027594, 1.751105, -1.673667, 1.829800, 1.009611, -0.322554, -0.759592, -0.185050, 0.235965, 0.295082, 0.412257, 1.453477, 0.747958, 1.578566, 1.838969, 0.439152, -1.850550, 0.843941, -0.419722, 0.535404, 0.245631, -1.279973, -1.415028, 0.295772, 1.134589, 0.845489, 1.857125, 0.546686, -0.494079, -0.741180, -0.740906, 0.282494, 0.514529, -0.817479, 0.606780, -1.769198, 0.334035, 1.484747, 2.013929, 1.141725, 0.345475, 1.587229, 0.542341, -1.307993, -1.001196, -0.115745, 1.097439, -0.416687, -0.957713, 0.984779, -0.882273, 0.227464, 1.948078, -0.594893, 0.273279, 0.150351, -0.291597, -0.581576, -0.314636, -0.506804, -0.198655, 0.488624, -0.490262, 0.615736, 0.358045, -0.468407, -2.010782, -0.241800, 1.026380, 0.406348, -0.229901, 0.507281, 0.187209, -0.123368, -1.006037, 0.675560, 0.844457, -0.181800, -0.209714, 0.786588, -1.318712, 0.478101, 0.251958, -0.322600, -0.252246, 1.048908, -2.297730, 0.126493, 0.024182, 1.411635, 0.740772, -1.391004, -1.270932, -0.219291, 0.395338, 0.817734, -0.122590, -0.833913, 0.720808, -0.528876, -0.043212, -0.604210, 1.175467, 0.951279, 2.458029, 1.474258, 0.430827, 0.805542, -0.397151, 1.631890, -0.551148, 0.539333, 0.946067, 1.177141, -0.343673, 0.445176, 0.999059, 1.667819, -0.096370, -0.344939, 0.097185, 0.054085, 1.037682, -1.665685, 2.161103, -0.103231, 1.970680, -0.883356, 0.012482, 0.008825, -0.210454, -0.219952, -1.555556, 1.161943, -1.176715, 0.849836, 0.641285, -1.106487, 1.429574, -0.983895, 0.652997, -1.130564, -0.653551, 1.123931, -0.145873, 1.632911, 1.889780, -0.792106, 3.456667, -0.221773, 0.136027, 0.801799, -0.944674, 0.016617, -1.219484, -0.231857, -0.127880, -0.222590, 2.182716, -0.428782, -0.108217, 0.342682, -1.094192, 1.169059, -1.166684, -0.570844, -1.349328, 0.286315, -0.131264, 2.031071, -0.023460, 1.540360, -0.158389, 0.911663, 0.777800, -0.227047, 1.892958, 0.065559, -0.367824, -0.363732, 0.864146, -0.083803, -0.599298, 1.012201, -0.333190, 0.316313, 0.690091, 0.019004, 1.718525, 1.370958, 1.684054, -1.092116, -1.554388, -0.675437, 1.160529, 1.698653, -0.351412, 0.133481, -1.242962, 1.243482, 0.391904, -0.074800, 0.060452, 0.644271, 0.291430, 0.434484, -0.474073, -0.995153, 0.449744, -0.399056, -0.877778, 1.176558, -0.255713, -0.363824, -0.749723, 2.022985, -0.497326, 0.396572, 1.266560, 0.835956, 1.743168, 0.503253, -0.978647, -0.482949, -0.603436, 0.493102, 0.510286, -1.039662, -0.641933, -0.106287, -0.582589, 0.579312, 1.523883, -1.706522, 1.513031, -0.920179, 0.150480, -0.422607, -0.417221, -0.312149, 0.542253, -0.349362, 1.441691, 0.685114, 1.525167, 2.009351, -1.868999, 1.704044, -0.223708, 0.168386, 0.969190, -0.248081, 2.193197, 1.560844, 0.386640, -0.213051, -0.184968, 0.762360, -1.463792, -0.922307, -0.288376, -0.196009, 0.156046, 2.172352, -0.848300, 1.220320, -0.792702, -1.136692, 2.215691, -0.153864, 0.286069, -0.812594, 0.298075, -1.202469, -0.236214, 0.705619, -1.564377, 1.530232, 0.414244, 1.805495, 0.105598, -1.559564, -0.568114, -0.424235, -0.982380, -1.540543, -0.311166, -0.072925, -0.310368, 0.221844, 0.570143, -0.243554, 1.697498, 0.154711, -0.020639, -1.390434, -0.771523, 0.200474, -1.208269, 0.051736, -0.304022, 0.268504, 0.866436, -1.364017, 1.201893, -0.761123, -2.406745, 2.427450, 0.864836, -0.472625, -0.074018, 0.948955, 0.271959, -0.149228, -0.011204, -1.012391, -0.351132, 1.311660, 2.006977, -0.471588, 1.159881, 1.105405, -0.087754, -1.319337, -0.243051, 0.005901, -0.018347, 1.414414, -0.732186, -1.197505, -0.772784, 0.104032, -1.161635, 1.105085, 1.020762, 0.113826, -1.067081, 0.611506, -0.955578, -1.317364, -0.269073, -1.401878, 0.465963, 1.405141, -1.050770, -0.979611, -0.982172, -0.564593, 0.990537, -1.177681, 0.533569, -0.989890, -0.301936, -0.793206, 2.938584, 1.389317, 0.826620, 1.308187, 1.630329, 2.015947, 0.800719, 0.561168, 0.361277, -0.889396, -1.412912, 0.547316, 0.530411, -0.586274, 0.990522, 0.779570, -2.305222, -1.747106, 0.242689, -1.076374, 0.011981, 1.200388, 0.767312, 0.273618, -0.377952, -0.237595, -0.615989, 0.001210, 0.835875, -2.594476, -0.605346, -2.689341, 0.290512, -0.441304, -0.657569, 0.665092, 0.288459, -0.877329, -0.369063, 1.771894, -1.892782, -0.064206, -0.743726, 0.506057, 0.329482, -2.479336, -0.009460, -1.408758, 0.260391, 1.044970, 0.578361, 0.190446, 1.581922, 0.446682, -1.233211, -0.243590, -1.762073, -0.631644, -0.358745, -0.963416, 0.881225, 0.262626, -1.100581, 0.913802, -0.172814, -1.403307, -0.601189, -0.284063, -0.266015, -0.648676, -0.149352, -1.739343, 0.093857, -0.991921, -1.045012, -0.145028, -0.626844, 1.402895, -0.498727, -0.602846, 0.069445, -1.037642, 0.269368, 1.276272, 0.895059, -1.095688, 1.328289, -1.504636, -1.740054, 1.146310, 0.079384, -0.145240, -1.118396, -1.519803, 0.738284, 0.575878, 0.289376, -0.397021, -0.231209, -0.613804, -0.572289, -1.420430, -0.771788, -0.457950, 1.497076, -0.936089, -1.090223, 0.142812, 0.739109, -0.521376, 1.921055, 2.074366, -0.780748, -0.740247, 0.263445, -0.702362, 1.251071, -0.254546, 0.064331, -0.653332, 0.686888, -0.402335, 0.137843, 0.317650, -0.674416, 1.089572, -2.001667, 0.261383, -2.432359, -1.073638, 0.924505, -0.611932, -0.016329, 1.397536, 0.633203, 1.861943, -0.345041, -0.533164, 0.092839, 0.863224, -1.178895, -0.661153, 0.094856, -0.238199, -0.786736, 2.116413, 0.202473, 1.559708, -0.385741, 0.393182, 0.624726, 1.192813, -0.558253, -0.002165, 2.342285, -1.334071, 0.778868, 1.551653, -0.310800, 0.629938, 0.403468, -0.818397, -1.650094, 0.786572, 0.708272, 0.172408, -1.151766, -1.494061, 1.569803, 1.020125, -0.352174, 0.426373, 0.245647, 0.030273, -0.342831, 0.320092, -0.624147, -1.586880, -0.169697, -1.221789, -0.009831, -0.527457, -1.079567, 0.838521, -2.387399, 0.644446, 1.144450, -0.891460, -1.048637, -0.762541, 0.162508, 1.282670, -0.866938, -1.618321, 0.787862, 0.539111, -1.129999, 0.210551, 0.464914, -1.056394, 1.151830, -0.774927, 0.689434, -1.768079, 1.548977, 1.405319, -0.806634, 0.575779, -0.279608, -0.018987, -1.263172, -2.508953, -0.646288, -0.209856, 1.785247, 0.544763, 0.748403, 0.220679, 0.653000, 1.398443, -1.383224, -0.508613, -0.245704, -1.042482, 0.758246, -0.144704, -1.094316, 0.401564, -0.485318, 0.374911, -1.135903, -0.912331, 1.044561, 0.159319, -0.513296, -0.467447, -1.043929, 0.166430, 1.407784, -2.331405, 0.280403, -0.185867, -0.822492, -0.097974, -1.790011, -0.510001, -0.091132, -0.252083, -0.226109, -0.927753, 0.793726, -2.979017, -0.866686, 0.524403, 0.265168, 0.069603, -0.385337, 1.995853, 0.722967, -1.061317, 0.166409, 0.811243, -1.101861, -1.492604, 0.061583, 0.491642, 1.291859, -0.093255, -0.619405, 0.866374, -0.005581, -0.537852, -1.836536, -1.205672, -2.186145, 0.056309, -1.003451, -1.042287, 0.790675, 0.658007, 0.041673, 0.642420, -0.491615, 0.328487, -0.664859, -1.245280, 0.301240, -1.306553, -0.066193, -1.213869, 0.719663, -0.643859, -0.703544, 1.629364, 2.064773, 1.101099, -0.897925, -1.757104, -0.333312, 1.045076, 0.196017, -0.411733, 0.382502, -0.521659, -0.232099, -0.640783, -0.511079, 0.102373, 0.045885, -1.528029, 0.722745, 1.749604, -1.119098, -1.872649, -0.131637, -2.709226, 0.853861, -0.172975, 1.625835, -0.183188, -0.835186, -1.079809, 0.819302, 0.230010, -1.120481, 1.469655, -0.155382, 0.342588, 1.341278, 1.198541, -1.286344, 1.414655, -1.719334, 0.346972, -0.558216, -1.274028, -1.233183, 0.181575, 0.446731, -0.100768, 0.144525, 2.534137, 2.161174, 0.239755, -0.687516, -0.544302, -0.452608, -2.161171, -0.404217, -1.442052, 1.055937, 1.385595, 0.330517, 1.209594, -1.773843, -0.265697, 0.510686, 0.649864, -0.030004, 0.081175, 0.018087, -0.983806, 0.422140, 0.066382, -0.620888, 1.182440, -1.047266, -0.518283, 1.311202, -0.087449, -1.145394, -0.225852, -0.308846, 0.179881, 0.381322, -0.283433, 0.509216, 0.935401, -1.246283, 0.118730, -0.792394, -0.376052, 0.495221, 0.856845, 0.218540, 0.019177, -0.346142, 0.115038, -1.376661, 0.279173, 0.680174, 0.684273, -0.165061, 2.111520, -0.528467, -0.153781, -0.756672, 0.332011, -0.621013, 0.978311, 1.432107, -0.191389, 0.008522, -0.009679, 0.609842, 1.520530, -1.849660, -1.212649, 0.955747, 1.135381, 0.825120, -1.131539, 0.452970, 1.008738, 1.031992, 0.027258, 1.180806, 0.103556, -0.784741, 0.853868, 1.114400, 0.058112, -1.399769, 0.094442, 0.927654, 2.518733, 1.067027, 0.267126, 1.309944, 0.739296, 0.284874, 1.724814, -0.169933, -0.222427, 0.371626, -0.794669, 0.187498, -0.157563, -0.211124, -1.571893, 1.503285, 1.198647, 0.197554, 2.445324, -0.844976, -2.397839, -0.914768, -1.062317, -1.127955, -0.776150, 0.450738, -0.594436, 0.225415, 0.911002, 0.453230, -0.055719, -1.532305, 1.613091, 1.181698, 0.033698, 0.540565, 1.604182, -2.461747, -0.641758, -2.294108, 1.298015, -0.023356, 1.030994, -0.678340, 0.981366, 1.432154, -0.650748, 0.235064, 0.545277, -0.665721, 1.258673, 0.787439, -0.219782, 0.414722, 1.058879, -1.526954, 0.389662, 0.835126, -0.244341, -0.181120, -0.282465, -0.237960, -0.448095, 0.240473, -2.019550, 1.215445, 0.917394, 0.682809, 0.196404, 0.264810, 0.735857, -0.945449, -0.749155, 0.390339, -0.940055, 0.885428, -1.581938, 0.430305, 0.734262, 0.321065, -0.822185, -0.508717, -1.758075, -0.992771, 0.110887, 1.982504, -0.265591, 0.532067, 1.443049, 0.682858, -0.722571, -2.386502, 0.677531, 0.269185, -2.310928, -0.646305, 0.924777, 0.089968, -1.267526, -0.631512, -1.116758, 0.879311, -0.175255, -0.165420, -0.076605, -0.263711, 1.040763, 0.320610, -0.009111, -2.704354, -0.920989, 0.394061, 0.520989, -0.841979, 1.923000, -0.785580, -0.894170, -1.424044, 0.236100, -2.076398, 0.138102, -1.759288, -2.242007, -0.029073, -0.376265, 0.065345, 2.229038, 0.915596, 0.170163, 1.126333, -1.067145, 0.867874, 0.591567, -1.152743, 0.018452, 1.837813, -0.456632, -0.375272, 0.668393, -0.707088, 0.005215, 0.662197, -1.281470, 0.616371, -1.548159, 0.614109, -0.838712, -1.078140, 0.619929, -0.478218, -0.892017, 0.511257, 0.351496, -0.661438, 0.994830, 0.343127, 0.399570, -2.255618, -0.891183, 0.224357, 1.166913, -0.984331, -0.237528, -0.084211, -0.312791, 0.738695, 0.505534, -0.361105, -0.774845, 0.449362, 0.686842, -0.074726, -0.573097, -1.121618, 0.487796, 0.506624, -1.006478, -0.319570, 1.283556, 0.359863, -0.479214, 1.065949, 0.242687, -2.413052, -1.216309, -0.342408, 0.865650, -0.099093, 0.741506, -0.307273, 1.849183, 1.132783, 0.487726, -0.235739, -0.592223, 1.536129, 0.460119, -0.344256, -0.926101, 0.205493, -1.565211, -0.024959, 0.464632, -0.882805, -1.092168, 0.710675, 0.228911, -1.974638, 0.073848, 0.412322, -0.541086, -0.853606, 1.308633, -0.338823, 1.230099, -0.264220, 0.275475, -0.016036, 0.432542, -0.319475, -0.202673, -0.017780, -0.770686, 1.368987, -1.068532, -0.392750, 0.241542, -0.144577, 0.755571, 0.087072, 0.920798, 0.669974, -0.452926, 1.942625, 0.698457, 0.157775, 0.176277, -0.023245, 0.444727, 0.702609, -1.604793, -0.665528, 0.065817, -2.200923, 1.897056, 1.565023, -0.071902, -1.532262, 1.631939, 0.459703, 0.288098, -0.305391, 0.821389, -0.028443, -1.068733, -0.227022, 1.532375, -0.655598, 0.770167, -1.019297, -0.315878, -0.905381, -2.429273, -0.708607, -0.755812, 1.564258, -0.040460, 0.573597, 0.775374, 0.805886, 0.657319, -0.424278, 1.705134, 1.582858, 0.509584, 0.577701, -0.071238, -1.191738, -0.205205, -0.662737, -0.502952, 0.973007, 1.643171, 0.163531, 0.448876, -0.183908, 0.301271, 1.090201, -0.299617, 0.567865, 0.067040, 1.159666, -0.115703, -1.337157, -0.661583, 0.996431, 1.780476, 0.227577, -1.523239, 1.454205, 0.179445, -0.706854, 0.019392, 0.782142, 0.773142, -0.338253, -0.170509, 1.285505, 1.362626, -0.741832, 0.325562, -0.087308, -0.511782, -0.828990, 0.254954, -0.393790, -0.047856, 0.528034, -1.835352, 0.791679, -0.606320, -0.757543, -0.221997, -0.775215, -2.018602, 2.065582, -0.669218, -0.305895, 0.626561, -2.138089, 1.201468, -0.653646, 0.412434, 1.172744, -0.609076, -0.603106, -0.796588, 0.124110, 1.944400, 0.929674, 0.111112, -0.435089, -0.548048, -1.176471, 0.708067, -0.703525, 0.872202, -1.359382, -0.833910}, - { -0.366051, 1.090044, 0.866319, -1.157692, -1.128796, 1.541931, -1.350312, 1.333806, 1.694647, 0.457108, -0.111000, -1.172261, -0.753790, 1.331515, -0.027152, 0.747205, -0.658500, -0.038192, 1.525249, -0.759295, 1.250606, -0.340413, -1.127007, 1.406623, -0.706422, 0.292796, 1.631768, 2.215634, 0.073980, -0.385112, 0.506362, -0.202795, 0.755789, -1.867381, -0.273771, 0.503473, 1.508404, -0.468469, 1.668037, -0.251509, -0.785674, -1.111004, -0.960976, -1.322358, -1.545723, 1.471144, -0.506242, -0.588949, -0.313601, 1.139427, 1.579125, 0.652714, -0.901777, 0.656510, -0.288514, 1.452325, -0.302991, 1.330756, 2.886968, 0.023464, 0.835104, -0.885361, 1.157006, -2.515794, -0.574478, 0.328060, -1.709359, -0.494329, 0.598770, -0.747478, 1.011745, 1.327282, -0.326995, -1.018029, 0.869699, -1.157081, 1.163211, 0.984707, 0.297095, 0.329330, -0.890085, 0.029351, 0.399321, -0.042496, 1.026399, -0.837723, -0.190327, 1.047189, 0.184283, 0.411270, 0.301015, 1.419925, 0.110397, 0.315591, -0.981933, -0.170388, 0.612171, -1.051599, -0.060530, 0.390152, 1.361701, -0.939189, 0.894472, -0.715243, -0.510507, 0.025623, 1.553985, -0.040116, 1.079201, 0.386709, -0.336056, -0.869779, -1.411344, 0.096694, -1.483401, 1.776198, 0.237811, -0.026078, 0.857311, -0.718028, -0.124715, 0.040444, -1.939897, -0.006549, 0.231204, -1.953128, -0.552907, 1.079684, 1.235623, 1.523048, -0.308990, 0.989936, -1.130399, -0.647225, -0.647576, -0.964932, -0.558924, -0.038719, 1.105535, 0.149483, 1.006351, -1.314417, 0.389194, 1.346200, -1.696851, 0.970115, -0.137362, 1.871246, 1.547609, 0.802342, -0.763129, -0.293492, -0.091770, -0.473747, -0.245311, 1.169244, -1.430883, 0.049332, -1.836761, -1.351445, -0.212866, -0.182219, 2.134880, -0.518474, -1.587803, 0.309249, -0.367516, -0.191881, -0.503828, -0.679150, -1.493666, -1.162391, 0.832011, 1.911391, -0.162675, 1.017089, 0.032120, -0.107554, -0.088736, 0.275411, -0.678826, 1.432165, 0.365810, 0.622105, 0.506559, -0.318611, 0.971903, 0.525363, -0.445594, 1.876652, -1.149562, -0.463688, 2.733772, -0.764278, -0.449677, 0.302581, -0.240802, 0.190044, 1.008196, -0.278168, 1.065394, -0.650817, -0.101829, 2.310449, -0.039349, -0.503874, 1.112140, -0.235511, -1.212259, -1.348459, 1.387797, -0.952093, -0.180724, -1.222137, -1.093086, -0.178448, 1.269866, -0.190811, 0.650464, 0.778309, -0.050321, 0.380407, 0.161355, 1.421648, 2.433857, 2.583800, -1.573436, 0.448591, 0.110533, -1.603465, 0.740921, 0.289418, -1.414146, -0.624459, -0.593682, 0.916803, -1.701631, 0.241922, -0.543003, 1.188700, 1.906490, 0.481122, -0.768427, -0.953898, 2.102781, 0.618356, -0.336548, -0.572326, 0.606568, 0.491024, 0.380272, -0.022026, 0.523972, -0.954023, -0.877209, -0.224495, 0.432683, -0.254900, -0.774008, -1.607907, -0.720620, -0.604274, 1.678520, 1.913163, 0.159356, -1.410313, 0.197388, 1.169798, 0.903142, 0.039011, 0.144807, 2.458497, -1.001692, -0.505731, 1.414980, 0.832307, 0.554467, 1.206977, -1.397985, -0.592895, 2.600739, -0.416195, -0.033741, 0.451166, 1.512583, 1.053435, -1.479246, -0.142051, 0.975982, 0.311530, 0.487769, -0.323924, 0.348971, 0.799994, -0.060661, 1.669826, 0.582834, 0.011219, -1.827596, -0.489834, -0.820367, -1.095741, -0.967043, 1.146245, -0.020773, -0.041144, 0.815911, 0.721984, 0.252552, 0.870835, 0.255693, 1.718572, -1.245382, 0.587540, 0.357072, 0.060316, -2.369084, 0.227770, -0.223617, 0.033238, 0.292996, -0.595448, 0.075100, 0.349034, -0.580471, -0.636505, -1.066613, -1.429018, 1.742048, -0.667394, 0.679725, 1.340292, 0.490123, -0.563744, -0.495447, -0.463659, 0.680997, -0.267053, 0.958029, 0.013707, 0.709109, -0.390414, 0.719052, -0.423561, -0.090128, -0.733675, 0.132490, -1.410537, -0.524790, 1.193208, -1.036264, 0.011977, -1.313109, -1.323276, 1.121715, 0.418580, -0.880143, 1.663108, 0.355192, -0.326285, 1.055457, -0.800780, -0.133384, -0.212181, 0.272341, -0.555156, -1.064138, 0.755548, 1.491287, -0.501005, 0.305670, 2.249164, 0.729153, -0.542153, 1.753567, 0.403875, 1.621784, -0.150918, -0.949804, -0.820128, -0.497204, -0.082337, 0.106560, -0.031992, 0.430473, 0.103075, 0.383675, -1.641249, 0.462108, 0.095299, -0.188685, -0.489998, -0.470622, -0.400630, 0.950855, -1.671221, -0.851781, -0.962811, -0.323219, -0.772624, 0.288847, -1.147847, 0.541159, -1.650323, 0.930566, -0.537825, -0.194494, 0.067336, 0.530044, 0.415645, -1.302154, -0.638851, 0.251781, 0.447008, 1.781901, 0.609136, -0.342385, 0.262713, 0.939617, -0.111206, 0.130623, 0.921171, -0.454378, -0.931573, 0.291690, 0.132114, 0.346790, 0.083356, -0.086598, -0.154961, -1.116497, -0.499442, -0.844005, 1.524551, 0.680117, -2.055838, 0.434303, -0.104819, -0.839391, -0.089037, 1.341437, 1.073892, 1.198432, -0.211229, 1.516555, 0.491887, 0.397480, 0.602591, -0.199075, -0.464708, 0.123884, -0.285974, 1.035733, 1.375628, 0.868683, 1.118244, -0.196603, -1.484560, 0.413828, 0.221042, -0.212243, -0.358806, 2.159950, -1.081131, 0.734749, -0.967876, 0.483122, 0.331686, 0.160346, 2.498008, 0.958881, 1.340358, 1.147135, -0.450397, 2.073919, 1.004491, -0.386724, -0.382245, 0.865120, 0.970890, 0.188061, 0.254678, 0.097065, -1.364824, -1.984393, 1.262353, 0.615119, 1.384209, -1.461402, -0.175372, -0.183393, -1.903769, 0.072977, 0.767290, 0.200107, -0.096740, -0.602840, 0.824492, -0.355718, -0.789418, -0.371401, -0.483612, -1.464046, 0.158438, 0.039026, 1.439314, 0.183182, -0.261420, -1.548254, -0.193097, -1.471828, 0.202734, -0.491591, -1.269838, 0.316289, -0.517476, -0.569726, -1.944641, 0.402780, 1.515877, 0.506689, -0.443737, -1.154531, -1.311475, 0.366058, 0.246239, 0.455154, 0.631679, -1.170954, -0.380020, 0.486398, -1.016393, -0.519378, -0.424926, -1.790598, 0.473614, 0.051159, -0.173950, 0.852429, 0.571114, -0.756598, 0.874593, 0.588289, -0.007917, -0.465132, -0.473911, -1.321447, 0.527671, 1.465970, -0.607841, -1.685049, 0.023688, 0.472908, -0.240533, 0.106455, -0.234273, -1.186065, 1.037140, 0.143860, -0.567111, -1.168850, -0.076105, 1.113482, -0.642468, 0.548264, -0.904635, 0.772669, -0.863736, 0.200474, -0.829202, 0.979016, -0.486663, 0.332465, -0.583737, -0.044128, 0.276428, 0.954208, -0.068546, -0.832858, -1.270139, 2.136811, 0.590467, -0.624761, -1.480334, 1.382104, -1.602011, -0.793466, -0.906890, 0.376001, 0.492588, 1.071393, -0.067113, -1.398913, 1.175812, 0.946857, 1.774585, 0.401990, 0.255106, -0.942760, 0.469706, -0.464059, -1.150043, 0.255540, 1.469347, -2.037062, -0.373867, -0.650264, 0.552214, -0.664573, 0.533174, 0.321023, 1.534882, -0.680650, 2.482328, -0.481479, 0.448310, -0.581476, -1.514262, 0.277445, -0.838904, -1.476984, -0.430568, -0.220664, -0.944887, -0.818019, -1.135972, -0.026249, 0.958074, 0.617705, 0.494235, -0.423978, 2.756689, 0.253280, 0.065789, 0.473021, -0.459397, -0.142948, -1.815069, 0.322057, 0.518124, 1.449641, 1.918943, 0.062592, -0.075669, 1.611980, -0.860131, 0.147282, -0.447477, 0.875886, -0.762018, -1.701572, 0.272824, 0.905363, -2.514226, -1.389881, -1.206337, -0.196696, -1.372550, 1.582245, 0.140760, -0.689306, -0.659299, -0.258320, 1.030984, -2.551895, 0.679386, 0.165588, 0.561277, 0.173679, 0.260028, -1.245822, 0.925928, 0.988071, 0.097116, -0.051939, -0.539584, -1.237677, 1.125789, 1.874041, 1.241448, 0.989269, -0.217760, -1.631286, -1.552263, 1.123045, 0.860963, 0.920692, 0.377092, 1.325692, 1.106578, -0.508420, 0.592198, 0.992600, -0.393067, 0.206730, 0.752042, 0.851183, 0.866981, -0.305114, 0.694478, 0.606522, -2.346379, -0.607023, -1.474387, -0.494714, -0.539259, -0.999210, 1.528820, 0.166750, -0.131750, 0.478981, 0.930009, 0.214593, 0.692389, 0.086775, 1.497250, 0.858509, 0.861626, 0.649618, -1.482740, -0.656958, 2.416242, -0.493451, 0.177911, 0.505277, -0.130259, 2.379736, -0.576178, 1.187565, -0.576931, -1.132377, 0.395463, -1.151024, -0.920281, 1.260511, -1.110756, 1.529079, 0.458472, 0.830109, -0.039647, -0.080383, 1.122112, -0.274819, 1.092939, -1.546443, 0.255672, 1.235009, -0.380847, 0.321383, -0.443796, 0.286741, -0.312062, 0.946869, 1.277352, 0.149270, 1.595581, 0.559365, -0.290963, -0.664620, -1.175728, -0.059714, -0.332855, -0.401577, 1.317238, -0.548539, 0.263354, -0.275134, 0.482188, 1.430070, 0.069831, -0.538429, 0.360160, -0.529170, -0.980606, -1.526071, 2.679397, -1.235846, -0.669099, -1.724909, 1.029704, 0.098813, 0.335976, -0.945628, 0.394371, 0.233446, 0.835115, 0.588741, 0.393339, -0.093629, 1.026724, 0.742848, -0.703165, 1.227853, 1.734061, 0.770439, -0.266471, -1.082233, -1.157477, -0.866743, 0.229048, 0.893650, 1.320832, -0.858671, 0.141810, 0.796965, -0.577622, 0.551456, -0.917431, -1.122053, -1.237289, -0.651291, -0.461301, -0.703822, -0.056861, 0.977100, 0.540449, -0.347926, 1.112978, -1.307661, -0.381739, 0.954460, -0.055147, -2.145001, -0.296021, 0.389547, -0.158820, -1.297863, 0.583484, 1.466881, 0.509633, -1.163055, 0.825659, 0.644911, 0.082810, -1.322625, 1.326049, -0.805257, 0.835166, -0.827975, 0.767160, -0.023294, -0.095388, -0.777284, -0.113734, 0.504145, -2.348214, 0.358429, 1.453401, 0.157792, 0.375178, -0.494533, 1.136741, -0.172614, -1.308590, -1.240380, -0.293492, -1.762733, 0.499742, 0.648316, -0.306742, 1.064501, 2.588493, 1.534481, -0.068430, 0.628313, -1.202221, 0.751400, -0.611287, -0.285582, 0.621840, 1.118552, -1.304569, 0.338408, 0.634245, 0.727070, 1.351708, 1.906642, -1.245493, 0.544085, 0.023567, 0.822136, -0.225659, -0.554759, 1.078285, -0.487821, 0.350217, -1.328078, -1.516463, 0.379319, 0.841175, -0.803244, -2.133249, 0.043919, -1.727119, 0.712188, 0.048582, -1.138496, -0.441502, 0.470729, 0.101948, -1.268373, 0.462844, -0.536101, -0.483177, 0.209565, -1.645566, -0.102030, 2.304646, 1.200114, -0.418676, 1.505637, -0.294857, -0.202662, -1.222147, 0.313015, -0.161851, -0.029240, -0.023564, 0.067814, -0.741534, -0.666548, 0.490464, 1.407186, 0.510670, -0.308920, 1.162411, -1.660865, -0.167916, -1.449202, 2.360460, 1.179640, 0.216388, -0.157080, -0.657975, 0.374985, -0.607038, -0.140700, -0.855956, 0.199556, -2.110195, 0.438510, -0.377595, 0.290620, 1.005258, -0.731770, -1.205673, -1.022828, 0.060198, -0.478521, 0.387020, 0.073045, -0.462466, -0.718821, -2.020948, 0.417627, -0.594171, -2.159554, 1.438150, -0.285563, 0.648363, 0.804517, 1.167873, -0.232250, -0.115185, 1.163859, 0.298022, -0.658288, -0.080099, 1.090074, -0.016892, -1.086784, 0.392383, -0.727807, -0.297935, 0.597663, 0.559123, -1.673050, -1.948834, -0.387070, -1.171286, 1.993822, -0.180595, -0.144192, 1.357437, 1.454872, 0.661677, 0.483265, -0.397517, -1.225479, 0.020337, 0.212672, 0.518673, 0.767580, -0.626396, -0.152479, 0.277082, -0.454873, -1.132728, -0.827887, 0.819189, -1.517897, 1.019129, 0.540812, -0.869711, 0.364573, 1.069084, -0.558590, -0.990351, -1.591637, -0.871694, 0.545562, -0.461599, -0.102648, 0.222724, 0.999675, 0.292247, 1.179970, 0.776466, 0.112242, 0.104970, 2.314705, 0.021268, -2.368748, -0.958900, 0.297815, -0.003677, 1.566647, -1.432305, 1.204170, -1.282670, -0.649383, -0.613923, 1.684349, -0.139662, 0.792151, 0.632381, 2.151388, 0.849497, -0.041654, -0.183858, -0.691740, -0.197847, -0.838188, 0.802003, -0.530760, 1.746419, -1.270005, -1.765993, -2.016589, -0.324317, -1.108419, -0.088983, 1.474725, -1.020524, 0.675191, 1.354876, 1.363179, -0.522103, -0.169038, -1.379544, 0.261470, 0.213237, 0.179582, 1.214208, -0.607320, -2.186980, -0.733379, -2.372892, 0.959630, -0.993857, 0.176890, 0.260644, 1.411645, 0.393456, 0.257266, -3.124489, -0.235843, 0.588131, -1.340846, -0.332305, -0.440792, 0.171715, 0.069795, 0.650910, 1.528987, 1.849215, 0.077807, -1.100648, -1.817446, 2.365149, -0.220911, -0.411025, -0.001701, 1.012689, 0.099022, -0.162977, 2.378298, 1.187006, -0.295466, 1.683484, 0.364706, -0.571128, -1.760534, -0.122802, 1.857482, -0.143319, -0.230420, -0.214831, -0.308055, 0.118742, -1.022546, 0.952589, -0.430711, -0.185212, -0.190947, 0.051814, 0.060666, -1.445201, -0.841744, 0.594250, 0.418576, 1.577818, -0.641416, 1.060903, 0.294138, 1.013450, 0.627861, -0.281716, -0.982605, 0.361732, 0.248037, 0.756866, -1.069409, -0.120460, -1.677853, 0.019826, 0.648522, -0.808604, 1.144117, 1.187809, -0.397782, -0.149470, -0.590064, 0.882347, -0.834685, 1.555812, 2.235354, -0.555875, -0.769270, -0.285175, -0.284234, 0.119298, -0.612013, 1.969389, 0.367399, -0.474982, -0.914559, -0.129702, 0.494528, 0.682517, -0.919533, -1.472182, 0.180034, 0.692186, 0.702038, -1.051907, -0.776538, -0.074859, -0.264470, 1.543097, -0.542533, -0.131785, 0.240690, 1.611668, -0.151417, -0.017538, -0.271936, -0.437718, 0.022805, -0.669591, 0.267952, 0.694436, 2.424463, -0.201106, -0.239224, 0.817808, 1.117689, 0.960553, -1.468808, -1.203427, 1.087992, -0.376621, 1.581256, -0.893155, -0.207584, -0.273662, -0.677110, -1.035160, 0.560880, 0.636948, 0.859484, 0.137554, -0.626866, -0.080127, 1.076695, -0.071589, 0.664032, 1.024663, 0.547021, 1.001503, -0.261051, -1.086343, -0.003509, -0.375856, -0.938780, 1.226086, 0.046283, -0.526216, -0.588638, 0.753575, 0.133434, -0.149700, 2.103486, -0.560226, 1.007565, 0.844389, 1.625927, -0.494287, 0.849952, 0.226575, -1.008783, -0.036338, 1.705755, 0.478073, 0.045146, -0.682793, 0.749817, 0.297386, 0.783425, 1.397597, -1.056513, -1.257820, 0.522975, 0.206689, 0.530611, 1.156682, 1.122042, 0.801552, -0.167375, -1.126947, -0.610750, 0.459830, -0.491992, 0.536673, -1.537645, -0.029582, 1.316590, -2.018537, 1.373362, -1.074952, -1.185202, 1.268097, 1.255860, 0.623142, -1.060992, 0.659908, 0.405465, 0.401678, 1.122369, -0.694854, -0.353233, 1.594824, 0.189123, -0.014828, 1.288232, -0.446496, -0.615074, 1.409053, 0.373744, -0.346291, -0.104675, -0.451614, 0.481504, -0.549403, 0.327145, 0.430512, -1.504374, 1.352461, 1.232739, -1.324237, 1.043989, -0.534908, 1.035258, -2.174643, -1.415195, -0.951376, 0.473963, 2.701545, 0.286097, -1.050524, -0.536708, 0.758873, 1.366072, -0.501957, -2.033290, 0.826883, -1.037507, 0.461361, -0.997928, -0.290920, -2.213019, -1.442613, 0.130412, -0.746206, 1.416294, -0.522086, 0.514938, -1.197681, -0.430812, -0.084455, 1.562261, 0.404097, -1.615372, -0.281724, -0.281191, -1.548097, 1.133326, -0.814797, 2.129958, 1.279244, -0.566920, 1.509583, 1.358870, -0.302262, 1.040258, -0.350752, 0.962198, -0.138816, 1.136069, 0.530156, 0.389528, 0.796999, 1.296768, 2.940829, -0.362098, -0.291717, 0.933193, -2.060909, 2.170132, 0.205767, 1.031326, -1.197397, 0.434779, -0.630896, -0.224678, -1.784438, 2.383038, 0.891166, 0.223739, -0.299808, 0.328977, -0.022802, 0.524956, 1.829236, -0.453798, -1.107157, -0.636500, 1.033642, -1.019548, 0.799245, 0.398032, -0.786846, 0.419584, -0.128728, -0.916340, -0.637239, 0.262552, -0.507553, 0.433898, 0.610220, 0.148544, 1.100288, -0.816836, 0.712949, -1.028352, 0.262168, -0.949171, -0.333264, -0.721797, 0.852567, 2.276798, -0.753126, -1.294838, -0.619130, -0.666390, 0.530774, 1.989407, 1.869620, 0.912516, 0.627528, 0.452196, -1.422774, -0.194644, 0.010776, -0.440234, -0.505087, 0.206804, -1.849113, 0.871163, -0.096737, 0.093904, 1.282949, -0.026341, 0.068432, -0.208103, -0.575788, -0.606968, -0.892175, 0.144999, -1.256860, -1.361715, -0.728653, 0.053181, -0.059173, 0.901752, -0.151951, -0.162722, 0.399033, 0.208364, -1.056095, 0.476780, -0.027557, -0.235676, -0.198806, 1.485383, -0.561210, -1.411141, -0.300205, -1.002026, -0.784634, 1.266159, -1.090193, 0.649029, -0.234111, -0.082262, 0.356078, 0.321915, 0.015732, -1.184611, -1.899113, 1.490680, 1.392324, 0.283886, -0.353852, 2.057961, 0.981666, 0.848730, -0.253620, -1.137007, 0.404694, 0.065526, 0.085647, -1.038783, -2.569717, 0.701330, -0.414976, -0.842873, -0.298220, 1.891944, -0.804642, -0.768543, -0.478489, -1.091725, -0.170599, 0.112198, -0.726134, -0.246962, 0.965135, 1.139514, 0.419828, 1.208580, -0.066874, 1.945829, 0.162809, 1.297811, 2.202734, 1.741643, 1.511201, -0.751677, 0.617983, 0.273729, -1.775817, -0.859621, -0.268454, -0.651191, -0.321220, -0.047067, -0.043492, 0.369731, 0.062866, 0.444285, 0.815012, -1.235550, -0.121403, -1.554279, 1.588515, 0.088841, 0.296332, -0.815071, 0.408587, 0.947721, 0.542313, 0.334759, 0.027636, -0.437686, -0.660244, 2.208708, 0.602455, 1.435043, 0.972738, -0.578480, 0.766644, 1.074701, -0.844363, 0.283039, 0.174809, -0.285907, 0.269971, 1.571914, -0.680261, 0.014420, 1.316165, 0.833149, 0.523407, 1.883938, 0.983637, 0.623695, 0.309055, -0.690168, -0.769946, -1.424188, -1.022835, -0.391665, -0.725895, -0.537701, 0.715435, 0.279784, 0.723945, -1.073925, 0.655954, -0.114652, -0.576828, -2.374498, -0.920265, 0.550063, 0.871423, -0.417389, -0.660618, -1.771935, -0.894860, 1.397525, 0.097323, 0.554468, -2.250533, 0.337591, 0.464278, 0.510972, 0.267362, -0.177007, 2.532581, 0.592427, 2.865095, -2.399371, -1.158907, -0.466906, 0.880595, 0.179700, 0.598148, 0.080115, -0.402827, 1.002004, -0.344141, 0.198522, 0.296398, 0.090345, 0.551243, 0.462708, -0.528162, -0.549759, -0.018495, -0.648103, -1.150885, 1.193687, 1.445238, -1.602518, 0.419286, 1.923925, 0.993801, 0.080631, 0.681932, 0.523293, 0.094783, 0.872851, 1.055104, 1.328419, 0.447384, 0.508069, 1.121763, 0.164839, 0.825536, -0.917679, -0.794695, 0.184164, 1.579811, 0.432503, 1.097294, -1.257097, -0.146743, 0.632343, 0.873633, -0.156048, -0.012500, -1.466014, 0.105209, -0.743446, 0.756828, 0.109854, 0.962585, 0.037169, -1.495391, -1.055537, 1.542128, -0.972383, -0.450260, 2.811025, -1.481503, -1.342464, -0.118399, 0.675031, 0.781311, -1.309169, 0.257078, 0.303964, -0.277430, -0.468578, -0.266924, -1.589440, 1.171651, -1.062283, 0.469898, 0.806030, -1.440026, 0.805684, 0.891655, -0.023100, -0.062576, 1.327035, 1.009489, -0.899913, -1.173445, -0.682394, 0.748711, 1.804029, 1.652740, 0.959006, -1.492983, 0.158459, -0.904840, -0.421817, 0.387183, 1.827316, 0.672307, 1.019775, -0.287872, 2.863921, 2.185695, 0.995617, -0.605319, -1.932329, -0.334581, -0.025587, 1.131738, 0.857656, 0.112565, -0.203046, -1.130978, 0.092396, 1.355934, 0.403165, 0.803676, -1.441043, 0.502503, 1.159083, 0.763962, 0.031462, -2.548171, -0.252876, 0.735758, -0.132680, -0.236088, 0.352176, -1.417295, -0.090644, -0.678433, 0.486371, 0.444437, 0.570962, -0.512129, -0.560760, 0.346190, 1.682052, -0.565234, -0.776522, 0.488945, 0.627600, -0.167428, -0.130414, -0.010353, 0.879153, 1.337339, -0.585537, 0.727072, -0.141975, 0.533020, -0.885554, -0.499028, 1.047312, 0.075773, 1.098370, -0.192691, 0.721690, -2.273454, 0.509313, 1.157307, -1.005416, -1.772732, -0.942747, -1.645998, -0.336253, -0.146102, -0.824648, 0.409081, 0.118311, 0.709025, -1.624230, -0.227199, 0.618670, -1.040878, -0.408246, 1.277359, 1.462230, -0.100716, 0.926692, 0.572805, -0.194286, -1.763308, 0.378171, -0.436644, -1.110692, -0.198854, 0.546694, -0.314007, -0.476614, -1.257885, 0.661586, 0.295306, -0.487621, 0.220747, 0.877556, 0.508186, -0.324527, 0.832008, 0.321013, -2.623273, -0.558013, 0.268001, 0.907817, -0.509289, 1.995986, -1.079092, -0.357120, 0.692847, -1.594903, -0.810229, 0.766416, 0.458690, 2.388878, 1.237876, -0.482560, 1.621789, 0.460475, -1.521537, 0.398639, 0.488280, 0.814789, 2.039437, 1.104775, -0.081346, 0.693222, -0.675134, -0.376279, 0.148597, 0.349295, -0.826567, 0.015371, -1.211840, 0.133244, -0.201431, -1.035327, 1.334061, 0.333192, 0.840426, -0.241970, 0.518896, 0.260458, 0.739403, 0.211132, -1.336182, 0.729792, -0.448636, 0.685902, -0.518373, -2.049942, 0.840856, 0.369066, -2.713610, -0.956266, 0.844052, 1.454209, 1.751947, 1.118434, -1.199703, 0.300938, -0.622784, -1.080096, -2.325250, 1.183856, 0.204165, 0.879490, 0.600926, -1.200129, 0.161161, -0.411520, 1.622712, -0.394856, 1.465673, -0.513967, 1.573941, 0.823391, 2.499071, 1.684852, -0.002011, 1.494403, -0.637152, 0.413116, 1.138018, 2.299080, 0.912717, -0.582792, 0.011413, -0.944657, -0.355949, 1.198286, -0.096939, -0.521424, 0.769444, -1.009839, 1.116072, -0.939024, 0.866407, -0.501148, -0.485490, 0.117572, -0.349237, 0.036147, 1.289752, -0.109019, 0.417342, -0.223573, -0.964651, 1.336383, 0.487437, -1.142140, 0.160682, -0.516941, 0.450464, 0.556782, 1.838317, 0.019776, 1.806731, 0.942391, 1.137877, -1.031985, -1.228200, -0.309678, -0.477846, 0.409540, 0.988165, 0.028357, 0.449104, -0.880508, 2.038219, -0.253821, 0.697572, 0.581308, 0.167655, 0.900317, 0.243123, 0.011126, 1.016816, -0.493156, -0.038680, -0.534398, -0.383596, -0.153659, -0.417682, 1.920127, 1.356597, 0.109325, 0.431191, -0.605333, -0.429238, -0.518555, 0.665048, -0.915748, 0.420865, -0.749463, -0.301446, 0.787792, 0.732964, 0.251381, 0.649113, -0.482093, 0.783651, 0.281404, 0.116612, -0.584326, -0.581823, 0.507780, 1.304491, -0.175627, -0.987605, -0.503873, 1.329944, 0.600671, 0.905240, 1.522753, -1.067003, 0.841375, 0.324097, 0.428858, 2.241882, -0.421061, 1.350712, 0.293129, -0.571053, 1.726629, 0.902720, 0.481511, -0.011749, -0.229563, 0.129374, -2.467086, 0.627643, 2.151489, -1.269279, -0.822767, 0.374930, -0.959157, -0.312447, -0.679249, 1.333499, -1.231680, -1.098953, -1.968821, 0.077113, 0.467697, -0.628377, 0.643440, 2.182266, -1.666187, 0.485504, -0.590932, 0.832465, 0.153937, 1.060625, -1.246195, 2.416896, 0.093975, -0.152827, -0.071498, -1.175740, -0.059380, -0.954397, -0.834015, 0.166732, -0.254951, 0.122066, 0.556969, 0.543691, 0.126691, 0.998256, 0.096867, -0.861643, -0.324542, 0.327667, -0.797774, 1.269918, -1.753651, 0.764782, 0.298320, 0.897810, 1.019876, 1.022820, 0.891247, -0.038796, -1.212145, -0.893024, 0.486557, 1.370578, -0.266401, -1.755456, -0.347878, -0.665156, -1.322847, -0.175403, -0.882539, 0.602112, 0.035955, -1.623531, 0.954679, 0.549832, -0.578962, 2.896449, 0.048991, -0.113154, 0.267387, -0.312706, -1.668610, -0.072943, -0.803505, 0.148612, -0.551699, -0.716624, 0.097455, -0.583477, -0.981594, -1.847880, 0.717272, 1.327487, -0.819650, -0.439335, -0.321295, 0.192924, 1.327158, -0.035909, 0.460546, 0.249600, 0.814532, 1.230175, -2.268395, -1.422459, -1.662717, 0.261945, 0.779187, 0.971484, 0.435417, 1.203834, -1.185644, 1.292138, -0.853645, 0.334178, 0.584909, 1.466309, 0.004952, 0.080900, -1.349691, -0.934681, 0.219297, 0.988318, 0.034435, -0.743059, -1.299690, -0.218137, 1.656151, 0.083517, -1.588795, -0.949296, 1.221327, -0.433782, 1.248809, 0.436154, -1.000479, -1.023634, -0.991402, -2.607101, -0.659781, -1.795288, -0.541813, -0.490361, 1.207486, 0.185346, 1.141771, -1.647310, 0.503719, -1.671135, -0.342426, 2.029416, -0.475719, -0.452015, -0.127935, -0.490847, -0.364585, 0.217848, -0.106019, -0.043535, 1.579382, 1.230152, -0.211027, 0.645656, -0.283660, -0.618962, -0.691271, -0.002964, -0.415489, -0.341448, 0.888052, 0.589376, -1.698737, 1.497291, -0.831303, 0.395174, 0.589173, -0.810251, -0.312356, -0.131721, -2.374080, 0.565497, 0.111212, -0.253048, 0.390443, -1.207896, -0.041176, -0.077750, -0.812502, -1.104729, 1.385000, -0.132227, 1.027096, -0.555687, 0.852424, 2.050150, 0.625882, -1.497229, 0.810401, -0.139653, 0.456244, -0.671029, -0.188565, -1.159149, -0.656063, 1.103047, 0.422095, 0.572289, -0.381481, 0.924799, 2.061640, -1.345375, 0.801426, 0.383118, -0.529409, 0.239853, -0.762862, 1.156354, -1.894699, -0.530812, -1.060533, 1.058275, -0.410843, -2.197512, 0.589395, 0.039158, -1.001759, -1.310885, -0.624722, -0.077511, -0.500742, -1.190303, -0.531067, 0.286142, -1.023084, 1.246064, 1.492313, 0.445578, -2.706501, -0.563274, 0.294320, -0.073659, -1.531296, 0.667368, 1.289439, 0.403801, -0.719572, -0.352385, 0.841166, 0.949807, -0.098071, 1.275607, -0.106403, 0.430739, 0.001879, 1.051093, -0.374533, 0.892073, 0.332948, 0.592774, 0.473188, 0.607197, -0.461602, 1.542222, 0.100073, -0.499275, -2.910311, 0.144654, 0.567283, 0.237543, -1.226956, 1.702870, -1.412966, -1.094480, 1.470134, -0.483356, 1.221584, 0.578784, 1.718434, -0.492522, -0.313230, 0.822420, -0.116919, 0.485807, -0.045605, 1.742115, -1.378036, 0.212902, -0.898107, 0.841902, -0.621667, 0.180036, -0.646024, -0.156983, -1.445886, 0.337371, -1.055352, -1.888733, -1.340191, 0.214425, 1.523805, -0.471269, 0.380452, 1.209268, -0.710079, -1.087702, -1.709404, 0.040628, -2.360130, 0.001905, 0.195222, 0.738780, 0.890120, 1.599264, 0.441577, -0.103721, 0.165188, 0.173371, -1.600238, -1.713154, 0.000767, -1.887139, -0.105544, 1.522331, -0.325616, -0.441462, -0.911480, -0.520468, -0.964007, -0.155366, 0.750897, -2.228427, 0.144024, -0.177606, 0.199641, 0.659904, -0.527830, -0.451822, -1.356099, 1.321654, 0.744680, 0.335386, 0.850053, -0.986633, -0.010434, 0.255908, -0.093684, 1.473114, -0.406603, -0.307050, -2.153165, 0.155834, -1.160650, 1.216561, -0.373953, 0.473638, -1.267211, 0.022150, -0.091080, -0.757524, -0.055015, 0.426883, -1.715072, -1.246240, -0.148565, 3.192731, -1.636502, -0.052563, -1.086715, 3.090604, 1.472217, 0.522833, 1.762922, 1.141213, -1.487499, 0.496260, 0.216927, -0.804855, -1.929908, 0.570464, 1.097985, -1.896430, 0.633538, -0.086539, -0.647590, 0.239698, -0.534972, 0.235688, 0.862444, 1.389340, 0.417638, 1.300175, 2.024927, -0.701430, -0.088599, -1.126721, 0.294095, 1.685487, -0.555167, 0.024073, 1.572933, -0.280384, -1.185864, -0.373257, -0.591392, -0.392939, -0.146882, 0.483622, -0.191206, 0.174507, -0.798611, 0.966095, 2.029952, -0.921123, -0.332096, -0.440556, 0.193824, 0.574540, 0.824316, -0.839898, -0.296096, 1.903518, -0.833156, 0.030677, 0.607523, 1.514426, 0.868757, 1.555596, -0.935126, -0.143852, -0.169516, 0.629757, 1.030584, -0.992446, 2.211719, 1.261339, -0.214449, -1.055072, -0.870771, -0.341431, 0.287067, 1.439778, 0.678502, 0.658027, -0.056848, -0.013744, -0.933110, -1.167635, 0.166673, 1.355237, 0.964435, 0.909258, -1.019448, -1.345046, -0.306989, 0.289421, -0.184356, 0.629042, -0.747637, 0.147467, -1.991565, -0.865654, -0.660517, 0.687695, 0.464715, 1.234511, -0.155472, 0.368011, -0.798038, 0.303759, 0.258606, 0.380070, 0.133021, 0.798172, -1.369328, -1.947639, 1.618109, 0.228001, 0.488191, -0.066755, 0.566617, -0.175494, -0.019300, 2.298338, 2.490033, -1.538595, 0.779380, 1.156198, 0.711916, 1.682077, 0.279762, -0.312617, 0.178269, -0.397102, 1.879119, 0.062291, -1.939265, 1.662884, -1.012789, -1.386273, 0.910591, 0.108151, -0.795660, -0.358391, -0.856319, 1.412286, -0.330051, 0.280484, -0.273336, -1.535364, -0.168593, -0.493246, -1.447309, 0.707914, -0.260365, 0.823475, -0.909438, 0.634202, -0.188416, -1.165149, 0.735117, -0.905673, 0.084929, -0.112713, -0.735928, 1.121421, 0.004254, 0.941864, 1.846784, 1.325619, -2.147032, -0.117993, -1.383002, 0.757244, -0.606906, 1.602797, -0.399847, 0.019014, 1.644806, 0.813505, 1.086837, 0.438771, 0.348052, 2.024298, 0.402076, -0.813110, 0.695878, 2.035622, -0.465122, -1.492292, -0.878087, -0.973837, 1.812257, 0.153350, 0.913495, 0.711407, -0.598748, -0.354786, 1.431581, 0.260969, -0.680260, 0.510779, -1.604333, -1.336531, -0.489935, 1.665154, 0.090843, 0.975008, 1.975683, -1.561150, -0.124309, 1.122236, 1.016507, 0.565472, -0.645597, 0.205400, -0.101509, -0.085578, 0.397383, 1.803785, -0.995748, -1.382449, -0.738364, 0.779503, -1.365308, 0.029976, -1.368673, -0.529999, -2.022380, -0.063186, 0.582739, 0.199500, -0.517304, 1.031594, -0.510167, -0.085207, 0.012295, -0.985666, -0.798587, 0.977248, 0.230268, -0.788730, 0.100369, -1.348227, -0.013572, -0.693568, -1.639801, 0.244451, -1.257866, -1.120893, 0.029183, -2.198713, -0.445338, -0.702023, 1.927548, 1.705852, -0.656002, 0.953507, 0.882131, -0.275884, -0.848179, 0.232563, 0.451223, -1.448456, -1.182728, 1.777396, 0.847616, -0.803393, -2.077458, 1.638231, -1.673865, 0.345191, -0.367579, -0.387235, -0.728010, -1.154211, -1.253552, 1.137648, -0.339611, -0.744888, -0.274606, -0.827768, -1.514119, 0.714691, -1.152990, -0.681847, 0.095298, -0.546938, 0.992713, -0.992856, 1.013190, 2.518029, 1.411025, 0.472371, 0.889863, 1.839270, -1.104206, -0.730294, -0.561019, 0.713459, -0.670588, 1.753072, 0.169193, -0.070926, 0.613736, 1.534770, 1.686791, -1.337481, -0.320978, 0.260372, 0.006047, 0.206645, 0.553592, -0.902511, 0.796327, -0.325769, -0.025676, -0.352937, -1.178178, -1.706857, 0.413009, -1.179883, -0.814427, -0.009327, -1.040245, -0.571115, -1.056754, -1.301412, -0.591260, -0.763906, 0.470067, 0.828917, 1.469671, 0.156652, -1.542709, 1.333366, 0.967467, -1.270201, 0.866247, -0.811172, -1.176453, -0.475758, 0.315612, 0.682427, -1.250730, -0.384803, -0.144978, -0.937373, 0.917409, -0.395846, -1.952576, -0.178033, 2.320912, 1.109337, -0.307219, -1.173891, 0.115987, -0.030911, 0.746893, 0.477283, -2.128353, 1.796388, 0.151782, 2.482570, -0.872722, -0.112642, -2.086276, -0.140203, 0.111983, -0.939102, -1.055091, -1.329575, 0.215989, 0.255191, 1.029851, -1.249237, 0.618896, -0.213340, 1.197397, -0.320130, 0.000204, 1.480527, 0.062241, 1.254689, 0.728404, -0.213925, 1.611260, -1.022513, -0.365403, 1.018360, -0.154956, -0.140410, 1.903669, -1.108924, -0.276196, 0.528212, 0.884397, 0.558028, 0.512399, -0.840059, -1.408578, -0.829500, 0.499964, -0.500953, -0.284076, -1.326736, 0.003464, 0.528966, -0.580975, -0.656808, -0.516160, -0.531121, -1.755176, -1.214240, 1.152361, 0.224646, -0.351005, -0.872570, -0.736079, -0.426793, 0.438420, 0.449918, 0.956023, 0.098402, 1.567622, 0.219357, -0.697617, 0.714471, 0.928580, 0.486617, -1.446406, 2.453130, 0.112571, 0.465784, -0.744802, 0.656983, -0.168934, 0.470107, -0.733525, 0.315124, 1.488656, 0.066169, -0.999403, 2.117275, 2.542061, 1.607461, -0.113543, -1.263350, -0.327064, 2.413925, -0.731953, 2.089860, -1.106059, -0.126414, -1.037236, 1.243739, 1.479193, 1.071569, 0.460087, -0.699642, -0.410816, 2.493381, 0.350269, 1.426043, 1.808272, 0.866318, 0.592693, 0.439841, -0.649058, -0.349749, -0.045892, 0.458708, 0.782348, -1.158792, -0.267142, -2.656903, -1.460660, -0.410096, 2.535706, -0.632427, 1.336218, -0.204034, 0.830523, -1.253433, 1.034396, -3.423545, 0.087727, 0.824722, -0.012332, 1.407828, 0.120882, 0.926187, -2.292944, 1.133925, 0.070113, 0.058787, -0.714468, 1.357921, -0.477855, -0.451449, 0.213543, -0.749978, -1.322127, -0.142105, 1.090608, -0.684492, -1.045470, 1.028201, -0.441753, 1.948786, -1.496778, -0.958542, 1.428044, 0.903210, 0.756319, -0.521848, -0.848668, 0.275805, 0.669213, 0.492029, 0.957295, 0.108228, 0.762715, 0.293802, 2.436357, 1.070933, 0.011859, 0.362297, 0.102790, 0.031223, -0.965514, 0.835719, -0.569635, -0.440000, -0.331996, -1.274265, 0.069149, 0.121821, -0.144766, 0.514818, 0.071455, 0.864318, 1.478536, 1.551118, 1.691593, -1.299430, -0.971826, -0.883588, 0.578695, -0.042692, -0.238458, -0.728358, -0.076793, 0.893684, -0.219320, -0.469815, 0.855054, 1.703795, -0.425166, 0.270828, -0.696114, -0.110387, -0.682147, -0.525052, -0.227233, 1.005185, 0.803018, -1.195223, -0.621801, -0.284694, -1.812292, -1.373420, 1.239193, -1.030262, -0.614617, 1.015705, -0.504089, -1.243769, 1.839390, 0.925878, -0.834220, 0.058480, -1.357423, 1.806100, -0.190481, -1.537604, 1.057216, -0.901779, -1.764362, 0.839263, -0.296992, 1.116402, -1.322160, -0.878790, -0.170323, 0.862255, 0.377605, 0.069388, -0.819686, -0.952324, 1.892050, -1.370026, 0.128011, -1.345521, 0.509866, 0.578618, -0.328582, 0.434008, 0.827424, 0.631912, 0.777146, 0.944008, -0.341045, 0.442765, -0.239828, 0.457617, -1.610594, 1.089655, 0.567526, 0.066581, -0.181101, -1.022524, -0.062282, -0.418298, -0.130733, -1.085837, 0.437248, -0.297256, -0.299135, 0.080330, -0.100244, 1.805943, 0.645342, -1.559626, -1.494864, -0.893543, -0.166167, -1.360841, 0.576710, -0.838996, 0.380255, 0.408801, -0.087826, -0.049933, -0.725054, -0.717173, -0.902833, -1.784525, -1.308625, -1.109085, 0.043479, 1.053214, -1.268719, 0.350615, 1.358514, -0.608471, 0.092205, 1.656784, -0.484845, 0.857037, 0.399978, -0.386510, 2.922505, -0.152704, 1.061745, -0.112545, 0.998931, -1.606496, 0.172222, -0.511422, 0.496342, 1.337502, -1.879604, 0.411800, -0.223929, -1.404463, -1.344039, -0.674549, 1.401038, -1.527929, -1.194860, -1.458769, -0.154352, 0.520749, -0.778789, 1.923256, -0.212585, 0.066619, 0.932589, 0.247856, 0.516712, 0.652079, 0.783558, -0.709963, -0.439451, 1.346308, 0.520449, 0.707136, -1.004591, -1.595103, -0.197411, 0.770248, 1.577931, 0.364045, 0.348734, 0.193432, 0.612950, -1.068714, 0.130597, 1.301195, -0.064313, -0.010166, 1.057867, -0.454054, -1.446331, -0.440927, 1.147515, -0.569905, -1.606436, -0.233277, -0.337846, 1.559327, -0.705301, -0.390601, -0.233253, 2.039244, -0.055524, 1.032676, 1.096797, 0.808107, -0.831129, 0.261051, 0.432175, -1.195443, -1.214485, 0.485138, -1.894018, 0.552331, -0.324718, -0.297798, -0.152396, 0.578562, -0.291784, 2.964944, 1.262912, -1.947922, -0.279872, 0.667570, -0.449464, 1.085750, -0.147495, 0.640326, 0.581892, -0.288672, 0.858507, 0.769634}, - { -0.446141, -1.210392, 0.094219, -0.557681, 0.436657, 0.228910, 1.252416, 2.043364, -1.478110, -1.121050, -0.336387, 0.921460, 1.600388, 0.273376, 0.369098, -0.216870, 0.293653, 0.093288, -0.315925, 1.024815, 1.607015, 0.331540, -0.644598, -0.384692, 0.793121, 0.554271, -0.160999, -0.705313, 1.533538, -0.270805, -0.806331, -0.878109, 0.414090, -0.975189, -0.721478, -0.740868, 0.413678, 0.307196, -0.291252, -0.874170, -0.413169, -0.801347, -0.387322, 0.175434, -0.358407, 0.175792, 1.537106, -1.366534, 0.127411, -0.531498, 0.309365, -0.633223, 0.038436, 1.608587, 1.216289, 0.966547, -0.940614, 0.260128, -0.046390, 0.218279, 1.377278, -0.909145, -0.312771, -1.574051, -1.399544, 0.830134, -1.437980, -1.709561, -0.046496, 0.785499, -0.154449, -0.270460, -0.757634, -1.541992, -1.153731, -0.557437, -0.603239, 0.131191, 0.500166, -0.774932, 2.406299, -1.196631, 2.812135, 0.916448, -0.224696, 0.736269, 0.862351, 1.231325, -1.022823, 2.623466, 0.570176, -1.029176, -0.378922, -0.266084, -0.384895, 1.423834, -0.327209, 0.107326, 0.819384, 0.576725, 2.215786, 0.882954, -1.390015, 1.445607, 0.240494, -0.628055, 0.298740, 1.577986, -1.214902, -0.613802, 0.015900, -0.696121, -0.212482, 0.021852, -0.588263, -1.765785, -0.242829, 1.114169, 0.240581, 0.026022, -0.680217, 0.653857, -0.353656, -1.102200, -1.705480, 0.591669, -0.336889, -0.902929, -0.465316, 2.091608, -1.270120, -0.052219, -1.196578, 0.850167, 0.972194, -1.074584, -0.190712, 0.568203, -0.249897, 0.142745, -1.535993, -1.143525, -0.083874, 0.034206, -0.960949, -0.731398, -0.726418, -0.333815, -0.503958, -0.753630, 0.108086, 0.922474, -0.799391, -0.036553, -0.405910, 0.412070, 0.911691, 0.023563, 1.261712, -0.554661, 0.447849, -0.544578, 0.045700, 0.152466, -0.558616, -0.513727, 0.233723, 1.826665, -0.780652, -0.355041, 1.078478, 0.436535, 1.398195, -0.474950, -0.645210, -0.743973, -1.041770, -1.959302, -1.043802, 0.067097, -0.703509, -1.405768, 0.660438, 0.787347, -0.639357, -0.666745, -0.152164, 1.116144, -1.424079, 0.967490, 1.056660, 1.415114, 1.314055, -0.243241, 1.139438, -0.082025, 0.968934, 0.479145, -0.024864, -0.779569, -0.977431, 0.686902, -0.593170, -0.675872, -1.619608, 1.279747, -0.335923, 0.269279, -0.937178, -1.208609, 0.992568, 0.695028, -1.105799, 0.927952, -1.684321, 1.634138, -1.400518, -1.250819, 0.943713, -0.031745, -1.302454, 1.416210, -0.202708, 1.502852, -1.206511, -0.124401, -0.940610, -1.469399, -2.540128, -1.262995, -0.099491, -1.424507, -1.303037, -0.698715, 0.062110, 0.279796, -0.177974, -0.317407, -0.138447, -0.012450, 0.596504, 0.042038, 0.050103, -0.433508, -2.495116, 0.091227, -1.732235, -0.468762, 0.991366, -2.351202, -0.783182, 0.291866, -0.979966, 0.393041, -2.480963, -0.772810, 2.080607, 0.525421, 0.123914, -0.480173, -1.550547, 0.048052, -1.835748, 0.553664, 0.063805, -1.100559, 3.446845, -0.852350, -0.467030, 0.410166, -0.194240, 0.202805, 1.433094, 1.224726, -0.416480, -0.724887, 2.769052, 1.403896, 0.660202, -0.003159, -2.371689, 0.049895, 1.375257, -0.464955, -0.208232, 0.939234, 1.128009, -1.169787, 0.319712, -0.035626, 0.671597, 0.537344, 1.071998, 0.280105, -0.614814, -2.635823, -1.399584, -0.644652, -0.070286, -0.165058, 0.669348, -0.998436, -0.525984, -0.581191, 0.683227, -0.638211, 1.685337, -0.006282, 0.114373, 1.974528, 0.478892, -0.722630, -0.237007, -0.902797, 2.370870, 0.412595, 1.431702, 0.926747, -0.484398, 0.900348, 2.429795, 0.925609, -0.159553, 0.410469, 0.025081, 0.343449, 1.430452, -0.545778, -0.765048, -0.998648, -0.289317, 1.241272, 0.061870, 0.236501, -0.418772, -0.694165, -1.766784, 0.693774, 0.579161, -0.763132, 0.367919, 0.961925, 0.541355, -0.324157, -0.657522, -2.502346, -0.272414, 1.370539, 0.949403, 0.273473, -0.024612, 1.065152, -0.828448, -0.672163, -1.616722, -0.421403, 0.534220, 1.595581, -0.195502, 1.045425, -0.685853, 1.192971, 1.984577, 0.650806, -0.377276, 1.094375, -0.403471, -0.075159, -0.255198, 1.681054, 1.944447, -1.438875, 0.840908, 0.657407, -1.752547, 0.006515, -0.841336, 0.521484, 0.516114, -1.159483, 0.460769, 0.215958, 1.781620, -0.048160, 1.660577, -0.857293, -2.564554, 1.796085, -0.547359, 0.687766, 1.624727, -0.535832, 0.572046, -0.945929, -0.193370, 1.224158, -1.311220, 0.311782, 0.605605, -0.193145, -0.278250, -3.658919, 0.403704, 0.404384, 1.368461, 1.284870, -0.436480, -1.220091, 1.299401, 1.292838, 0.729332, 0.157103, 0.182794, 0.433962, -0.055412, 1.643416, -0.653841, -0.638076, -0.517528, -0.268725, 0.345496, 2.344105, 1.550088, -1.772326, 1.324335, -0.381126, -0.099604, -0.121997, 0.526893, -0.730422, 0.958076, 0.935883, -0.838423, 1.116673, -0.334116, -0.851061, 0.954896, -0.374372, -0.509291, 1.302573, -0.275123, 2.731643, 0.596128, -1.023311, -0.462351, -1.019602, -0.326637, -1.297941, 0.113197, -0.963061, -0.718921, 0.219356, -1.562385, 1.216211, -1.144206, -0.817539, -1.967238, 0.540856, 1.466174, -0.118227, 0.302811, 0.439032, 0.850916, -1.084990, -0.021943, -0.622396, -1.630962, 1.173403, 0.823379, -2.823348, 0.418398, -1.543780, -0.964064, 1.907559, 0.617970, -0.024240, 1.171446, 0.551308, 0.681897, -1.615708, -0.221638, -0.701041, -0.025396, -0.368484, 0.508377, 0.639249, 0.114605, -0.165839, -0.940582, 2.351082, 0.035705, 0.829055, -0.502812, -0.677675, -1.310192, -0.797597, 0.243285, -1.478060, -0.328561, 0.694011, -0.432826, 0.482477, 0.348017, -0.472264, 1.134552, 0.019681, -0.476172, 0.506533, -0.292244, 1.125679, 0.484756, -0.653510, 0.209859, -0.427151, -0.696327, 0.185218, -1.521126, -0.911026, 0.502900, -0.390106, 0.243244, -2.589114, 0.029117, -1.880720, -0.978946, -0.123460, -0.026018, 2.003708, -0.417247, -0.606338, -2.203148, -0.299681, 0.857204, 0.669025, -0.033031, 1.993445, 1.121462, 1.489567, -0.792721, 1.321249, 3.287674, 0.039978, 2.257282, -0.596910, -0.904084, -0.060831, 1.852228, -0.394250, 1.076742, -0.088779, 1.990819, 1.575973, -0.875746, 0.935243, -0.142373, -1.544067, -0.798184, -1.647026, -0.446503, -0.556194, -0.094823, -1.243152, -0.444310, 0.467968, 0.399205, -0.060037, 0.737509, 1.262869, -0.291744, 0.374143, -0.538086, -0.352159, -0.919840, -0.830125, 1.258766, -0.444388, -0.039515, -0.982017, 0.099574, -0.232459, 0.441622, 1.136831, 1.307288, -1.142611, 1.320275, -0.137082, -0.522428, 0.354475, -0.212742, -1.219617, -1.323455, -0.925323, -0.532090, 0.055700, 0.582188, -0.415970, -0.267777, -0.160409, -0.699211, 0.780755, -0.019053, -0.416226, 0.852242, -0.879459, 0.864873, -0.285035, 1.696672, -1.156139, 0.551668, -0.178533, 2.023559, 0.451505, 0.693827, 2.408724, -1.197408, -1.144532, -1.841984, 0.102629, -0.870780, 0.971014, 0.758096, -1.302410, 1.331574, -1.067407, 0.888551, -0.440135, -0.243960, -0.069688, 0.524089, 0.510248, 0.678675, -0.503941, -0.269883, 0.309343, -1.333543, 1.434367, 0.343710, 0.627966, 0.919017, 0.320214, 1.555699, 0.370422, -0.216896, 0.830845, 1.007234, 0.865942, -0.279575, 0.412968, -0.016744, -0.862565, -0.654119, 1.351336, -0.126698, -0.357484, 1.853302, -1.146398, 1.017704, 0.012111, 0.004532, 1.142388, -0.301353, 0.710716, -2.303437, -1.032544, -0.712598, 0.179395, -0.040338, 0.469312, -0.492587, 1.698872, 0.569610, -1.562738, -0.442351, 1.737054, 0.888248, 0.321939, 0.067555, -3.150903, 1.211434, -0.694621, -1.166631, 0.674787, -1.562673, 2.020095, -1.669268, -1.380439, 1.948567, 0.542762, 0.282922, -0.601764, 1.531809, -1.700210, 0.341407, 0.852302, -0.209636, -1.624373, -1.127225, 1.269550, -0.103038, 1.651492, 0.618350, -2.633832, -0.295681, -0.449540, -0.666863, 0.143359, -0.391018, 0.705137, -0.831514, 0.276024, -0.763468, -0.986429, -0.241679, -0.071228, 0.728637, -0.230996, -0.505861, 2.141447, -0.372561, 1.648217, 0.043915, -0.092758, 1.057734, -0.503727, 1.321368, 0.837929, 1.587352, 1.715464, -1.422310, -0.020518, 0.008739, -1.078361, 0.397731, -1.980927, -0.187061, 0.299474, 1.022242, 0.199321, 0.342044, -0.937396, -0.420654, 1.253513, -0.078981, -1.586322, 0.169338, 0.530134, 0.410973, 0.813272, -1.350585, -0.666748, -0.331275, -0.686260, -0.499302, -0.000044, -0.977710, -0.656167, -0.768596, 1.733302, -0.079052, -0.346658, 0.096327, 0.841091, -0.315183, -0.839269, -2.140824, -0.359397, 2.221610, -1.301760, -0.598627, -1.735286, -1.872575, 0.813143, -1.467547, -0.528693, 0.218145, 1.609319, -0.658192, 0.967179, 0.238065, -1.038087, -0.207714, -0.841926, 0.947855, -0.130279, 0.174131, 0.883826, -0.419099, -0.967372, 0.761288, 0.981953, -0.359883, 0.753609, -1.500355, -0.520319, -1.197064, 1.513532, 0.860780, 0.666633, 1.041298, 0.004386, 0.714703, 0.229556, -0.216078, 0.840362, -1.280668, -0.344227, 0.344951, -0.673442, -0.013362, -1.752267, -0.586495, -0.717530, -0.824820, 0.430992, 0.272602, -2.738847, -0.471658, -1.198649, 0.177874, -0.193200, -0.600226, 0.027271, -1.178977, -1.093141, -1.239101, -0.259333, -0.891018, -2.676815, -0.907779, -0.935048, -0.124212, 1.174635, 0.550149, 0.559368, -1.799957, -0.505144, 0.112778, -1.140728, -0.634454, -1.620463, 1.526477, -1.067722, 0.116412, 0.569839, 0.405507, -0.620982, 1.177512, 0.606144, -0.986064, -0.806452, -0.830298, 1.161623, 0.069136, 0.083446, 0.189402, 0.544366, 0.247521, -0.280109, -0.389948, -1.090912, -0.471813, 0.392270, -1.720454, -0.767628, 0.059358, -0.422489, -0.506465, -1.156613, -1.145879, 0.804165, -1.220138, 0.170382, 1.108635, 0.411932, 0.450980, 0.535838, -0.711227, 2.320272, 0.167431, 0.334435, -1.284517, 0.497193, 0.237820, 0.248187, 1.126811, 0.321656, -0.209959, -0.475940, -0.123368, 0.586065, -1.041429, 0.080635, 0.904398, 1.221692, 0.674461, -1.602378, -0.947158, 0.463225, 0.047817, 0.727373, 2.459499, -0.499435, -1.649660, -0.480932, -0.480671, -1.565757, -0.114405, -0.500959, -0.218963, 0.591839, -0.293382, -0.307010, -0.092244, 0.103991, 0.336101, 1.610582, -0.474613, -0.241045, -0.033939, 1.054386, -0.049949, -0.690444, 0.468956, -0.386165, 0.215304, -0.017411, -1.037090, 2.252476, -0.491806, -0.500134, 0.393323, -0.283288, -1.204652, 0.767447, 0.493748, -0.086166, -0.285800, 1.030640, -1.022789, 1.259587, 2.034420, -1.973225, -0.762105, -1.435689, 1.365192, -1.705812, 0.449765, -0.328552, 0.265051, -1.697729, -0.707277, 0.234218, -0.773856, -0.912006, -0.166873, 0.051667, 0.025463, -1.490499, 0.456520, 0.425073, 0.322660, 0.557358, -1.401553, 0.111372, 0.453538, -1.046866, -0.174962, 0.736238, -0.648843, -0.003033, -0.435132, 0.370903, -0.021760, 0.722180, 0.754289, -1.414281, 1.194376, -1.331880, 0.599586, -0.523404, -0.216311, 0.914822, -0.624846, -2.401973, -0.938374, -1.624680, 0.018817, -0.192222, 0.446812, 0.389115, 1.824083, 0.582707, 0.400384, -0.288843, 0.749932, -0.666039, 0.159979, 0.198359, 0.666465, -0.051678, -1.696895, -0.235981, 0.807859, -0.397621, 0.710416, 2.373339, -0.640758, -2.033137, 1.751621, 0.656582, 1.416959, -0.279052, 0.950150, -2.689174, 1.501816, 1.385151, 1.683736, -1.181550, -0.404841, 0.964289, -1.563548, 0.951038, 1.643929, 0.818829, -0.838240, 0.381745, 1.488796, 0.906678, 0.174485, -1.803264, 1.124696, -0.521030, 0.899754, -0.313955, 0.051011, 0.496224, 1.483602, 0.280978, -0.364142, -0.735290, 1.195915, 0.857992, 1.088294, -0.237888, 1.323349, 0.663563, -0.572019, -1.411892, 0.992652, 0.374297, -1.730578, -1.977532, -1.171868, 0.190380, -0.733338, -0.869219, 0.320860, -0.320629, -1.938333, 0.644916, -0.330957, 0.089404, 2.667076, -0.618697, 0.538995, -1.049373, -0.483203, 0.222957, 0.602879, 1.518159, 1.312011, 0.240724, 0.312942, 0.016548, 0.804627, -0.215487, -0.070350, 2.395401, -0.401617, -1.629328, 0.342011, 1.461568, 1.651165, 0.117328, -0.834897, -0.491209, 0.716263, 2.190310, -2.148557, -2.270317, 0.409657, 0.709858, 0.347907, -2.108005, 0.158791, -0.345897, -2.262116, 0.588110, 0.046187, 1.351409, -0.664474, -0.597898, 1.394780, 0.641260, -0.258377, 0.136114, 0.823687, 1.363242, 3.439775, 1.617981, -1.646194, 0.128569, 1.650145, 0.319518, -1.012957, 0.268470, -1.098947, 1.431943, -0.663953, 1.718181, 0.624597, -1.800449, -1.293489, 0.213967, 0.434459, -0.079043, 0.310608, -0.359487, -1.183261, 0.940411, 0.923592, -0.709424, 1.066285, 0.266538, 0.430066, -0.088058, -0.177222, 0.819176, 0.845407, -0.748718, -0.029168, 0.827872, 0.052027, -0.381804, 0.564166, 1.354404, -1.306232, 0.723687, 0.870526, -0.220860, 0.790302, -0.186600, 0.074201, -2.166533, -2.273407, 1.133012, 0.645846, 0.966419, 1.074592, -0.459058, 0.242128, 1.908521, 0.468770, -1.858908, -1.246853, -1.356026, -1.294007, 1.620808, 0.463578, 0.361025, -0.648444, 0.357304, 0.745018, -1.252231, 0.151168, 0.202886, 0.590535, -1.397871, 0.549766, 1.238488, 0.595643, -0.651399, 0.877461, 0.782148, 1.399870, 2.048492, 0.099181, -2.246459, 0.683973, -0.676091, -0.135451, 1.162140, 1.407187, -0.905008, -1.511314, 0.087068, 0.914302, -0.756188, 0.275242, -1.144871, -0.021468, 1.038210, 0.642838, -0.823455, -1.438072, -2.212510, -0.484091, 0.064781, -0.514886, 0.629395, -0.559574, 1.841261, 1.795308, 0.152935, -0.817745, -0.481893, -2.206189, -1.338947, -0.525755, 0.740094, -0.416779, -0.051866, -0.140477, 0.017618, 1.171270, -0.112944, 0.770969, -0.079365, -2.653403, 0.690962, -0.102426, 0.279748, -1.058547, -0.199440, 0.984328, 0.690577, 0.024463, 0.091067, 0.087766, -1.706997, 0.274208, 0.162120, 1.091740, 0.953491, -1.075488, 0.044124, -1.463790, -0.666671, -0.253198, -0.561357, 2.079484, 1.185174, 0.058381, -0.511077, -1.082725, 1.490712, 1.232394, 0.781866, -0.023443, 2.266195, 0.193585, -0.786550, -0.545396, 1.181188, -0.812983, -0.157701, -1.858308, 0.337817, -0.477675, 0.359082, -1.215441, -0.024789, -1.379870, -0.326473, 0.620439, -2.464179, -1.283189, 0.235084, 0.366635, 0.567713, -2.107439, -0.303396, -2.203341, 0.840917, 0.322022, 0.362500, -1.737180, -1.522420, 0.021842, 0.419844, 0.434122, -1.642678, -1.262137, 0.145526, 1.337236, -0.736673, -1.355035, 1.476444, 0.728436, 0.518101, -0.267837, 0.003450, -0.243332, -0.003724, 1.030590, -0.172128, -0.960096, -0.099848, -1.773236, -0.966497, -0.927741, 0.065720, -0.005882, 0.104078, -1.193369, -0.520395, 0.625481, 1.618574, 0.803512, 0.403388, 1.067878, -1.334064, -1.028568, 0.939435, 0.124328, 0.571436, 0.460883, 0.761510, 0.574544, 1.618679, 0.328977, 0.485560, 0.712269, -0.850522, -0.779295, 0.225514, 0.075165, 1.831840, 1.706226, 0.448230, -0.395654, 0.468570, -0.459502, 0.048035, 0.179132, -2.024933, -0.778500, -0.024910, -0.056727, -1.214309, 0.131670, -3.436132, -0.145698, -0.264020, -0.795006, 0.841062, 0.500850, 0.217002, 0.541395, 0.811649, 1.245669, -1.704844, -0.835023, -0.168562, 0.648449, 0.020506, -0.927047, -0.098575, 0.445402, -0.961005, -1.465036, -0.299606, -1.145907, -0.494920, 0.658173, 0.547647, 0.124272, 1.454487, -0.084514, 0.591658, 0.085791, 0.753019, -0.412343, 0.962956, 0.345324, 0.984944, -0.633104, 0.602216, 1.334843, 1.882075, 0.905569, 1.757971, -2.257653, 0.457052, 0.080640, 0.798912, -1.022106, 0.064268, 0.489815, -0.445142, -1.110424, 0.321831, -1.445311, 1.136440, 1.473968, 0.571615, 0.192500, -1.035779, -0.040952, -0.704274, -0.932392, 0.722393, -0.608450, -1.029114, 1.191816, 0.132940, -0.481317, 0.425302, -1.055051, 0.668526, -0.825673, 1.669327, -1.829270, -0.708688, 0.232800, -0.811107, -1.172361, -0.167843, -0.184392, -0.816665, 1.759415, -0.533338, -0.371980, 0.158019, -1.165513, -0.918423, 0.144973, -0.926433, -0.663851, -0.174384, -0.002755, 1.093738, -0.189765, -1.337472, -0.108016, 0.913185, -0.467128, 0.259404, 1.007114, 0.602602, -0.834486, 0.555008, -0.252861, 0.185505, 0.424650, -1.227661, 0.504833, 0.463041, 0.626737, 0.478988, 2.605762, -0.691744, 0.111355, 1.930495, -0.433300, -0.214195, 0.206447, 0.768025, 0.694181, -0.196893, -0.017800, 0.850052, -0.626554, -0.312351, 0.424742, -0.294981, 0.371840, 0.201778, -1.662085, -0.670763, -1.436557, -0.989866, 0.014246, -0.353222, -1.314465, 0.257601, 0.157545, -0.276880, 1.121192, -1.079425, 1.421701, -0.139736, 0.288998, 0.149853, 0.451022, -0.255929, 2.473699, -1.935864, 0.275262, 0.227057, 1.305209, -0.572205, -0.701282, -0.450194, 0.283811, 0.603841, -0.196456, 0.393825, 0.891817, -0.928144, 0.173677, -0.854916, 0.017298, -1.709470, 1.081188, 0.642668, 0.099382, -0.551329, -0.135934, 0.085002, 1.827900, 0.319468, -0.621182, 0.294935, 0.050096, 1.184690, 0.695027, -1.661383, -0.675256, 0.293675, -0.894962, 0.364993, -2.185117, 1.120482, 0.371708, -0.208926, 1.286989, 0.190499, -0.151986, 1.698366, -0.105807, -0.104150, -0.608793, -0.648537, 0.826642, -0.202067, 0.147459, 0.237840, 0.995962, -0.454075, -0.961237, -0.664703, -0.789917, -0.578240, -0.430844, 1.039731, -0.582424, 0.303336, 1.179450, -1.173943, -0.251944, 2.543380, -0.000361, -0.335361, -0.997128, 0.870367, 0.879212, -0.159846, 0.327563, -0.630535, 0.050660, 1.673423, -0.501462, -0.548337, -0.306690, 0.860757, 1.229051, -0.297141, 1.729393, 0.378090, 0.086725, 1.084410, -0.618156, -0.187147, 0.915609, 0.454319, 0.515985, -0.480904, -0.186053, 1.190614, -0.212529, 0.076557, 0.137305, 1.246531, 0.706390, -2.179899, -1.056889, -0.537744, -0.717311, 0.541335, 0.239253, -1.123087, 0.667909, -0.326050, 0.406693, 1.557978, 0.217068, -0.451278, -1.812463, -0.956705, -0.028343, -0.456260, -0.280023, -0.142329, 0.772370, 0.976835, 0.834154, -1.733778, 0.436757, -0.974528, 0.740157, 0.355817, 0.442890, -0.966332, 0.453354, -1.158812, -1.874002, 1.009193, -1.197822, -0.239135, 1.155273, -1.305068, 1.565502, -0.724722, -0.236354, -1.006594, 0.631630, 0.554990, -1.651237, -1.836109, 1.300771, -0.790947, -0.293778, 0.605217, 1.405822, -0.838216, -0.788291, 0.360449, 0.206337, -0.446441, 0.371946, -0.259371, 0.763149, -0.680418, 1.333118, -1.955045, -1.497629, -1.196057, -0.860041, -0.288517, 0.339154, -0.259594, -0.288091, -0.202422, -1.650398, 0.423918, -0.516505, -0.110272, 0.074489, -0.133430, 0.036547, -0.590237, 0.722538, -0.037500, 0.595687, 1.301194, 0.539928, 1.128537, -0.358490, -1.227859, -0.722765, 2.643561, -0.970520, 0.033205, 0.767576, 1.021219, 1.304549, 0.374458, -1.228257, 0.342329, -1.798144, -0.987245, 0.015354, -0.929431, 0.438887, -0.346891, -2.596802, -0.679138, 1.182198, 0.590559, -2.525620, -1.203413, 0.260832, -1.001964, -1.229975, -0.856638, -1.019879, 0.613295, 0.558500, -0.979434, 1.529143, 0.447377, 0.070981, 0.208336, -0.350994, -0.378125, 0.225485, 0.085846, -2.094957, 0.940803, 0.500764, 0.564195, -2.035375, -0.252716, 1.312252, -0.521089, 0.082993, -1.512125, -0.766039, -0.200841, -0.475572, -0.342635, -0.527794, 1.229254, 1.087417, 0.039528, -1.466036, -0.049562, -0.298546, -0.194214, 2.249053, -1.733147, -0.749027, 0.907167, -0.303794, 1.154468, -0.492397, 1.176597, -2.139882, -0.846601, -1.315356, 0.083957, 0.411948, -1.029262, 0.993368, 0.661559, 0.479303, 0.601968, -1.058455, -0.847930, -0.539022, 0.870900, -0.632048, 0.894153, 1.169579, -1.637062, -0.436101, -0.597073, -1.712859, -0.494227, 0.512825, -0.206363, 0.477942, -0.206988, 0.447719, 2.000844, 0.286922, 0.180665, -0.756903, -0.448216, -0.406262, -0.389148, -0.149763, 0.459565, -1.836488, 1.594942, 0.966956, 0.962436, -0.126136, -0.656063, 0.927969, 1.813925, 0.042279, 0.097526, 1.066342, -0.805341, 0.722017, 0.559700, -0.190941, -0.610061, 2.479445, 0.267855, 1.156298, 1.379365, -0.316955, -1.756286, 0.159540, -1.106407, -0.181472, 0.467779, 3.881110, -0.814203, 1.608217, 0.344177, 0.082127, -0.430388, -0.149025, 2.451355, 0.098491, 0.681260, 0.027154, 0.282680, 0.320790, -0.289530, 1.018455, 0.162355, 0.348521, -0.198541, -0.763682, 2.190094, -0.977213, -1.102529, -1.470571, 0.181197, -0.428577, 1.098092, 1.161511, -0.973632, -0.448085, 0.472705, -0.428430, -1.344962, -1.583909, -1.576940, -0.435805, 0.407975, 1.490834, 0.730605, -0.345826, 0.186474, -0.154189, 0.090265, 2.304704, 1.110534, -1.515135, 0.321071, 2.085183, -1.174536, 0.519364, -0.620756, 0.567592, 1.755693, 0.560803, -1.218727, -1.150374, -0.695434, 0.451208, 0.021597, 1.005622, 1.403142, -0.143760, 0.326634, 0.022159, 0.507346, -0.087080, -1.195422, -1.421005, -1.083555, 0.839680, 0.352635, 2.199085, 0.074103, 0.486078, -0.148642, -0.509557, -0.968089, -0.250414, -2.007255, -0.801105, -1.433822, 0.317556, 0.077305, 1.163333, 1.608155, -0.278336, -0.757547, 0.562108, 0.133409, 0.239736, 1.615835, 0.921984, -1.054160, 0.527437, -0.019235, -0.415810, 0.127529, 1.215723, -0.188579, 1.424086, -0.869814, -0.016905, -0.023514, 0.728225, -1.136655, 0.750249, -0.783698, 2.295655, -0.314712, 0.711048, -0.250175, 0.689027, -0.175198, 0.088792, 1.456216, 1.129938, 0.475921, 0.461332, 0.265873, 0.380694, 0.803964, 0.614613, 0.685253, -1.718335, -1.548663, -0.425401, 1.903354, -0.393637, -0.412113, -1.033301, -0.220704, -0.055682, 0.358420, -0.809632, 0.470875, 0.930339, 0.683889, -0.812060, -0.732151, -0.161283, -1.164674, 0.324832, -0.491132, 0.088382, 0.087759, 1.183327, -2.089491, -0.924842, -0.899455, -0.702532, 1.347476, 0.472719, -0.372256, -0.088009, 0.551401, 0.820686, -0.778259, -0.479046, 0.290712, -1.605729, -2.054033, -0.985330, 0.126094, 0.944302, 1.514579, 0.398192, 0.023832, -0.434487, 0.211508, -1.191953, -0.582206, -1.550084, 0.618390, 1.529920, -1.376608, -0.414920, 0.655581, -0.963969, 0.333718, 0.015383, -1.966964, -1.174084, -1.225493, -0.943407, -0.223336, -0.528854, 0.437253, 1.352952, 1.047220, -0.251061, -0.036292, 0.244074, -1.069586, 0.847027, -0.435766, 0.949762, -0.704220, 0.201354, 1.815198, 0.505352, -1.432503, 1.443172, -0.230671, 0.943893, -1.324637, -0.478135, 0.546274, 0.446037, -0.400259, 0.495547, -2.142255, -0.443077, 0.298823, 1.859633, -0.100873, 0.484910, 1.186559, 0.138411, -0.598286, 1.522516, -1.704385, -1.815140, -1.603270, -0.015421, 0.313613, 0.265704, 1.449335, 0.576547, -1.156029, 1.229269, -0.490391, 1.326358, 0.427033, 0.559796, -0.657581, -1.538901, 0.083866, 0.283154, 1.204485, 0.593475, -0.773003, 0.610722, 0.746327, -0.476278, 0.419826, 1.264418, 1.384579, -0.013489, -0.177310, -2.004258, 0.277125, -0.009929, -0.707654, 0.825506, 0.310478, 1.041541, 0.913745, -0.996904, 1.029685, 0.295205, -0.982660, 0.340363, 0.450080, 0.407264, -1.054481, -0.856208, 0.738255, -0.840641, 0.876804, -0.711741, -0.060818, 0.118416, -0.345675, -0.248558, 0.093787, 1.513708, 1.483183, -0.920291, -2.413891, 1.702751, 0.669388, -0.601417, 0.149959, -0.766311, 1.146601, -0.521395, 0.456303, -1.266070, -0.599791, 0.164256, -1.212297, -0.620560, -0.219233, -0.586247, -0.965135, 0.085903, -0.701241, 1.223255, 2.754263, 0.025770, 2.427701, -1.326918, -1.660621, -2.095936, 0.391506, 1.351208, 1.075658, -1.254910, -0.393265, 0.629043, -0.383695, -0.089478, -0.593946, -0.277314, 0.458572, -2.399272, 0.092314, -0.040334, -0.115827, 1.200069, 0.472518, -0.467431, 1.243162, -0.046362, -0.649520, 0.430953, -1.462685, -0.081381, 0.199664, -0.577394, -0.904788, -0.394129, -0.217192, -0.928855, -1.165942, 1.195081, -0.742787, 0.176280, -0.701140, 0.082035, 0.388457, -0.315915, -0.789743, -0.400897, 0.040482, -1.058031, 0.202164, -0.956372, -0.216798, 0.393916, -0.506817, 0.102799, -0.007515, 0.517083, -0.684058, 0.254546, -0.276274, 0.754356, 1.252259, 0.549741, 0.704992, 0.178287, 0.559461, -0.620493, -1.645242, 0.236592, -0.601707, -0.304022, -1.517820, 0.195804, 0.382050, 2.206743, 1.195746, -0.727297, -1.645774, -0.935245, -1.778180, 0.114269, -0.312176, 0.341870, -0.083056, 0.259290, -0.531841, -1.805558, -0.438805, -0.808322, 0.388300, 0.708307, -0.326327, -2.258091, -0.729833, 0.202822, -0.159538, -0.271626, 0.099357, 1.107187, 0.963453, 0.091113, 0.746645, 0.159999, 0.395720, 1.342128, -0.827157, 1.829368, 0.381451, -0.590199, -0.637061, -0.719347, 1.870901, 0.870605, -1.404343, -1.012266, -1.196259, -1.105421, 0.056348, 1.134959, -1.341503, -1.402547, 0.252173, -0.542601, -0.052357, 0.215905, 0.273448, -0.415359, 1.350430, -0.551576, -0.829563, 0.290155, -0.544392, 2.608920, 2.069528, -0.183427, 0.800053, -0.400553, 1.092986, 0.902542, -1.372536, 0.786001, 0.009701, 2.741430, 1.055390, -0.763248, -1.619555, -1.374887, 0.403051, -0.553829, 1.541312, 0.456185, -1.010896, 0.377097, 0.888638, 1.143983, -0.016352, 0.455733, -0.532150, 0.507680, 0.098419, 0.503790, 0.953540, -0.019465, -1.270815, 0.594566, -0.719709, 0.925514, 0.330566, 1.346135, -0.186297, -1.488876, 0.757388, 0.344839, -1.328167, 0.549608, -0.435079, 0.340575, -0.023966, 0.554511, -1.107000, -0.541496, -1.656070, 0.488550, -1.402533, 0.685209, -0.148812, 0.505720, 0.040675, 0.134768, 0.657028, -0.155591, 0.344543, -0.612301, 1.477145, 2.190825, 1.471012, -2.159504, -0.245524, -0.280004, 2.077043, -0.817895, 1.034295, -0.486051, -0.433361, -0.744326, 0.571373, -1.058170, -0.407768, -0.061269, -0.337884, 0.006545, -0.589535, 0.318917, -0.034954, -0.521962, 0.974166, 1.288732, 2.253136, 1.002043, 0.061397, -1.305229, -0.068759, -1.732967, -1.819716, 0.762548, 0.663048, 0.148795, -0.074821, -0.983635, 0.545044, 1.398136, -0.103645, 0.554306, 0.976471, -0.008717, -1.046914, -1.093441, 0.142877, 0.698689, 0.207773, 1.064010, -2.337609, 0.288057, 0.918415, -2.263501, 1.489176, -0.058540, -0.471190, 1.140931, -0.529683, -0.829426, 0.508744, 0.543767, -0.544351, -0.879347, -0.398541, 0.895050, -0.696186, -0.559710, 0.170483, 0.467215, 0.292191, 0.657371, 1.346734, 0.528605, -0.553434, -1.138393, 0.907399, -0.672679, 0.542048, 0.060942, -0.466661, -1.803535, -0.131198, -0.446043, -1.230124, -0.729890, 1.525117, 0.097931, 0.689816, -0.005315, -1.507717, -0.988605, -0.206080, 0.981274, -0.575240, 0.725074, 0.167128, 1.083990, 0.205176, 1.194026, 0.683780, -1.721597, 0.579266, -0.837492, -0.919477, -0.179042, -0.911529, 0.214047, -0.519153, 0.476155, -0.542609, 0.810156, -1.158795, -1.863170, 1.882912, -1.268012, 0.636504, 0.130003, 0.142362, -0.112926, -0.002706, 0.390669, -0.369251, -0.091393, 1.488014, -0.050778, -0.247821, -1.420317, -0.044913, 1.873265, -2.123026, -0.350182, 0.875381, -0.330496, -0.688645, 1.368454, 0.577202, 0.194538, 0.334533, -2.313260, -0.914488, 1.123789, -1.637715, -1.099386, -0.646859, -2.284147, -0.355657, 0.846270, 1.978013, 0.403829, 0.520546, -0.558465, -0.485159, 2.060744, -0.378916, 0.349144, -0.700467, 0.638671, 1.489930, 0.354398, 1.362643, 0.288038, 0.624081, -0.587916, -0.652340, -0.077268, -0.916258, -0.371227, 0.017455, -0.868597, -0.575030, -0.216748, -0.819772, -0.703140, -0.427428, 0.074671, -0.804929, 0.671625, -0.733333, -0.004246, 1.763025, -0.819370, 0.808329, -1.264302, 1.075212, -1.260927, -0.673946, -0.645416, 1.413717, -0.068014, -0.718522, 0.260425, -2.068432, 1.731001, 0.435510, 1.171530, 0.550506, -1.068483, 1.850538, -1.211278, -0.825417, -1.205693, -0.420082, -0.697188, -1.181914, 0.816290, 0.711240, 1.255630, 0.167932, 0.209640, -1.368034, 0.196686, 0.087783, 0.925538, -0.091152, 0.444935, 1.683163, -0.344514, 0.967196, 1.189317, -0.839257, -1.206727, 2.114550, 0.485974, 0.502732, -0.636945, -0.433245, 0.808100, -0.382502, 0.578872, -0.246123, 0.453423, -0.504004, 0.341060, 0.347787, -1.167599, -0.854375, 1.227634, -0.266398, 0.537972, -0.273573, -1.346838, -0.610977, -0.722934, 1.780737, -0.151951, 0.058041, 0.019867, -0.398723, 1.344600, 0.289544, -2.695957, 0.738540, -0.437836, 1.610160, -1.216753, -1.200065, -1.619791, -0.079505, -0.487144, -0.623184, 1.457724, 0.611235, 0.080989, -1.180624, 0.379649, -0.792693, -0.221676, 0.961535, -0.166750, 1.253906, 0.128487, -0.213935, -1.479114, 0.163525, 1.722353, -0.958783, 0.519339, 1.160076, -0.178481, 0.930287, 0.313077, 1.419353, 1.589867, 0.980998, 0.575129, 1.618510, -0.270627, 0.999790, -1.271539, -0.166624, 0.926740, 3.095187, -0.025565, -0.386711, 0.160217, -0.508267, -0.963144, -0.336637, -0.473495, -0.883264, -2.795036, -0.546304, -0.618398, 1.928046, -0.158577, -0.962569, -0.108699, 0.179481, 0.371330, 1.108388, 0.363148, -1.230862, 0.173506, -0.334006, 0.003449, 1.000635, 0.453458, 1.021398, -0.928917, -1.061935, -0.613701, 0.781315, -1.694132, 0.299375, 0.037343, 0.221270, 0.433471, -0.489390, 1.298061, 0.004571, -1.023451, 0.569854, -0.931506, 0.359970, -0.053870, 0.447212, -1.473702, -1.440793, -1.141564, 0.676373, 0.560454, 0.707826, 0.232312, -1.286593, 0.358502, -1.424928, -0.715896, -0.883201, -0.083736, -0.341216, -2.025370, 0.972403, -0.967026, -0.856227, 0.763017, -0.717609, 0.558452, 2.331326, -2.185278, 1.216678, 1.631824, -1.504144, -1.139019, 0.266957, 0.246443, 0.591120, 0.252712, 0.610343, 1.649399, -0.097235, -0.251809, -0.384961, 0.422768, 0.495394, -1.686420, 1.448270, -1.103798, 0.057818, 0.356002, -0.526546, -1.470494, 1.406152, -1.890332, -0.493580, -0.655663, 0.752019, 0.219506, -0.161001, 0.236042, -0.532814, -1.257640, 0.098143, -0.485976, 1.117989, 0.786840, 0.045533, 1.206549, 0.868139, -0.798071, 1.433796, 1.303382, -0.280311, 0.770341, 1.479689, -1.273691, -0.697336, -0.258092, 0.094683, 0.632330, 0.191849, -0.722923, 0.209976, 1.030248, 0.522288, -1.037337, -2.260973, -1.031154, 0.292078, 0.078886, 0.758000, 0.319038, -1.593856, -1.976969, 1.310682, 0.481242, 1.749868, -1.066534, -0.811970, 0.257715, -1.052848, 0.358879, -2.254643, 0.233903, 1.661126, -0.995321, -0.286914, -0.679149, 0.993148, -1.603131, 1.339072, -0.922202, -1.364625, 1.608158, -1.022875, -0.874026, -0.130917, -0.454188, 0.042340, 0.849575, 0.998991, -0.730997, -0.103818, 0.243063, -0.420793, -0.735103, 0.761837, 0.952681, 0.396939, 0.738157, -0.083109, 0.555429, -1.360230, 0.080543, 0.230652, -0.075967, 0.352418, 1.300434, -0.588970, 1.083194, 0.498871, 0.202697, -1.643582, 1.297346, 0.150473, 0.504489, 0.189814, 0.816378, -0.980351, 0.391268, -1.646284, 0.888691, 0.480824, -0.633339, -0.749756, -1.466434, 1.066277, 1.272800, -0.743119, -0.117425, -1.033807, 0.653002, -0.320177, -1.872822, 0.353430, -1.029850, 1.590908, -0.374817, 0.965611, -0.686057, 2.021948, -0.083724, -0.648622, -0.553703, 0.195509, 1.407376, -0.879802, 0.475200, -0.109079, -1.343161, -0.193221, -1.697834, -1.434656, 0.294200, -1.346909, -1.156519, 0.532181, -0.185759, 0.677221, 0.917804, -1.791535, -0.524742, -0.558835, -1.938489, 0.266458, -0.822866, -0.917252, 1.113242, -0.971488, 0.826269, -0.844720, -0.238222, -0.624487, -0.274190, -1.627537, -1.373102, -0.734495, -0.723230, -0.768714, 1.460737, 0.162085, -1.127694, -1.694918, 0.646904, 0.389383, 1.617150, 0.983095, 2.256056, 0.420384, -0.907838, 1.346546, 1.525255, 0.196363, -1.984704, 0.830593, -0.102054, 0.029580, -1.152183, 0.399252, 0.714363, 1.491191, 0.659142, 0.173175, 1.920284, 1.163907, 2.138160, -1.584565, 1.090690, 0.965141, -0.006876, 0.772702, -0.618607, 0.150329, -0.830562, 1.416519, 0.319361, 1.253456, 1.358354, -0.782575, 1.446175, -0.067706, -2.334882, 1.320798, -1.249280, 0.013475, 0.781691, 1.240064, 0.251174, -1.210035, 0.660143, -0.247212, 0.444268, -1.394792, 1.369103, 1.024364, 0.840645, -1.473354, -0.269432, 0.052182, 0.898879, 0.821979, -0.134890, 1.429582, -0.582538, -0.748151, -0.470300, -0.127761, -2.497673, 1.287354, -2.515359, 0.275239, 1.191146, 0.289007, 0.666490, 0.261252, 0.086265, -0.457872, 0.055435, 1.460266, 0.367337, -0.648796, -0.623580, 1.488212, -0.392563, -1.071432, -1.067981, 0.846690, -0.710225, 0.170723, -0.362508, -2.222969, -0.070669, 1.741746, -0.685610, 0.112340, -0.987062, -1.253738, 1.447612, 0.658723, -0.912477, 0.502209, -1.523860, 0.675125, 2.114939, -0.492966, -0.606301, 1.302855, 1.161463, 0.154469, -1.064928, 0.913568, -0.198968, -0.657884, 0.667496, -1.431701, 0.665475, -0.380523, -1.238291, 0.361883, -0.983519, 1.008972, 1.293861, 0.513494, -0.836726, -0.453269, 2.404221, 0.866311, -0.240651, 1.378030, -0.679602, -1.157365, -2.617810, -0.787232, -0.446120, 0.147320, 0.930046, -1.242281, 0.655075, -0.881162, -1.100827, 2.551022, -0.570225, 1.876579, 0.617867, 1.664603, -0.079147, 0.377650, 0.693702, -1.058116, 2.353161, -0.512432, 0.929362, 1.021207, -0.125068, -0.365395, -1.861506, -1.668203, 1.021039, 1.081496, 1.765793, 1.062593, 0.046025, -0.782797, 0.261323, -1.608353, -0.309767, -1.279847, -0.869277, 1.465411, -0.327114, -0.021511, -0.927904, -2.009585, -0.733882, -0.920428, 0.317701, 0.571201, 0.870829, -0.425450, -0.306367, 1.139129, -0.502143, 0.279263, 0.484645, 2.004383, 0.633851, -0.047023, 0.200902, 0.201886, -0.696526, -0.300595, 0.511508, 0.654121, -0.097666, -0.322094, -0.610046, 0.121770, 0.071631, 0.676976, -1.627126, 0.719690, 1.304001, -0.768672, 0.257296, -0.089022, -0.490937, 1.048144, -1.280689, 0.454322, 0.447600, -0.711054, -0.051485, -0.361274, -0.722115, -1.164260, -0.264290, -0.542931, 0.330004, 0.191781, 0.741959, -1.808822, -1.646506, 1.957869, 1.102139, 1.101276, -0.883624, -0.162952, 0.289146, -0.892247, -0.463600, -0.279927, 1.559605, -1.053084, -0.602776, 0.239181}, - { -0.546702, -3.479280, 1.281969, 0.204100, 1.813676, 0.490487, -0.757911, 0.372871, 0.197252, 1.444845, -0.096162, 0.679587, 1.275703, -0.553738, -0.712873, -1.005727, 0.639693, 0.402653, 2.190025, -0.096112, 0.135051, -0.192119, -0.564087, -0.070908, 1.437546, -0.650103, 0.479782, 0.649491, -0.381469, -2.525810, 0.610627, -0.877901, 0.172105, -0.874076, 1.064254, 0.384748, 0.709794, 0.852931, -0.475824, -0.816417, 0.253611, -0.082728, -0.836497, 1.426847, -0.192527, -1.648553, -1.531636, -0.333416, 0.151798, -0.890083, -1.065512, -0.679672, -1.122985, 1.362803, 0.269560, -0.822026, -0.241838, 2.159807, 0.214297, 0.266953, 0.169955, -0.792499, -0.804016, 0.728123, 1.767786, -0.184180, -0.034747, -0.868238, -0.524344, 1.211457, -0.248566, -1.203138, -1.234641, -1.392020, 1.760491, -0.575578, -0.065623, 1.757267, -0.746238, -0.889374, -0.718316, 1.611904, 0.865422, 0.689008, 0.215285, 0.564133, -0.617023, -0.432340, -0.221561, -2.667309, -0.109523, -1.117582, 1.575537, 0.241379, -1.533468, -2.880974, -0.456555, 0.827512, -0.278596, -1.409184, -1.525921, -0.803483, 0.296735, -2.118190, 0.445919, 0.940326, -0.416815, 1.986358, 1.433205, 0.635738, -1.271075, -1.253477, -1.740433, 0.326395, 0.364876, -1.942431, -1.406632, 2.480764, 1.167179, -0.276924, 0.892614, -0.779999, -0.981326, -1.274167, -1.555269, 0.664020, 0.848989, 0.244536, -0.654083, 1.135018, 1.096046, 1.189611, -0.157559, 0.124747, -0.126091, 0.896882, -0.697857, 1.199272, -1.212372, 0.615753, -1.292237, 1.974023, -0.044392, -2.420623, -0.533192, 0.568319, 1.029759, -0.999752, 1.841177, 1.284183, -1.573000, 0.937218, -1.994672, -1.801006, 0.335549, 0.968059, 0.128210, -0.154791, -0.908874, 1.292391, 3.102638, -0.713690, 0.705246, -0.358244, -0.813543, -0.789011, 0.238518, 0.630661, 0.423279, -1.107202, -1.379962, -0.279946, 1.362005, -1.570006, 0.805090, -0.352570, 1.461932, -1.523718, 1.334782, 0.435690, -2.180466, 0.640995, -1.130684, 0.764881, 1.175751, 1.360450, -0.108873, -0.358859, -1.354791, -1.782403, -0.587183, 0.176936, 1.988700, -1.805753, 1.527215, -1.310170, 0.237209, -1.042104, 0.011365, -0.083505, -1.313460, 0.440248, 0.011818, -1.581587, -0.868283, 1.138763, -0.281074, 0.509712, 1.105508, 0.564441, -1.108557, 1.348649, -0.507283, 0.750773, -0.388684, -1.544325, -0.007086, 1.354264, -2.308678, -0.663084, -0.267921, 0.011330, -0.017436, -0.572162, -0.819924, 0.225857, 1.723824, 0.380895, 1.586911, 1.954356, -0.236418, -0.197161, 0.127556, 1.509263, -1.728399, 0.093941, -1.688926, 0.165151, -0.600337, 0.119865, -0.787766, -0.206559, 1.574906, -0.187367, 0.263209, -1.411076, 2.901291, -0.308304, 0.254285, -0.629414, -0.479781, 0.146673, 0.946288, 0.967090, -0.217460, -0.018999, 0.047707, -0.671097, 0.908278, -0.543224, -3.080528, 1.168676, -0.556091, -0.096008, 1.158467, -0.351752, 1.146450, 1.960713, 0.490796, 0.009053, 0.588831, 1.038268, 0.013681, -0.760712, -1.341535, 0.811241, -1.001098, 0.738826, 0.899320, 0.317043, -0.519889, -0.695239, 0.685640, 0.053863, 0.386357, -0.075529, 1.597041, -0.311404, -0.399053, 0.773792, 1.103177, -0.599354, -0.236869, -0.088272, 0.257239, 0.348416, 1.001748, 0.565105, 1.043244, 0.281017, 0.717559, -0.444827, 1.439773, -0.507837, -0.314224, 0.455111, -0.729746, -0.270938, -0.083328, 1.116038, 2.165294, -0.143620, 1.244648, -1.017341, 0.720974, 0.714124, 0.607361, -0.416470, -0.415471, 0.114658, 0.643928, -1.607350, 1.734378, 0.933473, 1.277323, 0.551227, -0.560843, 1.069275, 0.568155, 0.499344, -0.674527, -0.473248, -0.106183, -0.714342, 1.486905, 0.822615, 0.392550, -1.412507, 1.320822, 0.918009, 0.828928, 0.173972, -0.937988, -0.346022, -0.414737, -0.095469, 0.910329, -0.384739, -0.570791, -1.272898, -1.042226, 1.457786, -1.079185, 1.087736, 0.126176, -1.041015, 0.783395, -0.194132, 0.518606, -0.592545, 0.860658, 0.658174, -1.814432, -1.255922, -0.612641, -2.107119, 1.660166, 0.668104, 0.456806, 0.582133, -1.299312, 0.811868, -0.516781, -0.108662, 1.156318, 0.176076, -0.464090, 0.206290, 1.730442, -0.405242, -0.239455, 0.270996, 0.891669, -0.239943, -0.254048, 0.495735, 1.004645, -0.772280, -1.074777, -2.310260, -0.391156, 0.612754, 0.178409, 1.109788, -0.000639, -0.399230, 0.671902, 1.169714, 1.531017, -0.219472, 0.780675, 0.575824, -1.181746, -0.628768, 0.654607, -0.073733, -1.096885, 0.740839, 0.990603, -0.485555, 0.517071, 1.280939, -0.799209, 0.053889, 1.088144, -0.418205, 0.953869, -0.309487, 0.538600, 0.806603, 1.122140, 0.223117, 0.837854, 1.060827, -0.711095, 0.835888, -0.600026, 0.484749, 0.208810, -0.255554, -0.108948, -0.404232, 0.641512, 1.228912, 0.881007, 0.997146, -0.745469, 0.099853, 1.126967, -0.759049, -0.982529, 1.672569, 0.000626, 0.884397, 0.136759, -0.640649, 0.333578, 0.078262, -0.492754, -0.048147, -2.078400, 0.153680, -0.621102, 0.745186, 0.433573, -0.853499, -0.754126, 2.523566, -0.519786, 2.478657, -0.320310, 1.390442, -0.579831, 0.575781, -0.877787, 1.759696, -0.082488, -2.198108, 1.634852, 1.086027, 0.028339, -0.515230, -0.182139, -1.419449, -1.480705, -0.136671, 1.531879, -0.589691, -1.309580, -0.163627, 0.024708, 0.734130, 0.873181, -0.272713, -0.548532, 0.183101, -0.497299, 0.809498, -1.450759, -0.117722, -0.219132, 0.292452, -1.904197, 0.143579, 0.116271, 1.214655, -0.640343, -0.630937, -0.209910, 0.340909, 1.171140, 0.636831, -0.616606, 0.008119, 1.572993, -0.334718, -1.800502, 0.156949, 0.405236, -0.724222, 0.483722, -1.819836, -0.691741, -0.279210, -0.388509, 0.668926, 0.889858, -0.150314, -0.543959, -0.176981, 1.987931, 0.855049, 0.529252, -0.845001, -0.989239, -1.421062, -1.327491, 1.673545, 1.458873, -1.592869, -0.822923, -0.883967, -0.376208, 0.320181, -0.471279, 0.549328, 1.529936, -0.167083, -2.698047, -1.965089, -1.552776, -2.073594, 0.240863, -1.637739, -0.491277, -0.879370, 1.112104, 0.544278, 0.613885, 0.737477, 0.839379, 0.321677, 0.769763, 0.893266, 1.722090, 0.167345, 1.445776, -0.629170, -1.240548, 0.678559, -0.581255, -1.027003, -0.207990, -0.396461, 0.452000, 0.127755, -0.443898, 0.297728, -0.931179, 0.967847, -1.298123, -0.906806, -0.218328, -0.312308, 1.082331, 0.397821, 2.220063, 1.565924, 1.189632, -0.713416, 1.600261, -2.119111, 0.282426, -0.460493, -0.236223, -1.518592, -1.512269, -1.084260, 1.143492, 1.390114, 0.516777, -0.111318, -0.194051, 1.032500, 0.327746, 0.286373, 1.096142, 0.686950, 1.591864, 0.373304, -1.226966, -0.990414, -1.138548, -1.688668, -0.655515, 0.937867, 0.691856, -0.747645, -1.283800, 0.647234, -1.248964, 1.903738, -0.838187, 0.189007, -0.333875, -1.432477, -0.439429, -1.051654, -0.745071, 1.493812, -1.260792, -0.880455, -1.807662, -0.215741, -0.610704, 0.419419, -1.032236, -1.052457, 0.665854, 0.977798, -1.088042, 0.841676, -1.244256, 0.699423, 0.458182, 0.074936, -2.040297, -0.406160, -0.134868, -1.317370, -2.233015, -0.488203, 0.187009, -1.416606, 1.812506, 0.388035, 0.865895, -1.469839, -1.644285, 0.843576, -0.790269, -0.302565, 0.436191, -0.514398, 1.184170, -0.656740, 1.712983, -0.052247, 1.106618, 0.550236, 0.792605, 0.006270, -0.719713, -0.830699, -0.333360, 1.245278, 0.641135, 0.246580, -0.308070, -0.565285, -2.584497, -0.362588, -0.074127, -0.213462, 0.075311, 0.166592, 0.859304, -1.146299, -1.166986, 1.688527, -0.738788, 0.600389, -0.128198, 0.344568, -0.741380, -0.731147, -0.144513, 1.368747, 2.399508, 0.886127, 1.358408, 0.118258, -0.094923, -2.378642, 0.755630, 0.854068, -0.936919, -0.625229, -0.677522, -1.245193, -0.335134, -0.252879, -0.211951, 0.055112, -0.783280, -0.618385, -0.958108, 0.536541, -0.136982, -1.311414, 0.619876, 0.620852, 1.744741, 0.261075, 1.440116, 0.631201, -1.079088, -0.108566, 0.746522, 0.998224, -0.513033, -0.671468, -0.155251, -1.946431, 0.560747, -0.379248, -1.062482, 0.127920, -0.649031, -0.126300, -0.574007, -1.324696, -0.421767, -0.274581, -0.281393, -0.552640, -0.864856, 0.672566, 1.154413, 1.374227, 0.980392, -0.084116, 0.512321, -0.876715, -1.144675, 0.122608, -0.103457, -1.369081, -0.637590, 0.053352, 0.962521, -0.776396, 0.223998, -0.428119, -1.305058, -0.783310, -0.120336, 1.644206, 1.971693, 0.866150, -1.486048, -1.154154, -0.506225, -0.068497, 1.708595, 0.005526, -0.375063, -0.139891, -0.573081, 2.406396, 1.469202, -0.024259, -1.061411, -0.376466, -0.632997, -0.792997, 0.162100, 0.133559, 0.166693, 0.108858, -0.380970, -0.086500, -0.476880, 1.254424, 0.454440, 0.290330, 1.407760, 0.673980, 0.395342, -0.258706, -0.159918, -0.775750, -1.237364, -0.786243, -0.852008, 1.120450, -1.504593, 0.005802, -1.107561, 1.345220, -1.322717, -0.435464, -1.431995, -0.042082, 0.339572, 2.011347, -0.046804, -0.781187, -1.353966, -1.042931, 1.096995, 0.547902, 1.946881, 0.090543, -0.101012, -1.008603, 1.171841, 0.221167, -0.671014, -0.507839, 0.126544, -0.476825, -0.274699, 0.097734, 0.940326, -0.130910, 0.086700, 0.829810, 0.269792, 2.239339, -2.085658, 1.075656, -0.076831, 0.629599, -1.209154, 0.329170, 1.237872, 0.551317, 1.178346, -0.971594, 0.780025, -0.090874, -0.765722, 0.097774, -1.403388, -0.029671, 1.349227, 1.450856, 0.947850, 2.015108, -0.111993, -1.781984, -0.308100, -0.110668, -1.158519, 0.517697, -0.216494, -0.220037, 0.081415, 0.630720, 1.338431, 0.510129, -0.146694, 0.310522, 1.418374, -1.442137, 0.428556, 1.363806, -0.708389, -1.698435, -1.183555, 0.243152, -1.359286, -0.384201, -0.029706, 0.173880, -0.192951, -2.630071, -0.130015, -1.469690, -2.610622, -0.785859, -0.181860, 0.861415, 0.193740, 1.702512, 0.683016, -0.365387, -0.648124, -1.846956, -1.122233, 0.185972, -1.352374, -0.830162, -0.446146, -1.758734, -1.780701, 0.041390, -0.471741, -1.055600, -0.546277, 0.369549, 1.965760, -1.042709, 0.708577, -0.526395, 0.601439, -0.064480, -0.445531, -0.753787, -0.523636, 0.715584, 0.652892, -1.463985, -0.477663, 1.417842, -0.619403, 1.111166, 0.156766, 0.211911, -0.665507, 1.150210, 1.769839, 1.136887, -0.633683, 2.066492, -1.130269, -0.705939, -1.626145, -0.008259, 1.435961, 1.238059, -0.346081, 0.307919, 0.491241, -0.783238, -1.284757, 1.430457, 1.210389, 0.477298, -0.089854, -1.227091, -0.363040, 0.623374, 0.589486, 2.275804, -0.417661, 0.228580, 0.859881, -1.235270, -0.274058, -1.626223, 0.604122, -0.688723, -1.128704, -0.209283, -1.419530, -0.734639, 0.690308, -1.668127, 1.950307, 0.721112, -0.058894, 0.874049, -2.387257, -2.382137, -0.660178, 0.152801, 0.835420, -1.307660, -1.214327, 0.661770, -0.242860, 1.219668, 0.208198, 1.456882, -0.965216, -0.028414, 0.187679, -1.010813, 1.849366, -0.221067, -0.914744, -0.416883, 0.767400, 1.495032, 0.305480, -0.218613, -0.081811, 0.305321, -1.253629, -0.293919, -0.901221, -0.118398, 0.070505, -1.150420, -1.264493, -0.630057, -1.105974, -0.123739, -1.019149, -0.720495, 0.540438, -0.345324, -0.379632, 0.344677, 0.328697, 2.748793, 0.620863, -1.034786, 0.875036, -0.097624, -0.575974, 0.794444, 0.220426, 0.543386, -0.645406, 0.053278, 0.076648, -0.379449, 1.190202, -2.009440, -0.959602, 0.448640, -0.086173, -0.776314, 0.737553, -1.246626, -1.980447, 0.243003, 0.369617, 1.024192, 0.358525, 0.887942, -0.094622, 1.187749, -0.083996, -0.862417, 0.190874, 0.119322, 0.294916, 2.645494, -0.859714, -0.825918, -0.179890, 1.293485, 0.798081, 0.384544, -0.783378, -1.062039, -1.795689, -1.247499, -0.187664, -0.021139, 0.196630, -1.827605, 1.761667, -3.147164, -1.070339, 0.481859, -1.844817, 1.024707, 0.374770, 1.535322, 0.347619, -0.337184, 0.697440, 2.658650, 0.348595, -0.122697, 0.109197, 0.596718, -0.078259, -0.776356, 0.488101, 0.923557, 1.018881, -1.088113, 1.134182, 0.718592, 1.836771, 2.024154, -0.870108, 1.244205, -2.087258, -0.388722, -1.795906, 0.711192, -1.373735, 0.449663, -0.783590, -1.143168, 0.135592, 0.083174, -0.931215, 0.987422, -1.575637, 0.446788, -0.654699, -1.318031, -0.647886, 1.402221, 0.123557, 2.230324, 1.797810, 0.300040, 0.343700, -0.537056, -1.600758, 0.595180, 0.118309, 0.997136, 0.836712, 0.283616, 0.433747, -0.729029, -0.943932, -0.227366, -0.057888, 1.183126, -1.320678, -0.380555, -1.309577, -0.485332, 0.604359, -1.330922, -0.148926, 0.456372, -1.140769, -0.609186, 0.467971, 0.299118, 0.174998, 0.422933, 0.754133, -0.732476, -0.928986, -0.728240, -1.178316, 1.000448, -0.814347, -0.203063, 0.443529, -0.174311, -0.251117, -0.644071, -0.153997, -0.082539, 0.674903, 0.472048, 0.897780, 0.660583, -0.177280, 1.068870, -1.446629, -1.546493, 1.366226, -2.288502, 1.794686, -0.420767, 1.332002, -1.373284, -0.862202, 0.927564, -0.494349, 1.181384, -1.125830, -0.074256, -0.378115, -0.839350, 1.499537, 0.235234, 0.014598, -0.546254, -1.289649, -0.349299, 1.089985, 1.066408, 0.764480, -0.164093, -1.693415, 0.692358, -0.162189, -0.730407, 1.673545, -0.980235, 2.001535, 1.398425, 1.558775, -0.702967, 0.211842, 0.624490, -0.964077, 1.120932, 0.542271, 0.030446, 2.327094, -1.554529, 0.269761, 1.903536, -0.443620, 0.649849, -1.664970, -0.677397, -2.872522, 1.307669, 1.335139, 1.673917, 0.013702, 1.398112, -1.606674, 0.772259, 0.056622, 0.024881, 0.241775, 0.243164, -0.384306, 2.792778, -0.587318, 0.375403, -1.237404, 0.488807, -0.760261, 0.144003, -0.173976, 0.095249, 0.010463, -0.937822, 0.410867, -0.770867, -0.603174, 1.632809, 0.597481, -2.215459, -1.109547, 1.750008, -0.189765, -1.519374, -1.467196, -0.853718, -2.225365, -0.363549, -0.446801, -0.189340, -1.228377, -0.626110, -2.156332, -1.151893, -1.283724, 1.213556, -1.590464, -1.458545, -0.366378, 0.354419, -0.720425, -0.717857, 0.047276, 1.240608, 1.548001, 1.007140, -0.523533, -0.388501, -0.536126, -0.806852, 0.169690, -0.508903, -0.418444, 0.337202, -1.508635, -1.104826, -1.402955, -0.067040, -0.888354, -0.705907, -0.010777, -1.053442, -1.156385, -0.484154, 0.139156, -0.387661, 0.016361, 1.634620, 0.566286, -1.416025, -0.753104, 0.293649, 0.093446, 0.107360, -0.293067, 0.130518, -0.823477, -2.274293, -0.315044, -0.750269, -0.028701, 0.308100, -0.523415, -1.280716, -0.741633, -0.354397, 1.317815, 1.384787, -0.026900, -1.451873, -0.454513, -0.084957, -0.115540, -0.466295, -0.634769, 0.022678, 0.742489, 1.386997, -0.385872, 0.029364, 1.027894, 0.457606, 0.582352, -0.592307, 0.053087, -1.333539, 1.020934, -0.078576, -0.999927, 0.003452, -0.765376, -1.563914, 0.088731, -0.153744, -0.709352, -0.044393, 1.113993, 0.921396, 1.111499, 1.210143, -0.341550, 0.042235, 1.429697, -0.632591, -0.300360, -0.680296, 0.436063, -1.175988, 0.489881, -1.205534, 0.338403, -0.566842, 0.131293, 1.421872, -0.841501, -1.294598, -0.115798, -0.039727, -0.980674, -2.606051, 0.920376, 0.057453, 0.111790, -0.710748, -0.076055, 0.189401, 0.214520, 2.321867, 0.232029, -0.246663, -1.359717, -1.459771, -2.334101, -0.652773, 1.191809, 0.904245, 1.032031, -1.547951, 0.115268, 0.328072, -0.761484, 0.838651, -0.649313, -0.781102, 1.574347, 0.856498, -0.632760, -1.187543, 1.517092, 2.353967, -0.278929, 0.978824, 0.733094, 0.378488, 0.479565, 0.897163, -0.123646, -0.310430, -0.759467, -1.885428, -0.209862, -0.517035, 1.719035, -0.125751, 0.172083, 0.320306, 0.208253, 0.910070, -0.178106, 0.898964, 0.740969, 0.118788, -0.216174, 0.956823, 1.711554, -1.084347, 1.123219, -0.703388, 1.820281, 0.497703, -0.563163, -0.739848, -0.791185, 0.889304, 0.602255, 0.129036, 0.705769, -1.268192, 0.885870, 0.727655, -0.218390, 0.627912, -0.161703, -0.426803, 1.357310, 0.469102, -0.356459, -1.209466, 0.642868, 0.247731, 0.451678, -0.644547, 0.335827, 0.338670, 0.982578, -0.195142, 0.035988, 0.102645, 0.887253, -0.269961, 0.833427, -1.889038, 1.841671, 0.987263, 1.191295, -1.441744, -0.632205, -0.825310, -0.294225, 0.727003, 1.412185, 0.082373, 0.236460, -0.038422, -1.959176, 0.649496, 0.733149, 0.454742, -0.814309, -0.183796, 0.399533, -2.887589, -1.032415, -0.147824, -0.197423, 0.710240, 0.995691, 0.800466, 1.632968, 0.404815, -0.515171, -1.026805, -0.667833, -0.114808, -0.924617, -0.018594, -0.157162, 1.403705, 1.766914, -1.192876, -0.793076, -0.703270, -0.150484, -1.000432, -0.820079, -0.728116, 0.881888, 0.353508, -0.644275, 0.387571, -0.943107, -1.719772, 2.067284, -1.283606, 0.555288, -0.538343, -0.232900, 1.706254, 0.501986, -0.310663, -0.115982, 0.778088, -0.401959, 1.209729, 0.495599, -0.565936, -0.050681, 1.109133, -0.178498, -0.255668, 0.514292, 1.742133, 1.016622, 2.226065, 0.070508, 1.948062, -0.686067, -0.756786, -1.386338, 0.751718, 0.128653, 0.402268, -0.456415, 1.721122, 1.888827, -1.109620, 1.753833, -1.272838, -1.750162, 1.393937, 0.414713, 1.458795, 0.432089, -0.271084, 0.305521, -0.184658, 1.029695, 0.623047, 0.674749, 0.500990, 0.108209, -0.948856, -0.378686, 0.737663, -0.225464, -1.255460, -1.450462, -0.795926, 0.982417, -1.564558, 1.008991, -0.486431, 0.148419, 0.506192, 1.829997, 0.298905, -0.800254, 0.596263, 0.476915, -0.985428, 0.307917, 1.044979, -1.276391, -0.539604, 0.012788, 0.269754, -1.937072, 0.509333, -1.337484, 0.302740, 0.899198, -0.448961, 0.272133, -0.503766, 0.245911, 2.004431, 0.224981, 0.455179, -0.247878, -0.344004, -0.455249, 0.393533, -0.224898, 1.226482, 0.431806, 0.478263, -0.125799, 0.664227, 0.148365, -3.023103, 0.499670, -1.476777, -0.873552, -0.129249, -0.369988, 1.592503, -0.232923, -0.781794, 0.027017, -1.195299, 0.544237, -0.006196, 0.814351, 1.837672, 0.740725, 0.782338, 1.642543, -1.126186, -0.678856, 0.778783, 0.177031, -0.947485, 0.266654, -1.085496, 1.010150, 0.936261, -0.012702, 1.476522, 0.937361, 1.499992, 0.130745, 0.648503, -1.299191, -1.086028, 0.909201, 1.125026, -0.780970, 0.983728, -0.380441, 0.049118, -0.472084, 0.364691, -0.014094, 1.124368, -1.017236, 1.946865, 0.904426, -0.002596, 0.662932, 0.777084, 1.227172, -1.312530, 0.202687, -1.106635, 0.982087, 0.686559, -0.555521, 0.997803, 1.287305, 0.504154, 0.601062, -0.529765, 0.060907, -0.217080, 1.027508, 0.698355, -1.581733, -0.311606, 2.707881, 0.279929, -2.959562, 0.744808, 0.390481, -0.421641, -1.209988, 0.829098, -0.961529, 0.581873, -0.383676, -0.289850, -0.574130, 0.034980, 0.473143, -0.435725, -1.287254, -1.904627, 0.086599, -0.423148, -1.621388, -1.089680, -0.559273, -1.095038, 0.588340, -0.025188, -0.351800, 0.347529, 0.858863, -0.712554, 0.147760, -0.214297, 0.009104, -0.384965, -0.635931, 1.756596, -0.162672, -1.604306, 1.238165, 2.014004, -0.294017, -0.367446, -0.486456, 0.664144, 0.709728, -0.571923, -0.087981, 0.825209, 0.036387, -0.174404, 0.775066, 0.115353, -1.207576, 1.807518, -0.024098, 0.341681, -0.015670, 1.784983, 0.954031, 0.662086, 0.300683, -0.179413, 0.478067, 0.115815, 1.101331, 1.619486, -0.126395, 0.579103, 0.649872, -0.724738, 1.269255, -0.609886, 1.398500, 1.367762, -0.976735, -1.324027, -0.223323, 1.541604, -0.762275, 0.375253, -0.255432, -0.330986, 0.427725, -0.598267, 0.411468, -1.609460, -0.845222, -0.890767, -0.618564, -0.492914, 1.182000, -0.882150, 1.296872, 0.762798, -0.434291, 0.586144, 0.623786, 0.918082, -0.154718, 2.277585, 1.085829, -0.692970, 0.784628, 1.298019, 1.881265, -0.840174, 0.974620, -0.731382, -1.292343, -0.354940, -0.091845, -0.276639, -1.940824, 0.273609, -0.419021, -0.590052, 1.534430, 0.416220, 1.963111, 0.079348, -0.769528, 0.002012, 0.291696, -0.687290, 0.138033, 1.423046, 1.273412, -1.372042, -0.710537, 0.029991, -0.425986, 0.857544, 0.650420, -0.144040, -0.920889, 0.721134, -0.152666, -0.432407, -1.201088, -1.503468, -0.403696, -0.807172, 0.304677, -0.511102, -0.400557, -0.859855, -0.454673, -0.239787, 0.488322, -0.083036, -0.366056, 0.156441, -1.079316, 0.318091, -0.301893, 0.609218, 1.204348, -0.753119, 0.980664, 3.796210, -1.133296, -0.823929, 1.843483, 0.321056, -0.461334, -0.329761, 0.899085, 0.459717, 0.222955, 1.485973, 0.080453, -2.049097, 1.155141, -0.520698, 0.820835, 0.136691, 0.112932, -1.095105, -0.998634, 0.089542, -0.316153, -0.023300, -1.007964, 0.536409, 0.006725, 0.219939, -0.376703, 0.689080, -0.449503, -0.362139, -0.154353, 0.469531, -0.342434, -0.105442, -2.228610, 1.862801, 1.382594, 1.457330, 0.400455, 0.440759, 1.119281, -1.617289, 0.753984, -1.110638, 0.532744, -0.718416, 0.645858, -0.719062, -0.851025, 0.707429, 0.161813, -1.549468, 0.771746, 0.624388, 2.346169, -0.387792, -1.854217, -0.454730, -1.006506, -0.923004, 0.482504, -0.912470, 0.206206, -0.096126, 1.291834, -0.902204, 0.156233, 1.674126, -2.063265, 1.283487, 1.681964, -0.019014, -2.968753, -1.540093, -0.523178, -0.899775, 0.387268, -1.555972, 1.078691, -0.376812, 0.570607, -0.409181, -1.527514, -0.302462, -0.758858, -0.702321, -2.181706, -0.658262, -0.190414, 0.595849, -0.052696, 0.366325, 0.745387, -0.443183, -1.264017, 0.099557, -0.547320, -1.805849, -0.729279, 0.016630, -1.876772, -0.152712, 0.371446, -0.476329, -0.401440, -0.733713, -0.700930, -0.193320, 0.393181, 1.774620, -0.446209, -0.987878, 0.762784, -1.162782, -1.899903, -1.230296, 0.043290, -0.285530, -1.926066, 1.460443, -0.813304, 2.036157, -0.331495, -0.898324, -0.138054, 1.786537, -2.049535, -1.403762, 1.111821, -0.706610, -1.149683, 0.188075, -0.795089, 0.207097, -1.437854, 0.416655, -0.048398, -0.366403, 0.531330, -0.509743, 0.503418, -0.118177, 0.576956, 1.225050, 0.599023, 0.597058, -0.831920, -1.826365, 0.205631, -0.255069, -0.867460, -1.312955, 0.445624, 0.762748, 0.305457, -1.054429, 0.442221, 1.359276, -1.469672, -0.431011, -0.024575, -0.131256, 1.775543, 1.582192, -0.225956, 0.479395, 0.401060, 0.417523, -0.178910, -0.721090, -0.395913, 0.812143, -1.583178, 0.160635, 0.252204, 0.246757, -0.047343, 0.213441, 0.157329, -2.080566, -1.066409, -0.454331, -0.080913, -0.816027, 2.353933, -0.729086, -0.273801, 0.779813, 1.288876, -2.506730, -0.379631, -0.566054, -0.923300, -1.346407, 0.133783, 1.209992, -2.567671, -1.108954, -1.296308, 1.736149, 0.605642, 0.192645, 1.158784, -0.550833, 0.372249, -0.850032, 0.414675, 0.399675, 0.189062, -1.007249, 0.053036, -1.751449, 0.581333, 0.468221, 0.737183, -0.404366, 0.268284, 0.799292, -1.747538, 0.638632, 0.536745, 1.030655, 0.676386, 0.223053, -0.439443, -0.034977, -0.787056, 0.632421, 0.552024, -1.511004, -0.001843, 0.063492, -1.246286, 0.288353, 0.742749, 0.370142, -1.056146, 0.099279, 0.309442, 0.419090, 0.424427, 1.164418, 1.614803, 1.053778, -1.155949, 0.391989, -0.862272, -1.709760, 0.096941, -0.179824, 0.857109, 0.297491, -0.686876, 0.779600, -0.925900, 0.705014, 1.330644, -1.095678, 0.091249, -0.011815, 0.614401, -0.438847, 0.789591, -1.818947, 0.334269, 0.583337, -0.795161, 1.684281, 0.504569, 1.035718, 2.778836, -1.849415, 0.477285, 0.145268, -0.111491, -0.426167, 0.492001, 3.055124, -2.202069, -2.545540, 0.400037, 0.580503, 0.653296, 0.828112, 0.193867, -0.896094, -0.579759, 1.152689, -0.066268, -1.058625, -0.746186, -0.408278, -0.218528, 0.660570, 1.196898, -1.079766, -0.078783, 0.173937, -0.201425, -1.201933, -1.832978, 1.581370, 0.294157, 1.219790, -1.326156, -0.395928, -0.392351, -1.588774, 1.398477, -0.111119, 0.462944, -1.118935, 1.722983, 0.318882, 0.199412, 0.586789, -2.430567, -0.130678, -0.064726, -1.561059, 0.862869, 0.670735, -1.050763, -0.254784, -0.366436, 1.807625, 1.906982, 0.227437, 0.617599, 0.054067, 0.615317, 0.854159, -0.550218, 1.501011, -0.346793, 2.994880, -1.850683, 0.042260, -1.954350, -0.690772, -0.691414, 0.568382, 0.767278, 0.939593, 1.221146, -0.843247, -1.857675, -0.438739, 0.366487, -0.012533, 1.062202, 0.678502, -0.698320, -0.589061, 1.392660, -0.014692, -0.254400, -0.389058, 0.455011, 0.955321, 0.288299, 0.361711, 0.918346, -0.234447, -0.643624, 1.085071, 0.850665, -0.823474, 0.425494, 0.747366, 0.400085, 1.234186, -0.828338, 0.800874, 0.366952, 0.818555, -0.558730, 2.379847, 0.138641, -0.226514, 0.623817, 0.109674, -0.011339, 1.054928, 0.216609, -0.089559, 1.018074, -1.068907, -0.082493, 1.418231, -0.508477, 0.248085, 1.029483, 1.469037, 1.855924, 0.604715, -0.490856, -0.506248, -0.191966, 0.862787, -0.385807, -0.962807, -0.531157, -0.033643, -0.918936, -0.723544, 1.008217, -3.676041, 1.566184, 1.144344, 0.075474, -0.921160, -1.456606, -0.746433, 0.424510, -0.427631, -0.491317, -1.840970, -0.842448, -0.757953, -1.465122, -0.859214, -0.551356, 0.041191, -1.440799, -0.797856, -1.521732, -0.147586, -0.327580, 1.125167, -1.516668, 0.527984, -1.627442, 1.337041, -1.218460, -0.038116, 0.463635, -0.801528, -1.118041, 0.170936, -0.070397, -1.166486, -0.978883, 0.046727, 1.815457, 1.212557, -0.129676, -0.244971, -0.707596, 1.111300, -0.951421, -1.216330, -1.143902, -0.662790, 1.633130, 0.017630, -0.040664, 0.893582, 0.026925, -1.332966, 1.548233, -0.172360, -0.205729, 0.734707, 1.341781, 0.191730, -1.474243, 1.834279, 0.488465, 0.664818, -0.251428, 1.145162, 0.218729, -1.355958, -1.918748, 1.431400, 0.025223, -1.276383, 1.296274, -0.821574, 0.923209, -0.885989, -0.238381, -0.698284, -0.950578, -1.470144, -0.299562, -0.974543, -0.447062, 0.479234, 1.250019, -0.703097, -0.053070, 0.827718, -0.668392, 0.309118, 1.442489, -2.221541, 1.423063, -0.724541, -0.497532, -0.964818, -0.901931, -0.988057, 1.025807, -1.284261, 0.183423, 0.664829, 0.285021, 0.671176, -1.884838, -0.899815, -1.345672, 0.045784, 1.661913, 0.662810, -0.947114, -0.793327, -0.113444, 1.442446, 0.068966, 0.270194, -1.933888, -0.383946, -0.643890, 0.358773, 1.581929, -1.189628, -2.155237, -1.458433, -1.345861, -0.816821, -0.529428, -0.671591, 0.206462, -2.649322, -2.134382, 1.064368, 1.038938, -0.136797, 0.200898, -0.867550, 0.315312, -1.602007, -0.434502, 0.289875, -2.001870, 0.536802, -0.838116, 0.899951, 0.759677, -0.707559, 0.121736, -0.575412, 0.675201, -0.380019, -0.134058, -0.295355, -1.484965, 0.450747, -0.134306, -1.213264, 0.287506, 0.788631, -1.494547, -0.235927, -0.134889, 0.307697, -1.351795, 0.536793, -0.503153, 0.928950, -0.195665, 0.933591, 1.506824, -0.712982, -0.550729, 0.097743, -0.387651, 0.610167, -0.554629, 0.865778, -1.172483, 0.002210, 0.379809, -0.727930, 0.209213, -0.649168, 0.411371, 0.455661, -2.212316, 0.941360, -1.418085, 0.067203, -0.399673, -0.848109, 1.077335, 0.491344, 0.249749, 0.340159, 1.674015, 0.877770, -1.089479, -0.179489, 0.707524, 0.126172, -0.352452, -0.241087, -1.445134, -0.726326, -0.787889, -1.053619, -0.962096, 1.614980, 0.097501, 1.273708, 1.157279, 0.535659, -1.102176, -1.632963, -1.864505, 0.306445, 0.023364, -0.063251, 0.446336, 1.449808, 0.934849, -0.643927, -1.684765, 1.529072, -0.702589, -1.373832, 0.421753, 0.305046, -0.915507, -1.350665, 0.676483, 1.602333, 0.531668, -0.697932, -1.342307, -0.089417, -0.389130, 0.067762, -1.802380, -0.156182, -0.211202, 0.554121, -0.439373, 0.723803, -1.589427, 3.060335, 0.413831, 0.867604, 2.219315, 1.446700, 0.546755, 1.494586, 1.203633, 1.394253, -1.150876, -0.029928, -0.372093, -1.840689, -2.210353, 1.283033, -0.645564, -0.021501, -0.077096, -0.732267, -0.948169, 0.054966, 0.236298, -0.726196, 1.129175, -0.602513, -1.423572, 0.519163, -0.668252, -1.891867, 0.578244, -0.455268, -0.517073, 0.332538, 0.811766, 0.858556, -0.002323, 0.180075, 1.286900, 0.067541, -0.661717, 0.093036, 0.467318, 0.033532, -1.225681, 0.376143, 1.782949, 0.016096, 0.682125, -0.052125, 0.624759, 0.981268, 1.184785, -0.163998, -0.694862, -1.702779, 2.202143, -1.805513, 0.169976, -1.976831, -1.719692, 1.790999, -0.224391, -0.899993, 0.541737, -1.801347, -0.430117, -0.276419, 0.909497, -0.066531, 0.059858, -1.641162, 0.551484, -0.365252, -0.052110, 0.386824, -0.535469, -0.283235, -1.726350, 0.899240, -1.000476, 0.080297, 1.286556, 0.997315, -0.199777, -1.021605, -0.239559, -0.518559, -1.701096, -0.378116, -0.265730, 0.325563, 0.047423, 0.734502, -0.417671, -0.188999, 1.214969, -1.195063, -1.318769, -0.597199, 0.833651, 0.614565, 0.439964, 0.298420, 0.916472, 1.488605, 0.459543, 1.836470, -0.601337, 0.189246, -0.110596, -0.885615, -1.223122, -1.028192, -0.038448, -1.463487, -0.302465, -1.708701, -0.033486, 0.447072, -1.510011, 0.818844, -0.818325, -0.071532, -0.456622, -0.080089, 0.578328, -0.353340, -1.761056, 0.692841, -0.764207, -0.174462, -1.323933, -1.750946, -0.872114, -0.904773, -1.859576, 0.101255, 0.104772, 1.444046, -0.921593, -1.464600, -0.202483, 0.165346, -0.193454, -1.245988, -1.884432, -2.006478, 0.766918, 0.923438, -0.428141, -1.048595, -0.885484, -0.385997, -0.062651, 0.126930, 0.260520, 0.809685, -0.740131, 1.019064, -1.063045, 1.316126, -0.769969, -0.449291, 0.313685, -0.008639, -0.804785, 0.690296, -0.039276, 0.200269, -0.632381, 0.395774, 0.552030, 0.107645, 0.055983, -0.608583, -1.023219, -2.211037, 1.298246, -1.809259, -1.371396, -1.125279, -1.282304, 0.373770, 1.508846, -0.861505, -0.105574, 0.305476, 0.863211, 0.613365, 0.508459, -0.322930, 0.978494, -0.955532, -1.478241, 0.206332, 0.799721, -0.411744, -0.721522, 0.402252, -0.627950, -0.267320, 0.034907, 2.154497, -0.698956, 1.318294, 0.633494, -0.696828, 0.561687, 0.348712, 0.560269, 0.948468, -1.191606, -0.013187, 0.004214, -0.108904, 1.191522, -1.278090, -1.321191, 0.352054, -0.456117, 0.762071, -0.445581, -0.045171, -0.586694, 2.537035, -0.114578, -0.878674, 0.319526, -0.280921, -1.869298, 1.048788, -0.344832, 1.342228, -0.536436, -2.081823, -0.068134, -0.449956, 0.908614, 0.969410, -0.243123, -0.404915, -0.123397, -1.281626, -0.364504, -0.620161, -0.747356, 1.021048, -0.524026, 0.033197, -0.861703, -0.507897, -0.063040, 0.378450, -1.381998, 0.342766, 0.742211, 1.285155, -0.628621, 1.163057, -0.448287, -0.935174, -0.265119, -0.252429, 0.616801, 1.237314, -1.431694, -0.076930, -0.434408, -0.551587, 0.317389, 0.151536, 0.168743, 0.039960, -0.532517, -0.413515, -0.914875, -0.557830, 1.741927, 0.508527, 0.014957, -0.143183, 0.027691, -1.073218, -0.281156, 1.049488, 0.842257, 0.245885, 0.717098, -0.167893, -0.154633, 0.363581, -0.888814, -0.436968, -1.205137, -0.573453, -0.335224, 1.937791, 1.854965, -0.888953, 0.011320, 1.019151, -1.062075, 0.708113, 0.186630, 1.264196, -0.635586, 0.203850, 0.916473, -0.122630, -1.049441, 0.375392, 1.013167, -0.195679, -0.236890, -0.630610, -3.797426, -2.581191, -0.306146, -0.534523, -1.046973, -0.571939, -0.140089, 1.133140, -0.313022, -0.398185, -0.271486, 1.333323, -0.592932, -0.154737, 0.244402, -0.989020, 0.651396, 0.627537, 0.440832, 0.144300, -0.084074, 0.150242, 0.858584, 0.479372, -1.088560, -1.612557, -0.596684, 0.078421, 0.825239, 1.382736, -1.951528, 0.039685, 0.274720, 0.247438, -1.503899, 0.147751, 0.550817, -2.378720, -0.468785, -1.506641, -0.196991, -1.449521, 1.142091, 0.853693, 0.946128, 1.663352, 0.759426, -0.166834, -0.925985, -1.078044, 0.340985, -0.322320, 0.856637, 1.045953, 0.019409, 0.925352, 0.026787, 0.464241, -0.501265, 0.433406, -0.498653, -1.533298, -0.616750, -1.890728, 0.700358, 0.404116, -1.025085, 1.437298, -1.368346, 0.033491, 0.891547, -0.057709, -1.209718, 0.086080, -1.778648, -1.112272, 0.440652, -0.219090, -1.673256, -0.937344, 0.877575, -0.057532, 2.474996, -0.619526, -1.010538, 0.492651, 0.256700, 0.364297, -1.080675, -2.380076, -1.472839, 0.029080, 0.148767, -0.133946, -1.402511, -0.161768, 0.738143, -0.655318, 0.094442, -1.930352, -0.192111, 1.908579, 0.011605, 0.330979, 0.088216, -0.658174, -0.168834, 1.379041, 1.768504, 2.178951, -0.420402, 1.045127, -1.233923, 1.738275, 0.659997, 1.847909, -0.899036, 1.492324, 1.007905, -0.482787, 0.480987, 1.493345, 1.205761, -2.325719, 1.652551, -1.758435, 0.140502, -0.999567, 1.540045, 1.510875, -1.195842, 0.061954, -0.802136, -0.503971, -1.780097, -0.183943, 0.803492, -1.863290, 1.002006, -0.048879, -0.222030, 1.477588, -0.921075, 1.733136, -1.932857, -0.318333, 0.488691, -0.880340, -0.069236, -0.232048, -0.110692, 0.047992, 1.804802, 0.477774, 2.737476, -0.325673, -1.101208, 1.411058, -0.208029, -0.516869, 0.461553, -0.558734, 0.546545, 0.101771, -0.103855, 1.977252, -0.332936, -0.088108, -0.169573, 0.870283, 0.845749, 0.370249, -1.241206, -0.288545, 0.363963, -0.894715, -0.244015, -0.467331, 0.608404, -0.465282, -0.587586, -0.463435, 0.427950, -1.561962, -0.274600, 0.320314, -0.010140, 1.806202, 0.715583, -0.943608, 2.586653, -0.372883, 0.869511, -0.940933, -0.096121, 0.936824, -1.068356, 0.733742, 1.095680, 0.452268, 1.414312, 0.023068, 0.591228, -0.208272, -1.081450, 1.525643, 1.385534, 0.323200, -0.130600, -0.990261, -1.198141, -1.471467, 0.003122, 0.021244, -0.877843, 0.879732, 0.519738, -0.301337, 1.454203, -0.414185, -1.481040, -2.923714, -1.019477, 1.224513, 1.813335, 1.165424, 1.418143, 0.877545, 0.285914, -1.824701, 0.257644, 1.017756, -0.949155, 1.287921, 1.331327, 0.561452, -0.410556, -0.101726, 0.512014, -1.425907, 0.030784, -0.431632, -0.274067, -1.942552, 1.303737, 0.103101, -0.739919, -1.333272, -2.271831, -0.739720, 0.365732, -0.758369, 0.336967, 0.712609, -0.003514, -0.685378, 0.164680, 1.310042, 0.106370, -0.371664, 0.512635, 0.824196, -0.322076, -0.228939, -0.298097, 1.988213, -0.519553, -0.864811, -1.094237, 0.865160, -0.889798, 0.244345, 1.215921, -0.357982, 0.172388, -0.090557, -0.076280, -0.212048, 1.376257, 1.038743, 1.037681, -0.428075, -0.597476, -0.117634}, - { 0.708783, 1.131935, -0.295111, 0.560741, -1.499676, 1.081983, -0.690776, 0.525180, -1.601818, -0.616921, -0.242050, 0.759504, -0.379464, -0.279613, 0.664757, -1.787720, -0.697258, 1.523226, 0.611804, -1.463266, 0.849166, 0.088049, -0.447639, -0.388767, -0.535561, -0.265597, 0.479666, 1.463904, -0.859864, -0.590982, -0.389156, -1.209902, 0.675350, 2.018850, -1.159406, 0.220304, -1.489899, 1.191158, -1.292296, 0.153147, -0.133125, -0.287782, -0.004898, 1.950939, 0.209956, 0.138637, 0.496528, 0.259788, 1.042857, -0.741759, 0.105329, 1.221935, 0.028468, 0.647793, -0.101484, 0.403082, -0.905254, 0.088542, -1.208114, -0.060249, -1.491535, -0.093152, -0.371890, -1.893254, 0.221821, -0.081192, 1.444038, -0.801182, -2.185120, -0.973081, -0.023747, 0.021040, -0.980092, -0.992898, 0.369225, -0.047475, 0.006548, -1.129992, 0.552777, -0.620558, -0.057711, -0.615504, 0.327934, -0.513624, 0.230786, 1.906838, -1.714362, -0.457335, -1.530945, -1.119984, -1.394583, -0.333806, -1.852323, 1.434235, -0.001954, 0.801129, -0.209600, -0.321322, 1.080321, 0.292868, -0.384614, 1.841074, 0.942635, 0.036071, 0.471805, -0.206541, -0.108269, -0.811337, -0.104313, 0.281255, 2.063791, 0.413419, -0.280447, -1.327779, -0.237347, 0.791644, 0.716968, -0.073074, -0.141110, 0.085230, -0.734374, 0.211454, 1.428895, 1.344210, -1.319227, -0.644868, 0.059260, 0.206288, -0.291656, 1.604446, -0.080070, -0.211077, -0.569330, -0.382248, -0.313883, 1.230755, 0.413608, 1.111011, -0.635720, -1.009620, 0.139370, -0.993196, -0.384125, 0.666090, 0.370512, 0.089801, 1.892409, 1.207692, -0.883599, -0.176089, 0.776208, -0.085987, 1.385221, 0.550568, 0.005757, -2.076656, 0.826924, -1.647033, -0.916374, 1.498019, -0.970140, 1.511093, 1.770226, -0.616552, 0.195096, -0.691112, -1.783100, -0.518952, 0.278854, -3.606590, 0.445351, 1.662397, 0.203867, -0.859219, -0.640424, -0.801028, -0.957140, -0.340679, -0.486475, 1.165515, -0.093376, 0.453099, 0.612810, 2.402252, 0.505980, 0.094312, -0.047279, -0.321894, 1.165823, 0.462745, 0.683448, 0.841891, 1.450980, -0.423997, -0.832682, -0.899674, 0.515106, 1.402015, 0.314088, 0.301954, 0.730656, -0.586608, 0.871775, 0.485957, 0.839787, -2.834916, 0.278115, 1.067752, -1.539503, 0.056001, -0.512996, 1.016016, -0.071151, -0.087622, 0.234122, 0.933980, 0.979977, -0.883593, 0.088170, -0.092845, 0.296885, 0.701235, 0.730355, -0.473992, 0.107071, 0.643496, -1.925743, -1.256873, -0.467933, 0.459772, -1.711960, 1.248433, -0.092724, -0.667556, -0.403970, 1.555986, 0.390680, 0.514482, -1.145920, -0.858101, 0.423414, 0.538179, 0.526019, 1.197701, 0.251989, -1.102216, -0.748797, -2.511522, -0.512188, 0.102921, -0.999759, 0.109989, 0.125927, -0.668349, 1.119345, -2.745840, 0.685110, -1.526561, -1.096721, -0.195785, -0.587867, -0.607784, 0.517398, 1.383988, -1.597097, -0.185422, -0.879120, -0.392037, -1.578199, -1.092373, 0.781641, 1.744911, -0.794079, 0.094724, 1.706743, -1.621872, 1.226963, -0.312499, 0.224023, -0.795788, -2.821457, 1.405811, 0.782254, 0.849403, -0.860183, -0.033286, -0.440938, 0.209138, -0.424008, -0.407860, 0.572749, -0.044453, 2.089242, 0.970522, 0.071075, -0.561079, -0.149891, -2.096178, 0.953075, -0.155065, -0.952863, -0.171341, -2.242267, -0.515147, 0.351991, -0.830646, 0.057314, 0.854155, 0.593755, -0.779534, -0.272688, 0.098291, 0.010552, 1.043192, -0.522208, 0.283379, -0.387422, 1.420241, -0.318580, -0.379524, -0.852458, 0.285222, 1.149735, -0.602556, 1.420953, 0.048348, 1.344053, -0.505761, -1.016052, 2.794708, -0.017095, -0.365163, -0.415444, -0.248113, -0.004596, -1.012876, 1.029564, -0.394855, -0.565477, -0.389074, -0.593390, 1.095759, 0.967193, 0.912609, 2.111502, 0.147812, 0.929306, 0.707837, -1.012529, 0.902632, -0.941679, 0.295134, -0.985402, -1.723683, 0.623728, -1.641349, -0.391337, -2.122866, -0.854087, 0.471879, 1.234227, 1.417337, 0.315503, -2.731246, -1.229849, -0.443165, -0.614513, -0.011028, 0.627780, -0.860820, -0.786275, -1.371742, 0.431615, 1.309274, -0.821439, -0.261070, 0.660963, -1.021590, 0.737661, -0.967164, -0.567304, -1.878290, 0.301515, 0.703598, -1.212648, -0.633017, 1.049533, 0.679983, -1.801228, -0.304252, 0.794838, -0.227056, 0.053731, 0.482792, -0.362529, 0.490980, -1.779794, -1.538623, -0.669362, -0.985563, 0.208736, -1.140189, 0.462613, -0.904050, 1.346461, 1.833743, 0.218386, -0.833870, 0.074306, 0.604061, 0.145064, 1.417419, 0.226484, 0.417399, -0.432708, -0.733680, -0.843887, -0.918953, -0.192292, 0.393638, -1.711711, -0.473351, 0.489287, 1.561650, 0.693495, 1.161966, 0.789446, 0.063996, 1.843614, -0.281329, -0.553190, 0.196177, 0.567370, -0.243443, 0.482495, 0.475805, -0.441379, 0.781558, 0.861086, -1.046042, -0.798552, 0.513558, -2.510005, 0.381886, -0.968730, 0.140252, -0.678966, 2.023665, 0.261010, -0.911110, -1.454500, -1.587311, -0.328139, 1.244102, -0.332306, 0.911721, -0.087873, -0.055848, -0.802268, 0.763254, -1.103382, 0.020909, -0.455271, -0.852488, 0.316453, 0.276279, -1.815327, 0.800250, -1.017426, -2.272913, 0.612606, -1.161582, -0.061645, 0.281389, -1.567569, -0.008614, 0.538856, 0.672268, -0.104056, 1.166358, 1.156220, -1.159910, -0.257655, 1.316906, -0.328530, 1.523268, 1.629131, -1.623196, -0.682277, 0.585485, -0.089381, 1.357037, 0.984276, 0.735384, -0.038241, -0.707370, 1.151447, 1.107831, -1.842378, -1.265742, 0.263936, 0.102341, -0.084405, 0.933076, 1.127442, -0.572159, 0.876765, 0.978203, 0.647516, -0.945423, 1.435292, -0.906254, 1.039659, 0.342019, -0.875323, 0.978208, 0.157310, -0.484039, -0.704315, -0.078572, -1.949494, 0.345802, -0.580714, 0.378368, -1.981530, 0.637888, 0.717339, -1.213921, 0.638917, -0.894838, -0.142790, -0.715257, -0.085941, -0.821184, 0.187698, -0.552810, -1.432310, -0.210969, 2.201425, -0.486477, -1.082860, 0.634123, 1.449477, 0.475435, -1.783162, 0.617213, -0.722758, -0.371557, 1.090877, 0.951445, -0.694444, 1.796125, -1.036446, -0.430737, 0.328300, 0.929586, 0.347734, -1.377510, -1.239483, -0.801675, -0.437528, -3.461172, -0.302192, 0.528891, -0.711603, -1.108593, 1.066750, -1.188587, -1.059012, 0.663690, 0.040034, 0.608568, 0.454871, 0.794065, -0.971437, 0.238552, -0.543488, 0.042982, 0.517756, 1.952041, 0.063691, -0.512967, -0.753432, -2.216880, -0.386219, 0.265224, 0.674330, -1.660889, -0.402902, -1.787134, -0.429136, -0.723789, -1.059645, -0.236633, 0.018241, -0.360183, -0.010409, -1.523919, -1.698465, -0.753349, 0.819740, -0.129334, -1.257056, 0.013637, 1.559490, -1.512570, 0.947234, 0.584164, -0.584677, 0.811991, -0.240677, -1.588282, 2.122699, 0.417049, -0.601947, 0.404843, -0.335719, -0.544009, 1.745651, -0.459741, 1.334987, 0.818579, -1.118451, -1.132396, 2.329793, -0.425327, -0.017306, 0.032811, 1.648383, -0.302620, 1.901765, -2.228271, -0.250386, 0.141197, -0.380903, 0.476301, 0.256102, -0.860988, 1.191412, 0.944407, 0.779560, -0.335404, 0.685976, -1.569387, 0.425596, 0.970912, -0.034067, -0.079353, 1.037693, -1.784057, -0.081923, 0.231672, 1.108519, 1.086204, -1.111977, -0.530177, -1.434375, -0.993360, -0.513587, -0.450060, -0.732586, -1.028164, 0.101072, -0.213878, 0.972663, 0.767658, 0.681991, 0.853132, 0.444208, -1.635366, -0.451921, 1.069521, 0.383732, -1.264748, -1.487448, 0.635811, -0.210745, -1.608362, 1.617636, 0.804067, -0.693396, -1.287541, 0.242406, -0.026155, 1.735577, 0.753563, -0.168854, -1.020591, 0.463787, -0.104122, 0.452049, 1.046777, 0.450804, -1.717804, -0.657638, 0.583266, -1.102787, 0.063473, -0.404023, 0.012863, -2.326316, -0.235964, 1.083867, 0.191824, 0.226641, 0.930682, 0.381416, 1.014651, -0.131427, -0.647924, -0.421400, 0.572816, 1.491196, 1.989454, -0.148600, 0.812966, 0.379139, -0.279552, 0.176965, 0.065485, -0.767939, 0.126027, 0.894322, -1.070340, -0.936561, 1.214715, -0.038613, -0.987703, -0.488730, 0.237719, -1.215890, -0.592992, -0.852683, 0.175095, 0.382086, -0.712164, 0.410872, 2.519297, -0.010222, 1.448691, 0.052917, -0.036129, -0.408312, 0.291248, 1.383008, 1.295629, 0.284923, 1.704845, -0.811940, -0.947025, 0.541476, -0.873773, -0.546245, -0.790850, 1.739208, 0.378770, 0.369373, 0.096654, 1.325830, -1.011438, 1.498456, -0.787938, -0.204658, -1.970884, -0.785674, 0.334507, -0.006849, 0.288259, -0.889448, 0.260965, -0.021076, 0.926514, 1.861692, -0.184410, 1.813177, 0.758889, 0.419489, -0.235667, -1.446277, -0.054368, -1.201142, 0.053574, 2.054008, 0.309834, 0.549717, -0.045640, 1.803070, -0.923470, 0.145422, -1.800137, 0.740683, -0.700675, 0.876768, 0.152040, 1.044051, 0.930561, -0.025134, 0.398516, -1.363957, -0.371047, 0.775333, 0.869320, -0.613075, -0.500593, -0.922937, 0.382785, 0.663527, -0.075489, -0.163457, -0.777183, 0.126770, 0.370944, -0.090181, 1.538654, -0.342371, -2.086604, -1.062219, -0.459145, 1.808433, -0.242851, 1.925723, 0.353727, -1.607992, 0.823269, 1.632794, 1.277753, -0.072690, -1.021996, -0.434252, -0.229004, 1.654361, -0.217209, 1.107375, 0.291197, -0.211560, -2.680941, -1.513223, 1.987350, 0.675766, 0.061566, 0.609669, 1.659219, -0.143818, -0.521891, -0.065786, 1.809595, 0.235327, 0.318794, 1.776339, 0.572445, 0.547691, 0.761784, -0.578851, -0.705522, 1.483314, -0.488039, -0.339615, -0.648529, 0.614061, 1.224037, 0.345048, -0.490206, -1.442397, -0.513060, 1.522905, 0.825607, -0.202273, -0.644566, 1.648473, 2.099079, -2.161117, 0.100382, 1.214772, 0.168741, -0.263650, -1.469705, 1.445583, -0.149081, 0.810306, -0.301803, -1.076094, 1.703752, -0.204445, 1.762732, 1.258543, 0.189436, 0.655702, -0.590395, -1.135584, -1.300514, -1.293575, 0.662891, -0.103278, 0.212895, -1.165949, 0.068801, -1.325531, 0.295257, 1.518204, 0.838905, -2.201095, 1.040052, -0.820645, -2.301049, 0.401953, -0.847265, 0.329253, 0.093634, 0.910239, -2.674407, -0.588052, -0.247402, 0.084656, -0.797835, 0.367538, -0.632283, 1.183055, 0.532847, 0.234936, 0.526328, 1.007877, 0.421336, 0.440152, -0.966936, 0.131112, 0.506426, 0.848045, 0.397182, 2.010851, 1.653456, 0.762043, -0.523068, -1.959751, 1.199433, 1.034749, -0.093455, 0.527419, -0.286049, -0.252117, 2.557612, 1.097466, 1.896780, -0.044213, -2.154786, 0.577846, -0.419661, -0.477373, -1.402643, -0.441083, 0.427644, 0.843171, -0.155438, 1.456292, -0.599841, -1.167560, -0.711564, -0.787738, -0.400101, 0.216151, -0.824283, 0.253830, 0.129838, -0.108665, -0.631168, -2.004545, 0.634663, 1.817165, -3.154556, -0.215724, -1.247239, 1.565945, 1.753121, -0.475211, 0.492487, -0.970476, -0.456154, -2.566685, 0.716637, 0.208429, -1.420813, -0.200903, 0.359249, 0.800354, -0.850517, -0.974716, -0.873156, -1.217397, -0.974080, 1.185673, -1.302780, 0.752932, 0.477511, -0.113374, 1.193936, 1.386391, 0.487053, 0.626455, 0.979204, 0.144087, 0.618837, -0.915846, 0.847579, -1.071476, -0.905240, -0.304847, -1.094229, -2.244907, -0.129893, -0.091618, 0.297645, 0.002954, -1.152765, -1.377643, -0.338424, 1.743286, -0.106450, 1.882329, 0.700705, 0.001774, -1.195052, -1.455451, -0.210710, -0.209847, -0.003937, 0.261315, -0.136313, 0.068152, -0.785696, -1.498705, -1.047939, 0.683687, 2.236852, -2.868035, -1.528828, 0.470485, -1.144369, 0.986557, -2.336719, -0.418403, 0.392418, 1.401742, -1.619507, -1.006960, -1.755103, -2.021513, 1.191523, 0.181305, 1.056016, -0.124409, -0.225067, -0.468114, 1.241338, 0.833449, -0.068948, -0.500600, -0.539498, 0.647499, -0.468473, 2.021611, -1.259210, 1.018135, -1.301108, 0.376175, 0.207747, -0.143717, -1.417392, 0.462506, -1.181129, 0.677035, -1.218897, -1.268872, -1.075806, -1.968396, 0.954570, 1.518407, 0.129180, -0.323935, 0.268383, 1.052229, 0.958581, 0.585700, 0.604379, 1.113128, 0.906509, 1.169143, 1.514989, 1.915938, -1.163027, -0.143198, -1.269730, 0.217194, -0.340224, -1.606367, 0.791992, 0.698760, -0.800437, 0.755093, 1.161269, -0.634486, 1.836917, 0.205004, 2.266139, 0.214470, 0.117777, 0.076466, 0.487443, 0.335646, -0.215083, 0.971279, -0.755210, 0.042678, 0.192247, 0.517439, -2.080281, -0.070046, 3.014903, -0.385104, -0.100109, 0.157686, -1.175000, -0.630059, 0.217591, 0.497044, 0.566156, -0.877102, 0.733514, -0.019660, 0.116846, 1.302198, -0.046347, -0.551955, 0.050225, -0.430873, -0.561943, -0.032391, 0.146036, -0.073279, 0.152867, -0.522217, 0.169728, 0.179095, 1.724164, -0.848381, 1.315573, -0.740631, -0.015174, -0.693068, -1.393070, -0.666124, 1.004668, -0.124415, -0.271737, 0.349935, -0.470412, -0.192005, -0.585248, -1.011934, 0.760964, 1.073940, 0.743015, -0.207310, 1.023408, -0.167480, 1.566051, 0.261208, 0.339419, 0.455521, 1.959921, 1.161396, -2.276122, 0.560243, -0.942577, -0.147583, -0.656534, 0.975898, -0.996467, 0.178349, -1.994014, 0.344181, 1.237171, 2.853831, 1.457706, -1.552338, -0.393172, 0.027771, 0.717165, 0.160037, -0.771897, 0.981289, -1.403879, -1.368525, -0.259766, -0.271188, -0.745841, -0.533897, -0.097575, 0.743683, 0.208026, -0.145799, -0.389443, 0.495146, 0.434669, -0.559898, 0.466921, -0.498495, 1.182764, -0.832134, 0.581413, -0.667433, 2.322467, -0.834069, 0.175124, -0.099992, 1.008935, -0.038363, 0.772624, 0.543907, -0.215115, 0.499525, -0.016072, 1.968121, -0.301446, 0.516615, 0.234111, 1.035307, -0.150692, -0.358657, -0.455789, -0.233801, -1.321209, 0.046611, -0.729213, 1.932957, -0.641451, -0.448544, 1.431167, 1.158927, -1.011171, 1.283346, -0.534970, 1.281953, -1.680819, -0.132364, -1.103789, -0.209977, -0.667237, -0.149222, -0.932948, 0.461611, -0.587159, -2.317579, 0.951777, 0.747088, -0.496006, -0.374035, -0.788433, 0.033388, 1.568819, -0.747561, 1.061348, -0.212648, 1.422512, 0.233423, 0.938357, -0.748446, 2.002812, 2.013757, 0.272567, -0.420266, 0.100979, 0.256087, 0.056224, -0.831795, 0.433841, 0.783670, 0.641306, -1.174226, 0.799980, -0.387608, 0.293853, -0.552242, -0.576566, -0.293922, -1.708010, -1.276985, -1.174848, -0.439052, -0.079684, 1.213085, -0.989846, 0.324038, -0.494202, 0.346739, 0.354266, -2.244685, -0.294579, -0.124311, 0.607728, 1.391258, -0.777902, 0.160388, -1.107819, -2.146373, 1.867712, -0.598419, -1.094269, 0.063570, -1.510888, 0.267768, -1.562781, 1.121093, -1.029435, -0.697393, -1.658601, 0.289499, 0.559251, 1.431551, 1.010358, 1.131345, -2.243953, 0.703263, -1.149005, -1.208348, -0.442921, 0.498112, -0.173916, -0.996931, 0.771683, -1.814528, -0.865800, 1.635986, 0.071434, 0.098347, -0.967076, 0.091300, -0.549585, 0.711056, 0.201949, -0.968158, -0.881849, 0.625632, -0.816407, -0.505341, -1.179712, -1.198211, 0.656119, -0.443758, 1.530951, -0.793081, -1.655444, 0.535918, 0.695796, 1.327776, 0.896813, 0.638356, -1.348884, -0.605608, -0.030374, 1.536290, -0.461844, 1.598852, 0.740421, 0.184102, 0.004534, -0.420276, -3.775936, 0.615149, -0.180679, -0.104208, 2.069957, 0.036684, -1.640943, -0.224451, 0.347034, 1.190766, -0.217378, 1.266515, 2.732118, -0.035116, -0.280604, 0.446426, -1.196549, 2.021227, -0.599959, -1.934169, -0.252879, 0.935582, 0.614091, 0.918940, 0.575268, -0.062814, 1.971872, -0.194930, 1.454373, -0.177024, 0.718098, 0.162333, 0.107799, 0.406323, 0.692544, -0.214666, 0.382505, -0.303283, -0.000004, -1.678700, -1.042923, 0.757273, -0.788994, 0.502537, -0.928597, 0.036140, 0.125434, 1.700459, -0.404908, -0.799559, -2.132322, -0.739251, -1.142471, 0.307323, -0.582195, 0.978744, -0.272702, -0.168873, -0.441313, -1.278041, -0.967008, -0.303607, 0.803348, 0.998592, -0.026216, 0.090860, -0.399516, 0.400405, 0.685109, -0.148773, 1.425048, 0.367699, -0.443374, -0.001402, -0.101446, -0.883891, -1.280140, -1.516819, 0.222853, -1.700484, 1.219625, -1.104200, -0.601984, 0.245309, -0.200794, -1.184545, 0.576360, -0.259759, -0.595587, -1.260062, 0.639379, 0.255320, 0.244079, 0.210897, -1.710904, 0.254088, -0.201201, 1.102207, 1.058988, -0.860352, -0.813508, 1.138582, -0.438929, -0.252130, 0.591775, -1.134048, 0.338100, -1.725649, 0.817531, -1.557500, 1.320288, -0.202630, -2.744391, -1.854540, 0.947890, -0.101627, 0.111267, 0.783809, 0.598773, 0.063634, 0.119405, 1.049782, 0.457089, 0.967330, 0.840304, -0.331636, 0.021403, -1.807151, 0.932683, 0.495923, 0.972064, 0.782607, 0.182051, 1.817574, -0.446915, -0.814193, 0.540782, -1.149318, 0.379813, 1.737623, -0.206147, -0.437966, 0.739693, 0.072204, 0.736797, -0.736724, -2.309374, -0.619207, 0.076818, -0.234613, 1.336893, -0.359210, -0.374327, -0.100724, -0.022705, 0.899557, 1.157371, -0.239246, 0.491779, 0.274765, 0.047113, -0.180513, -1.173371, 0.720154, 0.030805, 1.044155, -2.437276, 0.564685, 0.387637, 0.139276, 0.571655, -2.644007, 0.655646, 0.214159, -0.859752, -0.171598, -1.088565, 1.207238, 1.744248, -0.818447, -0.740909, 1.082618, -0.497130, 0.540493, 1.398981, 0.979698, 1.927763, -1.685656, -0.867991, 1.422571, 1.422396, -0.864200, -0.882726, -0.814746, 0.088473, 0.309067, -0.390118, 0.834455, 0.481358, 1.016767, 0.131616, -0.440436, 0.841581, -0.282526, -0.009268, 0.915465, -1.676770, -0.627810, -1.986961, -0.005086, -0.703968, -0.999500, -0.053510, 1.351457, -1.026525, -0.267850, -1.671978, -2.514673, 0.060628, 0.475831, 0.696310, -0.737327, -1.091706, 0.593200, -0.989760, 0.835159, -0.016573, 1.702667, 1.240535, -0.211041, 0.762622, -0.239163, 0.778149, 0.699726, 1.460417, 0.974107, -2.002186, 0.642081, -0.733757, -0.437317, -0.391378, 0.706077, -2.504125, -0.483491, -0.045388, 0.219927, 1.337155, 0.355076, 1.145113, 1.582176, 0.097630, -0.772145, 0.997015, 0.848897, -0.657182, 0.588524, 1.006684, 0.006797, -0.161742, -2.117253, 0.595568, 0.972976, -0.802742, 0.353470, 0.014403, -0.710539, -1.090961, 0.088054, -0.722678, 1.855594, -0.624042, 0.207865, 0.517991, 0.308141, -0.776324, -1.323474, 0.373148, 0.629893, -0.440437, 0.493736, -0.615343, 0.067697, 0.957327, -1.377166, -0.637131, -1.375413, 0.794745, 0.130934, -0.677133, 1.195006, -0.120089, 0.584505, -0.377536, -2.066050, 0.073052, 1.264842, -0.761266, 0.740730, -2.106899, -0.490092, 0.734132, 0.469079, 0.885761, -0.590054, -0.222871, -0.329867, 0.281156, -0.315888, 0.504387, -0.276015, -1.496044, -0.812262, -1.261299, 0.231281, -0.520836, -0.293410, -1.481559, -0.234330, 0.644913, 1.089500, 0.692390, -0.695060, 0.543120, -0.493768, 1.427880, 0.350250, -0.426626, -0.976689, -1.094803, 0.294674, -1.960852, 0.644651, -0.319988, -0.247933, -1.315308, 0.110447, 0.199359, 1.454688, 0.808697, 1.876743, 0.215491, -1.692950, -2.158695, -2.446392, 1.467720, -1.713316, -1.254796, 0.433777, 0.769078, 0.182882, -0.582465, -1.015637, -1.676156, 1.912483, -1.062583, 0.134960, -1.205183, 0.221049, -0.027670, -2.838072, -1.167933, 0.526512, 0.029290, 0.370569, 0.610331, 0.220973, -0.918698, -0.994198, -0.463759, -0.485319, 0.641089, 1.438944, -1.457755, 1.642534, -0.563240, -1.731279, -0.379839, -0.422516, 1.442983, 0.332743, 0.910398, -1.518553, -0.080022, -0.036954, 1.782836, -0.371990, -0.906857, -1.200207, -0.153080, 0.300412, -2.253697, -0.477115, 0.876884, -0.430015, 1.704056, -0.367081, -0.202096, 0.965252, -0.207618, 0.543992, 0.626124, 1.386042, -0.448936, -0.121288, 0.624913, -0.269462, 0.147147, -0.411019, -0.001077, -0.698755, -1.403367, -0.370426, -1.196122, 0.963834, -0.609958, 0.967324, 0.579803, 1.047097, -1.083893, -1.039541, 0.203753, -1.530811, -0.798662, 1.377033, 1.571949, -0.202068, -0.458525, 0.230252, 0.620853, -0.393020, 0.555077, 0.919033, -0.145801, -1.195776, -0.647152, -0.137312, 1.150590, -0.552855, -1.112145, -0.054473, -0.649617, -0.930187, -0.564733, 0.319892, 0.310940, -1.449609, 0.493095, 1.107935, -0.594554, -0.638914, -0.745973, 0.071228, -0.229151, 0.538838, -1.513546, -1.664930, -0.151964, 0.992643, 1.258767, -0.212244, 0.172939, -1.220083, 0.474661, -0.662429, 1.953721, 2.028428, -0.840603, -0.706121, 0.424239, 1.373669, -0.115287, 1.243967, 0.230934, 0.108965, 0.500382, -0.493032, -1.768642, -1.831999, 0.680699, -0.433222, -0.343478, -0.063561, -0.407894, -0.337301, 1.505116, -0.503338, 0.854579, 0.853577, 0.100918, -0.244675, -0.687647, -0.430688, -0.377183, 0.231285, -1.175950, -0.247943, 0.339170, -1.600798, -0.176845, -1.479477, 0.236874, 0.626177, 1.505770, -0.770012, -2.114407, 0.623652, -1.314032, -0.330420, -0.333859, -1.156241, -0.020154, -0.629661, 0.505709, 0.160653, -0.594685, 0.684685, 0.147119, -1.186042, -0.737334, -0.663655, -0.380978, 0.246711, 1.429014, -0.813295, -0.469303, 1.530426, 0.083783, 2.283578, -0.440811, 0.153641, -1.994563, -0.113092, 0.673811, 0.278523, -0.064428, 0.311196, -1.172663, 0.170517, -0.265356, -0.240079, -1.893958, -1.555528, -1.473602, 1.390364, 0.206262, -0.376287, -0.204225, -0.808917, 0.434866, 0.128708, -0.834139, -0.522531, -1.495054, -0.472214, -2.046021, -0.097179, 0.611934, 0.149320, -0.155795, -0.699014, 1.812708, -0.380693, -1.531832, -1.501103, -0.505107, -0.440358, -0.330089, 0.662129, 0.386070, 0.719918, 1.618352, 2.271817, -0.585044, -0.557983, 0.256632, 0.371570, 1.115593, 0.240944, -0.482222, 0.424249, 1.866534, 0.112457, -1.912134, -1.408136, -0.270786, 0.213478, 0.275910, 0.193539, -0.821919, -0.218701, -0.561665, -0.731643, 1.275021, -1.195094, -1.146271, -1.297975, -1.064659, -1.216077, 0.019750, 0.862540, 1.160000, 1.061147, -0.359017, -1.159709, -1.725240, -0.081177, 1.791176, -0.544092, -1.302456, 0.578454, -0.471508, 0.957030, 1.769753, -0.447506, 0.983422, -0.797989, 0.313344, 0.269792, -0.291720, 0.351048, 0.291720, 0.831762, -0.472174, 1.990913, -0.448281, 0.571469, -1.657209, 2.219289, 0.391895, -1.326217, -0.799724, 1.062865, 0.077003, -0.394465, -2.014228, 0.960624, -0.052382, 0.427999, 0.829132, 1.824228, -0.942617, 0.130003, -0.021216, -1.132668, -0.764480, -0.168317, 0.542009, -0.743538, 1.270127, -0.756051, 1.733923, -0.560529, 0.738706, -0.734347, 1.191859, -0.544475, -0.531002, -0.435642, 0.463298, -0.577453, -0.884873, 0.991549, -0.014787, 1.707005, -0.177656, 1.320256, 0.852346, 0.029179, 0.388952, 0.001214, 0.778902, 0.591060, -0.811046, 0.045138, -0.085700, -0.035947, 1.447445, -0.711864, 1.546175, 0.660268, 0.178785, -1.225910, -0.202902, -1.309570, -0.941544, -1.051241, -0.568102, 0.390526, -0.318775, -0.480995, -0.151700, -0.665801, 1.651919, -1.297311, -1.497219, 0.246051, 0.027980, -0.381259, -0.096496, 0.336593, 0.377474, -0.929134, -0.443390, 0.520992, 0.495616, -0.922747, 1.520333, 0.578975, -0.866779, -1.085083, -0.876301, 1.993435, -0.230642, 0.252497, -0.905853, 0.688914, 0.543399, 0.180796, 0.824395, 0.073473, 0.476318, -0.613852, -0.439388, 1.355090, 0.166045, 0.536982, 0.469985, -0.048755, -0.294727, 0.609849, -0.046467, -0.321711, 0.730090, 0.425333, -0.852045, 1.214055, -0.544183, 1.838341, -1.352140, -0.654177, 0.587597, 0.742248, 2.345422, 1.473246, 0.832384, -0.342482, -0.435296, 1.224726, -1.111674, 1.485851, 0.240692, 1.761109, -0.014812, 0.716981, 1.222787, 0.880383, 0.909171, 0.665432, 0.575952, 0.336958, 1.881233, -0.222176, 1.354084, 0.351983, 1.207625, 0.747890, 0.628315, -0.330402, 1.284507, -0.470285, 0.697321, 0.183700, -0.626254, 1.289507, 0.517543, -1.608273, 1.594269, 1.221232, -0.618983, 0.415829, -2.141238, 0.825824, 0.286059, -1.213876, -0.680148, -0.071152, 1.058983, -0.845437, -0.121986, 0.734735, 0.309429, 0.791152, 0.060309, -1.022482, -0.065292, -0.890690, -0.816982, -0.224750, -0.312293, -2.463507, 0.918836, -0.002766, -0.853330, 0.691479, 2.548060, 1.662875, 1.281481, 1.192384, -1.668728, 1.197271, -2.561043, -0.818045, 1.593016, 0.562422, -0.526390, 1.762856, -0.942641, -1.142883, -1.439171, 1.409799, -0.787457, 0.084346, 0.671073, -1.305605, 0.041719, 0.027947, -1.282344, -0.614877, 0.557972, -0.484545, 0.307055, -1.387719, 0.750837, -0.232357, -0.060302, 2.352957, -0.680309, 1.747138, 1.735462, -0.260374, -1.199807, -0.931617, -1.260124, 0.191057, 0.227775, 0.717956, 0.051507, -0.663618, -1.699819, 0.772083, 0.116074, 0.269528, 1.058718, 0.271781, 0.700454, -0.683089, -0.889771, -1.166380, -0.979262, -0.595590, -0.685031, 0.086396, -0.309137, 0.294647, -1.132182, -1.224713, -0.426167, 0.239401, -0.074422, -1.176917, 0.761504, -0.592092, 1.220193, -0.704952, 0.900330, -1.187115, 1.015277, 1.260328, 0.630759, 0.337086, -1.637037, -1.250887, -0.046244, 0.351012, 1.162703, 1.150783, -0.249596, -1.953360, 0.629796, 0.160021, 0.345435, -0.358604, -0.342182, 1.213068, -0.033285, -1.251203, -0.159532, 1.890477, -2.201049, -0.439369, -1.866833, 0.449565, -0.204963, -0.027061, 0.825855, -1.003936, -0.373730, -0.545592, 1.312993, 0.985734, -0.339904, -1.341486, 2.050744, 0.490695, -0.673395, 0.974742, -1.396954, -0.406220, 1.028341, -0.380791, -1.627941, 0.564498, 0.053585, -1.529011, 0.943052, -0.991974, 0.294961, -0.499441, -0.449205, 1.251343, 0.550672, -1.977557, -0.462537, -0.510048, -0.222570, -0.072122, 0.401795, 0.477539, -0.223796, 1.078521, -0.104216, -0.216351, 2.980346, 0.212210, -0.347051, 1.103283, -0.973977, -0.091906, -1.194948, -1.324068, -0.686148, -2.092883, -0.299725, -0.651615, 0.440757, 0.640896, 0.073936, -1.164134, -1.603124, -0.499967, -1.081707, 0.023060, -0.579270, 0.627162, 1.104206, -0.394959, 1.254341, 1.229849, 1.464544, -0.787255, 2.088690, 0.268317, -0.176671, 0.935363, -0.097528, 0.905709, -2.091727, -0.764231, 0.147602, -1.692849, 0.329625, 0.210824, 0.413842, -0.703150, 0.290575, -0.373624, 1.072074, 1.590044, -0.011098, -0.295778, -1.916385, 0.425863, 1.115587, -0.884150, -1.975061, 1.115142, -0.121910, -0.801070, -1.524780, -0.181539, -1.952306, 0.074099, 0.355984, 1.172167, 0.285742, -0.967368, 1.547725, 0.241363, 0.376294, 0.777375, 2.150656, 1.269447, -0.966940, 0.895154, 1.553089, -1.353565, 0.317414, -1.658024, 0.131210, 0.447766, 1.149270, -0.726143, -1.047662, 0.598937, -2.622374, 0.361292, -0.627217, 0.462003, -0.820914, -1.385032, -0.543391, -0.651033, 0.473652, 1.060030, 1.089290, -0.232707, -0.581574, -1.889386, -0.316232, -1.681675, -0.564388, 0.461721, -0.948041, 1.690737, -1.464870, -0.468923, 1.565980, 0.162193, 0.902060, 0.231960, 0.196544, -1.367489, -1.598355, 1.200245, -0.114907, -0.810665, -2.748205, 0.318397, 0.146189, 0.026515, -1.849053, -0.196421, -0.822007, 0.008800, -1.256302, 0.494497, 1.354630, -0.030437, 0.099759, -0.660408, -1.435886, 1.366652, 0.378395, -0.433806, 0.268213, -1.567660, 1.133083, -0.796908, 0.044007, 0.624935, 0.781938, -2.384001, -0.883944, -0.412282, 0.532039, 0.431680, -1.594455, -0.663647, 1.058619, -0.013506, 0.009430, 0.493425, -1.710809, -0.631013, -1.466743, -1.493666, 1.689222, -0.834457, -0.746000, 0.692569, -1.036528, -1.485559, 1.384641, -1.000880, 1.443378, -1.472724, 0.724241, 1.087035, -0.594183, -1.117496, -0.872940, 0.350575, -1.242299, -1.025891, -0.595510, -0.654109, -1.289483, -0.437963, 0.959762, -1.425600, -0.189526, -0.096574, -0.735357, -0.098364, -0.282179, 0.277333, -1.698693, -1.026274, -1.859616, 1.280709, 1.107630, 0.366714, -0.206731, 1.060439, -1.482345, -1.548095, -0.012150, 0.722960, -1.158424, 0.105970, 1.394348, 3.046782, -0.354777, -0.729711, -1.281821, -0.105941, 0.831699, 1.519280, -1.314499, 0.489699, 0.174280, 0.486346, 0.708480, 0.446263, -0.879907, 0.911321, -0.448688, -0.735250, 0.558877, -0.834808, 0.054606, -0.604025, 1.790700, 0.701780, 1.081597, 1.397038, 0.196167, 0.673075, 0.599177, -1.484322, -1.121878, 0.184109, 1.195012, 2.013672, 0.667431, 0.599075, 1.077761, 1.813283, 1.066733, 0.367799, -0.124027, 1.555833, -0.015501, -1.347968, -0.278393, -0.312188, -0.240902, -0.716975, -0.042055, 0.338791, -1.734295, -0.461806, -0.002199, 0.276333, 0.752315, -0.399386, 0.929151, -1.092084, 0.725405, 0.300048, -0.391791, -1.096537, 0.215750, 1.798887, 0.157250, 0.594140, 0.415319, -0.456318, -1.695612, 0.271293, 0.696550, -1.405797, 0.661278, 0.019871, -0.944030, 1.600450, -0.261134, -1.449033, 0.121161, -0.148174, -1.185630, 0.916849, -0.451785, 0.443782, -0.643874, -2.142756, 1.031946, 0.094791, 1.055416, -0.489772, 0.522096, 0.590583, -0.493730, 1.073362, 0.438470, 1.114725, 0.911463, 0.188750, 0.194026, -2.349844, 0.503381, -0.455779, -1.107854, -1.654007, -0.056787, 0.375075, 0.810279, 0.257563, -1.032017, -0.791398, 0.306248, -1.668664, 1.106578, -0.308333, -0.061347, -0.716246, 0.043694, -2.664642, 0.165933, -0.569305, -1.130321, 0.014818, -1.193625, -2.558975, 1.209673, -1.308552, 0.497828, -0.577165, 1.240122, -0.671491, -1.524447, 0.078845, -1.035162, 0.430997, 0.211118, -0.947431, -1.608624, -2.499677, 0.509606, 0.220807, -0.033407, 0.348785, -1.264089, 0.207985, 0.235428, 0.270213, -0.166078, 0.949293, 0.590414, -0.947417, 1.403686, 0.687735, 1.939620, -0.373550, -0.179192, 0.627942, 0.398082, 1.663881, 0.085032, 0.474552, 1.067727, -0.043090, 0.484359, -1.140734, -1.722180, -1.047131, 0.734981, -1.776549, 0.456546, 0.833221, 1.332094, -0.292974, -0.631470, 0.986630, 0.807160, -0.421844, -0.906703, -1.524314, -0.884961, 0.773813, -0.056224, -2.804894, -0.212021, -2.186188, 0.185168, 0.605095, 2.035573, 1.004994, 1.392565, 1.361826, 0.156013, 0.161859, -1.024986, -0.447405, -0.171627, 0.315249, -0.787671, -0.181170, -0.026413, -0.498584, 0.418506, 0.376051, -0.949235, -1.569050, -1.180816, -1.049186, 0.304624, 0.661499, 0.640647, 1.174068, -0.012980, 1.875226, -1.358592, -0.432857, 0.815015, -0.508514, 1.790620, 1.813254, 1.688286, -1.095797, -1.140081, -1.303969, 1.548848, -1.437009, -0.255111, -0.482938, -0.274057, 1.955011, 0.237579, 0.033106, -1.135437, 0.007997, -0.552407, -0.564556, -0.908291, -0.203505, -0.223886, 2.313686, -1.296150, 0.173047, 1.174642, -0.027618, 0.966112, -1.232341, -0.030021, 0.319345, -0.867316, 1.628688, 0.282115, -0.081837, -0.291943, 2.406225, -0.869033, 0.271478, -0.473470, 0.568712, 0.052486, -1.014068, 0.913277, 0.946116, 1.870558, -0.885653, 2.609202, -0.638170, -1.580420, -1.359998, -0.550428, 0.871026, -0.454592, 1.568905, 0.183420, 0.218032, 0.449081, 0.529819, 0.691667, 0.914314, -0.570691, -0.942717, 1.469307, 1.753446, 0.501274, -1.359289, 1.476548, 1.473579, -0.012772, -1.892825, 0.063961, -0.592712, -1.123340, -1.499180, 1.755900, -0.305570, -0.500008, 0.640259, 0.106659, -0.321709, 0.247622, -0.324294, 0.364693, 0.575975, 0.668081, 0.081487, -0.592634, 1.165543, -0.651593, 0.242221, 1.342605, -0.830809, -0.137402, -0.382577, -1.027506, -0.422159, -1.761258, -0.422151, -2.860012, -0.664354, 1.145643, 1.152274, -0.086790, -0.557334, -0.350401, -2.715869, 1.145399, -0.046305, -1.113063, 0.141446, -0.948094, 1.251514, -0.464634, 1.991717, -1.759475, 0.187250, -0.588845, -0.096897, 1.031954, -0.010983, -1.210836, -0.292367, 0.993226, -0.279766, 1.601228, -0.660018, 1.345602, -2.074330, -0.752992, 1.144754, -0.742113, -0.140973, 0.047565, 2.047986, 1.179597, 1.788643, 0.017517, -0.697401, 1.799644, -1.091265, -0.935038, -0.844248, -0.452513, -0.119383, -1.365369, -1.015774, 0.171709, -1.167867, 0.194328, 1.810815, -0.129176, 2.725054, -0.788264, -0.927312, -0.946441, -0.496364, 1.243024, 1.024506, 0.562848, 0.589838, 0.479749, 0.136996, -0.944042, -0.152060, 1.930022, -0.282871, -0.695311, 0.274246, -0.246845, 0.131488, -1.029550, 0.300943, 0.799786, 0.331031, 1.223035, 0.081338, -0.740517, 0.780400, -0.379134, 1.337830, -0.588383, 2.364855, -1.163512, -0.863333, -2.046914, -1.883221, 1.046481, -0.564863, -0.810783, 0.125107, -0.150420, 1.220828, -0.665786, 1.130897, -1.150583, 1.194396, 0.498175, 0.162533, -0.707772, -0.702160, 0.311338, -1.324532, 0.374260, -1.323376, -0.609845, 2.035053, 1.389781, 0.723652, -2.279142, -0.288361, 0.085226, 1.874953, 1.320637, -0.338955, 1.193596, -0.678438, -0.483073, 0.026244, -2.338474, -0.483945, 0.488448, 0.877052, -0.018941, 0.492654, 0.877401, -0.456127, 1.199011, 2.074968, -0.708163, -1.064971, -2.244940, -1.703277, -0.534902, 2.719121, -0.219594, -0.844682, 0.638311, -1.729821, 1.031287, 1.974255, 0.754476, -0.688918, -2.087400, -0.222865, 1.385236, 2.023902, -1.696369, 1.629374, 0.094709, -1.575130, -0.704024, -0.323777, -1.253347, 0.028220, -0.327787, 2.239171, 0.159214, 0.255986, 1.568137, 1.164667, -0.448553, -0.161874, -0.165116, -0.863914, -0.087248, -0.752135, 0.458988, -0.048843, 0.293023, 0.689064, 0.977558, -1.068183, -1.451527, 0.782900, -0.350966, -0.798630, -0.280156, 0.032969, -1.797270, 0.438362, -0.863720, -1.039436, -0.002582, 0.112121, 1.750200, 0.060635, -0.510870, -1.130957, -1.864740, -1.185236, 0.269304, -1.526858, 0.481251, -0.230015, 1.721428, 1.425563, -0.666982, -0.708053, -0.164187, 0.364004, 1.019813, -0.275744, -0.043833, -0.351696, -0.815910, 2.299315, -0.184153, -0.711866, 0.412405, 0.387801, -1.463612, -1.326164, 0.122705, -1.740566, 1.350249, -2.999928, -1.079476, 1.005848, 0.142793, 0.039284, -0.477083, 1.415027, 1.371689, -0.385313, -0.116608, -0.657543, 0.854438, -0.455091, -0.904413, 0.293285, 0.276513, 0.740920, -0.544586, -0.318606, 1.527447, -0.744004, 2.307922, 0.080305, 0.899518, -1.009716, 0.051442, -0.141423, 1.049850, 1.425351, -1.321564, -0.182069, 0.604354, 1.126124, -1.533391, 1.227905, -0.126778}, - { 0.518952, 1.162368, -1.798795, -0.867513, -0.902761, -0.569932, 1.536706, 0.312945, -0.816614, 0.205572, 0.557286, 1.119651, 0.312007, -1.449260, 1.340671, -1.158833, -0.514870, 0.213704, 0.684035, -0.227593, 0.547329, -0.761784, 0.832984, 0.210424, -1.092072, -0.171058, 0.150676, -1.223885, -0.657113, -0.060362, 0.254263, 0.091524, 0.520225, 0.614053, 1.012045, -0.227732, -1.318443, -0.302499, 0.960666, 1.510928, 0.440599, -0.084649, -0.958252, -0.120589, -0.164827, -0.057199, -0.413750, -0.634553, 0.237990, 0.877374, 0.298192, 1.856975, 0.764293, 0.874037, 0.595867, 0.619713, 0.562479, -0.210082, -1.543225, 0.892888, -1.696982, -0.457714, -0.363990, -0.326662, -0.877575, -1.438922, 1.143075, -0.949175, -0.304912, 1.096116, 1.484030, -0.459466, -2.622959, -1.018936, -0.187362, 0.120116, 1.243857, -1.462913, 2.256280, 0.555826, -0.417415, -1.905057, -0.476038, -0.113666, 0.424785, -0.090718, 0.788324, 0.332542, -0.300448, -0.147215, 0.855126, -0.278038, -0.923044, 0.851853, -2.458197, -1.167353, -0.766429, 0.710552, -0.059008, 0.416561, -0.505565, -1.711315, 0.501801, 1.093736, -0.675009, 0.418622, -0.478458, -2.445961, -0.574692, -0.510264, 1.222454, 1.416887, 1.881324, -1.224483, -0.192971, -1.474669, -0.087442, -0.066874, -0.246011, -1.135367, 0.344876, 1.153495, -0.458268, 0.234769, -1.622231, 0.963444, -1.598255, 0.061461, -0.605092, -0.986508, -0.343193, -0.545039, -1.456976, 1.274898, -1.221443, -0.180985, 0.055030, -0.120429, 0.689885, -1.329042, -0.556072, 1.558713, 0.751160, 1.339128, -0.236770, -0.373796, 1.831537, -0.259762, 0.434894, -0.532829, 0.246230, -1.464444, -0.108311, -0.456836, 0.195834, 0.277482, -1.266396, -0.849120, -2.061893, 0.808576, -0.555153, -0.147723, -0.474466, -0.239455, 1.341826, -0.106921, 2.065480, -0.441481, 0.664820, -1.277822, -0.299469, -1.420722, -2.099840, 0.343450, 2.540860, -0.926449, 0.197026, -0.726183, 1.050272, -0.737852, -0.166120, 0.664234, 1.013656, -1.165498, 1.007423, -0.172138, -2.029020, 1.141557, 0.353489, 0.081430, 0.830974, 0.418607, -0.351879, 0.602844, -0.721621, 1.802644, 0.996313, 0.761951, 0.926985, 0.095698, 0.359223, -0.636097, -1.235096, 2.180223, 0.394994, -0.495499, 0.021269, 1.310753, 0.005859, -0.104357, 1.083434, 1.059119, -0.743192, 1.719489, -0.101391, -1.267381, -0.189335, 0.718785, 0.931292, 1.437718, -0.372649, -0.907225, 1.282693, 0.876738, -0.484487, -0.464993, 0.141420, -1.199631, -0.378282, -0.437029, 0.438706, -1.180428, 0.783763, 1.490899, -0.392060, 1.161181, -0.311748, -0.440851, -0.665584, -1.500246, -0.492544, -0.379814, 0.880973, 0.157939, 0.679526, 0.511198, -2.105838, 0.889459, -1.276460, 0.658910, 0.844979, -1.096772, 0.005347, 0.604721, -0.840049, -1.615631, -0.828526, 0.975748, -0.212494, -0.554400, 0.478605, -0.031569, 0.346321, 0.945974, -0.363957, 0.598352, 1.038371, 0.328402, -0.025847, -0.878673, 0.478343, 0.486232, -0.483129, 0.506757, 1.444913, 1.168826, 0.568879, -1.174100, 1.370144, 0.473695, 0.390632, 1.383955, 0.448953, -1.017132, 0.900898, -0.144165, 1.053975, 0.869238, 0.049348, -0.285958, 0.418414, 0.148709, -2.446635, 2.775388, 2.740348, 0.437757, 1.014558, -0.815353, -2.009257, 0.100290, 0.289360, 1.888040, -0.352834, 0.865372, 0.437201, -0.589921, -1.570448, -0.215553, -0.958858, -0.706953, 0.234845, 0.497245, -1.274970, 2.069393, -0.871129, 1.539526, 0.884739, -0.035742, 0.675370, 0.450473, -0.631187, 1.459335, -0.085644, -1.735184, 0.214348, -0.827850, 0.375847, 1.232152, -0.271332, 0.612415, 0.789417, 0.403406, 0.857535, 0.158922, -0.101365, -1.006675, -0.631185, -0.545891, 1.155990, 1.145976, -0.241313, -2.518106, 0.696856, -0.538133, 1.962220, -0.762076, 0.104323, -0.097219, 0.371687, 0.219108, 2.737759, 1.210492, -0.316519, -0.265216, 1.067261, -0.287555, -1.928526, -1.241996, 0.530617, 0.361525, -0.132287, -0.302163, 0.951118, -0.308180, -0.533939, -0.085950, -0.685746, -0.398097, 0.974740, -0.106426, -0.464663, 0.511503, 1.210732, 1.329182, -0.796742, 0.764483, 0.132045, 0.690627, 0.804084, 1.056020, 1.336397, -0.120761, -0.715317, 0.086613, -0.825823, -0.120825, 0.975659, -1.217578, 0.688687, 2.081750, -0.225608, -0.148970, 1.357386, 0.529068, 0.614945, -0.491391, -0.916978, 0.980924, -1.400070, 0.864572, -1.112517, -0.398690, 0.284615, -1.496243, 0.746950, 1.531219, 1.471135, -0.805669, 1.094857, -0.707119, -0.332737, 0.613130, -0.181662, 0.706068, -0.314673, -1.696566, -0.857361, -0.885075, -0.670904, 1.288304, 1.556940, -0.336662, 0.658193, 0.685668, 0.684748, -0.610792, -0.832581, 0.396398, -1.636395, -1.008490, -1.153076, -0.580281, 0.982674, 0.248579, -0.473313, -0.537659, -0.469753, -0.669530, 1.390815, 0.725664, -0.327422, -0.746781, -0.180561, 0.566930, 0.971566, -0.848449, 0.186446, 1.574179, -0.166437, -0.677378, 0.518695, 0.058036, -0.594170, -0.126222, -1.123885, 0.258315, -0.161235, -0.962333, -0.781905, 0.189181, -0.038720, 0.451620, 0.483519, -0.298262, 0.075225, -2.605987, 1.057136, 2.736648, -1.141955, -0.257243, -0.173656, -0.933108, 0.759807, -0.596802, -1.919008, -0.552297, -0.985422, -1.124851, -0.225415, -0.141748, -0.027191, -0.846502, 0.331134, -0.318134, 0.072660, 1.562407, 1.505415, 0.321347, -0.432737, -1.128980, 0.529206, -0.957205, -0.547667, -0.444013, 0.008419, 1.270872, 1.264295, -0.623383, 1.515287, 0.530056, 0.042548, -0.848762, 0.186584, -0.916992, -0.718603, -0.848081, -0.074939, 0.621200, 0.161188, 0.260020, -2.182160, -0.623284, 0.045384, 0.100553, 1.081088, -1.354447, -0.689581, -0.559884, -1.357593, -0.724405, 0.119281, -0.689707, 0.798264, -1.369510, 0.292522, -1.468991, -0.049375, 0.233208, -0.388089, -0.581397, 2.366405, -0.534019, -0.620034, -1.769758, 0.148224, -0.847789, -0.093799, -0.218760, 0.031402, -0.002293, -0.862510, -1.420485, -2.427190, 1.692356, 1.410544, -0.507337, 0.444993, -1.362756, 0.371117, 0.953700, 0.817113, -0.495754, -1.039855, -0.743338, -0.938439, 0.764197, -0.111459, -1.091744, 0.143336, -1.302288, 1.620537, -2.143726, 0.985670, -1.346112, -2.598702, 1.063853, 0.584100, -2.284946, 0.655365, -0.617718, 2.051483, -2.214747, -1.657807, -1.936486, -1.612624, -0.991852, 0.161787, 0.284205, -0.463732, -0.254055, 0.154183, 0.371049, -0.183455, 0.825057, 0.745674, 0.419711, -1.132238, 0.607386, 0.102220, 0.321504, 0.038343, 0.053386, -0.762188, -0.259852, -0.487347, 0.760262, 0.631092, 0.724152, 0.132375, -0.828680, -0.076065, -0.908630, 0.021302, -1.200314, -1.190897, -0.710872, -2.418598, -0.078035, -3.683474, -0.704848, -0.431010, 0.248407, -1.495463, 0.342708, -0.262475, 0.806656, 0.188544, -0.959031, 0.674800, 1.520044, 0.193738, 0.069503, 0.639584, 0.453554, 0.830797, -1.056819, 0.537809, -0.014943, -1.737957, -0.628852, -1.712063, -0.871136, -1.728263, 0.360104, 1.834100, 1.003810, 0.083628, -0.779263, -0.428446, -1.430104, 1.330492, 1.003891, -1.258530, -0.696464, -0.226107, 1.041798, 0.696941, -0.535378, 0.849735, -0.477170, 0.087048, 1.424732, -1.008964, -0.132845, -1.348346, -0.291963, -0.024596, 0.128478, -0.389964, -0.415652, 1.068860, 0.214976, -0.790869, -0.567100, -1.682943, -2.070874, -0.221694, 0.047536, -1.352800, -1.357142, -0.371345, -0.834061, 0.394043, 0.222264, 1.974593, -0.191900, -0.394343, -0.058686, 0.122490, -0.399591, -1.600263, -0.741651, 2.010656, 1.803104, 1.233832, -0.086108, 0.492556, -1.691300, 0.522956, -0.013510, -0.722364, -0.772057, 0.187971, -1.026233, -0.474038, -0.483049, 0.572613, 0.757206, 0.212976, 0.202104, -0.498018, 0.402687, -2.021328, 0.570238, -1.341060, 0.464255, -0.640525, -2.269424, -1.054187, -1.048950, 0.124926, -0.316079, 0.072628, -0.269037, -1.325855, -0.640706, 0.626546, 0.090737, -0.203425, 0.613889, 0.346997, -2.027530, -0.603509, -0.806319, 0.615907, -0.331047, 1.438644, 0.778929, 0.016765, -0.559678, -0.520945, -0.252116, 1.309592, -0.546212, -0.624296, -0.556562, 1.426493, -0.383657, 0.790586, 0.247081, 1.097674, 0.061288, -1.297490, 0.562747, 0.150960, 0.821458, -0.855083, -0.488128, 2.214689, -1.440458, 0.146115, -0.369609, -0.482663, 0.997130, 0.063701, 1.775640, -0.536969, -0.512646, -0.211964, -0.867221, 0.302343, -2.250198, -0.422025, -0.385885, -0.062679, 1.040181, 0.580824, 0.468945, -1.299730, -0.502798, -0.313476, -0.368587, 0.666503, 0.336206, -1.104164, 0.871700, 0.913650, -1.407066, -0.070199, 0.033570, -0.589517, -0.081466, -0.732482, -1.047630, -0.324654, -0.905101, -0.479201, 0.361424, 0.452732, 0.662269, -0.454592, 0.478825, -0.237625, -0.313496, 0.615410, 0.647592, 0.369851, 0.069368, -0.919034, -0.312422, 0.273838, -0.873364, 0.764300, 0.811097, 1.020809, -0.160100, 0.164794, -2.264615, -0.415117, -0.241901, 0.858080, 0.895220, -0.344896, -0.975067, 0.056592, -0.172722, -0.121518, 0.258461, -1.854684, 1.286877, -1.175031, -0.315312, -0.386829, -0.589122, -0.770916, 0.060637, -0.958496, 0.699418, -0.529905, 1.527215, -0.732539, -2.085891, -0.902212, -1.380370, 0.290474, -0.131146, 0.758255, 0.621133, 0.102081, -1.255512, -2.000521, -0.233043, 0.372346, -1.068109, 1.092686, 0.060838, 2.045782, 0.046476, -1.491586, 0.895329, -0.395219, -1.134530, 1.044644, -0.795002, -0.942108, 1.361653, -1.059661, 1.599510, -0.189018, 0.735837, -0.024612, -0.026003, -1.962455, -0.614026, 0.676071, 0.269449, -0.367097, 0.092693, 1.042485, 0.689645, 1.511057, -0.383347, 0.012248, 0.208068, 1.113002, -0.475783, 2.185819, 1.365130, -1.026220, 0.550242, 1.030770, -1.392420, -1.157244, -0.679251, 0.991499, 0.805023, -1.630679, 0.860425, -0.525114, 0.096144, 0.471262, -1.540963, -2.159987, -0.115165, -0.830024, -1.702788, -0.509286, 0.278388, -0.556004, -0.588994, -1.034958, 0.502577, 0.550701, 0.303669, 0.277961, 0.635776, -1.315611, 0.457480, 0.472503, -2.357314, 1.579524, 0.404300, 0.490000, -1.658127, -0.596829, 1.187693, -0.506440, -0.307896, -0.822654, 0.688367, 0.949938, 0.077461, 1.409064, -0.209761, -1.562512, 0.624578, 0.708672, 0.678920, 0.398042, -0.572646, 0.041091, 0.952863, 0.402590, -0.430198, -0.746173, 0.535453, -0.247516, -0.786634, 1.601104, 0.354338, -1.085854, -1.620820, 0.521449, 0.553747, -0.590570, 1.447742, 1.380022, -0.682209, -1.510861, 0.515762, -1.471499, -0.944493, -0.103107, -2.276479, -0.596429, 0.282959, -1.816973, 1.091120, -0.156806, -2.721825, 1.657096, 1.099770, -1.357105, -1.775070, 0.044434, 1.667185, -0.455544, 0.771589, 0.440840, 0.028334, 0.455736, -0.456631, -0.547159, -0.859422, 0.858043, -0.723348, 0.986482, -1.284516, 0.169269, 0.365440, 0.314956, -0.616118, 1.294881, 0.588733, -0.677480, -2.082953, 0.570625, 2.075498, -0.585912, -1.080718, -0.357393, 0.428992, 0.868927, 0.326426, 2.012604, -0.332008, 1.389657, -0.409630, 0.388229, -1.535498, 1.618992, 0.213168, -0.043738, -1.846736, 0.217364, -0.367976, 0.327775, 1.840851, 0.305627, -1.110851, -1.853412, 1.952231, 1.140515, -0.605426, -1.251541, 0.060831, 2.050164, 0.021124, -1.082278, 0.827259, -0.476179, 0.767742, -0.699321, 0.293056, -1.175491, 0.382086, -2.160473, -0.889657, -1.271364, -1.256234, -0.251347, 0.329174, 0.125098, -2.608219, 0.221413, -1.944605, 1.225326, -0.583309, 2.196939, 0.844835, -2.086751, -0.979241, 0.752662, -0.739707, 0.895065, 1.514503, -0.710089, -0.292705, 1.188285, -0.087105, -0.818011, -0.827132, 0.512415, -0.022906, -0.002570, -0.344519, 0.096063, 0.602089, 0.081756, 0.603396, -1.927151, 1.238337, 0.349291, -0.013855, -0.609561, -0.628287, 1.083968, -0.704285, -0.619108, -0.459914, -0.532268, -0.750080, 0.612067, 0.206833, -0.637593, 0.706027, -1.663744, -0.467621, 1.113786, -0.273945, -1.189034, 0.136016, -1.201018, -0.761498, -0.316103, 2.708184, 0.278652, -0.527790, -0.396567, -1.543137, 3.163427, -0.388896, 0.356863, -0.159301, -1.031765, 1.149837, 0.390515, -0.028265, -1.912386, -0.928422, 0.312223, -0.838605, -1.298115, -1.718151, -1.908418, 0.226162, -0.121172, -0.826636, 0.732337, -0.531318, -0.944800, -0.479531, 1.122353, -0.719119, -0.612396, 0.012359, -1.525452, -0.614813, -1.311322, -0.070871, -0.816705, 2.685458, 0.001582, -0.604644, 0.187463, 0.760386, 0.503678, 0.794716, -1.067101, -0.495400, 1.289925, -0.140525, -0.197324, -0.114958, -2.012670, 0.541029, 1.358051, 0.219042, -0.988146, 0.756291, 1.003738, 1.282235, 1.501885, -0.991952, 0.379449, 0.307527, 1.091114, -1.361564, -1.000829, 0.017385, 0.605945, 0.844209, -0.092681, -0.850127, -0.099953, 0.320252, -0.465215, -0.002209, -0.687512, 2.112251, 1.318050, -0.479493, 0.696357, 0.217582, -0.340527, -1.000958, -1.265839, 0.558741, 0.882556, -0.295940, 0.568476, 0.530993, -1.805148, -0.552234, 0.767347, 0.327156, -0.191294, -0.226830, -0.079601, -0.780924, 0.225280, 0.118416, 1.519796, 1.026296, -0.641959, 0.000142, -0.932292, -0.594701, 1.622214, 1.483304, 0.909285, -1.129821, 0.829855, 0.940379, -1.644021, 0.251087, -0.708955, -0.407415, 0.616344, 1.168703, -0.309097, 0.156080, 0.092674, 0.820861, 0.541886, 0.595370, 1.291819, -0.156426, -1.128493, 0.071421, -0.532708, -0.066494, 0.883334, -0.384743, 1.456125, -0.627964, 0.204217, 0.437908, -1.400623, 1.102863, -0.424437, 0.675941, 0.318191, -0.059816, -1.077087, -1.737317, 0.389834, -0.635459, 0.443593, -1.044719, 0.262805, -0.324160, -0.084522, 0.511022, 0.944931, 0.883683, 0.106966, 1.232118, -0.653086, 3.262121, -1.081103, -0.590483, -1.405750, -1.013561, -1.070954, 0.890803, -1.113468, -0.265972, 1.056530, -0.148175, 0.076543, -0.511244, 0.576806, 0.386467, 1.862593, -0.034095, 0.403712, -0.696307, 0.150786, 0.311340, -0.382572, -1.692675, 0.581177, -0.307369, 0.725119, 0.451817, 0.825874, 0.860246, 0.747739, -1.010625, -0.470218, -1.530791, -0.509255, -0.297618, -0.838961, -0.403924, 0.041118, 0.915592, 0.902701, 0.510400, -0.799036, 1.867074, 0.207543, 0.341075, -0.519093, -0.429405, 0.669502, 1.041966, -1.189790, 0.146299, 0.027307, 0.012874, 0.895704, 0.590505, -0.651764, 0.304170, 1.008589, 0.194182, -1.255801, 0.091931, 0.052084, -0.310534, -0.552719, -1.362927, 0.925602, 0.739201, 0.994897, 1.563367, 1.734074, 1.276001, 0.713283, 0.899281, 1.366017, -0.417471, 2.122678, 0.950992, -0.662464, -0.188340, 1.946704, -0.037671, 1.233832, -0.656505, -1.505004, -0.990054, -1.917223, -0.934473, 0.497554, 0.069328, -0.012559, 0.310414, -1.577618, -0.022443, 1.571595, 0.233673, 0.912763, -0.619912, -1.155788, 0.435731, -1.695808, -0.028006, -0.424350, 0.600104, -1.219809, 2.666564, -0.324222, 0.359463, -1.317982, -0.407880, -0.232296, -1.341150, -2.263968, -0.207092, -0.538979, 0.259010, 0.089926, -0.170382, -1.470842, 0.299185, -1.026294, -1.477967, 1.123312, -1.300318, 1.508895, -0.042535, 0.726155, -1.360518, -0.381313, -0.505148, -0.301697, -1.141210, -2.459215, 1.747482, 0.114497, -0.251210, 2.288306, -1.244228, 0.422036, -0.623950, 1.864082, -0.284539, 0.280851, 0.372920, 0.218083, 0.083845, 0.194441, 0.660830, 0.416158, 0.836507, -1.044078, 0.776163, 0.716429, 1.580140, 1.161993, -0.237797, -0.784269, 1.262705, 0.101487, 0.244230, -0.477396, -1.838775, -0.641780, -1.284349, 0.306096, 1.288453, 0.379320, -0.237461, -0.503582, 0.693911, 1.371519, -0.571594, 1.009777, 1.348591, -0.136135, -0.530386, -1.172935, -0.037384, 0.446388, 0.874063, -1.681080, 0.417288, 1.628493, 0.545712, -0.233395, -1.594938, -2.608989, 0.905311, 0.917012, 0.725684, -0.221010, -1.368422, -0.284964, -0.092248, 0.847750, -0.784778, 0.193128, 0.104976, -2.567677, 1.336846, 0.094713, 1.668579, 0.174510, -1.161633, 0.829109, -0.896916, -0.182133, -1.193986, -1.835753, -0.741845, -1.472638, 1.368393, 1.376880, 0.103887, 0.148442, -0.872854, 1.825611, 0.163360, -1.304511, 0.492921, 0.193159, 0.085426, 0.041636, -1.022136, 0.462208, -0.174245, 0.306695, 0.542238, -0.141138, 1.265690, 0.644435, 0.940558, -0.697743, 0.727834, -1.693527, -0.775631, -0.697654, 1.637154, 1.466176, 1.254640, -0.534375, -0.849055, 1.520509, -0.100205, 0.606042, 0.108752, -0.973267, -1.401161, 0.362469, 0.328166, 0.836652, -0.799157, 0.816189, 0.009377, 0.038227, 1.025946, -0.333950, 1.357301, -1.475854, 1.884862, -1.529693, -0.046506, -1.097077, 0.482390, 0.511521, -0.402447, -0.736946, -0.649650, 0.854700, 0.260066, -0.872124, -0.124475, -0.370634, 0.852074, -0.338662, 0.285646, 0.951869, 0.546810, -0.088545, -2.398326, 1.964575, 0.070797, 1.055780, -1.395551, 0.963233, -1.943933, 0.632127, -0.008302, -0.926632, 0.372030, 0.216198, -0.064001, 0.829510, 0.366817, 0.107899, 1.754424, -1.911364, -0.671474, 0.242215, 0.015881, 0.198430, 2.276494, -0.622192, 1.139027, 0.724854, 0.240646, 1.727737, 0.479893, -0.458955, 0.818671, -0.407440, -1.332006, -0.522749, 0.683843, 0.865182, 1.060917, 1.246718, -1.180373, 0.024785, 0.458826, -0.152750, -1.435341, -0.406233, -1.632127, 0.050783, 0.961793, 0.205733, 0.178652, 0.359012, -2.210203, -1.090889, -0.206213, 0.525051, -0.642402, -1.009747, -0.731000, 2.133404, 0.577944, 0.143935, 1.092903, 0.079860, 0.999881, 0.305992, 1.011663, -0.685637, -1.838057, -1.961542, -0.945681, 1.778203, -1.242251, 0.911029, -0.328908, -1.453260, 0.185465, -1.984962, 0.572278, -0.438872, 1.773412, -1.227815, 1.838639, 0.473720, -0.660469, 0.131033, 1.125070, 2.302504, 1.220280, 0.829194, 0.315571, 1.005047, -1.701230, -0.334146, -1.382715, -0.579333, -1.249460, -1.283667, 0.170328, -1.078099, -0.631240, 0.581630, 0.189366, -0.683955, -0.467063, 1.295333, 1.238439, -2.091977, -0.582829, -1.187739, 0.214517, 0.648700, -0.539494, 1.023397, 0.557759, 1.390506, -0.307207, 0.722090, -0.095336, -0.705310, -0.110571, 0.791726, 0.275511, -0.133408, 0.166322, -0.369782, 1.329481, 0.087848, 1.567259, 0.953815, 0.278991, -1.169648, -0.550008, -1.287847, -0.621685, 1.804199, -0.456086, -0.432633, 0.309033, -0.047299, -0.988274, 1.153675, -1.207113, -2.682838, -0.554930, -1.424872, -0.502789, 0.939467, -1.569790, 0.521084, 0.864545, 0.115977, 0.672535, 1.420286, -1.367226, -0.442172, 0.894281, 1.217324, 0.200071, -0.748267, -0.357666, 1.762212, -0.842240, -1.771058, -1.863491, -1.181371, 1.321481, 0.566443, 0.282781, -0.150728, 0.091864, -0.542690, 0.630068, -0.947100, -0.173693, 0.076285, 1.002006, 1.068730, 1.581338, -0.446998, 0.417752, -0.709574, 0.092237, -0.254638, -0.702786, -0.859778, 0.268829, 0.845579, -1.046428, -1.536363, -1.111797, -0.265642, 0.828722, -0.656474, -0.314237, 0.087344, 1.014441, 0.131323, -0.339852, -0.235602, -1.261236, 0.896386, 0.636983, 0.270472, -1.885064, 0.453885, -0.989966, -0.377427, 1.263525, 0.358287, -2.027820, -1.132779, -1.467208, 0.538016, -0.301217, -0.180661, 0.425882, 1.114713, -0.075108, 0.471195, -0.666022, -1.316625, 0.955623, 0.336905, 1.989939, 1.292242, -0.601795, -0.899520, 0.115490, 0.295473, 1.465032, 1.153879, 0.276988, 0.162410, 1.676851, 0.892173, -0.620816, -2.132476, 1.500932, -1.362565, -0.981353, -1.533095, -0.212400, -0.550098, 0.894498, -0.817807, -0.661387, -0.294791, 0.180499, 0.401215, 0.264175, 1.453660, 0.449453, 1.149770, -0.342007, 1.081221, 0.096260, -0.803339, -0.509018, 0.345856, 1.261539, -2.024364, 0.121838, -0.711374, -1.856611, -1.437185, 0.751811, -0.496188, -1.455343, 0.639586, 0.131187, -0.952266, 0.222782, -1.536016, -0.866994, 0.342890, -0.228003, -0.899364, -0.722392, -1.676511, -1.744903, 1.100625, -0.803313, -0.109783, -0.461940, 0.563165, -2.052041, 2.191800, 1.334626, 1.400876, 0.077165, 0.265503, 0.511384, -1.375639, 1.917323, -0.139275, 0.008700, 0.727013, -0.084696, 2.686974, 1.206829, -0.309442, -0.904576, -0.596687, -0.922034, 1.482792, 0.172146, -1.208373, 0.693574, 0.440209, -0.188568, -0.526351, -1.947133, 0.809232, 0.871808, 0.742186, 0.863523, -0.166117, 0.498611, 0.310070, 0.381786, 0.653206, 0.148217, 1.407459, 0.828865, -0.038492, 0.524069, 0.170670, 1.474259, -1.341317, 0.523663, -0.613773, -0.326880, 1.107351, 1.651786, 0.372519, -0.848598, 0.110590, 0.614286, 0.080857, -2.643306, 1.039904, 0.244449, -1.229751, -0.779638, -0.730420, 0.567981, -0.051342, 1.841997, 0.166192, -0.463366, 1.037097, 1.218273, -0.495237, 3.471958, -0.434035, 0.159170, -0.798223, -0.270720, 0.101905, 0.267933, -2.383186, -2.051801, 0.481722, 1.028375, 0.821777, -1.022724, 0.385434, -1.809577, 0.412940, 0.236784, 1.583866, 0.548083, 1.054801, -0.434492, -0.856149, -0.505715, 0.529612, 0.114081, -0.269778, -1.009344, -0.067175, 0.152955, -0.357731, 0.612200, -0.840961, -0.887639, 0.174031, 0.483493, 0.396484, 0.086299, -0.695073, 0.218451, -0.107985, -0.172631, -0.207584, -0.190226, 0.846662, 1.330043, -0.198286, 2.321617, -1.316172, -0.138666, -0.343945, -0.189743, -1.452243, 1.068505, -0.341754, 1.641856, -1.650921, 0.061540, 1.300521, -0.347681, -0.795947, -1.436225, 0.961920, -2.052740, -0.407981, 0.653718, 0.107094, -0.710195, 0.315439, -1.354563, 0.221473, -1.041992, -0.581942, 0.357597, -1.890987, -0.597311, -1.473145, -0.350471, 0.125741, -0.930310, 0.428432, -0.967160, 0.464659, 1.154750, 2.018633, 2.011441, 2.208607, 1.491580, 0.647132, -1.108447, -1.935150, 0.597562, -0.665319, 0.523110, -0.263608, -0.328440, -0.703669, 0.260574, -0.748177, 0.294249, -2.041269, -0.472729, 0.295487, 1.122591, 0.630252, -0.205729, 0.850908, 0.984669, -0.955185, -1.373212, 0.731857, -2.157793, -0.560694, 2.006505, -1.977460, -1.125782, -1.352002, -2.219777, 0.169104, -0.062947, 0.489620, -0.285271, 0.088439, -0.834065, -0.295777, -1.560086, -0.855220, -1.547707, -0.364884, -0.767302, -0.506299, 1.899558, 0.883932, 0.496599, -0.558840, 1.739138, 0.761513, 1.850784, -0.896777, 1.096983, -0.904290, -0.465244, -0.159774, -0.336955, -0.011538, 0.062038, -0.199574, -0.485475, -0.908482, 1.029275, -1.103089, -0.798156, 0.089670, 0.886983, -0.911536, -0.059560, 0.412633, 0.576537, 0.030309, -0.540630, 0.904968, -0.252710, -0.090221, 1.798550, 0.796586, -0.900159, -0.250838, 0.156425, -0.839535, -0.502826, 1.170884, -0.014695, -1.967475, -1.683184, -0.539904, 0.550075, 0.594210, -0.896028, 0.287708, -0.414704, -0.705853, 1.379258, 0.319299, 0.602653, -0.742451, -0.224238, -0.717872, -0.004869, 0.102973, 1.409957, 0.194060, -1.358461, -2.182374, 0.045148, -0.225932, 0.162138, -2.042701, -0.883814, 0.120561, 0.242942, 0.039683, 0.340223, 1.912625, 0.372164, 1.877519, 1.025872, 1.630232, -0.450314, 0.068567, -0.876204, 0.665986, 0.993564, 0.390087, -0.838901, 0.694339, -0.644647, 0.714814, -0.015316, 0.890952, 0.305818, -0.898378, 2.137281, 1.023523, -0.520367, 0.778039, -0.634855, 0.192832, -0.003267, 0.706890, -1.062430, 0.164660, 1.276853, -1.287037, -2.170786, -1.850595, -0.291163, 0.846534, -0.928191, 0.428992, -0.016366, 0.789128, 0.481860, -0.252126, 0.571117, -0.068113, 0.934546, -2.053656, 0.962705, -0.733596, -0.211707, 0.708605, 1.137077, -0.213415, -0.048278, -0.897323, 0.132363, 0.250790, -1.034235, -0.944833, -1.042946, 0.082916, -2.184453, 1.254691, -0.726751, -1.099074, 1.012545, -0.311446, 0.330406, -1.104354, -0.254759, -0.273032, -1.518917, 0.572091, -0.764316, 0.994647, -1.288203, -0.684582, -0.047248, 1.256078, -0.828180, -0.612146, 0.036231, -0.705757, 0.155163, -0.845285, 0.106533, -0.412265, -0.649195, -0.081940, 2.552835, 0.143465, -2.234997, 0.895388, -1.601734, -0.301419, -0.677383, -0.333972, -0.234320, -0.359395, 0.279860, -0.063294, -0.982167, -0.756966, 0.249855, 1.191994, 0.506383, -0.616915, 1.036933, 0.707492, -0.443129, -1.001321, -0.620715, 0.523193, -0.194107, 1.046323, 0.062379, 0.760646, -1.235984, -1.075935, 0.815765, -0.166026, -1.371565, -1.142255, -0.202379, 2.748995, -0.496493, 0.750801, -0.177589, 1.295741, -0.167755, 2.037037, -1.736472, 1.080029, -0.090248, 0.539161, 0.427516, 1.077522, -0.847862, 1.218735, -0.611232, -0.922657, 0.572403, 0.241477, -1.948874, 0.461678, -0.372864, -0.083613, 0.359012, 2.352640, -0.256567, 2.212046, -0.925159, 0.210973, 1.804450, -1.367644, 1.252709, -1.741381, -0.600619, -0.796770, 0.106782, -0.267904, 0.211987, 1.162221, 0.098177, -0.621041, 1.214945, 0.283478, 1.050023, 1.125071, 1.847991, -1.501189, 0.609863, -0.133596, -1.307853, -0.080477, 1.529858, 1.449526, 1.388146, 0.557645, -0.247557, 1.022511, -0.497592, 0.980051, 0.778850, 0.106274, 0.655727, 1.657862, 0.099711, -1.074785, -1.122895, 1.199919, 1.200530, 1.353485, -0.491281, -0.025766, -0.012630, 1.908428, -0.821923, 1.323908, -0.509372, 1.227415, 0.190175, -0.205099, 0.229240, -0.090017, -0.361161, -0.134529, -0.330206, -0.997945, 2.027675, 0.078727, 2.084929, 0.158772, 1.135177, 0.598905, 0.942675, 0.499652, 0.666354, -0.525028, 0.218316, 0.251423, 0.740516, -0.394733, 1.461362, -0.521344, -0.285225, -0.487171, -0.288211, 1.173032, 1.369794, 0.618428, -0.185894, 0.278014, 0.042217, 0.752353, 2.211035, -0.103015, 0.725785, 1.203434, -0.077624, -1.284144, -0.520757, 0.299489, 0.704413, -0.193236, 0.708951, 0.941824, 0.682024, -1.956502, -1.578109, -1.029724, -0.764531, -1.279284, -0.216441, -0.441401, -1.623199, 1.100711, -0.320896, -0.770509, 0.040447, -0.113209, -0.789273, -1.220250, 0.579968, 0.502719, 0.441211, -1.171070, 0.166721, -0.260787, -0.816884, 0.298453, -0.001717, 0.006347, -1.434281, -1.151443, -0.538964, 0.703069, -1.276095, -0.226504, 1.161283, -0.160461, 1.421675, 0.086339, -0.657041, 0.052721, -1.251649, -0.330848, 0.561357, 1.317487, -1.088093, -0.492804, -0.761072, 1.537370, 0.569898, -0.336856, 0.247130, 0.070704, 0.198241, 0.533858, -0.235200, 0.224226, 0.184714, -0.226624, -0.624459, -0.397169, 0.536889, -0.978012, 0.406226, -0.950866, 0.982145, -1.159240, 2.134123, -0.048258, 0.098952, -0.643004, 2.364311, 1.164967, -1.290345, 2.078451, 1.038493, 1.394947, 0.880166, -0.488240, 0.192816, 1.065888, 1.274860, 0.193909, 0.992683, -0.303303, 0.653357, 0.643782, 0.046668, -0.752921, 0.260487, 0.560703, 0.119655, 0.588153, -0.212747, 0.653602, -2.152914, 0.453750, -1.864725, 2.294234, -0.845907, -1.291614, 0.074353, 2.837563, 0.380204, -0.057426, 1.592455, -0.167945, -0.660325, -0.004754, -0.791922, 0.239650, -1.180316, -1.986195, 0.148530, 1.083698, 0.613561, 0.655198, 0.796734, 0.185870, -0.343466, -0.402375, -0.251838, -0.959962, -1.641983, 2.184370, -0.143437, -0.748410, -1.258922, -0.147396, -0.738061, 0.901103, -0.331166, 0.415719, -0.397677, 1.153018, -0.905016, -0.721247, 1.413530, 0.665706, 1.015069, 0.513309, -0.134084, -0.267412, -0.180506, 1.182320, 2.139919, -0.454421, 0.563573, -0.602368, 0.249855, 0.074500, 0.018131, -0.563705, 1.108275, 0.153206, -0.983481, -0.601730, 0.513319, 0.695154, -0.554087, 1.150277, -0.089833, 0.822232, 0.176264, -1.125321, 1.209480, 0.847334, 1.323874, 0.341635, 1.569383, 1.733697, 0.380122, 0.957688, -0.381205, -1.540731, -1.627863, -0.741243, 1.899079, 0.447823, 0.862537, 1.070684, -1.019463, 0.535094, -0.433291, -1.527964, -2.490137, -1.196899, -2.771122, -0.309580, 2.066570, -0.986769, 0.398518, 0.727244, -0.802204, -0.762315, 0.681813, -1.358620, 0.258776, -0.175540, -1.263262, -2.350428, -0.239511, -0.219165, 0.224887, 1.504703, 2.227986, -0.377314, -0.277389, 0.639054, -0.471823, -1.098436, -1.402378, 0.286569, -1.350989, 2.114943, -0.016056, 0.470505, 2.548211, -0.972326, 0.687218, 0.037541, -1.579730, -0.224703, -0.941998, 0.728366, -1.275005, -0.928181, 1.393137, 0.543861, 0.308266, 1.487565, -0.538747, -1.112442, -0.306873, -1.573034, -0.399388, -0.216450, 0.817581, 0.960064, 0.127150, 1.121973, -0.716063, -0.603108, -1.044167, 1.322581, 1.640935, 0.921974, 0.885678, 0.608481, 0.515719, -1.197033, 0.790054, 2.601736, 2.103345, 1.349263, -0.188492, -0.269467, 0.668106, -0.256431, 1.547818, 1.710081, 0.719044, -1.149104, 1.248265, -1.453923, 0.755737, 1.125287, 0.537853, 0.210833, -0.208683, 0.272207, -1.320309, 0.888944, 0.550442, -0.825832, 1.499688, -0.330660, -0.006114, -0.553461, -0.359127, -1.390297, -0.117823, 1.100237, 0.539304, -0.486441, 0.151164, 1.864749, -0.456337, 0.585182, 0.400216, -0.262981, -0.064163, -2.276772, 1.261878, -0.333131, 0.464024, -2.034419, 0.132153, 1.741572, -0.522564, 0.595167, -0.001308, 0.339612, 1.312011, 0.552106, -1.444501, 0.664527, 0.415314, -0.135093, 0.594034, -0.015630, 0.698685, 1.435948, -0.584437, 0.222601, -0.532518, 0.014706, 0.693972, 1.523247, 1.604509, -0.669600, -1.344628, -0.702854, 0.093269, -0.418897, 1.285488, -0.658696, 0.467842, 1.399174, -0.590423, -1.046240, -2.131277, 0.268735, -0.719683, 1.167856, -0.420475, -0.964951, -0.181970, -1.235589, 0.223609, 0.702442, 0.367478, 0.637659, -1.675441, 0.625153, 2.062821, 0.474142, -0.036353, 1.168110, -1.941924, 0.041332, -0.908709, -0.583841, -1.148765, -0.700061, -0.685297, 0.763409, -1.170789, -0.112705, -1.769163, 0.971036, 0.750660, -1.372363, 1.698413, 1.468194, 0.516216, 0.323268, -0.307209, -0.872732, 1.120413, -0.293474, -0.883126, 0.007951, 1.654868, 0.391436, -0.342052, -0.983810, -2.380533, 0.526905, -0.022313, 1.153121, -0.925789, -0.357406, -1.008313, 1.856564, 1.675069, 1.376277, 0.071128, -1.378064, 1.885558, 0.101680, -1.527211, -0.366372, -0.267805, -1.579058, -1.641743, 0.711803, -0.337448, 0.896301, -0.961551, 0.890737, 0.370830, -1.477164, -0.381848, 1.174151, -1.845576, 1.459091, 1.454430, 0.247112, -0.187003, 0.418321, 1.498374, -1.117305, -0.050863, 0.232668, -1.087557, 1.768355, 0.386241, 1.319378, 1.860259, 0.530682, 1.493442, -0.098021, -0.519290, -0.411268, -1.791562, 1.038537, -0.570997, -0.870024, -0.712551, 0.484305, -0.634572, -0.853535, 0.518944, -0.944500, 0.297152, -0.375778, 0.392175, 0.480982, -1.125845, -0.451420, 0.536001, -0.647737, -0.417425, -0.156947, -0.374478, 1.773248, 0.381423, -0.868918, -1.492623, -1.209877, 0.085095, -1.469154, 0.626068, -1.549076, 1.052350, 0.798036, 1.772227, -1.597737, -0.160080, -1.152472, -0.922728, -1.316148, 0.314007, -0.397553, 0.883643, -0.646078, -1.542944, 0.474991, -0.617348, -0.022353, 2.978019, 0.746427, -0.402593, -0.247545, 1.105902, -0.666992, 1.448683, -0.025765, 0.601741, -2.030849, 0.634759, 0.113907, -0.747089, 0.117888, -1.396427, 0.074574, 0.379026, -1.242945, 0.152092, 0.361389, 0.440520, 0.012036, -0.479870, -0.339469, -0.885203, -0.563204, 0.317398, -0.806333, -0.135484, -0.016595, 1.693942, -0.981829, -1.148891, 0.268062, 0.505769, 2.405080, -2.082251, 0.557540, -0.634769, -0.296872, -1.909830, -0.608833, -0.398865, 0.864738, 0.444709, 0.446205, -0.755511, 1.951951, -0.841204, 0.491084, -0.426162, 1.004235, 1.043145, -1.084082, 0.264011, -1.423082, 0.560195, 0.017562, 1.187044, 0.769326, -1.060783, -0.921773, -0.761935, 0.055675, -0.313040, -0.561275, -2.042048, -0.179407, -0.937317, 1.343623, 0.300427, -0.873347, -0.011759, -1.632112, 1.140004, -0.480376, 1.779628, -0.715719, 0.629754, 1.145237, -0.598855, 0.108275, 2.888785, 0.386953, 2.658719, -0.075725, -0.399285, -0.943272, 0.777759, 1.978837, 0.947555, 0.067847, -0.324736, 0.070579, -1.546697, 1.366879, 0.588620, -0.282222, 0.614630, -2.092358, 0.418881, 0.609235, -0.130344, -0.097523, 1.506913, 0.052745, -0.116083, 0.442235, 1.566776, -0.644695, 0.351335, 0.041172, -2.033339, -0.397176, 0.872564, -0.474513, -0.619575, -0.205593, -0.116091, 0.518412, -0.016317, -0.336698, 0.904775, 0.664887, 0.815399, 0.048513, -1.559874, 2.754288, -0.011793, 0.699092, 0.117808, -0.393934, 0.505875, 0.808070, 1.077410, 1.075085, 0.148283, 0.849917, -0.124775, -0.522051, -2.162865, 1.016408, 1.493935, -0.613167, 0.603836, 0.110119, 0.578371, -0.581796, -0.899316, 0.984474, 1.162693, 1.221260, 1.647246, 0.019186, 0.956358, -0.202960, 0.554222, -2.802947, 0.446151, 1.071511, 1.293783, -0.402543, -1.290444, -0.119898, -1.843290, 0.461694, -0.369207, -0.264993, 1.556780, 0.325489, 1.228060, -0.100826, -0.084220, 0.691702, 0.766215, 0.309942, 0.693400, -0.093269, -0.157484, -1.280848, -0.530763, 1.025654, -1.540281, 0.157013, 0.922545, -0.987998, -0.940692, 0.405397, 0.082137, 0.104761, -0.575118, 0.808999, -0.360241, 0.216758, -1.084956, 0.747453, 1.955764, -0.189345, -0.543032, 0.718822, -0.644044, -0.330934, 0.418401, 0.565199, 1.310041, -0.455300, -0.510609, 0.794185, -0.373836, -1.605508, 0.097853, -0.320185, 1.408608, -1.390388, -0.538724, 0.145802, -0.757467, 1.591647, -0.583450, 0.163481, 2.645931, -0.229253, -0.825497, -0.149721, -0.103169, 0.838666, -1.172979, 0.734279, 0.915594, -1.177460, 0.119027, 0.177183, -2.405823, -1.642143, -1.708708, -0.101306, -0.163743, -1.926949, -0.006567, -0.097752, -0.784427, 1.047451, -0.248151, -0.022732, 1.592340, -0.829903, 0.845261, -1.037282, -0.953367, 0.077327, -0.984658, -0.276593, 1.886285, -0.459682, 0.130256, 0.041410, 0.536269, -0.806383, -0.519020, -0.055321, -0.217679, 1.443330, -0.696327, -0.294574, 0.902893, -1.150215, 0.013616, 1.229312, 1.795201, 1.574993, -1.292545, 0.534143, 2.656923, 1.403724, -1.041025, -0.964517, -0.315716, 1.302320, -0.060552, -0.883634, -0.501514, -0.427643, -0.231822, 0.464595, 1.644022, 0.417917, -0.282918, 0.367621, -0.327728}, - { -0.406468, -0.365057, 0.597241, -0.963384, 0.468242, 0.162815, -1.798851, -0.282942, 1.926839, 0.187841, -0.990895, 0.416849, 0.877864, -0.648915, 1.583707, -0.530586, 1.289275, -0.300843, -0.043793, -0.386670, 1.014606, 0.097312, -0.626041, -0.542674, 1.921894, -0.139604, 0.568860, -0.260140, 0.419980, 1.131792, 0.143581, -1.445115, -0.859116, 0.021160, 0.020419, 1.353125, -0.453110, 0.539750, -0.691671, -0.700413, 0.014173, 0.027873, 0.572080, 0.206089, -0.448775, 0.600117, -1.200543, -0.963716, 0.176836, -0.323267, -0.446048, -1.351900, -1.006603, 0.606469, -0.004117, -0.464407, 0.869106, 1.114791, 1.600351, 0.653638, 1.676764, -0.148909, 0.395486, 0.283424, 0.564011, -0.646501, -0.351129, 1.414086, -0.915920, 0.435346, 0.414801, -1.740013, 0.564108, -0.424704, -0.006933, 0.444198, -0.626687, 0.025097, -0.287651, -1.036991, -0.284438, 0.204398, -0.799633, -2.331408, -0.093658, 0.188885, -0.698944, 0.804218, -0.747071, -0.506996, -0.798443, -1.028703, -0.073629, 0.951085, 1.428918, 2.360682, -0.392841, 1.255247, -1.807375, 1.694760, -1.339607, -0.588851, 0.040053, 0.268924, -0.686937, 0.410683, -0.006103, -0.100148, -0.366536, -0.235112, 1.008025, 0.343076, -0.558086, 0.286246, -0.717089, -1.906361, 0.566072, 0.996611, -0.489689, 0.673680, -0.124255, -0.152901, 0.673218, -0.001344, -1.216590, -0.562838, 0.962074, -0.581380, -0.288032, 0.741669, -0.593664, -1.018684, -0.297349, -1.176695, -0.203766, 0.473981, 0.556438, 0.944548, 0.712051, 0.210379, -1.794086, 0.297498, -1.254568, 0.902893, -0.866551, -1.577222, -0.531548, 2.092106, -0.575074, -0.110176, 1.504110, -0.518778, 0.355393, -0.801812, 0.235125, 0.117631, -0.107405, -0.462904, -1.603790, 1.927497, 2.191435, 0.238668, 1.011266, -0.639768, 0.462078, 1.444878, -0.898090, 2.311769, -0.506508, 1.782247, -0.663961, 0.450903, -0.076780, -0.488982, -1.612017, 1.255842, -0.459528, 0.055312, -0.665984, 0.283830, 0.058986, -2.005889, 1.110387, 0.977519, -0.227215, -1.272269, -0.834723, -2.106870, -1.323220, -0.330791, 2.653687, 0.209834, -0.578994, -0.056921, 0.008863, 3.271777, -1.154689, 0.711307, 0.101732, -0.902282, -0.555710, -0.631138, -0.619637, 0.097667, -1.369606, -0.855141, -0.251135, 1.675182, -1.077526, 2.063405, 1.426003, -0.149372, -1.387733, -1.655074, 0.312748, -0.834636, -0.210825, -0.221048, 0.848495, -0.545513, 0.506935, 1.919146, -0.321572, 1.342337, -0.038625, -1.183764, 0.195506, -0.450266, -1.357680, -1.458466, -1.618047, -0.972546, 0.362747, -0.225409, -1.693150, 0.979390, 0.193112, -1.268898, -0.547307, 0.952950, -2.047787, -1.318950, 1.485277, 0.501556, -0.239314, -3.149474, -0.062519, 0.453764, 0.472629, -0.470235, -0.275218, -0.804016, 1.018439, -2.585617, -0.339461, -1.201731, 0.253317, -0.499498, -0.160565, -0.616867, 0.128782, 0.606420, -0.713193, -0.582815, 0.995971, -0.665680, -1.538404, -1.226090, -1.100394, -1.500038, 0.262429, 1.373822, 0.972318, -0.167317, 1.060992, 1.003259, -1.043173, 0.894478, 0.087678, 0.262319, -1.366780, 0.703388, 0.923383, -0.493396, -0.568345, 1.408210, -1.563138, 0.089805, 0.168082, -0.037214, -0.723589, 0.840348, 0.666864, 0.467143, 1.518542, -0.646734, -0.064256, 0.392097, -1.331105, -0.802394, 0.274659, -0.198273, 1.070325, -1.287854, 0.932486, -0.459115, 1.300467, -0.686518, -0.135831, -1.501052, 0.977043, 0.344008, 0.584928, -1.273679, 0.872673, 0.270420, -0.321429, 0.515701, -0.091082, 1.642456, 0.347802, -0.209354, -0.733974, 2.228736, -1.865011, 0.143932, 0.362588, -1.279297, -1.249130, 0.781288, 0.804844, 0.015832, 0.017303, -0.167162, -1.132812, -0.641970, 2.400760, 0.399719, -0.986007, -0.061530, 0.798438, -0.172927, -1.813524, -1.072456, 0.537532, -1.120123, -0.787208, 0.316349, -0.732543, 1.564227, 1.124341, 0.859728, 0.158561, -0.197376, 0.599204, 0.482985, -1.306450, -0.143630, 0.147203, -1.053556, -0.463211, 0.685317, -1.333367, 1.295151, -0.421591, 1.399507, 0.045936, -0.192254, 0.842519, 0.743713, -0.335369, -0.163486, -1.445692, 0.211799, -0.164727, 1.000108, -1.521852, -1.280649, -0.294810, 0.179966, -0.112759, -1.757522, -0.472785, -0.602000, 1.030993, 0.455416, 0.775487, -0.047498, 0.602244, -0.875585, -0.140058, 3.275847, 1.302661, -0.322593, -0.493948, 0.183973, 1.606791, -1.941916, -0.743365, 0.844753, 0.692284, 1.552531, 0.667258, 1.360232, 0.152084, -0.996113, 2.191667, 1.346821, -0.369673, -0.194913, -0.252180, -0.208716, 0.046470, 0.491133, 1.641221, -0.121306, -1.657650, 1.828078, -0.064448, 1.094953, -0.760442, 0.025336, -1.354822, 1.258587, 1.307206, -1.507555, -0.883043, -0.514430, 0.632000, -1.388132, -0.163171, 1.105909, 0.436512, -1.113544, 0.087129, 0.666920, -1.334040, -0.703989, -1.320381, 1.238646, -0.286670, -0.288271, 0.305155, -1.113500, -0.137761, 1.869549, 2.479349, -0.626884, -0.393559, 0.413428, 0.173851, -0.713130, 0.412676, -0.353355, 2.333463, 0.560384, 0.156283, 0.657191, 0.671582, 0.124373, 1.864296, 0.180495, -0.087415, -0.143829, 0.183196, -0.773594, -0.478594, 0.031756, 1.253657, -1.503867, -0.486741, -2.396816, 0.402792, 0.451413, -0.538706, 0.594532, 0.011250, 0.008682, -0.252546, -0.190114, -0.919804, -0.813059, 0.535400, 0.464503, 0.224138, 0.656899, -1.189306, -0.878884, -0.300770, -0.360323, 1.210252, 0.500266, 0.107874, -0.784057, -0.119357, 0.625247, 1.968287, -0.562140, -1.752138, -1.290463, -0.153740, 0.493097, 0.458951, -0.267861, 0.584230, 0.116383, -1.451924, -0.666567, 0.680205, 0.652880, 0.291001, -0.631543, -1.784194, -0.263254, 0.988923, -0.731957, 0.672977, 1.426194, 0.310817, -0.531299, -0.761460, -1.767070, -0.866708, 0.237591, 1.297507, 0.733228, 1.636519, 0.015092, 1.102568, 1.282674, -0.405458, -1.340220, 0.329330, 1.062319, 0.037963, 2.116057, -1.650487, -1.274937, 0.054449, -0.770531, 0.129880, 0.165700, 0.989725, 0.636512, 0.685477, -1.289200, 0.925239, -0.814277, -0.907037, -1.031544, 1.099652, -0.949617, 1.416019, -0.448473, -0.754543, -0.058473, 1.596451, -0.933824, 0.562584, -2.389839, -0.684192, 0.185644, -0.108062, -0.857809, 1.242899, -0.480496, 2.189663, 0.858043, -0.200968, 1.693915, -1.196794, 1.592965, 0.091841, -0.172567, -0.513637, -0.723757, 0.345762, 0.469300, -0.830485, 0.248202, -0.677153, 1.064555, 0.709279, 2.171458, 1.691104, -0.303637, 1.064757, 0.308908, 0.374307, -0.807925, 1.226659, -0.627498, 1.180085, 0.241683, -0.008952, -1.442318, -1.250514, 0.224200, -1.249030, -1.033518, -0.015128, -0.769184, -2.265702, 0.657685, 0.391878, -0.559987, -1.030730, -0.497953, 0.116829, 0.665867, -0.047166, 0.471871, -1.780302, 0.234891, 1.474528, 0.474255, -2.521239, -0.445469, 1.853918, -1.180532, 0.571184, -1.492830, 1.854272, -0.878059, 0.076240, -0.438071, 0.453710, -0.273160, 1.066663, -0.847786, 3.127259, 1.342705, -0.251027, 0.540692, -0.666649, 1.139145, -1.261988, 1.377206, 0.180713, 0.248917, 0.680635, 0.805239, -0.874402, -0.891547, -1.464762, 1.909882, -0.560268, -0.796543, 1.700378, -0.349600, -0.461750, -0.096434, 0.537761, -0.799122, -0.181014, -0.387946, -2.051841, -2.287463, 0.642675, 1.751290, -1.447666, -1.356728, -0.690176, 1.157448, -0.128633, -1.551042, -1.105166, -1.574512, 0.258396, -0.054202, 0.057885, -1.356813, -2.610289, -0.345650, 0.819189, -1.027992, 0.925931, -1.000288, -0.811576, 2.059559, 0.569935, 1.647736, -0.014369, -0.938087, 1.604069, 0.462123, 0.582675, 1.759614, -1.719389, 0.680925, -0.693605, 0.989517, 0.031058, 0.291677, -0.590878, 1.906436, -0.598627, -1.176984, 0.293686, 0.280523, 0.955669, -1.516574, 0.469994, 0.062413, 0.678846, -0.775084, 2.002544, -1.003839, -0.173063, -0.731172, 1.140475, -0.127201, -1.786448, 0.177480, -0.047648, -0.895553, 0.569750, -2.868160, 0.419723, -1.108614, 0.525144, 0.980685, 0.271644, -1.134562, 1.120831, 2.060712, -1.411138, -1.289436, 1.716802, 0.768466, -1.071004, 0.124706, -1.334314, 0.683175, 0.110427, 0.590573, -0.644159, 0.423661, -1.462781, -0.234598, -0.716409, 0.170097, 0.342129, 0.549406, 1.248006, 0.173548, 0.021924, -2.023530, 0.377129, -0.855406, 0.738041, -0.344279, -0.389226, -0.541200, 0.398816, 0.809971, -0.517599, -1.835558, -0.395012, -0.797962, -1.340762, 1.603437, 0.857996, -0.002159, 0.712849, -0.258669, -1.105638, 0.183898, -0.561262, -0.484531, -0.669755, -0.398090, -1.530870, -0.519626, 1.365397, -0.017795, 0.627677, 0.370884, -0.807559, -0.223457, -0.096272, -0.978555, -0.180315, -0.151533, 0.046199, -0.028220, 0.525393, -0.712728, 0.699668, 0.091549, -0.883363, 1.014451, 0.840313, -0.935581, -0.822299, 0.409609, 1.744240, -0.039787, 0.882294, 1.198668, -0.064957, -1.479674, -1.762894, 1.583332, -0.294342, 0.557081, -0.717986, -1.491499, 1.319759, 0.557004, -1.402948, -0.149134, 0.976089, 0.937032, -0.106868, -0.854570, -1.781579, -0.792879, -0.366036, 1.323650, 2.555737, 1.227880, 0.292694, 1.126642, -0.181210, -0.389203, -3.232716, 0.748369, -1.134446, -0.561532, 1.680062, 0.593843, 1.735434, -1.060379, -0.087503, -0.640505, -1.104373, 1.841985, 0.336545, -0.106145, -0.122830, 0.410170, 0.067522, 1.037194, -0.250460, 0.511080, -1.007815, 1.428172, -0.878694, 0.562377, -0.455986, -0.189975, 0.171312, -0.971539, -0.399392, 0.075889, -1.556407, 0.526123, -1.475662, 0.993950, 0.011876, -1.442463, -0.047092, 0.744630, -0.638076, -0.343080, 1.428011, -0.450641, 0.331645, 1.654822, -0.950845, -0.643413, -0.014288, 1.743920, 0.092840, 0.895650, 1.509748, 1.341443, 0.338540, 0.907330, -0.376868, -1.078227, 0.042255, 0.226201, 0.360208, -0.605466, 0.968499, 1.431797, -0.921544, 0.315659, -0.256213, -1.429460, 0.091766, 1.770358, 0.756846, 0.224588, 1.613540, 0.446077, -0.784914, 0.739155, 0.835684, 0.878251, 1.285831, -2.310294, -0.356622, -1.913146, -0.870067, 0.562963, -0.101310, -1.879325, -0.093701, 0.936658, -0.418884, 0.026779, 1.454802, 0.429302, -0.198892, 0.591640, 1.018650, -0.465515, -0.957694, 1.107289, 1.093368, 0.214955, 0.188758, -0.657759, -0.668446, -1.019573, -1.097866, 0.408089, 1.194084, -0.137262, 0.517485, 1.392941, -0.211832, 2.069592, 0.687874, -1.290541, 1.018855, 0.529679, -1.499467, 0.665105, 0.371907, 0.451066, 2.277218, -1.913767, 0.704111, 1.366875, 2.866656, 0.940889, 0.252956, -0.128458, 3.180509, 0.468433, -0.282350, 0.627048, -0.646344, -0.259248, 0.054573, -1.017478, 1.846370, -0.817583, -1.051370, -0.245170, -0.173399, 1.019417, 0.315563, 1.247490, -0.690307, 0.515575, 0.467928, -0.388324, 0.735909, 0.030597, 0.506710, -1.191672, 1.009759, -0.553440, -1.077032, 0.165895, 0.253513, -2.349923, 0.628529, -0.216724, -0.588570, 1.193728, -2.107257, -0.222867, 0.909580, 0.808902, 0.116927, 0.290311, 0.295843, -0.527296, 0.199396, 0.367194, -0.003397, -1.589023, -1.222446, -0.148172, -0.864601, 0.146541, -0.435049, 1.561154, 0.416958, 0.347068, -1.384918, 0.257929, -0.788887, 0.093189, -1.650009, -0.665659, 0.664007, 0.249292, 0.294210, 0.973764, -0.493717, 1.567738, 1.682037, -1.513476, 1.117336, -0.570056, 0.975398, -2.252530, -0.089434, -0.315956, 0.732453, 1.022141, -1.041310, -2.355721, -0.707041, 1.012606, -0.044438, -0.978465, 1.498494, 1.115269, -1.077721, 0.410779, -0.287947, 0.470311, -0.863949, 0.187757, 1.021498, -0.624577, 1.966630, 0.062544, -2.202236, 0.078476, -1.054308, 1.813082, -0.369070, 0.629143, -0.088215, 1.340759, 0.647080, 0.794593, 0.878580, -1.013451, 0.979106, 0.622499, -0.543778, 0.068688, -0.931662, -0.578983, 0.352615, 0.610382, -0.793257, -0.077706, -0.540909, -0.050348, -0.271217, 2.046692, -1.937235, -1.081329, -1.392283, -0.254534, -1.237023, 0.864616, -0.241888, -1.497972, 0.426860, -3.184020, 1.829987, -0.150108, -2.532937, -0.696043, 1.095071, 1.284768, 0.922124, 0.641639, 0.916526, 1.571525, 1.105264, -0.279900, -0.295197, -0.494245, -1.394263, -0.764266, -1.450999, -0.854092, 0.032585, 0.756926, 0.586853, 0.376092, -0.789892, 0.602740, -0.805774, -1.341582, 0.692253, 0.424803, -2.454445, 0.860276, 1.400603, -0.345318, -0.315355, -0.381468, 0.394866, -0.125473, 0.042189, -0.163197, -0.268920, 1.478979, 0.443604, 0.269591, 0.005241, 2.471152, -0.431033, -0.213088, -0.980578, 0.988233, 0.380966, 0.725471, -1.423143, -2.224652, 0.978976, 0.815932, 0.700834, 0.837131, -0.024787, -0.417686, 1.134339, -1.107843, 0.306380, 0.033667, 1.867317, 0.012471, -0.287572, 1.778533, 0.370135, -1.174634, 0.192555, 0.261137, -1.397272, -0.084362, 0.041274, 1.009914, -0.749546, -0.761334, 0.098064, -0.294881, 0.446405, 0.928836, -1.929282, -0.570285, -0.784546, -2.779403, -0.846695, 0.137031, 0.540867, 0.824389, 0.236472, 0.210313, -0.360871, 0.347146, -0.253956, -0.665773, -1.925257, -0.348763, 2.227881, 0.003805, 1.332039, -0.982287, 0.031008, -0.270740, 2.522820, -0.791248, -0.684459, 0.764983, -0.152321, -0.026215, -0.979252, 1.229182, 0.858369, -0.407767, 0.776863, 0.579153, -0.264932, -0.018016, -1.123752, -1.313664, -1.017174, 0.960427, -1.606437, 1.105650, 0.359138, 1.027496, 0.092651, -1.402268, 0.354990, -0.880036, 0.131442, 1.565317, -1.083326, 1.650765, -0.492004, -1.601428, 1.099451, -0.331004, -0.366546, -0.480666, -0.411154, -0.410900, -0.941763, -1.469652, -1.363842, -0.033438, -0.233233, 0.376351, 0.686400, -0.363033, -0.332623, -0.048890, 0.067551, -1.459144, 0.341030, -1.077012, 0.273593, -0.371357, -0.298692, 1.114963, -1.465033, 0.519586, 0.052964, 0.655276, -0.491731, 0.280850, 0.323244, 0.867395, 0.759899, -1.666730, 0.979111, -0.167920, 0.591915, -0.119927, -0.195404, -1.175960, 0.545832, 0.692513, -1.271827, -0.836648, 0.586593, 0.291112, 0.996090, -0.896535, -0.814722, -0.005518, 0.358933, 0.111271, 1.340262, 0.741738, -0.774394, -2.162559, 1.318474, -1.396477, -0.520804, 0.466399, 2.279527, 0.029293, 0.108531, -1.754407, 0.163995, 1.082599, -0.403398, -0.170029, -0.963065, -0.486390, -0.431780, 0.542583, -0.011153, 1.094012, -0.462220, -1.562649, 0.032236, 1.436180, 0.643423, 0.641089, 0.482134, 1.324782, -1.681461, 0.544893, -0.395092, 0.153287, 1.228124, -1.540012, 0.444108, -0.455420, -0.216309, 0.817343, -1.055369, -0.470671, -1.268143, 0.019048, -0.427014, 1.649644, 0.071607, -1.580412, -0.396234, 0.110895, -0.296831, -1.111292, -0.044197, -1.242487, 1.372200, -1.057536, -0.437267, -0.892935, 0.759907, 0.848724, -0.130426, -0.012477, 0.581111, 0.973880, -1.026649, 0.243048, -0.867487, 0.490193, -0.773725, -0.890799, 0.772237, 1.469286, 0.380690, 0.953945, 0.034076, -0.152651, 0.135191, -1.222980, 1.007377, -1.039381, 1.371140, -0.428279, -0.628594, -0.360490, -0.933866, -1.854327, 0.998097, 0.796403, -2.439250, 0.756891, -1.550121, -0.225330, -0.630589, 1.332149, 0.709854, 0.226034, 0.729615, 0.267521, -0.698030, 0.186030, -1.167110, -0.385187, -1.295860, 1.022553, 0.041222, 0.958232, -1.054944, -2.073357, -0.424499, -0.763159, 0.522001, 1.385108, -0.557294, 0.702881, 0.447902, 2.224815, -0.080233, 1.244975, -1.041720, 1.946191, -1.104801, 0.434410, 0.505597, -0.796234, -1.369856, -0.827263, -0.399050, -0.226377, -1.068695, 0.514542, -1.101633, -2.120940, -1.738808, -1.078760, 1.081354, -0.585005, -0.136036, -1.990163, -0.106920, 0.237565, 1.648598, -0.482580, 0.760493, 0.207137, -0.701255, 0.285121, -0.840918, 0.003624, 0.498518, 0.025036, 0.788528, 2.160563, -0.296655, -0.137203, 0.324651, 0.132233, -0.531125, 1.789201, -0.160457, -1.032517, 0.146514, -1.824918, 0.974990, -1.214175, -1.649340, 1.387548, 0.470395, 1.312280, 1.237932, -0.899659, -0.829653, -1.842418, -1.061287, 0.560200, -1.421208, -0.581494, -1.333445, 1.197808, -0.004378, 1.416499, 1.755505, 0.026544, 0.837454, 1.557874, -0.217017, -0.397989, 0.063063, -1.778829, -0.192884, 0.084211, 1.062490, 0.964407, 0.566962, 0.847083, -0.274809, 0.375254, 0.722517, 0.560678, -1.005988, 0.875064, 0.687439, -0.396946, 0.670352, 0.689516, -1.470827, -0.344292, -0.629194, 0.227307, 1.988977, -0.876211, -1.121046, 1.265790, -0.685251, -1.070367, -0.062884, 0.054505, -3.003368, -1.133793, -2.012723, -0.337795, 0.898864, 0.916570, -1.894812, 0.238004, 0.097478, -0.509694, -0.415274, -1.191918, 0.876687, 1.286826, -0.005971, 0.455453, 0.048425, -0.456403, 0.971292, -0.865462, -0.246155, -0.585692, -0.965737, 3.445901, -0.911199, 0.287442, 1.587792, 0.895560, 1.925481, 0.095547, 1.518426, 0.012224, 0.691692, 0.582198, -0.406868, 0.143958, 0.457494, 1.337578, 0.673886, -0.314307, -0.481295, 0.300115, 0.369252, -0.205887, -0.345503, 0.967452, -1.299286, -1.718308, 0.036918, 0.629148, 2.099278, -1.417399, -1.640476, 0.083439, -0.583210, 0.207945, 2.570730, -0.825374, -0.759509, 0.481104, 0.737747, -0.094216, -0.284510, -1.562090, 0.307287, -2.235996, -0.514724, -0.214082, 0.499416, -0.699206, 0.980064, 0.163693, 1.312642, -0.183776, 1.725256, -0.677991, -1.607041, -0.544693, 1.346919, -0.624496, -0.183641, -0.246156, -1.923805, 1.569831, -0.725646, -0.548008, -0.413044, 0.303991, -0.995683, -0.342037, -1.948194, -1.954113, -1.625112, 0.835255, -1.270998, -1.378510, 0.446086, -1.131451, -0.970990, 0.637331, 1.110468, 0.767603, 2.231873, 0.776787, 0.985546, -1.538532, -0.784095, -0.798493, 0.480797, 0.776444, -0.433342, 0.396399, 1.428377, -0.699219, -0.743212, -0.872042, 0.074149, 2.007679, 0.364113, 1.133289, 1.023652, 0.105856, -1.568905, 1.186232, 0.620150, -2.199017, -0.027987, 1.024930, -0.116677, 0.546419, 0.803328, -0.368815, -1.090368, -1.694118, -0.290254, 1.870361, 0.356535, 0.505162, -1.475733, -0.081447, -1.705330, 2.530515, 0.047912, -1.537741, -0.127411, -1.600267, -2.032078, -1.126504, -0.919711, 1.830218, -0.401305, 0.030775, -0.181328, -0.213574, 1.437745, -1.801430, 0.476875, -0.173328, 2.088142, -0.709095, 0.195275, 0.020651, -1.806825, 2.099104, 2.251518, -1.257256, 0.861375, 0.243513, -0.052754, -1.436298, 0.597827, 0.743081, -0.283839, -0.344512, 1.563187, -0.492882, 0.587774, -0.210253, 1.610632, 0.277828, 1.640443, 0.889563, -0.836606, -1.140817, 0.760634, -0.932450, 0.782050, 0.472036, -1.040960, 0.789785, 2.226307, 0.771765, -0.202860, 0.167792, -0.208109, 1.816401, -0.233837, 1.026439, 1.193812, 0.523899, -0.578994, 0.293049, 2.721322, 3.377675, -0.361687, -0.190383, -0.621579, 0.617469, -1.686794, -0.615522, 1.037010, 1.421817, 0.657378, 0.622055, 1.243860, 1.044273, 0.380579, -0.717023, 1.381899, -0.477302, -1.950422, -0.063410, -0.860567, -1.995309, 0.604878, 1.912790, 0.614260, -0.468318, -0.307680, -0.448515, 0.790912, -0.636104, -0.933446, 0.703913, 0.612134, 0.577703, 0.606643, -0.467727, 0.336145, -0.606091, 0.291353, 0.169330, 0.396521, 0.793152, 1.168300, -0.665320, 0.138893, -0.107689, 0.393695, 0.238294, -1.465343, 0.110672, -0.574389, 1.189659, -1.031656, 0.643544, -0.041721, -2.551744, 1.914617, 1.137613, 0.304502, 0.276137, -0.274812, -0.223629, -0.406222, -1.497671, -1.499371, 0.864943, 0.435871, 0.477636, -0.268209, -1.603217, -1.997199, 0.520067, -1.002440, 1.284171, 0.764931, 0.559257, -0.047788, -0.321588, 0.910385, 1.114308, -0.665325, 0.117723, 0.957186, 0.196895, 0.526333, -0.301807, 0.242643, -0.001410, -1.553406, -2.364246, -1.680157, 0.529280, -0.627928, 0.902765, -0.271188, 1.484785, -0.264528, -0.588892, 1.488094, -0.799257, 1.448272, 0.716505, -0.148467, -0.989003, 0.121459, 1.503392, 0.998178, 0.571938, -1.298588, 0.155219, -1.193553, -1.071987, 1.077364, -1.832231, 1.224635, 1.611362, 0.660337, -0.207882, -2.460820, 1.092116, -1.400597, 1.520125, 0.180947, -0.859572, -0.347017, 1.086482, 0.490368, 0.765541, -0.184343, 0.680209, -0.015803, 3.497202, -0.527242, 0.473355, 2.547523, -2.312729, -2.031398, -0.100175, 1.589728, -0.278581, 0.981250, -0.526498, 0.889400, -1.125171, 0.163059, 0.350926, -0.699345, 1.999035, -0.570082, 1.689954, -0.699827, -0.172210, -1.047179, 1.451014, 1.044453, 0.564037, 0.239588, 0.901849, 1.030170, 0.286149, -0.250285, 0.764806, -0.439759, -0.062761, 2.239625, -0.092694, -0.621294, 0.482468, -0.161406, -1.817209, -0.093881, 0.683814, 0.235213, 0.942230, 1.768518, -1.595445, -0.412542, 2.414057, -0.221852, -1.401115, -1.081049, 0.560190, 1.574262, 1.199254, 0.434372, 0.099117, -0.174399, -1.459759, -0.005484, -0.551779, -1.119167, -0.281815, -1.940759, -1.402559, 0.771613, 1.317510, -0.100837, 0.702263, -0.597209, -0.697992, -1.650409, 0.474231, -1.313327, 0.521745, -0.165005, 0.546684, -0.120657, -0.166847, -0.208339, 0.474709, -0.750711, -2.638392, -1.137997, 1.917294, -0.819974, -0.272673, -0.372066, 0.979130, 1.205399, -0.724035, 1.609277, 0.657708, 1.342834, 0.487934, -0.161034, 1.027104, -0.419074, -1.293546, -1.018050, 0.205267, 1.896128, 1.897688, 1.690139, -1.177716, 1.202312, -1.885657, 0.355356, 0.313285, 0.564464, -0.163197, 1.091237, -0.258534, -1.452792, 1.864626, 0.498763, 0.679449, -0.631617, 0.807204, -0.298873, 0.193351, 0.984876, -0.146170, -0.504643, 1.432000, 1.729161, -0.753104, -0.591432, -1.140864, 0.203559, 0.327622, -0.136095, -1.974707, 1.580811, 2.285019, -0.297325, 0.184706, 1.426637, 1.953744, -0.488535, -0.334653, -1.518712, 1.131937, -1.019480, 1.740277, -0.826970, -0.384879, 0.858003, -0.071758, 0.288566, 0.787778, -1.090148, -0.452980, 0.006704, 1.020528, 0.915000, -0.853892, 0.189906, 0.456827, -0.480919, -0.318714, -1.366240, -0.175973, 1.984203, -0.413025, 0.948677, 0.552726, -1.207447, 1.370577, 1.634290, -0.579001, -0.021489, -1.006015, 0.150176, 1.444833, 0.326589, -0.527912, 0.260466, 0.665954, 0.443388, 0.920201, 0.677774, -0.071644, 0.291383, 0.041140, 1.568847, -1.051342, 1.705840, 1.282443, -0.626896, 0.245023, 0.279548, -1.379793, 0.042161, 0.666386, -0.177372, -0.324910, 0.280091, 0.760060, -0.278312, 0.102068, 0.267269, 1.783802, 0.736309, 0.546462, 0.361672, 1.326330, 1.655277, 0.389296, -0.455793, -0.801484, 0.780402, 0.604900, 1.711794, -0.787858, -0.167967, -1.822423, -0.756842, 0.851663, 0.717867, -0.861421, -0.793650, 1.675991, -0.879387, 1.206216, 0.434068, -2.092479, -0.236197, -1.166878, -0.640330, -0.838333, 1.394272, -1.264509, -0.131953, 0.060700, 1.295685, 1.141973, 1.223570, -0.741256, 1.187025, -2.129549, -0.601442, 0.547206, -1.066923, -0.914791, 1.616775, -0.563487, 0.994912, 0.566428, 0.956240, 0.575268, -1.677340, -0.487066, 0.055881, -0.293810, -2.052553, -0.555956, -0.046646, 0.757924, 1.955607, 0.200750, 0.104535, -1.093402, 1.071051, 0.384958, -0.155126, 0.679061, -1.049670, -0.332638, 1.514032, 1.474860, -1.161727, -0.471283, -0.544551, -0.925896, -0.487798, 1.043943, -1.212793, -1.221603, 0.439309, 0.056897, -0.841054, 0.688809, -0.907617, -1.534107, -0.209263, -1.261547, 1.213918, 0.204049, 1.176109, 0.058943, -0.486168, -0.030294, -1.034265, 0.026252, 0.593023, -1.313981, -1.283513, -1.397177, -0.094894, 0.216503, 0.811026, 0.216309, 0.193855, 0.195588, 0.235502, 0.180204, 0.356665, 0.448827, 0.315331, -0.901124, -0.853701, -0.358370, -1.683556, 1.585802, -0.976706, 0.572273, -1.145183, 0.788685, 1.732736, -0.163302, -1.148025, 1.472582, -0.725925, 0.493901, 0.195637, 1.416335, -1.578705, 0.679016, -1.162408, -1.738871, 0.450091, -0.431112, -1.361769, -0.424566, -0.818903, -0.667462, 1.078311, -1.037617, 0.211673, -0.598206, 1.628288, -0.584240, -2.135561, 0.003673, 0.425412, -0.173806, 2.000998, -0.165833, -1.216102, -1.685431, 1.135099, 0.616347, -0.522370, -0.633687, 0.922370, 0.042586, 0.370329, 1.044347, 1.031333, -0.964225, 1.550728, 0.415130, -0.290246, -1.746478, 0.165117, 1.252110, 0.360803, -0.309422, -1.322469, -0.624928, 0.955354, -1.340895, -0.584127, -1.185284, -0.147229, -0.558655, 1.759923, -2.949292, 0.443495, 0.367090, 0.774458, -1.599032, -0.470594, -0.118633, 0.214576, -0.483837, 0.124889, 0.944012, -0.140600, 0.374726, -0.166974, 0.119375, -1.005208, -1.070203, 0.423589, 0.727111, 1.276022, -0.314949, 1.101866, 0.110812, 1.384848, -1.388079, -1.054257, -0.367673, 0.285534, 2.069403, 0.367170, 1.282821, 0.254568, 0.546672, 1.199001, -0.677695, 1.506406, 2.982727, 0.696974, -1.678491, -4.151894, -3.297700, -0.857486, -0.991400, 2.461016, -1.183123, 1.762707, -0.176799, 1.216201, 0.196540, 0.931717, 0.046761, 0.040873, 1.082963, 1.421519, 0.888768, 0.467386, -1.736140, -0.971011, 0.563802, -1.044710, 0.277508, -0.936257, -0.073800, -0.091419, -0.914668, -0.966835, -0.589521, 0.195878, 0.688218, 0.118125, 0.436079, -0.224403, -0.350996, 0.396244, 0.323399, 2.020873, 0.979554, -0.186838, 0.654945, -0.373061, 0.940205, 0.336659, -0.639526, -1.347858, 2.344529, 0.635626, -1.507473, 1.068242, -0.434148, -0.379054, -0.138890, 0.775494, 0.329572, 1.088699, 0.285666, 0.587611, -1.383103, 0.345279, -0.818008, 1.092961, -2.065354, -0.387811, -0.819153, 1.032752, 0.851679, -0.031117, 0.146819, -0.193887, 0.726719, 1.394476, 0.503921, -0.110971, 0.385437, -1.407887, -2.238863, 1.187161, -1.552516, -0.904590, -0.057329, 0.227120, 1.222442, 0.612752, -0.895316, -0.160224, -0.079172, -0.806369, 0.346452, -0.526111, 1.618522, 0.088905, 1.124405, 0.183307, -0.354512, -0.740697, 0.653895, 0.256393, -0.847359, 2.708672, -0.255305, -0.422605, -0.202106, 0.445192, 0.185425, -0.087221, -0.146694, -1.770923, -0.734755, -1.025807, 1.960358, -0.071322, 1.147608, 0.036726, -0.672309, 0.184585, -0.486843, 0.643202, 0.916453, 0.189262, -0.978815, -1.923698, 2.172878, 0.723617, 0.884473, 0.415043, -2.056983, 0.322004, -0.293319, 0.850476, -1.372263, 1.321481, 0.831174, 0.719995, 2.954501, -0.031278, 1.457523, -1.147279, -1.445839, 1.568239, -0.146302, -0.066091, 2.213844, -1.379027, -0.689201, -1.253020, -0.808258, 0.141012, 0.374659, 0.215204, 0.535278, 0.032940, -1.362946, -0.333833, 1.372702, 0.753440, -0.648282, 0.478611, 0.744250, -1.166623, 0.318440, -0.043213, 0.235775, 1.323689, 0.728217, -1.533827, -0.688402, 1.380060, 1.827214, 0.445192, 0.849957, 0.985162, -1.322424, 0.868099, -0.615620, 1.109362, 0.523907, -1.327580, 1.401171, -0.129338, 0.775905, 0.839810, 0.051850, 0.170181, 0.744342, 0.123146, -1.296641, -1.494909, -1.155625, -0.390187, 0.342067, -1.268486, 0.740022, 0.436035, -0.113239, 0.105586, 0.031501, 0.986141, 0.023656, 0.676581, 1.518381, 0.174162, 0.610272, -0.478724, 2.483743, 0.613921, -0.175590, -0.164017, -0.353660, 1.924063, 0.158569, -0.396594, 0.263665, -1.950628, 0.312195, 1.584783, 0.568914, -0.554711, 0.625919, -2.096829, 0.699644, 0.287566, 1.361564, 0.609404, -0.326094, 0.026283, 0.062417, -0.798742, 0.812903, 0.143822, -0.295422, 0.887376, 0.823198, -1.309627, 0.240108, 1.146784, -0.390646, -0.089727, -1.169366, 1.169567, 0.704836, 0.315145, -0.656186, -0.296418, 0.641698, 0.888014, 1.013918, 0.592271, -1.212218, 0.591033, -0.342076, -0.374229, 0.977258, -0.551950, -1.517663, 0.003719, 0.289068, -1.482010, 1.297532, 0.316068, -0.258420, 0.418935, -0.375836, 1.042954, -0.725554, -0.114071, -0.730602, -0.661055, 0.753532, 0.081824, 1.006013, 0.142167, -0.840237, 1.369744, 0.528675, -0.297089, 0.017474, -1.150734, -0.165743, -1.374017, -0.803858, 0.131781, -1.242277, 0.089559, -0.892897, 0.147872, 1.133479, 0.373783, 2.660564, -0.974752, 0.509270, 1.581726, -0.277729, 0.520943, 0.729095, 0.956977, 1.067660, 0.285560, 0.994783, 1.142687, -0.682838, -0.267087, 0.875598, 0.371457, -1.197628, 0.158424, 0.188489, 0.562693, -0.919669, 1.555412, -1.339534, -0.711500, -0.321229, -2.384288, 0.750795, -1.072228, 2.106545, -0.823336, -1.119585, -1.580754, 0.202609, -0.078508, 0.260435, -3.602984, -0.205322, -0.667775, 0.074963, -1.454056, 0.070495, -0.538768, -0.635445, 0.507923, 2.179662, -0.724869, 0.838785, 1.190526, 0.430776, -0.009086, -0.399675, 1.397246, -0.056698, -1.241325, 1.800117, -0.378219, -0.198953, -1.655862, -0.321080, -0.185884, 1.576458, 0.715399, -2.288547, -0.366786, -1.404334, 0.643486, -0.763561, 0.400271, -1.828620, 0.706079, -0.397933, 0.093705, -0.916302, -0.149977, 0.314115, -0.175625, -0.566566, -0.529712, -0.767276, 0.871735, -0.631191, -0.347633, 0.037088, -2.132443, -0.470657, -0.832965, -0.082984, -0.260987, 0.613843, 1.373040, 0.611550, 1.472924, -1.230582, 0.610818, 2.789570, 0.932315, 0.005373, 0.285894, -0.638099, -1.457272, 1.225715, -0.319766, 0.408211, -0.223554, 2.121467, -1.387489, 0.944122, 1.208687, -0.166073, 2.072319, 0.942278, -0.026106, 0.270373, -0.367620, 1.114116, 0.153176, -1.733128, -0.378857, -2.422843, 0.487516, -1.247803, 1.062849, -1.231253, 0.537975, 0.416658, 0.371592, -0.254977, -0.482217, 2.085400, -1.245060, -0.006724, 0.345644, -1.287915, 1.869092, 1.416436, -0.615393, -0.273593, 0.262973, 0.139038, 0.246117, -0.109790, -0.665548, -0.178864, 1.099355, 0.773782, 0.457826, -0.541601, 0.101499, 1.272108, 0.566388, 0.886247, -0.668834, 0.532492, -0.165506, -0.339198, -1.283437, -1.336261, 0.180136, 0.225786, 0.175028, -0.957114, -0.350541, -0.530105, -0.518899, 0.822877, 0.400293, 0.611413, 0.433421, -0.027002, 2.016738, -0.352167, -0.117694, -0.711349, 0.225743, 2.219947, -0.994911, 0.889493, -0.209501, -1.015048, -0.277007, -1.038744, -1.041999, 0.591231, -0.005852, 1.309783, -1.893955, -0.245225, -0.408309, 2.587780, 1.869129, -0.025926, 1.074801, 0.137144, 0.838392, 0.150895, 0.976174, -0.922213, 1.912812, -0.330382, 0.132859, 0.552352, 0.035093, 0.923648, 0.529371, -0.487117, -1.123653, 1.122107, -1.675823, -2.717964, -0.029215, -0.257208, -0.156907, 0.396118, 1.171553, -1.357970, 1.565213, -0.646594, 0.134291, -0.714868, 0.260105, -0.777921, -0.209907, 0.619322, 0.428472, -1.578512, -1.283865, -1.434614, -0.466454, 0.896150, 0.446782, 0.144509, -1.229224, -0.166965, 0.512940, 0.004475, -0.958409, 0.764049, 1.256500, -0.649258, -0.389592, -1.077574, 0.129926, 0.256995, 1.253581, 0.555203, 0.777111, 0.875996, 1.716907, 0.356880, 1.527518, -0.697347, 0.518405, -0.973775, 0.712326, -0.891095, 1.286977, 1.149621, 0.608203, -1.479573, 0.011016, 0.129004, -0.351740, -0.712967, -1.296240, 1.070677, 0.223133, -0.324454, 1.440688, 1.207998, -0.041205, -1.018669, 0.525927, -1.006325, -0.916148, 1.577374, 1.217416, 0.410817, 0.218878, 0.675492, 1.683384, 0.420540, -0.070093, -1.526976, -0.049730, 0.258250, -0.421714, -1.125409, 0.410102, -0.912545, -0.658720, 1.355603, 0.151928, 1.703582, 1.043317, 0.368780, 0.213015, -0.308952, -0.409541, -0.760363, 0.002532, -0.475296, 0.888988, -1.335275, 0.306037, -0.436678, 1.482922, 0.008808, -0.426924, -0.505520, -0.953012, -0.391128, 0.489408, 0.654015, 2.340253, 0.591200, -0.393732, -1.761934, 1.491361, -0.042439, -0.246911, -1.144422, -1.549792, -0.368030, -0.620258, 0.815402, 0.466840, -0.052885, -1.121396, 1.163027, 0.786450, 0.459861, 0.121936, -0.827918, 0.310432, -1.215373, -1.997813, 0.970187, 1.548958, -0.241756, 1.067134, 1.241846, 0.292035, -0.025637, 1.295865, 0.665144, -0.634091, 0.805057, -1.459196, 0.211142, -1.363085, 1.532381, 2.222022, 1.276336, 1.361636, 0.463343, 0.381781, 0.181735, 1.987398, -0.428641, 0.133009, 0.002244, 1.527644, 1.800537, 0.870477, 0.186963, 0.405588, 0.600083, -0.287867, 0.210746, -1.136290, 0.188915, 0.162045, -0.088737, 0.730083, 0.941827, 0.257603, 0.790213, 0.329960, -0.004840, 0.420102, 1.173649, -2.920959, 1.218269, 0.476052, -0.517790, -1.290314, -1.167549, -0.378205, -0.137183, 0.582925, 0.334868, 1.047304, 1.913719, -0.051452, -0.274991, -1.854406, 0.165857, 0.704543, 0.534597, 1.213684, 2.257795, -0.120105, -0.590144, 0.395352, -0.546918, 0.328898, 0.037597, 0.098501, -0.329587, -0.140080, -1.048393, -0.375590, -0.752983, 0.555698, -0.170252, -1.138621, 0.357078, 2.818563, 0.524365, 0.477222, 1.357011, -0.785911, 1.137909, -1.548372, 0.753165, 0.127490, -0.093429, 0.860062, -0.469682, 0.133400, -0.747741, 2.896087, 1.706991, -0.404538, -0.620125, 1.212147, 0.830912, 0.783276, 0.846542, -1.017339, 0.074176, -0.762677, -0.655850, 0.117499, -0.061440, 0.938407, 0.517412, 0.515201, -0.037050, 0.740538, -0.407951, 1.691379, 0.448729, -0.782644, 0.572763, 0.769657, 0.366590, -0.696918, -1.492572, 0.229683, -1.204435, 1.454218, -1.192827, -0.569249, -0.916316, -0.669248, -0.815297, -0.019228, -1.531656, 2.086796, 0.339776, -0.613002, 0.572677, -0.983079, 0.020470, -0.391727, 1.152144, 0.054703, 0.468952, -1.487208, 1.703593, 0.305286, 0.042353, -0.689477, 0.873410, 1.570843, 1.110810, -0.593906, -0.195274, -1.067243, 0.172106, 0.733817, -2.102313, -0.079578, 1.066478, -0.821053, 1.057245, 0.818666, 1.642676, -2.191774, -0.833900, -0.898218, -1.541927, -0.334863, 0.228567, -0.980666, 1.319623, -0.563599, 2.215149, -0.573370, -0.655100, 1.925586, 0.775449, 1.987317, -0.024107, -1.227130, 1.840700, 0.544468, 0.617473, 0.286865, 1.233046, -0.966232, -0.130745, -0.846207, -1.056782, 0.206412, -0.932630, 1.649964, 1.187164, 2.363065, 1.057166, -0.620550, 0.105152, 1.330918, 0.918073, 1.238703, 0.010992, -0.131588, 0.625348, -0.198732, -0.248347, 0.784598, -1.688911, 0.969951, -2.313670, 1.049869, 0.382715, -1.080427, 1.389851, 0.398404, -0.200757, -0.362412, 0.337427}, - { -0.404508, 0.163124, 1.154818, -1.483255, -0.581471, -1.058566, 0.641383, 2.127362, 0.336213, -0.192312, -0.054478, -0.005021, 1.330475, 2.266097, -1.180018, 0.294525, 1.199543, -0.356847, -0.556084, 0.487455, 0.820694, -0.159970, 0.448013, 0.563963, 2.589067, -0.834528, 0.657293, -0.707490, -1.366151, -0.018298, 0.025944, -0.021855, -1.867044, 2.082346, 0.618442, 2.509357, 0.436933, 0.903809, -0.386555, 0.399367, 0.377216, -1.353829, -1.603042, -0.213905, 0.838949, -0.134736, -0.403021, -0.710935, 1.393025, 0.522015, -1.981140, -0.415621, 0.323514, 0.009830, -2.003768, -0.308470, -1.964263, 0.800841, -0.621398, 0.328218, 1.063567, 1.439225, 0.499219, -2.981121, -1.731069, 0.269913, -0.529232, 1.720458, 1.250965, -0.035330, 1.279135, -0.619881, -0.680561, 0.470557, -0.480693, 0.350805, 0.950771, -0.575727, -0.827712, -1.094357, -0.711935, 0.619266, -0.275774, 0.365097, -1.269562, 0.545090, -0.849842, 0.652075, 2.324220, -1.214307, 1.209765, -1.472352, -0.312568, 0.462341, 0.068491, -0.466602, 1.075880, -0.227353, -0.268573, -1.017259, -0.836458, -0.056589, 0.608142, 0.232381, -1.741762, 1.519571, 2.653699, -0.242469, -2.101115, -2.916691, -1.049268, -0.438316, -0.700674, -0.266520, -0.307564, 0.399335, 0.720180, 1.592638, 0.609519, 0.456935, 1.233109, -1.625068, 0.425408, 0.407947, 0.701066, -2.322550, 0.006080, -1.076351, -0.273250, 0.297834, -2.361733, 0.030759, 0.042067, 0.915703, -0.594477, 0.498847, 0.548511, -0.096414, 0.124883, -0.830702, -0.439662, 1.213415, 3.037199, -0.063262, 0.043592, 0.904694, -0.389064, -1.473366, -0.679124, -0.011925, -1.603457, -0.627626, -0.752587, 0.508564, 0.978770, -1.251897, -0.333609, -0.611983, 3.116110, 1.078208, 0.275638, -0.322169, -1.409537, -0.919222, -1.451844, -0.131750, -0.821090, 0.350240, 1.071780, -0.107788, -1.036753, 1.961365, 1.591369, -0.805272, 0.190483, -0.650893, 1.430172, -0.046196, 0.441044, -0.857903, -0.806892, 2.119520, -0.295425, -0.141970, -1.489122, -0.355302, -0.958746, -0.098122, -0.749379, 0.731833, -0.396343, 0.288156, -0.073393, -1.549802, 0.461063, 2.178891, 1.713950, -0.116506, -0.453699, -0.034935, 0.414432, 1.500044, -0.179254, 1.677950, 0.798656, 1.965646, 1.368249, -0.034445, -1.090726, 0.230001, -0.303500, 0.073566, 0.112981, 1.334112, 0.505705, 0.446252, 1.438356, -1.289050, -1.059885, -1.017692, -0.025106, -0.580944, -1.570426, 0.545800, 0.054686, -0.272696, 2.062170, 1.243366, -0.857117, -1.023764, -2.610025, 0.202101, -1.318459, 1.326934, -0.978742, -0.378719, -2.040448, 0.087848, 3.576277, 2.020581, 0.759390, -1.055501, 0.413844, -0.164284, -0.387150, -1.048777, -0.286634, -2.008885, -0.663360, -0.085511, 0.384762, 0.945797, 1.021999, 0.192535, 0.452200, 1.535439, 0.231566, 0.041257, -1.212188, -0.704954, -0.547902, -0.690643, 0.106904, 1.415590, 0.078008, 2.307820, 0.401648, 2.167300, 0.088725, -1.372815, 0.047913, -0.183352, -0.246744, 0.443417, 0.650775, 1.903080, 0.990435, 0.779096, 0.088359, 1.578622, 0.564592, 0.659807, -1.636551, -0.159692, -0.094542, 0.805441, -0.450696, 0.611813, -0.340853, -0.340410, 0.741255, 0.076934, -0.793866, -0.093842, 1.340727, 1.438741, 1.637718, -0.433302, -0.249263, -0.492451, -0.258835, 0.374922, 0.072988, 0.977547, 0.651825, -0.705120, 0.399549, 0.425899, -1.546367, -1.572720, 0.549318, -0.002516, 1.683770, -0.981328, -0.947248, -2.099293, 1.055548, 1.459812, -0.004070, 0.373645, -1.218558, 1.644753, -1.314250, -0.072876, -0.155644, -0.238832, 1.118094, 0.615153, -0.223096, -2.320651, 1.032424, 0.407406, 1.095528, -1.669550, 0.250838, 0.852352, -0.415173, -0.428119, 0.440153, -2.988512, -0.095677, -0.795611, -0.297327, -0.615770, -0.826810, 0.264368, 0.310276, 0.330848, -0.441686, -0.379671, 0.826628, -0.603369, 2.074424, -0.897566, 0.430340, -0.601009, 2.024559, -0.448747, 1.117226, -0.766603, -0.188637, -0.940681, 0.188648, -0.141931, -0.333417, -0.213132, 0.204591, 1.754115, -2.303310, -0.331649, -1.645716, 0.009210, 0.256004, 2.828982, -1.129759, -1.959877, 1.521838, 0.229127, -1.887629, 1.440989, 0.239477, -0.852426, -0.598001, -0.356794, -0.393320, 0.195500, 0.662527, -1.955825, -0.293691, -0.814347, 0.131472, -1.358820, 0.782628, 0.576499, 0.056940, -0.729609, -0.497355, -0.024098, 0.088424, -0.015372, -0.175210, -1.751869, 1.800967, -0.203160, 0.464615, -0.620864, 0.769326, 0.298648, 0.335302, 0.325511, -0.680748, 2.471924, -0.078364, 0.204843, 1.351879, -0.022770, -0.700837, -0.020701, -2.780741, 0.548361, -1.162960, -0.704594, 1.270662, 0.586579, -0.288171, 0.064890, 1.599613, -1.727048, 0.997418, 0.511380, -0.296972, 0.001003, -1.354265, -0.720696, -0.346454, -1.473630, -0.358891, -0.571188, 1.729364, 1.010991, -0.128087, -1.202609, 1.860534, -0.304476, 0.926315, 0.828502, -0.540468, 0.760189, 1.051411, -0.562408, 1.522161, 0.735873, -0.677988, 0.418064, -1.079892, 1.237851, -0.358978, 2.535745, 1.601217, 0.374316, 0.447270, -0.501985, -0.164819, -0.835315, -0.218226, -0.178799, 0.726933, -0.265217, 1.085364, -0.211372, 0.122358, 0.511503, -0.519361, -1.180297, 0.193765, -0.320701, 0.237230, 0.219712, -0.815825, 0.653885, 0.090557, 0.277263, -0.058149, -1.041480, -0.889895, -0.690105, 0.768050, -0.333332, 0.322802, 0.154716, 0.457100, -0.911952, -0.965159, -0.346959, 1.333275, -0.502664, -1.223984, -0.082424, -0.164002, 0.490367, 1.336649, -0.862930, -0.964988, -0.994274, -0.622409, 0.458808, -0.704009, 0.021413, 0.198991, -0.852646, -1.097722, 0.907027, 0.138650, 1.046807, -1.213532, -0.935889, -0.036656, 0.594180, 1.491764, 0.321612, -0.240180, -1.862704, -1.449472, 1.097837, 1.244961, 0.270457, 0.176432, 0.584133, 0.524333, 0.830303, -0.441502, -0.551576, -0.078591, 0.285845, 0.885505, 1.308601, 0.123892, 2.324634, 0.767678, 0.668727, -0.174630, -1.100639, -0.274172, -1.027468, 0.721521, -0.454303, 1.721158, 0.351097, -0.297013, 0.120131, -0.870957, 0.615013, 0.203040, 1.539085, 0.206831, 1.905005, -0.798854, 1.674731, -1.020858, -0.591924, 0.723117, 0.132846, 0.635807, 0.191219, 1.239572, 0.207665, -0.634077, -0.208226, -0.757228, 0.066721, -0.489152, -1.189550, 1.196971, 1.224924, -2.146399, 2.093163, -1.263299, -0.019905, -0.751321, 1.119494, 0.976934, 0.765776, -1.182855, -0.038781, 0.546729, -0.590921, -2.810264, 0.259395, -0.032342, -0.037544, 2.333862, 0.660644, -0.055413, -0.419718, -2.054295, 0.413191, -0.839143, 0.509301, -0.813663, -0.544804, 0.248122, -0.104904, -0.472376, 0.982784, 1.444134, -0.197749, -0.110396, 1.024985, 1.062945, 1.153523, 0.599717, -0.625811, 0.499932, -1.739725, -1.246165, 1.393426, -1.170991, 1.420221, 0.146671, 0.691703, 1.770544, 0.410129, -0.277347, -0.496889, -0.282262, 0.161144, -0.003109, 0.391682, -1.913301, 1.702589, -0.905387, -0.948773, -1.219909, -0.274652, 2.029768, 0.054819, 1.631171, -0.312363, 0.316096, -1.737762, -1.139022, 0.363470, 0.070296, -0.205450, -0.141973, 0.790878, -1.675400, 1.016219, 0.862000, -0.704032, 1.555890, 0.653741, 0.199650, -0.866674, 1.089764, -1.806747, 1.496937, -0.910328, -0.384723, 1.436167, 0.501983, -0.918668, 0.122775, -0.393511, 0.796743, 0.298759, 0.541038, -0.602160, -0.773421, -0.228901, -0.656107, 0.074203, -0.770302, 0.538581, -0.303661, -0.666941, 0.939056, -0.193099, -0.806129, 0.171128, 0.135910, -0.889179, -1.507249, 1.433962, 0.086450, -1.557401, 0.693330, 0.511984, 0.709194, 1.243803, -0.010788, -2.162631, -0.462520, -0.690970, 0.149419, -1.870817, -0.593309, 0.051979, -1.094997, 1.062970, 1.069576, -0.552826, -0.472625, -0.110996, -0.485272, -0.035808, -0.470757, -0.905508, -0.404049, -0.250860, -0.809322, -0.920666, -0.858982, -1.024539, 0.304887, -0.829885, -1.763292, 1.248852, 0.310953, -1.086531, -0.408220, 0.533591, 0.574858, -0.036193, 1.158090, 0.501626, -1.657695, 0.628435, -1.812670, 0.586179, 2.386621, -0.196647, 0.058910, 1.350289, 0.913917, -0.228972, 1.635535, -0.578103, -0.636163, 0.628620, 0.365614, -0.450990, 1.035743, 0.325313, -1.552722, -0.507806, 0.673365, 0.497030, -2.422032, 0.206748, 0.077870, -0.695722, -0.171518, -0.482666, -1.231332, 0.169837, -0.197728, -0.250104, -0.501338, -1.109844, 1.353972, 1.741982, -1.546448, -1.193241, 0.863484, -0.764545, 0.299858, 0.903792, 0.168954, 0.434603, -0.256725, 0.204433, 0.255486, -0.569416, 1.111591, -0.589532, 0.772095, -0.277611, -1.584597, -0.039704, -0.311766, -0.806648, 0.748299, -0.186911, -0.095017, -0.857828, -1.855176, -0.749418, -0.537120, 0.906840, 0.728139, 0.431566, -2.200808, 0.298613, 0.404024, -0.554505, 0.039144, -0.190084, 0.307274, -0.635394, -0.330139, 0.047682, 1.484271, 0.435275, -1.464609, -0.641558, -2.197641, 1.172760, -1.126817, -0.721477, 0.891905, 0.384832, -0.257181, -0.534207, 0.718402, -1.737280, -0.562105, -0.083797, -0.187823, -0.144477, -0.310975, 1.526544, -0.371896, -0.599711, -2.007981, -0.039289, 2.547472, -0.402012, 0.702228, -0.135993, 0.854555, 1.608021, 0.646722, 1.691228, 0.784989, -0.361904, 0.789856, -0.738853, 1.317488, 1.484456, -1.020583, 0.754733, 0.929543, 1.457763, 0.531043, 0.456323, 1.113777, -1.733092, -0.039858, 0.323808, 0.310869, -1.110731, 0.948708, -0.659561, -0.221477, -1.910303, -1.348179, -0.035803, -0.739822, -0.867290, 0.135653, -0.133181, -1.231161, 0.161164, 0.004613, -0.944633, -0.380505, -0.636586, -1.335801, -0.523350, 1.081193, -1.612400, -0.957104, -0.397939, 1.674672, 1.736173, 0.800061, 1.575780, -0.054048, 0.503796, -0.927308, -0.032023, -0.006490, 0.735759, 0.988797, 0.832221, -0.451748, -0.072399, -0.731225, -1.107053, -1.348030, -0.849014, -0.044432, 1.592745, -0.321245, 0.418733, -0.860437, -0.041006, -0.426162, -1.199735, -0.685249, -0.692098, 0.665532, -0.446871, -0.803686, -0.336097, 1.185549, 1.640646, 0.920483, 0.362856, -0.747166, -0.878605, 0.065655, 0.891514, -0.676280, -0.238851, 0.570924, 0.982844, -0.897994, 0.378810, 0.617552, 0.624882, -1.365948, 0.237839, 1.612579, -0.722570, 1.295749, 1.883882, -1.010599, 0.450121, -0.103328, 1.325813, 0.850800, 0.361835, -0.843106, -0.252553, -0.089484, -0.713631, -0.771185, 1.010320, -1.066910, 1.249023, -0.356105, 0.365615, -0.359782, 1.356814, 0.144046, -1.598168, 0.341354, 1.400134, 1.131085, -0.431279, -0.231153, 1.323714, 1.464506, 0.416368, 0.844082, -1.398146, -0.569986, -0.346376, -0.088051, -0.299739, 0.099859, -0.718104, -0.317217, -0.083631, -0.615749, 0.749467, -1.649572, -1.043353, 3.296429, 1.228093, 0.424277, 0.460783, 1.009937, 1.066722, 0.897799, -2.256654, -0.281492, -1.606938, 0.099448, -0.792943, 0.652756, 0.257271, 0.773974, 1.227638, 1.856210, -0.526037, -0.441477, 1.461683, -0.321216, 0.857739, -0.232420, 0.374446, -1.558555, 0.759070, -1.210058, 0.101625, -1.188401, 1.634005, -1.912245, -1.268503, 1.326387, 1.682222, -0.700577, -1.293992, 0.130906, 0.747009, 0.336569, 1.525643, 0.293493, -1.085115, 0.307923, 1.760993, 1.602075, 0.679392, -0.688872, -0.335261, 1.068089, 1.150251, 0.001606, 0.807504, -1.238450, 0.438407, -0.530102, 1.539490, 1.248893, 0.550168, -0.496175, -0.343462, 0.807699, 0.749460, 0.604133, 0.523578, 0.939856, -2.223059, 0.348713, -1.583133, 0.590603, -2.207892, 0.205859, 2.845743, -0.601797, 0.515227, 1.462294, -1.278958, -0.450504, -0.729369, 0.257196, 0.906311, 0.925095, 0.235388, -1.027290, 0.770556, 0.008148, -0.166225, 0.530109, -0.481677, -1.027662, 2.646672, -0.403595, -0.112165, 2.280207, 0.618663, 1.492420, 0.249828, -0.994669, 0.134901, -0.098705, 0.485339, 1.411144, -1.451605, -0.737407, 0.016873, -0.370914, 2.376381, 0.203412, 1.183406, -1.245265, 0.853063, -0.142579, -0.341641, -0.404791, -1.237379, 1.192230, 0.468696, 0.177825, 1.423853, -1.353276, -0.364712, -0.654977, 0.375936, 1.102526, -0.905154, -0.064193, 0.519175, -0.132142, -1.612500, -0.536691, 0.705911, 0.049593, -1.340713, -0.306368, -0.415248, -0.386745, -0.036232, 1.288242, 0.364874, -1.954355, 0.026297, -1.167822, 2.342176, 0.625771, -0.709525, 0.664916, 1.534291, 0.558042, -1.796731, 0.312850, -0.524267, -0.941880, 1.338031, -0.413712, 1.677677, 1.012361, 0.288056, 1.020401, 0.579319, 0.644758, -1.409274, -1.177052, -0.842983, 0.390553, 0.036650, -1.080086, 0.455347, 0.421183, 1.202336, -1.717638, 0.295792, -0.630511, 0.609045, 1.459697, -0.402052, 0.762390, 0.490658, 0.047406, -0.413763, 0.959116, 0.485756, -0.155767, -0.513600, 1.262898, 0.236811, 0.167723, -0.950298, 1.003948, -0.136740, 2.595243, -0.232270, 0.230690, 2.147994, -0.165027, 0.077102, -0.008163, 0.606917, 0.506880, 1.434801, -0.087849, -1.097588, 0.413168, -0.008091, -1.127354, 0.505414, 0.145078, 0.544565, 0.595050, -0.038984, 0.164615, 0.061028, 1.689529, -1.358708, 0.537192, 0.552490, 1.110669, 0.513174, -1.633927, -1.320397, 0.750593, -0.419496, 0.234976, 0.599514, -0.196818, 0.473245, 0.427197, 0.636675, 0.437931, -0.847592, 0.635232, 0.608306, 0.544805, -2.151765, 0.660979, 1.358301, 0.220936, 0.979491, 0.550677, 0.924508, -0.544621, -0.088244, -1.228881, -1.166786, 0.586942, -1.213887, -0.291581, 0.656091, 0.871011, -1.888888, 0.321120, -0.083104, 1.313894, -0.480184, -0.019725, 1.083493, 0.136143, -0.116530, 0.337754, -0.596832, -0.182936, -0.400993, 0.137596, 0.186779, -0.290284, 0.855913, -0.568564, -0.322710, -0.127970, 1.078320, -0.381064, 0.195457, -0.479098, -0.257270, 2.063518, 1.182179, 0.172272, 0.200944, -0.997679, -1.705527, -0.538999, -0.293451, 1.967613, 0.585712, -1.039815, -0.696163, -1.991486, -1.750369, -0.112912, 0.421217, 0.164403, -0.929998, 1.275068, 1.256736, 0.347074, 1.593689, -1.577506, -0.338943, 0.528762, 1.139492, 0.080278, -0.747196, -0.644865, -1.386455, 1.417607, -1.017719, -0.825327, 0.621719, -0.199350, -0.533169, -0.229525, -0.988087, 0.185558, 0.518862, -0.466026, 1.035567, 0.762580, 2.280176, 0.018097, -0.194079, 0.223281, -0.753285, -0.479207, 1.156660, 0.615799, -0.467497, -0.507059, -0.773106, -0.436162, 1.782272, 0.089257, 0.093301, 0.493508, 0.444717, 0.062130, -0.624458, 0.173025, -1.055949, -0.311581, 0.649770, -0.203692, -1.662702, 1.382182, -2.119356, 1.264618, 0.941554, 1.589581, 0.008521, 0.648849, 1.201220, 0.486516, -0.412192, 0.259574, 0.562220, 0.587681, 0.473480, 2.242176, 0.168571, 0.448692, -0.247265, 0.043981, 0.193791, -0.674711, 0.787991, 0.304379, 0.853450, -0.306855, 0.453613, -1.064264, 0.678720, 0.345252, 1.264215, 0.778402, -0.446007, 0.174164, -1.892984, 0.338363, -0.141608, 1.193465, -0.306873, 0.063093, -0.976017, 0.909423, 2.153821, 1.216291, -0.217814, 0.792182, -1.364542, -0.311781, -0.609859, -0.004094, 0.864263, 0.503064, -0.357742, 0.250735, -0.465633, 0.271054, 1.093027, 0.752472, -0.401189, 0.702297, -0.833594, 0.376878, -1.206031, 0.619242, 0.789674, 0.280084, 1.699700, 0.335773, 0.522003, -1.388623, 0.364065, 0.246447, -1.377469, 1.622360, 0.853139, 1.281503, -0.588270, -1.924791, -0.081630, 0.664977, -2.220873, -0.507614, 1.455386, -0.023258, -2.616554, -0.783240, 1.275235, 0.210615, 0.668982, -0.341963, -0.133156, -0.188165, -0.761083, -1.865884, 0.264002, 2.011538, -0.502541, 0.794737, 0.040583, 0.717701, 2.750488, -2.099854, -0.236572, 0.434131, 0.280155, -0.096384, -0.814380, 0.689470, -0.097851, -0.536864, -1.792851, 0.362632, -0.605441, 0.928975, -0.059241, 1.250592, 0.231455, 1.537788, -1.756790, -0.805219, 0.599354, -0.601618, -0.071614, -0.690667, -0.585035, -0.993308, -0.038608, 1.260527, -1.694519, 0.898607, 0.326081, 1.111762, 0.208815, 0.295496, -1.093995, 0.330929, -0.345460, -0.547397, -1.199095, 0.447698, -0.536069, -0.184459, 0.095249, 1.918081, 0.902853, 0.147231, 0.283685, -0.478925, -1.013443, -0.524835, -2.012941, 0.557792, -0.440551, 0.796195, -0.236169, -0.231305, -0.346122, 0.031089, 0.175063, -1.407484, 1.476342, -1.454419, -0.094503, -0.968439, 0.453298, -0.248137, -0.085221, 0.684015, -1.239114, -0.220780, -0.297968, 0.547638, 0.160482, 0.605147, -0.411580, 0.238827, 1.420808, 0.176964, 0.111434, -3.013918, -0.014649, -0.219162, 0.555873, -0.653489, -0.174592, -1.757824, 1.057050, -0.500878, 0.088884, 0.408193, 0.584779, -0.424927, 1.067335, 0.716683, 1.136618, 1.250282, 0.943719, -0.444078, 0.353127, 0.474285, 0.697131, 0.301001, 0.070273, 0.295633, -0.118023, 2.213416, 0.673643, -1.809079, -1.053497, 0.940908, -1.111686, -0.485453, -0.442074, 0.616345, 0.773987, 0.401916, -1.426265, -0.828857, -1.160838, -0.498402, -0.502588, -0.390914, 0.408495, 1.042826, 0.259912, 0.397048, 0.366097, -1.187452, -1.266320, -1.409554, -0.198630, 0.336969, 0.236132, 0.688800, 1.160730, -0.794884, -1.127018, -1.898856, 0.430218, -0.580454, -1.182273, -0.008485, -0.664873, -0.154287, -1.855018, -0.315561, 0.594618, 0.156397, -0.990932, -0.285178, 0.030618, -0.597638, 0.309227, -0.124282, -0.483613, -1.000528, -1.254569, 0.296265, -0.734271, -0.258935, 0.314812, -0.323550, 0.203660, 1.067716, 0.454105, -1.533162, -0.868622, 0.457334, 0.422939, -0.905686, -1.128363, -0.308602, 0.356057, 0.037947, 0.813185, 0.139759, 1.032398, 0.511743, -0.701915, 0.811349, 2.197262, 0.107360, -3.144045, -0.438435, 0.632529, 0.634174, -0.934210, -1.015326, 0.660052, -0.020428, 3.063007, 0.151523, 1.664092, -1.170523, -0.051964, -0.418597, 0.286760, -0.120691, 0.610679, 0.488721, 0.140834, -2.026168, -0.683205, -0.952227, 1.095540, -1.272390, 0.165779, 0.143650, -0.177153, 0.776105, 1.718346, -0.622182, -1.368826, -0.226495, -0.375402, -0.600122, 0.551821, 0.256729, -0.834246, -0.235475, -0.430114, -0.141997, 0.246114, -1.319775, 1.234124, -0.055051, 0.931477, -0.815075, -0.485913, 0.599724, -1.355686, 1.889035, 0.371242, -0.213945, 0.644525, -0.854372, 0.033596, 1.431899, 0.827644, -0.074507, -0.853430, -0.039568, -0.201701, 0.274881, 0.774734, 0.604446, -0.388604, -0.304595, 0.832142, -0.047864, -0.590257, -1.596392, 0.095092, -0.499265, -1.437366, 1.102387, 0.943053, 0.921375, -0.298352, 0.310080, -0.855457, 0.457050, 0.627150, 0.621598, 1.062618, 0.172132, -1.004350, 0.350967, 0.438434, 0.506927, 0.568052, 0.035121, 0.126039, -0.869337, 1.251603, 0.389111, 0.413011, 2.273998, -0.173872, -1.347881, -1.397752, 1.070369, -1.369381, -0.933375, 0.130784, -0.256955, -0.492628, -0.457413, -1.313627, -0.916459, 0.379457, 2.024149, -0.377968, -0.511258, 0.380677, -1.490378, -0.216474, 0.453213, -1.654202, 0.500875, 0.313696, -0.218727, 1.294257, -1.052777, -1.162766, -0.329474, 0.443310, 0.926984, 0.734196, -0.313833, -0.536964, -0.850161, -0.073117, 0.269831, 1.137813, -0.896184, 1.569266, 2.288167, 0.480084, -1.403326, -0.723392, 1.285950, -0.978712, -0.682720, 0.349229, 0.307643, -0.622686, -0.635878, 0.907330, -0.833647, 0.929480, -1.659156, 0.670081, 0.099305, 0.605339, -1.338404, 1.164277, 0.085141, -0.897864, -0.007901, -0.348718, -1.552203, -1.411823, 0.629113, 2.019856, -1.655093, 1.015239, 1.213711, -0.646957, -1.280417, 0.731609, 1.273109, 2.982097, -0.501612, 0.149174, -1.361744, 1.007280, 0.041594, 0.623354, 1.959705, -0.365849, 0.255888, 1.180068, 1.222010, -1.247393, -0.384186, -0.799678, 1.312484, 0.885424, -0.099390, -0.296407, 0.093779, 1.155799, 1.224169, -0.125974, -0.447139, 0.067962, -0.671463, -1.827422, 0.534484, -1.683346, -0.871176, -0.216978, 0.735714, -0.607474, -0.562491, 0.372060, -0.546640, -1.482228, -2.381752, -1.157801, 0.580958, 1.862015, -0.989200, 0.699195, -0.344938, 1.063473, 1.035414, 0.102474, 1.946922, -0.030485, 1.672778, 0.870936, -1.104537, 0.716366, 0.331200, 2.079284, 0.883363, 0.700259, 0.428294, 0.943707, 0.612809, -0.305937, 1.784831, 0.324182, -1.264796, -0.039312, 1.297713, -0.308882, -0.004073, 0.605665, 2.284854, -0.094529, 1.471711, -0.491383, -0.435127, -1.271344, -0.432047, -0.323831, -1.183147, 1.045743, 1.255991, 1.267422, -0.176005, -0.067681, 0.310914, 0.552236, 0.296777, 0.604606, -0.698440, 1.316776, 0.583977, -1.606732, 2.056622, -1.177182, -0.698653, 0.595339, 0.670291, 0.230968, -0.494704, 0.991033, -0.953058, 0.346411, 0.155078, 1.240753, 1.177978, -1.357898, 0.845690, -0.055203, 0.308006, 1.287266, -0.987258, 0.491044, 0.509639, -0.312147, -0.986800, -1.413673, 1.572711, -0.992444, 0.027936, -0.792579, 1.021064, 0.160936, 0.215930, -0.326364, 1.538146, 0.200636, 0.545022, -0.392122, -0.496887, -0.371369, -0.779789, 2.514299, 0.983351, 0.986715, 0.884257, -2.172733, 0.915628, -0.279699, 0.425701, 0.795868, -0.093827, 0.293086, 0.053747, 0.249649, 0.087901, 0.074831, -0.358082, -0.914261, 1.733716, 0.332806, -0.920503, -0.509985, -0.703542, -0.448257, 1.115618, 0.179448, -2.387473, 0.473730, -1.543624, -0.884990, -1.667883, 0.261726, 2.138487, -0.140142, -0.702002, -0.323754, -0.843009, -0.245430, 0.197724, 1.492261, -0.555760, 0.526394, 0.197187, -0.864529, -0.331843, -0.853948, -0.832956, 1.181706, -0.981755, -1.714269, -0.780790, -0.269935, 0.916357, 0.186764, -0.555839, -0.531080, 1.581545, 0.712722, 0.597727, -0.524714, 0.309824, -0.165208, 0.995425, -0.546688, 1.138030, 0.195362, -0.870045, 0.982253, 0.023775, -1.197108, -1.472794, 1.135001, 0.051307, 0.440407, -0.611230, 0.467652, 0.701660, 1.321133, -2.055504, 1.041947, 1.050375, -0.203508, 0.730350, 0.354337, 0.976108, 0.718069, 0.254663, 1.092473, -0.445240, 0.808010, -1.110190, -0.498094, -0.635809, -0.068077, -0.134805, 1.675222, 0.893168, -1.097393, -0.925668, 0.255953, 1.715100, -0.436942, -1.633330, -0.802217, 0.444239, -0.330183, 0.741084, -2.005059, 0.159326, 1.075375, -0.288271, 1.121832, 1.096496, 0.357911, 0.596352, 1.291192, -1.297026, 2.837612, -0.408237, 0.569502, -0.648334, 0.088402, -0.130878, -0.685938, 0.736593, 0.503078, 1.236803, 0.682536, 0.077162, 0.201174, 0.622439, 1.359375, 0.752603, -0.277494, -0.089647, -1.602266, 0.172767, -0.591492, -0.650329, -1.543439, -0.550077, -1.475950, 0.920512, -2.752381, 0.176273, -1.041797, -2.095566, 0.787574, 1.202626, -1.095731, -0.319220, 0.190852, 1.358204, 0.421123, 1.090780, -2.017048, 0.526140, 0.004855, 0.088146, -0.957855, 0.304491, -0.922074, 1.251878, 0.476879, -0.747217, 1.117807, 0.196092, -1.440298, -1.399828, -0.326509, 1.539776, 0.754291, -0.435861, 0.433321, 1.181005, 0.363529, 1.908593, -0.261205, -1.803188, 0.690525, 0.013410, -0.662700, 0.448424, 0.599291, -1.829095, 0.232869, -0.349461, -1.469929, -0.098700, 1.435506, 1.647498, 1.027361, -0.721582, -0.565761, 0.709328, 0.000125, -1.099155, -1.107491, 0.454791, -2.261746, 1.149467, -0.476590, -0.702307, -1.006639, -0.521253, 0.788968, -0.155312, -0.381375, -1.101716, -0.141268, -0.660108, -0.679916, -1.320218, 1.479250, 1.507832, 0.968821, 0.285130, -0.353535, 1.703116, -0.427587, 0.563161, -1.350061, -1.148522, -1.651166, -1.109747, 1.211116, 1.148960, -1.704156, -0.582008, 0.238850, -0.310886, -0.169408, 0.055247, 0.719357, -0.058472, -1.575884, 0.465986, -0.965719, -0.838065, 0.361164, 0.522814, 0.076076, 0.954925, -1.603143, 0.700436, -1.245348, -0.079459, 0.561385, -1.219365, 1.994697, 0.758499, 0.240087, 0.064408, -1.727290, -0.751493, 0.072077, -0.708423, -1.014759, 0.067955, -0.047954, 0.790485, 0.420138, -0.743439, -0.529251, -1.221190, -0.892678, -0.065633, -0.798286, 1.419744, -0.529502, -0.062380, -1.028012, 2.046545, -0.336631, 0.100954, 0.319248, -1.584275, -1.824061, 1.673385, -0.772400, 1.028574, 0.327589, -0.549963, -0.640309, -0.530502, -1.560275, 0.886680, 0.006966, 2.382656, 2.359744, 0.564725, -1.166945, 0.394581, 0.441447, 0.551799, -1.454235, 0.335578, 0.588766, -1.163539, -1.159530, -0.652836, -0.633751, 0.128373, 1.437112, 1.501418, 0.527015, 0.232558, 1.456230, -0.503982, -1.043733, 1.738922, 0.518337, 0.664774, 0.966451, -1.251112, -0.380935, 0.362857, -1.606999, -1.476807, 0.367791, -1.101447, -0.151663, 0.007021, -0.830746, -0.252380, -0.290619, 0.004900, 1.306902, -1.156433, -0.505639, 0.931232, -0.443121, 0.094784, -0.706438, -0.910635, -1.259470, 0.029562, 2.076075, -1.921974, -0.068235, 0.001861, 0.996305, 0.340029, 0.440569, -0.240653, 1.008124, -0.155498, -0.429653, -0.430542, -0.668176, -0.482622, 0.159948, -0.768951, -1.483923, -0.485705, -1.473952, 0.127729, -0.401044, -0.955716, -0.827374, -1.175198, 0.851187, 0.737552, 0.558656, 0.344002, 0.572444, 0.910407, 1.489226, -0.659754, -0.503414, -0.565406, 2.420453, 1.024422, 0.734636, 1.819494, -1.382054, -1.016789, 0.100615, 1.888994, -0.482837, -0.145605, 0.592694, 0.481272, 1.359893, 1.665366, 1.386322, -0.787736, 1.263130, 0.461985, 0.234356, 1.404367, -1.192254, 0.512577, 1.704309, -0.827800, -0.506396, 0.914222, -0.503646, -0.313012, -1.508489, -0.651324, -0.973052, 1.036229, 0.901202, 0.852467, 2.172481, -0.374160, -1.923445, 1.033895, 2.930909, 1.677596, -1.025203, -0.003616, -0.130114, 1.888597, -0.981159, 1.903740, 1.212058, 0.022061, -0.349958, -0.651606, -0.572516, 0.274358, 0.268005, -1.687611, -1.171629, 0.499717, 1.017316, 0.367696, 1.568323, 0.778355, -0.315373, -1.356690, 1.037716, 0.062099, 0.687052, 0.984748, 0.470240, -1.122137, 0.350402, -1.587572, -0.211998, 1.098278, 0.364058, 0.670238, -0.156440, 1.102625, 0.760424, 0.211939, -1.002941, 0.168052, -1.057274, 1.454049, -1.411544, -0.098932, -0.308145, 0.241473, 0.745247, -0.314956, 0.450311, 0.117805, 0.492505, 1.545526, -0.038071, 0.033780, 2.010406, 0.120157, 0.957409, -1.032133, 0.458434, 0.962205, -0.236621, -0.684141, -2.161510, -0.782801, 1.179275, -0.396880, -0.235410, 0.802283, 0.730784, 1.013500, 0.372364, 0.821909, 1.047508, 0.902454, -0.646596, -0.876804, 0.176571, 0.467616, 1.985710, 0.656512, -0.139839, -0.680056, -0.066643, -1.185840, -1.813197, -0.277215, 0.018833, 0.657233, -0.069929, -0.393180, 0.187068, 0.824906, 0.567316, 0.132388, -0.308200, -0.899512, -1.765707, -2.908447, 0.803933, -0.899792, 0.151271, -0.246429, 1.332421, -0.386421, -2.262383, -0.631701, 0.319570, -0.116320, -0.914068, -0.312951, -0.496925, -0.891916, -0.784169, 0.297470, -0.658369, 1.004445, 1.245341, 1.975976, -0.980490, 0.265684, -0.255210, -1.107656, 0.546400, 0.785175, -0.145784, 0.616748, 0.465158, 1.590526, 0.352594, -1.015762, 0.270768, 0.205208, 0.795052, 1.519890, -0.375387, 0.574211, -0.370970, 0.222691, -0.349349, 0.192322, -0.594630, -0.907619, -0.190014, -1.185655, 0.272753, 1.587674, 1.161592, 0.462038, 0.484842, -0.019056, -2.118700, 1.443076, 0.593569, 0.424985, 0.062940, -0.095318, -1.146824, -1.959402, 0.829239, 1.633918, -0.280228, -1.063364, 1.249821, -1.000996, -0.359783, -0.412490, 0.570566, -0.633122, -0.288672, -0.407366, 0.350827, -0.757071, -1.522758, -1.751824, -0.448034, 0.454998, -0.830849, 0.103922, -0.761929, -0.008269, 0.566453, 0.938852, -1.981556, -1.155640, -1.524010, 0.963338, -1.123288, 0.774067, -1.511966, 0.737242, -1.091010, 1.052326, -1.910565, -0.069092, 0.785770, -0.862919, 0.161439, 0.191427, -2.172789, -0.710060, 0.273590, -0.687805, -0.883376, 3.162315, -0.882357, 0.520708, 0.779158, -0.780040, 0.651513, 1.741372, 0.617430, -1.170265, -0.911421, -1.470328, -0.128188, -1.159915, 0.573693, -1.241283, 1.303776, -0.210447, -0.209450, -0.472948, -1.231820, -0.325695, 0.143855, 0.626983, -0.777071, 0.179327, 0.667350, 0.203690, -0.891150, 1.014351, -0.830957, -2.101807, -0.012138, 0.710210, 0.717035, -0.622401, -1.728435, 0.280232, 0.077969, 1.631599, -0.748923, -1.951986, -0.400807, -1.448743, 1.533525, -0.889200, 0.450216, 0.641524, 0.497361, -0.285736, 0.004426, -1.513625, 0.833978, -0.916147, 0.098262, -0.532298, -1.330080, -0.975145, 0.457690, 1.377541, 0.519594, 0.339239, 0.647109, -0.119263, -0.556650, 0.218947, 0.021733, -0.143415, -2.344608, -1.879485, -0.056608, 0.955428, 0.553497, 0.422710, 0.490186, 0.753981, 1.167394, 0.250707, 0.867650, 0.863333, 0.554288, -1.674255, 0.675413, -0.480305, 2.972471, -0.833941, -1.543609, 0.810846, -0.349685, -0.384512, -0.563449, 0.580341, -2.219890, -1.988385, 0.610690, 1.716722, 1.159096, -0.032151, -0.423654, -0.416435, 0.593664, 0.119367, 0.891505, -0.747347, -0.767704, 0.288041, -0.653648, 0.421060, -1.150721, 0.085754, -1.950429, 0.356548, -0.396448, 1.233036, 0.452971, -3.246009, 1.235285, -0.698394, 0.216465, -1.061694, 0.846054, 1.215517, 1.615848, -0.853116, -0.449410, -0.224634, 0.857915, -0.292091, -1.847311, 1.700395, -1.396772, -0.099243, 1.029881, 1.371751, -0.235334, 1.182792, -0.273085, 0.065096, -1.143261, 0.918131, 0.794846, 1.175060, 0.051927, 0.536081, 0.486799, -0.453196, -1.587476, -0.741171, 0.486967, 0.360644, -1.026515, 0.033601, -1.044481, -0.412918, -0.598754, -0.759864, -0.093545, 0.292356, 1.159179, 0.706248, 0.637053, 0.551897, -1.014312, -0.217860, 0.205756, -1.028986, -0.893177, -0.564251, -0.487110, -1.071049, 0.488441, -0.792787, 0.097260, 0.024613, 0.755771, -0.155682, 0.086548, -1.127772, 2.521429, -0.934870, 0.322835, 1.277360, -0.262616, -0.882835, -0.092712, 0.934894, -0.530604, -0.278054, -1.500881, -0.208462, -1.672725, -0.941590, 0.569523, 0.159525, -0.046336, 0.201087, -0.472248, 0.168054, 0.800862, 0.370948, -0.482440, 0.455688, 0.539341, -0.862171, -0.516521, 0.822494, -1.090393, -1.484401, 0.411054, -1.096611, -0.964070, 0.437406, -0.104813, 0.834125, 1.472704, -0.608250, -1.273579, 1.518826, 2.321128, 0.263796, -0.776486, 1.435783, -1.324236, 0.434425, 0.524862, 1.556289, -1.938194, -0.914763, -0.535110, -0.508190, -1.915703, -0.725912, -2.292933, 0.558342, 0.518904, 0.323175, 1.178150, 0.426547, -0.213415, 1.436912, 2.432859, 0.736886, 0.571655, 0.645860, 1.231013, 1.582064, -0.765513, 1.402441, -0.191858, -1.064373, -0.377191, 1.079476, 0.401809, -2.481400, -0.186557, 0.835196, -1.405536, 0.049807, 0.686579, -0.675896, -0.585518, 0.491837, -0.596569, -0.802917, -1.266745, 0.394863, -1.372541, -1.586751, 1.038270, 2.055848, 0.365939, 0.997490, 0.084050, -0.570786, 0.913017, -0.486857, 0.376424, -0.468679, 0.231063, -1.763772, -0.507522, -0.115440, -0.288785, 0.522118, 1.427845, 0.307951, -1.287141, 0.203074, 1.057344, 0.316632, -0.222739, 0.073249, 0.756280, -0.070279, -0.822806, 0.470546, -0.808535, -0.146559, 0.863172, 0.076059, -1.089635, -0.216319, 0.826497, 0.988639, -0.521205, -0.985828, 0.747315, -0.522233, -0.864016, -1.357048, -0.151733, 0.475297, 0.977428, -1.331935, 1.315165, -0.776000, -0.136812, 1.138204, 0.316542, -0.531433, 0.636499, -0.214966, -2.318053, 1.425497, 1.993480, -0.552785, 0.396205, 0.163127, 1.241685, -0.026614, 0.761883, 0.765679, -0.120293, -0.423937, -0.527392, 0.164604, -1.067609, 0.248180, 1.256958, 2.436015, -0.878712, 0.357371, -0.935548, 1.663144, -1.207206, 0.009869, -1.113580, -1.754721, -0.263996, 0.778409, 0.517802, 1.117160, -1.042248, -0.497135, 0.149409, 1.000652, -1.546691, -0.803195, 0.527898, -0.631157, 1.325081, -0.946442, -0.137733, -1.937147, 0.617108, 3.198472, 0.186704, -0.940352, -0.717166, -0.993984, 1.206617, -1.400762, 1.439830, -0.602108, -2.109967, -0.206252, 1.614274, -0.154729, -1.360389, 1.503991, 1.762359, 0.303531, -0.938569, 0.431105, 1.798255, 0.154913, 0.477865, -0.092355, 0.772611, -0.984700, 0.043640, 1.838004, -1.271862, 0.030863, -0.511314, -1.516170, 0.596530, -1.240831, 0.197891, -1.164738, -0.712793, -0.429485, 0.134250, -0.734635, 0.622906, -0.058721, -1.100663, 0.070589, -0.949798, -0.985846, -1.554170, -0.362901, 0.938372, -0.584915, 0.461763, -1.020154, 0.147155, 1.543824, 0.084560, -1.022256, 0.171802, 0.127091, 1.966016, 0.567871, -1.531694, -0.151075, -0.332457, 0.676251, 0.167103, -0.046942, -0.580992, 0.644613, 0.252655, -0.011560, -0.568257, -2.229907, 0.822496, 0.874718, -0.577739, 2.658702, -1.602708, 1.255744, 0.887679, -0.390492, 1.933449, -0.110791, -0.801445, 0.110379, -0.501591, -0.606547, -1.247899, -0.805969, 1.536897, -0.911686, -1.685953, 1.916739, 0.018037, -0.506987, 1.048849, -0.542152, 0.021590, 0.453320, 0.137357, 1.007987, -0.994972, 0.124273, -0.370572, 0.339897, 0.418449, -0.540360, 1.110835, -0.184036, 3.009731, 0.099027, -0.160311, 0.287887, -2.697294, -0.386904, -0.292122, -0.375448, 0.003555, 1.566751, -1.586660, 0.525199, 0.782661, -1.211303, -1.578896, 1.212422, 1.848550, -0.053970, 1.108913, 1.378591, -0.408931, -0.928571, 3.326382, 1.086381, -1.121282, 1.336658, 0.945066, -1.078083, -0.577008, -1.033338, 0.134627, -0.129577, 0.790852, -0.664828, -0.789038, -0.789827, 1.154601, 0.460997, -1.739856, -0.914739, -0.904195, -0.724823, -0.474839, 0.102348, -0.202742, -0.495732, -0.599532, -1.092822, 0.335616, 0.302772, -0.218412, 0.719305, 0.772232, 0.006407, 1.654623, 0.298861, 1.688659, -1.701889, 1.016420, 0.111276, 0.506934, -0.951470, -1.685934, -0.670856, -0.324380, -0.704697, 0.121137, -1.329978, -0.870626, -0.234748, 0.596578, 0.958373, -0.037665, -0.029015, 0.003726, -0.024609, -2.114817, -0.577442, -0.907189, 1.015327, 1.954068, 1.123420, 1.059387, 0.836423, 1.836553, 1.086375, -0.254418, -0.454348, -1.492264, 0.477155, 1.025832, -1.230900, 0.368380, 1.676087, 0.310874, -0.185035, -0.827384}, - { 1.463083, -0.422593, 1.505463, -0.241554, -1.386515, 1.389130, -0.440076, 1.505432, 0.958819, 1.211946, -0.322813, -0.750994, -0.637774, 1.381052, 0.548066, -0.126064, 0.114053, -2.886009, 0.713456, 0.270889, -0.900964, 0.370406, 0.787951, 0.795966, 2.091825, -0.185672, 0.503710, -0.427298, 0.532776, -0.716808, -0.939205, 1.338161, 0.511368, -0.888458, -0.648905, -0.263224, -0.045437, -1.465338, -0.068484, -0.740758, 1.266954, 0.898594, -0.882261, 1.708467, 1.318245, 0.480261, -1.311324, 0.897457, -0.578851, -0.307869, 0.627017, 0.570234, -0.833623, 0.821154, 0.304229, 0.181848, 0.447362, -0.252302, -0.380384, -0.676538, -1.822435, -0.725242, 1.031374, 0.287982, 1.382733, 0.881184, -1.643013, -1.932599, -0.774044, 0.988825, 0.634622, 1.047978, -0.368218, -0.925052, -0.889416, -0.564578, -0.329989, 1.958383, -0.090536, 1.483940, 2.464303, 1.319231, 0.619170, 1.852278, 0.050779, 0.232170, 1.292224, 0.444277, 0.590187, 0.415396, 0.489940, 0.901527, 1.422432, -0.474115, 0.029114, -0.649494, -0.247114, 0.408029, -0.786675, -0.289705, -0.720719, -1.341870, -0.348053, 0.259016, 0.600257, 1.045258, -0.957419, 0.233949, 0.169548, 0.555418, -0.512321, 1.213751, 0.289889, 1.051731, -0.069820, 1.233996, 0.578051, -1.181372, 0.401675, -0.241136, -0.817625, -1.030486, -0.023479, -1.631710, -0.129691, 0.062273, 0.422137, -0.053258, 0.659542, 1.074164, -0.152984, -0.511226, 2.002754, -0.632309, -0.157530, -1.095414, -0.243000, 2.821108, -0.926469, -1.323251, -0.644178, -0.248875, 0.440220, 0.933944, 0.766253, -2.290784, 1.010032, 0.904588, -0.160255, -0.039046, -0.426556, -1.447706, 1.359287, 1.124437, -2.045364, -0.539780, 0.219376, -0.145057, -0.658676, 0.603524, -0.174178, 0.865665, -0.925947, -1.663678, 0.094041, 1.007999, 0.606139, 0.414910, -0.965923, -0.569209, 0.247629, 1.276643, 0.249693, 0.854798, -1.545011, -0.577943, -0.815316, 1.433076, -1.255241, 0.051703, 1.438666, 0.293192, -0.468189, -0.371958, 1.064451, -0.198575, 1.408245, -1.092882, -0.120101, -0.086920, -0.202087, 0.115138, -0.355783, 0.346410, -0.274547, -1.224545, -0.561715, 1.085639, 0.289547, 1.308980, -0.252044, -0.163348, -1.407008, 0.690892, -0.070317, 2.932163, -0.197223, 1.222656, -0.732611, -0.187020, -0.061772, 0.517078, -0.577477, 0.938540, 1.626285, -0.313158, -0.550513, 0.857280, -2.422043, -0.896528, 0.848986, 0.913259, 2.078492, -0.377817, 1.239886, 0.080463, -1.844394, 0.136906, 0.853955, -0.244380, 1.246057, 0.217663, -1.113694, -0.409519, 1.201081, 1.308154, -0.873689, -0.505884, -1.662602, -0.083540, -0.913006, 0.444960, 0.124471, 0.676250, 0.594916, -0.019401, -0.334825, 1.196333, 1.047678, -0.595635, -0.074054, 0.489929, 1.113536, -0.457328, 1.277865, -0.357117, -0.959804, 1.028927, 0.454104, 0.787294, -0.127688, -0.142912, -0.912191, 0.547964, 1.413468, -2.854172, 0.996276, -0.877576, 0.022095, 0.571744, -0.017863, -0.903361, -1.327670, 0.709660, -0.444917, -1.463766, 0.162170, -0.399070, -0.775082, 0.204557, -0.915662, -1.398666, -0.033778, -1.224466, -0.790206, 1.404809, -1.602560, -0.566840, -0.662185, 0.178099, 0.998191, -2.521236, 1.390752, -0.492537, -1.025408, -0.785105, -1.182054, 0.612622, -1.845123, 1.218117, -0.105511, 1.704905, -0.442944, 0.344820, 0.708059, -0.917305, 0.793661, 0.180332, -0.898945, 0.258629, 1.480507, 1.093272, 0.681000, 0.012193, -1.034033, -1.569363, -0.210513, 0.705476, 0.449104, -0.051273, -1.019887, 1.669025, -0.751012, -0.628909, -0.083270, -1.821194, 0.800022, 2.427250, 0.443614, 0.304541, 0.747911, -0.169420, -0.904272, 2.514867, 0.245856, 1.632448, -0.762919, -0.209119, 0.049385, -1.589729, 0.948483, 0.236501, 2.077460, -1.733226, -0.875441, -0.142843, -1.700648, -0.137395, 0.024392, 0.097358, -2.138648, -0.106727, 0.137434, 0.821791, 0.973994, 1.521879, -1.158079, 0.386975, 0.670921, 0.895037, 0.170402, 2.223875, -0.823823, -2.126691, -1.504934, -0.299998, 0.094464, -2.015715, 0.130019, 0.003191, -0.282077, -0.718410, -1.898619, -2.224198, -0.790712, -0.366862, -0.258817, -1.126168, 0.611796, 0.518503, -0.404919, 0.717330, -0.028573, -0.588446, -0.996154, -2.116879, 1.048993, -0.865295, -0.110260, -1.171131, -1.101144, 0.491418, 0.591424, -0.118359, 0.083128, -1.088060, 1.102987, 1.854937, -0.772271, -0.914412, -1.576852, -0.559847, -0.651418, 0.104693, 2.123291, 1.923983, 0.089423, -0.359738, -1.786474, -1.144172, 0.879001, -0.532192, 0.108946, 0.323678, 0.614816, 0.412863, -1.018183, -1.218906, 0.837569, -1.021422, 0.938307, 0.792073, -1.961305, -0.030533, -1.034175, 0.111338, 0.094186, -0.847779, 0.408266, -0.938794, 0.594150, -0.715830, -0.795749, 0.516614, 2.437080, -0.599323, -1.408864, -0.453664, 0.615877, -0.086873, -1.041776, -2.383410, 3.156408, -0.556290, -1.190379, -0.622245, 1.504269, 0.349749, -0.058662, -1.393360, 0.179862, -0.151126, -0.849941, -0.364632, -0.528944, -1.052577, -1.997191, 0.519329, 0.595623, 0.334534, 2.134766, -0.192607, -0.306883, 0.573016, 0.135832, 0.768289, -0.076635, -0.443870, 1.459083, -0.526757, -0.448050, -1.520194, -0.449561, 0.560005, -0.578036, -0.268174, 0.858826, 1.152279, 1.419171, -0.328678, -0.071260, -1.084192, 0.555109, 1.100901, 0.319228, -0.949782, 0.297357, 0.090072, 0.864504, 0.917468, 0.576084, 1.082713, 0.513510, -0.043335, 0.295377, -1.579695, -0.244816, 1.039186, 1.259287, -1.456241, 1.601870, 0.366654, -1.168208, 0.621312, 0.790020, -0.990963, 0.087922, -0.469035, 0.332328, 1.071768, -0.544952, 1.279473, 0.401712, -0.777214, 1.598492, 2.720704, -1.592220, -0.028937, -0.133522, -1.481804, -0.414559, -0.768919, -0.649499, -1.031639, 1.674990, -0.632441, -1.181652, -0.748845, 1.293687, 1.191815, -0.947192, -1.077136, -0.395310, -0.726435, 0.704260, -0.173239, -0.604234, 1.706261, 0.603246, 0.082911, 0.449418, 0.342870, -1.214765, -0.616459, -1.138420, -1.239462, -0.829734, 0.298012, -0.438737, 1.119083, -1.747199, 0.075827, 0.750317, 0.015959, 2.673993, 0.695316, -0.295101, 0.573259, 0.606363, 0.359317, -0.363445, -0.028387, -0.947399, -1.315650, 0.849546, -0.220756, -0.887965, 0.228625, -1.342103, -0.549175, -1.475137, 0.501268, -3.811178, -0.955225, 0.486296, 1.783510, 1.178837, 0.131082, 0.743665, -1.005692, -0.253365, 0.201155, -0.495085, 0.660715, 0.935911, 0.475713, -2.093667, 0.189219, 0.687746, -1.162282, 0.765370, -0.473079, -1.178207, -0.567789, 2.700521, -0.048847, 0.278716, -0.793269, 0.088162, 2.537305, -1.130521, -1.932532, 2.472336, 0.926509, -0.631188, 0.261391, 0.770591, 1.639942, 0.320703, 0.212401, -0.410104, 0.436704, -1.368510, 1.233343, -0.898163, -0.327058, 0.442677, -0.645411, -1.465860, -0.201130, -0.482415, -1.197139, 2.508349, 1.212023, 0.351047, 0.387545, 1.278681, 0.488864, 1.148973, -0.691036, 0.252424, 1.868212, 0.438444, -2.887588, -0.537036, -0.684071, -1.741831, 0.055706, -0.504995, 1.342336, 0.416253, 0.208315, 0.138326, 0.750489, -0.597545, -0.653041, 0.300722, 0.259019, 1.366061, -0.070968, -0.103294, -0.681356, 1.189079, 0.224627, -1.627360, -1.235841, 0.092197, 0.546120, 1.011409, -1.468901, 0.344382, 1.604989, 0.762395, -1.833910, 1.369965, 2.207117, -2.378839, 0.289389, -0.289958, 0.708922, 0.095479, 1.161928, 0.336401, -1.370665, 0.734498, 0.965329, -0.849018, -2.434349, 0.306106, -0.781257, 0.594293, -1.429602, 0.841641, 0.256158, -1.209145, 0.864806, -0.102022, -0.143145, 0.021417, 1.008262, 0.982015, 0.092831, 0.165202, -0.252263, 0.220545, 0.348633, -0.846917, -0.616212, -0.181726, -1.024299, -1.592690, 0.965261, 0.041398, 0.674359, -1.057345, -0.683720, 0.655972, -0.015530, -0.323909, 0.549081, 1.071910, 0.364225, -0.824464, -0.001709, 0.267600, 0.525355, 0.386475, -0.452447, -0.404434, -1.440732, 0.976957, 1.293394, 0.147899, -1.772454, -0.921953, 1.576577, -1.693166, -1.488782, -0.414513, -2.135588, -1.214201, 0.803253, -0.690416, -0.010669, -0.402725, 0.632358, -0.043319, -1.908834, -1.491129, 1.808186, -1.874046, -0.281751, -1.075587, -0.559680, 0.298088, 0.643733, 0.610926, 0.704458, 2.016152, -0.031613, 0.646952, 0.569395, 2.508410, -0.179675, -0.048824, 0.005606, 1.869785, -0.306183, -0.522185, 0.693429, 0.004549, 0.536186, 0.103252, -0.422090, -0.629959, 0.125014, -0.018577, 0.885319, 0.678065, 0.186344, 0.807778, 0.893964, -1.250961, -1.133031, 0.511445, -1.125194, -0.844051, 1.687765, -0.596102, -0.170204, 0.231324, 0.877110, -0.807087, -0.517076, 1.108176, 0.829449, 0.434158, -0.241738, -0.651427, 0.953202, -0.486286, 0.665821, -0.121909, -0.066174, 0.646312, -0.254029, 2.053112, -0.455520, 0.194909, 0.339175, -0.593663, -0.580708, -1.483420, -0.718239, 1.580834, 2.758743, 0.921026, -0.283677, -2.222538, 0.787170, -0.049637, 0.209295, 0.898605, -1.266989, 1.070821, 0.921603, -1.105286, -0.183823, -0.001298, 1.437060, 0.364263, -0.432373, 0.030635, 0.115497, -0.913457, -0.696298, -0.106767, -0.929542, 1.740185, -1.781696, -0.549155, 2.388424, -0.243142, 0.822746, 2.649969, 0.082938, -0.060588, -0.322106, -1.212368, 1.261406, 0.998801, 0.553030, 0.707387, 0.139253, -1.965311, -0.426487, -0.183201, -1.143024, 1.080709, -0.542438, 0.557808, 1.305462, -0.798548, 0.792202, 1.471583, 0.359012, -0.754083, -0.563582, 2.933185, -0.191811, -0.729754, -0.858562, 0.060986, 1.972915, 1.746027, -1.087005, 0.552130, -0.788223, -1.243806, 1.856027, 0.410151, 0.278261, -2.097281, -0.165141, 0.452122, 0.847627, -0.040394, -0.849300, 0.202366, 1.170092, -1.498406, 0.402975, -0.401223, 0.843738, 0.103140, -0.551512, -0.564725, 1.017490, -1.411059, 0.497527, 0.853076, -1.208954, -0.580804, -0.538174, 0.746502, -0.138976, -0.450661, 1.259247, -0.601191, 0.972999, 2.011034, -2.611481, -0.296053, 0.025581, 0.843127, 0.269563, 0.078695, -0.652477, -0.636561, -0.337333, -0.085627, 0.699060, -0.285203, 0.302345, -0.254838, 0.719321, -0.887386, -0.869428, 0.308216, 0.321839, 1.339406, 0.131548, 0.911953, -0.183639, -0.072973, 0.451839, -0.076615, -1.436176, -1.446560, -0.640161, 1.252679, -2.536145, 0.083403, 0.398960, -0.434442, 0.503598, -0.832421, 0.174327, 1.383598, -0.864221, -0.797381, 0.254484, 0.735936, 0.447760, 1.019576, 0.427179, -1.903720, -1.076532, -0.324483, 0.204516, -0.653492, 0.658674, -2.241488, 0.068427, -1.194480, -0.358988, -1.441842, -1.004456, -0.367884, -0.164342, 0.414830, -0.423650, -0.809400, -0.114740, 0.441052, 0.663330, 0.553117, 1.618080, -1.383428, 1.076929, 1.214673, 0.339496, -1.887393, -0.796113, 2.613801, -0.437388, -0.663248, 0.089296, 0.307271, -1.604505, -0.362615, 0.070389, -1.777228, -0.813626, 0.937207, 1.229573, -2.157619, 1.277535, -0.587399, -0.402635, 1.240281, -0.375889, 0.524737, -0.799339, 1.472952, -0.064894, 0.312903, -0.137374, -0.653612, 0.755019, -0.140038, -0.933827, -0.180902, 1.410203, 0.259619, -0.249711, -0.013147, 0.976021, -2.205953, 2.239404, -0.018998, 1.707275, -0.610730, 1.800240, -1.937084, -0.209935, 0.573138, -0.604941, 1.094679, 0.353792, -0.796537, -1.273211, 0.430803, -0.436417, -0.901275, -0.132341, 1.105824, 1.192633, 0.599159, 0.041933, 1.398376, 1.228992, 0.599179, 0.562203, 2.011279, 0.107998, -1.880693, -1.314182, 0.726995, -0.303783, -0.232535, 0.805236, 0.574284, 1.825219, 0.481046, 1.176469, -0.005005, -0.437182, -0.486515, 0.502299, -0.660077, 0.501681, -1.171856, 0.255944, 0.076300, 0.517341, 0.795345, -0.693783, 0.297741, 1.058407, 0.101764, -0.630923, 0.012331, -0.250903, -1.055991, -1.486803, 1.048219, 1.806489, -1.277031, 0.466303, 0.864901, 0.172281, -0.629937, 1.370061, 0.210752, -0.354053, -0.543032, -0.993002, -0.492207, 0.174437, 0.668512, -2.368764, -0.984693, 0.446388, 1.271209, -1.759257, -0.756024, 1.384092, -1.436662, 0.948225, -0.114060, -1.114640, 2.231575, -0.974306, 1.101864, 0.014861, 0.599672, -0.144135, -0.644954, -0.028306, -0.235662, 0.881458, 0.714558, -0.306181, 0.083978, -0.009850, 0.650500, -0.114353, -0.221029, 0.116231, -0.196612, 2.055438, -0.840273, -1.597501, -1.557035, 0.562234, -1.042682, -0.115944, -1.917445, -0.099277, 1.259935, -0.810861, 1.377141, 0.581891, 0.038066, 0.334035, 1.543489, -0.700360, 0.878012, -1.668910, 0.038807, 0.424636, -0.868011, 0.843123, 0.936123, -1.268251, -1.186098, -0.096058, -0.472553, -0.569291, -1.242718, 0.689243, 1.036445, -1.089426, -0.240963, -0.736780, -0.132270, -1.347308, 0.636797, -0.830018, -0.526198, 0.986368, -0.508480, 1.166948, 0.321075, 1.257057, -0.555575, -0.769797, 0.037234, -1.225849, -0.639776, 1.605412, -1.077925, 0.878783, 1.644148, -0.820132, 0.177052, -1.428467, 0.087647, 0.145735, -1.228402, 1.199574, -0.096729, -0.989056, 1.077607, -0.870894, -1.091914, 0.079661, 0.646102, -1.535019, 0.566583, -0.275144, 2.737974, -0.062092, -0.673603, -0.046880, -0.463211, 0.676774, 1.201957, 1.339307, -1.350206, 1.036885, 0.663826, 0.645678, 0.627826, 0.083337, 0.688757, -0.036833, -0.907979, -1.117299, -1.370532, -0.534487, -0.941965, 0.192248, -0.251242, 0.225042, 0.237043, 0.597010, 0.438869, 0.115549, -0.268917, -0.526161, -0.598611, -1.495332, -0.501398, 1.336285, -1.291725, -0.941537, 0.517032, 0.213226, 0.289392, 0.381262, 0.265248, 0.901984, -0.319072, 0.068068, -1.802063, -1.196775, 0.633367, 0.730634, -1.230875, -0.503543, -0.229085, -1.578917, 1.686321, 0.397693, -1.752010, 1.155558, 1.575457, -0.684211, 1.130759, -0.964391, 0.420251, 0.199125, -2.045601, -0.841773, 1.170935, -0.653584, -1.115931, -0.590874, -1.216702, -0.968169, 1.238557, -0.738332, -0.133324, -1.105106, -0.028404, 0.205197, 1.930414, -0.010985, 0.117392, -1.015451, -0.919056, -0.167054, -0.575321, -0.891431, 0.371902, -1.274686, -0.875438, -0.085740, 0.573097, -0.848063, -1.840711, -2.291004, 0.412596, -2.390139, -0.123728, 0.216096, -0.197863, 0.330312, 1.094169, 0.235412, 1.529485, -2.701128, -1.841991, -1.287154, -0.371125, 1.183016, -1.528058, -0.461995, -0.537688, -0.121660, -1.707710, -1.451806, 1.660011, -1.704213, -0.522591, 0.608624, -0.724401, 1.573601, -0.462104, -0.193030, -0.960701, -0.717931, 0.368174, 1.159395, -1.292301, -0.413960, -0.911137, 1.577433, 0.238658, 1.661173, -1.043789, -0.776631, 1.963089, 1.144360, -0.429729, -0.070165, -0.647949, 2.224191, 0.922051, -0.787452, -1.723117, 2.135242, 0.407912, 0.553191, -0.272019, -0.769199, 0.116071, 1.233337, -0.536483, 0.194698, -0.364801, 1.161344, -0.059902, -0.188744, -0.853891, -0.204065, -1.209451, -0.125752, 0.001065, -0.344748, -0.262156, 0.890443, 0.059319, -1.609535, -1.798127, 0.539802, 0.978540, -0.646831, -0.213446, 0.222421, 0.133444, -0.237710, -1.540541, -0.858681, 1.786379, -2.232934, 0.194050, 2.010475, 0.227545, -1.855255, -0.133707, -0.318903, -0.443642, 0.422335, 0.844548, 1.175377, -0.774183, -0.169814, 0.915640, 0.127368, -0.733243, -1.266528, -0.324577, 1.493544, 0.315125, -0.766478, -0.032213, -0.689888, -0.442525, -1.094400, 0.091220, 0.155211, 0.329433, 0.743409, 1.383190, -0.177790, -0.459259, -0.427564, 1.478410, -0.395987, 0.945209, -0.773267, -1.644360, 2.007200, 1.140567, 0.654914, 1.271676, 1.691442, -1.017013, -0.090082, -0.676001, 0.818901, -0.692404, -0.267801, -0.210212, -0.810789, 1.194384, -0.026008, -0.446139, -0.280835, 0.665835, 0.552424, 0.975960, 0.533602, 0.921817, 1.162899, 0.056587, 0.838081, 1.018484, 0.737541, 0.235971, -1.715205, -0.010786, -0.451838, -0.478264, -0.298536, 0.458548, 0.896740, -0.475461, -0.107050, -0.160684, -0.046708, -0.341063, -0.636934, -0.872002, 0.741325, -0.265641, 0.174669, 1.535938, 1.074105, 0.248771, -0.506019, 0.812500, 0.561394, -1.249885, -0.805145, 1.019588, 0.929492, -0.117274, -0.475864, 1.645770, 0.453032, -0.203403, 1.656491, 0.105410, 0.287933, -1.658475, -0.125998, -1.520977, 0.408257, -1.023742, 0.340135, 1.375705, 0.159702, -1.274662, 1.188079, -0.248499, 1.046080, -0.278688, 0.656228, -0.940407, -1.010099, -0.425974, 0.706940, -0.499998, 0.941889, -0.043274, -0.769265, 0.232247, 1.635775, -1.109666, -1.983417, 0.417748, 0.993060, 1.512461, 1.112705, 0.444797, -0.176426, 1.170116, -0.679821, 1.344172, -0.703345, 0.516566, 0.361846, 0.470657, -2.229069, -0.996538, 0.583824, 1.501572, 1.711949, -0.241647, 1.389133, -0.117338, 0.073266, -1.904503, -0.446048, 1.769537, -0.758381, 0.361868, 0.333955, 1.043740, -1.385741, 0.899305, -0.384806, 0.708481, -1.621319, 0.298322, -2.598936, -0.567307, 0.728023, -1.142811, 0.205535, 0.092326, -0.150745, 0.324807, -1.620093, 0.393070, -0.782600, 1.465078, 0.787793, -0.472915, 0.065388, 0.776762, -0.020151, 0.935728, -1.816234, 0.519904, -0.250368, 0.179030, -0.013762, 1.466377, 0.363489, 0.649383, -0.868991, -0.189423, -0.055035, 0.063051, -0.096711, 1.768088, 1.840798, 0.793053, 1.429546, -0.749670, 1.432627, 0.088670, 0.578526, 1.517048, -1.326013, -1.285640, -0.350472, 0.214906, -0.162170, 0.722723, 0.292372, 1.507200, 2.804112, -0.162876, 0.076073, -1.168047, 2.137174, 0.674241, -0.213758, -0.386747, -0.920035, -0.363421, -0.496172, -0.590562, 1.251346, 0.281242, 0.132311, -1.369727, -2.456163, -0.413745, 1.028342, -0.099829, -0.058604, 0.559943, -0.348435, -0.489928, -0.569766, -0.164835, 0.535828, 0.794678, -0.409822, -0.433102, -0.659592, 0.182238, 0.122540, 0.385592, 0.436848, -0.134526, -0.376223, 1.282591, -0.539787, -0.126236, -0.117527, -0.762230, -0.690076, 0.381597, -0.127793, -0.167546, -0.392606, -0.731430, -0.948615, 0.064081, -0.068808, 0.224504, -1.883282, -1.975447, 0.891883, -0.652932, 2.024351, 1.087493, -0.023667, 0.246369, 1.025813, -1.812474, 0.600479, -0.782582, -1.741405, -0.188030, 0.402218, -0.410046, 2.091224, -0.259267, 0.698336, 0.242207, 0.268938, 1.394473, 0.469512, 0.933017, 1.488456, -0.341644, -0.791699, -1.446461, 0.393435, 0.833254, 1.334394, 0.470877, 0.070305, -1.497475, 0.345918, -0.844593, -0.399710, -0.088262, -0.598605, -0.666429, 1.275263, -1.876474, -2.077331, 1.157732, -1.546555, -0.569495, -0.808976, -0.490299, -0.360891, -1.341171, 1.493188, -0.234666, -0.544535, -1.969054, -1.551740, 0.240554, -2.232345, -0.455098, -0.836830, 0.915519, -0.852643, -0.794784, -0.679951, 1.942435, 0.261901, 0.588130, 0.429660, -0.465149, -1.421758, 0.885973, 0.655556, 0.613977, 0.352837, -0.220158, 0.898358, 0.909666, 0.387378, 0.971515, -1.215671, 1.364633, 1.370551, 0.328178, -0.923502, -0.347543, -0.419652, 1.314634, 1.690332, 0.523008, -0.592843, 1.688752, 0.296009, 1.137360, -0.699334, 1.162271, 0.610619, -1.902893, 0.365951, -0.286711, 0.028145, -0.460607, 1.327399, -0.026118, 0.861427, -0.038776, -0.864668, -0.483240, -2.043697, -1.142821, 1.361424, 0.773614, -0.875402, -1.052503, 0.917661, -0.263940, -1.008121, 0.159128, -0.059757, -1.277182, -0.293946, -0.624276, -0.373682, 1.307616, 0.691095, -0.492976, -0.772840, 1.105352, 0.338552, -2.942345, 0.445159, -1.320336, -0.605020, 0.953831, 0.469851, -0.354887, 0.953904, 0.371550, 0.092209, 1.085028, 0.236800, -0.237459, -0.181647, -0.449363, -1.229349, -0.915450, -0.775320, -0.255796, -0.752793, -1.772184, 0.270470, 0.992505, -0.094404, 0.484247, -1.121118, -0.454329, -0.910895, -0.650925, 0.502442, -0.265349, -1.841811, 0.028939, 0.831680, 0.227214, -0.367259, -0.397616, -0.503254, 0.270294, -0.174047, -0.392619, -0.687216, 0.031942, 1.310305, 0.441107, -0.552457, 1.908733, 0.345012, -0.521335, -0.234192, -1.005215, 0.756866, 1.031271, 0.149743, 0.538873, 1.449921, -1.685842, -0.885655, -0.087633, 0.291052, 0.048680, -1.336456, 1.102988, -2.929202, -0.878944, 2.933355, 0.845554, -1.270444, 0.567321, -0.194162, -1.075099, -1.249082, 2.066827, -0.742117, -1.074731, 0.084178, -0.507480, 0.614266, 0.091381, 0.357175, 0.417274, 0.915112, 0.596810, 1.082144, -1.424948, -1.263764, -1.366437, -0.368521, 0.406863, 0.203142, -0.513780, -0.874924, -0.025335, -0.746661, 1.911579, 0.822715, -1.161584, -0.862557, -0.495997, -0.246120, 0.380888, -0.604009, -0.613752, -0.004857, 1.542078, -0.495454, -0.526918, 1.497577, -0.657132, 1.825640, -0.189233, -0.305086, -0.929308, -1.991496, -1.480981, -0.586877, 1.996711, 1.383913, 2.029534, 0.932487, -0.743253, -1.654776, -1.288083, -2.358563, -1.283558, -0.614194, -0.850327, 1.185002, 0.332798, -1.282921, -0.783882, 0.051726, 1.774174, -1.503310, -0.243286, 1.337100, -0.029914, -0.591297, 0.598562, 0.185515, 0.395646, 1.237728, 1.038232, 0.337125, -1.235164, 0.305595, 0.033171, 1.209693, 0.273286, 0.967767, 0.402268, -0.053069, 1.983366, -0.700376, -0.808244, 0.368366, -0.594984, 0.278371, 0.520705, 0.690706, -2.079627, 1.235444, 1.445721, -0.394234, -0.956180, -0.783992, -0.749785, 0.169359, 1.001997, 1.588047, -0.309243, 0.657695, 1.419736, 0.080640, -0.998396, -2.284743, 0.014069, 2.527452, 0.464817, -0.655672, 1.331777, -0.351488, -0.373632, -0.265931, -1.533439, -1.339083, -0.806225, 1.903854, -1.300660, 0.963523, -0.556366, -0.111860, -1.145382, -1.180812, 1.645147, -0.859318, -0.262230, 1.746781, 0.062488, -0.142178, -0.319597, 0.805451, -0.524940, 0.771373, 0.295142, 0.331752, 1.243740, -0.348120, 0.990053, 0.226242, -1.431399, -1.715353, -0.193180, 0.189706, 0.929362, -0.204526, 0.824361, -0.935070, 0.795433, -0.740348, 0.033792, -0.368202, -0.059590, 0.914689, -0.729263, 1.809984, -1.817875, 0.373864, 1.135015, -0.860622, 0.855074, 1.251296, 0.430322, -0.770571, -2.330315, 1.057717, 0.639588, -1.106705, 2.263489, -0.298065, 2.495112, -0.544542, 0.658343, -0.291951, 0.145052, 0.212197, 1.751437, -0.317666, 0.477505, -0.760640, -1.854693, -0.916580, 1.387901, 1.297886, -0.439742, 0.972952, -0.207502, -2.016983, -0.372088, -0.293588, -0.890832, -0.577037, -1.368332, 1.546014, -1.235951, 1.128922, 1.226443, 0.057891, -0.235351, -1.826791, 0.013132, 0.575864, 1.989528, 1.171615, 0.262968, 0.269533, -2.110740, -1.248885, -0.684853, -0.749814, 1.548712, -0.493807, -0.476493, -0.600738, -1.346532, -0.422131, -0.572886, 0.280894, 0.488704, -0.476414, 0.606693, 0.627582, 1.177491, -2.801196, -0.345425, -0.539653, 0.239909, -0.715030, -0.947349, -0.156670, 1.545247, 0.461864, -0.156047, 0.815558, 0.069526, 0.155074, 0.249092, -0.018480, 0.306401, 1.199131, 0.317856, -1.451196, -0.540745, -0.483238, 2.387320, -1.395595, 0.614275, -0.257170, 1.247054, 0.624628, 0.869156, -0.372203, -1.099383, -0.469647, -0.866391, -0.644422, -0.022952, -0.296277, -0.652974, 0.942426, 0.460873, 0.501562, 0.664257, -0.481230, 1.693070, 1.346129, -1.485725, -0.368335, 0.489086, 0.218751, -1.056075, -0.256611, 1.026748, -1.062068, -1.277974, 0.741510, 1.437067, -2.722271, -0.140934, -0.756397, 1.395773, -0.721586, -1.032565, 0.502521, 0.045251, -0.767535, -0.570692, -0.521047, -0.918576, -0.420860, 0.060595, 0.285349, 0.330953, 0.890022, -0.947116, -0.038456, -1.067923, -1.307064, -0.065499, -1.282460, 1.358192, -0.207752, -1.414136, 0.193799, -0.504835, 1.304376, 1.052409, -1.840901, -0.957358, -0.469032, -0.345329, -0.133076, -0.142414, -1.045208, -0.358082, 1.320415, 1.286141, -1.593837, 0.112917, -0.209537, 0.014430, 0.454638, 2.396512, -0.360322, 1.222698, -1.800098, 0.358477, -1.020227, -0.951170, 0.184742, -0.242794, -0.356478, 0.747003, 0.685666, 1.773837, 0.037266, 0.092769, 1.761236, 0.982292, -1.517177, 1.323996, -0.547775, 0.523508, 1.681538, 0.031054, 1.032626, 0.248433, -1.953045, -0.475985, 0.085305, 1.102302, -0.606649, 0.010155, 0.845950, 0.838079, 1.440465, 1.111996, -1.081481, -0.821172, 0.812970, 0.561478, -0.879287, 0.355050, -0.673691, -0.100147, -1.136508, -0.227903, 0.608128, 1.192806, -1.940669, 1.759276, -0.525988, 0.582430, -0.010930, -0.642073, -2.441217, -0.227902, -0.005424, 2.134140, -1.466543, 0.397765, 0.384761, 0.154591, 1.174917, -0.533171, -0.586818, 0.279077, 0.515127, 0.375724, 0.237319, 1.909430, -1.355151, 0.616019, -0.867013, -0.366089, 0.771928, 0.900137, 0.709168, -1.813267, 0.593955, 0.689893, -0.304745, -0.880049, -1.791807, -0.061096, 0.348417, -1.961069, 2.457608, -1.537941, -0.594875, 0.360609, -0.865662, -0.470672, 2.225043, 0.261478, -0.944859, -0.391298, 0.531277, -0.136620, 1.126871, 0.110916, 1.521862, 0.447901, -0.404044, -0.861659, -0.863225, 0.291401, 0.580419, -0.610619, 0.264456, 1.529272, 0.340869, 0.079968, 0.726771, -1.585980, -1.458849, -1.096808, 0.819906, 0.519707, 0.741836, 1.293123, -0.385099, 1.209177, -0.751745, 0.584524, -0.527719, -0.792565, -0.913272, 0.919876, -0.650037, 1.445709, -0.237211, 1.211545, -0.262747, -0.255015, 0.301235, 0.440093, 0.045824, 0.658224, -0.692605, -0.011042, 0.502382, -1.487078, 1.597929, 0.575019, -1.313354, -1.287837, 0.024124, -1.765020, -0.642332, -0.569423, 1.935842, -0.805847, -0.567158, 1.862071, -0.632283, 0.925897, 0.865091, -1.158175, 0.848080, 1.077904, -0.721489, 0.045563, -1.621627, 0.264485, -0.354161, -1.472917, 0.344166, 0.286064, 0.535362, -1.473323, 1.226940, 1.582088, 0.210778, -1.060418, -0.185844, 0.288219, 0.745273, -0.462258, -0.523615, 0.940274, 2.251897, -0.429833, -0.392335, -0.425686, -0.609360, -1.651912, -0.520587, 0.623435, -0.549004, 0.347927, -0.565802, -0.165099, -1.067913, 0.993166, -0.520832, 1.385723, -1.644085, 1.859935, -1.200724, 0.275898, -0.403711, 1.330624, 0.321464, -1.101332, -2.070560, -0.011004, -0.876374, -0.351336, -0.364860, -0.297692, -0.624883, -0.012912, 0.553782, -0.119338, 0.009886, 0.233519, 0.850127, -0.382206, 0.006731, -1.033220, 1.357904, -0.152723, -0.112469, 2.413690, 0.132626, 1.020103, 0.486713, -0.467687, -0.882504, 0.149689, -0.882874, -1.622582, 0.889352, -0.589864, -0.060649, -0.554446, 0.162069, -0.874591, 0.376542, 0.202443, 0.952466, -0.095900, -0.532472, -0.305646, 1.297330, 0.615439, -1.037382, -0.843574, -1.443636, -0.654764, -0.788632, -1.122809, 2.107426, 0.020323, 0.056888, 1.449052, -1.414196, -0.778988, -0.180533, 0.764142, -1.276806, 0.143296, -2.166982, 0.703651, -0.561048, -0.541946, -0.530078, 0.342287, -1.453677, -0.524079, 1.688899, -2.740637, -0.509667, 0.422408, -0.167106, -0.135366, 0.607375, -0.056822, -0.278464, 0.175810, 0.047142, 0.139719, -0.175870, -0.953918, 0.772994, -0.629944, -1.023366, 0.619313, -1.187672, -1.899090, 0.622108, 0.016275, 0.191342, 0.999344, 1.811074, -0.857979, -1.246552, 1.060831, -0.193704, -1.016750, -1.346058, -0.635778, -0.009523, -0.783099, -0.904311, 1.544027, -0.219199, -0.343132, 0.200437, 0.871278, 1.444465, 0.078621, 0.565776, 1.639612, 0.486000, -0.964735, 0.638348, 0.217969, 0.852034, -0.507616, -0.510199, 1.711401, -0.326036, 1.563514, -0.885243, 0.870436, 0.254717, 2.287700, -2.298754, 0.754934, -0.578417, 0.003805, -1.013249, -0.434976, -0.366648, -1.690810, -1.400365, -1.799398, -0.166922, -0.383870, -1.644150, -0.547353, 0.343083, 1.923705, -0.014167, 2.022998, 0.470624, -1.251050, 0.327891, 0.047044, -0.210121, -0.569339, 0.088085, -0.069365, -1.615166, 0.476006, -1.070633, -1.074907, 0.467080, 0.929532, -3.156759, 1.506421, -1.880815, -0.346951, -1.181532, 0.648061, 0.919897, 1.731056, -1.351639, 0.408378, 0.125410, 0.675769, -0.714707, 2.282438, -0.396139, -0.088341, 1.372799, -0.796148, 1.598698, -0.126270, -0.184555, -0.977132, 0.000499, 1.735138, -0.003698, 0.579036, 0.595922, -0.165841, -0.248538, -2.112316, 0.850311, 1.271300, -0.022016, -0.704498, -0.862125, -1.581099, 0.578850, 0.133288, -1.701191, -0.162391, -0.660779, 2.140408, -0.325340, -0.137418, 2.232680, -0.429467, -1.339041, 0.071368, -0.449927, 1.119734, 0.127143, 1.738726, 1.483393, 1.537228, 0.606993, -1.142145, -0.661106, -1.149435, 0.265388, -0.003494, -0.420078, 0.283040, -0.949344, 0.215587, 2.042361, 0.339736, 0.891741, -0.687083, -0.930214, 0.750795, -0.036799, 0.558241, 2.273839, -0.858486, 0.764074, -0.812920, 0.600766, -0.521684, -0.483988, 0.950648, 0.288961, -0.602028, 0.395486, 0.468387, -1.121386, 0.153346, 1.960969, -0.832749, -0.553379, -0.070432, -1.766545, 0.223817, 0.924911, 0.132025, 0.293018, -0.841991, -0.759261, 0.156097, 1.824270, 0.442088, 0.369182, 0.545297, -1.029404, 0.161976, -0.774115, 1.896997, -0.288786, 2.868966, -0.453227, -0.748355, -0.179113, 1.544831, 1.177246, -0.076462, -0.660397, 0.164740, 0.605049, -0.619821, 0.185744, -0.330927, -0.755785, 2.599649, -1.054843, 0.991248, 0.539744, 0.055856, 1.565438, -1.097893, -0.942495, -1.055256, 1.389776, -0.240882, -1.507133, -0.687058, -2.071292, -0.979288, 0.563581, 0.116064, 0.472714, 3.213935, -1.584408, -0.352646, 0.355476, -0.658932, -0.210192, -1.214172, 1.075653, -1.088650, -0.043784, 0.535475, -0.640050, 0.199752, 0.468976, -0.785657, -0.546611, 0.122064, 0.478130, -1.036023, -0.755880, 0.155422, 0.513236, 0.691126, 1.256833, 0.626945, 0.016682, 1.877082, 0.951315, 0.106614, 1.812980, -1.418978, -1.054206, -3.766232, 1.562666, -1.031741, -0.322059, 0.255045, -0.387456, -1.496626, 0.373927, -0.711483, 1.854483, 2.231693, -0.423563, 1.403533, -0.245240, 1.318003, 0.123900, 0.576964, 0.330390, -0.481879, -1.953678, 1.514428, 0.924915, -0.989652, -1.869557, -0.982227, -0.662445, -0.070981, 1.455798, -0.075602, -0.786357, -0.288142, -0.219662, 0.523849, 0.193546, 0.582365, 1.089134, -0.714587, 0.334265, 0.444925, 2.322851, -0.337789, -0.702793, -0.144651, 1.224411, 1.983358, -0.552469, 0.705136, 0.506410, 0.959816, 1.383263, -0.326959, -0.433267, -0.540196, 1.807512, -1.669181, -1.224687, 1.005663, 0.702418, 1.867239, 0.541549, 0.627350, 1.333296, 0.187384, 0.811994, 1.018183, 0.388560, 0.536788, 0.300297, 1.563462, -0.194205, -3.128213, -0.822981, 0.766540, -0.066628, 0.003206, 0.367780, -0.597985, -0.667215, -0.644542, -0.551451, -0.479872, -0.586707, -0.570213, -1.925813, -0.028536, 0.535480, -0.797823, -1.295007, 0.159830, 0.057236, -1.554901, -0.307504, -0.712608, 1.167013, -1.738344, -0.971677, 1.204613, 0.106029, -1.877151, 0.391886, 0.528367, 0.052115, -0.102760, -1.567323, 1.838017, 1.249596, 0.179481, -0.383866, -0.090253, 1.304052, -0.161480, 0.483888, 1.288125, 0.604101, 0.674167, 1.628358, 0.014852, -0.397877, 0.365309, -0.470127, 0.246585, -0.186759, 1.284288, -0.176388, -0.950532, 0.321164, -2.163353, 0.539121, 1.867412, 0.648317, -0.123808, -0.517718, -0.792213, 0.880620, 0.551274, -1.808916, 2.086421, 0.335664, -2.219135, 0.962106, -0.207895, -2.333500, -1.407179, -0.622660, -1.424839, -0.086229, 0.358851, -1.308627, -0.649546, 1.068496, -0.483379, 0.126967, -1.282642, 0.839874, -1.268759, -1.065768, 2.005949, -0.211119, 0.153472, 1.662807, -0.019418, 0.200090, 1.714539, 1.353242, -0.358513, 0.187577, 0.773466, -0.855890, -0.861594, 0.359504, 0.411255, -0.769070, -1.738123, 1.573117, -0.078092, -0.661866, -0.234847, 0.396102, -0.471627, -0.088574, 0.671115, -0.999868, -0.221710, 1.491389, 0.229180, 0.173040, 0.272029, 1.203908, 0.092473, -0.281171, -0.109384, -0.975183, 0.901354, 0.513457, -0.160654, 0.402768, -0.660327, 0.303535, 1.117784, 0.485947, 0.515723, 0.782757, -0.074019, 1.030108, -0.466344, -0.194823, 1.441207, -0.975607, -0.913399, -1.352420, -0.370035, 1.601166, 1.288876, 0.114441, -1.151028, 0.263603, 0.153332, 0.624335, -1.479842, 0.020963, 0.808672, -0.906042, 0.248293, -0.021158, 1.370549, -0.950165, -1.036264, 0.585385, -0.482130, -0.025522, -0.531609, -0.043222, 0.993441, -0.081617, 0.895453, -0.364794, -1.474611, 1.195128, 0.674430, 1.257755, -1.644022, 0.494655, 0.963351, 1.507737, 1.039567, 0.126597, 1.889974, 1.731468, -0.638741, -0.766588, 0.030216, -1.286082, -1.828354, 0.929998, -0.523241, 2.586178, 0.878027, 1.153037, -0.287350, -1.109406, -0.494986, 2.460140, -0.205843, 0.493466, -1.678755, 0.314163, 0.195331, 0.703069, -0.057609, -0.539983, 0.127497, -1.555147, 2.138376, -1.289191, 1.469042, -0.425057, -1.067938, -0.875001, 0.734767, -0.586066, 0.097748, 0.259414, -0.634032, 0.638393, 0.652704, 0.966738, -1.394442, -0.458809, 0.490610, 0.078989, -0.061240, -0.456531, -0.313961, 0.093462, -2.262106, -1.173555, 1.584624, 1.461880, 0.240500, 0.244433, -0.403860, 1.296627, -1.063269, 1.698649, -0.524105, 0.672055, 0.514395, 0.531764, -0.000265, 0.139968, -0.245186, 0.141470, 0.614968, 0.111478, -0.362837, -0.204204, -0.774353, 0.413180, 0.550001, 1.174743, -0.700053, 2.076198, -1.966833, 1.829741, -0.853565, 0.027412, 0.075143, -0.705977, 1.708960, -0.226091, 0.428000, -0.602931, -0.047956, 1.070031, 0.431004, 0.259456, 0.631039, -0.258942, 0.377124, 1.320863, -1.240855, -1.032171, -0.561787, -1.567561, -0.619509, 0.834249, 0.681737, 0.920760, -1.587442, -1.589726, 0.141200, 1.785309, 1.318002, 0.380344, -0.394539, 0.095370, 0.829402, 0.600756, -0.250432, 0.805039, -0.140533, -1.284124, 0.282088, 0.303095, -1.291561, 1.281391, -1.285778, -0.487627, 1.105829, 2.348415, 0.474058, 1.764227, 0.299071, -0.406762, 0.428571, 0.060480, -0.483345, 0.573609, 0.655257, 0.282541, 0.353255, 0.196703, 0.189110, 0.225442, 0.374092, 0.005193, -0.058010, 1.296705, 0.128158, -1.389723, -0.399257, 0.763417, -0.649399, -0.957718, 0.005112, 0.255308, 0.861744, -0.045855, 0.260832, -0.332917, 0.046643, -1.152128, 1.193023, -0.581263}, - { 1.543728, -0.592740, 1.695967, 0.893720, 0.364761, -0.740928, -0.747827, 1.241065, 0.316879, -0.390357, -0.668158, -0.373365, 0.244416, 0.454034, 0.427857, 1.433061, 1.297890, 0.269080, -1.568294, -0.141295, -1.522560, 0.693472, 0.838773, -1.673977, 0.012073, -0.511589, 0.445653, -0.820774, 0.486975, -1.186084, 1.381132, -1.380502, -0.105964, 1.572850, -0.978998, -1.523539, -0.178493, 0.827481, 1.991456, -0.647898, 1.029246, -0.745056, 0.415750, 0.704994, 0.103048, 0.271141, 0.661195, 1.377508, -0.795125, -1.094828, 0.019094, -0.927010, 1.236254, 1.507294, 0.027011, 0.629170, 1.318100, 0.672236, -1.487893, 1.078143, -1.095805, 0.279606, -0.432363, -1.124374, 0.958065, -0.405402, 0.108259, 1.833402, -0.828281, -0.489540, 0.897957, 0.124017, -2.709729, 1.112989, -0.402802, -1.592790, -1.281192, -0.787587, 0.714824, 1.485184, 2.065385, 1.607815, -0.073868, 1.410523, 1.038189, -2.721146, 0.659512, 0.794315, 1.327118, 0.692954, -1.012236, 0.477630, 1.072623, 0.518601, -1.142126, -1.049552, 0.804722, -0.112722, 0.256943, 0.819272, 1.061386, -0.611031, 0.347412, -1.259715, -0.454821, -0.322682, 0.701932, -0.906507, -2.106579, 1.115705, -1.297056, -1.841274, -0.663057, 0.534536, -1.145266, 0.933877, 0.551989, 1.202555, 0.604870, 1.098875, -0.553530, 0.369362, 1.139097, 1.032288, -0.189716, -1.354300, 0.670240, -1.142749, 0.412660, -0.606585, 1.108489, 0.158100, -0.359648, -1.284853, -1.154013, -0.937592, 0.912432, 0.914854, 0.360086, 1.013938, 1.098398, -0.230168, 0.615997, 0.327779, -0.093494, 0.328638, 0.002791, 0.476471, -0.684736, -0.405851, -0.897401, -0.246474, -1.640608, 1.985173, 0.422894, -1.220051, -1.194641, 0.629022, 1.035853, 0.393328, -0.483098, -1.158039, -1.074269, 0.066079, -0.805381, -2.268697, 0.553959, 0.528082, -0.996798, -2.549146, 0.949795, -0.197598, 0.937648, -1.261363, 0.193574, 0.532277, -0.945238, 0.639573, -1.016377, 0.526705, -0.614343, -0.677570, 0.379156, -0.977589, -0.281283, -0.006260, 1.177647, 0.530150, 0.309618, -1.041296, -0.804470, -1.277123, 0.066558, 0.403708, 0.871248, -0.434156, -0.689629, -1.606238, -0.603463, -0.613704, 1.450054, 1.305154, -0.276955, -0.006089, 0.383828, -0.734329, 0.231423, -1.275249, 0.739700, 1.029034, -0.030375, 0.206516, 0.580835, -1.427622, 0.961951, -0.461909, -2.196334, 0.435350, 0.410767, -0.719363, 0.119775, 0.912635, 0.187672, -0.036693, 2.110843, -0.397759, -2.439429, -0.755293, -0.830239, 0.396200, 1.645406, -1.735625, -1.018600, -0.396751, 0.516117, -1.293193, -0.907348, -2.241394, -1.361308, -0.325360, -1.343182, -0.951062, 0.330634, 0.065822, -1.597124, 0.761313, -0.878843, 0.008061, 0.104116, 0.061462, 0.818972, -0.513331, -0.349262, -0.035294, 0.925147, -1.370695, -0.325712, 1.954177, 0.191522, 1.221995, 0.654155, 0.421473, -0.082069, 0.273364, 0.330481, 0.460273, 0.409731, -0.876452, 1.396242, -0.431053, 0.285017, 1.196481, 0.328061, -0.318513, -0.882769, -0.934901, -1.205118, -0.422650, -0.908115, -0.654189, 0.018118, -0.040496, -3.229802, -1.040183, 0.710077, -0.518089, 1.267989, 0.442234, 1.314612, -0.315063, 0.518610, -0.346342, 1.366759, -0.030329, -0.092277, -0.587748, 0.977533, -0.462705, 1.291985, -0.738445, -0.099533, -0.967463, 1.747508, 0.786587, 0.371684, 1.445654, -0.488080, -1.219286, 0.079949, 0.272397, -0.057746, -0.743492, -0.002089, -1.037862, -0.498934, 0.920751, -0.069743, -0.858679, 1.057966, -0.191138, 1.720562, -0.697468, -1.830012, -0.296317, 2.912491, -1.274557, 0.116975, 2.255765, -1.431646, 0.251973, 0.981281, -1.347927, 0.053927, 1.292037, 0.179249, 1.458762, 0.661279, 0.721116, 0.819616, 0.332670, -0.957866, 0.094835, 1.709903, -0.540855, 0.743498, -0.329663, -0.927442, -1.913930, 1.342006, 0.934528, 0.145227, 0.808923, -0.963327, -0.764596, -0.883168, -0.732610, 0.366897, 1.577013, 1.240750, 2.570322, 0.903606, 0.711223, 3.539747, 1.309142, -0.629979, 1.458191, -0.968808, -0.263852, -0.637866, 1.346113, -0.204573, 1.997478, 0.472415, -0.385208, -0.027912, -0.115154, 0.621677, 1.951220, -0.819509, -0.993513, -1.194517, 0.793269, -0.307643, -0.345623, 0.583419, 1.238509, 0.370939, -0.212681, -0.959828, -0.363463, 0.685916, 0.262383, -0.488554, -0.582380, -1.638535, 0.351609, 0.385492, 1.217582, 0.175680, 1.304038, -0.171854, -0.886770, 2.139007, 0.618296, -0.067356, -0.882487, 0.762149, 1.250461, 0.623340, -1.158354, -0.633382, 1.565599, 2.030117, -1.223733, 0.050421, -0.003709, -0.494750, 0.994935, -1.427316, -1.829596, -1.261557, 0.623020, -1.143641, -0.629604, -2.117143, -1.033729, -1.482622, -1.421670, 1.579562, 0.871000, -0.077630, -0.661875, 0.765825, 0.077336, -1.131262, -0.529367, 0.389557, -1.686064, 1.719942, -0.425409, 1.239059, 0.746975, -1.781749, -1.298913, -1.741664, -2.016537, 0.772101, 1.085593, -0.235138, -1.609223, 1.385209, -1.833560, 1.267686, -0.438740, 0.977015, 2.023078, -0.947257, 0.485274, -1.401958, 0.668368, -0.881190, -0.520353, -1.509777, 0.076096, 0.311162, 1.883554, 0.689101, 0.499016, -0.428880, -0.274951, 1.329115, 0.540779, 0.206764, -0.318605, 1.242950, 0.238510, -0.090227, -1.554454, 1.513644, 0.643399, 0.783753, -0.510639, 1.259110, -0.086436, -0.138803, 0.282575, 0.646010, -0.923739, -0.402618, -0.507848, 1.077237, -1.004135, 0.316827, -0.730227, -1.772577, -1.618807, 0.271272, 0.061384, 0.665309, 0.291050, 0.255589, 0.158068, 1.815811, 1.301180, -1.002695, -0.566522, 0.146351, 1.300883, -0.542749, -0.407012, 0.258683, -1.088570, 0.271495, 0.641626, -0.275798, 2.262456, -1.355514, 0.058881, -0.388587, -1.295309, -0.331861, -0.436212, -0.487358, 0.044407, 0.218717, 1.569044, -1.160551, -0.007432, -1.828102, 0.018648, -0.387463, 0.248623, -0.572872, -0.965569, -0.133622, -1.053105, -0.215928, -0.029799, 0.807956, 0.591962, 1.592182, 0.081860, 0.798828, 0.486786, -2.040722, 0.188741, 1.516692, 1.616871, -1.163070, 1.261503, 0.836023, -0.448278, 0.125574, 0.265990, 0.166516, -0.067440, 0.554229, -2.293393, 0.118905, 1.277214, -1.042627, 0.157182, -0.695806, 0.977241, 0.355525, 0.425753, -0.492701, 0.046303, -0.503989, -0.917039, 0.426024, -0.657473, -0.458622, -0.233436, 0.440753, 0.860013, -0.184204, 1.654657, -0.661991, 1.296958, 1.181755, -0.840025, 0.157240, 0.014180, -1.749650, 2.040066, -0.150422, 0.692513, 0.218089, 2.155623, -0.151369, 0.658650, -0.431830, 2.046714, 1.848095, 0.257136, 1.363610, 0.457895, 0.919920, -0.175142, 0.133251, 0.808814, -1.162695, 0.492638, 0.185820, 0.961277, -1.201483, -1.013300, -0.943266, -0.641113, 1.328936, -0.443744, 0.487933, 1.370789, -0.475609, -0.145455, -0.546697, 0.316680, -0.447662, -1.038917, -1.453140, 1.059173, 0.239321, 1.009159, -0.234848, 0.643522, -0.620416, -1.123133, -0.548663, 0.080212, 0.165018, 0.432747, -1.164135, -0.141651, 0.945134, -0.833190, -0.606726, -1.354703, -1.622862, 1.104964, 0.734624, -0.146261, -1.532828, -2.046053, 1.204595, 0.708609, 0.181661, -0.077282, 0.477524, 1.099795, 0.876918, 0.862170, -0.279158, 0.926285, 0.099776, 0.893228, 2.105340, -0.159227, -0.991767, -0.461621, 0.408484, 1.136953, -0.068072, 0.617396, -0.831238, 0.070853, -2.906515, -0.538721, -0.979629, -0.036301, 0.394571, -0.806550, 0.687930, -1.145224, -0.272259, -0.901252, 0.053592, -0.123948, 0.120294, 0.325134, -0.440623, 2.502902, -0.169380, 1.144886, -0.045104, 1.003405, -0.054746, 0.641069, 0.008934, -0.421559, 0.809756, 1.224457, -0.210479, -0.322809, -0.469289, 2.156518, 0.238936, 0.303892, 1.370580, -0.591955, -0.063763, 1.176436, -0.218082, -0.129585, 1.252725, -0.253667, -0.600221, 0.051384, -0.179658, -0.832467, 1.262326, 0.336128, 1.222036, -1.494552, -1.847578, -1.492675, 1.352113, -0.647496, 2.100602, 0.723634, 1.731946, -0.159760, -0.537622, -0.356960, -0.268464, -0.521909, 1.182647, -0.307140, -0.685733, -0.289239, 0.613457, -0.006939, -0.914746, -0.331485, -1.059129, 0.813355, -1.146203, 0.084211, -0.822883, -0.034050, -1.500520, 1.719812, 0.622760, -1.842809, 0.306889, 1.744596, -0.136386, 0.659907, 0.926893, -1.885894, 0.052894, -2.744975, -0.185676, 0.678899, -0.647047, -0.620898, -0.354954, -1.235485, -1.799115, 0.531395, 1.091132, 0.453614, 0.681269, -1.137330, -0.381060, -0.279672, -0.807822, -0.007355, -0.985455, -0.522518, 0.047876, 0.017391, -1.098688, 0.586094, -0.476109, -0.585603, 0.441868, 0.431204, -0.809593, 1.045815, 0.906984, 1.200062, -1.673531, -1.427119, 0.617855, -0.033212, 0.228126, -0.790473, 0.250138, 0.394698, -1.031258, 1.323261, -0.227789, -2.154935, 1.041920, 3.963416, 0.474913, -0.359712, 0.683832, 0.752249, 0.271506, 1.295899, 0.031459, 1.317668, -0.166010, -1.027483, 0.485985, 0.466499, -0.200604, 1.620921, 0.823966, 0.155522, -1.038440, -0.814001, -0.562614, -0.171213, -0.809230, -0.665524, -2.168379, 0.941580, 1.118530, 0.540293, -0.515447, -0.181228, -1.346575, 0.476136, 0.956276, -0.634453, -1.641696, 0.774935, 0.996777, 1.012542, 1.091754, 1.451168, 0.499293, -1.695991, 0.473346, -0.444103, 0.097654, 2.108145, 0.376295, 1.593426, -0.403225, 1.227204, -0.732006, 0.295531, -0.616491, 0.475103, 1.523340, 0.950206, 0.000450, 0.434541, -1.327429, -0.437089, 0.472717, -2.357039, 1.665172, 1.442425, -0.399581, 1.477510, 0.682997, 1.687689, -0.442618, -1.147904, 0.663013, 0.119635, 0.098755, -0.385221, -0.102097, 0.624001, 2.115952, 0.020631, 1.488675, 0.512123, -0.998724, -0.160806, -1.652622, 0.346530, -0.807186, 0.266926, 0.914759, -1.162588, 0.326703, -1.000776, 1.170803, -0.933037, 0.864010, -1.953749, -1.069386, -2.243666, 0.338391, 1.479739, 0.212117, -0.786980, 1.778163, -0.481581, 0.302630, -0.548990, -0.465612, -0.890092, -0.101522, -0.393561, -0.745454, -0.355579, -0.804670, -0.340105, -0.577478, -0.802297, 0.038963, 0.228388, -0.154672, -0.945174, -1.064447, -0.054117, -0.390800, 1.305028, -0.186642, -0.184677, -0.007926, -0.117572, 1.180408, -0.016843, 0.139408, 0.083699, -0.279391, -1.804810, 1.685216, -0.431488, -1.023778, -0.661016, -1.839745, 0.360646, -0.355619, -0.467450, -0.905038, 0.507788, -0.311208, 1.126197, 0.268364, 1.847339, -0.018117, 1.077871, 0.000497, 2.859377, -0.701989, -0.587961, 0.065682, 0.714058, 1.072237, 0.785584, 0.340183, -0.942350, -0.965614, -0.723866, 1.179876, 0.521207, -0.748425, 0.563208, -1.039226, 1.493163, 0.493711, 0.759079, 0.176588, 0.957686, -0.249055, 0.273654, 1.883613, -0.095259, 0.658585, -0.490781, -0.616016, -0.206367, 0.631759, 0.611943, 1.605094, 1.381775, -0.077065, -1.059261, -0.897438, 0.704758, 0.518827, 0.202618, -0.783762, -2.408520, 0.713438, -0.834058, -0.318613, -0.564888, -1.720432, -1.114225, 1.764850, -0.588999, -0.862701, -1.043127, -1.531143, -1.415100, -1.181710, -0.075069, 0.362877, -1.013309, 0.482706, 0.526851, -0.756199, -0.301750, -1.191916, -1.026924, -0.180968, -0.495496, 0.076663, 1.391732, 0.126281, 2.131831, -0.134320, 1.802157, -1.013856, -0.439386, 0.529967, -1.045864, -0.437761, 1.380348, -0.780855, -0.004879, -1.264971, 1.340770, 0.162822, -0.178197, 0.592306, 0.253935, -1.220861, -1.044721, 0.887344, -0.933393, 1.291952, 0.248691, -0.821707, 1.311213, -2.030030, -0.121647, -1.279035, -0.953778, -0.021876, 1.045354, 0.340732, -1.665236, -0.406848, -1.910790, -0.160716, 2.399962, -0.199085, 0.328901, -0.525934, 0.920349, -2.120125, 0.274182, -0.945022, 0.392649, 1.714438, 2.159760, -0.669388, -0.138557, 0.303878, -1.393228, 1.112192, -1.189982, 0.188956, 0.186878, 0.018525, -0.506479, -1.437181, -0.572208, -0.474478, 0.397891, 0.543608, 0.705113, 0.889569, 1.460220, -0.097015, 2.224391, -0.720478, 2.011474, -0.014376, 0.258955, -0.692796, 0.009386, 0.190982, -0.352235, 0.436144, -0.167764, -1.034328, 0.576356, -0.265998, -1.378877, 0.409514, 0.447814, -0.305173, 0.598984, -0.340107, 0.068281, 0.803658, -0.255998, -2.108654, 0.765626, 0.311720, -0.251217, 1.577590, -1.729104, 0.118956, 1.895140, -0.651895, 0.908258, -0.970551, 2.316956, -0.502178, -0.858465, 1.587198, -0.935865, -0.384741, -1.185379, -0.946642, 0.266479, 1.790947, 0.744343, -0.110975, -1.700155, -0.233999, -0.303549, -0.484864, -0.300196, -0.220737, -0.575763, -0.899129, 0.236526, -1.946865, 0.624323, -0.826261, 1.145659, -0.382239, -2.105783, 0.111304, 0.090122, -0.090749, -1.827911, -1.005784, 1.272941, 1.058845, 1.168948, 0.780946, -0.872353, 1.340676, 0.966605, 0.471810, -0.817326, 0.825829, 0.093164, 0.726668, -2.335778, -0.222547, 1.926812, 0.893521, 0.193462, 1.309174, 0.239891, 0.143295, -3.614362, 1.869462, 0.262839, 0.745911, 1.763632, -0.805419, 1.632774, -0.651630, -0.513524, 0.013209, 0.904032, -1.066767, 0.246981, 1.080445, -0.105333, 0.280095, 0.148680, -0.328969, -0.306786, -0.427679, -1.156101, -0.424934, -0.834393, -0.700717, 0.286309, 1.121027, -0.727327, -0.479240, 1.241227, -1.509761, 1.328872, -1.549685, -0.328264, -0.549171, -0.206429, 0.156265, -0.266364, -0.596214, -0.487549, -1.399843, -0.175802, -0.553383, 0.123783, -1.160968, -1.718323, -0.039422, 0.168283, -1.222350, 0.812179, 1.375031, -0.457773, 0.563750, 1.907425, 2.366940, -1.315422, -1.503644, 0.103362, 1.249727, 0.263372, -0.055168, 0.452256, 2.843142, 0.445544, -1.008841, 1.253179, 0.551779, 2.332664, -1.765536, -0.528213, 1.922847, 1.421129, -1.408259, -1.024227, 0.712771, 0.619185, 1.078510, 1.620825, -1.810534, -0.238843, 2.642455, 1.088309, 0.696850, 0.024105, -1.332940, -0.722424, 1.018259, -0.782438, -1.252926, -0.655129, 0.270792, 0.023382, -0.490540, -0.398229, 1.731076, 0.149698, 1.356597, -0.053189, -1.017785, -1.630110, -1.171242, -0.079133, 1.106024, 0.678387, -0.794349, -0.188977, -0.923395, 0.751637, -1.344162, 0.349403, -0.382214, 0.751571, 0.240999, -0.348686, 0.366138, -0.972250, 1.242081, -1.681708, -0.679303, 0.756052, -0.510314, -1.051253, 0.990829, -0.150299, -1.320000, 0.241200, -0.287258, -0.639187, 0.868028, 0.099222, 1.555080, -0.584324, 0.353949, -0.303726, 0.498923, 0.766886, 0.769924, 1.851079, -0.620791, 1.223711, 0.497049, 0.999718, -1.428971, 0.891978, -1.633743, 1.145181, -0.071485, 0.641340, 0.101221, -1.809877, 1.348196, -0.581051, 1.630121, -0.564791, -0.150379, -1.163376, -0.341653, -1.724467, -0.469029, -0.887634, -0.154370, 1.752639, 0.792404, -0.918536, 0.923068, 1.999341, -0.737441, 1.792420, -1.806813, -0.514455, 1.465940, 0.148501, 1.211108, 0.539311, -0.437431, 0.656574, -1.309455, 1.363223, 0.916011, -0.443740, -0.515935, -1.053274, -0.891184, -0.149176, -0.052483, -1.611481, -0.536138, -0.710154, 0.109850, 1.190977, 0.038662, -1.475456, 0.420263, 0.453738, 0.123805, 0.209800, -0.758631, 1.380680, 0.407374, -0.675999, 2.225152, 0.517368, -1.733936, 0.307127, 0.167170, -1.621319, 0.661122, -0.432699, -0.074036, -0.765830, -0.951682, 0.424554, 0.295904, -1.337488, -2.093186, 0.245086, 0.154747, -0.330860, -0.227767, -1.186165, -0.842727, 0.243190, 2.228421, -0.364224, 1.185898, -1.108960, 1.370697, -0.836171, 0.806579, -0.404317, 0.663864, -0.499574, -0.844421, -0.201096, -0.200439, 0.206693, -0.417836, 0.132641, 1.434949, 0.834049, -0.186194, -0.177535, -1.720414, -0.306250, 0.570491, -0.916499, -0.020679, -1.460675, -0.075554, 0.512233, 0.651085, -0.548956, -0.064281, 1.214345, 1.005299, -0.427777, 0.495079, 1.579513, 0.820451, -0.605756, -1.023698, -0.186783, -1.345622, 0.843823, 0.476989, 1.685346, -1.876874, -0.963923, -2.281659, -1.296561, 1.208773, 0.770989, -2.878879, 2.181982, 0.761394, 1.760514, -1.286067, 1.320640, 0.140212, -0.840818, 0.815214, 0.843947, -1.923271, -0.875923, 1.287841, -0.795457, -0.626723, 0.786440, 0.493890, 1.503678, -0.693789, 0.188573, -1.074407, -0.219799, 1.288316, -0.117526, -2.090641, 0.102912, -1.715156, 0.266066, 0.772731, 1.387727, 0.741159, 0.695860, 0.411547, 0.562413, -0.369639, -0.017480, -1.283268, 0.780361, 1.198617, -0.291552, -0.114052, -0.126555, 1.469786, 0.733737, 0.251911, -1.535248, 1.172725, 1.307604, 0.428555, -0.592933, 0.999359, 0.098137, 1.063860, -0.764113, 1.456161, -1.045630, -0.802395, -0.203718, 0.123841, 1.156327, 1.290519, 0.473294, 1.119579, -0.984510, 0.404827, 1.864810, 0.005348, 1.034760, -0.676115, -0.498566, 0.176704, -0.629200, 1.265352, 0.046030, 0.633183, -1.390654, 0.289255, 1.864383, 0.568232, 1.353297, 1.334825, 1.308766, -0.882704, 0.592765, 0.065847, 0.853571, -1.491615, -0.222521, 0.781639, -1.906872, 0.115712, 0.739141, 0.051948, -0.208762, -0.519121, 0.117180, 0.503905, -0.364846, 0.030736, -1.470738, -0.186889, 2.120057, -1.095003, 0.465497, 1.086654, -1.278077, 1.222784, -1.155729, 1.723063, 0.386432, 2.238277, 0.691960, -2.142339, 1.465428, 0.456427, 0.722015, -0.976096, -0.085701, -0.447773, 0.646839, -0.198380, -0.242426, 0.644814, -0.928497, 0.204981, -0.667549, 0.928439, 1.042030, 0.444082, -0.301476, -0.675470, 1.255245, 0.471597, -0.684297, 0.980243, -0.005566, -0.787871, 1.189339, -0.443712, 0.070658, 1.239545, -0.332244, 0.344636, -1.002307, 0.618291, -1.905844, -0.486130, -0.416943, 0.212532, 0.716571, 0.896675, -1.129459, -0.650584, 0.024091, 0.017912, -1.670758, -1.597229, 1.230390, -1.310016, 0.588048, 0.788160, 0.060624, 2.222399, 0.307831, 0.551986, -0.315575, -0.005328, -0.432088, 0.029498, -0.596574, -1.285058, -0.320648, -0.766470, -0.464224, -1.009650, 1.540494, -1.997145, 0.706653, -1.014769, 0.707131, 2.051979, -0.652324, 1.343611, -0.184792, -1.483892, -0.878081, 0.910616, 0.765469, 0.181190, -0.427665, 0.112831, -0.590718, 0.315325, -0.960876, 2.109062, 1.078435, 0.700995, -1.058619, 0.033524, -0.062428, 1.721910, -0.438275, 1.999882, -0.621889, 1.545780, 1.162883, 0.732016, -0.720186, -1.623557, 0.311827, 1.266341, 0.745603, -1.704006, 0.759147, 1.057214, -1.859637, -0.626643, 1.383309, 0.854485, 1.235585, -0.619286, 1.145315, 1.532257, -0.361189, -1.481631, 0.616448, -0.086675, 0.850267, -0.607051, 0.210575, -0.914620, -1.009281, -1.199760, 0.225293, -0.356687, -0.107818, -0.026980, -1.129233, 0.033407, 0.877923, -0.075389, -1.201143, 0.083138, -0.471608, 1.656793, -0.146987, -1.438740, 0.855585, 1.424055, -0.456031, -0.914580, -0.073803, -0.414780, -0.324361, 0.817273, -0.788614, -0.525768, -1.575898, 0.207998, -0.931809, 1.425790, -0.011935, 1.069473, 0.411655, 0.469039, -0.801397, -0.036157, 0.078102, 0.036038, -1.608708, -0.539109, 0.312720, 0.709007, 1.198794, 1.262487, -1.433473, 0.761912, -1.133450, -0.534038, 0.990805, 0.958746, 0.487396, 0.377481, 1.335076, 0.951134, -0.522601, -0.058202, -2.136518, -1.516982, -2.720943, 0.246995, 0.203773, -1.943391, 1.046439, -0.359928, -0.703431, -1.693687, -1.298854, 1.617852, -1.069346, 0.976070, -0.669233, 0.917463, 0.340801, -0.678237, 0.353047, -1.146941, 0.068994, -2.129170, 0.098886, -0.905851, 0.769221, 2.073082, 0.488480, 2.643570, 1.439061, -0.130492, -0.136279, -0.286164, 1.345574, -0.310472, 0.475159, -0.987752, -0.417338, -0.564394, 0.324698, -0.837725, 0.578058, -1.493403, 2.406641, -1.769367, 0.596070, -0.695755, 1.188273, 1.781364, 1.366613, 0.709013, -0.923801, -1.829748, -0.191445, -0.325177, 0.570186, 0.584108, 1.480448, 0.059678, 0.976397, -1.085889, 1.142766, -0.851653, -1.326229, -0.580736, -1.349307, 0.982997, -0.382646, 1.058493, 1.158373, 1.804661, -0.147811, 1.965573, -0.524286, -0.431404, -0.445344, 0.401996, -0.128319, -0.372703, 1.165026, 1.118556, 0.309963, -0.646671, 1.735688, -0.935179, -0.322519, -0.310978, 0.907648, -0.407557, 0.088452, -0.526798, -0.633388, -0.745148, -0.802756, -1.482495, 0.687293, 1.244678, -0.169327, -0.594185, -0.090725, -0.623344, -1.198135, 1.330630, -0.263203, 1.356566, 0.075576, -0.397621, -0.787284, 0.903693, 1.317865, -0.295371, 0.827715, -0.328858, 0.036965, -1.089874, 0.585127, -0.734294, -0.550483, 1.713199, 1.949976, 0.088678, 0.322362, 0.997667, 0.460981, 0.519993, -0.141573, -0.804601, -1.060461, -0.026498, -0.541183, -0.594792, -1.239434, 0.726777, 0.625372, -0.858138, 1.507679, -0.299618, 1.001838, -0.227220, -0.644998, 0.748592, 0.841317, -1.732912, 1.576954, -0.578537, 0.576223, -0.170445, -0.208775, -1.069664, -0.548248, -2.018242, 1.256921, -1.421201, -0.618930, -0.178207, 1.396516, -2.629176, -0.291225, 1.317624, 0.612258, 1.281992, 0.305881, 1.084013, 0.760549, 1.323610, -0.649544, 0.466001, 0.197711, -0.883998, -0.070531, 1.014436, 0.245602, -1.158330, 0.914507, 0.044638, 1.860272, -1.320990, -0.341413, -0.903644, -0.615998, -0.229165, -0.025510, -0.117514, 0.582878, 0.470235, -0.360222, 0.321503, 1.254861, -0.478710, -1.504578, 0.616195, -0.695416, 0.130194, -0.980884, 0.782109, -1.028489, -0.544367, 0.980296, -1.125792, -0.979898, -1.148029, 0.609233, 1.755262, -0.818835, -2.397410, -0.792282, 1.898633, -0.178788, 0.744354, -0.555961, 0.302797, -0.479122, 2.263770, 0.757404, -0.575309, 0.333148, 1.055404, -0.871357, -1.038637, -0.302418, 0.648798, 0.285861, -1.366265, -0.132504, 0.070557, 0.085007, -0.088055, 0.751706, -1.608882, 0.078492, 0.361955, 0.825377, 0.238153, -1.323956, 0.076823, 0.402911, 1.572427, -0.289143, 2.055727, 0.303057, 1.004905, -0.172436, 0.058051, 0.189194, 0.642443, 2.411987, 0.557566, -2.448584, 0.109962, 0.173627, -0.346565, 1.755229, -1.645220, -0.338602, 1.870723, 0.467474, -0.259386, -0.595858, 1.543178, -0.321633, -1.258456, -0.356128, 1.759012, 0.235964, 0.069044, -0.144850, -0.901310, -0.478922, -0.893824, 0.627770, -0.133725, -0.886935, -0.420436, -0.926305, -0.652691, -2.928196, -0.180172, -0.274582, -1.143393, -0.606190, 1.095210, -0.275602, -1.462573, -0.445382, 0.379700, -0.311070, 0.137362, -1.308722, 1.046199, -0.462291, -0.493530, 0.136103, 0.341260, -0.193205, -0.205588, 1.243827, -1.365820, 0.150805, -0.322682, -1.931579, -1.390245, 0.553234, 0.284577, -1.159301, 0.184480, -0.773188, 1.494891, -0.716378, 1.142056, 1.692514, -0.298328, 0.120494, 0.517337, -0.572664, 0.604623, -0.121357, 0.206855, -0.881343, -0.723246, -0.829706, 0.493439, -0.643008, 1.279474, 0.154532, -0.443738, -1.788366, 0.318439, 0.009616, 0.144679, -0.234344, 1.540348, -0.191229, 1.801752, -0.735773, -0.316242, 0.319681, -0.279711, -0.553538, -0.362192, 1.940749, 2.273398, 0.678762, 1.246873, 1.639827, 0.393353, -2.211025, -0.449414, -1.217405, -0.058245, -0.379224, 0.134005, 0.106018, 0.409131, 0.626948, 0.536279, -0.459390, -0.727129, -0.076501, 0.270049, 2.220869, -0.898340, -1.255490, -1.112474, -0.986611, 0.242009, -0.454001, 0.996779, 0.590432, 0.079922, -0.485334, 0.567203, 1.303653, 1.027443, 0.524621, -1.521776, -0.784577, 1.347198, -1.020721, -0.024993, 0.118756, -0.507537, 0.361194, -1.262435, 1.033672, 0.131397, 1.373580, 0.063679, -0.661628, 1.618135, 0.135655, -0.714596, 1.084792, 1.073394, 0.944412, -0.836146, 0.831916, -0.404393, 0.078345, 1.577683, 1.265467, -0.086003, -1.714331, 0.861883, 0.283514, 0.321558, -0.944080, 0.247105, 0.235119, -0.685466, 1.267698, -0.620071, 0.169366, 0.730262, -0.527520, 0.381436, -2.715241, 0.348524, -1.583914, -0.738575, -1.156454, 0.167652, 0.670236, 1.612451, 0.627811, -0.515302, -1.993856, 0.220103, -1.054016, 0.294660, 1.241554, 0.332663, 1.781377, 0.058050, 1.060655, 0.519327, -0.008538, 0.975439, 0.709957, 0.260859, 0.666260, -0.321561, -0.750409, 1.307158, 0.411851, 0.989067, 0.018485, 0.112269, -0.667378, 0.980528, -1.676128, -0.811036, -0.475709, 0.930788, 1.534876, 2.764836, 0.825013, -0.394211, 1.129753, -0.182914, 0.382604, -0.390051, -0.656802, 0.599406, 1.833699, -0.789763, -0.669325, 1.222522, 0.953136, -0.045621, -0.727279, -0.619767, 0.863837, -1.935512, -0.383181, -0.286702, 0.577245, -0.579721, -0.699715, 0.720726, 0.658684, -0.909050, -0.015795, 0.447437, -1.765634, -0.184257, -0.827700, 0.323539, 1.285534, -0.020818, 0.396220, 0.291049, -0.798951, -1.782427, 0.213662, 2.169003, -0.145762, -2.652786, 0.755944, -0.094671, 0.918621, -1.575469, -0.096371, -0.159130, 0.787077, 0.000351, -1.289808, 0.562940, 0.633124, 0.764171, -0.243431, 0.571600, -0.491852, -0.065158, 1.003369, -0.100753, 0.377871, 1.425284, 0.895947, 0.851795, -1.064036, 2.073128, 0.318020, 1.408718, -0.019871, 0.861209, -1.112317, 0.391092, 0.118180, 0.335289, -0.212761, 0.894457, -1.067931, 3.365040, -0.236340, 0.168933, 0.783965, 0.547947, -0.085968, 0.289844, -0.089714, -1.772796, 0.090836, 0.339181, 0.227137, 0.220409, -1.153354, -0.436144, -1.012920, -0.005043, -1.118741, 0.443973, -1.191041, 1.760287, 0.463935, 0.550782, 0.454747, -0.989656, 0.711679, -0.340196, 0.689427, 0.484804, -1.099396, -0.639139, 0.057687, 0.182825, 0.347626, 0.038810, -1.548812, 0.094133, 0.876271, 0.082506, 0.763386, -0.019234, 0.590150, -1.364918, 0.167558, 0.985785, -0.818118, -1.039431, -0.519964, 0.847359, 0.024934, 1.791188, -1.930847, -0.672185, -0.668020, 0.118757, 1.201295, 0.229236, -0.008620, -1.005668, 0.815970, -0.207508, -0.173540, 0.129630, -0.633536, -1.846817, 0.180404, 1.069638, -0.118312, -0.437885, -1.183526, -0.558422, -0.593331, 2.025311, -2.249938, -0.731704, -1.546986, -1.633174, 1.871488, -0.695989, -0.235880, -0.365742, -1.030583, 0.379910, 0.976160, -0.257072, 0.187679, 1.958788, -0.420677, -0.450136, 0.034600, 0.163676, -1.560354, 1.996248, 1.515961, 1.036198, -0.320155, 0.806149, -2.007962, -0.428954, 1.035821, -0.320382, 0.336800, 0.729195, 3.036651, -0.740604, 1.065839, -0.687186, -0.017618, 1.918400, -0.707910, 1.045846, 1.828034, -0.089217, -1.791971, 1.131751, 0.398927, 0.379558, 0.441137, 1.673095, 0.596946, -1.446145, -0.260017, 0.047287, 0.468005, 0.963162, 1.187484, -1.308183, -1.862289, 0.350010, 1.454402, -0.586858, -0.245476, -0.465852, 0.267425, -0.237053, -0.252749, -0.328377, -0.667879, 0.047170, 1.813297, 0.465023, -0.603614, -1.159119, -0.444126, -1.740628, 0.129883, 0.968457, 0.031888, 0.366965, 0.222597, 0.745627, 0.074029, 0.464944, 0.780219, -0.636249, 1.304141, -0.211039, 2.233072, 0.450567, -0.672574, 1.293839, -0.982561, 2.075779, 1.160331, 1.689407, 0.228013, 0.385560, 0.223982, -1.645682, -1.797162, 1.273594, 0.314190, 0.586895, 0.556073, -1.086670, 0.318686, 0.433057, 0.680806, 0.020872, 0.413646, -0.563352, 0.979155, -1.047378, -0.277093, 0.773852, -0.299266, 0.578660, 0.323095, -0.180873, -0.070669, -1.428276, 1.826382, 0.215816, -1.860928, -0.004247, -0.799770, -0.584882, 0.378576, -0.500920, -0.752968, -1.088108, 1.636232, 0.558796, 1.367221, -0.143151, -0.222270, 0.019466, -1.754637, -0.583678, 0.301486, 1.177094, 0.348449, -0.158097, 0.067921, -0.768670, 0.904611, -1.406535, -2.466398, 0.851644, -1.573222, 0.544450, -1.168125, 1.718874, 0.049624, 0.068975, 0.399012, 0.351799, 0.066937, -0.289314, -0.358945, -1.083001, 0.668936, -0.047539, -0.261954, 0.576798, -0.991504, -0.684705, -0.494467, -1.337530, 1.538690, 0.356429, -0.933199, 0.788988, 1.658647, 2.345464, 1.698276, -0.157699, -1.515306, 2.683462, 0.544674, 2.023517, -0.042124, -1.487091, 0.573243, 0.346071, 0.931017, 1.544725, -1.621554, 0.779515, 0.851658, 1.209165, -1.237841, -0.856806, 0.833720, 0.377152, -1.440021, 1.123489, 1.833032, -0.642620, -0.075162, -0.930460, -0.636542, -0.521290, 0.657911, -0.579892, 0.077771, 0.145487, 0.514840, -0.127428, 0.949677, 0.130284, -1.245867, -0.634503, -0.012272, 0.668922, 0.370015, 0.227245, -0.839886, -0.554682, -0.394735, 0.136950, 1.976970, 0.560678, 2.096284, -0.622745, -0.427967, 0.222371, 1.647865, -1.126804, -1.191177, 0.004570, 1.411011, -0.103002, -0.424705, -0.231971, 1.389032, -0.178743, 0.296885, -0.766984, 0.709071, 1.397780, 1.211298, -1.619236, 1.379673, -0.545768, 0.200720, 0.644185, 1.399730, 0.762633, 1.293429, 0.798252, -0.397815, 1.762905, 0.824906, -0.969612, 0.413084, 0.528542, -1.805443, -0.557158, 0.956679, -0.321781, -0.431411, 0.049933, -1.645685, 0.076623, -0.496521, -2.686708, -1.341078, 0.146743, 1.145876, -0.522073, -1.418392, 0.642946, -1.116812, 0.334280, 0.410590, -0.869679, 0.996400, 0.307103, 1.423114, 0.261724, 0.064000, 1.054452, -1.988682, -0.423465, -0.301731, 0.523532, -0.247100, 0.745077, -0.437504, 0.147181, -1.716339, -0.542639, -0.137286, 0.244948, 1.150652, -1.612285, -1.163530, -0.440625, 0.551261, -1.096259, 0.342652, -0.443613, 1.118395, 1.121676, -0.944705, 0.889116, 0.245293, -1.317632, 0.374021, 1.628888, -0.806348, 0.989933, -1.611679, 0.133558, 0.077617, 0.165783, 0.943719, -2.274433, -0.667506, -0.740540, 0.086897, -1.900068, -0.779314, 0.370366, -1.250877, -0.259405, -1.824351, 1.324397, -0.080346, -1.099696, -0.753800, 2.011105, 1.141854, -0.421049, 0.385272, 0.164710, 1.928079, -0.654268, 0.487767, -1.256934, -0.424002, 0.939268, -0.240592, 1.008969, 1.094162, 0.771396, 0.657445, 1.042972, 0.752015, 0.913622, -1.964462, 0.003456, -0.893460, 0.150170, -0.490756, 0.181753, -0.194321, -0.901888, 1.787246, 0.608727, -0.522022, -1.403568, 0.535359, 0.968580, 1.314631, -0.311413, -0.391818, -0.852411, 0.660781, -2.188461, -0.629223, 0.448719, -2.448936, -0.275527, -0.882270, 0.715120, -0.932497, 0.865577, -0.781219, 1.768387, -0.188905, -1.910452, 0.423647, 0.968344, -0.213793, -0.559447, -0.940981, 0.831785, -1.727392, 1.143801, -0.040478, 0.338867, 2.382293, 1.218370, 0.175177, 0.573202, -0.630816, -0.258888, 0.200910, -1.413202, 0.046748, 0.924094, 1.779065, -0.970498, 0.102026, -1.778829, 1.318066, -0.071244, 0.293009, -0.255368, -0.596281, 0.436262, 0.698794, -0.568113, 0.162310, 0.910770, -0.598901, 0.653884, 0.139303, 0.159009, -0.353220, 0.533984, -1.087872, -2.193821, -0.583080, 0.335470, 0.524495, -0.354535, -1.252062, -0.586193, 1.127294, 0.214520, -0.508353, 0.743758, 0.703607, 0.807716, 1.874691, -0.758583, -0.222595, -1.804454, 1.282357, -2.403395, 0.480798, 1.581124, -0.697750, -1.549998, 0.580017, -0.026375, 0.731519, -0.663069, -0.380540, -0.048203, -0.477546, -1.648286, -1.503718, -0.504578, -0.222585, 1.695473, -0.441789, -1.567829, -1.325399, 0.014407, -1.082490, 0.451003, 0.455227, 1.038005, 1.817320, 0.666238, 1.613339, 0.377046, 0.065257, -0.939918, 0.191798, -0.148130, 1.811592, 0.383744, -0.724423, 0.057653, 0.178792, -0.072898, -0.730660, -1.425928, 0.334482, 0.873629, 1.736488, 0.470845, 0.593671, -0.329021, 1.150805, -1.215281, -1.692668, 0.676668, 0.962709, 0.907865, -0.230071, 0.547624, 0.674877, 1.062763, -0.038604, -0.262362, -0.840242, 0.134289, 0.943543, 0.731046, 0.492023, 1.856400, -0.413153, -0.160476, 2.140513, -0.081516, 2.380793, 0.336923, -0.850997, -1.609959, -0.520330, -1.718403, -0.359211, -1.544253, 0.068696, -1.548544, -0.269209, 1.465738, -0.526617, 0.114452, 1.056856, 0.710068, -0.205939, 1.720047, -0.218559, 1.148313, 1.879610, 1.457389, 0.467757, 1.417670, 1.435690, 0.588652, 0.499619, 0.108803, -0.240760, -0.277030, 0.820338, 1.442513, -0.119021, -0.385217, 0.770449, -1.288368, 0.896073, 0.500195, 0.416874, -1.027213, -1.376213, 0.435916, 1.931995, -0.346535, 0.478687, 1.574385, 1.277695, -0.250764, -0.090185, 0.167062, 0.419265, 0.113073, 0.168456, 0.662067, 0.419620, -0.767727, -0.868907, 0.926928, -2.215932, -1.145848, 0.472411, 0.549491, -2.490558, -0.896433, -0.779514, 1.349593, 1.019886, -0.725323, 1.106716, 0.403477, -1.199086, 0.652252, 1.758440, -0.141009, 0.224586, -0.476162, -0.765149, -0.416930, -0.318392, -1.028949, 0.406502, -0.795865, -0.764368, 0.179148, 0.807350, 0.236810, -0.068248, -0.820587, -0.239689, 1.509459, -0.135415, -1.338417, 0.722335, 0.332395, 1.920353, -0.169373, 1.007726, 0.631101, 0.832534, -0.848295, 0.399311, -1.699135, -0.702458, -0.078420, -0.785380, -1.364508, -0.697801, 1.877405, 1.225579, 0.164045, 0.896188, -0.958080, -0.510882, -1.755142, 1.142440, -0.400417, -0.018623, -0.078627, -0.722265, -0.529349, 0.523017, 0.398174, 0.032965, 0.066418, 1.351563, 1.041406, 0.740933, 0.423004, -1.591579, -0.032365, 0.297035, -0.217560, 1.219674, -1.117245, -0.663576, 1.122866, -1.987687, -0.760112, 0.673831, -0.549768, -2.619705, -0.733679, 0.189459, 0.246954, -0.457686, -0.576197, 1.494833, 0.191348, 0.218545, -0.307411, -0.159803, 1.328122, -0.806005, -1.027288, 0.726105, -0.601921, -0.247215, -0.345861, -0.835606, -1.161098, -1.362822, 0.510777, -0.179698, -0.730879, -1.089370, -1.597180, -1.515867, -1.618301, 0.606443, 0.479950, 0.048039, -0.866761, -0.971359, -0.802361, 1.424969, 1.140857, -0.451990, -1.221995, 0.144134, 1.230056, 0.410692, -0.497828, -2.025460, 1.576786, -0.006840, -0.928410, 1.770164, 0.161853, -0.509058, 0.119925, -0.718424, -1.650275, -0.243898, 0.421852, -0.108430, 0.721182, 0.193983, -1.617668, 0.058490, 0.067884, -0.564173, -0.893146, -0.126036, 0.788910, -1.219243, 0.594939, -0.975989, -0.284461, -0.176849, -0.657271, 0.464606, -1.228317, -0.077306, -2.044564, 0.211119, -0.048180, 0.359618, 1.877659, -2.765362, 0.316579, 0.284979, 1.127269, -0.715882, -1.055688, 1.266683, -0.706145, 0.890804, 0.074912, 0.885699, 0.712331, 1.156186, -0.927811, 0.150206, 0.466549, 1.222076, 0.240960, -0.175015, -0.095842, -0.324176}, - { 2.862805, -0.055079, 0.774972, -1.141454, 2.260701, -1.679269, 0.752509, 2.256575, -1.337693, -2.347305, 1.380400, -0.571524, -1.019575, 0.815122, 1.200709, -1.203387, -0.199704, 0.222750, -0.615129, 0.230635, -0.128402, 1.470511, -0.181106, -1.139594, 0.534922, 0.761732, 0.422224, 0.916319, 0.650734, -0.339850, -0.840332, -0.598169, -0.429579, 0.474558, -0.809438, -0.662010, -0.086837, -1.189614, 0.160609, -0.816881, 0.262597, 0.907053, -1.438818, -0.017621, 0.088128, 1.545372, -0.661200, -1.090389, 0.173265, 0.987569, 0.053265, -1.845255, 0.424057, 0.579740, -1.934206, 1.374182, -0.060964, 1.089683, -0.460019, -1.028916, -0.266322, 1.775652, -0.488248, 1.106367, -0.880685, 0.464462, 0.300249, -1.568923, -0.280548, 1.423567, -1.102395, 0.078975, 0.392307, -0.032044, -0.025634, 0.754589, 0.149412, -2.203666, 0.582953, -0.615667, 1.451294, 1.560304, -0.082468, 0.081205, 1.781244, 1.602240, 0.938815, 0.810498, 0.636674, 0.060805, -0.203021, -1.225802, -0.553038, 1.160696, 0.130256, -2.402325, 0.046702, -0.014695, -0.092477, -1.744948, 0.741617, -0.346356, -0.271222, 1.014599, -0.776657, -1.541217, -0.387776, -2.296592, 0.452384, 0.581440, 0.351426, -1.791589, -1.019302, -0.083217, 1.486979, -0.254389, 0.239009, 0.858489, -0.946351, 1.416381, 0.192624, -1.731287, -0.489328, 1.057223, 0.937465, 2.255023, 0.594830, -0.398539, -1.413300, 0.228512, 0.052861, -1.335543, -0.235630, -0.191580, -0.168652, 3.024351, 0.921437, -1.435274, -0.504809, -1.340963, -0.144373, 0.664876, 1.411939, -0.610662, -0.968175, -0.321519, 2.531991, 0.713780, 1.892886, 0.717247, 0.378514, 1.041009, 0.344396, -1.208437, 0.020119, -1.106887, -1.509934, 0.038878, -1.517905, 1.334812, -0.119707, -0.322456, 0.429299, 1.139497, -0.239490, -0.063916, 0.212850, 0.433074, 0.168506, -0.547503, -1.246065, -0.296375, -1.520586, -0.443032, 0.564153, -0.395164, 0.418155, -0.392422, -1.171012, 0.047384, -0.045579, -0.275369, -0.167096, -0.271397, -1.736368, -0.055999, -0.412097, -1.940842, 0.801939, -0.390747, -0.021345, -2.242039, 0.759023, -0.401233, -0.008906, 0.086761, -3.148546, -0.014633, -1.255185, -0.197963, 0.499904, -1.015338, -0.553288, -1.999196, 0.535317, -0.119758, -1.879797, 0.126412, 0.900693, 0.265815, -0.046969, 1.927617, 0.665195, -2.027726, 0.914742, 2.230643, -0.363767, 0.392706, 0.211937, -0.775902, -1.322912, 0.097276, 1.205778, 0.024985, 0.872575, -0.595012, -0.463374, -0.237647, -1.705612, -0.314946, -0.163237, 0.022840, 0.441292, -0.441778, 0.406889, -0.732251, 0.290748, 2.540212, 2.467465, 1.609549, 0.269302, 0.221839, -1.019998, 0.015061, 0.332426, -0.057717, 0.506807, -0.863995, -0.155699, -0.534986, 0.602320, 0.777991, -0.542535, 0.036304, -1.298724, 2.003386, 0.873659, -0.442744, -0.554913, 0.187128, -0.875161, -0.659138, 0.960926, 0.681407, 1.883780, 0.755181, 1.806294, -0.760921, -0.249610, 0.226731, 2.379432, 1.480653, 0.793411, -1.645328, 2.100164, -0.564429, 0.873865, -1.423064, 0.591655, -0.580871, -0.342766, -0.100122, -1.092930, 0.861609, -0.615473, 2.219130, 1.384670, 0.394472, -0.913598, 1.667843, 0.078286, 0.458539, -0.297759, 1.147536, 1.412255, -1.633393, 1.758834, 1.830703, 1.406932, 0.581100, 0.872086, 0.603528, -0.683173, 0.010625, -0.350921, 0.109371, -0.288944, 0.302430, -0.194304, 0.515730, -0.869603, 0.300686, -0.764533, 0.916653, 0.764045, -0.349414, -0.980539, 0.325174, 1.276384, 1.459703, 1.723923, 0.223135, -0.736426, -0.494964, 1.084544, -0.875419, 0.663341, 2.468405, -0.510039, 0.420929, -1.184971, -1.190352, 1.598543, -0.686843, -0.484498, 1.777436, -0.847051, -0.702192, -1.421314, -1.169702, 0.168704, 0.628094, 0.565972, -1.303828, 0.512755, 0.710569, -0.049343, 0.256436, -0.696881, -0.631460, -0.773008, 2.177222, 0.366149, 0.572048, 1.140816, -0.106071, -0.652278, -1.051734, -0.857246, -1.911447, -1.696203, 0.907827, 0.167587, -1.865878, 1.172057, 0.291157, 1.547794, 0.216062, -0.181774, -0.342360, -1.325443, -1.295936, -1.359779, 1.111858, 0.614708, -0.582072, -1.220280, 0.868146, -0.733827, -1.111499, 0.191788, -1.034563, 0.124301, -0.643812, 1.507305, 0.702366, 1.508669, -1.902196, -1.304462, 0.622312, -1.261340, -1.527987, 0.120765, -1.258952, -0.443027, 0.120529, -0.465950, -1.770310, 1.411059, 1.609665, 1.048655, -0.344639, 0.976127, 0.875106, -0.062123, -0.230796, -1.191762, 0.004565, 1.294138, 0.418975, -0.211644, 0.233567, 1.076954, 1.740858, -0.879942, -1.103942, -0.946459, 0.832112, 2.694114, -0.445494, 0.030589, 1.271202, 0.635328, -0.133948, 0.631263, -0.278569, -0.793820, -0.075490, 0.068365, 0.289050, -0.053216, 1.453635, 0.906594, -0.114293, 0.262725, -0.111293, -1.948131, -0.616846, 1.130461, -0.553615, 1.466176, 0.857891, -0.000997, 0.067258, 0.964116, -0.439870, -0.757706, -1.457814, -1.903937, -0.722237, -1.277658, -1.931439, -0.830236, -1.646871, -1.755909, -1.479482, -0.227277, 0.666450, -1.047559, -0.883259, -0.068015, 0.382690, -0.485674, -1.142806, -1.315928, 0.300477, 1.929442, -0.210759, -0.807326, 0.640901, -0.519791, -1.584384, 1.483121, 0.483392, -1.028480, 0.438399, -1.905260, 1.190767, 0.090708, -0.154290, -1.251500, 1.448276, 0.147552, -0.375751, -1.930549, -2.220884, 0.350261, 2.006223, -0.228996, 0.912132, -0.177234, -1.326807, 0.125387, -0.573912, -0.345648, 0.001936, -0.259999, 0.460897, 0.256703, 0.136170, 1.366553, -1.866073, -2.285827, -0.396193, -0.560098, 0.250766, -0.355867, -1.168230, -1.002328, 1.488727, 0.511628, 1.278041, 2.516599, 1.533667, -1.196795, 1.574384, 0.508368, 0.021525, -0.719401, 1.738884, -0.439220, -0.271159, 0.073705, -0.423357, 2.769957, 0.580262, -0.129949, -0.130834, 0.026926, -0.392453, 0.203452, -0.654698, -0.833765, -0.470109, 0.103617, 0.613531, 0.066534, 0.785086, 0.263243, 0.418203, -2.083832, -0.852046, 0.514020, 0.437121, -0.848208, 0.586873, -0.964896, -0.540749, -1.345254, -1.021527, 1.737145, -0.611362, -0.915631, 1.694011, -0.927213, -1.409397, -0.532347, 0.394334, 0.617731, 0.267884, -0.029301, 0.816691, 0.687833, 1.832307, -2.631804, -0.058050, 1.959118, -0.242166, 0.991681, 0.389693, -0.873272, 0.163788, 1.168925, -1.120898, -0.746679, -1.547816, 2.560863, 2.585150, -0.305598, -0.850272, 1.964402, -0.291312, 0.513924, 0.986040, -0.213317, 1.022909, -1.212145, -0.177395, -0.568466, -0.759776, 0.021262, 0.490976, 0.185360, 0.935610, 1.128509, 0.596774, -2.126489, 0.559761, -0.206284, -0.642376, 0.427731, 0.134940, 0.984933, 0.698331, 2.624682, -0.096881, -0.692019, -0.306763, -0.861633, 0.379541, -0.060453, -0.791853, -0.832291, -0.480630, 0.867301, 1.003000, 0.591348, -0.661784, 0.822656, 1.991155, 0.334843, 2.080361, -1.482000, 0.653798, -0.141131, 1.561272, -0.093648, -0.851876, 2.193886, -1.430538, 0.738648, -0.345708, 0.883874, 0.020108, 0.443615, 1.583616, -0.605803, -0.895959, -0.950299, -0.452716, 0.183693, -1.550778, 0.463577, -0.176291, 0.208889, -0.838101, -0.897683, 0.818201, -0.622000, -0.223191, -0.385666, -0.502974, 0.420750, -1.664967, 0.124552, -0.505393, -0.626531, 0.301995, -0.915321, -0.275556, 1.460275, -1.357400, -0.984554, 0.346813, 1.985741, 0.494134, 1.045418, 1.256769, 0.000185, -1.341024, 0.459769, -0.120296, 0.978980, -0.024539, -0.399059, -0.925712, 0.449016, 0.816990, -0.317828, 1.112426, -0.474662, 0.189146, 0.263294, 0.460553, 1.202794, 0.349841, 0.902893, -0.833658, -0.673319, 0.335607, -0.696796, -0.306836, -0.334021, -0.467778, -0.138161, -2.886442, 1.347498, -1.270764, 0.008506, -0.024363, -0.161631, -0.733965, -1.019645, -0.365329, -0.838168, 0.597280, 0.014726, -0.238466, 1.032355, -0.744688, 0.579447, -1.031236, -0.653502, -0.338192, -0.885247, -0.176712, 0.219319, -1.249782, 1.065476, 0.178734, -0.764397, -0.988028, -1.586403, -0.747845, 0.097808, -1.282020, -0.111575, 1.326760, 1.682221, -0.730144, 1.934580, -0.936550, 0.160623, -1.050134, 1.086140, -0.189244, 1.267710, -1.228234, 0.337209, 1.113505, 0.875612, 1.622142, 0.325386, 1.183146, -0.581733, 0.127758, -0.331038, 0.719606, 0.201163, 0.077440, -0.487119, 0.969083, 0.551454, -1.585530, 1.089882, -1.111997, -1.694835, 0.874081, 0.094421, -0.334199, -0.712513, -0.113034, -0.098136, -0.629828, 0.260838, -0.034882, -0.172363, 0.790472, 0.342020, 2.247909, -0.885511, -1.810432, 0.815043, -0.378366, 0.826734, 0.667323, 0.771799, 0.471999, -1.842455, -0.692768, 0.127668, 0.908567, -0.143098, 0.742829, -0.804314, -1.205628, -0.047181, 0.385129, 1.857316, -0.130419, 0.450560, 0.173261, 0.460997, 1.338095, 0.995024, 1.698022, -1.751673, 0.511225, -0.726934, -0.123440, 0.697253, 0.452341, -0.503362, 0.017144, -0.701327, 1.058353, -1.357485, -2.110110, 0.081862, 0.753633, 1.432027, -0.468055, 2.192409, -1.640586, -0.043345, -0.807122, -1.213998, -0.125547, -1.036359, -0.740362, -0.292852, -1.051465, 0.004406, -1.180191, -0.245046, -0.343697, -0.782793, 1.177590, -1.064535, 0.102157, -0.175939, -0.147807, -0.840903, 1.037740, 1.342594, -1.374074, 0.886953, -1.342092, 1.462907, -0.028353, -0.278185, 0.008560, 0.914976, -0.740753, -0.221450, -0.719429, -1.229256, -0.175923, 1.178092, 0.970058, -1.291418, 0.042490, -0.831705, -0.372105, -0.747072, 1.205138, 2.120681, -2.040428, 1.943062, -0.645126, 1.662537, -0.201962, -0.307762, -0.719362, -0.356205, -0.058687, 1.033868, -0.313321, -0.201639, -0.873468, -0.098231, 0.605892, 1.532150, -0.510630, 0.950387, -0.007952, 1.844554, -1.680704, 0.526797, -2.300790, -0.026488, 0.434504, 0.276499, -0.998025, 0.683560, -1.254076, -0.636350, 0.800286, -0.661681, 0.572905, -1.405699, 0.501224, 1.151534, 0.706235, -0.347593, 0.234619, -0.713301, -0.693937, -1.477237, -2.317165, -0.217108, 1.200441, -0.086572, 0.360917, 0.080780, -1.251565, -0.074402, -0.757023, -0.101102, 1.161566, -0.254443, 1.102280, 0.910695, -2.103535, -0.511631, 0.245754, 0.450443, -0.463173, 0.087945, 0.232899, 0.714814, -0.690347, -0.463652, 0.021526, -0.937332, 0.349170, 0.376947, -0.329737, -1.261278, -0.284626, -0.588387, -2.462261, 0.999957, 0.268277, -1.951380, -0.028624, -2.679152, 1.933939, -2.231595, 0.894605, -0.183204, -1.305088, -0.897796, 0.314671, -0.408532, -0.376586, 0.645120, -0.900563, 0.514326, -1.362231, 0.871704, -0.790682, 0.376796, 1.560026, 1.869531, 0.230525, 2.088380, 0.902482, -1.113357, 2.679903, -0.926810, -1.343108, 0.755159, 2.869156, 0.215346, 1.860007, -0.438254, -1.347817, -2.556280, -0.838292, -0.184814, -0.418817, -0.170908, 0.052636, 1.348364, 0.311738, -0.205501, -0.916612, -0.035586, 1.166911, -0.600343, 0.286783, 0.444816, 1.207589, 1.721134, -0.406469, 1.036417, 0.550735, -1.056240, 1.971313, -1.008518, 1.723208, -0.578401, 0.843169, -1.028315, -0.354688, 0.360194, 1.192937, -1.506496, -1.926531, -0.040319, -0.401523, -1.228902, -1.368721, -0.785987, -0.458260, -0.802843, -1.099481, 1.047103, -0.518483, -0.802057, 0.421114, -0.856605, 0.290831, -0.815047, 1.072205, 0.154842, -1.861768, -0.086060, -0.399813, 0.836449, 0.268635, -0.959067, 0.959501, 0.596188, 1.909470, -0.136188, 0.376333, 0.366699, -0.119023, 1.424368, 0.712188, -0.177106, 0.336395, -0.327290, 0.967748, -0.386259, -0.520617, -0.027060, 1.099961, 2.096384, -0.119895, 1.678726, 1.894531, -0.921799, -0.994215, 1.323987, 0.110405, -0.982346, 0.615777, -0.341347, -0.116174, -1.715772, 0.340282, -0.213124, -0.315225, -1.199234, 2.784106, 1.245832, -0.531107, 0.205862, -0.171456, 1.083205, 0.039168, 1.018793, -0.433841, 1.800553, 1.158686, 0.237026, 1.897689, 1.338294, -0.811174, 0.804326, -0.255533, 0.109783, 1.104240, 0.399912, 1.526089, 0.130539, 0.906667, 0.065359, -0.715042, 0.294772, -0.099880, -0.071202, -0.419434, -0.430633, 1.195527, -0.218813, -1.473798, 0.192561, -0.698243, -0.065420, 0.550605, -1.053325, 0.753022, -0.996681, 0.843815, -0.730883, -0.163559, -0.887160, 1.224710, 0.868163, 0.729518, 0.568670, 0.470305, 1.414411, 1.361466, -0.576445, -0.335978, 0.171132, -0.357712, 0.285636, -1.376695, 0.879784, 0.129563, 0.936618, 3.338324, 1.229329, -0.620441, 0.030631, -1.243033, -1.018620, -0.884635, 0.315199, 0.696165, -0.147759, 0.063326, -0.341085, -0.139851, 0.339181, -1.633720, 0.259913, -0.783926, 0.373557, 2.782969, 0.715170, -1.030379, -0.617391, 1.689720, -0.869971, -2.268611, -0.142380, -0.671752, 0.824527, 3.014240, 0.231811, 0.893429, -0.447364, 1.115379, 0.866379, 1.585907, -0.550756, -0.131154, 0.689210, -1.009183, 0.152085, 0.475368, 0.293765, -1.266501, -0.308494, -1.596751, -0.278467, -0.816446, -1.006395, 0.166213, -0.601790, 0.074295, 0.634215, -0.052263, -0.301493, -0.535001, -1.654554, 1.001408, -0.581678, -0.592085, -1.320397, -0.045455, -0.407639, -0.151382, -0.864388, -2.185694, 0.540270, 1.331660, 0.740703, 1.824002, 0.985745, -0.040701, -0.910375, 0.111393, -0.072399, 0.456052, -1.159282, -1.134065, -0.641860, 0.168773, -0.230211, -0.219429, -0.414769, 0.077143, 0.602705, 1.681179, -0.032419, 0.470832, 1.588859, 2.191808, 0.004546, -0.465359, -0.973584, 1.659499, -0.840540, -0.124305, 0.374858, -1.342901, 1.692369, -0.772489, 0.184488, 0.685559, -0.585160, -0.501749, 0.673514, 0.040315, 0.655502, 0.121983, -0.485158, -1.552336, 0.137731, -0.658367, 0.550480, -0.220314, 0.072114, -0.557420, -0.850528, -0.815940, -0.652968, 1.029018, -1.281104, -2.678572, -0.497858, -1.502676, 1.098647, 0.097932, -0.918647, -0.366060, 2.446311, -0.494477, -0.130439, 0.246458, 0.650712, -1.615144, 1.350366, 1.502006, 1.926232, 0.050450, 0.306973, 0.475758, -0.640836, -0.895342, 0.306525, 2.634925, -0.033872, -0.052714, 1.641928, 0.553396, 0.764828, -0.444489, -0.281146, 0.132946, -0.169099, -0.128860, -0.202719, 0.419785, -0.070600, -1.123784, 0.138541, 0.970354, 1.049334, -0.300716, 1.267099, -1.075961, 0.760648, 0.011874, 0.409402, 1.810170, 1.113363, -1.079479, 1.027708, 1.664792, 0.489676, -0.988489, 0.076389, 1.259863, 0.160376, 0.629402, 0.934830, 0.221643, 0.241225, -1.761224, 0.852538, 0.341221, -0.332156, 1.174370, 1.867658, -0.121777, -0.711688, -2.295488, -1.770757, 1.601328, -0.353370, -0.935510, 0.385809, -1.124324, -0.939126, -2.225066, 0.373015, 0.715532, -0.248635, -1.213359, -1.099519, -0.120215, -0.517905, 0.709855, -1.488343, 0.033749, -0.301047, 1.610517, -0.959937, -0.549391, -0.168589, -0.297758, 1.401289, 0.378295, 1.463036, -1.022264, 0.478984, 1.226555, -1.049750, -0.003447, 0.598199, 0.927658, 1.004276, -1.673355, -1.463935, 0.249271, -0.533080, -0.677964, 1.921044, -2.073379, 1.254481, 1.798632, 0.791922, -0.314163, -0.387631, -1.216206, 0.614247, -1.706924, 0.557358, -0.886043, -0.518478, -0.970963, -0.229862, 0.006838, 0.398514, -0.204490, 1.241636, -0.056705, -0.235172, 1.383050, -0.344179, -0.397473, -0.539577, 0.167826, 0.340591, -1.958424, 1.504309, -0.522636, 1.062583, 0.661992, -1.873474, 0.126089, 1.363839, 1.617063, -0.112732, -0.937516, -1.812903, -0.032315, -1.374682, -1.366695, -1.111225, 0.125841, -0.664806, -0.513175, 0.512025, -0.548643, -1.352860, 0.805216, 0.933328, -0.111566, -1.938313, 0.543197, -0.252600, -0.039377, 1.446332, -1.783591, -0.526295, -1.361761, 1.272745, 2.068490, 0.836975, 1.145567, -0.517356, 1.294285, -0.213064, 0.186970, -0.628233, -1.341362, 0.959694, 0.797501, -0.439631, 1.718707, -1.464268, 1.538225, -1.830225, 1.157263, 0.328792, -1.815510, -1.002149, 0.267550, -0.545501, 0.517463, 1.682639, 0.845633, 0.892939, -0.804660, 0.862171, -0.373519, 0.661528, -0.771302, -0.427637, -0.834072, 1.348785, 0.491987, 2.190373, 2.457416, 0.445713, -0.951053, 0.232683, -0.272204, -0.583218, -0.392077, -0.628063, -0.084245, 0.333291, -0.147265, -0.945695, 0.712070, 0.765837, 0.765508, -0.079538, 1.051033, -1.776370, -0.035073, 0.246485, 0.242234, -0.740224, 0.297872, 0.890660, -1.342553, -0.363605, -1.579738, -1.372061, -1.519058, 0.320677, -2.003026, 0.091183, 0.885303, 0.775565, -2.160908, -0.119447, 0.667350, -0.357806, -0.640622, -2.189891, 0.159689, -2.394003, -0.879651, -1.084957, -1.730756, -0.308818, 0.540626, -1.173607, 0.787882, -0.224947, 0.111080, -0.092843, -0.604165, 0.877154, -0.775970, -1.299013, 0.207478, -0.563260, -0.637041, -0.868930, -0.798841, 0.424707, -1.323236, -1.863457, -0.152687, -1.562774, -0.716138, 0.001507, 1.902444, 1.099069, -0.483896, 0.057232, -0.565703, -0.047181, 0.764037, -0.679941, -0.049898, -0.282916, -1.423038, -0.701279, -0.702325, -0.851669, -1.092972, 1.132937, 0.862394, -1.574666, 0.005616, -0.280045, 0.052933, 0.114316, -1.885117, 0.084470, 0.689191, -0.642140, -0.260015, 0.294884, -1.221358, -1.563230, 0.930023, 2.331087, 0.682631, -0.507299, -2.176593, 0.127847, 1.250863, 1.049228, 0.760307, 0.290862, 0.913321, -1.275750, 0.630891, 0.889809, -0.698100, 1.031630, 0.176767, 0.896319, -2.166147, -0.042406, 0.816935, 0.085425, -1.291574, 0.715948, 0.785372, 0.032003, -0.008905, -0.775458, -0.782831, -0.019636, 0.739469, -1.555600, 0.727035, -0.789567, 0.443105, -1.375318, -0.189659, -1.898896, -0.640718, -1.089822, 0.255329, 0.105308, 1.490597, -0.093684, -0.539996, -0.002446, 0.568707, 1.025302, 0.172220, -0.767021, -0.196065, 1.727901, 2.270144, -0.240150, 0.307770, 0.138438, -0.417119, -0.099015, -0.074702, -0.051139, -0.230765, 2.143932, 0.468362, 1.049745, -0.231191, 0.488994, -0.384419, -1.434802, -0.529508, 0.397596, 0.603413, -1.747145, -0.607655, -0.424843, 0.996237, -0.012519, -0.645429, 0.403621, -1.370830, 0.010921, -0.367657, 1.519422, 0.617146, 0.564209, 0.948729, -0.385076, 0.304248, 0.713241, 0.979505, -0.819220, -1.232091, 1.468559, 1.406151, 0.586226, 1.453624, -0.696577, 0.136521, 0.257013, 0.007892, 0.376690, -1.598682, -1.080180, -0.701879, -0.614127, -0.047640, 1.079236, -1.398191, -0.120676, 0.192088, 0.805822, 0.367607, 0.444702, 0.056774, 0.418836, -0.816752, -0.113807, 0.768314, -0.839684, 0.325392, 0.432421, -0.728848, -0.121026, -0.092131, -0.848049, 1.082806, -0.502087, -1.155917, 1.121064, -0.342943, -0.375877, -1.406312, 0.387267, 0.424086, 0.826730, -0.326574, 0.467242, -1.264390, -0.480366, -1.091095, 0.043079, 2.174098, -0.082880, 0.072349, 1.286701, 1.059599, 0.751107, 0.350151, -0.668868, 0.105018, -0.261374, -0.716429, 0.942878, -1.152659, -0.873781, -1.957849, 0.757286, -0.092357, -1.478378, -1.032509, -0.427794, 1.061623, -0.990963, 0.711382, 0.569579, -0.429175, -0.022602, 0.886366, -1.328673, -1.225251, 0.984478, 1.505840, -0.533593, 0.668489, -0.801922, 1.400971, 1.451241, -1.881531, -0.855081, 1.404101, 1.979957, 0.040533, -0.126944, 0.014807, 0.267048, -0.454474, 0.178847, 0.506511, -0.378687, -1.028255, 0.571825, 0.419263, 1.184437, 0.353132, -1.798233, 0.972242, 0.375284, -0.258490, 1.441418, 0.679235, 0.610537, 0.555688, 1.167421, -2.099960, -0.121467, -0.093931, -1.122853, 0.235235, -0.072288, -0.605430, 0.126359, 1.146718, -0.089143, -0.085058, -0.223924, -1.632909, 2.035854, -0.276491, -0.390018, -0.845120, -0.110919, -1.213067, -0.310876, 1.276559, 0.979004, -0.478605, 0.457094, -1.568804, 0.389232, 2.107067, -0.277936, -1.038638, 0.631440, -0.000560, 1.131747, -0.128699, -0.043246, 0.000567, -1.301971, -0.772563, 0.221700, -0.742065, 0.947594, -1.605278, -0.111451, 1.353028, -0.600437, -0.346771, 1.399873, -1.345483, -0.853759, 1.732354, 1.147301, 1.468050, 1.263324, -1.332458, -0.877993, -2.130314, 0.351732, 0.236944, -0.434476, -0.848425, -1.396123, -0.405136, 1.422360, -1.966814, -0.266577, 0.176106, -0.940655, 0.438934, 1.116838, 0.317558, 0.664408, -0.130431, 2.069849, -0.040232, -0.289653, -0.672048, -0.340405, -0.084344, -0.474162, 1.085321, 0.820224, 0.991162, 0.415528, 0.577902, -0.100700, -0.764808, 0.547872, 0.892877, 0.101686, -2.232623, 0.218407, -0.107334, 0.053125, -0.034452, -0.430041, -0.774613, 1.318963, -2.707061, 0.244324, -0.423788, 0.101224, -1.487005, 0.637713, -0.850520, 1.389812, 0.336309, -2.611636, 1.097802, 0.447583, -0.838241, 3.420436, -1.068536, 1.389419, -0.241273, 0.904938, -0.818239, -0.221534, 0.172794, 1.878394, -2.369473, 0.538834, -0.969446, -0.371926, 1.024396, 0.454268, -0.010175, 1.166771, 0.742516, 0.214392, -1.569085, -0.043797, -0.308736, 0.464072, -0.134790, -0.113056, -0.500300, 0.972351, 0.357009, -0.778562, 0.747917, 0.713485, 1.530468, 0.190826, -0.134805, -1.745339, -2.060433, 0.521381, -0.268538, 1.578888, 0.005915, -1.441188, -1.352721, -0.018647, -0.930117, 1.206810, -0.902351, -0.163161, 0.410921, 0.264951, 1.330335, -1.040025, -0.803937, -1.503077, 0.453019, -0.396428, -1.107746, 0.513104, 0.373658, -0.224492, 1.002628, 1.242675, -2.210689, -1.162366, -1.571850, 0.079017, -0.230274, -1.339020, 0.096714, 0.618877, -0.430763, 0.101277, -0.806072, -0.032787, -0.321225, 0.649279, 1.782410, -0.941268, -0.429839, 1.330861, 1.447174, -1.025736, 1.726171, -1.571461, 0.312726, -0.082246, 0.724114, 0.885492, 0.032952, -0.921404, 0.803974, -0.972846, 0.682970, 0.869749, -1.456824, -0.996198, 1.412127, -1.271357, 0.052844, -0.592720, 0.449044, 0.543283, -1.543620, 0.770803, -0.075263, 0.317279, -0.372157, -1.050912, 1.144678, 3.093191, 1.662531, -0.121094, 0.225683, 0.806632, 2.977509, 0.896518, 1.498224, -0.487309, -2.033720, 0.911177, -1.171702, 0.949133, 2.079720, 0.253759, 0.911926, -0.998689, 2.242846, 0.639870, 0.558231, 1.165567, -1.413233, -0.184249, -0.129191, 0.050413, 0.460122, -2.127116, 1.026417, 0.711223, -0.601544, 0.585046, 0.937544, 0.555648, 0.043097, -0.748606, -0.021981, 1.002368, 0.696589, 1.839437, -0.653013, 0.298310, 0.337771, 0.422614, 0.250487, 0.483169, -0.138281, 1.491554, 0.310236, -0.133642, 0.268060, -0.656293, 0.856722, -0.381889, -0.179795, 1.031471, -1.068985, 0.480502, 0.879212, -0.383312, 0.530000, -0.000189, 1.158521, -0.203352, -1.745895, -1.141183, 0.541767, 0.173407, 0.028366, 2.033123, -0.449244, -0.025609, 1.186347, 0.410037, 0.557129, -0.723942, 1.098324, 0.689513, -0.333536, -1.875729, 0.932217, 0.913292, 1.808887, -1.012943, -0.530243, 0.352510, 0.908005, -0.268952, -1.580704, 0.501765, -1.292741, -1.230967, 0.275808, -0.906487, -0.495648, 0.027220, 1.114617, 0.094763, -1.080792, 1.523810, -0.774519, 2.496188, 0.066431, 1.488420, -2.105661, 0.661336, 1.677653, -0.274637, 0.758960, -0.283874, 0.848195, -1.100285, -0.101953, 0.306504, 1.485316, 0.589264, -0.784468, 0.615491, 1.348166, 1.164209, -0.038890, 1.232857, 0.304724, -2.331403, -0.461512, 0.006976, -0.608258, -0.882697, -0.866727, 0.569431, 0.717090, -1.685648, 1.007488, 0.708607, -0.337872, 2.451992, 0.971709, -0.156814, -0.686672, 0.126982, 0.829377, 1.049799, -0.890542, -0.085022, 0.118800, -1.823866, -1.169456, -0.723808, -0.511440, 0.854272, -0.009668, 0.209245, 0.013302, -1.020211, -0.502164, 0.222711, -1.119974, -1.278024, -1.649244, -0.548986, 0.665538, 0.662380, 0.405251, 0.282164, -0.002029, -1.246852, -0.370449, 0.393767, 1.644471, 0.426126, 0.387291, -0.674875, 1.038076, 0.600103, -0.096612, 0.325958, -0.818657, 0.477243, -1.199837, -0.869795, -0.881705, 1.958618, -0.671609, -0.147153, 0.010151, -0.237564, -0.394377, 0.250500, 0.149292, 0.158081, 1.008671, 1.309021, 1.472144, 1.343242, -1.130392, -0.682410, 0.329447, 1.598609, -0.166066, 1.833190, 0.057439, 0.559181, 1.442972, -0.228773, 0.252063, 0.639607, 0.739787, 0.291796, 1.093051, -1.457751, -2.159760, 0.564411, 1.146052, 0.776249, -0.149219, 0.112510, 0.492335, 0.130283, 0.859809, -0.033366, 0.409701, -0.654081, 0.145960, -0.335490, -1.190467, -0.088920, 0.606310, 0.853640, 0.853195, -0.132278, 0.864953, 0.188628, -0.212323, -1.115402, 2.274409, -1.021911, 0.431413, 0.465923, 0.999762, -0.142977, 0.521905, 1.040826, -2.057496, 0.888147, -0.285624, 0.887932, 0.525930, 0.352817, -2.100249, -0.357368, -1.235392, 0.243378, 0.925334, 1.633089, -0.461984, 1.062828, 0.602230, 1.559014, -1.126593, -0.497828, -0.172161, -0.569687, 0.919834, 0.378514, 0.663484, -0.168105, 0.076585, -0.004925, 0.615745, -0.278400, -0.018738, 2.383155, 1.126474, -1.967811, 1.885509, -0.882970, 0.376107, 0.095518, 0.682775, -0.627919, 2.030618, -0.905891, -0.079417, 0.811254, 1.487391, 0.541125, 0.117364, 0.246623, -0.910617, 1.431684, 1.106386, -0.190946, 2.436257, 0.572403, -0.859946, 1.280817, 0.151598, 0.120387, 2.086688, 1.870306, 1.395172, -0.454404, -1.043979, 0.072510, -0.666675, -0.214606, -0.692866, -1.039563, 0.759397, -1.210571, 0.066885, 0.102654, -1.494836, 0.581090, -1.387127, -0.764526, -1.374681, -0.359010, 0.016068, -0.388888, 0.379490, -0.519102, -0.648704, -0.171610, 2.618532, 0.354210, -1.646865, 3.792551, -1.509512, -0.146837, -1.116581, -1.173348, 1.261452, -1.041687, -0.680098, -0.047130, 0.697685, 0.868387, -0.737022, -0.706824, 1.150055, -1.637254, -0.951927, -0.049012, -0.065075, 0.752924, 0.228552, 0.934360, 0.734150, -1.679047, 0.865402, -0.239389, 1.022948, -0.023258, -1.256358, -0.451178, 1.281918, 1.153275, -0.779462, 1.072035, -0.273102, -0.920331, -0.355805, 0.335196, 0.235106, 2.064071, -0.875029, 0.835588, 0.239502, 0.756748, -0.033295, 1.439518, 0.024978, -0.519161, -0.320650, 1.141891, 0.252935, 0.267547, 0.323698, 1.046774, -0.716241, -0.592586, -0.202480, -0.404383, -0.684366, 0.301782, 0.266524, -0.550650, 1.528382, 1.130170, 0.930979, 0.068278, -1.126034, 1.169483, 0.613790, -1.154997, 1.973570, -1.029345, -0.672124, 0.448635, 1.015372, -0.565159, -1.970106, -0.019809, -2.075485, 2.179176, 1.422725, 0.543414, -0.659533, -0.731586, -1.741046, 0.252042, 2.565730, -0.725135, -1.101690, 0.800728, 0.249890, -0.167670, -0.829689, 0.101905, -0.318666, 1.612459, 1.237428, -0.065305, 2.497023, -1.636741, 0.341558, 0.138401, -0.168568, -0.576635, 0.398949, 0.906522, -1.053750, -0.545998, -0.455266, -0.301569, -0.722599, -0.928884, -0.565834, 0.354239, 1.863500, 0.194206, -0.626001, 0.108146, -0.183907, -1.208546, 0.425658, -0.237187, 0.223028, 1.489504, 0.011653, 0.128550, -0.988395, -3.144665, 0.304450, -0.833752, -0.414852, 0.331433, 0.519535, -0.423061, -2.283350, -0.194664, 0.530827, 0.995349, 0.740034, -0.424981, -0.062494, 0.623986, -2.199912, 0.477567, 0.090832, -0.058796, -2.214593, -0.103925, -0.642611, -0.567072, -2.074737, 0.166583, 0.977425, 1.216104, -0.340520, -0.309287, -0.119129, -1.270854, 0.521910, -0.453469, 0.343665, 2.659389, -0.675041, 1.098605, -0.327029, 1.148319, -1.096467, -1.500800, -0.510577, 0.002896, 0.772490, 0.343863, 0.548228, 1.411542, -0.548003, 0.720387, 0.311559, 0.618695, -0.365211, -0.854787, -0.543796, 1.076430, 1.248507, 1.247313, -1.063489, 0.000537, 1.423668, 0.282096, 0.673822, -0.346888, -1.641023, 0.947132, 0.946999, -0.187692, 0.207640, -0.717608, -0.640428, 1.649142, 3.159801, 0.285131, -1.311685, 0.119217, 1.482214, 1.330941, -0.911981, -1.974984, 0.509698, -1.960800, -0.530067, -0.222100, -0.738781, 0.520870, 1.291059, -0.700075, -1.014312, 0.904651, 0.655815, -0.255718, 0.568737, 0.304345, 0.236863, -1.219295, -1.867410, -0.947376, -0.681295, -0.462702, 0.186486, 0.026183, -0.390831, 1.819933, 1.258341, -0.591996, 0.526669, -0.531385, -0.642068, 0.761622, 0.620042, 0.511969, -1.287185, -0.114275, 2.074829, -1.011105, 0.596614, -0.192250, 0.749897, -1.029901, -1.697172, 1.666424, 1.808855, 0.248349, -0.317729, 0.797614, -0.210340, -0.341758, -0.155299, 0.463231, -0.337337, 0.257532, -0.068504, 0.072096, -0.418420, 0.922894, 0.006238, 0.781892, 0.819916, -1.920365, -1.912882, 1.231657, -1.238131, -0.290771, 2.131539, 1.092803, -0.132217, -1.923079, 1.299205, 0.141758, 0.476004, -0.765585, 0.792254, -0.815881, 1.038379, -0.167990, -0.248769, -0.207054, 0.164219, 0.953176, 1.602046, 0.609283, -1.216488, -0.922205, -0.878825, -0.351528, 0.261810, 0.729205, -1.651948, -0.227139, 1.172439, 0.423959, -1.807261, 1.721888, 0.396506, -0.909818, 0.656211, -1.566248, -0.028559, -1.745553, -0.772742, -0.039189, 0.483067, -0.038710, -0.015212, -0.710726, 0.828592, 0.817550, 1.558603, 0.527466, 0.604988, 0.366180, 0.756422, 0.626611, 2.025416, 0.586196, -0.472802, -0.368451, 0.879758, -0.238057, 0.602645, 0.425327, 0.931699, -0.260955, -1.290241, -1.608891, -0.632699, -0.044485, 0.413085, 1.772271, -0.669894, -0.270458, -1.251951, -1.431843, 0.857855, -1.269060, 1.176613, 0.728619, 0.409170, -1.354803, 0.582349, -0.446751, 2.366971, -0.803819, 0.195972, 0.961223, 2.374263, -2.270042, 0.048770, -0.095595, -0.958647, -1.572495, 0.937178, -0.197178, 0.159942, -1.632320, 0.416667, -0.470423, -1.287511, -0.860495, -0.025828, -0.521682, 0.148001, -2.016367, -1.125534, -0.319210, -0.285365, 0.469781, 0.213533, 0.520304, -1.046704, -0.255014, 0.161978, -0.657301, 0.380386, 1.000481, -0.102816, -0.153629, -0.856587, -0.839705, 1.076588, 0.734051, 0.344115, -0.870206, -1.109691, 0.479125, -0.971326, -0.058429, 0.789344, -0.832048, -0.429643, -0.329592, -0.909379, 0.039007, -0.660611, 1.404685, -1.627092, -0.461628, -1.757714, -0.382550, -1.125911, -1.319679, 2.377537, 1.954415, -0.797256, 0.310238, 1.390780, 2.174498, 0.954718, -0.202962, -1.009577, -0.049587, 0.950558, 1.350130, 0.704795, -1.084015, -1.276809, -0.532805, -0.035503, 0.712197, 0.932244, 0.697259, 0.168265, 0.968257, 1.087720, 0.988724, 1.226741, 1.133746, -0.437888, -0.340066, -1.382146, -0.365589, -2.092942, 0.515507, 1.045868, 0.622470, -0.053105, -1.261211, -0.451578, 0.473949, 0.265230, 0.441864, 1.005170, -0.655958, -0.607974, -0.298242, 0.129913, -0.012558, -0.632721, -0.059729, -2.696762, 0.528190, -1.169908, 0.325504, -0.513270, 0.893848, -0.067951, 0.589883, 1.199512, 0.965997, -0.987544, 0.293924, -0.654640, 0.627130, -2.008244, 0.309519, 0.437324, -0.718098, -0.852222, 2.095732, -1.263327, -0.417234, 1.220132, -0.046950, 0.590005, 0.016060, 0.395953, 0.533061, 0.458756, -1.562384, 1.702298, -0.046271, 1.093901, 1.135716, 1.269514, 0.558460, -1.702426, 0.218106, -1.133291, -1.192282, -0.357392, -0.869045, -0.100981, 2.829987, -0.280654, -0.711372, -0.586914, -1.006115, -0.826143, -1.003669, -0.584428, 0.938065, -0.759953, 0.236500, 1.679802, -0.867175, 2.012593, -0.722134, -0.499972, 0.666206, 0.512912, 0.627820, 0.352293, -0.159099, 0.975979, 0.125898, 1.000830, 1.527902, 0.108561, -0.899555, -0.859858, -0.056013, 0.440500, 0.097085, 1.016263, -0.986517, -0.567086, 1.366657, -0.064835, -0.069338, 0.220429, 1.188672, -0.592164, -1.580132, -1.040111, 0.994207, 1.529301, 0.965583, 0.614241, -0.399527, -1.605185, -0.505716, 1.130069, -0.864777, 0.377398, -0.339196, -0.080936, -1.119905, -1.634312, 0.090257, -0.222013, 0.231535, 0.284000, -1.734604, 0.532429, 1.045926, -2.357142, 0.301438, -0.825032, 0.998986, 0.273277, 0.418926, 1.032511, -0.139835, 0.641192, -0.471333, 0.438997, 0.540514, 0.393357, 0.927158, -0.799381, -1.044712, 0.198402, 1.062615, 0.646373, -0.699645, 1.147951, -0.666869, -0.192050, -0.534210, 1.395654, 0.774890, 1.235580, -0.471644, -0.279599, 0.712804, -1.111780, -0.819664, -2.560734, -0.517164, -0.556769, -1.290907, 0.068988, -1.069552, -0.495076, -0.389549, 0.431265, -0.042560, 0.167036, 0.106089, -1.094591, 0.260762, 0.822045, 0.515592, -0.450003, -1.045584, 0.884711, -0.501255, 1.925481, -0.235619, -0.259887, 0.365682, 0.196290, 2.061564, -2.213679, -1.301811, 0.706507, 1.741559, -0.168855, 1.101588, 0.820364, -0.400482, 0.335451, 1.928191, 0.505874, 0.269808, -0.961020, -1.788782, -1.860919, 0.250914, 0.898241, 0.274327, -1.045911, 1.274394, -1.807915, -0.061733, -0.482906, 1.091731, 0.399684, -0.309442, 0.326899, -1.238159, -1.200043, -1.057403, 0.167390, 0.255546, -0.527346, 0.233485, -0.242632, 0.621511, -0.616150, -0.087503, 2.285100, 0.490702, -0.944267, 1.779703, -0.236308, 0.633502, -1.437012, -0.817187, 1.681853, 0.525203, -1.434373, 1.777332, -0.163298, 2.196878, 1.181907, 0.019409, 1.894870, -0.518821, 0.609485, 0.023724, -2.062161, 0.491855, -0.167027, -0.600150, 1.547984, -1.543012, 0.858477, -1.549856, -0.005683, 1.892737, -1.062547, 0.992437, -1.710650, 2.435537, -1.136351, 0.074013, 0.097661, 0.947000, -0.311775, 1.259216, -0.964017, 0.293518, 0.248293, 0.578923, 1.331232, -0.459472, -0.993607, -0.793864, 0.251094, 0.224123, 0.525135, -0.362432, 0.203711, -0.500895, 0.722426, -1.332972, 0.787980, 0.071593, -1.053839, -2.256763, -1.512497, -0.645520, 0.181726, 0.897512, -1.224698, -0.788861, 0.754809, -0.332596, -2.458709, 0.067840, -0.508277, 1.499413, -0.242588, -1.677294, 0.140744, -0.942304, 0.887287, -1.163477, 0.379646, -0.479302, -1.977065, 0.862756, -0.052980, 0.785963, -0.827198, 0.992470, 0.472990, 0.956368, 0.489755, -1.580649, 0.205854, 0.474053, 0.714326, 0.617675, -1.763684, -0.988593, 0.218481, -0.612592, 0.078888, -1.140073, 0.385045, 0.234892, 0.100009, 1.174751, 0.728539, -0.138349, 0.871923, -0.131383, -0.811907, 1.869395, 0.922524, -1.883221, -1.027480, -0.785759, 0.035490, -0.942084, 0.858385, -1.981633, 1.717108, 0.968860, -0.022463, -0.015047, 0.304365, -1.171236, -0.164107, -1.098171, 1.562056, -0.561641, 0.322561}, - { 1.633750, -0.208713, 0.399191, 1.253653, 0.522533, -0.039824, -0.062544, -1.552716, 0.423759, -0.464100, -0.214870, -0.644192, -1.337064, 0.208001, 1.737733, 0.373052, -0.871952, 0.252082, -0.477625, -1.117553, -1.525211, -0.489079, 0.502528, 0.252908, 1.009426, 0.284869, -1.344518, -0.339331, 2.074620, -0.238306, -1.003521, 1.910421, -0.086106, 0.175206, -0.996218, 0.408523, -0.129474, -0.119925, 0.030628, -0.633376, 0.031295, 0.933010, 1.026730, -0.032987, 0.330262, 1.420750, -0.453519, 1.017246, -1.605942, 1.047615, 0.284744, -0.917644, 0.064100, 2.207553, 0.486901, 1.234834, -0.427063, -0.342868, 0.260631, 0.636631, 1.148085, 0.837837, -0.013621, -0.856720, -0.209332, 0.695650, -0.695866, -0.365854, -1.413842, -0.064040, 0.679539, -1.365736, 0.287881, 1.291652, -1.551638, 1.049225, -0.867760, -1.073091, -0.637155, -0.300112, -0.735298, 0.313950, -0.509098, -1.229489, -2.117709, -0.259286, -0.775823, 0.130260, 0.530175, -1.051084, 0.309872, -0.354903, -0.618703, -1.420003, 1.326202, 0.804056, 0.752575, -0.092148, 0.538921, -0.943075, -0.577259, -0.141735, -0.006229, 0.529762, 1.183064, 0.285579, -0.023202, 0.743896, -0.201692, 0.261179, 0.569031, 0.637282, 0.676452, -0.671401, -2.405885, 0.730172, 1.121383, -3.309620, 0.853111, -1.601336, 0.710432, 1.408769, -0.562655, -1.325458, -1.266071, -1.821650, -0.924012, -0.711459, -0.314324, -1.237956, 1.337198, 0.451297, -1.264170, 0.907615, -0.677598, -0.650538, 0.941084, 0.862619, 2.330709, -0.097281, -0.186912, -0.457176, -0.833505, -0.281472, -1.080566, 0.298360, -0.294453, -0.340458, -1.778879, 0.020224, -0.309792, 0.209083, 1.183815, 0.693163, -0.236959, 0.778133, 0.930881, 0.734484, 0.239085, 0.387471, -0.342709, 0.366404, -0.557924, 1.274958, -0.068736, 1.677438, -0.220889, 0.122682, -0.020607, 0.409848, 0.195760, -0.937147, -0.596844, -1.313521, 0.612754, 0.529698, -1.054632, 0.724131, 0.460957, -0.754743, -0.861633, -0.560756, -0.154731, -0.673748, 0.296609, 1.959714, 0.342447, -1.064095, -1.457826, -0.334593, 0.045409, 0.075224, -0.906822, 0.988956, 1.553525, 1.230527, 1.918521, 0.623294, -0.729148, 1.030785, 1.039954, 1.876015, 1.092184, -0.834752, -0.480642, -1.629364, -1.310089, 0.680235, 0.178461, 0.401326, -0.672326, -0.889948, -3.649967, 0.162014, -0.267152, 1.590234, 0.559631, -0.266849, 0.561170, -0.113994, -0.731860, 0.020557, -1.703906, 0.014522, 0.962914, 0.530414, -0.036976, 0.754626, 0.423748, 0.255248, -0.545737, 0.984911, 0.979411, -1.627167, -0.438461, -0.351980, -0.420869, 0.968233, 0.654434, -0.110182, 0.292363, 1.535228, 0.247893, -0.216707, 0.223417, -0.580980, 1.680820, -1.473914, -1.728161, -2.846628, 1.703498, 0.905023, -0.055205, 0.644903, 0.059472, -0.021520, 1.307315, 0.129105, 0.829307, 0.241402, 0.640167, -0.287598, 0.661523, 0.297522, 0.175122, -2.226186, 1.053222, -0.750790, 0.846055, 0.162030, -0.785390, -0.135707, 0.825747, 0.613240, -1.153278, -0.036000, 0.542754, -1.363815, -0.238604, -1.203685, -0.274608, -0.516469, 0.478228, -0.457582, -1.391683, -0.574425, -1.163558, -0.674418, -0.896201, 0.025810, -0.790252, 0.112435, 1.379806, -0.497981, -0.897507, 0.337331, -0.295900, 1.115004, -1.050576, 0.605156, -0.243328, -0.602567, 1.386620, 0.901985, 1.837772, -1.421034, 0.442711, 0.102661, 0.401064, -0.200605, -0.627958, -0.354933, -0.383843, -2.264190, 0.242871, 1.472131, 0.141329, -0.527888, -0.777231, -0.164998, -0.452741, -0.693049, 0.711089, 2.490709, -0.788117, -0.524690, -1.019957, 0.717529, 0.896247, 0.437873, 0.283121, -0.783064, 1.531208, 0.418761, -2.144156, -0.898897, -0.497084, 0.509069, 1.053628, -0.508083, -0.873839, 1.432240, -0.165618, 0.427544, -0.950999, 0.662171, -1.261790, 1.978793, 0.773338, -1.150344, -0.027884, 0.301079, 1.149162, 0.588662, 0.266859, -0.782330, -1.660377, 2.431033, 1.045701, -0.308218, -0.058655, 1.089296, -1.893408, 0.373400, 0.243236, -1.034705, -1.024672, 0.709247, 0.697017, 1.619847, 1.637518, -1.299040, 0.022054, -1.491282, -0.081951, -0.874380, 0.983287, 0.746610, -0.191663, -0.708996, -1.430509, 1.764003, 0.078192, -1.029045, 0.846876, 1.875717, 1.613536, 0.320372, -1.045241, -0.408077, 0.204712, 0.325098, 0.355421, 0.418502, 0.191755, -2.691741, 0.369223, 1.289988, -0.741753, -2.137399, 2.270844, 0.510796, -0.357066, 0.707755, -0.545343, -0.007768, -0.429650, 0.061762, 0.132509, 0.141634, 0.748732, -0.464731, -0.885414, -1.705251, -0.584072, -0.886061, -0.470548, -0.736594, -0.853768, 0.456509, -0.116781, 0.486840, -1.116497, -0.987260, 0.033038, -0.985664, -0.715243, 0.725018, 0.379021, 0.128903, -0.001089, -0.779351, 0.901212, -1.055266, 2.453246, -0.130311, 1.584739, 0.339338, -0.550722, -0.060897, 1.743678, 0.325652, -0.364703, 1.152421, -0.080858, 0.736350, -0.898815, -0.372582, 1.388357, -0.721409, 0.432581, 0.565466, 0.417503, 0.693891, 1.103736, -0.582973, 1.303014, 0.094902, 0.368089, -1.440522, -3.318128, -3.033506, 1.248998, -0.578987, -0.194126, -0.293621, 0.026287, 1.420831, 0.563118, -1.286652, 1.217494, -1.137671, 0.007186, 0.678262, 1.535446, 0.641297, 0.088899, 0.014675, -1.594144, -1.793008, 1.365244, -0.264220, 0.619684, 1.233654, 1.174579, 1.205239, 0.819907, -0.324365, 0.868136, -1.124120, -0.476948, -0.603176, 0.882191, -0.648951, -1.239904, 1.115651, 0.937624, -0.401641, -0.707858, 0.744260, 0.357113, 0.447538, 1.580977, 1.226947, -0.996384, -1.117138, -0.762098, -1.227928, -0.485494, 0.894387, 0.548534, 0.618259, -0.177832, 1.057126, 0.592931, -0.390809, 2.060658, 0.746119, 0.641473, 0.731166, 1.399154, -0.409176, 0.493299, 0.038713, -0.588700, 0.254130, -0.462193, 1.710925, 0.180509, -0.875857, 0.343971, 1.428961, 1.085704, -0.746196, -1.085817, -0.138197, -1.737607, -1.864121, 1.638507, 0.496783, -1.379151, -2.465451, -2.010220, -0.590529, 1.340768, 1.266440, 0.487798, -1.146695, 1.090023, -1.051142, 1.055251, 0.428708, -0.282754, -1.932825, 0.367059, 0.646246, -0.729363, -0.010475, 0.098721, -0.803355, -1.877876, -0.037373, 1.420762, 0.985746, -1.145910, -0.998906, -2.332280, 0.718753, -1.990264, 0.386594, -0.068702, 0.301434, 0.208538, 0.541167, -0.402673, -2.372978, 0.668457, -0.305221, 0.022876, -0.047997, 0.228780, 1.448882, 0.613885, 2.316437, 0.557050, -0.120061, -0.711957, 0.948075, 0.578252, 0.394816, -0.573451, -1.331556, -1.650743, -0.387161, -0.352094, -2.620109, -1.839176, -1.398458, 0.530359, -0.228919, -0.709150, -1.321736, -1.554870, -1.154367, 0.777909, -0.338027, -1.703837, -0.169670, 1.187202, -0.797484, -0.487479, -0.620582, -0.317494, -2.403142, 1.641730, 0.830646, 0.028302, -0.306692, -0.841741, 0.794381, -0.208205, 1.242679, -0.775001, 0.488870, 0.107544, 0.471582, -0.459891, 0.426136, 1.593878, 0.328127, 1.104565, -0.359778, -0.577892, 0.058231, -0.623665, -0.161381, -1.005802, -1.618271, 1.022667, -0.755539, -0.832205, 0.323845, 0.398462, -0.090320, -0.688794, -1.712452, 2.079621, 1.494959, -0.510339, -0.526962, -0.501123, -0.354679, -1.610059, -1.378104, 0.962394, -1.212246, 0.221910, 1.543822, 0.805893, -0.012619, -0.934039, -0.153445, -0.218897, -1.094587, -0.092891, 1.151209, -0.916165, 0.611519, 0.234915, -1.399976, -0.121571, -1.400179, -0.318803, -0.796265, 1.210998, -1.284524, 1.836117, 1.221768, -0.895479, 0.357193, -0.094953, 0.071924, -0.553556, -1.427475, -0.918901, -1.290555, 0.593505, -0.100715, -0.354592, -2.417863, 1.183628, 0.011129, 0.582654, 0.868006, -0.149553, -0.144259, 1.195877, 0.531090, -0.713784, -0.416895, -0.836029, -0.595415, 1.035148, 1.277334, 1.991471, -1.390341, 1.206723, -1.761687, 0.991444, -0.236374, -0.039019, 0.214836, -0.076213, -1.160952, 0.319922, -0.595001, -0.393744, 1.070738, 0.894406, 0.056887, 0.187049, -0.698885, 2.283896, -0.568464, 0.772052, -0.014354, 0.756618, -0.221157, 2.514338, 1.008293, 0.241202, -0.643674, -0.891454, -2.483161, 1.175247, -0.041734, 0.514728, 1.947805, -0.440595, -1.519470, 0.765724, 2.941120, -0.590583, 0.089716, 1.528522, -0.555414, 1.928398, -0.322762, 1.302254, -0.184784, -1.475408, -1.226543, -0.453656, -1.421057, -1.786358, 0.016994, 0.875315, 0.054692, -0.383463, -1.505522, 0.284490, 0.286418, 0.426409, -0.147629, -1.785765, 0.242645, 0.887664, -0.443890, 1.294186, -1.116554, 0.588321, -1.547927, -0.417077, -0.877472, -1.835423, 0.579669, -0.047314, 1.834026, 0.258689, -0.826290, 0.896961, -0.520304, -0.392979, 0.680968, 0.716352, 0.759695, 0.806670, -1.709324, 0.986569, -0.150820, 2.394736, -0.526361, 1.147990, -0.377885, -0.995814, -0.454191, 1.149842, -1.597380, -1.253091, -0.823041, -0.149331, 1.745578, -1.148569, 0.571836, 0.817219, -0.758259, -0.853601, 0.387564, 1.538011, -0.264415, -0.505284, -0.624930, 0.951168, 0.170791, 0.557038, 1.272419, 0.544148, 1.045817, 0.400600, -0.654041, 0.697929, -1.196383, -1.535388, 1.060852, 1.066159, 0.287956, 0.334259, -1.680188, 1.567870, 0.439922, 1.822707, 0.419450, -0.407702, 0.961808, -0.811965, 0.307355, -0.724728, -0.319510, 0.224332, 0.459586, -1.558644, 0.163701, -0.781339, 0.576898, 1.949665, -0.359467, 0.391569, -0.757351, -0.056237, -0.912369, -0.636153, 2.697446, 0.129310, -0.321593, -0.503454, 0.328496, -0.600949, 0.697004, 0.079186, -1.347811, -0.008307, 0.672211, 0.004851, -0.737647, -0.956546, -0.855895, -0.829822, 0.342103, 1.323590, 0.776070, -1.450975, 1.112189, -0.975869, 0.723694, -0.264351, -1.131781, -1.039118, 1.144766, 1.590171, -1.645773, 0.605682, 2.081909, 1.327569, 1.860834, -1.096128, -0.861132, 0.469649, 1.001297, -0.897849, 0.180405, 0.078134, 0.133203, -0.639073, -0.880966, -1.747314, -0.483171, -2.581299, 0.899836, 1.158479, -0.191164, -0.627105, -0.292247, 0.463476, -0.955252, -1.985927, -0.604326, -0.375043, -1.538616, -0.890549, -0.047283, 0.321275, 0.715675, -0.244068, 0.568941, -0.316806, 0.611571, -0.016223, 1.197703, -1.735856, -0.092698, -0.388257, -1.387805, -0.980568, 0.353355, 0.487100, 1.738975, -1.383981, 0.568930, 0.294583, -0.234555, -1.582574, 0.060271, -0.515729, -0.510794, -0.595208, 0.450997, -0.793106, -0.567710, 0.161472, -0.343068, 0.202998, 0.456116, 1.897815, -0.586535, 0.656231, -1.950023, -0.174002, 1.905020, -1.341272, -0.121645, -0.042592, -1.626775, 0.929624, 1.238821, -1.382462, 0.577146, -1.141178, 1.300768, 0.957444, -0.416143, -0.815185, -0.245639, 1.066428, 0.301353, -1.834014, 0.508083, -0.218429, 1.410184, -0.928468, 0.682718, 0.676148, -1.543971, -0.060714, -0.339981, 0.815538, -0.946027, 0.324797, -1.167691, -1.472364, 0.265806, 0.103860, -0.370767, 2.346980, -2.107459, 1.333538, 1.068658, -0.334790, -0.666444, -0.841996, -0.009787, -0.986844, -0.273349, -0.550526, -2.235348, 1.556056, -0.870163, -0.480603, -0.950090, -0.409188, -0.219105, 0.605144, -0.438438, -1.428007, 1.002174, -0.481445, -0.773959, 1.265860, 0.079983, 0.512249, 0.002601, 0.532775, -0.036385, -0.940858, 0.087740, -0.861109, -1.306606, -0.495964, -0.930104, 0.810205, 2.009219, -1.156137, -1.117500, 0.824882, -0.075308, 0.003569, 1.478544, -0.171117, 0.263368, 1.077015, -0.818754, 0.789243, -1.324375, -1.042110, -0.111810, 0.855312, 0.710417, 0.207374, 0.051069, -1.859863, 0.471250, 0.343095, -0.329158, 0.658307, 0.881425, 1.025847, 0.695186, -1.106904, -0.674593, -0.643316, -1.266535, 0.880324, -0.472249, -0.166647, -1.374939, 0.571644, -0.151005, 1.443033, 0.141320, -0.799235, -0.457068, 0.406124, -0.599292, 2.921068, -1.439711, -0.754839, -0.124090, 0.526196, -0.278004, -1.129980, -1.537265, -0.964287, -0.983896, -0.287749, -0.024299, 1.370456, 1.060111, -0.027980, 0.260603, -0.689702, 1.881503, 0.291090, -0.503172, 0.667621, -0.945277, 0.446048, 0.047110, -1.175890, -0.144072, -1.009388, 0.656667, 0.771593, 1.179139, -1.774420, 0.231202, -0.186975, -1.053716, 0.446150, -0.920796, 0.354669, 0.182790, -0.694951, 0.950916, 0.556538, -0.962969, -0.120720, -0.268164, -0.415330, -0.093160, -0.765481, 0.277226, -0.116567, -0.462237, 0.141419, 0.158317, 0.702666, 0.928361, -1.534021, -0.270447, -0.710651, 1.374264, 0.689749, 3.566372, -0.124516, -0.850984, 0.504751, -0.657685, 0.377078, -1.228175, -0.571974, -0.332468, 0.979415, 1.531067, -1.018866, 0.067803, 0.844257, 0.206362, -0.245772, -0.718637, 1.024969, 0.090588, -0.134815, 1.020640, 1.244755, 0.635519, -0.734049, 0.698059, 0.668903, 0.483132, -1.921140, 0.299685, -0.930194, -0.419870, 0.388393, -0.270623, -1.357992, -0.782030, 0.463358, 0.421239, 0.721031, 0.427722, -0.209575, -2.337184, 1.262822, -0.198376, 0.231690, -1.413114, -0.325461, 0.192994, -2.332793, -0.293004, 1.399074, -0.192769, -1.724912, 0.584437, 0.353184, 1.887444, -1.272124, 0.641172, -1.375394, -0.163449, 2.821177, -2.477411, 1.326315, 0.061564, 2.301966, -0.810142, -0.402372, 0.540343, 1.249783, 0.591069, -0.138611, 0.594662, -0.592522, -1.065648, -1.288335, 0.447361, 0.391887, -1.329378, -0.704860, 0.742442, 0.216348, -1.553384, 0.375023, -1.646798, -0.684800, -0.435528, 0.810629, 0.130634, 1.907418, -1.790417, 2.624369, -1.096402, 0.250215, -0.484635, 1.218256, -0.669078, -0.250831, 0.403899, 0.242680, -0.857059, 0.169672, -0.220225, 0.067639, -1.853691, -0.268161, 0.324559, 0.593420, -1.279758, 1.402079, -1.714236, -0.992492, 1.534076, 0.767370, -1.977483, 0.836829, -0.619616, -0.292617, -1.310797, -0.055676, -0.050530, 0.610245, 0.052250, -0.318296, 0.537661, 0.100220, -0.263842, 1.251635, 1.863941, 0.269421, 0.496513, 0.399314, 1.240574, -0.772145, 0.239661, -0.183467, 0.451664, -0.587029, 1.506752, 0.015199, 0.542490, 0.548581, 0.595628, -0.318247, -0.850087, -0.950729, 0.465935, 0.193024, 0.020382, -0.311754, -0.787446, -0.784583, -0.332131, 0.336644, 0.022421, -1.215302, 0.562622, 0.297452, 0.479337, -0.858014, -0.211506, 0.877656, 0.407259, -0.919139, -1.412689, -0.461445, -1.443547, -0.636703, -1.569800, 0.909720, 1.430994, 0.190290, -1.104897, -0.288245, 0.876744, 0.750762, -0.996442, 0.353068, -1.722070, -0.559863, -1.196862, 1.471921, 1.386451, 0.833152, 1.451712, 0.058966, 0.163522, -0.341077, 0.014160, -0.634544, -0.258101, 0.300472, -0.630895, -1.034697, -1.514110, -0.660259, -0.053732, -0.734900, 1.353045, 1.282121, 1.382260, 0.386143, 0.956780, 1.204682, 1.846641, -1.206605, -0.909605, -0.003157, -0.000223, 0.521086, 0.567327, -1.285228, -0.211982, -0.268097, -0.114335, 0.690258, -1.906635, 0.604761, -0.114527, -1.106542, 1.201965, -0.968681, -2.255752, -0.227271, -0.110396, 1.132923, 0.916561, -0.901203, -1.879336, -0.339645, -0.248529, -2.381851, -0.160403, -2.859949, -0.029038, 0.212314, -0.102780, -0.107117, -0.477585, -0.416467, 0.342099, 0.315275, 2.240185, 0.530741, 0.426599, 1.232352, -1.765914, 0.444683, 0.840785, 0.899599, 0.625559, 1.742596, -0.578144, 0.767301, -0.689044, -1.033367, 0.492182, 1.343905, -1.166665, 1.475574, 1.324724, 0.097573, -0.349052, -0.632507, -0.557486, -0.121150, -0.772417, 0.255336, 0.246395, -0.222814, 0.304945, -0.572913, -0.774187, -0.713108, 0.873850, -0.909453, 0.217430, -0.579697, -0.908699, 1.522127, -1.209194, -0.151111, 0.484549, 0.275886, -3.351374, 0.563630, 1.261956, 1.188991, 1.812187, -1.076403, -0.445590, -0.243309, 0.833002, -1.602767, 0.017407, 1.006989, -1.309355, -0.140950, -0.447749, -0.391930, 1.213382, -0.466735, -1.027094, 0.175498, 0.224055, 0.171565, -0.551237, -0.696875, -1.375890, 0.008595, 0.124405, -0.405735, -0.654242, 0.609839, -0.482171, -0.721600, -1.076034, 0.949154, -0.274354, -0.605726, 0.529019, 0.409802, -0.370848, -0.323477, -2.013690, -1.914146, -0.553442, 0.489118, -0.166612, -0.904206, 0.365733, 0.284435, 0.581881, 0.293662, 1.940614, -0.053730, -0.562597, 0.166204, -0.034657, 0.232666, 0.567458, -0.274676, -0.673414, 0.583490, 0.019225, -1.019031, -0.192786, 0.041915, 0.819685, -1.655979, -0.923991, -0.536494, 1.023249, 0.875873, -0.349267, 1.154426, 0.675045, -0.271128, 0.919425, 1.606050, -0.383332, -1.730164, 2.083037, 0.682875, 0.642460, 1.246917, 0.796925, 0.587290, -0.067455, -0.049825, -0.660855, 1.221030, 0.599741, 0.155987, 0.236603, 1.643773, -1.434235, -1.240380, -2.358667, 0.421722, 0.571980, 1.592563, 0.689440, 1.346162, -1.235697, -2.307466, 0.249661, 0.795872, -0.199412, 0.067574, 0.050926, -1.338267, -0.062789, -1.517283, 0.171240, 0.943095, -1.129775, 1.128675, 1.021400, 0.865726, 0.019756, 0.358419, -1.601556, 0.175556, -0.186374, -0.603905, -0.221676, 0.399662, 0.770635, 0.650266, -0.191853, -0.705799, 1.303510, -0.790246, -0.355699, 1.120368, -0.966970, -0.346966, 0.807937, 0.182099, -0.643863, -1.339869, -0.517419, 1.090229, 0.113312, -1.191045, 0.570374, -0.282560, 1.767856, 1.239000, 0.495570, 1.067907, -0.522559, 1.208784, 1.908317, -0.459265, -0.355194, -0.326420, 0.192193, 0.016200, 0.247967, -1.445105, -0.531461, 0.233343, -0.603176, -0.101607, 0.492800, -0.956807, -0.197843, 0.712930, 0.415724, -0.777211, 1.608439, 0.248479, 1.764533, 0.946165, -1.287674, -0.706395, -0.538102, -0.280893, 0.864306, -0.004605, -2.642781, 1.515160, -1.041577, -0.219260, 0.652457, 1.184279, 0.908110, -0.430675, -0.421237, 1.249938, -0.628080, -1.319272, 2.587377, 0.349025, 0.559089, -0.510717, 0.282395, -1.050557, -0.996782, 0.535615, 1.979846, -0.742469, -0.766504, 0.600828, 0.078082, 0.808693, 0.085032, 1.220272, -1.229239, 0.799452, 1.259958, 0.100966, -2.091216, 1.605515, 0.861368, -0.004704, -0.356753, 0.544389, 1.018540, -0.611060, -0.045048, 0.746918, -1.125080, -1.736697, 0.361980, 0.687073, 1.113403, -0.778031, -0.674569, 0.138886, 0.949562, -0.096342, 2.890121, -0.167693, 1.243153, -0.594972, -0.464512, -0.599216, 0.816519, 1.626926, -0.568935, -2.240093, -1.415238, 1.143895, 2.219984, -0.704653, -0.923683, 0.311847, 1.878664, 0.977680, -1.299896, -0.071292, -0.407952, 0.133068, -1.083324, 0.048283, 0.402467, 1.755934, -0.511331, 1.667513, -0.953648, -0.389607, -0.677363, 1.283248, 0.167665, -0.373921, -0.108647, 0.902080, -0.591049, -0.402724, -0.618408, -0.325697, 2.157628, 1.176920, -1.025583, 0.528410, 1.918578, 1.149557, -0.493612, 0.006497, 0.626100, -0.103714, 1.320319, 0.734537, -0.820399, -0.484145, -0.262889, -2.122679, 2.250782, -1.246572, 0.537250, -2.221998, -0.162213, 1.259681, 0.814287, 0.184985, -0.962400, -1.034561, -0.518209, 1.485556, 0.157694, -0.016542, 1.446635, -0.792916, -1.111207, 0.357275, 1.993596, -0.091866, 1.784798, -1.218022, -0.774211, -0.565065, 0.751498, -1.198581, -2.168022, -0.556857, -2.152738, 1.769687, 1.226500, -0.979712, -0.133655, -0.604645, -1.233752, -2.574555, 1.010375, -0.527131, 0.526848, 0.792683, -1.827865, -0.286715, -0.173819, 1.723965, 0.069501, -0.017190, 0.180904, 1.723890, -0.158595, 1.716092, -0.816275, -0.431658, -1.126670, 0.082952, -0.253298, -0.396215, 0.817629, 0.924884, 0.882107, -0.598875, 0.340469, -0.651711, 1.465118, -0.193488, 0.231429, 1.478785, -0.550179, 0.058062, -1.127797, -0.472308, 0.293994, -0.765727, -0.084414, 1.488963, -0.717431, 0.559346, -1.172878, 1.077000, 0.992306, -0.354559, 1.657768, 0.917916, 0.130025, -0.824396, -0.339309, 0.443658, 0.241693, 0.150563, 0.579415, 0.734368, 2.067839, 0.024940, 0.613714, -0.489831, -0.017854, 0.463202, 0.837997, -1.523380, 1.166797, 0.705606, -1.274280, -0.608049, -0.093057, 1.247089, 0.548793, -1.499837, -0.419736, 0.642094, -0.222377, -1.006101, 0.265313, -0.972350, 0.100818, 0.167672, 0.916850, -0.005351, 0.151749, -1.477119, -1.595987, 0.007490, 0.247580, 0.676573, -1.048314, 0.873673, 0.543851, -1.890718, -1.556902, -0.651022, 2.266067, 1.111217, -1.512944, -1.039097, 0.561027, -2.022777, -2.267170, 0.559551, -0.181163, -0.380800, 2.568506, -0.048274, -1.532602, -0.711214, 0.456754, -0.298552, -0.852297, -0.673568, -0.025357, 1.506788, 0.729719, -0.627132, 0.704863, -0.771358, -0.234923, 0.512881, 0.098700, 1.558895, 0.626332, -2.404042, -1.593118, -0.910586, -0.073949, 1.369000, 0.777692, 0.618456, 1.555888, 1.080292, -1.575631, -0.177454, -0.056923, -0.111512, 2.395575, 0.822964, 0.508957, 1.777427, -0.617741, 1.529521, -0.342464, 0.931729, 1.419697, -1.781377, 0.633057, -0.644221, 1.926503, 0.085201, 0.120767, 0.280810, -0.435773, 0.623020, -1.141157, -0.742953, 1.233315, -0.863444, -0.078697, 0.942146, 0.470585, -0.530560, 0.064825, 0.556514, 0.385438, -0.043630, 0.443434, -0.324671, -0.091268, 0.262365, -0.691050, -1.211713, -0.382227, -0.142457, 0.619695, -0.463709, 0.324579, 0.979687, 1.240082, -0.511788, 1.195837, -1.035440, -0.279212, 0.101900, -0.598191, -1.541087, 0.580573, 1.591929, 0.057784, 0.869312, 1.930244, -0.880732, -1.985414, -0.506545, 0.782657, -1.185044, -1.264253, -0.595761, -1.051046, -0.484551, 1.632064, 0.313763, 0.621775, -0.143035, -0.888251, -2.920872, -0.155119, -1.318960, -1.583609, -0.510871, 0.531714, -0.469161, 1.473488, 0.490432, -0.975485, 0.960669, 0.174642, -0.097040, -1.036655, -0.079122, -0.740911, 0.062468, -2.204673, 1.467913, 0.477918, 0.116096, -0.942733, -1.106317, 0.072211, -0.547503, 0.904341, -1.249585, -0.860086, 0.669360, 1.599892, -1.603413, -0.014208, -0.049093, 0.330523, -1.828221, 0.016778, -0.011054, 1.537207, 0.029996, -0.083702, -0.295712, -0.195850, -1.196717, -2.485331, 1.934735, -0.848199, -0.046871, 0.696282, -0.669326, 0.542737, 0.172240, 1.392935, 0.294058, 0.681605, 0.547594, -0.046375, -2.416908, 0.480014, -1.272707, 1.061551, 0.118739, -0.383038, 0.283612, -1.184908, 0.794572, -0.573631, -1.189312, -0.696585, 0.240662, -1.318323, 1.536712, 1.805373, -0.789958, -0.616833, 1.583329, 1.025888, 1.315872, 0.290487, -0.310958, 0.598684, -0.497681, -0.730004, 0.281990, -0.920312, 1.393849, -1.354705, -0.545094, -0.301724, 0.889377, -0.250373, 0.726920, -0.027046, 1.059530, -0.777431, 0.373186, 0.815229, 0.131231, 2.739349, 1.512660, -1.553339, -2.415697, 1.217249, -0.894998, 0.090184, -0.136636, -0.906759, -0.281050, 0.568048, 0.065008, 1.863625, -1.438105, 1.686268, 0.011170, -0.015524, 0.223378, -3.682401, 1.938639, -0.579236, 0.218250, 0.100543, -1.178987, -0.812673, -0.420874, 0.188755, -0.096524, 1.276729, -0.726908, -1.244621, -0.481897, 0.068780, 0.079879, 0.884271, 0.943349, -0.882118, -0.662946, -0.829145, 1.138314, 1.519584, 0.182805, 0.176011, -0.926139, 0.149675, 0.430039, -0.136137, -0.461944, -0.990307, 0.680911, -2.666276, -0.251063, 1.714038, 0.000528, -0.164745, -1.389129, 0.239693, -0.505532, -0.685435, -1.139819, -1.226522, -0.778057, 0.418442, 0.243463, 0.186250, 1.187090, -1.001649, 0.203274, -0.734418, 0.060924, 0.265017, -1.721533, 0.053766, 0.964496, -0.114929, -0.492270, -1.406500, -1.670267, 0.962184, -1.978659, 0.919970, -0.209585, 0.783528, -0.253345, 0.360200, -1.625606, 1.290281, 0.252339, -0.377120, 0.638660, 0.257796, 1.001119, -0.862327, 0.713054, 0.799897, -0.818112, 1.384802, 0.485443, -0.316917, 0.582256, -1.315596, -0.805507, 0.522336, 1.604858, -0.067545, -0.053981, -1.074190, 0.844104, -0.774598, 1.165458, -0.887537, 1.515639, 1.234961, -0.064688, -1.747003, -1.064277, -0.822226, 1.288767, -0.231767, -0.666388, 1.833640, -0.600576, 1.066921, 0.404157, -0.278544, 0.385754, 1.607612, 0.437911, -0.874871, -0.627339, -1.109766, -0.280439, 0.119296, -0.007002, -0.984769, 1.026550, -1.459203, -0.326416, 0.416399, 1.703338, -1.007679, 0.848175, 0.455717, -1.595431, -0.442700, 0.353559, 0.507432, 0.149295, 0.348113, 0.406490, -0.269495, -0.246989, -1.733033, 2.018522, -0.161838, 1.063041, 0.309429, -0.528215, -0.017913, 0.420652, 0.202227, 0.124760, 1.433776, 0.623397, 1.201888, 0.067524, -0.569915, -0.359513, 0.674693, -1.025972, -0.695277, 1.009998, 0.539813, -1.531212, 0.427138, -1.141468, 0.929636, -1.833895, -0.324264, -1.029380, 0.199336, -1.374692, -0.178120, -1.524448, 0.376529, -0.973059, 1.014021, -1.021638, 0.735416, -0.982157, -0.257728, -1.088956, -0.398297, 0.245894, -1.068539, -1.335821, 0.590254, -1.841388, 0.853449, -0.166978, 0.521762, -0.934798, -0.606380, 0.108287, 0.165368, 0.164867, -0.188175, 0.234334, -0.024971, 1.002810, -0.513853, 0.251096, 0.811551, -1.033139, -0.337163, 0.074256, 0.812788, -0.308629, 0.727529, 1.678787, -0.490280, 1.158648, 1.257843, -0.475275, 0.933952, -0.429669, 0.614773, 0.791100, -1.352786, -0.655306, -0.243674, 0.251224, -0.159287, 2.073973, -0.737046, -0.359113, -1.931410, 0.166243, 0.369443, 0.878593, -0.058655, 0.829478, 0.019447, 0.601612, -1.290487, -1.890475, -0.047548, 0.259433, -0.866423, 0.150654, 0.186377, 0.259943, 0.089656, 0.266525, 0.144123, 0.370112, 0.515036, -1.878658, -0.388458, 0.631420, 0.204711, -1.355232, -0.485703, 0.543544, -1.383837, -0.360198, 0.315029, -0.606659, -1.953218, 1.733009, 0.360952, -0.190250, 0.774334, -0.647306, -0.455031, -1.432304, -0.785049, -1.362015, -1.510486, 0.496864, 0.874012, 0.601608, -0.099109, 1.185074, 0.351491, 0.893622, -0.924807, 0.293802, -1.333382, 1.777036, 0.894637, -0.671921, -0.109275, 0.969962, 0.818597, 0.237727, 0.068312, -2.738088, 1.122171, 1.638367, 1.128013, -1.855811, -2.681514, -0.578662, 0.709713, 0.915581, -0.072399, -2.672323, -1.280883, 0.122200, 0.330349, 0.426564, 0.314308, -1.287656, -1.414885, -0.217733, -0.148653, 0.001236, 0.323342, 1.336801, -2.493625, 0.386531, 1.045336, 0.849905, 1.016614, 0.498010, 0.686612, -1.627360, -0.185732, -2.644802, 0.494976, 0.478756, -0.659601, 1.127595, 0.755228, -0.411988, -2.002324, -0.077832, -1.910361, -1.358753, -0.526233, 0.378215, -1.813978, -1.056407, -0.337642, -0.111258, 1.157851, -0.702469, 0.556684, 2.329823, -1.590054, 1.224630, -2.586228, 0.480409, -1.451962, 0.066625, 1.402556, 0.126443, -0.264330, 0.397438, -0.641968, -1.748626, -0.839023, -1.681687, 0.063233, -1.585335, -0.327108, -1.748593, -1.245650, -1.254503, 0.559760, 0.499524, 0.151041, 0.108908, 1.155472, -0.306974, 0.000008, 1.204290, 1.042811, -0.484477, 0.161314, -1.195788, -1.522152, -0.912986, 0.245539, 1.147408, 1.046286, 0.650705, -1.207048, 0.520155, 0.077060, -0.821887, -1.277221, -1.277611, 0.505813, 0.262927, -0.798607, -0.192001, -0.531348, 0.189674, -0.746132, -0.238311, -1.049643, 0.341352, -0.016731, 0.153244, -1.274906, 0.655110, 0.304696, -0.990771, 1.243637, 1.536615, -1.496360, 0.555788, 1.364899, 1.324265, -0.841493, -0.020034, 0.020804, 1.078908, -1.607777, 0.521991, 1.540082, 1.771276, -1.506030, 2.391822, -0.063433, -0.642624, 0.648083, 0.479580, 1.275694, -0.486507, 0.295045, 0.195243, -0.273266, -0.521213, 2.167773, -1.726145, 0.327934, 0.340251, -1.401374, 2.124880, -2.736233, -0.055937, -1.314996, -0.073534, -0.242145, 0.704445, -2.086684, -0.377609, 0.474527, -1.075452, 0.901716, 2.481947, 0.613740, -0.385028, 0.279409, -0.434681, 0.389564, -0.226906, -0.254633, -0.344485, 0.875618, -1.305035, -0.067206, 0.115238, -0.602964, -1.365619, -0.793519, -1.421518, -1.686223, 0.868426, -0.075620, 0.187770, 0.500019, -1.183785, -0.554093, 0.410298, 0.248384, -1.209803, 0.347289, -0.607527, -1.879776, 0.499848, 0.394923, -0.791489, 0.057770, 0.483823, 0.725299, 1.610743, 0.350216, -0.625830, 1.807428, -1.300791, -1.182112, 1.775072, -1.057363, -1.054361, 0.223574, -2.268362, 1.235084, 0.157384, -0.244367, 0.269035, -1.493075, -0.551766, -0.987267, 0.705870, -0.660668, -0.267143, 0.079441, -0.297206, 2.527272, 0.450978, 1.075417, 0.258671, -0.882825, -1.065761, -1.019956, 0.348216, 0.918903, -0.037242, 1.573264, -1.824575, 0.885571, -0.350550, 0.267107, -0.558293, 0.622606, 0.654009, 0.311606, -0.417481, 0.233355, 0.898318, -0.280748, 0.042886, 0.553107, -0.035012, 0.604172, -1.676463, 0.464258, 1.345130, -0.914248, 0.771627, 0.599052, 0.369347, 0.039828, 1.913054, 0.115794, -0.333005, 0.388211, 0.034640, -1.454868, 1.417892, -0.408058, -0.023750, -0.809546, 0.049693, 0.025758, -1.060712, -0.847160, 0.181399, 0.007704, 0.600926, -2.199770, 0.525866, 0.066014, 0.957553, 0.171163, -0.760040, -1.057865, -0.830235, 0.620080, -0.258280, 0.966446, 1.570896, -1.349868, -1.051303, -1.137575, 0.902306, 0.663752, 0.193472, 0.469840, -1.394843, 0.315379, -0.249377, -0.945033, -0.214055, 2.474652, 1.151416, -2.415019, 0.024142, 0.567270, 0.420534, 1.194394, 0.980156, -1.477530, -0.959148, -0.101663, 0.244513, 1.371840, -1.405291, -0.598239, -1.557347, 1.974495, -1.046803, 0.283064, -1.296190, -1.329806, 0.195923, -0.784332, -0.736884, 0.093060, -0.628140, 0.215582, -2.574977, -0.692938, -0.075386, 0.722974, -0.265588, 1.315609, 1.842344, -0.796084, 0.245694, -2.208225, -1.989527, -0.030960, -0.295254, 1.439740, 1.293115, 0.891453, 0.609592, 1.063672, 0.580866, 0.720560, 0.453012, 1.712947, -0.438473, -0.762288, -0.978849, -0.836594, -0.331646, 0.546199, -1.508737, -0.021978, 0.021797, 0.426111, -0.372302, -1.452032, 1.611955, -0.321101, -0.343407, 0.664393, -0.843408, 0.392098, -0.725719, 0.619115, -0.297802, -0.557919, 0.474588, -1.003598, 1.858999, -1.768684, -0.982831, 0.732087, -0.877866, 0.659654, 1.088830, -0.254189, -0.448058, -1.310799, 0.389760, -0.568225, 2.433622, 1.120165, 0.354420, 0.292455, 1.762908, 0.483878, -1.029045, -1.078053, 0.864249, -0.157014, 1.081915, 0.883869, 0.027515, 1.206630, 0.278725, 0.855335, 2.081568, -1.820438, -1.305863, 0.787106, -0.903417, -0.619301, 0.272339, -0.033205, -1.561786, 0.285119, 0.033807, -0.534207, -0.933991, 1.073474, -1.256944, 0.656181, 1.290542, 1.487641, -1.361090, 0.284984, 0.974329, 0.044320, 1.489390, 0.239720, -1.137258, 1.024203, -0.119976, -1.039401, -2.044515, 0.986866, 0.162736, 0.625868, 0.567982, 0.289892, 0.138536, 0.904712, 1.328434, 2.760732, 0.616492, -0.843869, -0.594300, 0.446717, 1.910433, -0.826255, -0.831555, 0.190951, -0.031685, 1.421889, 1.418121, 0.945533, -0.747575, -1.226137, -2.004908, 1.200339, -0.468928, 0.102181, 0.569318, -1.644788, -1.210173, -0.692440, -0.374328, -0.952120, -0.418467, 1.268093, 0.499477, 0.183173, -1.359025, 0.511653, -1.724588, -1.680592, -0.201966, -0.741051, -1.055664, 0.517904, -0.391775, -0.231744, -0.797944, 0.482491, 0.019750, -0.894941, 0.531607, 0.871080, 0.342641, -0.054020, -0.602271, -0.842157, 1.632911, -0.432607, -1.248215, -0.764442, -0.519356, -2.138398, -0.372431, -0.584854, -0.734228, 0.245743, -0.158299, 0.640930, -0.558029, 0.320241, 0.627393, -0.479089, -0.912147, -0.862956, 0.257970, 0.420449, 1.037621, -1.107136, -0.906982, -0.875634, -0.965965, 1.225511, -0.887498, -0.837290, -0.872077, -1.066723, 1.084193, -0.151992, -1.422060, -1.106786, 0.160547, -0.124578, 1.003830, 1.289142, -0.089685, 1.023673, -0.727708, -0.255453, -1.686007, 1.116712, 0.151654, 0.358602, -1.289897, -1.416274, 0.016376, 0.031421, 0.465881, -1.116616, 0.520704, -0.328395, 0.101971, 0.720823, 1.214356, 1.010513, -0.375697, -1.034463, 1.262545, 1.610214, 0.369468, 0.472429, -0.884633, 0.105961, 0.488407, -1.104202, 0.487092, -0.953297, -0.139094, 0.321016, -1.124990, 0.163159, 0.202292, 1.047819, -0.839838, 1.626517, 0.029983, -0.482763, 0.159358, -0.283699, -0.969671, -0.979734, -0.101481, 0.273784, -0.821945, -1.040035, 0.758046, 0.832477, 0.182040, -0.520007, 0.283280, 0.315367, 0.042447, -1.286729, 1.034373, 1.260660, -0.163208, 0.572441, 0.185302, 0.832071, 0.013702, 1.436937, 0.434320, -0.485199, -0.207363, -0.697035, -1.551334, -1.096316, -0.305565, 0.753113, 0.000740, -1.591918, 0.024043, -0.093740, 1.414343, -3.046657, -1.062601, 1.035958, -1.223915, 0.182023, 0.476589, 0.137829, 0.933349, -1.563596, 0.115677, 1.116658, -0.333039, 2.049627, 0.410208, 0.427318, -2.297213, -0.648292, 1.509938, -0.418864, -0.871677, 0.428514, 0.604498, -0.006634, -0.282755, 0.000462, 1.506937, -0.867303, 0.406387, 0.736304, -1.699937, 1.087410, 0.248186, -0.940611, -1.007897, 0.788702, 0.830100, -2.035216, 0.324135, 0.388196, -1.056560, 1.193073, -1.286124, -3.005216, 0.099085, 0.737121, -1.874100, -0.067278, -0.896329, 1.612255, 0.033986, 0.757249, -0.655228, -0.137359, -1.115782, -0.462071, -0.252107, 1.182235, -0.487541, -0.958497, 0.411339, 0.231504, 0.085546, -0.486534, 1.213459, 2.382589, -0.800908, 0.414941, 0.342301, 0.769013, -0.314359, 0.660638, -0.513393, 1.978124, 1.019556, 1.938659, -1.017823, -0.373283, 0.164167, 0.807838, 0.914389, -1.220229, 1.611372, 1.119381, 0.617338, -1.312344, 1.129519, -0.743040, -0.933772, 0.142526, 0.825024, 1.085350, 1.147821, 1.649266, -1.081058, -0.204253, -1.518060, 1.461462, 1.868728, -0.811507, 0.207322, 0.830685, -0.665853, 0.606187, -0.977479, 0.093364, 0.335359, -0.555046, 0.527579, 0.010167, 1.584423, -0.163144, 0.040270, -1.434839, 0.003488, 0.856132, -0.290849, -0.808032, 0.073972, -0.795282, -0.498944, -1.720397, 0.712346, -1.250164, 0.940977, 0.023570, -1.137335, 2.019404, 0.339481, -1.479596, -0.238442, 0.571046, 0.582649, 0.140382, -0.279423, 1.017947, -1.074007, -0.816864, -1.927785, -0.139165, -0.244850, 0.922583, -0.605840, -0.461828, -0.771518, 1.050515, 0.394693, -2.019184, -0.548718, -1.481882, -1.644873, 0.836751, -2.658554, 2.080260, 1.093618, -1.370649}, - { -0.000310, -2.254341, 0.192980, 2.166330, 0.280113, 2.722518, 0.122598, 0.110828, -0.761507, -0.830603, -0.916333, 0.113737, 0.417542, -0.201436, 0.382437, -0.850212, 0.080061, -1.093722, -0.320704, -1.500217, -1.844268, -1.029253, -1.269302, -0.865891, -0.281235, -0.412290, 0.021324, 0.601537, 1.049948, 0.024785, 0.001166, 0.426808, 1.014524, 1.784908, 0.502277, -0.163223, 1.848508, 1.100986, 0.756790, -0.253453, -1.849426, 0.303309, -0.165562, 0.152136, 0.851701, 0.522452, -0.172650, 0.439039, -0.697742, 1.942938, 1.171037, -1.411139, -0.465668, -0.631027, -0.287570, -0.423506, 1.852656, 0.467709, 0.400184, 0.887489, -2.515809, -0.338843, 1.303496, 0.324393, 0.377758, 0.901332, 0.861529, 1.092245, -0.735848, 0.214655, 0.486631, -0.640094, -0.135141, 0.567322, 2.144436, 0.003306, 0.724213, -0.272420, 1.422234, -0.025224, -0.176690, 0.024369, 0.800785, -1.642951, 0.219705, -1.288142, -1.277395, 2.323225, -1.145463, 0.285171, -0.311220, -0.010112, 1.207432, 0.060215, 0.653854, -2.443783, -2.100994, -1.240467, 0.547455, -0.905534, 1.954185, 0.224623, -0.342548, -0.169007, 0.664925, 0.729596, -0.389150, -1.246218, 1.943540, 1.417720, 0.051201, -0.961834, 1.607948, -1.399987, 0.171691, -0.824878, -0.802034, -1.603430, 0.013929, 1.749551, 0.806785, 0.025550, -1.289084, 1.869064, 0.940643, -0.195537, 0.298603, -0.644777, 0.390768, -1.750719, 0.149475, 0.159136, -1.802934, 1.284242, 3.316486, -0.547470, -1.606467, -0.024866, -0.768577, -0.614419, 0.953520, -0.826602, 0.156388, 1.351367, -0.432129, -1.146784, 0.365479, -0.033215, -1.208993, -0.558763, -0.391575, 0.945154, 1.511761, -0.986548, 0.344420, 0.026770, 0.122261, -0.169569, -0.961570, -0.229895, -0.065659, -0.354003, 1.162992, 0.282575, 0.252367, 1.752530, 1.380168, 0.593829, 0.798639, 0.718137, -0.430411, 1.770759, -1.341644, -1.888259, 0.194859, -0.385078, -0.488580, 0.348512, 0.075598, -1.922167, 1.726508, -1.141093, 0.334279, 1.802214, -0.310679, -1.390956, 1.001809, 0.104068, -0.279258, 0.073496, 0.355229, 0.154822, -0.208181, -0.448308, 0.405660, -0.550933, -1.098098, 0.667744, -2.560996, 1.374638, 0.445228, -0.141108, -1.507488, 0.897757, -0.085095, 0.008599, -1.406541, -0.063909, -1.576006, 1.046169, -0.824641, -2.828520, -2.597629, 0.115049, -1.301652, -0.178861, -1.106649, 1.735302, 1.408074, -0.823765, 0.388329, 1.643086, 0.015766, 0.065565, -1.460327, -1.008793, -0.732402, -1.409500, -0.145527, 0.014432, 1.844391, -1.806123, 1.207694, 0.423199, -0.530191, -0.283025, -1.235478, -0.594571, 1.241493, 0.445791, -0.243026, -0.511689, -0.812748, -0.538452, -1.436681, 0.801784, -0.572142, 0.079077, 0.110129, -0.791548, -0.650440, -0.775674, -0.069399, -0.614946, 1.250918, 0.486805, -0.289950, -1.314598, -0.208929, -2.015739, 2.261823, -0.482761, -1.168523, -0.813381, -1.609539, -0.235460, 0.643777, 0.385749, 1.384014, -0.265247, -0.005141, 0.436923, 0.660392, 1.534517, -0.156140, 0.861179, -0.528399, 0.651150, 1.068477, -0.114685, 0.320244, -1.504362, -1.100460, -1.759216, 0.623329, 0.841217, -0.541164, -0.518918, -0.608208, 1.904872, -1.492140, 1.221777, 1.129945, -0.831613, -1.310756, 0.756814, 0.665587, 2.051020, 0.691275, -0.147981, -0.437783, 0.796797, 0.428475, -0.362813, 1.433885, -0.418667, 0.500934, 0.714548, 1.619893, 0.339898, 0.142668, -1.688881, -0.891034, -0.434887, -0.630537, -1.382409, -0.428532, 0.584433, -1.212957, 0.945173, 1.475790, -0.520063, 0.098473, -0.651966, 0.618462, -2.070633, 0.438099, -0.068014, -0.069458, -0.026244, 0.654294, -0.164176, 0.945954, 1.061919, -1.948817, 1.275566, 0.866113, 0.410182, 0.402404, -0.986702, 0.520901, -0.484788, 0.464423, 1.161656, 0.270617, -0.871927, -1.098362, 0.334317, -0.443763, -1.462931, 0.426137, -2.322070, -0.250007, -0.209609, 0.399659, -0.360925, 0.732977, -1.076719, 0.056535, -0.678952, 1.241538, 1.471976, -1.010313, 1.495800, -2.449194, -0.810481, -0.695549, -0.733878, 1.534990, 0.586674, 0.729854, 0.390113, 1.288194, 1.304325, 0.779686, 0.424013, 0.244490, -0.494871, -0.501781, -0.227255, -0.444454, -1.617900, 0.147244, -1.093506, -0.737736, 0.111506, 1.321203, -0.728688, -0.097831, -0.596117, 0.550638, 0.978121, -1.271338, 0.110187, 0.763669, 0.437025, 0.650818, 0.871548, -0.253076, 0.443113, -0.668316, -0.055860, -0.176602, -0.147981, 0.925539, -0.516877, -0.174672, 0.995183, -2.216053, -1.041371, -0.175467, 0.169170, 2.190169, 0.416535, -0.945989, -0.436305, 1.483174, -0.734064, 1.237494, -1.366030, -1.252090, -1.134828, 1.159807, -1.235594, -0.459376, 0.978717, -0.010540, -0.689567, -1.661429, 0.501941, 1.008219, 0.044239, 0.885596, -0.388228, -0.002249, 1.344049, -0.353879, 0.661322, 0.190633, -1.375905, -1.167869, -1.485361, -1.100886, -0.840231, -1.804455, -0.044461, -1.010893, 0.086509, 0.257084, 1.912327, -1.093373, 0.503289, 1.190409, -0.155940, 0.068600, -0.476641, 0.231294, -1.257760, -1.818569, 0.627606, -0.758381, -1.043462, 1.299260, -0.793737, -0.052611, -3.366881, -0.256570, 0.811687, 1.144203, 1.267074, -1.224903, 0.653482, 0.697111, -0.038015, -1.976700, 0.427569, -0.858028, -0.869722, -0.481895, -0.574310, -0.294258, -0.763877, 0.835772, 0.347611, 0.402093, -0.865398, -0.433433, -1.782931, -1.005681, -0.289996, 1.315005, -2.146737, -0.140296, 1.498453, 0.477140, 0.506560, 0.087171, 0.200461, 0.913853, -1.298919, -0.417357, 0.659791, -1.262264, 1.138160, 0.139477, 0.430436, 1.308126, -1.663393, 0.206676, -1.053060, 0.928127, 0.848650, -1.403534, -1.479429, 0.351608, -0.126559, -0.058183, 1.363872, 0.511943, 0.382296, -0.802274, 0.167611, 0.114009, -0.156027, 0.337398, 1.888498, -1.142142, -0.190050, -2.309773, 1.882275, -0.908648, 1.156070, -1.083581, -0.260234, -0.264256, 0.181673, 0.998001, 0.708337, -0.820202, -1.056552, -0.549025, -0.937117, -0.607025, 1.091182, -0.349356, -0.474430, -0.095454, 1.996152, -0.563996, -0.316541, -0.524540, 0.944083, 0.770946, 0.190239, -0.540259, 1.345416, -0.275899, -0.350663, -0.323367, -0.948036, -0.512628, -0.154243, 0.342741, -0.486023, 0.453986, -0.626529, -0.413604, -0.850539, 0.825574, -0.248336, 1.645465, -0.731914, -1.110464, -0.262465, -0.919119, 0.684329, 1.452496, -1.107936, 0.472311, 0.717388, 1.081823, 0.722107, -0.309873, -1.778788, 0.012027, 0.343833, -0.711979, -0.382678, -1.215450, 0.927912, -1.280086, -0.286294, 0.927771, -1.284849, 0.044937, 0.987196, -0.600440, -0.764728, 1.223866, -1.749675, 0.558138, -0.225351, 0.291901, 0.763121, -0.186465, 1.231005, -0.220323, -1.375887, 1.737642, -1.032664, 0.127659, -0.555420, 0.871373, -1.408172, 0.894561, -0.666330, 0.694927, 0.399955, 1.549409, -0.258027, -0.439352, 0.325821, -0.649380, -1.091650, -1.808038, -0.820617, -0.754702, -0.118449, -2.884336, -0.779339, -0.695485, -0.277610, -0.826338, -1.634652, -0.785844, -0.657514, -0.162834, 0.849195, -0.717902, -0.260639, 0.446192, 1.350384, -1.417821, 0.763972, -1.055862, 0.203728, -0.637896, -0.983660, 0.307930, -0.700155, -1.151881, 1.232924, -0.087471, 1.178497, 0.772805, -0.506379, -1.249147, -0.657724, 0.649312, 0.210307, -0.568956, -0.324855, 0.127071, -1.010271, 0.652170, 0.561438, 0.355418, 0.124805, -0.957488, 0.006968, 0.959223, -0.126700, -0.361955, -0.789080, 0.544005, 0.913224, -0.785589, -0.155600, -0.203003, -1.537046, 0.595913, 0.786441, 0.728597, 1.584259, 0.518694, 1.098688, 0.008041, -1.614629, -0.568905, -1.835487, -0.020016, 0.578924, -0.401919, -0.023403, 0.041107, 1.406335, 0.932857, 0.739902, -0.822920, -0.126282, -0.256550, 0.518091, -1.246217, 0.357496, 0.081969, -0.030353, -0.538042, 0.431942, 0.806271, 0.993471, 1.292731, 0.268364, 0.422041, 1.516722, 0.637980, -1.070699, -1.430245, -0.174343, 0.974864, 0.083185, -2.647842, -0.018127, -1.379291, -0.462449, 0.168273, -1.074682, -1.200976, -0.897146, 0.420637, 0.226442, 1.210052, 0.158170, 1.339542, -0.228302, -1.201164, 0.678916, -0.152949, -0.231727, 0.101638, 1.086831, 0.114915, 0.193390, 0.520851, -0.716967, -0.158356, 1.396594, -1.226498, 1.333604, 1.218269, 0.591765, -0.293817, 0.662191, -0.509264, -0.387811, 0.641513, -0.212842, -0.630714, -0.787177, -0.747907, -0.394068, -1.181964, -0.926449, -0.908128, 1.057537, 2.377935, 1.040726, -2.002921, -0.658259, 0.322599, 0.325795, -0.681271, -1.610763, 0.214933, -0.195344, -0.732711, -0.196677, -0.922687, -1.114889, 0.046415, 0.575205, -2.371344, 0.490256, -1.504221, -0.852711, -2.226125, 0.189895, -0.396921, -0.741804, 1.258941, 0.903288, -0.578421, -0.746789, 0.480031, -1.495332, 0.084609, -0.185206, -0.741113, 0.488575, -0.124369, 0.520563, 0.440869, 1.854863, 0.065226, -0.070361, 0.395258, -0.548170, 0.194915, 0.627369, -1.071900, 0.835065, -0.487628, -0.426167, 0.284812, 1.229825, -0.472712, -3.471420, 1.958858, -1.978104, -1.062547, -0.810515, -0.151313, 1.282813, 1.676740, -0.701179, -0.665178, -0.641462, -0.145278, 0.866631, 1.017982, 0.839669, 0.090788, 0.010057, 2.160164, -1.868641, -0.777389, 0.284229, 0.945118, 1.133554, 1.594268, -0.929536, 0.976802, -1.153779, -1.102439, -0.545499, -0.803905, -0.917282, 1.018876, -0.016141, 0.400464, 1.175557, 0.618795, 0.257319, 0.353386, 0.755966, -0.918343, -0.112120, -1.957283, 0.358920, 0.291256, -0.449399, -0.765446, 0.623519, 0.377403, -0.405677, -1.255373, 0.470263, -0.510526, 0.455812, -0.405665, 0.395529, -0.039041, 0.420992, -0.455029, 0.922937, 0.960143, -0.174892, -1.491710, -0.878063, -0.041892, -1.542657, -0.586673, 0.673121, 0.278594, -0.744022, 0.400989, 0.141963, 0.528980, 0.782551, -0.765592, -3.077056, -0.176554, 0.189274, 0.928752, -0.143396, 0.308576, -0.930744, 0.011027, 0.767563, -0.422409, -0.024158, 0.132172, -1.070852, -0.892882, 0.936342, 0.330952, 0.425262, -0.088240, -0.352334, -0.327625, 1.104257, -1.595690, -0.575914, -0.503969, 0.452161, -1.102836, -1.181777, 0.599525, -0.212906, 0.135153, 0.953362, 0.290967, -0.497606, -0.630167, -1.904923, -0.193714, 1.430350, 0.579384, 1.151465, -0.371174, -0.206153, -0.126312, -1.265094, -1.109821, 0.976947, 0.663322, -1.565278, 1.997962, 1.974330, -0.758936, -0.128314, -0.568111, -0.096106, 0.102235, 0.508888, -0.186083, 0.621621, 0.558730, 0.487501, -1.159593, 0.589362, -0.658880, -0.068941, -0.408277, -0.327204, 0.767794, -0.665051, -0.106410, 0.717532, -0.075429, -0.783067, 0.328551, -0.911251, 0.301051, 2.248267, 0.280039, -0.128141, 0.337225, -1.861028, 2.074609, 1.304927, 0.692123, -0.384749, -0.255998, 0.207496, -0.682414, -0.466749, -0.644177, -0.464388, 2.079644, -0.031801, -2.459670, 0.602536, 0.587000, 0.145167, 0.601113, 0.418047, -1.533176, -1.398823, 1.332788, -1.320762, 1.386994, -1.951933, -0.197956, -1.281009, 1.017715, 0.968581, 0.847523, 0.344410, 0.702560, -0.716600, 1.034190, -0.683654, 0.441521, -0.501335, -1.428623, -0.164273, -1.251855, 0.936645, -0.179842, 0.038877, -0.074363, -2.411149, 1.683910, -0.329958, 0.068716, 0.001927, -0.871787, -0.055828, 0.519028, -0.976447, 0.284948, 0.174078, 0.405544, -1.266704, -0.290867, -0.491148, -1.137185, 0.243461, 0.820727, -0.281501, 0.357176, 1.026953, 1.380192, 0.026565, -2.035794, -2.683347, -0.793371, 0.247048, 0.436278, -1.463137, 0.510608, 0.408506, 0.680546, -1.269389, -1.674156, 0.055552, -0.214216, 2.546355, -1.356142, -0.225836, 0.233195, -1.396419, -1.372800, 0.698696, -1.345543, -1.160208, 0.375353, -0.321001, -0.098894, -0.746127, -1.188361, 0.241601, 0.213069, -0.687789, 0.000259, -1.697009, -0.392925, 0.550013, 1.049769, -1.220510, 0.986781, -0.504827, 1.138408, -0.081807, 0.527459, -0.642788, -2.293021, -1.063609, 0.995131, 1.072966, 1.894066, 0.590662, 0.416504, -0.013372, 0.141664, -0.072102, -0.536056, -0.306425, -0.288491, -2.726400, -1.362125, -1.095878, 1.260155, -2.240189, -0.783740, -0.736593, 2.082050, 0.206090, 0.683437, 2.472804, 0.500268, 0.921836, 1.087455, 1.083292, 2.150990, 0.669659, -1.055766, -1.008252, -2.406810, 0.158756, -1.346463, -1.226624, 0.234445, 0.372226, -0.395401, -1.031653, -0.073567, 0.028250, -0.517777, 0.920520, 0.401587, -0.561708, 0.783198, 0.612223, -2.623595, 0.267330, 0.833980, -0.668182, -0.846267, 0.164838, -2.062011, -0.267630, 1.234690, 1.486353, 0.804720, -0.261752, 0.854011, -0.340968, -0.080165, 0.045658, -1.077075, 1.101985, 0.508550, 1.267486, 0.129629, 1.098764, -0.080763, 1.326010, 1.075671, 1.177864, -1.958402, -1.406060, -1.044418, 2.197954, -0.070487, -1.178608, -0.729226, -1.684683, 0.588851, 0.607503, -0.758390, -0.037811, -0.903945, -0.908954, 1.296130, -0.858210, -0.336361, -1.514495, 0.418092, -1.448387, -0.037263, -0.730364, 0.767328, -1.039257, -0.187513, 0.250304, -1.167844, 0.905511, 1.225566, 0.773329, 0.590053, -0.395775, -0.967780, -0.449805, 0.066671, -0.911307, -0.146448, -0.650075, -1.733644, 0.202639, -2.096868, 0.777623, 0.139698, -0.666559, -0.348310, 1.583402, 0.597975, -1.362816, 3.044469, -0.970940, 1.108881, -0.033359, -1.906896, -0.126966, 0.989336, 0.535150, -2.518695, -0.988642, 0.882000, 0.148014, 1.550435, 0.454611, -0.467841, -0.539649, -2.464569, -0.438146, 1.604214, 1.055978, -0.347897, 0.594906, 0.276337, -1.195851, -0.094712, -1.940078, 0.261595, -0.559067, -0.175453, -1.062460, 0.529136, 0.628452, -1.994576, 0.447600, -2.157587, 0.028968, 0.585512, -0.665303, -0.438573, 0.692657, 0.237587, 0.519565, 0.536739, 1.012157, -0.375979, -0.244076, -0.221519, 0.641126, 0.435968, 0.309686, -1.694985, 1.194197, 0.791178, -0.025695, -0.380001, 2.650587, 0.991207, 0.676633, 1.975837, -0.032809, -1.581086, -0.776096, -0.873394, -0.691602, 1.384972, -1.586605, -0.106223, -0.509311, -1.260914, -0.270195, -0.447073, 1.718911, 1.288213, -0.409454, 0.161570, -0.510411, -1.414662, 0.237212, -1.137569, -0.580576, 0.981392, -1.552203, -1.030880, 0.597492, -0.736982, 0.244241, 2.098681, 1.353868, 0.189834, 0.063874, -0.322596, -0.875432, 1.856609, 0.978770, 0.567828, -0.673501, -0.051392, 0.590863, 0.358643, -0.510432, 0.233621, -0.311325, 0.285921, 0.145806, 0.366766, -0.318504, -1.333216, 0.109532, 2.276802, 0.056999, 0.787855, 0.001969, 1.462392, 0.781060, -1.399222, 1.000759, -1.229889, -0.943922, 1.011972, 0.119094, 0.579928, 0.445671, -1.600450, 0.351057, 0.000005, -1.258211, 0.438742, 0.384129, 1.257095, 0.243613, 0.732215, 0.563773, 0.558158, -0.005431, 0.498690, 0.473708, 1.018654, 1.121101, -0.939852, -0.213199, -0.276401, 0.004909, -0.949371, -0.208996, -0.621509, -0.006088, 1.047576, -0.261587, 0.758026, -1.042452, 0.173167, -0.974808, 0.720904, 1.928434, -1.007969, 1.151387, 0.757279, -1.141207, 1.184501, -1.205198, -0.118223, 1.152584, -0.492933, -1.082554, 0.817773, 0.859660, 0.556207, -1.495700, 0.487703, -0.101187, 1.572150, 0.046708, 0.286033, 1.192786, 0.325252, -0.565112, 0.308252, -0.056969, -1.307379, -0.494229, 0.158643, 1.466922, -0.058740, -1.426654, 0.952023, 0.762363, 0.025910, -0.528175, -0.129232, -0.526779, -1.018734, -2.172885, 0.139164, 0.487541, -0.489762, 2.567008, 1.174187, 0.825296, 1.117466, -0.618133, -0.327267, -0.986281, 0.802568, -0.465938, -0.165495, 1.190362, 0.069215, -0.516492, 1.365286, 0.138378, 0.791981, -2.196522, -1.192415, -0.981542, -2.380377, -0.395878, -0.332126, 0.777393, -2.312853, 0.048237, 1.096405, -0.483414, 0.503911, -1.002781, -0.349081, -1.282461, -0.237205, 1.726126, 1.000734, -0.580431, 0.517764, -0.694245, 0.636223, 0.745810, 0.184304, -1.064833, -0.628694, -0.161844, 2.561419, -0.140944, -0.225927, -1.255550, 0.842041, 1.484609, -1.189823, 0.262127, 0.212034, -0.522273, -1.540660, -0.164170, 0.900511, -3.637427, -1.484830, -0.337817, -0.585816, 0.829291, -0.021735, -0.295395, 0.350354, 0.127400, 0.868848, 0.628189, -0.071356, -0.302068, -0.460823, -0.493332, 1.326903, -0.473122, -0.627086, -1.001637, 1.190783, 1.395118, 0.356406, -1.904800, 0.510484, 0.270202, -0.409133, -1.631714, -2.028938, -1.084906, -0.669172, -1.643011, 0.195874, -0.874741, -0.026854, 0.145770, -0.426812, 1.062227, -0.389446, 0.383789, 0.256626, 1.762084, 0.038312, 0.160966, -0.156655, -0.018273, -0.222940, -1.145909, -0.134850, 0.585524, 1.047425, -1.073503, -0.512874, -0.101105, -0.792661, 1.011243, -0.208642, 0.289026, 0.475198, 0.652303, -1.646680, -0.663122, -1.672177, 1.300855, 2.351508, 0.284167, 0.357206, -1.219270, 0.016459, -0.216782, 1.872439, -0.623918, 0.435119, 1.484990, -1.191152, 1.053817, -0.299299, 0.335644, -1.055210, 1.885218, -0.701890, 0.071460, -0.654747, -0.693071, -0.062382, 0.515474, -0.771797, 0.206875, -0.436573, -1.176895, 0.411175, -0.890135, -0.286007, -0.994778, 1.109493, -0.374172, -1.295705, 0.743912, -0.409898, 0.795929, 1.708612, 0.146927, 0.056893, -1.662144, 1.897628, -0.381825, 0.886572, 0.765283, -1.643459, -0.209627, 0.538402, -0.107180, 0.235326, -0.990710, -0.796664, 0.151547, -2.397212, 1.466284, 2.423258, -1.319225, 0.433650, -0.001136, 0.233109, 0.211764, -0.924049, 0.067780, -0.539493, -0.926936, -0.238775, 2.290321, 0.781045, -0.418014, 1.861555, -0.274531, -0.724386, 1.029387, 1.338853, 1.118110, 0.045584, 0.915301, -0.677501, 0.658590, -0.117179, 1.947100, 0.008935, 0.126832, 1.178329, -0.803223, 0.579354, 1.907056, 1.757846, 0.323214, 1.765478, 0.364182, -0.233604, -1.712457, 1.166000, -0.061417, -0.808175, -0.246385, -0.218994, -1.494620, -1.897371, -1.055054, -0.065949, 0.915990, -0.600269, -2.418455, 1.109551, -0.101269, -0.865274, 0.905284, 1.340405, 1.564946, 1.136933, -0.226384, 1.195632, -1.625775, -0.142709, -0.582714, 1.018635, 0.239187, 0.254904, -1.388055, 0.273447, 0.033671, -0.137348, 0.715405, -1.116788, 0.867256, -0.092840, -1.423702, 0.496947, 0.820572, -0.022488, -0.295736, -1.494535, 1.120374, 1.626204, -0.758905, -0.788870, 0.930361, -0.790291, -0.518069, -0.011004, 0.037606, 0.353431, 1.263922, 1.318524, -1.215041, 0.710435, -1.273998, -0.811268, 1.456560, -1.112965, 0.070197, -1.370241, -0.774796, -0.477639, 0.062192, -0.175403, 0.326411, -0.893677, 0.293676, -1.073488, 1.589946, -0.990054, 0.510195, 0.322609, 1.139129, -0.740678, 1.049678, 0.069499, -0.695848, -0.176900, 0.392683, 0.816067, 2.343448, 0.342424, 0.077515, 0.011839, 1.060618, 0.190697, -2.109954, -1.005106, -1.076016, 0.054223, 1.909171, -0.927378, -0.278525, -0.283782, -0.591413, 0.411979, 0.178880, 0.545758, 0.314061, 0.343164, -0.024496, -0.076241, -0.418832, -0.629426, 0.458747, -0.039186, 0.013764, 0.534525, -0.038161, -0.006657, -1.233315, -0.459750, -0.290533, -0.187723, 0.874260, -0.741724, -0.322112, -0.155293, 1.034464, 1.227990, 0.461718, -2.522946, 0.140447, 1.917121, -0.230219, 0.084232, 1.195831, -0.465479, -0.069053, 0.768489, 0.733076, -1.273126, -0.686845, 0.421374, -1.496670, -0.890413, -1.312735, -0.905685, -2.223762, 0.557832, -0.677297, -0.669101, -0.539208, -1.150457, -0.321102, -0.004650, 1.299911, -1.653696, -0.509951, -1.803900, -2.061029, -0.286209, -0.030529, -0.820282, 0.776440, 0.684709, 0.354456, -0.183622, -1.084615, 0.454193, 0.955770, 0.014660, -0.013150, 0.022208, 0.475078, 1.801752, -0.679029, -0.991057, -2.257233, 0.458207, 1.017008, 1.708871, -0.881148, 0.599051, -0.055908, 0.180152, 0.941960, 0.361025, 0.265645, 0.406258, 0.332640, -0.372810, 0.229761, 1.569845, -1.622195, 0.846943, 0.452573, -2.374628, -0.412241, -1.306029, 0.667033, -0.188091, 0.602733, 0.364158, 0.626955, -2.093137, 0.476072, 1.150041, 1.245420, 1.500910, 0.245463, 0.001392, 0.167791, 1.044601, -0.675887, -0.981063, 1.129331, 0.995739, -1.309379, -0.530822, -0.144421, -1.398133, -1.559309, -1.142807, 1.199523, -0.994016, -0.398398, -1.941531, 0.329216, 0.683361, -1.098504, 1.897109, -1.013998, -0.209602, -1.138555, 0.263112, -0.588895, 0.534464, -2.329653, 1.240660, -0.838349, -1.303276, -1.106231, -1.546260, 0.056579, 0.144556, -0.983626, -0.087649, -0.167575, 0.600193, 1.822821, -1.045258, 0.970930, 0.852403, -1.764350, 0.599596, 0.219811, -0.443530, 0.672631, -0.248273, -0.661209, 0.717856, 0.880369, -0.340855, 0.705535, -0.371386, 0.595894, -1.620608, 1.771393, 0.050063, 2.552893, -0.815177, -0.463815, -0.419730, -0.403656, 1.164727, -1.031374, -2.146148, -0.756977, -1.129535, 0.089393, 0.076610, 0.193511, 0.795068, -1.486254, 0.887222, 2.135152, -0.863207, -0.408982, -0.359638, -1.173769, 0.197693, 1.384118, 0.759013, -0.888398, 1.655151, 0.537808, 0.978626, 0.448329, 1.911075, -0.214059, -0.472554, -0.012441, 0.306431, -0.726796, -1.405204, -0.475013, 1.127137, -1.236143, 0.716715, -1.490087, -0.527281, 1.513673, 0.400385, -0.628402, -1.684841, -0.073905, 2.295146, 0.715512, -1.431172, -0.266330, 0.245475, -1.383456, 1.014582, -0.029370, 0.389303, -0.295882, -0.825704, -0.888124, -0.562533, -0.425604, 0.744794, 1.334797, 0.434175, 0.024609, 0.293229, 1.192807, 0.560325, -0.317291, 0.987226, -1.404189, -0.666735, 0.528517, 2.326823, 1.074562, 0.442010, -0.345489, -1.233982, -0.530251, 1.364220, 0.927370, 1.124556, -0.746726, 3.027888, 0.479960, 0.146034, 1.741444, -0.214056, -0.681461, 0.313598, -0.125564, 0.927843, 0.321219, 0.327717, 0.524398, 0.257596, 1.138793, -0.522281, 0.685992, 1.212762, 1.429589, -1.336824, -1.535577, -2.141625, 0.371031, -0.564663, 0.778991, 0.660521, 1.092923, 1.387850, -0.912745, -1.126989, 0.671569, 1.033428, 0.255001, -1.020624, 0.508126, -2.537246, -1.206881, 2.143155, 1.217432, -0.103698, 0.134533, -1.288910, -0.702015, 1.031837, -2.216333, -0.232174, -0.482767, 1.467776, 0.511015, 1.720150, -1.607136, -0.754607, -2.980773, 0.053542, -0.224538, -1.186255, 0.107825, 1.015998, 2.044798, -0.962822, 0.768290, 0.377811, 0.989644, -0.573371, -0.573764, 0.581537, -0.162456, 0.020037, -0.095484, -0.548828, 0.707258, 0.145471, -0.550174, -0.879973, 0.662598, 0.527053, 0.164336, -0.868319, 1.371678, -3.331736, 1.054190, -0.459952, 0.111668, -0.365330, 2.178210, -1.157461, -0.367150, -0.496674, 0.738479, -0.524752, -0.665053, 1.082217, 0.676992, -0.329835, -1.281568, 1.308636, -0.773786, 0.167909, 1.263999, -0.921950, 0.557877, 0.061439, -0.644029, 0.225120, -1.029846, 1.356338, 0.845113, -0.440693, 0.764361, -1.709079, 0.520657, -1.047641, -0.194259, 0.333679, 0.410957, 1.324033, 1.467328, 0.761615, 0.023882, 1.621456, -0.441009, 1.019255, -1.154135, -0.487367, -1.418002, 0.143929, 1.530343, 1.908421, 1.034541, 0.516334, -0.605141, -0.408537, -1.408641, 1.786848, -1.636864, 0.536098, -0.439890, 0.519830, -1.037863, 0.288615, 0.364682, 0.310926, 0.094643, -0.076550, -0.896334, -0.781903, 0.773831, -0.006851, 1.888107, -0.395528, -1.977861, -0.021403, 0.044674, -1.806692, 0.636308, -1.089045, 1.162437, -1.058922, 0.121448, -0.095135, -1.366638, 0.904716, -1.028959, 1.188603, 1.545438, -0.762388, 0.073392, 0.514723, 0.108277, -0.300074, -0.014929, 0.637609, 1.966302, -0.489263, -0.555309, -1.212615, 0.590619, 1.404817, -2.374523, -0.813090, 0.041592, -0.624261, -0.309411, -1.485190, -1.400385, -0.460758, -3.248042, 0.799233, 0.830464, 1.088285, -0.004690, -0.965094, 0.463383, 1.004339, 0.897590, -0.548591, 0.470458, -0.216502, 0.155910, 0.674579, -0.804897, 0.169923, 1.423382, -1.386097, 0.264713, 0.758326, -0.875114, -0.175062, -1.672930, -0.422078, 0.760608, -0.166908, -0.111036, 1.233218, 0.265164, 0.654944, -0.357084, 1.243490, 0.411791, -1.413935, -2.070543, 1.287142, 1.420768, -0.439515, 1.422767, 2.404319, -1.830192, -0.392318, -2.096961, -0.926867, 1.421650, -0.536812, -1.621780, 1.142596, -1.525986, 0.777854, 2.262506, -1.915564, 1.200449, -0.330272, -0.058940, -0.356124, -0.060913, 0.228493, 0.127902, 1.602695, -0.765264, -0.569040, -0.205218, 0.201786, 0.385277, 0.521777, -0.580311, 0.070717, -0.419210, -0.008011, -0.905166, 0.816212, -0.698387, 0.525203, 0.844407, -0.370375, 1.393425, 0.537902, 1.562649, 0.024912, 0.832647, 0.207483, -1.302135, -0.069374, 0.534695, -1.648680, -1.537451, 0.711174, 0.182759, -0.229749, 0.499966, 0.211740, -0.577806, -0.020320, -0.670744, 0.261563, -0.192689, -0.385004, 1.492509, -0.195899, -1.046078, 0.621155, 0.813167, -2.581225, -0.016883, -2.062985, 0.537845, -1.083806, 1.918472, 1.496444, 0.178091, -1.589480, -0.483474, -0.544916, -0.488579, -0.435137, -2.074032, -0.408304, 1.868456, -1.034542, -2.049857, -0.613862, -1.176885, -0.188859, 1.240873, -0.149484, -1.683366, 0.704676, 0.081753, -1.221354, -0.255223, 1.037273, 0.878709, 0.178451, -0.131728, -0.495844, -0.941290, -0.577240, 0.772213, 2.023265, 0.175766, -0.851853, 0.328859, -0.126748, 0.375021, 1.173086, 1.218199, 0.627246, -0.914798, -0.491524, -0.825908, 0.441356, 0.868793, 0.543873, -0.669288, -0.182742, 1.264376, -0.166431, -0.457383, -0.052764, -0.137540, -0.534472, 1.595176, 1.023789, 0.207692, 0.406993, 0.144197, -0.747123, 0.775069, 2.253808, -0.965658, 0.105241, -0.789178, 0.328050, 0.299749, 0.203777, 0.740311, 1.205186, 0.808269, 0.660498, 1.499956, -1.296732, 0.806671, -1.704128, 0.388678, 2.108604, 1.343242, -0.726507, 0.113946, -0.522061, -0.965185, -1.216846, -1.104517, -1.731349, 0.150635, -1.113899, -0.278155, -0.028369, -0.413708, 0.813491, -1.307175, 0.974120, -1.371080, 0.534954, -0.634996, 0.188443, -0.664846, 0.154796, -1.536029, 0.149593, -0.890506, 0.087411, 2.033621, -0.067087, -0.921834, 0.273096, 0.923246, -0.744569, 0.400070, 1.506722, -0.680955, 1.364513, -1.115461, -0.173959, 0.698572, 0.617989, 1.457048, 0.630312, -0.250400, 0.059322, 0.035183, 1.030191, -1.758636, -1.395863, -0.416439, -1.713644, 1.153913, -0.680888, -2.140296, 0.533423, -1.317319, 1.443944, 0.522052, -0.668387, 1.409010, 1.062778, -0.153992, -0.995280, 0.244128, 0.102486, 1.438015, 0.389648, -0.759850, -2.193407, -0.647245, 0.976636, -1.037196, -0.868317, 0.835487, -1.068519, -0.519246, -2.957297, 1.077279, 1.769498, -0.614078, 0.378078, 2.003561, 0.873780, -0.574898, 0.128163, -0.711513, 1.277697, 0.305506, 1.021701, 0.400921, -1.110662, -0.497890, 0.670184, 0.428333, -0.126721, -0.561361, 0.045325, 0.946227, 1.015976, -0.537224, 0.059706, -2.225138, -1.084943, -1.220230, 0.628870, -2.296038, -0.352603, -1.319604, -0.788189, 0.459657, -0.254966, -1.729455, 0.218156, 0.255304, -0.960920, 0.369279, 0.109987, 0.390617, -0.434143, -0.344420, 1.335274, 0.516238, 0.920420, 0.319163, 1.259682, 1.342145, 0.291877, -0.466280, 1.299461, -0.778515, -0.086451, -0.126161, 0.545852, 2.344039, 0.022464, 0.910875, -0.163497, -0.824642, 0.518829, -0.882440, 0.754235, 2.921510, -0.625728, -1.772397, 0.244208, 0.840326, -0.686593, -0.713995, 0.035016, -0.176128, 0.837513, 0.380781, 1.277744, 1.274880, -0.689568, -2.461069, 0.606377, 0.614865, 0.816461, -0.804323, -0.219512, 0.407730, -0.344659, -0.248791, -0.982725, 0.780997, 1.402391, 1.330452, 1.416616, -0.292092, 1.367476, 0.305092, -1.249481, -0.118244, -0.509569, 1.092765, -1.532226, 0.468123, -1.473631, 0.765450, 0.018377, 1.393742, 0.566176, -1.265004, 1.754520, 0.150977, 0.475002, -0.986099, -2.299563, 0.713028, -0.530039, 1.498114, 0.798058, 1.245707, -1.568818, 0.235977, -0.982765, 1.495870, 1.850370, -2.151290, 0.381170, -1.062618, -2.211775, -0.215818, 1.538430, -0.515485, 0.028823, -0.182478, 0.805574, 1.001918, -0.229076, 1.273700, -0.885725, -0.656375, 0.459569, -0.101639, 0.476273, 1.167392, -0.078054, -0.728122, -1.091858, -1.854604, 1.358527, -0.840585, -1.374798, -0.036451, 0.261735, 0.297810, -0.619712, -1.524847, -0.010313, -1.107097, -0.563682, -1.289894, 0.307475, 1.871719, -0.522393, -0.476331, 1.219988, 0.454503, -1.463731, 0.670449, -1.193137, 1.489244, -0.600564, -0.897661, 0.233121, 0.423109, 1.164782, 1.268565, -0.013568, 0.633664, 0.515230, 0.069607, 0.364814, -0.862776, 0.702784, -1.287990, 0.984797, 0.029380, -0.591267, 0.181596, -1.573559, 0.427657, 1.151090, -0.560231, -0.708282, -0.077540, 0.757293, -0.863328, -0.405586, 0.467488, 1.316945, 0.051356, -0.605329, -0.946038, -0.487128, -0.695447, -0.767863, -0.448410, 0.467812, 0.178234, 1.199300, -0.394791, 1.040377, -0.590940, 0.624627, -1.177059, 0.943141, 1.224928, -2.564818, -0.917116, 0.006129, -0.137459, -0.682247, -0.766574, -0.266086, 0.189102, -0.280712, -1.975430, 0.158623, -0.524612, -0.525051, -0.272309, 0.731790, -0.149989, -0.528814, 2.040383, -0.490866, 1.025444, 0.899046, 0.181572, -2.503881, -0.879355, 0.136117, -0.623299, -0.031818, 0.608262, 0.716097, 0.809596, -1.128883, -0.206919, 1.426786, 1.182781, -0.347721, 0.011850, -0.413692, 1.522095, 0.056633, 1.062480, -0.311103, -0.225509, 0.180495, -1.514922, -1.598528, 0.472770, -0.744521, 0.203204, -0.947682, 1.236539, -1.413674, 1.407265, -1.143383, 0.846190, 1.266048, 0.337357, -0.531640, 0.391677, -1.482473, 0.074738, -0.171645, 0.943227, 1.578277, -0.801293, 1.404288, -0.796159, 1.843699, 1.555386, -0.231791, 0.335094, 2.273644, -0.019973, 0.173681, -1.692660, 0.552380, -0.735319, -0.446340, -0.640911, 0.357761, -0.719498, -1.201513, -0.719392, -0.908473, -0.068960, -2.447026, 0.535716, 1.383769, -0.811539, -0.002266, 0.039036, -0.305835, 2.950330, 0.968391, -1.878978, 0.321949, 1.498647, -0.842371, -0.094631, -0.575112, -0.196278, 1.484954, -1.742943, 0.288457, -0.339258, 0.488971, 1.281911, -1.881498, -0.697992, -0.833360, 0.476382, 0.639601, 0.111668, 0.324967, -0.551196, -0.426131, -0.130189, 1.687247, 0.205408, 0.928738, -0.567229, 0.568569, -0.651737, 0.525725, -0.481928, 0.180353, 1.976725, 0.224682, -0.685856, 0.460505, 0.985929, -0.564463, 1.850798, 0.291648, 1.944833, -0.018750, -1.301178, 0.002357, 0.142204, -2.720066, -0.955542, 1.815485, 1.612705, 0.991859, -0.992540, -0.118520, -0.328558, -1.529873, -1.274480, -1.158208, -0.940421, -1.770243, -1.382514, 0.257653, -0.275606, -0.750199, 0.299383, 0.301661, 1.167439, 0.698270, 1.387517, -0.319246, -1.928700, -0.587553, -0.098688, -0.321227, 1.037314, -1.590071, 1.040218, -2.178633, 1.563898, 0.205430, 0.162899, -1.046752, 0.481032, -1.865969, -0.844391, 0.339693, -0.069438, -0.172556, 0.009437, 0.730881, 0.626576, 0.561216, 0.795005, -0.984620, 0.763857, 0.524705, 0.921103, -1.168306, 0.455283, -0.803693, -1.097694, -2.696414, -0.872541, 0.793090, -0.655998, 1.795083, 1.077597, -0.966245, 0.068323, 0.065834, -1.416327, 0.707290, 0.217629, -1.395185, 0.032182, 0.449863, 1.138087, -1.017296, 0.271398, 0.499431, -0.824357, -1.829923, 1.133071, -0.133135, -0.775079, 0.553755, -1.270237, -2.807444, 1.389330, -0.481400, -1.295476, -0.658587, -0.806946, -0.215979, -0.885361, -1.678919, 0.809544, 0.130433, 0.581982, 0.445199, -0.504430, 2.000309, -0.280986, -1.367024, -0.213127, -0.167787, 0.389315, 0.548861, 0.099962, 1.259349, 0.765502, 0.358491, -0.226796, 1.252579, -0.324868, 1.527196, 1.413068, 0.059970, -0.270739, -1.771325, -0.616667, 0.527772, -0.704382, -0.179962, 1.299003, 1.739202, 0.425919, -0.616951, 0.807707, -0.614526, -0.716142, 0.962665, 0.749817, -1.684482, 0.408924, -0.136152, -0.371511, 0.071161, 0.192823, 0.727198, -0.898847, 1.023885, -0.670586, 1.448870, 0.012729, -0.150810, -0.998492, 0.307383, -0.863216, 0.806692, 0.075159, -0.660596, -2.125418, -1.418760, 1.119131, -1.119449, 0.922850, 0.075777, 0.213148, -0.697288, 0.148061, -0.993936, 0.743661, 1.360856, -0.779395, 0.888504, -0.289549, -0.216585, -1.393080, -0.502423, 0.203002, 0.834382, -0.655577, 0.736628, -0.019219, -0.780101, -1.041887, -0.756728, -0.931357, 0.413574, -0.305103, 1.683607, 0.269872, 0.196835, 0.682081, 2.138652, 0.114750, -0.311360, 1.293819, 0.534967, 2.789615, -0.039556, -0.564443, 1.713231, -0.075218, 0.363816, -0.651924, 0.330490, 0.027153, -1.917235, 0.305972, 1.319533, 1.176569, 1.320974, -0.646705, 0.835317, 0.852545, -0.179670, -0.980183, 0.428760, 1.058230, -1.810070, 2.982350, -1.240475, 0.327879, -0.455246, 0.655701, -0.993868, 1.133957, 0.243906, 0.011547, -0.586280, 0.168710, 0.637136, 0.219325, -1.501144, -0.297462, -1.342997, -1.355173, 1.745832, -0.271187, -1.405792, -0.805623, 0.223954, -1.833553, 0.788405, 0.038174, 0.032714, -1.057884, -0.609131, 0.747145, -0.562963, -0.368341, -0.149903, -1.566744, 0.118407, 0.990306, -0.581408, 0.384902, -0.222697, -0.286243, -0.837053, 0.379071, -1.694925, -0.148237, -1.001655, -0.939039, 2.387693, -0.014405, 1.235432, 1.215446, -1.041025, 0.739508, -0.459189, -0.652104, 0.090923, -2.610963, -0.003515, 0.430477, -1.491210, -1.313053, 0.209521, 0.502622, -0.451813, -0.428683, -0.352735, -0.924562, -0.247310, 0.016196, -0.403586, -0.181668, 0.296905, 0.423232, -0.896659, 1.017795, -1.011217, -0.256690, -0.509200, -0.182072, 0.628494, 0.165698, -1.358746, 0.688697, -1.117446, -0.109065, 0.002494, 1.320109, 0.150718, 0.106386, 1.517647, -0.731118, 0.390780, 0.744664, -0.005848, 0.972631, -0.165890, -1.411382, -0.663857, -1.132520, 0.357000, 0.765752, -1.421924, -0.435078, -1.222755, -0.314333, -1.109803, -0.353260, -0.505041, -0.748299, 1.898498, 0.835924, -1.412722, 0.673801, 0.238783, 0.700651, -0.122296, -0.065642, 0.863425, -1.393089, -0.241399, -0.717085, 1.417435, 1.291105}, - { 0.397165, 1.013243, -0.580456, -0.539900, 1.492228, -0.991986, -0.183508, 0.300911, 0.694721, -0.513061, -0.737393, -1.375032, -0.360335, 0.210935, 1.674464, 1.452875, 0.521385, -0.418202, 0.830911, 0.574499, -0.884327, -1.301128, 0.423649, 0.888449, 0.125116, -2.051598, -2.137657, 0.452855, -0.705826, -0.926460, -1.432225, 0.228289, -1.674709, -0.496074, -1.128256, -1.518343, -0.245230, 0.905738, -0.807916, 0.458934, -0.166920, -0.296758, -0.533006, -1.565342, 1.382351, 1.670604, 0.352162, -0.536369, 1.130132, -0.557981, 1.109414, 1.716403, -0.578993, 0.190693, -0.294384, 0.379111, -0.260579, -0.119545, 0.858231, 0.653759, -0.664195, 0.067498, -0.086708, -0.158172, 1.139665, -0.597605, 1.733270, 0.437946, 0.411139, -1.214143, 0.774154, -0.671738, -0.588775, 1.213029, -0.536960, -1.835787, -0.886063, 1.591681, -0.172947, 0.523314, -0.593065, 0.607766, -1.194639, -1.215624, -1.564887, 0.225557, -1.676564, 2.316875, 0.056636, -1.134164, 0.065339, 0.936080, -0.392343, 0.247315, -0.766660, -0.513602, 0.172231, -0.243505, -0.090825, 0.037499, 0.592879, 0.012768, 0.333559, 1.794526, -0.490554, 0.364454, -0.091941, -0.131372, -1.434565, -0.007194, -0.357630, 0.638191, -0.405450, 1.688971, -0.294326, -1.508083, -0.075706, 0.221664, -0.952836, -1.489164, -0.979668, -0.634263, -0.543435, 1.046351, 0.726939, 0.899171, -0.296379, -0.922750, -0.001154, -0.098650, 1.506151, -1.300368, -1.088969, 0.014904, -0.474047, 0.275806, -0.506889, -0.706342, 0.210445, -1.053886, -0.077953, -0.005184, 0.246824, -0.723736, 0.927091, 0.044494, -0.036872, -2.366461, 1.714686, -0.995875, -1.138391, 2.401925, -0.679129, 2.020354, -1.048464, -0.787486, -0.225321, 0.130664, -0.247893, 1.134072, 1.306830, 2.379118, -0.220800, 0.550274, 1.569736, -0.529171, 1.708259, 0.736169, -0.009291, 1.325264, 0.849111, -0.736453, -0.237229, 0.022160, 0.208047, 0.278328, -1.580354, -1.704031, -0.030604, 1.337086, 0.906555, 0.394265, 0.278084, 0.801610, -1.033360, 0.151163, 0.358357, 0.234279, -0.720662, 1.106666, -0.119077, -0.141364, 0.621292, -0.459466, -0.529440, 0.455796, 1.065438, 2.173995, 1.051766, 1.093550, -1.714514, -0.024252, 0.113096, -0.145251, -0.018128, 0.983392, -1.741264, -0.175012, -1.304080, -0.790993, 0.638753, 0.247880, 0.187980, -0.562990, -1.892071, 0.670358, 0.348319, 0.011634, 1.657741, -1.714747, 0.962067, 0.417057, 0.434243, -0.581941, -0.965226, 0.846370, -1.350911, -0.334557, -0.911635, 1.569505, -0.810260, 0.304121, 2.262833, -1.036997, 1.334691, 1.047509, 0.187256, 0.472405, -0.623094, -0.758513, 0.539508, -0.523055, -0.576230, -0.156583, 1.374668, -0.153779, 0.162651, 0.057473, 0.165653, 0.450271, 0.980888, -0.153102, 1.848653, 0.268405, 1.130774, -0.431838, 1.160608, -0.014931, -0.948217, -1.061217, -1.039321, -0.013790, -0.691267, 0.367589, 1.939296, 0.180247, -0.254123, -0.754973, -0.280432, 1.815686, -1.466435, -0.177793, 0.627913, -0.010726, 0.464367, 0.324016, -0.192304, -0.093668, 1.517820, -0.541341, -1.508760, -0.677816, 0.102409, -0.864010, -2.444298, -0.000053, 0.679846, 0.439393, -0.216990, 0.857101, 0.317781, -1.148404, 0.047849, -0.229306, 1.364337, -0.688216, 0.287174, -0.374897, -0.484994, 0.473971, 1.060714, -0.998795, 1.164440, 0.982305, 0.706425, 1.672443, -0.118692, 1.201890, -0.800778, 0.618435, -0.694790, -0.584943, -0.054823, 0.771585, -0.636139, -0.835438, -0.373417, -0.420539, 0.090531, -0.046146, -0.924013, 1.529983, -1.187986, 0.318064, -1.675146, 0.294715, 0.458003, -1.444916, -0.953439, -0.342391, -1.046806, 2.108878, -2.556422, -0.027927, -2.210886, -0.408940, -0.431539, 0.217322, 0.840138, 1.581377, 0.488810, -0.710729, -1.928737, 1.035245, -1.338092, -0.374711, -0.468776, 0.311324, -1.195143, -1.406755, -1.579034, 1.119445, -1.010654, 1.696116, 0.383855, -0.093121, -0.132160, -1.259138, -0.929384, 1.112618, 1.032500, -1.414062, -1.175238, 0.802387, -0.956024, -0.111402, -0.583350, -0.008058, -1.381822, -0.243236, -0.529014, -0.331936, 0.457004, -0.600269, 0.983720, 1.166432, 1.167615, -1.084497, -1.382124, -1.259676, -0.343323, 0.423589, 0.746341, 0.750604, 1.381899, -0.550310, -0.274333, 0.183110, 0.215127, 0.726726, -1.316570, -0.053437, -0.496814, -0.609472, 1.555306, -0.663982, 0.476021, -0.350185, -0.392853, 1.233200, -1.820066, -0.858947, -0.517410, -0.849511, 2.610362, -1.027193, 1.425857, 0.076560, 2.085185, -0.666659, 0.011869, 0.242314, -1.503478, 0.725732, -1.024908, -1.960281, 1.133102, 1.180238, 0.293429, -0.202228, -0.961507, 1.176178, -2.093014, 0.844525, -0.535320, 0.398338, -0.616420, -1.085451, 1.594190, -0.982022, 0.330121, 1.076506, -0.189050, -1.937682, 1.411678, -0.320164, -0.112501, 2.124958, -0.792276, -2.395392, -0.622417, -0.785656, 0.521785, 0.272260, 0.017130, 1.129384, 0.005096, 0.388710, -0.769363, 1.334164, -1.543026, -1.182599, -1.190754, -1.085749, 0.183249, 0.687015, -0.060892, -0.662871, 0.585874, -0.624947, -0.403026, -0.184735, -0.874062, 1.476311, -2.057559, 1.515078, -0.134726, 0.381779, -0.117573, -0.165749, -0.586940, 0.071684, 0.565734, -1.325014, 0.518892, 0.045777, 0.133149, 0.800403, -0.232123, 0.397268, -0.740767, -1.184987, -0.134066, 0.078891, -1.256274, 0.465483, -1.128717, 1.133862, 0.386876, -1.451837, 0.733721, 0.690130, 1.425783, 1.534748, 2.247993, 0.697512, -1.387960, -0.476790, 0.229547, -0.120366, -1.174757, -0.699294, -0.013259, 2.380414, 0.135271, 0.496015, 1.201388, 0.587390, 0.186619, -0.403154, -0.824730, 0.264890, 1.573664, 2.609306, -1.019358, -1.044406, 0.651605, 0.989380, -0.176321, 0.773894, 0.468863, 0.254116, -0.169025, -2.347446, -0.099215, 1.330931, 0.655789, 0.776291, -0.932055, 0.719848, 0.473719, 1.326288, -0.614428, -1.876394, -0.489932, -1.723081, 0.068322, -1.093716, -0.135400, -0.797543, -0.109965, 0.233379, 0.203365, -0.129450, -0.592535, -0.267019, 1.346790, 0.862872, -0.489456, -0.420004, -1.756073, -1.071652, -0.133473, 0.039600, 2.074240, -0.484601, 0.855653, 0.197005, -0.991124, -1.629591, -0.622496, 2.100167, 0.284515, -0.504327, -0.851226, -0.253184, -0.713808, -0.894247, -1.072590, -0.201595, 0.421528, -0.236077, -0.712958, 2.043358, -0.043320, 0.413787, -0.019062, -0.847061, 0.732291, -0.210591, -0.151418, -0.006481, -0.983195, -0.815408, -1.361210, -0.639488, -0.497659, -2.015811, 1.400416, 0.378386, -0.756485, -0.032055, -0.182408, 0.306899, -1.073931, -0.787714, 1.584902, -0.674140, -0.068315, 1.411891, 0.940210, -0.040609, -0.630662, -1.148931, 0.923472, -0.545150, 0.981498, -0.895652, 0.482536, 2.033854, -0.244415, -1.315528, 3.225701, 0.352066, -1.023610, -1.511474, 1.913982, 0.758779, -0.443437, -0.529319, 0.319506, -0.067334, 0.381064, 0.290573, 0.456645, 0.280961, -1.807991, 0.884565, 1.034516, -0.608102, 1.190114, -0.296458, -0.845326, 0.036126, -0.449852, 0.717928, 0.097068, -0.188536, -0.858467, -1.598724, -1.093997, -1.687368, 0.895467, 0.089667, 1.200765, -2.037735, 0.889267, 0.286117, 0.073212, -0.140695, 0.689518, 0.137357, 1.082286, 0.470574, 0.361196, 1.206347, -0.351229, 0.170791, 0.287571, 0.178035, -0.180093, 0.534996, 0.263364, 0.724114, -0.581904, -1.371533, 0.237724, -0.004415, -0.683002, 2.578116, -0.252388, -1.191188, 0.549791, 0.135916, -2.070560, 0.983012, 0.881802, 1.204644, -0.047328, -0.324176, -1.098115, 0.048772, -0.949597, 2.135715, 0.712094, 0.932682, -0.503885, -0.363873, -1.420392, -1.067636, -0.716267, 0.661703, -1.327474, 0.673860, -0.371546, -0.804773, -0.430799, -0.951913, -0.735669, -0.911689, -1.102980, -0.641041, -0.285290, 0.867187, -0.667877, 0.180071, 1.008283, -2.849576, 1.265435, 0.081812, -0.710423, 0.085976, 1.422108, -1.281950, 0.318320, 1.214755, -0.498410, -0.497919, 0.578317, -0.835989, -0.442451, 0.476271, -2.028645, 0.385499, -0.493140, -0.189132, 1.428288, 0.873565, 0.271294, 1.161797, 0.375750, -0.285562, -0.917284, 0.226130, 0.701356, -0.832818, -0.109478, 0.907364, 0.543434, -0.585035, -0.473771, 0.876048, -0.053585, -0.029816, -0.910200, -0.048843, -0.737399, 0.766513, 0.124387, -0.802724, 0.793690, 0.066668, -0.115733, -1.508182, 1.120544, -0.805954, 0.030200, -0.667911, 0.233937, 0.747659, -0.098865, 1.182375, 0.062250, 0.027103, -0.828543, -1.808298, 0.041475, -0.938712, 0.029264, 0.813584, 1.077040, -1.577606, 0.569054, -1.955849, 1.349359, 0.986165, -0.342974, -0.772643, -1.081286, 0.146076, -1.646757, 0.005101, -1.170061, -0.378279, -0.660019, 0.211732, 0.424259, -1.801814, 1.071551, -1.497200, -0.865461, 0.435804, -0.441309, -0.347799, -0.570818, -0.176797, -0.772572, -0.812724, -0.164012, 1.136114, 2.038723, -2.060178, 1.592079, -0.628180, 1.204005, 0.266001, -1.183349, 0.109093, 1.239659, 1.413736, -0.140175, 0.051579, 1.682037, 0.700888, 0.094187, -0.599841, 0.789042, 0.483594, -1.816020, -1.927299, -0.022867, -1.062248, -0.669560, -0.366063, 1.510807, 0.440085, 0.852795, -0.959855, -0.471377, -1.305850, -1.255451, 0.194569, 0.854528, 0.352462, 1.248448, 1.181572, -1.424885, -0.067211, -0.261307, 0.071001, 0.002598, -1.015030, 1.063262, 0.407647, -0.337667, -0.138938, 0.237099, -2.365273, 1.418566, -0.083945, -0.622927, -0.120568, 0.324560, -0.811707, 1.045303, 1.595960, 1.664763, -0.304785, 0.634798, 1.116530, 0.872638, 1.739248, 1.318437, 1.394335, 0.282168, 0.559300, 1.658901, -0.673098, 0.034962, -0.843634, -0.093505, -1.760403, 2.791938, -1.345091, -1.507774, -0.946118, -0.083032, 0.985762, -1.721708, -0.138330, 2.019631, -1.068158, -0.564243, -0.240727, -0.661027, 1.258696, -0.384826, -0.006633, -0.621674, 1.863888, 0.018377, -1.075452, -1.131522, -1.098377, 1.511057, -1.895211, 0.552905, 0.147495, -0.579017, -1.164777, -1.192730, -1.622515, 0.929313, 0.496331, -0.898122, -1.924117, 1.083638, 0.062886, 0.666875, -0.994803, 1.523607, 1.954164, -0.604461, -0.026265, 0.038715, 1.022189, -1.857650, 1.228304, -2.105043, 0.656992, 1.374356, -0.687370, -1.589268, 0.056068, -1.147126, 0.800845, -1.522622, 1.426880, -1.543379, 1.332054, -2.539925, -2.665321, 1.244479, -0.200120, -0.694736, -0.076692, -1.157592, -0.070607, -1.245970, 0.729948, -1.986842, -1.214955, -0.359448, 0.487568, -1.317303, -0.015963, -0.595365, -0.677435, -1.477851, 1.025504, 0.186488, -0.508259, -0.287635, -1.015793, -1.913439, -1.178704, 0.674931, -1.658258, -0.869825, 0.826468, 0.521938, -1.335775, 1.503503, -0.485949, -1.138972, -0.831556, -1.864080, 0.066715, 1.204529, -0.674494, -0.920612, 0.990302, 0.000057, 2.147314, 0.993250, -0.004424, -1.088735, 0.221127, -0.658918, 0.933950, -2.810119, -0.664787, 1.119514, 0.022332, 0.918084, -0.770271, -0.464918, -0.576764, -1.753612, 0.109423, -0.783739, 0.629155, -0.012059, -0.077541, 2.432145, 0.349570, 0.324868, -1.072159, -0.203559, -1.378302, 1.341603, -1.145280, 0.897667, 2.348561, 0.493341, 0.445898, 1.194975, 1.280826, -0.969170, -0.646426, 0.358792, 1.906271, 0.363987, 0.175523, 1.460580, 0.431918, 0.635002, 0.214738, 0.230721, 1.143089, -0.223680, -0.429203, -0.746523, -1.342414, 0.423669, -0.527728, -1.354080, -0.164750, -1.479178, 0.073326, -1.214989, -1.069311, 0.805245, 1.184325, 1.851132, 2.032746, 0.315416, 0.838836, -0.775030, 1.149079, 0.031178, -1.076797, 1.026517, -0.060305, 0.914207, -0.275591, 0.967725, 0.250999, 1.815894, 1.889946, 0.539597, -1.527363, -1.693071, 0.213160, 0.773761, 0.928913, 0.021693, 0.440817, 0.403192, -0.881883, 0.298685, 0.928666, -1.783505, -0.030726, -0.092533, 0.822809, 0.530357, -0.287657, 0.473233, -0.000458, -0.617272, -0.767754, -1.092669, -0.727288, 0.583267, 1.940487, -0.763870, 0.068994, -0.721327, -1.283543, -1.122680, -0.787161, 0.485245, -0.247060, 0.276673, -0.608908, -1.152376, -1.694388, -0.737618, -1.863922, -0.619567, -0.077332, -0.052195, -0.659540, -1.109050, 1.040345, 0.369637, 0.360629, -0.494231, -2.585324, 1.636622, 0.396589, 0.844310, -0.647005, 0.950636, 0.015331, 2.168065, -0.061672, -0.621585, -0.751694, -1.511472, -0.203541, -1.054258, 0.568334, 0.948488, -0.014217, -0.050380, -0.770955, 0.745348, -0.798678, -1.770285, 0.210004, -0.609788, -0.187561, 0.178575, -0.043360, 0.492854, -0.493384, -0.235027, 1.704422, 0.661987, -1.341384, -0.206832, 0.710416, -0.459237, 0.602122, 0.087450, 0.398596, 0.102924, -0.940552, -0.638300, 0.833441, 0.035435, -0.120362, -1.554961, 0.883311, -0.761279, -0.322088, -1.181379, 0.611799, 0.447693, 1.284874, 0.711726, -1.473228, -0.134845, 1.678077, -0.514873, -0.317416, 0.929697, -0.202839, -1.335955, -0.180716, -1.851322, -1.281358, -0.161038, -1.068422, -0.508089, -1.734120, 1.755854, -0.118352, -0.729091, -1.097951, -0.899883, -0.141881, -1.849814, 0.855135, -0.245930, -0.349054, 1.607943, 1.259316, -0.041316, 0.651590, -0.603995, 0.326055, 0.410159, -0.270400, 0.463104, 0.808764, -0.436575, 0.982555, -0.704839, -1.112785, 0.050886, 1.234191, 0.119707, -1.391682, 1.142380, 0.623903, 0.175978, 1.363032, -0.201635, 0.698795, -1.450035, -1.788043, -0.429758, 0.876772, -2.337312, -0.819558, 0.151950, -1.436024, 0.473987, 1.010934, -0.700244, 0.225473, -1.311483, 0.082341, -0.405167, 1.529808, -1.189607, -0.472468, 0.182775, -1.311952, -0.600972, 0.577411, -0.009055, -0.037942, 0.919991, 1.485913, 1.888338, 1.141237, -0.319185, -0.943602, 0.743923, -0.618982, -0.683383, -0.108076, 0.527764, 0.003615, 2.172374, -0.409060, 0.579223, -1.292404, 0.457985, 0.373857, 0.156080, -1.341538, -0.855673, 0.406710, -1.492688, 0.602127, 0.144247, 0.774026, 0.373067, -1.788833, 0.402933, -0.308195, 1.348921, -0.384136, -0.920051, 0.098612, -0.720738, -0.002986, 0.568578, 0.908365, 0.586925, 1.034261, 0.533148, -0.436075, -1.683587, -1.082477, -0.313418, 1.651783, -0.592197, 0.396849, -0.092580, -1.195874, 0.403448, -0.485698, 0.523988, 0.549782, -0.587060, -0.055816, 0.901204, -0.730951, -0.493023, 0.197538, 1.637919, -1.178621, 0.247565, -0.675938, 1.103452, -0.740748, -0.280723, -1.433761, 0.111209, 1.425659, -0.983491, 0.225714, 0.802251, -0.733176, -1.118379, -0.936064, -0.250265, 0.940377, 0.392265, 1.377372, -0.572520, -1.142183, 0.465204, 1.611640, -0.265715, 0.518948, 0.067850, 0.710987, -1.036429, 0.382771, 0.129837, 0.587012, -0.950874, 0.536973, -1.436531, -0.689113, -0.058135, -1.041584, 1.654180, 0.392586, -1.027425, -0.967038, 2.557432, -0.291319, 0.653046, -0.235383, 1.275973, 0.065896, 0.730570, -2.448999, -0.329564, 2.004240, -0.372871, -1.073615, -0.511041, -1.684215, -0.443890, -1.226017, 0.316717, 0.178127, 0.487975, -0.282163, 0.523434, -0.131077, 0.444634, 0.837972, -0.157197, 0.579473, -2.547596, -1.285968, 0.532960, 1.921268, -0.135470, 0.967439, -2.038306, 1.293984, -0.158821, -0.027326, 2.278564, 1.144071, -0.200812, -1.256030, -0.318251, -2.005130, 0.242267, -1.069012, -0.284217, 0.199585, 0.896775, -0.514176, 2.167861, 0.614264, -0.936390, 1.178507, 0.270925, -1.824308, 0.188437, 0.782127, -0.493720, 2.223413, 0.354851, 2.018176, 0.570242, 1.219917, -0.249343, 0.622620, -0.346390, -0.399315, -0.548299, -1.022983, -1.155953, -0.130904, 0.273317, 0.978461, -0.608401, -1.647908, 0.184279, 0.810287, -0.787266, 0.661509, 1.605829, 1.016966, -0.133203, 0.279700, -0.235610, 0.361927, -0.584311, 1.093198, 0.008754, -1.532752, -0.270824, -1.262523, -0.988209, -0.179451, -1.018919, 0.828744, -0.573839, 1.684596, 1.392579, 0.439995, -1.765784, 0.435890, -0.889822, 0.151531, 0.262388, -1.012277, -0.059778, 0.840136, 0.799204, 0.208205, -1.671962, 0.502075, 1.229162, -0.125882, 0.845284, 0.069196, -0.382556, 0.252484, -0.440008, 0.047510, 0.675985, 0.563107, -1.091485, 1.112734, 0.266755, -0.518919, -0.167283, -0.417478, -0.914600, -1.423158, -0.333006, 0.048717, 0.193935, -0.705966, 0.914987, 0.834823, 0.256370, 0.797875, -1.306289, -0.295400, 2.244984, 0.644642, -1.072073, 0.620122, -0.016667, -0.504186, 1.385618, 0.731098, -0.463120, -1.540487, -1.093301, 0.166048, 0.147985, -0.718910, -1.016870, 0.555133, -1.271938, -1.925448, 0.101491, -1.029753, -0.075627, 0.404883, 1.251100, 0.644834, -0.567768, 0.284192, 2.107924, 0.550819, -0.552165, -1.192165, 0.554937, -1.014702, -0.733524, -0.081792, 0.515482, 0.634166, -0.364457, -0.238577, -0.268734, -0.041544, 0.135510, -0.417914, 2.916407, 0.015797, -2.192772, 0.515619, 1.630348, -0.791589, -0.197421, -0.195284, 1.476410, 0.434930, -0.333828, 0.053909, -0.970011, 0.414807, 1.480048, 1.393122, 0.802339, 0.854854, 0.895922, -0.303554, 0.899648, -0.975613, -0.308197, 0.219391, -0.230040, 0.186740, 0.925866, 0.417965, 0.597649, -0.713923, 1.167621, 0.328905, 1.448967, -0.112932, 1.170066, -1.404335, -0.800320, 1.793739, 0.426801, -0.100557, 0.275142, 1.197628, 0.051983, 0.448278, -0.749623, 2.354262, 1.109195, -0.473079, -0.698012, -1.613571, 1.563238, -0.685555, 0.882413, 0.974648, 0.163695, -1.112031, -1.627131, 0.927566, 0.176114, -0.885563, 2.418413, -0.723907, -0.560105, 0.479165, -0.091062, -1.156969, -0.876483, -1.177464, 0.263696, -1.976069, -1.209861, -0.305374, -0.242932, 0.430786, -0.640024, -0.220310, 0.225922, 0.346959, 0.067511, 1.284607, 0.366528, -0.707390, -0.088889, 0.384762, 0.975804, 1.609133, 0.619673, -0.137634, 0.562913, -0.230148, 0.556894, 0.902223, 0.357592, 0.728751, 1.268838, 0.803898, -0.079388, 0.079856, 0.375413, -2.509264, 0.507776, -0.287254, -1.004033, -0.125700, 1.923997, -0.794907, 0.098509, -1.323465, 1.145717, -1.282874, -0.766311, -0.867325, 0.780057, 0.943058, -1.354061, -1.248836, 2.628673, -1.188433, -0.011985, 0.281432, 0.730555, -0.892609, -0.482564, 0.324827, 0.658382, -0.753904, -1.639422, 0.068105, 0.490382, 2.244291, -1.918844, -0.148750, -0.684208, 0.374435, 0.340328, 1.161137, -0.071882, 0.518898, -0.703716, -0.110852, 2.509352, 2.093817, -0.449572, 1.187744, -0.728107, -0.249509, 0.987956, 0.339305, 0.958742, 0.303890, 0.320119, 0.423103, -0.775123, 1.212366, -0.351111, 1.016296, -0.674091, -2.501006, 2.446033, -2.278802, 1.842239, 0.788251, -0.565050, 1.125615, -0.388716, -0.522565, 2.491460, 0.822352, 0.141667, -0.750588, 0.611911, 0.449374, 1.380384, -0.274680, -0.539762, 0.512576, 1.645470, -1.534226, -0.922108, 1.110062, 1.334627, 0.115820, -1.647299, -0.195381, -0.458523, -0.252955, -0.933064, -0.503764, 0.986628, 1.260784, -0.759830, -0.071975, 0.876477, 1.441792, -0.349743, 1.870463, 0.548576, 0.287054, 1.354089, -1.717919, -0.170754, -1.016045, -0.447286, -1.976991, 0.548402, -0.549829, 0.089444, 1.218849, 0.370793, 0.951227, 0.588013, -0.580036, -0.643248, -0.910640, 1.438594, -0.505967, 0.687048, 0.366989, -0.085095, -0.101571, -1.328757, 0.070949, 1.513642, 1.239131, 0.968287, -0.938592, -0.116198, 0.287351, 1.557072, 0.380167, 0.330294, 0.751386, -0.323665, -1.640435, 0.261170, -0.547946, 0.182125, 1.234738, 0.567418, 0.380160, -0.131957, -1.292398, 0.790147, 0.735507, 0.138818, -0.915601, 0.120142, -0.962137, 0.896186, -0.578152, -0.472585, 0.138948, -0.763740, 0.022882, 0.166726, -0.702651, -1.476695, -0.257259, 0.116727, 1.730281, 0.199988, -0.708443, -0.333589, -1.665536, -0.149149, 1.834016, 2.151336, 1.127975, 0.308087, 0.373495, -0.303064, 1.440773, -0.630913, -1.334871, -1.129584, -1.029689, 0.079386, -0.428245, 0.555001, -1.259533, -1.009153, -0.059438, -0.063241, 0.591327, -1.890788, -0.590260, -0.460150, 0.102828, 1.372895, -0.884909, 0.671261, -0.629259, -0.147019, -0.483911, -0.693447, 0.308495, 0.089822, -0.408924, -1.077792, -0.530027, -0.304773, 1.260625, 0.396429, 0.284699, 1.333392, -0.493525, -0.710373, 1.894289, -0.437894, 0.948040, -2.273871, 0.658644, -0.238045, -0.313590, -0.812465, 1.468542, 0.575877, 0.360305, 1.795106, 0.169486, -0.432028, -0.843700, 0.120695, 0.578715, 0.065451, 1.331402, -1.231441, 0.051677, -0.050893, 0.874599, 0.102771, -0.114611, -0.805531, 0.411342, 0.291069, -0.183424, 0.652902, -0.015211, -1.163806, 0.679734, -0.604136, -1.209186, -0.488448, 2.071763, 0.258051, 2.313012, 0.664351, 0.086171, 0.529126, 0.734480, -1.820898, 0.543178, -1.132422, 0.812873, -1.154533, -0.973957, 0.872888, -0.867346, 0.104281, -0.683787, -1.287753, 0.203521, -1.466883, 0.726687, -0.669409, -1.642887, 0.243638, 0.404730, -1.579346, -0.467921, -1.608945, -1.565189, 0.010344, -0.881127, 0.562881, 0.336656, 0.611620, -1.476012, 1.326930, -0.645465, 1.143072, 0.034473, 1.350514, -1.020672, 1.613501, -1.186017, 0.483309, -0.130746, 0.530022, 0.634901, -1.356251, -1.144554, 0.501416, 0.572082, 0.613286, 0.238656, -0.832476, -0.414336, 0.731217, 0.118715, -0.118858, 0.672333, 0.190017, 0.048240, 0.567320, -0.582577, 0.414128, -1.379102, 0.790471, 0.651375, -0.733238, -1.363121, 1.439715, 1.584037, -0.277708, -2.554428, 1.306954, -0.437707, -0.504707, 1.220431, -0.152823, 1.595543, 0.126981, -1.180687, 0.249681, 0.647380, 0.630621, 0.313623, 0.765850, -2.900500, -3.303523, 1.185714, 0.054460, -0.165652, -2.375898, -0.804519, 2.098995, -1.415622, -0.216533, -0.935896, 0.327855, -1.109653, 0.293332, -0.518584, -0.545300, 0.692576, -0.948004, 0.561145, 1.683479, -0.016410, -0.484285, 0.677927, -1.131978, -0.017695, -0.673110, 0.132621, 1.291736, 0.236017, 0.842079, -1.593563, -1.514015, 0.478058, 0.738149, -1.350765, 1.839759, 0.263632, 0.485873, -0.764458, 1.209548, -0.232850, -1.212482, 0.160941, 0.221139, -0.313204, -1.177407, -0.071451, -0.490443, 0.294966, 1.225241, -0.194419, -0.351101, 0.406079, 0.098960, 1.390620, 0.512852, -0.046521, 0.074328, -1.286073, -0.779270, 0.416905, -0.353483, -1.259813, -0.231825, -1.324767, -0.157746, -0.858386, 0.081216, -0.741442, -1.581220, -0.088274, -0.648006, -1.285647, 0.329954, -0.152852, -0.010646, 0.886167, -0.888970, 0.719218, -0.340030, 1.466504, 0.256619, 0.139483, 0.229837, -0.090738, -0.803683, 1.310234, 0.206572, 0.696312, -0.507660, -1.233633, -1.417408, 0.094465, 0.240760, 1.236947, 0.206237, -0.913517, 0.089803, -0.463440, 0.345613, -0.276818, -1.003987, 1.194634, 0.846662, -2.277870, 0.496492, -1.462631, 0.618247, -0.343449, -0.307712, -0.149370, -0.189576, -0.018098, 1.068241, -0.501542, -0.076766, 0.453663, -0.618614, -0.680308, -1.692198, -0.485179, -0.149138, 0.737073, -0.168336, -0.904415, 0.294250, -0.939049, 0.173665, -0.250626, 0.158001, 0.274539, -0.317398, -1.310713, -0.545455, -0.150464, 0.390347, -1.169685, 1.398452, 0.990622, 0.189081, -0.537010, 2.337118, -1.257338, 0.957166, -1.496867, -0.741272, -2.348381, 1.192102, -1.212610, -0.374928, -1.058540, 0.327936, -0.433567, 0.505167, -0.427829, 0.661485, 0.222501, -0.670071, 0.237348, -1.540000, -2.061018, -0.033358, -0.728823, -2.328176, -0.051036, -0.459774, 1.228559, 2.416640, -0.107654, 0.748115, -0.781208, 1.670915, 0.132010, -1.015404, 0.999682, 2.384465, 1.301584, -0.785052, -0.417741, -0.672693, -0.029084, 0.094555, 0.623491, 2.728020, 1.502916, -0.877483, 0.155415, -0.015707, -0.405176, -0.236822, -0.631064, 0.319606, 1.297784, -1.087908, 0.174124, -0.076167, -0.505147, -0.809030, -1.943043, 0.136739, -1.046144, -0.423037, 1.202147, -0.092956, -0.175132, 0.899443, 1.396401, 1.076323, -0.388606, 1.378765, -0.219231, -1.281035, -1.695118, -0.015007, 0.010439, -2.456599, -0.506445, 0.850283, -0.138269, -0.785406, -1.031753, 0.582159, 2.462929, -1.659679, -1.155389, 0.545949, -1.245920, 0.310823, 1.080250, -0.031741, -0.413151, 0.614000, -0.358160, -0.235399, -0.112365, -0.683979, 0.832791, 0.193398, -0.607660, -1.340490, 1.047581, 0.596241, 1.467915, 0.939091, 1.120401, -1.352468, 1.215207, 1.436960, -0.732410, -2.654247, 0.008885, -1.138698, 1.465157, -0.825924, 0.685024, 0.644868, -0.860580, -0.267594, 0.379159, -0.429768, -0.087730, -0.279403, 1.489474, 0.759342, 0.239830, -1.974403, 0.085981, 1.437545, -0.253262, 0.886746, 1.880575, 0.208539, 0.664334, -1.451539, 0.509580, 0.931895, -1.149280, 0.786774, 1.157106, 0.816212, -0.281738, 0.127584, 2.339799, 0.509222, -1.033789, 0.586580, -0.942695, -0.084261, 0.167013, -1.570451, 1.143556, -0.660218, 0.983057, -0.189598, 0.079672, -0.380039, -0.443600, -2.537944, -1.514686, -0.398951, -1.194957, 0.494843, 0.043024, 1.017436, 0.379102, 0.340251, -0.319400, 0.329107, -1.295414, 0.939502, 0.662077, -0.074217, -0.321973, 0.499451, 0.074870, -1.569448, -0.626595, 0.533295, -0.136236, -0.087578, 0.302762, -0.412854, -0.073030, 0.580241, 0.447351, -0.121875, 1.146031, -0.521349, 0.159193, -1.436947, -0.028461, 0.068828, -0.626219, 0.564983, -0.906080, 0.952413, 0.259524, 0.006516, 0.603829, 0.025686, -1.783251, 0.448770, -0.734675, 0.107121, 1.272138, 1.174165, 0.236960, -0.876997, 2.361819, -2.682853, 0.117541, -0.023641, 1.379353, 0.803803, -0.621744, 0.598930, -1.471486, 0.474012, 0.543439, 0.685675, 0.661789, -0.158290, -0.938646, -0.670896, 2.212399, 0.839741, -0.044773, -0.671575, 0.365275, -2.146453, 1.198179, -1.153192, -0.549083, -0.036929, -0.983908, 2.293072, 1.735079, 0.628446, 0.721753, 0.600133, 0.582798, -0.523204, 0.032583, -1.221926, -1.215665, 0.402089, -0.481074, -0.028942, -0.233776, -0.497505, 0.462949, 0.745113, -0.100864, -0.267948, 0.390793, 0.893291, 1.332542, -0.012540, 0.226293, -0.488826, -0.623131, 0.857024, 0.809355, -0.370802, -0.299769, 0.538008, 1.217249, -0.825350, 0.072128, 0.981082, 0.943361, 0.746459, 0.007035, 1.689610, -0.328155, 0.885951, 2.316369, -0.082614, 0.600612, -1.688602, -1.818172, 0.627140, -0.781718, 1.979232, 0.819654, -1.665447, -0.230631, 0.019247, -2.400888, 0.023960, -1.203340, -0.758735, 0.174163, -0.146234, 1.236742, -1.110132, -2.412550, -1.796617, -0.014729, -0.680455, -1.695064, -0.589239, 0.384307, -0.896246, -1.276065, -0.866761, -0.140503, -0.540092, 0.283740, 0.172720, -0.282033, -0.024479, -0.418907, -0.580290, -0.503915, -0.317764, -0.147941, -0.665039, -1.562225, 2.212594, 0.772808, -1.401726, 1.405759, -0.708724, -0.562863, 2.164387, -0.800690, -0.576602, 0.588868, 0.860081, -0.570663, 1.619220, -0.665632, -1.350726, 1.665801, 0.430768, -0.447337, -1.031981, -0.079927, -0.942012, -0.532382, 0.075355, -0.064279, 0.132681, 1.068462, 1.926675, -0.246771, -0.492698, -0.676899, 0.193022, 0.765448, 1.162647, -0.881228, -0.340151, 1.496364, 1.205763, 0.614682, 0.770093, -1.113256, -1.224761, -0.636850, 0.660647, -0.759184, 0.560615, -0.226773, -0.273978, -0.507550, -1.201339, -0.798108, -0.485434, -0.375008, 1.123249, -0.378017, 1.126276, -2.837037, 0.881684, -0.935741, -1.849805, -0.380961, -0.864460, 0.617076, 0.280093, -0.190078, 1.073084, -0.531239, -0.889670, 2.110510, -0.050891, 1.436276, -0.638693, -1.379672, 0.277191, 0.269296, -0.281233, -1.393950, -0.230429, -0.290333, -0.091841, 0.625541, 1.671257, 0.332189, -0.161260, 0.021590, 1.047973, 1.520658, 2.099310, -1.861004, 0.981232, 1.692147, -0.814497, -1.966067, 2.169220, 0.072916, 1.505243, 0.763117, -1.551761, -0.542919, -0.850673, -1.230988, 0.161452, 0.533740, -0.135508, -1.046377, -0.709611, -1.672621, -1.295074, 1.273690, 0.314765, 1.272708, 0.395974, 0.653686, 1.431843, -0.971168, -0.965527, -0.835438, 0.496336, 0.102767, 0.579225, 1.101141, -1.260901, 1.895400, -0.783972, 1.412787, 1.895628, 0.872840, -1.515590, 0.443156, 0.331600, 2.325603, -0.405547, 0.224604, -0.522058, 0.669011, 0.291745, 1.442230, 0.645074, -1.203986, -0.499406, 1.709448, -0.975612, 1.240354, -0.579431, 1.117174, 1.524427, -0.832680, 1.030992, 0.881017, -1.818458, -0.147766, -0.044665, -0.932805, 0.380122, -0.826019, 1.176583, -0.113659, 0.233640, 1.367826, -0.263428, -1.081921, 0.769340, 0.061917, 0.114528, -2.185859, -1.454126, -0.727477, 0.400318, 0.279792, -0.116409, -1.629704, -0.405234, 0.010474, -2.448582, -0.043404, -0.310471, -1.268816, -0.984170, 0.302353, -0.926017, -0.868598, 0.053239, -0.542015, -0.401421, 0.077799, -0.200145, 1.062340, -0.111325, -0.955607, 0.248791, 0.385922, -0.610505, 0.983054, -0.069882, 0.441888, 0.652133, 0.448182, -1.255545, 0.008112, -2.038255, -0.344128, -0.549804, 0.339182, -0.615087, -0.191508, 0.137452, 1.165776, 0.097682, -0.743089, -0.062058, -0.717742, 0.196693, -1.069627, -0.636575, -0.997994, 1.042843, -1.000091, -0.347453, -0.836343, 0.556808, 0.903287, -0.732237, -1.217378, -0.110155, 0.328476, 0.094987, 1.579063, 0.130745, -0.196275, -1.540321, 0.314876, -0.534833, -0.122595, 0.164125, 1.141626, 0.106168, 1.197337, -0.190700, 0.497927, 1.258429, 0.200880, 0.639565, 0.966567, 1.734824, 0.050708, 0.605365, -0.456036, -0.193784, 0.289869, 0.406997, -1.677760, -1.256517, 0.242973, -1.295178, 1.225694, -2.530927, -0.152172, -1.933035, 0.414754, 0.288575, -0.570761, 1.624921, -0.707886, -0.439120, -0.763228, 1.129255, 0.494880, 1.346285, -0.095113, -0.088143, -0.434238, 0.018755, 1.096819, 1.013867, 0.595391, 0.517538, -2.005412, 0.918430, -1.970405, 0.604673, 1.216764, 0.041556, 0.273192, -0.393882, -0.272409, 0.220257, 1.121026, -0.240540, 0.403301, 0.873845, -1.265651, -0.474487, -0.349072, -1.630702, 0.713711, 0.845071, -1.640876, 0.096995, -1.172894, -0.820825, -0.448604, 1.087055, -0.095377, -1.736098, 0.347036, -1.006678, 1.328835, 0.270501, 0.863969, -0.742108, 0.862811, 1.961977, -0.179190, 0.838324, 1.884084, 0.572505, -0.502721, -0.554854, 0.365675, -1.065485, 0.201362, 0.656517, -1.731796, -1.856655, 0.066540, 2.191710, 0.449745, 0.031513, 1.716506, 1.332202, -0.737949, 0.114851, -0.016051, 1.028060, 0.916967, -1.232769, 1.091492, 0.840699, -1.289351, 0.981032, 1.535006, -0.862765, -0.609101, -0.159624, 0.396094, -0.858998, 0.659323, 0.386074, 0.999655, -0.734986, 0.635846, -1.264374, -0.326362, 0.538521, -0.596312, -1.396536, 0.578547, -1.244717, 0.249707, 0.019738, 0.726646, 1.341496, 0.693245, -0.764104, -0.579150, -0.597454, -0.435730, -1.016227, 0.385477, 0.323094, 0.850710, -0.566080, 2.462378, -1.442009, -0.692983, 0.099039, 1.269528, 2.072926, 0.340807, 2.159814, 0.287166, -0.002212, -0.253869, -0.828347, -0.533333, -0.742308, 0.604367, 1.363179, -0.301418, -0.614678, 0.111863, 0.773280, 0.406986, 0.937791, -0.855776, 0.176260, 0.646559, -1.987868, -0.344742, 0.300434, -1.263957, 0.784390, 0.326909, -0.054248, 0.139724, -0.374451, -0.312420, 1.349540, -0.092197, -0.450479, 0.984307, 0.286306, 0.045054, 0.069429, -1.209063, -0.584471, 0.040896, -0.844330, -0.539930, -0.699213, 0.794677, -0.423521, 0.350182, 0.067849, -0.448465, -1.406314, 0.488233, 0.199481, -0.203344, 0.175522, -1.595010, -1.831918, 1.945528, -0.455928, 0.932654, 0.517514, -1.124600, -2.291537, -0.669505, 0.331033, 1.621062, -0.147579, 0.161541, -0.811083, -0.204189, -1.272435, 0.448533, 1.896475, -1.133960, 0.495441, -0.948400, 0.540013, 0.233433, 0.608463, 1.133013, -0.233525, 0.623912, -1.748656, -0.465469, -0.913890, -1.381276, 0.038838, -0.442184, -0.019918, 1.233026, 0.968645, 0.737109, 0.232598, -1.115302, -1.865655, -0.903959, 0.729599, 1.062438, 0.507872, 1.967925, -0.286403, 1.208560, -0.720140, -0.167629, 0.673381, -0.586803, 0.829526, 0.047502, 0.036207, 1.740825, 1.104409, -0.374411, 0.796347, 0.389891, -2.117978, 0.899245, -1.453943, 0.500538, -1.244588, -0.133989, -1.056114, -0.331852, 0.290895, -0.864773, -0.159921, 0.846899, 1.642079, 0.352519, 0.195101, -0.487219, 1.300938, 0.055601, 0.454052, -1.191289, -1.001641, -0.219728, -0.594717, -0.478197, -1.377474, 1.910553, -0.085079, 1.395549, -1.354383, 0.679572, -0.235601, -0.037421, -0.801886, 0.765023, 0.203645, 0.942272, -0.539130, 0.059268, 2.139118, -0.847996, 0.046247, 2.413610, 1.409484, 0.964430, -0.222640, 1.248723, -0.014154, 0.319524, 0.762013, 0.063606, -1.238826, 1.206852, 0.662122, -0.960769, 0.123010, 0.934355, -0.320293, -0.703127, -0.529595, -0.431325, -0.531930, 1.228471, -1.372110, 0.105589, -1.309925, -0.380860, 0.676895, 1.767930, 0.531131, 1.068405, 1.204329, -0.184111, -0.338321, -0.400304, 0.544788, -0.015787, -0.402434, 1.196565, -0.802071, -1.462558, -0.730348, 1.376692, -0.010214, -0.298392, 0.240798, -0.164863, -0.821951, -0.653595, 1.652045, 0.924946, -0.421356, -0.356883, -0.351145, 0.911578, -1.096141, 1.644679, 1.196682, -0.676876, -1.203089, -1.600585, 0.328852, -1.140360, -0.594403, 0.230661, 0.320870, -1.511643, 0.207653, 0.214748, -0.635145, -0.976731, 0.617397, 1.090502, 1.234640, 0.505767, 1.111139, 0.022716, -3.149945, -0.720575, -2.197897, 1.499600, -1.069327, -0.561402, -1.457112, -0.135610, 0.027123, -0.311725, -0.058628, 2.291447, 0.771153, 0.819679, -1.429604, -1.335327, -0.097726, -2.757061, -1.104743, 0.730313, 0.581257, -0.989072, -0.343689, -0.427930, 1.497801, 0.882999, 0.122588, -1.215907, -0.027390, -0.148392, 1.143721, -1.165282, -1.038509, 1.757744, -0.399405, 1.089612, 2.513361, -0.367846, -0.626835, -1.012237, -0.426295, -0.309423, 0.849768, 0.315756, -0.245734, 0.472882, 0.098225, -0.457671, -0.590318, -0.265516, 0.467979, -1.864364, -0.501889, 0.266760, -0.721410, -0.837682, -0.148171, 0.044028, -1.161403, -0.680787, -0.172898, 0.637237, -1.168705, -1.585799, 1.119484, -1.356566, -0.674577, -0.764301, -0.469159, -2.687289, 1.108895, -0.664008}, - { 0.332413, -0.090476, 0.111142, -0.105650, -0.492015, 0.563133, -0.308829, -0.996772, -0.710380, -0.639434, 0.741823, -0.587970, -0.431323, -1.459216, -0.628200, 1.121755, 0.310918, -0.027048, 0.484048, -2.768089, 2.414129, -0.286526, -1.069539, 0.042255, -0.970093, -1.056685, -0.290018, 0.323992, -1.961179, 1.377456, -2.746641, 0.655005, 1.514401, -0.858676, 0.453182, 0.470032, -0.393851, 0.599810, -0.727723, -0.485360, -0.296523, -0.335302, -0.001939, -0.390613, 0.692754, -0.297787, -0.683839, -0.245338, 1.014253, -0.334746, -1.176200, 0.919842, -0.858995, -0.485241, -0.372096, 1.224724, 0.261900, -1.241396, 0.666264, -0.508043, -2.133119, 0.285788, 0.770445, -0.512387, 0.331296, 0.674873, -0.023667, -0.494804, -0.433539, 0.620181, -1.186752, 0.430033, -1.021986, 1.048476, -0.542787, 1.510876, 0.674521, 1.156451, -0.922329, 0.613084, 1.168869, -1.414186, 0.548016, 1.877142, 0.538212, -0.062034, -0.394426, -0.764928, -1.339256, 0.797266, -0.531602, 0.347888, -0.606943, -2.260128, 1.040178, 0.898863, -1.368123, 0.261365, 1.016327, 0.260189, 1.498519, -0.255452, -1.379712, 0.500720, 0.484281, -0.274261, 0.151794, 0.077884, 0.539540, -1.176680, 0.428913, -0.277737, 0.331718, -1.256974, 0.128732, 0.838281, 1.414778, 1.033964, 0.201801, 0.948353, -0.715105, 0.341861, -0.401363, 0.678465, 0.156881, -1.388737, 1.729869, -1.264426, 0.436415, -0.543501, -1.489277, -0.537544, -1.011361, 1.954747, -0.072545, -0.015704, -0.147238, 0.535290, -0.892774, 0.536171, 0.407434, -0.203392, -0.240277, 0.354210, -0.802281, -1.031150, 1.487040, 0.308466, -0.642546, 0.071923, -0.763645, 1.384431, -0.016321, -1.970340, -0.443420, -0.584331, -0.718848, -0.123439, 1.040007, 0.718988, 0.222775, -0.581023, 0.213477, 1.744051, -0.341766, 1.107654, -0.832242, 0.478139, -0.120128, 0.893301, -1.433044, 0.364631, -0.707983, 1.481024, 1.076907, 0.152833, 0.316878, -1.092690, -0.257177, -0.772108, 0.242734, -0.847114, 0.373323, 0.799211, -0.046355, -0.358662, 0.069984, -0.651776, -0.098871, 0.553035, 0.184604, 1.720749, 0.157912, -0.533023, -0.031688, 0.658297, 1.102183, -0.668551, -0.351309, -0.116471, 1.710932, 1.060462, -0.333532, -0.095624, 0.327515, 0.444750, -2.349119, 1.673249, 1.056736, -0.396374, 0.220611, 2.504459, -0.554302, -0.213013, 1.830962, -1.107491, -0.598477, 0.045907, 0.129413, -0.263897, -0.597111, -0.435294, -0.701651, 1.376132, -1.023851, -1.784413, -0.241752, 0.209999, -0.381562, -0.223928, 0.995270, -0.552373, -0.965910, -0.954263, 1.138501, 0.473679, -0.189117, -0.540881, -2.493774, -0.060180, 0.543873, -1.284099, -0.659967, -1.443070, 0.145057, -0.895853, -1.782699, 0.206764, 0.718617, 0.447118, 0.544709, 0.160530, 1.044261, -1.168851, -1.715942, -0.426890, 0.440709, -0.710538, 0.590257, -1.481875, -0.941835, 1.017842, 0.490278, -0.618954, 1.846469, -0.576514, -0.120600, 2.045900, -0.548250, 0.715270, 1.510966, 0.594488, 0.239436, -0.392097, -0.518888, 1.207397, 0.215695, -0.409388, -1.146060, 0.391842, 0.420014, 0.741190, -1.642495, 0.038210, -1.403337, -0.777395, 0.052477, 0.439552, -0.337797, -0.222298, 0.655024, 0.585861, -1.219943, 2.736820, -0.551745, -0.982342, 2.268393, 0.091445, -1.707475, 0.058399, -0.692335, -0.321801, -0.550962, 0.385469, -0.341551, 0.027301, 1.866760, -0.846516, 2.269717, -1.072989, 1.770384, 0.083566, 0.272755, 0.942532, -0.250030, -1.875477, -0.457772, -0.340411, 0.738559, 0.000197, 1.213037, 0.849176, -0.269861, -0.072165, 0.102182, 2.261038, 0.073744, 0.148187, 0.502755, 0.663832, -1.226263, 0.363262, 0.447514, -0.216750, -0.247224, 0.566976, -1.420693, -0.053375, -0.733065, -0.130164, -0.780495, 1.490258, 0.928009, -0.980839, -1.922868, 0.757046, 2.360650, 0.371054, 0.476158, -0.906443, 0.312970, 0.766959, -0.704138, -1.163653, -0.670671, -0.689074, -0.671234, -0.125076, -0.134199, 0.839989, -0.460121, 0.935337, -0.008488, 1.019224, 0.759984, -1.377837, 2.028915, 1.826818, 0.613339, -0.193261, 1.451456, 1.298127, 0.270833, 1.214569, 1.296101, -1.962302, -1.450883, 0.197587, 0.448897, -0.355898, 1.518468, 0.809314, 0.539606, -0.049976, -0.923559, -0.371532, -1.147110, -0.817528, 0.183345, -0.223735, 0.915319, -1.547933, 0.445157, -0.747921, 0.377815, -0.713546, 0.904311, -1.161063, -1.090289, 0.178200, 0.826774, 1.079186, 0.297022, -0.203784, 0.310157, -0.831840, -0.283096, 0.412864, 0.827500, -2.221612, -0.182601, 0.819123, 0.190311, 0.194056, 0.207361, -1.169707, 0.644312, -0.486385, -0.365451, -0.941410, -1.367268, -2.307357, 1.664220, 0.442388, -1.655976, 0.326389, -0.046664, 0.874415, 0.140329, 0.085505, 0.980782, 2.339350, -0.500732, -1.198792, 0.845504, 1.272187, -2.992011, 0.272694, 0.352522, 0.906393, -1.504858, -0.065103, -0.843170, 0.161277, -0.260392, 0.538582, 0.853036, 0.196121, 1.077102, -0.226425, -1.895123, -0.313965, -0.572552, -0.587900, 1.045139, -0.986904, 0.412959, -0.176403, -0.321011, 0.499103, 0.444863, -0.948091, -0.373640, -1.000724, 0.314558, 1.382282, -0.455950, -1.283715, -1.248909, 0.512849, -0.887994, -0.397828, 0.240441, 1.121143, 0.334973, -0.961739, -0.457526, 1.809203, -1.619508, 0.166722, -0.844253, 0.209446, 0.187729, -1.444352, -0.612184, 1.054032, 0.558481, -0.149892, -0.203386, -1.326215, 1.697874, 0.307984, -0.329882, 1.599952, -1.173515, -1.728018, 0.553763, -0.398294, 0.122929, -0.477630, 0.780699, 0.733659, 0.962108, -0.766103, -0.637033, 1.722177, 0.217015, -0.345815, 2.161558, 0.061773, -2.496190, -1.338003, -0.991100, -0.558270, 0.391743, 0.422292, -0.179245, -1.653523, 0.533463, 0.727673, -0.860690, -0.378647, -0.448850, -0.988305, 0.212703, 1.025908, -0.065756, 0.279577, 0.413206, -0.439237, -0.312943, 1.316437, 0.223352, 0.130142, 0.087801, 0.102658, 0.673192, -0.712053, 0.661451, 0.829606, -0.582947, -0.247915, 0.425853, -0.485600, -0.734955, -1.370681, 0.820578, 1.265371, 2.209562, -0.269679, -0.012571, 1.065734, 0.887827, 1.435880, -0.199550, -1.667014, -0.367064, -0.134792, -1.748803, 0.481537, -0.479872, -0.624758, -1.574703, -0.147887, -0.886725, 0.369281, -0.232004, 0.012470, -2.083078, 0.723738, 0.837940, 0.473451, 0.262049, -1.161261, -0.722633, 0.835566, -0.439135, 0.521020, -0.601784, -0.794508, 0.127931, -0.816449, -1.080561, -0.391566, 0.321305, 1.566316, -0.060631, 0.125768, -0.011606, -1.129203, -0.437153, -0.668726, 0.583097, -2.083591, 1.157958, -0.254565, -0.572011, -0.207830, 1.178302, -0.625917, 0.149176, -0.272977, 0.963374, -1.584610, 0.543515, -0.554689, 0.473338, -0.272569, -2.171537, 0.016032, -0.153908, 0.595323, 0.012496, 0.826651, -1.279603, -0.379394, -0.536605, -1.366260, 0.444574, 0.155408, 1.794734, 1.679658, 0.756814, -1.175797, 0.658997, 0.750576, -2.226382, 0.612725, 0.212362, 0.008456, 0.405550, -0.306795, 0.625620, -0.267137, 0.100022, 0.067766, 0.558592, -0.640202, -0.654459, -1.689198, 0.794818, -1.365268, -0.312364, 0.279432, 0.821647, 0.254142, 2.284136, -0.261828, -0.078930, 0.693253, -0.170263, 1.256426, -0.797634, 0.911959, -0.517969, -0.903680, 1.695689, 0.443434, 1.590053, 1.620189, -0.024819, -0.626617, -1.283893, -1.054684, -0.112331, -0.034263, 0.004174, -1.733980, -1.051281, 0.048925, -0.596698, 0.325219, 1.279105, -0.937609, 0.674835, -0.455320, 1.604386, -0.606526, -0.623002, -0.322564, -1.268396, 0.586967, 1.518035, 0.217431, 0.151262, -0.644681, 1.697620, -0.921071, -2.291254, 1.072662, 0.427007, 1.902025, -0.460736, 0.384503, -0.889487, 1.261442, 0.314857, -1.082276, 0.171244, -0.249381, 1.581279, -1.637765, 0.121682, 0.808878, -0.357868, 0.209678, 0.647120, -0.009759, -1.685765, 0.617450, 2.305940, 0.056446, 0.767286, -1.771028, -1.283960, 1.342832, 0.623596, -0.066315, -0.199515, 0.650273, 0.264588, -0.744608, -0.746418, -2.124202, -0.146926, 0.392638, -1.538700, -0.271547, 0.301499, -1.651731, -0.146944, -1.121951, -0.784411, -0.412355, -0.524026, 0.943538, 1.620827, -0.404759, -1.057480, -0.998717, 0.858370, -1.998713, 0.333596, -0.995064, -0.561418, -1.615057, -0.519505, -1.148545, -0.835220, -1.434511, -1.620710, 0.838094, 0.952118, 0.549566, 0.564244, -1.288459, -1.798690, -0.434689, -1.026014, 1.312105, 0.335384, 0.532218, -1.385370, -0.708757, 0.548970, -0.060770, 0.617430, -2.796243, -1.091676, 2.088774, -0.491811, -0.424752, 1.466917, 1.043665, 0.107828, -0.408104, 1.422861, 0.046745, 0.489890, -0.076826, 0.933259, -0.821984, 0.549958, -0.354484, -0.622192, -0.610304, -0.459022, 0.470213, 0.913912, -0.078251, 1.460776, -0.078061, -1.562451, 0.741141, -0.803167, 0.043003, 0.697627, 1.377150, -0.061913, 0.100843, 0.146320, 0.722686, -1.073459, 0.739537, -0.157894, -1.467302, 0.357267, -0.953141, -0.423063, -1.740439, 0.607853, -0.503574, -0.271799, -0.206298, 0.567419, -1.183112, -1.500188, 0.810370, -0.298685, -1.009744, -0.600005, -1.279845, 0.552013, -1.612481, 0.292148, -0.749283, -1.314620, 0.941991, -0.930493, -0.060125, -0.241817, -0.531869, 0.061162, 0.647767, -0.901355, -0.184766, 1.702293, 0.420983, 0.491773, 0.859071, 0.760141, -1.033019, -0.383732, -0.978214, -0.612003, 0.703203, 0.518546, -1.418451, 0.003646, 0.616851, 0.915675, -1.169185, -0.050293, 1.333933, 0.862519, 0.402817, 0.795916, 0.796625, 0.740740, 0.349167, -0.529555, 1.702156, 1.571571, 0.558439, 0.677786, -0.038789, 0.406366, 0.719938, -1.509139, 0.779539, -0.452586, 1.512160, 0.793720, 0.289071, 0.882045, -0.223399, 2.227741, -0.803339, 2.033337, -2.107007, 0.947627, 1.315363, -0.920506, -0.168807, -0.015158, -0.314552, -1.276389, 0.883355, 0.705430, 0.536489, 1.409183, -0.533939, 1.127232, 0.562946, -0.924352, 0.066195, -1.071521, -0.494558, 0.839034, -0.916701, -0.557743, -0.453364, 1.580799, 0.980236, 0.377979, 0.208521, -0.645774, -1.129338, 1.044617, 0.692552, 2.159659, 1.368088, -0.199366, -1.249165, 0.080794, 0.483180, 1.287076, -0.110163, -0.531105, -0.498655, -2.068255, -1.393150, -1.710954, -1.461273, -1.013984, -0.237610, 0.892408, -0.237737, 0.756205, 1.966613, 0.991563, 0.262238, -1.139088, -0.318029, 0.022481, 1.152952, -0.368783, -0.582549, -0.471548, 0.156034, 2.334373, -1.017766, 1.290749, 1.638450, -0.850097, -1.181241, 0.250034, 1.317944, 0.542569, 1.383254, 0.238320, -0.485503, 0.751033, -2.136729, -0.444880, -0.443161, -0.617829, -2.419981, 0.445541, 0.951887, -1.128313, 1.678103, -0.091826, -0.417388, 0.492196, 0.968676, 0.091234, -0.446133, 1.349090, 0.630067, -0.769798, 1.263931, 0.904641, 0.195466, -0.380730, -1.278928, 0.016286, -0.754500, -0.013241, 0.626080, 1.581112, -1.354169, 0.625483, 0.216052, -0.667792, 1.794916, 0.085767, 0.205481, 0.453476, 0.079927, -1.572281, 0.362329, 0.501201, -0.882164, 2.152445, -2.434957, -0.470505, 0.997812, -1.266957, -0.033494, 1.440470, -1.014112, -1.574884, -1.623940, -0.935002, -0.654050, 0.687626, 0.162400, -0.960659, -0.676304, -0.454858, -0.522163, -1.435989, -0.021196, -0.911292, 0.205341, -0.531980, -0.280608, 1.366761, 0.249688, -0.553740, 0.482486, 1.687059, 1.010648, 1.688699, -0.076617, 1.131603, 0.892899, 0.276267, 1.156595, 0.492346, -0.174117, 0.566770, -0.399723, 1.458423, 2.129884, -0.867126, 1.322380, 0.707254, 0.491617, -0.317481, -0.086859, 0.005343, -0.231006, 2.020493, 0.318070, 0.149524, -1.174234, -0.576451, -0.660870, -1.011631, -0.805260, 0.129546, -0.869773, -0.278761, -0.632811, 1.893211, 0.514338, -0.206982, -0.486175, 0.502145, 1.224112, -1.714737, 0.245386, 1.045557, -0.276084, 2.507840, 0.163897, -1.261247, -2.472059, 0.708976, 0.795227, -1.762789, -0.220855, 0.229522, 0.257277, 1.059348, 1.519520, -0.009878, 0.210398, 1.013724, 2.126493, 1.285697, -0.182820, -0.172843, -0.288383, -0.540512, 0.363419, -0.604089, -0.398068, 1.016660, 0.688912, -0.564958, 0.270841, -1.941296, -1.524301, -0.738495, 0.552349, -1.434486, -1.404625, -0.780554, -0.302889, 0.144368, -0.113578, 1.625405, -2.288239, 1.287383, -0.510163, -1.497400, -0.705719, 1.024657, -0.610147, 0.668245, -0.324842, -0.814347, 0.889092, -2.608135, -0.059007, 0.947085, -0.346749, -1.001543, -0.619302, -2.843781, -0.062318, 0.135680, 0.466214, -0.434046, 0.335925, -0.309873, -0.960881, -0.142906, 1.002613, 1.106483, 0.228058, 2.442204, -0.565412, -0.444695, -0.456349, 0.225989, -0.312006, 0.390162, 0.951283, -0.595653, 0.850771, -0.132953, 0.807768, 1.646481, 0.010370, 0.323289, -0.514807, 0.696271, 0.214713, -0.797228, -0.590987, -0.050820, 0.667784, 0.105420, -1.204762, -0.687476, 0.875144, -0.227006, 0.810107, -0.447727, 1.187477, 0.955497, -1.410668, 0.274056, -0.453666, 0.709610, 0.325851, 0.264748, 1.582527, -1.397160, 1.528939, 0.049409, 0.392065, -0.605957, -1.376246, 0.779464, 0.168978, -0.731870, 0.440385, -0.173564, 0.730714, 0.831391, 1.609627, -1.223613, 1.708416, -0.711428, 0.395162, -0.662251, 0.904203, 0.681037, 1.392846, 0.112167, 0.264960, 0.628740, 0.431578, 0.287971, 0.823200, 0.116816, -0.261785, 1.426073, 0.903004, 0.116679, 2.135556, -1.252390, 1.075709, 1.376183, -0.130948, -1.793751, 0.531978, -1.092502, 1.211683, -0.923700, -1.724505, 0.234736, -0.473431, -1.960848, -0.282608, 0.807219, -1.688597, -0.138767, 0.285142, 0.075576, 0.490162, -0.204860, 1.458962, -1.017185, -0.354230, 1.201092, -0.474558, 0.904509, 0.339038, 1.077130, 0.846492, 0.188238, -0.923617, 1.346188, -1.017959, -1.206872, -0.682074, 0.210293, -0.183542, 0.465513, 0.286795, -0.216632, -0.058660, -1.343618, 1.793348, -0.292750, -0.009871, -0.351329, -0.176400, 0.878920, 1.223189, -1.226511, -0.340374, -0.872841, -0.668045, -0.454802, 0.140583, 0.247231, 1.850850, 0.816583, -0.642174, 0.125794, -0.643081, -0.526527, -0.603531, -0.986176, -1.139736, -0.620508, 0.558131, -0.051135, -1.269712, 0.852580, -0.393241, 1.157152, 1.127215, -0.122800, -0.795520, -1.568631, 0.691127, -1.110720, -1.579454, -0.367857, 0.063579, 0.951263, 0.168815, 0.984382, 0.985160, 2.020338, -0.041965, 0.683118, -0.295213, -0.379882, 0.866387, 0.019367, 0.733344, 0.160788, 1.634291, -0.043567, -0.030991, -0.165895, 0.276940, 0.063929, 0.002003, 0.799766, 1.276322, -0.175220, -0.328382, -0.120359, -2.769161, -1.479419, -0.925248, 1.178652, 0.251587, 0.295968, -0.557262, 0.274799, 0.983573, 0.945575, 0.258738, 1.850200, 0.773688, 0.925497, 0.278006, 0.476557, -0.333587, 0.658399, -0.226439, -0.563261, 1.423737, 0.292970, 0.422005, 1.331200, 0.873546, -0.594567, -1.040073, -0.004369, -1.233165, -1.243156, -1.477960, -0.873411, 2.010043, 0.398684, -0.351185, 0.237653, -1.022324, -1.269352, -1.265228, 0.969638, -0.277355, -0.530677, 2.626909, -0.163811, 0.318196, -1.394060, 1.930060, 0.261448, -1.647303, 1.056629, -1.129607, -0.486615, -0.802456, 0.323884, 0.671083, 0.985620, 0.267940, 0.873013, -0.850153, -0.371616, 1.240962, 0.576713, -0.666320, 1.318217, 1.646316, 1.216780, 0.470782, -1.346875, 0.387081, 2.100512, -0.128241, 0.754347, 0.187386, 1.479303, -0.414287, 1.468910, -0.372294, 0.903044, 0.848381, -0.576310, -0.258010, -0.708103, 1.098543, -0.794369, 1.326326, -1.158041, -0.027106, -0.225750, 0.585936, 0.018906, -0.077030, 0.798248, -0.349698, -0.682187, 0.952738, -0.239098, 0.920637, 1.208988, 1.162882, -0.011993, 2.127491, 0.581514, 1.422003, -0.135716, -1.010212, 0.039345, 0.045045, 0.696660, -0.130550, 1.944229, 1.502976, 0.613750, -0.307565, -0.091203, 0.633993, 0.118580, -0.813341, -0.767566, -1.079818, -0.282050, 1.553281, -1.086964, 0.510802, 0.919374, 0.879507, -0.302522, -1.034653, 0.151852, 1.361147, -1.038318, -1.750124, 0.101119, 1.747966, -0.372003, -0.613706, -0.591185, 0.950532, 0.307471, -0.476075, -0.040320, -0.618066, -1.720594, -0.597755, -0.297946, 0.347925, 1.305076, 0.769385, 0.175688, -1.583593, 1.324695, 0.915440, -0.897743, 0.764686, 0.378435, 0.827679, 0.765396, -0.265554, -0.127362, -1.099631, 0.410024, 0.419753, -1.030247, 0.398574, -0.930050, -0.187034, 0.896231, 0.347772, -0.738487, 1.125493, 0.159707, -0.296675, -0.736772, 1.444376, 0.708270, 1.301820, -0.613415, -1.131274, -2.425478, -0.210039, 0.859825, 0.087560, -0.288042, -0.286937, 0.189502, 0.421060, 2.704326, 0.869582, -0.789697, 0.394062, 2.060898, -1.384599, -0.975317, -0.959449, 1.630341, 0.710030, 0.138189, -0.425804, 0.323462, 1.558027, 0.218489, 0.186915, -0.188354, 0.875418, -0.631404, 2.515853, 0.888233, -1.138928, 0.931494, 0.791801, -1.934849, 0.330313, -0.191361, 0.034512, -0.845609, 0.811131, -1.122497, -1.563081, 0.355550, 1.042817, -0.358564, -0.836795, 1.096931, 0.821378, -0.843018, 0.949655, 1.483863, -0.213964, 1.712181, -1.595074, 0.962693, 1.015877, 1.857027, 0.856355, -1.293958, -0.458723, 1.342438, 1.857567, 0.681817, 0.149496, -0.488124, -1.522765, -2.437259, -0.469027, 1.695409, 0.695268, 1.503875, 0.930953, -0.553585, -0.494742, 1.336754, -0.309437, -1.474055, -0.910071, -0.493953, 0.919408, 0.487805, 0.372066, -1.334930, 2.768972, -0.739934, -2.537957, 1.993227, -0.481223, 0.579137, 0.097511, -0.266998, -0.782373, -0.348708, -0.612770, -0.081083, 0.638289, 0.097007, 0.069784, -0.013636, -1.983485, -0.483091, -0.338076, 0.131448, 1.162878, 1.169703, 0.386729, -1.077208, 0.450685, -0.674963, -1.117238, 0.094733, -1.453760, -0.639298, -0.439775, 0.079282, -0.498095, -0.520192, 0.344522, 1.245484, 0.636502, -0.879362, -0.682212, -0.201300, -1.042150, 1.128293, -0.645169, 0.073426, -1.120832, 0.895656, 0.125561, 0.194086, 1.552879, 0.352898, -1.841795, 0.387979, 1.341562, -0.935230, 0.772880, -0.069439, -2.171020, -1.729386, -0.481882, -1.099033, 0.659894, -0.138947, -1.027644, -0.059817, -1.503294, -1.371742, -1.052331, -0.235903, 1.609249, 0.581964, 1.721283, -0.243545, -1.947487, 0.014905, -1.370168, 0.080897, -0.813126, 0.046892, 1.212364, 2.142939, 0.923298, 0.015547, -1.076693, 0.181366, 1.364048, 1.086883, 0.904162, -0.607959, 0.397086, -0.125301, 0.679773, -0.193204, 0.315042, 0.154997, 0.059522, 1.464326, 0.121211, -1.014883, 0.763274, 0.851236, 2.298345, -0.030669, 0.048745, -0.432413, 1.535197, 0.689044, -0.904760, -1.249941, -0.505129, -1.011775, 1.495330, -0.558128, -1.383847, 0.142089, -0.017155, -1.568275, 2.043560, 0.011999, 0.126786, -0.162554, -0.043844, -1.379454, -0.500392, 0.254474, 0.707366, 0.816757, -1.226395, -0.666966, 2.009572, -0.233156, 1.147893, -1.728117, 1.635403, 0.931182, -0.982141, -0.569492, -1.384807, -0.005323, -0.461772, 1.005790, 0.044195, -0.942073, -0.783637, -0.695629, -0.041599, 1.590665, 1.222531, 0.303378, 1.409049, 0.095492, -1.089426, 1.286694, 1.688999, 2.117612, 1.059940, 0.672189, 1.007068, 1.132985, -1.102660, -0.196325, 0.139877, 1.946525, 1.016517, 0.114356, 0.354442, -0.483027, 0.355104, 1.830137, 0.287580, 0.592634, 0.916866, -1.576712, 0.383925, 0.578369, 0.515323, 1.230483, -0.574325, 0.368397, 0.189826, -0.489736, -0.394374, 0.809553, -1.453355, 1.350374, -1.291178, 0.654567, 0.090665, -1.883666, -0.651559, -0.748650, -0.468110, -1.007841, -0.313019, 0.612921, 0.618019, 1.055759, -0.287164, -1.423864, 0.584640, 0.032046, 1.088973, -0.357387, 0.748128, -0.435306, 1.527493, 0.443135, -0.880351, 0.521328, -0.346296, 1.686460, -0.512587, 0.601966, 0.436588, -1.314965, -0.319078, -0.880068, -0.092162, -1.035020, -1.259117, 0.503484, -0.171935, -1.232785, 0.368860, -1.345035, 0.027177, 0.951496, -1.295035, 0.810210, -0.176469, 0.748114, 0.490939, -0.982091, -0.212023, 0.109433, 0.227544, -1.969052, -1.046004, -1.190753, -0.632195, -0.897640, 0.844773, 0.176071, -2.254886, -0.828966, 0.380993, -0.314232, -1.485790, 0.338232, 2.849200, -0.244255, -0.014193, 0.808252, 1.154426, 1.759918, -1.070352, 0.184412, -0.551133, -0.067449, -0.206060, -0.721926, -0.614675, -1.057866, 1.288226, 0.546093, -1.819086, 0.875635, -1.186228, -0.706844, 0.420428, 0.464173, -1.970815, 0.040265, 0.979257, 0.722564, -0.083365, -0.993187, -0.332314, 2.124213, 0.385350, -0.943470, -2.423453, 0.484566, 0.982158, 1.116549, -0.236137, -0.605190, -0.956017, -0.344289, -1.984211, -0.717507, 1.357101, -1.764415, -1.494770, -0.020111, 0.142458, -1.385483, -0.225463, -1.223360, -0.144176, 0.472324, 0.155263, 0.641433, -0.124007, 1.400785, -1.247499, 0.462295, -0.237960, 0.932353, -0.156990, 1.854269, 0.601584, -0.534695, -2.231608, -0.702490, -0.475160, -0.955694, -0.904631, 0.310338, 0.277823, 0.781322, 0.121412, -0.232620, 0.645961, 0.368690, 0.381196, -1.088444, -1.693116, -1.111578, 0.295593, 0.045498, -0.085718, -0.640119, -1.212959, -0.516827, -0.469387, -0.039691, -0.649467, 0.859894, 0.308341, 1.593292, -0.251972, -0.880161, 0.072534, 0.082881, 2.164468, 1.075309, -0.340336, 0.691023, 0.235370, -0.431032, 0.850657, -1.539289, -0.746202, 0.790461, -0.911253, -0.108639, -2.308335, -1.161708, 0.278767, -2.033837, -0.504813, 1.063949, 3.009235, -0.837237, 0.865540, -0.382273, -0.507635, -2.082772, 1.776487, 0.338300, -0.641904, -1.568420, -0.560583, 0.085281, -0.262701, -0.087924, 0.182183, -0.125335, -1.403393, 0.921833, 1.590404, 1.160873, -0.848099, 0.901084, -0.568654, -0.021222, 1.820698, 0.685168, 0.923379, 0.252517, 1.588853, 1.191792, -0.279060, 2.825582, 1.190414, -0.533850, 0.365552, 0.241109, 0.996154, -0.721186, 1.446907, -1.013355, -0.718090, -0.233487, 2.684663, 0.993903, 0.660959, -1.915303, -0.986402, 0.110624, -0.523912, -0.155422, -0.945023, 1.446938, 0.347144, -0.319638, -0.529896, 0.818895, -1.314871, 0.304520, 0.233512, -0.837869, 0.919282, -0.019769, 1.741808, 1.532410, 0.516846, 0.505614, 0.838958, -0.648456, 0.864061, -0.708655, -1.448713, 0.160097, -0.122849, 0.152219, 0.062212, -1.648547, 0.667071, 0.536972, -0.264216, 0.789347, -2.212946, -0.479004, 0.584909, 0.851930, -1.355208, -0.519634, -1.066701, 0.579433, -0.275726, -0.172861, -0.029156, 1.548625, -0.112870, -0.374078, -0.489253, 0.844263, 1.116492, -0.571217, -0.764394, 0.615710, 1.423027, 0.166701, 0.080406, -1.555876, 0.446003, -0.120918, -0.431988, 1.063977, 0.312575, 1.983829, -0.596960, 0.083516, -0.597356, 3.026318, 0.603033, 0.062867, 0.381198, 0.882725, -0.098218, 0.780584, -2.143364, -0.017192, 0.834249, 0.907809, 1.280190, -0.853680, 0.631535, -0.219623, 1.462403, 0.309000, 1.357172, -1.254189, -0.403433, -1.475000, -2.061593, -0.714903, -0.361631, 0.893654, 1.362963, 2.086599, 0.211993, 1.341075, 1.747539, 0.507176, -0.335751, -0.822882, -0.950875, 1.540854, 0.873600, 1.197219, 0.168600, -0.485274, -0.614645, -0.934519, -0.454649, 0.838339, -1.181235, 0.275976, -0.540647, 0.672620, 0.083545, -1.491835, 0.468006, 1.074482, -2.561683, -0.452692, -1.117312, 0.168179, -0.408032, -0.505593, 0.817083, -0.442046, -0.131498, -1.126604, -1.569494, 0.355053, 1.131362, 0.713010, 2.154716, -0.139501, -0.598514, 0.943933, -0.542753, -0.382539, -0.563194, -1.705040, 0.886024, -0.379644, -0.140228, 1.120338, -0.924376, 2.414372, 0.524540, -2.293547, -0.559688, -0.070296, 0.750848, -0.406359, -0.254353, 0.344181, 1.013552, -0.007486, 0.746620, -1.535494, -1.486353, 0.004643, 0.956255, -0.748508, 0.459997, -0.531270, 0.070060, -0.053732, 0.734850, -0.181851, 1.037690, -1.404738, 1.968833, -0.505541, 1.692548, -0.421221, 0.948021, -1.858878, -0.955996, -1.863547, 0.476828, -0.702769, -0.124104, 0.170128, -1.936151, -0.858897, -2.853552, 2.323096, -0.617532, 1.485035, -0.256558, -2.372216, -0.653720, -1.247326, -1.109409, -0.566794, -0.137462, 1.509960, -0.414510, 0.994967, -0.876768, 1.515747, 0.612384, 0.002270, 1.729010, 1.317656, -0.369445, 1.199532, 0.245638, -0.150042, 1.365083, -0.289579, 2.121218, -0.077187, -0.147791, -0.808945, 1.310684, -0.310651, -0.185196, 1.118677, -0.454398, 1.563441, 0.886451, -0.924288, 0.238867, 0.649060, -2.260550, 0.620375, 0.320366, -0.414299, 0.852355, -0.050526, 1.230372, 0.087838, -1.496737, -2.252890, -0.872837, -0.033618, 0.432355, -0.326513, -1.256874, 0.865369, -1.200442, -0.172117, 0.678513, -1.892742, 0.378145, -0.634113, -0.497496, 1.057485, -2.047675, -1.678784, -0.090789, 0.095704, 0.183354, -0.055582, -1.294250, -1.289254, 3.114116, 0.103514, 0.666552, 0.637755, -1.813854, -0.517618, 1.734209, 0.072069, 0.977124, 0.116245, -0.841680, 0.801202, -2.088752, 1.338923, -0.293964, 0.258428, -0.739118, -0.542725, -0.452166, 0.090850, 0.882999, 0.713458, -0.362415, 2.440426, -0.536291, 0.016272, -1.744044, -0.110782, 1.313432, 0.264208, 0.552443, 0.197899, 0.739995, -0.449176, -0.905973, 0.429931, -0.419163, -0.600859, 0.272287, 0.759419, -0.392657, 1.017944, -0.162004, -0.328590, 1.680606, 1.139587, 0.641349, 1.715772, -2.174243, 0.008907, -0.158503, -0.209823, 0.093558, 0.620487, -1.483951, -2.298613, 2.090426, -0.479152, -0.372819, -1.676218, 1.556108, 0.294399, -0.199987, -0.503534, 0.974420, -0.891336, -0.181579, -0.303365, 1.247258, -0.304895, -0.330361, 0.749201, 0.726542, 1.033187, -0.426316, 0.686416, 0.588549, -1.046024, -2.265826, -0.569353, -0.974339, 0.790326, 0.301721, 0.051718, -0.408592, -0.497722, 1.313081, 1.564986, 1.936315, 0.901129, 0.331794, 0.263559, 0.396322, -0.878191, 0.420524, -0.614101, -0.048997, -0.834269, 0.705883, 0.250932, 0.302256, 1.503717, 0.533281, -0.085617, 0.068483, -0.982903, -1.700810, -0.308505, 0.654750, 0.127592, -1.526186, -1.279243, 0.689861, 1.368979, 0.482244, 1.852208, -0.370026, 1.246650, -1.487595, -1.333163, 0.708514, 2.147604, -0.584943, -0.212347, 1.200645, 1.572517, 0.193984, 0.064371, 0.439960, 0.220258, 0.294378, 1.689126, -0.863359, 0.906264, -0.163464, -0.094013, 1.055880, 2.419452, -0.010445, 0.954804, -0.708368, -0.488587, -0.187337, 1.789069, 0.251934, -0.636422, 1.745223, -2.032678, 0.587446, 0.389559, 1.229073, 1.070143, 1.737303, -0.256530, -0.323728, -1.016176, -2.597538, -0.439331, 2.120449, -1.636866, 1.661878, 0.174542, -0.609478, -1.462647, 0.138561, 0.475717, 0.761625, -2.056225, 0.519877, 0.520113, -0.058895, -0.223880, 0.487315, -0.600184, 0.111154, -0.520312, -0.740846, 1.001395, 0.269978, 0.061772, 0.795532, 1.153259, 1.945393, 0.386760, -0.194931, 1.117340, -2.547908, 0.275350, -0.291035, 0.121162, 1.168407, 3.004040, 1.206682, 1.860609, -0.553566, 0.436475, 1.509270, -0.079995, 0.648278, 1.520170, 0.654764, 0.642654, -0.103263, 1.431932, -1.672136, 0.675699, -0.358547, -0.368306, 0.465448, 0.850044, 0.548496, -1.096597, -0.154846, -0.588313, 0.500140, 1.866052, -0.722612, 0.694591, 0.342565, -2.186830, -0.268416, -1.208641, -0.252158, -1.056763, 0.726534, 0.720627, 0.528133, 1.618752, -0.471104, 1.252454, -0.255487, 1.021059, -0.093140, -1.126807, 2.117621, 0.861237, 0.464975, -0.611850, -0.340385, 0.272237, 0.949431, 1.179052, -0.367280, 1.360045, -2.030464, -0.575869, 0.553540, -0.858014, -1.017025, -0.675501, -0.547098, 0.523372, 0.772294, -0.304150, 0.586481, -0.530548, 1.554712, -0.108600, 1.136066, 1.108995, -1.031884, -0.009019, 1.093613, -1.632689, 1.833036, 0.476835, -2.287449, -1.048623, -0.890507, 0.350744, -1.675494, 0.005564, 0.502717, 1.097235, -0.486465, -0.191010, 0.305804, 0.368751, 1.427304, 1.539862, -0.179160, 1.119569, -0.038261, -0.889175, -0.835013, 0.045541, 0.075318, 1.266535, 1.736014, 1.063173, 0.626145, 0.333170, 0.255021, 0.031490, -0.641407, -0.198054, -0.420347, 0.534582, -1.828737, 0.079254, 0.020063, -0.101433, -0.231313, 0.563658, -1.594141, 2.160435, -0.816095, -1.346262, -1.275690, 0.755728, 1.756966, 1.766581, -0.440514, -0.720601, -0.200484, -1.164140, 1.138163, -1.487541, 0.623498, 0.322107, 0.567950, -3.297139, 1.047993, 0.016092, 1.125722, -0.452980, -0.745867, -1.266897, -0.358085, 0.168158, 1.054676, 0.092128, -1.170075, -1.726595, -1.283115, 0.045051, 1.534116, 0.196328, 0.590823, 2.194469, -1.296712, -0.988617, -1.626554, -0.902247, 0.615704, 0.291430, -0.111737, 0.312272, -1.681273, 0.581683, 0.273723, -0.823948, -2.025354, 0.405095, 1.725184, -0.288222, -0.722230, -0.128972, 0.883248, -0.825437, -0.458363, -0.131714, 1.339205, -0.840309, 0.149015, -0.497098, -0.403865, 1.003031, -0.946653, -0.545340, 0.030427, 0.916683, -0.904023, 0.182776, 0.677697, -0.083794, 0.984866, 0.463448, 1.186617, 0.311456, 1.690295, -0.111194, 1.911908, 0.164051, -0.945799, -0.228923, -0.373503, -0.399616, -0.307168, 0.458569, 1.050193, -0.596638, 0.873968, 1.337634, -0.428005, -0.573460, 0.318270, 1.244357, 0.855243, -0.287462, 0.136807, 0.891417, -1.137386, 1.848981, -0.979447, 0.892591, 1.767642, -0.529270, -2.029587, 1.249933, -0.215381, -0.217828, 0.159267, 0.411966, 0.686067, 0.760065, 2.328399, 0.711063, 0.545938, 0.081809, -0.765622, 0.467794, -0.890438, 0.082604, -0.755636, -0.505535, 0.512611, 0.276619, -0.186899, 0.190696, -0.196591, -1.168548, 0.881956, 1.345716, -0.601134, 0.435059, 0.509830, 0.513517, 0.514264, 0.901260, 0.045446, 0.063921, -0.034987, -1.735626, -0.563004, -1.697156, -0.288659, -0.616832, -1.328834, 1.049242, 0.189247, -0.222868, 2.113902, 0.614681, -1.008804, -1.107196, -0.189478, 1.963143, -0.750138, 0.170991, -0.204833, -0.091046, 1.044515, 0.744053, -1.841359, 0.612544, 1.076216, -1.005134, -0.679932, -1.677453, 0.089280, -0.332413, -0.453023, -1.385983, 0.125332, -1.633041, -1.896588, 0.448557, -0.013762, -1.760384, -0.524433, 0.557467, -0.266541, 0.072338, 0.118336, 0.609771, -0.027556, 1.407273, 0.831244, -0.687850, 1.681442, -0.097458, -0.614217, -0.881784, 0.217327, -0.417206, -1.255519, 0.813493, -1.480549, 0.375462, 1.831120, -0.710142, -1.009675, 0.391348, 0.406062, -0.297669, -0.371393, -0.307198, 1.349222, -0.343637, -0.202090, 0.537860, 1.055116, 1.315835, -0.844899, 0.264139, -0.593706, 0.609911, 0.570792, 1.552975, 0.653723, 1.001575, 0.446941, -0.189771, 0.677163, 0.104507, 0.525414, 1.317384, -1.440901, -0.112591, -0.371190, 0.378998, -0.071970, 0.541138, -1.696789, -0.348236, -0.652484, -0.377636, 0.573607, -0.506238, -2.064206, 2.449420, -0.716128, -0.364978, -1.081102, -0.315148, -0.468687, -1.144765, -1.122754, 0.024735, 0.145602, -1.032534, 0.076636, -1.741415, -1.211276, 0.532220, -0.448361, 0.164402, 1.486762, 1.178449, -1.921136, 1.082708, -1.011338, -0.891680, 0.753722, -0.916344, -1.823174, -2.347032, 0.365740, -0.819248, 0.234528, 0.511664, -0.056260, 0.513134, 0.908545, 0.235031, -0.682080, 1.233327, 0.582038, 0.406516, 1.459117, -1.081929, 0.651435, 1.182063, -0.598188, -0.006139, 0.316261, -0.918778, -1.112414, -0.646592, 0.178023, 1.338533, 0.711151, -0.474747, -0.112315, -0.798427, -1.162901, 0.457819, 1.741466, -0.180283, 0.315345, -1.688611, 2.574100, -1.171745, 0.392363, -0.026236, 0.895544, -1.343784, 0.512195, 0.451340, 1.112745, 0.798560, -1.048851, -1.389675, -1.462066, -2.488136, 0.417974, -1.436160, -0.004976, 0.455494, -0.005369, -2.055607, 2.736575, 1.002447, -0.428647, -0.650870, 0.645672, 1.605069, 0.802797, 2.566659, -0.721702, -3.715870, -0.161722, 0.063394, -1.053157, -1.069728, 0.014219, 0.183666, 0.808778, 0.657955, 0.689469, 0.964673, 0.146299, 1.118653, 0.950320, -2.009126, -0.252710, 1.252590, -0.026809, 0.534395, 0.607846, -2.124931, -0.336858, 0.246401, -1.309629, -1.849358, 0.327338, -0.187302, 0.702739, 0.259581, 0.246545, -1.555428, 0.243621, 1.375778, -0.851046, -0.013468, -0.184796, -1.976612, 1.069405, -0.794829, 0.660585, -1.459874, 1.347781, -1.181936, -2.609951, -1.077556, -0.468379, 1.438542, 1.189707, 0.745681, 1.139844, -0.336271, 1.190919, -1.034352, -0.366102, -2.191987, 0.236598, 0.486523, 1.556511, -0.219674, 1.470187, -0.854409, 0.267112, -0.377824, 0.520864, -0.056385, -0.798936, 2.074886, 0.032204, -1.217375, -2.063449, -1.285310, 2.097838, -0.940798, 1.610754, 0.304585, 0.457574, -0.190280, 1.142872, 0.824898, -1.373873, 1.054125, 2.023367, 1.372094, 1.033876, -3.208257, -1.014925, -1.688032, -1.700707, 1.261731, -0.727562, 1.071518, 0.593905, -0.314304, 0.716525, -0.441557, 0.115823, 0.189055, -0.435241, 0.104709, -0.392234, 0.542895, -1.655906, -0.570715, -2.399701, -1.575283, -2.348050, 1.250436, -0.182142, 1.184673, 0.310305, 1.541319, -2.274974, -0.026447, 2.122438, -0.471230, 1.222152, -0.289662, -1.055175, 1.879468, -0.428710, 0.031256, 0.339502, -0.228955, -2.475960, 1.110290, 2.435115, -0.272329, 2.677902, -0.005717, -1.316622, -0.951097, 1.510561, -0.963104, -1.506390, 0.210581, 0.879858, 1.406979, -1.301724, 1.836559, 0.419276, -2.014292, -0.982244, 0.225676, -0.119721, -0.658737, -1.212684, -0.284910, 1.108327, -0.807252, 0.419883, 0.924399, 0.419658, 1.649688, 0.579223, 0.999730, 3.067601, 1.383958, -0.454842, 0.267337, -1.908974, -0.351093, -1.831236, 1.108781, 0.711495, -0.840474, 0.951482, 0.466303, 0.694084, 0.770827, 0.003384, 0.262934, 0.242803, -0.585688, -0.695810, 0.317708, -1.713778, 0.132656, 1.782296, 2.769799, -0.937690, 0.758895, 0.455591, -0.273472, -0.929014, 0.483657, -0.849874, 0.942370, 2.475276, -0.772635, -0.333510, 0.665444, -0.226170, -1.101538, -1.030999, -0.929564, 0.722965, -0.021152, -0.030918, -0.150515, -2.408038, -0.285652, -0.744000, -2.462561, 0.389895, 0.315245, -0.601865}, - { 2.337321, -0.429642, 1.022885, 0.253261, -1.401816, -0.989984, 0.830947, 0.597094, -0.571317, 1.690383, 0.315999, 0.009381, -1.025589, 1.024117, 0.108649, -0.092137, 0.346022, -2.055616, 0.457025, 0.353586, -0.729094, 0.597740, 1.496967, -0.055598, -1.501531, -0.899054, -0.825994, -0.128391, 1.115745, 0.324774, 0.563254, -0.099426, -0.225081, 1.297083, -0.147710, -0.171278, 1.274669, -1.084272, 0.580317, 0.631473, -0.060033, -1.063733, 0.774318, 1.144561, -0.691132, -0.717214, -2.486493, 1.636143, 0.152745, 0.433073, -0.154226, -0.384905, -0.399353, 1.216924, 1.193847, 0.839150, -1.136556, -0.242710, 0.323263, -0.641451, 1.390098, -1.462946, 1.447529, -0.751584, 1.055429, -0.635006, -0.490759, -1.512379, -0.976371, -0.698039, -0.573942, -1.526660, 0.466892, 0.045109, -0.020500, 0.600991, -0.097354, 0.780374, 0.450068, -0.551631, 1.366202, 2.039244, -0.558707, 0.804681, 0.341823, -0.149477, -0.635017, 0.170413, -0.756009, 0.463339, -1.288935, 0.313820, -1.007160, 0.311133, -0.298115, 2.501487, -0.752617, 0.344394, 0.233995, 0.735958, -2.328878, -0.662946, -0.448013, 0.422403, 0.160125, -0.366557, -0.233235, -0.379479, 0.176164, 0.161456, -1.362242, -0.682515, 0.758324, -1.012404, 0.262362, -0.887453, 0.346873, 0.714343, 0.975859, 0.318502, 0.144590, -2.413029, 2.009182, 1.155543, 1.038931, 0.905366, -0.583997, 0.211819, 0.978822, -0.622996, -0.255847, 0.240733, -1.912822, 0.054255, 0.583236, 0.240213, 0.636038, -0.278756, -0.014958, -1.188565, -0.401841, -0.698944, -0.772357, -1.315150, 0.793620, 1.407082, -0.289240, -0.178556, 0.337260, 1.258786, 0.612380, 0.707650, -0.770249, 1.522771, -0.689677, 1.667840, 0.223367, 0.366234, -0.661446, -0.454998, -1.666422, -0.644142, 1.769614, 0.884764, -0.655267, -0.318731, 0.034353, 1.389980, -0.816701, 0.283389, -1.483604, 2.045331, -0.690412, -0.316124, 0.595790, -0.607315, -1.721786, -0.307827, -0.206785, 1.276525, 0.440553, -0.129481, 0.789993, 0.783763, 0.004633, 0.666672, 0.963664, -1.313744, -1.027659, 0.260147, 0.776592, 0.552861, 0.239684, -1.050638, -0.818517, 0.241157, -0.512810, 0.338181, -0.181470, 0.718335, -0.052284, 1.379860, -0.213368, -0.533347, 0.200093, 0.115612, 0.475863, -1.172010, -1.116714, 0.261349, -2.293406, 0.150527, 1.015968, 0.521186, -0.314344, -0.306312, -0.306492, -0.830002, -0.595450, 1.167307, -1.905297, 1.567927, -0.236749, 1.434784, 0.568149, -1.684704, 0.791314, 1.505137, 0.674921, 0.946931, 0.467427, -0.018506, -0.966801, -0.395042, 0.927785, 0.304687, 1.248909, 1.594708, -0.046561, 0.629306, -1.351146, -0.447544, 0.703029, 0.223122, 0.069064, 1.788974, 0.572610, 2.200482, 0.750343, -0.561570, -0.023846, -0.112072, 0.568679, -0.412031, -1.032621, -1.124866, 0.128356, -1.569295, -0.683512, -0.191803, -0.582371, 0.231644, -0.663476, -1.257372, 0.197796, -0.124597, -0.781056, -0.682931, 0.107269, -0.783870, 1.185933, -0.611333, -0.789881, -0.733025, -1.447164, -1.196054, 1.248218, -0.440393, 0.865784, 0.803660, -0.063488, 1.356028, -0.682631, -1.229464, 0.830787, 0.727385, -0.316417, 0.663418, 0.728818, -2.299477, 0.136863, -0.363375, 1.034682, -0.620474, 1.326379, 0.270204, -2.776911, 0.486999, -2.130793, -0.188870, -1.056379, -0.318623, -0.236779, 0.523245, -3.162778, -0.858741, -0.214063, -0.977505, -0.522633, 2.856750, -0.276034, -1.303678, 1.594225, 0.394365, 0.250256, 1.200605, 1.082268, -0.790061, 1.730090, 0.901963, 0.839747, -0.950800, -0.748706, -1.134237, -2.807783, -0.529764, 0.032603, 1.539907, 0.172095, -1.310192, 1.184743, 0.882632, -0.492173, 0.639595, -0.326997, 0.948140, 0.477311, 0.913643, 0.297693, 0.475666, -0.695050, -0.024084, -1.119196, -0.601025, 1.121040, -1.262033, 0.446357, 2.282216, 0.081291, 0.119609, -0.373797, -1.017148, 0.800049, -0.031418, -1.502287, 1.101358, -0.141934, 1.518922, -1.424444, 0.703141, -1.639117, 0.136443, 1.580298, -0.483121, 0.615801, 0.286080, -0.619201, -0.097993, -0.212469, 0.646424, 2.298681, 0.616037, -0.837003, 1.006855, -0.789321, 0.995552, -0.932525, 2.413934, -0.696568, 0.326732, -1.234243, -1.503443, 0.495643, -1.012682, -0.739202, -1.221918, -0.588920, 1.370122, -0.899400, 0.266930, -0.675903, -0.326139, 0.494237, 0.874463, 0.755183, -0.454865, -0.226878, -1.308440, -0.625731, 0.554561, 1.210104, 1.836121, 1.602161, -0.384816, 0.416116, 0.538585, 1.821518, -0.674960, -0.223768, 0.616469, -1.719513, -0.849342, 0.335311, -0.612269, -0.226553, 1.073756, 0.898078, 0.119732, -1.082833, 0.926120, 1.179485, -1.296953, 0.570058, 1.113874, -2.337205, -0.109157, -1.309326, 1.949279, 0.758534, 0.853436, -1.676574, 1.030386, -0.580712, -0.111418, 0.646851, -1.247590, 0.668359, -0.657181, -0.278512, -0.068827, 0.415229, 0.072938, 0.974019, 1.259461, -0.860292, 1.560038, -2.188347, 0.024952, 1.124708, -0.824320, -0.206617, -1.104815, 1.440700, -0.391468, 0.002453, -1.089736, 0.175172, 0.321380, -0.456327, -1.445622, 1.289299, -0.726865, 0.799226, 0.610885, -0.713832, 0.264918, 0.817193, 0.487894, 1.106671, 1.101234, -0.861417, -0.929515, 0.878256, -0.320935, 2.118629, -0.726715, -0.654006, 0.945171, -1.432403, 0.862277, 1.391376, 1.644486, 0.287776, 0.719214, -0.849583, 2.174733, -0.551402, 0.192006, 0.498672, -1.474928, 1.122795, 1.177434, -0.709894, 0.923292, 0.436570, -1.410601, -0.177633, -0.970618, -1.574714, 0.201337, -1.850994, -0.783539, -1.157923, -0.093120, 0.938570, 0.694793, -0.079145, 0.510301, -0.690793, 1.575756, 1.566558, 0.914585, -0.894977, 0.890755, 2.222937, 1.047762, 0.509610, 0.542679, 2.371725, 0.495608, 0.300535, 1.889379, -0.121741, -0.602924, 0.213294, -0.724996, -0.103625, 0.630649, -0.162416, -0.333412, -0.838966, -0.743999, -1.084867, -0.623715, -2.491511, 0.321634, 0.529571, -0.512949, 0.256535, -1.022361, -0.164604, 0.742861, 0.074424, -1.085390, 1.461042, 1.064877, -0.246287, 0.365011, -0.307663, 1.471597, -0.823815, 0.725668, 1.387396, 0.600747, 0.340903, -2.032868, 1.069347, 0.709754, -0.785682, 0.603405, -0.604338, 0.789145, -2.402350, -0.523082, 0.919431, -0.502538, 0.499267, -0.549267, -0.911869, -0.817622, 0.317639, -1.664974, -0.887097, 0.677589, -1.734020, 2.158098, -0.430523, 0.288381, 1.376042, 0.763767, 0.560009, -1.957066, -1.401013, -0.662786, 0.276718, -0.804756, 1.779442, 0.599400, 0.553277, 1.596515, 0.006540, -1.567768, 1.041983, -1.629491, 0.321437, -1.409779, 1.185767, 0.912439, 2.374876, 0.138722, 0.456927, -0.172241, 1.293443, 0.629052, 1.073823, 0.056340, -0.369837, -1.225499, 0.571907, 0.243497, -0.392084, 0.569672, -1.798851, 0.890656, -0.397324, -0.460420, -1.320661, -0.500095, -1.078627, 0.613826, -1.844196, 1.436031, 0.191424, 0.530001, 1.573679, 0.866405, 1.942565, 0.030816, -0.011407, 0.761531, -1.340256, -1.159396, -0.889301, -1.300884, 0.118318, -1.315428, 1.032377, -1.105590, 1.810786, -0.989522, 1.804072, -1.022186, -0.347826, -0.514250, 1.221926, 0.133439, -2.079883, -0.717786, 1.511328, -0.379740, -0.380572, -0.505603, 0.431337, 1.252299, 0.270988, -0.046979, -0.355069, 2.473226, 0.846595, 0.718346, -1.879829, 0.080713, -0.755893, 1.760165, -0.520634, 1.656699, -0.445971, 1.440244, -1.380322, -0.746312, 0.307394, 1.806878, -0.388290, 1.842725, 0.008189, 0.140959, 1.498083, 0.680799, -0.081033, 1.064467, 0.534554, 0.056568, 0.610494, -0.189906, 0.919225, 0.124473, 0.397768, 0.222131, -0.530405, -0.534905, 1.285193, 0.216817, -1.484064, 0.997613, -0.371304, -0.564347, -0.583328, 0.295586, 0.932263, -0.488946, -1.282254, 0.993959, -0.336857, -0.919027, 0.819810, 0.035947, 0.063231, 0.489200, 0.197019, -0.493031, -0.235046, -0.757889, 0.501891, -0.415803, -0.054793, 0.343577, 0.427378, -0.731412, 1.099909, 0.130547, -0.220202, 0.422688, 0.475404, 0.931095, 0.850869, 0.485613, -0.494174, 0.161418, -1.744393, -1.432208, -0.879628, 0.668269, 0.061123, 1.427379, 0.225026, -1.486358, 1.530060, -0.386450, -1.057191, 0.840078, -0.058422, 0.877481, 2.424463, 1.008270, 0.466672, 1.358038, 0.432555, 0.598824, 1.386900, 0.131249, -0.453416, -1.296126, 0.307389, -1.494215, 0.007374, 0.140258, -0.811115, 1.166673, 0.195288, -0.073003, 0.030724, -2.310006, 1.082711, 0.319241, 0.813020, 1.163267, 1.365047, -0.679640, -0.408458, 0.709043, 0.934761, -0.762984, -0.353049, -2.097398, -0.380858, 0.711225, 1.093737, 0.297980, 0.114900, 1.331322, 0.151485, 0.277899, 1.581151, -0.540481, 0.404399, 0.031727, 0.928761, 1.215576, -0.204593, -0.687389, -1.608054, 1.310789, -0.576096, -0.547321, -1.716152, -1.225451, 0.687603, 1.491284, -0.379756, -0.272250, 0.588670, -0.134009, -1.644295, -1.506580, 2.100574, -1.813766, 0.581243, -2.028589, 1.740500, 0.124687, -1.231534, -0.397662, 0.192855, -0.203508, 0.431811, -0.073801, 0.231442, -0.260371, -0.033429, -2.712549, -0.603544, -1.223501, -0.690803, -0.508083, -0.510098, -0.395079, 2.147952, 0.021111, -0.210939, 1.638807, 0.575649, 1.573715, -1.738951, 0.091762, 0.750087, -0.218003, 0.454105, 1.539915, -0.818788, -1.760430, -0.068426, 0.803904, 0.757246, 0.538695, 0.479820, -0.099385, 0.845498, 1.501157, -0.186469, -0.368612, 0.784137, 1.210680, 0.398826, -1.131553, -1.035259, 0.084524, -0.049281, -2.350477, -0.040466, 0.273124, -0.553475, -0.061309, -0.386347, -0.780559, -1.228210, -1.391829, 0.636955, -1.065650, -0.810598, -0.286551, 0.724075, -0.402721, -0.813249, -0.908731, 0.702894, -0.360384, 0.360834, 1.265617, 0.204800, 0.255212, 0.612234, 0.570753, -1.412055, 0.516077, -0.841101, -0.197013, 0.016379, -0.624348, -0.615172, 0.102823, -1.168953, 0.431213, 0.548992, -1.734129, 0.126447, -1.634678, 0.024652, -1.573408, -0.187511, -2.404755, -0.763747, -0.649742, -0.045887, -0.565708, -0.058954, 0.297171, 0.380098, -1.183756, -0.606955, -0.008728, 0.186181, -0.697559, -0.517029, -0.464703, -0.576450, 0.252155, 0.470797, 0.636928, 0.495456, 1.797270, 0.344770, -0.201348, 0.023758, 0.544238, -0.612164, -1.062438, 0.393221, -0.556455, -0.426737, -2.385365, -1.783350, -0.049841, 0.998854, -0.680402, 0.654772, 0.066051, -0.358309, 1.452866, 0.760396, -0.553823, 0.800856, 0.268226, -2.298603, -0.600403, 1.625617, -0.729883, -0.571470, 0.350084, 1.074134, 0.441901, -1.052797, -1.486979, -0.248057, 0.402044, 1.450524, 1.145233, 1.872856, -0.098155, 0.812803, -0.195954, 1.111301, 0.225480, -0.595420, -0.153507, -0.466690, -0.147112, -1.409886, 0.964076, -0.008608, -0.333793, 1.620728, -1.297296, -1.415798, -0.120328, 0.370372, -0.344065, -0.804285, -0.545166, 0.278901, 0.428088, 0.804216, -1.340802, 1.529643, 0.511443, 2.096251, -0.730065, -1.099222, -0.383207, -0.326167, -0.339220, -0.634407, 1.162708, -1.357094, -1.107000, 0.917948, -2.217138, 1.710681, 1.308535, -0.578724, -0.704699, -0.426887, 0.474662, 0.192386, -0.267459, 0.420074, 0.891192, -0.156662, 1.676879, 1.155494, -1.543697, -0.514005, -0.290645, -2.482641, -0.977817, 0.211063, 1.080310, -1.525141, -0.975746, -0.167437, 0.446044, 0.715109, -0.420494, -0.125401, -1.964485, -0.579513, 0.094948, -0.991441, -1.844664, 0.003524, -2.398522, 0.833129, 0.778418, 0.551808, 0.231208, 0.429461, -0.967061, 0.608647, -0.550590, -0.075546, -1.479476, -0.790243, -0.482673, -0.130046, 0.394731, 1.271709, 0.042652, -1.001688, -0.056332, -0.922544, 2.118864, 1.257020, 0.181695, -1.032997, 0.126754, 0.826033, 0.302006, 0.909620, 0.080874, 1.021271, 1.369756, -0.445704, 0.206247, 0.954408, 2.470907, 1.128335, 1.383718, -2.566099, -1.310874, 1.026216, -0.314611, 1.173787, -0.466753, -0.435593, 0.066783, 0.598932, 1.032431, 0.275150, 0.941341, -0.434451, -0.863127, -0.295369, 1.178574, -1.189132, -0.175474, 0.916099, 0.141379, -0.231113, -0.890694, 0.101240, 1.208490, 1.350077, 0.660477, 0.658927, -2.028459, 1.418370, -1.550030, -0.295267, 0.889128, 1.355873, -0.068606, -0.538045, 0.279554, -1.727978, -0.743827, -0.897655, -1.328401, -0.126542, -1.525852, 1.227469, 0.150458, 1.415622, -0.012257, 0.290056, 0.026198, -0.292829, -1.429574, 0.344230, 0.341810, -2.266376, -2.576846, 0.902459, -0.436512, 0.933507, 1.917352, 0.945201, 0.250917, 0.456884, 0.183620, -1.049254, 0.693598, 1.817713, -1.036500, 2.400206, 0.259345, 0.442620, 0.175754, 1.658759, 0.138920, -1.376477, -0.599400, 1.272190, 1.758249, -0.678446, -1.634041, 0.084095, 1.029800, 0.143942, -0.017404, 0.661647, 1.517825, 0.670393, 0.111843, 0.886456, -0.050147, 1.027175, 0.347071, -0.585977, -0.652695, 1.971019, -0.453835, -0.069338, -1.066374, 0.538143, 2.486785, -0.221029, -2.855516, 1.083413, -0.094926, 0.992624, -1.447707, -0.789263, 0.970770, 0.833354, -0.776701, 0.032213, -0.396014, -0.529892, 1.282085, -1.079443, 1.724205, 0.174257, 0.287573, -1.304453, -1.984681, -0.418989, 0.011623, -0.344416, -0.789973, -0.087867, 0.657060, -0.061899, 0.215290, -0.265279, 0.682898, -0.111481, 1.204260, 0.289406, 1.146346, -0.528698, -0.720130, 1.312930, 0.102885, -0.951324, 0.951512, -2.146751, -0.203992, 0.541870, -0.399778, 0.074750, 0.985756, 0.179078, -0.301136, 0.801063, 0.146744, -0.308101, -0.483415, -1.380962, 0.966106, -1.267782, 1.422076, -0.603380, 0.019685, 0.157202, 0.207634, 0.848262, -1.409720, 1.416172, -0.636828, -1.261609, -0.447447, -0.598303, 0.481499, 0.464817, 0.449004, -0.691535, -1.536119, -1.522704, 0.100555, 0.113137, 0.200304, -0.889312, -0.628678, 0.692131, 1.106729, -1.553656, 0.217747, 0.468230, -0.932723, 1.212490, -0.119017, -0.620863, -1.593825, -0.546864, 0.299546, -0.166665, 0.139376, -2.420699, -0.298823, 0.282376, 0.487424, 0.695375, 0.245474, 1.214752, 1.469679, 0.194764, -0.256458, 1.392414, -0.710740, -0.135991, -0.123997, 0.169090, -0.211564, 1.987177, 1.186389, 0.669096, 0.278585, 0.165244, -0.740898, 1.019153, 0.328208, 0.622638, -0.296367, -0.055395, 0.099994, -0.066102, 0.391168, -0.448941, -0.888406, -0.136045, -0.056270, -0.556481, 1.328168, 0.609558, 0.719651, -0.409704, 0.203235, -0.305441, -0.860099, -0.666724, 0.025255, 0.813551, -2.501951, -1.565365, -0.502628, 0.116062, -0.358196, -1.047267, 0.592956, -0.390446, -0.537152, 2.115666, 1.850178, -0.683411, 0.949092, 0.945504, -0.581107, 0.162778, -1.026385, 0.472740, -0.542002, -1.189987, -0.394594, 1.626510, -0.137411, 1.201380, 1.281823, 0.220592, -0.841141, -0.401837, -0.856686, -1.291859, -0.868320, 1.924099, 0.845186, 1.623691, -0.811372, 0.481019, -0.062247, 0.907551, -0.127700, -1.415445, -1.055489, -0.146444, -0.700324, -1.383776, 0.764403, -1.757550, 0.539115, -0.981633, -1.354591, 0.078507, -2.038376, -0.260321, -0.085519, 0.320232, 0.327691, 0.896029, 0.975088, 1.631637, -0.038244, 0.022490, 0.333272, 1.392911, -1.276611, 1.475053, -0.769214, -0.377429, -2.101652, 0.563609, 1.491664, -0.812217, 0.622315, -0.438700, 0.337666, -0.159724, 0.113132, 0.526749, -1.285028, 1.345688, -0.531400, -0.627879, -0.806850, 0.183946, 0.808020, 1.255426, 0.063634, -0.073541, 0.061484, -1.427283, -0.414262, -0.005928, -2.114137, 1.039634, -1.098348, -1.193100, -0.115714, 0.513226, -1.218873, -1.411105, -1.893552, 0.846973, 0.557617, 1.001456, 0.927174, -1.292722, 0.604694, 0.988577, 0.046540, -0.047261, 0.042047, -0.654911, 1.306546, -0.304858, -0.711578, -1.119506, 0.661724, 0.545685, -0.780966, -0.266064, -1.324155, 0.397588, 1.501832, 0.166289, 0.119722, -1.188676, -0.897802, 0.529741, -0.171552, -0.334154, 0.454006, 1.041604, -0.563954, -0.839368, -0.387785, 0.898141, -1.988665, -1.541027, 1.379989, -0.326937, 1.773371, -0.238887, 1.326586, 0.889331, 0.005116, -0.818425, -0.580137, -0.199222, -0.382124, 0.865301, 1.781277, 1.899323, 0.180215, 0.546872, -1.517506, -1.020935, -1.223293, -0.196383, 0.453334, 0.118396, 1.609957, 0.730833, -1.171495, -0.026998, -0.994484, 0.194044, 0.973798, 0.600814, 0.502009, -1.316637, -0.579674, -0.567247, -0.609395, 0.282480, 0.917098, -0.976205, 2.022152, -0.041731, -2.273989, 0.598804, 0.360459, 0.835917, 0.602479, -0.551306, -0.386744, 0.812365, -0.242564, -0.180443, 0.033147, 0.730494, -1.693939, -0.888748, 1.651093, 0.796182, 0.830769, 1.061931, 0.029416, 2.044190, 0.250542, -0.129687, -1.941208, -0.452015, 1.206932, 0.577087, -0.071705, 1.070593, -1.181535, 0.163789, -0.109606, 0.664772, 0.180033, -0.041965, -0.187775, 2.821750, -0.482416, 1.165064, 0.600523, -1.064752, -1.348082, 0.342328, -0.812475, 0.080418, -0.148392, 0.135378, 0.352195, -0.177678, -1.196766, 0.559897, -0.101411, 0.987495, 0.780272, 0.100704, -1.698699, 0.558652, -2.011813, 0.592350, -1.214767, 2.044935, 0.305423, 0.835033, 0.254961, -0.474358, 1.002370, 0.032339, 0.638184, 0.114983, -0.510858, -0.296111, 0.571823, 0.526870, 0.196629, -0.624577, -0.393288, -1.357331, -0.588913, 0.183936, 1.379487, 1.951461, -1.659723, -0.254270, -0.895240, -0.641061, -0.313766, 0.565115, 1.292762, -0.662481, -1.541751, -0.034034, -1.265074, 1.021332, -0.298506, -0.283800, 0.405626, 0.864383, -0.109579, 1.103939, 0.995116, -0.203334, 1.358686, 0.491537, 1.143836, 0.605545, -0.251426, -0.712209, 0.413200, 0.637253, -0.508847, -0.655313, -1.499713, -0.411762, 1.338043, 0.138139, 0.306510, 0.594452, -0.112470, 0.952769, -0.645435, -1.620871, -0.007091, 1.557873, -1.017056, -1.152281, -0.685774, 2.309696, -0.044065, 0.333794, -0.127069, -0.721280, -0.137304, -0.357416, -0.480051, -0.540229, 1.053912, 0.280259, 0.115400, 0.036530, -2.211189, -0.424118, 1.006836, 0.007730, -0.329704, 0.203536, 1.272295, 1.315288, 0.422243, -0.702801, 0.149187, -0.261542, 0.175932, -0.068840, -0.737637, 1.139817, -0.053294, -0.089320, 0.273616, 1.076978, 0.229117, -1.258126, 1.130884, 0.637562, 0.607254, 0.399422, -1.722241, -0.173765, 2.150429, 1.203504, 1.521091, 1.389685, -1.440625, -0.337699, -0.938218, 0.087945, -1.447592, -0.194270, 1.811361, 1.132370, -0.161499, -1.163924, 1.735122, -0.810205, 0.901750, -1.209394, -1.813556, 1.056213, -0.323949, 0.587373, -0.937907, -1.586931, 0.602325, 0.401392, -0.912441, -0.123792, -0.432919, 0.336108, 2.990385, 0.272254, 0.234251, -0.567431, -0.261765, -1.385036, 0.844094, 1.873353, -1.308163, -0.408481, 0.357132, -0.244698, -0.355869, -0.976017, 0.542101, 1.593482, 0.040864, -0.161650, 0.398971, 0.818368, 0.269653, -0.755855, -1.535921, -0.118250, 1.019890, -0.301912, -0.380386, 0.873417, 1.084054, -0.390738, -1.258494, 0.002491, 1.207142, 0.480992, 0.680139, -0.597136, -1.036691, 0.656762, 0.350350, -0.276681, 1.346050, -1.729424, -1.245797, 0.888917, 2.327298, 0.815871, -1.208760, -0.153598, 0.624110, -1.539308, -0.843046, 0.510037, -1.772225, -0.902356, 1.037893, 2.179618, -1.762733, -0.645342, -0.192162, 2.306712, 1.654580, -0.077402, 2.270077, -0.572328, -0.968494, 0.058736, -0.116642, -1.575883, 0.379552, -1.568017, 1.179160, 0.262279, -0.783473, 0.176868, -0.548986, -0.958939, -0.196162, 1.142816, -0.705500, 0.974784, -0.956845, -0.716899, -0.835447, 1.214828, -0.029038, -1.163843, -1.907094, 0.603734, -0.277778, -0.145618, -1.909977, 0.369054, 0.189050, 1.772111, 1.177750, -0.040812, -1.726328, -1.158213, -1.068445, -1.324851, 0.809749, 0.039073, -1.181564, 0.174043, 0.159514, -0.283734, -0.978429, 0.743818, -1.130116, 1.020955, -0.048145, -0.759333, 0.082637, -1.232824, 0.021998, -0.488922, -1.165545, 1.334511, 0.040569, -1.336519, 0.441303, -2.775804, 2.753315, 0.568175, 0.385026, -0.235911, -0.829583, -0.618092, 0.396525, 0.677902, -1.337664, -0.121260, -0.901623, -0.240343, 0.448279, -0.923447, 0.794892, 0.538327, 0.345790, -0.062513, 0.799774, -1.634726, -0.743072, -0.430742, 0.441155, -0.307373, 0.377395, -1.265424, -1.804054, 0.307356, 2.090777, -0.579687, 0.497116, 0.475884, 0.301702, -0.131968, 0.223842, 0.411614, -0.909693, 1.274521, 0.101692, -0.303937, 0.048006, 2.029197, -0.297846, 0.141886, 1.405218, 0.063074, 1.205843, 0.305091, 1.142042, 1.841808, -0.545226, 0.054520, 1.035448, -0.499729, -1.500200, 0.024222, 0.814562, 2.019871, -1.419313, 0.588187, 0.053406, 0.431949, -1.519240, -0.436522, 0.001030, -0.977111, 0.614273, 1.778556, 1.212511, 0.549569, 2.292150, 2.548867, 1.968001, -0.552600, 0.768683, 0.767008, -0.337174, -1.285877, 0.018756, -1.162546, -1.150093, 1.344816, 0.843367, 0.972694, -0.204638, -0.186812, -1.099346, 0.228246, 0.208569, 1.117484, -1.225010, -0.320824, -1.120242, -0.324640, 0.186273, 0.411510, -2.439716, -1.811920, -0.226029, -0.745188, 0.346466, 0.071804, 0.202311, 0.193766, -1.322464, 1.069883, 0.996225, 2.069744, 0.569761, 1.665580, 0.695051, -0.199248, 0.365181, -0.154958, 0.826970, -0.594454, -2.165781, -1.286016, 0.682984, -1.480096, -0.945478, -0.097643, 0.279409, 1.349391, 0.664588, 1.322224, -0.308967, -0.425171, 1.142148, -0.269634, 0.033033, -1.502666, -0.144860, 0.342433, 0.279948, -0.490003, 1.182682, 0.518806, 1.272059, -0.336806, -1.763621, 0.660457, -1.254211, 0.927523, -0.908643, 1.941743, -0.650633, 0.570980, -0.217424, 2.470276, -1.388080, -1.062049, -0.482329, -0.017493, 0.732136, 1.110228, -0.208070, 0.067397, 0.147108, 0.805427, -0.221335, 0.531873, -0.376170, -0.334584, -0.508250, 0.838202, 0.513136, 0.335641, -0.242168, 0.133115, -0.038480, 0.968687, 0.409966, -1.527608, -0.821672, 0.741504, -0.331534, -0.857009, -0.666070, 0.808734, -0.127306, -1.606196, 1.635141, -0.433875, 0.191642, 0.551458, 0.644394, -1.329646, -1.252648, 0.505464, 0.491045, -1.287335, 0.205115, -0.841172, 0.944374, 1.567995, 0.773059, -0.388563, -0.505790, 1.465967, 1.178371, -0.188458, 0.079023, 2.008720, 1.558475, -0.577614, 1.135190, -0.274885, -1.221427, 0.327277, -1.109987, 0.848868, -0.253314, 0.385213, 0.442159, 0.662485, -0.280208, -0.049472, 0.611953, 0.595696, -0.063058, 0.324326, -0.027238, -0.449977, -0.124632, -0.975559, 0.932067, 1.332589, -0.063669, 0.438703, -0.014451, 0.074019, -0.652450, -1.748431, -1.750819, -0.392305, 2.392938, -1.506794, -0.909862, -1.147870, -0.171357, 0.573011, -1.228293, -0.431223, 0.202150, 0.777781, 1.021711, -0.760631, -0.127896, -3.050420, 0.889932, 0.735254, 0.994213, -0.552587, 0.040101, -1.708068, -0.821301, 0.995809, 0.020052, -0.993222, 0.698404, 1.328444, 2.409936, 0.469440, 0.060884, -2.240183, 0.001344, 1.184458, -1.056726, 0.400141, -1.012722, 0.064867, 0.700708, 1.336551, 0.772083, 0.463771, 1.344587, -0.543434, 0.041066, 0.873260, -0.381723, 1.235718, 1.369374, -0.219139, 2.391607, 0.615882, 1.125247, 0.158113, -0.562384, -0.389481, 0.566891, 0.196858, -0.914084, 1.175169, -0.799879, 0.375137, 1.100522, 0.251029, -1.182291, -0.603581, 1.653578, -0.221729, 0.564430, 2.940118, -2.783894, -0.236153, 0.672090, -0.826953, 0.020477, 0.949128, 2.785620, -0.559512, -1.104733, -0.227439, 1.580999, -1.163081, -1.277595, 0.539420, -0.560134, 1.546984, -0.920192, -0.695273, 0.569854, 0.015180, -0.284372, -2.317827, 0.460737, 1.144355, 0.609845, 1.629190, 1.424549, -0.816671, -0.173394, -0.811929, -0.331061, 1.104648, 0.066671, -1.042079, -0.239444, -0.277354, 0.085307, 1.549487, -1.413354, 1.185043, -0.153456, -0.515145, -1.619401, -0.477406, -2.445794, -0.824893, -0.773923, 1.103589, 0.883857, 0.083177, 1.538264, 2.019186, -0.274504, -1.795399, -0.545986, -1.291566, -0.833493, 0.993431, -0.396669, -0.463256, 0.096744, 0.703135, 3.552240, 0.216525, -1.411490, 0.938509, -2.191708, -0.716620, -0.823003, 0.647138, -0.319533, -0.253833, -0.780221, -0.003684, -0.724654, 1.690283, 0.458092, -0.313810, -1.345472, -0.199287, -0.232094, -1.130306, 0.838793, -0.283346, -0.335152, 0.571746, 1.497499, -1.096485, 0.829887, 0.234547, 0.158165, -1.081282, 1.389917, 1.098423, 0.514658, -0.199515, 0.251525, 0.259846, -0.053847, -0.911876, -0.299442, -0.594997, 0.807815, -0.787464, 0.935289, -1.103569, 1.838220, -0.132290, -0.470690, 1.189230, 0.494170, 0.098396, 0.364323, -0.301090, -0.655580, -0.155590, 0.009020, -1.631864, -1.837839, 1.805411, 0.092938, 0.039264, -0.646894, -1.755163, 1.969680, -0.686045, 1.239874, -2.358355, 1.654864, -0.575178, 1.462620, -1.478345, 1.794142, 0.809319, -2.622436, -0.081788, -0.231781, -0.963525, -0.142167, 1.081190, -0.573969, 2.047837, 0.907229, -0.980996, 0.014572, 0.582906, 0.109952, 0.490715, -2.735213, 0.644402, 0.994016, -0.069736, -0.231141, 0.428238, 0.374348, -0.210908, -0.947164, 0.852818, 0.100060, -0.928290, -0.504841, -0.096397, -0.569812, -0.704950, 0.484203, -0.638470, -0.706065, 0.286929, -0.583222, 1.437547, -0.616605, -0.714727, -0.210975, 1.154438, 1.380778, 0.110943, -0.525935, -0.629929, -0.063200, -0.811830, -0.587717, -0.616391, 1.239408, 2.513326, 0.234783, -0.522457, 1.474645, 0.765152, -0.014460, -0.121283, -2.569939, -0.951613, 0.809743, -0.992645, -0.956978, 0.891274, -1.603748, -0.371628, 0.512550, -0.280094, 0.112762, -0.905441, -0.256569, -0.493107, 0.320867, 0.403879, -0.846265, -1.781576, 0.034394, 1.176455, -0.689019, 0.815652, 0.884577, -0.408083, -0.770426, -0.912780, -0.374160, -0.013787, -0.210866, -0.511547, 0.559603, -1.240296, -2.085399, -0.476032, 0.577643, 0.116426, 0.308831, -0.830472, 0.474210, -1.292696, -1.172786, -0.991903, 0.349414, 0.175821, -1.651981, -1.822134, 1.006879, -0.587992, -0.172485, 1.018614, 0.825054, 1.233370, 0.080930, -0.554872, 0.679574, 0.069067, -0.086249, 0.195186, -0.945392, 0.559540, -0.130113, -0.698305, 1.119101, -0.515235, 0.100845, -0.775317, 2.087920, 1.176912, 0.638982, -0.148675, 0.719341, -0.827719, -0.935615, -0.235936, 0.894834, -0.056800, 0.758836, 1.030296, -1.049039, 0.667220, -0.001771, 0.477004, -0.673390, 0.887366, -0.377699, -2.900163, -0.097763, -0.753570, -0.361869, -0.355244, 0.391835, 1.440275, 1.051138, -0.505081, -0.292809, -0.736172, 0.976628, 0.692954, 0.688101, 0.102961, 0.715891, 1.825440, 0.556489, -0.337208, 0.299549, 0.337673, -0.368853, 0.162805, 0.715536, 0.930330, 0.016777, 1.372411, 0.291119, 0.125316, 0.665695, -1.142696, -0.927675, 0.363100, 0.487848, -0.188682, -0.520067, -0.166539, -0.183153, -0.696270, -0.471364, -1.737812, 2.005301, -1.079466, -0.056970, 1.390907, -0.304624, -0.300941, -1.852622, 1.073252, 0.150073, -0.086175, 0.169735, 1.811229, 3.174985, -1.134058, -1.302898, -0.142359, -0.243731, -1.438662, -1.243708, -0.084375, 0.786929, 0.617991, 0.641978, 0.943103, 0.290617, -0.007560, 1.692582, -0.147972, 0.158467, 1.181921, 0.548755, 0.967098, 0.170285, 0.932408, -0.976638, 1.923063, 1.374870, 1.007909, -1.184207, 1.156023, -0.138481, -0.352115, -0.165230, 0.340586, -0.324497, 0.984567, -0.370267, 1.415006, 1.629476, 0.151080, -0.682174, -2.390866, 0.226890, -0.933820, -0.931362, -0.417865, 1.094627, -0.681261, -1.201641, 1.637456, 0.182476, -0.882310, 1.061036, -2.130762, -1.109142, -0.007399, -2.177727, 1.195377, -1.763817, 1.173323, 0.806390, 0.976779, 2.319091, 0.692855, 0.561399, -0.010128, -0.485452, -1.175547, -0.270605, 0.361076, 0.219290, 0.684318, -0.779013, -0.321915, 1.108012, 0.338861, 1.469638, -0.003356, 1.052430, 0.610195, -0.494343, -1.811070, -1.035314, 0.339320, -0.537407, 0.698484, 0.055934, 1.151257, -0.598374, 2.721496, 1.228932, 0.827922, 0.285264, 1.934264, -0.012394, -1.042898, -0.202276, 0.688050, 0.088320, 0.249200, -1.333165, 1.536338, 0.748816, 0.747077, -0.945105, 0.495136, 0.931299, -0.104341, 0.179619, 0.282522, 0.763397, -1.412177, 0.288321, -0.114031, 0.100627, 0.010345, 0.003131, 0.076089, -0.336673, -0.256276, 0.993024, 0.008089, 1.296678, 0.406845, 1.261078, -0.116565, -0.438248, -0.050055, -0.142456, 0.599522, -0.482074, -0.772793, 0.174188, 0.765013, 1.549270, -0.326966, -0.363881, -0.231502, 1.793247, -0.645320, 0.439428, 0.474547, -1.694857, -3.386497, 0.952501, 0.948442, -0.676680, 0.606416, -1.977418, -0.094843, 0.307231, -0.607186, -0.470207, -0.331358, 0.325289, -1.131281, -0.231434, -0.433763, 1.300479, -0.280185, 1.252363, 0.815856, 0.464310, 0.728566, 1.485649, 0.546781, -1.396667, 0.338572, -1.655903, 0.420377, 0.281311, -1.111173, -0.140033, -1.507939, 0.644368, 1.080768, 0.397577, 0.817869, 1.709339, -0.004625, 0.112178, -0.662504, -0.947122, -1.539480, -1.130573, -1.252391, 0.297672, -0.293719, 0.506604, 0.150008, -1.309252, 1.521718, -0.206846, 0.746323, -0.447425, 0.078452, -0.299725, 0.618614, -0.814651, -0.460175, 0.178950, -0.505777, 0.569298, -0.752216, 1.454532, 0.410511, -0.213430, -0.560482, -0.815947, 0.527645, -0.192652, -0.044070, -0.134091, 0.179687, -1.632031, -0.681558, 1.229445, 0.266362, -0.722924, -1.759851, 1.549819, 0.757948, 1.168719, -0.389137, 0.418914, 0.391587, -0.613770, -1.356007, 0.398750, 0.174487, 1.369844, -0.567837, -0.026973, -0.025800, -1.823879, -1.341706, -0.918892, 0.605371, 0.151341, 0.562000, -1.813912, 0.518735, -1.256922, -0.984604, -2.266686, 1.601562, 0.759092, -1.347905, 1.957820, -0.870879, 0.378215, 0.437680, -0.628609, -0.629912, 0.093632, -1.754365, -1.231373, 0.109443, 1.551882, 0.348643, 1.728756, 0.783940, -1.189103, -1.579136, 0.197554, 1.005385, 0.260297, 0.961543, 0.467555, -0.153463, -1.545000, 0.299656, 0.909066, 0.153681, -0.377016, 1.370693, -0.618686, -0.407515, 1.216128, -0.118453, -0.301039, 0.401727, -1.525915, 0.275522, -0.603595, -0.413420, -2.582762, 0.303243, -0.681313, 1.070565, 0.395349, -0.583501, -1.229236, 2.011695, -0.724282, -0.520835, -0.664947, 0.966854, 1.295172, -0.173344, -0.820058, 0.717728, 0.417631, 0.620602, 1.655718, 0.533786, -0.465954, 1.254768, 1.368894, -0.219607, -1.499260, 0.332906, -0.417570, 0.437638, -2.166195, -0.081047, -1.226050, -1.467537, -0.468164, -1.339766, 0.251649, 1.286700, -0.124942, 0.576080, -0.390990, -0.919239, -1.405808, -0.620938, 1.011732, 1.073943, -1.022089, 1.228517, -1.313493, 0.329991, 0.325891, 0.441823, 0.533469, 0.168244, 0.488010, 0.073313, 1.458532, 1.205154, 1.824760, -0.687414, -0.500318, 1.507036, -0.042392, 1.512058, -1.547461, -0.343478, 0.259748, -0.515998, 0.523989, -1.911554, -0.348326, 1.156765, 0.440582, 1.001312, -0.800922, -0.150718, -0.432235, -1.305117, 0.339569, -1.583480, 1.336014, -0.858737, 1.431749, 1.144301, 2.021197, 0.587902, 0.634428, -0.135424, 0.611055, -0.570803, 1.200229, -1.145424, -0.607091, 0.513574, -1.134279, -0.701436, 0.659436, -0.126769, -0.722253, 0.312852, 0.851066, -0.550953, -1.035056, -0.178996, 0.794292, 1.345476, -0.210195, -1.054664, 1.044173, -1.050228, 1.031430, -0.892830, 1.214891, -0.167253, 0.545731, 0.293455, -0.584334, -0.197853, 1.698795, -1.086416, -1.396709, 0.388075, 0.928634, 1.193052, 0.542530, 2.174764, 0.239803, 0.971829, 0.021349, -0.210745, -1.307224, 0.530507, 1.158654, 0.779241, 0.438243, 1.113252, 1.482862, -0.982382, 0.888396, 0.657061, -0.091891, 0.850659, 1.621601, 0.950529, -0.605095, -0.961948, 2.756418, -0.804598, -1.133715, 0.420542, 0.707231, 0.441337, 0.019870, -0.412532, -0.020664, 1.224954, 0.129117, 0.692995, 0.588245, -0.587636, -1.682081, 0.152476, -0.395927, -0.051541, 0.867257, -0.825371, 2.508079, -0.541376, 1.242906, 1.081817, -0.381739, 1.007005, -1.397104, 2.049309, -0.566978, -0.687564, -0.468995, -1.287895, -0.198237, 0.422649, 0.239427, 3.274068, -0.549394, 1.091445, -0.063481, -1.109790, -0.092825, 0.228454, -0.275759, -0.069295, -0.568130, 0.839787, -0.131585, 0.856314, -0.177739, -0.744406, -0.554781, 1.133109, -0.720532, 2.679416, -0.065719, 0.750548, -1.681082, 0.402632, 0.161070, 0.773558, 2.388589, 0.537458, 0.144391, -1.162200, -0.243017, -0.209331, -0.738535, 0.494306, -0.031733, -0.113754, 0.076761, 0.831861, -1.190671, 1.039350, 0.691202, 0.861462, 1.023810, 0.700740, -0.359189, -0.571197, 0.647437, -0.494145, 0.688758, 0.248115, -0.300279, -0.092851, -2.463564, -1.275104, -0.765320, 0.346337, -1.245937, -1.062869, -0.051069, 0.901298, -0.744129, -0.598520, 0.617659, 0.035656, -0.573097, -1.796183, 0.200496, 1.901870, -0.080139, -0.668790, -0.091314, 0.067770, -0.401100, -1.190672, -0.267438, -0.297945, -0.089070, 0.671168, -0.785190, -1.236640, -3.077630, 0.829355, 1.039796, 2.058157, 1.434751, -1.002031, -0.680382, 0.828008, 0.714094, 2.441755, 0.069451, 1.193988, 0.061189, -0.445449, -0.886332, 1.043918, -1.112944, 0.771895, 2.891960, 1.104239, -0.072483, 0.406584, 0.719894, -2.093123, -1.813807, 2.245861, -0.412736, 0.022196, -0.372102, 1.781085, -1.330432, 1.457060, 1.634151, 1.701577, -1.300448, 0.753790, -0.837953, 0.413695, -0.156132, -0.536231, -1.643046, 0.074195, 1.403474, -1.024449, 1.060438, -0.659555, -0.494227, 0.768915, -0.262128, -2.380972, 0.532851, 0.808966, -1.090259, 0.405008, -1.411347, 0.015488, 0.462615, 1.112488, 0.319696, -0.617976, -1.029672, -1.899080, -1.073926, -0.617877, 0.898976, 0.690574, 1.870248, -0.147114, 0.930937, 0.431637, -0.580698, 2.058217, 1.171048, -1.206165, 0.486984, -1.695516, 1.033344, -0.272659, -0.527465, -0.952022, -0.461038, 1.244217, 0.216961, -0.821916, 0.283711, 0.238485, -1.249147, 0.171838, -0.065925, -0.156381, -0.554742, -0.972072, -1.528020, -0.355954, 0.270998, 0.139556, 1.812417, 1.801546, 0.624538, -0.787086, -0.184569, 1.530320, 0.143045}, - { -0.460127, 1.003686, -0.756425, 0.948514, 0.243031, 1.061145, 0.037331, 1.278928, -0.372089, 0.717820, -0.892170, 1.527757, 1.448706, 1.676767, 0.063852, 0.254324, 1.676828, -0.320170, 1.569841, -0.673816, 0.228773, 2.254672, 0.475782, 1.376060, 1.188919, 0.456734, -1.462780, -0.404180, 0.876127, 0.224036, 1.209959, 0.615370, 0.333324, 1.172845, -0.432864, 0.433496, -1.064113, 0.466705, -0.658574, -0.038656, -1.141713, 0.183697, 0.721033, 0.118445, -0.112179, 1.902772, 0.813864, 0.327133, -0.906739, -0.323852, -0.821924, 0.642731, 0.605088, -0.696286, -0.427675, 0.262865, -0.959123, -0.845785, -0.225202, -0.429458, 1.781495, 1.492720, -0.018856, -1.889690, 0.538864, -0.300831, 0.488659, 0.715193, 0.018927, -1.468770, 1.783636, 1.825216, -0.480296, 0.003911, 0.247482, 0.912840, 0.836604, 0.417612, -1.233762, -1.355279, -0.119523, 0.946241, 0.063261, -0.163813, -1.811143, 0.425394, 1.215904, -1.432267, -0.470739, -1.593512, 2.271159, -0.697805, -0.050870, -1.305174, -0.999425, 2.055721, -1.623457, -0.526404, -0.460731, -1.507115, 3.133274, 0.247029, 3.504288, -1.377407, -0.198749, 0.866587, -0.853861, 0.870844, 0.229323, 1.238467, -0.888205, -0.492117, 0.134792, 0.087148, 0.795628, 0.701015, -1.908604, -0.720976, -0.916969, 0.293436, -1.200093, 0.184176, -1.704998, -1.277669, 0.609335, 1.407192, -0.141481, 2.205840, 3.290139, 1.811724, 0.744099, -0.366326, -0.634037, 0.642487, 0.340081, 0.639567, -1.243038, 0.920221, -0.854984, -1.609432, 1.352153, -0.697336, 0.233935, 0.881627, 0.219395, 1.241279, -1.294647, -0.125217, 1.009194, 1.065202, 0.424949, -0.659179, -2.039154, 0.251962, 1.437868, -0.336978, -0.087106, 1.876559, 1.656252, -0.089746, -1.391716, -0.462172, 0.630620, -1.975464, -0.250392, -1.206013, -1.360507, -0.446080, -0.174210, 1.275199, 0.265648, 0.916949, 1.054683, -1.845755, 0.410997, 1.719696, 0.000758, 0.272884, -0.334283, 0.216386, 0.558240, -0.577344, 1.587096, 0.581770, 1.099519, -0.496223, -0.161820, -0.731210, -1.493183, -0.055015, 0.125838, 0.853131, -0.372956, 0.554524, 1.056030, -0.477273, 0.139485, -0.231218, 0.444733, 1.357238, 0.536535, -0.831062, 0.631846, -0.043652, 0.020603, -0.618144, -0.847457, 0.158231, 0.851819, -1.097051, -1.187936, 1.025259, 0.757621, -1.385510, 0.044439, -0.732928, -0.312060, -1.074313, -1.748183, -0.470906, -0.400687, -1.642419, 1.445314, -0.261139, 0.891566, -0.438451, 1.736373, -0.118390, -1.152047, -0.232348, 0.689129, -0.517057, -1.450817, -0.950483, -1.494099, -0.763745, 1.022427, -0.160285, -2.680851, 1.476271, -0.185754, 1.972785, 0.780818, 0.562580, -1.108786, 1.343296, 1.330739, 0.272110, -0.589423, -2.458832, -1.120480, -0.438154, 0.614543, 0.310643, 0.071726, 1.835829, 0.332506, 0.153416, 0.697628, 0.283001, 0.814715, -0.296614, -2.341450, -1.371490, -0.628172, 0.593308, 1.542751, -0.697052, 0.385552, 1.008544, 0.415322, -0.363613, 0.410209, 0.741077, 0.503613, 0.080042, 0.070777, 1.069959, -0.030066, -0.872705, 1.446193, 1.300552, 0.004272, -0.508644, 1.821110, -1.124357, 1.812700, 0.355085, 0.101891, -0.218965, -0.416687, -0.267793, -0.779310, -0.099090, 0.826203, -1.963421, 0.567766, -1.057421, -0.545433, -0.726329, -0.522214, 0.007095, -0.368573, -0.696462, -2.421234, 0.759457, 0.671386, -0.226851, 0.631842, 1.140173, -0.200253, -0.838181, -1.389659, -1.379359, -0.038064, 0.263635, -0.614666, -1.604632, -1.369720, -0.031672, -0.562532, -0.280005, 1.134341, 0.698787, -0.917519, -0.754584, 1.770137, -0.538803, -3.146376, 0.283692, 0.282129, 0.375359, -1.619927, 1.382256, 0.761313, -0.749871, 0.266723, -0.820136, -0.543952, 0.256631, 0.761141, 0.435913, -0.203392, 0.067976, 0.694728, 0.577919, -1.394714, -2.173885, -1.687474, 1.634344, 0.010458, -0.075337, -0.346201, -2.189259, -0.197817, -0.239190, 0.332313, -0.672594, -0.022500, 0.814103, -0.300997, 0.160148, 0.102091, -0.809444, -0.565075, -1.041961, 1.527980, -0.483138, -2.119360, -1.147871, 0.321149, 0.733275, 0.398588, 0.300104, -0.895803, 1.249333, -0.429273, -0.191192, -1.331521, -1.529801, -0.292818, 1.614285, -0.510469, 1.436781, -0.022407, -1.348137, -0.701011, 2.970067, 0.297123, -1.251790, -1.084230, 2.221634, -2.581867, -0.760592, -0.192657, 1.247464, 0.009426, -1.998624, 0.459647, -0.221443, 0.165015, 0.358107, 1.102837, -0.248085, -1.821544, 1.044854, -2.283337, -0.487460, -0.169743, -1.030411, 0.842757, 1.061848, -0.986291, 0.272628, 0.077178, 0.001695, 0.564364, 1.674997, 0.023513, -1.009305, 0.361827, 1.756204, 0.049040, 0.967914, -0.034218, -0.551311, -0.741045, -0.183406, -0.333160, -0.595086, -0.154153, -1.187447, 0.013791, 0.600637, 0.496078, 0.425958, 0.949856, 0.669755, -0.130918, 0.119474, -1.019704, 2.202222, -0.213286, -2.135757, -0.680348, 1.322261, -0.573732, -0.666441, -0.123670, -2.056307, 1.359813, -0.356080, 1.334991, -1.413171, 1.008093, 0.805808, -0.539764, 0.725935, -0.498486, 0.502211, -1.046462, 0.835032, 0.442036, 0.661102, 0.371917, -1.580378, 1.456512, -0.599743, -1.262098, -0.977225, -0.420424, -1.095705, -0.102750, 1.287607, -0.665565, 0.445280, 0.559933, 0.396172, 1.098799, -0.917427, 1.063693, -1.710001, -0.613000, 0.090681, -2.390242, 0.361528, 0.423764, -1.117324, -0.541464, 0.157672, 0.061289, -0.980778, -1.624991, -0.919228, -0.198608, 0.407426, 0.531641, 0.782352, 0.308421, -0.595577, 0.133041, 0.117609, 0.877921, 0.693231, 1.618490, 0.879163, -1.847283, -0.225096, -1.908849, 0.429856, 0.178704, 1.206298, 0.343299, 2.096951, 0.101621, 2.304997, 0.906440, -1.114701, -2.056771, -1.200813, -0.605093, -0.639085, -0.350566, -0.047783, 0.209551, -0.484639, 0.215818, 1.547066, -0.306745, -0.480952, -1.382057, -0.676212, 0.767382, 0.149698, -0.466264, 0.452004, -0.580517, -0.294788, 1.659517, -0.367299, 1.934540, 1.202956, -0.243328, 0.101271, -0.496497, -0.974175, 2.136533, -1.673039, 1.693513, 1.307232, -0.726413, 0.228218, -0.732515, 1.233824, 1.007473, -0.292153, 0.353034, 0.003874, 1.672240, 1.639677, -1.871337, 0.334767, 0.244204, 2.069188, -2.315363, -0.944928, 0.832698, -0.058052, -1.055999, -0.086511, -0.443908, -0.951020, -0.714940, -0.213177, 1.270883, -0.380284, 2.978762, -0.264423, -1.238350, -1.892415, -1.501531, 0.822271, -2.150519, 0.466668, -0.306070, -2.966870, -0.381999, -0.802675, -1.209628, 0.467249, -0.528363, -0.498916, 0.383031, 1.514718, -0.371822, -0.817617, 1.015537, -0.462773, -1.055026, -1.753604, 1.091346, -0.388252, 1.623948, -1.569725, -0.676217, 0.896353, -0.767891, -0.928214, 0.330030, 0.741161, -0.822675, -0.261115, 0.314503, 0.813945, 1.167133, -0.707453, 1.483614, -0.150487, 1.463426, 0.304343, 0.934806, 0.186697, -0.151715, 0.060116, 0.093067, 0.271059, 0.494908, -1.533333, -1.318730, -0.432558, -0.624556, -0.964479, 0.423987, 0.291118, -0.621755, 0.409638, 0.417397, 0.742512, 0.207273, 0.599914, -0.147224, -1.028698, -0.327382, 0.670668, -0.325864, -2.105638, 1.305043, 1.551883, 1.743432, -0.765596, -0.468690, -0.387992, 0.422004, -1.757832, -1.708843, 0.404366, -0.221322, 1.703687, -0.368459, -1.027810, -0.308806, 1.636001, -1.099645, -0.652451, 1.037503, -0.162773, -1.326930, 1.089659, -0.598857, 1.726949, 0.792473, 0.371111, -0.699452, -0.348475, -0.162744, -0.497017, -1.468268, -0.050597, -0.582526, -0.839777, -0.455032, -0.560429, -1.316616, -0.553797, -1.003100, -1.305462, -0.440936, 0.177445, 1.095493, -2.221320, -2.301556, 0.062108, 0.009978, -0.707175, 0.031874, -0.033571, -1.308939, -1.013934, 0.845773, 0.112552, 0.670863, 0.164866, -0.953538, 2.902723, 0.691702, -0.415291, -1.569011, -1.148232, 0.168929, -3.251531, -0.042419, -0.556035, 0.617929, 0.817292, 0.906200, 0.022940, 0.104165, 1.902683, 0.310831, -1.820452, 0.482757, 0.114034, -0.530148, -0.264628, 0.429445, 1.635688, 0.710741, 1.407302, 0.959449, -0.828725, -1.773984, 0.337037, -0.022428, -0.529695, 0.974009, 0.214441, 1.666152, 0.305561, 0.615461, -0.776867, -0.396863, 0.839819, -0.321920, -0.563034, -1.686524, 0.182866, 0.725401, -0.458807, -2.629012, 1.511413, 0.623160, -0.230702, 1.277348, 0.632634, 0.629001, 1.020781, -0.354234, -0.748805, 1.494922, -0.799784, -0.371394, 1.068750, 1.074057, -2.450619, 1.170448, -0.417757, -0.689442, 0.542454, 0.283593, 0.185500, -1.681825, 0.048866, -0.601730, -0.601606, -0.311057, -0.862420, -0.688702, -0.180382, -0.371591, 0.545398, -1.666141, 0.888943, -0.392656, -1.109465, -0.597225, 1.054845, 1.534163, 0.075385, 0.831754, -0.666996, -0.524153, 0.537369, 1.312377, 0.193846, 1.520482, 1.534900, -0.001184, 1.861824, 0.192030, 0.562351, -1.285117, 0.863550, 0.655581, 0.640489, -2.459357, 1.187551, -1.625427, -0.531603, 0.186476, 0.714236, 1.447022, 0.876043, -0.290773, 0.327438, -1.401845, -0.613483, -0.153764, 1.217052, 2.746966, 1.167980, -0.713606, 1.654671, 0.842773, 1.128916, -0.416414, -1.430610, -0.389778, -1.000029, 1.014183, -0.576937, -0.120991, 0.423789, -0.756631, -0.304002, -0.033811, -1.315093, 0.851053, 0.921874, 0.997267, 1.040307, 0.806320, -0.194278, -1.627184, 2.272241, 1.362953, 0.175077, 1.171183, 0.229712, 0.218339, -0.793814, -0.549368, 0.420265, 0.554025, 0.656061, 0.336746, -0.914611, -0.307540, -0.300180, -0.107534, 0.209184, 2.226789, 0.218972, -0.953432, -0.617711, -1.514611, -0.779318, 1.288303, -0.278332, -1.143272, 1.148163, 1.549711, 1.274650, 0.430797, 0.540928, 0.112877, 2.015429, 1.414303, 1.076198, 0.660798, -0.117721, -1.438394, -1.102855, 2.052195, -0.116849, 1.251255, -0.306534, 0.476674, 0.877963, -1.397614, -1.771317, 0.233993, -0.612836, 0.175866, -1.558213, -0.706391, -0.152991, 1.262000, -0.195060, -0.831798, 0.595490, -0.118716, -1.161827, -0.522823, 0.158574, 0.305202, -0.565093, 2.323268, -1.102309, -0.381197, -2.280344, 0.930895, 1.981037, 1.245296, -0.594346, 0.658396, 0.324573, -1.300188, -0.764594, 0.277831, -0.299987, -1.387957, -1.298643, 1.689250, -1.284189, 0.010215, -0.777559, -0.415292, 0.354229, -1.524945, -1.123124, 0.297385, 0.783419, -0.220291, 1.547140, 0.779848, -0.809523, 1.754017, 0.183005, 0.711752, 0.315054, 0.131111, 0.456546, 0.678837, -0.832297, 1.027259, -0.538304, 0.629587, 1.003817, 0.312869, 0.184614, -1.878231, 0.707187, -0.094790, 0.193750, 0.891292, -0.986080, -1.019000, -0.779440, 1.499748, -1.339226, -0.708884, 0.731531, -0.540700, 0.251360, -1.334844, -0.257135, -0.153748, -0.770354, -0.425155, 1.227461, 0.045296, 0.521973, -0.217285, -0.368843, -1.065089, -0.544799, -1.554330, -0.250957, -0.388296, -2.032221, -0.581011, -0.712709, -0.435894, 0.257655, 0.988901, -1.363770, 0.330631, -0.128041, 1.838787, 1.595853, -0.956498, -0.064633, 0.379057, 0.269867, -0.367822, 1.399137, 0.393367, -0.783889, 0.602803, 0.589280, 0.236859, -0.508539, 1.400119, 0.106359, -0.471102, 1.155166, -1.061007, 0.306934, 0.151076, -0.250156, -0.788735, -0.401488, 0.280954, -0.308704, -1.149645, 0.882630, -0.687931, -1.083163, -0.749782, -0.974116, -0.363012, 0.716242, -1.055983, -1.713683, -0.041937, 0.044253, 0.761031, -0.598520, -0.305064, -0.007800, 0.930536, 1.335585, -1.537282, -1.459065, -0.778544, 0.600995, -1.563390, 0.948600, 0.813824, 1.489932, 1.849583, -0.411338, 0.926548, -1.313667, 0.119911, 1.266238, -1.010870, -0.401707, -1.450872, -0.213465, 0.339255, -1.586570, -1.897717, -0.193966, 0.956260, -1.416980, 0.928067, -0.633256, -0.594525, -0.038643, -0.038918, -0.769292, 0.234031, -0.262888, -0.289003, 0.464379, -0.949744, 0.498933, 1.336079, -0.428263, 1.009727, 0.649546, -1.716143, -0.005567, 0.912852, -0.190231, -0.089660, 0.966192, 1.083718, 0.528760, -1.597066, -0.879471, 0.673324, 1.050413, 0.293257, -0.196932, -0.529742, 1.021324, -1.483219, 1.078110, -1.624242, 0.400077, 1.119824, -0.099644, -0.270496, 0.011287, -0.127041, -0.584701, 1.088290, -0.241049, -0.227215, 0.578478, -0.304468, -0.140260, -0.427711, 0.347765, 0.604143, -0.250825, 1.027923, 0.568952, -2.199576, -1.163435, -0.939665, 0.185874, -1.796223, -0.250312, -0.224372, -0.336193, -0.947016, 0.848199, 1.479376, 1.253693, -0.058175, -1.666420, -1.042481, -0.640337, 0.161516, 0.868397, 2.155574, 2.614828, -0.092077, 1.989316, 0.811289, 0.852831, -0.702118, 0.273574, -0.143411, -0.997001, -1.091719, 0.193527, 0.372442, 0.107208, -0.643985, 1.106882, -2.019802, -1.685648, -2.106049, -0.383486, 1.552847, 1.460692, 0.300521, -1.094292, -0.323477, 0.283936, -1.737739, -1.313097, 0.959102, 1.180247, -0.493558, -1.211564, 0.513725, 0.034380, -0.480539, -0.683817, 1.854518, 1.771158, 1.147035, -0.478712, -0.528136, 0.330276, -0.645434, -0.845557, 1.748666, -2.156501, 1.103902, 0.572898, 0.088537, -0.731132, -0.732680, -1.467669, -0.764881, 1.471951, -1.138447, -0.083471, 0.463466, 0.249519, 0.614139, 1.137557, 0.404978, 1.752942, -1.535458, 1.239562, -1.419405, -0.614561, -2.103364, 0.382886, -1.476316, -1.061570, -0.453045, 1.406648, -0.364104, 0.205290, 0.565590, -0.717351, 0.376465, -0.338862, 2.208793, -1.019191, -0.524118, -2.713258, -0.539275, 1.168560, 0.004871, -0.528000, -0.070925, 0.281167, 0.242310, -0.478782, -0.033544, 0.272859, -0.383578, 0.053074, -0.219432, 0.134538, 0.749099, 0.214965, 0.984827, -0.077053, -2.026097, 0.861673, 0.020702, -2.141807, 0.441566, -0.974873, 1.817576, 0.472948, 1.352965, 0.416758, -0.379396, 0.755273, -2.611532, 0.837089, 0.330657, 0.451105, 0.184757, 0.773917, 0.158940, -0.071377, -0.420284, 0.920147, -0.542458, 0.770142, 0.245097, 0.383741, -1.408619, -0.468930, 0.255804, -1.139607, 0.153167, 0.148747, -0.287015, 0.464924, -0.410319, 0.436592, 0.558055, -0.100770, 1.184754, -0.370387, 0.249615, 1.891655, 1.082222, 0.673851, -1.087310, 0.524273, -0.866514, -1.215565, 1.025637, 1.736586, -0.578976, -0.317209, -0.998804, 0.576247, 0.838931, -1.872715, -0.406934, 1.214934, -2.815383, 0.960484, -0.989856, -1.253224, -1.064002, -0.314727, -0.634642, 2.032980, 0.433594, 0.167152, 0.233060, 0.088761, -0.426107, -1.026667, 0.540443, 0.301716, 1.437619, -2.185498, 1.027729, -2.297431, -0.514056, -1.688482, 1.339633, -0.019552, 0.512803, -1.106839, 0.716364, -0.798406, 1.169102, 1.578032, 0.767276, -0.381469, -2.297286, 0.210627, 0.359618, -0.805861, 0.600629, -0.188226, -0.081408, 0.900425, 1.088347, -0.835499, -0.129629, -0.903928, -0.027371, -0.239630, -1.089051, -0.313082, 0.097719, 0.637898, 0.535474, 0.030471, -1.128241, 0.006214, -0.416076, 0.429710, 0.358826, 1.695234, 0.928487, -0.541833, 0.053114, 1.109861, 1.677476, -1.718037, 0.151014, -0.068746, 0.054103, 0.305922, 0.294338, -0.551724, 1.398524, 0.312540, -2.500440, 1.104085, 0.495325, -0.212927, 1.173268, -0.108843, 1.048015, -1.607806, 1.660228, 0.340836, -1.270303, -1.865348, -2.217036, 0.847054, -1.427358, 0.458143, -0.330194, 0.955491, -0.988231, -0.002164, -0.061773, 2.525695, -0.700693, 1.121545, 0.616855, -0.380676, 0.134950, -1.148246, 0.615436, -0.019544, 0.878479, -0.923966, -0.412371, -0.161045, -0.210234, -1.330746, -0.183609, -0.741830, 0.527310, 1.861954, 0.094060, -1.174285, -1.077550, -0.923288, 0.026420, -1.048188, 0.290261, 1.250046, 0.765301, -0.439468, -1.000468, -1.277766, 1.236733, 1.002172, -0.324927, -1.096115, -0.888198, -2.813093, -0.427218, 0.097118, -1.501858, 1.398967, 1.336252, -0.387932, 0.730351, 2.137025, 0.002162, 0.045108, -0.690897, -0.752493, -1.084980, 0.008142, 1.223110, 1.346244, -1.197635, -1.421213, 0.808973, -1.289689, 1.536845, -1.297303, 0.530056, 0.385125, -0.526596, 0.855535, -1.505588, -0.120820, -0.921401, -0.020914, -1.912856, -0.356736, -0.768164, 0.402606, -0.798361, 0.535054, 0.893569, 2.822687, -1.156008, -1.707941, 0.261164, 2.136239, -1.874312, 1.327378, -0.026164, 0.875560, 0.811467, -0.960811, 1.037861, 0.244615, -1.569308, 1.578202, -1.705731, -0.610333, -2.049166, 0.423059, 0.857732, 0.380744, -0.352497, -0.056508, -0.131958, -1.073322, -0.552628, 0.655303, -0.116707, -1.895882, 0.392583, -1.313690, 0.446411, 0.854990, -0.110171, -0.598494, -0.769743, -0.735906, 0.256968, 0.438337, -0.017192, 0.196971, 0.005429, -0.412713, -1.778308, -1.626895, -2.556644, -0.557423, 1.429147, 1.317958, -0.272412, -1.997762, -0.412014, 0.207046, 0.091528, 1.029461, 0.392073, -0.360402, 0.263296, 0.007679, 0.688636, -1.461056, -0.498714, -0.123136, 0.541819, -0.203342, 1.457311, -0.298898, 0.320689, -0.663462, 1.652018, -0.605751, 0.604200, 0.513283, -0.368368, 1.583899, 0.810617, 0.119517, 0.837004, 0.059768, -1.602970, -1.577403, 0.893168, 0.723299, -0.385209, 1.508668, -0.252255, -0.366260, 0.681794, 1.686389, -1.165793, 0.320963, -0.430081, -0.038649, -0.308567, 0.036590, 1.122722, 0.048741, -0.135754, 0.516635, -1.231476, -0.447443, -1.480494, -2.451374, 0.561484, 0.454587, 1.098504, 1.391837, -0.674490, 1.235758, -0.435294, 1.098033, -0.144558, 0.299068, 0.331817, 1.535231, -0.939641, -0.575641, -0.495885, -0.382201, -0.139062, -0.191463, -0.792406, -0.498657, 0.524347, -1.747684, 1.232142, 0.975641, 0.385176, -1.097543, 0.119217, -0.135694, 0.147636, 1.214422, 0.806165, 1.073523, -1.236115, 0.520459, -0.280590, 1.482984, -0.117114, -2.284737, 0.898133, 0.047222, -0.996471, 2.130027, -1.694979, -0.388737, 0.919940, -1.719153, -0.824066, 0.881522, 0.152820, 0.869025, -1.091750, 1.479048, 0.655650, 0.170395, -0.663266, -1.659735, -0.786320, -2.301705, 0.545086, -2.005278, 0.815195, 0.329112, 0.228623, 0.076280, -1.078630, -0.802740, 0.543220, 0.063845, 0.098803, -0.661656, 0.328535, 1.262038, -1.335194, -0.169918, -0.780838, 0.247596, 0.876238, 0.988235, -0.636862, 0.780007, 1.871358, 1.945739, 0.273834, -0.310227, -2.233140, 0.365314, 1.783842, 0.970665, -0.761365, 0.074050, -0.306699, -1.098931, 0.747549, 1.067148, 0.444665, -0.138257, -1.594882, -0.829342, 1.002088, -0.721500, 1.865535, 1.641823, -0.120323, 1.393750, -1.077341, -0.432658, 1.998170, -1.725053, -0.778972, -0.629184, 0.374935, 0.192343, 1.266788, -0.513878, 0.303059, 0.045581, -1.911639, 0.686257, 0.535665, -0.527754, 0.708004, 0.374473, -1.361073, -0.352251, -1.384254, -0.942638, -1.197450, 1.442708, -1.974799, 0.313157, 0.368601, -0.083686, -0.249148, -0.952801, 0.371928, -0.024723, -1.143071, -1.118189, 0.049285, 0.126165, -1.335896, -0.219705, -0.291263, -2.121511, -0.291382, 1.850680, 0.476760, 1.247241, -0.087863, -1.046360, 2.259291, 0.168069, -0.092744, -0.682702, -0.285360, -0.826405, 1.897377, -0.243227, -0.895938, -2.812734, -0.957191, 0.440902, -1.748986, -0.219954, -0.147822, 1.799295, 0.083995, -0.333598, 0.715928, -1.555834, 2.146025, 0.344664, 0.395177, -1.218415, 0.179764, -0.640256, -0.512391, -1.018745, -0.026495, 1.479803, 0.100398, 0.569789, 2.984483, 0.455847, 0.775229, -1.191186, 1.494525, 0.039490, 0.973096, 0.117687, 1.987833, -1.201655, -0.432377, 0.423500, -0.947241, -0.703787, -0.378355, -0.238298, 1.048637, -0.108448, -0.189550, 1.425745, -1.224025, 1.173662, -1.480149, 1.032398, -0.621018, -2.563157, -1.337667, -0.497966, 0.907651, 0.465285, -0.444220, -1.188333, -1.657029, -0.513727, 0.028864, 0.354932, 0.462056, 1.403895, 0.076440, -0.065871, 0.929640, 0.477340, -1.596119, -1.363667, 0.527460, 1.277548, 1.611359, -0.361237, 0.778678, -1.513739, -0.924164, -0.008992, 1.457408, 0.856956, -0.928712, -0.467367, -0.454358, 0.744409, 2.005465, -0.857244, -1.683828, 1.327874, -0.911610, -0.491271, 1.119046, 0.031979, 0.571739, 0.528408, 1.138054, -1.757774, 0.267759, -0.356016, -0.468771, 0.997002, -0.159926, -0.727595, 1.736470, 0.777707, -1.167369, -0.485608, -0.912983, 1.217748, -0.212528, -0.853817, 0.228232, -2.686566, 1.646836, -0.829939, 1.656828, 0.584317, -0.044585, 1.709128, 0.465919, 0.879865, 0.900781, 0.794212, 0.040205, 1.335361, 0.310787, -1.778060, -1.557740, -1.042201, -0.633923, 0.518643, -0.184673, -1.650661, 0.097356, 0.810173, 1.325395, 0.209772, 0.023602, 1.879506, 0.348412, -0.783215, 0.650815, 1.226574, -1.368783, 0.074729, -0.696541, -1.579727, -0.092673, 0.303608, -0.774157, -0.416064, 0.318807, 0.488902, 0.699349, 0.732327, -0.368440, -0.520668, 1.681365, -0.856613, -1.234067, 0.466894, 0.553546, 1.315115, 1.065340, 0.376892, -2.466966, -1.202604, 0.701714, -1.464124, -1.209327, 0.652410, -0.816180, -0.795581, 1.686028, 1.478356, -0.798279, -1.843620, 0.679247, -1.275601, -0.790941, 0.670378, -1.458036, 1.727090, 0.477588, -0.158130, -1.124077, -0.556039, -1.370806, 0.214565, 1.016246, 0.225832, -0.021422, -0.350025, -1.120753, 0.515995, 0.124096, 1.266541, -1.119876, -1.189570, -0.222849, 1.618944, -0.174155, -1.634841, -0.397830, 1.431442, -0.240132, -0.404971, 0.214981, -0.883910, -0.019745, 0.130105, 1.131841, -1.318661, 0.278383, 0.888417, -0.157396, -0.250962, -0.692790, -1.671236, -0.923920, 1.626840, -2.566907, -2.588068, 0.232606, 0.836610, 0.238575, -0.125011, 2.108894, -0.703887, 1.114850, 0.661141, -0.679078, -0.017136, -0.347517, 1.998961, 1.395852, -1.657131, 0.198214, 0.418952, -0.129545, 0.236703, -2.043975, -1.517588, 1.111415, 0.483752, 0.758357, -0.943970, 0.429716, 0.158237, 0.309731, 0.789247, -1.138120, 0.809174, -0.451380, -0.935289, -0.135627, -0.422931, 1.442118, 1.034704, -0.561760, 0.465344, 2.401720, 1.786758, 0.170343, 0.338543, -2.443328, 1.003269, -1.005822, -0.673231, 1.541393, -0.389642, -0.033440, 0.360302, -1.182644, 1.425322, 0.892098, 0.445260, -1.370936, -0.819729, 0.847646, 1.353911, 1.480346, 0.407400, 1.186540, 0.411670, -1.731507, -1.535358, -0.537789, 0.149704, 0.602993, -0.539579, 0.743468, -0.173620, -0.827505, -0.070082, -1.364710, 1.053678, 0.032004, 1.397939, -0.509007, 1.020534, -0.882641, -2.461971, -0.139934, -0.501535, 2.737041, -0.172967, -1.000719, -0.393973, 0.181018, 1.114432, -1.784666, -1.147407, 0.428242, -1.323928, -0.563387, 0.047199, 1.505847, 1.022790, 0.531492, -1.311868, -1.688057, -0.283533, 1.705258, -1.434736, -0.123833, -0.053399, -0.401082, -1.534600, 0.958491, -1.395615, 0.285766, 0.698597, 0.537141, 0.427874, 0.306182, -0.793907, 0.515062, 1.136896, 1.217577, 0.042965, -0.446491, -0.597166, 0.898667, -1.027492, 0.321593, -0.554625, 0.232704, -0.577013, -2.243983, -1.186248, -1.401031, -0.340130, 0.599001, -0.222372, -1.715254, -1.187863, 0.867853, -0.536196, -0.363334, 2.839114, 0.161027, -2.580624, 0.422206, 0.697330, 0.036202, 0.500172, -0.302983, 0.504722, 0.840128, -0.079271, -0.404204, 0.002550, -1.729103, -0.191667, 1.036394, 0.805130, -0.914922, -0.366015, -0.167713, 0.888280, -1.909882, -0.146108, -0.226232, 0.265654, -1.156625, -1.848921, -0.362236, 0.746349, -0.799636, -0.488419, 0.195167, 0.430818, -0.444170, 0.462885, 1.613835, 0.973877, -0.654531, 0.236141, 0.137921, 3.056623, 1.960802, 0.897377, 0.677855, -0.618055, 0.710570, -1.106110, 2.053565, 1.068726, 0.977257, 0.937141, -0.870400, 0.476741, -0.747218, 0.293541, -1.313276, 0.019568, 0.137206, -0.045241, -0.330578, -0.319572, -2.346273, -0.135398, 0.032833, -0.077535, -0.067603, 0.158025, -1.442539, -1.360395, 0.043443, -0.058617, -1.397903, 0.590425, 0.238533, -1.020523, 1.001650, 1.473927, -0.247317, -1.598878, -0.323764, 0.214676, -0.108777, 0.761382, -2.263814, 2.318521, 1.701192, 0.042167, 1.670401, 0.194657, -0.292212, -1.012950, 1.264882, 2.735009, 2.110200, -2.634526, -0.561011, 0.232000, -0.964361, 1.712467, 0.597691, -0.658657, -0.388905, -0.075787, 0.668499, 0.522251, -1.408303, -0.792395, -0.350595, -1.195469, 0.078201, 0.494205, -0.700705, -0.889148, 1.318351, -1.293320, -0.047690, -1.013899, 0.832235, 0.507639, 1.407132, 1.552927, -0.267982, 0.191241, -0.020907, 2.279176, -2.100779, -0.354733, -0.135324, -0.557411, -0.752948, -1.237666, -0.303388, 0.378294, 0.560515, -0.629500, 2.192942, 0.601050, 1.451738, -1.677551, -0.414675, -0.849750, 0.811348, 0.923301, -1.506332, -0.718640, 2.118806, 0.704622, 0.224871, -0.162316, 1.759398, 0.382982, -1.351945, -0.664156, 1.139768, 0.701458, -1.418082, -0.180974, -0.754276, 0.082166, -2.978314, -0.066740, 0.524941, 0.937907, 1.034182, -0.742407, -0.380772, 0.617936, -1.447057, 1.270606, -0.061085, -0.699317, -0.072457, -0.495823, 0.114930, -0.048082, 0.903273, -0.988056, 0.571635, 0.617258, -0.657946, 0.785370, -0.864442, 0.262980, 1.356200, -0.086928, 0.095905, -0.324154, 0.157737, -0.734009, -1.356705, -0.132498, 0.262931, -1.324065, -1.001462, 0.184577, -1.882876, -0.457107, -0.257052, -2.855753, -1.189063, -2.357385, 0.530384, -0.492212, 0.235899, 0.672286, 1.995016, 0.958052, -0.143548, -1.385804, 0.664588, 1.212745, -0.335203, -0.198949, -0.275492, -0.490069, -0.851467, -0.502646, -0.694880, 0.923471, -0.559223, -0.380421, -0.219620, 0.012877, 0.689580, -0.471939, 0.311016, 0.504561, -1.043829, -0.020220, 2.053994, 1.013544, 1.279639, 1.130872, -1.200121, -0.217655, 0.640824, 1.045799, 0.856022, -1.346486, 0.553904, -1.952512, 0.571606, -0.937547, 0.049423, -0.418254, 0.063134, -1.396424, -2.132203, 0.717884, 0.795285, 0.896249, -0.420277, 0.252718, -0.856409, 1.427481, -0.071945, 0.896435, 0.250425, -0.511987, -0.128263, -0.379123, -2.497279, -1.448742, 0.590759, 1.020750, 0.290560, 0.900000, -0.731517, -0.043071, -0.961972, -0.090615, 0.109040, 1.149593, 1.544301, -0.071802, -0.558318, 1.305153, 1.637421, 2.264952, 0.130616, 0.431076, -1.209006, 1.402684, -0.668752, -0.221807, -1.546151, -0.083456, -1.623347, -0.592305, 0.359295, 1.320567, -0.425641, 0.656586, -1.012107, -0.224462, 0.153299, -0.380884, -1.655461, -0.056466, -0.684801, -0.901707, 0.441577, 1.001029, 1.092942, -0.431821, 0.648963, 1.011888, 1.676885, 0.288997, 0.752124, 0.692520, -1.605333, 1.552947, 2.164627, 0.921668, 2.019550, -0.764689, 1.174913, -0.301513, 1.746088, -0.600233, -1.558868, -1.391118, -0.078036, 0.634661, 0.803007, -2.076390, 1.138397, 1.478810, 0.125583, -0.084874, -0.178028, -1.695460, 0.043467, 0.023199, 0.809294, 0.086988, -1.924860, -1.579145, -0.409714, -0.164653, 0.612002, 1.310575, -0.563238, -0.418663, -1.650137, 0.670620, 1.866522, 0.454617, -0.412714, -0.193111, -1.242559, 1.447700, 0.088401, -0.091978, -0.861586, -1.051563, -0.558869, -0.487938, -1.399271, -0.267957, 1.803463, -0.473809, 1.161841, -0.129115, 0.612919, -0.674868, 1.261652, 0.200186, 0.340698, -0.614918, -0.511643, 0.908601, 0.212593, 0.105513, -0.961226, -0.032471, 1.131521, -0.653440, 2.310886, 0.353983, 0.031698, -0.763686, 0.449569, -0.276229, -2.123323, 0.128279, 1.356084, -1.287503, -0.241321, 1.132242, -0.279019, -2.384415, -1.074451, 0.517315, -0.731740, 0.972761, -0.131102, 0.337756, 0.563182, -0.410807, -0.064794, 1.135653, 1.690900, 0.939669, -0.113825, -0.539701, -1.086950, 1.644704, 1.399096, -0.625296, -0.854620, 0.903969, 0.848095, 0.299563, -0.975841, -1.526702, -0.796246, -0.237315, -1.378751, -0.831317, 0.678987, 0.166800, 0.550731, 0.520348, 1.586275, -1.438124, 0.633987, 0.786819, -2.263108, -0.198172, 0.689654, -1.391703, -2.278003, 0.118253, -0.816900, -0.287264, 3.095044, 0.109221, -0.580659, -0.084627, 1.776584, 0.225332, -0.001302, 0.567379, 0.242299, -0.237595, 1.694363, 0.818192, -1.444533, -1.027250, 0.282616, 0.168056, -0.095744, 0.294696, -0.793423, -0.500340, 1.255089, 0.667295, -0.990263, -0.313284, 1.634145, 2.045603, -0.397491, 0.895575, -1.087639, -0.664247, 1.486223, 1.796901, -1.206272, 2.581736, 0.103573, -0.942171, 0.014846, -0.809061, 1.677650, 1.583868, 0.886975, -0.329620, -0.097984, 0.984680, -1.266871, 0.293181, -1.106914, -0.234667, 1.398514, 0.528137, -0.208673, 0.623864, 1.479432, -0.329066, -0.662143, -0.920478, -0.758427, 1.027275, -0.367316, 0.216995, 0.471766, 0.348626, -0.510669, 0.559080, 0.243859, -0.732129, 1.396524, -1.670792, -0.924896, -0.617247, 0.334616, -0.133530, 0.489357, -1.860342, -0.088433, 2.155739, -0.521377, 0.221571, 0.729437, -1.396086, -0.809406, 1.910963, -1.737371, 0.639834, 1.094103, 0.706392, 0.842431, 0.055056, -0.758441, 1.306328, -0.160315, 1.563492, 1.674290, -0.289177, -0.145390, 0.863856, 0.293987, -1.409617, -1.525968, -1.673670, 0.228570, -0.685251, -0.058514, 0.590290, -0.926575, 0.497276, -0.537877, -0.922598, 0.244252, -1.221544, 0.534330, 0.574443, 0.818631, -0.160861, -0.332849, -0.125453, -0.555368, -0.391375, -0.917852, -0.040597, -0.398755, -0.165739, 0.728188, -0.013323, -0.269718, -0.927593, 0.115815, 1.041997, 1.203235, -0.023060, -0.548096, -0.306546, -0.485716, 0.916325, -0.010977, -0.619848, -0.290108, 1.186900, 0.606395, 0.247572, 0.507181, -0.169942, -0.464613, 0.473423, -1.733135, -0.235441, -1.255373, -0.068000, -0.330165, -1.273669, -0.675735, -0.458130, 0.385640, -0.459476, 0.002494, -2.021896, 0.233749, 0.082650, -0.679421, 0.377349, 0.906724, -1.779633, -0.644556, -0.988552, 0.974903, 1.764214, -0.700996, -0.834675, -0.406012, -0.682128, 0.921497, -0.420999, 0.521205, 0.071171, -0.586911, -0.209439, -0.448225, -0.063897, 0.117296, 0.072199, -0.677744, 0.389345, 2.378861, -0.535726, -0.190938, -0.826828, 1.003668, -0.746230, -1.048332, 1.241239, 0.765582, -0.804895, 0.369499, 0.318621, 0.599119, -0.006593, 0.350569, 0.666746, -1.656896, -1.903021, 0.986369, 0.511390, -0.189952, 0.308307, -0.996068, -0.089601, 1.069018, -0.126349, 0.380309, -0.865276, -0.585415, 1.239317, 0.736387, 1.051951, 0.934849, 0.995329, 0.808413, 1.155529, 1.447031, -1.930672, 1.035716, 1.172179, -0.728335, -0.104805, -0.037834, -0.729220, 0.372757, -0.159015, -0.109594, 1.265020, 1.237076, -0.065003, -1.152987, -0.461774, -0.364159, 1.541643, 0.957010, -0.344586, -2.358160, -0.790391, -0.607555, 1.538420, -1.372096, 0.072371, 0.856346, -1.498535, -0.221621, -2.082298, -1.010648, 0.221475, -1.466796, -1.206395, -0.251086, -1.396536, -1.781803, 0.273257, -0.748576, 0.299583, -0.680965, 0.289423, 1.772624, -0.858616, 1.632509, -0.284707, 0.307929, 1.763190, -0.750607, 1.044618, -0.197139, -1.723933, 1.567291, 1.038435, 1.745584, 0.646050, -0.162987, 0.087712, 0.391903, -1.049266, -1.548435, 0.866564, -1.621533, 1.007046, -0.742802, -1.033276, -1.150603, -1.652577, -0.131726, 0.260123, 1.495665, -0.352085, 0.623138, -0.353350, 0.087244, -0.736134, 1.238344, -0.041214, 1.095795, -1.488932, -0.161193, -0.505619, 0.914654, 0.055426, -0.044992, 1.720750, -0.457668, -0.983800, -1.723600, -0.636806, -1.164193, 0.462513, -0.860992, -0.164273, 0.681077, -0.110177, -0.537707, 0.603519, -0.266059, 0.504533, 0.433605, 0.915886, 1.241662, -0.041667, -0.929604, -0.077104, 0.829837, 0.180254, -0.103175, -0.349059, -0.401627, 1.311219, -1.005952, 0.656179, -0.747920, -0.442702, 0.104443, 0.106547, -1.724398, -0.632760, -1.529638, -2.244247, 0.989368, -3.336382, -1.350338, -0.603344, 0.630625, -0.872442, -0.783113, -0.349187, 1.298522, -1.409600, -2.199073, 0.981876, 1.592892, -0.982872, -1.141727, -0.847958, -1.895387, 1.085180, 1.389628, -0.978664, -0.481784, 0.905256, 1.168037, -1.296850, 0.581523, 0.995853, 0.896719, -0.783906, 0.231347, 1.008441, 2.127912, -1.707786, 1.492285, 1.735123, -1.003856, -1.235369, 0.343662, -0.525784, 1.272984, 1.215477, 0.068538, -1.629287, 0.885230, -1.293337, 0.534836, 1.051891, 0.526262, 0.290800, -0.088116, 0.259985, 1.541642, -0.166631, 2.222610, -0.999406, -0.991624, -1.005903, -0.431585, 2.045624, 0.648656, 0.176206, -1.415487, -1.594633, -0.214653, 0.501200, -3.327731, 1.517336, 0.848982, -1.001623, -0.787282, 0.131969, 1.969494, -0.900655, 1.510213, -1.719401, -0.929965, 1.167598, -0.715518, 0.998474, 0.338846, -2.247123, -0.408650, 0.537860, 0.576059, -0.397243, 1.428192, -0.569604, 1.455349, -0.659593, -0.213955, -0.190803, -1.380952, -2.029932, -0.575588, 0.541320, -1.072692, 0.710900, 0.438037, 1.672603, -0.392935, 1.289105, -0.166177, 0.765185, 1.093274, 0.391209, -0.724611, 1.241976, 1.100951, 0.162936, 1.324800, 1.340981, -0.119059, 0.289924, 0.778601, -0.114449, -0.219532, -1.062508, 0.292518, 0.858824, 0.742692, 1.611511, 0.786399, -0.356337, 1.187334, 0.010011, -0.828134, 0.971600, -1.144033, 0.839095, 0.739268, 1.115781, -1.715256, -1.836031, 0.120095, -1.295809, 0.440537, 0.854153, 0.574895, 0.207010, 1.098320, -0.031349, 0.191757, 1.649910, -0.178384, -1.132087, 0.026814, 0.116890, 0.112190, -0.213210, -0.686657, -0.121402, 0.271115, 0.649215, -1.060759, 0.380043, 0.954294, -0.310485, 1.398980, 0.672790, 0.509533, 0.494445, -0.436814, 0.846024, -0.482637, -0.105292, -0.035994, 1.715719, -0.136960, -1.179144, -1.284762, -0.220238, 1.368714, 0.902943, -0.388232, 0.031580, 0.422140, -0.911638, -2.082842, 0.767382, -0.015357, -1.002030, 0.291683, -0.929051, -0.444473, 1.966432, 1.324635, -0.008277, 1.065126, -0.345606, -0.319761, 0.319571, -1.260517, -2.011234, -0.726480, -0.385305, 0.610081, 0.047508, 0.711275, 1.122808, 0.099380, -1.853627, 0.039971, -1.002162, -0.544880, -0.969894, 0.796295, -0.856615, 0.895616, -0.431071, -1.915083, -0.490952, 1.259932, 0.720270, -1.102404, 0.111825, -0.752200, 1.402974, -0.101218, -1.230960, 1.612375, -0.408381, 0.884101, 0.199093, 1.464220, 0.330789}, - { -1.528585, 0.983889, -0.499150, -0.223014, -1.232690, 0.291085, -0.223805, 0.411602, -0.365022, -0.031481, -1.021595, 0.660676, -0.626015, 0.130819, -0.630870, -0.740446, -1.313422, 0.228579, 1.312049, 0.016274, -0.505344, 0.281289, -0.891910, -0.294884, 0.740594, 0.068537, 1.222148, 0.250725, -0.040261, -0.639984, 0.325639, 1.329382, -0.749008, 0.054584, 0.032407, 0.758772, -0.574755, 0.231966, -1.063649, 0.567060, 0.759600, -0.749698, -0.585125, -0.706897, 0.819961, 0.727940, 0.651822, 1.054664, -0.367186, 0.902286, -0.015268, -2.132958, 0.203087, -0.539434, 0.549908, 0.240788, -0.878165, -0.763983, -0.101119, 0.716684, 0.062846, -1.060311, 1.196181, 0.077812, 0.404531, -0.956294, -0.070990, 1.106855, 0.618609, 0.268663, 0.081558, -0.787187, -0.135513, -1.286443, -0.925321, -0.161293, -1.233489, -1.080396, 0.465980, 0.880576, 1.187566, -0.164665, 0.197257, -1.487821, 1.134653, -1.302039, -0.001199, 0.815884, -1.011536, 0.699102, -0.404277, -0.865818, 0.380316, -0.002470, 0.737019, -0.114187, 1.361345, -0.120122, 0.566841, -0.732340, 0.116799, 0.812616, -0.222168, -0.302839, -0.390154, -0.062397, 1.022505, -1.273622, 0.958283, 0.527289, 0.787099, 1.789362, -0.830767, -0.061116, -0.715143, 0.989719, 1.312024, -0.103241, 0.922628, 0.546323, 0.422251, -0.533996, 0.059773, 0.304350, 0.134255, 0.745131, -0.640739, 0.867087, -0.560230, -0.720101, 0.562605, -2.018087, 0.839341, -0.097239, 1.174193, -0.842501, 0.740018, -0.719852, -2.051198, -0.436773, -0.107546, -0.364597, -1.384249, 0.117560, 0.808674, 1.892442, 1.394951, 1.382266, 0.320015, 1.061469, -1.580091, 0.533058, 1.295875, 1.250858, 0.867692, -0.669411, -1.728438, 1.721880, -0.424780, -0.242200, -1.429870, 1.950367, -0.019456, 0.174931, 0.512401, -1.007260, -0.007698, 1.030953, -0.785095, 0.587675, -0.139587, 0.303261, -0.185171, 1.078003, 0.141341, -0.325681, 0.409251, 0.884302, 0.378858, 0.343696, -0.007463, -0.952749, 0.982318, -0.458325, 0.431066, -0.488515, 1.285079, 0.649887, -0.795097, 0.047880, -1.246803, 0.097538, 2.380083, -1.450382, -0.934113, 0.742989, -0.619603, -1.961643, -0.155840, -1.044392, 1.315420, -1.255346, 0.562373, 0.474025, 0.364615, 0.671960, 0.858578, 0.127014, -0.817039, 0.840599, -0.855353, -1.283971, 0.606666, -1.254695, -1.001443, -0.076443, -1.637390, 0.318139, -0.875271, 0.721107, -0.209753, 1.465423, -0.397503, -1.173907, -0.434882, -0.723125, 0.298049, 0.415903, -0.214813, -0.779666, 0.094826, -0.650036, 0.542699, 0.349991, 0.125594, -2.033349, -0.763235, -1.039107, 0.900361, 0.009362, -0.567164, 0.885626, 0.064476, 1.579943, 0.075857, -0.519321, -0.373023, 1.156549, -0.737498, 0.644146, 0.772759, -2.125074, 1.231560, -2.683326, 1.039456, 0.056548, 0.517283, 0.136986, -0.678799, 1.098678, 0.882830, -2.102855, 0.851283, 0.504098, 1.207004, 0.931283, -1.264617, 0.011476, 0.591821, 1.184969, -0.961212, 0.139644, -0.660831, 0.305168, -1.208051, 0.233318, 0.700095, 1.283509, 0.324108, 0.495576, -1.061230, -0.206965, 0.761801, 0.033181, 0.440214, 0.040518, 0.616313, 0.295511, 0.407930, 0.362573, 0.937340, -0.568489, -1.071635, -1.001128, -0.457268, 0.543761, 0.693154, -0.450404, 0.887739, 0.287612, 0.443296, -0.193653, 0.141570, 0.527235, -0.069596, -1.478696, -1.300620, -0.504491, 1.885707, -1.164754, 1.395041, -0.853243, 0.015204, 0.661630, -1.987414, -1.101709, 1.851813, -1.306159, -0.153740, 0.587134, -0.089961, 1.104270, -2.328705, -0.660836, 1.146453, 0.995669, -1.967991, 0.980982, -1.073565, 0.957437, -3.022399, 1.317716, -0.500597, -1.266898, 1.063934, 1.659208, -0.272537, 1.691416, -0.879670, -0.323290, -1.739418, 0.694532, -0.048980, 0.897082, 2.157368, -2.802532, 1.128118, -2.115752, -1.108553, -0.005655, 1.175860, 0.059270, -0.419094, 0.726087, 0.517184, -0.160207, -0.966914, 0.618487, 0.179462, 0.359682, 0.867037, 0.032544, 0.500492, 0.307941, 1.771790, 0.378537, 0.427005, 0.192290, -1.042917, -1.159638, 0.787267, 1.327091, -0.884519, 1.230271, 0.840701, 1.639742, -0.886961, -0.891833, -1.506473, 0.925444, 1.819988, 0.404576, 2.119494, 0.214463, -1.297772, 0.750829, -0.840742, 1.428026, 1.289873, -1.149179, 1.108338, -0.172330, 1.996234, 0.932108, 0.845619, 0.813612, -0.973436, -0.029861, -0.939469, -0.344599, -1.151640, -1.229235, -0.607299, 0.482107, 0.479467, -0.676827, -1.689713, -0.704264, -0.245207, 1.423006, 1.950386, 1.388501, -1.342137, -0.874730, -0.463435, -0.861913, -0.342778, 0.581104, 1.525678, 0.244771, -0.615707, -0.444179, -1.594297, -0.471480, -1.005503, -1.057680, -2.527761, -0.589943, 1.294116, 1.309565, -1.234291, 0.198335, -1.659408, 1.719685, -1.308810, -1.518271, -0.049223, -0.554038, 0.082067, -0.361201, 0.199725, -0.925516, -0.359935, 1.522369, -0.551894, -0.314783, -0.326453, 2.377429, 0.242672, -0.144021, -0.234333, 1.753826, 2.452723, 1.208959, 0.929866, -0.148051, 0.258894, 0.348292, -0.486527, 1.030207, 0.523697, 0.175798, 1.421702, -0.035517, -0.583522, -1.052002, 1.663021, 2.464565, -0.457331, 1.393666, 0.555865, 0.834828, 0.752192, -0.942726, -0.942907, -1.369926, 1.556373, -1.242350, -0.596377, 0.792980, 0.422691, -0.439911, -0.394794, 0.626970, 0.169234, -0.676422, 0.695020, 0.680034, -2.073834, 0.318893, -0.749351, 0.281616, -0.730610, 1.536807, 1.269386, 0.096238, 0.432480, -0.039462, 1.531014, -0.176188, 0.234875, -0.190344, -0.178197, -0.494622, -0.260476, -0.276411, -0.978293, -2.050851, -1.613448, -0.060035, -0.341560, 0.573924, -0.198949, -0.751478, 0.355465, -1.102729, -1.231928, 0.249779, 1.044406, -0.746747, 0.562755, 0.150071, -0.815148, 0.066598, -0.138239, 1.270939, 1.225537, -0.592050, 0.260800, 0.775360, -0.026105, 1.237430, -0.986776, -0.793640, -0.714291, -2.248067, 0.842684, 0.115358, 0.073554, -0.789709, -0.191683, -0.098856, 1.457245, -0.237845, -1.525437, -0.138134, 0.829068, -0.021182, 0.043200, 0.501391, 0.656386, -0.876930, 0.365267, 0.112038, -0.824848, 0.275731, 0.528305, 0.385697, 2.044291, -0.439301, -0.720467, 0.991971, 2.273851, -0.112329, 1.085626, -1.321414, 1.550636, -0.735019, -0.159269, -0.693036, 0.531851, 1.242950, 0.590082, 0.032854, -0.268367, 0.431621, -0.364190, 0.911184, -0.190646, 0.407714, 1.347691, -0.304216, 1.128748, 1.501841, -0.485426, -1.622365, 0.000178, -0.280583, -0.055016, 0.432168, -0.821051, -0.447986, -0.333291, 0.814798, -1.691841, 1.703749, -0.303899, -0.694030, -0.866316, 0.110702, -1.298241, 1.173338, 0.216280, -1.245771, -0.487252, -0.846584, 1.178957, -0.849830, 0.898420, 1.768309, -0.971616, 0.899211, -1.711004, 0.297717, -0.936116, -1.231106, -1.367456, 1.959779, 0.502142, -1.136966, 0.829877, 0.241248, 0.654624, 0.458409, 0.652497, 0.193033, -0.346301, 0.187575, 1.837667, -1.250660, -1.101345, -0.501435, 0.220304, 0.215576, -1.331960, -0.119991, 1.842534, 1.017017, -0.006387, 1.070005, -0.607425, -0.116607, 0.338258, -0.121515, 0.497692, -0.796940, 0.419743, -0.267430, -0.211368, -1.204600, -0.500376, -0.615469, 0.160066, 1.581782, 0.665352, 1.656134, 1.238711, 0.605496, -1.002582, -0.235327, -0.061581, -0.296004, -0.176150, -0.339779, -1.384267, -0.068234, 2.465667, -0.950088, 1.951808, -0.838449, 0.876152, 0.299702, 1.169416, 0.673109, -0.504274, -0.356379, 0.914782, 0.182470, 0.959500, 0.789742, -0.360650, 0.196019, -0.094375, -0.014411, 0.973703, -1.121771, -0.938480, -1.518121, -2.009377, 0.733018, -1.140728, 0.161206, 1.855261, -1.117708, 0.838412, -1.198984, 1.069933, 0.677694, 0.808772, 0.914989, -0.784941, -1.604322, 1.134299, 0.979655, 0.777888, 0.236527, -0.431617, -1.454105, -0.343640, 3.459868, 1.130261, -0.633418, 0.610709, 0.607167, -0.478187, 0.921286, -0.029543, 0.337618, -0.662517, 0.721575, -1.019280, -0.710560, 0.989958, 0.508684, 0.387299, 0.266558, -1.125065, 0.993325, -0.744718, 0.219002, -0.601113, 0.981536, 0.471479, 1.490893, 0.505233, 1.372832, 1.168632, 1.209643, -0.087622, 1.005157, 0.271731, 0.066910, -1.398496, 0.666050, 1.005273, 0.137496, -1.147869, -0.427714, -0.303376, 0.561293, -1.749500, -1.710384, -0.727001, 0.290281, 0.807080, 2.769151, 0.349665, -0.497446, 0.645310, -1.513402, -0.689239, 0.020332, 0.117334, 0.765119, 0.654459, -0.762251, 0.446873, -2.204895, -0.202944, 1.008021, 0.305674, -0.096879, 2.308195, 0.462794, 1.080449, -0.345487, -1.291574, -1.122318, -1.116160, -1.027598, 0.318204, 0.502638, -1.964715, -1.227736, 0.836005, -0.692966, 0.097658, 1.309985, 1.277795, -2.291872, 2.121365, -0.059751, -0.274984, -1.495993, 0.507968, -0.936313, -2.095466, -1.224858, -0.355179, -0.423306, 1.182399, 0.320705, 0.104190, -0.886878, 0.345382, -0.539444, 0.012004, -0.934699, -2.010979, -0.511383, 0.262882, 0.531387, -0.117243, -0.605265, 0.077045, 0.373672, -1.378241, 0.151214, 0.620699, -0.265486, -0.472592, 0.541416, 0.309113, 0.705576, -0.914884, -1.239032, 0.122652, -0.614573, 0.798384, 0.328963, -0.640977, 0.109637, -1.178576, 0.381937, 0.311826, -0.202689, 0.280572, 0.671444, 0.211392, -1.290677, -0.572104, 0.329893, -0.887881, -0.340961, -0.051399, 1.494626, 1.320413, -0.884367, -0.393779, -2.054686, 1.501561, 1.262307, 1.588740, -0.342659, -0.380298, -1.933367, 0.937726, -0.202528, -0.454612, 1.110017, 3.187464, 0.898520, -0.313109, 1.746430, 0.697926, 0.346989, -0.273153, -0.587579, 1.411395, -0.660513, 0.781252, 1.503714, 1.087576, 0.980184, -0.155311, 0.309774, 0.532134, -0.208186, 0.351331, -2.078174, 0.423882, -1.485632, -0.149048, 1.942785, 1.592063, 0.940881, -0.540367, -1.225420, -1.449740, -0.075467, -0.482278, 0.232206, 1.472012, -1.018986, 0.299885, -0.098323, -0.201997, -1.640178, -0.525716, -0.425520, -0.121648, 1.609431, -1.167719, 0.056033, 0.829050, 0.556802, -0.358564, 1.644239, -2.916266, -0.831095, -0.875454, 0.703638, 0.217085, -0.886764, -0.034779, 0.367953, -1.330590, -0.160373, 1.666811, -0.879484, 0.907697, 0.204346, -0.493201, -0.892093, -1.970825, -0.560274, -1.584238, -0.363948, -0.764422, 0.675614, 2.314371, -0.795333, -0.512759, 0.109625, 2.694571, -0.320923, 0.231863, 0.269594, 0.730260, 1.031615, 0.614924, 0.118755, -1.130206, -1.074651, 0.716812, 0.327547, -1.305955, 0.268753, -0.446093, -0.805593, 0.330870, 0.908739, 0.119853, -1.909271, 1.019081, 0.650978, 1.178185, 0.479770, 1.506427, 0.548287, -0.137846, -0.173857, 0.569479, -0.771818, -1.510230, 0.094363, 1.235422, -1.171559, -0.669253, -0.888831, 1.342733, 0.306569, -0.110335, 0.787696, -1.311203, -1.631160, -0.698563, 0.763609, 0.165298, -1.540938, -0.579769, 1.362025, 0.489529, -0.168974, 1.363089, 1.360016, 0.158731, 0.569206, -0.433700, -1.434596, -0.781457, 0.938912, 2.450022, -0.181041, 0.254620, -0.617511, 0.363047, 0.687670, 1.141103, -0.631924, 0.206880, -0.206839, 0.619732, 0.466541, 0.648561, -1.170062, 0.890412, -1.287486, -0.573536, -0.138101, -0.049675, 0.432492, -0.918957, 2.133202, 0.385154, -0.503877, 0.927895, 1.455049, -0.019818, 0.950322, 0.842331, -0.513541, 1.565555, 0.385097, -0.041971, 0.527205, -1.751739, -1.137310, 2.281250, 0.090714, 0.029891, 0.648132, -1.375468, 1.399584, 0.664215, -1.034558, 1.376278, -0.923505, -0.919619, -0.877759, -0.063351, 0.449556, -2.321961, -0.193347, 1.519354, 0.438511, -0.781446, -0.458336, 1.087979, -0.584879, -0.464355, 1.883744, 0.358777, -1.719022, 0.062937, -0.882190, -0.545765, -0.298924, 0.006025, -0.241737, 0.150216, -0.445682, 0.125215, -0.576941, -1.455831, -1.707092, -0.237061, -1.077043, 1.737693, -1.007069, -0.039801, 0.444028, 0.302103, 0.984256, 0.871039, 1.223249, 0.773058, 0.612394, 2.176614, -1.363910, -0.826080, 0.469314, -0.702826, -0.687872, 0.178542, 1.279566, 0.946444, -0.142691, -1.782523, 1.158043, -1.970165, 0.292134, 0.920224, 1.291350, 0.919516, -1.355353, -0.406332, 0.877542, -0.893353, -0.078881, 0.939628, 1.465891, -1.120725, -0.112671, 1.945407, -0.593268, -1.324380, -1.776101, -1.000620, 2.129123, 1.176679, -0.528812, 1.738531, 1.893578, 0.466419, 0.871072, -1.100719, 1.515462, 0.231334, -0.893359, -0.071043, -0.170108, 0.900216, -3.052384, -0.165906, -0.155277, -1.021669, 0.271065, -0.388483, 1.510968, 0.835928, 0.052915, 0.809890, 0.234164, 0.579433, 1.367598, 2.089753, -0.951635, 0.421135, 0.886154, 1.848532, -0.686448, 0.243487, 0.362641, 0.115117, -0.082868, -0.645830, -1.022738, 0.352840, -0.229888, 1.479145, -0.439949, 1.118345, -1.503363, 0.520115, -0.690661, -0.755765, 1.547948, -0.791662, -2.124136, -0.493485, -0.820498, 2.755218, 1.161979, 1.090863, -0.577151, -0.322706, 0.088857, 1.121680, -0.426547, -0.783499, -1.832231, 0.223444, -0.697123, -1.023059, 0.332343, -0.718873, 0.065334, -0.382100, 0.303974, -0.285433, -0.086163, 0.905434, 0.322978, 0.012016, 0.181630, -0.424428, -0.167205, -0.023544, -0.763481, 0.675475, -1.534944, -0.794864, -1.048670, -0.810172, -0.268000, -0.582463, -0.233772, 0.207003, 1.202341, 0.502748, 0.620330, 0.834388, 0.705962, 0.828964, 2.651482, -0.494951, -0.402799, 0.358528, -1.307880, 0.270489, -0.170392, 0.970555, -0.635788, -0.481298, -0.247181, 0.564859, -1.316783, -1.576614, -0.734073, -0.019462, -0.734920, -0.482825, -1.978248, -0.658912, 0.414963, -0.417249, -0.542582, 0.866367, 0.185913, 0.057066, 0.306508, -0.559185, 0.605736, -1.289379, -0.080138, 0.653721, -1.654405, -0.057272, 0.524817, -0.864102, -0.093709, -0.419917, -0.703324, 1.023497, -0.864964, -1.767865, 0.834885, 1.222555, 2.399563, 2.671062, 0.109732, 0.001551, -1.839303, -0.487816, 1.525771, 0.847283, 0.028712, 0.438563, 0.630743, -0.033405, -0.349438, 2.250763, -0.117097, 1.115419, 0.389861, -0.898892, -0.282474, 3.583772, -1.294503, -1.729502, -1.014405, -0.826274, 0.587948, 0.110012, -1.092119, -1.320275, -0.024286, -0.592236, -0.107409, 1.111784, 0.215014, 1.060520, 2.374489, 0.236474, 0.330240, -0.568462, -1.423505, 0.918966, -1.150645, -2.148659, 0.582162, -0.066176, -2.216145, -1.765604, 1.199772, -0.181152, -0.267626, -1.162830, -0.226987, 0.968930, 0.023551, -0.341542, -0.345462, 1.382537, -0.497282, -0.388321, -0.402356, -0.644338, 0.455277, -2.182575, 0.089198, -1.772338, -0.000660, -1.046146, 1.257459, 0.895967, 0.501054, 0.526309, -0.057557, 0.763205, 0.392618, 0.276458, -2.100098, 0.638827, 0.060878, 0.967597, -1.231212, -1.270514, -0.517227, 1.319060, -2.882717, 1.049116, 0.302717, -0.463908, -0.523161, -2.544879, 0.154400, -1.412090, 2.298742, -0.327199, 0.700055, -1.943167, -0.700067, 0.678387, -1.053528, 1.643977, -0.605584, -0.470350, 0.735526, 1.191442, -0.863388, -0.476405, -0.789407, -0.226346, -1.081931, 0.399712, -0.137068, 0.997717, -0.715762, 0.235580, -1.987720, -0.382658, -0.988794, 0.559362, -0.534062, -0.156940, 0.106919, 0.419229, 0.040150, -0.003779, 0.688930, 1.153102, 0.594382, -0.837748, -1.765744, 0.367585, 0.588306, 0.408373, 1.984601, 0.950195, 0.426315, -1.369355, 0.493131, 0.324156, 1.470709, -1.070800, 2.072244, -0.312206, -1.017098, -0.167271, -0.696898, 0.662766, -0.192963, 1.185682, 1.477660, -1.793925, -0.269673, 0.718329, 1.677384, 1.758613, -1.151400, 0.184560, -0.721552, 1.477232, -1.881326, 1.417519, -0.442435, 1.212926, -1.072967, -0.571987, -0.085972, 0.792840, -0.783953, 0.256891, 1.230065, 0.187942, -0.287036, 0.557629, -0.449196, 0.109029, -1.788605, 0.356428, -0.770316, -0.995052, 0.470117, 2.135684, 0.605431, -1.527643, -0.159648, 0.294380, 0.478385, -0.561767, -1.320838, -0.122328, -1.771967, -2.158499, -0.208400, -2.204410, 1.003141, 0.191853, 1.151517, 1.097687, -2.351511, 0.511501, 0.085975, -0.269222, 0.449182, 1.910237, -0.785736, 0.159857, 0.902128, -1.256713, 0.464155, -0.291090, 0.851108, -0.022040, -1.985589, 1.105326, -0.113510, -0.694997, -0.127669, 1.219421, 0.137831, 1.343930, 0.365153, 0.588763, 1.399833, 2.102851, 0.837034, -0.884078, -2.390311, 0.138392, -0.720619, 1.718100, 0.714324, -0.781631, -0.430011, -0.535043, -0.430427, -0.736778, 0.376045, -1.460084, -1.079509, 0.078949, 0.716019, -1.282196, 0.756377, 2.080098, -0.376698, -0.176397, 0.196263, 1.493241, -0.090407, -0.387091, 0.001574, 1.141896, 0.743660, -0.249028, -0.856038, 0.189112, -1.409181, 0.121464, -0.603531, -1.099870, -1.110393, -1.729090, -0.843713, -1.018568, -1.115646, 1.041194, -0.174135, -0.020532, -0.535761, 1.399954, -0.642887, -0.218689, -0.143871, -1.691505, -0.813948, -1.145295, 0.284046, -0.892825, 0.500233, 1.618757, -0.079692, 0.337978, 1.116847, 0.458130, -0.859034, -1.686366, 0.326221, 1.888409, 0.801365, 0.258755, 0.205952, -1.619214, 0.567957, -1.566846, 0.346348, -1.012133, -0.459450, 0.780378, 0.946504, 0.467132, 1.059346, 0.493902, 1.341746, -1.847809, -0.202963, -0.197429, -0.687122, -0.048360, -0.113354, -1.731887, 0.512575, 1.837881, 0.175318, 2.186043, 0.597855, -0.041992, -0.898142, -1.138501, -0.024333, 1.746508, 0.628893, -0.280222, -0.245546, 0.227325, -0.321241, -0.813965, 0.185174, 1.981893, -1.022425, 0.861642, 0.921106, 1.319623, -0.541254, 1.014444, 0.485936, 1.922689, 0.626055, -0.599521, 1.135721, 1.506574, 0.658685, 1.699535, -0.416711, -0.654532, -0.905258, 0.628929, -1.985545, 0.227078, 0.802870, -2.339376, -1.499863, -0.364073, 0.526038, -0.108919, -0.971868, 1.410155, -0.078556, 0.712502, 2.422457, -1.233539, -0.820402, 0.521904, -0.733994, -0.537726, 1.184515, -1.286666, -0.796158, -0.042814, -0.966719, -1.614149, 0.063807, 0.464472, -0.619940, 1.571774, -0.327949, 0.097984, 1.231742, 0.091925, -1.760101, 1.537127, 0.318143, -1.745130, -0.303384, 0.749363, -0.589891, 0.529616, -1.275960, -1.209775, -1.210734, 0.903262, 1.748601, -0.765602, -0.557330, 1.277058, -1.225612, -1.518502, 0.814991, -0.732192, -0.985354, -0.782027, 0.452752, -2.199778, 0.032920, 0.681395, -1.069107, -1.686328, 0.713696, -0.644675, -2.093954, 0.156607, 0.779505, 0.622691, -0.714057, -0.397631, -0.508838, 0.038750, 1.109007, -1.173785, 0.798940, -0.020201, 1.716624, 0.017457, -0.010392, 0.498961, 0.776702, -0.670577, 0.382525, 1.285087, 0.140380, -1.598527, 0.090192, -1.013058, -0.366242, 0.468154, -0.563420, -0.393789, -0.709936, 0.339879, -1.115827, -1.774862, -0.696465, -1.889685, 0.999033, -0.011001, 1.485419, 0.499569, -2.086567, 1.009328, -0.240072, 0.266270, -0.670775, -0.983899, 0.299479, 1.966244, -0.506120, -0.385772, -0.902780, 0.344977, 0.223756, 1.747575, 1.169546, -1.183115, -1.244027, 0.019229, -0.054524, -1.240984, -0.114923, 1.985210, -1.474623, 0.188086, 0.331104, -0.383971, -2.269053, -1.218064, 1.578689, 1.607582, 1.295578, -1.273219, 0.799678, -0.346555, -0.517814, 0.795277, -0.310816, 0.682858, -0.952981, 0.773351, 0.436191, 0.218122, -0.263510, 0.182157, -1.309551, -0.339335, 1.325562, 0.389754, -0.608204, 0.950066, 0.578611, 1.284821, -0.287538, -0.317484, -0.561101, 0.933934, 0.790470, 0.014033, 0.590689, 0.881719, -1.750510, -0.249412, -0.685764, -0.066026, -0.636797, 1.053769, 0.299484, -0.231829, 0.561249, 0.869148, 0.202172, 0.080943, -0.528707, -0.478519, 0.681365, -1.686774, 0.313141, 1.404471, 0.261180, -2.688293, 0.571477, -1.464012, 1.330193, 1.285232, 0.554151, 1.177779, -0.146309, -0.032118, 0.315050, 0.092767, -0.915070, -0.711547, -0.167576, -0.795963, 0.513571, -0.317327, 0.884622, 0.439754, 0.769976, 0.148264, 1.004959, 1.108967, 0.230922, -0.591919, 0.186186, -0.091849, 0.317977, 0.422849, -0.594294, -0.049926, 0.349251, -0.622254, 0.054652, 0.258810, 1.025522, 0.847407, 2.027513, -1.131926, 0.255720, 0.056681, 0.294379, 1.477588, 1.795593, 2.841332, 0.638452, -0.089822, -1.282307, 0.460536, -1.292814, -1.674175, 0.736287, 1.194580, 1.362381, -0.248177, 2.763866, -0.468855, 1.684889, 0.634313, 1.224679, 1.202680, 0.366497, -0.502832, 0.114326, 0.775692, 0.707094, -0.624075, -0.998042, -1.465682, -1.608948, 1.983278, 0.961374, 0.850991, 1.096858, -0.058059, -0.824958, -0.272354, 0.377622, 0.727791, 0.756043, -2.167806, -0.079379, 0.061938, -0.525084, -0.025080, -0.971132, 0.045147, -0.024153, -0.747360, 0.031440, -1.138494, 0.872990, 0.038219, 0.583900, 0.232242, 1.101989, -1.021581, -0.979162, 1.278852, -0.369428, -0.640907, 0.095700, 0.589268, 1.462978, -1.173309, -1.204658, 0.040882, 0.721503, -0.738608, 0.919856, -1.008912, 2.737592, -0.040306, 0.272736, 0.377199, 0.882150, -1.215659, 0.796941, 0.949407, -2.041494, 0.851782, 0.861940, 0.247230, -0.026049, -1.209143, 0.058386, -0.444750, 1.224392, 0.350707, 0.109906, 0.542535, -0.111448, -0.020867, -0.074601, 0.307063, -0.526339, -0.307027, 2.723751, 0.565074, -0.822591, 1.632062, -1.879461, 0.485291, 0.181420, -0.071550, 0.419082, 0.856462, -0.994900, 0.400743, 1.426447, -0.274386, -0.940943, 0.281320, -0.557610, 1.678154, 0.647064, -1.602059, 0.609542, -1.623300, -0.762362, -1.225789, 0.245500, -0.183086, -1.364244, -1.653740, -0.264367, -1.788992, -0.262011, -1.836511, -0.782024, 1.198095, -0.248391, 1.396536, 0.634534, 0.972823, 0.389440, -0.271680, -0.654720, -1.507218, -0.206504, -0.097122, 0.948816, -0.997981, -0.027403, 0.266805, 0.298522, 1.468453, -0.152491, 0.304746, 0.314058, -1.214896, 0.385605, -0.167446, 0.782445, 0.484027, -0.883636, 1.501691, 1.013091, -0.411673, -1.068320, -0.057948, -0.157156, -0.782577, -0.773749, -1.133051, -1.512232, 1.307226, -2.168643, 2.572652, 0.543628, 0.327899, 1.151732, 0.468286, -2.877307, 1.404967, 0.929544, 0.765332, 0.718172, -0.377178, 0.763952, -0.803518, 1.800803, -0.278450, 0.856337, -0.840829, -1.082801, -0.845616, 0.687720, 0.500876, -0.597365, -0.966749, 0.096001, 2.079226, -0.061015, -1.317970, -1.002767, 0.425700, -0.398979, 1.884185, 1.884861, 1.360654, 0.659405, -0.603464, 0.883154, 1.818174, -0.413203, -0.650124, -1.298272, 2.009307, -0.373009, 1.249636, 2.480514, -0.928376, 1.026510, -1.066687, 2.541660, 1.391439, -1.240591, 0.586530, 1.252458, 0.768471, -1.509367, -3.308151, 0.732625, -0.904178, 0.416392, 1.157591, 0.697177, 0.429230, -0.285792, 0.784580, 1.196368, -1.233490, 0.484277, 0.926323, -0.957258, 0.369791, -0.011751, 0.451592, -0.577674, -1.352895, 0.333098, 1.172874, 0.894371, -1.972156, -1.100095, 0.834811, -3.378958, -1.120840, 0.909981, -0.307710, 1.381929, -1.249995, -1.645711, 0.124190, 1.066230, -0.064364, -2.254793, -0.476843, -0.255272, -0.415886, -0.356953, -1.497092, -0.358461, -1.297569, 0.419586, -0.076843, -0.854961, 0.489938, 1.317750, 1.213654, -0.140617, 0.702249, -0.431305, -1.432142, -1.363430, 0.070399, -0.533741, 1.101233, 0.628667, -0.262804, -0.346103, 1.245095, -0.697738, -1.283746, -0.430597, -0.342252, -0.608680, -0.368261, -0.987953, -0.968276, 1.210413, -1.619188, 0.220922, 0.220923, 0.917857, 0.417097, 2.710490, 0.204958, 1.208441, 0.297487, -0.632739, -0.077616, -1.625751, 0.811498, 0.844976, -0.930670, 0.320973, -1.466641, -0.802738, -1.229581, -0.527568, -0.388481, -0.600942, -0.812925, 0.089037, 1.042331, 0.697095, 1.041976, 0.841200, -0.372665, 0.406444, 0.313035, 0.109032, -0.627312, 0.567023, 0.499543, -1.056905, -0.109263, -1.505852, -0.500190, -0.548058, -0.576000, 0.587096, -2.107601, 2.107384, 0.537675, 0.233174, -0.962088, 1.929356, -1.144698, -0.193284, 0.195559, -1.243746, -1.483192, -0.413679, 0.297511, 0.949318, 0.477355, -1.176845, 0.824522, -1.294444, -0.640632, -0.113315, -0.368979, -1.632090, -0.040953, -0.079079, 0.336914, 0.807373, -0.022013, -0.709087, -1.204680, -0.294800, -0.422151, 1.158776, 1.205850, -0.634409, -0.028611, 1.966007, -0.686278, 0.159568, -0.871935, 0.804221, 0.539248, 0.117476, 2.153937, -1.068275, -0.092336, 1.098936, -0.018917, 0.663683, -2.043938, -0.051607, 0.894947, 1.288743, -1.553334, -0.840564, -0.030582, -0.927625, 0.325786, -0.825303, -0.947226, -0.934414, -0.035233, -0.660939, 1.198237, -0.754666, 0.231794, 0.305097, 1.059796, -1.033747, -2.306097, 1.326420, -0.519798, 0.222648, 0.565705, 0.230763, 0.488902, -0.738702, -0.364718, 0.506710, 0.600007, -0.410848, 0.664878, -1.178469, -0.383114, -0.946326, 0.300169, 2.220961, 0.533516, -0.318731, 0.992646, -0.441359, -0.131924, -0.679874, -1.463736, 1.483412, 1.147133, 0.065517, -0.428697, 0.821423, 1.273124, -2.420859, 0.831836, 0.782240, 2.203317, -1.847485, -0.556955, 0.004232, 0.494900, -0.562387, -0.191073, -1.956669, 0.841326, -0.750666, 0.388986, -0.548745, -0.017945, -1.478740, -1.182418, -1.291775, 0.404558, 0.567286, 2.445512, 0.386242, 0.110538, 0.204758, 2.170424, -2.423923, 1.324845, 0.249030, -1.362698, -0.286939, -0.598709, -0.355531, 0.611480, 1.446425, -0.296740, 1.626581, -1.383874, 0.699978, 1.171134, -1.396132, 0.018977, 0.087834, 0.254935, -0.741557, -0.760367, 0.264579, -1.459191, -0.751511, -0.203004, -1.046629, -0.677089, 0.201595, -0.544643, -1.909872, -0.590559, -0.196011, -0.492940, 0.344565, -0.316514, -1.044959, -1.595267, 2.276252, -0.945386, 1.910003, 0.301038, 0.413702, -0.219719, -0.312500, -0.361788, -1.390893, -1.306150, -0.288764, -1.294673, -2.381541, -0.580185, 0.273662, 2.304983, 0.271498, -2.192776, 1.540305, 0.327031, -1.357126, -0.602209, 0.596791, 0.038069, 0.204363, -0.461752, 0.824995, 0.491174, -0.379742, 1.262923, 0.958812, 0.526484, 1.814628, 0.664224, 0.696281, -1.084509, 0.681001, -0.550351, 0.626911, 0.681214, 0.525382, -0.008102, -1.360859, 0.697379, -0.752416, -1.226350, 0.333848, 0.159440, 1.526454, 0.910317, 0.714478, -0.318017, -0.523722, 0.308214, -1.305772, 0.557538, 0.164972, -0.704804, -0.816602, 0.915265, 0.032985, 2.407387, 1.039023, -0.961177, 1.020939, -0.726604, 0.919537, 0.641625, 0.515392, -0.064317, -1.971238, 1.140480, -1.555529, -0.582825, 0.459114, 0.914118, 1.403499, -1.032463, 0.604782, 0.746903, -0.067092, 0.263470, -1.837725, -0.850796, -0.943436, -1.938775, 0.930313, 1.637621, -1.248867, -0.144989, 1.335036, -0.369851, -1.430273, -0.396013, 0.428406, 1.428915, -0.714920, -1.860152, -0.887155, -0.951437, -0.931176, 1.390014, -0.385535, 1.474930, 1.906364, -0.460858, 1.174290, -0.540534, 0.088838, -0.989319, 0.942682, -0.396803, -0.038699, 0.268658, 1.498614, 1.196952, -1.030894, 0.329766, 0.482987, -0.282981, 0.671319, -1.349140, 0.221897, -0.573209, -0.472648, 1.799908, -0.537823, 0.518324, 0.962883, 1.339337, 0.542371, 1.766081, 0.082193, 0.185839, -0.300633, -0.137414, 0.026367, -1.123260, -1.089690, 0.115906, 1.892611, -1.485620, -1.152223, 0.435520, 1.028936, -0.915916, 2.479481, -1.782195, -0.417469, 0.008988, -0.070528, -1.265108, 0.298844, 0.477083, 0.607140, 0.194186, 0.641839, 1.256154, -0.161047, -0.318711, -0.327091, -1.201591, -0.419389, -0.090740, 0.474517, -0.170993, 0.432529, 0.129556, 0.750366, 1.314587, 0.547982, 1.021444, 1.069203, 0.709449, -1.803092, -0.378879, -0.088747, -0.664312, 0.494705, 0.108875, 1.582420, 0.605303, 1.097416, -1.136252, 0.962630, -0.114604, 0.301794, 1.292046, -0.271193, -0.304249, 0.401568, -0.580388, 0.312145, 0.303372, 1.903849, -0.586008, -0.423948, 0.265597, -0.376417, 1.178659, 1.479222, 1.619156, 1.044988, -1.093583, -0.435230, -1.283998, 1.023035, 0.196204, 0.050877, 0.637643, -1.600393, 0.875355, -1.841498, 0.119382, 0.251772, 0.707243, 0.342991, 0.539560, 1.652902, 0.319593, 0.547184, 1.784397, 0.716315, -0.969803, -0.769177, -1.030999, -0.302631, 0.939049, -2.591128, 0.614226, -0.550341, 0.776557, 0.053298, 2.424106, 1.696358, -1.320649, 0.104384, -0.692818, 1.348013, 0.468785, 0.280820, 1.171937, -0.007780, 0.226824, -0.787666, 0.915156, 0.723561, -0.186396, 1.431703, 0.854399, -0.779900, -1.234929, -0.329158, -0.780113, -0.143752, -0.880068, -0.027821, 0.923269, 0.606137, 1.221400, -0.794988, -0.639636, -0.758908, -0.843589, -0.855502, 1.415207, 1.326428, -0.825090, -0.354446, -0.658662, 0.932430, -0.498781, 2.317732, 0.521507, 0.493516, 1.306170, 0.080151, -1.719056, -0.705620, -1.533758, -0.472610, 1.495312, 0.051000, -1.559097, -0.359741, 0.804364, 1.057133, -0.289193, -0.378599, 1.653079, -0.400758, 1.918728, -0.292730, -1.371060, -1.646813, -0.094614, -0.421445, -0.458133, -0.418669, 0.956764, 0.309983, -0.896957, -0.019367, -0.584378, -1.590409, 0.301317, -0.332146, -0.081008, -1.616112, -0.598941, 1.291263, -1.065026, -1.024502, 0.373389, 1.465848, 0.890238, 1.234847, -0.199647, 0.948799, -0.500763, -1.036588, -0.745491, -1.830129, -0.140807, -0.168522, -0.217274, 0.330723, -0.255682, -1.478547, 0.284352, -0.043808, -1.120008, 0.707696, 0.316642, -0.692405, -1.950322, -0.570129, 0.004717, -1.857131, 0.118761, -0.086331, -1.332689, -0.677188, 1.336037, 0.692782, -0.365467, 0.194880, 0.567802, -1.737232, -1.250864, -0.114982, 0.747633, -0.819854, 0.201411, 0.010733, 1.343882, 0.524695, 0.436572, 0.520546, 0.847821, -0.320379, -0.601157, -0.868980, -0.387812, -0.103090, 0.974453, 1.398122, -0.954004, 0.592015, 1.261457, -0.347106, -0.145252, 0.531946, 0.901868, -0.139857, 0.838785, -0.239271, 0.407745, -1.222600, -0.814237, 1.247454, -0.528840, 0.738049, 0.306092, 2.055893, 0.016198, 0.725570, -0.693108, -0.040687, 1.086423, 1.753733, 2.635598, -2.124676, 1.316912, 0.882211, -0.182426, -0.097462, 0.137660, -0.463837, 1.234253, -0.089568, 0.158560, 0.199999, 1.499169, -1.945089, 0.655442, 0.108171, 1.447518, 1.636001, -0.541791, 0.593860, -0.586946, -0.750874, -0.985495, -0.023771, 0.762704, 0.568701, -1.129595, 1.983391, -0.345783, -0.912326, -0.812670, 0.597849, -0.906531, 1.327343, 0.421508, -1.029603, -0.607250, 1.246089, 0.068783, -0.270205, -0.526293, 0.122160, 1.385993, 1.352670, -0.903220, -1.071225, 0.583900, 0.443493, -0.090107, 0.126837, 0.538319, 0.255468, -0.132981, -0.206274, 1.128867, 0.176533, 0.509580, -0.607686, 0.139552, 0.120067, 0.712809, -0.856388, -1.215834, 0.456864, 0.708185, -0.897323, 0.230488, -0.080045, -1.814398, 2.256569, -0.816994, 1.973039, 0.240091, 1.106864, -0.095830, 0.399104, -0.147433, -1.134093, 0.566147, -0.410151, 1.410062, -0.829393, 0.520929, 0.239539, 0.134553, -0.746424, -0.486461, -0.438764, 0.029918, -1.046096, -1.015934, -0.139520, 0.987163, -0.278789, -1.531670, -0.313904, -0.958798, 0.492169, -0.779903, 0.643487, 0.385838, -1.249967, 0.737050, -0.713977, 0.346928, 1.091906, -0.338772, -0.304467, -0.988710, 0.619985, 0.502091, -0.150041, 0.808100, 0.889905, 0.834058, 0.775391, -0.512836, 1.658357, 0.416369, -0.842851, 0.238922, -0.462182, -0.404107, -0.741630, 1.556167, -0.869417, -1.534832, 0.382278, -0.335983, -0.031708, 0.351079, 0.134860, -1.445333, -0.428648, -1.266075, 0.292787, -0.813467, -1.425180, -1.398613, 1.532351, 0.203353, 1.377867, -1.052320, 0.542145, -2.079486, 0.526751, -0.435422, 0.112951, -1.243429, -0.863001, 0.383318, -0.655635, 0.364293, -0.643945, -1.648842, 0.446640, -2.328080, 1.435825, -0.685255, -1.217336, 0.123734, -0.370162, 0.326280, 0.798418, -0.372092, -0.714970, -0.145333, 1.610793, 0.356216, 0.457596, 0.712985, -0.444310, 0.733337, -0.892675, 1.111201, -0.252817, -0.837535, -0.788782, -0.412233, 1.075867, -1.373759, 0.794280, -0.240515, 0.724207, -0.067016, 2.118749, -0.060322, -0.402310, 0.732265, -0.274063, -0.646122, -0.611973, 0.430229, 1.054136, -0.040591, -0.605241, 2.110096, -0.361311, 0.423276, -0.258559, 0.859665, -0.926667, -0.250056, 0.898539, 1.073115, 0.169196, -0.917704, -0.229519, 0.622024, 0.308891, 1.575428, -0.032481, -0.796108, 0.691449, -1.320437, -0.348208, -1.271779, 0.797208, 0.720069, -0.110669, -0.037529, -0.440502, -1.029599, 0.004869, 0.699893, 0.715856, -0.321253, -0.126482, -0.355601, -0.532923, 1.111016, 0.898301, -1.254499, -0.253172, -1.109582, -0.271897, 1.916230, -0.513085, 1.655011, -0.606123, 1.990858, -0.641791, 0.248544, -1.420572, 1.058592, 0.125604, -0.254184, -1.343229, 1.680490, 2.308031, -0.532147, 0.212972, -1.186526, 0.052062, -0.641231, -1.408659, 1.071984, -1.214022, 1.581080, -0.359345, -0.037057, -0.140944, -1.817753, 1.165446, 0.684604, -0.389373, 2.693231, -0.316605, -0.349264, -0.233301, -1.889239, 2.026427, -0.588344, 0.737319, -1.876171, -1.890059, -1.316698, 1.585736, -0.150989, 1.347198, -0.226498, -1.726410, -0.708460, -1.324823, -0.440005, 0.180751, 1.804125, -0.220699, 0.662965, 1.005750, 0.123058, -0.510027, -1.534929, -0.817585, 1.805377, -0.299890, -0.329219, -0.342869, 0.114420, 0.818482, 0.640968, 1.525861, -0.314798, -0.291423, -0.454683, -0.432605, -0.248657, -1.156749, -0.179876, -0.141269, -1.215492, -0.286250, -0.051652, 1.191510, 0.467788, 0.255979, 0.223685, 0.203502, -2.474592, 0.234127, -0.180483, -0.672638, 0.785141, 0.066506, -0.865789, -0.831114, -0.475468, 1.275852, -0.910007, -0.768915, -0.332906, 1.186434, 1.370451, -0.582893, -0.241000, -1.222048, -0.947822, -0.801871, -1.245451, 1.837009, -0.326227, -0.217278, 0.938735, -0.202878, 0.431085, 0.215665, -1.594189, 0.652198, 1.375565, 0.454405, -1.349134, -0.620641, -0.202386, -0.079880, 0.416635, -0.788078, 0.419681, -0.885545, -0.427404, -0.901947, -0.309603, 1.948034, -1.221698, 0.372437, 0.925543, 0.825739, 0.389059, -2.178058, 0.398005, 1.655316, 1.895604, -0.592197, 1.182354, -0.628639, -2.492349, 2.437147}, - { 2.339887, 1.620140, -1.397717, -1.792415, -1.651464, -0.417458, -1.515943, -0.727748, 0.658773, 0.030530, 1.420214, 1.112668, 0.126961, -1.828202, -0.108042, 0.294892, 0.499983, -0.975588, -0.202786, -0.988190, -0.396316, -0.440190, -1.204370, -0.185122, 0.848085, 0.016918, -0.559986, 1.217533, -1.266320, -0.389045, 1.403836, 0.186828, -0.552412, -0.277355, -0.077300, -0.818491, -0.036863, -0.031269, -1.104384, -0.217681, 0.108529, 1.483026, 2.700808, 1.323355, -1.429389, -0.359832, 2.384762, 0.109584, -1.614355, 0.318306, 0.218195, 0.054861, -0.381109, -1.406280, -1.633760, 0.220129, 0.244932, -0.495095, -0.697085, -0.721289, 0.558541, -0.426999, -0.810297, 0.558341, 1.019244, -0.279632, -0.092744, -1.030451, 0.184251, -1.528850, -0.294207, -1.761215, -1.603183, -0.801045, 1.265873, 0.402463, -0.406751, 1.189645, 0.065515, -0.191021, 0.722818, -1.718461, -0.880315, -0.769453, -0.182268, 0.066402, -0.550959, 0.339106, 0.818443, -1.963967, -0.035421, -1.949418, 0.449765, -0.369531, -0.342174, -1.042240, -0.845946, 1.873936, -1.217835, 0.389689, -0.546089, 0.872542, -0.086338, -0.190501, 0.615653, -1.194026, 2.453911, -0.559747, -0.720787, -0.265108, 0.772782, 0.802450, -1.430144, -1.146555, -0.154464, -0.636835, -0.585239, 0.266004, 1.499096, -0.981671, 0.200274, -1.367797, 0.137719, 0.486250, 0.239502, -1.270316, 1.105726, -1.420166, -0.603872, 1.408102, 0.017191, 0.552936, 0.468244, 1.155060, 0.344181, 1.215376, 1.220017, 0.392431, 0.326882, 0.933896, 1.356346, 0.627984, -1.284024, 0.770552, 1.302408, -0.310756, -1.280897, -0.361148, 1.437473, 1.226935, 0.349923, 0.657697, 1.309943, 0.121834, -0.574194, -0.193201, 0.865346, 0.366080, 0.552767, 0.590743, -1.737379, -0.998452, 2.580730, 1.805921, 0.462659, 0.075984, -0.092635, 0.337560, -0.817497, 2.122266, -0.161357, 0.508321, -1.330348, 0.348236, 0.419723, 0.556637, -0.295095, -1.626863, 0.645254, 0.117203, 0.653968, -0.859729, -0.188552, -1.654380, 0.905129, 0.565809, -0.665582, 0.231161, -2.048409, 0.776696, -0.179701, -1.672784, 1.253463, 0.821780, -0.794204, 0.857018, -0.330969, -1.396939, -0.606409, -0.270470, 1.766844, -0.436703, 0.547275, 1.701216, 0.707859, -0.651268, -0.140109, 1.094223, 0.008815, 0.177185, -2.736145, -1.386136, 1.936002, -1.028178, -0.288759, -0.091952, 0.105270, 0.002987, -0.659165, -0.322631, -1.241251, 0.378708, -0.679698, 0.471250, 0.091925, -0.711658, 1.044602, 1.463665, 0.948397, -1.512430, -1.473283, 1.258366, 0.476375, -0.693492, 0.817557, -0.293565, 1.395796, -1.226122, -0.261127, 1.042383, -1.525834, 0.466103, -0.990431, -0.066383, 0.662328, 1.560231, 1.446582, -0.420327, 0.093900, -0.616068, -0.396922, -0.161616, -0.361351, -0.726517, 0.931897, -0.110255, 0.029895, 0.702895, -0.486218, 1.500088, -0.911554, 0.192895, 0.610582, 0.107673, 0.221257, -0.347135, -1.265169, 1.056425, -0.005606, -0.162892, 0.247074, -0.818270, 1.127262, -0.514588, -1.269626, 0.043387, 1.890463, 1.899805, 0.106100, 0.876978, -0.420545, 0.397927, -0.519026, 2.251690, 0.384642, -0.857362, 0.072714, -2.513459, 0.528260, 0.526779, 1.809626, 0.160605, -0.256846, -0.046370, -1.070561, 1.000023, 1.813775, -0.715343, -0.494603, 0.369020, -1.940010, 1.296672, 0.303521, 0.124397, 1.046138, -1.526003, 0.092771, -0.872271, 0.765671, 0.511123, -0.386684, 0.753641, -1.156579, 0.474385, 1.213263, -1.078144, -1.280978, -0.968109, 1.120123, -0.610951, -0.812206, -0.451754, -0.437373, 0.162306, -0.982819, 0.916856, -0.614820, -0.097352, -1.845380, 1.609066, 1.472736, -0.727985, 0.079987, -1.351291, -0.912343, 0.694572, 2.532907, -0.642715, 0.582071, 0.724823, -2.349295, -0.955874, -0.400967, 0.430401, -1.173242, 1.219665, 0.753479, 0.536411, 0.522888, 0.134859, -0.940140, 0.236503, -0.292762, 1.779085, -0.504632, -2.624163, 0.353690, 1.959040, 1.016121, 1.830055, 0.667395, -0.135537, -0.438823, -0.604406, -0.523737, 0.999362, -0.965137, 0.675641, -0.157534, -1.120798, -1.375923, -0.745494, -0.902841, 0.390616, -0.302744, -0.559256, -1.318172, 1.585740, -0.466179, 0.041782, -0.068003, -0.591694, 1.065515, 0.199168, 0.301454, 1.178663, 0.343721, 0.578013, 2.006254, -0.292315, -0.027169, 1.169843, 0.281810, 0.510632, -0.327149, 0.929928, 0.271907, -0.230353, 0.199114, -0.542152, 0.173365, -3.248751, 0.453610, 0.527880, -0.793493, 2.061254, -0.841321, 0.445838, 1.355060, -0.341512, -0.311967, 1.683860, -0.986819, 0.727597, -1.283289, -0.170094, -0.809002, 0.180786, -0.124404, -1.220071, -1.146966, 0.071316, 2.213066, -0.584928, -1.348610, 0.874946, -0.598879, 0.868833, 0.273724, -1.445279, 0.167242, 1.686287, -0.066773, -0.193377, 0.431002, 1.831211, 0.697474, -0.544411, -0.289762, 0.392250, 0.659892, -0.388241, 0.638402, -1.022027, -0.628311, -0.563202, -0.181183, 0.482651, -1.029940, -0.967300, -0.484850, 0.682934, 0.038888, -0.498950, 0.371687, 1.950650, -1.533247, -1.271800, 1.922040, 1.266094, 0.006514, -1.202719, -1.549649, -1.111651, 1.145107, -2.336985, -1.227338, -0.485622, 1.309206, -0.029743, -0.459101, -1.083666, -0.084536, 1.232778, 0.069419, 0.289925, 1.440014, -0.616036, 0.472039, 1.235283, -0.098531, 0.992890, -1.023179, -0.224086, -0.804266, -1.763057, 0.277883, 0.570709, -0.239120, -0.705175, 0.077777, -0.851741, -1.382025, 0.999434, 1.300331, -2.517501, -0.483995, -0.435277, 0.304834, 0.240393, 0.463540, -0.271114, 0.476971, -2.117063, -0.825701, -0.208910, 2.078837, 0.874864, -0.460237, -0.150332, 1.837842, 0.270703, -0.650420, 0.865180, 0.083523, 0.230363, 1.365837, -0.590013, -0.347006, 0.184882, -0.296471, 0.624956, -1.346022, -0.047095, 0.964943, 0.365237, 0.795534, -0.775335, -0.447820, 1.092894, -0.717920, 0.794327, -0.264046, 0.105361, -0.213335, -0.831172, -0.689261, -1.185437, 0.555137, 0.942949, 2.394449, 1.151925, 0.379334, 0.616034, 0.672809, 0.673535, 0.146411, 0.284025, -0.007156, 0.113903, -0.316693, -0.221654, 0.362333, -1.738374, -0.590817, -0.318511, -0.247263, -1.059371, -0.108953, 0.141335, 0.203960, 0.738039, -0.104707, -0.042683, -1.611838, 1.544860, 0.481808, -0.598356, 1.230854, 0.302006, 0.012926, -0.775176, -1.045218, 1.185867, 1.272498, 0.439803, 0.550516, 0.064741, -0.120913, 0.696555, -0.158317, 0.789790, -0.307472, -1.034022, -0.230170, 0.390069, -0.509312, -0.999874, -0.325439, -0.409116, -0.665791, -0.804070, 0.023495, -0.472189, 0.260459, -0.359123, 0.771365, 0.271621, 1.441185, 0.332482, 0.013846, 0.366242, 0.697469, -0.729197, -0.383513, 0.589389, 0.101290, 0.951068, -0.510345, 0.624408, -0.348682, -1.098903, -0.848618, 0.060044, -1.885940, -0.035841, 0.029267, 1.557899, 0.995270, -0.790554, 0.436663, -0.848539, -0.303771, 0.172670, -1.356799, 0.445098, 0.137210, 1.243937, 1.171611, -0.056864, 1.110676, -0.932160, 0.533369, 0.560239, 0.124944, 0.505434, -0.494534, 0.096916, -0.728359, -0.625288, 0.235163, 0.373002, -0.540880, 1.202525, -0.014339, -0.824045, -1.873509, -0.077882, 0.748897, -1.710542, 1.216395, 1.084436, -1.090989, 0.793859, 0.818533, 2.062217, -0.411011, -3.375772, -2.021983, 0.366885, -2.691701, -1.665082, -0.995476, -1.409712, 0.023805, -0.592694, 0.007838, -0.466110, 1.046834, -2.271525, 1.912326, 0.049592, -1.393038, -0.172442, -1.185794, 0.286987, -2.622704, 0.900961, -0.695789, -0.163837, 0.297264, -0.372835, -0.069932, -0.135428, 0.075737, 0.639942, 0.512228, -0.070645, 0.091322, -0.958377, 2.135288, -0.142732, 0.597814, 1.180662, 0.669671, -1.303432, -0.212500, 0.573757, 0.413966, -0.308574, -1.186860, -0.070545, 0.642519, -0.462130, -0.484110, -0.886547, -0.600770, -1.290298, 0.358749, 0.114589, 0.125301, 0.285748, 0.229389, 1.783901, 0.305419, 1.227210, -0.376675, -0.912810, 0.529526, 1.147198, -0.354719, 0.301027, -0.262007, 1.349041, 0.460054, 0.323833, -0.535417, 0.398359, 0.285918, 0.199553, 1.608457, 1.080666, 0.531422, 0.265556, 2.468230, -1.120097, 0.299419, -0.009829, 0.798856, -0.900978, -0.595015, -1.118382, 1.352308, -0.765283, 1.022837, -0.081662, -0.614206, -0.462349, 0.947365, 0.546488, 0.262596, -1.383535, -0.850644, -0.272334, 0.331986, -0.690244, 0.657941, 0.962619, -0.250746, -0.790014, -0.421113, -0.882083, 0.026295, -0.029447, 0.678367, -0.018902, 0.857854, 0.673230, -0.492088, 1.239871, 1.082987, -0.759082, -0.171095, -0.463199, -2.026721, -0.877298, 1.562342, -0.398282, -2.328192, 1.684431, 0.495766, 2.162920, 0.437524, 0.465590, 1.120987, -1.355737, 1.361169, 0.263885, 1.814896, -0.697334, 0.674721, 0.622827, -0.029780, 0.255792, -3.248760, 0.733671, -0.650071, -1.415894, 0.476000, 1.031410, -0.343213, 1.274329, 1.857819, -0.978104, -0.006329, 0.312723, -0.663103, -0.417864, -1.053870, 0.693769, -0.836607, 1.471947, 0.259804, -0.765705, 1.440222, -0.252867, 0.494024, 0.919247, 1.650520, -2.201987, -0.432168, 1.822201, -1.368991, 1.076670, -0.496645, -0.446964, 0.027530, 1.093180, -0.188253, 0.365788, -0.318026, 0.343727, -1.677257, -0.248994, -0.618624, 0.906792, 0.692152, -1.261671, 1.263207, 1.468797, -0.902294, 0.580883, -0.519553, 1.189655, -0.037853, 1.118424, 1.806509, -0.618764, 0.041535, -0.917750, 0.065988, 1.511952, -0.866867, -0.987826, 0.706596, 2.274445, 1.829628, 1.546664, -0.364162, 1.721251, -1.137282, -0.035184, -0.532842, -0.832020, -0.322955, -0.661472, -0.357880, -1.102991, -0.188798, -0.070132, -0.574109, 0.938241, 1.105883, -0.245666, 0.899721, 0.539366, -1.078748, 0.939915, 0.682323, 1.080436, -0.346673, -1.537215, 2.056692, 0.406541, -1.328311, 0.133209, -0.810740, 1.227201, -2.066248, 0.390462, -1.305965, -0.867083, -1.212793, -1.917906, 0.700318, 0.175547, -1.759913, -1.823506, -0.550040, 2.111104, 0.658175, -0.317664, -0.647261, -0.847860, -2.200311, 1.336159, -0.393175, -0.162713, -0.843201, -0.121724, -0.644852, 0.610801, -0.398535, -0.512464, 0.839095, -0.103021, -0.367010, 0.716079, 0.659539, 0.056364, 1.293032, 0.344292, -2.261811, 1.223168, 1.213226, -1.657508, 0.952406, -2.438802, 0.783962, -1.482991, -0.746309, -0.336616, -1.755589, 1.977362, 0.630243, -0.317651, 0.701011, -1.645657, 0.425999, -1.170024, -0.536810, 1.116719, -0.983931, 0.159605, -0.461658, 0.085128, 0.857067, -0.038479, 0.250132, -0.146855, 0.325708, -0.927673, 0.623058, 0.878201, 2.328608, 0.139591, -1.123887, -1.885152, -1.103027, -0.690594, 2.081377, 1.039609, 0.631083, -0.047167, 0.768900, 0.973730, -0.730071, -0.795100, 0.945922, -0.593393, 0.060149, -1.197378, -0.642757, -1.422758, -0.270091, -1.918196, 0.019016, 0.553899, -0.725723, -0.049975, 0.730480, 0.194865, 1.583288, -0.793429, -0.438834, -0.130464, -1.644154, 0.702824, -1.913531, 0.106694, 1.126528, 0.420040, -0.445293, 0.571887, -0.157531, -0.692041, 2.587095, 1.337007, 0.960686, -0.689337, 0.388421, 1.068272, 0.515389, 0.653977, -0.564628, -0.468683, 0.653606, -0.090175, -0.186334, 0.908691, 0.578606, -1.851776, -0.548075, 1.548749, 0.651764, 1.360624, 0.337582, -0.691879, -1.418431, 0.807978, -0.297172, 0.034912, 0.410237, -0.942554, -0.439214, 0.457965, -2.145832, 0.351105, -1.170805, -2.719146, -0.158314, -0.614586, 0.424879, 2.754127, 1.054044, 0.601622, -0.040545, -2.170149, 0.147270, 0.560472, 1.528347, 0.567829, -0.018008, -0.381658, -0.732215, 0.266872, -1.043024, 2.575083, 0.539466, -0.841671, -0.771651, -0.414010, 0.649392, -0.257237, 0.909045, 1.078043, 0.015821, -0.891975, -1.375473, -1.265283, -1.001856, 0.352868, -0.153865, 0.551990, 1.297729, -0.827339, -0.590362, 0.572605, 0.537236, 1.780803, 0.044854, -0.722309, -0.412978, 0.495463, 1.357161, 0.880735, 1.548529, -0.512789, 1.093130, 0.607201, -0.940269, -1.346058, -0.662537, -1.630921, 1.736744, 0.376064, 0.588518, -0.731392, 0.320002, 1.897495, -0.561855, -0.043211, 0.329067, -1.597663, 2.937750, 0.631671, 0.539890, 0.283874, 1.965470, -0.989744, 0.570398, -1.568765, 1.025972, -0.541943, -0.373208, 0.230093, 0.262655, 0.505942, -0.944142, 1.283452, -1.192868, -0.744110, 0.659878, -1.000340, 1.589922, 1.655994, -1.167801, -0.269138, -0.363151, -0.871481, -0.420680, 1.040005, -0.431508, -1.281230, -0.512318, -0.218924, 1.348046, 0.633733, 0.088889, -0.245016, 0.591242, 1.132514, 0.712195, -1.296513, -0.934248, -0.302543, 1.436858, 0.531896, -1.867159, -1.236130, -0.408434, -0.050282, 0.672589, 1.029602, 1.393088, 0.531739, 0.930622, -0.317769, -0.467297, 0.197542, -0.647020, -1.307058, 1.416776, 0.176016, 0.828286, 0.079681, -0.687654, 1.595828, 0.602707, -0.151113, 0.031936, 3.166681, 0.867356, 0.539911, 0.951033, -1.111953, 1.312779, 2.140893, -0.365097, -0.756451, -1.587729, 0.045646, 0.901133, 0.421425, -0.813058, -0.985248, -0.318459, 0.445675, -1.065751, 0.510675, -1.183406, 0.083105, 0.975794, -0.009505, -1.976220, -0.032721, -1.863482, 0.183437, -1.450258, 0.571176, 0.171300, -1.051524, -0.025137, -0.364907, 1.242000, -0.011513, 1.700560, 0.015861, -2.547197, 0.888665, 0.973877, -1.753945, -0.604646, 1.240845, 0.276626, 0.835803, -0.079542, 0.050746, -0.508911, -1.665020, 0.730793, -0.072332, 1.024210, -1.746898, 0.687907, 0.378025, 1.605892, 0.315604, 2.206854, -0.138711, -1.412615, 0.413787, -0.060648, 0.664999, 1.597237, 0.382786, 1.500695, 1.860595, -0.080737, 0.256487, 1.162947, 0.502315, -0.136137, 1.601147, -0.151200, 0.765266, -0.281051, 0.685311, 1.023502, 0.317818, 0.086314, -2.154653, 1.258030, 1.145675, -2.078759, -0.397960, 0.402890, 0.967976, -0.169267, -1.980233, -0.786104, 0.329992, -0.388028, 1.173585, -1.063861, 0.061067, -0.339741, 0.671392, 1.254569, -1.409940, 0.937403, -0.066188, -0.379947, -0.446582, 0.000128, -1.019786, 0.526527, -0.689360, 0.014842, -0.379158, 0.998085, -0.359716, -0.278478, -1.638923, -0.355024, 1.221687, 0.380838, -0.580778, -0.991513, -0.774157, 0.831976, -0.985778, -0.795102, 0.415400, 0.739446, 1.854077, 1.745931, 1.129811, 0.892184, 1.015465, -0.667754, 0.254367, -0.269651, 0.844039, -0.282847, -0.131188, 1.069626, -0.924020, 0.187840, 1.515246, -1.576336, -0.435936, -1.962785, 1.219529, -0.188467, -1.479822, -0.106636, 0.757747, 0.444520, 0.151669, 1.308655, -1.848307, 0.819246, -0.691925, 1.042457, -1.889494, -0.008251, 0.352980, 0.310005, 0.601249, -1.275811, 0.532965, -0.220867, -0.352776, -0.009527, 0.542688, 0.321655, -1.459785, -0.524239, 0.921200, 1.428630, -2.049950, 0.196952, -0.182161, -0.598679, -0.272160, -0.624831, -1.142742, 0.400120, -0.235473, 0.615551, -0.407898, -0.951401, 0.380072, 1.085257, 1.212558, 0.185780, 0.733815, 0.574640, 0.457952, 0.096082, 0.732680, 0.082707, 0.151700, 0.183100, -0.863619, 0.300097, -0.718123, -1.010734, 0.124748, -0.815479, 0.099243, -0.476195, -0.536010, -0.538039, 0.292785, -2.351339, -0.276826, -2.499783, -0.075705, -0.897374, -0.285535, -0.953430, 0.198136, 0.343154, 0.556603, 0.561553, 0.817719, 0.668316, -1.485080, -1.068298, -0.672301, -1.348186, 0.711111, 0.724554, 0.581014, -0.783041, -0.397042, 1.331664, -1.117222, 0.932444, 0.030756, -0.240641, 1.513190, 0.263395, 0.351389, 0.275304, -0.524006, -1.127194, 0.087733, 0.409534, 0.583871, -0.527440, -0.322752, 0.190587, -0.001396, -1.250543, 0.029237, 0.723774, -0.083851, 1.350279, 1.790519, 0.939365, 0.117923, 1.680303, 2.099375, 1.932916, -0.253220, 0.171509, 1.406413, -1.611971, -0.258640, 0.265394, 0.438333, -1.194541, -0.082098, 2.485423, -1.182706, -0.961690, 0.857870, -2.231763, -0.427951, 0.753440, -0.523252, -1.658902, -2.181081, -0.334577, -1.863257, -1.112460, -0.177234, 1.244737, -0.526643, 1.151306, -0.847277, -0.244868, -0.380532, 0.563493, 0.750466, -0.253092, -1.519646, 1.114412, 1.327542, -0.111753, -0.592570, 0.548212, -0.147598, -0.032017, -0.226827, 0.142878, 0.320832, 0.206300, 0.741409, -1.920498, -1.415332, 2.787690, 0.570796, 1.923239, 0.294151, 0.439956, 1.353512, -1.158930, 0.383895, 2.496787, 0.468525, -1.985228, -2.319000, 0.365258, -1.219664, 0.195127, 0.513665, 0.941101, 0.812753, -1.895636, 1.644525, -1.085889, -1.145886, 1.011864, 0.318452, -0.590919, -0.622030, -0.242061, 0.363680, -0.568791, 0.380872, 0.606028, 0.285046, 0.886551, -0.498485, -0.485802, 0.022500, 0.117547, -1.683159, -0.369969, -0.055681, -0.301956, -0.273704, 1.196988, 1.414362, 1.216099, 2.016447, -0.174947, 0.502012, 0.677855, -1.238375, 0.624047, 0.606496, -1.800062, -0.639483, -0.273268, -1.547553, -1.279794, -2.296775, 0.765019, 0.818297, -0.275762, 1.211393, 1.656740, 0.368837, -1.373180, -0.794637, -1.116343, -0.538595, 0.297590, 0.059933, -2.512983, 0.919144, 0.349269, 0.378733, 0.005685, -1.829413, 0.843867, -0.221340, -0.184708, -0.627133, 0.617322, -1.198811, -0.273261, 0.081787, -0.282785, -1.706555, 0.198147, 1.591000, -0.207255, 0.242216, -0.319243, 0.196243, 0.643825, -0.017535, 0.256174, -1.122043, -1.845724, -0.811015, 0.776274, -0.157725, 0.345995, -1.101322, -1.583710, 0.034840, 0.148482, -1.707850, -0.518058, -0.311283, 0.172524, 1.230821, 1.186505, 0.903200, 2.211017, 2.414472, 1.017153, -2.192178, 1.164859, 0.155565, -0.286887, 0.561347, 1.423541, 0.265095, -0.281437, -2.627453, -0.570023, -0.174361, 0.477104, -1.493228, 1.559336, 0.926887, -0.388126, -0.284381, 2.548079, 0.322448, 0.310619, -1.772152, -0.977292, 0.484613, 0.691650, -1.045605, 0.164643, -1.343724, -0.528016, 1.203277, -0.049976, 0.577042, -0.061830, 0.232674, 1.557687, -0.263098, -1.530672, 0.425431, 0.643476, 0.943443, -0.329490, -0.573549, 0.938394, 1.291568, -0.182664, -1.102386, 0.065628, 0.259166, -0.560332, 0.727604, 1.239912, 1.893412, 0.454215, 1.576560, -2.452963, -0.520614, 0.757300, -0.957798, 0.650079, 0.102533, -0.005347, 1.846959, -0.531347, -0.315259, -0.446454, -0.023414, 1.373055, -0.609325, 0.475658, 0.708969, -2.476679, -0.245944, 1.053382, -0.972497, 0.068844, -0.318367, 0.766286, -0.943124, -0.722381, 0.908176, 0.556848, 1.280472, -1.045132, 1.333220, 0.771205, -0.230906, -0.914635, 1.491213, -1.568861, -0.818916, 1.520769, -0.950524, 0.185209, 1.639798, 0.609398, -1.239409, -0.911419, 0.760996, -3.508370, -1.098161, -1.057860, 0.705982, -0.437876, -0.133774, -0.058981, 0.186572, 1.259757, -1.602921, 2.097763, -1.016769, 0.294787, 0.549145, 0.002455, -0.531612, -0.347243, 0.782148, 1.936902, -0.870336, 0.951023, 1.037518, 1.202069, 0.732683, -0.548064, -1.281353, 0.928252, 0.404610, 0.237788, 2.432759, -0.207768, -1.170613, 0.120114, 0.943097, 0.611571, 0.685156, -0.135865, 0.531529, -0.475724, -1.103788, -1.209592, -0.316528, 0.860905, 0.566027, -0.042948, 1.582790, 1.057178, 0.017846, 0.525677, 0.234745, 0.765340, 1.234892, 0.038759, -0.231228, 1.453337, -0.151583, -0.477912, 1.140651, 0.841136, 1.822284, 0.205754, 0.160168, 1.365118, 1.131590, -1.180762, -0.145345, 0.407859, 0.302355, 0.147690, -1.465125, 0.805820, -0.468216, 0.479170, -0.469572, -0.446155, 0.611474, -0.895492, 0.329113, -2.051262, 0.638840, 0.120678, -0.862247, -0.675172, 0.459009, 0.566021, -0.694903, 0.205265, -1.347968, 0.211785, 0.683769, 0.046369, 1.587299, -0.137911, 0.310909, -0.182222, -1.263354, -1.434873, 0.713546, -1.028692, -0.113286, 0.783760, 1.414144, -1.372740, 0.907109, -0.547061, 0.531404, -0.473709, 0.054894, 0.135392, -0.032126, -0.901858, -0.259162, -2.267479, 0.344289, -0.717041, 0.199426, -0.677745, -0.060331, -0.685787, -1.073391, 2.143624, 1.291589, 0.322839, -0.332561, -1.260504, 1.624500, 0.236125, 1.020439, 0.962793, -1.640325, 0.890086, -0.200777, 0.829336, -0.653676, -0.412580, -1.160139, -1.178952, -0.633673, -0.294256, -0.272505, 2.013521, -0.198038, 0.088963, -1.513950, -0.294601, 0.572533, 0.674166, -2.256508, 0.871453, -1.659994, 1.564678, 1.263049, 0.188872, -0.029460, -2.161498, -0.844293, 0.073321, -0.217361, -0.668902, 1.620032, -0.282229, -0.098374, 0.587284, 1.195532, -2.639980, -0.776069, -1.118495, 1.685807, -0.566415, 0.417830, -0.186634, 1.118239, 0.286706, 0.336966, -0.934391, -0.356628, -1.069422, -1.382757, -1.614739, -1.081746, 0.697923, 1.925684, -0.781039, 0.216922, 1.196330, -0.749097, -0.509502, -0.883495, 0.057129, -0.050837, 0.966182, -0.433586, -0.595828, -2.018313, -1.042086, -0.092144, 0.091934, -1.251020, 0.059435, 0.278959, -0.669808, 0.522188, 0.828343, 1.066447, -2.211732, 0.077299, 0.090529, -0.583485, -0.926748, 0.791708, 1.007578, -0.938377, 0.390635, -0.016530, -0.567840, -0.617223, 0.641829, -0.601339, 1.705307, -0.688337, -0.391470, -0.616910, 0.484435, -1.560051, -0.172858, 2.281009, 0.403052, -1.373667, -0.830165, -1.532637, 0.449668, -0.924330, -0.188391, 0.765738, -0.294488, 0.620307, 0.277731, 1.227256, -0.380445, 1.248724, -1.697083, -0.847337, -0.796181, -0.828789, -0.174957, -0.259475, -1.968412, -0.183483, 0.293268, -0.240115, -0.342797, -0.752306, -0.741280, 0.763456, 0.366529, -0.846331, -2.265886, -0.067053, 0.466130, 0.490662, 1.096581, -1.764215, -0.601576, -0.252311, 0.182608, -0.520276, 0.076030, -0.341519, -0.383581, -1.431756, 1.330467, -0.908274, 1.329367, -0.534607, -0.039371, -0.085676, -0.269648, -0.787234, 0.007173, 1.326513, 0.446413, 1.612812, 0.349147, -0.580131, 0.011947, -0.830780, -0.953301, -0.952242, -0.336505, -0.012668, 0.036008, 0.871640, -1.142907, 0.306253, 0.584759, 0.830233, -2.252978, 0.099714, -0.274381, 1.314918, -1.690409, -0.604197, 0.047075, -0.512890, -1.050812, 0.372193, -0.685270, -0.403895, -0.417881, 0.284571, -0.048282, -0.019376, -0.676599, -0.172166, -0.541573, -0.023006, 0.071876, 1.397583, -0.312360, 1.877012, 0.576752, -0.777600, 1.591267, 0.366755, -0.805977, -1.019038, -0.110027, -2.543164, -0.496476, -0.147449, 0.037518, -0.249998, 0.690148, -0.509130, 0.580286, -1.109549, 0.433471, -0.080534, 1.994791, -1.416895, 0.264197, -0.973871, -1.346378, -1.070348, -0.602265, 0.885242, 0.030756, -0.612280, -0.516690, 0.944415, 1.336945, -1.595313, 0.026528, -0.250100, 0.893869, -0.253728, -1.650977, 1.398246, 0.513745, -1.188211, -0.442091, -1.060550, 0.918336, 0.952847, 0.794229, 0.811815, 0.212550, -1.724803, -0.225094, 1.111234, 0.597199, -0.144270, -0.079793, -0.997074, -1.086010, 0.490363, -0.854987, 0.130572, 0.359305, 1.822808, 2.617574, 0.444795, -1.081134, -1.713222, -0.444533, -1.869120, 1.698570, 1.231275, 0.466171, 0.689414, 1.006129, 1.445567, 1.146741, 0.758339, 0.394512, -1.986660, 0.186819, -0.510688, 0.932882, 0.555146, 0.707300, -0.808208, -0.723499, 1.832024, -1.905344, 0.643497, -0.019097, 0.161381, -0.004972, 0.995444, 0.637443, 2.931123, -0.166906, 1.105529, 1.100713, 0.140412, 0.841600, 1.674908, -1.822820, 0.390012, 2.297440, -0.312916, 0.457927, -0.115662, 0.433671, 0.824154, 0.482680, -0.893767, 0.038397, -1.266835, 0.912249, -0.887309, -0.037484, 0.084544, -0.839360, 1.735897, 0.154937, 0.537164, 1.549364, 0.425318, -0.718091, -0.127856, -0.745922, 0.153830, -0.232807, -0.518767, -0.991916, -0.663041, -0.144539, -0.281017, -0.937514, -0.317277, -0.320038, 0.025055, 2.570044, -1.482317, -0.717633, -1.085678, -0.471183, -0.224776, -1.099564, -0.571303, 0.829553, -0.155893, 0.156793, -1.194801, -0.220895, -0.368922, -0.675315, 1.676874, 0.818077, 1.552793, -0.215783, -0.763735, 2.724967, 0.190431, 1.077808, -0.690782, -0.339568, -1.099323, 0.121236, -2.092776, 0.264752, -0.088903, -0.257739, -0.537163, 1.041136, -0.018238, 0.735731, -1.281614, 0.592891, 0.593413, -0.156507, 0.356066, 0.421609, 0.399154, -1.299910, -1.107248, -1.252386, 0.214870, 0.773377, 0.280858, -0.020667, -0.152196, 0.168648, 0.833699, 0.058437, -0.371987, 0.637980, -0.217940, -0.291812, 0.042399, 0.694663, -0.311074, -0.748296, -0.893546, -0.008895, -0.018246, 1.643986, 0.090306, 1.597983, 0.153118, -0.640786, 1.109137, 0.996771, 0.653828, 0.066764, 0.346753, -0.789985, 0.162597, 2.254294, 1.425568, 0.646100, -0.533868, 0.890136, -0.379934, -1.726412, 0.505541, -1.631099, -0.578253, 2.055353, 0.760786, -0.602107, -0.738184, 0.046679, -1.329390, -0.922382, 1.411517, 1.405269, 0.628556, 0.439620, -0.011662, -1.029384, 0.076170, -0.455761, 3.042590, -0.083860, -1.809582, 1.139211, -0.976658, 1.023288, -1.821213, 0.122494, 0.632407, 0.807095, -0.108281, -0.286565, -0.090761, -0.227396, -2.005785, -0.150380, 1.444135, -0.782624, 0.236282, 0.937521, -1.349104, 1.532143, 1.021212, -0.582009, 1.149779, 0.792034, -0.097042, -0.056904, -1.543658, 0.700936, 1.195743, 0.356991, -0.534177, -0.818301, 0.811975, 1.300884, -0.057174, 0.533409, -0.024578, 0.747383, -0.140990, 0.012016, 0.510459, -1.704202, -0.531843, 0.488358, 0.020743, -0.843652, 0.430010, 0.735691, -0.029030, 1.870751, 1.196554, 0.578918, 1.068060, 2.301197, 0.806130, 1.542723, -0.657610, 1.219884, -0.407545, -0.631783, 2.917728, 1.102480, 1.059211, -0.250046, 0.160946, -0.190146, 1.708230, -0.372174, -0.346686, 0.677688, -0.660339, -0.160757, 1.590138, 1.086151, -0.630868, -1.512951, -2.307979, -0.285702, 0.414328, 0.844063, -1.172826, -1.703214, -0.513180, -0.139610, -0.498324, 1.984058, 2.193488, 0.038102, 0.007519, -0.174715, 0.876993, -0.145233, -0.902617, 0.587381, 0.494300, -0.235182, -3.053974, 1.371978, 0.804059, -1.783810, -0.136912, 0.376198, -0.436949, -0.995726, -0.024736, -2.339851, 0.250048, -0.039450, -0.298911, -0.271579, -0.510332, -0.181264, -0.666547, 1.183405, 0.135117, -0.383399, -0.472141, 0.074341, -0.774374, 0.088133, -0.495193, 0.091177, 1.542859, -0.842349, -0.015065, 0.564222, 0.013059, -1.105840, 0.164683, -0.687384, 1.465354, -0.938458, -0.130631, -1.513411, 1.216604, -0.764995, -1.130777, -1.162234, -1.797466, 0.014359, 0.294896, 1.093679, -0.689184, -0.541962, -0.331089, -1.895172, 2.511445, -1.048767, 0.424427, 1.325798, 0.642216, 0.223989, 1.759172, 0.392975, -0.170945, 0.041169, 0.206289, -0.386149, 1.219702, -1.301169, 0.048387, -0.833263, 0.497843, -1.353330, -0.164616, 0.916817, 1.832351, 0.330548, 1.878273, 0.909365, 1.919446, 1.105769, -0.320675, 0.413568, 1.014741, -0.953961, -0.327467, 0.808275, 1.088393, 0.255993, -0.391291, -1.659907, 1.293995, -0.663314, 1.096924, -0.858102, 0.726580, 0.409432, -0.597511, 0.512230, -0.283823, -0.108287, -0.104364, -0.408240, 2.646028, 0.329585, 0.385602, 0.744607, -1.404503, -0.774725, -1.090793, 0.533799, -0.246337, 1.802539, 1.403776, -0.646599, -0.050306, 1.064913, -1.606383, 0.200212, 1.118009, -0.150026, 0.042371, 0.246243, 1.424385, 0.944149, 1.994377, 1.511456, -2.229374, -0.041016, -0.439311, 0.279010, -0.333640, -1.527750, 0.041591, 0.068428, 0.824794, -0.091369, 0.024561, -1.579225, -2.206697, -0.656816, -0.730981, 0.871948, 0.410183, 1.466418, -1.191390, 0.055316, 0.315366, 1.068758, -2.021178, 0.479162, -1.920746, 1.265739, -1.192487, 0.699744, -0.294441, 0.327163, 0.336695, -0.251148, -0.014699, -0.552606, -0.034257, -0.412130, 0.148108, 0.242689, 0.254666, 0.916913, -0.118230, 0.944449, 0.850491, -0.549134, 1.252050, -0.896338, -0.038419, -0.102139, 0.230073, 0.707243, -0.285361, 0.897815, 0.083996, -0.307050, -1.310556, -1.297087, 0.285785, 0.119637, 0.153944, -0.572136, -1.948030, -0.974255, 1.887546, -1.534551, 0.376188, -0.847022, -1.221058, -1.239111, 1.393376, 0.714988, 0.508397, -0.463747, 1.675715, 0.938767, -0.469509, -0.210144, -0.567250, -0.620194, 0.327048, -0.189579, -1.150585, -1.837289, 0.574851, 0.756407, 0.649215, 0.952602, -0.064761, 0.780440, 0.006990, -0.107420, 0.727935, -1.498537, -0.149461, -0.640389, -1.151963, 0.603294, 1.301707, -0.423346, 0.193280, 0.249339, 1.910752, 1.252278, -0.478919, -1.263717, -1.108649, 0.522311, -0.511481, -0.750591, 0.580339, 0.038164, 0.448575, -0.516887, 0.035124, -0.321898, 1.601525, -1.010123, 1.172648, 0.789511, -0.305779, 0.439665, -0.943016, 0.247185, -1.647035, -0.268741, -0.641794, -1.704705, -0.076981, -0.148799, -0.665378, 0.423781, 0.090921, 0.009669, 3.541343, -0.205583, 0.738723, 0.234074, -0.404066, 1.688074, -1.428720, 0.086502, 0.237412, 0.629870, -1.292386, -0.286201, -0.669892, 1.320607, 0.427025, -1.290679, 0.235515, 0.121102, 0.624778, -0.339407, -0.001385, -0.282990, -0.185826, 0.170417, 0.790935, 0.509584, -0.736652, -0.740857, 0.421731, 0.148217, -1.188031, 2.061238, 0.467243, -1.137715, -0.501910, -1.575161, 0.491508, -0.871432, -0.036674, -1.531741, 1.670511, -1.100657, -2.379087, -0.894878, -0.893180, 0.743243, -0.150717, -1.123804, 1.852202, -0.406196, 0.456710, 2.020704, -1.742501, -0.793925, 2.386906, 2.307486, 0.443800, -0.119997, -0.076891, -1.659879, -0.889457, -1.126572, -0.249529, -0.593989, 0.040010, -0.240714, -0.715490, 0.554864, 0.795180, -1.442297, 0.052936, -0.078661, -0.597622, 1.051704, -1.071692, -0.223727, 2.197487, -1.612193, -1.712826, -1.049223, 0.373528, 2.014923, 0.005137, -0.339615, -1.464633, 0.775138, 0.582145, -0.074322, -0.039339, 0.849471, 0.970710, 0.563671, 0.296999, -0.233129, 0.470533, -1.027807, 0.873032, -0.990216, -0.344579, 1.991051, -1.243288, -0.773937, -1.275050, 0.688596, 0.709540, 0.739236, -0.509480, -0.944733, -0.829581, -1.459611, -0.372639, 0.138818, -0.877355, 0.625201, 1.679233, 2.587234, -0.724007, -0.063282, 0.543582, 0.400430, -1.418028, 1.380224, 0.326421, 0.066983, 0.167199, 0.475089, -1.813861, 3.863454, 1.073374, -2.143927, -0.872554, 0.615910, -0.798730, -0.294456, 0.348628, -0.091481, 0.109117, -0.269258, -0.346607, 1.694899, 0.030356, -1.116183, 0.986291, -0.276175, -0.776995, -0.478483, -1.746669, -0.769572, -0.561910, 1.534938, 1.124556, 2.106205, -0.465798, 0.045801, 0.302923, -0.612048, 1.678691, -1.837787, 0.538586, -1.294816, -0.819512, 0.389817, 1.618784, -1.748587, 0.811226, -0.944471, 0.257045, -0.257264, -0.590760, 0.943640, 1.442463, 1.421987, 0.125691, -0.936226, -0.744296, -1.298571, 0.503492, -0.308758, -0.465410, -1.531818, -1.183236, -1.071456, -1.544564, -0.244067, 0.556960, -0.082094, 0.799349, -0.904100, -0.317398, -0.365474, 0.008497, 1.167893, -2.393731, -0.089081, -1.607118, 0.319808, -0.245479, 1.544748, 0.199089, -1.733975, 0.216595, -0.862683, -0.145294, -1.028413, 0.084622, -1.060423, -2.092094, -0.240342, 1.188253, -1.615954, -1.358371, 0.879228, -0.023069, -2.407970, 1.552391, -1.072367, 1.003362, -1.643287, -1.803301, 0.656959, -0.507439, 0.557726, 0.067385, -1.834729, 1.011635, 1.004941, 0.527291, -0.029220, -0.881374, 0.431512, -0.389514, 1.000413, -1.430431, -0.432264, 2.279686, 0.478093, 1.150904, 1.233045, 0.040604, 1.723720, -1.932611, 0.069839, 0.177436, 0.644337, 0.138893, 0.811589, 1.318610, -0.764301, 1.222897, 0.435160, -0.500890, -0.956888, 1.042668, 0.406103, -0.920406, -1.319111, -0.644290, 0.142344, 2.281816, 1.089299, -0.089849, 0.068527, -1.626372, 0.575032, 0.363485, 0.281475, -0.342292, -0.460887, -0.206568, 0.119601, 1.010891, -0.589126, -1.207114, -0.679484, -0.164767, 1.188464, -0.433478, -0.405101, 0.388493, -0.398345, -0.739965, -0.368103, 1.494972, 0.452187, 0.345183, 1.209138, -0.487715, 0.970376, -0.248573, -1.562223, 1.440107, 1.230554, 0.653765, 1.069575, -0.323912, -2.215181, -1.011182, -0.115525, 0.012882, 0.047552, 0.783577, 0.294569, 2.004042, 0.162805, 0.283400, 0.695328, 0.796394, 0.027858, -1.512262, 0.748944, 1.294560, 1.038944, 0.635624, 0.665665, 0.771893, 1.920399, -1.047048, 1.028800, -0.659706, -1.084620, -0.567912, 0.174250, 0.249991, -0.791014, -0.760536, -0.749136, 1.555948, -0.580161, 0.845206, -0.926180, -0.906502, 0.487650, 0.332809, -0.579900, 1.205110, 1.287482, 0.364265, 1.583727, 0.112548, 0.051445, -1.189313, 0.872642, 0.310576, -0.088811, 0.344399, 1.320516, 1.215312, 1.235190, -1.629074, 0.813127, -1.010859, -1.643796, 0.158955, 0.139451, -0.357437, -1.579448, 0.161483, -0.228034, -0.317106, 1.931907, -1.722057, 0.196683, 0.116167, -0.658469, -2.491604, 1.023589, -1.249266, -1.226009, -0.150899, 0.336420, -0.841573, -0.719314, -1.546988, 0.696434, -0.362489, 1.359999, -0.484196, 0.368057, -0.177900, -0.341715, 1.894156, -0.243240, -0.255521, -0.790302, 0.562681, -0.375213, -1.206545, 0.229697, -0.841389, 0.909753, -0.991210, -0.594636, 0.059072, 0.555166, -1.362246, -0.349571, 1.230701, -0.356377, 0.932467, -1.165115, -0.839346, 2.457175, 0.191253, 1.599424, 1.003718, 0.663725, 0.338212, 0.942617, 0.988647, 0.165321, -0.464729, 1.979742, -0.872464, 1.571884, 0.607541, -0.302177, 1.640315, -0.420163, 0.453161, 0.400100, 0.282997, 0.769928, -1.912038, -0.157296, 0.401561, -0.732490, 0.026293, 0.737686, 0.087095, -0.507333, 1.907895, -1.874615, 0.458992, -0.154443, 1.769705, 1.985668, -0.225467, 0.542504, 0.936257, 0.033905, 1.457578, -0.088986, -1.168413, -1.355266, -1.840697, -0.152484, -0.534739, -0.547411, -0.693715, -0.164172, 0.298906, -1.306754, -0.111398, 1.443232, 0.876508, 2.276819, 1.654638, -0.440680, -1.122580, 0.873657, 0.246780, 0.699443, 0.954755, 0.892463, -1.270546, -0.306003, -0.267748, -0.857556, -0.805911, 0.325010, 0.425770, 1.254828, -0.624817, -1.070832, 0.655255, 0.939468, 1.943613, 0.539540, 0.148576, -0.119474, -1.293726, -0.715895, -0.012675, 0.691287, -1.104951, 1.323809, 0.737486, -0.074661, -0.754728}, - { 0.023396, 0.136202, -0.429582, 0.913338, 1.063412, -0.576345, 0.285503, -1.278941, 0.502903, 1.722815, 0.692577, -0.011685, 0.316799, -0.966577, -1.228344, -0.016515, 1.389067, 2.539372, 1.007168, -0.479410, 0.100582, -0.439411, -0.270432, -0.622462, 0.078918, -1.170713, 1.862006, -0.287125, 1.183094, 0.045484, -0.589916, 1.155468, 0.638269, 1.363820, -0.470962, -0.076511, -1.185386, 0.361495, -0.171536, 0.001601, -0.931906, 1.387370, 1.151270, -0.987457, -0.668102, 0.399541, -0.695934, 0.016185, -0.481527, -0.185139, 0.539298, -0.199924, -0.638359, 0.593280, 0.331584, 0.411655, 1.064039, -0.089867, 0.396282, 1.144994, 1.540412, -0.210733, -0.640321, -0.575352, 0.917385, -0.991393, 0.986518, 1.862033, -1.580919, 0.453481, -0.263275, 0.511648, 0.159256, 0.931962, -2.609276, 0.968629, -0.914541, 1.700993, -1.256050, 0.698150, 1.823422, 0.037138, 1.438278, 0.986441, 0.589477, 0.188192, -0.849313, -0.089171, -0.590156, 0.770045, 0.299019, -1.537151, -1.476206, -0.379538, -0.930985, 0.245125, -1.023723, -0.599459, 0.166164, 0.935795, 0.410261, 0.037563, 0.909495, 0.828077, -0.075983, 0.094554, 0.535356, 0.619143, 1.248614, 0.335082, -1.496190, 1.100331, 0.200583, -0.355275, 0.763333, 0.111904, 1.534498, -1.359010, 0.639630, -0.479338, 1.012974, -0.136755, 1.095541, -0.578645, -0.620133, -0.775549, 0.948693, 1.549242, 1.603935, 1.593606, -0.540264, 0.027972, 1.075918, -0.787919, -0.034328, 1.928163, -0.719574, 0.056106, -0.620823, 0.133577, 0.955915, -0.149810, 0.496379, -1.087988, 1.085755, 0.660878, -0.538073, -3.163423, -1.515447, -1.059159, 2.464664, 1.544105, 1.475011, -0.179892, 0.444121, 0.019551, -1.734134, 0.416269, 1.646693, 0.147408, -1.700392, 0.650383, 1.484545, -0.914398, -1.126786, -0.479859, -0.873992, -0.585683, 1.547714, -0.222915, -0.348313, -2.355119, -0.827512, 0.784104, 0.774014, 0.412664, 0.100520, -0.358616, 0.938329, -0.694108, -0.499660, -0.172609, 1.805564, 1.917629, 0.982360, 0.279026, 0.293680, -1.320559, 0.052307, -0.695806, -1.412588, -0.308135, 0.142306, 1.801622, 0.383280, 1.175307, -2.158855, -1.340408, -0.295171, -1.230048, -0.003015, 1.181270, -1.630008, 0.167344, -2.170366, -0.164818, -0.555085, -0.149506, -0.212877, -0.686107, -0.595363, 0.615896, 0.675775, -0.260188, 0.450867, 1.341536, 0.339737, -1.379795, -0.227748, -1.122836, -1.095426, 0.906579, -0.200616, 0.194321, -0.029463, -2.104260, 2.849089, -0.738285, -0.485243, 0.043431, -0.637024, -0.734241, -1.437636, -0.435481, -0.416616, 0.689810, 0.000750, -1.139425, 0.490150, 0.747990, 0.583617, -0.075871, 0.177548, -0.135455, -0.815996, 0.411479, 0.383300, 0.383438, -0.480760, 0.209615, -0.161971, -1.145064, 0.711789, 0.645693, 0.246839, -2.123575, 1.365329, -1.192479, -2.123606, 0.548126, -1.809798, 0.650713, -0.344736, -1.962180, -0.121258, -0.769894, -1.552530, 0.939334, -0.631442, 0.739776, -1.375123, -1.197881, -0.229284, -1.298046, 0.012158, 0.107446, 0.536967, -0.125645, 0.620862, 0.844765, 0.936687, -0.164700, 0.536514, -1.171764, 0.005685, 3.069013, -0.781457, -0.660789, -0.556477, 0.120636, -0.400644, 0.803014, -1.447217, -1.888079, -1.035434, -0.000928, -2.431988, 0.784379, 0.406500, 1.668838, 1.741555, 0.341899, 0.718951, 0.514285, -0.039132, 0.652041, -0.240598, -1.178798, -0.049775, 1.927445, 0.729182, 1.210293, 0.150680, 0.185572, -2.233253, -0.916818, -0.711040, 2.288300, -1.408745, 0.116266, 1.467862, 1.913262, -0.873837, -0.458748, 0.113203, -0.383492, 0.955173, 1.556695, 0.145952, -0.812308, 0.146506, 0.291714, 0.260976, 0.383008, -0.604277, 0.228192, -0.355675, -0.260216, -0.573225, 0.746543, -0.371543, 1.146025, 0.242753, -2.011811, -0.034918, -1.525353, 1.786344, 0.542949, -1.075736, 0.764883, -0.107344, 0.477887, -1.542614, 0.235825, -2.035392, 0.745100, 0.861146, 1.236777, -0.553279, 0.195349, -1.317107, 0.300353, 1.147936, -0.529671, 0.699617, 0.665240, -1.009567, 1.284010, -0.639980, -0.133205, 2.781936, -0.575966, 0.701617, 1.406198, 0.990971, -1.274519, -0.485819, -1.769011, -1.266016, -1.157594, -0.015350, 1.376591, 0.717823, -0.389252, -1.065609, -0.761590, 2.085528, -0.481505, 0.654658, 0.319602, -0.467775, 1.008235, -1.182734, 0.019898, 1.823496, 0.891406, 0.311727, -0.756121, -0.417514, -1.602144, -0.986891, -0.407536, -2.256386, 1.501703, -0.710940, 0.447161, 0.095935, 0.496833, 0.121473, -0.049569, 1.514407, 1.342386, 0.426697, -0.275161, -2.898398, 0.351934, -1.170406, -0.546121, -0.724105, 0.082377, 0.165756, -0.756541, -1.211714, -0.695398, 0.641392, 0.034928, -0.068623, 0.565727, 0.089366, -0.004400, -1.106687, -0.334159, -1.375906, 0.055428, 1.831604, -0.176211, 0.375893, -1.187470, 0.013412, 0.338437, 0.171244, -2.284080, -1.666911, -0.889876, 0.666289, 0.100840, -0.297562, 0.561714, -0.289711, -1.973596, -0.739113, 2.448843, -1.330409, 1.798531, 2.261751, -1.111721, -1.336240, -0.855474, -0.263598, -0.595948, -1.601381, -1.073619, 1.129543, -0.590523, -0.833244, -1.449385, 0.166006, 0.420519, -0.276540, -0.583456, 1.281674, 1.338733, 0.245928, -0.717386, 0.027444, -1.103373, -0.284910, -0.461207, 1.350333, 0.647286, 0.862684, 2.205029, 0.424601, -0.386721, 0.661946, 0.161695, 0.704428, -0.057529, -0.219743, 1.232696, -0.516243, -1.700123, 0.776517, 0.690183, 0.737384, 0.422231, 1.241127, 0.214493, -1.161830, 0.507126, -0.370957, -0.596948, 1.951120, 0.294149, -1.613676, 0.670852, -0.628501, -2.113212, -1.230546, 0.652650, -0.666821, -1.097989, -0.033759, 1.096087, 0.554365, 0.098416, -0.744607, -0.541579, 0.200043, -0.482690, -0.436143, 0.927082, 1.151850, 0.117516, -0.297776, -0.828680, -0.143217, -0.546180, -1.568938, 0.487001, -2.863392, -1.249782, -0.527590, 0.735020, 0.987866, -0.317457, 0.051409, 0.684666, 1.539859, 0.641157, 0.634615, -1.505125, -2.249882, 1.209540, 0.579772, -1.084018, -0.029828, -0.390837, 0.537237, 0.086474, 0.536605, 1.084405, 1.973039, -0.772143, 0.705911, -0.517773, 0.845810, -1.058857, -0.457516, -0.333350, -0.263789, 0.837664, -0.463301, 1.029478, 1.382064, 0.259793, -0.225372, -1.509245, -0.020093, 1.321944, -0.243838, -0.376126, -1.575089, 1.517300, 0.155765, -0.477722, 0.410828, -0.443794, -0.936263, -0.029884, 0.409627, 0.228721, -1.515066, -0.294576, 0.840850, -0.833279, 1.553635, -2.003227, 1.237115, -0.542041, -0.377088, 1.485181, -0.528614, 0.816891, -0.572198, 0.349043, -0.853648, 0.778541, 1.635181, 0.840294, -0.305631, 0.254761, -0.043400, -2.622454, 2.061213, -0.164515, 0.039771, 0.484052, -1.265441, 0.350750, 0.131981, -2.120834, 0.481874, 0.823938, 0.980490, 0.192810, -0.450139, -0.824210, 1.621638, -0.574655, -1.278036, -2.015663, 0.335195, -1.713358, 0.853229, 0.900498, -0.388422, -0.172883, 0.887181, 0.750917, 0.094901, -0.610523, 0.178098, 2.032655, -0.841524, -1.939480, -0.780872, -1.066457, -0.843065, 1.679981, 0.227205, -0.555315, -0.370237, 0.117430, 0.551519, 1.526129, 0.636538, -1.462909, 0.685438, -0.734647, 0.101999, -0.588277, 0.309043, 0.333314, -0.278448, 1.088099, 0.784948, -0.910614, -0.420306, 0.836462, -1.010417, 1.035466, -0.221405, -0.085495, 1.395105, 0.391818, 0.401208, -0.092298, 0.827388, 2.522956, -2.014271, -0.161012, 2.864902, 0.408847, 0.069922, -0.433092, -0.000868, 1.083471, -0.228456, 1.120465, 0.211148, -0.907982, -0.343534, -0.393809, 1.009895, -0.664715, -0.913141, -0.428409, -0.720020, 0.165634, -0.932413, -1.008384, 0.357105, 0.026722, 0.295190, 1.136801, -0.559688, 0.034592, -0.376112, 0.727929, 0.036997, 0.884449, 0.494009, 2.446481, -0.840208, -0.419960, -0.717282, -1.224830, -0.545034, 1.448973, 1.006176, -1.266416, 0.692259, 2.476227, -0.563591, -1.948613, 0.338439, -0.737522, -0.007381, -0.775368, -0.116046, 0.556389, -1.886169, -0.337153, -0.694164, 0.836965, -0.172066, -0.351394, 0.901425, 1.480408, -1.216691, -0.475046, 0.698097, 1.554528, -0.284628, 0.840685, 0.872275, -0.366342, 0.835962, 1.506416, 0.495956, 1.017693, -0.807007, 1.004605, 0.086903, -1.419050, -1.585328, -0.331168, 0.646487, -0.041309, 1.538866, 0.084962, -0.791234, 1.169489, -0.150808, 1.008338, -0.480815, 0.662092, -0.997507, -0.169619, 1.786960, 0.925473, -0.596759, -0.234993, -1.215669, -1.686875, -0.562187, -1.172172, 0.197798, 1.799606, 0.636350, 1.669752, 0.440029, -0.667044, 0.761192, -0.671475, 2.913899, 1.551982, -0.163438, -0.876546, 2.158285, 0.012670, 0.376451, -0.057048, -1.525455, 1.677993, 3.204739, -0.806465, 1.409802, 1.163384, -0.775699, 0.132773, 0.095906, -0.627838, -0.607660, 0.751566, -0.890520, 1.028551, -0.162412, 0.571988, 0.309722, -0.260316, -0.286815, 2.647392, 0.496323, -0.261767, -0.225460, 0.353017, 0.356193, -1.002605, -0.149120, -0.829185, 2.084265, 1.920257, -0.967502, -0.673418, -0.282719, 0.658458, -0.220914, 0.012291, -1.436628, 0.966705, 1.111947, 1.886631, 0.641276, 1.333091, 0.101900, 0.248207, 1.781667, -1.317881, 1.367503, -0.467715, -0.001462, 0.188514, 0.410630, -0.256085, -1.549796, 0.540346, -0.431244, -0.576367, -0.141862, -0.124181, -1.455504, -0.151082, -0.190830, 1.158185, -0.412450, 2.146508, 0.719205, -1.432673, -0.315998, -0.466829, -0.761943, 0.515085, 0.538625, 1.379972, 0.155460, -0.720756, -0.165366, 1.393689, -1.286890, -0.829596, -0.471441, 2.188738, 0.034887, -1.816133, -0.126200, -0.161840, 1.403793, 0.696582, -0.774912, -0.300883, 0.439844, -0.913951, -0.068064, 0.249758, 0.145267, 0.393304, -0.567440, 0.911235, 0.996696, 0.481671, 0.241562, 0.395446, 0.971160, 0.058329, 0.915646, 0.659591, 0.722111, -1.827426, 0.533718, 1.039158, -0.468198, -0.818465, -0.595275, -0.419400, -2.270205, -1.218343, -0.953830, -1.663903, -2.222436, 0.286854, -0.063987, 0.594184, -1.423526, 0.086622, -1.888888, -1.348979, 1.264271, -0.305135, -0.741713, 0.431745, -0.100344, -0.082734, -0.329502, -0.167831, -0.713032, -0.639203, 0.830372, 0.134868, -0.226451, -0.080555, 0.254751, -0.903663, -0.416320, -2.049183, -0.753678, -0.562997, -0.640196, -1.117323, -0.695391, 0.621921, -0.689532, 0.138901, 2.714519, 0.863851, -0.071293, -0.025773, 1.226162, -0.184486, 1.172223, 1.653256, 0.360200, -0.095637, -0.631009, -0.897069, -0.715706, 1.184576, -1.666696, -0.592545, -0.954167, 1.027020, -0.080999, 0.211218, -0.060247, -1.106066, 1.721754, -0.688572, -1.257614, -0.531225, 0.811394, -0.257033, -0.613901, 1.008222, -0.350364, -1.112902, -0.221605, -1.100273, 0.490632, 1.063217, 0.507124, 1.221259, -0.088082, -0.590366, -0.134465, -1.954293, -0.019045, 0.656908, 0.086825, -0.913736, -1.394168, -1.267404, 0.168277, 0.315333, -1.051621, 0.086617, 0.082980, 2.832044, -0.595429, -1.056764, 0.889832, 1.419938, 0.421057, 0.973185, -1.183331, 2.182572, -1.446946, 1.025428, -0.813468, 0.313637, 0.134514, -0.350835, -0.977275, 0.180079, 0.502391, -0.893320, -0.639823, 0.016668, -1.182340, -0.177489, 1.205509, 2.025180, -1.730964, -1.145808, 1.260928, -0.941486, -1.709951, 0.238115, -0.700688, 0.798015, -1.303748, 0.532478, 0.079181, -0.711292, 1.404005, -0.203665, -0.360464, -1.992930, -1.941063, -0.692722, -1.742797, -0.289899, 0.273530, 2.180192, 0.841466, -0.284565, 0.152140, -1.385026, -0.402354, 1.203714, 0.377931, 0.614887, -0.408598, -0.206427, 1.058361, -0.375093, -1.930014, -0.345484, 0.083174, -1.745501, -0.950120, 3.047193, 0.297606, -0.062777, -0.851934, 1.205954, -0.918285, 0.267098, 1.353393, 0.400963, -0.119559, -1.653386, -0.198842, 2.248121, 1.041785, 1.014294, 0.383287, 0.276750, -0.211980, 0.342658, 0.512542, -0.010094, -1.807120, -0.430656, 0.907290, -0.378878, -0.641071, -1.916796, 0.051669, -1.970603, 0.383354, 0.647800, 1.094354, -1.222950, -1.010545, -0.143197, -0.680824, -0.911992, -0.917259, 0.286051, -1.664072, 1.747371, -0.494345, -1.214253, 0.502453, 0.140978, 1.845221, 0.648643, 0.328889, -0.835324, 2.105606, 0.282061, 0.249482, -0.142112, 1.758234, 0.593565, 1.924294, -0.839981, -0.062827, -0.162460, -1.064456, 1.687495, 0.501683, 0.248259, -0.300597, 0.850652, 2.149653, 0.408587, 0.255087, 0.372499, 0.881041, -1.065238, 0.392307, 0.629002, 0.645496, 1.253061, 1.097165, -0.519285, -0.585461, -0.228177, 0.529624, -0.707921, -1.102816, -0.665820, -0.640109, -1.563945, -0.336420, -0.757577, 0.035822, -0.879846, -0.681074, 2.558469, 0.292831, 0.446808, 0.984800, 0.477661, 0.933916, -0.124349, -1.929640, 0.592342, -1.240870, -0.005897, -0.072176, 0.109916, 0.532631, -0.909844, 0.236485, -1.247307, 0.719336, -1.187424, -1.873172, 0.049507, -0.997982, -0.008136, -0.179615, 0.943116, -0.506585, 0.610124, -1.790382, -0.637380, 0.038062, -1.475242, 0.960402, -0.197653, 0.825991, -0.871621, -0.145996, -0.298579, -0.927108, 0.921059, -1.120398, 0.643286, 0.631341, -0.441900, 0.139579, -0.529644, 0.495942, 0.124820, 0.972268, 1.533504, -0.753933, -0.195907, -0.658978, 0.812300, 0.348258, 1.782634, 0.525831, 0.592842, 0.075061, -0.638511, -0.145393, 0.758065, 0.310227, 0.580242, -1.017672, 1.669101, -0.149095, 0.984941, -0.370344, 0.067022, 1.483523, -0.652811, -0.735169, -1.566261, -0.754629, 1.827685, 0.280319, -1.807789, -0.957124, -1.342365, -0.890650, 0.700651, -0.960648, -1.253373, -2.016371, 0.781377, -0.562471, -0.581897, -0.149032, 0.996386, -0.629304, -0.261598, 1.114246, -0.167003, -0.681592, -1.206486, 1.502084, -0.370617, -0.655498, 1.313512, -0.738096, 1.227427, 0.133845, -1.593000, -0.171006, 0.016812, -0.035712, -1.179992, 0.444235, 0.679518, -0.097178, 0.452263, -0.231834, -0.061905, 0.016916, 0.661035, -0.321204, 0.585605, -0.301141, 0.730228, 0.725004, 0.507197, 0.929350, -0.862366, -0.130783, 0.038461, -0.866809, 0.270279, 0.318924, -0.069209, 2.193380, 1.306020, -0.691564, 0.303712, -2.144057, -1.672164, -1.851207, 0.839100, 0.147435, -0.721411, 0.329681, 0.794595, 0.324947, 0.690088, 1.942982, -0.097080, 0.538811, -0.951701, -1.267461, -0.686057, 0.308640, 0.700485, 1.251595, 0.288085, -1.333523, -0.436340, 0.993456, 0.336283, 0.060835, 0.638902, -0.208971, -0.875483, -1.436833, -1.259909, 0.159208, -0.624529, 1.235453, 1.960668, 2.265294, 0.722880, 0.272373, 0.471477, -0.028523, 0.260190, 1.260779, -1.171038, 0.136264, -0.591812, -0.085109, 0.487100, 0.453191, 0.420659, 1.089847, 0.904808, -0.545982, 0.490919, -1.167096, 0.814976, -0.060983, -0.128147, -0.625799, 1.166360, 2.554266, -1.097533, -0.037161, 0.752021, 0.898231, 0.397827, -0.506452, -0.112521, 0.000972, 0.950549, -0.192429, -0.908271, -1.263897, -0.111690, 0.479676, -0.623469, -1.654686, -4.138679, -1.835954, -1.140800, 0.794125, -2.149392, 1.228026, 0.021392, 0.604759, -0.860049, -0.844000, 0.558011, -0.394070, 0.561034, 1.221802, 0.972518, -0.611841, 0.330582, 0.209986, -0.560274, 0.525795, -0.867395, -0.105653, 0.063049, -0.916626, -1.104079, 2.005839, -0.732364, -1.463147, -1.206511, -0.522068, 1.783362, 1.380923, -0.330792, -0.911438, 1.912133, -0.058340, -0.894592, 0.374959, 0.469848, -1.110191, -0.127004, 1.740126, -0.662971, 0.364398, -1.175958, -0.845267, -0.617404, -0.106894, -0.957731, 1.083887, 0.182848, 0.097826, -1.756164, 0.361191, 0.849373, 0.862155, -0.289951, 1.126485, 0.992069, 1.404981, 2.283494, -0.001340, -0.216360, 0.685055, -0.770735, -0.399487, -0.441503, -1.101333, 0.205113, -0.364961, 0.195312, 1.356274, 0.367577, 0.684025, -1.933821, 2.020367, -0.966925, 1.876325, 0.250455, -1.182922, 0.838751, -0.848364, -0.391268, -1.648649, 0.270056, 0.386856, 0.896792, 0.443080, 0.421881, 0.220919, 0.775188, 0.274056, 1.136434, -0.914596, -1.105468, 1.960688, -0.738037, -1.184684, -0.411563, 1.661435, 0.032150, -0.236232, -1.315447, 1.590860, 1.538563, 0.874176, 0.576845, -0.227200, -0.882198, 0.361813, -0.148709, -0.062594, -0.841737, -0.756088, -0.025333, 0.030301, -0.456330, -0.014243, -1.125299, 0.791257, 0.161927, -0.579588, -1.875176, -0.826973, -0.119252, 1.101134, 0.024724, 0.419482, 1.107122, 0.672548, 0.574127, -0.171276, 0.371989, 2.638032, 1.746879, 0.243066, -0.230460, 0.310734, -1.275956, -0.116330, 1.868599, -0.388425, -0.447892, 0.786226, -0.275765, -0.352552, -0.417905, 0.030294, -0.096711, 0.931218, -1.520796, -1.406463, -2.432984, 0.614980, 1.507652, -0.411919, 0.999595, -3.266768, -0.167305, 1.549981, 0.840745, 0.394237, 0.887500, 1.337820, -0.733737, 2.117126, 1.276480, -0.427666, 0.098676, -1.084921, 0.605786, -0.129802, -0.450738, -0.012783, -0.039487, 0.383089, -0.422961, -1.339078, 1.425082, -0.707621, -2.178144, 1.540504, 1.128867, 0.487667, -0.247510, -0.866662, 0.520345, -1.173509, -0.674520, -1.229432, -0.527746, -0.144087, 1.340454, 1.774964, -0.752070, 0.471210, 1.772466, -0.035121, 0.933138, -0.027395, -0.093178, 0.362352, 0.355558, -0.930105, -1.704352, 0.929236, 1.116125, -0.935670, -1.820729, -0.997073, -1.869467, 0.690508, -1.458757, -0.268961, -0.644186, -0.971382, -0.207644, 1.050033, -1.079602, -0.517690, 1.388563, -0.925280, -0.511390, -2.386877, 0.386431, 0.972395, -0.334688, -0.739947, 1.566245, 0.413413, 0.630930, -0.375925, 0.421686, 1.829775, -1.093943, -0.885953, -0.451536, 1.401307, -0.116740, -1.472080, 0.230120, 0.041125, -0.522304, -0.109951, -0.380358, -0.474135, 0.186144, -1.068480, -0.349949, -0.058732, -0.101279, -0.624958, 0.421238, 0.079521, 0.226451, 0.330446, -1.515795, -0.375161, -0.841313, 2.106468, -0.873785, -0.407179, -0.152398, -0.429888, 0.148620, 0.862050, 0.138762, -0.170486, -0.971400, -1.765626, 0.206401, 0.627441, -0.656111, 1.786710, 1.703382, 1.165944, -0.279779, -0.045727, -1.187223, 2.043474, 0.798026, 1.230852, -0.262742, 0.316060, -0.364685, 0.330564, -0.857027, -0.751561, -0.822463, -0.892342, -0.877937, 0.955756, 0.207628, -0.452704, 2.316229, 0.968874, -0.144562, 0.329772, -0.893142, 0.216800, -1.146238, -1.877710, -1.245870, -2.638468, 1.626978, -0.606653, 0.612692, -1.042984, 0.280351, 0.064535, 0.914523, 1.562372, -0.086492, -1.725664, 0.554311, 1.215640, -2.628251, 0.369850, -0.809344, 1.692258, -0.622908, 0.164238, -0.311946, 0.791535, 0.255095, 0.142770, -0.518972, 0.241471, 0.911635, -2.448279, -0.315110, 0.882662, -0.179064, 0.992140, 1.084295, 1.283118, -1.180928, -0.167381, -0.931014, 1.007953, 0.487981, 0.410414, -1.125248, 1.080264, 2.172207, -1.643838, -0.950704, 2.240215, 0.433282, -0.009187, -0.145634, -0.229556, 0.674855, -1.174463, -0.915577, 0.186573, 0.319737, 0.842539, -1.521999, 1.348312, 0.026901, 0.324622, -0.019784, -0.592992, -0.437450, -1.016367, -0.967641, 1.069485, 0.477719, 0.341111, -1.873292, -0.865953, -0.775751, 0.712023, -0.329089, -1.488686, 1.256587, -0.636032, -1.793551, -0.311343, -1.145982, -0.054065, 0.677109, 0.037941, 0.080239, 0.731041, -0.199110, 0.444112, 1.162807, 1.911987, -0.645764, 0.787155, 1.836814, -1.095626, 1.029598, 0.251865, 0.126167, -0.086977, 2.741215, 0.719721, 1.000606, 0.458922, -0.024610, 0.698153, -0.359651, -0.237589, 2.351208, 1.470371, 0.515687, 0.869332, 0.126476, 3.883470, 0.186592, -1.089796, -1.779546, -1.353610, -0.936374, -0.370747, -1.225460, 1.307343, -0.396353, 1.237037, -0.310230, 1.998615, 0.014708, -0.662009, -0.466426, 0.202250, -1.620504, 1.253677, 1.443136, 0.692793, 0.399387, -0.478853, -1.461639, -0.345262, 0.200887, 1.786089, 0.683155, 0.628412, 1.344692, -0.595442, -0.847524, -1.326938, -0.150335, -1.955917, -2.806731, -2.014990, -0.104551, 0.718086, -0.169799, 1.045719, 2.108074, 0.296045, -0.094833, 1.921723, 0.224170, -0.762066, 0.371275, -0.114867, 0.635206, 0.488845, 0.588798, 0.935705, 0.927778, 1.811801, 1.283815, 0.849260, 0.239599, 0.125858, 0.305383, 0.142462, -0.023465, 0.615983, -0.148336, -0.520158, 0.865752, -1.586879, 1.220383, -1.075337, 1.284307, -1.342182, -1.484263, -0.377195, -0.746626, 0.128483, 0.531477, -0.262316, 0.639651, 1.256555, -0.802813, 0.354839, -1.439367, 2.038917, 0.115188, -0.002961, -0.100520, -2.249591, -0.651391, -2.083083, -0.099053, -0.439976, 0.060259, -1.600097, 0.291175, -0.303681, -0.704441, -0.585825, -0.875529, 0.611901, -0.920216, 0.470516, -1.147290, -1.417867, -0.290078, 0.225656, 0.116712, 0.748802, 0.950469, 0.473076, 1.286392, 0.304649, 0.563091, -0.521579, 1.106358, -1.009653, 0.559653, -0.176687, -0.272426, -0.335814, -2.104688, 0.144299, -0.118132, 0.766873, 0.432370, 0.112561, -0.366071, 0.127473, -2.149837, -0.220517, 1.291354, -0.234275, -0.612614, -0.252934, 1.457823, -0.748966, -0.852400, 1.444541, 0.330739, -0.726693, 1.837498, -0.089930, -1.036981, -2.828063, -1.612210, 1.075947, -2.108839, -0.006844, -1.137033, 0.776847, 0.536834, -0.051561, -1.423991, -0.481238, 1.833058, 0.433326, 0.844904, -1.314044, 1.123624, -1.663119, 0.639671, -0.130581, -1.754453, -0.161802, 1.429815, 0.559547, -1.581161, 0.266619, -0.504975, 0.620295, -0.636545, 0.737502, -0.571106, 0.524705, -0.229171, -1.054068, -1.439171, -1.209349, -0.943157, 0.553638, -0.891821, -0.251170, 1.020892, 0.334475, 0.084033, 0.262309, -0.167865, -1.264099, 2.333211, -0.539337, 1.985914, 2.077649, -0.581791, 1.739788, -1.341000, 0.650356, 1.384642, 0.753769, 0.042600, -0.875205, 0.276566, 0.776265, 1.795568, -0.138639, 0.258949, -1.395009, 1.032450, -0.033395, -1.017449, 0.197769, -0.331667, -0.406614, 1.763131, -0.390460, -0.000224, -0.536840, 1.721577, 0.390280, -0.649278, -0.358400, 1.017267, 0.359298, 3.036785, -0.255413, -0.088337, -1.027438, -0.836069, -0.574555, 1.323916, 0.781015, -0.359389, -1.024314, -1.218595, -0.387437, -1.064479, -0.276786, -0.815232, 1.460104, 0.303738, -0.326294, 0.391765, -1.133664, 1.095642, 0.466745, 2.757904, 0.046717, 1.673245, 0.164456, 1.075585, -0.824465, 0.830461, -0.281511, -0.603690, 0.795431, -0.400389, 2.321805, 1.553955, -1.253872, -0.920605, -0.200004, 0.092007, -0.545655, -1.495432, 0.392425, 1.911075, 1.806849, 0.891840, -1.879598, 0.548018, 1.412529, -0.201651, -0.534491, 0.444701, -1.397474, 0.650712, 0.026161, -1.040076, -0.336743, 1.104062, 2.362363, -0.303084, -0.497921, -0.026604, 1.776820, 0.722540, -0.356284, 1.236339, -0.162178, 0.328618, -0.611726, 0.099263, 0.538875, -0.556045, 0.524705, -0.429823, 1.560737, 1.759803, -1.162496, -0.928441, 1.378210, 0.995570, -0.125118, -0.158362, -1.040534, -0.646810, -0.526419, 0.088274, 1.096575, 1.375384, 1.005730, -0.730378, -0.590933, 0.670546, 0.748929, -0.937335, 0.240316, 0.027845, -1.099000, 2.503979, 0.516242, 0.601423, -0.029485, 1.047600, -0.778150, -0.208256, 2.087371, -0.109030, -0.550065, 0.268740, -1.592542, 0.165544, 1.303491, 0.503488, 1.620395, -1.384388, -1.442777, -0.219532, 0.586025, 0.179573, -1.047919, -0.406106, -0.670253, -0.454711, 0.086696, -0.221635, -0.107341, 0.096905, 0.501375, 0.389902, -0.718962, 0.369154, -0.545792, -0.903070, -2.083394, -0.464496, 1.229965, -0.796925, 0.112636, -0.412816, 0.386996, -0.566717, 0.283490, 0.764420, -0.328507, -0.952816, -1.216502, -1.342917, -0.488431, -1.182830, -0.108431, 0.067645, -0.515138, -0.942595, 2.122972, -0.560578, 0.901717, -0.250907, 1.835881, 0.140618, -1.529766, 0.393592, 0.320063, 0.321391, -0.576975, 1.229006, 0.982869, -0.244458, 0.199389, -1.160916, 0.909540, -0.932892, -0.527376, 0.539332, 0.401679, -0.986540, -0.430322, 0.519027, 1.071460, -0.397876, -0.038977, 1.359983, 1.196802, -0.789126, 2.101725, 1.374994, 2.572261, 0.841499, 0.397886, -1.562937, -0.112234, 1.381675, -0.962275, 0.170141, -1.798316, 0.084803, -0.541409, 0.670020, 0.606919, 0.595105, 0.107764, -1.355153, -1.697404, -0.696932, 0.491681, -0.014179, -0.624061, -1.099836, 0.409383, -0.480916, 0.531477, 1.038150, -1.146378, -0.130510, -1.692715, 0.042282, 0.372224, -0.962810, -0.350911, 0.716214, 0.364914, -0.632124, -0.340206, 0.967126, 0.728422, -0.388158, 0.282732, 0.789648, 1.134498, -0.657309, 0.527860, -1.792478, -0.167761, 0.862983, 0.195331, -0.080791, 0.519439, 0.002223, 0.805881, 1.104132, 1.831897, 0.621113, 1.238027, 0.741433, 0.908927, 1.305232, -0.215425, -0.877278, -1.341962, 0.939129, -0.783505, -0.272113, -1.947798, 0.122060, 0.360423, 1.147790, -0.277303, 1.989759, -1.446570, -0.140685, 1.378022, 0.788467, -1.021896, 2.318402, -0.355808, -0.335638, 1.881346, 0.870179, 0.808606, -1.343580, -0.523407, 0.055494, -1.591607, 0.995959, -0.055108, -0.422898, 0.709051, 0.086386, -0.678440, 2.149417, -0.552571, 0.085744, 0.258830, 1.617742, -0.532514, -1.564692, -2.305881, -1.821433, -0.224066, 1.255261, 1.747371, -0.234119, 2.396160, 1.724551, 1.163899, -0.575704, -0.063996, -0.857813, -0.834383, 0.156127, 0.209251, -1.835095, 0.153471, -0.709798, 0.755863, -0.551625, 0.521749, 0.465330, -0.114019, 0.615403, 0.083398, -0.635300, -0.709101, 1.454262, -0.253375, -1.005333, 0.533846, 0.047658, 0.718758, -1.039533, -0.634423, -0.590114, -0.680550, -1.563773, -2.893270, -0.167443, -0.803513, 0.127553, 2.527076, -1.422707, -0.023917, -0.963830, -1.369666, 0.899698, -1.252324, -0.996970, 0.683784, -1.651099, 0.627126, 0.453215, 0.921522, 0.593216, -0.165564, 0.631765, 0.444843, 0.581436, -0.525560, -0.791064, 0.107712, -0.014528, 0.891228, 0.117661, 0.058619, 1.176974, 0.594804, 1.984418, 1.693246, 1.197847, -1.257990, 0.319728, -0.242894, -0.773885, -0.733213, 0.716193, 0.489327, -0.041426, -0.064122, 0.812000, 0.936097, 1.028832, -0.511751, 0.126844, 0.394735, -0.806154, -1.219645, 1.478149, -0.053347, -1.460086, -0.544855, 0.757115, 0.863290, -0.177337, -0.165244, 0.099941, -0.678255, 0.515679, -1.848812, 0.758705, -2.474852, -0.751650, -1.620979, -0.115591, 0.364014, -2.321833, -0.106576, 1.357903, -0.218782, 1.791901, 0.774550, -0.002739, -0.679866, 0.750094, 0.266076, 0.051728, 0.019607, 1.422822, 0.299407, -0.133841, 0.859156, -0.556310, -0.697764, -0.256397, -1.642769, 0.699025, -0.519203, 1.430415, -0.881879, 0.484044, 0.260979, -0.456964, 1.627451, 0.084798, -0.976754, -0.233288, -1.704769, -1.307735, 0.550205, 0.150518, 1.165306, -0.539539, -0.146413, 1.061992, -0.758994, -0.387400, -0.585005, 0.181850, 0.644809, 1.268177, 1.803598, -0.991733, 1.373247, -0.359128, 1.015682, -1.947214, 0.043234, -0.001575, 0.499111, 0.766251, 0.525607, -0.973818, 0.704956, 0.012079, -0.126757, -1.280846, -0.332524, 0.149346, -1.327154, -0.925653, -0.440199, -0.287511, -0.144319, 0.661769, -0.525487, -0.836026, 0.368588, 0.639568, 0.091057, 0.571375, -0.060304, 0.624023, 1.522227, -2.793682, 1.726238, 0.453593, 0.609008, 1.275096, 0.511909, -0.123992, 0.688722, 1.985337, -1.772211, -1.391257, -0.676280, -0.568636, 0.033752, -1.633726, 0.873640, -1.736304, 1.365991, 0.647976, 0.073811, -1.111422, -1.196441, -0.559148, -1.393399, 0.059698, 0.199888, 1.396459, -1.092758, 1.602782, -0.050815, 1.413520, 0.068559, -0.201873, -0.043918, 0.424163, 1.619497, 0.015525, 0.404375, -1.443340, -1.010655, 0.851043, 0.790057, -0.007258, -0.420197, 0.435869, 0.710429, 0.158712, -1.082040, -1.318776, 0.939401, -0.105110, 0.816477, 0.070874, -1.033731, -0.386181, -0.415002, 0.198960, 0.820321, -0.376434, 1.276832, 0.257271, 1.755904, -0.003458, -0.076208, -1.208352, -1.804682, 0.296609, 0.139085, -0.054245, -2.035319, 0.970683, -0.821253, -1.031936, -0.423794, 1.283106, -0.688766, 0.544404, -0.438124, -0.229161, 1.301568, -0.431928, 0.606393, -0.698200, 0.304180, 0.029147, 0.375599, -1.351105, 0.900150, 0.388963, 1.171193, 2.344635, 0.146096, -0.109335, 2.364451, 0.153040, -0.422118, 0.437701, -0.583745, 0.198210, 1.118482, -1.010813, 0.801799, -0.596312, -0.455718, -0.353311, -0.320657, -1.885875, 0.513365, 1.138190, -1.733481, -0.018697, -0.391343, 2.347297, 0.799943, 0.567006, -1.738736, 0.388259, -0.986021, 1.040145, -1.588279, 0.323288, -0.731162, 0.686939, 0.853229, -0.133099, 1.705233, 1.295698, 2.022754, 1.284511, -0.729735, 0.116994, -0.047425, -0.731509, 1.406151, -1.153381, 0.831360, 0.222853, -0.844304, 1.154945, 0.949023, -1.228280, -0.463307, -0.030382, 2.778160, -0.351958, -0.442141, 1.291833, -0.219402, 1.343892, -0.391316, 0.395417, -0.625134, 0.283384, 0.147260, -0.730574, 1.316147, 0.247630, -0.880871, -2.586325, -0.330452, 1.384132, 1.144669, -0.152467, -0.543281, 0.328366, 0.180502, -0.780289, -1.317479, -2.363408, -1.110674, 0.932573, -1.010301, 0.872992, 1.024715, 1.667442, -1.066682, 0.119430, -0.945889, -1.545491, -0.025987, 0.049981, -1.492102, 0.421168, -0.586291, -1.050972, 0.681141, -1.048661, -1.701894, -2.062698, -0.352608, 1.921850, -1.063272, -0.407018, -0.570105, -1.980815, -0.309899, 1.906693, 1.120801, -1.160982, 0.797542, -0.760950, -0.843239, 0.435394, 0.354210, 1.877023, -0.586401, 1.400299, 1.745194, -1.530511, 0.994616, 0.274656, 0.018746, 0.094474, -0.531335, -1.253052, -0.297966, 0.160572, -0.743083, 1.206007, -0.154767, -0.985291, 1.211778, 0.346420, -1.742407, -0.574992, 0.122642, -0.396825, -1.325173, 0.872692, -0.271627, -0.125470, 0.487571, 0.010896, 2.350114, -0.768109, 1.255751, 1.908855, 0.069097, -1.381469, 1.478807, -0.441334, -0.010916, -0.052461, -0.327332, -1.249091, -0.228497, 0.343493, 0.553302, -0.417947, 0.723268, -0.538031, -1.296249, -0.531707, -0.251323, -0.915976, -1.265807, -0.654067, 1.253991, -1.547182, -0.073863, -0.081396, 0.841072, -0.659733, -0.129227, 0.792806, 1.210451, 1.207397, 0.256145, -0.872489, 0.445668, 0.818113, 0.510363, -0.016008, -0.517783, -0.386557, -2.503783, -1.379900, -0.373364, 1.795172, -0.441774, -0.429443, 2.955632, -0.505453, -0.856440, -0.648766, -0.600016, 0.192899, 0.867814, -0.370865, 0.273610, -0.379328, 0.904703, 0.697574, 0.325614, 0.011099, 0.113809, 1.001025, 0.154618, 0.613886, -1.282622, -0.461135, 1.170904, 0.955175, 1.058246, -1.100014, -0.728870, -0.071626, -1.304059, -0.133545, 0.168848, -0.040810, -0.992738, 0.385104, 0.033290, 0.611137, -1.015726, 0.018826, 0.456307, 0.125846, 1.018402, -1.322706, 0.284526, -1.300949, -0.366066, -0.226848, -0.417287, 2.126517, -0.033296, 0.886329, -1.372018, -1.628435, 0.905553, 1.162221, 1.178142, 1.164123, 0.018303, -1.063177, -1.044765, 0.932888, -0.542540, -1.341149, -0.841944, 0.181666, -0.760307, 0.365638, 1.136443, 0.586827, -0.549936, -1.024233, 0.686019, 1.172436, -1.195500, 1.648444, -0.860789, 1.984140, -0.562530, 1.068550, 0.820052, 0.004925, -0.905243, -0.585923, 0.812571, -1.194839, 1.588908, 0.154142, -0.667513, -0.976715, -0.900715, -2.137851, -0.029275, 0.462374, 1.365431, -0.609242, 0.437064, 0.294196, -0.427206, -0.547533, 1.178134, 0.981524, -1.604185, 0.410802, 0.800596, 0.768629, -0.135316, -0.635364, 0.466460, 0.855248, -0.306327, -1.619158, -1.690005, -0.069627, 1.103687, -0.189757, 1.203529, -2.072472, -0.845851, -1.808120, -1.023832, 2.480781, 0.838583, -1.197654, -0.293655, 1.387628, -0.457815, 1.026479, 0.806395, -0.675611, 0.699221, 0.466378, 1.048193, -0.663246, -0.591728, 2.266394, -0.225591, 0.371992, 1.119077, 0.708802, 0.103001, -0.728260, -2.073881, 0.095259, 0.273308, 0.372303, 1.119573, 1.714306, -1.045988, 1.329805, 1.257593, 0.445072, 0.356109, 0.506070, 0.699784, 0.804387, -0.189716, 0.411811, 0.169152, -0.946946, -0.307675, 0.304744, 1.064546, -2.413297, 1.231530, -0.968764, 0.137263, -1.599090, 0.699505, 0.132318, -0.857124, 1.988155, 0.288182, 1.988706, -0.513385, -0.336860, 0.521630, -1.514936, -0.784927, 0.569918, 0.199542, -1.338082, 0.021224, 0.935326, -0.613849, 1.326967, -1.979565, -2.126448, -1.154053, -0.660659, 0.794577, 0.550259, -0.106965, 0.614137, 0.729337, -1.040217, -0.038715, -0.587294, -0.553673, -0.185759, 1.294328, -0.854042, -0.634073, -0.554527, -0.449931, 1.073679, -0.882607, -1.214780, 0.338811, 0.344038, 0.636910, -0.157353, -1.846560, -0.260070, 0.114208, 1.377726, -1.232429, 1.353148, 1.247317, -1.171763, 0.054241, 0.816722, 0.747489, -1.178158, 0.973666, -0.065321, 0.842525, 2.547061, -0.601756, 0.995048, 1.498048, 0.021633, -0.876766, -0.537411, 1.289243, -0.360377, -0.610149, 0.565972, 1.627097, 0.554024, -1.445850, 0.863185, 1.275448, -0.031643, -0.219922, 0.298120, 0.455954, -0.224557, -0.383242, -0.086660, -0.356925, -0.365605, -1.893211, 2.386007, -0.990333, -0.617024, 2.851954, 0.865904, -0.261912, 0.119204, -1.194053, -0.013219, -0.939413, -0.036556, 1.424709, -1.436188, -0.519601, -2.468373, 0.357839, -1.604210, -1.910444, 1.040246, -0.493924, -0.792191, -1.733001, -0.802755, -1.451472, 0.665547, -0.271514, -0.562422, -2.437899, -0.257995, 0.758206, -0.317461, -2.512169, -0.236062, 0.766459, -0.405509, 1.140516, -0.358089, -1.154601, 1.077104, 0.044310, -0.386322, -1.075785, 1.593582, -1.342062, -1.979064, 1.048067, 0.285462, -0.158958, -1.277652, 1.032558, -0.597342, 0.834443, 0.660360, -0.224562, 0.346085, -0.729058, -0.646485, 0.252244, 0.198240, 0.561815, -1.066799, -1.088456, 1.454345, 0.844808, 0.948891, -1.046167, -1.988542, 0.789948, -1.339330, 0.003825, -1.983165, -0.435328, -1.548316, 0.598547, -0.575229, 0.439156, -0.470693, 0.681816, -0.781323, -0.322944, 0.550436, -0.858773, 2.913545, -1.041819, 0.627729, 1.451136, 0.708537, -0.644942, 0.527231, -1.097292, -0.143870, 1.190734, -1.592114}, - { 1.121196, 0.913049, 0.224727, 0.295493, 0.521386, 0.013404, -1.444977, 0.159320, -0.538241, -1.485190, -0.168179, -0.148022, 0.244442, -1.098847, 0.927612, -0.459868, 0.558132, 0.112635, -1.883764, 1.447916, -0.790459, 0.438495, -0.197598, -1.250908, -0.909022, 0.565177, 0.818447, -0.727536, 2.383914, 1.743934, 1.012787, -0.830486, 0.594124, -0.914230, 0.546148, 0.739813, -0.101400, -0.128409, 0.030703, 0.949701, -0.918097, -0.533300, 0.909383, -1.407817, 1.170536, 0.997454, -2.253640, -1.772435, 0.283779, -1.077617, -0.708884, -0.995295, -2.091091, -1.598175, -0.180059, 0.717547, -1.494035, 0.676262, 0.649709, -1.000375, 0.808527, 0.317382, 1.849452, 1.449615, -1.522745, -1.345543, 0.332440, 2.538022, -0.994736, -0.157677, 1.415439, 0.486502, 0.660436, 2.549561, 1.040580, 1.802884, -0.661976, 1.653549, 0.029328, -0.623641, 0.156057, 0.235251, -0.479518, 0.606433, -0.229856, 0.530086, -0.551689, -1.561033, -1.039527, 1.227786, 1.003659, 0.187098, 0.336289, 3.351291, 0.219968, 1.023472, -0.140257, -0.999061, -0.859904, 0.640717, -1.186790, -1.451021, 0.236924, -0.158936, 0.592518, -0.138264, 0.017822, 0.283043, 1.372033, -0.993840, 3.012255, 0.412876, 1.245675, -0.586758, -0.014220, 0.820505, -0.325020, -0.743616, 1.222894, -0.168395, -1.063042, -0.424458, -1.017871, -0.653105, -0.826468, 0.989025, -0.490105, -0.641299, -0.620540, -0.584256, 0.155319, 0.282093, 1.107112, -0.688719, -0.112396, 0.429191, 0.629959, -0.674649, 0.299664, 1.482204, 0.382797, -0.550012, -0.356439, -0.433218, -0.572327, 0.955976, -0.656451, -0.643470, -0.809981, 0.870911, 0.150161, -0.762582, 0.940265, 0.792850, -0.104737, -0.003069, -0.501074, -1.032639, -0.065221, 0.833108, 1.758100, 0.212069, -1.146743, -0.345180, 0.862865, 1.761196, -0.158426, 1.628370, -1.251088, -0.404281, 2.564279, -1.290958, 0.095266, 0.680042, -0.599946, 0.690529, -2.186131, -0.156809, -0.603077, 0.915099, 1.988212, 0.410072, 1.027901, 0.980898, -1.174951, -0.459079, 0.020213, -0.427800, 0.862487, 0.503956, -1.553622, 0.437637, -2.044690, -0.425065, -1.992793, 0.588892, 0.340164, -1.734353, -0.681639, -0.200937, 0.175243, 0.518253, -0.785994, -1.568015, 0.050532, 0.093602, 0.912494, 0.172007, 1.979593, -0.115701, 0.520212, 0.015835, 2.218622, -0.617200, -0.387751, -0.461965, 0.008631, -1.208684, 0.299489, 2.273443, -0.394587, -1.143619, -1.214116, -0.314194, 2.746845, -1.313488, -0.935482, 1.086948, -0.973555, -0.089520, -0.509494, -1.439529, 0.951941, 1.350341, 0.364112, -0.194887, 0.663536, 0.394081, 0.736745, 0.466376, -1.445491, -0.877419, 0.626182, 0.112890, -0.430062, 1.319254, 1.584152, 1.635985, 0.028395, 0.379133, -0.858582, -0.460376, -1.470923, 0.957338, 0.358216, 1.388771, 0.559597, 0.693970, -1.453407, -1.997506, 0.123726, 0.103422, 0.831810, -1.821431, -0.334391, 0.286385, 1.075966, 0.714123, 0.182323, 0.695506, 0.659939, 1.157310, 1.543703, 1.129990, 0.756094, 0.782107, -0.206242, -1.264899, 0.344629, 0.127976, -1.050204, 0.149391, -0.342867, -1.167233, -0.896938, 1.079780, 0.469922, -0.945153, 0.628462, 1.616045, -0.503894, -0.131417, -1.007243, 0.998697, -1.284925, 0.315036, 1.131767, -0.598475, -0.763755, 0.069760, 0.797599, 0.708562, -1.249242, 0.818001, 0.128692, 0.247091, -0.161016, 0.686158, 0.323925, -1.270214, -0.664460, 0.408240, 0.935232, 0.352592, 0.463682, 1.127235, -0.255857, 0.566028, 0.568350, -0.035707, -0.402232, 0.640763, -1.002903, -0.565941, -0.150687, -1.431764, 1.168222, -0.509102, -0.312772, -0.195573, 0.323634, -0.654690, 0.389272, 0.155857, -1.737193, 1.244348, -0.736734, -0.944448, -1.500382, -0.393093, -0.541649, 1.129322, 0.293764, -0.162128, -2.096403, 0.673840, 1.430272, 0.925517, 0.604122, 0.389791, 0.382815, 0.018361, 0.223297, 0.364330, -2.222618, -0.572755, -0.179977, 0.623336, -0.243666, -1.402885, -1.614455, -0.254631, -1.538222, 0.708916, 1.932440, -0.730311, 1.712572, 1.178687, -0.018815, -1.741824, -1.379737, -1.002322, 0.611046, -0.895245, -0.862830, 0.007659, -1.065627, -0.128319, -0.061685, -0.626460, 0.664611, -1.477729, -1.893656, 0.902734, -0.953751, 1.232308, 0.275728, 1.545748, 1.189662, 0.226549, -0.770528, -0.281315, 1.421401, -1.417377, 0.337632, 0.011348, -0.614507, 1.882470, -0.546018, 0.398534, 1.540267, 1.324163, 0.059688, -1.873617, -0.155979, 0.521821, -0.608665, 0.236033, 0.087128, 0.576215, 0.595842, 1.078415, 0.734910, 0.507454, -0.214250, -1.077074, 0.153826, -1.014509, 0.692207, 1.311470, 0.697180, -0.249959, 0.028305, 0.094977, 0.131384, 0.708443, -0.992103, 1.153657, -0.529387, -0.204991, -0.135109, 1.270139, 1.937257, 0.402325, 0.561168, 0.365565, -0.110630, -1.036467, 0.589745, 0.323261, -1.579593, -0.115423, -0.175995, 0.427877, 0.457281, -0.053168, 1.933620, -0.318937, 2.805857, -0.503121, -1.276002, -0.608733, -0.038350, -0.532141, 0.288323, -1.279881, 0.454279, 0.885709, 0.384374, -0.707655, -0.115121, 0.250070, 0.466229, -2.334666, 0.416238, 0.410952, 0.817884, 0.311380, 0.021374, 0.594448, 0.362567, -0.593646, -0.647269, -1.014824, -0.853950, -1.033395, -0.578113, -1.763574, 1.064649, -1.042141, 0.721200, 0.820323, 0.504960, 1.753738, 1.471586, 0.146380, -1.068101, -1.173753, -1.038075, -0.010970, -0.544359, -0.290128, 0.870345, -1.061759, 0.377274, 0.558368, 0.006421, -0.294461, 1.165415, -0.118640, 0.500286, -0.227881, 0.235906, -0.260223, 0.879910, -0.376681, 0.125253, -0.960209, 0.507490, -0.589756, 0.961868, -0.696753, -0.409597, 0.130121, -0.112333, -0.366514, 0.255455, 0.615590, -0.630655, -1.317281, 1.046315, -0.317096, 1.438108, -0.625735, -2.762111, 1.120267, -0.811210, -0.570747, -0.487522, -1.156121, 1.547127, -0.006320, -1.003309, -1.464725, 1.315346, -0.241042, -0.189228, 0.509418, -0.417807, -0.274713, 1.553774, -0.223212, -0.460495, -1.340979, 1.415028, -0.776364, -0.171084, 1.042866, 0.356066, -1.366609, -0.169600, -0.417075, 1.463557, 0.465179, -0.250811, 1.173648, 0.550085, -0.641996, -0.360981, 0.723621, -0.026008, -0.795437, 0.990667, -0.364679, -1.277009, 1.364988, -1.587727, 1.266973, -0.255348, 0.152481, -0.959966, 0.027337, -0.051159, 0.871901, 1.549524, 0.153019, 2.086485, -1.313331, -0.365556, 1.254617, -0.000788, -1.098006, 0.118956, -0.542988, -1.173139, 2.228840, 0.533761, -1.155824, 0.291308, -0.248067, 1.389960, -0.651584, -0.714495, 0.006152, -1.216552, 0.929467, -0.218075, 0.477205, 0.115345, 1.178099, 0.717031, -0.063874, -0.578262, -0.884950, 0.166921, 1.020278, -0.659600, -0.720926, -0.031397, -0.561351, 1.540916, -0.985656, -1.143263, -1.552798, 0.679999, 0.892846, -0.431267, -0.207879, -0.306127, -0.763220, 1.235325, 0.382557, -2.203262, -2.477513, 0.835286, 1.464192, -0.301626, -0.043183, -1.526922, 0.212803, -0.674223, -1.200185, 1.150307, -0.250118, 0.428274, -1.722597, 0.216660, 0.944810, -2.706496, 1.567682, -0.263921, 0.941895, -0.856352, 0.534401, -1.927845, -1.365751, 1.465001, -0.898772, -0.333476, -2.192845, 0.673378, -0.428384, -0.356294, -0.232795, 0.580580, -0.021559, -1.838800, 1.250482, -0.393340, -1.522227, -0.703831, 1.136576, 0.588878, -1.167015, -2.628160, -1.430623, 1.751101, -0.274433, 1.493512, -1.183533, 1.045827, 0.464424, -1.009340, 0.064005, 0.859701, 2.187041, 0.357460, -1.603826, -1.619874, 0.071732, 1.234178, -1.068889, 1.671384, 0.232646, -0.462272, 1.158782, -0.009762, -1.572829, -0.027571, 1.139675, -0.552253, -0.777062, 0.242732, -0.062879, 0.651997, -1.719481, 1.141301, -1.648873, 2.165616, -1.075853, 0.266777, 0.285473, 0.486501, 0.459955, -0.643081, -1.165501, 0.578168, -1.086284, -1.348497, 0.431840, -0.103234, -0.164866, 0.219275, -0.324615, -1.534822, 1.432377, -0.022663, -0.985556, -0.272494, 0.217223, 0.451287, -0.674441, 0.459917, 0.813772, -0.925176, -0.738707, 0.057353, 0.151007, 1.341390, -0.541923, -0.045459, 0.552862, 0.774107, 1.100468, 0.537163, 0.171553, 0.703336, -2.126280, 0.838574, -0.841920, -0.625176, 1.784743, -2.616980, -0.832500, -1.508647, 0.675482, 0.829694, -0.072344, -0.743607, -0.065532, 0.587392, -0.478479, -1.095798, 2.689657, -0.148836, 1.262029, -0.568357, -1.287765, 0.629114, 0.746980, -0.025607, -0.313764, -1.055223, 0.328419, 0.864856, 1.254268, 0.689438, -0.091569, 0.891786, -0.424388, -1.088019, 0.636457, 1.027289, 0.489799, -0.181714, -0.278640, -0.768916, -0.199273, 0.142676, 0.706873, -1.396263, 1.488777, 0.266760, -2.435653, -0.369603, -1.484147, 1.643054, 1.062454, 0.117567, 2.345424, -0.166064, -0.527967, 0.236796, 0.778643, -0.681712, -0.702613, -0.148619, -2.182574, -0.087683, -3.125081, -0.452947, -2.737507, 0.721329, -0.237513, 1.894558, -0.454753, -1.437120, -0.027743, 0.845634, 1.426627, -1.124206, -0.698032, -0.580334, -0.413842, 0.015509, 0.833079, 0.014015, -0.525016, 0.186093, 0.007320, -1.956010, 0.724036, 0.709617, -1.766207, 0.057603, -1.738762, 0.031882, 0.793290, 0.347223, 0.169624, -0.017426, -1.647903, 1.867884, -0.390846, -0.571089, -0.183970, -1.394723, -1.360242, -1.316965, -0.804665, 0.135807, -0.813605, 0.985454, -0.534191, 1.579096, -1.093068, 0.415426, 0.341138, 2.885369, 1.025118, 1.125286, 1.630957, 0.104799, 0.083962, -1.529740, 0.720408, 1.222590, -0.182030, 1.592610, 0.574730, -1.588404, 1.019717, -0.581530, -0.243570, 0.112371, -0.190873, 0.346026, -1.322094, -0.442979, -0.679692, -0.367964, 1.120293, -1.440130, 0.416453, 0.098071, -0.671729, 0.873683, 0.773861, 0.459882, 3.254330, -0.136546, 0.330528, -0.324275, -0.560139, -1.012834, -0.017002, 0.711932, 0.474547, 1.243437, -0.434295, -0.149413, 0.927523, -0.931849, -0.427743, 0.449530, 0.281893, -0.231803, 0.983728, -0.618791, 1.330002, 0.531814, -1.305593, 0.485143, -0.096633, -0.216396, -0.327995, -0.067355, 0.364753, -1.815405, -0.067767, 0.348109, -1.173978, -0.944664, 1.124628, 1.485579, 0.501180, 1.690340, -0.062907, -1.477889, 1.277349, 0.812615, 0.102166, -0.834579, -0.112053, 0.957952, -0.544490, -1.690204, 1.434574, 0.065148, 0.239336, 1.002741, 0.051643, 0.283180, 0.210426, -0.320920, -1.146500, -0.368898, -1.581585, -2.168375, -1.226460, -0.988694, 1.147270, -0.384241, 1.554776, -0.625619, 0.234487, -0.799033, 0.142860, 0.605788, 1.203784, -0.542459, 0.853763, -0.434085, -0.582761, 0.627395, -0.237141, -0.211840, -0.319337, -1.659089, -0.575226, -0.924660, -1.193922, -1.265261, -2.004772, -0.297467, 1.494338, -0.557726, -0.013057, 0.641641, -0.366018, -0.208405, 1.699302, -2.425183, -0.657281, -1.137447, 0.225555, -0.924192, 0.770656, 1.989124, 2.022899, -0.755642, 0.871839, 0.941677, 0.095472, 1.740476, 0.808622, -0.331252, 0.190235, -0.773856, -0.727357, -0.330519, 2.319225, -0.496547, 1.347834, 0.222025, 0.672701, -0.586946, -0.113868, 0.794123, -0.100264, -0.733795, -0.505692, -0.430446, 0.424789, -0.462122, 0.988135, 0.593604, 1.969401, -0.448551, 0.203132, -1.155378, -1.473591, -0.955992, -0.534818, -1.308230, -0.331111, -1.875286, 0.213646, 1.251128, -0.238851, -0.592606, 0.224330, -0.508295, -0.705950, -0.920873, 0.832588, -1.870333, 0.128536, -0.525655, -1.838481, 0.537175, 1.144705, 0.958069, 0.227811, -1.503627, 0.216114, -0.165320, 1.426539, -0.275070, -0.148870, 0.728770, 1.084694, -1.115191, -1.007776, 1.419485, 2.484231, -2.552051, -0.581333, -0.476718, -0.735419, -0.378598, -1.437784, 0.001498, -0.015774, 0.067744, 0.522280, -0.943855, -0.270356, -0.634315, -0.644252, -0.944481, 0.957509, -0.173028, 0.080804, 0.327430, -0.190548, 0.623995, -2.375506, 0.446369, 0.599216, 1.092471, -0.357549, -0.995762, -0.008744, 0.644243, -0.296220, 0.066535, -0.629578, -0.270029, 1.668464, 0.370487, -0.600051, -0.387333, -2.213958, 0.585949, 1.118457, -0.341179, 0.331691, -1.987882, 1.183606, 0.625173, -0.354180, 1.063886, -0.394724, -0.146816, -0.647208, -0.921980, -1.202744, 1.706660, 0.514368, 1.196061, -0.710655, -0.093976, 1.085945, -0.001826, -0.737892, -0.724666, 0.351458, 1.401097, -0.821723, -1.673391, -0.090268, 0.977719, 0.072612, 0.197050, 0.783137, -0.821823, -1.405758, -1.092715, 0.181622, 0.240111, -0.778875, 1.103112, -0.171403, 0.965584, -0.194267, -0.832977, 0.797554, -0.186782, -1.302590, 1.428996, -0.156897, 1.887517, -1.068628, 0.142003, -0.377388, -0.848400, 0.736850, -0.172556, -0.020610, -0.499073, -1.266469, 0.476973, -0.807829, -0.077064, -0.288479, -1.075996, -0.840650, -1.149184, 0.645097, 0.885382, 2.280417, -0.922061, 1.538205, 0.939168, 1.020579, -0.162697, 0.395177, 1.973808, 1.241222, 0.777020, 1.071541, -2.087879, -0.102508, -0.620444, -0.937411, 1.200385, -0.534801, -0.127111, -1.342898, 0.180041, 0.803535, -1.111153, -1.952474, 0.756330, 1.090823, -0.039904, 0.890134, -0.479378, 0.583535, -1.809236, -1.051627, -0.516577, -1.105729, -0.143779, -0.206463, -1.377821, -1.766262, -0.716406, 2.225419, -0.193843, -0.791264, 1.082064, -0.970461, -2.031578, -1.704886, -0.403736, -0.199443, -0.057310, 1.697849, -0.228341, 1.296910, -0.122604, -0.842765, -1.598740, 0.411115, -1.765546, -0.223955, -0.538160, -0.092866, 0.360087, -0.344572, -0.604889, -0.436286, -0.479376, -1.074208, -0.544818, -0.205681, 0.321691, 0.605522, -0.405837, 1.585936, -1.380939, 0.114205, -1.241388, -2.392691, -0.613777, -0.577870, 0.102384, 1.017535, -0.272301, -1.872820, 0.285359, 1.045030, -1.215383, 0.403031, -0.033932, -0.177981, 0.355023, -1.753937, 0.879588, 0.242552, -1.513571, -0.695710, 1.550073, -1.467657, -0.512426, 0.736484, 0.744252, 0.342947, -0.830607, -0.441627, -0.358323, -3.871378, 0.507113, 0.653945, 1.018359, 0.323332, 1.478385, -0.526023, 1.571037, 0.523595, 0.127728, 1.916620, 1.313062, 0.104269, -1.557854, -1.321794, -0.104539, -0.784794, -1.241153, 0.034678, 0.144311, 0.466746, 0.491077, -0.217725, 1.016971, -0.547381, -0.319909, -0.965926, 1.756093, -0.842369, 0.100637, -0.395082, -1.182025, -0.435817, -0.381286, -0.607864, 0.370338, 0.479601, 1.305272, 1.003883, -1.356202, 2.013647, -0.921405, 0.320665, -2.040347, -0.387052, 0.145215, 0.068170, -2.016703, 0.413951, 0.796867, 0.968580, -0.084631, 1.169034, 0.409503, 0.808413, -1.164042, 1.589634, -0.257090, -1.002726, -0.908827, -0.546281, -0.281153, -0.784852, 0.042096, -1.331007, 1.825740, 0.415771, 0.207721, -0.493031, 0.438583, -0.365686, -0.057641, -1.332847, -1.023765, -0.596834, -0.441481, -0.454220, -1.816064, 1.215382, -0.423417, 0.391148, 0.647623, -0.046397, 0.411057, 1.191314, 0.096672, 0.457360, -1.797594, -0.050126, 1.915572, -0.622539, 2.071489, 0.528071, 1.086352, 0.393627, 1.396771, 1.680294, -0.854964, 0.220967, -0.529542, 1.099047, 0.446466, -0.468418, 0.880296, 0.535349, 0.770833, 1.068697, 1.772080, -0.193348, 1.597201, -0.304640, -0.810549, 0.998237, 0.180152, 1.509474, 0.124902, 0.323070, -0.335875, -2.889107, -0.880951, 0.587018, 0.330587, -0.259975, -0.395515, -0.652667, -0.511845, 0.593174, -0.038552, -0.449708, -0.918939, -1.599508, 0.431306, 0.264760, -1.311859, -0.709499, 0.715552, -1.396528, -0.925184, 1.163747, -1.176519, 1.415728, 0.890724, 0.346257, 1.222724, 0.854781, -2.068403, 1.246971, -0.552407, 0.715622, -1.149685, -0.619535, 0.068122, 0.169326, -0.570314, -0.419155, 1.684278, 1.843248, -1.593743, -0.024926, -0.408404, -1.909711, 0.649675, 0.120517, -1.104687, -1.918444, -0.210967, 0.003327, -1.244751, 0.668577, 0.828062, -0.354505, -2.118447, 0.604459, 1.321517, 1.294158, -2.776321, 0.127962, 1.041373, 0.159998, 1.101412, -1.309190, 0.342368, -1.025026, -0.664232, -0.890909, -0.215892, 1.790076, -0.174170, -0.288365, 0.136368, 1.120362, -0.125018, -0.949134, -0.162772, -0.021111, -1.709015, -1.476247, 1.561611, 1.748154, -1.321914, 0.044481, 0.725504, -1.275527, -0.259912, 0.410877, 0.215258, 0.339934, -1.181545, 0.439285, 1.376379, 0.261230, 0.675839, 1.388046, -0.803993, 1.465973, 0.967451, 0.189602, 0.401106, -0.522188, 2.158068, -0.892258, 0.164156, 0.812862, -0.495200, 2.831418, -0.738756, 0.697627, 0.728019, 0.252619, -0.458619, 0.946898, -0.250727, 0.508553, -2.280144, -0.640528, 0.859146, 0.941879, 2.335837, 0.150641, 0.800070, -0.630671, -0.802366, 1.043509, 1.023772, -1.111745, -0.878493, -1.027083, 0.403818, 0.104096, 1.506201, 0.772464, -0.458959, -0.075498, 0.187151, 0.935988, 0.404326, 0.793238, 0.241246, 0.065167, 1.197851, 0.871597, 0.140559, -0.028275, -0.147984, 1.930768, 0.188451, -0.258520, 1.724159, -1.088689, -0.431265, -0.457407, -1.678229, 1.480410, 0.967478, -0.319689, -0.115958, 0.013029, -0.977171, 0.901540, -0.898880, -0.657762, 0.542148, -0.471107, 0.134592, 0.627714, -0.124650, 0.318570, -1.487050, -0.110094, 0.075294, 1.244708, 0.346143, 0.419413, 0.111041, -0.524975, 0.472528, -1.106562, 0.301021, 0.644703, -1.910807, -0.058555, -0.656233, -1.272565, -0.544633, 0.185445, 2.272938, -0.554540, -0.810567, -0.161963, -0.959781, -2.409165, 0.229146, -0.635562, 1.388536, -0.327056, -0.927584, 0.357517, -1.630899, -1.698964, -0.032944, -0.912237, -0.800460, 0.393215, 0.491380, 2.598691, -0.512136, -1.022815, -0.253954, -0.050545, 0.583673, 0.347255, 1.358017, -0.281521, -0.029950, 0.589334, 1.032821, -2.113466, 1.129863, 0.853139, 1.352730, 0.495366, -0.250603, 0.084159, 1.366243, 0.398776, -1.622603, -1.255666, 0.797367, 1.767597, -0.973568, -1.554018, 0.240386, 2.094720, 1.256655, -0.580374, 0.243386, 0.350185, 0.186770, 1.524437, -1.602239, -0.537658, -1.856081, 1.056017, 0.202074, -0.441021, -0.992360, -1.330661, -0.326914, 1.075425, 0.829446, -0.851153, 1.071801, -0.036078, -1.020283, -1.052431, 0.413927, -0.854294, 0.815007, 0.235630, -0.755187, -0.014926, -0.150027, -0.326607, -1.008763, 0.473571, -0.611267, -0.500135, -0.392581, -0.037473, 0.959875, -0.175590, 0.297357, -0.223526, 0.210956, -0.901041, -0.222673, 0.820879, 1.307972, 1.193798, -1.364767, -0.071308, -2.201272, 1.543022, -0.378431, -0.325057, 0.311281, 0.501796, -0.546887, -0.600176, 0.808599, -0.545665, 0.332415, -0.252502, 0.357523, -0.619661, -1.973540, -0.903748, -0.759105, -0.678511, 1.020405, -0.579149, 1.277483, -1.251127, 0.596407, -2.665360, 0.566327, -0.409434, -0.206457, 0.544451, -0.603105, 0.322316, -1.617692, 1.284044, -0.187186, -0.154841, -0.571160, 2.100584, 1.034362, 0.322839, 0.459475, 1.444326, 0.446683, -0.772395, 0.570541, 0.799988, 0.422327, 0.685075, -0.017632, 0.290018, 0.607797, 1.071577, 1.348947, -1.111220, -0.587320, -0.236908, -0.827958, 0.113629, 0.396391, -1.065581, 1.094684, -1.842498, -0.052953, -0.271341, -0.962368, 0.267612, -0.557899, -0.394767, -2.320183, -1.192395, -0.049846, 0.936756, 0.785959, 1.123509, 0.991764, 1.186557, 0.386606, -0.303021, 0.324662, -0.996602, 0.489292, -1.780136, 1.020763, 0.887868, -0.415910, 1.380229, 0.740741, 1.112486, -0.545787, -0.861682, 0.612006, -0.428986, -1.192975, 0.930273, 0.888733, -0.019847, 1.590569, 0.234856, 0.388752, 1.055154, 0.979622, 1.329986, -0.605895, 0.307087, 0.526777, 0.932971, -0.798612, -0.326783, -0.542816, -0.934519, 0.483030, 1.370041, -1.397341, 0.471375, -1.152030, 0.303307, 0.204606, 0.182150, -0.207422, -2.227689, 1.397467, 0.191249, 0.560754, -0.588613, -0.477204, -1.066701, -0.915967, -1.317522, -0.898317, 0.244496, -0.459551, -0.830520, -0.515574, 0.357422, 0.711829, -0.652665, -0.326407, -0.080041, 0.019042, -0.351068, -0.834212, 0.720049, 0.625061, 0.265925, 0.447552, 0.053882, 0.462740, 1.807332, 0.473469, 0.685337, -1.137383, -1.751517, 0.568099, 0.673718, 1.417047, 0.456236, 0.072131, -0.053378, 0.193144, -1.255609, -0.466870, 0.975661, -0.084823, 1.106010, 1.277784, 0.039031, 0.952513, -0.398797, 0.706862, 0.946269, -0.765894, 0.679468, -0.291297, 0.060981, -0.976066, -0.996424, 0.286266, 0.375961, -0.863181, 1.607539, -0.976106, 0.208023, -0.946768, -1.445206, -0.117064, 0.347732, -0.374761, -0.005753, -0.795332, 0.368122, 2.128626, -0.755834, -0.366233, 2.082525, 2.119452, -0.025033, -0.323971, 0.023935, -0.274736, 1.380141, -0.327271, 2.001141, -0.746428, 0.390822, -0.846911, -0.746021, -1.313140, 2.098876, 0.533132, -0.416948, 0.457684, -1.240871, 0.144019, 1.280403, 0.270663, 0.560360, 1.519387, -0.966378, 0.616029, 0.291146, -0.990966, 0.860259, 0.177024, -0.412966, 1.339821, 0.144038, -0.280354, 1.848864, -0.449787, -0.418596, 0.415726, -0.417262, -0.641884, -0.457003, 1.738806, -0.255362, 1.041837, -0.461112, 0.869481, 0.523599, -0.614471, 0.319261, 2.547606, 0.776768, -0.384575, 0.448889, 0.998915, 1.090934, 0.351927, -0.932050, 0.068386, 1.473755, -0.105674, -1.303833, -0.601616, 0.771729, 0.443506, 0.576029, 0.034585, -0.164469, 0.646943, -1.095639, -2.160556, -0.997794, -0.441792, -0.421310, 0.294204, 0.416402, 1.822842, 0.729831, 1.104272, 1.114421, 0.135066, -1.836820, -0.647657, -0.318145, -0.986342, -0.680491, 0.960227, 1.050510, 0.394359, 0.372653, -1.029183, -0.698650, 0.935148, 0.872294, 0.404194, 1.323448, -0.704365, 0.126152, -0.300734, 0.375414, -1.089450, 0.504999, -1.135533, -1.050475, -2.429714, -0.041466, 1.565657, 1.631003, -0.127943, 0.045148, -0.675251, -0.350537, -0.003374, -0.003019, 0.725005, -0.925911, -0.534507, -0.665370, 1.739430, -0.016418, 1.200501, 0.261086, -2.512910, 1.110976, -0.912571, 1.024024, -1.158199, -0.185635, -0.161165, -0.241746, 0.998776, 2.398459, -1.300536, 1.573944, 0.396408, -0.643391, -1.421031, 1.676320, 1.247417, 0.435394, -1.159584, 0.458776, -1.376695, 0.081189, 0.827625, -0.257758, 0.572544, 0.247319, 1.585524, 0.557711, -0.982113, 0.355642, -0.072212, 2.208763, 0.547105, -1.445031, -1.308172, 0.634618, -0.132058, -1.413948, -0.781083, 0.182559, 0.199034, -0.809940, 0.008270, -2.018517, 0.220590, 0.729468, 1.008314, -0.015779, 0.276231, -0.818019, 0.910626, -1.002303, 0.108709, 0.799210, 0.278520, 0.579953, 0.410883, -1.446025, -0.377541, 2.220417, 0.912346, 0.376209, -0.648969, 0.427449, 0.667670, -0.839820, 1.720410, -0.091358, 0.636570, -0.327864, -0.004057, 0.129085, -0.741567, 0.239342, -0.898024, -1.428915, -0.258348, -0.474190, -0.138525, 0.591183, -2.566592, 1.252947, 1.226900, 0.379667, -0.490387, -0.340110, 0.891402, 0.339250, -0.537354, -0.059539, 1.083446, 0.287935, -0.226294, -0.227145, 0.740013, -1.662723, 0.215506, -0.094727, 0.422175, -0.219009, -1.579347, 0.044314, -1.530381, 1.127774, 0.913002, -0.371390, -0.312615, -0.867662, 0.331312, -1.062837, -0.137691, -0.801380, -0.930415, 1.222510, 1.729087, -0.328123, -0.943253, 0.487549, 0.836397, -0.903945, -0.278503, 0.867683, -1.602632, -2.514505, -0.318580, -0.530164, -1.543670, 2.227553, 0.721774, -1.436769, 0.072219, -1.892994, 0.099361, -2.172647, 0.065373, 0.981931, 0.740744, -0.231815, 1.376774, -0.295062, -0.602543, -1.515826, -0.078981, -0.502477, 0.032080, 0.726856, -1.734185, 1.108798, 0.773086, -0.477487, 0.099998, 0.173851, 1.127636, 0.890199, -0.181943, -1.216389, -1.604799, -0.558497, -0.232263, 0.324307, -1.855499, 0.038724, 2.097495, 2.074189, -0.000038, -0.781081, -0.269145, -0.649710, 1.400672, 0.974836, -0.627940, 0.482520, -0.115141, 2.671334, 0.582280, -0.033157, 2.010197, -0.014143, -1.245355, 1.448615, -0.788463, 1.039624, -0.746549, -1.998192, -1.038733, -0.718035, 0.506349, -0.665163, 0.447643, -0.419258, 0.202551, 0.299544, -0.982287, -0.735532, -0.263571, -0.272941, -0.894240, 1.746835, 1.557758, -0.423254, 0.802247, 0.852854, 1.019567, 1.020447, -0.043548, -0.200504, 1.084061, 1.114289, 1.729770, -1.267496, 1.336323, 0.449409, -0.158680, 0.228439, 0.928360, 1.304563, 1.777020, -1.223731, -0.746391, -0.561204, -0.328748, -0.940450, 0.585843, 0.076186, 0.914404, 1.714862, 0.827422, 0.010977, -1.976914, -0.841875, -0.547719, 0.346015, -0.317527, 0.282425, 0.325940, 0.197143, -0.874265, 1.766502, -0.068851, -0.279538, -0.445320, 1.018064, -1.249788, 0.906900, 0.222624, -0.743957, 0.170202, -0.471211, -0.652519, -0.525878, -1.117258, -0.174811, 0.536083, -0.564021, 0.097670, 0.683203, -0.504684, 0.518277, 0.084049, 0.469236, 0.401045, -0.558915, 0.360808, 0.587490, 0.464571, 0.219484, -0.588746, 0.563576, 0.088448, -0.464884, 0.053972, -0.444764, -0.465701, -1.257421, 0.371674, 1.463238, -1.102397, 0.614920, 0.545926, 0.766448, -0.033662, -0.474909, -0.402091, -1.182641, -0.715992, 1.218357, 1.090960, 0.248299, 0.850661, 1.543618, -0.422131, 1.259312, 0.478272, -0.280197, -0.455208, 0.799620, 1.217559, -0.063316, 0.204669, -0.339663, -1.743606, -0.514466, -0.691603, 0.685485, 1.251020, 0.298907, -0.343094, 0.721730, -0.033435, 0.031564, -1.388411, -0.413764, -0.440570, -0.210302, -1.108279, -1.140198, 0.843116, -0.316969, 0.639762, 0.546947, -0.915686, 0.049832, 0.535957, 0.217332, -0.181310, 0.330865, 0.016305, -0.906886, 0.106428, 0.126061, -0.631156, 1.886933, -0.721478, -1.385167, 0.220763, -0.683038, -1.242332, 0.878392, -1.836967, -0.723121, -1.158405, 1.410812, -0.280422, 1.664641, 0.508401, -2.083087, 2.110348, -0.483866, -1.294663, -1.021694, 1.658059, 1.551825, 0.721076, 0.518781, 0.201690, 0.427741, 1.488444, 1.802702, 1.077187, -1.208578, -0.710557, -0.084447, 0.060788, -0.686247, -0.208280, 0.560519, 0.137611, -0.092126, 0.148269, 0.117665, 1.653354, -1.197359, 0.269217, 0.851610, 0.779215, 0.158170, -0.432385, -0.761417, 1.630607, -0.760248, -1.420878, -0.028296, -0.213760, 0.070403, 1.322678, 1.730723, -0.613411, 0.471467, -0.454382, -2.905979, -0.854905, 0.415078, -0.340441, -0.287277, 1.582551, -0.749597, 1.181264, 0.097658, -0.871213, -0.887261, 0.038894, 0.715083, 1.293604, 0.992230, 0.417731, 0.220043, 0.580737, 0.761964, 0.207827, 0.716731, -0.586437, -1.440198, 0.643752, 0.251032, 0.641432, -1.851960, -0.088980, 0.902666, -0.730558, -0.601154, 0.693894, 0.155612, -1.090340, 0.057653, 0.813305, -1.193078, 0.564304, 1.042082, -1.233323, -0.012854, 0.119368, -0.529564, 0.966824, -0.354905, 0.524664, 0.589277, -0.440730, 0.186336, -0.308477, -0.589551, -0.534371, -0.802936, 0.319862, 0.729057, 1.037274, -1.271740, -2.216436, -1.079517, -1.158742, 0.027625, -1.004502, 0.656648, 3.252840, -2.368997, 1.352630, -0.453094, -0.074521, 0.536188, 1.298509, -1.091323, -0.191035, 0.782099, -1.392398, -2.005632, -1.707445, 0.267265, -0.296669, 0.147611, 0.499997, -0.445238, -0.736553, 1.209765, -0.614404, -1.053931, 1.720207, -0.188654, 2.502204, -2.670313, 1.438627, -0.029130, -0.219989, 0.060401, 0.153533, 0.275603, 0.703980, -1.933455, 1.202498, 1.056154, 1.090506, 0.636538, -1.883762, 0.095589, 0.993954, 1.524746, -1.017967, 1.727081, -1.491319, 0.373989, 1.356493, -0.900392, -0.437595, -0.944447, 0.617903, 1.028725, -1.434314, -0.554017, -1.451639, -0.320310, -1.004956, -0.885007, -0.056770, 1.593924, -0.636839, 1.499751, 1.665243, -0.805269, 0.084077, 1.433538, -2.883698, 0.674365, -0.038502, -0.505362, 0.780168, 1.039655, -1.154947, -0.024273, -0.349764, 0.007776, 0.395214, 1.373254, -1.385156, 1.818863, 1.387305, -0.432959, -0.102355, -0.125928, 0.523514, 0.210265, -0.979752, 0.379961, 0.141487, -0.283094, -1.893242, 0.045608, -1.535412, -1.098828, -0.632224, -0.222200, 1.855977, -2.307454, 1.100581, 1.173041, -1.341296, -0.908718, -1.277738, -1.664070, -1.166867, -0.162483, 1.814503, -0.494892, -0.485955, 0.734687, -1.708182, 0.678910, 2.294942, 0.095469, -0.451610, 0.037455, 0.556082, 1.835836, 0.094074, -1.521902, 1.607256, 0.231968, -0.164203, -0.676164, 0.655267, 0.094755, 0.736146, 0.085353, -0.501108, -0.277085, -0.562710, 0.075026, 1.496057, -0.342438, 0.083898, 0.559480, -0.804209, -1.183650, 0.660909, 1.136111, 0.562211, 1.137781, -0.344136, 0.470560, 0.107841, -1.927994, 0.341170, -0.513143, -0.383591, 0.769422, 0.952335, -0.041470, -0.698561, 1.257886, 1.786137, 0.267829, 1.603306, -0.427290, -0.922404, 0.741156, 0.056361, -1.667659, -1.493280, -0.975095, 0.336825, 1.407215, 1.007527, 2.168879, -0.549738, -0.324690, 0.643241, 0.130433, -2.029375, 0.273297, 0.356747, 2.454002, -1.501681, 1.689960, 0.807211, 0.680943, -0.223666, -0.095597, 0.415829, -0.010490, -0.446814, 0.080485, 0.222805, 0.498386, -0.339831, 0.820964, -1.249063, -0.000191, -1.332485, 0.325495, -1.556487, 0.728763, 0.338510, -0.541931, -0.349884, -0.735450, -0.045681, 1.253030, -1.315233, 0.236817, 0.953056, -1.000244, -0.435249, -0.325658, -0.362255, 1.309679, 1.161254, 0.374657, -0.641233, 0.717613, 0.493782, -0.517233, 1.211785, 0.708884, -0.503986, 0.658306, -0.092916, 0.812961, -1.927425, -1.315770, -1.485392, 1.108066, -0.748031, 0.723618, 1.056496, 0.698103, -0.632683, -0.132545, 0.109981, 1.825642, 2.133781, 0.078289, 0.407666, 0.525420, -0.319575, 0.307204, 0.365801, -2.361800, 0.010139, 2.296167, -1.247896, 2.137934, 0.192587, 0.953426, -0.071159, 1.821149, 0.654854, -0.911917, 0.043205, 3.556018, -0.048835, -1.999271, -0.093606, 1.777986, -0.823072, -1.121782, -0.048323, 0.758147, 1.690014, -0.108150, -0.653903, -0.122230, -0.005864, 0.183167, 0.406416, 0.555392, 0.061161, -0.848593, -1.072431, -0.167310, -1.807428, 1.321827, -0.670502, -0.092492, -0.296547, -0.262147, 1.455033, 0.097799, -0.151837, -0.282328, -0.263528, 0.329678, 0.430329, -2.021722, 0.118310, 2.376930, 1.257689, 0.388539, -0.305763, -0.147557, 1.695799, 0.322969, -0.068824, -1.008683, 1.111927, -0.803700, -1.568988, -0.772161, 0.795903, -0.525587, 0.683493, -0.543381, 0.750171, 0.373628, -0.580331, -0.403538, 1.649374, -0.675755, -0.902680, -0.545228, -0.536477, 2.341003, -0.955187, 0.896374, 0.560947, 1.041733, 0.888788, -0.385130, 0.354999, 1.001851, 0.000608, -0.979621, -0.252861, 1.359788, 1.030872, 0.347983, -0.234724, -0.792954, 0.673705, -1.826589, 1.214185, 0.661556, 0.227302, 1.009797, -0.500393, -1.073619, -0.503445, 0.769969, 0.547385, -0.558549, 0.883959, -0.591815, -1.774377, -0.676829, -0.783596, 0.040185, -1.252069, 0.653185, 1.057813, 1.179969, -1.660486, 0.071263, -1.590326, -0.520223, 0.243366, -0.303428, -0.368659, 0.247438, 0.143691, -0.147891, -1.499183, -0.318256, 0.474509, 0.549729, 0.199602, 0.762655, -0.081424, -0.152700, 0.006788, -0.569875, 0.910566, -1.093933, -1.138624, 0.819628, 0.168549, -0.964445, -0.076931, 1.486776, -0.027212, 1.540254, 1.576027, 0.347352, 0.331173, 0.957891, -0.956078, -0.241708, 0.050697, -1.897355, 0.199586, -0.641573, -0.305572, 0.820149, -0.670253, -0.544410, 2.720953, 0.814357, -0.136757, 0.908064, 0.468156, -0.553230, 1.314121, 0.207741, 1.729001, 0.024632, 0.502124, 0.151179, 0.190125, 0.637994, -0.192203, -0.687091, 0.589081, -0.942280, -0.176843, -1.591014, 0.543004, -1.810700, 0.072688, 0.047752, 0.943120, 0.711249, 0.525869, -0.952644, 3.026316, 0.294049, 0.316042, -0.047463, 0.805011, -0.728400, 0.672068, -1.567478, 0.371817, -1.256618, 1.649953, 1.757491, -1.375110, 0.686327, -0.518741, -0.065898, 0.578238, -0.190789, 1.101537, -0.320330, 1.113761, -0.815026, 0.950754, 0.616289, 1.483082, -0.139093, 0.318467, -1.013434, -1.125713, -0.295719, -0.460191, -0.149806, 0.218925, 0.179397, 0.775876, 1.266895, 0.437868, -1.243266, -2.401203, -1.301369, -0.305381, -1.250641, -0.056580, -0.605638, 0.965108, -0.131423, -0.430801, -1.395735, 1.193836, -0.928882, 0.059490, 1.525272, -0.486982, 0.108403, -0.446749, 1.058290, -1.550775, -1.017283, 0.612236, -0.396100, -0.205945, 1.412077, 1.940878, -1.612480, -0.737166, -0.016795, 0.163074, 0.952093, -1.243551, -1.402646, -0.132703, 1.507095, -1.040937, 1.638227, -0.872032, -0.447915, -1.615896, 0.460938, -0.051479, 0.761001, -1.064112, -0.773465, 0.171008, -1.585315, 0.317190, 0.426265, 0.096016, -0.134831, 0.611113, -0.513516, 1.012198, 2.164569, 0.785335, -0.021226, -0.857402, 0.615203, 0.333671, -0.090562, -0.630373, 0.642515, -0.193477, 0.278835, -2.117518, -0.094177, 0.027918, -1.555385, -0.895231, 0.484290, -1.633792, -0.472235, 0.496688, -0.365161, 0.021169, -0.637063, -0.614295, 1.978980, 1.064738, -1.215006, 1.212204, -0.183785, 1.227412, 1.615088, 0.460690, 1.195802, -0.004853, 0.610624, -0.526852, -0.233714, -1.040014, -1.414295, 1.504283, -1.042767, 0.192865, -0.121765, -1.895166, -0.858413, 1.110410, 0.383372, -0.040709, 0.974359, -0.343175, 2.623833, -0.310227, -0.460726, 0.317058, -0.050637, 0.758051, -1.638395, -0.885219, -1.583627, -1.729916, -1.320411, -0.639612, 1.237517, -1.124622, 0.883095, 0.499081, -0.352105, -1.807841, -0.148534, -0.437528, -1.918732, -0.406988, -0.044862, -1.680193, -0.973783, -0.137344, 0.108932, 0.856049, 1.657311, -0.088797, -0.149075, -1.872207, 0.618064, 0.356009, 1.728903, 1.092371, 1.096388, 1.003219, 0.322128, 0.115886, -0.314387, -0.718779, -0.280661, -0.580111, -1.252528, -0.672343, -0.283064, 1.301108, -1.110327, 0.293895, 1.048975, 1.417235, 1.071693, -0.283423, 0.762345, -0.413148, 1.258770, 0.958426, 0.248817, -2.867729, -0.429533, -1.440853, -0.004725, -2.747573, -0.000149, -1.635638, 1.391465, 0.193590, 0.912639, 0.113541, -1.330872, -1.109426, -0.362356, 1.498541, 0.625142, -1.032469, 0.485673, 1.560195, 1.074478, 0.360800, -0.306057, -0.718421, 0.230242, 0.575846, 0.283932, 0.249530, -0.549851}, - { 1.445878, -1.153404, -1.347448, 0.305017, -0.440671, 0.806448, -1.079683, 0.926655, 0.329365, -1.551180, 0.257936, -0.972706, -0.594141, -0.429774, 1.114250, -0.028421, -0.280229, 0.882109, -2.014124, -0.209030, -0.073471, 0.645325, -1.022775, 0.941586, 1.936961, -0.404889, -1.221021, -0.365694, 0.148017, -0.028792, 0.174588, -0.676786, -0.544345, 0.601942, 2.258660, -0.266347, 0.354713, -0.251010, 0.456281, 0.884348, -0.715440, -1.420931, 0.546884, -0.485314, 0.538638, 2.534471, -0.686796, -0.643060, -0.197028, -1.046019, 0.291568, 0.436794, -1.694804, 0.402359, -0.244680, -0.995186, -0.347196, 0.098246, -0.149989, 0.269873, 1.802804, -0.890788, -0.046884, 1.075207, -0.579103, -0.268169, 0.502712, 0.290053, -0.456541, 0.492425, -3.900337, 0.672933, 0.144460, 0.678548, 0.449949, 0.179061, -0.009189, 1.476751, 0.087654, 0.170521, 1.874514, 1.284834, -1.345358, -0.954525, -0.604920, 0.109046, -0.784499, -0.929101, -1.895046, 0.726950, 0.629010, -0.685238, -0.900277, -0.160485, -1.014806, -0.927278, 0.233648, -1.270706, -0.432125, 2.125514, 0.417094, -0.025090, 0.502936, 2.047265, -0.931638, 0.373710, 0.516571, -0.471993, -0.559333, 0.158313, -0.397506, -0.662793, -1.724745, 0.967956, -0.363435, 0.125383, -0.246155, -0.595702, -1.926290, 1.110588, 1.094532, -0.053557, -0.015955, 0.373040, 0.585275, 0.307375, -0.691688, -0.401179, -0.620476, 0.677718, -0.148984, 1.269450, 0.475302, -0.174330, -1.497995, 2.176656, -0.632907, 0.596434, 0.448456, 0.859072, -0.490460, -0.289769, 0.766390, 1.390458, 0.990721, 0.847977, -0.247489, 0.574135, -0.850138, 0.385047, -0.039051, -1.756013, 0.703411, -1.171415, -1.134622, -0.925045, -0.765665, -1.217760, 1.078613, 0.049954, -1.223075, -1.010076, 0.290746, 0.192686, -0.526872, 0.034041, 0.069892, -1.789311, 0.455032, -1.951374, 0.829116, 1.268676, 1.372467, 0.099725, 1.691981, 2.303865, 0.974602, 0.962250, 0.082994, -0.085947, 1.413079, 0.509017, -1.074048, 1.432899, 0.855333, 0.247454, -0.679830, -0.492880, 1.516360, 1.405052, 1.194610, -1.466114, -0.734689, -2.051556, 1.711480, 0.840688, 0.500472, -0.594809, 0.141823, 0.339711, 0.095554, 1.559376, 0.173766, 2.141702, -0.241774, -1.171111, -0.948250, -0.241611, 0.430771, -0.061400, -1.827723, 1.153868, -1.364451, 1.539632, -1.033055, -2.532132, -0.587324, 0.094311, -0.087582, -0.428135, -0.508224, -0.495107, -0.527555, -1.070018, 1.345576, -0.161459, 0.276211, 1.078374, 0.649261, -0.044851, -1.075560, 0.860353, 0.792199, 1.561125, -0.794710, -0.614556, -0.711378, 0.974510, 1.073188, -0.661040, 1.740524, -0.404540, 2.549045, -0.395893, 0.478689, -1.446073, -0.310178, 0.922011, -0.401212, -0.532888, 0.994831, 0.935235, 0.932221, 2.415759, 0.890311, -0.199644, 1.396311, 1.203319, -1.296300, -0.579395, -1.214036, -0.781735, -0.727096, 0.319765, 1.766963, 1.244860, -0.518977, 0.851801, 1.203117, 0.454831, -0.061583, 0.049594, 1.214203, -2.315344, -0.009081, 2.057796, -0.244133, -0.621256, -0.889616, 0.054333, -0.003834, 0.682400, -0.376140, 0.763399, 1.233212, 0.383580, 0.870310, 0.727702, -0.216463, 0.201789, 0.349845, -0.396659, 0.204239, 0.165616, -0.670854, -0.026341, -1.526084, 0.676545, 0.725743, -0.735024, 0.024316, 1.485975, -0.686044, 1.084372, 0.492585, -0.416047, -1.691110, -1.442311, -0.112236, -1.436000, -1.802774, -2.715462, -0.825917, 0.134522, 1.266901, -0.873940, 0.217819, -0.254873, 0.282692, -1.030686, 1.628011, 2.247546, -0.616220, 0.911976, -0.921060, 1.288879, -2.313259, -1.356885, -1.301401, -0.048696, 2.402251, 1.803344, -1.056626, 1.031969, 1.981173, -1.228319, -0.576411, 0.459674, 1.674162, 0.117805, -0.507165, 0.750993, -1.779005, -0.115435, -1.249933, -1.700320, -0.557525, -0.139691, -0.327086, 0.655643, 0.372350, -0.835172, -0.112556, 0.802429, -0.980341, 1.055814, 0.617398, -0.854967, -0.378789, -0.874647, 2.458466, -0.278636, 0.133361, -0.329878, -1.206929, 0.134123, -1.285118, 0.479978, -0.582012, 0.824857, 1.326357, 1.164052, 1.679818, 0.145928, -0.772258, -0.439204, 0.145476, -0.174995, -1.374434, 1.370729, -2.544913, -0.068993, 1.064449, 1.074943, -0.020449, -1.164251, 0.000147, -1.268503, 2.259234, 0.838961, -0.849405, 1.548443, -0.050061, 0.192104, 0.277567, -1.394846, 0.134627, 1.403075, 0.083257, -0.874855, -0.831723, 0.029991, 1.460216, -0.109155, 0.367692, 0.099343, 0.562794, -1.603554, 1.882065, 0.701068, -0.310228, -0.027310, 0.030068, -0.007992, -2.572325, 0.360223, -2.046148, 1.770009, -1.001512, 0.022836, -1.204051, -0.500673, -0.076921, 1.135418, 1.399207, 0.336369, 0.669069, -0.847984, 1.940379, 0.888616, 0.047719, -0.949595, 0.484441, -0.681751, -0.502073, -0.952895, -0.481816, -1.758726, -2.249141, 2.240258, -1.519791, 0.276030, 1.493310, -0.828283, -0.835919, 1.067592, -0.816069, -0.185530, 0.243930, 0.646326, 1.034546, 0.105733, 0.613944, -0.251969, 0.016134, 0.795639, -2.085402, -0.073273, 0.784215, 1.403300, 1.983825, -0.093670, -1.446773, -0.977233, -0.284726, -0.978045, 1.090934, 0.753919, 1.402181, -1.403830, -0.486421, 0.022386, 0.293832, 0.251224, -0.840964, 0.011598, 0.527242, -1.405420, 0.528879, -1.524043, 2.693897, 1.964418, -0.618410, -1.760569, 0.271973, -0.644478, -1.864942, -1.417632, -1.171880, 0.508640, -0.445576, -2.206789, 0.700132, 0.055449, 0.479266, -0.861374, -0.523969, -2.514698, 2.884320, -0.141660, 0.493465, 1.448575, -0.368884, 0.895272, -2.022848, -0.371147, -0.762157, 0.724423, 0.000632, -1.472586, -2.145993, 0.509658, -1.100799, 2.037550, -0.030838, -1.642309, 0.059672, -2.145102, 0.201849, 1.440369, -1.543698, -0.620525, 0.054981, 0.174542, -0.220284, -0.493669, -0.526783, -1.509185, 0.870887, 0.607571, 1.012222, 0.916924, 0.007647, 0.608187, 0.031303, 0.455663, 1.904885, 0.308364, -0.501683, -0.031251, -0.532867, 0.624922, 0.536999, -2.073922, -0.712389, -0.530082, -0.567442, -0.473482, -1.613380, 2.254854, -0.263207, 0.228206, -1.603097, -0.422174, -2.296063, -1.290501, -0.000306, -0.588576, 0.692976, -0.772463, -0.677064, -0.891043, -0.427711, 0.999369, -0.381043, -2.496277, 0.286278, 1.061493, -0.045618, 0.362297, 0.053577, 0.038727, -1.033030, -2.480068, -0.071916, -2.346870, -0.720956, -2.268023, -1.362230, 1.787987, -0.476512, -0.101211, 1.324137, 0.943349, 1.078447, 0.118854, 0.770366, -1.193833, -0.367265, -0.500106, 1.301874, -2.967685, 0.356651, -0.648178, -0.426463, 0.262725, 0.200186, -0.143672, 0.846501, -0.554227, -0.616980, 0.152405, 1.043791, -0.578798, -0.638802, 0.336362, 0.373879, 0.153266, 0.672794, 0.194320, -0.860738, 0.278241, 0.103870, -0.580067, -0.353376, -1.212309, -0.112465, -2.123861, 0.992953, -0.728173, 1.083234, 0.328505, 1.028873, 1.861616, 2.064939, 0.159350, 0.021609, 0.544600, 0.270359, 0.536928, -0.909901, 1.087295, 0.986036, -0.254323, 2.337223, -0.006943, -1.344993, 0.580163, -1.952369, 0.082064, -0.036298, -1.343212, 0.727863, -0.162286, 0.029464, 0.162842, -0.799874, -1.056747, 0.833814, 0.134844, -1.118677, -0.436813, -0.562499, 0.798897, -0.905940, -0.081855, 0.036804, 0.631758, -1.000018, -1.431025, -0.605098, 0.433321, -0.140503, 0.555798, 0.146847, 3.098494, 0.639041, 0.578047, 0.045875, 1.980888, 0.201611, 0.586022, -0.168470, 1.098512, -1.101562, 1.693121, -1.577849, 0.170135, -1.839869, -0.259598, -0.709178, -0.362120, -1.337304, 0.895300, -1.355301, 0.355837, 0.501127, 1.558426, -0.814382, -0.038242, -1.012112, -0.295919, 1.299866, 0.413587, -0.765181, 0.465328, 0.405994, -1.230131, -1.145746, 0.399011, -1.012683, 0.512436, -1.578689, -0.837886, 0.286517, -0.640052, 0.594537, -0.591718, -0.296320, -0.853815, -1.453710, 0.115383, -1.251630, 0.630109, -1.781728, -1.658568, 1.128720, 1.401028, 0.471056, 0.208022, 1.381117, 0.978134, 0.621731, -0.242621, -0.702126, 0.809973, -0.283203, 0.006568, 0.506866, -1.358537, 1.602270, -1.760713, -0.689920, 0.333085, -0.776697, 0.243554, 0.526293, 0.346399, 0.524242, -0.819067, 0.451115, -0.224127, 1.421279, -0.203831, -0.310645, -0.080758, -1.487143, 0.132954, -0.817798, -0.276728, -1.381409, 0.361193, 0.826664, -0.191501, 0.149485, 1.012286, 0.137638, -1.579508, 1.907856, -0.068117, 1.193749, 0.012082, -0.441415, -1.558757, 0.340720, -0.336053, 0.512452, -0.808854, 0.505327, -1.318607, -0.662507, 2.124665, 0.198654, -1.325215, -1.055187, -0.225919, 1.918304, 1.245448, -0.492155, 0.584636, -0.051435, -0.038909, -0.766640, 1.189574, 1.074386, 0.038923, -0.552708, -0.791404, -2.102924, 1.243834, -0.176737, 0.988904, 0.001887, -1.138628, 0.655166, 0.689219, -1.068118, 0.071497, 1.182791, -2.276159, -1.980099, -0.301682, -0.563683, -0.466798, -0.403073, 2.000631, -2.034698, 0.911706, 2.515705, 0.100625, -1.820012, -2.410285, -1.694563, -0.294195, -0.259823, 0.032802, 1.206347, -0.905119, -0.382288, 0.745441, 2.146027, 0.016916, 0.384411, 1.392841, 1.249994, 0.574305, 0.731421, -0.409960, -0.228842, -0.098290, -1.211139, 0.661980, 0.221090, -0.816563, 0.963277, -0.576507, 0.733060, 0.984764, -0.145955, 0.067886, 1.657861, 0.313329, -0.099410, 0.405850, 1.762721, -0.860729, 0.726259, 0.077359, 0.817281, -0.558199, 1.283626, 0.857264, -0.945140, -1.517548, 0.461868, 0.903003, 1.283873, -2.011617, 0.208627, -0.485004, 0.882732, -1.106171, 0.071196, -0.776512, -1.470160, 0.154992, 0.081455, 0.957467, 1.071938, -0.438079, -0.255139, -0.792766, 0.774025, -2.594587, -0.270122, -1.070901, 0.694631, -0.087158, 0.355952, -1.366365, 0.003772, -0.697868, 0.529343, -0.611981, 1.522156, 0.333333, 0.211235, -0.637178, -0.343758, -1.636135, 1.177861, -0.569098, 3.154523, -0.209397, -0.008943, -0.128288, 1.145759, -0.519034, 1.165727, -0.311096, -0.618593, 0.785813, 0.074809, 0.994766, -0.127246, -1.746814, 0.387183, -0.482415, -0.287753, 1.052193, -0.519901, 0.521261, -0.861219, -0.015601, 0.962613, 0.425137, -0.047285, 0.736226, 0.712643, 0.110858, 1.416148, 0.273101, -0.928043, 0.214218, -1.495943, 1.290998, -1.400726, 0.107801, -2.413357, -0.386938, -1.313831, -0.198308, -0.061144, -0.431770, 1.104473, 0.746422, 0.734854, -0.524572, -0.595458, -1.021297, -1.289311, -0.572096, 1.355332, 1.677921, 1.238052, -0.774562, -1.848666, -1.054565, -1.257056, -0.134498, -0.250960, -0.613751, 0.241470, 1.195145, -1.258458, -1.330850, -0.473559, 1.768993, 0.819546, 0.366686, -0.538243, 1.843841, -0.207378, 1.089240, 0.636419, -1.123379, 0.421832, -0.229213, -0.042125, -0.594566, 1.001839, -0.957464, 0.189837, 0.839253, -0.282606, -0.846882, -0.092460, 2.309315, 1.783314, -0.886147, 0.488740, -0.515526, 1.491636, 0.165564, -0.626713, 1.370350, 1.794849, -0.294135, -0.852971, 1.126994, 0.582751, -0.790822, 1.223058, -0.257741, -0.217691, 1.232362, 0.988957, 0.985936, -1.129247, 1.447109, 0.856996, 0.329489, -0.294781, -0.980087, -1.016482, 0.080147, 0.864893, 1.222993, -0.631762, 1.052825, 0.118711, -0.957856, 0.280851, -2.081139, 2.264651, 0.776026, -0.354918, -0.752622, -0.096698, 0.714008, -0.058546, -1.134247, 0.338414, 0.065089, 0.671823, -2.618449, 0.390237, -0.316486, 0.073727, 0.612050, 0.448733, 0.828760, -0.773294, 1.140253, 0.788548, 0.497853, -0.167452, 0.415024, 0.696575, 0.737419, -0.510957, -0.943749, -1.485806, 0.743654, 0.885451, -0.979126, -0.129692, 0.465834, 0.521984, 0.472002, 0.523411, 0.595531, 0.468864, 0.466730, -1.935643, 0.756004, 0.779738, -0.712963, -1.542519, -0.425311, -0.799680, -0.459723, -0.245527, 1.944350, -0.680717, -1.106237, -1.161151, -1.328652, 0.467008, -0.044305, 0.834786, -1.769436, -0.798979, -0.788291, -2.041142, -1.377897, 0.590437, -0.388760, -1.011400, -1.641078, 0.465024, -0.377515, 0.172375, 0.070100, 1.005353, 0.233367, -2.359110, 1.185444, -1.992456, -1.026218, 0.299536, -1.146825, -0.957047, 0.156981, 0.425066, 0.264555, -1.105111, -0.939757, 0.504264, -2.173117, -1.787363, -2.124336, 0.407641, -0.862385, 0.379518, -0.526299, 0.131501, 0.974673, -1.746555, -1.882231, 0.457771, 0.010667, 0.399494, 0.321440, 0.014335, 0.792109, 0.876979, -0.621218, -0.385652, -2.096714, -0.045627, -0.804331, -0.747119, 0.901866, 0.689527, 1.663365, 0.257031, -1.002461, 0.799718, -0.937882, -0.854503, -0.592234, -0.524662, -0.621843, -1.140951, 0.584310, 0.038813, -1.470078, -1.936687, 0.890226, -0.364588, 1.848425, 0.092649, 1.141333, 1.238706, -0.012324, 1.542213, 0.478569, -0.228915, 1.856716, -1.286935, -1.749136, -1.134471, 0.353998, -0.300030, -0.852554, 1.893020, -0.488954, 0.788738, -0.682781, -1.346383, 0.578874, -1.055630, -0.469718, 0.480464, 0.478809, 0.143301, -0.157060, 1.093253, 0.013790, 0.045398, 0.817879, 0.436478, -0.374400, 1.247243, 0.974508, -1.061473, -0.802337, -1.739467, 1.202816, -0.800699, -0.212090, -1.246045, 0.878399, 1.937476, 0.774467, -0.412735, -0.431189, -0.592552, 0.618597, 1.273284, -0.389298, -0.331136, -1.669941, -0.309636, -1.060411, 0.267804, 0.258484, 0.985102, 0.036699, 0.852751, -0.881758, 0.061668, 0.302037, 0.984412, 2.433500, 0.314994, -1.172470, 0.145765, 0.339028, 1.094783, -0.700224, 0.554395, 0.088303, 0.020124, -0.586101, -0.406107, 0.903605, -0.552346, -0.044920, -0.651689, 0.631133, -0.039250, 0.077330, -0.052979, -0.589840, 0.226316, 0.017117, -1.569285, -1.660040, 0.790741, -0.493214, -0.817252, -0.071556, 0.879265, 0.220500, -1.362072, -0.821721, -0.893879, -0.285960, 0.591661, -1.261318, -0.139320, 1.480864, -1.097870, 1.241279, -1.312366, -0.436979, -1.780004, -0.973736, 0.008130, -1.304813, -1.840999, -0.018527, -0.275999, 0.164639, 0.071105, -2.603786, -0.117169, 0.193069, 0.691771, -0.181560, 0.941892, -2.665065, 0.153665, 1.648044, -0.878485, 0.599662, 0.689234, 0.469526, -0.383136, -1.941005, 1.609894, -0.595429, 1.190960, -0.677375, 0.259134, -0.691219, -0.945556, -0.715011, 1.035063, 0.691194, -0.585446, -1.513598, -2.252725, 0.590215, 0.589299, 0.468561, -0.489192, -0.843571, 0.036755, 0.558377, -0.218065, 1.093366, 0.033951, 1.500338, -0.244685, 0.697016, 0.346960, -1.308292, -0.630726, -0.947245, -1.382738, 0.958116, -0.271659, -0.312971, 0.755967, -0.643033, 0.520284, -0.437097, -0.658830, -2.464483, 0.111090, 0.652069, 1.147780, 0.504869, -0.555438, 0.276184, -1.599944, 0.551443, -0.981722, 1.675783, 1.541959, 1.336423, 0.833846, -1.541762, -0.106859, 1.545038, 0.470696, -0.687676, -0.245142, -0.354097, -0.340305, -1.133738, -0.494704, -0.037961, -0.542957, 1.090288, 0.669981, -0.112974, -2.149533, -2.567313, 0.022211, 0.622177, 0.675456, 1.548440, 1.312422, 0.705999, -1.022604, -0.296220, 0.455238, 0.907594, 1.270214, -0.188816, -0.523784, -0.681960, 0.059391, -1.069098, 0.141260, 0.729023, -0.893024, -0.027340, -0.258746, 0.764789, 0.159774, 0.717958, 0.418429, 0.927309, -0.642906, 0.779509, -0.036791, 0.625419, 0.176836, 0.455563, 0.811083, 1.775023, 1.042372, -1.015771, -0.670545, 0.604258, 1.728841, -1.176441, 1.297163, 1.363795, 0.507072, -0.189291, -0.438652, 0.563053, 0.370747, -1.356802, -0.326555, -0.218144, -0.543234, -0.694333, 0.813888, -0.376174, -1.582473, 0.278176, -2.768347, -0.149618, -1.052262, -0.577840, -1.667192, -1.590756, -0.505258, 0.891414, -0.882795, -1.775072, -0.697125, -0.786689, 0.252967, -0.846728, 1.190171, 0.698226, 0.260440, 0.443175, 1.534225, 0.087254, 1.076434, 1.014424, 0.078347, -0.828276, -1.399128, -0.103146, -0.545514, -1.200009, 0.693565, -0.395498, -0.165109, -0.100170, 0.182079, -1.725678, 0.211010, 0.872491, 2.252470, -0.531972, 0.127976, 0.303588, 0.533679, 0.317770, -0.361794, 0.177811, -0.708930, 1.089841, 0.159592, 1.226858, 1.327751, 0.305839, -0.225380, -0.260482, -0.585931, 0.730637, -0.177406, -1.181018, -0.115982, -1.688593, -0.075485, 0.187623, -0.675044, -0.603963, 0.379843, -0.184067, -0.055203, 0.330050, -0.894833, 1.346753, 0.142222, -0.601389, -1.128970, 0.188972, -0.339969, -0.296915, 0.352941, 0.208294, 1.514102, -1.013716, -1.072190, -1.134873, 0.253436, 1.597881, 0.508698, 0.421960, 1.174715, -0.829048, -0.078092, 0.492492, 0.195454, 0.510990, 0.510931, -0.547970, -1.107379, 1.378254, -0.426946, -0.598017, -1.019473, -1.121591, -0.470034, -0.161299, 0.777704, 0.133550, -0.176712, -0.017245, -1.136618, 0.503033, -1.383096, 0.822830, 0.767124, -0.394212, -0.072871, -1.486160, -1.248963, -1.098783, 1.011385, -0.096264, 1.596422, 0.311931, -0.608054, -1.003826, -0.276000, 0.317606, -0.616738, -0.111589, -0.426557, -0.156491, 1.046178, 0.301068, -0.406941, 0.592703, 1.170197, -0.621346, 1.076189, -0.690729, -0.653794, 0.137487, -1.681101, 1.049646, 0.974250, -0.276612, 0.701129, 0.000073, 1.008310, -0.055469, -0.811403, 0.354254, 0.404483, 0.113488, 0.886757, -1.122117, 0.573557, 0.152809, 0.869570, 0.540475, -0.744713, -1.403445, -0.799318, -0.148949, -0.451342, -0.375073, -2.122394, 0.444708, -0.253525, 0.511109, 0.288856, 0.723743, 1.195659, 1.483389, 0.900642, 0.557568, 1.844038, 1.446887, -0.900760, 0.412387, 0.352154, 0.249417, -0.380304, 0.371409, 0.015859, -0.484620, 1.235436, -0.991896, -0.201952, -0.332216, 1.470934, -1.215860, 1.911471, -0.058955, -1.631309, 0.190916, 0.494214, -0.694264, -0.172629, -0.189199, 1.033014, -0.066433, -0.086447, -0.084709, -0.765858, 1.455836, -0.871300, 1.153582, -1.391816, -0.083953, -0.804606, 0.167428, 0.708695, -1.265433, 0.077239, -1.385458, -1.384990, -0.966568, -0.951444, 0.669548, -0.081712, -0.157855, 1.798506, 0.365181, 1.288837, 0.139012, -0.230281, -1.493319, 0.709174, -0.429123, -1.245065, -1.308375, 1.765934, -1.280438, 0.953191, -2.002581, -0.059504, 0.250909, -0.434838, -0.913996, 0.858250, -1.672356, -0.559490, -0.073074, -0.688652, -0.349716, 1.672270, 0.326728, -0.400196, -0.151915, 0.131303, 1.229596, -0.337570, -0.364297, 0.143851, -2.110772, -0.216460, -0.785227, -0.966416, 0.228919, -0.655878, 0.425781, 1.075376, -2.333562, 0.747387, -0.426350, 0.996513, 0.576166, 0.804368, -0.242826, -1.333834, 2.225008, -0.081637, -0.319407, -0.688550, -0.594026, -0.835645, 1.246157, -0.263571, 1.499822, 0.620200, -0.375359, 0.569909, 0.863126, 2.488399, -1.040870, 1.759261, 0.690760, -0.549890, -0.674254, -1.006409, -0.850728, -0.817637, -0.074383, -1.934837, -1.408224, 0.666523, 0.440452, -0.624849, -0.159652, 1.347591, -1.235264, 0.027476, -0.862414, -0.035395, 0.352772, 1.536579, -0.982456, 1.357662, -0.526373, -0.435963, 1.196760, -0.668849, -1.733436, 0.461897, -0.373559, -0.286465, 0.126122, 0.109977, 2.607158, -0.673400, 1.195237, -2.674417, 0.801229, -2.334320, -0.141863, -0.155911, 0.640583, -0.148753, -0.176968, 0.283673, -0.142229, -0.422912, -0.729475, 0.058195, 1.251332, -1.147403, 1.003693, 0.203539, 1.007680, -1.054713, -1.258304, 0.022741, 0.279031, -0.646290, 0.007242, 0.122230, 0.005335, -0.070718, 1.139077, -0.862658, 2.654759, -1.467608, 0.397219, -0.177086, 0.054445, -0.163696, 0.407321, -0.337311, -1.572161, -0.811477, -2.188338, 0.975030, 0.151107, -0.979411, 0.761313, 0.324981, 1.630455, -0.353466, -1.870614, 0.036722, 0.459064, -1.767113, -1.088662, -0.089991, -0.391338, 0.088666, -0.062723, 0.156676, -0.541697, 0.479613, 0.159846, -1.371737, -0.240278, 0.512148, 0.418020, 0.276277, 0.233816, -0.865647, 0.816679, 0.945361, 0.678430, 1.385612, 0.824466, -0.317020, -0.348200, -0.131583, -1.065984, 0.475807, -0.278988, 0.980412, -0.835238, 0.216817, -0.089599, 0.572101, -1.199417, -1.546205, -0.323231, 0.893758, 1.007979, -1.058063, 0.236106, -0.286649, -0.602894, -0.398447, -0.276907, 0.016497, 0.004466, -0.051873, 0.762708, 0.630312, 0.423975, 1.094360, 0.098453, 0.792257, -1.667375, -1.322439, 0.279260, -1.750137, 0.344612, 0.147661, -2.004397, -1.551376, -0.496435, -0.364173, 0.658206, -1.558175, -0.562632, -0.776092, -0.438708, 2.223034, 0.980798, -1.416691, -0.450680, 2.428056, -0.212674, -1.345158, 0.952446, -1.037897, 0.351591, 1.134075, 0.495699, 1.001154, -0.427729, 0.214008, 0.906830, -0.492925, -0.193309, -0.622169, 0.631036, 0.710502, 0.570168, 2.369327, 0.085146, -1.043402, -0.925901, -0.722714, 0.447564, -1.491313, 0.447358, 1.153646, 1.723652, -0.173053, 0.916250, -0.919389, 0.679481, -0.967282, 2.193140, 0.161831, -1.846651, 0.816943, -1.488651, -0.989658, 0.091616, 0.135305, -0.884996, 1.895018, -0.161328, 1.295919, -0.411948, -2.292483, 0.455828, 1.722775, -0.663751, 0.799423, 0.266761, -0.676759, -1.819405, 0.419935, 0.695112, -0.167231, 1.398538, -0.281679, -1.915891, 0.571918, -1.026022, -1.374756, -0.320512, 0.473417, -0.986940, 0.670181, -0.685333, -0.663446, -0.440841, -1.057449, -0.813059, -2.160205, -0.116324, -2.169278, 0.278242, -0.424217, 1.010652, -0.695913, -1.689736, -0.356101, -0.757239, 0.261743, -0.348220, 0.539287, 0.777627, -0.854419, 0.141046, -0.018495, -1.655357, -1.322328, -1.463209, 0.597183, -0.169191, 1.186155, -0.016749, 0.600300, -1.267830, -0.162760, -0.391157, -0.031393, 1.407815, 0.358288, 1.544473, 0.791551, -1.200400, -0.319555, 1.110689, -1.670973, -0.604412, -0.042999, 0.805568, 1.020209, 1.722845, -1.903789, -0.866146, -2.141925, 1.002298, -2.234771, -1.095119, -0.583331, 0.455447, -0.797967, -0.215524, -0.079590, 0.269621, 0.876168, 0.474345, -2.382275, -0.471721, 0.020067, 0.745750, -1.012550, 0.948646, -0.306364, -0.743376, -1.179639, -0.490955, -1.244462, 0.964408, 0.202930, 0.098909, -0.488945, -0.224141, 0.230170, 1.147823, 0.319292, 0.522719, 0.881532, 1.080810, -0.245851, 0.176343, 0.557230, 0.543837, -0.725560, 0.896106, 0.819442, 1.614644, 0.618036, -1.136842, 0.297906, -0.110686, -0.815925, -1.186612, -1.213115, 1.964087, 0.503936, 0.822970, -0.473160, 1.228587, -0.011199, -0.545849, 1.035540, -1.554967, -0.878720, 0.914881, -0.318073, -0.357826, 1.392044, -0.990761, -0.133545, 1.749936, 0.062444, 0.087049, -0.651763, 1.225484, 0.864372, -0.991448, 1.139257, -0.105412, 1.124114, 1.307879, 0.585158, 1.349531, 0.577072, -1.169216, -0.159612, -0.306705, -0.858280, -2.010714, -0.534007, -2.173468, -0.204237, 1.166223, 0.361621, 0.539108, -0.805112, -1.015777, 2.059971, 1.271596, 1.425568, 1.017355, -0.508501, 0.100404, 0.874458, 1.852387, 0.796929, 0.722705, 0.780477, -0.137631, -0.460351, 0.347021, 0.603658, 1.411721, -1.272589, 0.886577, 0.072505, -1.672949, -1.960906, -2.848154, -0.895101, -2.119036, -1.174544, -0.538957, -1.410134, -0.221534, 0.900302, 1.395551, -1.059181, 1.542288, 0.697789, 0.607866, 0.319514, 1.689381, -0.645638, -0.719593, 0.511458, 0.486433, -1.744721, -0.064272, -0.711403, 1.230375, -1.513271, 2.075876, 0.370495, -0.532843, -0.171948, 0.008393, 2.184876, -0.160692, -0.707834, -1.142801, 0.312959, -0.331968, -0.264170, -1.448145, 1.421661, 0.266381, -0.017792, 1.355882, 1.682565, 1.868037, -3.076073, -0.374865, -0.842945, 0.850653, -1.506346, -0.738771, -1.540656, 0.552432, 0.562392, 0.593412, -0.187969, 0.166893, 0.714517, 0.816390, -1.782228, 1.371503, -1.655736, -0.550219, 1.840159, 0.245365, -0.090806, 0.511241, -2.320465, 1.313888, -0.607975, 1.647739, -2.783837, -0.872146, 0.557682, -1.124446, 1.077002, -0.633590, 0.906387, 0.162231, 0.127604, -1.825788, 0.507563, 0.149004, 0.481442, -0.566950, 0.285794, -1.951490, 1.240610, 0.842461, -0.280273, -0.680668, 0.279997, 1.256521, 0.900380, 1.330421, 0.167963, -0.155769, 2.512261, 1.453015, -0.372736, 0.649509, 0.652601, 0.381735, 1.280074, 0.478309, -1.076764, 0.610907, 0.999313, -1.097063, -2.173566, -0.722954, 0.174051, -0.218577, -0.142822, 0.137032, 0.142682, 1.269699, 0.483088, 0.915366, 0.743598, -0.892581, 0.682828, -0.874223, 0.617007, 0.404190, 0.156124, -0.573231, -0.578045, 1.990808, -0.547045, -0.059656, -0.706795, 0.823791, 0.239120, 0.760238, -0.631524, 0.483145, -0.272599, 1.066651, 1.776854, 1.333696, 0.270038, -0.639615, -1.524093, -0.593235, -0.669937, -1.287344, 0.624233, 1.234175, -0.469339, -2.673773, 0.197788, 1.229611, -0.160598, 0.295828, 0.290539, 1.340376, -1.546628, 0.324714, -0.282165, -0.934606, 0.171220, -0.660123, -0.237934, 0.706449, 1.069371, -2.002259, -0.360696, 0.789479, 0.203824, -0.244098, -0.450729, -1.033425, 0.004591, 1.014519, -0.336808, 1.216950, -1.574796, -0.378562, 1.282009, -0.136177, -1.236178, -1.344107, 1.152737, -0.114498, 0.104634, 1.581375, -0.248600, 0.445797, -0.671835, 0.813808, -0.450572, 1.171678, -0.218566, -0.851262, 0.470281, -1.232525, -0.441207, 0.797514, 0.224421, -0.786897, -1.338343, 2.918136, -0.484288, 1.700449, -2.503681, 0.405204, -0.958056, -0.159268, -0.979951, 0.784583, 0.371375, -0.335393, -1.403690, -0.672031, -1.768612, 0.486015, -0.183907, 2.059938, 1.663091, 0.777940, 1.224331, 0.243463, -0.212734, 3.675434, 0.015961, 2.127998, 1.799297, 0.677596, 0.742624, 0.267620, -1.125191, 0.098975, 0.676437, 1.406714, -1.102403, 0.274027, -1.338014, 0.000497, 1.093379, 0.233855, 0.584885, -0.479394, 0.799204, 0.228711, 1.393660, -0.309822, -1.396516, 0.354881, 1.645507, -1.811889, 0.785144, -0.476500, 0.225611, -0.458132, -0.265379, 1.129122, -1.420787, 0.478497, -1.534723, 1.882321, -0.459904, -1.105561, -0.698393, 0.319162, 0.955874, 1.575655, 1.049060, 0.321607, -0.554712, 2.391111, -0.460636, 0.622923, 0.211547, -0.037155, -1.077355, 0.271574, -0.242270, 0.499386, 0.661349, -2.716219, -0.844623, -2.033322, -0.432095, -0.160874, -1.111089, 0.466569, 0.160188, -0.882351, 2.635583, -0.084218, -0.475544, -1.096698, 0.843347, -0.342527, 0.119832, -0.526319, 1.429026, -0.704974, -0.430196, 0.760298, 0.681345, -0.670249, -0.641111, 0.180972, -1.106293, 1.532891, 1.068363, 1.003581, 1.409564, -0.181188, -0.891836, 0.355961, 1.210890, -0.888511, -0.172888, -0.519026, -0.531364, -1.076281, 0.726658, -1.262809, 0.926454, 0.579979, 1.603911, -0.950228, -0.685054, -1.272782, 0.438027, -0.162733, 0.315365, -2.177338, -0.673697, 0.145284, -0.478879, 0.983600, 0.437519, 1.494868, 1.575354, 0.150170, 0.349174, 0.171159, -0.120737, 1.543509, 2.076893, -0.492403, 0.317766, 2.001430, 1.440680, 0.513666, 0.356342, -1.509140, -1.363681, 1.845136, 1.292002, -0.148575, 0.299693, 1.170144, -0.308276, -0.458720, 0.794473, -0.967977, 1.105097, 2.130901, -0.123496, 0.081986, 1.002645, -1.085919, -0.560473, 0.296005, 0.789353, -0.269847, -2.558980, 0.927275, -0.467784, 0.317143, 0.458393, 0.057566, -0.549560, 1.497769, -2.898894, 1.654285, -0.454681, -0.822528, -1.730295, 1.074960, 0.137918, 0.070625, -0.117567, -0.457990, -1.245347, 0.397462, -1.278753, 0.047606, -0.114704, 0.434614, -1.224872, -0.444581, 0.489287, -0.773125, -0.097111, 1.633667, 0.155354, -0.419924, 0.873116, -0.458484, 0.473671, -0.091978, 0.687364, 1.475949, 1.141860, 0.514919, -1.755532, 0.871819, 0.774535, -0.152756, -0.743990, 0.740205, 0.046770, 0.782677, 0.970344, -2.098977, 0.194778, 0.061838, -0.740884, -0.456557, -0.293963, 0.267428, 0.572115, -0.202906, 0.881771, -1.027140, 0.554616, 1.005625, 0.168106, 0.128437, 0.822852, -0.916728, 1.281431, 1.495535, -0.542165, -1.262006, 1.901224, -0.740243, 0.243219, -0.022770, -1.308703, 1.224213, -0.547377, -1.276179, -0.213497, 0.578068, 2.069428, -0.185776, 0.662663, 0.827051, 2.622462, 1.334861, -0.263207, 0.515121, -0.318664, 0.350667, 0.027830, -1.315444, 1.531451, 0.117391, 0.943620, -0.521673, 0.418379, 1.232737, -0.076268, -2.375868, 0.412047, -0.529878, -0.013168, -0.069190, 0.680694, -0.150145, -1.012116, -1.137958, -1.113784, 0.046429, 0.666767, 0.826792, -1.468080, -0.224615, 0.614530, 1.012420, 0.080754, -0.281168, -1.682514, 0.209661, 1.153289, -0.767129, -0.156860, 0.693448, -1.561837, -0.693193, -1.362141, -0.122263, 1.295253, -2.919127, 0.338436, 0.008621, 0.847522, 0.696990, -0.911289, -0.135180, -2.146954, 1.856832, 0.854619, 0.441767, 0.904763, 0.492492, -0.225177, -1.089328, 1.436821, 1.332541, 0.169813, -0.380365, 0.918262, -0.122714, 2.225160, -0.524163, -1.738663, -1.297546, 0.376041, 0.751986, -1.721446, -1.257990, 1.474788, 0.221108, -0.034420, 0.196502, 1.763677, -0.583232, 0.529788, 1.495535, 1.939037, 0.629916, -0.178530, -0.305083, 0.618505, -1.706171, 1.988135, 1.009309, 0.967654, 1.388601, -0.365528, 0.052859, -0.278418, 1.193452, 0.183563, -1.722935, 1.221311, 0.049304, -0.490819, -0.882158, -0.260450, -0.457841, -1.866920, -1.852402, 2.693872, 0.813261, -0.723892, -0.731183, 1.472821, -0.209544, -1.121239, -0.409280, -1.236758, 1.128726, 0.095525, -1.053991, 0.213046, 0.079628, 0.406784, -3.040499, 0.429716, 0.321059, 0.558590, 0.546992, 0.779609, 0.361150, 1.243232, -0.500127, 0.404494, 1.213458, 0.818050, 1.146753, 0.425089, 0.347603, 0.771793, 1.886813, 2.385094, 0.138731, -0.565796, 0.228482, -1.039877, 0.626217, -0.426960, 0.849791, -1.534972, 1.156831, -2.055622, 1.825672, -1.193715, -0.786140, 1.402654, -0.731370, -0.513543, -0.815725, -0.491834, 1.141321, -1.994267, -0.359238, 0.707577, -1.512396, 1.079465, 0.779846, 0.522513, 0.038271, 1.040546, 0.426121, 0.691500, 1.957886, 0.046700, 0.171883, 0.440433, -0.324818, -0.104945, -0.338009, -0.741593, 0.443820, -1.072987, -0.486312, 0.698410, -1.788811, 0.548017, 1.636410, -0.583240, -1.840856, 0.836300, -0.311252, 1.024664, 1.726619, 0.939556, 1.092871, 1.274347, 0.044603, 1.627977, 0.526698, 0.562974, 0.770625, 1.729979, -0.335287, -0.809198, -0.798831, -1.087272, 0.173590, -0.764288, 1.093196, -1.631967, 0.831555, 0.815566, -1.201740, 0.056949, -0.242331, -0.664453, 0.199122, -0.486558, -0.369147, -0.938483, -0.170820, -0.232570, -0.373860, 0.337351, -0.543332, -2.185735, -0.655946, 0.583809, -1.406502, 0.446971, 2.025558, 0.208933, -1.544937, 0.553311, 0.277827, 0.067365, 0.470603, 1.902130, 0.774395, -0.853265, -0.093092, -0.340810, -1.172868, -0.831302, -1.080708, 0.438944, -0.018013, 0.178382, -0.283502, -0.787116, -0.097087, 1.253211, -0.621756, -0.661305, 1.109090, -0.587551, -0.405241, -0.360644, -0.215994, -1.422710, 1.914675, 1.233941, 0.953655, -2.333509, -0.852149, -1.092351, -0.122103, 0.245731, 1.098201, -0.620078, -1.351882, 0.564537, -0.060079, 0.737816, -0.033493, -1.607410, -0.330491, -0.198336, -2.569172, 0.528342, 1.402853, -0.231471, -0.078697, 1.729009, 0.972393, -0.414298, 1.142034, 1.833913, -0.000931, 2.256407, -0.397234, 1.850523, 1.713857, 1.233649, 0.984719, -0.676883, 1.817221, 0.868478, -0.640646, 0.238347, -0.059560, 1.811211, -2.618336, 1.122434, -0.796594, 1.339990, 2.108393, 0.534400, 0.309782, -0.718498, 1.931625, 1.736116, -0.696786, 0.529123, -1.193905, -1.394558, -0.592851, -0.454381, 0.860722, 0.841657, 0.813063, -0.667401, 0.812944, 0.106251, -1.117467, 0.033939, 0.250135, -0.816481, 0.928864, 0.013776, 0.452166, -0.206403, 0.566231, -0.532754, 0.404865, -0.704484, 0.274989, 0.918509, 0.273510, -0.079340, 0.708396, 0.600842, 1.311511, -1.409819, 0.651257, 0.861284, -0.372855, -1.196844, 0.079627, 0.218136, -0.638536, -0.716781, -0.580369, 0.220091, -0.458735, 2.025766, 1.872406, -1.838942, 0.934212, 0.560095, 0.021847, -0.751025, 1.370176, 1.245168, -0.225636, 0.614243, -0.720625, -0.587507, -0.496351, 0.432425, 0.689731, -0.407020, 0.051499, -0.472184, 1.849107, -0.261673, -1.038411, -0.202875, -1.930506, 0.178573, 0.374921, 0.243520, -0.507939, 0.423253, -1.937319, -1.258062, -2.139528, 0.754162, -0.625140, -1.389137, -2.456294, -0.865122, 0.786545, -0.770523, -2.166260, -0.265189, -0.063571, 1.546956, -0.020055, -1.578166, 0.853399, 1.930560, 0.041061, -0.804233, -0.473942, -0.600621, -0.004090, -0.894100, 0.103983, 2.114091, 0.310964, -0.458724, -1.717477, 0.030133, -1.470110, 1.314874, 0.188732, 1.668664, -0.842384, 0.006351, -0.971833, -0.046344, 0.707342, -0.819759, 2.144530, -0.368451, 0.579973, 1.091115, -0.148887, -0.953607, 2.462977, 1.053506, -0.148519, 1.047693, -0.776454, 0.240340, -0.394486, -0.269879, 1.690862, 2.480855, 1.462525, -0.436915, 1.700310, 1.124181, 0.194222, -1.808197, 1.220469, -0.241741, 1.272436, -1.422537, -0.256838, -0.148264, -0.817898, 0.235552, 2.362523, -0.856592, 1.003373, 0.435978, -0.489512, -0.465575, 0.338367, -0.220975, -0.152091, 1.214347, 1.261436, -1.251009, -0.086733, -0.504145, -0.243082, 2.009960, 0.921300, -0.978197, 0.598189, 1.883382, -0.506925, -0.769491, -1.593715, 0.272125, -0.759615, 1.535015, -0.229567, -1.103737, -0.004963, 0.446512, -0.693396, 0.685065, 0.349876, 0.878389, -0.884863, -0.905856, 0.264667, 1.015236, 0.269646, 1.987148, -0.195984, 0.655919, -0.286911, -1.527199, -0.253445, 0.099677, -0.457202, 1.188869, 0.395030, 0.863017, 1.397443, -1.111201, -0.355992, 0.496056, -0.416801, -0.762257, -0.122733, 1.373750, -0.663248, -1.904706, 0.275297, -0.499703, -0.514021, 0.661685, -1.064008, -0.212920, -1.032474, 0.677715, 1.622868, 0.278875, -1.416016, 0.067039, -0.945162, 0.391698, 0.510546, 0.694056, -1.011924, -0.436370, -1.340288, 0.630691, -0.748382, -0.446044, 0.840428, 1.421828, -0.669901, 1.326642, 0.704730, 2.521558, 1.185718, -0.526917, 1.773685, 2.081829, 0.280450, 0.199858, -2.248677, 0.076981, -2.061315, 0.573030, -1.083415, 1.620533, 0.801992, 1.190638, -2.281225}, - { -1.306722, -1.206562, -1.975445, 0.487621, -1.274873, 0.202878, 0.370678, -0.888560, -1.218515, 0.286163, 0.296078, 0.055218, -1.126057, -1.310813, -0.241133, 1.089183, 0.126261, 0.031059, -0.853306, -0.129335, 0.258499, 0.355229, -0.672504, 0.743305, 0.655174, 0.768350, -1.781715, 1.070682, -0.723175, -0.222303, 1.410245, -0.044610, 0.924951, 0.349737, -1.506689, 0.948673, -1.085804, -0.748358, -0.268861, -1.814905, -0.852187, 0.246033, -0.534419, 1.304748, -0.317217, -0.157855, -1.325686, 0.501769, -1.928003, -0.134035, -0.163909, -0.827481, 1.939342, -0.410003, 1.201873, -0.766892, 0.701508, 0.142465, 0.181057, -1.062275, -0.014814, -2.698196, 0.426235, -1.134260, -0.398332, 0.121772, -1.764585, 0.534018, -1.659719, 0.306604, -0.185052, -0.595970, -0.988305, 1.676990, -0.109199, 0.569350, -1.305212, 1.130324, 1.015020, -0.003081, -1.283716, -0.447787, 0.815507, 1.732758, 0.936907, 1.911322, -0.158580, 1.110616, -0.779370, -0.530357, -0.668752, -0.467689, -0.848225, 0.075540, -0.668599, 1.742014, 1.656108, 0.343155, 2.500977, 0.700264, 0.963104, -0.502447, -0.477134, -0.387984, 1.345994, -0.716208, -0.873581, -0.610938, -0.336195, 0.527732, 0.427084, -0.217771, 0.425557, -1.457579, 0.554205, -0.395361, 1.045093, 0.605722, 0.092606, 0.588054, 0.977983, 0.919272, 0.785715, 0.434977, -0.010583, 1.408288, 0.519720, 0.310569, 0.051274, 0.351584, -0.726844, -1.156364, 0.936601, 0.099755, -1.120196, 0.472369, 1.015454, -0.039088, -0.419028, 0.255730, 0.890333, -2.615524, -0.776374, 1.457297, 1.480246, 1.050104, 1.454498, 0.800723, 0.212406, -0.435737, 1.430674, 0.295141, 0.114087, -0.373037, -0.059230, -0.492871, -2.134345, -1.199543, -0.346212, -1.268863, 0.296013, 0.074813, -1.235711, 0.324600, -0.460215, -0.435496, -0.399402, 0.465942, 1.850745, 0.448322, 0.688889, -1.395328, 1.361733, 1.317964, -0.388510, 1.015474, -0.604932, -1.072571, 0.557681, 1.925666, -1.068738, 0.362429, 0.082447, -0.129648, -0.318583, 1.558964, 0.522583, -1.245015, -0.520117, -0.080027, 1.916075, 0.322486, 0.958424, 0.956264, -0.746050, -2.040569, 0.731997, -0.037063, -2.346496, -1.146968, 0.694428, 1.581480, -0.614993, 0.025680, -0.272150, -0.871129, -0.428290, 0.016335, 2.165401, 0.494348, -0.025721, 0.817672, 0.643510, -0.100029, -0.616181, -0.015105, -0.125358, -0.164433, -1.054809, -0.864784, -0.069287, 1.415149, -0.821419, 0.448273, 2.280845, -1.986816, 0.225685, -0.523084, 0.500218, 0.749879, -0.272502, -0.740693, 0.091759, -1.942635, 1.364206, -0.789020, -2.040679, 0.993146, -1.073300, -1.465888, 0.164628, 1.163299, -0.394076, -0.009136, 1.305377, -0.025738, -1.079011, 0.913876, 0.214629, 0.974499, 0.077655, 0.114111, -1.108704, 0.288485, -0.273144, -0.629008, -2.068877, -0.735528, -0.009369, -1.236564, 0.349024, 0.766635, -0.791139, -0.703229, 0.020788, -1.397684, 0.807858, 0.068726, -0.363310, 0.195866, 0.938688, -0.282219, -1.403648, -0.975187, -1.954921, -1.077149, -0.069249, -0.091329, -1.112220, -1.679775, -1.232943, -3.163320, 0.832715, 0.142919, -0.890044, 1.466927, 1.995846, -0.800878, -0.040032, 0.998341, 0.443440, -0.307606, 0.479758, 0.880129, 1.060946, 0.571326, -0.046933, -1.270826, 2.193730, -0.811687, 2.159508, -0.756006, 0.835855, 1.486672, 0.105801, -0.228791, 0.633529, -0.935643, -1.406075, -0.844729, -0.441701, 0.783811, -0.700373, -1.240873, -1.482285, -1.311738, -0.372136, 1.269048, -0.799852, 0.544281, -0.248499, 1.516497, 0.467687, -1.121008, 2.002320, -0.208965, -1.454322, -1.324623, -0.598917, -0.193018, -0.270473, -0.872131, 0.371548, -0.705005, 0.556712, -0.361946, 1.279783, 2.166782, 0.765301, 1.753687, -0.191952, 0.169321, 0.892159, 0.569899, 1.343415, 1.986206, -0.555111, 1.458809, -0.899853, 0.119683, 2.017251, 1.215258, 0.836795, 1.848446, 0.042193, 1.198956, -0.791644, -0.705681, -1.428828, 0.954153, 0.160547, 1.464064, 0.325959, 0.581150, -0.271421, 2.047957, 0.176391, -0.456448, -1.773184, -0.887603, -1.664833, 1.066357, -0.189105, -1.556737, 0.909495, 1.856653, -0.907899, -0.308409, -0.239976, 1.028492, 0.572439, 0.051372, -0.008288, -0.783578, 0.773929, 1.521470, 2.229440, -0.881176, -1.457718, 0.637489, -0.235527, 0.954130, 0.292365, 0.036335, -0.168974, -1.450869, -0.210238, 0.638893, 1.673296, -0.240232, -0.020352, -0.668014, -1.336941, 1.639382, 0.762648, -2.364070, 0.443269, 1.448576, 0.945689, -1.091067, 2.389915, 0.693015, 1.088408, 1.168374, -1.758695, -0.086013, 1.013681, -0.090492, -0.044804, -0.828310, 0.510437, 0.701660, 0.558064, 0.549422, -0.536471, 0.201789, 1.422420, 0.784057, -0.036343, 0.205224, -0.000234, -1.192550, -1.566831, -0.729800, -0.108911, 0.137060, -0.298037, 0.328502, -0.378400, 0.388234, 0.742648, -0.180846, 1.231257, 0.800301, 0.875977, 1.408661, 0.135466, -0.329125, -0.986001, 0.986953, -0.575777, -0.424637, 1.081072, 1.550585, 0.170398, 0.240643, 0.883177, -1.665744, -3.635990, -0.137211, 0.363277, 2.063344, 1.131993, 1.311593, 0.927851, 1.413076, 0.438170, -0.970018, 1.312096, -0.779295, -0.310879, 0.259101, 0.250937, 0.940665, -0.285690, 0.580361, -1.237775, -0.508898, -0.348998, 0.596636, 0.599988, 0.630155, 0.889974, -1.476112, 1.060663, 0.634004, 0.799343, -0.401605, 0.621985, 0.589858, -0.991861, -0.724526, 1.300982, -0.287826, -0.658643, -0.476222, -0.557687, -0.449509, -0.699987, -0.019910, -0.147444, 1.709261, -0.749892, 1.567296, 1.291917, 1.009630, 0.768685, 0.384907, -0.199116, -0.957984, -0.378198, -0.155765, 0.510851, 0.444441, -1.130476, 1.707635, -1.042398, -0.286215, -1.216550, 0.666569, -0.017838, 0.295911, 0.087384, 0.965974, 0.822800, -0.569121, 0.768136, -0.117474, 0.741499, -1.866723, 1.204409, -0.520818, -0.898192, 0.484169, -0.841029, -0.356190, 0.196639, 1.632712, 2.416075, 0.022901, 2.814648, 1.113629, 0.524847, 0.164436, -0.070459, 0.708655, 0.671501, -0.649493, -0.459252, -0.401812, 0.241851, -0.785663, -0.102306, -0.109762, 1.360568, 0.966850, -0.744533, 1.114473, -0.706908, -1.753237, 0.993281, -1.377887, -0.074141, -1.371117, 0.648602, -0.333696, 0.000986, -0.279523, -0.020501, 0.127914, -0.481768, 0.461848, -1.183002, 0.896069, -1.159050, -0.787095, -0.891154, 2.070235, -0.219389, -0.912212, 0.615356, 0.349290, 0.859179, 2.019272, -1.799851, 1.385335, 1.281392, 0.710911, -0.284844, 0.000106, 0.282691, -1.863078, 2.113405, 1.339994, -1.174242, -0.317377, 0.156986, -0.475833, 1.165828, 1.467965, 0.093701, 1.154228, 0.193128, -0.076910, -0.967719, -0.123777, 0.823184, 1.170257, -1.430106, 0.074882, -0.537723, -0.297741, 0.826818, 0.326836, 0.711172, -0.103686, -0.038879, 0.792268, -0.637338, 2.041163, -0.571609, -0.186632, -0.858217, 0.218720, 1.065005, -1.220584, 2.136113, -0.624432, 1.583983, 0.963995, 0.194155, -1.578501, 0.923188, 0.394748, -0.849746, -0.229841, -0.764036, -0.372095, 1.127376, -0.895114, -0.005374, 1.908703, 0.042856, 0.422344, 0.816188, -1.504051, 1.077873, -1.082877, -0.845144, 0.711653, -0.203057, -0.559347, 0.126911, -0.029682, 1.123529, -0.770283, 0.592021, 0.790654, 1.171499, -0.705528, 0.326963, 0.239395, 1.614970, -1.878006, 0.914507, 1.060340, 1.464831, 0.279282, -1.921026, 1.760842, 0.103957, 0.563977, 0.482349, -0.714490, 0.079475, -1.052644, 0.671598, 0.593266, -0.625355, 0.316930, 1.771858, -0.929034, -1.400440, 0.675175, 0.138499, -0.340336, 0.194618, 0.497762, 1.230675, 1.512318, -0.026135, -2.557627, -0.707932, -0.219666, 2.103652, -0.559057, -0.743498, 1.089843, -0.937166, -0.093129, -0.121561, 0.335960, -1.261972, 0.639164, -0.852551, 0.419367, 0.011299, 0.612042, -0.713572, -0.567932, 0.401327, -0.541403, -0.153874, 1.252321, -1.245636, -0.181698, -0.146689, 0.020970, -0.755785, -0.386608, -0.068100, 1.382661, 1.712314, 1.095520, 1.285142, -0.848580, -0.052623, 0.930931, -0.438191, -0.588549, 1.465999, -2.008006, -0.636326, 1.136867, 0.461443, -0.321635, 2.135953, -0.335056, 1.226329, 1.564624, -1.237418, -2.732117, 0.373494, 0.322539, 0.017572, 0.573900, -0.312578, 0.644327, 1.134529, -0.662524, -1.844351, 0.559155, 0.101749, -0.297372, 0.560997, -0.530407, -1.665942, 0.277881, 0.861003, 0.080971, 1.217627, 0.212807, -0.815147, -0.355421, 1.937080, -0.907170, 0.754306, -1.994270, -1.028057, -0.375151, 1.151616, -1.040688, -1.280795, 0.874890, -1.661557, 1.149909, 1.119439, 2.150875, 0.529790, -0.555059, -0.082521, -1.635425, 1.088980, -2.092434, -0.780371, -0.592898, -1.073179, 1.641686, 0.597490, -1.233361, -0.652751, -0.225743, 1.180272, 0.073709, -1.551583, 1.000875, 1.089462, -0.525395, -2.644914, -0.658505, -0.490629, 1.755187, 0.939491, 0.225419, -0.662945, 0.647270, 1.171921, 0.158083, 0.907096, -0.220339, -0.793155, 0.033152, -0.604378, 1.159016, -3.269448, 0.128253, 1.239591, -0.570770, -0.865168, -0.389532, -1.546964, -0.182532, -1.373328, 1.313101, -0.784499, -1.741225, 1.430397, -0.775050, -0.329480, -0.654925, 0.139817, -0.511233, 0.852622, 0.650294, -0.456377, 1.054221, -0.508107, 0.207025, 0.644104, -1.316832, -0.009301, -2.487498, 0.550995, 1.231386, -0.190392, -0.090883, 0.228802, -0.644126, 0.505859, 0.545793, 0.773597, 0.968773, -0.238321, 1.779011, 0.578098, 2.167257, -0.873185, 0.153486, 0.792205, -1.219238, -0.308090, 0.915982, -2.219101, 0.518639, -0.729584, -0.714895, 0.188635, 1.313635, -0.942638, -1.566310, 1.202370, -0.558439, -1.035084, 1.216388, 0.852245, 1.195368, 0.527580, -0.087302, 0.145773, 1.314205, 1.288847, -2.048186, -0.165540, 0.803084, -0.384076, 0.034000, -0.336768, 0.998313, -0.160068, -0.282046, -0.202294, -0.039547, -0.065647, 0.228173, 0.359293, -1.796697, 0.446656, 0.235060, 1.419604, 0.507064, -0.503891, 0.372678, -1.159999, -0.023849, 0.659625, -0.265349, -1.015350, -0.649836, 1.119256, 0.683738, -0.223828, 1.532778, 0.201287, -1.579463, 1.459927, 0.367187, -1.075856, 0.908331, -0.611305, -0.300508, 0.505438, 0.153719, 0.701105, -1.064955, -1.170030, 1.374385, 1.882858, -1.300594, 0.108963, 1.743860, -1.213474, 0.985335, 0.688561, 0.097856, -1.186852, -0.355296, -0.635735, 0.325742, 0.213272, -0.809125, 0.819738, -0.601411, 0.014599, 2.264916, 1.102887, -0.005778, 0.303516, 0.546233, -0.121246, 0.387421, -1.188764, 0.248742, 1.064818, 0.636523, 1.061661, -0.890358, -0.298644, -0.376108, -2.351388, 0.893723, -0.605168, 0.030722, 0.252506, 1.251551, -1.558351, -1.211881, 0.597801, -1.222575, 1.752244, 0.352015, 0.848607, -0.979261, -0.104326, -0.056452, -1.364747, 0.401830, -0.911071, -0.418662, -0.201700, -0.485656, 0.859280, 0.460503, 0.203149, -0.554091, 0.451286, -1.981969, -0.518462, 1.552624, 0.043932, 1.641353, 0.130044, -0.170692, -0.563246, 0.727835, -1.075599, 0.569569, 1.787155, 0.407785, -0.787473, 0.682936, -2.238141, -0.281956, -0.092752, 0.612499, -1.461787, -1.112643, -0.061827, 0.259854, -0.049496, 1.440056, 0.660853, 0.563754, -1.475085, -0.733403, 0.122397, -0.853462, -0.485674, 1.179337, 0.095868, 1.012588, -2.189900, 0.434248, 0.419818, -0.606318, -1.337364, 0.661777, 0.941832, 0.630758, 0.274054, 0.613185, -1.555423, 2.208676, -1.226143, 0.192876, 0.382807, -0.507107, -0.676884, 1.297350, -1.838749, 0.502938, 0.489421, -1.449614, -0.220311, 0.236136, -1.689865, -0.406308, -0.727294, 0.098725, -0.464643, -0.884307, 0.013853, 0.236973, -0.164221, -0.674006, 0.131695, -0.617369, 0.643403, -0.543583, 0.772491, -0.492485, -1.052373, 0.107329, -1.207519, -1.182785, 1.328212, 1.204217, -0.804488, -1.140010, 0.097034, 1.217178, -0.031188, 1.321860, -0.154781, 1.694274, 1.895952, 0.486160, 1.679492, -0.372067, 1.200676, 0.092518, 0.023981, 0.341186, 0.106569, -0.371428, 0.048285, -0.598240, 0.555632, -0.113781, 2.258779, 1.139286, -1.561539, 0.120659, -0.818270, -1.615670, 0.231890, 0.818585, -0.282959, -0.619159, 0.425710, 0.107852, -0.495312, -0.922744, 1.618770, 0.611693, 0.209416, 0.061289, 0.383158, 0.403099, 1.544681, -0.247567, -0.226363, 0.282293, -0.162925, -0.150727, 1.665162, 0.417748, 0.247617, 1.095870, -0.724538, -0.947903, 1.287739, -0.572502, 0.410051, -0.294066, -0.973140, -0.620319, -0.176661, 0.734385, 0.257918, -0.003877, -0.283247, 0.398960, 0.234987, -0.888135, 0.780387, -0.883143, 1.528162, 1.369998, 0.440470, 0.311630, -0.217703, 1.169327, 1.152547, 0.001330, -3.111687, -1.161778, 0.579605, 1.354272, -1.816908, 0.289452, -0.715973, -0.227970, -0.266305, 0.237394, 1.558306, -0.287718, -2.105695, 0.163154, -1.389914, -0.859619, -0.589800, 1.022661, 0.295959, 0.104051, -0.036047, 0.606662, 0.164811, -0.957931, -2.492861, 0.030811, 0.920364, -0.360781, 0.139982, 1.133491, -0.300707, 0.336575, 0.507103, 0.600709, -0.211559, -1.394743, 1.478281, -0.076582, -1.096339, -0.712362, -0.432329, 0.579065, -1.488342, -0.910461, 0.337790, 0.849376, -0.628656, -0.201502, -0.813711, 0.780423, 0.809918, -1.017160, -1.816959, 1.215460, 0.227868, -0.206193, -0.006789, -0.011629, 0.823619, -1.465040, 1.220760, 0.915470, 0.424382, -0.406326, 0.788891, 0.597634, 1.024642, -1.627069, 0.524052, -0.118481, -0.861173, 0.228996, -0.789750, 0.704336, 0.196415, 0.265733, -0.902469, 0.667173, -0.543033, 2.697160, -1.522783, -1.799450, -1.411446, -0.694229, -1.156437, -0.470852, -0.056675, -1.736340, -0.594657, 0.048243, -0.819701, -0.876457, 0.358401, 1.267470, -0.306011, 1.039295, 0.601812, -0.564680, -1.104105, -0.722004, 2.312108, -1.349747, -0.892771, 0.151801, 0.315304, -0.725026, -0.418684, 0.111435, 0.596750, -0.555341, 1.611905, 1.272542, -0.023220, 0.206478, 0.134233, -0.203241, 1.350970, -0.342681, 0.164155, 0.863499, -0.050786, 0.163347, 0.337377, 1.452552, 1.332757, 0.263455, 0.735801, -0.546056, -1.579859, -1.580557, -0.910682, -0.440208, -1.036152, 0.108445, -1.348276, -0.778949, -0.273071, 0.307473, -2.107667, 2.899087, -0.154676, -0.825747, -0.116451, -0.112139, -0.695980, -1.997260, -0.559540, 1.374828, 1.355160, -2.918503, -0.828328, -0.525038, 0.515643, -0.221758, 0.441751, 1.314681, -2.328024, -0.728079, 1.614282, 0.403975, 1.075355, 0.200915, 1.638984, -1.247847, 0.443415, -1.155030, 1.513093, 0.715488, -0.617151, 0.333406, -0.399340, 0.069123, 0.446708, -0.502536, 1.180051, 0.102046, -0.739725, 0.923782, -1.826780, 0.179978, -1.952412, 0.328875, -2.264256, -1.558819, -0.846077, -0.163427, -0.943234, -0.386209, -0.235066, 0.077537, -0.187691, -1.501340, -0.627953, 0.086696, 1.407023, -0.848803, -0.072817, -0.934108, 0.496366, -0.241809, 0.135577, -1.307954, -0.245559, 0.165330, 0.486256, -0.852865, -0.208494, 1.770206, 0.396216, 0.270409, 2.037633, -0.064223, 0.064612, 0.445806, -0.957088, -0.919547, 0.215573, 2.278594, -0.416339, 0.161316, -0.379705, 0.696427, -1.197473, -0.152829, -1.201155, -0.067571, 0.744421, -1.273772, 0.091633, -1.153070, 0.745280, -0.126027, -0.463737, -0.596977, 0.259205, 2.094970, -0.055123, -0.817826, 1.679727, -0.550194, 0.547040, -1.468360, 0.047270, 1.728018, 1.251678, 0.785110, 0.782004, 0.635047, 1.491072, 2.374910, -0.857646, -0.037283, -0.443378, -0.145824, 0.398244, 0.444377, 0.530464, 0.507240, 1.838416, 0.608443, -0.627736, -1.815393, -0.918009, -0.795143, -1.268468, -0.493845, -1.959881, 0.927852, -0.144308, -1.515496, -0.416742, -0.535321, -1.690671, 0.558452, -0.723324, 0.658306, 0.673020, -0.282153, -0.087523, -0.101062, 0.806614, -1.397657, -0.783966, 0.148817, -0.191359, 0.763614, -0.075771, 0.395182, -0.512973, 0.043773, 1.161476, -1.136248, -0.033076, 1.855701, 0.050423, -1.782616, 0.618242, 0.857557, 0.586584, -0.538299, -0.824793, -2.081231, 0.100155, 0.599181, 0.895736, 0.393109, 0.761994, -0.856217, 0.345470, 1.175187, 0.859146, 0.222996, 2.730433, 1.045481, -1.602272, -1.120842, 0.797835, -0.450566, -0.107617, 1.004892, 0.271661, -0.356596, 0.652141, -0.538075, 0.288047, 0.064005, 0.596706, -0.630322, -0.028489, 0.717982, -0.065484, -0.084068, -0.041005, -0.434164, -0.064324, 1.172602, -0.958908, -0.388051, -0.745537, 0.329071, 1.650854, -0.487696, 1.476046, -1.464900, 0.466550, 0.874340, -0.330703, -1.517606, 1.086196, 1.399697, 1.433387, -0.911661, -1.107046, 1.151739, 0.815799, 0.556304, 0.891766, -0.728414, -0.320747, -0.307799, -0.922006, -0.494039, -0.888249, 1.540241, -1.377076, -1.067262, 1.358926, 1.151412, 0.606119, -1.699460, -0.427536, 0.360005, 0.606905, -1.545228, 0.198811, 0.959342, 0.601874, -0.334327, -0.377551, -0.858046, -0.225197, 1.816804, 1.034932, 1.434679, 0.654734, 0.940643, -0.739575, -0.840147, -1.789858, -0.942806, -1.079719, 0.531839, 0.511425, -0.326281, -2.296900, -2.334516, -0.341631, -1.482882, 0.443912, -0.037954, 0.876560, -0.614322, 2.335886, -0.647980, 0.578187, 0.858352, -1.668314, 0.025324, 0.745265, 0.482212, -2.352133, 1.739185, -0.514463, 0.009494, 0.296828, -0.643168, 0.148094, -0.157162, 0.973446, -2.404760, 0.085901, -0.389550, 0.464780, 1.203284, -0.505066, -1.465330, 0.113142, -1.268466, -0.171102, -0.740924, 0.711941, 0.021854, -0.155897, 0.376086, -0.476774, 2.088704, -0.002063, -0.190758, 0.527170, -0.521759, -0.447835, -0.512182, 0.024397, -1.028813, -0.436797, 0.896304, 1.074301, -0.242409, 0.598928, 0.560371, -1.604305, -0.870563, 0.444375, 0.577974, -0.353234, 0.215623, 0.345611, 0.260071, -0.468246, -0.544294, 0.228037, 0.269647, -0.586471, -2.052550, 0.615393, -1.272593, -0.882642, 1.036288, 0.011614, 1.805478, -1.691650, 0.430511, -0.193104, -0.794786, 1.579785, 0.023423, -0.202144, -0.429140, -0.244490, -0.192104, 0.496623, -0.370862, 0.591385, -0.008358, 0.916484, 1.391264, 0.205551, -1.391085, -0.158767, -0.116726, 0.463252, -0.202024, 1.366361, -0.005888, -0.659149, 1.385597, -1.283743, 1.090053, -0.235352, -0.342533, -0.490919, 0.637522, 0.735195, 0.437611, -0.195301, -0.771487, -1.933584, 1.398047, 0.530650, -0.367794, -2.613991, -0.934382, 1.128839, 1.119543, 0.755983, 0.432306, -0.838827, -0.187274, 0.300638, 2.112506, -0.336808, -0.568510, -0.809779, 0.556836, -0.115932, 1.509196, 0.116030, -0.004545, 0.918701, -0.098034, 0.774322, 0.548438, -1.185807, 0.576253, 0.818708, 0.820646, -0.043009, -0.112975, 0.294283, 0.646336, -1.411424, 0.415686, 0.283050, 0.289867, 0.781490, -0.721728, 2.004668, 1.198695, -0.840073, 0.463102, 0.030390, -0.550954, 0.450995, -0.432116, 0.485383, -1.210767, 0.267810, 1.040128, -0.049312, -1.319735, -1.100990, 0.257950, 0.640590, 1.264726, -0.706996, 0.343020, 0.604296, 1.061179, -0.349471, 1.181923, -0.096113, -0.684709, 0.371165, -1.888668, -0.219498, -2.005449, 0.828665, -0.212407, -1.690258, 0.913129, -0.719772, -0.291366, -1.193654, -0.960187, -0.031259, 0.566043, -1.808817, 0.350319, -1.122654, 0.429573, 0.141642, -0.796642, -0.951431, -0.358224, 0.286029, 0.900678, -1.077279, 0.949549, -0.551130, 1.014358, 0.628007, -0.190322, 1.064191, -0.235220, 0.634681, -0.996202, -0.440077, -0.273290, -1.646487, 0.976593, 1.111389, -0.139303, -0.916863, -0.154713, -0.310510, 2.885064, -0.731374, -0.446964, -1.068459, 0.093839, 1.414929, -1.631422, -3.345341, 0.672032, 0.130001, -0.273509, 1.300311, -1.251719, 0.732780, 1.013213, 0.877303, -0.626863, 0.255106, -0.327187, -2.106743, -1.437281, 0.347722, -0.598641, 0.554328, -0.448056, 0.289314, -0.795904, -1.723003, -0.420764, 0.392462, -1.488810, -0.252925, 0.673444, -0.116164, -0.006031, -1.194115, 0.120299, 0.494225, 1.817080, 0.861764, 0.896387, 0.558066, 1.276631, 1.114552, -0.214774, 0.728033, 1.309181, 0.551700, 0.253694, 1.834876, 1.335530, -0.357923, 1.334914, 1.778314, -0.928489, -0.661655, -0.218289, -1.267311, -0.679976, 0.142578, -0.325426, 0.448539, -0.536486, 0.552878, -2.199202, -0.820706, -2.662360, -0.559948, 0.590066, -0.386476, 1.715975, 0.605198, 0.101238, 0.653559, -0.813276, 1.363169, 0.107939, 0.682765, -0.174299, 2.433555, -2.343627, -1.172672, -3.199686, 0.592968, -2.778187, -0.277380, 0.205596, 0.256554, 0.674087, -0.092992, 1.284310, -2.514184, 2.086236, -0.305648, 0.499562, -0.518138, 2.015840, -0.104281, 0.433778, -0.406942, 0.832048, -0.202261, 0.981248, -0.257785, -0.805417, 0.123813, 0.990685, 0.125278, 1.472102, 1.003173, 0.671391, -1.311633, 0.686317, -1.238560, 1.333381, -1.819972, 0.014583, -0.069385, 1.019034, 0.255380, 0.614337, -1.088945, 0.003024, -2.198287, -1.246073, 1.118342, 0.282005, 0.211082, -1.116343, 0.497717, 1.689003, -1.494971, 0.361726, 1.177114, 0.065296, -1.165127, -0.460834, -0.278577, 0.558672, -1.228186, 0.194247, -1.579477, -0.569127, -0.595906, 0.346841, -1.467514, 0.457670, 0.558748, 0.207878, 1.939161, 0.973660, -1.635622, 0.028355, -1.065006, -0.142816, 0.550287, -1.079264, -0.870758, 0.447781, 0.841872, -0.476380, -0.240467, 0.102527, 0.969131, -0.094159, -1.471724, -0.080538, -1.081234, 0.892425, -1.398874, -0.198271, -0.421002, 0.891942, 0.834312, 0.006150, -0.381829, -0.055182, 1.618491, 0.244830, 0.106999, 0.214148, 1.454636, -0.592663, -0.163587, -2.039119, -0.619669, 1.506373, -1.397350, -0.092203, -1.430567, -1.311889, 0.866339, -3.163515, -1.292274, 1.078179, -1.385464, -1.102093, 1.252812, -0.638390, 1.065954, -0.434725, -0.758999, -1.726670, 0.558720, -0.263322, 2.281444, -0.848641, -1.647519, 0.448649, -0.434710, -0.734985, -0.731943, -0.829069, -0.262430, 0.545340, 0.004613, -0.645514, -0.178483, -1.701218, 0.605534, -0.939845, -0.342279, -1.642277, -0.479832, -0.145732, -1.621380, -0.474369, -0.940053, -1.435311, -0.678221, -0.617701, 0.013875, -0.618717, -0.238223, -1.695965, -0.795559, 0.525432, -0.790244, -0.673575, -1.325514, 0.333026, -0.244594, -0.278886, 1.209369, 0.529215, -0.250697, -0.322201, -0.499480, 0.873978, -0.612866, 0.119325, 1.493435, 0.474964, -0.662750, 0.845538, -0.589458, -1.823233, 0.001842, -0.399125, 0.505185, -0.575673, 1.380647, 0.301480, 0.870098, -0.033522, 0.486709, -0.288075, 0.718362, -0.678294, 0.534405, -0.406838, -0.511154, 0.467546, -1.045277, 1.365833, -1.880154, 1.498577, -0.709347, -1.310839, -0.039387, -1.146252, 0.617003, -0.619881, -0.746843, -0.138104, 1.431202, -2.176347, -0.935408, -0.669361, 0.880733, 0.957628, 0.268094, 1.026087, -0.310804, -0.064648, -1.343621, -0.749944, -1.189768, 0.560676, -0.006086, 0.647117, -0.143102, 0.366470, -1.459244, 0.207666, -0.050755, 0.159965, -0.200505, -0.020746, 0.854998, 0.652354, 1.290493, -1.107352, 1.213934, 0.182142, 1.050795, 0.694052, 0.819290, 0.022826, -0.875291, 0.548073, -0.212302, -0.538839, 0.162168, 0.315788, -0.683053, 1.502058, 1.609384, -1.261816, -0.685542, -0.684384, 0.007175, -0.110525, -0.869473, -0.425027, 1.686312, 0.659582, -0.298156, -1.348327, 0.489380, 1.783486, 0.916291, -0.737333, 1.249722, 0.514340, -0.510650, 0.530287, 0.250790, -0.736731, 0.181218, -0.609399, -1.763146, -0.497334, -0.770102, 0.095765, -1.833470, 0.925065, 0.506651, -0.567896, 0.583574, -0.652694, 0.126927, -0.351854, 0.652261, -0.436328, 0.391945, 1.146941, -0.434520, 0.529063, 0.861122, 0.339439, 1.227181, -1.659411, -0.013468, -0.860145, -0.876674, -0.323090, -1.342286, 0.985412, 1.335472, 1.285018, -0.414086, 0.706340, 1.217383, -1.440695, -1.289047, -0.901490, 0.064526, -0.976088, -1.134814, 1.058022, 1.333273, -1.043313, 1.321891, -0.109960, 0.415771, -0.555932, -0.218403, -0.272969, 0.012761, 1.984532, 0.607617, 0.254116, -0.836948, 0.008405, -0.437715, 0.925419, -1.637382, -0.340474, -0.840463, 0.789162, 0.651031, -0.740322, -0.042824, -0.835316, 1.587364, -1.205372, 1.065413, 0.206891, -1.447811, 0.218973, 1.567639, -0.069754, -0.592155, 0.493281, -0.486558, 0.280744, 0.024010, -0.244175, -1.648609, 0.398642, 0.853410, 0.841394, -1.058714, -0.362462, 0.114567, 0.793381, -0.883279, -0.650965, 0.746007, -0.115356, -0.482327, 1.628481, 0.236334, 1.122638, -1.048374, 1.581355, 0.506680, -0.692447, -0.609296, -0.172604, 0.241335, 0.686081, -1.350582, -0.115404, 1.202263, -0.633033, 0.831468, 0.726793, 0.957572, 0.287042, 0.682826, -0.378327, 1.541249, 1.235914, -0.271342, 0.884730, 0.517920, 0.573293, -1.544325, 0.568943, 0.392183, 0.010682, 1.129690, 0.402858, -0.785571, -0.034727, -2.560512, 0.188622, 0.745281, -0.321471, -0.854352, 0.548736, -1.234354, 0.925957, -0.348154, -0.514366, -0.318813, -0.078934, -0.679750, -0.641392, -0.780845, 0.292700, 1.477203, 1.252533, -0.487051, 1.386790, -0.283977, -0.414354, 2.309083, -1.303284, -1.817065, 2.495653, 0.570511, 1.004694, -1.787725, -0.109871, 0.772058, 0.354526, -1.424405, 0.351693, 1.292659, -0.805693, 0.709871, -0.064224, 0.006072, 0.584756, 0.345615, 0.680089, -0.002734, 0.929262, 1.790102, 0.403073, 0.035194, -0.128437, 0.348572, -0.019493, 1.196981, 0.015461, -0.814024, 0.578597, -0.338844, 1.393876, -2.222345, -1.074805, -1.098250, 1.403857, 0.239371, 0.242014, -0.168282, -0.834605, -0.169059, -0.441645, 0.674441, -0.058228, 1.028264, -0.642770, 0.243626, -2.634166, 0.475228, -0.785591, 0.396225, -0.374844, 1.215585, -0.801908, 0.236088, 0.706994, 0.545217, 1.517945, 0.192899, 0.501366, -0.631635, 0.236042, -0.540647, -0.263529, 0.237750, -0.053088, -1.466106, 0.455937, -2.141427, -0.836912, 0.588601, -0.975322, 1.501426, -0.488858, 0.361602, -0.299698, 1.375798, -0.829770, -0.992468, -0.744957, 0.585658, -0.994177, 2.133005, 0.604265, -0.996530, -0.465949, 1.118589, 0.851781, -0.144288, -0.101109, 0.137684, 1.061046, 0.593670, 0.726586, -2.675390, 0.410663, 3.586453, -1.170571, 0.761411, 0.570526, 0.058953, 0.334523, -0.317482, 0.765881, -0.984257, 0.277280, -0.645113, 1.966093, -0.054017, -0.355771, 0.317502, 0.375538, -0.572351, -0.784479, -0.759979, 0.617876, 2.447737, -0.611156, -1.340673, 1.201098, 1.263286, -0.695809, -0.849187, 0.489012, -0.593956, 1.253131, -1.305665, -2.177678, -0.331286, 0.656302, -1.700598, 0.379237, -0.432112, 0.602720, -1.667386, 0.433250, 0.815467, -0.539471, -1.729565, -0.670985, 0.587887, -0.535748, 0.569673, -0.046745, -0.316038, -1.027328, 0.329559, -0.438133, -0.490015, 1.594848, -0.810045, 0.152105, -0.370337, 0.507324, -0.490510, -0.619391, 0.738050, 2.072518, -0.701880, 0.737407, 1.642830, 0.444321, -0.056485, 1.961288, -2.354003, -0.072037, -1.669549, -1.858596, -1.504215, -0.187371, -1.909644, 1.805385, 0.474356, 1.042067, 1.114747, 1.282275, -2.188725, 0.916882, 0.557736, 0.231816, -0.232051, 1.619510, -1.054217, 1.125998, -0.969100, -1.266579, -0.670209, 1.139490, -0.745597, -0.210947, -0.861337, 1.652766, -0.788320, -0.743822, -1.602206, -0.541056, -0.435770, -0.921485, 0.298054, -0.194899, 0.297088, -1.667046, 1.158349, -1.590320, 0.414036, -0.432755, -2.415697, -0.659518, -0.910445, 0.927733, -1.120275, 0.467300, 0.314042, 1.976022, 0.219947, 0.078395, -0.305890, 0.632552, -1.611635, -0.042283, -2.069789, 1.824029, 0.656008, -0.195056, -1.214351, 0.264522, 0.542187, 1.487073, 0.789542, 1.059119, -0.075870, 1.013427, -0.477173, 0.269869, -0.652294, -1.358589, 0.979331, 1.116919, -1.049375, 0.310614, -0.407688, 0.020530, 1.320260, 1.443595, -0.748712, -0.857938, -0.717673, -1.553223, 1.203013, 0.642697, -1.534610, 0.789280, 0.175633, -0.374085, -2.547447, -1.186978, 0.375963, 1.387543, 0.124566, -0.516787, 1.271062, -0.065854, -0.847381, 0.903283, -0.780442, -2.487500, -2.253640, -0.094605, 2.027686, -1.033854, 0.266449, 1.438877, -0.728771, -1.543139, 0.433430, -0.635535, 1.145563, -1.158888, -0.290143, -1.062991, 1.411065, -0.402367, 0.471370, -1.789846, 0.517319, -1.047263, 1.051822, 0.521338, -0.347231, 1.102154, -2.125638, 0.331757, -0.536398, 2.839321, -1.337101, -1.270588, 1.618598, 1.558441, -1.472812, 0.978768, 1.095047, 0.878453, 1.522101, -0.169450, -1.881421, 0.041783, -1.933428, -1.272658, -1.099831, 0.698799, -0.912297, -1.302414, -0.967370, -0.062387, -0.578776, 0.323390, 0.067520, -0.656164, -0.334443, -0.177343, 0.539449, -0.386821, 1.444985, -0.566086, 0.779453, 0.262055, -1.547493, 1.821644, -0.087003, -1.189743, -1.263727, 1.172478, 0.740028, 0.984671, -0.244013, 1.409685, -1.013735, -1.044181, 0.894445, -0.094312, -1.005935, 0.617880, -1.153423, -0.741734, -0.645282, -0.585838, 1.003105, -0.323091, 0.961363, 0.592898, -0.338686, -2.720963, -0.033931, 2.024170, 1.681945, 0.326379, 0.083399, -0.803196, -1.157355, -0.842997, 1.711657, -0.408833, -0.470732, -0.591740, 0.085203, 1.794521, -0.383445, -0.516549, -0.873501, 0.910886, 0.068872, -0.265310, -1.044059, 1.075193, -0.896742, 0.162181, 0.465172, -0.075295, -0.028526, -0.453873, -2.491138, -1.103367, -0.410223, -0.491504, -0.620867, 0.100039, -1.076069, -0.328097, 0.751399, -0.429668, 0.966350, -0.511710, 1.301603, -0.823436, 0.910685, 0.649541, 0.257834, -0.036782, 1.671105, 0.120764, 0.982925, 1.131655, 2.069821, 0.236031, -0.870674, 0.081054, 1.590142, -0.501175, -0.566931, -0.516470, 0.209410, 0.205497, -0.705121, 0.985071, 0.759925, 0.781093, -0.428546, 1.261780, -0.083528, 0.920203, -0.312253, -2.609334, -0.286968, -0.500162, 1.315484, 0.891519, -1.018784, -1.285232, -0.523674, 0.528247, -0.174721, 0.384928, 1.811198, 0.517066, -0.059081, -0.801826, 0.752000, -2.036761, -2.350544, 0.212618, 1.330320, 0.024189, 0.418928, -1.608373, 0.199062, 0.441548, -0.525658, 0.105482, -1.362616, 0.953430, 0.748849, -0.677355, 0.584905, -0.634090, 0.233904, 0.982807, 0.509537, 0.458873, 0.173705, -0.444020, 0.445336, 0.041020, 0.544738, -0.153590, 0.117306, -0.317249, -0.024588, 1.244830, 1.156654, -1.606700, 0.742057, 2.044751, -0.405146, -1.185307, 0.249288, -0.366873, -0.274687, -0.569499, -2.202950, -0.546792, -1.745989, 0.123779, 1.312750, 0.288120, -0.107591, 0.808838, 1.379432, -0.849142, 0.815486, -0.251258, 0.466500, -0.850278, 0.503180, -0.218065, -1.253637, 0.835728, -1.202638, -0.245552, 0.062515, 0.886108, 1.236440, -0.530222, 0.410336, 1.243686, -0.183674, -0.039397, 0.451284, 0.481612, 0.508805, 0.461431, 0.539364, 1.497278, -0.276442, -0.327327, -1.008459, 0.690461, 1.445435, 0.451333, 1.488243, -0.894386, 0.296445, -0.082720, 1.071635, -0.125299, -0.603705, 2.131453, -0.596367, -0.884052, -1.093542, -0.342706, -0.020823, 0.674616, 0.004123, 1.739355, -2.153884, 0.555722, 1.068139, 0.274012, 1.681075, 1.163319, 0.478205, 1.945848, 0.130181, -0.408861, 1.495626, -0.954710, 0.009036, 0.743086, 0.622465, -0.646933, -1.070030, -0.929744, 0.951051, -1.284070, 0.378749, -0.120382, -0.253044, -0.119507, 0.724068, -0.888674, 1.712628, 2.459184, -0.636090, -1.982919, -1.283465, -0.716452, 0.426833, -1.473497, -1.381743, -0.259281, -0.170721, 0.772125, -0.643037, 1.138432, 0.479766, -0.787350, 0.369062, 0.808883, 0.890365, -0.831740, 0.420817, 1.128937, 0.801518, -0.331785, -1.538298, -0.965302, 0.486890, 1.091202, 0.382622, -0.801824, -1.565545, -1.012647, -0.232369, 0.425066, 0.465670, -1.097054, -0.969533, 0.565347, 1.632298, 1.021248, 0.351722, 1.441757, 0.099544, 0.417781, 0.482504, -0.857564, -0.297370, 0.428571, -1.386769, -0.125291, -1.034554, -1.681601, -0.461081, -0.877713, -0.753453, 0.989447, 0.216936, 0.941574, 0.683167, -1.290300, -0.735760, -1.719968, 2.398976, -1.124289, -0.498528, 0.642133, 0.787628, -2.198217, 1.260803, 0.156359, -0.154648, 0.451952, -0.748612, 0.571192, -0.697768, -1.085944, 0.245045, 1.922087, -0.275707, -1.384893, 0.311673, -1.741204, 1.487895, 0.213302, 0.415759, 0.751946, -0.896216, -0.148201, -0.118499, 1.131209, 0.645428, -0.976218, 0.086370, 0.274075, -0.365409, 1.200594, -0.550582, 0.842177, -1.025388, 0.594050, 0.230820, 1.576052, 0.704692, -2.029278, -2.054396, 0.684060, 0.190030, -0.217915, -0.656299, -0.565849, -1.333886, -1.810853, -0.030625, 0.646317, 0.248950, -0.469804, 0.998340, -0.450709, 0.702924, 0.033902, 1.492740, -0.535172, 0.873607, -0.002429, 2.179865, -0.139646, -0.385429, -0.452533, 0.457510, -0.374115, 0.604039, 1.235351, 1.300399, 0.684936, -1.011588, 0.600731, 0.689640, -0.828593, 0.290439, 0.908194, 0.654161, 1.024418, 1.720547, 1.083159, 0.929031, 0.998807, 0.360034, 1.057415, 0.509025, -1.591980, 0.763424, 0.350928, -0.084699, 0.073030, -0.956351, 0.252388, -0.204467, -0.370431, 1.356337, 0.465546, 0.430860, 0.710963, -0.995503, 2.361601, 0.113372, 2.022394, 0.474875, 0.634539, 0.143694, -1.129102, 0.355598, -1.301660, 0.242280, -0.466966, 0.616472, 0.954021, 1.104713, -1.493732, -2.318650, -1.043088, -1.207898, 1.286743, -1.384719, 0.668639, 0.185861, -0.123741, -0.048825, -0.232838, 0.450620, -1.225807, 1.468203, -0.150641, -0.327383, 0.554870, 0.881702, -1.404688, 1.050395, -0.350600, 0.800071, 1.189997, -1.175194, 0.814702, 0.984401, -0.504228, 1.619049, -1.002960, -2.215406, -0.131022, -1.318819, 1.603725, -0.226002, -1.365246, 0.030934, -0.573978, 1.222332, 0.595702, 1.050356, -0.454836, -1.099639, 2.134368, 0.526937, -0.748041, 1.670449, 0.034820, -1.542539, -0.017937, -0.861025, -0.702860, 1.125740, -0.701439, -0.536227, 0.080808, 0.583683, 0.457965, 1.273315, -1.112688, 0.070677, -1.064009, 0.185678, -0.329471, 0.647069, -0.367284, -0.287561, -0.506998, -0.700610, 0.198115, -0.506856, -1.778391, 0.111008, 0.771120, -0.970763, 0.346747}, - { 0.409908, 0.582276, 1.311964, -1.054459, 0.832528, 0.430378, 0.902869, 0.745239, 1.406766, -0.218227, 0.192160, 0.866107, 0.903709, -0.904399, 0.816803, -1.880733, -0.058023, -0.561100, 0.386290, -2.321174, 1.157113, -0.041630, -1.040663, -1.065882, 0.429965, 0.178342, -1.260052, -0.335775, 1.965138, 0.798680, -0.955848, 0.924315, -0.442087, 0.814785, 0.313010, -0.633068, 1.616825, 0.753163, -0.356732, 0.443112, -0.313713, -0.450178, -0.115374, -0.382737, 0.620388, -1.550437, -0.668137, -1.452407, -0.980949, -0.526877, -0.183260, 0.011653, -0.398501, 0.212189, -0.395186, 0.470114, -1.327988, 1.699219, -0.323491, 0.541221, 1.622500, -0.893206, 1.442624, 0.489302, -1.430065, -2.164297, 0.022938, 0.642795, 0.492310, -1.922054, -0.011958, -0.486573, 0.771746, 0.527452, 0.468845, 1.563627, 0.877346, 0.021083, 0.855523, 1.321551, 0.208227, -0.875822, 2.103915, -0.875871, 1.110955, -0.036753, 0.251333, -0.549615, 1.738173, -1.628670, 0.003033, 0.999710, 0.070975, -1.117468, -0.441240, -1.451016, 0.343559, -0.446525, -0.217744, -0.286274, -1.414481, 1.375340, -0.175890, 0.988623, 0.352310, -0.865454, -0.225763, 0.368764, -0.576945, -1.223433, -0.051848, 0.183470, -1.149368, -0.680321, 0.681218, -1.968300, -0.673023, -1.441279, 0.509003, -0.218171, -1.532217, -1.421965, -2.325474, 1.354197, -2.006501, -0.050293, -0.416419, -0.378692, 1.943797, -1.801330, 0.351420, 0.830723, 0.295423, -1.466302, -0.288266, -0.041113, 0.571690, 0.350977, 1.112760, -0.151946, -0.321354, 0.211343, 0.687454, -0.248542, -1.891091, -0.294927, -0.310695, 2.018778, 0.499433, -1.730709, 1.962916, -0.061949, -0.318423, -2.131998, -0.873665, 0.825859, 1.738037, 0.859827, -0.202625, -0.440882, -0.182377, 1.061060, 0.838909, 1.327776, 1.239482, 1.107943, -0.944877, -0.085000, -0.749307, -0.191363, -1.376120, 0.078277, -0.583651, 0.172937, -0.851299, 1.614857, -0.063964, 0.643686, -0.916212, -1.089560, 0.897349, -0.617896, -2.968133, 1.018177, -0.447699, -1.068597, -1.028228, 2.171334, -0.710245, -1.653350, -0.908564, 0.589236, 0.272454, -1.585294, 0.889527, -1.756469, -0.040843, -0.665333, 0.921856, 0.138165, 0.046379, 0.432372, 1.128069, 0.457529, 0.765237, 0.428574, 0.102245, -0.488000, 1.016622, 2.475426, -0.147162, 0.138517, -1.026236, 0.268533, -0.475233, 0.859584, 0.611671, 1.303325, -1.020380, -0.271066, 1.439291, 0.358347, 0.783648, 1.546133, -0.935960, 1.125614, 0.337609, 0.797714, -0.158297, -0.744851, 1.455745, -2.192103, -0.137178, -0.751323, -1.227651, 0.154032, -1.664935, -1.464460, 0.317755, 0.406277, -0.221770, 0.039205, 0.390808, 0.492500, 0.984675, -0.456647, 1.058132, -2.350466, 1.932157, 0.023220, 1.933352, 0.365043, 0.187923, 1.348667, -0.433540, 0.944000, 0.960082, 0.633741, 0.636765, 1.163002, 0.005239, -0.110356, -0.706302, 0.712455, -0.152990, 2.198596, -0.139108, 0.309379, -0.101794, 0.136156, 0.473504, 1.304105, 1.066694, 2.123196, 1.371330, 0.047305, -0.789470, -0.448335, 0.749722, 0.020230, 0.109932, 0.227158, -0.084740, -0.698813, 0.425909, 0.985717, 0.731053, 1.423869, -2.743297, -0.713958, 1.605817, -1.256965, -0.477088, 0.611421, -0.743723, 2.063783, -0.549955, 0.171991, 1.038456, -0.601226, -0.765831, 1.484166, 0.260612, -0.333062, -0.785957, 0.992547, -1.254646, -1.366816, 0.159724, -0.362946, 0.157405, -1.056875, 1.307636, 1.297363, 0.443354, -0.932141, 0.420463, 0.959388, 0.990643, 1.460794, -0.377268, 0.322756, 0.988900, 0.249897, 0.568699, 0.754652, -0.353719, -0.552106, -1.388044, -0.379368, -0.001216, 1.063109, 0.436455, -0.671526, 0.825799, -0.867047, -0.979883, -0.855629, 0.752914, 0.876888, -0.751172, 1.419129, 1.181724, -0.519659, 0.771543, 0.312507, 1.692175, 1.667514, 0.868514, 0.808562, -1.053951, -0.433701, 1.661352, -0.789852, -0.074643, -0.702685, -1.257512, -0.060645, -1.374826, 0.186024, 0.512602, 1.368699, 0.134232, -0.119482, -0.095966, 1.198072, -0.401850, -0.502141, -0.338209, -0.408769, 0.101234, 1.303797, -0.253414, -0.607334, 0.524647, -0.506240, 1.224115, 1.741701, -0.203538, 0.912607, -0.390335, -0.376619, -0.161206, -0.821843, -0.161002, -0.067802, -0.842999, 0.996339, 2.430216, -1.757152, -2.216976, 0.613652, 0.465190, -1.622498, 0.109849, -0.253659, 1.166501, 0.216974, 0.280325, -0.036942, 0.476497, -1.692178, -0.414191, -0.976745, 0.480581, -0.861702, -0.185718, 0.380361, -0.433831, 0.637417, 1.446664, 0.949438, -0.536184, -2.041553, 1.144063, 0.568712, -2.313628, 0.824426, -0.509415, 1.666306, 0.237994, 1.518234, 1.353820, -2.798833, -0.411048, -1.114572, -1.020491, -1.825579, -0.362038, 1.410702, 1.031929, -0.238968, -0.429286, 0.043428, 0.731514, -0.586612, 1.215725, -0.721166, -0.206342, 0.211199, 1.788225, -0.998786, 0.974485, -1.827374, -1.230705, -0.726955, 1.047457, -0.062208, -0.763971, -1.523687, 0.917158, -0.988424, -1.161427, -0.346879, -0.197039, 0.915261, -0.842068, -0.195400, -0.643502, 0.810626, 1.171615, 0.209699, -0.073442, 1.591856, -0.069389, 0.855879, 0.134319, 0.331897, 0.111074, -0.029078, 1.288100, -0.822784, 0.001466, -1.050695, 1.771848, 0.699176, -0.057512, 1.111084, -0.730493, -1.147402, 0.821703, -0.627277, -0.932667, -1.383188, 0.507898, -0.198115, 0.197719, -1.037032, -2.587059, 1.008726, -0.575790, 0.967026, 1.274888, 0.458998, 0.300344, 1.407893, -0.162172, -1.012545, -0.829946, 0.641104, -0.107428, 0.088596, -0.756541, 0.914786, 1.131351, -1.353161, -0.279496, -0.501996, -0.968373, -0.826646, -1.494472, -1.476189, 1.697711, 1.341249, 0.764334, 1.747088, 1.018852, 0.764046, 0.912349, -1.026535, 0.210337, 0.262009, 0.769123, 0.593756, -2.351957, 1.563581, -0.184778, 0.778475, 1.738240, -0.655113, -0.051285, -0.196781, -0.453700, 1.298487, 0.376126, 0.408739, -1.091744, -1.056242, -0.516689, -1.849846, -0.398093, -2.871715, 0.859495, -0.834490, 0.962508, -0.311433, -0.070967, 0.295410, 0.098015, -1.624880, 0.765971, 0.874205, -0.884845, -1.480019, 1.045536, -0.680949, 0.563561, 0.328462, 1.122605, 1.597750, 0.916032, -0.990478, 1.067310, 0.185697, 1.695216, -0.269176, 0.526356, 1.088921, 0.715407, -0.089960, 2.038435, -0.993667, 0.504213, 0.849560, -0.000506, 0.327816, 0.703210, -1.366296, -1.473948, -0.849526, 0.420181, -0.358080, -0.629695, -0.763295, 0.507746, 0.364476, 0.543309, -0.149095, 0.251752, -0.449275, 0.465961, 0.467304, 1.462359, -0.016500, 0.003094, 0.544809, -0.208563, 0.620111, 1.156103, -1.112897, 0.422560, 0.407092, 0.308105, -1.424698, 0.443183, 0.936462, -1.117379, 0.270196, -0.533629, 0.556330, -0.226714, 0.065734, 0.986329, -1.455766, -0.193962, -0.844694, -0.153923, -0.643141, 0.317480, 0.669921, 0.435803, 0.984172, -1.233417, 1.042071, -0.683324, 0.492866, 1.865027, 0.223998, 0.766854, -0.907247, 0.604806, 0.164331, -0.357828, -2.546036, 0.754787, 1.559605, 1.111737, 0.002199, 0.068542, 0.737030, 0.615009, 0.548836, 2.004968, -0.045482, -0.674021, 0.947873, 0.562988, -0.009845, 0.695911, -1.866241, 0.766797, 1.693043, 0.756199, 1.132172, -0.592413, 0.821245, 0.585884, -0.821381, -2.451530, 1.129947, -0.018487, -1.934286, 1.095247, -0.728015, -0.644095, -0.029135, 1.339558, 1.153280, 1.390428, 1.763259, -0.319450, 0.600169, -0.213737, 0.566028, -2.096532, 0.351959, -0.959853, -0.421023, -0.573212, 0.121546, -1.306578, 0.202237, -0.461886, 0.979022, 0.354086, 1.751630, -0.990077, 0.142234, 0.610291, -0.077412, 0.884330, -0.261357, 0.238653, -0.262235, 0.127551, 0.273313, -0.161901, -0.051417, -1.420711, 0.309665, 2.403347, -1.738069, 0.727519, -0.118253, -1.288735, -1.856929, 0.685709, 0.497439, 0.779481, -1.426642, 1.160802, 0.908459, 0.167577, -0.551309, -2.273783, -0.962705, -0.434608, 0.161123, 0.101692, -0.257972, -1.362912, -0.209996, -2.265794, -0.302804, 0.013763, -0.337076, -0.882852, -0.456577, 0.766380, 0.041471, -0.209193, -0.137195, -0.482485, 0.241742, -2.119477, 0.086744, -0.389172, 0.381749, 0.276606, -1.609915, -0.458701, -0.125407, -1.366648, 0.095588, -0.426226, 0.017309, 0.701474, 0.511645, 0.120088, 0.055152, -0.637502, -0.110142, -0.059958, 0.279743, -0.585360, 0.473218, 1.775236, 0.051215, -0.828190, -0.277455, 1.814895, -0.080994, 0.052288, -1.227556, -1.159643, -0.581847, -1.608744, -0.870961, 2.447831, -1.337726, -0.018584, -0.605042, 0.506109, -0.030980, 1.160748, 0.013513, 0.883104, 0.534186, -0.591840, 1.496500, -1.080726, -2.251199, -1.866547, -0.103390, -1.996742, 0.088564, -0.082176, -1.324550, -0.304280, -0.037279, 0.652834, -1.166344, -2.440400, -1.727440, -0.567315, 0.252025, -0.543111, -0.807048, 0.669629, 0.863753, 0.276462, -0.361700, 0.054160, -0.381928, -1.419399, 1.475271, -0.568859, 0.628991, -0.636045, 0.951173, 0.291302, 0.328473, -1.923165, 0.923573, 1.608702, -0.104370, -0.028099, -0.578809, 1.392398, 0.658191, -0.569352, -0.370081, -0.562134, -0.514905, -0.853603, -1.959628, 1.197784, -1.309368, 1.868159, 0.444414, -1.602523, 0.039608, 2.050299, 0.084641, -1.043518, -1.580193, 0.954352, -0.561920, -1.296435, 0.853176, 0.479274, 0.429846, 1.955928, 0.783883, 1.862621, 1.346323, 0.408807, 1.225363, 1.800576, 1.341598, 0.226735, -0.040664, -0.532752, 1.744666, -0.248951, 0.448418, -0.274410, 0.064832, -0.418159, 0.835974, -1.225230, -0.460793, 1.661070, 2.463482, 1.105623, -0.003208, 0.045564, 0.932880, 0.830632, -1.017872, 0.277654, 0.738355, 0.387206, -0.044935, 0.870232, -0.532378, 1.386862, 0.929535, -0.223404, 1.664861, 0.703730, -1.271831, 0.181517, 0.640966, 0.452324, -0.743603, 0.172865, 0.834765, 0.073203, -0.416488, -1.364738, 0.185006, -0.644653, 1.425682, -0.150555, -0.198282, -0.153871, -1.434271, -1.057852, -2.044396, 1.271546, -1.196192, 0.130081, 0.796638, -1.240782, 0.293070, 0.146253, -0.388991, -0.352213, -1.100912, -0.266669, -0.122873, -1.260185, 1.329920, -0.995664, 1.090963, 0.690916, -0.248645, -0.901379, -1.584774, -1.375311, -0.404270, 0.759930, 0.970213, -0.472302, -0.652358, 0.369275, 0.714357, -0.814169, -0.839337, 0.370494, -0.826943, 0.122689, -0.052145, -2.384148, 1.329444, 0.368395, -0.570344, -0.290844, -0.512962, 1.459268, -0.480818, -0.500475, 0.142581, 1.105771, 0.239673, 0.872124, -0.731333, 1.111738, -2.154590, 0.853989, -1.648155, -0.035936, 0.636597, 0.153739, 0.196882, -0.349101, 1.310808, 0.223587, -0.670855, 0.679243, -0.420429, 0.262063, -0.738886, -1.289061, -1.160561, 0.057189, 0.729912, -0.656857, -2.879934, -0.139869, -1.741828, 0.194913, 0.823664, -1.454858, 0.105603, -0.709284, 0.417254, 0.995143, 0.155165, -0.186902, 0.877764, 0.655356, 0.681621, 0.325412, 1.028397, -0.501824, -1.726635, -0.542467, -0.690013, 0.859538, 0.212175, 0.540866, -0.374412, -0.140377, 0.008116, 0.018931, -1.823062, -0.732869, -0.643282, 1.385137, -0.056922, 1.057391, -0.208040, -0.460406, -0.103935, 1.441333, -1.904379, -0.510183, -0.405419, -0.796754, 2.396399, -0.701381, -0.007511, 0.069492, 0.294715, -0.154859, -0.628436, -1.078077, 1.471869, 0.125116, 0.511088, 0.675188, -0.600438, 1.019678, -0.265204, 1.966701, 0.273941, -0.371851, -0.665726, -0.221919, 0.844087, 0.202418, -1.302562, 0.151592, -0.770936, -1.569476, -1.215336, -0.643915, 2.026972, -0.572566, -0.148806, -0.207398, -0.456646, 1.036585, -0.394498, -1.107204, -0.782402, 0.093280, 0.087486, 0.330014, -0.494551, 0.483321, 0.552614, -1.293930, 0.042798, -0.767029, -1.264153, 1.258960, -0.229014, -0.862555, 1.070873, -0.147420, -2.267936, 1.556768, -0.569368, -1.394505, 0.361904, 1.975332, 0.744779, -0.568325, 1.920954, 0.230437, 0.510206, 1.311355, -0.798712, -0.738229, -0.152801, 2.162214, 0.116923, -2.371498, 0.319140, 0.525487, -0.268055, -0.952228, 0.429581, -1.902514, 0.998997, -0.454208, -0.092029, 0.776615, -0.515946, -2.065968, 0.482177, 3.124551, 0.402158, 1.249676, -0.292114, 0.826194, -0.926607, 1.435737, -0.465372, -1.238300, 1.441703, -1.042321, -1.150746, -0.800118, -0.992408, -0.887902, -0.464058, 1.949114, -1.008783, 0.009846, -0.989970, -0.727241, -0.792080, 1.160738, -0.789825, 0.432581, -0.042803, 0.053161, -0.103631, 0.161133, -0.035112, 0.041306, -1.272356, -0.573906, 0.901059, 0.617861, 1.261514, 1.059692, 0.492684, 1.048386, 1.165794, 1.428501, -0.708478, -0.203454, 3.044986, -0.759792, 1.184809, -0.261273, -2.471827, -0.732997, -1.174680, 1.021537, 0.949185, 1.649647, 0.253847, 0.219320, 1.345048, 0.489831, -0.944415, -0.884002, -0.463005, -1.328959, -0.770863, 0.612242, -0.517209, 0.098078, -1.285115, 0.202710, 1.792981, 1.931767, 2.495579, 0.673623, -0.625698, -1.263043, -1.057640, -0.911959, 0.120750, -1.124592, 0.294848, -1.479637, 0.442893, 0.522740, -0.196854, 0.016869, 1.060562, -2.004514, -1.162747, 0.405720, -0.504936, 0.231156, -1.458659, -0.542273, 2.877477, -2.529186, 1.338650, 0.184364, -0.074516, 0.339198, 0.805550, 0.950739, 0.844520, -0.222403, -0.943756, -0.816075, 0.110591, 0.351606, -1.306264, 1.206411, 0.848837, -1.208389, 0.118189, 0.948697, -0.008606, -0.864731, 0.084665, -0.658165, 0.052586, 0.531414, -1.491343, 0.058960, 0.580589, -0.033685, 0.145493, -1.614268, -1.030610, -1.003680, 0.998129, -1.904596, -0.788919, 0.305760, 0.733143, -0.045289, 0.328297, -2.640179, -0.465894, -0.694010, -0.685013, -0.772948, 1.990243, -1.360419, 2.311902, 1.706670, -0.784185, -0.626436, 1.234494, 0.949730, 1.181579, 2.214518, -2.658259, 0.607514, 1.161113, 0.004014, -0.715428, 0.249958, 0.440261, -0.237998, 0.207727, 0.315768, 0.892851, -0.299258, 1.110276, 1.041579, 0.204965, 0.158738, 1.553742, -0.096950, -1.184076, -1.131238, 0.411929, 0.627084, -0.471571, 0.715773, -1.566883, 0.419095, -0.081388, -0.010002, -0.824814, 0.715507, -0.550462, -0.033819, -0.596240, -2.174700, -0.373795, -0.754979, -0.397065, -0.628341, -0.232232, 0.162759, 1.424263, -0.320755, 1.942092, -0.191240, -0.558674, -1.866335, 0.855271, -1.737952, -0.048434, -2.124802, -1.995343, -0.968727, 0.869197, -0.204666, 0.801081, 0.973553, 0.902717, 0.662450, 1.091432, 1.422639, 1.584685, -1.254415, 0.611742, 0.661950, -0.186852, 0.658488, -1.861050, -0.673881, -0.232343, 0.659785, 0.809494, 0.492537, -0.490473, -0.046470, 0.607086, -1.497652, 0.852324, 0.580567, 0.369048, -0.892198, 0.842151, 0.999987, 0.624302, -0.476671, 0.409741, -1.228167, 0.680385, 0.763556, 0.309534, 1.488309, -0.057464, -1.246628, 0.103089, 0.085377, -0.737745, 1.076242, -0.341761, 0.446436, 0.202747, 0.586349, 0.431602, -0.282113, -1.492004, 1.929537, 0.644536, -1.360248, 0.264344, 0.941803, 0.465146, -1.531090, -0.422117, -0.029534, 0.335762, 1.210280, -0.740087, -1.010148, 0.171750, -0.186299, -1.306489, -0.391162, 1.197327, -0.218154, 0.176300, 1.011836, -1.614053, -0.597980, -0.422629, -3.667158, 0.475690, -0.079081, 0.413093, 0.107142, -0.459022, -0.018302, 1.050148, -0.548957, -1.484306, 0.743450, 0.064349, 0.533538, 0.995779, 0.172829, 1.342288, 1.699744, 0.141162, -1.834983, 1.800669, 0.074626, 0.549243, -1.611536, 0.498372, 0.218540, -0.323981, -3.178814, -0.459279, -0.677585, -1.659007, 0.820648, -0.745100, 0.990579, 0.470108, 1.383495, 0.432831, 0.570695, -0.351455, 1.333411, 0.413521, 0.507380, 0.825225, -0.965419, 1.125373, -0.123128, -0.547582, 1.610770, 0.466908, 0.247782, 1.795272, 1.250457, -0.509169, -0.468864, 0.844996, -0.544065, 0.044920, 0.467544, 0.491336, 0.742394, 0.324425, -1.227934, 1.418629, -0.874595, 0.672965, -1.220739, 0.313679, -1.040592, -0.257430, -0.772283, 0.463976, 0.904858, -0.423706, 0.385976, 0.604603, -2.004493, 1.551156, 0.121624, 0.331786, -2.067015, 0.652161, 0.788975, 1.927251, -0.225069, 0.452049, -0.885968, -2.142622, -0.846300, -0.319797, 0.136102, 1.569549, 0.634689, 0.123892, -1.402743, -2.021199, 0.782764, -0.269002, -0.648824, 1.507893, -0.630665, 0.905849, 0.187648, -0.261251, 1.810144, 1.755072, 1.101681, 0.149522, -1.054558, -1.034126, 2.148272, -0.088384, 0.862755, 1.221365, 2.707767, -0.337489, 0.174368, 0.610173, -0.689638, -0.922347, 0.435131, 0.776709, -0.083182, 0.514931, 1.564222, -2.197662, -0.657233, 1.328955, 1.069213, -0.009906, -2.669116, -0.711315, 0.548057, -0.162152, -1.977780, 0.553921, 1.036759, -0.288389, 0.044865, -0.702101, 1.309726, 1.115567, -0.785533, -1.972265, 0.168054, -1.243447, -0.495334, 0.148568, -0.733246, 0.743215, -0.152734, -1.797134, 0.396027, 0.276630, 0.966303, 1.287967, -0.976340, 1.749413, -0.110938, -0.019896, 0.584480, 0.355363, 0.184050, -0.077445, 0.941078, 0.612535, 1.173607, -1.662167, -0.638423, 0.113256, -0.518196, -0.271571, -1.735027, -1.531056, -0.654158, 0.276913, 1.560259, -0.221700, 0.256295, 0.295537, -0.452999, 1.778863, -2.121970, 0.943871, 0.437470, -0.259539, -1.648516, 1.300949, 0.446061, 0.543300, -0.165318, -0.826390, 0.428316, -0.004020, 1.013720, -0.709328, 0.223167, -0.653403, -1.334720, -1.600439, 0.463415, 0.877650, 0.617488, 1.051636, -0.639861, 0.366620, -1.141826, -0.105428, -1.285914, -1.300432, 0.358487, -1.687059, 0.462028, 1.018915, 0.067261, -0.191407, 1.074653, 1.168162, -1.102372, -0.052091, 0.637730, 0.872907, -0.040146, 0.445956, -1.107931, 1.526318, 0.459798, -2.946011, -1.217983, 0.078830, 1.270399, -0.748558, -0.576561, 0.779715, 0.584619, 0.013830, -1.210514, -0.027580, -1.807974, -0.456713, -0.458049, -0.720396, 1.039488, -0.860417, 0.036037, -0.461158, 1.035521, -1.001936, 0.130038, 0.529139, -1.020486, 0.632074, 0.538288, 0.543854, -0.082418, 0.229474, 1.441192, -0.440683, -0.528633, -0.946281, 0.574937, -1.350653, 1.417111, -0.592676, 0.585583, -0.629327, -0.302990, -0.130880, -0.485316, 0.608659, -0.141166, -0.022518, -0.823123, 1.918916, 0.578723, -0.946158, -1.121146, 0.523028, 0.094182, 2.139039, 1.084628, -0.917830, 0.487059, -1.153683, 0.537627, 0.602483, 0.040463, -1.106338, -0.407211, -0.206168, -1.047935, -0.933324, -0.977305, 0.124895, 0.329349, 1.190209, -0.356925, 0.041560, -0.571548, -0.670069, 0.031941, 0.955461, -0.713299, 0.575203, -0.093773, 2.370248, 0.430387, 0.401182, 1.178465, -1.328911, -0.888919, 0.797758, 0.895399, 0.227654, -0.187122, -1.023527, -1.870704, 0.112649, 0.892239, -0.686195, -1.345789, -0.860501, 0.490847, 1.355903, 1.020884, -0.494607, -0.081408, -0.057327, -0.744093, -0.965186, 0.080116, -0.296318, 1.544589, -0.476115, 1.149629, 0.951937, -0.666262, -0.479717, 2.120382, -0.134276, 1.332451, 0.366706, -0.510412, -0.742801, -0.028845, -1.000236, 1.835363, -1.088735, -0.828760, 0.522453, -0.129309, -0.598309, 1.000706, 0.377525, 0.039448, -0.523312, -1.824308, 1.872520, 0.576642, 0.809912, 0.196899, 0.097899, -0.354616, -0.419256, -2.578992, 0.554784, 0.585974, -1.540522, 0.247351, 0.086522, 0.546667, 0.285098, 0.696017, -0.253081, -1.036311, 0.553189, 1.577065, 0.485141, 0.648711, -0.543137, -0.474990, -1.143757, 0.167411, 0.075843, 0.409480, 1.747821, 0.684071, 0.284654, 0.841381, -0.211101, 0.823529, -1.049302, -0.517072, 1.692124, 0.869145, 0.239133, 0.199064, 0.458765, -0.013959, -1.404379, -1.541075, -0.192709, -1.460834, -0.332605, -0.512000, -0.736037, -0.590613, -0.108542, -0.310183, 0.263520, 0.097274, -0.113724, -0.092447, -1.828712, 0.866176, -0.102630, -0.444198, -1.219638, 0.436178, 0.391617, 1.402147, -0.095805, -0.700699, 0.348281, -1.540495, 0.636827, -1.594618, 0.750606, 2.266292, -0.386748, -0.653216, -1.243844, 1.081604, 1.072713, -1.850210, -1.319571, -0.263392, -0.226455, -0.692015, 0.127820, -0.057971, -0.207502, -1.409770, -1.662455, 0.613139, -0.964735, -1.980929, -0.078326, -0.823761, 1.758926, -2.206006, -0.630918, 2.725513, 1.207699, 2.294445, -0.323073, 1.295129, 1.836318, 0.767836, 0.823158, -1.193238, 1.388575, 0.131033, -0.588449, -1.190456, 0.409403, 0.273267, 0.025923, 0.138258, -0.456856, 0.357802, 1.121624, 1.669294, -0.129766, -0.718741, 0.073804, -0.517092, -0.923800, 1.318870, 1.141014, -0.368112, -1.011178, 0.442000, -0.710108, -0.672207, -1.549274, -0.357643, -0.199480, 0.615497, 0.056127, 1.244722, 0.187644, 0.992484, -0.243646, -0.445814, 0.837329, -0.008620, 0.708263, 0.002427, -0.103403, 0.411539, 0.685910, 1.280423, 1.798157, 1.461707, -0.412000, 1.212925, -0.215652, 0.541920, 1.435713, -0.112401, 0.460620, -0.151056, -0.802218, -0.276820, -1.957677, -0.562285, 0.483330, 1.608138, -0.797055, -0.806208, 0.461564, -0.279414, 1.903172, -0.194894, 1.091832, 0.829155, 0.187533, 1.395448, -0.577424, 0.281364, 0.005707, 1.180715, -0.848642, -0.301686, 0.951069, 0.751389, -1.633530, -1.420491, -0.529104, -0.746879, -1.670086, 1.672752, 1.014968, 0.804239, -0.994983, 0.315173, 0.447472, 0.913812, -0.323893, -0.359815, 0.769932, 0.906364, 0.691448, -0.347187, -0.175564, -0.233813, -1.264912, -0.865740, 0.172687, -0.445773, -2.049300, 0.106705, 1.792337, -3.665341, -0.778988, 2.966446, 1.556617, 0.387379, 0.592753, -0.302357, 0.291061, 0.999850, 0.583821, 2.155150, -0.626317, -1.722364, 0.690279, 0.537445, -0.158910, 0.118709, -2.246937, 1.755380, -0.423828, 0.343284, 0.311337, -0.115495, -0.994300, 1.071191, -1.055478, -0.805971, -0.114500, -0.021049, 0.387179, -0.240022, -0.483178, 0.722824, 0.507512, 0.691859, 0.724036, 0.622953, 1.077205, 0.181433, -0.089315, 0.088336, -0.478451, 0.849445, -1.023472, -0.095473, -0.086135, 0.510974, -0.459358, 1.670642, 0.886358, -0.978037, -0.726355, 0.247664, 0.691848, -1.008873, -2.217548, 0.188466, -1.818923, -0.160442, -1.398494, -0.122519, -0.050452, -0.401744, -2.163526, -0.827769, 1.101792, -1.125293, 1.409684, -1.671424, -0.300942, 1.117012, -2.228336, -1.740987, 0.402005, 0.784012, -0.801696, -0.316528, -0.811788, 0.246557, -0.234621, -0.801615, 0.167257, 2.119712, -0.221417, -0.047351, -0.189222, 1.613068, 1.636210, 0.685715, -0.516699, -0.213599, -0.553549, -0.888756, 0.737929, -1.101802, 0.005246, 2.067143, -1.686015, -0.949071, -1.727706, -2.423165, -0.049259, 0.860079, 0.148229, -0.546433, 0.061150, 0.665753, -0.804987, 0.244624, 0.292000, 0.249504, 1.201744, -1.013017, -1.663149, -0.877380, 0.698365, 1.136918, 0.636454, -1.805283, -1.133555, 0.277548, -2.322622, 0.457944, -0.491023, 0.151145, -1.106310, -0.898816, -0.658722, 0.540531, 0.046465, 0.655948, -0.144029, 1.508065, 1.497873, 0.185633, -0.013334, -0.284433, -0.041058, 0.040584, -0.050920, 1.488357, -0.524972, 0.392220, 0.456376, -0.586975, 1.514470, 0.539379, -0.812665, -0.075820, -0.318283, -2.524642, 0.287843, -0.320077, -0.910446, -0.443321, -0.189764, -1.996705, -0.253930, -0.485380, -0.317542, -0.126975, -0.154770, -0.795014, -0.118819, 0.085182, 0.907587, 2.933667, -0.993867, -0.515402, -0.307139, -2.020423, 0.332003, -0.148085, -0.305949, -0.246181, 0.573859, -1.246347, 0.276580, 0.611091, 1.280634, 0.216831, -1.287218, 0.502973, 1.253250, -0.482459, -0.022266, 0.501955, -0.740931, -0.900384, -1.451999, 0.503417, -0.762641, -1.122747, 0.007921, 0.286881, -0.995577, 0.135746, 0.543202, -2.875395, -0.911700, -1.794683, -0.544209, 1.041134, 0.220555, -0.499457, -1.734496, 0.412618, -1.504440, 1.006639, -0.374822, -0.643926, -0.125553, 1.031112, -1.033592, -0.103100, 0.160041, 0.506835, 0.058250, -0.198635, 1.110444, -0.593552, 0.227931, -0.353608, 1.283954, -0.258871, -0.199200, -0.653583, -1.054071, 1.239713, -1.576850, 0.299727, -2.212698, -0.377730, 1.248124, -1.214777, 0.680168, 0.553584, -0.240581, -2.726274, 0.412623, 0.472051, 1.461790, 0.217575, 1.293905, 0.588733, -1.758441, -0.233244, -2.096284, -0.015905, -0.795065, -1.916619, 0.987294, 0.020390, 0.841724, -0.180508, -2.990319, -0.357509, -1.196907, 0.614966, 0.489917, 0.384808, 0.453433, -0.278196, -0.041060, -1.814359, -0.528122, 1.627915, 0.891587, -0.513199, 0.615605, -0.628466, -1.480839, -0.545546, 0.021031, -0.249409, 0.351905, 0.125160, 1.319289, 2.885963, -1.584917, 1.767448, 1.084315, -0.075906, -0.540620, -0.537823, 1.593324, 0.490269, 1.151786, -0.533839, 0.580015, -0.692773, 0.833477, 0.471162, -0.737824, -1.608178, 1.034056, -0.514485, -0.695534, -1.129559, 2.289706, 0.356947, -0.539843, 0.730864, -0.625221, 0.055393, -0.951180, 0.869108, 2.716173, -0.085236, -1.431136, 0.575196, 0.034871, -0.309255, -0.818256, 0.157864, 0.684726, 0.055435, 0.395131, -0.371312, 0.982282, 2.150376, -0.178971, -1.382915, -0.508982, 0.470960, 1.370558, 2.659153, -1.214218, 0.114449, -0.402863, 0.260132, -0.572302, 0.221952, 0.836981, -1.724980, 1.288078, -0.185098, -1.355861, 1.619084, 1.509799, 2.063221, -0.130688, -2.251188, -2.090113, -1.390004, -0.133834, 0.154282, -0.895175, 1.081765, -1.183564, 1.474015, -1.761061, 1.587969, 0.365549, 0.584966, 0.134219, 0.368632, 0.792163, -1.033457, -0.450743, -1.798299, 1.901788, 1.246052, 1.328756, -0.068326, -1.302918, -0.153546, 0.514339, 0.305672, -0.483576, -0.407502, -0.519386, -0.267904, 0.195310, -0.185515, 0.866269, -0.098234, -0.994464, 1.078858, -0.641451, 1.178820, -0.001568, -1.193502, 1.415377, -0.240063, -0.493790, -1.246133, -0.249450, -0.195963, -0.036979, -0.789731, -3.087571, 1.983571, 0.402336, -0.667327, -0.078972, 0.462409, 0.998281, 1.197227, 0.538010, -0.726448, -0.134830, 1.020894, 1.231268, -2.635929, -0.613555, 0.127693, 0.302578, 1.731020, -1.715139, -0.130483, 0.030843, 0.365248, -0.554934, 0.663166, 0.559675, 0.125114, -0.447443, 0.812026, 0.029807, 0.147547, -1.288833, -0.073839, -1.323809, 0.231902, 0.049239, 0.353407, 0.275080, 0.856087, -0.012627, -0.340888, -0.375095, -0.507527, -3.005246, 0.386116, 0.804089, -0.362912, -1.243788, -1.098779, 1.396344, -1.992447, 0.342131, -0.237291, 0.759136, 1.663015, 1.936556, -0.108096, -0.565458, -0.840033, -1.868953, -0.923677, -1.360096, 0.899575, 0.828752, -1.280237, -0.246941, -0.879568, -0.524936, 0.574475, 0.056647, -0.656588, -0.846348, 1.297738, -0.159086, -0.922158, -1.417051, 0.774624, -1.132103, -1.003555, 0.174483, 0.152541, 0.141909, -0.796339, 0.181261, 1.912393, 0.289870, 0.622188, -0.137299, 1.990555, -3.357899, -0.401449, -0.507281, -0.629694, -1.503431, -0.767024, -0.845583, -0.196736, 0.511571, -0.129206, -0.093948, -1.183299, 0.631649, -1.791430, 0.941840, 0.340284, -1.407593, -1.805891, 0.394421, 1.364787, 1.289190, 0.667517, -0.654983, -1.228638, 0.612461, -0.085692, -1.183587, 0.137986, 0.071179, -1.509668, -0.048832, -0.961314, 0.677184, -2.198377, 0.866412, 1.946396, -1.812240, -1.371658, 1.065631, 0.708248, 1.026466, -2.185796, 0.155759, 0.627243, -0.694300, -2.157135, -1.106958, -1.073769, 1.027928, 0.295696, -0.321099, -0.783209, -0.108778, 0.755394, 0.334285, 0.824537, 0.099246, -0.249522, 1.750268, 0.895380, -1.489290, -0.542535, -0.310710, -0.684408, 0.633089, 0.169119, 1.547565, -0.783359, -1.075074, 0.378470, 0.178139, 0.499142, 0.748060, -2.630377, -0.357123, -0.969912, -0.742085, 1.178812, -0.425549, 0.559456, 0.839398, -1.293111, 1.252398, -0.300757, -1.532060, -2.080168, -0.403346, 0.767518, -0.079658, -0.544107, -0.141154, -0.715125, 0.779383, -2.785085, -0.006201, 0.353557, 1.014186, -0.688996, 0.256286, 2.377080, 0.381699, -0.484811, 0.780898, -1.069872, -1.896658, -1.557389, 1.454643, 0.593980, -0.092602, -0.402235, -0.072375, -1.890350, -0.323946, 0.083504, 0.691071, -0.317551, -0.213195, -0.525421, 0.643218, -1.868246, -0.898146, -2.043587, -0.900370, -1.643555, 0.367005, -1.655811, 0.144727, 0.248493, 1.928740, 0.083588, -0.914077, 1.217681, 1.317644, 1.184488, 0.448175, -0.927184, -1.133090, -1.724598, -1.660006, -0.119470, 1.497947, 0.098622, 2.224697, -0.699031, 0.549962, 0.382962, 1.183204, -1.327720, -0.683649, -1.788433, -1.117517, -2.150321, 0.391026, 0.115026, -0.199847, -1.122606, 1.353484, 1.591893, 0.652944, -1.090579, -1.141491, -0.087466, -0.532302, 0.555955, -0.625897, 0.032483, -1.210230, -0.310558, -0.342910, 0.957504, 1.378972, -1.388557, -0.766600, 0.806288, -1.358127, -1.109585, -0.235514, 0.404152, -2.282993, -0.457933, -1.603416, -0.151905, -0.792843, -0.619267, 0.258786, -0.416315, 0.414033, -1.582190, 0.104414, 0.067284, 0.249154, 0.431743, 0.238847, 0.152662, 0.101024, -0.387129, -0.351210, -0.364984, 0.186458, -1.347073, -0.126981, -0.773176, -0.750469, -0.641040, 1.230933, -0.492362, 1.242481, 1.609718, 0.752667, -0.445522, -0.146777, -0.580538, -0.520101, 0.911250, 0.749584, 1.069617, 0.855657, 0.680945, 0.136725, 1.872044, 0.499782, 0.196481, -0.740416, -0.099934, 1.441439, 0.679013, -0.026579, -1.291594, 0.821814, -1.444613, 0.378002, -1.237264, 0.776617, 1.650559, -0.599831, -1.486651, 2.208962, 1.612762, -0.152083, 0.312454, -0.780365, 0.836352, -1.357335, 0.409555, 2.148610, 0.040995, -0.582008, -1.488098, 0.778950, -0.948026, -0.105779, -1.603354, -0.826412, -1.263508, 0.841681, 0.393536, -0.618987, -0.454573, -0.399477, 0.807182, 1.042100, 0.925306, -1.923373, -0.371112, -1.690097, 1.258905, -0.082998, 0.155621, -1.417452, -0.466420, -0.805716, -2.299913, 0.740507, 0.736747, -2.102597, 1.208312, -0.321116, 0.534798, -2.127077, 2.863468, -2.101935, 0.832168, 0.907185, -0.740861, 0.038978, -1.782803, -0.104133, 0.770151, -1.148970, 0.413161, 1.204063, 1.696370, -1.619192, 0.020373, -1.559261, 0.960475, 0.979535, 0.923266, -0.488058, 0.492934, -0.144024, -2.327816, 2.022524, -1.440611, 0.108279, -0.279674, -0.155505, 0.798701, -0.056014, -0.294278, 2.206000, -0.910635, 0.881155, 0.826537, 0.970949, -1.631114, 0.641060, -0.148350, -0.736448, -0.822219, 0.856293, -0.565143, 0.979652, -1.765983, -0.146638, -0.146924, -0.302271, -0.821319, 2.458336, -0.039127, -1.302429, 0.493974, -0.010817, 0.623926, 0.242641, 0.225246, -1.307361, -1.207909, -1.515617, -1.819017, 0.561071, -0.432049, -0.707660, -1.568873, 0.960589, -1.736133, 1.109109, -0.810065, 0.570154, 0.223099, -0.219678, -1.387539, 1.563754, 0.398388, -0.515691, -0.059579, 0.066663, 0.137895, -0.007136, -2.363673, 1.292044, -0.883938, 0.402916, -2.101223, -1.293249, -0.782252, 1.741922, -1.180961, 2.643937, 0.873179, -0.421559, -0.387711, 0.483488, 0.272855, 0.068270, -1.285595, 0.768579, 0.746763, -1.880166, -0.163995, -1.103554, 1.644326, -0.242998, -0.694097, -0.202326, 0.235676, 1.389961, -0.878601, 1.214517, 0.978233, -0.614626, -0.339939, 1.991670, 1.570582, 1.164850, 1.254028, 0.526178, -1.201949, 1.256997, 0.880162, -1.835717, -1.358657, -0.299310, -1.200479, -0.439876, -2.879921, 0.297092, -0.243779, -1.615714, 1.207358, 1.480990, -0.000176, -1.966240, 1.241313, -0.787065, -0.065835, -1.082595, 0.659999, -0.078458, 0.002960, -0.248386, 0.013503, 1.688254, 0.019804, 1.988132, -0.551538, -0.872949, 1.397220, -0.527877, 0.345855, 0.582937, 0.602458, 0.591416, 0.222826, -1.196631, -0.199450, -0.864577, -1.875637, -2.089008, 0.269194, 0.013410, 0.962869, -0.635835, -1.854655, -0.558910, -0.174547, 0.443956, -0.179187, 1.506913, 0.787906, -0.770978, -0.914367, 1.843023, -0.525664, -1.163644, 1.815685, -2.045644, -1.971285, -0.454759, -0.299318, -1.546627, 1.569486, -0.039063, -0.867976, -0.772743, 1.137805, 0.222620, 2.698856, 0.739607, -0.894983, -0.498391, -0.122941, -1.214579, -0.559240, 1.606550, -1.555603, 0.801038, -0.316427, 0.098728, 0.435727, -0.445676, -2.151925, 0.620124, 0.563274, 0.815215, -1.924090, -0.763942, 1.351880, -1.037696, -0.282910, -0.577423, -1.064838, 0.549606, -0.306820, -1.807750, -1.129748, -0.200598, 0.285173, -0.080972, -0.108569, 1.011825, 0.646562, 2.587377, -1.127719, 0.058741, 1.715399, 1.186736, 1.056106, -0.891992, 0.375106, 0.115689, 0.115049, -1.516074, 0.985668, 0.646881, 1.381310, 0.162735, 0.630620, 1.759756, -0.325400, -0.064484, -0.764386, 0.702778, 0.093406, 0.274499, 0.053771, 1.256388, -0.316700, 1.677390, 1.295013, 0.328956, 2.695897, 0.294012, 0.364170, 0.399002, -0.669916, -0.243286, 0.286304, -0.025567, -0.090067, 1.593134, 0.975813, 0.057530, -0.052480, -1.010988, 0.595204, -0.273142, 1.968936, -1.003460, -0.513743, -0.414154, 0.858540, -0.075493, 0.347344, -0.087578, -1.459482, 2.598408, 0.085175, 0.432063, -1.984317, -0.444593, -0.280373, -0.953162, -1.247448, 1.382244, -1.501154, -0.220791, 0.162217, -1.380368, -0.718552, -1.488998, 0.012630, -0.242820, 0.362484, -0.719212, -0.156390, 0.897794, 1.215247, 1.850641, -1.240722, 0.711088, -2.155905, 0.385672, 0.379773, -0.367983, -0.097212, -0.761376, -1.051372, 0.558224, 1.009418, -0.702509, 0.098717, -0.579659, -1.529299, -0.188772, -1.366829, 0.292776, -1.840204, 0.393781, 0.352524, 0.136623, 2.875350, -0.426938, 1.296896, 0.181012, -0.932693, 0.200156, -1.500470, -0.432169, -1.323778, 0.465284, -1.925291, 0.897134, 0.559693, 0.755321, 0.393539, -0.016400, 1.436149, 0.278063, 0.008358, 1.401231, -0.195222, 1.165173, 0.556411, 0.779170, 2.534855, 0.332789, 0.010363, -1.193108, 1.976624, -0.482135, 1.364415, 0.129918, 0.455798, 0.536617, 0.049097, 0.537206, -1.822129, 1.559727, 0.088116, -0.082443, -0.115912, -1.918898, 0.032354, 0.890131, -1.130087, 1.402009, 1.022251, -0.274734, -0.718177, 1.091370, 0.682092, 0.547391, 0.583889, -0.271413, -0.941980, -0.584171, -0.145908, -0.683017, 0.503695, 1.862961, 1.295420, -0.243690}, - { -0.983093, -1.504997, 1.689008, 0.852439, -0.052642, -0.226863, -1.682563, -0.516711, 0.024053, -0.423958, -0.498372, -1.387182, -0.092373, 1.346202, 1.228157, 0.176953, -0.292668, -0.007560, -0.729933, -0.213849, -1.360185, 0.957214, -0.775561, 1.299782, 1.010312, -1.364358, -0.332187, -0.874038, 0.158062, -1.655720, -0.126275, 0.280659, -0.245147, -0.799640, -0.174699, 1.544888, 1.106545, 1.490095, 0.981029, 1.147516, 2.028793, 0.696511, 0.499816, 0.572414, -1.410997, -0.439824, 0.976240, 0.658783, 2.363468, -1.360340, 0.948610, -1.433050, 0.988979, 0.630545, 0.467132, -1.881342, -0.534098, 2.063160, -0.531704, 0.232042, 3.310064, 0.418609, -2.377943, -1.255732, 0.948970, -0.916728, -0.074799, -1.274711, -0.503304, 0.820722, 1.316162, -1.173834, -0.139600, 1.431872, -0.484918, -0.824979, -0.243726, -0.236428, -0.636261, -1.040133, -0.168640, 0.609432, -0.070710, 0.679471, 1.503464, 0.395742, -0.955843, -0.149187, 1.876458, 0.985744, 1.576430, 2.534913, -0.224989, -0.679745, -0.534951, -0.557737, -0.255265, 0.782315, 1.196253, -1.377471, -0.677377, -0.477690, 1.541497, -0.907797, 0.835093, 0.747920, -0.988510, 0.764753, 1.362396, -1.786639, -0.077948, 1.828968, 0.832373, -1.464336, 0.013585, -0.532699, -0.500248, -0.578362, 0.246069, -0.515451, -0.315294, -0.339299, 0.067102, 1.289035, -0.096157, 0.763676, 0.005457, 0.290770, 0.199062, 0.676720, -0.801922, 1.250363, -0.493756, 0.454381, 0.278526, -0.520518, 1.099335, 0.902181, 1.691731, 0.560990, 0.669109, 0.571884, -0.629478, 1.189162, 1.121540, -1.351753, -0.502888, -0.379593, -1.125303, 1.628456, 1.911116, 0.329890, 0.160070, 0.607196, 0.313948, 0.672554, 0.034538, 0.986999, -0.073991, 1.216120, 0.872065, -0.736450, -0.241443, 1.776237, 0.837211, -0.032411, 0.235870, 0.303322, -0.696334, 0.058139, 0.423596, -0.801994, 0.475972, 0.078186, 1.687307, -0.655364, 1.148551, 1.584120, -0.183812, -0.240825, -0.462214, -0.538617, 1.165882, 0.495350, 0.779812, 0.857892, -1.163262, 0.305657, 0.378542, 2.370941, -1.621917, -0.346555, 0.339012, -0.411098, 0.204058, -0.523320, 0.160462, -1.358479, -2.612737, 0.470040, 0.407125, -0.257620, -0.793160, 0.488260, -0.299263, 0.143361, -0.428621, 0.310583, -0.836926, 2.055982, 1.483207, 2.152946, -0.934875, -0.123062, 0.341006, 0.471994, 0.205615, 0.362838, -0.171997, -1.464489, -0.726495, -0.405898, -1.146009, -0.718839, -0.897182, -0.742179, 1.481672, -1.073078, 1.530334, -0.337469, -0.158506, 1.132872, -0.560097, -0.850852, -0.145600, -0.769049, -0.906160, -1.239531, -0.214732, -0.732012, -1.048772, -0.407347, -1.235464, 0.200166, -0.163694, 0.012422, 0.896306, -1.642009, 1.233085, 0.173640, -0.287841, 1.098236, 1.133623, 0.568552, 0.289465, -0.001010, -2.022003, 1.477060, 1.272226, -0.132027, -0.007357, 0.123635, 0.501659, -1.566556, 0.159990, -1.693243, -0.052437, 1.549306, 1.020311, -2.348895, -0.457603, 0.193673, -1.505093, -1.641658, -0.687426, -1.349499, 1.551315, -0.716301, -0.046077, 1.567537, 0.739217, 2.318301, 1.074069, 1.035734, 0.749698, -0.284268, -1.311249, 0.861526, 0.060632, -0.482237, 0.492532, 0.511687, -0.586689, -0.198771, -1.384069, 0.397496, 0.153320, 0.454582, -1.036656, 0.292900, 0.831772, -1.091953, -0.387973, 1.277133, 0.624147, -1.059033, 1.292027, 0.320191, 0.943345, 1.068388, 0.560938, -0.913304, 0.182379, -0.024233, 0.736094, -0.617006, 0.666794, 0.436818, 0.803632, 2.981577, -1.355008, 0.534470, 0.305408, -1.299554, -1.547465, 0.146489, -0.393488, 1.081729, -0.518468, -0.818730, -0.908197, -0.494636, -0.302000, 0.061754, 0.186158, -1.455457, 0.946737, -1.479299, 1.322972, -0.385502, -0.304968, 0.186621, 0.496442, -0.265172, 0.491450, 0.650637, 1.684260, -1.086021, 0.252811, 0.604967, 1.302163, -0.354736, 0.396292, 1.420452, -0.921994, -1.250968, 0.828756, -1.766244, 0.085464, -0.208325, -0.657831, -0.022167, -0.145307, -0.155301, 0.824731, 0.138868, 0.134612, 1.319698, 0.709335, 0.213933, 0.288568, -0.265968, 0.792930, -0.475098, 0.960359, 1.208800, -0.291204, -0.826583, 0.299401, 1.075716, -0.535193, 0.306460, -0.860736, 0.015584, 0.553479, 0.593341, -2.125592, 0.883739, -0.285156, -0.195326, -1.736190, 0.267954, -1.065774, 0.006786, -2.461653, 1.879348, 0.824964, 1.494759, -0.133417, -0.335138, 0.374419, -0.672829, 0.316753, 1.775973, 0.712692, 1.293218, 1.237103, 0.615225, -1.324533, -0.752883, -0.077552, -0.566718, -0.480087, 1.376820, -0.653140, 0.094362, -1.558402, -1.366178, -0.638414, -0.236803, -1.504195, -0.546153, 0.301623, -0.779780, -1.079982, -0.062045, 0.211238, 0.249402, -0.194938, 0.236983, 0.895108, -1.142978, 1.403774, 0.653420, 1.900139, -0.522343, -1.101550, 0.385982, 0.632220, 0.815852, -1.039617, -1.144698, 1.494159, 0.047438, -0.856614, 0.858644, -1.619166, 1.664841, -0.541867, -0.195818, -0.586936, -1.779821, -0.309493, -1.766883, 0.420277, 0.487111, -0.206142, 1.039423, -0.075640, 1.325150, 0.060567, 0.258374, -1.071947, 0.665599, -1.951727, -0.867996, 0.128119, 0.574382, -0.144236, 0.032367, -0.221344, -0.495558, 0.391783, 1.337666, -0.469266, -1.365408, -0.245316, -2.075251, -0.736334, -0.876616, -0.899896, 1.075697, 0.345828, -1.298294, 0.296911, 0.309971, -0.616054, 1.004305, 0.889155, 1.877165, -0.248961, -0.081407, -2.515295, -1.471037, 0.024976, -0.945345, -0.172507, -1.401992, 1.010550, 0.302097, -0.615135, -0.424872, -0.911773, -0.363181, -1.505333, 0.019523, -0.309098, -1.411120, 0.127548, 1.057503, -1.249271, 1.256315, -0.071966, 0.735987, 2.067302, -0.773847, -1.151815, 1.615380, 1.054523, -1.326194, 0.646549, 1.749714, 2.170125, -0.593849, 0.974450, -2.046801, 0.389724, 1.074528, -0.619298, 0.085289, 2.492791, 0.475732, -0.627852, 0.519505, -0.032521, 2.125778, 0.416374, 2.674471, -2.293838, 1.172877, -0.328581, 1.510363, -1.037604, -0.756300, 0.656897, 0.285500, -0.644763, -1.202865, 0.423421, 1.596442, 2.694238, -0.383828, 1.469193, -0.711495, -0.757148, 1.399669, -2.110266, 0.521666, 0.449675, -0.713232, -0.376217, 1.499582, 1.552162, -0.707626, 0.298731, 1.503443, -0.351074, 0.202232, 0.979986, 0.111556, -0.934082, 0.347155, 0.068998, -1.204463, -0.347912, -0.144191, -0.512881, -0.323562, -1.041395, -0.562475, 2.433507, -0.056507, -1.302880, 0.633123, -0.943182, 0.347517, -0.563035, 1.008836, 0.950698, -0.553791, -0.333602, 0.271553, -0.880350, 1.332422, -1.453054, -1.457649, -0.251031, 0.150016, 0.002669, 0.929400, -0.383546, 0.049417, -1.106139, -0.143804, 1.401947, -2.304345, -0.569742, 1.034040, 0.486361, 0.548376, -0.468534, -0.100914, -0.443258, 0.850349, -1.027423, -0.194848, -0.445651, -0.142158, 2.481790, -1.459025, -1.410040, -0.987970, 0.965835, 1.526407, -0.049202, -0.356169, 0.849466, -0.077761, -0.924655, -0.155822, -0.711325, 0.249337, 1.228686, 0.677912, 0.467147, -0.412307, -0.501915, -1.272501, 0.139491, 1.039930, -0.097017, 0.065405, 1.153829, -0.793604, 0.370951, -1.792227, -0.412233, 1.158704, 0.907463, -0.817395, 1.615974, -0.247998, 2.978949, -1.638730, 1.371517, 0.951102, 1.409070, -0.953572, -0.783109, 1.258106, 1.698119, 0.032653, -0.955098, -0.172371, -1.603111, -1.456500, 1.565100, -1.083722, -0.158947, -0.347817, 1.385675, -0.077649, -0.562186, -0.456349, -1.631077, -1.438635, -2.848500, -0.779416, -0.392371, -0.770420, -1.289794, -0.695409, 0.038390, -2.190771, 0.086364, 1.318144, 0.025847, -0.261700, -2.079323, 0.520632, 0.197945, -2.525093, -0.608511, -0.826324, 1.197794, -0.720419, -0.676173, 0.412328, 0.952681, -0.291693, 1.401882, -2.279688, -0.100533, -0.605367, -0.231242, -0.542557, 0.981023, -1.143355, 0.120666, -1.959137, -0.459734, 0.895160, 2.435299, -0.673000, 1.075197, 1.499873, -0.637327, 0.451355, -1.637109, -1.574825, 0.747980, 0.114430, 0.022948, 1.529489, 1.682670, 1.416034, 0.033656, 0.622647, -1.030015, 0.289424, -0.049848, -0.733713, 1.445727, -0.850379, 0.672578, -0.498027, -1.800037, -0.414100, 0.809735, 1.752628, 0.660851, 0.704462, 1.064979, 0.026647, 0.152233, 0.299722, 0.453152, 1.605588, -0.222618, 0.833014, -0.181633, 1.274122, 1.063165, -0.487172, 0.141203, -0.655070, 0.672728, 1.118144, 0.963424, -0.478329, -0.276137, 1.363698, 0.953021, -1.878811, -0.920295, -0.636180, -0.518924, -0.450983, -0.790380, 0.503084, 0.091438, -0.068717, -0.680360, -1.190046, -0.518806, 1.868175, 0.593848, -1.148903, -0.504153, 0.358133, 0.407456, 0.093787, -1.988303, -0.254786, 1.074193, 1.212962, -1.161578, 1.146935, 0.335429, -0.035437, 0.310761, -0.323630, -0.753763, -0.943875, 1.315168, 1.157548, 0.033252, -0.113919, -1.384706, 1.118101, 2.138404, 0.536062, -0.057074, -0.070453, 0.580854, -1.109369, -0.311874, 0.119988, -0.879639, -1.448909, -1.119467, 1.080115, 1.340303, -1.221041, -1.630454, -1.124092, -0.549454, 0.182329, -1.032038, 0.064650, -0.631550, -1.149689, 2.590124, -0.382573, 0.411398, 1.595692, -0.581483, -1.920548, 1.036230, -1.294128, -1.550439, -1.825664, -1.136718, -1.004473, -0.408208, -0.515493, -0.141035, -1.243196, -0.389756, -0.153286, 0.590664, -0.259714, 0.588485, -1.338604, -1.672666, 0.646251, 1.897516, -0.848231, 0.442896, 1.390109, 0.455500, 0.147027, -0.733007, -1.039997, -1.109757, -0.520237, -1.656324, 0.862061, 0.897123, -0.215765, 0.579153, -1.774879, 1.339885, 0.656980, -0.683979, -0.776324, 0.075425, -0.624938, 1.188162, 0.029376, 1.999927, -0.694213, 1.641559, -0.139565, 0.977361, -0.440677, 0.716551, -0.713138, 0.542474, 2.190345, -1.427835, 1.279513, 0.123449, 1.333007, 0.170215, -1.459986, -1.115168, 0.024330, -0.499763, 0.743400, -1.116687, 0.169877, 0.253489, 0.001254, 0.496192, 0.419524, -0.336320, -0.738473, 1.057630, 0.455031, -1.144652, -0.211007, 0.066468, 0.309799, 0.282313, 0.602273, -1.140669, 0.724713, -1.215900, 1.597776, 0.437830, 0.950187, 1.470075, 1.236441, 1.003427, 0.299022, -2.007146, -0.593624, 0.169609, 0.609102, 0.420829, -0.390335, 0.853639, -0.690414, -1.440160, -0.431041, 0.153770, 0.449729, -0.191969, -0.303385, 0.832239, 0.748193, -0.103568, -1.759449, 1.482179, -1.963307, -1.975549, 0.664533, -0.232829, -0.640030, -1.462368, -0.683268, -0.736704, -0.529999, 0.387158, 0.432750, 0.649493, -0.088709, -0.803069, -0.899639, 1.428242, -0.454638, -1.029092, 0.037624, -0.708494, -0.351422, 1.421274, -0.372453, -0.157853, 1.814718, 0.585491, 0.919518, 0.334817, -2.671010, -0.771587, -0.395982, 0.082838, 0.859022, -0.356058, -0.540233, 0.654218, 0.098357, 0.078977, -0.169725, -2.216716, 2.321392, -1.263653, -1.639489, -0.161886, 1.797469, 0.796801, -1.759298, 0.046668, 1.317824, 0.318675, 0.457329, 0.124017, 0.526361, -0.342122, 0.957925, 0.297107, -1.101054, -0.096374, -0.766925, 0.993858, -1.519713, 1.198808, 0.136192, 0.350640, 0.771633, -2.391844, 1.691390, -0.432016, -0.583463, 1.281393, 0.001705, 1.768327, -0.389773, -1.929848, 0.181209, -0.236180, -0.727279, 0.396655, 0.735341, 0.516617, 0.739636, 0.439700, 1.041834, -0.932685, 0.797094, -0.594365, -2.089081, 1.232674, 0.952684, 0.421472, 0.320388, -0.905656, 0.064582, -0.472792, -0.520134, -0.113316, -0.448894, 2.523464, -1.101831, 0.271383, 0.090401, 0.201738, 0.211246, 1.631039, -0.427858, -0.089690, -0.744756, -2.058145, 0.155760, -1.241777, 1.393911, 0.660004, 0.680098, -0.026877, 0.648867, 1.162161, -0.293747, -0.753800, 0.218407, 1.240208, 1.058819, -0.687679, 0.775595, 1.421356, 0.111639, 0.300615, 0.590659, 0.142563, 0.527875, -0.047042, -0.063115, -1.396309, 0.698869, 0.969490, 0.648679, 0.683787, -0.238478, -0.255841, 0.804804, -0.421125, 0.715479, -0.893196, 1.526561, 0.466601, -2.522992, 1.958711, -0.631540, -1.062824, 0.894885, -0.117180, -1.646037, -0.396795, 1.682567, 0.873272, -0.300163, -0.488435, -0.600554, -1.618806, -1.552022, 1.563859, 0.176570, -1.075827, -1.608512, -0.421313, 1.102388, 0.766085, 0.374220, 1.082020, 1.032764, 0.247305, -1.712391, -0.387175, 0.296980, 0.673349, 0.652994, -2.267193, -1.027173, -1.491370, -1.300861, 0.641465, -1.447194, 0.921470, 1.494575, -1.738147, 1.029322, -0.238429, 3.944252, -1.858202, 0.965250, 0.111650, 0.492753, -1.078780, -1.064432, 0.202608, 0.103263, 1.468485, -0.783521, 0.998328, -0.294328, 1.243496, -1.174095, -0.241644, -0.477749, -1.094207, 0.111191, 1.652724, 0.270623, -0.389710, -1.990528, -0.371761, -1.342540, 0.025078, -1.171046, -0.209873, 0.574598, -0.400453, -1.333045, 0.297309, 0.536143, 0.175845, -0.125545, 0.532479, -0.226725, 1.124272, -0.122223, 0.376941, 1.594683, -0.096963, -0.620522, 0.503085, 0.714843, 0.136970, 1.543441, 0.286328, 1.754051, -0.031995, -0.239854, -0.439124, -0.375587, -0.573422, -2.523869, 0.370188, 0.355069, 0.312702, 1.373385, -0.705369, -0.186068, 0.635314, 1.257145, -2.306593, 0.532931, -0.520057, -2.123441, 0.770760, 0.131061, -0.580467, 1.107031, -0.136774, -0.814422, -1.011282, 1.364228, -0.564059, 0.196449, 1.071259, 0.286440, -0.998934, -0.659317, 0.170427, -0.124163, -1.919715, 0.694349, -1.344015, -1.627307, 0.264728, -1.180809, -1.600698, 0.910272, 0.668416, 0.591804, -1.444495, -0.100292, 0.170246, -0.620557, 0.254871, -0.595982, 1.607220, 0.496604, 0.456864, -1.013848, 0.570288, 1.238282, 0.059926, -0.804134, -0.229830, 1.313047, -0.036581, -0.645909, 0.849226, -0.841254, 0.637696, -0.006790, -1.117225, -1.223496, 0.532122, 1.437943, 0.313193, 0.777079, 0.523695, 0.143542, 0.462147, -0.428846, -0.859621, -0.416319, 1.290499, -1.228700, -0.528598, -0.513428, -0.329979, 0.845264, -1.828704, 1.289198, -1.389530, -0.525195, -0.627715, -0.694439, 0.683373, 0.331896, -1.636399, 0.062987, -0.357486, -0.330755, 0.155987, 1.124698, -0.097505, -0.008566, 0.834628, -1.509664, 3.011877, 1.167927, -0.032858, -0.346876, -0.511607, -0.643727, 1.146502, 1.060457, 2.279578, -0.685013, -1.105823, 0.226285, -1.405451, 0.589699, -0.198798, 0.769598, 1.560236, -1.135482, -0.946744, 1.080024, -0.942545, -0.125823, -0.140093, 1.518602, 1.550683, 0.670537, -0.979237, -0.135571, 0.691111, -2.179273, 1.522715, -0.902083, 0.169711, 0.748197, -0.401738, 0.711879, 0.146837, 0.166967, -1.012216, -0.386270, -1.474840, -1.029694, 0.238140, 0.572346, -1.084528, 1.181987, 0.338870, -0.415882, 0.978265, 3.052023, -0.460653, 0.447942, -0.825437, 0.579341, 0.210204, 1.498957, 1.393516, 1.065901, -0.341066, 1.313511, 1.469314, 1.839837, 0.763915, 0.101351, 0.159119, -0.804719, -0.671127, -0.846009, 0.103537, -1.127330, 0.340967, -0.331173, -1.106795, -1.611075, 0.873617, -2.482416, -2.017159, -0.090958, 0.199061, -0.851253, -0.468982, -0.846197, -0.010857, 1.247604, -0.112930, -1.173738, 1.097007, -1.362036, 0.461624, -0.887446, 0.266209, 0.786044, -0.505527, 1.521219, 0.027529, -0.161232, 0.035609, -0.137226, -0.576014, 0.375179, -0.089743, 1.770654, -0.246111, 0.631284, 0.368234, -0.079831, 0.706911, 0.263395, -0.176806, 0.126358, -0.353634, -0.495124, 0.204023, -0.727704, 0.245956, -0.706063, -0.813591, -0.224182, 0.136407, -1.388950, 0.098091, 0.504615, 0.658595, 0.720413, -0.379698, 1.908575, 0.947730, -0.217494, -1.050232, -1.191591, 0.017484, -1.248917, -0.159007, -0.752488, -0.763944, -0.750282, -0.385585, 0.269485, -0.026662, -0.720137, -1.077977, 0.157672, 0.760777, -1.601510, 0.013697, -0.032575, 0.931438, 1.239286, 1.396600, -0.052502, -0.114691, -0.134030, -0.842362, 0.391681, 0.892765, 1.568239, -0.126351, 0.758177, 0.724422, -1.336194, 0.535676, 1.556854, -0.154454, -0.313646, -0.454839, -1.012902, -1.139182, 0.735333, -0.050211, 0.948452, 0.438588, 1.340435, 1.069766, 0.642956, 0.242907, -1.151919, -1.251647, 1.331088, -0.579428, 0.334021, 0.122267, 0.068165, -0.964619, 0.428452, -0.050823, -0.002404, 0.041571, 0.405068, -1.233422, 1.260676, 0.094039, 0.307017, 0.151906, -0.027208, -1.007060, 2.334523, -1.264616, 0.356730, -0.535358, -0.762092, -0.275978, -1.702179, 0.030233, 1.046483, -0.584955, -0.836679, -0.006426, -0.390403, -0.083576, -0.981609, 1.930915, 0.510260, 1.647643, -1.071337, 1.382740, -0.228110, -0.277829, -1.409842, -1.575530, 0.718559, 1.423620, 0.656442, 0.095158, -1.461268, 1.772774, -0.063188, 0.879273, 0.828065, 0.046859, 0.459797, -0.582491, 1.411395, 0.530982, 0.582250, -1.730930, 0.627733, 0.785046, -0.999845, -0.547387, -0.419686, -1.621249, 1.620737, 0.715163, 0.709301, -0.497149, 0.873044, 0.005235, 0.064333, -0.231492, -1.151721, 1.434699, -2.263251, -1.223966, -1.371840, -0.583872, -0.066960, 0.095307, -1.494739, 1.547723, -0.592914, -0.549290, -0.768478, 2.203256, 1.172009, 0.520945, -0.737783, 0.032632, 0.560585, -0.157471, 0.441311, 0.637888, -0.347510, -0.854300, 0.468636, 0.326277, 0.037493, -0.627628, 0.368331, 1.217785, 0.471044, 0.586213, 0.417014, 0.610770, -0.523289, -2.253046, -0.082169, 1.246606, 0.652022, 0.032568, -1.690161, 0.784274, 0.187848, -0.016704, 0.180777, -0.536112, -0.624964, 0.317434, -0.777492, -0.066978, -2.195325, -0.291884, -0.880146, -0.083134, -2.587639, 0.272380, -0.323443, -0.701542, 0.685047, 0.192190, -0.965801, -0.560545, -1.679947, -0.557893, -1.030836, 0.267407, -0.262967, -1.179673, -0.298339, 1.599047, -0.244753, 0.107751, 2.064767, -0.296402, -0.471424, -0.153215, -1.991362, 0.624160, 0.582543, -1.285040, 2.206616, -1.725150, 0.770780, -0.816521, -0.886885, 0.723865, -0.874660, -1.764038, -1.496891, 1.192002, -1.447032, 0.932691, -0.995677, 1.105767, -0.102498, -0.568651, 0.594325, 0.732207, 0.739735, -0.219874, 1.695695, -1.483837, -0.909240, 1.747754, 1.800451, 0.354175, 0.670781, -0.432108, -0.276626, 0.012963, 1.732390, 0.132192, -0.885501, 1.517562, -1.904314, 0.051587, -0.669467, -0.285791, 0.342109, -0.139177, 1.684336, 1.228523, 0.016126, 0.229721, -0.982781, 1.346502, -1.035287, 0.241883, 0.186249, -0.725379, -0.162901, 0.087371, -1.917082, 0.710105, 2.211643, -0.582104, -0.618074, 0.204563, 1.226239, 0.563332, -0.908039, 0.564280, 1.755763, 0.644147, 0.314296, 0.408741, -0.394023, 0.186321, 0.731211, 1.043871, -1.683537, 0.232675, 2.661016, -0.007126, 0.071304, 1.941659, 0.778512, -0.121223, -1.590724, 0.771539, 0.688840, 2.668835, 0.099935, -0.789626, 0.110579, -1.199935, -0.704327, -1.075098, 0.743019, 0.067843, -1.819114, -0.965535, -1.885677, 0.512821, -1.058960, -0.139818, -1.075315, 1.209155, -0.224580, -2.634801, -0.152983, 0.103507, -1.012315, -0.601402, -0.502514, 0.921512, -0.307779, 0.390481, 0.222684, 0.538818, -0.724732, 0.512896, -0.341587, -1.628292, 0.311701, 1.300361, 0.003195, -0.716713, -0.905372, -0.218456, 1.245588, -1.620003, -1.169858, -0.848704, 1.669947, -1.617545, 1.274624, 0.032676, 0.085381, 0.095743, 1.019916, 1.243629, 0.890282, -0.896734, -0.936238, 0.446448, -0.294272, -0.839754, 1.447886, 0.522244, -0.301482, -1.253581, -0.281894, -0.566144, 0.725699, -1.826116, -1.757009, -1.132609, 0.683045, -0.400081, -1.174145, 0.632511, 1.124698, 0.218457, -0.832357, 0.696695, 0.116584, -0.471129, 1.437333, 1.646122, -0.301018, -1.540725, 0.608275, 1.267470, -0.880230, -1.784812, 1.072743, -0.432968, -0.403319, -0.094595, -1.290795, 0.079966, 1.536603, 1.105837, 1.804963, -0.555791, 1.120286, 0.180027, 0.325066, 0.815784, -0.253511, -2.012888, -1.089141, 0.341569, 0.350146, -0.054427, 1.785970, -0.109931, 0.892780, 0.228590, 0.595735, 0.905499, 0.493174, -0.945160, 0.415151, -0.046206, 0.358983, 0.170447, 0.591312, -0.696462, 0.025580, -0.714038, 0.074132, -1.808567, -0.311356, -0.951089, -0.716697, 0.906483, 0.503965, -2.401863, 0.078614, 2.144657, 1.752178, -1.248648, -1.558600, 0.101818, -1.114887, 0.947770, 0.109147, 0.201624, 0.137294, 0.627635, 0.474355, 0.024761, -0.199443, 1.163311, -0.752377, -0.133441, -1.042710, -1.591810, -0.911297, -0.802619, 0.336050, -0.341400, 0.585704, -1.797125, 0.913613, -0.286320, -0.529742, 1.485931, 0.290997, 0.419821, -0.663768, 0.680643, -0.057951, 0.066694, 0.095555, -0.878811, -0.796205, -0.201340, 0.092119, 0.044641, 0.544796, 1.484176, 0.740957, 0.451265, 1.266862, 0.739636, 0.086038, 0.766067, 0.522669, 0.264659, -0.120888, 0.216845, 1.741144, 1.826327, -0.479842, -0.888488, 0.422769, -1.184254, -0.789990, 0.419419, 0.935405, -0.379517, 0.840036, 0.533450, -0.031845, 0.537035, 0.073232, 0.199909, 0.138907, 1.424687, -0.047092, -0.833917, 0.038313, -0.789088, 1.286600, -0.748881, 0.543016, 0.846118, 0.634078, -0.450082, 0.273662, -0.127422, -0.159451, -0.631820, -0.438196, 1.538763, 0.425009, -0.045875, 0.467078, 0.351687, -1.209834, 0.236203, -1.877868, -2.454891, 1.362600, -1.057093, 1.204769, -0.254387, -0.716294, 1.846617, 0.918987, -1.564549, 1.344444, -1.662343, 0.728193, 0.486014, 0.932001, 0.096760, 0.341350, 0.528905, 0.091434, 0.614079, 0.089286, 0.441762, -0.890917, -0.162001, 0.934085, 0.276646, -0.396393, 0.193290, 1.736740, 0.022379, -1.862810, 0.379973, 1.280819, 0.542132, 0.520761, -1.270345, 0.795990, 0.458021, -0.071172, -0.145970, -0.017641, -1.136748, -1.082206, -0.745291, 0.048666, 0.943403, 0.263293, -0.115814, -0.419788, 1.952204, -0.925678, 0.683042, -0.167871, 0.003482, -0.213994, 0.411095, 0.315338, 0.275489, -1.889730, -0.698190, -1.541218, -0.471606, -2.830535, -0.564631, -0.181840, 0.735779, -0.663644, -1.367815, 0.267417, 0.228871, -1.236638, -0.575487, 1.681041, 0.596803, 0.180697, -1.794327, -0.605370, 0.573286, 1.022513, -0.558121, -0.063327, 1.731009, -0.849625, -1.096743, -2.294090, 0.090971, 0.188497, 0.520447, 1.124376, 0.352552, -2.517990, 1.561249, 0.229529, -0.631458, 1.316949, -1.552281, -0.481973, 0.419865, 0.561258, 0.193756, 0.891034, -0.525884, 1.029616, -1.546680, 1.916917, 0.240219, 1.109516, 1.019885, 0.049455, 1.995421, 0.379435, 1.694660, 0.959406, 0.817115, -1.023019, -0.235700, 0.825637, 0.028711, -0.343540, 1.032994, 0.619893, -0.110856, -0.385887, 1.068830, -0.927033, -0.297884, 0.410196, 2.540039, -1.499079, 0.279449, 0.399899, -0.494673, 0.213273, -0.088056, 0.740269, -0.911896, -0.030318, 2.038972, -0.778129, 0.975980, -0.304287, 1.270547, -1.203336, 1.452976, -2.167352, 1.264598, -1.598946, -1.566718, 0.183012, -1.101650, -0.519276, 1.846887, -1.403084, 0.681304, -0.300873, 2.311713, 0.957460, -0.218110, 0.837892, -0.265138, 0.691482, 0.548971, -0.607123, -0.935869, 0.173993, -1.251281, 1.820393, -0.903768, 2.422347, -1.753490, 0.464680, -0.487359, -1.103086, 0.219467, -0.577101, -0.568645, -0.743203, 0.539766, 1.691486, -1.534633, -0.182533, 0.456057, -1.124469, -1.243077, -0.399000, 0.000318, 0.792487, 0.596467, 1.306834, 0.652228, 1.489893, -0.194578, 0.606692, 0.134574, 0.763926, -0.624669, -0.202281, 1.960168, 1.204264, -0.069937, -0.925830, -1.378291, 0.932060, -0.303514, 0.935499, -1.914292, 0.385898, 0.166346, 0.581124, -0.245395, -0.143091, -0.199783, 0.923457, -1.394343, -0.560154, 1.361135, 1.745647, 1.139060, -0.689184, 0.978894, 0.463933, 2.011608, 0.064100, -0.289482, 0.946763, -1.234082, 0.156069, -2.149051, 0.140043, -1.220015, 0.360217, -0.737686, 1.120746, -1.259606, -0.532519, 1.284235, 0.233486, -1.149622, 0.804189, 1.523195, -1.778994, -1.222941, 0.233423, -0.305394, -1.422051, 0.438451, 0.384012, -0.044099, -1.716174, -0.344945, 0.692482, -0.928128, -0.052847, 0.122735, 1.691219, 0.112818, -1.107622, 1.452040, 1.280817, -1.999826, 0.833575, -1.229772, -0.231902, 0.610070, -1.173033, -1.112078, -1.217899, 0.103263, -1.860923, -0.713389, -2.234493, -0.318021, 0.605091, -0.046884, 0.351298, -3.238503, 0.599061, -1.590511, -0.382465, 1.499645, -0.368768, 0.059807, -0.810084, -0.082782, -1.323444, -0.157666, -0.079778, 0.408359, -0.829038, -0.751103, -0.962780, 2.193781, 0.269622, 0.149634, -0.156015, 0.125435, 0.643258, 3.274923, -0.348060, 0.002705, -0.647955, 0.020039, 1.109778, 0.258100, -0.907328, -1.103651, -0.484972, 1.024585, 0.741973, -0.226772, 1.020938, 0.499352, 0.235172, 0.738548, 0.787095, 0.625934, -1.327732, -2.086107, -0.832856, 0.079739, 0.268940, -1.238683, -0.634566, -0.477485, -0.367884, -1.242857, -0.312081, 0.681902, 0.882958, 1.254995, -0.167477, -1.217416, 0.754707, -2.367965, -0.626828, 0.225967, -0.727434, -0.592906, -0.117011, -0.691285, -0.524886, 1.873445, -0.182071, -0.728334, -0.201684, 1.053455, -2.344703, 0.946009, 0.672189, 1.083269, -1.311616, 0.706246, -1.444814, -1.758793, 0.109823, -0.419026, -0.736907, -0.639920, 0.536340, -0.622469, 1.568338, 0.099852, 0.969737, -0.263650, 1.022313, -0.130073, -0.326466, -1.499172, -0.242417, 1.174083, -0.970962, 1.283451, 0.206247, -1.647758, 1.773544, -0.041347, -1.246374, 0.753146, 0.189310, 0.879654, -1.303974, 0.850342, -0.097866, 2.855169, 0.690653, 3.597145, -0.645675, 2.275282, 2.264520, 0.256012, 0.066188, -1.094239, 0.336229, -0.635581, 1.835892, -0.651171, 0.325442, 0.769568, 1.284737, -1.369916, -0.163810, 0.458260, 0.867070, 2.114308, 0.129041, 0.815176, 2.130857, 0.547459, 0.552881, -0.384379, -0.111858, -2.414465, 1.347841, 1.459552, 1.395295, -0.740588, -3.384161, -0.086892, -0.674921, -1.607548, -0.696350, -0.893506, 1.198571, -0.550440, 0.816936, 1.016265, 0.842840, 0.570665, 0.418131, -0.621630, -1.677645, -0.045504, 0.634927, 0.232144, -1.731583, -0.509662, -0.422844, -0.171595, 0.762678, 0.748308, 1.197695, -0.186461, 0.367308, 0.853758, 0.680082, 0.614641, 1.889122, -0.371895, 0.390753, 0.106858, -0.964265, 0.538948, 0.684802, -1.049766, -0.742857, -0.621754, 0.558155, 2.393028, -1.520358, 0.846200, 0.044463, 0.229704, -0.445941, -0.487096, -1.317962, -0.007152, -1.669969, -0.009625, -0.965176, -1.363039, -0.334475, 0.328443, -1.676896, 1.676282, -1.089136, 0.587593, 0.483999, -0.007582, -0.056238, -0.110378, 1.203782, 0.612845, -0.350349, -1.334917, 1.244733, -0.817702, 1.244112, -0.951136, 0.215253, 1.241477, -0.546881, 1.018512, -1.255374, -0.097423, 2.260577, 0.124214, -0.248872, -1.441602, -1.050383, -1.293818, -0.362505, 0.804698, 1.775938, 0.499425, 0.777173, 0.737156, 1.096813, 1.070791, 0.507341, 0.106322, 0.608585, -1.446946, 0.477057, -0.121663, 0.795934, 0.947460, 1.375368, -0.849977, 0.715402, -2.200944, -0.489656, -0.884779, -1.025211, -0.788321, -0.023901, -0.789196, -0.042571, 1.239970, 2.379713, 0.171058, 0.103795, 0.606270, -1.608247, 1.416516, -0.909894, 0.657470, 0.960922, -0.746216, -0.806572, 0.033708, -1.369520, -0.266819, 0.090347, 0.509608, -0.248996, -0.735197, -0.693049, -0.024490, -0.301243, 0.102943, 0.199751, -0.132859, -1.159332, 0.573181, -1.068949, -0.498309, 0.772656, 0.153209, -0.657340, 0.050796, 0.759697, -0.829038, -0.434990, -1.133309, -0.492490, 0.654510, 0.773751, 0.538183, 1.220387, 1.099179, 0.725080, 0.029437, -0.881871, -0.551479, -0.204937, -1.757117, 0.698953, 1.542494, 0.644348, -2.115573, -0.065121, -0.400810, -1.694086, 1.878602, -1.538846, -0.551390, 0.638339, -0.481102, 0.458051, -0.714383, 0.176170, -0.760979, 0.231547, -0.596368, 0.343202, 0.772300, -1.267514, 0.314336, -1.219111, 0.295803, -0.396475, -1.032794, -0.545667, -3.286586, -0.111250, -1.313947, -0.209656, -0.788196, -0.721227, -1.037382, 0.432920, -0.114856, -0.601111, 0.384281, -1.375650, 0.754939, -0.148504, -0.445098, 1.452077, 1.804115, 0.028117, -1.838639, -1.339139, -1.836395, -0.763915, -0.291530, 0.884907, -1.124850, 0.568960, -0.650669, -0.750237, 0.822205, 1.472903, 0.242534, 1.462725, 0.764221, -1.074732, -1.071990, -0.865600, -1.456285, -1.096274, 0.184368, 1.719182, -0.862572, 0.087241, -0.197046, -0.457307, -1.823589, 2.627374, 0.783945, -1.003779, 0.206574, -0.953086, 0.532852, 0.619520, -1.378216, -0.311258, 0.865027, 0.909415, -1.387156, 1.212136, -2.209523, 2.773308, -0.345094, 0.558097, 0.590485, 0.072100, -1.097392, 1.134982, 2.153804, -1.291377, -0.923894, 0.948272, 1.942132, -0.014423, -2.059298, 0.278989, 0.323110, -1.113875, -1.952412, -1.006567, 0.416797, 1.050996, -0.228020, -0.736134, 0.561660, -0.356462, -0.742087, -1.084345, 0.503272, 0.418055, 0.420612, -0.571402, 0.270388, 0.315510, 0.125730, 0.329237, 0.111774, 0.281052, -0.659634, 1.253830, 0.447354, -0.385666, -0.648878, 0.192956, 0.213230, 0.619238, 0.654071, 0.400554, -0.657582, 1.565078, -0.555640, -0.680927, -0.658510, -0.123976, -0.528578, -1.994702, 0.660791, -2.069070, 0.885234, -0.971248, 1.789271, -0.167909, -2.129750, -0.885771, -1.051292, 0.393300, 1.457115, -0.833682, 1.303036, -0.318364, -0.476482, 0.269556, 0.618594, 0.195107, -0.171919, 0.928795, 0.528894, 1.630606, -0.050139, -0.615800, 0.195950, -0.289427, 1.308965, 0.517201, 1.058555, 1.262139, -1.019838, -0.166300, -0.022473, 2.282791, 0.534206, 0.049370, -0.612647, 0.605013, 1.926225, -0.823302, -0.026712, -0.574431, -0.344630, -0.000880, 0.760657, -0.630067, 0.155759, 1.086287, 0.085857, 0.738797, -0.038719, -0.570407, 1.515545, 0.144131, -1.134749, -1.231730, -0.624401, 0.451340, -0.805257, 0.400244, 0.011199, 0.323038, 0.552727, 0.165034, -1.218125, 0.092322, -0.463958, 1.317818, -0.657967, -1.594268, 0.861709, 0.820080, 0.420394, 0.725182, -0.298505, -0.389230, 1.384899, -0.219751, -0.371714, 0.822450, 1.201430, 0.100548, -0.278114, -0.399451, 1.761437, 0.948007, -1.071918, -1.346583, 0.215357, 1.370689, 0.123228, -0.308579, -0.823155, 0.359772, -0.172389, 0.626381, -0.144721, -0.388125, 2.482474, -1.486362, 1.987924, -1.403528, 0.421666, -1.435877, 0.602172, 0.011298, 1.577353, -1.658217, 1.176515, -0.013049, 0.492604, 0.832108, 0.416851, 1.720755, -0.783004, 0.051518, 1.233887, 0.950312, 1.295694, -0.630398, -0.230060, -2.085841, 0.206733, 1.777459, -0.712053, 0.263313, -1.367420, -1.661427, 1.633955, 0.264516, -1.469857, 1.233839, -1.562248, -0.285862, -1.329347, 0.288772, 1.087265, -1.244013, 0.270511, -1.001265, 1.442534, 0.222338, 0.403805, -1.801479, 0.836810, 0.032710, 2.184687, 1.424083, -0.584917, -0.283094, -0.679288, 0.837390, -1.477519, 0.947693, 1.108716, -0.242318, 0.418898, 1.129318, -0.043781, 1.010266, 0.587456, 0.552694, 0.485307, -0.911079, -1.474590, -1.444921, 0.144605, 0.859992, -0.140263, 2.144085, 0.571181, 0.668334, -1.261104, -1.505537, -0.142553, 0.905944, -1.783273, 0.203243, -3.049428, 1.109981, -0.119054, 0.363287, -1.209777, 0.850142, 1.103748, -0.578901, 0.202859, -2.602454, -1.219928, -2.222341, 1.699615, 1.315716, -0.835175, -0.319744, -0.704893, 0.639997, 0.582240, 0.268216, -0.116655, 0.177476, -0.497349, -0.064557, -1.221388, 0.915948, -3.019886, -2.781874, 0.296599, -0.645163, 0.019030, -0.610654, -0.932680, 1.662467, -0.433710, 1.201454, -1.602482, -0.771650, 0.542878, -0.059642, 0.110350, -0.365260, -0.659802, 0.667127, 1.412355, 1.405997, 0.126664, -1.412854, -0.431512, -2.119984, 0.099949, -3.022939, -0.802788, -0.065689, -1.133384, -0.332183, 0.870766, -0.450917, 0.353133, -0.292761, 1.191484, -0.718563, -1.851259, 0.862291, -0.374218, -0.452603, -0.642518, -0.597050, -0.626641, 0.584423, -0.025279, 0.280219, 0.776167, -0.483173, -0.705251, -1.432658, -1.022790, -1.392157, 0.584329, 0.138391, -0.889668, 1.316972, -0.199282, -1.158828, 0.343230, -0.673243, 0.110015, 0.925401, -0.811977, -1.964039, 0.208911, -0.366249, 0.762380, 0.129335, 0.656758, 0.554861, -0.558642, 1.217487, 0.895644, 0.909092, -0.382637, 0.055226, 1.157098, -1.363181, -0.036041, 0.023808, 0.634215, -1.296915, 1.087658, -0.068615, 0.173005, 1.056740, 0.510327, 0.208614, 1.262423, 0.897627, -1.711390, 0.499536, 0.040155, -1.240188, 1.314165, -0.920566, -0.446976, -0.216056, 0.155500, -0.015665, -1.546679, -0.995939, -0.763947, -1.796529, -2.409871, -0.029098, 0.271461, -0.745800, -2.008286, -0.927230, 0.065471, 0.359163, 0.789661, -0.876824, 0.200356, 1.039542, 0.235464, 0.258948, 0.060692, -0.116278, -1.737092, 0.780957, 1.266407, -0.180647, 0.505690, -0.133874, -0.737905, -1.284374, 1.043119, -0.350721, 0.674804, 0.710027, 0.624824, -1.050752, -0.387217, -2.484569, 1.038849, -1.280589, 1.643923, -0.248830, 0.908984, -0.731589, 0.644337, 0.570423, 0.239877, 1.495266, 0.424171, -0.448426, -1.386445, 0.492990, -0.293027, -0.141827, 0.003751, -0.957691, -1.462403, 2.250988, -0.973675, -2.951337, -0.305153, -0.941560, -1.183053, 0.611710, -0.376358, -1.106333, 0.300617, -0.721330, 1.101456, 0.431116, 0.563714, 1.399399, 1.130291, -0.552077, 1.061333, -0.092885, -0.490149, 0.339786, 0.356425, 1.881743, 0.091920, 0.575208, 0.363533, 0.352643, -0.285782, -0.262878, -0.809452, -1.608636, 0.467058, -0.011425, 0.239629, -1.127596, -0.318725, 1.258444, -0.404076, 0.383442, -0.088286, -0.353377, 1.171918, 0.470011, -0.402276, -0.372206, -1.297728, -0.870016, 1.614759, -0.675132, -0.373451, 0.888947, -0.820048, 0.942631, -0.859537, 0.956158, 0.414521, 0.219664, 1.466850, -0.151739, 1.715385, 0.102885, -0.629379, 0.795217, -0.049454, -0.910070, 0.942119, -1.212939, 0.451908, 0.264988, -1.374320, -0.928955, -1.289076, -1.261226, 1.122338, 0.151613, 1.084357, -1.247185, 1.355480, -0.496006, 0.202836, -0.279352, 0.061925, 0.075123, -0.010633, 1.665442, -0.259836, -0.194655, -1.194671, -0.155750, -0.569273, 0.441884}, - { 0.306053, 0.655023, 0.601022, 1.890180, 0.779185, 0.745997, 0.044883, 1.027930, 1.144791, -2.065500, -0.955389, 0.814198, 2.276800, -0.441706, -0.362342, -0.469636, -2.299112, 0.163438, 0.977913, 0.669896, 0.910154, 2.037225, 1.283853, 0.246283, -1.148569, 0.091599, 1.516956, -0.596582, -1.884530, 1.813483, -0.745703, 0.113068, -0.043826, 0.329446, 0.402982, 0.404139, 1.509598, -0.382893, 1.354240, 1.052974, 1.958785, 1.899341, -1.892131, -1.484339, 0.719642, 0.097261, 0.900479, 0.640860, 2.412882, -0.124725, 0.118307, -0.216208, -0.484342, -0.129433, -0.389852, -0.196844, -2.088548, -2.354909, 1.975723, 0.924680, 0.156747, 1.443496, 0.061418, 0.449164, -0.383296, 1.003783, 0.706093, 0.573518, -0.429927, -1.467220, 0.816274, -0.479154, -0.078750, -0.225255, 0.645629, 1.527311, 0.410746, -1.101803, -0.687578, 1.065136, -0.803712, -2.091181, 1.489167, -0.688606, 0.715771, -1.817188, -0.700249, -0.808454, 0.674843, -0.671634, -0.664611, 0.567812, -0.938628, -1.178422, 1.052407, 0.829454, 0.333921, 0.282373, -0.308495, -0.910188, -1.161811, 0.033027, -0.255470, 0.527855, 0.110178, -1.293394, -0.027141, 0.428618, 0.763337, -0.273234, 0.110821, -1.339046, -0.566313, 2.186830, 0.265084, 0.421920, -0.804885, 0.810508, -0.109380, 2.019528, 1.078617, -0.336461, -0.068866, -0.306429, -0.157813, 0.304983, -0.859182, 1.100367, -0.255995, 0.286705, -0.966163, 1.436331, 1.610193, -0.856852, -0.525730, 0.130290, -1.122079, 0.383032, 0.271746, 0.084785, -0.513179, 1.779457, -1.635670, 0.054635, -1.154547, -0.337266, -0.157128, -0.061562, -0.929907, -0.450199, 0.936423, 0.514459, -0.797071, 1.018977, -0.970956, -0.998577, -0.708840, 1.691755, 2.865524, -0.289743, -0.154794, 0.034562, 1.024701, -0.437260, -2.021700, -1.159751, 0.018421, -1.733001, 0.030119, 0.869922, 0.358805, 1.391150, 0.261041, -0.686678, -1.447936, -1.136542, 0.298334, 0.514408, -1.055912, -0.045991, 0.482677, -0.475100, 1.016389, 1.057067, 0.349636, -1.552275, -0.814456, 0.555771, -0.660684, -1.887382, 0.126537, -0.091373, 1.868438, -0.572924, -1.870499, 1.320623, -0.122809, 0.615067, 0.459421, 2.490492, -0.362870, -0.759327, 0.625597, 1.650055, 1.248910, -1.304209, -1.294328, -0.687407, -0.256605, 0.633505, 1.577451, -0.662092, -0.055807, 0.495282, -0.023324, -0.058662, 0.223044, 0.853134, -3.415582, 0.128022, 0.244949, 1.234014, 0.112954, -0.090850, -1.585292, -0.401207, 0.522009, 0.084580, -1.456277, 1.323341, 0.674555, -0.153379, -1.234390, -1.214318, 0.090031, -1.125700, 0.218534, -1.719167, 0.633274, -0.666644, -0.304681, -0.645550, 1.504749, -0.182104, 0.065711, 0.246883, -0.164804, 0.268317, -0.640890, 1.660100, 0.358457, 0.018721, 1.743414, -2.280760, -0.908194, 1.285988, -0.049298, -0.731913, 0.699607, -0.733625, 0.325894, 0.853100, -0.813906, 1.100766, -0.852223, 0.690548, 0.850760, -1.626735, -0.984735, 0.158065, -0.450318, -0.331243, -1.930876, 1.276435, 0.403233, 1.344207, 0.846544, 1.057964, 0.808760, 0.363174, 0.553183, -1.140975, 0.382838, 0.700096, 1.296091, -0.595758, 0.413251, 0.792074, 1.751483, -0.214396, 0.971786, 1.807642, -1.009961, -0.639061, 1.646864, 1.155533, 0.632300, 0.423940, 1.892590, 1.226112, 0.745218, 0.755596, 0.132462, 0.250986, 1.216284, 0.711294, -0.202593, -2.286238, -0.305076, -0.401009, 0.012228, 1.810427, 0.155617, 1.686397, -0.044485, 1.951637, -1.519003, 0.551804, 0.126369, -1.429462, -0.069943, -1.241395, -0.955524, 0.934578, 0.093011, -0.973420, 0.865429, 0.832059, 1.064513, -1.507699, 0.465209, 1.230847, 1.882538, 1.056649, -0.655764, 0.567414, 1.232247, -1.141623, 1.348975, -0.197116, 0.643541, 1.594372, 0.114432, -1.100444, 0.336552, -0.051833, 1.246019, 1.608885, 0.898541, -1.594947, 0.412246, 0.382335, -0.736582, -0.591782, -0.827465, 0.478101, 0.032613, 0.365402, 0.023524, -0.097985, -0.035388, -1.169961, 1.603616, 0.436716, 0.053037, -0.144850, 0.275561, 0.590071, 0.732637, -1.107710, 1.838093, 0.986445, -1.535011, 1.318522, -0.776602, -0.198342, -0.601804, 0.023683, 1.147958, 1.105458, 0.666450, -0.866823, -1.804991, 1.764135, -0.077409, 0.186713, 0.344493, 1.011144, 1.277187, -0.329106, 2.211274, 1.112371, -0.573875, 0.216939, 1.432820, -0.259644, 0.287992, -0.226812, 1.357910, 0.307900, 0.241176, 0.716688, -0.934928, 1.118223, -0.135582, 0.249715, -0.546449, 1.170933, 0.835911, -0.061615, 1.230920, 0.660273, 0.709425, -1.457238, -0.462678, 1.435325, -0.275830, -0.775204, -0.457671, 0.970308, 0.336291, 0.672783, -0.456583, -0.842579, 0.426320, 2.590044, -0.761741, 0.657310, -1.604443, -2.231782, 0.469280, 0.771679, -1.132938, 0.970252, -1.488133, -1.447886, -0.142702, -0.533458, 0.333237, 0.713508, -0.292267, 0.547955, 0.590747, -1.113803, -1.068648, 0.216783, -0.695032, 1.848361, 0.444731, 0.707257, 0.297911, 2.380150, 0.149715, 0.933467, -0.170712, 1.039868, 0.186961, 0.424069, -0.494074, -1.219011, -0.780676, 1.816759, 0.387670, -0.967709, 1.215745, 0.563780, -0.444726, 0.437244, -0.040144, 0.017977, -0.436769, -0.722036, 0.076123, 2.038691, -0.352857, 0.193998, -0.925745, -1.209406, 1.031133, -1.624738, 1.449812, 0.665593, 0.210665, 0.343916, -0.575074, 0.618354, 1.456426, -1.380976, -0.796809, -0.787871, 1.542605, -0.039402, 0.461496, 0.204260, -0.690160, 2.235208, -1.289715, 0.853032, 0.595849, -1.004903, -0.314063, -0.017002, -0.462261, -0.432523, -1.114655, -1.145948, 1.048367, -0.301607, 0.709324, -0.368214, 0.001998, 0.598900, 0.126029, -0.804712, -2.914235, -1.467662, 0.194501, -0.295007, -0.187786, -0.350858, 2.072236, -0.320828, -0.411470, 1.414000, -0.776154, 1.007657, -0.431999, -0.784971, 0.536280, -1.223432, 0.689310, -1.450974, 1.705544, -1.719905, -1.636239, 0.444315, 1.631316, 0.237500, -0.990477, 0.722567, 0.369905, 0.455114, -0.234677, 1.544214, 0.010035, -2.114593, -1.869019, -0.484050, -0.806391, 0.271742, 0.286472, 0.689310, 0.330565, -0.775901, -1.212435, -0.795118, -1.528587, -0.239839, 0.798094, 0.878294, 0.721996, -0.247964, 0.299384, 0.834919, -0.940462, -0.889167, 0.256584, 0.166233, -0.913947, 0.257069, -0.693560, 0.274110, -1.095540, -1.138444, 1.178309, 2.197699, 1.231934, -0.716416, 0.094879, -0.535117, -0.235680, 0.963843, 0.693461, 0.354859, -1.951049, 0.695489, -0.111126, 0.805758, -1.095965, 0.895157, 0.052954, 0.941177, -0.434166, -0.403882, 1.602525, 1.321342, 0.019659, 1.719970, -1.234313, -0.415838, 0.027629, -0.624495, 0.806576, 1.199266, 0.022902, 0.271181, -0.720649, -0.372576, 0.282901, 0.671660, -0.067669, 1.254568, 0.464117, -0.956669, 1.768708, -0.981018, -1.634513, 0.977878, 0.571035, -1.014793, -1.114021, 1.342866, 0.118520, -0.648012, -0.981292, 1.587563, -0.603370, -0.476831, -0.651664, 0.268886, 0.222579, -1.207132, 0.274576, -1.535163, 1.672279, 1.041076, 1.829667, 0.160395, 0.019549, -1.057220, 0.481870, -1.080187, 0.730474, 0.852357, 0.271900, -0.850585, 0.104664, -0.868777, -0.151250, 0.320333, -0.171258, -0.178508, -0.090091, 0.016050, 0.641610, 1.399266, -1.207521, 0.063560, -1.126837, -0.750128, 0.431695, 0.648339, 0.025406, -0.186404, -0.601247, -0.014920, -0.141077, 1.512372, 0.014823, -0.467640, -0.470565, 0.857452, -1.345808, -0.039423, 0.562787, -2.212435, -0.381147, 0.441628, -3.139030, 0.915106, -0.379794, -0.445968, 0.486448, -0.768498, 1.469221, -0.330846, -0.941496, -1.160222, -0.246010, -0.213206, 2.406422, 0.681248, -1.783142, -0.767410, 1.704415, -0.451864, 0.686015, -0.496022, -1.293758, 0.144424, 0.505526, -0.205168, -1.639819, -0.414931, -1.794943, -0.265367, 1.144409, -0.844765, 1.530019, -0.236714, 0.375512, -0.438605, -1.058092, 0.237714, 0.321695, -0.858939, -0.320476, -0.665091, 0.306542, -0.609934, 0.611263, 0.087265, 0.024723, 0.162028, -1.797718, -1.318625, -1.054334, -0.520702, -0.909815, -0.781718, -0.908923, 1.121070, 1.239078, -1.472121, -0.985432, 0.485584, -0.365651, -0.945598, -0.045432, 2.474636, -1.295494, -1.115126, 2.285769, 1.909908, -0.058226, -2.355661, -0.310305, -0.693946, 0.041466, -0.361893, -0.742374, -2.710838, -0.543960, 0.761441, 0.519598, 0.859976, -1.175118, 0.160989, -0.843009, -0.643818, -0.451043, 0.113457, -1.105057, 0.043851, 1.350913, -1.585491, 0.267387, -0.866994, 0.018115, -0.261888, 0.229849, 0.566232, 0.223388, 0.135254, 1.542743, -0.588135, 1.081777, -0.160107, 0.460362, 1.335092, -0.702964, 1.384560, -1.814902, 0.821111, 1.015757, -1.600689, -0.359878, 0.483935, -0.177527, 0.539820, 0.078470, -1.001130, 0.089451, 1.315600, -0.230437, 0.300769, -0.483248, -0.398708, -0.591322, -1.904049, 0.767959, 0.960107, 1.245484, -0.828119, 0.884363, 0.393901, 1.025945, 0.343532, -0.572946, -1.054310, -0.552449, -0.429007, 0.856342, 1.316770, 0.425394, -1.214908, 1.434746, -0.274775, 0.830779, 0.765349, 0.434867, -0.553615, 0.471733, -1.772158, -0.108032, -0.562055, 0.393262, 1.149402, -0.248138, -0.058569, -0.102629, -1.053732, -1.525646, -1.605503, -0.317426, -0.300456, 1.505236, 0.230283, 0.215174, 1.104605, -0.524340, 0.929776, 1.494221, -0.065469, -1.386543, -1.557096, 0.230938, 1.898633, -0.807449, -0.396737, 0.473917, 1.044068, 0.568269, 0.729260, 0.863082, -0.273321, -1.685378, 0.396150, 1.112643, 0.900336, -0.382537, 0.402834, -0.549428, 0.491953, -1.115485, 1.753430, -0.238812, -1.586390, -0.556953, 0.533577, -0.490598, 1.026821, 0.573757, -0.065992, 0.608130, 0.282710, -0.960774, 0.045640, 0.657832, 1.763500, 1.332469, 0.844769, 0.444769, 0.296056, 0.128627, -0.993037, -0.652334, 0.715801, 0.824528, 1.903906, 0.012615, -0.336774, -1.541809, 0.568936, -0.239318, 0.683953, 0.175478, 0.459859, 0.176219, -0.911236, 0.956840, -0.341742, 0.672891, 0.100581, 0.454326, 1.436460, -0.057637, -0.840042, 0.173243, -0.300461, -0.179025, 1.040181, 0.314383, 0.353963, 1.324432, -0.249695, 1.460329, -0.394267, -0.908176, 3.519607, 0.931430, -0.773403, 0.282989, 0.245004, 2.198965, 0.754157, -1.016852, -0.964242, -0.432444, -0.913298, -0.380747, 0.688152, 0.731114, -0.487267, 0.457628, -0.754775, -0.542510, 0.964001, -0.424062, -0.575031, -1.009011, 0.283669, -1.632675, -1.081024, 0.405929, 0.913498, -0.957288, 0.063618, 0.410084, 0.751725, 0.316464, -0.266139, -0.923071, 0.526265, -1.727600, -0.049592, -1.549057, -1.253188, -0.146271, -0.978189, -0.352279, -0.037580, 1.092048, 0.404153, 0.751678, 0.939947, 0.635343, -0.181044, 0.127638, 1.376194, 0.412008, 0.295745, 0.431696, 0.580316, -0.245036, 0.328633, 1.072151, 0.011214, 0.737107, 0.641669, -0.272074, -1.332081, 0.670853, 1.293334, -1.803168, -0.565272, -0.715295, 1.071769, 0.378036, 0.584261, -1.115840, -0.362657, -0.017809, 0.154506, 1.692304, 0.017419, -0.167461, -0.029298, -0.409173, -0.286013, 0.942225, -0.245485, 0.154658, -0.477232, -0.119695, 0.050861, 0.967000, 1.116743, -0.975016, 0.166561, -1.240957, 0.894585, -0.074516, -0.815448, -0.167714, -1.162505, 0.686933, -0.615414, -1.255976, 0.328320, -0.275673, -0.098712, 1.495568, 2.057344, 0.228320, 0.094049, 0.754552, -0.139389, -0.910035, -0.108081, 0.069732, 0.277711, -0.917879, 0.182366, 0.656270, 0.120618, -0.781743, 1.225559, -1.768723, 0.673439, -1.308574, 1.350429, -1.262379, 1.322503, 0.433229, 0.424920, -1.226392, -0.596761, -1.302780, 1.241119, -0.743504, -0.002188, 0.904678, 0.438577, -0.224086, 0.679371, -0.537908, 0.629917, 0.214296, -1.394609, -0.961223, -0.508731, 1.591525, -0.741228, -0.315695, -0.480300, -0.120089, 0.661369, -0.297296, -0.555660, 0.227276, 0.419884, -0.805337, -1.004137, -1.040979, -0.318128, 0.372706, -0.619154, -0.732511, 0.345320, -0.802126, 1.124454, -0.181602, -0.854222, -0.949487, -0.553111, 1.375972, -0.581183, -1.976784, -1.477165, -0.334667, -0.724406, -0.435450, 0.264027, -0.180969, 1.698670, 1.558877, -0.711566, -0.868455, 1.417809, -0.547200, -0.347732, 0.805752, -0.228958, -1.542462, 0.669390, 0.626546, -0.752939, 0.007821, -1.994178, -1.473917, -0.749204, -0.220853, -1.012404, 1.414068, 1.626473, -0.843035, -0.054966, -2.178320, -0.690586, 1.577583, -0.760826, -1.341318, -0.004949, 1.233898, 1.566918, 0.052289, 0.241267, 0.767643, -1.293950, 0.696877, 0.127411, -0.243792, -0.296408, 3.345861, -1.505508, -0.028482, -0.972535, 0.109777, -1.470371, -0.275607, 0.324863, -0.453502, 0.645635, -0.073283, -0.520253, -0.860078, -0.794735, 1.641998, 1.967670, -1.494145, -0.681636, 1.161976, 1.005642, 0.081988, -0.734240, 1.509219, -0.662713, 1.183335, -0.133132, -1.876567, 0.094306, 0.817966, -0.417917, 0.365058, -1.627878, 0.455535, 1.392051, 1.643981, 0.197345, -0.170064, -1.709669, -0.700571, -1.379081, 0.751406, 0.216152, 0.454993, -0.682532, -1.857143, -0.840635, 0.663565, -1.489406, -0.569106, 0.353643, 1.520445, -2.315645, -0.924451, -0.321969, -0.285109, -1.641949, 1.055386, 0.525760, 0.577533, 0.757220, 0.552565, -0.152541, -1.070704, -0.569435, -0.809966, -0.829861, 1.328143, -0.373996, 0.664785, -0.816450, -0.334321, -0.014777, -1.312515, -0.862641, 0.731539, -0.202056, 1.631033, -1.274118, 1.197626, -0.814118, 0.793116, 0.201980, -1.711944, 1.090983, 0.327173, -0.887079, 0.317311, -1.411439, 0.775029, -0.182200, -0.630495, -0.913486, -0.368232, 1.223858, 0.317185, 0.236993, 0.004916, 0.433357, 1.560200, -0.171705, -2.463668, -0.159252, 1.335183, -0.681400, -0.276373, -0.536459, -1.446698, 0.184870, 0.835257, -0.960716, -0.501188, 0.698194, -0.321683, -0.434941, 1.201105, -0.316958, 1.339501, -1.604707, -0.336800, -0.181974, -4.342203, 1.497898, 0.880348, 0.133422, 0.365856, 0.189339, 1.115095, -0.932376, -0.802968, -0.128491, 0.817978, 1.279624, -0.910673, 1.157411, 0.421010, -0.197130, 0.149639, -0.003807, -2.544418, -2.270015, -1.449824, 1.961611, 0.465849, -0.520380, 0.222495, -1.577964, 0.329281, 0.590828, 0.298448, -0.629349, -0.608633, 1.068808, -1.107581, 1.555622, -0.177787, -0.108409, -0.508880, -0.662452, -0.290413, 0.146576, 1.482064, 1.381492, -1.059543, 1.199365, -0.028044, -0.344174, -0.541299, -0.676746, 1.922809, -0.078949, 1.323102, -0.110083, -1.616125, 1.199939, 0.151555, -1.699992, 1.523828, -1.003789, 1.199547, -0.023658, -1.400681, 0.062584, 0.691769, -1.293470, 1.084037, 0.622075, 0.831451, 1.595581, -0.484486, -1.130726, 1.911968, 1.762751, 0.695078, -1.275114, -0.618976, 0.611859, 1.573652, 0.875265, 0.155229, 0.817660, 1.156775, 0.508435, -1.519821, 0.545433, -1.578190, 0.693183, -1.100134, 0.163265, -0.302073, 0.373249, 0.600213, 0.063063, -1.763098, -2.243574, 0.790842, -0.271946, 0.464308, -0.975373, 0.602892, -0.438298, 0.080586, 0.147245, 0.062602, -0.328985, 0.260321, 1.113006, -0.566009, -1.789162, -0.162353, 0.617137, -0.942267, -0.234453, 0.951426, -0.808673, 0.938470, -1.792327, -0.301855, 1.073306, -0.370970, 0.597410, -0.583410, 0.965183, 0.484474, 0.050509, 1.057956, -1.684060, -0.835116, 1.079136, 1.038046, -1.236283, -0.013095, -0.242072, 0.493514, -0.882332, -0.132067, 1.072049, -0.517261, -0.652990, -0.272935, 0.766965, 1.944211, -0.134076, 0.887988, 0.108314, -0.198348, -0.480514, -0.618331, 1.050164, 0.343630, -0.965649, 1.223340, -1.393962, 1.520255, -0.517594, 1.401671, -0.604645, 0.218336, 0.519592, -1.552592, 1.044794, 0.242693, 0.603444, 0.931581, -0.468444, 0.131811, -0.779461, -1.268532, -1.075551, 0.187341, 0.163274, -1.484697, 0.344066, 0.909136, -0.087106, 0.742039, 1.245227, -0.208903, 0.854498, 0.594840, 0.933873, -0.291349, -0.747122, -0.710068, -0.625521, 0.245131, -0.794486, 2.063449, -0.170674, 0.118782, -0.294617, -0.018525, 0.614879, -1.317549, 2.412173, 0.159055, 0.656507, 1.354490, 0.064887, 0.857280, -1.397829, -0.861987, 1.102649, 0.792736, 1.422438, -0.800374, 0.825360, -0.852424, 1.464432, 0.574031, 1.232624, 1.030421, -0.485707, -0.363458, -0.366079, -1.110260, -1.446113, 0.829015, 0.294908, 1.135634, 1.329028, -0.322123, 0.582697, 1.688789, 0.175549, 1.105221, -0.331164, -0.410355, -0.263288, 0.657792, 0.558188, 0.913043, 0.792805, 0.451593, -0.124163, 0.561272, -1.776511, 0.181316, 0.175552, 0.323214, 1.005008, -1.261408, 0.655904, 1.909115, -2.584715, 0.730793, 1.089442, -1.512992, -0.510728, -0.050339, 0.900420, 0.720054, 0.884839, -2.230974, -0.709427, 0.636922, -0.449884, 1.083237, 0.313725, 0.893059, 1.195028, -0.798888, 2.234076, -0.448723, -0.422435, -0.728828, -0.626996, 1.037192, -0.438602, -1.099299, 1.606322, 0.409898, -1.113315, -0.015678, 0.853761, 0.972631, 0.756586, 1.605372, 0.401303, -1.832319, 1.512244, -0.191919, -0.542879, -0.088593, 0.608095, 0.123325, -0.286824, 0.764513, -1.304955, 0.097481, -0.478585, -1.292890, 0.788395, -0.816355, 0.335072, 0.505091, 2.087141, 0.734570, -0.069303, -0.297971, -0.428286, -1.049409, 1.667005, -2.267017, 1.778667, -0.777760, 0.386349, -0.727869, -1.166549, -0.398559, -0.826940, -1.537028, -0.125218, -1.599008, 0.083260, 0.682975, -0.417245, -1.201377, 0.587790, -0.227110, 0.505581, -1.698706, -0.488232, -0.906653, -0.488293, 1.202217, -0.665082, -1.267281, -2.376643, -0.593841, 2.626250, -1.176957, -0.387459, 0.095499, -0.271302, 0.238201, -0.797213, -0.414411, -1.484238, -0.573813, -0.724053, -0.085884, -0.217930, 1.715197, 2.228914, -0.638126, 0.571546, -1.442097, 2.659422, 1.189435, 0.065155, 1.287011, 0.477728, 0.423314, 0.145276, 0.182032, -0.476234, -0.139449, 0.444810, 0.678152, 1.557245, 0.430629, -0.158028, -0.250696, 1.165950, 0.061139, 0.829975, 0.816999, -2.053664, -0.706578, -0.104364, 0.775714, 2.193231, -0.413559, -0.697779, -0.513652, -2.250425, -1.283986, -0.841279, -0.221181, 0.528657, -0.570407, 0.025061, -1.059959, 1.245546, 0.407518, -1.039692, -0.567225, 0.330413, 0.110639, 1.423879, -0.290724, -0.848348, 0.094914, -0.923972, -0.121975, -0.434780, -0.351903, 1.736391, 0.844575, 0.361996, 0.467964, 1.881055, 0.015923, -0.355325, 0.903035, -1.627623, -0.701568, -1.160279, 0.439823, 0.512599, -0.387310, -0.657832, 0.711979, 1.440345, 0.759822, 0.819317, 0.129645, 0.620790, -0.426793, 1.140812, -0.930938, -0.402499, -1.282456, 1.522394, 1.327045, -0.740557, -0.992133, -0.021651, -1.021709, -0.879490, -0.861100, 1.497500, -1.978784, -0.293274, 0.776286, -0.422252, 2.343773, 1.379636, 0.186265, -1.375379, -0.813981, 0.639198, -1.017841, 1.327326, -0.658919, 0.552423, 0.764777, 0.946053, 0.852388, 1.682750, 0.530288, 0.107676, 1.304824, -1.240078, -1.216016, -0.504044, 1.199566, -1.665497, -0.614082, -0.586999, -0.295391, 1.138398, -0.794723, 0.690661, -0.831014, 1.356671, -0.907613, 1.752246, 1.436281, 0.539888, -0.855990, 0.611230, -1.437628, 0.089767, 0.527468, 0.781959, 0.547762, -1.479149, 1.592530, 1.008261, -0.421596, 0.417231, 1.311400, -1.266045, 1.316692, 1.030668, 2.332782, 0.263523, -0.264550, 0.941672, 2.441823, -0.985447, -0.288321, -0.055236, -1.085416, 0.983165, -0.406880, -0.267202, -0.190021, -0.837177, -0.528613, -0.489009, -0.244137, 2.094201, 0.379778, 0.514492, -0.344827, 0.594875, -0.125360, 1.562630, -1.577518, 0.326389, -0.741001, -0.840845, 1.338398, 0.371679, -0.393995, -2.789667, 1.539743, -0.217465, 1.806697, 1.484426, -1.383210, -0.454424, 0.479457, -0.239263, -1.481966, -0.194036, -0.799470, 0.211621, 0.710188, -0.690821, 0.237875, -0.473931, -0.255977, 0.196964, -0.777732, -0.781373, -0.093950, 0.227325, 1.007274, 0.924086, 0.819746, -0.520902, -0.438459, -0.741928, 0.338526, 0.376719, -1.465829, -0.000069, 0.259945, 0.353617, 1.858091, 2.049830, 1.435193, 0.702739, -0.810952, 1.030838, -1.029264, 0.807791, -0.667732, 0.029984, -0.771149, 0.303049, -0.783939, 1.266466, 1.140532, 0.922993, 1.560091, 0.609204, -0.724542, -0.849846, -1.834091, -0.008430, -0.910383, -1.734511, -0.741114, -1.626110, 0.763844, -1.485456, 0.952323, -0.175598, -0.032825, -0.360920, -0.140047, -0.938435, -0.842926, -0.256038, 1.017142, 2.124318, 0.670853, -1.085590, -0.075834, -1.136380, 0.056260, 0.005068, 1.308929, 1.919652, -0.757899, -1.764913, -0.961051, -0.524224, 0.744277, -0.398694, -1.685907, -1.250800, 2.620742, 1.426673, 1.531390, -0.549234, 0.039749, 0.816418, 0.874773, 0.593548, 0.341890, -0.720886, 2.045592, 1.059100, -1.585793, 0.117364, -1.400060, -0.271679, 0.300556, 0.429157, -0.048594, 1.825605, -0.187789, -1.988871, -0.278569, -1.196944, -1.196450, 0.377815, -0.264347, -0.096423, 1.694368, 0.064553, -0.601419, 1.795633, -0.738385, 0.862033, 0.112950, -0.171884, -1.117588, 0.027495, 0.501018, -1.714589, 1.029197, 0.595869, 0.387927, -0.210674, 0.080798, -0.243546, 1.389446, 0.108643, -0.484494, 1.065108, 0.363851, 1.662277, 0.311918, 0.507250, -0.922529, -0.121635, 1.133666, -1.246856, -0.369330, -0.880998, -0.322306, -1.283084, 1.346089, 0.411234, 0.074877, -0.655707, -1.423186, 1.047097, -0.137224, -0.244123, -1.552637, -1.174878, 0.145798, 1.972366, 0.448230, -2.426219, 1.045725, -0.167561, 0.825940, 0.016251, -0.064962, 0.263064, 0.672724, 1.177806, 1.542517, -0.563189, -0.044366, 0.360106, 0.832831, -1.260959, 0.230434, 0.784450, -1.034084, 1.870543, -2.031155, 0.417170, 0.560812, -1.195829, 0.612845, 0.899163, -1.401152, 2.247113, -0.571610, 1.203252, 1.117235, 0.135989, -0.523813, -1.513594, 0.059353, -0.616792, 0.304000, 0.866493, 0.354767, -1.745976, 0.022276, -1.697727, 1.487375, 1.695194, 1.046364, -1.174724, -0.473907, 1.501516, -0.048170, -0.490079, -0.282869, 0.503165, 0.701989, 1.311882, 0.618559, 0.680050, -0.446768, 1.140182, 0.191640, 0.295782, 0.555668, -0.875195, -0.571442, -0.027852, -0.182835, -0.357811, 0.422866, 2.659298, -0.925558, 1.770730, 0.509582, 1.120448, 0.398149, 1.599319, -1.093991, 0.713760, -2.153341, -1.756727, 0.405604, 0.624687, -0.133475, -0.353797, 0.452039, 0.041864, 0.235650, 0.163002, -0.918103, 1.255851, 0.667441, 0.128435, -0.694677, -0.045580, 1.365972, 2.156691, -0.676666, -1.416819, -0.541165, 0.350744, -0.532238, 0.336493, 0.027174, -0.520343, -0.681970, 0.201024, 1.257810, 1.273888, 1.516947, -0.530718, -0.405307, 0.492541, 1.234501, -1.045775, -0.582748, 0.645102, -2.354389, -0.026803, 1.464793, 0.252427, -1.213451, 1.868762, 0.099340, 0.516361, -0.027075, 0.896106, 1.777730, -1.297897, 0.217806, -1.072757, -1.791463, 0.478229, -0.262014, 0.871807, -0.822417, -2.204701, 2.201253, 1.646366, 0.011076, 0.231048, 0.051667, 0.317684, 1.205150, 1.224000, -1.492571, -0.584738, 1.034569, -0.879367, -0.319339, 0.006979, -0.713181, -0.386667, -0.024886, 1.284186, 2.160216, 0.240886, -0.242978, 0.267425, 0.236014, -1.177807, 1.788776, 0.388052, 1.355316, 1.202642, -2.108034, -0.178778, 0.484912, 2.020209, 0.208876, -0.839602, -0.001457, 0.858376, -0.664001, 0.782215, 0.892171, -3.486394, -0.238300, -1.358946, -0.820373, -0.145348, -1.102256, -1.003469, 0.278931, 0.630064, 0.787201, 1.933461, -1.147023, -0.295931, 0.748785, -0.647723, 0.533334, -0.310129, -0.179045, 0.145234, 1.811146, 1.355955, 0.390284, 1.069475, 0.325421, -2.135230, -0.020433, -0.500284, 0.860384, 0.743186, 0.295881, 0.628899, -0.346291, 1.131162, -1.370288, 0.537378, 0.556443, 2.123634, -0.337618, -1.103233, 0.841430, -0.622306, 0.527918, 2.053566, 1.972059, 1.444224, -0.399629, -2.606618, -0.983245, 0.513070, -0.659332, 1.074633, 1.540106, 0.368485, 0.282860, -1.572254, 0.855067, 0.946966, 1.116395, 0.831266, 0.623982, -0.145844, -0.504979, -0.553257, -1.404503, 0.383837, -0.741783, -0.957648, -1.081386, -0.612159, 0.453004, -0.094359, -0.335615, -1.062051, -0.825065, 0.074077, -0.103761, 0.497510, 0.178691, 0.692956, 0.562621, -0.363759, -2.542845, -0.824791, 1.200854, 1.026071, 0.913099, 1.773230, -0.187374, 0.291012, -0.517393, -0.131871, 0.829050, 0.876603, 0.203171, -1.341479, 1.005138, -2.543976, 1.478246, 0.290934, -0.668041, 0.439939, -0.083805, -0.039357, -0.340271, 0.232416, -0.529113, -2.221887, 0.590986, -0.223164, -0.519457, 0.985801, -0.900997, 0.027715, 1.044646, -0.167321, 0.253717, -0.026195, -0.668991, -0.399222, -0.151615, -1.054431, 1.610175, -0.543483, 0.031371, -0.043453, 0.883878, -1.894013, -0.233904, 1.581851, 0.851205, 1.092366, 0.163676, 0.501960, -0.350069, -1.045353, 0.861670, -0.032071, 0.914802, -0.057646, 0.231605, -0.300880, 0.326650, -0.008892, -0.388310, 0.177972, 0.704197, 0.995981, 1.300314, 0.326089, 0.813780, 0.233365, -0.263435, -1.192464, 0.333589, 1.137856, -1.659672, -1.717216, -0.267989, 0.759201, -1.769788, -1.083718, 0.359388, 1.404924, 0.505105, 2.148224, -0.226877, 0.220850, 1.595149, 0.677654, -0.273742, -1.116363, 0.533439, -1.131895, -0.083043, 0.009359, -0.713210, 0.904571, -0.377484, -0.259710, 0.289089, -0.759640, -2.310809, -0.681866, 1.006340, -0.510767, 0.081574, 1.587115, 0.499985, 0.843698, 1.137990, -0.266377, -1.732516, 0.245492, -0.507909, 0.034757, 0.501414, 2.122741, -1.783386, -0.824589, 0.058314, -0.792995, -0.304616, -0.071426, 0.439923, -0.541762, -1.084263, -0.835186, -0.529249, 0.174476, 0.079394, 0.851824, 0.727211, 1.708769, 1.110857, -1.161085, 1.188909, 0.798624, -1.010497, -0.986937, -1.299667, -0.890559, 0.282513, -1.041545, -0.202859, 0.859216, 0.468167, 1.032627, -0.857366, 0.262470, 1.242952, 1.690676, -0.387463, -0.183820, -0.159102, 0.804471, 1.468494, -0.316948, 1.057467, 0.507451, 1.030553, 1.394510, -0.831239, -0.443699, -2.422860, 2.197684, 0.387557, -0.098316, -0.264361, 0.852804, 0.846519, 0.069427, -1.962598, -0.656433, 1.284654, 0.508004, 1.712550, 0.927746, 1.389929, -0.841263, 0.016287, 0.414592, 0.459253, -1.315293, 1.522476, -1.992829, -0.122206, 0.141310, -1.506999, -0.213535, 0.637311, 0.374217, -0.785084, -0.367165, -0.340933, 0.268664, -1.854117, -0.843193, 0.799745, 0.439042, -0.479027, 1.816216, -0.796959, -0.098352, 0.184122, -1.440329, -0.102162, -0.564956, 0.564681, 0.152534, -1.126705, -0.906848, -0.899947, -0.771803, -0.359773, -1.455259, 1.607004, -0.669347, -1.238559, 1.235367, -1.357100, -1.189019, -0.724682, 1.156731, 0.048757, -1.040167, -1.028633, 0.750722, 0.494954, -0.580926, 0.770503, -0.597188, 1.279355, 0.022229, -0.582185, -0.184246, -1.289871, -0.780704, 0.630001, -0.586566, 0.935058, 0.194947, -0.318858, 0.078360, 2.083672, 1.231861, -0.458267, -0.227005, 0.328669, 0.245391, 0.976296, 0.158726, -0.477292, 0.711520, -0.387961, 1.317555, 1.333111, -0.961027, -0.188374, 0.692679, -0.544031, -0.709286, -0.244919, 1.496764, -0.025646, 0.986766, 1.168125, -0.595671, 0.217039, 0.277739, 1.199381, -0.070320, 0.250028, -1.336457, 1.843609, -0.215886, 0.736907, -0.203953, 1.386194, -0.214016, -1.542832, -0.638177, 0.567472, 1.397976, -1.605796, 0.958391, 0.832555, 0.602144, 0.509741, -0.418007, 0.921719, 0.248481, 0.137095, 0.789245, -1.211174, 1.911187, -0.412046, 0.603171, 1.063943, -0.278437, -0.769195, 0.287495, 2.051998, -0.479221, 0.533581, -0.653648, -0.098721, -0.663854, 0.036260, -0.405052, 0.109031, 0.096428, 0.249980, -1.259190, -1.150468, 0.031320, 0.580037, 2.193632, 0.324798, 0.192339, 0.280329, 0.330147, 0.983635, -0.667907, 0.818469, 0.934790, 0.849882, -0.365725, -1.267613, 0.156959, -0.044795, 1.298946, 0.247159, 1.582988, -1.091138, -0.303229, -0.217528, -0.761491, 0.430233, -0.486407, 0.780267, 0.408464, -1.697137, 0.390405, 0.432335, 1.848342, -0.014690, 3.594646, -0.974307, 0.608917, -0.992444, 0.658290, 0.946928, 1.229365, 0.700444, 1.380353, 0.691599, -0.057171, 0.347853, 0.670604, 0.542095, -1.577688, -0.746156, -1.153263, 0.511808, -1.187092, -0.771359, 1.072229, 0.243213, -0.556381, 0.532394, -0.457471, -1.479988, 0.457262, -0.639867, 0.969652, 0.114051, 1.801936, -0.804699, 0.010311, 1.543735, 2.623457, 0.156024, 1.204083, 1.816475, 0.588982, 0.637043, 0.282141, 0.435359, -1.616788, -0.706342, -0.027826, -0.880148, -1.677258, -0.836543, 0.020959, 0.009057, -0.647312, 0.019581, 1.882719, -0.408950, -0.234068, -0.533497, -0.681023, -2.475870, -0.469468, -1.796521, -0.120333, -0.651184, 0.448509, -1.394689, 0.994358, -0.578582, -0.567651, -1.770417, 0.267634, 0.453618, 0.634913, -0.806666, -1.150350, -0.635624, 0.207138, 1.162990, -0.285097, 0.185609, -0.510208, 0.663534, 0.574028, 0.808348, -1.014700, 0.089086, -0.244672, -1.382213, -0.509395, 1.282191, 1.554063, -0.829955, 0.145912, -0.482962, -0.205015, 0.538843, 0.489712, 0.101529, 0.353511, 0.412944, -0.824558, 0.366786, -0.139633, -0.483821, -0.324442, 0.607414, -0.248164, 0.350758, 1.608775, -0.762118, 0.229355, -0.529545, -0.622731, 0.264658, -0.815949, -0.185741, -1.615415, 1.813414, 1.076483, -0.923580, -0.074933, -1.110330, 0.387532, 1.658190, 0.951168, -0.607105, 0.679919, 0.837082, 0.402120, 1.949409, -1.939731, 0.126738, 1.067769, 2.484756, -0.814055, 0.122260, 0.798773, 1.432381, -0.456432, 0.442155, -1.545693, -1.356212, 0.446468, 1.058376, -0.768244, -0.156811, -0.221207, 1.477942, -0.442173, -1.270613, 1.634986, -0.461853, -1.703266, 0.756903, -0.244684, 0.283595, 1.364254, -1.692368, -0.562980, -0.180642, -1.089304, 0.881124, -0.871777, 0.076382, 1.939426, 1.507148, -0.304122, 0.186827, 1.748091, 1.121333, -2.656331, 0.202387, 0.549560, 0.831033, 0.365285, -0.447290, 0.359085, -0.096740, -0.034068, 1.027380, 0.084311, 1.679274, 0.373474, -2.310339, -0.416224, 0.763384, -1.951930, -1.160674, -0.377321, -1.109153, 0.262089, -0.663581, 0.005880, 0.379989, -0.162827, -1.932418, -0.136805, 1.290428, -1.519886, 1.574226, 0.127737, 1.960765, 0.460804, 1.575808, 0.471605, 2.033948, 0.373401, 0.980521, 0.313608, -0.504606, -0.369123, -2.741306, -1.706731, -0.228772, 0.030666, -0.538705, -0.988796, 0.156074, -0.274832, -0.860200, -0.495591, 1.038669, 0.678009, 0.677749, -0.779947, 1.779969, -2.416335, -1.392135, 0.281791, 1.439030, -1.487667, -1.359390, -1.093486, -0.251534, -0.713205, 1.789663, 0.245621, 0.647931, -0.600348, -0.543535, 0.855971, -1.222039, 0.857654, 2.951690, 1.376172, -1.066797, 0.991269, 2.114067, -0.535081, -0.575661, -0.248383, 0.946289, -0.819401, 0.776518, 0.464894, -0.001004, -0.921444, 1.056179, 1.021483, -1.777421, -0.545783, 0.486535, 1.187328, 0.635788, 0.266434, -1.306484, -0.097334, 2.922371, -0.758654, 1.567345, 1.127049, -1.692283, 0.045857, 0.416272, -0.682225, -0.072619, 2.377651, 1.017149, 0.310075, 0.049830, 0.675044, 1.048628, 0.566722, 0.186939, 1.353577, -0.711909, 0.386419, 0.251786, 0.616942, -1.446534, -1.456601, -0.333292, -0.431912, 0.532326, -1.495514, 1.671598, -0.144631, -1.749288, 0.285810, -2.707436, -0.562123, -1.155789, -0.193516, 0.802959, -0.755592, 0.692580, 0.741737, -0.962325, -0.377792, -0.003544, -0.650631, 1.497965, -1.000162, -0.946808, 0.807187, 1.434334, 1.113368, -1.449937, -0.075801, 1.140664, 0.585813, -0.129373, -0.154028, 1.085698, -0.670071, 0.955436, -0.675689, -1.143279, 0.778601, 0.381148, 0.607549, 1.028283, -0.480574, -0.703178, 0.459562, 0.140238, -2.022008, -0.361047, 0.736690, 0.060397, 1.325158, 2.016467, -1.506137, 0.500613, -0.099738, 0.384120, 0.561974, -0.171857, 0.535518, -0.503470, -0.861594, 0.837458, -2.551442, -0.649355, 0.145722, -1.688057, 0.472963, 0.609509, 0.781601, 0.204907, -0.153220, 0.192658, 0.890520, -1.119550, -0.102251, -2.426784, 0.402485, 0.412407, 0.782917, 1.484947, -0.037251, -0.182209, 0.818755, -0.752826, -1.361026, -0.224473, -0.786495, -0.337032, -0.024335, 1.476177, 1.558745, 0.730699, 0.898962, 0.208134, 0.625520, -0.626367, -0.705826, -0.328081, 0.605201, -0.160502, 0.539831, 1.972374, -0.034331, 2.050551, -2.461537, 1.340929, 0.987335, 0.077570, 0.964674, 0.060022, 0.401048, 0.562366, -0.164197, -0.853479, 0.060564, -1.169291, -1.393309, 0.036078, 0.291377, -1.114785, -1.375868, -0.173506, -1.047170, 0.719237, -0.574785, 0.465380, 1.485833, 0.444959, -0.111356, 2.094701, -0.796435, 0.949621, -0.387097, 0.615823, 0.223979, 1.412757, -1.753966, -0.854528, 0.195152, -0.072121, -0.408125, -0.639675, 1.640380, -0.264383, 0.942384, -1.105404, 0.636892, -2.126686, -0.398001, 1.145781, -0.566528, 0.019865, 1.177432, -0.404812, -0.078592, -0.842312, -0.977921, 1.036064, 0.211817, -1.278424, 0.867370, 1.773746, -0.138783, 0.775386, -0.226110, -2.122933, -1.414846, 0.860200, 0.192827, 0.615382, -1.662209, 0.683720, 1.351479, -0.501524, -0.602880, -0.562767, -1.421763, 0.613905, -0.160742, -0.451996, 1.373596, -1.448803, 0.791751, 0.954087, 1.505326, -0.489842, 0.278651, 0.133711, 1.198739, -0.596750, -1.191966, 0.322845, 0.209959, -0.263423, 1.192762, -0.247592, 0.313061, -0.111129, 0.190426, -0.274155, 1.239091, -0.795242, 0.489753, -0.657899, -0.637458, -0.420472, 0.124802, 0.491656, -0.369999, 0.491144, 1.184396, 0.728578, -0.249263, 0.131374, -1.403980, -0.823579, 1.057944, 0.864929, -1.006140, 0.400170, -0.952953, 0.455485, 0.456473, 0.596633, -0.935910, 1.635045, -1.180352, 0.011210, 0.462678, 0.305256, 1.843430, -1.836093, -0.064625, -0.701225, 1.593321, 0.342594, -0.499462, 0.457017, 0.626418, 1.378629, 1.039347, 0.106710, -0.054440, -1.148081, -1.424614, 0.907090, -0.699315, 0.585000, 0.201226, 0.962739, -0.439679}, - { 1.010416, -0.309043, 1.204260, -0.509250, -0.243453, -0.304250, 0.890589, -0.069237, -0.347434, -0.074926, -1.067423, 0.192790, 0.342207, 1.649058, -1.355424, -0.985628, 0.231938, 0.226418, 0.851564, 1.461408, -0.294262, 1.242378, 0.408768, 0.050244, 1.266880, 1.243934, 0.480212, -0.555638, 1.137895, 0.777227, -0.542142, -0.290013, 1.253020, -0.073015, -0.041742, -0.838141, -0.515762, 2.065937, -1.567724, 0.004215, 0.456660, -1.553581, -0.395120, 0.178893, -0.606070, 1.127735, -0.873622, -1.919711, 0.536308, -1.121117, -0.513417, -1.242096, 0.097661, -0.287035, -0.091048, 0.504286, 0.267257, 0.524297, -1.253473, 2.057532, -0.179194, -1.746351, 0.430002, -1.655340, -0.958785, -1.788257, -1.084069, 1.391134, -1.217832, -0.473744, 0.115082, -0.245269, 2.285121, -0.151225, -0.322988, 0.918793, -0.752371, 1.050677, -0.491103, -1.104802, -1.630058, -0.852692, 0.300839, 1.131455, 1.387815, -1.689473, -0.986665, 0.049414, -1.362607, -0.621823, -0.401429, 0.760414, -0.273486, -0.887414, -1.535449, 0.511934, -0.929861, 0.540893, -0.279906, 0.802243, 0.292376, -0.965930, 0.949230, -0.546341, -0.781126, -1.077312, -0.949399, 1.314570, 1.659268, -0.748283, 0.259723, -0.340441, 1.441039, -0.791230, -0.263753, 0.892493, -1.030681, 1.131898, 0.580527, 2.000997, 0.975002, 0.839327, -1.587929, 0.630512, 0.002391, -0.074393, 0.608571, -0.142330, 0.952709, -0.874363, 0.696845, -1.815330, 0.656817, -1.486761, -1.534300, -0.701957, 0.943310, 1.042855, 2.358797, 0.416700, -0.017034, 0.433069, -0.011004, -0.173236, -0.115596, 0.051128, 0.663712, -0.548174, 0.872363, 0.145439, 0.285777, 1.566287, -0.238297, -0.006885, -0.774382, 0.366424, -0.080734, -2.710001, 0.439383, -1.002456, -0.970384, -0.961890, 3.490964, 0.809727, 0.353984, 1.477589, -1.467686, 0.020331, 0.503404, 0.536891, 0.696897, -0.395359, 0.115709, 0.150898, -0.031312, 0.225935, 0.020565, -0.542556, -0.114886, 1.732591, 0.326515, 1.062555, -2.410397, -0.866161, 0.208505, 0.010224, -0.489790, -0.514825, 0.534689, -1.110567, -0.256419, -1.165121, -0.304879, -0.167284, 0.255534, -0.315703, 0.504279, -0.942896, 0.567892, -0.047614, 1.399009, -1.589057, -0.862849, 0.455270, 0.558508, -0.785139, -0.707202, -0.258170, 1.988394, 0.935582, -0.071434, -1.880812, -1.282884, 1.029053, -2.880106, 0.488955, 1.022291, 1.500410, 0.260480, 0.020532, -0.444004, -0.375660, -0.502270, 0.753304, -0.406186, -0.074191, -1.072201, -0.897618, 2.885920, 1.723169, -0.358783, 0.066630, -0.757659, -1.462883, -0.099514, -0.781888, -0.163763, -0.942756, 0.870715, 0.216274, 0.900797, 0.441015, 0.201028, 0.096693, -1.345433, 0.379103, 0.099227, -0.432822, 3.191398, 0.541971, 1.613225, -0.349525, -0.656382, -0.138081, 1.126396, -0.956076, 0.981902, -1.798026, -0.484808, -0.327029, 0.987955, -2.120864, 1.276514, 0.166492, 0.170288, 0.748443, 0.865300, -1.319565, -0.861134, -1.036145, -0.812188, 0.586185, -0.943297, 0.052543, 0.318141, -0.596764, -0.990043, 0.508671, 2.002311, -0.078523, 0.777366, 1.667504, 0.572665, -0.247519, -0.155144, 0.788749, -0.204256, 0.507869, -0.522305, -0.084260, -1.252190, -0.405599, -2.904880, 0.866473, 0.807213, -1.101755, 0.083207, 0.243147, -0.177316, 1.830771, -1.146695, -0.543339, -0.860428, 2.267442, -0.820892, -1.197848, 0.083810, -0.010950, -0.609573, -1.276636, 0.437712, 0.604366, 0.008873, -0.960727, -0.070219, -0.815834, -0.986378, 0.640244, -1.569330, 1.293904, 0.421855, 2.012494, 0.209163, -0.497484, 0.937448, 0.319405, -1.394444, -1.720089, -0.918215, -0.985651, 0.200978, 0.032662, 2.146677, 0.040047, -0.273101, 0.641028, -2.034189, 1.873661, 0.342198, 1.407326, 0.044908, 0.492146, 1.636077, -0.035151, -0.442977, -0.077730, 0.134376, 0.310273, -0.200068, 0.592712, 0.162397, 0.254787, -1.377385, 0.094739, 0.962069, -2.171408, 2.162844, 0.690210, 1.388234, 0.005580, 0.342907, -0.349609, 1.667774, -1.066359, -0.238641, -0.780886, -0.539105, -0.991823, 0.255495, 1.042573, -0.658925, -0.967421, -0.178829, -1.322513, 0.420673, -0.093762, -1.528491, 1.015406, 1.081974, -0.654101, 0.981567, -0.791851, 0.237913, -0.282481, -0.353879, 0.583476, -1.119684, 0.186188, -0.189118, 0.947353, 0.223708, -1.960695, 0.139627, 0.586785, 0.764663, 2.363238, 1.484291, 0.198049, -0.420543, -0.735407, -0.736592, 0.431002, -1.498423, 0.426982, -0.397435, -0.046128, 1.021015, -1.644024, -0.943688, 0.239698, 0.999267, 1.369292, -0.529599, -0.509496, -1.287670, 0.657737, 1.846742, 0.325806, -0.695332, 0.203885, -0.615502, -0.926867, -0.550214, -1.127624, -0.750949, 1.449595, -0.968377, -0.300917, -0.131462, -0.938599, -1.472992, 0.264710, 0.426847, -0.377507, 0.774005, -0.954702, 0.858345, -1.091208, 1.021650, -0.966927, -0.017607, -2.281462, 0.694478, -0.219036, 1.151983, -1.491888, 1.730335, -0.233411, -2.592901, 0.513393, 0.739484, 0.114455, -0.832838, 1.741856, -1.559417, -0.774695, 2.040797, -0.513673, 0.109287, -1.782382, -0.910661, -0.640022, -0.499033, -0.936387, -0.334772, 2.180211, 0.207142, -2.018575, -0.251810, 0.617202, 1.474643, -2.439727, -0.425456, 0.779463, 1.000111, -0.949827, -1.597802, -0.093590, -2.137631, -2.357876, 0.276592, -0.524417, 1.264088, -0.303140, -1.017319, 1.798368, 1.219235, -0.320192, 0.521272, -0.588582, 0.768489, -0.452129, -1.092483, -0.418890, -0.421347, 2.300022, 0.317742, 0.835321, 0.264652, 0.556346, -0.570816, -0.507506, 1.522434, 1.569268, -0.162226, -1.202582, -0.595115, -0.351121, 2.119761, 0.278577, -0.660400, 0.003418, 0.192745, 1.515761, 0.148002, 0.363835, -0.954189, -0.088879, -0.003313, 0.045289, 0.243789, -0.383563, 1.576286, -0.667901, 0.659780, -0.798888, 0.159219, 0.226763, 0.200147, -0.774538, 0.426037, 1.979842, -0.205188, -1.222286, -0.578782, 1.437691, -0.065428, -0.053226, -0.286024, 0.952052, 0.214028, -0.375307, 1.022640, -0.723889, -0.845210, -1.581881, 0.611915, -0.669099, -0.704683, -1.868947, 0.538739, -0.569290, -1.133737, 1.699531, -1.026460, 1.083185, -1.867240, -0.363077, 1.097485, -0.092088, 0.244652, 0.794236, 1.793932, -0.053678, -0.950334, -0.333902, 0.706719, -1.946591, -0.649317, -0.707172, -1.545130, 2.081714, -1.454231, -2.440954, -0.054485, 0.351992, 0.465739, -1.089909, 1.598644, 0.819923, -0.835225, -0.389187, -0.941232, 0.236264, 0.728013, 0.519689, 1.364658, 0.273281, -1.466224, 0.223009, 0.174374, -1.082851, 0.335955, 0.376991, 0.403246, 0.452208, -1.205466, -0.210634, 2.257762, 0.038373, -1.617309, 0.815829, 0.839546, -0.292490, -0.025208, -0.686145, 1.452747, 0.748356, -1.212110, -0.951310, 0.451716, 0.208185, 0.002344, -0.184100, 1.092598, 2.034609, 1.186808, 0.596469, 0.812490, 1.312180, 0.402173, -1.333587, 0.797609, 0.979228, 0.479650, -0.601317, -0.773677, 0.864561, -0.156502, 0.578619, 0.002637, 0.302770, 1.475414, 0.102147, 0.650406, -0.542641, -0.498662, -0.688441, 1.057207, 0.680153, -0.164897, -1.589375, -0.626532, -1.350541, 0.094207, 0.024144, 0.033231, -2.116893, -0.139615, 0.633968, -0.392008, -0.621979, -1.031888, -0.006171, 0.341959, -0.304727, -0.675608, 0.373853, -2.475079, -1.425560, 1.673913, 1.008796, 0.016358, -1.151680, 2.144601, 0.477443, -0.887749, 0.980220, 0.166570, 0.206412, -0.513800, 0.436815, 0.405896, -0.040816, 1.110727, 1.600247, 1.465791, -0.788530, 1.201879, -0.366949, 1.394733, 1.070748, 0.150472, 0.659714, -0.757924, -0.172787, -0.609503, 1.250226, 1.298262, 0.451066, -1.359456, -0.117556, -0.794953, 0.310740, -1.004179, -0.945177, 0.520098, -1.132981, -0.797592, -0.081408, 0.637807, -0.984319, 0.346406, -0.824686, -0.397321, 1.026535, -0.835315, 0.056043, -0.146760, 1.796133, -0.641363, -0.736158, 0.433930, 0.389400, 0.019762, -0.834503, -0.034398, 0.239323, 0.368093, 1.294903, 1.316761, -1.682339, -0.124992, 0.770280, -0.343303, 1.362679, 1.640580, 0.752038, -0.851014, -0.421579, 0.435795, -0.778787, 1.039243, 0.469155, 0.108753, 1.366291, 0.841241, 0.210745, 0.182440, 0.200677, 0.436389, -0.237686, 1.753419, 0.489163, 1.276351, 0.591933, 0.460519, -1.152828, -0.717730, 1.502052, -0.607565, 1.548253, -0.604468, -0.727911, 0.644048, -0.005045, 0.922403, 0.088790, -0.102192, 1.039948, -1.606114, -1.428640, -1.262117, 0.299861, -1.114343, -0.265729, 0.125110, 0.030758, -0.083524, 1.094934, -0.270417, 0.472369, -0.059708, 0.628177, -0.107136, -0.324765, -0.952523, -0.046930, 1.523735, 0.272287, 1.725026, -1.205695, 1.062197, -0.711978, -0.146690, -1.423114, -0.778422, -1.217096, 1.715939, 1.576324, 0.051942, 0.204556, -0.932816, 0.492694, 2.438417, 0.888981, -0.527529, -1.933757, 0.646135, -0.614193, -1.087856, -0.557064, 0.185985, 0.511061, -0.390883, -1.596592, 0.978180, -0.946558, 0.721499, -0.743225, 1.841631, -0.959513, -1.604350, -1.784055, 0.725962, 0.975490, 1.898428, -0.818010, -0.731995, 0.577568, 0.418148, -0.367793, -0.613654, -0.011497, -0.263782, 1.711323, -0.300193, 0.876097, -0.997962, 0.858011, -1.095400, 0.962259, 1.133087, -0.328039, -0.213810, 0.205992, -0.244006, 0.058983, 0.718961, 0.958461, -1.003019, -0.751842, -0.242856, -0.264801, 0.244261, -1.048357, 0.014919, 0.477452, 0.186028, -0.173006, 1.745380, 0.585445, -1.638158, 0.338894, -0.284006, -3.493119, 0.571100, -2.741557, 0.451146, -0.654038, 0.037411, -0.134293, -1.581769, -0.902480, 0.966946, -1.354360, 0.755069, -0.544637, 1.839966, -0.420417, -1.721993, -0.579371, 0.065471, 0.672800, -0.917232, -1.586558, 1.025455, 0.606238, -0.381239, -0.455500, -1.205888, 0.774092, -1.940934, -0.782034, -0.327826, 0.354076, -0.025557, 0.920551, -1.810738, -1.925011, -0.107626, 1.147085, -2.321892, -0.513339, 0.409429, 0.534713, -0.280586, -0.040125, -1.029857, -0.014253, 0.214418, -0.967326, -1.053586, 0.445565, 1.076704, -0.012910, 1.895640, 0.311183, 1.685511, 0.450028, 1.014505, -0.650555, -0.798246, -0.998815, 0.520359, -1.273114, 1.390960, -0.561613, -0.022688, -0.053627, 0.057131, 1.717007, -1.262933, 0.907290, 1.256241, -1.131723, 1.599953, -0.253555, -0.896650, -1.552177, -1.338289, -0.957251, -0.388387, -0.722031, 0.028977, 1.396168, 0.081871, 0.537319, 0.636286, 0.700353, -0.279753, -0.983189, 0.385888, 0.592412, 2.058786, -0.798062, 0.712257, -0.119313, 0.028472, -1.269644, 0.515530, -0.395772, 0.756266, 0.294836, 0.601913, 0.971878, 3.165786, 1.497066, 1.381218, 0.637049, -1.192745, 0.351044, 1.912264, 1.321968, 1.728423, -0.027998, -1.353320, -0.738639, 0.903697, -0.574246, 0.218770, -1.543242, -1.997329, -0.083894, -0.290574, 0.150222, -0.875749, 0.292958, 0.273309, 0.066613, -0.746650, -0.288609, 0.183678, 0.480538, -0.604838, -0.770552, -1.327995, 2.446121, 0.242837, 0.035695, 1.264200, 1.304335, -0.436617, -1.002368, -0.122616, -0.914776, 1.051786, 0.346259, 0.174848, -0.360196, 0.509331, -0.763519, 0.094443, 0.748851, -0.479733, 0.048598, -0.470991, -0.880891, 0.528085, -0.831811, -0.168548, -0.756303, 0.843103, 0.528023, -0.100302, -0.176102, -0.588082, -0.602964, -0.069620, -1.392507, 2.136610, -0.253163, 0.445596, -0.072787, 0.231489, 1.256343, 0.922688, 2.098324, 0.431670, -0.616264, 0.397559, 0.981272, -0.702541, 0.411561, -0.789860, -0.101933, 0.820929, -1.238067, -1.383445, -0.584946, 1.315012, -0.683212, -0.807401, 0.221157, 2.572555, -0.558486, -0.466617, 0.650243, 0.404331, -0.637288, -0.501941, -0.107137, -0.285530, 1.819867, -0.607296, 0.902662, -0.723361, -0.813568, 1.119328, 0.994681, 1.631943, -0.647467, 0.099469, 0.796308, -1.118404, 1.282666, -1.946691, -0.066002, -0.374988, 0.805715, 0.080832, -1.163378, 0.997132, 1.825287, 0.480180, 0.081590, 0.105172, -0.479911, 0.234662, 1.346949, -1.093379, 1.214430, -1.112203, 0.465987, 0.728168, -1.621110, 0.583074, -1.183695, 0.156311, 0.066771, 1.204989, 0.914211, 1.242568, -1.955169, -0.280042, 0.315662, 1.577902, -0.259655, -1.075322, 0.256076, 2.150965, -1.336083, 0.290708, 0.768369, -0.143799, -1.274200, 0.022063, -0.884434, -1.664843, 0.172083, 2.303315, 0.683597, 0.147329, -0.366698, -1.719324, 0.051357, -0.347740, 1.275837, -0.218232, 1.170323, -1.662511, -0.687318, 0.907392, 0.430589, -0.053352, 0.889480, -1.253622, 0.450284, 0.249036, 1.302276, 0.586593, 0.053065, 1.568096, 1.770037, 1.454865, -0.548367, -1.565844, 1.775465, 0.249632, -1.039956, 0.795342, -0.511277, 0.081967, 0.445284, 1.067112, 1.123052, 1.408181, -2.405706, 0.057144, -1.374030, 0.061260, 0.312595, 0.676322, 0.931774, -0.067539, -1.043824, 0.201093, 0.379765, -1.606246, -0.725767, 0.028409, 0.045244, -0.303882, -0.888580, 0.192998, 0.661582, 1.439774, 0.904899, -0.210575, 0.620243, -0.383762, 0.113186, -0.268947, 0.481107, -1.114118, 0.114565, -0.165559, -0.725235, 0.298934, 0.381351, 1.024736, -1.153659, 0.896177, -1.690750, 1.079421, 0.676033, -0.371577, 0.218614, 1.335192, -0.332709, -0.350457, 0.599502, 0.205720, 0.407148, -0.323578, 0.655907, 1.158795, -0.017071, 0.088476, -0.347644, 0.546670, 0.137762, -0.522284, 0.081650, 0.040479, 0.203716, 0.827086, 0.796083, 0.814420, 1.816166, 0.220131, 2.391267, 0.221054, 0.447738, 0.709133, -0.157327, 0.935208, 0.268604, 0.940662, 2.119045, 0.634606, -0.404540, -0.171930, 0.677152, -0.771961, -1.217854, 1.265833, -1.457031, 1.158979, 0.612943, 0.231427, 0.650473, -1.515571, 0.606932, -0.109494, 1.376330, 0.432135, 0.660849, 0.462841, -0.738863, -0.796471, -0.540915, -1.058321, -0.234455, -0.413326, -0.652293, -0.346293, -0.330266, 1.018993, 1.047712, -0.030798, 0.832906, -0.588213, -1.710313, 1.144080, 0.357935, 1.446213, -0.685933, -0.681213, 0.642061, 0.689908, 0.172521, -0.118253, 1.743970, -1.124316, 0.751217, -0.952258, 2.134021, 1.000273, 0.051863, -0.683537, -0.394543, 0.059142, 0.806354, 0.655425, 0.216655, 1.658706, 1.077564, 1.337428, 1.173931, -0.376355, -0.718538, -1.263968, 0.124676, 0.628591, 0.649896, 0.984522, -1.142577, -1.047129, -1.069562, 0.510604, 1.082319, -1.788132, 1.654094, -1.035538, -0.450806, -0.138076, 1.795855, 0.547535, -1.066553, 0.701321, 0.646998, -1.165189, 1.381142, 0.224558, -0.814839, -0.257461, -0.317717, 0.791956, -0.521247, 0.182536, 0.476384, 0.662352, 0.868469, 0.499103, -2.276606, -0.700339, -0.799431, 1.791469, -1.278518, -1.327601, -0.224936, -0.342351, 0.316049, 0.778886, 1.051512, -1.335621, -1.149686, 1.686925, -0.254368, 0.635095, -1.187148, -1.010278, -0.492819, -1.169926, 0.682603, 0.053245, -0.503127, -0.189006, -0.779797, 0.485712, -0.416719, -0.221808, -1.254290, -1.792164, 0.619780, 0.047934, 1.480217, 0.872310, 1.030734, 0.379362, -1.452760, -1.212062, -0.870231, -1.038103, 0.057124, 0.022883, -0.468857, 0.218550, 0.576703, -0.831564, -0.286510, 0.397877, -0.748201, 0.555598, -0.909750, -0.509538, -1.310334, -1.292420, -0.525875, -0.786236, -0.624085, -0.385486, -0.801028, -0.009571, -2.257022, -1.588910, -0.528587, -0.828641, 0.644814, -0.142657, 0.957285, -0.780736, 0.592382, 0.070177, 0.684669, -0.107393, 2.244922, 1.474520, -0.684866, 2.321015, -0.442424, -0.730348, -0.938591, -0.458850, -0.923669, -0.693816, -0.894782, 0.506693, 0.379831, 0.129668, -0.836614, -0.506009, 2.072190, -1.019043, 0.188217, 1.001233, -0.508240, -0.736047, -0.980374, 1.593231, -0.206044, -0.012771, -0.188056, -0.340899, 1.454946, 1.451661, -1.756262, 0.466374, 0.096658, -0.114193, -0.883717, 1.762851, 0.023497, -0.395106, -0.023293, -0.685980, 1.715271, -0.710072, 0.244675, -1.650159, 1.470560, 0.044509, -0.056639, 0.292866, 0.350013, 0.444982, 0.943564, 0.160168, -0.228492, -1.001426, -0.134507, -0.844040, -0.357401, -0.605854, 0.355575, 0.505713, -0.134223, 0.028477, -0.382544, -0.423431, -0.910372, -0.209491, 0.495415, -0.032237, 2.009180, 0.147206, 0.717580, 1.622344, 0.940787, -0.381611, -0.541310, 1.625242, -0.099227, -1.857770, -0.106963, -0.214531, 1.949480, -1.704526, -0.662712, 0.514992, 0.575963, 0.093116, 1.884132, -1.016716, 0.067718, 3.525071, 0.722898, -1.378108, 0.731708, -0.635515, 0.602832, 1.663256, 2.197930, 0.257048, 2.505107, 0.566762, 0.979314, 1.213718, -1.514245, 1.260772, -0.879602, -0.064179, -0.955029, 0.156186, 0.711772, 2.095929, 1.221367, 1.021019, -1.947429, 0.053563, -1.571172, -1.712534, -1.337238, 1.826482, 1.555171, -0.361187, -0.705218, 0.431315, 2.707319, 0.156639, -2.006769, 0.266519, 2.519930, 0.064009, -0.398410, 0.552100, 0.077366, -1.404637, -0.117074, -0.383022, 0.652414, 1.471821, -1.685982, -0.765709, -0.215678, 0.869112, 0.550228, -0.767380, -1.664271, -0.183127, -0.474050, -1.057527, -0.801472, 0.136443, 0.518924, 0.837671, -0.700037, 0.457764, -0.575128, -0.568784, 0.192139, 0.339454, -1.129597, -0.342714, 0.669315, -0.354307, -0.901839, -0.793999, -0.439380, -1.260784, -1.059923, 0.807124, -1.475509, -0.997639, 1.061441, 1.780895, -0.833064, 1.202443, 0.153890, 1.120824, -0.952271, -0.640651, 0.888717, -0.749905, 0.980772, -0.165455, 0.840177, 0.506043, -0.074439, -0.646241, -1.196535, -1.473457, -1.025843, 1.384802, -0.205239, 0.933269, 0.852717, -0.631608, -0.605848, 2.204123, 0.899414, -0.812970, -0.281677, 1.452321, -0.339074, 0.472734, -1.125468, 1.179123, 1.223917, -0.570790, 0.776367, -2.283300, 1.614032, -0.165724, 1.079280, -0.474152, -0.786561, 0.160983, -0.176196, -1.804664, 2.097442, -1.171600, 1.923921, 0.509796, -0.559737, 0.319586, 0.958536, -0.678699, -0.386368, 0.027626, 1.265167, -1.345930, 0.254827, -1.527831, 0.141637, 1.593094, 0.156084, -3.056865, -0.245565, -0.465173, 0.727681, 1.416753, -0.983813, 0.874930, 1.614263, -0.031769, 1.114022, -0.389009, -0.147253, 0.392513, 0.602372, 0.213457, 0.505253, -0.745142, -0.377469, 0.915819, -0.554277, -1.101924, -0.025209, -1.138321, -0.523159, 0.088973, 0.581748, 0.911635, 0.805386, 0.190995, -1.566399, -0.871323, -1.646309, -2.083198, -0.699157, -1.936154, -1.039101, 0.351493, 2.543581, 0.380145, 0.636793, -1.232949, 0.223535, -0.658429, 0.393315, 1.096874, 0.389380, -1.570974, 0.563085, 1.026896, 0.109118, 0.579006, -0.678324, -1.216875, 1.789480, -0.229035, -1.392942, -0.950321, -0.088313, 0.400355, 0.280385, 0.505757, 1.058196, -0.443377, 1.683682, 1.278953, -0.216402, 0.697448, -0.274509, 0.748989, 0.398882, 0.231902, -1.297925, -0.232622, 0.001290, 0.306747, -0.281876, -1.783599, 1.066509, 2.259376, -0.599245, 0.296969, -1.174173, -0.658929, 1.784487, -1.824762, -2.342735, 0.196985, -0.489315, 0.714056, 1.609772, 0.474250, 0.233969, 0.538214, 0.174779, -0.372400, -0.485277, 1.761914, -0.679665, -1.650604, 1.172769, -1.172119, -0.890124, 0.904746, 0.702208, 0.035457, -0.995319, -0.538248, 0.490332, -0.525949, 0.780202, 1.046797, -0.530066, -0.426790, -0.908589, 0.427402, -2.026588, -1.563893, -1.427157, -0.580784, 0.542865, -0.152298, -0.781005, -1.404719, 1.548622, 1.025263, -0.377098, -1.015003, -0.313740, -0.914655, 0.060810, -1.219147, -1.970471, -0.330691, -1.191620, -1.711774, -0.739467, 0.072992, -1.195651, -0.395240, -0.254014, 0.261251, -0.900271, 0.167436, 0.827294, 0.470323, 0.484870, 0.545093, 1.111824, -0.399583, -0.044468, 0.666031, -1.789258, 0.257656, -0.811399, -0.462023, -0.579402, 1.022489, -0.251694, -0.989028, 0.134830, -0.886865, -0.871208, 0.229175, -1.430037, -0.883812, -0.450496, -0.607847, 0.393400, 0.481358, 0.226084, 0.283049, 1.575148, 0.307526, -0.218971, 0.021006, 0.819853, -0.019379, -0.094840, 0.731058, 0.131002, -1.785889, -1.045723, -2.418310, -0.029961, 1.103737, 0.942718, -0.632671, 1.848520, 0.420746, -1.888876, 0.552942, 0.566347, -0.718096, 0.712276, -1.828897, -0.499452, 0.116303, 1.315645, 0.884146, -0.323418, 0.463636, -1.514444, 2.352086, -1.365315, 1.239967, 0.588737, 1.638455, 1.129810, -0.438809, -0.394888, 0.653613, -2.868885, -0.838789, -0.823126, -0.196717, 0.202075, 0.552049, 1.482252, 0.075047, -0.418021, -0.281258, -0.142049, -0.114351, 0.475819, 1.024567, -1.324666, 0.157907, 1.319639, 0.095391, 0.946895, 0.500446, 0.880789, -0.247725, -0.323405, 0.370860, -0.254428, -1.458892, -0.402498, -0.987412, -0.332088, -0.220281, 0.403325, 1.553383, -1.556870, 0.351992, 1.844337, 1.698081, 0.375805, -1.070631, 0.784901, 1.909826, 1.023797, -1.802303, -2.211247, -1.431070, 0.467244, 1.438755, -0.427119, 0.380609, -0.415295, 0.995989, -0.840233, 0.583054, -0.333990, 1.139243, -1.187958, 0.129554, -0.474073, -1.841934, 0.728499, -2.114883, 0.472777, -0.971807, 0.806532, 0.016578, -0.662566, 0.052372, -1.091360, 0.426197, -0.371913, -2.076143, -1.251437, 0.004846, -0.717205, -0.172040, -0.128197, -0.507114, -0.676108, -0.402204, 0.421484, -0.224705, -0.431267, 0.358302, 0.252345, 0.196528, -1.468621, -0.296069, -0.170987, -0.397447, -0.022102, 0.325280, -1.296807, 1.482439, -1.817771, 0.571995, 0.149197, 0.202421, 0.509201, -0.134834, -1.096534, 1.098068, -0.033935, -1.436609, -0.213835, -0.501434, -1.048211, 0.205513, 1.223317, 1.716906, -1.105310, 0.729498, -0.203941, 0.827914, -0.378645, 0.011730, -0.875761, 1.080804, -0.706079, -0.345244, -1.040379, -0.165118, 0.389640, 1.530612, -0.123796, -0.672278, -1.786623, -1.908797, -1.568014, -0.479456, 0.500370, -0.066324, -0.336116, -0.015939, -1.132344, -0.374028, -0.663659, -0.464168, -0.394359, -0.998954, -0.312372, -0.747966, -0.418536, 0.658967, 0.164697, 0.695017, -0.893809, -0.711494, 0.143180, -0.318031, -1.098444, -0.874813, -1.384449, 0.432204, 1.213473, 0.835967, -0.384356, -0.441638, 1.099433, 2.306718, -0.693518, -0.625641, 0.683555, -1.544752, -0.243667, 0.639205, 2.021758, -1.080002, -1.088442, -0.313440, -0.644608, -0.300581, -0.652714, -0.806812, -1.068784, 0.046435, -2.118585, -1.115179, 0.182071, -0.558630, -0.702132, -0.137491, -1.977500, -0.461848, 0.751477, 0.994610, -1.775799, 1.104487, -0.330515, -0.909022, 1.179385, 0.035512, 0.437703, 1.633006, 0.182793, -0.691155, -0.152167, 0.990307, -0.233173, -0.497868, 1.240438, 1.607911, -0.900660, -0.646264, -0.811764, -1.207551, 1.981435, -1.008740, 1.519909, -0.522556, 0.084641, -0.759907, -1.892481, 0.031610, 0.473053, -1.412629, 0.500290, 0.231998, -0.605847, 0.161867, 2.002990, 0.542543, -0.321592, 0.711354, 0.380658, -0.139414, 1.558352, -1.020395, 0.987752, 0.965388, -0.047861, 0.290719, 0.996668, -0.416594, 0.596539, 1.280106, -0.254135, 0.973754, -1.101897, 0.702517, 1.910838, -1.472545, -0.045363, 0.229224, 0.301390, 0.670903, -0.952184, -1.607860, 0.072578, -1.581107, 0.443338, -0.222851, 2.756876, -1.310119, -0.020809, 0.791069, 0.861844, 0.734797, -0.392561, 0.854192, -0.659934, -0.003381, 2.028399, -0.708423, 0.013903, 2.381469, 1.181861, 0.618737, -0.293065, -0.506139, -0.097306, 0.073013, 0.344808, 0.914580, 0.127076, 0.590228, -1.261667, -0.371993, 1.151965, 1.141296, 0.410996, 0.351491, 0.064431, -0.838813, 0.972374, 1.053544, -0.002942, 0.714476, -0.322011, 1.801567, 1.384604, -0.836596, -0.046222, 0.191870, 1.642402, -0.096622, 0.282654, 1.375070, -0.477836, -0.661633, -0.120481, -1.583234, -1.006868, 0.183058, 1.083475, 0.698355, 1.979010, 0.540444, 0.961085, 0.324660, 0.147543, 2.509147, 1.010739, -0.683794, 0.500731, -1.610149, -0.871616, 2.896942, 0.924603, 1.219212, -0.044985, 0.637004, -1.119053, -0.294312, -0.747165, 0.960623, 1.028422, 0.649897, -0.378474, -0.445009, 2.368332, 0.457036, -0.937630, -0.854273, 0.696293, 0.129350, -0.366837, -0.396054, 0.261006, -0.925259, -0.456275, -0.001663, -0.517747, 0.303678, 0.533820, 0.920562, -0.138332, 1.458676, 0.439266, -1.523234, 0.684625, 0.245576, 1.128591, -0.651955, -1.335039, -0.297670, -1.723721, -1.224969, 0.960434, 1.007089, -2.137786, -1.267744, -0.262784, 0.990362, -0.555036, -0.793861, 0.872762, -0.207125, -1.447256, 1.369942, -0.816625, 0.044462, -0.616905, 0.695319, 0.004452, 0.448508, -1.543660, -0.683089, -0.201652, 2.196388, 1.030919, -1.469105, 0.602515, 2.539225, -0.089296, -0.508063, -0.031555, 1.035785, 0.169931, -0.986887, -0.385489, -0.817233, -0.031580, -0.626486, 0.200654, -0.182102, -0.351826, -0.187926, -0.383140, -0.385970, -0.585135, -0.163542, 1.713342, -0.921847, 0.167827, -0.805821, 0.548464, 1.375206, 0.921165, -0.575711, -0.440952, -0.683945, 0.338662, 0.565328, -0.364061, -1.173212, -1.258109, -0.390788, -0.818243, -1.455010, -0.524701, 0.740669, -1.490082, -0.741762, -0.119025, -0.893809, -1.392061, 0.332242, 0.382190, 0.641684, 1.529958, -0.659197, 0.334477, 1.125260, 0.413570, -0.346402, -0.007930, -0.737436, -2.397323, -2.118458, -0.552373, -0.937271, -1.579488, 0.203219, -0.290763, 0.094903, 1.809901, 0.799022, -1.141322, 0.394433, -0.196285, -2.278059, 1.603311, 0.297939, -0.114695, 0.502298, 1.005838, 1.324990, 0.487013, 0.987532, 0.463202, -0.157926, 1.739709, 0.155327, 0.343587, 0.029521, 0.140078, 0.155230, -0.561813, 1.011946, 0.007880, -0.128152, -0.319394, -1.001673, 0.808477, 0.710711, 0.635156, -0.531456, -1.079610, 1.531201, -1.183632, 1.119258, 1.566969, 0.455719, -0.043641, 0.129101, 0.066554, -0.116065, 2.492334, 0.243415, 0.990687, 0.224493, -0.051058, 0.167348, 0.657801, 0.932677, 0.252847, 0.510985, -3.157595, 1.625633, -1.275724, 0.005677, 0.751649, -2.079681, -0.140341, -0.248205, -0.477035, 2.683731, 0.255939, -1.219899, 1.245760, 2.048002, 0.559533, -1.503335, 1.179665, 0.350367, -0.248408, 0.650341, 1.280945, -0.862085, -0.593117, 0.783220, 2.210081, -1.099606, 0.913108, -0.788223, -0.414219, -0.367210, 2.356318, -1.025373, 0.451879, 1.041746, 1.205814, 2.762030, 0.266384, -1.372844, 1.837037, 0.433872, -0.025650, 0.283814, -1.612595, -0.100760, 1.025159, 0.293806, 1.239109, 1.023700, -0.289077, 0.222629, 2.065078, -0.175527, -0.116824, -0.864729, 0.227295, -1.914245, 1.564581, 2.536207, 0.276864, -0.425854, 0.084087, 1.500714, 0.725067, -0.392997, 0.214902, 0.324331, 0.179123, 2.785388, 0.888026, -0.525624, 1.469832, -0.349266, -0.274373, -1.148010, 0.579981, -0.692619, -0.040625, -0.993343, -0.406150, 1.506176, -0.497475, 0.789098, -0.035790, 0.990151, -0.039079, -2.705557, -1.094666, -0.625143, 0.804866, 0.219521, 0.081206, 0.511616, 0.726750, 0.152445, 1.195558, 0.426885, -1.665915, 0.375987, -0.350676, -0.564595, 0.339522, 0.427084, 1.657469, 0.568936, 3.105310, 0.765127, 0.788472, 0.370094, 0.804437, 0.592568, 1.480782, -0.709450, 0.465543, -0.667039, -0.368412, 0.476881, 1.994036, -0.982412, -0.684944, 0.431290, -1.330208, -0.848735, 0.612638, -1.417809, -0.007506, 0.773699, 1.428895, 0.691483, 0.830463, -1.282452, -0.566430, 0.026518, 2.121457, 1.746775, 1.906468, 0.396993, 0.159653, -1.335027, 0.584783, -0.294817, -1.022833, -0.174066, -0.783860, 1.334226, -2.058365, 0.461409, 1.824046, -1.420278, 0.421575, 1.330390, 0.021946, 1.271346, 1.073289, -0.105101, -0.769342, 1.104624, -0.229109, -0.346910, -0.249460, -1.416018, 0.504529, 1.904952, 1.211589, -0.627354, -1.145866, -2.263822, 0.023647, 0.537481, 0.625102, 0.166266, -0.458749, 0.852503, -1.423139, 0.572783, -1.070083, -0.914595, -0.632868, -0.384522, 1.447742, 0.305189, 0.987366, -1.565554, -0.627675, -0.259939, 0.005226, -0.907356, 0.646443, 1.209102, -0.529064, -1.343631, -0.919577, 0.518216, -0.818729, -0.660674, -0.002334, 0.152368, 0.430964, -0.908601, -1.041438, -1.008916, 0.369467, -0.651854, -0.537265, -0.574869, -0.261072, -2.369316, 0.229630, -0.322115, 0.325665, 0.050208, -1.428625, -0.671835, 1.119180, -0.391970, -0.254049, -0.291748, -0.491692, -0.143579, 0.327894, -0.086655, 0.688373, -1.438234, 0.041709, 0.678302, 2.927514, -0.987963, -0.216131, -0.995992, -0.615756, 1.755934, -0.006421, 1.098392, 0.324436, 1.007182, 0.368347, -0.592884, 0.088959, -0.563451, 0.485165, 0.992092, 2.499524, -0.623244, -0.018389, -1.874109, -0.738346, 0.181017, 2.217338, -0.683366, 0.620883, 1.017413, 1.040897, -0.979345, 2.010843, 0.792239, -0.297833, 1.220630, -1.694964, -0.612575, 0.796962, 0.549168, 0.620890, -0.571573, -0.570756, -0.906425, -1.012280, -1.518525, 0.588146, -0.044602, -0.206276, -0.228919, 0.141782, -0.215266, 1.747399, -0.909909, 0.987336, 1.915157, -0.867561, 0.060568, 0.885174, 1.395962, 0.550065, 1.581690, -0.164328, -0.459357, 0.990657, 1.457520, 0.238631, 0.411438, 0.089105, 1.345971, -2.658618, 0.135135, 1.049907, -1.694229, 0.177401, -0.248113, -0.291922, -0.261910, 1.064905, 0.456701, -0.250302, 1.075610, 0.421758, 0.962856, -0.984678, -1.382609, 0.803392, -0.333360, -0.215848, 0.871534, 0.849590, -0.722227, 0.013032, 0.314628, 0.446570, -0.774570, -1.025838, -1.132255, -0.456291, -1.881487, 0.452940, 0.834990, 1.214516, 0.425363, 0.682928, 1.140494, 0.971782, 1.246880, 1.059481, 2.242805, -0.522573, -0.171542, 1.104010, -0.245134, -0.413827, 1.077239, 0.080880, 1.530349, -0.927708, 1.878834, -1.520821, -0.723451, 0.117842, 1.087706, -1.102160, -0.041194, 2.224988, -0.534364, -0.029992, 2.730592, 0.420793, -0.204795, -0.889640, 1.034558, -0.814875, -0.111423, -1.609026, 1.293927, -1.170157, -0.899608, -0.678674, 0.576887, 0.292821, -0.396618, 0.248343, 0.100238, -0.578918, -0.306456, -1.071213, -2.044917, 1.086225, -1.354019, -0.466433, 0.196035, -0.721771, 1.054357, -0.543856, -0.162560, 0.394111, 0.376948, -0.288080, -0.113722, -2.283901, -0.007702, 0.284499, -0.314419, -0.204461, -0.249654, 0.302865, -0.020056, -1.126304, -1.943631, 0.414700, 0.033138, 0.850032, -1.056158, -0.984817, 2.012539, -1.162767, 0.036114, -0.123424, -0.286858, -2.160591, -0.655729, 1.186937, 1.005903, -1.537253, 0.245097, -0.480056, 1.414874, -0.409645, 1.219627, -0.008330, 1.037111, -1.878316, 0.539800, -1.676014, 0.382768, 1.174856, -1.649877, 0.052651, -0.030654, -1.212355, 0.925200, 0.383778, 0.182420, -0.404893, 1.877626, 1.750972, -0.250133, -0.550591, 0.357721, 0.659463, -1.695663, -0.358620, -0.502560, 0.028817, -0.886939, 0.655762, 2.196385, -1.005713, 0.434417, -0.058091, -1.195793, -0.239609, -0.272780, 0.786638, -0.184375, 0.102892, -1.295292, -0.209359, -0.617078, 0.386488, -0.311778, 0.136317, -0.097341, 0.925262, 0.548278, 0.267836, -0.753031, 0.039780, 0.393223, 1.533396, -0.700570, -0.177551, -0.479102, 1.300496, 0.270123, -0.605122, 1.346603, 1.735063, 0.558938, 0.331713, -1.125230, -1.433617, -0.433647, -0.787385, 0.605659, 0.637913, 2.521290, 1.358994, -1.368538, 0.399753, 0.456260, -3.023672, 0.617869, -1.571912, -0.761572, 0.080310, 1.729928, 0.867082, 0.459157, -0.547153, -1.356668, -0.009079, 0.627500, 0.687771, -1.691219, 0.389028, -0.627658, 0.336266, -0.791690, 1.674377, -1.870130, 0.392219, 0.206221, -2.770966, 0.430380, -0.326570, -1.941549, -0.680329, 0.038956, -1.129796, 0.102337, -1.017789, -0.454172, 1.625192, 0.133464, -0.386068, -1.962193, -0.543869, 3.229228, 1.006537, 0.075903, -1.022170, -1.696462, 0.121248, -0.098383, 1.102084, -0.329555, 1.556723, 0.176763, 0.166727, 0.174999, -0.902615, -0.179858, 0.589487, -0.563771, -1.519436, 0.462207, 0.571710, 0.333565, 0.565644, 0.707029, 0.110245, -0.197771, -1.519380, -0.374365, -0.850962, -0.618874, -0.840363, -0.681834, 0.237797, 0.454331, 2.300648, 2.177878, -0.170240, -0.974967, 0.768538, 1.017157, 0.482455, 0.544419, -0.929654, 0.337360, 0.109592, 1.589580, 0.092464, -0.107643, -1.024489, -0.784592, -1.902071, 0.051787, 0.236157, -0.076378, -0.613753, -2.189075, -0.036911, -0.896163, 1.064895, -0.318347, -1.663570, -0.730439, 0.243153, 0.926481, -0.135915, 0.408778, 2.341446, 1.402325, 0.433459, -0.406470, -1.704017, -1.506342, 1.745454, -0.979293, -0.391387, 1.269153, -0.822313, -1.316674, 0.208462, -1.266113, -0.197000, -0.138077, 0.361245, -0.991852, 0.643091, 0.862622, 0.514414, -0.684923, 0.400014, 0.372363, 0.237329, 0.690028, 1.389023, -1.183007, -0.496359, -0.240756, 1.402574, 1.365471, -0.706577, -1.590050, -0.468826, -0.429029, -1.035070, 1.182868, -0.095812, 2.214039, -1.061791, 0.964292, -1.674021, -1.432026, 0.531377, 0.264864, 0.383192, 0.700450, 0.218761, 0.680145, 1.332157, 1.554132, -1.147946, -1.541285, -0.236223, -0.239067, -0.997370, 1.091664, -0.158923, -0.992974, 0.674797, 0.564022, 0.020085, -0.175621, -0.492040, 0.718887, 2.247444, -0.779793, -0.459320, -0.704878, -0.742369, 0.494698, -1.567200, 0.999634, -1.530236, 1.176230, 0.013777, 1.696121, 2.266544, 1.154337, -1.664384, -0.017695, -0.067958, -0.814701, -0.420535, 1.080683, -2.071410, 1.082735, 1.463830, -1.226632, 0.608441, 0.342547, -1.119508, 0.950543, 0.783880, 0.537984, -0.649137, -0.140676, -1.036698, -1.017165, -0.561600, 0.968917, -1.208144, 2.054611, 0.040074, -0.360119, -1.252352, -0.141828, 0.438467, -0.147142, -1.929617, -0.125146, 0.253362, 1.048105, -0.585618, -0.424878, 0.311184, -0.408742, -0.914687, -1.744090, 0.072903, 0.052567, 0.978871, -0.886133, -0.284516, 0.273249, 0.404913, 0.649349, -1.088217, -1.308082, -0.126900, 1.271768, -0.846192, -0.709852, -0.734048, -0.074744, -1.895451, 0.068283, 1.643967, -1.231534, 0.207526, 1.787302, 0.449402, 0.254738, -0.281204, 1.986037, -0.513545, -0.701200, 2.271109, -1.010963, -1.541573, 0.016110, 0.000358, -0.457372, -0.332379, 1.443973, 0.964581, 1.240194, -0.359747, 2.603577, 0.543551}, - { -0.107564, 0.567111, 1.507631, 0.089833, 0.253529, 0.260600, -0.521284, -0.767698, 0.098728, 0.351691, -0.664017, 0.848860, -0.426352, -0.692066, 0.764174, -0.947062, -1.025621, 0.769093, 0.717698, -1.419516, 0.048386, -0.134874, -1.191155, -2.653970, -2.372529, 0.100891, 0.345958, 1.523596, -0.069364, 1.092213, 0.019611, 1.726048, 0.129839, 0.974656, 0.473685, 2.006704, 0.409018, 0.168479, -2.377246, 0.313185, 0.855228, -0.949149, -1.138021, 0.295935, 0.098001, 1.314375, 0.240212, 0.028415, -0.801537, 1.333266, -2.177311, -1.797675, 0.924819, 0.163660, -0.303012, 1.213384, 0.380437, -0.174758, 0.659786, 0.332976, 0.893246, -0.662980, -0.607364, -0.475822, 0.030489, -0.747158, 0.207286, 0.582691, -0.168465, -2.063632, 1.027128, 0.943647, -0.484116, -1.570549, -0.112206, 0.125662, 0.459646, 1.095626, -0.264228, 0.060333, 1.012859, 0.470118, -0.987023, -0.571565, 0.890113, 0.603376, -1.715657, -0.161555, 1.803733, 0.021172, 1.830827, 0.921867, -0.585876, 0.399375, -1.234494, -0.286208, 0.951111, -1.905643, -0.130471, -0.314198, 1.224183, -0.253138, -1.066632, -0.887175, 1.481041, -1.717460, 1.216404, -1.558310, -1.849459, 0.465998, 1.161974, 1.063456, -0.083399, -1.128171, -0.157984, 0.824466, 0.561641, 0.854676, 0.750576, -0.573834, -0.580197, -0.280071, 0.467827, -0.068779, -0.339943, -1.105056, -0.363187, 0.811319, -0.541042, -0.858928, -0.108769, -0.344523, -0.231413, 1.041363, 0.154795, 1.079924, -1.340443, -1.719497, 1.144853, 0.335797, -0.661882, -1.547137, -0.599678, -0.631224, 0.721768, -0.569869, -0.220296, -0.594271, 0.196788, 0.126424, -0.132890, 0.917555, 2.919824, -0.326509, 0.299645, 1.932699, 1.470799, -1.076151, -0.940767, 0.820784, -0.586004, 0.280202, 1.339391, 0.372885, 0.609882, -0.670580, 1.229919, -0.449302, 0.092249, 0.964588, -2.366810, -0.835183, -0.804362, -0.350424, 1.166668, -0.383383, 0.771987, -0.865056, -1.375879, 1.720355, -0.815208, -0.419583, 0.307390, 1.847089, 0.734753, 1.275452, -0.548501, -0.506838, -0.407166, -0.242758, 1.570517, -0.452768, -0.279476, -0.978788, 0.915423, -0.253402, 0.134892, 0.072617, -0.466987, 1.168253, 0.004817, 0.320259, -1.123081, -1.341465, -0.082952, 1.576307, -0.039958, 0.634998, 0.728488, 2.110096, 0.649783, 0.124882, -1.121643, -1.055215, 0.132611, -2.026237, -1.707300, 0.450669, 0.671282, -0.009472, 1.744705, -2.087952, -1.059036, 1.644153, 1.170978, 0.698382, 1.691275, 0.573809, 0.937123, -0.639981, -1.225010, -0.440868, -2.317004, -0.982818, -0.599471, 0.102466, -2.558308, -0.383315, 0.946435, 0.363056, 1.189015, 0.170644, -1.278785, -0.147227, 0.279878, 0.111118, 0.179203, -0.217147, 0.786375, 0.394571, -0.239909, -1.123003, 0.160728, 1.052199, 0.591157, -0.346886, 1.073154, 0.519690, -1.553831, 0.806229, 0.810919, -0.576034, -0.924473, -0.619924, -0.940108, -0.871045, -1.286237, 2.153194, -0.429805, 0.647924, -1.389153, 0.587985, 0.627389, -0.032581, -0.265747, 0.059682, -0.585344, 0.083364, 0.407399, 0.056894, 0.150550, -0.291422, -0.618604, -0.964097, 0.557800, 1.495255, 0.460985, 1.105772, -0.033014, 0.753507, -0.185367, -1.941703, -0.267666, -0.127336, -1.303198, 1.617847, 1.252837, 0.347011, -1.762125, -0.381366, -1.640321, 0.932442, -0.394437, 0.408265, 0.825253, -0.759669, 1.162629, -1.089117, 0.915868, 0.208844, 0.853875, -0.210703, 2.087829, -0.485120, 0.252189, 0.843117, -0.575198, 1.186742, -0.542850, 1.957941, -0.855651, 0.581289, -0.881204, 1.414971, 1.828974, -1.590112, 1.022291, -0.240954, 0.502831, -0.645713, -0.573912, 0.582151, 0.651937, 0.284228, -1.090852, 0.536112, 0.972902, 0.578545, -0.512860, -1.033079, 1.009932, -1.782424, 1.585972, -0.469910, -0.913712, -0.215104, 0.886212, -0.695154, 1.336107, -0.642250, 0.037515, -1.028773, 0.205241, 0.111050, 0.432218, 0.701086, 1.300497, -1.327512, 1.298314, -0.162390, 0.713141, -0.601166, 0.713671, -2.778200, 0.892948, 0.042329, -2.027648, -0.021793, -0.129801, -0.956841, 0.103627, -0.383032, -1.159092, 0.745385, -0.333663, 0.127354, 0.669309, -0.793391, 0.626571, -1.018438, 0.855159, 1.050925, -0.589540, 0.436837, 0.985532, -0.460413, -1.918710, -0.426365, -1.700912, -0.104674, 0.894770, 0.494039, 1.551795, -1.791339, 1.047061, 0.194365, -3.164350, 0.204653, 0.314568, -0.288502, -2.033651, -0.634604, 0.175062, 2.002624, 0.246801, 0.432259, -0.576299, -0.004973, -0.327138, 0.349449, 2.386581, 1.160786, -0.077858, -0.201286, 1.613384, 1.830168, 1.045279, -1.240590, 0.303245, 0.035713, -0.471562, -0.839015, 1.630957, -0.776562, 1.041517, -0.529833, 0.145379, -0.229662, -1.399546, 0.933848, -0.824862, 0.697725, -0.544501, 2.436984, 1.006368, 0.333027, -0.220171, 0.155245, 0.369798, 0.139770, -1.760627, -2.052159, -1.162144, -1.575735, -0.920760, -0.094226, 0.069217, -0.944024, -0.137223, -0.524219, -1.851330, -0.130540, 0.526208, -0.111871, 0.531441, 1.984888, 1.149945, -0.066938, 0.161827, 0.106163, -0.126390, 3.024917, -1.838640, -1.081043, -0.866902, -0.918155, -0.900351, 0.401163, -0.226729, -0.432282, -1.826365, 0.840420, 0.180251, 0.752581, -0.661255, -0.168041, 2.080487, 0.668378, -0.233470, 0.733336, 1.919203, 0.476853, 0.236222, -1.707350, -0.796978, 0.019973, -1.041423, 1.018395, -0.107299, -1.444325, 0.791442, -0.788191, 0.591638, -0.991558, 0.534095, -0.712121, 2.341809, -0.177906, -0.709765, -0.842983, 0.257565, -1.427867, -1.205549, 0.264839, 0.184064, -0.589042, -0.490605, 0.446971, 1.769823, 0.287042, 1.181455, -1.265639, 0.562373, 1.423353, 0.079957, 1.588951, -0.917558, -0.411528, -1.494327, -1.771370, 0.336357, 0.342872, 0.658012, -0.950980, -0.574546, -0.243331, -0.314933, 0.051272, 0.535575, 0.919668, -0.007354, 0.445684, -0.082029, 0.304456, -0.872931, 0.432695, 0.516440, -0.133272, 0.808826, -2.086042, 0.343427, -1.374223, 0.604816, 0.692821, -0.839644, -0.911351, 1.429460, -1.804764, -0.096803, 2.065164, -0.218181, 0.308553, 0.382982, 0.944473, 0.561943, -2.089864, -0.673406, -2.759019, 0.200081, 0.575476, 1.579116, 0.899565, -0.221501, 1.351479, 0.096794, 1.243194, -1.474891, 0.654180, 0.064298, -0.835662, -0.194806, -0.367746, -0.228220, 1.231606, -0.894331, -0.101611, 0.381977, 1.192542, -1.467655, -0.058888, 2.153271, 0.061435, 1.226431, 1.515339, 0.182197, 1.519458, -0.231026, -0.487254, 0.392141, 1.589703, -0.408195, -0.553761, 1.964831, -0.229460, 0.351706, 0.408573, -0.471520, 0.622909, -0.324242, 1.426097, 0.890638, -1.741549, 0.461812, 0.018615, -0.801842, -0.541091, -0.210843, -2.291299, -0.362839, -2.076929, -1.018306, -1.199963, 1.818083, 1.648525, -0.801061, 0.080513, 0.202764, -0.759549, -1.717946, 0.218564, -1.081691, -0.699631, -0.868473, 0.317636, 0.485838, -2.115855, -0.294260, 0.287382, 2.124204, -0.388793, -1.695107, -0.902897, 0.441529, -0.012548, -1.506019, -1.252866, -0.026424, 1.226648, -0.293096, 0.203289, -0.756098, 1.047191, 0.982714, 0.628749, 1.116323, 1.349611, -0.335788, 1.347674, 0.190967, -0.498005, 1.629062, -0.843257, -0.030271, 0.930623, 1.425032, 0.590393, 1.395356, -0.624263, 1.033477, -0.696789, 0.001762, 1.519758, 0.818181, 1.074804, 0.189180, 1.667274, -0.381048, 0.830547, 0.124273, -1.612885, 0.781029, -0.359811, -1.223480, 1.187759, 0.418474, -0.101242, -0.056971, 0.259009, -1.039807, 0.546360, -0.297666, -0.688955, 0.811319, -1.250016, -1.931627, -0.583212, -1.157971, -1.324602, 0.095786, 0.027765, 1.445417, -1.332329, 1.547683, -0.597663, 0.537965, 1.423062, 0.221477, 0.521012, -0.350880, 0.366148, -0.292342, 0.021799, -0.692396, 0.077772, -1.338284, -0.487567, 1.081337, -0.159286, 0.626035, -0.192806, 0.380465, -0.125549, -0.263307, 1.228543, 0.479255, 0.558255, 0.992493, -2.064684, -0.590775, 0.475399, 0.808970, -1.079263, 0.819858, 0.001053, 1.713279, -0.441459, -0.550008, 0.275009, 0.578480, -1.909862, 0.903774, -0.179690, 0.626672, -0.320327, -0.186131, -0.082795, -3.109381, 0.654981, 0.037561, -0.171945, -0.445913, -0.689320, 0.086894, -1.278882, 0.562797, 1.472451, 1.642338, -1.250318, -1.137734, -0.629939, 0.907227, -0.342787, -0.411368, -0.663720, 1.296885, 1.027811, -1.927894, 0.926883, 1.424112, 0.534358, 0.905297, 1.511685, 0.377599, -0.886907, -0.421989, -0.911743, 1.000193, -1.038782, -0.006770, -1.659163, -0.079689, -1.208335, -0.281989, 1.138968, -0.556572, 0.859251, -0.668976, -1.658532, 1.155972, 2.354597, 0.069028, -1.308192, 0.488072, 0.638325, 0.404602, 1.578895, -0.511252, -0.894019, 0.399280, 0.023934, 0.688264, 0.784093, -0.604418, 1.478099, 1.185932, 0.590855, 2.482460, 1.078722, 0.335556, -2.164707, -0.718133, -0.083929, 1.264312, 0.596210, 0.122359, 0.636054, -1.683981, -0.817120, 1.510286, -1.320647, -0.585404, 0.191411, -0.480665, 1.367395, 0.993017, 2.074307, 0.303111, 0.863781, 0.615300, 0.725178, -1.041963, -0.202601, 0.464231, -0.251837, 0.775464, -0.758715, -1.613629, 0.055123, -1.644216, 1.362099, 0.138816, -0.167410, 0.884396, -1.099416, -0.768541, 0.153765, -0.562399, -0.048826, 0.409359, -0.247760, 0.423644, -0.332858, -1.149836, -1.530859, 0.051066, 1.164228, -0.218592, 0.469758, -0.270103, 0.874498, -0.141658, -0.525855, 0.275665, 1.935651, -0.822094, 1.356794, 0.989574, -1.130628, 0.636094, -0.732825, 1.926735, 1.339513, 0.771204, -1.057297, -0.352365, -0.682190, -1.583295, 0.197261, 0.538025, 1.598909, 0.622875, -1.351804, 0.440459, 0.247602, 1.633335, 0.801167, -0.144609, -0.209023, -0.936720, 2.060589, -1.345932, -1.122756, -2.108896, -0.500439, 0.763176, 0.891038, 0.015775, -0.752514, -0.661973, -0.289178, 1.630489, -0.500762, 0.070115, 1.506407, -0.981540, -1.588406, 0.992498, -2.481605, 0.057981, 0.388419, -0.039999, 1.383976, 2.661830, 0.397678, -0.835880, -0.329375, -2.280789, -1.895880, 1.424873, 1.359007, 0.729401, -0.157402, 1.628273, 1.844476, -0.010730, -0.327102, 0.373267, -0.731033, -0.963579, 0.455399, 0.535462, 0.052567, -0.728972, 1.218651, 0.752671, -0.066791, -1.105672, -0.111076, -0.393103, -1.266070, 1.068630, 1.265227, -0.932089, 0.778385, -3.302621, -0.895119, 0.075585, -0.777410, -0.462299, 1.105099, -1.384574, -0.807010, -0.015771, 0.558033, 1.144656, -0.240984, -0.698494, 0.202620, 1.114896, 1.018613, -0.681215, 1.013868, -0.826554, -0.258071, -3.049321, 0.626657, 0.076328, -1.252243, -0.464053, -0.906678, -0.443308, -0.020463, 0.496904, 0.682432, -0.359242, -2.157911, 0.756843, 1.138582, -1.222610, -0.652022, -2.332255, 0.423948, 0.909839, -0.617476, 0.824549, 0.800059, 1.237592, 0.525611, 0.534927, -0.345931, -1.043367, -1.053603, 1.098188, 0.478464, -0.663188, -0.859529, 0.472558, -0.219958, -0.274905, -0.673648, -0.853832, 0.934617, -0.702375, -3.233822, -0.773592, 3.805918, -1.140535, 0.623434, 0.510648, -0.418119, 0.079674, -0.326342, 0.643506, -0.702112, -0.284825, 1.878356, -0.861996, -1.820630, 0.778575, 0.511991, 1.203326, -0.040828, 1.744495, 1.192491, 0.555848, -0.052246, -0.753323, -0.325756, -1.308429, 0.974147, -0.644903, -0.706800, -0.297981, -2.069843, -0.345973, -1.214355, -0.917852, -2.155937, 0.927861, 0.474878, 0.247987, -0.908771, 0.272681, 2.615279, -0.549072, 0.185536, -0.757504, 0.735709, -0.585245, -0.550818, 0.039396, 0.347881, -0.619996, 1.185706, 0.347206, 0.840082, -0.105743, -0.377565, 0.394268, 0.358868, -0.836091, 0.372199, -0.650276, 1.643714, 0.290317, 0.772565, 0.015490, 1.953443, -0.106934, 0.892257, 0.238899, -2.405387, -0.411437, -0.516776, 0.184538, -0.350451, -0.690542, 0.689651, -1.176242, -0.246449, -0.662618, -0.896708, -1.036163, 0.707453, -0.273457, -1.063009, -1.437992, -0.075853, -0.725216, -0.501038, -1.620955, 0.090590, -0.174102, -0.151916, -1.001883, -0.397621, 0.804467, 0.419073, -0.502699, 0.553882, -0.306174, -0.886734, 1.160123, 0.867753, -0.166415, 0.373206, 0.300597, 0.217621, -0.280384, 1.059431, 0.470278, 0.547095, -0.780942, 0.499592, 0.094520, -0.787875, -2.602450, -2.181004, 0.132215, -1.299746, 0.811831, -0.223914, -0.837817, -0.061314, 0.827029, -0.245986, -0.572435, -0.448406, -1.094119, 0.361295, -0.373553, 0.563738, -0.177414, 0.410312, 0.276365, -0.827044, 0.531996, 0.892704, -1.571435, -0.814432, -0.274162, 0.723977, -0.249889, -0.755724, -0.350416, -1.397094, 0.738375, 1.219680, -0.802848, -0.299505, 0.917300, 0.556091, -0.637355, 0.773169, -0.612296, 0.138151, -1.082792, 0.562419, 1.761884, 0.030639, 1.638407, -1.397408, -1.364331, 1.176498, 0.634336, -0.194025, 0.940187, -0.252420, -1.828030, -0.179653, -0.738313, 0.742925, 0.606607, -1.758966, -1.040130, 0.998192, 0.519292, -0.055416, 3.207140, 1.069309, -1.528195, 2.234299, 0.387162, 0.357318, -0.204103, -0.241818, -0.917731, -0.523849, -0.415264, -0.645009, -0.323789, 0.799123, -0.016987, 0.573841, 1.856380, -0.559798, 0.991535, -1.142989, -0.235376, -1.837207, -0.855456, -0.922816, 0.450375, -1.353277, 0.898918, -0.288346, 0.467588, 0.654611, -1.782100, 1.124761, 0.776079, -0.988945, -1.778324, -2.117336, 0.358062, -0.130207, -0.811923, 0.502498, 0.626336, 1.208242, 0.984898, 0.228393, -1.049579, 0.161324, 0.362087, 1.311942, -0.166878, -0.477098, -0.929323, -0.430653, -0.214376, 1.124906, -0.449445, 1.772658, 1.141216, -1.001936, -0.190634, -1.281548, 1.241780, 1.622071, -0.460086, -0.745039, 1.202176, -0.785963, 0.804039, 0.413862, -0.122444, 0.421866, 0.265635, 1.752928, -0.993530, -0.711548, 0.320945, -0.055180, -0.394550, -0.750249, -1.149343, 0.365351, 0.434388, 0.088906, -0.694951, 0.981878, 0.793615, -0.931234, 0.535146, -1.026275, 1.010923, 0.021420, -0.213139, -0.236093, -1.368470, -0.655869, 0.172209, 0.032734, -0.488071, 0.808566, -0.433427, -0.060827, -1.965714, 0.070618, 0.600481, 0.173012, 0.674546, 0.029860, -0.655894, -0.124122, 0.246052, -0.389779, -0.081781, -0.185768, -0.024249, -1.716403, -0.512165, -0.351471, 0.224897, -1.183628, 0.109501, -0.793467, -0.597978, -0.577084, 1.959314, -1.446712, -0.529356, 1.420988, 1.529441, 0.407820, -0.656533, -0.905987, 0.515898, -0.468324, -0.923903, -0.535808, -0.987676, 0.045621, 0.407210, 1.016581, 0.930367, -0.324103, -1.133288, -0.708613, -1.169798, 1.318494, -0.356025, -0.023998, 1.558696, 0.816003, -0.279802, -0.920872, -0.363216, 1.344983, -0.107922, -1.623679, 1.404346, 1.777517, -0.750628, -0.713083, -1.147685, 0.966753, -0.041751, -1.502047, 0.883965, -0.730740, -1.077998, 0.158465, -0.116612, 1.224050, 1.309583, 0.826712, 0.983826, 1.270001, 0.310710, 1.510927, 2.382328, -0.000902, 0.041274, 2.735659, -0.066203, -0.814038, -0.802178, 0.439242, -1.216922, 0.851209, 1.000077, -0.305806, -0.492769, 2.255749, -0.141859, 0.750780, -2.359170, 0.642869, 0.313425, -0.891790, -0.098996, 1.101291, -0.759878, 1.075486, -0.490473, -0.820665, -0.995053, -0.922446, 1.747772, -0.613273, 0.893366, 0.289253, -0.066392, -0.803604, 1.744654, -2.255174, 0.148827, 2.021037, 1.022240, 1.007952, 0.801586, -0.909874, 2.294297, 0.049368, 1.925730, -0.270507, 0.600846, 1.432848, -0.619982, -0.614845, 1.599297, -0.280981, 0.517332, 0.630006, -1.062021, -0.014945, 0.402061, -0.395856, -0.639617, 0.584767, 1.319841, 0.395448, -0.017575, -0.371125, -0.246029, 1.850864, -1.960001, 1.392138, 0.984169, -0.210737, -0.247878, 0.033473, -1.111829, -0.577707, -0.733114, 0.822389, -1.150163, 0.447327, -0.259996, 1.046438, -1.770565, 0.319892, -0.715800, 0.205306, 1.272071, 0.987176, 0.030316, -0.253312, -0.099272, -0.232358, -1.708404, -1.120504, 0.919319, 0.401601, 0.312614, 1.335582, 0.076183, 0.203855, -1.584023, -1.035830, 1.139204, 0.765218, 0.031543, -0.533452, 0.585556, 1.230109, 1.014089, 0.670554, 1.268316, -0.319874, -0.314153, -0.206030, 0.628749, -0.057120, -0.509198, 0.796401, 0.167990, 2.272425, -0.147684, 0.542837, 0.977357, 1.924800, 0.250516, 0.221005, -0.333065, -0.155052, -1.294611, 0.648327, 0.862543, 0.154885, -0.007419, -0.854444, 0.569946, -1.360445, 0.704909, -1.429923, 0.173357, 0.346192, -1.177145, -0.059209, 0.185367, -1.702045, -1.289479, 0.733104, 0.157064, -1.199674, 0.149991, -0.529433, -0.443646, -2.808384, 0.724962, -0.646890, -0.966995, 0.270013, 0.587279, -1.050124, 0.435028, -0.661419, 1.777073, 0.476565, -1.148175, -0.178329, 1.180552, -1.422006, -1.155634, 1.346725, 0.669341, -0.307069, -1.453850, -0.239823, 0.141012, 0.730409, 1.174524, 1.934903, 1.567414, 0.318436, 0.146101, 1.869871, -0.578380, 0.940971, 0.310458, 0.783878, -0.492146, -0.870231, 0.108325, -1.982088, 1.504868, -0.462011, 0.118853, -0.293633, 0.084887, 0.663833, 0.403392, 0.854684, -0.227954, 0.028410, 1.840226, 0.607773, -1.173648, -0.064040, -0.583499, 1.618328, 0.071072, -1.626230, -0.011821, -0.383874, -0.418588, -0.096689, 2.323421, 0.225080, 0.324341, -1.629578, 0.026556, -0.804914, -1.068436, -2.736597, 0.712015, 0.589092, 0.942102, 0.258438, 0.702188, -0.268564, -1.871912, 1.404576, 0.044787, -1.779821, 0.519663, -1.350010, 1.448736, -0.390655, 0.231175, 0.265064, -0.525599, 0.032990, 1.381009, 0.095031, -0.718115, 0.833363, -1.937235, -1.118470, 0.046609, -1.124443, -1.317206, -1.583491, 0.849224, -0.108660, -1.031552, 0.811566, -0.445433, 0.289940, -1.404132, -0.755131, -0.414514, -1.618126, 0.512221, -1.156794, -0.288971, 0.302929, -0.085393, 0.499911, 0.159987, 0.489384, -0.693839, -0.283784, 0.681522, -1.361003, 0.543945, 0.937520, 0.399524, -0.371339, -0.902652, 0.272578, -0.055631, -0.183270, 1.156942, 0.281662, 0.115839, -0.645140, 0.139170, 0.776727, 1.004202, -0.106977, 1.143089, 0.347144, 1.683088, 1.550169, -0.113883, -0.992220, -0.455807, -0.993603, -0.020708, -1.346534, -0.490946, 0.756130, -0.582306, -1.540389, -0.005888, -0.335026, 0.146218, -0.519971, -0.486755, -1.122320, -0.067730, 0.338864, -0.534193, -0.662877, -0.420708, 0.175634, 0.591055, -1.054769, -0.658740, 1.814753, -1.817313, -1.267231, -1.002523, -0.677531, -1.301317, -1.152116, -1.000671, 0.005572, -0.459156, 0.974113, -1.993809, -0.263506, 0.540411, -1.940319, -0.013229, -0.488975, -0.244513, -0.768648, -0.281655, 0.783187, 0.388086, -0.777248, -0.550460, -0.187943, 0.175566, -0.401522, -0.081917, -0.173469, 1.641702, 0.871165, -0.787113, -1.262874, -0.068490, -0.137980, -0.341973, -1.322604, 1.330316, 1.009725, -1.023710, 0.814989, -0.591393, -2.354148, -1.441840, 1.014541, -0.502014, 0.278830, -1.249648, -0.112477, -0.977346, -2.307748, 0.997052, 0.102829, 1.077729, 0.479538, -0.123308, 0.718891, 1.445119, 0.697008, 0.597984, -0.478706, -1.774553, -1.248201, 0.065591, 0.073310, 0.521728, -0.200182, -0.194445, -0.238299, -1.840125, -1.631188, 1.591232, 1.397854, 1.476983, -0.730668, 2.352803, 0.663133, 0.552681, -1.896815, -0.740749, 0.405772, -0.436305, -1.061285, 1.535298, -0.512250, 0.260357, -0.141387, 0.507852, 1.447780, -0.668943, 0.332079, -1.080486, 0.149391, -0.617735, -0.289660, -0.914916, -1.644613, 1.489698, -1.538270, 1.315164, -0.183876, -0.251486, -1.866595, 0.094795, 1.408429, 0.547489, -2.115978, 0.847040, -0.715976, 0.806206, -0.088310, -0.136833, -0.200722, 0.195276, 0.525913, 0.767167, -0.411600, -1.105277, -1.436909, 0.916397, 0.477115, 1.871990, -0.154352, -0.587433, 0.985598, 0.382853, -0.172665, -0.835553, -0.665614, 0.427174, -0.149810, -0.903475, 1.466565, 0.068006, 1.747021, 0.223858, 1.070161, 0.645742, -2.280433, -0.380478, -0.498307, 0.822889, 1.275234, -0.613344, -0.350186, 0.102877, 0.292518, -1.003881, -0.056888, 0.241053, -0.917144, 0.053113, 1.310974, -0.637512, 1.016618, 0.279675, -1.197254, 0.085086, -0.447436, 0.295744, 2.210416, -0.770011, 1.792212, 2.311360, 1.167731, 1.330203, -0.808207, -1.101343, 1.024797, 1.042803, 0.820114, 0.806664, -1.016447, 1.443351, 1.825768, -0.566427, 0.330723, -0.910790, 0.488024, 0.739712, 0.592021, -0.820084, -0.006164, -0.090102, 1.853698, -0.214966, -0.847784, -0.890158, -0.022381, 1.309506, -0.855636, -0.016341, -0.846609, 0.985509, 0.178801, -0.249532, -1.187278, 0.325259, 0.197964, -1.524272, -0.483460, 1.806156, 0.361941, -0.805512, -1.131736, 0.797872, -1.014111, -0.991461, -0.489029, -1.294251, -0.991199, 0.165233, 1.658220, -0.618318, 0.503729, 0.192132, 0.404518, 0.220815, 0.780041, 1.987371, 0.036581, 0.815013, -0.603414, -1.480355, -0.400756, 0.509935, 1.701668, 0.313328, 0.620078, -1.182466, -0.193842, 0.037920, -0.691340, -0.766950, 0.206816, 0.479469, -2.096840, 0.779050, 0.201829, 0.076898, -0.175906, -0.514583, 0.421943, 1.716999, -0.526207, 1.259227, 1.305424, 0.190156, 1.163256, 0.824654, -1.628281, 0.008107, 0.845876, -1.004947, -1.126282, 0.953920, 0.020620, 0.656683, 0.675162, 0.978281, 0.216812, 1.191213, -2.605651, 0.003369, 0.523004, 0.788878, -1.412201, -1.478939, 0.348571, -1.280308, -0.303001, 0.318950, -0.760154, -1.029954, -0.550735, -0.162843, 0.870245, 0.100532, -0.281056, -0.418812, 0.537552, -0.319880, 0.570967, 0.280753, 1.926064, -0.463513, 2.491880, -0.401976, 0.702363, 0.908380, 1.704498, 0.334124, 0.217783, -0.983164, -0.791485, -0.629922, 0.404028, 0.140059, 0.606994, -0.602667, 0.024615, 0.597163, -0.825542, 0.869445, 0.304274, 1.629945, -1.224490, -0.199955, 0.018748, 1.268401, 0.453636, 1.873566, 1.606205, 0.607918, -1.008349, -0.275071, 0.657667, -0.744228, -1.012348, 2.101786, -0.589109, -0.627253, -0.363777, 0.154706, -2.271258, -0.815534, -0.024603, 0.222578, 0.316409, 0.453494, 0.426001, 0.124252, -0.528458, 1.266649, 1.068653, -0.912916, 0.954285, -0.388931, 0.745443, -2.132591, -0.673448, 0.204056, -1.050105, 1.521965, 0.119597, -1.368317, -1.629230, 1.425418, -0.471962, -1.147773, -1.014542, -1.009912, -0.267185, -0.152594, -2.620589, -0.243907, 1.383747, -0.919638, 1.386119, -0.216461, -0.259555, -0.804526, -1.275133, -0.407622, 0.490195, 0.791647, 1.053413, -1.761286, -0.557885, 1.158737, -1.086519, 0.495737, 0.190078, -0.135025, -1.536238, -1.349438, -0.043111, 0.292565, -0.651148, 1.102894, 0.316687, -0.433201, -0.415638, -0.720638, 2.060442, -0.619170, -1.507656, 0.165067, 0.248506, -0.909373, -1.325403, 1.221633, 0.763337, 0.729908, -0.321685, 1.281433, -0.317217, 0.485598, 0.531396, 0.118371, 0.719347, 1.861064, 1.039500, 0.747790, 0.870797, -0.024604, -2.014132, -0.301681, -0.487303, -0.187357, 0.056168, -0.253799, -1.602449, -0.508815, 1.208079, 1.025732, -0.251645, 0.407351, 1.091536, 0.129968, -0.356357, -1.132946, 0.703549, -0.782255, 0.154718, 0.612335, -0.639361, -0.777031, -0.362677, 0.443419, -0.012522, -2.208537, 0.561620, -0.860781, -0.754275, 1.596550, 0.296669, -1.122033, -0.166325, -0.634739, 0.107694, 0.196174, 2.631574, 0.538163, -0.944013, -1.327978, 1.082618, 2.067123, 0.031306, -1.473334, 0.879581, 0.507148, 2.107082, 1.834868, -0.162772, 1.459002, -0.060417, 1.324060, 0.207282, -0.125801, -0.615198, -0.876727, -2.088589, -0.686336, -0.280585, 0.867516, 0.114097, -0.991352, 1.396835, 1.419892, 0.376463, -1.218500, 2.636140, 1.290523, -2.019356, 0.013485, 1.521289, -0.239322, -1.229477, 0.755279, 0.346502, -1.725243, -0.373774, -0.185386, -1.256591, -0.716859, 1.530833, -0.547870, -0.792679, 1.284569, -0.849781, 2.087775, 0.928601, 1.579072, -1.907241, 1.532603, 0.106727, -1.284357, 0.633744, -0.214437, -0.598696, 0.892944, -0.423007, 1.162389, -0.411785, 0.298251, -0.567272, 0.386300, -1.698400, 1.617787, -1.874614, 0.489987, 1.426808, 0.229579, 2.157564, 0.823678, -0.072082, 0.197448, 2.305283, -0.765087, -1.126161, -0.772202, -0.845635, -0.331419, -0.273276, 0.060459, -0.637235, -0.349673, -0.321448, -0.121112, 0.179084, -0.284457, 1.289270, -0.691972, 1.599460, 0.040287, 0.273503, -0.349427, 1.213746, 0.479931, -0.758232, 1.002408, 0.075547, 1.540622, -0.718118, 0.894200, 0.814410, -0.525514, -0.717878, -1.667925, -1.142663, 0.942690, -0.455577, 0.952267, -1.452215, -1.505591, 1.257140, -0.838728, -0.453117, 0.169693, -1.768633, -0.609335, 0.562158, 1.431190, 0.760952, -0.652992, -2.118331, -0.538564, -1.052189, 0.591901, -1.179337, -2.085239, 0.926827, -1.104892, 0.485520, 0.020562, 1.924255, 0.208637, 0.545395, -0.409915, 0.161968, 0.849357, -0.031988, 0.839613, -0.528238, 0.014944, 0.567819, 0.111748, 0.336812, -0.206228, -0.385773, -1.012973, 0.622410, -0.757589, 1.367026, 0.479709, 0.038670, 0.796081, 2.785017, 0.580535, -0.559753, 0.204537, -1.229785, -1.241883, 0.645685, -0.734728, -0.755703, -0.199049, -2.094187, -1.236351, -0.274289, -0.884606, 0.009774, -0.285483, -0.597581, -1.133268, -1.102430, 0.447045, -0.102915, -1.481799, -1.694370, -1.303291, 1.184157, 1.720630, -1.393385, 0.115161, 0.757673, 1.210708, 1.439353, -0.430967, -0.031543, 1.027018, -0.781191, 1.169615, -1.828181, -1.755098, -1.107190, -1.422109, -1.124997, -1.175631, -0.395011, 0.363351, 0.198148, -0.587296, 0.138670, -1.113483, 0.658757, 0.712638, 0.605732, -0.147572, -0.833572, -1.130678, -0.967752, -0.487512, -0.651392, 0.232531, -0.115976, 0.981971, 1.799198, -0.098867, 0.399773, -1.520884, -1.010132, -1.559080, 0.926588, 0.066911, -1.498431, 0.547994, -0.435648, -1.230667, 2.092605, -0.024036, 0.978000, -0.563770, -0.322303, -0.973571, 0.880973, -0.667366, 0.455789, -0.070619, -0.035130, 0.045618, -0.609802, 0.440498, 2.592303, -0.142025, 1.797056, 1.004021, -2.086756, -0.798908, 0.237025, -1.451838, 0.859163, -1.212549, -0.665609, 0.614962, -1.223996, -1.765464, 0.548116, 0.776485, 0.910847, 0.128251, 0.740647, 1.275919, 0.284085, 0.219603, 0.467999, -1.296522, -0.001087, -0.676528, -1.242467, -0.357404, 1.091398, -1.368510, 1.185922, 1.005026, 0.899833, 0.067455, 1.431986, -0.775499, 0.306814, -0.903485, 0.752950, 0.241810, -0.645906, 0.257904, -0.299932, 0.412832, 1.258728, 1.948945, -0.268560, -0.874764, -0.850795, 0.292095, -0.176906, -0.093073, -1.566247, -2.351848, -0.905502, 1.026085, -0.718833, -0.018663, -0.056301, -1.636670, 0.057381, -0.383973, -0.915739, 0.628095, 0.677738, -0.085996, 0.036286, -0.014617, -1.613212, -0.919135, -0.390502, -0.446022, 0.389920, -0.317840, 1.401184, 0.087298, 0.658124, -0.957850, -1.913147, -0.918599, -0.222273, 0.749725, -1.026116, 0.259407, -0.185653, 0.185036, 0.534258, -1.097639, 0.522325, -1.253131, -0.079999, -2.094013, 1.752958, -1.195079, 0.901390, -1.416690, -0.775104, 0.816481, -1.889798, 2.032199, -1.526717, -0.558021, -0.815927, -2.371063, 0.941630, 0.026241, -0.269571, -0.469445, -0.874656, -1.177608, 0.193295, 0.509403, -0.862372, -0.375989, -0.723301, 0.578435, -1.737902, 1.210322, 0.404326, -0.293490, 0.720651, 1.890200, 0.662484, -0.238169, 0.253854, 0.173990, 0.084363, 0.192557, -0.046405, 0.318103, 0.329699, 0.473887, 0.951854, -1.245950, 1.937155, 0.196658, -0.250798, 0.798175, 0.538733, -1.044797, 0.022274, 2.198480, -0.856320, -0.629280, 1.559641, -1.680933, 1.271451, 0.873796, -0.532085, -0.654765, -2.168516, 0.884313, 0.090337, 0.849958, 1.207093, 0.152257, 0.009740, -0.208236, -2.609198, 2.061538, 1.325143, 1.805175, 0.827573, 0.056863, -0.731216, -0.986358, -0.080354, 1.158901, -1.233143, 1.264878, -1.029511, -0.896161, 0.033642, -0.947122, -0.807268, -0.623787, 1.400838, 0.003921, 0.757574, 1.690927, 0.209808, -0.084645, -2.099220, -2.020415, -0.649347, 0.309620, 0.405811, 0.124559, 1.428699, -1.652138, -0.998053, -0.557753, -1.223353, -0.742789, 2.533580, -2.142363, -0.884314, 0.049913, -1.120534, -0.763611, 0.970614, -2.240328, 0.627627, -0.287621, 0.080011, -0.857303, -0.587362, 1.769972, 0.250884, -0.685031, -0.510253, -1.251109, 0.094093, 0.917295, 0.314743, -0.421084, 0.195974, -1.709798, -0.740959, -0.853345, -1.482002, 1.480777, 0.355833, 0.005076, -0.250395, -2.166262, -0.142214, -0.565482, 1.136327, -0.197039, -2.373229, -0.127625, 1.020798, -0.657364, 1.115904, -2.570700, 1.026366, 1.278767, -0.418978, -0.057048, 0.869859, -0.663286, 0.898531, -0.223066, 1.486685, 0.489365, -1.584574, -0.816816, -0.486191, 1.111680, 0.457316, -1.765196, -1.634078, -0.189959, 1.978119, 0.900515, 2.517114, -0.742463, -1.256565, -0.730360, -1.878909, -0.354420, 0.929377, -0.257609, 0.049031, -0.345426, 0.737248, 0.547592, 0.002927, -0.942150, 0.464087, 2.779146, 1.691355, -0.546461, 0.290752, -0.486222, -0.896839, 1.518797, 1.297184, -0.700622, 1.197714, 0.482543, -0.263684, -0.414116, -2.521549, 0.189030, 0.017566, 0.839219, -0.725358, -1.657703, 0.317549, 0.773451, -0.007418, 1.096505, 0.451132, 1.548481, -1.370949, -0.857440, -0.184710, 1.764203, -0.072071, 1.997427, -0.739326, 1.610971, -1.316181, 0.771234, 0.505205, 1.352388, 0.591027, -0.132216, -0.416094, 1.213004, 0.279762, -1.326275, -0.175405, -1.908029, 0.942670, -0.115008, -0.288672, -0.038149, 1.308604, -0.574296, 0.571406, -0.519974, -0.890585, -0.983541, 0.889347, -0.380232, 2.277617, -0.382938, 1.389186, 0.282886, 0.264755, 1.318817, 0.282370, -0.568136, -1.377339, -0.061422, 0.846803, 0.439605, -0.385605, -0.344363, 1.221155, 0.465028, -0.856782, 0.149611, 0.288386, 0.571397, -0.327895, 0.118745, -1.735471, 0.014765, -0.975883, 0.440234, 0.552339, 0.288764, 0.339089, -1.134826, 0.313895, 0.011407, 0.691833, 0.300344, 1.498545, -0.902266, 0.425485, 1.074022, 0.657239, -0.650429, 1.174462, 0.512151, -0.758514, -0.068893, -0.071205, -0.581869, 0.512698, -0.549456, 0.386034, 0.288174, -0.728801, 2.676464, -1.091006, 1.608164, -0.083419, 0.175058, -0.699406, -0.190567, 0.532987, 1.108742, -0.447822, -0.069891, -1.970983, 1.218043, -0.420008, 0.537785, -1.973844, -1.483689, 1.538642, -1.347552, 0.060081, -0.978870, 0.392604, 1.134322, -0.495217, 0.425980, 0.585597, 0.553828, -2.100334, -1.212780, 1.972681, 1.163086, 0.395078, 0.387860, 0.728238, 0.666341, 0.003480, -0.236001, -1.265750, -1.010418, -0.665997, -1.037360, 1.126242, 0.562326, -0.210542, -1.540785, 0.466182, -1.093710, -0.962843, 1.150839, 0.585028, 1.624890, -1.762433, 0.304113, 0.208924, -0.183446, 0.812668, -1.955194, 1.004379, -1.536352, -0.150135, 0.795853, -1.301719, -0.460793, 0.729530, 0.270970, -0.068024, -0.246545, -0.813112, 0.728013, 0.100125, 0.748525, 0.064918, -0.792546, 0.107315, -0.020264, 0.299685, -1.940080, -0.788187, -0.105019, 0.382124, -0.657053, 0.161678, 1.105560, -0.600307, -0.717401, 0.997373, 0.038190, 0.109503, -1.089637, 0.246236, -0.301493, -3.264527, 1.636711, -0.861160, -0.267561, 1.092990, -0.229627, -0.491280, -1.598319, 0.759445, 0.117207, 0.129530, -0.469744, -1.350616, -1.926867, -0.949650, 0.070641, 0.298443, 0.433077, -0.947646, -0.527008, 0.089824, 1.270172, 0.964362, -0.144135, -0.450047, -0.988775, 1.314416, 0.154784, 1.387101, 1.687699, 3.596269, 1.537083, -0.098029, -0.323389, -1.188715, -1.517913, -0.223319, -0.118122, -0.926387, 0.487475, 2.383470, -0.283019, -0.400344, -0.112688, -1.349477, -1.780964, 1.040826, 2.748192, 0.124874, 0.537890, -0.705610, 0.843095, 0.698634, 0.989788, -0.223561, -0.173949, 0.280473, -0.630229, 0.511718, -0.097223, -1.114586, 1.921694, -0.635164, 0.362479, -1.253753, 0.201949, -0.283309, -0.409199, 0.176409, -0.690641, -0.699860, 1.546965, -1.123447, -1.823177, -1.202144, -0.861633, 0.007818, -1.298542, -0.263731, -1.198128, -1.429087, 0.513127, 0.146896, -2.327325, 1.296689, -2.426564, -0.172250, 0.801628, -1.292855, -0.336581, -0.260524, 0.296005, -0.626776, 1.630137, -0.957424, 1.177334, 0.178275, -2.176285, 0.056313, -1.155005, -0.578800, 0.028200, 1.247363, -0.827695, 0.146231, -0.344793, -0.500478, -0.467940, 0.625746, -0.361763, -1.017070, -0.251144, 0.628470, -2.471546, 0.116703, -0.757431, 1.852242, -0.969632, -0.472526, -0.303243, 1.104279, 1.167389, 0.076012, -0.439053, -1.523277, -0.484451, 0.531800, -0.428981, -0.258849, -2.205991, 0.385688, 0.183251, 0.433802, -1.451632, -1.384850, 0.335081, 0.383205, 1.699160, -0.673376, 1.032370, 1.741185, -0.243792, 0.370460, -1.771130, 1.974270, 1.189003, -1.131988, 0.180605, 0.113789, 0.067022, -1.013460, 0.421401, -0.590726, 0.798718, -0.741132, -0.376481, 0.535617, 1.174118, -0.061616, -0.202595, -0.018271, -0.802477, 2.087790, -1.295037, 0.955921, 0.534792, 0.122142, -0.108656, 1.292931, 0.547753, -0.152389, 0.359308, -0.973856, -0.430421, 1.296211, -0.088916, -0.989754, 0.936799, -0.909156, -0.536777, 0.405138, -1.382602, -1.654568, 0.131954, 1.449889, 0.328693, -0.726607, -0.735402, 1.051588, -0.889100, -0.434141, 0.912239, -0.920116, -1.615823, 0.231242, 0.177643, 1.130218, 0.832464, 2.574803, -0.901728, -0.790664, 0.874165, 0.358299, 1.401991, -0.180211, -2.717999, -0.762370, 0.612589, -0.134878, -0.124942, -1.148724, 1.201162, 0.734334, 1.366560, 0.520797, -2.299033, -0.253356, -0.053072, -2.320358, -0.469110, 0.972471, -1.129791, 0.363801, 1.071229, -1.279661, -1.014263, -0.787167, -1.446681, -0.134930, 0.817895, -0.102662, -1.779658, 0.200723, -0.232941, -1.385099, -0.525363, -0.770101, -1.761763, 1.078271, 0.196937, 0.020912, 0.639272, -0.108485, -0.512531, 0.041192, 1.270116, -0.420989, 0.024729, -0.754243, 1.449031, 0.320928, 0.095170, 0.456532, 0.888621, 0.521723, 0.002547, 0.720049, 1.672881, 0.016955, 0.614825, 0.966077, -2.309270, 0.701263, 0.191821, -0.158496}, - { 0.237429, 0.036207, 0.170178, 0.797165, 2.247735, 0.762628, 1.695215, 0.179764, 0.107884, 1.401716, 0.118783, 0.396777, -0.573262, -0.053026, 0.451858, -1.387177, -0.496034, 1.285475, -0.314170, 0.871655, 1.018006, 0.623334, -1.377680, 0.000609, 1.036218, -1.547680, -1.150199, -0.685959, 1.469401, 1.189373, 1.277094, -1.193407, 0.467198, -0.204093, 0.463451, 0.132450, -0.695997, -0.207751, -1.612716, 0.887903, 0.862200, -0.113317, -0.442108, -0.162169, -1.686292, -0.287985, -0.757401, 0.170118, -0.336267, -2.417512, -0.944149, 0.162170, 0.702621, -0.229793, 0.069156, 1.221997, -0.537081, -1.066808, -1.161291, 1.000325, -0.837620, -0.352367, 0.746348, 1.859223, -0.919172, 0.532138, 0.313898, 0.496248, -2.153785, 0.941953, -0.411732, -1.184928, -2.066584, 0.005830, -0.928376, 1.677056, -0.908078, 1.511182, 0.483482, 0.025510, -0.344490, -0.629932, 0.769671, 0.959558, 0.064419, -0.148827, -0.406658, -0.538059, -0.199050, 0.310685, 0.565743, -0.699625, 0.845187, 0.833213, -0.395563, -0.868878, -0.552028, 1.531941, -0.042967, 0.085281, 0.003465, -0.488826, -1.533944, 1.700975, -1.172057, -0.746709, -0.530326, 0.237733, -0.876734, -0.727487, -0.295899, -0.747297, -0.318546, 1.199982, -0.746348, 1.215892, 1.596415, 0.170175, 2.494813, 0.196207, 0.107324, 0.334852, -1.195463, -0.377760, -1.049419, -0.460512, -1.640958, -1.110334, -0.021205, -0.986685, -0.649331, 0.877051, 3.305753, -1.066090, 0.060100, 0.661818, 0.455688, 0.822043, 0.344724, -0.688586, 1.371350, -0.610717, 1.293444, -0.093719, -0.339504, 0.813812, 0.419576, -0.083704, -1.111274, 0.654443, 1.078722, 0.289181, -0.063308, -0.839566, 0.262663, -0.800015, 0.387299, -0.238128, -1.158125, -0.209619, -1.242725, -1.584083, 0.828589, 0.457091, -0.274895, -0.694111, 0.709431, 0.516085, 0.069079, -0.733614, -0.806151, -0.538284, -0.647072, -0.946808, 0.469631, -1.347350, -1.366493, -0.775190, 0.468495, 0.362607, -0.699727, -1.212706, 2.003768, 0.349725, -0.101829, 1.910978, -0.069325, 1.440664, -0.484399, 1.292219, 0.268669, -1.466407, 1.025713, 0.255034, -0.760812, 1.515317, -0.844193, 0.268279, -0.946102, 0.890672, 0.132923, -0.882272, 0.594691, 1.587638, 0.224771, 1.978239, 1.762840, 2.388043, 0.037380, 0.441240, 1.250304, 0.025152, 0.249358, 0.392456, 1.730677, -0.231981, 2.482982, 1.126362, 0.310809, 0.077117, -0.162147, 0.560386, 0.433253, 1.631264, 0.292132, 0.332519, -0.146775, 0.009235, 0.915202, -1.747407, -0.596440, 2.005790, -0.167761, -1.835304, -0.667613, -2.620935, -0.735262, -1.138687, 1.260839, 0.435639, 1.814098, -0.125535, -1.737392, -0.475644, -2.366360, 1.191784, -0.543974, 2.615327, -0.187524, -1.548169, -1.495711, -0.770668, -0.981798, -0.133163, 1.969709, 1.043554, -0.282137, -0.852043, 0.731650, -0.312119, 1.198903, 0.490420, 2.429288, -1.280920, -0.186278, -0.077968, -0.179502, 0.454609, -0.438815, -0.940049, 0.957835, 1.021041, 0.392023, -0.948017, -0.139217, -1.801187, -0.111287, -0.271425, -0.950677, -0.842602, 0.158475, -0.685660, 1.709432, -0.045783, 0.158530, -0.654599, -0.459567, -0.563228, -1.539074, -0.226351, -0.707942, 0.094478, -1.725252, -0.194163, -0.155360, 0.889516, 0.404917, -0.006352, -0.944886, -1.360645, 1.137401, 0.563502, 0.219997, 0.679181, 0.567056, 0.088674, -0.530732, -0.973153, -0.492149, -0.262830, -0.206852, -1.567610, -0.835913, 1.662297, 0.572741, -1.514802, -2.418319, 0.460558, 1.418065, -0.751994, -0.672925, -1.516377, 0.429053, 0.124248, 0.322388, -0.041107, -0.392260, -0.300986, 0.217923, -0.204659, 1.201205, -0.327780, -1.205651, -0.013395, -0.279521, -0.210300, -0.270474, -0.436408, 1.194474, 0.202888, -0.188345, -0.857626, -0.311250, -0.677455, -0.696846, 0.070788, -1.601218, -1.154248, 1.084514, 0.779079, -0.415054, 0.682295, 0.397982, 0.863780, 0.814659, 0.229477, 2.375683, -0.881831, 1.539157, 0.967817, 0.308703, 0.166941, -0.148126, 0.613478, 1.598588, -0.974850, -1.086411, -0.449022, -0.324196, 1.507111, -1.523172, 0.456678, -1.201547, -1.270609, -1.600395, -0.505143, -0.008295, 0.753743, 0.115072, -1.422017, -1.318800, -0.475003, 0.097035, 0.914327, 0.108784, -0.023104, 0.871674, -1.256824, 0.668713, 1.114089, -1.144836, -0.832361, 0.366648, -1.133086, -1.580149, 1.110052, -0.124718, -0.302036, -0.558129, -0.793288, -0.841145, -0.319164, 0.768013, -0.017239, 1.400503, 0.782184, -0.962497, 0.542011, 0.281466, -0.868157, 1.584023, 0.915578, -0.346062, 0.981487, 0.379233, -0.383938, 0.490509, -0.694487, 0.058922, -1.025502, 0.775176, -1.021044, 0.168719, 0.607974, 0.807320, -0.077393, -0.320238, -0.759927, 0.208228, 1.956432, 0.569721, -0.698428, -1.608649, 1.114261, -0.556347, 0.444212, -1.463019, -1.000961, -0.699855, -0.233743, 1.090061, 1.100374, 1.242559, -1.052207, -1.446385, 0.260593, -0.406810, -0.281416, 0.611809, 1.596244, -1.619151, 0.037717, 0.020077, 1.672577, -0.099615, -0.831728, 0.721507, -0.502619, 0.335931, -1.270412, -0.325466, -0.304966, 0.213241, -0.819071, 1.301881, 0.332778, 0.550717, -0.189521, 0.475336, -1.257535, 0.407658, -0.195769, -2.353637, 0.810361, -0.514266, 0.816347, -0.849322, -0.457634, 0.046967, 1.375837, 0.112218, -0.730826, 1.883348, 0.843562, 2.132451, 1.130500, -0.527635, 0.550611, -0.700010, -0.453894, 0.118528, 0.082422, -0.245736, -0.521939, 0.212282, -0.604056, 0.828924, -1.621631, -1.148466, 2.715471, -0.194293, -1.052866, -0.210427, -0.379142, -0.058798, 0.470061, -0.418351, 1.427138, -0.112402, 1.433455, 2.364151, 1.770907, 1.097285, -1.091067, 1.459116, 1.116784, -0.845082, 0.461609, 0.569674, -0.052283, 0.719844, -2.384084, -0.720572, -1.180478, -0.768671, -1.935248, -0.276154, 1.632026, -1.773042, 0.072972, 0.521104, -0.101603, -0.177485, 1.417623, -1.772698, -0.206859, 0.754268, 1.347237, -1.057786, 0.097802, -0.940982, 0.417529, 0.185986, -0.735676, 0.439542, 1.687156, -0.580199, -0.275856, -0.479627, -0.921422, 0.050109, -0.666796, -0.307468, 0.770171, 1.294457, -1.801306, -0.906793, -0.621919, 1.657506, -0.395447, -0.945877, 0.675160, 1.712584, -1.018744, 0.632536, 1.555457, -1.164229, 0.640897, 0.353852, -1.558861, 0.243933, 0.344210, -1.483537, -1.768085, 0.560242, -0.595480, 1.867102, -1.814743, -0.450151, 1.007109, -0.404371, 0.563027, 0.192455, 1.219025, -0.009092, -0.118139, 1.092750, 1.526717, -0.905331, -0.200892, 2.456664, 0.043931, -0.518768, -0.393819, 1.034930, 0.571556, -0.518858, -0.011335, -0.466693, -0.093804, 1.541148, -0.168327, -0.939273, 0.996658, -0.897461, -0.233417, 0.315373, 0.548961, 1.447793, -1.337659, 0.580016, 2.421964, 0.066469, -1.215874, -0.164449, 1.319452, -0.769011, -0.008867, 1.005000, 2.099801, -0.853823, 1.152142, 0.105454, -0.913867, -0.620991, -2.427041, 1.400466, 2.125224, -0.055889, -1.191258, 0.551979, 0.713841, 0.387868, -1.125966, 1.540008, -0.648885, -0.142143, 1.913658, -0.149879, 1.536719, 0.580911, 0.604792, -0.762086, 0.131252, -0.391432, 0.664207, -0.201966, -1.347529, -1.251703, 0.031784, 0.760357, 1.108825, 0.694945, 0.390445, 0.545526, 0.227678, 1.612996, 0.829655, 0.709803, 1.729710, -0.032897, 1.054966, 0.210327, -1.764524, 0.405456, 0.328926, 0.285000, -0.642883, 2.509196, 0.481533, 1.337929, -1.308089, -0.840773, -0.290386, 0.204563, -1.502129, -0.739531, 0.304670, 1.033222, 1.042105, 1.039835, 0.139154, -1.392847, 0.998138, 0.856762, 0.247243, 0.289361, -2.526719, 0.124243, -0.660092, 0.520902, 1.110468, 0.126548, -0.620655, -1.516286, -0.126231, -1.185972, -0.854406, -1.301233, -0.016201, -1.167295, -2.183323, -0.297657, -1.153764, -0.804865, 0.413040, -0.048695, 1.138412, -0.351207, -0.038916, 0.473554, 0.947540, 0.486278, -0.754696, 0.387188, -1.302586, 0.226947, -0.042358, 1.148210, -0.038086, 0.177076, -0.914857, 0.308711, 0.950330, 0.594185, -1.560007, -0.794939, 1.250015, -0.967713, -0.337593, -0.739347, 1.546408, -0.541268, 0.168746, 1.156784, 0.555119, -0.926817, -0.507955, 0.927509, 0.613468, 0.952773, 1.526311, 0.520637, -0.398400, 1.130089, -1.276649, -1.238777, 0.380867, -0.822129, -0.442929, -0.398811, -2.096432, -1.404884, 0.540664, 1.687043, -0.583804, 0.153261, 0.029303, 0.112254, -0.566705, 0.101301, 0.629721, -0.395532, -0.133956, -1.767737, -1.777634, -1.615054, -0.480876, -0.422454, 0.370107, -1.262268, -1.115635, 0.048942, 0.953216, 0.990189, 0.131743, 0.650479, 0.784656, 0.275637, -0.495687, -0.283969, 1.291458, -0.937392, -0.002043, -1.165209, -1.257326, -0.635020, -1.815606, 0.190856, 0.057961, 1.036053, -1.100283, -1.248644, 2.220673, -0.047841, -0.455522, -1.833264, 0.767754, -0.115221, 2.451406, -0.033865, 1.504966, -0.494619, 0.332978, -1.581571, -1.797052, -1.852742, -1.164988, 0.560709, -1.276341, -0.601197, -0.433118, 1.388932, -0.636623, -2.550299, 0.669065, -0.570578, 1.597686, 1.185549, 0.013596, -0.266203, 0.109882, -0.007819, 1.901724, -0.023999, -0.387580, -1.274216, -0.926645, 0.047066, -0.540213, -0.720577, -0.990622, 0.595696, -0.188052, -1.242935, -0.416630, -0.458695, 1.605381, -0.473463, -0.136126, 1.461162, 0.549109, -0.425634, 0.706629, -0.635252, -0.886422, -0.032880, -0.923406, 0.850824, 1.186680, -0.162992, -1.549456, -0.637766, 1.434281, -0.314265, 0.520807, -0.004400, 0.082634, 0.543019, 1.346470, 0.306678, 1.324519, -0.370980, 1.506980, 0.082665, 0.622092, -0.061754, -1.130520, 1.091406, -0.188994, -0.330673, 0.307618, 0.261024, -0.229834, -0.039021, -0.485873, -1.027845, 0.854139, 0.079914, 0.744075, 0.076829, -2.005447, 1.247298, -0.583585, -0.653857, -0.656817, -0.571299, 1.430982, -0.837672, 0.395887, 1.332065, 0.656966, -0.807966, -0.593014, -0.321133, 0.376936, -0.117866, 0.374299, 1.385166, -1.588126, -0.167318, 1.034354, 0.422459, 0.342215, -0.349315, 0.536595, -1.440883, -0.125770, -0.130746, 0.250557, -0.166976, -0.677153, 0.039940, 1.954916, 1.422694, 1.188944, 1.494219, -0.785555, -0.799106, 0.401545, 0.581000, 0.764819, 0.563240, 0.774591, 1.020441, 0.367803, 0.740933, -0.282611, -0.298468, 0.480698, -2.031199, 1.139147, -0.093320, -0.383101, -0.986790, 0.979822, 0.538403, 1.454899, -1.173149, -0.016912, -0.149399, -0.233323, 1.552843, 1.125745, -0.462105, 0.592730, 0.318040, -0.693666, 1.134550, -0.981709, -0.946578, -0.839783, 1.446025, 1.140728, -0.181096, 0.357964, -0.973983, -0.548765, 0.152554, 1.791113, -0.962089, -1.400092, 0.108051, -0.744789, 1.104461, 0.066465, 0.670984, 0.228946, -0.228081, -0.514658, 0.211695, 1.694436, 1.147824, -2.012793, 0.479878, 0.786010, 0.501543, -0.990653, -1.509478, -0.272430, 0.732214, -0.768868, 0.618061, 1.018416, -0.879489, 1.950328, 0.201477, 0.178338, -1.094310, 0.157199, 0.823573, -0.490699, -0.254490, -0.856756, 0.560719, 2.064696, 1.129321, -2.003862, 0.014570, 1.126847, 1.718217, -0.862145, -0.618164, -0.576339, 0.544482, -1.794832, 0.357945, 1.795571, 0.180150, 2.701961, -0.171882, -0.230233, -0.804759, 0.595939, 1.705228, 0.019359, 0.969452, 0.612489, 0.184784, -0.020158, -2.015258, -1.382209, 0.673566, 0.113735, -0.074582, 0.599515, 0.740758, 1.146993, 1.093152, 0.994351, -2.106071, 1.405222, 0.711180, 0.355850, -1.545787, 0.410849, 0.790711, -0.317974, 0.286885, 0.111164, -0.542961, 0.262706, 0.584002, 0.744072, -0.045745, 0.657269, 0.958030, 0.169097, -1.113148, -1.135377, -1.031732, -0.660938, 1.234074, 1.741170, -2.216555, -0.234096, 1.711781, 0.094237, 1.021347, -1.044457, -0.145120, -0.285383, 0.624376, 0.828133, -2.221461, -0.045349, -1.097088, 0.494627, 1.280747, -1.358941, -1.751984, 1.328903, 0.407856, -0.027654, 1.743824, 0.747551, -0.808955, -1.298367, 0.233747, -0.599042, 0.043964, -0.251869, 0.019598, 1.234699, -0.934498, 0.067141, -1.665326, -0.998603, -0.207111, -0.539838, 0.972577, -0.919306, -0.577319, 0.456733, 1.192723, 1.104430, -1.442934, -0.324942, 0.628582, 1.103101, 2.212177, -0.045895, 1.267199, -0.943038, -1.882331, 1.080317, 1.326610, 0.151784, -0.525481, -0.498116, -0.739762, -1.409595, -0.094053, 0.836724, -0.649309, 0.921898, -0.395112, 0.429497, -0.641880, -0.103575, 0.427862, 0.139703, 0.057224, -0.388280, -0.337625, -1.041605, 0.221582, -0.263535, 2.037030, -0.742563, -2.270913, 2.346075, 0.118577, -1.171063, -0.731750, -1.952111, -0.176273, -0.110220, -0.129157, 1.014085, 1.182874, 1.334751, 1.400536, -1.424198, -2.235116, -1.851122, -1.061405, -0.093812, 1.465288, -0.624171, -1.084116, 0.743641, -0.713719, -0.265065, -0.594104, 1.594437, -1.304890, 0.623692, 0.005911, 1.280861, -0.491436, 0.229141, -0.236123, 1.226382, -0.699465, 1.871035, 0.329421, 0.622686, -0.975632, -0.046113, 1.780525, 0.363723, -2.167054, 1.092384, 0.243597, 0.739488, 0.224270, 1.581776, 1.369229, -0.161342, -0.214571, -1.165359, 0.651694, 1.656967, 0.482906, -1.295965, -2.367965, -1.871920, -2.222027, 0.065696, -0.491896, 1.061709, -0.237257, 1.363829, -0.126657, 0.196929, -0.168743, -0.659666, -0.426595, 0.176556, 0.556157, 0.479762, 0.209638, 0.207038, -0.176007, -0.641103, 0.479830, -1.136748, -0.385672, -0.699587, -0.067503, 0.279339, 1.171830, -0.679675, -0.495360, 1.401152, -0.445348, 1.277776, 1.179693, 0.804427, -0.081584, -0.586594, -0.196189, 0.066647, -0.515654, 0.136597, -0.035835, -0.318656, 0.535623, 0.144150, -1.276669, -0.040948, 0.817314, -2.504807, -1.826441, -1.645646, 0.139678, -0.098703, 0.972423, 0.188005, -0.419835, -0.754058, 0.276226, 1.371681, -0.221573, -0.301881, 0.545020, -0.515075, -0.355258, -1.689081, 0.684416, -1.362229, -1.246212, -0.168877, 0.843768, -0.138134, 1.609788, 0.144742, -2.287593, 0.433120, -1.286314, 0.686438, 0.120627, -0.133054, 2.563104, -1.487040, 0.290942, -0.195065, 1.644616, 0.467028, -0.287061, -0.939900, 0.980684, 2.155346, 1.820843, -1.023333, 0.730884, 0.448628, -0.458294, 0.621563, 0.899107, -0.225227, 1.782818, -1.636713, -0.288283, 0.526413, 1.281066, 1.713014, -1.040797, 1.320967, 1.652301, 0.533781, -0.439906, 0.832975, 0.243931, 1.351717, 1.460085, -0.058944, 1.360205, -0.023769, 1.027919, 0.087172, 0.297364, 1.531555, 1.381519, -1.559484, 0.421254, -2.637443, 0.962586, 0.005174, -1.349319, -0.130419, 1.550003, -1.458881, -2.538156, 2.014421, 0.006288, -0.000392, 1.645375, 0.914276, 0.950871, 1.842769, -0.500503, 0.988505, 1.283428, 1.037391, -0.388893, -1.431552, 0.776845, -0.584454, -1.040875, -1.613064, 0.128908, 0.102206, 1.516153, -0.160012, 0.849983, 0.717188, 0.766496, 1.962352, 0.798451, -1.234346, -1.840303, 0.922705, 0.644601, -0.027783, 0.256206, -0.749286, -2.566145, 0.478332, 2.329304, -0.387126, 0.452113, 0.334681, -0.161096, -0.474441, 0.097963, -0.089322, 1.795847, -0.042073, -0.664181, 1.218360, -0.340899, 0.127724, -0.310126, -0.467156, -0.134546, 0.631132, -0.115809, 0.842562, -0.827829, 0.410518, -2.267316, -0.677930, -1.355690, 0.736319, -0.956608, 0.433630, 0.861399, -0.080333, -0.592559, -1.044974, 1.532568, 0.549087, 1.318178, -0.619991, 0.058392, -0.105493, -0.640378, -0.797693, 0.228172, 0.273271, -0.386240, -0.488218, -0.812232, -1.479618, 0.084559, -1.608190, -0.392993, -0.135440, 1.051904, -0.758152, 0.782038, -0.013720, 0.308988, 0.206684, -1.368502, 0.320797, -0.886831, -0.751650, 2.008631, -0.046126, 1.144558, 0.284991, -0.262887, 0.304015, 0.723817, -0.777725, 1.323353, -0.091943, 1.153696, 1.369051, -0.246026, 0.125179, -2.001673, -0.967672, -1.063490, -1.689584, 0.057977, 0.811127, 1.515392, -1.096781, -1.523741, -1.262561, -0.267381, 0.954845, -0.161730, -0.151312, -0.893880, -1.196546, 0.550800, -1.905365, -1.008899, -0.121742, 0.701880, 1.683473, 0.225014, 1.300599, 0.295760, -0.207321, -0.061736, -0.683567, 0.635483, 1.609004, 0.883267, -1.149683, -1.042239, 1.514341, 2.086975, 0.222563, 1.309463, 0.905558, 0.184328, -0.581612, 1.141284, -1.304625, 0.037925, 0.325785, -0.516631, 1.265680, 0.332239, 0.214298, -0.258917, 0.038521, 0.312495, 0.092683, 0.474036, 0.855979, 0.157309, 1.511145, 0.505412, 0.261702, 0.269582, 0.358300, 0.062938, -0.818899, 0.298368, -0.496253, -1.183660, 0.062120, -1.237283, 1.233745, 0.307924, 2.330193, 0.039410, 1.774418, -0.605162, -1.621506, -0.486021, -0.431777, 0.956441, 0.677082, -0.492795, 0.156117, -0.126876, 0.845277, -1.613050, 0.086365, -1.560184, 1.316918, 0.078003, -0.592927, 1.359921, 0.187715, -2.275469, -1.945789, 0.627408, 0.190939, -0.351133, -0.806264, 0.824668, -0.042405, -0.539143, 0.845285, -0.089379, 0.878481, 0.284867, 0.526382, 0.717980, 0.182401, -0.541348, 2.146397, -1.088773, -0.805541, -0.345570, 1.661477, -0.595325, 0.684363, -1.257376, 0.023344, 0.734125, -0.291072, 0.021747, -1.480637, 1.270376, -2.572407, 1.487658, 1.404333, 1.011047, -0.112893, -0.818397, 0.684824, -1.135044, 0.836326, 1.505343, -0.082388, 0.162997, 1.576062, 0.342984, 0.928601, -0.092185, 0.427191, -0.330527, 1.518596, -0.110537, -0.484779, -0.760054, 0.642975, -0.984302, 0.624481, -0.029567, -0.715952, -0.011263, -0.298227, 0.275849, 0.027355, 1.377666, -0.459477, 0.628080, -0.467787, -0.230906, 0.376572, -0.254964, -1.277388, -0.769468, 1.400092, -0.108365, 0.988826, 0.326570, -1.100671, -0.340571, -0.158031, 0.198375, 1.156926, -0.063378, -0.340940, 0.650776, 0.856718, -1.035267, -0.605709, -0.439031, 0.944178, -0.584561, -0.830534, -2.074365, 0.638715, -1.666310, -0.988617, 0.461472, -1.422760, -0.782912, -0.108792, 0.436112, 2.355002, -1.235402, 0.553558, -1.002286, -0.327474, 0.468100, 0.246924, 1.424677, 0.112156, -0.975042, 0.546593, 0.658777, 0.162809, -0.601280, 0.949157, 0.174315, 0.900946, 0.310925, 0.004629, -1.549297, 1.764501, 1.482424, 1.837905, -1.039484, 0.149062, -0.630529, -1.177024, 1.068171, -1.280590, -0.303332, 0.179451, 0.169287, -0.258005, -0.425908, -1.375083, 0.802648, 0.945771, 1.557162, 0.789797, -0.166533, -1.327571, -0.354711, 0.250401, 0.330310, -0.255542, 1.117533, 1.200644, 0.675179, 1.269475, 2.209169, -0.490429, 0.058046, 1.673916, 1.371790, -0.658589, -1.335027, -0.871297, -1.264020, -0.430797, -0.891011, -1.678566, 1.099850, -1.632559, 0.025650, 0.544013, 0.184016, 0.729281, 1.388570, 1.340584, 0.339048, 1.167266, -1.789571, 0.831025, 1.163045, -0.025695, -0.161610, 1.300793, 0.028544, -0.651811, 0.115253, 3.349280, -1.690522, -0.740014, 1.528751, 1.295427, -0.357770, -1.472315, -0.387015, 0.802045, -0.463119, 0.243177, 0.322240, 0.559485, -0.666426, -0.058537, 0.244202, -2.163990, -1.198063, -0.534933, -0.009042, -0.866583, -0.659367, -0.952750, 0.054395, 0.584717, 0.550764, -0.614824, 0.009172, -1.510656, -0.756845, -1.174699, 0.030239, -0.433201, 0.695211, -0.858020, -1.342123, -0.836211, 0.001272, 0.052203, 0.434733, 1.141701, -0.214443, 0.191977, 0.336118, 0.740006, 0.034802, -0.784479, 0.096711, 0.727342, 0.055901, -0.414428, -1.824772, -0.881200, -1.991755, -1.703310, -0.643475, -1.899000, 0.020451, 0.354152, -1.656891, -0.303586, -0.650279, -1.334365, -0.388828, 0.257294, 0.598919, -1.616676, 0.474919, -1.193735, -0.324456, 0.396999, -0.882466, -0.097478, 1.547611, -1.214700, 0.191804, -0.625332, 0.365946, -1.514317, 1.307281, 1.258358, -0.226794, 0.344606, 1.404790, -1.004501, -1.057374, 0.540663, 0.249152, -0.669035, 0.125867, 0.989408, 0.769806, -0.500591, -1.445798, -0.767357, 0.641463, 0.041894, 0.111889, -0.966250, 0.669621, -0.610478, -0.533989, -0.412872, 0.472221, 0.478693, 1.378050, 0.727697, -0.964777, -0.788726, 0.736311, -0.848335, 0.543806, 0.803697, -0.106663, 0.811208, 1.240668, 2.250139, 1.136069, 0.246242, -0.121398, -0.486841, -3.434912, -1.275332, -3.317612, 0.069645, -0.413039, -0.369937, 2.498012, -0.762144, 0.303670, -1.258046, -0.375193, 0.563762, 2.457668, 0.232275, -1.474267, -0.259822, 0.681628, 1.628089, -0.325477, -0.547176, 0.592477, 0.459258, 0.410981, -1.505520, -0.494426, -0.053370, 0.621976, 0.288695, -1.813272, -1.824858, -0.283255, -1.062194, 1.142938, -0.158747, -0.943995, -0.521847, 0.896608, 2.761982, -2.603445, -0.730379, -1.142341, 1.221350, 0.770996, -0.867309, -0.275855, 0.152357, 0.407490, 0.225373, 1.259988, -0.002450, -0.561185, -1.630228, 1.834839, 0.582425, -0.461999, 0.268939, -0.619384, 0.187173, -0.958496, -0.951235, 1.445309, -1.371066, 0.868823, 3.438059, -2.021828, 0.150146, 1.012159, 0.703892, 0.976942, 1.792319, -0.139234, -0.496251, -0.161439, -0.984238, 0.317302, 0.588664, -1.038444, 0.222212, -1.746588, -0.022362, 0.914479, 0.903137, 0.029670, 0.105203, 1.680549, -0.345040, 2.162678, 2.025294, -2.193341, -1.256435, -0.307806, 0.242472, 1.013520, 1.866294, -0.149441, 0.927305, 1.010147, -0.534185, 0.255325, 1.065936, 0.812453, 0.207904, 0.180286, -1.882265, 0.035907, 1.266762, 1.252696, 0.653087, -0.494835, 0.543472, 1.246732, 0.317398, -0.412244, -0.952608, -1.371530, 0.213726, -0.625257, 2.081142, 1.456245, 1.249835, 0.640521, 0.788754, -1.067846, -0.369250, -0.639954, -0.182088, 2.146137, 0.944911, 0.223942, 0.528069, 0.980094, 0.124984, -1.529407, -0.797045, -2.993440, -0.395360, 0.508714, -0.262211, 0.293014, 2.141667, 1.894343, 0.454155, 1.467839, -2.669097, -0.350502, -0.684777, 0.710954, 0.797875, -2.239517, -0.155615, 0.077360, -1.304273, -1.536844, -0.107262, -0.326350, 0.036435, 1.129485, 0.877583, 1.250684, 0.067639, 2.080853, -0.715323, -0.076841, 0.419071, 1.760842, -0.058199, -1.315183, -0.555080, -1.034938, 0.699692, 0.314024, 1.955158, -0.287106, -0.854205, -1.337740, 0.583237, -0.421642, -1.707369, -1.324745, -0.850404, -1.204480, 2.133568, -0.112033, -0.894717, -0.978355, 0.908738, 1.238484, -0.615850, -1.937458, -2.196863, -1.252127, -0.526694, -0.546125, -1.344850, -0.982168, 2.173167, -0.083702, 0.007026, -0.246081, 0.238767, -0.724481, 2.339514, 0.084985, 0.703273, 2.061641, -0.154204, 2.239408, 0.423678, -2.063623, -1.252790, 0.650013, -1.658404, -0.693257, 1.838595, -0.771602, -0.149477, 0.358082, 1.407910, -0.144467, -1.152889, 0.401631, 0.303263, 0.131443, -0.819018, 1.100724, 0.464732, 0.491105, 1.228458, 1.311138, -1.197644, -0.111242, -0.919881, -0.922855, -0.189304, -0.030848, -0.102934, 0.066671, 0.117949, 1.304459, 0.352791, 0.620185, 0.711346, -0.059455, -0.385455, -0.096255, -0.191275, -0.494043, 0.748575, 0.782187, 0.307755, 0.037504, 0.372293, -0.903534, -1.848378, 1.287887, -0.524687, 1.163189, -0.129975, -0.903640, 0.148251, 0.268857, -0.148171, 0.143643, 0.987272, -0.125844, -1.091078, -2.237172, -0.879773, 0.548873, -0.880634, 0.334975, -0.082319, 0.048774, 1.491770, -0.228632, 0.325660, 0.418687, -1.585747, 0.752094, 0.611305, -0.188517, 0.078357, 0.959069, 0.028140, -1.591887, 0.769817, -0.893864, 1.043248, -0.631661, 1.426773, 1.757035, 0.597649, -0.683081, 0.432780, 1.424747, -1.326275, 0.576361, 0.261461, 0.128965, -1.035025, -1.207932, -0.312072, -0.163825, 2.215348, 1.238384, 0.671489, 0.400612, -0.837736, -0.307870, 0.181347, 0.874091, -0.210893, -1.045678, -0.506004, -0.976173, -0.104124, -0.462819, 0.905066, 1.636724, 0.550073, 0.297225, -0.322061, 0.483991, 0.549717, -0.212938, -0.101067, -0.196911, -1.498795, 0.027274, 1.918654, -1.903753, 0.028858, 0.872454, 0.507493, -1.433596, 1.538476, 1.463245, 0.511314, 0.992367, -2.023561, -0.103634, -0.280758, 0.898937, -0.635816, -1.741027, -0.710854, 0.232806, 0.997186, -0.068699, 0.527735, -0.306612, 1.320259, 0.524979, 1.566026, 0.745433, -1.261684, 0.429688, 0.668823, -0.129410, 1.041267, -0.107695, 0.385024, -0.541924, -1.335704, 0.712109, -1.242640, 0.957900, -1.226049, -0.428987, -2.854677, 0.170167, 0.898194, -0.259911, 0.116624, -1.037295, 0.424726, -0.450664, -0.849981, -0.069518, -1.837021, -0.111621, 0.918603, -1.012827, 0.307816, -0.167160, 1.764189, -1.923860, 2.134014, -1.209289, -1.026325, 1.243077, -1.813199, 0.730852, -0.503545, 0.467283, 1.100372, -0.970210, -0.427993, -1.247147, -1.260334, 1.119235, 0.371673, -0.801661, 0.890992, -1.029953, -0.621906, -0.129162, -0.155884, 1.275557, 0.072217, -1.300900, 0.355759, 0.862411, 0.771433, -0.290071, 1.168941, -0.460358, -0.233635, -0.049346, 0.203962, 0.105250, 0.740352, 1.040948, 0.221734, -0.233648, -0.454181, -1.126288, 0.025229, -0.278310, -0.103982, -0.264373, 0.348480, 0.971696, -1.928843, -0.328395, 1.040008, 2.561056, 0.943739, -0.678772, -0.353803, 0.339516, 0.759326, 1.300684, -1.149924, -0.191907, 1.919679, -0.718326, -0.382216, -0.129293, -1.117456, 1.295387, -0.840581, 0.386809, -0.158824, 0.027075, -0.358692, 0.396634, 0.524984, -0.931175, -2.105458, 0.259047, 0.406823, 1.514007, -1.440626, 0.870172, 1.896048, -0.972844, 0.353884, -0.522369, 0.743633, 2.892678, -0.447871, -2.060688, 2.193885, 1.602998, 0.363908, 0.778097, -0.649055, -0.643641, -0.180242, 0.417444, 2.334388, 1.051741, -1.314835, 0.172733, 0.425691, -0.940487, 1.854761, -0.310319, -0.356594, 0.165421, 0.983026, -1.231497, 2.365194, 0.863807, 1.327166, -0.854160, -0.846990, -2.275567, -0.030467, 0.086538, 0.208191, 0.417749, -0.673133, 0.248403, -0.821390, 0.930110, -0.537681, 0.722272, -0.438084, 0.521775, -0.444775, 1.123706, -0.366154, -1.211334, 0.785763, -0.090212, 0.399610, -0.778955, -1.737424, -0.944608, 1.953097, -0.049402, -2.043326, -0.945736, 0.121193, 0.337845, -0.800513, 0.401829, 0.789317, -0.466685, 1.038434, 1.135158, -2.149812, -0.791029, -0.417211, -0.077371, -0.108307, -0.355600, -0.871421, -0.014547, -0.760972, 0.300661, 1.775042, 0.201609, -1.265828, 2.669960, -0.984106, 0.357699, -0.112097, -0.093051, 0.575159, -1.898535, 1.101097, 0.339002, 0.701391, 2.337458, 0.528637, 1.840637, 0.475147, -0.562820, 0.338753, 0.403679, 0.574363, -2.119347, 0.609968, -1.012849, -1.352962, 0.231849, 0.278812, -0.013616, 1.019185, 0.261277, 0.286280, 1.581873, 0.142259, -0.720907, 1.581380, -0.359791, 0.808249, -0.255167, 1.464218, -0.318399, 0.344273, -0.984958, -1.620986, -1.138884, 1.536932, -0.108202, -0.483328, -1.162456, -1.223146, 1.430757, -0.093890, -0.862485, 0.331000, 0.292759, -2.178923, -0.816021, -0.624117, 1.602224, -0.106339, 2.169772, -0.014278, 0.309661, 0.241634, -0.391667, -0.038346, 0.716072, -0.408375, 0.221501, 0.251063, 0.452108, -0.113625, 0.302859, 2.721525, -0.187321, 0.650628, 0.950048, 0.037648, -0.749137, -0.041241, -0.629328, 0.101210, -0.297283, -1.216799, -0.946815, -0.415470, 0.320461, 1.088325, -1.371601, -1.912377, 0.762343, 0.840408, -0.726547, -0.147991, -2.197295, -1.215911, 0.231504, -1.210398, 0.098692, 1.652076, 0.953677, 0.637737, 0.408459, -0.379354, 0.027540, -0.410371, 1.428545, -0.123122, -0.799414, 1.413017, 0.990663, 0.563771, -0.436278, 0.171840, 1.534318, 0.066921, -0.551868, 1.566881, 0.403103, 1.363561, 1.148942, -0.302120, -0.056281, -0.738906, 0.820263, 0.261098, -0.329456, 0.222278, -0.363365, -1.735313, 0.914271, 2.036753, -1.325607, 0.638314, -2.356230, 1.099741, -1.592053, 0.784023, 1.364543, -0.450988, 2.585830, -0.541140, -0.671554, -0.878177, 1.009884, 1.076272, 0.753052, 0.568429, 1.302246, 0.337833, 2.142000, 0.333981, 0.809878, 1.108388, -0.064714, 0.320127, -1.319582, -0.296741, -0.488517, 1.125798, 0.329502, -0.257559, 0.787120, 0.722466, 0.048714, 1.953891, -2.059062, 1.769919, 0.226752, 0.226126, 0.195641, -0.456240, 0.910647, 0.088730, -0.788780, 0.096395, 1.663035, 1.255488, -1.548699, -3.336155, 0.109129, -1.154656, 0.219741, -0.408942, -0.808253, 0.407780, 1.290327, 0.357330, -0.518125, -1.934839, -0.738774, 0.205591, -0.893549, 1.140193, -0.339865, 2.108851, -1.050804, -0.284021, 0.554164, 0.134279, -0.453211, 1.002542, -0.790829, 0.995897, -0.045379, -0.303787, -0.079004, 0.529985, 0.166934, -0.218553, 1.857520, -1.740195, 0.008362, 0.335930, 1.359018, 0.546026, -0.056666, -2.716472, 0.259483, 0.417710, -0.030669, 0.204734, -0.112383, -1.271630, -1.629727, 0.289883, 0.570985, 2.225081, 0.740098, -0.944959, 1.065357, -2.396979, 1.728588, 1.765830, 1.699483, 0.208346, 0.873128, -1.751580, -0.228863, 0.215537, 0.996368, -1.161910, 0.796919, 3.245623, 1.779665, -0.866491, -2.005794, -1.095217, -0.505462, 0.066627, -0.930149, -0.344587, 0.684385, -0.116935, 1.015545, -0.331658, -0.022402, -0.644539, -2.867691, -1.161617, 0.305834, 0.881094, -1.766287, -2.208297, 1.272215, 0.046028, -1.084531, -0.123789, -0.702800, -0.169766, -0.545750, -0.539380, 1.566526, -0.806409, 0.856156, 1.339557, -0.979540, 0.293885, 1.136141, -0.820292, -0.482555, -0.567841, 1.190734, 2.046194, 1.558453, 0.728943, 0.248332, -0.312406, -0.733023, -0.111732, 0.794256, 0.245471, -0.179121, 0.304966, 0.809319, 0.413332, -1.077685, -0.194387, -1.306237, 0.103199, 0.789988, 0.228082, -0.232963, -1.031974, 1.523923, 0.475141, 0.981131, 0.211370, 0.543180, -2.815670, -0.392107, 1.093994, -0.778228, -1.632739, 1.038689, -0.026396, 0.127708, -0.304561, -0.139410, 1.180005, 0.548800, 0.615076, -0.486102, 0.271175, -0.182000, 0.550931, 0.489203, 0.597428, 1.967353, 0.690271, -0.278638, 1.199280, 1.811475, 0.611303, 1.653204, 0.209449, -0.271386, -1.447027, -0.290825, -0.339195, 1.279329, -0.153505, -0.324407, -0.153552, 0.355896, 0.180559, 0.687147, -1.038141, 0.112882, 0.717571, 0.240427, -1.330195, -0.401013, -1.788596, -1.268662, -0.309635, -1.296623, 0.263301, 1.392039, -0.343556, -1.572679, 0.116925, 0.549390, 0.405567, 0.492136, 0.227724, 0.903605, -1.144802, 0.568041, 0.540512, 0.509992, -3.318491, -0.854823, 0.766625, 0.463274, 1.010227, 1.737680, -0.673925, 0.778945, 0.278941, 0.581580, -1.079286, -0.706330, 0.892325, 0.674350, -0.440848, 0.387607, -0.679627, -0.850609, -0.451993, -0.087611, -0.672285, -1.168569, 0.616856, 1.317201, 0.114958, -1.039682, -1.416106, -0.342592, 0.660260, 2.357647, 0.165979, -1.584079, 0.860112, -1.366584, -0.097526, 0.122607, 0.862487, 0.731924, 1.418219, 0.849132, -0.597117, 2.540466, -0.578632, -1.115295, 1.333190, 0.086513, -0.053591, 0.225131, -1.602764, 0.500208, 0.032654, 0.322420, -0.189129, -1.890881, -0.382670, -0.432913, 0.319351, 0.055069, 0.936737, 0.113776, 0.776327, -0.193125, -0.158743, 0.753608, 0.645885, -0.325324, 1.526171, 0.749130, 0.130848, -1.612800, 0.918753, -0.388036, 0.447818, -0.952199, 0.037843, -1.134077, 0.684074, -0.591570, 0.242446, -1.553247, 0.193325, -0.466172, 0.498750, -0.637181, -1.580025, -0.175192, -0.735099, -0.096882, -0.306228, 1.140357, 0.078491, 0.301933, 0.826565, -0.474013, -0.392096, -0.340153, -0.662475, -1.318035, 0.199364, 1.173646, 0.060547, -0.277690, 0.037742, 0.626429, 0.276228, 1.365709, -0.826479, 0.720810, -1.543668, -0.931893, -0.898319, 0.037826, -0.992644, -0.229341, -1.291530, 0.776097, 1.106078, -0.502102, -0.195784, 0.678352, 0.443396, -0.729560, -0.643773, 0.684174, 2.167852, -0.343895, -1.148394, 0.610099, 1.218483, -0.648867, -0.660539, -0.011589, 0.242672, 1.619911, 1.122103, -0.949625, -0.346093, 0.313354, -1.480383, 0.114799, -0.631290, 1.376870, 0.528655, 0.147564, -0.571892, -0.902503, 0.027523, -2.386206, 0.047019, 0.712340, 0.373050, -3.742981, -0.960977, -0.765825, -1.196275, 0.592246, -1.001031, -0.734095, 1.194421, -1.299737, 0.718205, 0.129740, 1.449906, 1.456795, 1.322775, -1.037488, 0.919950, 1.299589, -0.220103, 0.679789, -0.731794, -1.099227, 0.747064, -1.272311, -0.494790, -0.517814, -1.236414, -1.206991, -2.020248, 0.256161, 0.375244, 0.392100, -0.787414, -0.073884, -0.833548, -0.218742, -1.180919, 1.210457, -0.961551, 0.132198, -0.598840, -0.559707, -1.828597, -1.602170, 0.678783, -0.544020, 0.822751, 1.626201, 2.232374, -0.138779, -0.694156, 0.000847, -0.650478, -1.229205, 0.703766, -0.283488, 0.543350, 1.657942, -0.328912, 0.148650, -0.124798, -0.037360, -0.834730, -1.556607, 1.613294, -0.802447, 0.187936, 1.174586, -0.217522, -1.521824, -0.163067, 0.595951, 0.662811, -0.033540, 1.009212, -0.151565, -0.378193, -1.852612, 0.341086, 0.621315, -1.264951, -2.818332, 0.325491, 1.167756, -1.980884, -0.313517, -0.961457, -0.038815, -1.048902, 0.303013, 1.832546, 0.130136, 0.960339, -0.537327, -0.142277, -0.623377, 0.956756, 0.485942, 0.379199, 0.288153, 1.208403, 1.155517, -1.177368, 0.607068, 0.203230, 1.012689, 0.025322, 2.288601, -1.962106, -0.994810, 0.599504, 0.344037, -2.161122, 0.506686, 1.213832, 0.227534, 1.660662, -0.606905, -0.867402, 0.589378, -2.365501, 0.173724, -0.380677, 2.189913, -0.031614, -0.154074, 0.410991, 0.208099, 0.580851, -1.544862, 1.329000, -0.516037, 0.342867, 0.298892, -0.465886, -0.625069, 1.187250, 0.590677, 0.053370, -1.004794, -1.401529, -1.035537, -0.628932, -1.463349, -0.955950, -0.467803, -1.743691, -0.472147, 1.943463, -0.252482, -0.142277, -0.841892, 0.950755, -0.976874, -0.267182, 0.021924, -0.604220, 0.003174, -1.378690, -0.917260, 0.163232, 0.875701, 0.362346, -0.000697, 0.044516, -1.024250, -1.371196, 0.818301, -0.954579, 0.344323, -1.664236, -1.013830, -0.021952, -0.023982, 1.597108, 0.705133, -3.162140, 1.383527, 1.264118, 0.222059, -0.506200, -1.928744, 2.200409, -0.270185, 1.081008, -0.800158, -0.357231, 0.289235, -0.594162, 0.044104, 0.719819, -1.518946, -0.150641, -0.939045, -1.684735}, - { -0.075818, -0.591056, -0.203184, -0.000746, -0.297645, 0.391987, 0.301354, -1.067063, 0.503172, 0.718119, -1.699602, 0.882575, 0.744414, -0.829243, 0.975778, 2.207309, -0.688361, -0.303853, 1.611673, 0.289883, -2.782591, 0.178586, 1.731738, -1.109886, -0.591628, 1.219229, 1.127124, 0.650235, -2.183071, -0.734204, -0.283618, -0.773913, 0.242742, 0.658706, 0.569280, 0.855442, -1.795356, -1.059935, 1.629796, 0.221182, -0.168840, 0.429339, 0.019499, -0.222937, -0.676228, -0.876359, 0.264665, 0.499466, -0.215084, 0.434298, 0.497651, -0.714105, 0.513151, 1.114845, 0.529509, 0.363861, -0.784813, 0.106611, -0.234912, 0.582431, -0.509431, 0.463722, -0.745261, -0.652358, -0.116182, 0.686116, -0.093189, 1.176759, 1.526295, 0.130450, 3.006197, 0.467975, 0.830607, 0.741303, -1.302031, -1.225514, -2.744079, -1.262118, 0.595829, 0.377909, -0.110930, -0.076925, -0.061071, 0.356284, 1.418585, -1.080366, 0.678356, -0.536989, 0.286910, -0.477631, -1.817675, 0.750332, 1.055889, 0.603314, -1.094795, 0.164761, 0.795688, 0.470629, 0.011230, 2.731884, -1.098709, 0.371479, -0.399019, -0.399803, 0.726631, -0.420814, 0.875257, -1.715272, -0.001264, 1.897607, -0.528751, -0.464735, 0.362777, 0.697868, 1.138464, -1.077565, -1.506992, 1.755002, -1.332765, -0.533883, -1.300747, 2.041262, 0.507811, 0.176813, -0.470497, 0.008381, 1.005808, 0.111211, 0.529343, 0.408063, 0.157513, -0.876860, 0.292996, -2.088128, 0.150622, -0.699342, 1.632175, -1.677590, 0.685664, 1.318200, 0.275651, -1.542503, -0.216152, 1.512114, -0.978928, -1.662969, -0.809575, 0.134984, 0.356887, -1.125470, -0.894769, 1.228497, -2.276622, -2.345372, 0.903469, -0.426379, -0.589865, -0.061567, -1.824102, -1.675176, 0.587386, 0.129867, 0.269369, 0.924985, 0.223019, -0.281389, 0.539594, -1.069914, 0.706722, -0.299142, 1.657878, 0.423268, 2.812116, -0.358220, 0.426580, 1.636693, 1.169133, -0.242839, 0.815258, -1.559850, 1.379328, 0.569973, 0.843199, -0.708583, -0.269013, -0.614245, 0.003019, -0.891025, 0.600493, -0.395048, -0.602764, -0.920318, -0.230134, 1.074987, 0.685926, -0.588487, 2.000565, 2.150665, -1.063414, 0.548167, -0.233040, 0.378996, 0.446337, -0.580621, 0.020128, 0.418870, 0.189227, 0.417250, -0.265171, 0.991254, -0.186357, 0.305849, 0.643100, -0.201048, -1.147260, 0.059509, -0.205426, -1.176731, -1.871982, -0.152198, 0.753215, 1.328457, 0.949134, 0.336266, -1.634675, 0.802454, -0.013598, -0.500140, -0.354332, -0.056919, -0.527163, -1.528844, 0.219224, -0.596693, -0.660274, 0.436824, -0.528790, -0.404186, 0.479671, 1.660770, -0.228581, -0.938038, -0.865225, -0.120912, -0.869814, -0.631828, -1.611058, 0.717008, 1.212493, 0.822863, 0.946994, -0.287564, 0.318448, 1.790949, -0.345807, 0.084848, -2.735029, -0.622923, -0.135313, -0.023435, -0.273825, 0.137685, 0.581551, 0.275621, -0.980397, 0.104893, 0.910032, -0.746566, -0.557435, 0.536291, -0.697447, 0.081836, 0.402436, 0.467083, -0.179142, 1.197302, 1.476778, 1.147592, -0.325082, 0.084812, -0.949026, -2.120154, 0.436866, 0.585607, -0.455147, -1.077923, -1.667871, -0.534206, 0.255791, -0.084062, -1.288494, -0.794506, -1.418958, -1.956882, -0.326849, 0.761938, 0.188717, 0.161439, 1.925249, -0.638581, 2.167075, 0.379375, -1.080229, 0.339205, -0.312691, 2.167922, 0.574815, 0.885331, 0.493129, 0.294114, -0.344645, -0.715179, -0.302560, 0.573559, -1.868044, 0.693858, -0.715592, 0.768519, 2.493984, 0.777753, 0.362307, -0.101264, 1.609456, -0.292330, 0.591547, -0.901044, -0.395944, -0.687151, 1.213101, -1.420922, 2.208108, 0.547884, 0.762590, 0.242986, 1.115821, 0.926447, -0.657233, 1.236022, -0.309429, 1.399785, -2.227902, -0.003809, -1.089583, -0.155297, -0.858382, -0.994752, 0.361045, 0.459807, 0.737149, -0.130919, 1.203072, 0.356398, 0.655216, 0.013671, 0.962188, 0.868420, 0.082053, -0.334015, -0.427765, 0.735269, -0.691213, 0.488611, -0.326986, 0.489971, 1.652623, 0.291087, -0.040772, -0.420552, -0.056084, 0.277826, -1.883673, 0.468472, 2.054070, -1.610662, 0.183714, 1.102596, 0.772954, 1.693413, 1.445988, -1.137661, -0.141325, -0.622301, 0.006393, -0.884850, 1.002120, 0.645773, -0.090861, 1.080341, -1.500663, 1.320626, 0.669547, -2.595552, 0.845621, 0.327436, -0.355436, 0.516004, 1.854887, 0.700505, 0.671752, -1.354331, 0.980456, -0.427137, -0.927301, -1.820176, -0.981218, -1.194150, 0.315045, 0.021733, -0.744935, 1.131451, -0.421028, 0.857346, -0.963097, 0.323527, -0.297951, -0.302454, -0.141004, 0.211454, -0.736983, 0.027141, -2.570904, -0.004068, -0.520198, 1.228741, 0.608092, -1.163575, -1.200350, -1.906412, -1.316357, 0.435733, 0.314957, 1.463497, -1.726823, 0.411802, -0.995351, 0.328443, 0.589587, 1.161308, 1.269894, 0.000864, -0.669958, -1.170734, -0.306897, 0.813266, -0.054548, 0.575938, 1.372825, -2.078029, 1.361749, 1.028377, -1.300539, -0.841800, 0.018339, -1.158966, 1.465181, 0.503631, -0.557325, -0.017204, -0.645261, -2.052901, 0.294085, -1.344063, -0.071089, 0.542979, -0.686364, -1.704995, -0.016104, 0.013893, 0.416073, -0.060993, 1.281186, -2.285144, 0.925526, 1.325849, 1.240047, -0.965018, 0.355224, 0.885112, -2.308917, 0.022059, 0.398899, 0.540163, 1.244802, 0.106283, 0.318419, 0.308530, 0.136895, -0.426789, 0.171461, -0.247609, 0.030064, 0.797424, -0.771029, -1.640079, -0.112640, -1.347726, -0.856826, -2.681372, 0.658750, 0.894154, -0.560418, 0.459026, 0.011281, 1.107731, 0.759959, 0.349417, 0.604720, 0.759985, -2.042573, -0.797079, 0.118170, 1.519774, -0.549714, -1.447577, -0.408993, -1.586553, -1.357910, 0.370954, -0.093002, 0.983589, -0.026437, 0.356506, -0.144430, 0.813638, -0.406420, 1.071391, 1.616723, -0.668873, -0.343954, -0.879210, -0.811743, 0.173981, -1.712460, -0.788406, -0.734806, 0.384649, -0.128088, 0.047616, -0.017519, 0.653405, 1.587662, 0.489960, -0.461334, -0.217019, -1.117423, -0.150461, 0.155841, -0.462382, -1.244611, 0.486257, 0.137425, -0.142641, -0.218207, -0.773001, 0.234715, 1.768985, -0.744872, -1.355896, -1.477842, 1.497080, -1.373374, -1.635711, -0.184275, 0.880896, 1.301994, 1.176412, -0.514677, 0.756981, 0.974307, -1.050675, 1.166521, -0.188740, 0.125473, 0.879383, -1.720362, -0.158602, -1.192396, 0.522076, 0.173412, -0.008877, 0.213117, -0.625154, -0.733218, -1.747669, 1.417209, 0.112440, 2.183440, 0.684636, -0.054791, -0.196834, 0.371640, 1.224291, 0.213305, 0.697020, -1.245772, 0.901466, -0.446039, -0.818270, 2.708708, 0.423931, 0.042169, 0.577899, -0.482756, 1.680901, 0.513257, 1.740272, -0.539891, -0.934281, -1.668307, -0.245802, -0.244376, -0.222213, -1.308956, 0.366338, -1.845397, 0.410688, 1.036196, 0.413241, 0.409510, -0.352512, 1.055341, -0.124908, 0.867170, -0.357473, 1.585324, -0.042768, -1.009225, -1.615473, -0.474490, 0.576445, 0.955794, 1.079710, 1.555776, -1.477289, -0.199500, -1.313659, 0.606937, -0.544959, 0.043119, -0.775890, 0.344170, 1.208706, 1.908984, 1.482895, -0.528106, 2.143611, 0.485469, 1.680593, 1.362918, 0.730531, -2.102340, 0.044886, 0.544160, -0.875090, -0.101456, 0.568089, -0.433850, -0.151209, 0.613436, 1.428467, 1.306991, -1.066352, -0.149791, -0.903824, 0.805184, -0.893422, 0.892775, -0.178189, 0.109300, 0.269072, -0.230340, 0.929517, 2.082050, -0.011854, 0.867216, -0.237540, 0.611737, -1.173773, -1.749500, 0.334649, 0.138566, 0.124509, 0.080841, 0.036189, 1.504761, -0.100675, 0.554198, 0.313428, 1.524298, 1.859559, -1.169674, 1.325822, -0.652379, -0.516166, 0.134771, 1.181378, -1.690249, 0.248256, 0.184333, -0.523780, -2.413045, -1.053354, -0.306026, 0.236648, -1.572342, -1.047770, 0.751448, 0.339150, -0.494041, -1.893447, -0.235308, 0.064264, 0.046988, 1.981716, -0.127397, 0.315015, -1.628040, 0.076587, -0.573340, 0.321453, -0.521165, 1.273583, -0.966274, -2.114611, -0.536952, 0.144996, -0.780299, -0.935535, 0.088825, -0.040910, 2.084124, 0.936409, 2.810586, 0.124005, 0.127283, 0.694560, 0.502367, 0.148034, -0.621752, 0.070649, -0.440923, -1.171717, -1.031349, -0.521696, -0.887322, -1.839129, -0.774408, -0.066049, -0.038174, -0.588403, 1.423813, 1.474157, 0.535514, 1.615030, 1.225503, 1.152056, 0.516053, 1.089590, -1.066190, 0.192370, 0.523916, -0.179157, 0.105351, -0.947115, 0.716954, 0.015325, 0.288231, 0.424537, -0.753833, 0.027087, -3.675045, -0.090765, 1.092801, 0.430864, 0.561499, -2.256565, -0.597150, 0.889171, 1.397961, -0.733913, 1.385188, -0.001447, -0.950268, 0.227548, -0.764067, -0.202498, 0.749815, 0.313749, -0.266840, 0.017444, 0.959492, 0.188555, -2.141024, -0.940327, -0.965526, 0.026873, -1.213501, -0.377153, 0.392924, -0.829945, 0.292557, -0.454602, -0.693818, -0.096988, -0.322176, 1.159081, -0.798123, -1.747694, -0.373071, -0.132011, 0.706681, -0.747720, -0.855929, 0.620011, -0.016718, 0.231226, -1.114918, 0.834109, -0.363585, -0.857226, -0.663288, -0.589717, 0.256435, -0.964734, -0.217967, -0.088349, -0.280938, -0.727965, -1.746968, -1.106385, -0.147203, -0.140409, -0.164293, -0.309257, -0.431281, -0.598302, 0.064008, -0.271517, 1.109756, -1.691761, -0.430134, 0.318368, -0.344823, 0.272827, -1.121198, 0.745457, 0.897591, -0.706200, 0.209976, -0.035755, -0.613884, 0.890334, 0.642694, 0.890836, 1.631471, -1.431814, 0.148201, 0.892726, -0.399325, 0.959943, -1.109057, -1.368136, -1.520686, -1.267245, -0.742559, 0.143233, -0.853587, -0.306600, -0.758736, -0.414820, -0.652026, -0.478137, -0.253427, -2.231979, -1.075703, 1.202082, 0.592509, -1.947696, 0.803558, 0.294605, 0.492636, -0.341489, -0.760671, -0.745105, -1.362836, 0.462362, 0.505779, -0.985064, -1.380559, -1.815218, 1.416375, -1.074194, -1.587418, -0.103223, -1.703095, -0.779193, 0.074315, 0.026178, -1.345037, 0.891032, 0.204909, -0.586400, -0.600944, 0.751890, 1.196609, -1.016430, 0.716123, -0.068246, -1.096565, -2.116214, 0.300928, -1.712698, 0.286790, 1.497939, 0.786162, -1.614773, -1.860155, -1.052558, 0.624718, 0.052969, 0.931686, -1.406795, 0.720874, -0.232274, 0.705340, -1.493329, -0.018443, 0.038162, -0.883086, 0.361363, -1.416216, 0.284943, -0.947201, 0.597141, -0.153477, -0.030014, 1.032378, -0.442512, -1.189060, 0.873973, -0.695849, -2.213670, -0.882565, 1.924593, 0.385527, -1.826749, 1.356966, -0.939668, 0.452114, -0.861320, 0.646611, -1.654788, 0.105652, -0.977826, -0.262637, -0.785443, 0.537789, 0.621140, -2.139691, 0.356133, -0.129503, -0.677756, 0.394433, -0.155510, 0.951923, -2.544760, 1.474002, -1.682877, 0.361991, 1.079167, -0.440421, 0.605869, -0.727371, -0.943646, -0.003097, -1.570753, -0.079297, -0.938677, 2.082263, -1.459062, -0.026338, -0.038563, -0.993783, 0.561255, -0.309214, 0.227159, 0.446961, 0.248196, -0.246098, 0.310695, -0.044911, -0.677601, -0.018911, 0.048850, 1.031594, 0.497150, -1.340823, 0.183893, 0.128366, -1.711080, 1.115235, -1.229392, 0.032065, -0.025242, -0.460189, -1.997183, -1.656676, -0.732582, 0.802921, -0.247523, -0.609633, -1.208488, -0.339399, -0.359070, 0.556005, -1.588518, -0.321263, 0.832858, 0.022334, -0.315544, -0.841888, 0.965152, 0.220015, 0.370088, -0.423696, 0.370877, 0.193378, 0.292879, -1.624798, -0.103574, -1.441935, 0.767723, 1.239516, -0.708171, -0.424174, -1.046110, -0.478123, 1.578071, -0.911382, -1.260897, -0.389807, -1.355822, -1.183033, 1.375509, -1.063042, -0.388363, -0.493549, 0.210866, 1.899580, 0.773886, 0.186683, -0.428925, -0.730664, 0.375465, -0.085533, 0.089020, 1.035511, 0.670976, 0.218544, -1.035212, -0.642320, -0.920104, 0.106518, -0.396411, -1.157877, -0.591797, 0.031682, 0.272614, 0.022728, -0.500464, 0.037725, -3.046452, 1.252567, -1.729744, -0.382654, -1.596030, -0.787100, -0.145173, -1.346201, -0.501846, -0.962874, 0.310012, -0.920081, 0.515726, -2.139237, -1.199519, 1.517574, 1.064883, -0.669418, -1.426992, -0.322023, -1.160855, -1.319991, -0.249540, -0.345650, -0.535926, 0.124848, -0.120100, 0.762485, 0.188459, -0.250986, -0.046337, 2.474099, 0.689626, 0.265537, 0.257378, -0.706513, 0.895898, 0.570130, 1.254666, 0.162203, 0.510184, -1.048993, -1.618204, 2.051298, -0.834612, -1.243334, -0.507539, -0.997368, 0.045870, 0.011098, -0.296018, 0.334154, -1.750444, -0.176534, -1.769745, 1.107860, -0.492425, -0.166301, 0.491276, -0.263682, 0.685303, 0.280421, -0.897950, -0.447638, 0.088219, -1.180396, -1.071527, 0.212744, -0.668130, -0.525322, -0.659127, 0.762409, 0.057134, 0.600757, -1.520167, -1.413539, 1.944629, -0.791205, -0.447695, -0.011525, 0.303494, -2.708285, 0.638961, 0.249727, 1.184608, -1.231511, -1.262940, -0.111445, 0.691747, -0.959549, -0.762079, 1.687524, 1.510708, 0.210334, 0.272234, 0.184174, 0.181007, -0.206666, 1.007502, -0.324370, -1.335822, -0.480793, -1.842633, 0.889679, -0.541488, -1.895418, 0.421949, 0.309808, -1.855416, -0.394806, -0.041118, -0.159588, -0.824810, -1.376193, 0.388323, -0.125261, 0.087424, 0.578072, -0.161669, -0.206666, -0.000901, -0.794746, 1.184063, 1.564185, -0.026446, -0.119892, -0.512899, 1.232171, -0.344044, -1.130769, 0.886468, 0.930687, 0.273673, -0.591044, 2.895325, 0.788515, -0.386483, 0.577774, -0.169166, -0.471177, -0.991231, -0.885463, 1.090140, -0.982257, 1.352726, -1.693375, 0.362623, -0.492076, 0.946487, -0.130451, 0.639254, -0.707612, -1.138114, -0.390362, -0.249415, -1.171884, 0.153889, -0.361292, -0.916888, 0.419279, 0.335560, -0.396742, -2.169792, -1.046930, -0.499992, 0.672447, 0.119241, -0.543357, 0.330962, -0.134297, -0.381561, 0.310227, -0.392893, -1.720807, -0.234639, 0.556892, 0.546144, -1.113599, -0.685624, -0.800096, -0.381167, 0.804749, 1.173142, 0.684220, 1.722527, -0.347309, 0.079430, -2.097420, 1.220698, 1.919348, -1.220601, -0.500909, 1.096617, 1.079036, -1.391160, -3.083988, 1.168284, -0.991734, -0.220750, 0.656736, 0.184796, 0.416914, 0.811207, -0.846886, -0.622048, 1.193362, -1.342224, -1.473104, 0.832949, -0.040353, 1.221314, 0.208736, 0.874326, 0.151801, 0.162985, -0.670745, 0.626361, -0.967524, -0.220985, -0.146030, 0.177744, -0.870385, 0.517654, 0.129671, 0.598079, -0.062657, -0.285816, -1.259093, 0.876722, 0.925887, 0.597017, -1.648818, -0.489811, -2.439874, 0.121074, -0.407178, 0.546370, 0.973699, 0.015731, 0.337310, -0.903763, -0.286117, -0.614001, 0.968098, 0.876372, -0.036632, -1.747042, -1.282208, 1.261094, -0.988761, -1.116189, 1.575006, 1.010292, 0.290900, -0.292176, -0.253057, 0.224972, -0.337883, 0.005757, 1.137743, 1.109346, -0.451816, 0.757448, 1.482964, -1.638232, -1.277956, 1.493354, -0.592169, -0.277191, 0.076587, -0.035848, 0.677240, 1.012707, 0.405492, 0.605020, 0.225234, 2.521533, 0.947664, 1.061697, -0.384343, -0.972024, 0.131999, 2.022173, 1.059384, -0.488363, -1.617576, -0.014261, -0.732568, -1.028268, -2.290382, 1.329463, -0.169677, 0.019459, -1.401621, -0.581824, 0.455100, 0.868947, 0.090089, 1.376154, -1.042156, 0.933030, 1.422728, -0.802212, -0.747890, -0.804913, -0.264717, 1.004431, -0.111982, -0.044602, 0.304564, 0.254894, -1.860408, -0.486249, 1.028236, 0.340723, 3.047611, -0.684780, 1.342468, -2.472524, 0.451482, 0.425573, -2.275865, 1.497084, -1.298511, -1.709691, 0.679781, 1.229960, -0.433712, 1.877490, 0.793857, 1.954033, -0.698140, 1.568206, -0.022005, 0.076450, -1.149271, -1.821467, -0.220102, -0.201767, 0.044970, 0.764303, -0.069851, 1.106191, -0.379200, 1.449744, 1.660439, -0.482123, -0.304538, 0.037902, -0.210253, -0.050149, 1.594593, 0.492205, -0.288568, 0.041845, 0.983835, -0.916269, 0.455563, -0.566204, 0.950589, 0.646441, 0.548964, 0.407556, 0.307062, -1.227505, -0.709472, -0.149893, 0.510432, 0.413103, 1.173523, -0.660993, -1.056819, -0.102123, 1.012297, 0.141917, 1.009825, -1.134005, -0.461669, 1.171521, -1.318070, 1.692350, 0.475427, -0.820688, -0.880813, -0.142301, -0.844139, -0.841167, 0.159084, 0.141464, -1.362352, -0.671180, 0.100479, 1.517085, 0.524847, 0.175662, 0.275842, -0.905782, -0.324609, 0.284645, 0.832123, 0.666395, 0.222120, -1.141387, 0.727903, 0.045130, 0.488142, -0.212239, 0.487966, -0.754320, -0.260107, 0.382926, 1.616069, -0.716543, 1.260595, -0.041568, -0.814031, -0.165971, 0.084740, 0.205446, 0.050175, -1.261618, -0.353256, -0.718868, 0.661163, 0.272589, -0.882800, -0.191929, -0.067958, 0.597570, 0.346665, 0.957152, -0.300808, 0.858213, -0.745969, 0.633791, -1.832026, 0.538740, 1.538278, 0.948613, -1.397874, 1.267650, 0.231879, 1.215656, -1.784792, 2.027219, -1.100480, -0.341697, -0.476907, 0.469314, -0.454101, -1.391549, -0.914652, 0.136423, -0.043894, 0.105271, 0.787583, -2.736787, 0.876073, 1.825613, -0.971365, 0.527591, -0.026089, 1.205358, 0.936230, 1.045423, 1.694508, 1.129753, 0.313584, 1.499306, -0.265604, -1.571710, 0.134713, 0.814008, 0.198352, -0.366126, -0.700297, 1.084885, -0.071790, -1.068945, 1.576784, 0.734362, -0.711401, -0.228013, -2.928062, 0.468969, -1.264188, -0.225184, -0.377279, 0.914456, -1.237966, -0.567818, -0.555914, -0.631102, -1.157279, -0.213071, 0.450072, 1.346997, -0.033324, 0.789134, -1.662441, 1.276019, -0.894285, 0.407313, 0.887254, -0.779422, 2.004203, 1.028558, -0.620035, 0.225015, -1.677583, -0.095121, -1.175099, -0.573074, -0.304635, -0.731464, 2.122812, 0.874244, -1.087295, -0.942071, -1.083327, -1.127135, -0.754511, -1.284704, -1.981655, -0.866103, -0.199541, 1.605151, -0.166845, -1.096004, -1.930730, 0.412878, -0.390717, -1.401817, -1.251059, -1.566991, -1.096548, 0.646112, 0.607761, -1.935379, -1.165243, 1.585131, 0.257150, 1.808403, 0.086640, -0.048395, -0.842602, -0.301244, -0.620573, 0.587174, 0.172419, 0.208644, -1.612760, -2.095382, 1.522686, 0.599714, -0.708396, 0.632872, 0.961131, -1.175685, -1.261553, 3.415161, 0.169983, -0.104753, 0.319112, 1.410486, 0.145205, 0.071399, -1.056122, -1.924997, -0.167837, -1.162837, 1.216714, -0.063863, 0.699949, 0.277748, 0.672244, 0.721502, 1.372695, -0.507591, 0.487367, -0.867242, 0.545261, 0.871342, 0.077829, 1.814803, -0.863385, 0.183913, -0.562954, 1.561878, 0.584509, -0.030514, -0.712794, 0.978965, -0.021822, 0.043779, 1.620364, -0.704684, -0.827396, 0.289949, -0.971657, -0.140514, 0.195789, 0.648104, 0.179484, -1.001529, 1.924112, -1.602037, -0.928144, 0.420025, -0.917936, 0.803733, -1.142172, -0.188048, -1.184683, 0.275593, -1.316129, -0.118010, -1.129870, -0.725636, 1.796310, -0.057981, 1.484004, 0.114383, 0.114117, 0.603914, 0.714446, 1.877501, -1.353178, 0.202151, -0.221773, -0.254065, -0.958124, 0.129955, 0.219788, 1.715067, 0.920766, -0.131310, -1.248116, 1.671395, 0.022640, 1.429746, 0.303731, -1.720618, 0.240166, 1.259839, -0.921569, -0.165145, 0.759344, 0.989586, 0.647752, 0.107819, 0.993330, 0.457475, 0.005494, -1.594286, 1.148626, 1.149115, 0.279188, 0.653253, 1.705159, 0.305919, -0.402713, 0.349680, -0.539183, 1.066644, -0.071285, -0.316347, -0.577238, 1.381330, -0.260807, -1.498562, -0.122145, -0.563380, 0.653984, -0.801267, 0.158307, -1.941762, -0.751918, -0.389394, 0.254528, 1.301172, -0.625870, -1.028864, -0.634810, -1.930789, -0.331867, -0.047626, 0.655002, 2.108449, -0.776421, 1.649689, 0.198283, -1.421047, 2.327541, -0.629022, -0.279321, 0.415714, -1.249274, 1.122512, 2.083090, -0.393452, 2.563719, 0.479450, 0.145998, -2.357371, 0.288567, 0.840443, -2.047362, -0.461986, 0.878108, -0.226359, -0.222260, -2.572335, 0.736007, 2.017128, -0.687887, 0.938935, -0.859391, -0.982199, 1.287959, 0.062654, 0.492705, 0.275411, -0.150736, -1.892570, -0.029135, -0.043017, 0.894850, -0.877438, 0.351613, 0.628031, 1.094157, 1.084340, -0.770707, -0.731155, -0.278358, -0.172389, -1.146052, 0.238804, -0.040969, 0.718151, 2.043048, -1.311332, -0.624905, 0.541602, -0.586132, 0.052475, 0.893489, -0.804338, -0.387510, -0.573959, 0.315601, 0.773308, -0.885552, 0.293446, -0.242503, -0.928720, -0.503570, 1.100616, -1.032455, -1.628769, -0.042108, -0.019853, -0.738972, 1.366961, 0.563828, 2.640649, 0.596482, -1.137360, 0.175252, -0.620212, -0.723550, 0.990794, 0.247558, -0.301077, 0.123412, -0.056271, 1.653553, -0.858767, -0.307647, 0.265298, -0.185962, 1.363818, -0.879795, -1.478590, -0.074724, 0.360432, 0.065027, -1.610073, 1.111246, -0.347380, 0.204331, 1.221726, -0.312249, -0.874413, 0.803924, 0.064427, 1.105186, -0.748914, -0.746336, 0.929088, -0.905738, 1.343876, -0.001172, 0.136742, 1.934662, 3.150151, -0.798899, 1.362113, 1.041329, 0.455618, 0.315998, -0.696032, 0.192649, -1.044719, 0.255112, 1.092784, -0.944510, 0.159147, -0.273536, 0.712169, 0.058739, -0.919032, -1.069123, 0.013313, 0.900948, -1.179680, 1.123940, 0.220330, 1.129012, 0.701180, -0.015543, 1.395214, 0.369544, 0.642706, -1.249181, 0.212995, 1.179969, 0.054417, -1.589687, 0.399382, -1.726101, 0.472572, 1.800372, -1.357050, -0.079374, 0.799958, -1.312552, -0.513878, 0.233168, 1.161842, -1.094785, 0.369547, 1.714236, -0.263661, -1.507267, 0.353039, -0.578635, -0.277923, 0.021170, -0.362338, 0.948991, -1.368173, 1.647924, -1.472080, -0.016196, -0.177558, -0.394813, 1.957538, -0.055152, -0.145461, 1.200067, 1.367057, 1.641809, -0.644549, 0.641574, 0.285099, -0.664347, 1.010943, 0.465759, 1.716424, 0.565441, -1.163611, -0.212965, 0.205402, 1.288685, 0.530526, 0.671905, -0.105072, -1.135145, -0.064551, -1.107730, 1.725507, -1.657628, 0.856442, -2.391062, -0.957406, -0.404597, -1.017910, 1.564189, 0.684785, -1.019658, 0.290997, 1.904313, -0.993336, -1.105065, -1.515707, -0.548524, -1.175112, -0.298375, -1.049333, 1.031558, 0.427376, -0.823241, -0.563910, -1.435000, 0.515427, -0.049848, 0.991135, 1.500111, 0.186583, 0.553531, 0.581259, 1.233875, 0.802887, 0.572360, 1.375407, -1.157420, 0.125060, 0.461825, 0.596607, 1.534893, 1.574667, 0.271506, -1.427169, 0.046462, -0.176918, 0.061816, -0.506091, -0.678542, -1.339521, 1.100562, 1.344152, -0.960403, -0.278467, -1.062182, -1.314608, -0.011052, -1.245140, -0.276169, 2.021185, 0.563738, -0.644156, -1.064438, 0.624931, 0.584426, -0.563866, 0.340167, 1.762778, 1.371897, 1.419641, -0.907380, 0.035263, 0.097068, 0.939155, -1.656281, 0.127050, -0.703998, 0.493076, 0.685896, 0.665403, 0.595804, 2.588446, 0.155018, -0.284598, -0.522437, 0.766980, 1.138201, -1.230030, 0.110804, 0.060141, -1.352180, -0.899369, 0.682701, 0.305924, 0.096397, -0.445926, 2.199063, -0.672741, 0.040332, 0.146922, 0.401178, 0.858765, 0.697275, -1.060959, 0.126470, 1.377174, 1.253311, -1.261162, 1.564206, 2.271658, 0.988629, 1.844125, -0.992662, 1.350860, 0.164341, 1.293733, 1.618906, 0.630063, -0.816075, 0.280282, 0.051895, -0.640232, -1.150002, -3.080724, -0.498267, -0.470859, -1.315557, 0.340118, 1.018165, 0.140445, 1.129642, 0.498629, 0.541341, 0.644215, -1.644060, -0.098696, 0.828206, -1.067134, -1.844585, -0.608242, 0.611572, -0.388459, -1.041062, -1.412708, -0.134792, -0.122579, -0.757064, 1.132478, 0.215656, 0.062299, 0.876984, 1.311026, 1.174293, -0.069191, 0.178443, -0.324862, 0.029224, -1.075424, 1.200888, -2.571353, -1.002923, 0.230659, -1.446932, 1.008186, 0.533513, -0.221080, -2.187396, 1.087559, -0.015153, -0.092345, 0.994260, -0.225294, 0.505484, 1.089592, -0.491557, -0.284194, 0.708267, -0.169160, -1.178633, -1.179001, 0.271299, 0.929075, 0.639085, 1.777936, -0.830756, 1.033938, -0.061123, -0.992942, -0.598720, 0.944533, -1.956956, 0.543540, -1.295239, -0.562628, -0.802752, -0.072292, -1.135609, -0.037172, -0.272980, -0.324959, -1.248582, 0.649931, 0.406174, -1.289498, 1.782808, -1.622212, -0.382329, 0.236415, -0.331627, 0.403486, 1.419194, -2.588876, -0.527585, -1.034215, 0.211263, 0.372151, 0.812252, 0.104390, 0.624087, 1.089527, 0.432375, 0.739598, -0.970199, 0.594113, 1.093161, -0.288740, -0.160297, 1.437057, -0.148633, 2.567780, 1.011771, -0.828158, -1.201101, 0.989310, -1.629129, -1.165482, 1.246788, 0.935957, 0.027147, -0.675624, -0.177684, -1.424364, 0.624798, 0.155815, -0.380471, 1.182673, 0.928967, -0.958184, 0.911680, -0.014899, -1.926187, 0.682967, 0.605108, -1.637383, -0.374624, -0.500326, -0.181313, 0.422237, 1.006675, -1.134395, 1.219744, 0.655412, -1.245753, -1.365429, 0.387908, 1.050710, -1.071248, -0.380033, -0.587971, 1.110402, 1.065151, -1.454789, 0.582347, 0.662052, -3.565404, -1.196262, -1.132220, -0.227955, -1.347359, -0.734206, -0.138054, -0.082716, 0.568702, 1.673525, -0.124625, 0.473618, 0.713585, 1.139749, -0.045842, -0.827239, -0.577113, -1.674940, 0.223915, 0.076205, -1.002675, -2.001907, 0.420844, 1.228567, 1.433535, -0.180279, -0.159862, -1.109201, -0.349067, 1.075758, -1.765161, 0.061335, -0.002015, -0.519528, 0.266577, 3.075597, -0.982695, 0.626364, -1.309960, 0.933386, 0.260442, -1.596889, -0.332377, -0.856043, -1.780646, 0.949066, 1.224838, 1.253429, 0.581929, -0.976370, 0.691330, 0.942890, -1.146879, 0.973846, -1.096758, 0.571349, 0.353609, -0.553145, 0.220460, 0.184108, 0.217372, -0.264821, -0.595082, 0.080119, 1.349929, 0.027105, -0.027121, 0.054263, -0.982975, 1.446170, 2.331579, -0.759880, 0.853705, -0.432689, 0.476077, -0.995481, -0.768857, -0.180961, -0.228097, 1.353094, 1.048855, 0.979230, -0.047234, 0.850025, -0.503473, -2.035920, -0.313841, -0.547903, 2.376536, 0.734173, 0.339800, -0.380841, 0.264354, 1.214792, 0.935403, 0.270869, -0.477737, 0.250155, 1.353561, -0.521893, 0.990114, -2.849964, 0.108214, -1.129583, -2.077878, -1.281634, -1.994060, -0.167327, -1.245368, -0.722166, 0.044723, 0.276775, -1.719943, -0.173245, -0.295598, 1.996413, -0.646564, 0.345526, -2.659988, -0.253053, 1.581224, -0.810070, -1.273080, 0.115906, 0.304241, 1.065867, 0.925326, 0.310196, 1.217457, -1.108867, -0.425747, 0.040085, 1.439721, -0.502158, 0.486769, -1.126464, 1.885642, -1.185868, 1.393428, -0.405540, 0.761226, -0.377442, 1.831328, -0.374368, 0.934902, 1.483621, -0.407181, 0.332821, 2.564792, -0.588145, -0.616430, 0.441118, 0.762081, 1.253380, 0.526200, 0.001138, 1.033337, 0.457189, 1.456730, 1.011832, -1.610564, -1.335127, 0.538580, -2.329069, 0.334858, 0.306899, -1.379403, -0.874540, 0.895054, -0.173407, 2.950027, 0.971631, -1.451143, 0.453958, -1.714846, 0.168847, -0.295778, -0.621256, -0.682408, -0.349149, -0.207716, -0.506704, -0.909843, 1.437497, -1.492183, 1.342605, 0.979898, 0.123058, 1.993252, 0.736258, 0.167455, 0.346111, 1.255046, -0.426396, 0.415413, -0.925741, 1.198061, -1.563860, -2.812731, -0.427487, 0.808061, -0.399791, -0.636045, -0.166330, 0.506937, -0.195267, 0.802221, 2.710629, 0.351318, -1.696857, 0.102946, -0.332469, -2.173164, 0.574663, 0.286648, 0.332205, 2.505264, -1.407676, -0.248154, -0.074637, -0.372474, -0.168848, 0.551458, -0.436748, -0.785700, -0.615975, -1.463746, 0.618240, 1.172318, 0.719314, -0.706190, 0.619601, 1.672925, -1.006650, 0.291401, -0.403922, 0.185660, 0.628145, 0.289075, -0.540787, -1.473052, 0.662369, 1.942811, -0.976873, 0.791022, -0.468271, -0.722179, 0.887671, 0.462926, 0.168636, -0.111884, 2.179097, 0.006878, -2.150818, 0.979276, -1.293147, -0.074581, 0.711296, -0.122852, 0.877658, -0.044725, -0.557662, 0.917786, -0.568293, -0.333207, 0.618101, 0.920110, -0.218275, -0.960238, 0.446125, 1.195297, 0.892561, -0.543786, -0.476612, -0.332735, -2.045561, 0.525798, -0.488994, -0.511668, 0.766189, 0.320238, 1.192662, -1.408691, -0.199886, -0.453609, 0.476752, 0.387769, 0.349363, 0.512665, 1.072424, 0.202521, -3.094417, 0.978829, 1.320110, -1.099669, 3.760933, -0.868246, 0.970421, -2.039010, 0.128818, 0.614204, 2.883813, 1.009524, -1.260296, 0.323732, -0.288636, -0.039334, -0.331054, 0.466141, -0.019847, 0.315500, 0.946303, -0.701186, 0.208868, 1.905578, 1.813530, -0.406877, 0.756561, -1.263388, 0.526564, 0.905555, -0.134575, 1.493412, -1.782325, 0.455414, 0.169842, 1.062688, 0.125256, -0.137948, -1.418954, 0.563231, 1.467403, -1.734277, -2.149393, 1.765377, -1.069711, 0.250284, 1.955204, 0.056126, -0.578536, 0.495374, -0.581583, -0.634974, 0.237446, 0.718248, 1.093879, 0.026230, -1.528573, 0.203226, -0.559380, 0.896533, -0.830164, -1.336144, 0.985746, 0.755703, 0.336177, -0.652567, -1.192332, -0.262274, -0.816787, 0.801439, -0.620404, -0.129530, 0.975235, 0.592630, -0.184600, 0.575761, 0.726673, -0.565054, 1.453449, 1.685595, 0.032512, 0.389116, -0.248480, -0.622384, 0.729515, 0.628035, 1.294047, -0.715810, 0.566967, 1.540521, 0.390523, -0.589072, 0.273522, 0.746850, -0.958943, -1.404668, 1.155863, -0.061324, -0.094209, -1.279766, 0.620800, -0.373147, 0.749646, -0.374297, -1.341863, -0.732700, -2.753261, 1.004262, -0.388252, -0.961750, 1.525378, -0.700466, -1.034341, -1.490526, 0.761863, -1.286224, -0.509527, -1.837048, 0.730076, -2.229025, -0.965252, -0.992688, -0.624744, -1.930007, -0.703721, -0.157936, -0.878294, 1.383294, -0.851993, -0.486904, -0.819725, 1.408491, 1.992350, 0.330946, 0.065642, -1.090164, 0.312453, -0.671054, -1.732722, 0.386495, 0.360509, -2.479034, 0.738454, 1.864550, -2.404187, -0.840974, 0.016088, 1.276416, 0.224159, -0.558924, 2.318322, -0.500173, -0.007499, 1.157529, 0.408084, 0.558226, 0.391427, -0.894135, 0.374559, -0.246438, -0.794939, -1.658494, 0.198752, 0.150165, -0.733977, 1.360330, -0.422883, -0.825078, 1.249488, -0.503430, 2.928321, -0.970940, -0.238422, 1.105674, 0.268645, -0.757536, -2.832117, 1.159778, -0.680744, 0.545722, -0.618019, 0.426964, 0.659525, -0.364003, -0.557914, 0.128287, -0.885962, 0.746591, 0.220739, -1.686320, 1.409848, -1.198848, 0.414005, -1.289015, 0.039071, 1.442726, 0.119119, -2.721095, -0.255724, 1.155655, 0.450205, 0.959781, -0.548513, -0.159625, 1.268709, -0.402405, -0.584743, -1.953841, -0.358458, -0.063988, 0.321273, -0.633728, -0.635546, -0.645367, -1.162710, -1.873105, -1.761609, 0.400040, 1.024582, 0.535850, -1.133397, 0.185719, 0.049218, -0.851100, -0.349522, 1.882402, 0.508832, 0.378816, 1.768009, -0.615872, 0.188629, 0.418927, 1.611827, 0.846372, -0.649961, -0.576610, -0.109461, 1.213409, -0.444213, -0.402615, 0.002401, 0.017294, 2.214653, -1.525667, 0.533940, -3.034938, -0.460777, -0.608046, 0.830330, 0.175598, 0.913385, -0.988328, -0.213475, -0.911910, 0.298693, 3.005962, -0.212154, 0.444440, -0.473383, -1.745708, 0.960744, 1.191932, -0.420916, 0.621711, 1.021961, -1.601436, 0.918531, 0.139949, 1.481416, -0.061062, 0.053439, -0.519220, 0.871188, 0.513302, 0.266515, 0.853800, -0.881407, -0.290305, 0.743577, 0.601252, 0.549321, -0.445788, -0.355887, 1.400722, -0.672777, 1.057535, -1.233429, 1.094780, 0.965736, -0.310853, -1.678528, 0.619529, 0.793998, 1.398361, -1.662440, 0.856883, -0.448439, -0.494303, -0.231334, 0.405108, 1.856014, -1.669587, 0.095830, 0.240024, -0.081665, 0.703771, -1.326431, 1.203215, -0.540652, 0.586635, 0.405935, -0.129015, 1.709634, -0.594532, 1.196396, -0.810765, -0.898486, -0.071709, 0.274741, 0.522168, 1.036472, 0.283235, -2.342389, -0.718954, -0.724378, 1.057270, 0.040996, 1.079504, 0.155778, -0.543263, 0.488636, 0.835416, 1.129733, 0.045717, 0.769714, -0.689369, 1.411262, 0.053424, -0.320722, 3.737025, 0.334115, -0.546718, -0.401194, -0.093908, -0.627543, 0.441268, -1.078475, -0.099997, 0.791467, -0.549693, 1.726522, -1.363197, 1.009899, 0.470967, -1.025000, -0.039468, -0.063946, 0.809110, -0.131282, 1.050846, 0.236913, 1.290191, -0.414093, -0.196181, 0.161538, 0.000324, -0.512244, 1.178116, 0.559787, -1.255154, 0.012575, -0.182269, 0.481208, 1.452533, 1.996540, 0.237765, -1.373747, 0.694297, 1.338212, 0.056376, -0.643675, 0.089394, 0.658110, 0.801983, 0.654715, -1.295524, 0.649866, -0.185472, 0.883040, -1.665356, 1.524109, 0.993325, -1.131085, -1.507919, 0.027679, -0.431438, -1.304939, -0.597322, 0.875573, -1.776028, -0.806748, 0.365096, 1.099873, -1.329986, -0.409661, -0.611411, 0.584560, -0.425469, -0.192923, 1.074816, 0.410060, -0.075563, 0.451203, -0.304552, 0.856291, -2.022831, -1.491387, -0.794346, -0.054649, 0.162545, 1.042509, -2.013751, -0.948257, 0.661606, -0.650751, -0.457412, 1.092160, -0.289327, 1.670884, -0.861488, -0.591204, -0.187137, -1.193776, 1.215790, 1.147436, 1.071922, -1.774488, -0.675497, 0.020242, 1.699264, -0.011231, -0.333199, -1.276701, -0.412578, -0.221402, 0.494323, 0.297903, 1.705337, -0.953069, 0.622685, 0.502630, -1.629097, 1.255001, 0.994979, 0.401801, -0.034957, -1.494329, -0.275720, 0.354249, 0.694323, 0.841273, -2.125783, 2.278531, 0.315798, -0.107364, 2.079105, 1.692243, 0.612938, -0.893820, 0.543899, -0.892344, 0.675757, -1.231271, 2.586736, 0.082063, 0.256327, 0.137135, 0.696548, -3.044806, 0.485734, 0.511301, 0.835762, 0.972800, 0.772034, 0.160139, 0.321373, 0.923421, 0.472582, -0.154076, 0.207681, -0.660596, -0.222122, -0.435287, -1.143711, -1.292466, 0.259114, -1.448504, -1.483679, -0.457159, -1.510673, 1.513370, -1.326769, 0.093488, -0.485474, -0.224536, -0.119058, 1.135986, 0.571311, 1.076806, 0.064273, -1.800631, -0.070383, 1.340873, 0.022232, -1.405145, 1.304409, -0.175222, 0.700726, -0.313308, 0.301398, 0.025638, 0.412665, 0.110587, 0.451591, 0.923826, -0.219210, 0.211712, 2.477168, -0.085771, -0.427976, 2.043479, -1.397180, 0.010947, -1.855130, 1.131352, -1.571261, -0.176521, -2.018724, -0.402290, -1.580851, -0.310350, -0.410448, -0.332347, -0.899330, 2.239630}, - { 0.215526, 0.409687, 1.090577, 1.284390, -0.443895, -0.714152, 0.315767, 0.888568, 0.661879, -0.378118, 0.491394, 0.381146, -2.141651, 1.659848, 0.274731, -0.042401, 1.469519, -2.239749, -2.884779, 1.371669, -0.242489, 0.618739, -0.570531, 0.812054, 0.403573, -0.736863, -0.607307, 1.559896, -1.401298, -0.096459, -1.228971, 0.525430, 0.029999, 0.888707, 0.318898, -1.716522, -1.438573, 0.131450, -0.207859, -1.537542, 0.437631, -0.964826, 0.942356, -0.485371, 1.239270, -0.705258, -1.657876, 1.358001, -0.981108, 1.574241, -0.239172, 0.025372, -0.591218, 1.421114, 0.276982, -0.741328, -1.946845, -1.316428, 0.098014, -1.208354, 0.949621, 1.258478, -0.917418, 1.090733, -0.434793, 0.209628, 0.087473, 1.699378, 0.677657, 0.290364, 0.487393, 0.359777, 0.168883, 0.157982, 0.116802, 0.430311, -1.595249, -0.242194, 1.038691, -0.121876, 0.342756, -0.134744, -1.266627, 0.429234, 1.108338, 0.844087, -0.793448, -0.595734, 1.908631, 0.023103, 0.224546, -0.467459, 0.203309, -0.487532, 0.327334, -0.172252, -0.097251, 0.722738, 1.358439, -0.625426, 0.551813, -0.885152, -0.036480, -1.561506, 0.969890, 0.314954, 1.270357, -0.908786, 0.626644, -1.183423, 0.495238, 1.294053, 0.262642, 1.773470, 0.739000, 0.604913, 0.249998, -1.579724, 0.131188, -0.421640, -0.661127, 0.194651, -1.287361, -0.727889, 1.336216, 0.567445, -0.242576, -0.834003, -1.084175, 1.338661, -0.289822, -1.501823, -0.225768, 0.803003, 1.277666, -1.051206, 0.718759, 0.773232, -0.344757, -0.589868, 1.761656, -0.386543, -0.485531, 0.284223, 0.317253, 0.080206, 0.680562, -0.561424, -0.307939, 0.399227, -0.571094, -1.235802, -1.406009, -0.195667, 1.482581, 1.638587, 0.210167, 0.806809, 0.654165, 2.281445, 2.721549, -0.397153, 0.152589, -2.169064, 0.073077, 0.398147, -0.826443, -0.444460, 0.887338, 0.744228, 0.689237, 0.515575, -2.476143, -0.847941, 1.280272, 0.949733, -1.523935, -0.862421, -0.595863, 0.373389, 1.517710, -0.122849, 0.533561, 0.304920, 1.962725, -2.324195, -0.536958, -0.710560, 0.847652, -0.075265, 0.630369, -0.847557, -0.275667, 0.589812, -0.088120, 0.184348, 1.373408, -2.342404, 0.590128, 2.212539, -0.748013, 0.286825, -2.621174, -1.965343, 1.485601, -0.775098, -0.737873, 0.177286, 0.724211, -0.484656, 0.665422, 1.447445, -0.304960, 1.784384, 1.218602, 1.531587, 0.290660, 0.338470, -1.146192, 0.130562, 1.913726, 0.841451, -0.896783, -0.061932, 0.196068, 0.985695, -0.285203, -0.919384, 1.206259, -0.824310, -0.594661, 0.368886, 0.279368, -0.724930, 1.702239, -0.165275, 2.310662, -1.160809, -0.654894, -0.973199, -1.714792, 0.106092, 0.362688, -0.501025, -2.444887, 1.329903, 0.425645, 0.547992, -0.594307, 0.619151, 1.220065, 1.261557, 0.529601, 2.124057, -0.890005, -0.578615, 0.843695, -1.269988, 0.911076, -2.132953, 0.944229, 1.238164, 0.877048, -1.880674, -0.302004, 0.237351, 1.398038, 0.648374, -2.184474, -0.817304, 1.594838, -0.492204, 0.963722, -1.084733, -0.491696, -0.541098, -0.539125, -0.840530, 1.209343, 0.024555, 0.377189, -0.804931, 0.750597, -0.505189, 0.838862, -0.732263, 1.575088, -1.572310, 0.303244, 0.875091, -0.013350, 0.384593, -0.192259, 0.027669, 0.324050, 0.141739, 0.773219, -0.507072, -1.411694, 0.716698, -0.605801, -1.219265, -1.373423, 0.696819, -0.549891, -1.106304, -0.468183, 0.829981, 1.125888, 0.514679, 0.389891, -1.035506, 1.626298, 0.479780, 1.553569, -0.139646, -0.039229, -1.672482, 0.332797, 0.658391, 0.248132, -1.151248, 0.183991, 0.592306, 0.118701, -0.731253, -0.957688, -0.444323, 0.087313, 1.254458, 0.024000, 0.311122, -0.023393, 2.856555, -0.444776, 0.351659, -0.126721, -0.370785, 0.172592, -1.251775, 0.019289, 1.744605, 1.730600, 0.573293, 0.526800, -0.545828, 1.191950, -0.450589, -0.464514, 0.787549, 1.442910, 0.633606, 0.266706, -0.729220, 1.059399, -1.269086, -1.980263, -1.133950, 0.766747, 0.808979, 0.507097, -0.321702, 2.328300, -1.054596, -0.840321, 0.446925, 1.644660, 1.123069, 0.084649, -0.628663, 0.251455, 0.321945, -1.282532, 0.472390, -0.221070, -0.925060, 0.517071, -1.907875, 0.977885, 0.046137, 0.198761, 0.655464, 1.650469, 0.526895, 0.333946, -1.207398, -0.354559, 2.111474, -1.124213, 0.569844, 0.791649, -0.349399, 0.013586, 0.423925, -0.285861, -0.776608, 0.392645, -1.757199, -2.091754, -1.639829, -0.687267, -1.510223, 0.562150, -0.586711, -0.255652, -1.218108, 0.820028, -0.149810, -0.264409, -1.614063, -0.788424, 0.319706, 2.455064, 1.815266, 1.791533, 0.056187, 0.504798, 0.696144, -0.760468, -0.580104, 0.379410, 0.008530, 0.024751, -1.494168, -0.630858, 0.184618, 1.128394, 0.975188, 0.484422, 1.461507, 0.580571, 0.383921, -0.208277, 1.209061, 1.441022, 0.824912, -1.184958, -1.296562, 1.095398, -0.084726, 1.096537, 0.952094, -0.967616, -0.210287, -1.315215, -0.178997, -0.717847, -0.414805, 0.382811, 0.643747, 0.770611, 0.447813, -1.089983, -0.817322, -0.265966, 1.426679, -0.320748, 0.124349, -0.274980, -0.327261, 0.168765, 1.875293, 0.108007, 2.061271, 0.367762, 0.048799, 0.280124, -0.985575, -0.391178, -1.255338, -0.245916, 1.342777, -0.006230, 0.748332, -0.630073, 0.391469, -1.078841, -0.750995, 0.017830, -0.424541, 2.703267, -0.801087, -0.007799, -0.928106, -0.764780, -1.052843, -1.950055, -0.977156, 0.597246, -1.323303, 2.779191, -0.043662, 0.741630, -2.045099, 1.160139, -0.043264, -0.232956, 0.460806, 1.174063, 1.328879, -0.746572, 1.134981, -0.242134, 0.046758, -0.292247, -1.137849, -1.321586, -1.608515, 0.344015, 1.348575, 0.528033, -0.734853, -0.152848, 0.505122, 0.645917, -1.228281, -2.010693, 0.610686, -1.266320, 0.201763, -0.250365, 0.094915, -0.186679, 1.469444, -1.496231, -0.522801, 2.402463, 0.567516, -0.009150, -0.523192, -0.444408, -0.210184, 0.608853, -0.243902, -1.027415, 2.256664, 0.225927, -0.409782, 1.603983, 0.639988, -1.444623, 1.215515, 0.370909, -2.659801, -0.133965, 1.211606, -0.552721, -2.004376, -0.534112, 0.948225, 1.533206, -0.109470, 1.053581, -1.558025, 1.001784, 1.315789, -1.869034, -0.464723, -0.514585, -1.475670, -0.390842, -0.800514, 1.035593, -0.453677, -0.693146, -0.300582, 0.286678, -1.212606, 0.506452, -1.257111, -0.257762, -1.685929, -0.605514, -0.165717, 2.056473, 0.690541, 1.117693, -0.116535, 1.341526, 0.081507, -0.847239, 0.870075, 0.125081, 2.057704, -0.471227, -1.446838, -0.323346, 1.169628, -1.865229, 0.109203, 0.897338, 1.013952, -0.790778, -1.430827, -0.089008, 1.125302, 0.885649, -0.622544, -1.191232, 1.171044, -0.293059, -0.953648, -1.724933, 1.667446, 0.117274, 0.580746, -1.088211, 0.400539, 1.989319, -1.089085, -1.721010, -0.454090, -2.126140, 1.762848, -0.044468, 0.730620, -1.003890, -0.133218, 0.923187, -0.275271, 0.955659, 0.762678, -0.617991, -0.502057, -0.330033, 1.109693, -0.405314, 0.941613, 0.297915, -0.316818, -0.334987, -2.128098, 0.760758, -2.404556, 0.694712, 1.006909, -0.806457, 0.429200, -0.135113, -0.428558, -2.391591, 0.520649, -0.134281, -0.552818, -0.590171, 0.959968, -0.347834, -1.641266, -0.315221, 0.238038, 0.642173, 1.702436, 0.503674, -1.460577, 2.077308, -1.210378, 0.648018, 0.219434, -0.387740, -0.045143, -0.255279, 2.180543, 0.392957, 0.606058, 0.042986, -0.133739, 0.079767, 0.728225, -0.369480, 1.990511, 1.951053, -1.796045, -0.437872, 0.220161, 2.258023, 1.164245, -0.964507, 0.327755, 0.586533, -0.321083, -1.278273, 0.038869, 0.979405, -0.196651, 1.142382, 1.647521, -0.512052, 0.032099, -1.014324, 1.763835, 0.554408, 0.773176, -0.877646, -0.202161, 0.168884, -0.805045, 1.684020, -0.113639, 0.968029, 0.193183, 1.008574, -0.881452, 0.533242, -1.502287, 0.874110, -2.268507, 0.039742, 0.178377, 1.938643, -0.483449, -0.424959, 0.262304, -0.063234, 1.110842, 0.909550, -1.274071, -0.384946, -1.642151, -0.370299, -0.395374, -0.432394, 0.026096, -0.297272, -0.492284, -1.172588, 0.242709, -0.671642, -2.635369, 0.065189, -0.924473, -0.461338, 1.017893, -0.288359, -0.381257, 1.757639, -1.244236, -1.955964, -1.094910, -0.863250, 2.525353, -0.847405, 0.157933, -2.216475, -0.229354, -1.765684, -0.286490, 1.390844, 0.448352, -0.123708, 1.667295, -0.224747, -0.290958, 0.127682, -0.431860, -1.520321, -0.855510, -0.098453, 0.707583, -1.565375, -0.592337, 0.717365, 1.006152, -0.285100, 1.055439, -1.208744, 1.158231, -0.102353, 1.110858, -1.680240, -1.241536, -0.090199, -0.535791, -1.232482, 0.333296, 0.792687, 0.258559, -0.808445, 0.017835, -0.458580, -0.993009, 0.016877, -1.052566, -0.180243, -0.274847, 0.249871, 0.854491, -0.542793, 1.281983, 0.060651, 0.882659, -0.972052, 0.368850, -1.472626, -1.398788, 0.569506, 0.135378, 0.661532, 0.960308, 0.346836, 1.322929, -0.769475, -0.946452, -0.137453, -0.255544, 0.345758, 0.054648, 0.768222, 1.321258, 2.193244, 0.157683, -2.097032, -0.308244, 0.994474, -1.465687, -0.816525, -0.059932, -0.910100, -0.924102, -2.501485, -2.023931, -0.089502, 0.118357, -0.642399, -0.459127, -1.448807, -1.331231, -2.319405, -0.672232, 1.675503, 0.414436, 0.475847, 0.342908, 1.383391, 1.022649, 0.259385, -1.300424, 0.032352, -0.361868, -0.401489, -0.561796, 0.891509, -1.144855, -0.203157, -1.069639, -0.026518, -0.032882, 0.202650, -0.021077, 0.332323, 0.202566, -0.996003, -0.143474, -1.708193, -1.178839, -0.677753, 0.770777, -2.808321, -1.723194, -1.114263, 0.935693, -0.756451, 1.096376, 0.115079, -1.848553, -0.311637, 1.057739, 0.285823, -1.033255, 2.255218, 1.166718, -1.921084, 0.445740, -0.969527, -0.283456, -0.519922, -0.768153, 1.191599, -0.608625, -1.323167, 1.197788, -1.339941, -1.580676, 0.389420, -0.081545, -0.163071, 0.856741, -1.025109, 0.034694, -0.623315, -0.426157, -1.430034, 0.517623, 0.069557, -0.803295, 1.232607, 0.937826, -1.197361, 1.051320, 0.111778, -0.001501, -0.599958, 1.131125, -0.683545, 0.582016, 0.372488, 0.064898, 0.448231, -1.881346, -1.385846, 0.358479, 1.215059, 0.423351, -0.412440, 1.577109, -1.023484, -0.658138, 1.277607, -0.218418, 0.806153, -0.437055, -1.515893, -0.800413, 1.738311, -1.632171, 1.488078, -1.186968, 0.798200, -1.494786, -0.826610, 0.432156, -1.376811, -0.194391, -1.111517, -0.997802, -1.341224, 1.130931, -1.788718, -0.361256, -0.516990, -0.858377, -0.382740, -0.352580, 1.519040, -2.463658, -0.688308, -0.500208, -0.705716, 0.526880, -0.007087, 1.155106, 1.236264, 0.501416, -1.005087, -0.556965, -3.246709, -1.401517, -0.091952, -0.742592, -0.322930, 0.353769, 1.162223, 0.061415, 0.614157, -1.296113, 0.641029, -2.000750, 0.457017, -0.621151, -0.373225, -0.300704, 1.588292, -0.164885, 1.343357, 0.823190, -1.586133, -1.329151, -1.388770, 1.012856, 0.048738, -2.252189, 1.230156, 0.245486, -1.433923, -0.781839, 0.525623, -0.216360, 1.378616, 1.474120, 0.324505, 0.432831, -0.478019, 0.361902, -0.879731, -0.702594, 0.918976, 0.264621, 1.413158, -0.081483, -1.573399, 1.158298, -0.551471, 1.253169, -0.185677, -0.107998, 0.770443, -0.376316, -0.838529, 0.433162, 0.026594, 2.466477, -0.003319, 0.571013, 0.252861, -1.138378, -0.053517, 1.686115, -0.398142, -0.788622, -2.212894, -2.485452, 0.163717, 1.372369, -0.156663, -0.817710, 0.134928, -0.288723, 1.579318, 0.862981, 1.475901, 0.642998, 1.942027, -0.247006, -0.209726, -0.565866, 0.746501, -2.180773, 1.830703, -0.735790, -0.687317, 0.151874, -0.892058, -0.625031, -0.073330, 0.457156, 0.604909, -0.573194, 0.296077, -0.817185, 0.086462, -0.067895, -0.039239, 2.036558, 0.659676, -1.750774, -1.657719, -0.342077, 0.828040, -0.218217, 0.341273, 0.768648, 1.638704, 0.480082, 0.163326, -1.009666, 1.127986, 1.652022, -0.926505, -0.415893, -0.502100, -1.487358, 0.943948, -0.582394, -0.006399, 0.020851, -1.035298, -0.025250, -0.273905, -0.808316, -0.896657, -0.594424, 0.132331, 1.214450, 0.955524, -0.028458, 0.700578, 1.578847, -0.248341, -0.043361, -0.744196, 0.491708, 0.451855, 0.486870, -0.183737, 0.219905, -1.143850, 1.566988, -0.071987, -0.700852, 0.477891, -0.071482, -0.636200, -0.393090, -0.694712, 0.521038, -0.210377, -0.820508, 0.749455, 0.400095, -1.316975, 0.195551, -0.060133, 1.725454, -0.509454, -0.189660, 0.015514, 0.513824, -1.241690, -0.139606, -0.389594, -0.521856, 0.659106, 0.091151, -0.063307, -0.926116, -1.067691, 1.094069, -1.472976, -1.206515, -0.652420, -0.645442, 0.882400, 0.509408, -0.268381, -2.229294, -0.013026, -0.250545, 0.587841, 0.598210, 1.030295, 0.203128, -0.074070, 0.148443, -0.255762, -1.353261, 0.259660, 0.109063, -0.834556, -1.678485, -0.081257, 1.847502, -0.793448, -0.671264, -0.609430, -0.225229, 1.194668, -2.142647, -0.301831, 0.144198, -0.286981, -0.227017, 1.146484, 0.969552, 0.444497, -1.499727, 1.202141, 1.892412, 1.057104, 0.069021, 1.010058, -0.056464, 2.582227, 1.587931, 1.066392, 0.075603, -0.926556, -0.503028, 0.613689, 0.759321, 0.040764, 0.152003, 0.645159, -0.580707, -0.392102, -0.124450, 0.785647, 0.361350, 0.147895, 1.394039, 0.194579, 0.307239, 0.383617, 0.758921, 0.414603, 0.165687, -0.584064, 1.170731, 0.405003, 0.685907, 2.390799, -0.868503, -0.098989, -1.712308, 1.194371, -0.048315, 0.614916, -0.489928, 0.346802, 1.451657, 1.975864, -0.800130, 2.121416, -0.307172, -0.824498, 1.686137, 0.549244, 0.379609, 0.442180, 0.373309, 1.043499, -0.021378, 1.379571, 0.000267, -0.451712, -0.351838, -0.866344, 0.819697, 0.122006, 1.096637, 2.056359, -0.362726, 0.191419, 0.870262, -1.457161, 0.248544, 0.855738, -0.012741, 1.478993, 0.184996, 1.234769, 2.167047, -0.939672, 0.602766, 0.934562, -0.014570, -1.999102, -3.062107, 0.836055, 0.041882, -0.437758, -0.484503, 0.994074, 0.697129, -0.443108, 0.162213, 0.325198, 0.124355, -0.460723, 0.339314, 0.134089, 1.551752, -0.095550, -0.063724, -0.015791, -0.276509, 0.052369, 2.603693, 0.670819, 0.655814, 0.082338, 1.764855, -1.679282, 2.586894, 0.418570, 1.323765, -0.046842, -1.016706, -1.532464, -3.083884, 0.880264, 0.985276, -1.691294, 0.490612, -0.864165, -0.677113, -0.030039, 1.048128, 0.669624, -0.913215, -0.499514, 0.615481, -2.045200, -0.076723, 0.655092, 0.669336, -0.884637, -1.511737, 2.484194, 0.248792, 1.828093, -1.529002, 0.489484, 0.176503, 0.282867, -0.353277, -1.530048, -0.754777, 0.889164, 1.411853, 0.733316, -0.997560, -0.118776, -1.831560, -0.293512, 0.567134, -1.239579, 0.092686, -0.383221, 1.106445, -2.029706, 1.227761, -0.065230, -0.070819, 0.063700, -1.545889, -0.609804, 0.103543, -0.361434, -1.413659, -0.792959, 0.693514, 0.204043, -1.018965, 0.333156, -0.692810, -0.177673, 1.074405, 0.931773, 0.178869, -0.026446, 0.292933, 0.125466, -0.383934, -2.292668, 1.262278, 0.587652, 1.168831, -0.529552, 0.420525, -0.244645, -1.461413, -0.232143, -0.854636, 0.691233, 1.143959, -0.345770, -0.760621, 0.896223, 1.021508, 2.118889, 0.235334, 0.752007, 1.085539, 1.505048, -0.239947, -0.429589, 1.805496, -0.850099, 0.039863, 0.277523, 0.308294, 0.507762, -0.124795, 0.228292, 0.589119, -0.626600, 0.302390, 1.000681, -1.110624, 0.011245, 0.555126, -0.124923, -1.315564, -0.803948, 0.754076, 1.209961, -0.748276, -1.142321, -1.109545, 1.134664, -0.691139, -0.821681, 0.369507, 0.335223, 0.920039, -1.395745, -0.081197, -0.135818, 0.670715, -0.300580, -0.293027, -0.335465, 0.772664, 0.520559, 0.442321, -0.467094, -2.086877, -1.358403, -0.736647, -0.826193, -0.599340, -0.709136, -0.131113, -0.926805, 0.235563, -0.101005, 2.132939, -1.129712, 0.961447, -0.070056, 0.975534, -0.728768, -0.292780, 0.193257, -0.754030, -0.965858, -1.042966, -0.358241, 0.471086, -1.460669, 0.659803, 2.253143, 0.136926, -0.747529, 1.854699, 0.634318, 0.783782, -0.223771, -0.983902, -0.280566, 2.059870, -0.477349, -0.925735, 1.333361, 1.089206, 0.010783, -1.390652, -0.381102, 0.647599, -1.066928, 0.034040, -0.736709, -0.951869, 0.626464, -1.797066, 1.115187, 0.249182, 0.081012, 0.169224, 1.151347, 2.275723, -1.046090, -0.341469, 0.348073, 1.847364, 0.050262, -0.833690, -0.127317, -0.057094, -0.859533, -0.121262, -1.323238, -1.576253, -0.441365, 0.459771, -0.655628, 1.179278, -0.022809, 0.184701, -2.242171, -0.907094, 0.489172, 0.067545, -0.780055, -2.549345, 0.184071, -0.491682, 0.223546, -0.783855, 0.201982, -0.637991, -0.876240, 1.252950, 0.871007, 0.957187, -1.346993, -0.005290, 0.312164, -1.137911, 0.163860, 0.103693, -1.206473, 0.009878, -0.560544, -0.699462, -0.431874, 2.119383, 1.884245, -0.310283, -0.239128, 0.773550, -0.809804, 0.022359, -0.339350, -0.951088, 0.013271, 0.843047, -0.568087, 1.865957, 0.420166, -1.683779, 0.119009, -1.618859, -0.010193, 0.718180, -0.323054, 1.349273, -1.210256, -1.202170, 1.161680, -0.070676, -0.455043, -0.452460, -0.077578, -2.125447, -1.221543, 1.133323, 1.134496, 1.269879, -0.660881, -0.708263, -2.589172, 0.003032, 1.374543, -0.291193, -0.763558, 2.049241, -1.635722, 0.826477, -1.069943, -0.385124, -0.390756, 0.021900, -0.150958, -0.081160, -0.250842, -0.232988, -0.769619, -1.206194, 0.849727, -1.970435, 0.130768, -0.255192, 1.358436, 0.241943, -1.576258, 0.766893, 0.069999, 0.111474, 0.972710, -0.098071, 0.070465, 2.133102, 1.403134, 0.416877, -1.710649, 0.693160, -1.163625, 0.838613, 0.289775, 0.417074, -1.815509, -0.825076, 0.150734, 0.899996, -0.032763, 0.698843, -1.519382, 1.281217, 0.477165, 0.407152, -0.779808, -0.087592, 0.376436, -0.467222, -0.168517, -2.635919, -0.443967, 1.371368, -1.887900, 1.305160, 0.873235, 0.562571, -0.092908, -0.487836, 0.110391, -0.569558, -0.002502, 0.526793, -0.248105, 1.168055, -0.698943, 0.513245, 0.728842, 0.937866, -0.917170, -1.378272, 0.036771, 1.026837, 1.016515, -0.501218, -0.383180, -0.477574, 0.668696, -0.017425, -0.826452, 0.152596, -0.647734, 0.356314, 1.151152, 0.346476, -0.929904, -0.770230, 0.171785, 0.825979, 0.835939, -0.077715, -2.662733, 1.606701, -1.052464, 0.925932, -0.317228, 0.371747, -0.668617, -0.889411, -1.118494, 1.404940, 0.321819, -0.989746, 0.355479, -0.969718, -0.282688, 0.354737, 0.996871, -1.775097, 1.196968, 0.175402, -0.196606, 0.720390, -0.564264, -0.199813, 0.830804, -0.718857, -1.115281, -0.367434, -0.590242, -0.884453, -1.167186, 0.362664, 1.193130, -0.134935, 0.040016, 0.471594, -0.029202, -0.079935, 0.470370, 0.773220, -0.944670, 0.011659, -1.037966, -0.355533, -0.245826, -1.105482, -0.393431, -0.685624, -0.447764, 1.314059, 0.583516, 0.863686, 2.407028, 1.963878, 1.249560, -0.603713, 0.136930, -1.960294, 0.764152, -1.764827, 1.600102, 1.402238, -1.930404, -2.069935, -0.323020, 1.434861, -0.024505, 1.639371, -0.869789, 1.477323, 1.135863, -0.275957, -1.427724, -0.474597, -0.697166, 0.031444, -0.182610, 0.580252, 1.378908, -0.592142, -1.013766, 0.708260, -0.411173, -1.669188, 0.214352, 0.530379, 0.384734, -0.467388, 0.152544, -1.126870, 0.751713, 0.825835, -0.856399, -0.349525, 0.596411, 0.209471, 1.048846, 2.011240, 0.869305, 1.688344, 0.481364, -0.674637, 1.655523, -0.504955, 1.375414, -0.899070, 0.921803, 0.668855, -0.575212, -1.217952, -0.684426, 0.776293, 0.655341, -0.178579, 0.254072, 0.642273, 1.294120, -0.456202, -2.401520, -0.570037, -0.284565, 0.925649, -0.328716, -0.477087, 0.555397, -0.898981, -1.219818, 1.142041, -0.992577, 0.963866, 0.745103, -0.917099, -0.803860, -0.425954, -1.770569, 0.821092, 0.023804, 1.394199, 0.062054, 0.293096, -1.161723, 0.553333, -0.382304, 0.651286, 0.051147, -0.910003, 0.716218, 0.986469, -0.406245, 1.451947, 0.642835, 1.089073, 0.034317, -1.462316, -1.143331, -0.237661, -0.208912, 0.305806, 1.452965, -0.879447, 0.729194, -0.606299, -0.608398, -0.595802, -0.578015, -0.962638, -0.155991, 0.036153, 0.041575, -1.836295, -1.002044, -0.932044, -1.943924, 1.097203, 0.500498, 0.260159, 0.262574, 0.054241, 1.267477, 0.629421, 0.157334, -0.170415, -0.711940, 1.492200, 1.699990, 0.100161, 0.092665, 0.045178, -0.167723, -2.228888, 0.690801, 3.178783, -0.471750, 0.979191, -0.091581, 0.878568, 1.013884, -1.499635, 0.190814, -0.523611, 0.574730, -0.228934, -0.612265, -1.111084, 1.006232, 0.168245, -1.586754, -0.198956, 1.359465, -1.532432, -0.020501, 0.444119, -1.031989, 1.943666, 0.915422, -0.528047, -1.319455, 1.476458, -0.114648, 0.260942, -0.290624, -1.365153, 1.220013, 1.739173, -0.884591, -0.311935, 0.895139, 2.124000, 0.809081, 0.122250, 0.900173, -1.107341, -0.382639, -0.868294, 0.267172, -0.193652, 1.249253, 1.334527, 1.212083, 1.424260, 0.238047, -1.102748, -1.130090, 1.109188, 1.292264, 1.105654, -0.646433, 0.206001, 0.448993, -0.848331, 0.227715, 0.255743, -0.994256, -0.586690, 0.332206, -0.060952, 0.237096, 0.153788, 0.039904, 0.013875, 0.935502, 0.797832, -1.658050, -0.004258, -0.599840, 0.907895, 2.584532, 0.226527, 1.493728, 0.859255, 1.742152, 0.198928, 0.715648, 0.621666, 0.167731, -1.255455, -0.083675, -0.316686, 0.409321, 0.670470, -0.658500, 0.683854, -0.118325, -0.397763, 0.243729, -0.724450, 0.027943, 1.225274, 0.390489, 0.114298, -0.628702, -0.727040, 1.297067, -0.452637, -1.055542, 0.357361, -0.341779, 1.232228, -2.378134, -0.676153, -0.651552, -0.583518, 0.580130, -0.627089, -0.518449, -1.272684, -0.480655, -0.851650, 0.923456, 0.047600, -0.311547, 0.542470, -1.479399, 0.502507, -1.252304, -1.736591, 0.510541, 0.849439, -0.175782, 2.194941, 0.420460, -0.330983, -1.207235, 0.348202, -0.761330, 0.535848, -0.622559, 0.504933, 0.707736, 0.228179, -0.596705, 0.145535, 0.064016, -0.239805, -0.869842, 0.505505, -0.819694, 1.017025, -1.457328, -0.388074, -1.254925, 1.345761, 1.075628, 1.126306, 1.318628, 0.517584, 0.583347, 0.119370, 1.084038, -0.536976, 0.932438, -1.333803, 0.780143, -1.716030, -0.746357, 0.569783, 0.690122, 0.624560, 0.288446, -0.357612, 0.275874, -0.231410, 1.159869, -0.232078, -1.045614, 0.326911, 0.010868, -0.261499, 0.588526, -0.455283, 0.834353, -0.322870, -0.520326, -1.866695, -1.389329, 0.785433, -1.594460, -0.224048, -0.645424, 0.152975, -1.531449, 0.025476, -0.456286, 0.615203, 0.446318, 1.364365, -1.190657, 0.297397, -0.327780, 0.601037, 0.204353, 0.921812, 0.623565, -1.373476, -0.205644, 1.579392, -1.848161, -0.224851, -0.240060, 0.298799, 1.583137, -1.163625, -0.644821, 1.342111, 0.240797, 0.155692, -0.042242, -0.099019, 0.363295, -0.903435, -0.763621, -1.219778, -0.002932, -0.004644, 0.511764, 1.010026, 1.182569, 1.839652, -0.883435, 0.699895, -0.753271, 1.210875, 0.313228, -1.005221, -0.009763, 1.319516, 0.271890, -1.649399, -1.554593, 1.078896, -0.584072, 0.719301, -0.049780, -0.411100, 0.581009, 0.588794, 1.255456, 0.211355, -0.295650, -0.832455, -1.573096, 0.479604, 0.593566, -0.007378, 0.561407, 0.174641, -0.601172, -1.420507, 0.396548, 1.086147, 1.227184, -0.969450, -1.034578, -1.328464, -0.701328, 0.948463, -0.536291, 0.741851, -0.646355, 1.021293, 0.014685, -0.468256, -0.762503, -0.521679, 2.090613, -0.627514, 0.044559, -0.660399, -0.050978, 0.520121, -1.608869, 0.466022, 0.774560, -0.084939, -0.237280, -0.817611, 0.097433, 1.780326, -0.042369, 0.218104, -1.924261, -2.453564, -0.783244, -0.609415, -0.691479, -0.432772, 0.127424, -0.118426, 0.230674, 0.376825, -0.240952, -1.366481, -0.558497, 1.531982, 0.312676, 0.872276, 0.812003, 0.112635, -0.250098, 0.911172, 0.334255, -0.140110, 1.243345, -0.042916, -1.327921, -1.005275, -1.759005, -0.409960, -1.298047, -0.212342, -1.939041, -1.371567, 1.240323, -0.156768, -0.030067, -0.892907, -1.637912, 0.947901, -0.893309, 0.944868, 0.061281, -1.313328, -0.273755, -1.008788, -0.189900, -1.112637, 1.055042, -0.251166, 0.300634, 1.076443, 0.216106, -0.979619, -0.943813, 1.527772, -1.776765, -0.572363, 1.575817, -0.354269, -0.366452, 2.317779, 1.963819, 0.438990, -0.009267, 0.752277, 0.294481, -0.475410, -0.126440, 0.520476, 0.872037, 0.102665, 0.550963, -1.597754, -0.239744, 0.536493, -0.059908, 1.464155, -0.365598, 2.081636, 1.046194, -0.697959, 1.316137, -0.207011, -1.426455, -0.066890, -1.811115, -2.248960, 0.495439, -0.862826, -1.048286, 0.016982, 0.857296, -0.655038, 0.430638, -1.224254, -0.292219, 0.236193, -0.227442, 0.068886, -0.176626, -1.211392, -0.686670, -1.399701, -0.317798, -0.041195, -0.415086, 0.215100, 0.253729, 0.984783, -0.892666, -0.670144, 0.636513, -0.651808, 0.239026, 1.166360, 0.195195, 0.065416, 0.457298, 0.256362, 0.373982, -1.019415, -0.482686, -0.733508, -1.427073, -0.351301, -0.015488, -0.454394, -0.555732, 0.693100, 1.045300, 0.251824, -2.150941, -0.408488, -1.130578, 0.132782, -1.222120, 0.145286, 1.414029, 1.586272, 1.149507, 0.916164, 1.288986, -1.145974, -0.569088, 1.095419, -0.108150, -0.174729, 1.512104, -0.006734, -0.869491, 0.895498, -0.811957, -0.217575, 1.637164, -1.634348, 0.620743, 0.888118, 1.892549, 0.773420, 0.598146, -1.852917, -1.056665, -1.662740, 0.255003, 0.310103, -0.644412, 1.604974, 1.427575, 0.130699, -1.869343, 0.854463, -0.653925, 0.555020, -0.130678, -0.122508, -0.965340, 1.138242, 0.024706, -0.413502, -0.977291, -1.410377, -0.644195, -0.360841, 0.596111, 1.242855, -0.714326, -1.001468, -0.624330, 1.584285, -0.261695, -0.186246, -1.561328, -1.339776, 0.498851, -0.705343, -1.252191, -1.015443, -0.339083, 1.125707, 0.860839, -0.456129, 1.127978, -0.093683, -0.853182, 0.271991, 1.544041, 0.385966, -0.552438, -0.826700, 0.039950, 0.486117, -0.055656, -0.508313, -0.386223, -1.781433, 0.941494, -0.592670, -0.732907, -0.981484, -0.978035, -0.044344, 1.359935, 1.122442, 1.061323, -0.056971, -0.746469, 0.945427, 0.582139, -1.849123, 0.024323, -0.679553, 1.661885, -0.673908, 0.333670, -1.303043, -0.697432, -1.543814, 0.755402, -0.732005, -0.609869, 0.024949, 0.197553, 1.185196, 0.069908, 2.070246, 1.600696, -0.395498, 1.830148, 0.428590, -0.269128, 0.252366, 0.189775, -0.288149, 0.329578, -2.089698, -0.137646, -1.531805, 1.486898, -0.571482, 1.388253, -0.864255, -0.232366, -0.501235, 0.968501, 0.476637, 1.052884, 0.619504, -0.327639, 2.021117, 0.823085, -0.813734, -1.443214, -0.476092, 0.474827, -1.032771, 0.716678, -0.279465, 0.156513, 0.040222, -0.278429, -0.817530, 0.302085, 0.012087, 0.759180, 1.162755, 0.725857, 0.861115, 1.809386, 0.189444, -0.862537, -2.019403, 1.737620, 2.273687, -0.471675, 1.257850, -0.333957, 1.050470, 1.073569, -0.368401, 0.574880, 0.218980, 0.881007, 0.205540, 0.417014, -1.045070, 0.405112, 1.143455, -0.851155, 0.163187, -0.713153, -0.824800, -0.677649, 0.419207, -0.044194, 0.904325, 0.361816, 1.237960, -0.084671, -0.457539, 2.137868, -0.651512, 0.119583, 0.095580, -0.706505, 0.672408, 0.034789, -0.202316, -0.293749, 0.814040, -0.176213, 1.163455, -1.395970, -1.259473, -0.360192, -0.872294, -1.320841, -0.586296, -1.679480, 0.070189, -1.681707, 2.148804, 1.263430, -0.997677, 0.892254, -0.582487, 0.119697, 0.408570, 0.337620, -0.034242, -0.135178, 0.468472, -0.150095, 0.179880, -0.393807, -0.298719, -0.893199, 0.097906, 1.704552, -0.106102, -1.682609, -0.001165, -0.871014, 0.676982, -0.057556, 0.350105, 1.229497, -1.660906, -0.284743, -0.785707, 0.996753, 0.027921, 0.366087, 1.697635, 0.920058, 1.003479, 0.940503, 0.492025, 0.520869, 0.274150, -0.539325, -1.139099, -0.568214, 0.291964, 0.516073, -0.994434, 0.117096, -0.739131, 0.273728, -0.043684, 0.473670, 0.123353, -0.835332, 1.952643, 0.461936, 0.756102, 1.131996, -2.325601, 0.144159, -0.210208, 0.650898, 0.115322, -1.121759, 0.496250, -1.309874, 0.719618, 0.939504, -0.689501, 0.325573, -0.019311, -1.463487, 0.426812, -0.656452, 0.620304, -0.214105, -0.791543, 0.639607, -0.579832, 1.511132, -1.921710, -0.667541, -0.232645, 0.233391, 1.506898, 0.044548, 1.492787, -0.011968, -0.735064, 0.528656, -1.058878, -1.420150, 0.281208, -0.911660, -2.482220, -0.309171, 0.466939, 1.435056, -2.126456, -0.711082, -0.647985, 0.736647, -0.819562, -2.065506, 0.290806, 1.071992, -1.302422, 0.201957, 0.403350, 0.930369, 1.994595, -1.094654, -1.168588, 0.590359, -0.815489, 0.874194, 0.273626, 0.440372, -0.333655, -1.022662, 0.458211, -1.093762, 0.966380, 0.216216, -0.304417, 0.862420, -0.035982, -0.677469, 0.414306, 0.140019, 0.991254, -0.586161, -0.302892, 0.136783, -0.455145, -1.316959, 0.450435, -0.917744, 1.279734, 0.010010, -0.449727, -0.158288, 0.277216, -1.380270, -0.705990, 1.898329, 1.633801, 0.797343, 0.333826, -0.916517, -0.343819, -1.941551, -2.659954, 0.899938, 1.646713, 0.240902, 0.930502, 1.896860, 0.822185, 0.376799, -1.321127, -0.177624, 0.442824, 0.168674, 0.181087, 0.910120, 0.716105, 0.176247, 0.523385, -1.585621, -2.269039, 1.365178, -0.000903, 0.439503, 0.823428, 0.105879, -0.319020, -1.256909, -0.091339, 0.470377, 1.826246, 1.049592, 1.058657, 1.147809, 0.005518, -0.229537, 0.751820, -0.600997, -0.475272, 0.040907, 0.940435, 1.010874, 0.172369, -0.338131, -0.002675, -1.900991, -0.249206, -0.061160, 2.119178, -0.562272, 1.355101, -0.153558, -0.173012, 0.629839, -0.287610, 1.092384, 2.102783, -0.240033, 1.108734, -0.414165, 0.521104, 1.469408, -1.506161, -1.031272, -0.820187, -0.470265, -0.251875, -1.109841, 0.575056, 0.753598, -0.682367, 0.761866, -1.722160, -0.186837, -0.678390, 0.411942, 1.241272, 0.055214, 0.008162, 2.022293, -0.855282, 1.381054, 0.932051, -2.634721, -1.812392, -0.629672, 0.906354, 0.131617, -0.219392, 0.436579, -0.575038, -0.449251, -0.099989, 0.980274, 0.816991, 0.993293, -0.150170, 0.700800, 1.470074, -2.663074, -1.169814, -0.214794, -1.351583, 0.119720, -0.308005, -1.755427, 1.405712, 1.739113, -1.767692, -0.761572, -0.996369, 1.599346, 2.062212, 0.998300, 0.465828, -1.459449, -1.149142, -0.495526, 1.057950, 0.409852, -1.400118, -0.108800, -1.567302, -0.448069, 1.259582, -0.509495, -0.211012, -0.791084, -0.664852, 0.482233, 0.364763, -0.332307, 0.778693, -1.105056, -0.193468, -1.587775, -0.516265, -1.775565, 0.442435, -0.592751, 0.358167, 2.195438, 0.945585, 0.922516, 0.655586, -1.268811, 0.704422, -0.826508, -0.408747, -0.613750, 1.005483, -1.348624, -1.602620, 0.245705, 0.908893, -0.437051, 1.016272, -0.014419, -0.672794, -1.119709, -0.666124, -0.878984, 1.375063, -0.313656, -0.363759, 0.405344, 0.106491, 0.546738, -0.257917, 0.175730, -1.764664, 0.182478, 0.515303, -0.785181, 1.763464, -2.880225, -0.980999, -0.938217, -1.212937, 1.281045, -1.720786, -0.457808, 0.144417, -0.550054, -0.191556, 2.251851, 1.513575, -2.429590, 0.101762, -3.759408, 1.280609, -0.539650, 0.135571, -0.548838, -0.225000, -1.078143, 1.464744, 0.404280, -2.346449, -0.783903, 1.049154, 1.820471, -2.347962, 0.573997, -0.555419, 0.507236, -0.154260, 0.434660, -0.871840, 2.120586, -1.256035, -0.017529, -0.559575, 0.421102, 0.585003, 0.585159, 0.908434, 0.514332, -1.128788, 0.401680, -1.013912, 1.067575, -1.516495, 0.169177, -0.097426, 0.192956, -0.718959, 0.582367, 1.360153, 2.147080, -0.720380, 0.981351, 0.097823, 0.379249, 1.726984, -0.504502, 0.427244, 0.162551, 0.186997, 1.235908, 0.173754, 0.327032, -0.435981, -1.166288, 1.764825, 0.599417, 0.931381, 2.012013, -1.481371, -1.087629, 1.364344, 1.001370, -1.018495, -0.736548, -2.134489, -0.812104, -0.757629, 0.905960, -1.872599, 0.386431, 1.029242, 1.192792, -0.454748, -2.690569, 0.874195, -0.029691, 1.300324, -1.085132, 0.403398, -0.207355, 1.230123, 0.577793, -0.955572, -0.406727, -0.063125, -1.764886, 0.934884, 0.099197, 1.120223, 0.560783, -0.238207, 0.328889, -0.167509, 1.067484, -0.740136, -0.270884, -0.735030, -1.025883, 1.346156, -1.032623, -1.090146, 0.369653, -0.374994, -0.071139, 0.429560, -0.937073, 0.067470, 1.753754, -2.189332, -0.230147, -0.576506, 0.984958, -1.346845, -0.889718, 1.055733, 0.173711, -1.043351, -0.092081, 0.204624, 0.029544, 0.333585, 1.015987, -0.190098, 0.306731, 0.924562, 0.600304, 1.036391, -0.121117, -0.294259, -0.357607, 0.036491, 0.105124, 1.149403, -0.532418, -1.417174, 0.036239, -1.812491, 1.110548, -1.518699, 0.105785, 1.249620, -2.066090, 0.274301, 0.269194, -0.186939, -0.446635, 0.060505, -2.277602, 0.009507, -1.032385, -0.225275, -0.629420, 0.522340, -0.199028, -0.982369, 0.780459, 1.764165, -0.470174, 0.851934, -0.796089, -0.540451, -0.148242, 0.186572, 0.715156, -0.060060, -0.871258, -0.154651, 0.873260, 0.818201, -1.213716, 1.221143, -0.940491, -0.793235, -2.034941, -1.772504, 0.047780, 0.590210, -0.335933, -0.192690, -0.308205, -0.022371, -0.075514, -0.251876, -1.060925, -0.827893, -0.734465, 1.083451, 0.678851, -0.748360, -0.579405, -2.043067, -0.205387, -0.222139, 0.729636, 1.684441, 0.283943, -1.150393, -0.871965, -0.881961, 1.203945, 1.553315, -0.619045, -0.125554, 0.121248, 0.528419, 1.363936, 0.812072, 0.302559, 0.018770, -0.769241, 0.453390, -0.016566, 1.008043, 0.131184, 0.089034, -0.645575, -0.334990, -0.530296, -0.916719, 0.054930, -0.323717, -1.172135, -0.059878, 0.398895, -1.165693, -1.252991, 1.062225, 0.668890, -0.287053, 0.686392, 0.021130, 0.800252, 0.087858, -0.547733, -0.556327, 1.588500, 0.784886, 0.893107, -0.581933, 0.429863, -1.584400, 0.628144, 0.777813, -0.786816, 0.234226, 2.222605, -0.132825, 0.011211, 0.040131, 0.588700, 0.058501, 0.487232, -0.745702, 1.351873, -1.771446, 0.781601, -0.917594, -0.993617, -0.076136, 1.091963, -0.037647, 0.773636, 0.104507, 0.361208, -0.096246, 1.525120, 1.477642, 0.206207, -0.385964, 0.368721, -0.362713, 1.241820, 1.328871, -1.369378, 0.211334, 0.999504, 0.315272, -1.256159, -0.769664}, - { 2.202407, 0.501290, -0.755820, 0.416613, 0.756057, -0.509687, -2.362441, 1.446230, 0.022124, 0.291915, 1.068703, 0.956692, -0.063365, -0.189200, -0.561635, -1.088576, 1.083949, -0.077018, -0.867175, -0.084837, 0.324703, -0.508849, -1.619539, -1.609367, 1.065280, 0.069153, 0.325631, -0.527621, 1.367229, 0.383812, -0.453832, -0.995964, 0.898697, 0.648746, 0.756521, -1.617740, 1.158094, 0.137592, 1.139043, -0.074633, 0.960908, -0.852070, 0.022085, -1.107504, -1.033909, -0.987106, -0.179843, -0.893372, 0.235343, 1.356839, -1.137402, 0.351645, -0.582341, 0.488301, -1.102853, 0.126407, -0.393851, -0.573073, 0.161375, 0.298289, -0.576586, 0.794551, -0.176779, 0.375813, 0.858207, 1.664762, 0.793062, -0.857777, 0.000556, -0.473162, 0.835018, 1.719433, 2.057390, -0.082182, 0.053926, 1.049116, -0.363114, 0.104333, 0.218432, -1.162856, -2.730109, -0.127826, 0.390132, 0.048729, 1.094793, 0.547145, 0.661964, -0.879199, 0.279034, -0.005527, -0.736870, -1.101948, -0.459373, 0.015395, 0.177593, -1.668108, -0.842849, 1.680795, -1.520088, -0.257050, -0.335250, -2.939787, -0.922862, 0.347944, 0.300520, -0.632114, 0.307643, 0.424108, -1.815464, -0.229956, -0.201791, -0.199655, -0.239248, -2.471761, 0.041952, 0.791646, 1.930681, -0.860339, 1.056446, 0.762751, -1.976380, 0.659719, 2.008522, -0.007085, 0.033454, 0.909128, -0.342495, 0.552609, -1.718059, -1.808342, -0.241020, -0.782643, 1.260443, -0.664975, 0.704856, -0.068836, -2.651599, -0.861826, 0.314262, 0.582512, 0.877312, -0.567826, 0.092596, 0.551238, 0.089075, 0.652096, 1.129130, 0.138396, 1.243777, -1.160959, 1.059795, 0.328778, 0.760383, 0.592309, 0.781342, -0.397990, 0.958648, 0.616753, 2.392642, 0.725613, -0.192992, -1.099511, -1.765582, 0.744881, -2.037528, 2.166214, 0.026850, 0.850753, 1.344465, 0.936954, -0.382028, -1.085827, 1.723600, -1.689354, -1.287933, 0.563178, 0.822514, -0.087595, 1.179597, -0.803092, -0.578637, -0.268331, -0.500977, 1.474237, -1.505034, 0.080563, -0.895748, 0.239534, -0.457207, 1.731004, -2.058022, 0.604015, -1.813185, 1.381655, -0.736304, -1.428878, -0.494533, -0.341142, -0.186191, 0.096191, 1.350293, -1.456329, 0.841529, -1.093756, -0.172708, 0.320089, -0.223409, 0.532690, -0.239650, -0.057809, 0.187439, 0.825705, 1.634498, -0.199457, 0.643074, 0.470114, -1.448523, -1.432276, -0.251043, 0.169201, 0.736676, 1.127620, -0.664626, 0.173055, -0.537373, -0.055242, 1.428576, -1.227188, 1.256439, -0.037856, 1.497849, 1.028515, -0.736346, -0.102228, -1.922901, -1.297662, -0.566416, -0.173954, 0.046899, 1.563084, 0.179148, -0.294485, 0.769807, -0.723559, 0.185583, 0.581581, 2.186070, -1.802907, 0.134842, -2.350676, -0.546042, 0.861289, 3.103399, -0.189959, -1.865096, -0.618156, -1.128880, -0.513095, 1.478035, 0.302390, -1.559745, 1.617525, 1.264067, -0.475702, -0.400622, 0.732602, -1.022744, -0.025244, 0.099215, -1.153135, 1.236335, 0.980163, 0.132217, 1.075014, -1.397059, 0.195444, 0.247156, 0.927562, -1.456905, 0.902314, -0.322951, 0.664101, 1.746017, 0.106319, 0.440355, 0.067194, 0.970329, -0.814279, 0.452210, -1.551295, 0.032255, 0.398329, -1.496538, -0.993922, 0.111641, 0.589097, -0.468227, -0.898702, -0.092102, -0.345804, -0.685853, 1.816402, -0.409107, 0.258531, -0.618784, -0.769211, -0.397859, -0.225178, -1.058101, 3.017122, -0.590296, -0.343442, 1.073830, 1.530886, -0.753589, 0.390734, -0.693601, 0.541365, -0.380499, 0.229588, -1.355997, 2.172126, 0.698642, 0.192071, 0.330922, -1.699427, -0.419567, -1.295911, -0.216370, -0.146987, -0.434581, -0.312853, -0.406282, -1.490115, 0.067122, 2.079941, 0.764382, 0.405363, -0.928500, -0.000144, 1.064079, -1.328800, -3.615869, 0.806618, 0.046166, 1.816744, 0.970818, -1.191103, 0.431961, -0.391314, 0.363185, 0.396323, -0.348027, -0.128458, -0.419685, 1.089288, 0.890837, -0.917780, -1.652598, 0.281118, 0.379080, 0.298193, -0.794344, 0.722422, 1.008522, -1.657440, 0.938869, 0.583926, -1.321133, -0.520227, -0.185865, 1.174213, -2.251489, 1.583295, 0.052728, 0.245859, -0.449765, -1.615052, -1.223050, -0.218382, -0.858382, -0.344699, -0.329322, 0.704617, -0.642459, 0.017687, -1.200845, 1.053833, 1.682868, -0.278476, -1.087214, -1.305353, -0.754506, 0.610204, -0.944692, 0.943746, 0.876142, 1.838447, -0.532211, 1.323353, -1.061883, -0.067915, 0.205757, 0.396139, -0.102436, -1.778368, 1.361760, 1.850200, 1.250291, 1.103465, -0.291772, -0.170900, -0.492872, 0.336753, 0.281053, -1.475272, 0.519157, 0.266176, 0.009043, 1.438090, 0.792370, -1.907820, 0.778639, 0.459271, 1.102649, 1.164672, -0.972662, -0.227863, -2.119545, 0.295237, -1.343501, 1.178069, 0.134134, 0.044030, 1.287581, -0.184811, 1.391160, 0.286470, 1.854419, 0.502874, 1.678322, -0.368422, 0.432593, -1.865800, 0.023897, 0.318362, 1.739973, -1.463982, 2.169323, 0.059196, -1.398651, -1.175324, -0.334314, -0.471122, 0.160991, -0.429977, -0.883911, -1.897437, -0.928531, 1.122813, 0.322474, -0.929582, -1.067089, 0.057222, 0.332761, 0.566720, 1.838192, 0.215767, -0.333877, -0.003687, 0.115884, -0.424043, 0.274618, -0.733945, 0.677529, -1.480495, 0.959548, 1.436143, -1.327167, 0.658075, -0.223388, -0.958140, -0.017099, -1.657934, -0.212187, -1.515853, 1.971891, 0.800620, -0.919113, 0.778743, 0.148008, -0.114556, 0.858995, 0.430111, -1.950643, -1.073631, -2.820686, 0.467041, 0.656771, -1.140318, 0.137241, -0.102636, -0.770215, -0.687964, -1.907871, -1.153601, -0.635367, -0.771967, 0.225260, -1.058244, -0.592758, -1.120356, 0.635770, 2.007467, -1.542176, -1.810625, 0.887673, 0.852083, 0.029702, 1.911922, 1.728125, -1.109058, 0.916240, 0.702629, -1.177386, 0.774753, 0.440182, 1.090317, 0.591267, -0.488971, -0.337695, -0.838134, -0.809259, 0.297127, -1.319407, 1.771996, 0.505534, 1.001547, 0.076197, 1.197425, 0.490718, -1.372669, 0.088512, 0.078226, 0.751533, 0.530102, -1.388455, 0.213656, -0.863598, 1.124646, 0.117048, 0.668450, 0.142299, 0.083431, -0.691457, 0.350426, -1.530275, -0.544576, 0.166745, 1.838863, 1.621041, 0.605296, 0.148060, 1.866453, -0.896192, 0.822422, -0.774788, 0.596514, 0.530877, 0.830130, 0.538515, -0.627216, -0.059944, -0.332596, 0.105710, 0.029467, -1.814086, 0.937604, -1.706427, -1.027913, -0.819241, -0.160659, -1.156907, -0.914204, 0.531718, -0.814348, -0.871615, -0.506692, 0.220928, 0.439352, 2.126628, -0.953973, -1.063376, -0.048008, -0.626177, -0.058277, -0.949783, -2.113424, -0.212806, -1.144282, 0.510841, -0.886486, -0.825515, -1.678878, -0.418237, 1.492856, 0.613246, 0.366567, 0.580646, 0.395945, -0.454201, 0.195667, 0.899577, 1.140460, -0.604149, 1.429128, -2.609872, -0.513908, 0.363900, -0.726305, -0.863113, -0.517918, 0.113200, 0.507809, 0.276648, -0.879074, 1.010420, 1.092461, -0.417503, 0.100037, 0.260289, 0.914943, -0.336199, 0.455709, 1.314833, -0.717222, 0.650409, 0.703595, 1.597296, -0.573642, 0.057845, -0.032949, 1.440785, -0.973496, 0.126981, 0.551354, -0.860516, -0.184644, -0.775622, -0.324282, 0.601371, -0.509432, -2.026147, 0.633660, -0.611010, -1.451099, 0.460755, -0.268770, -0.060278, -1.253776, -0.745375, 1.781469, 0.331207, 1.026964, -0.960810, 0.642603, -1.025680, 1.292920, 1.007717, -1.896157, -0.744296, 1.128173, -1.216311, 0.824177, 0.337031, -0.099763, -0.251727, 0.728793, 0.564296, -0.332292, -0.163496, 1.213536, -0.236846, -0.429757, 0.197628, -0.567817, 1.499762, 0.250484, -0.132269, 0.916284, -0.619486, -0.064591, -0.222087, 1.066619, -1.166298, 0.067988, 0.587567, -0.960461, 0.244057, 1.229079, 1.049206, 1.044654, 0.812387, 1.425235, -0.549290, -1.268198, -0.566072, 0.355135, 2.312342, -0.433800, -1.023334, -1.659927, 0.510776, -0.809476, 0.187178, 1.057458, 1.042592, 1.696877, -0.893494, -0.987421, 0.712230, 1.695499, -0.159557, 0.084446, 0.847372, -0.140588, -2.095881, -2.033877, 0.018781, -1.582547, -0.125429, -0.410043, -1.481174, 1.776911, -0.314229, 0.105683, -0.537980, -0.589903, -1.786572, -0.289869, -0.016978, 0.332514, -0.369476, -1.095598, 0.251477, 0.299563, 1.185398, 0.884376, 1.909467, 0.893577, 0.144957, -0.867949, -0.000211, 1.287146, -0.494185, -1.534174, 2.174720, -0.593022, 1.115512, -0.213000, 2.606250, 1.672317, -0.153430, -0.871178, 1.135893, 0.186539, 0.963108, 1.800604, -1.252765, 0.945403, -0.191125, 0.424643, -0.444271, -1.093414, -2.144698, -0.613608, -0.101511, -1.443099, -1.925681, 0.939602, 0.504715, 0.162747, -3.124796, 0.307271, -1.045741, 0.355322, -0.445353, 0.659352, 0.206921, 1.708674, -0.269690, 0.715581, -0.421048, -1.086826, -0.818724, 1.870610, -0.895063, 1.723959, -0.574418, 0.936743, -0.352284, -0.252792, 0.491579, -0.145222, -2.058807, -0.013346, 0.595458, 0.851863, 0.003092, 1.262228, -1.785903, 0.716500, -0.122812, 1.069616, -1.393052, -0.886496, -0.810450, 0.297144, 0.829052, 0.572732, -0.744420, -0.168369, 0.711610, -1.670300, 0.701286, -0.419277, 0.791709, 0.239788, 0.648806, -1.420125, 1.059813, 0.832197, -1.039155, 0.979023, 0.584910, 0.563655, -0.644088, 1.066292, 1.291532, -0.541206, -0.270904, -1.350010, -0.241990, 1.318519, 0.617874, -0.902196, 0.237991, -0.011197, 0.128171, 0.837205, 0.793140, -1.552267, 0.880716, -0.994971, -0.421702, 1.235023, -0.711111, -1.111321, 0.469355, 1.841557, 0.295743, -1.317714, 1.028625, -0.570413, -1.829334, 0.832905, 0.997229, 0.007728, -0.785173, -0.991446, 1.950897, 0.289048, -2.616466, -1.192948, 1.261504, 0.359284, 0.554619, 1.241305, -0.964094, 1.887028, 2.254318, -0.391291, -0.072041, 0.052330, 0.622949, 1.639181, -1.776636, -0.473023, -1.593499, -1.642527, 0.433863, 0.673157, -0.609619, -1.853486, 0.429450, 1.067076, 0.297582, 0.723383, -0.081191, -0.319166, 2.516265, -1.217585, 0.041377, -0.517084, 1.615324, 0.120481, -0.717347, 0.430065, -2.233584, -1.424153, -1.506614, -0.847092, -1.130765, 0.664158, 0.013785, 0.559790, -0.076069, 0.085170, 1.070377, 0.417302, 0.386577, -0.209964, -0.524383, 1.014307, -1.245314, -1.592469, -0.729273, 0.318690, 0.891281, -0.781488, -0.182286, 2.087186, 1.024650, 0.649086, -0.492290, -0.385178, -1.324224, 2.323074, 0.142645, 0.044801, 1.813416, -0.460890, -2.260847, 1.016192, -0.877366, 0.542984, 0.302267, -1.408820, -1.195458, -0.300297, 1.082836, -0.237345, -0.618278, 1.383891, -0.501467, -0.178305, -0.215956, 1.055894, 0.116965, 1.591748, -1.884014, 0.123407, -1.440592, -0.610890, 0.681107, 0.691364, 1.849546, -0.334262, -0.354661, 2.421940, -0.972354, 1.453511, 0.045909, -0.214678, -1.255557, 0.630261, 0.681819, 0.932965, 1.139026, -0.756976, -0.719851, -0.644845, -1.138043, 1.001685, -1.478760, 0.562928, -0.123489, -0.689885, 0.626220, -1.193764, 0.455518, 2.634384, -0.319684, -0.572873, -1.288928, -1.263664, -0.499159, 0.478507, -0.528077, 0.918218, -1.303074, 0.048690, 0.392543, 0.164890, 0.304358, 0.195399, 0.415675, 0.918434, 0.404910, -0.829623, -0.756533, -1.019927, -1.438446, -1.143142, -0.979558, 2.738326, 0.071265, -0.187456, 0.318744, -0.470631, 1.660982, -0.798867, -1.798954, -0.497250, 0.640604, -1.251535, 1.295683, -1.612830, 0.659311, 0.474363, 0.910734, 1.096985, 1.213389, 2.183885, 0.064826, 0.262037, -1.633800, -1.231014, 0.939177, 0.119651, -0.645659, 0.533343, -1.170916, -0.920674, 1.924088, -1.463035, 2.482004, 0.468507, -0.004691, 0.945189, 0.041997, -0.218707, 0.257864, 0.923200, -0.838496, 0.667791, -2.307730, -1.392105, 2.031344, -0.748605, 1.823367, -0.527525, 0.048480, 1.280545, -0.480234, -1.392508, 0.406107, -1.999963, -1.077629, 0.945935, -0.084997, -0.543797, 0.427892, -1.782325, 1.300475, -0.819628, -2.690083, -2.093628, -2.074759, 0.734750, -0.116643, -2.227761, -0.007943, -1.056612, 1.803950, 0.327142, -0.001042, -0.528581, -0.359555, 0.740857, -1.875843, -2.613689, 0.675776, 0.806259, 0.151694, -0.692624, -1.647680, 0.464204, -0.296819, 0.818035, 0.972600, 0.079753, -0.903515, 0.732821, 0.389616, 0.699909, 1.058385, 0.594587, 1.123021, -1.047240, -0.774516, 1.266542, 0.469522, 2.280334, 0.141043, -0.914176, -0.827567, -2.056981, 0.838257, 0.120797, -1.155867, -1.078389, 2.576058, 0.872422, 1.856925, 0.076125, 2.090398, -0.260619, 0.796658, -1.339563, -0.333744, 0.354095, 0.223890, -1.791985, -0.708607, 0.665593, -0.215186, -1.394499, 1.223856, 1.844529, 1.435116, 0.233361, 0.513057, -0.185318, 1.591415, 0.394695, 0.279339, -2.476651, -0.987594, -0.251599, -0.787169, 0.247308, -0.218426, -1.179014, -0.637258, -0.800324, 0.106372, -0.744466, 1.347601, -1.244057, -0.274364, -0.973317, -2.492704, 0.184428, -0.595952, 2.160734, 1.670366, 1.036692, 0.348936, -1.745845, 0.587199, 0.002137, 0.394041, 0.241950, 0.237771, -1.248925, -1.259061, -0.210407, -0.026451, 0.107485, -0.849833, 0.044733, -0.806286, -1.563649, -0.481359, -1.603732, -0.858170, -1.519709, -1.202094, -1.261256, -1.141943, -1.509268, 1.020517, 0.579615, -0.923427, -0.012640, 1.881362, -1.632399, -0.728439, -1.054691, 0.128681, 1.364909, -0.682774, -2.148727, 1.448452, -0.953598, -0.063042, -1.608997, -0.544602, -1.179325, 0.482936, 0.000697, 0.980347, 1.165115, -2.575654, 0.836068, 0.085019, 1.430900, 0.147359, -0.680586, 0.595726, -1.381233, -0.776833, -0.606949, 0.462725, 0.704626, -0.225730, 0.466783, -0.365826, 1.899861, 0.167444, 0.368994, 0.153482, -0.029003, 0.645890, 1.422182, 0.628400, 0.789337, 0.852450, 1.738077, 0.959545, 1.129276, 1.628401, -0.776447, 0.053559, 1.490628, 0.802581, -0.237694, -0.371874, -0.885957, 2.021629, -0.440965, -0.800877, 0.035742, 0.374294, 0.506557, 0.122600, -0.112882, 0.206508, -0.939945, -1.121023, -0.456585, -0.423641, 0.373846, 1.216651, 1.636300, -1.167319, 0.167324, -0.400765, -0.704040, 0.324556, 1.111552, 2.326811, -0.436892, -0.301385, -0.399669, 0.046622, 1.224228, -1.061941, -0.688071, 1.163274, 0.402946, -1.390913, 1.077437, -1.367930, 0.450956, 0.038306, 0.643800, -0.127053, -1.928394, 0.326124, 2.664683, 0.128408, -0.136195, -0.416258, 0.130770, 2.160097, 0.983741, -0.470414, 1.820268, 0.960124, 0.745732, -0.588889, 1.244781, 0.408043, 0.080386, 1.397256, -1.203826, -0.540076, -0.796453, 0.568963, 0.452896, -1.448485, -0.766937, 0.830600, -1.552641, 0.133805, -0.351979, 0.797156, 1.832321, 0.669573, -0.709533, -0.396206, 0.778707, 0.471994, 0.329589, 0.818608, -0.232575, 0.565614, 1.134063, -1.022236, -0.496688, 1.315336, 0.015484, 1.049227, -0.857126, 0.503429, 2.087516, 0.210734, 1.443229, 0.910938, -0.793429, -0.042967, -1.023748, -0.482345, -0.755361, 2.970853, -0.228552, -0.436625, -1.851197, 0.425291, 0.458503, -0.090371, 0.535489, 0.886618, 0.547152, 0.256644, 1.777673, -0.674148, -0.927113, 0.288900, -0.845258, -0.944981, -1.220020, 1.514492, 0.182120, -3.756649, -0.208861, -1.010421, 1.205937, 1.300032, -2.276371, -1.842820, 0.682560, 0.741234, -0.501142, -1.782638, 1.133644, 1.647879, 0.573028, -0.925674, 2.483126, 0.237496, -0.165725, 0.935442, -0.340224, 1.599633, -1.368496, -1.595820, -0.718638, -0.839121, 0.653930, 0.131952, 0.106256, -0.070298, -0.645755, -0.739307, -0.278981, -2.855678, 0.507035, -0.103785, 0.815554, -0.580113, 1.638769, -0.867058, -0.199520, -1.683357, 0.500225, -1.368108, -1.284506, 0.058674, 0.509563, 0.783058, -0.244039, -0.056425, 3.320653, -0.900288, 0.179321, -0.177915, 1.376266, -0.371139, 0.363165, -0.280526, -0.221007, -1.057832, 0.203489, 1.794716, 0.082012, -1.595992, -0.106797, -1.905074, 1.985795, 1.554948, 0.097611, -0.651485, 0.301302, -1.192711, 1.114309, -0.516214, -0.497162, 0.109354, 2.003018, 0.102989, 0.318612, 1.106055, 0.474257, 0.689162, -0.083156, 0.487659, -1.768587, 0.192268, 1.307945, -1.308160, 0.555713, 0.645254, -1.871958, 0.018137, -0.757258, 0.075946, 1.044980, -0.277332, 0.059850, 1.601884, -0.279850, -0.509645, -0.999124, -0.037248, 1.172676, -0.156926, 0.950647, 0.829209, -0.085911, 1.566731, -2.708151, -1.191436, 1.987267, -0.483372, -2.520565, -0.159729, 0.534954, -0.865477, -1.704186, 0.503034, 3.504074, -0.690176, -3.722202, 0.624042, -0.982603, 0.439505, -0.334546, -0.119677, 0.534427, -0.189035, 0.029513, -0.137330, -0.133384, 0.159185, 0.514432, -0.820320, -1.774685, -0.148505, 0.647669, -0.058415, -0.403893, 0.715670, -1.841835, 0.440822, -0.109641, 0.177988, 0.083022, 2.059491, 1.349646, 0.281904, -0.895638, -0.117824, -1.351033, -1.389770, 0.427715, -0.431622, -0.253923, 0.956189, 0.528233, -0.982272, 0.223964, -0.053232, -3.309626, -0.636650, 0.717865, -0.692247, -1.023844, -1.324425, -0.256643, 0.503877, 1.038669, 0.142504, -0.894046, -2.052362, -0.345772, -0.586966, 0.036835, 0.327582, 0.701447, 0.336753, 2.108620, -0.091931, 0.714448, 0.269548, 0.486497, -0.608005, -0.612613, 0.132957, 0.499744, 1.868914, -0.110051, 0.845306, 2.089033, 0.754106, 1.045020, 1.019071, 0.661720, -0.049419, 0.891359, 1.278212, 0.172122, -2.455968, -1.729682, -0.116407, -0.323602, -1.885185, 0.346469, 0.713560, -0.178947, 0.411131, 0.473657, 0.137240, 0.004600, -1.453665, 0.387103, 1.131503, -0.060398, -1.026671, 0.271284, -0.135000, 0.872050, 2.335425, -1.463629, -0.635835, -1.170255, -0.978006, -0.222761, 1.269978, 1.013824, 0.712431, -0.797002, 0.988050, 0.895173, -0.137772, 1.639617, 0.272233, -0.150640, 0.881611, 0.844577, -1.507226, -0.679848, 0.170616, -0.063381, 0.612472, 0.900862, 1.542817, 0.367615, 0.122778, 2.814967, 0.314117, 0.595116, 0.114589, 2.088732, 0.053141, 0.341778, -2.266651, 0.162414, -1.514784, 0.507374, 0.047483, -1.676361, 0.798636, 0.367801, -1.354663, 1.476619, 0.183036, 1.069503, 0.262476, 0.124234, 1.219253, 0.750142, -0.951980, -0.014617, 0.353776, -0.609075, -0.440896, 1.503247, 0.155515, 0.578884, 0.954638, 0.494237, -0.618991, -0.739220, -2.709824, -1.225917, -0.041313, -0.289322, 0.743831, -0.658827, -2.827656, -1.433807, 0.800753, -0.543397, 0.206533, -0.406691, -2.001334, 0.193953, -2.055019, 1.584675, -1.799314, -0.554538, 1.235732, 0.255502, 2.108980, -0.772655, -0.422786, -1.900994, 1.624016, -0.598351, -0.429577, -0.225256, -0.115965, 1.258746, 1.382367, 0.548029, -1.865437, 1.855697, -0.813085, 0.149920, 2.251776, -1.691024, 0.813107, 1.253356, -1.187044, -1.757091, -2.019655, 1.207907, 0.362207, -1.321627, -0.885213, 0.640244, 0.839037, 1.742690, -1.611078, 0.668315, -0.852199, -1.026696, 0.080945, 0.480555, 1.154014, -2.739587, -0.381532, 0.205749, -0.688489, -0.141637, 1.849398, -0.916934, -1.264959, -1.370011, -0.006671, 0.627378, 1.401355, -1.095207, 1.048437, -1.832132, -0.792077, -2.943996, 0.246667, -0.442815, 0.977543, 0.404871, 1.026999, 2.394586, -0.885092, 1.013617, -0.720094, -0.881698, 1.087516, -1.340583, 0.486865, -0.940303, 0.872775, -0.253423, -1.726625, 0.344542, -0.531941, -0.456384, 0.379359, -0.215022, -0.224754, -2.456322, 1.908696, -0.679590, 0.074308, -0.711004, -0.735616, 1.091135, -0.052534, -1.070793, 0.130976, -1.908431, 0.041099, -0.819977, 0.976177, 0.973414, 0.043108, -1.318488, 0.286330, 0.331819, 0.325604, -0.735757, 0.555598, 0.640339, -1.806676, 0.437116, -0.354780, -0.514365, -0.349750, -0.965982, -0.810985, 0.315748, 0.251990, 0.968556, -0.697874, 0.270377, 1.028001, -0.121850, -0.048529, 0.759572, -0.798235, 0.450303, 1.209232, 1.287215, 0.736628, -0.320684, -0.017798, 1.387886, 0.410671, -2.089627, 0.211727, -0.704497, -0.400250, -0.780119, 1.323815, -0.998117, 1.738493, 1.225846, 1.579372, -0.755191, 1.882717, 0.174798, -2.895694, -2.241069, 0.478110, -0.913512, 0.623818, -1.593714, 1.050625, 0.334868, 0.650025, 1.844604, -0.097674, 1.089659, 0.213554, 0.408026, -0.534483, 0.200220, 0.781483, 1.385418, 0.731045, 1.942252, 0.758991, 0.943697, 0.333975, 1.433700, -0.096569, 0.650949, 0.670062, -0.077623, 0.456808, -1.020862, -0.866931, -1.391849, -1.594173, -1.343600, 1.471665, -1.205426, -1.551051, 0.787579, -0.820027, -0.531795, 0.160303, -0.552002, 0.039174, -1.042516, -1.100737, 0.221017, 1.676202, -0.742451, 1.223978, -0.940187, 0.204964, -0.279585, -0.584146, -0.170544, -1.716305, 0.316820, -0.159871, -0.637017, 1.074986, -0.539383, 1.376580, 0.892451, -0.363723, -0.144646, -0.232654, 0.509979, -0.186264, 0.325335, -0.361472, 1.409343, -1.833847, -0.762621, 0.743815, -1.142141, -0.594710, 0.468526, -0.994251, 0.703567, -0.554034, 0.389144, 1.407173, -1.436839, -0.150065, -1.225387, 1.419068, 1.707044, 0.153756, 1.521535, 0.866590, 0.680812, -1.480789, 0.273826, -0.492680, -0.145707, 0.975589, -0.748282, -0.157891, -1.527124, -0.102752, -0.261935, 0.618276, -0.359328, -0.708638, 0.489765, -0.112005, -0.162444, -0.703104, -0.874094, 0.512092, -0.637987, -1.316424, 0.225509, -1.275537, -0.023827, 0.743995, -1.415476, 0.261494, -0.437169, -0.301049, -0.316213, -0.229617, -0.269858, 0.175845, -0.558457, -2.014599, -0.371651, 0.257052, 1.647324, -0.704553, 0.797086, 2.433834, 0.640240, 2.581459, 0.323005, 1.944852, 0.380274, -1.989039, 1.480016, -1.339141, 0.708475, 1.580062, -0.045464, 0.677710, -1.824744, -0.889016, -1.317852, 1.048593, 1.706404, -1.304262, -2.730358, 0.217899, -1.601091, -0.058532, -0.399825, -1.494852, 1.788317, -0.354862, 0.163999, 0.106352, -2.093994, -0.428917, -1.102260, 1.186914, 0.687905, -1.286555, 0.123024, 0.893400, -0.606771, -0.909105, 0.774096, -2.528580, -0.240026, -1.012785, 1.722732, -0.211943, 1.226095, -0.415078, -0.640543, 0.347469, -1.004663, -0.368267, -0.519077, 0.612018, 0.026284, -0.913291, -0.483627, 0.623407, 0.708546, 1.056631, -0.633303, 0.968666, -0.344148, 1.227963, -1.039902, -1.586162, 1.665446, -1.914994, -1.791969, -0.999968, -0.759027, 0.369693, -0.413312, -1.249696, 0.237251, -0.399640, 0.558933, -0.653205, 0.502370, -0.383883, -0.071334, 0.594192, 1.503336, 0.217856, 0.917178, -2.155702, 1.074507, -0.899861, -0.768825, -0.889441, 0.252241, 1.021087, -0.073918, -0.786716, 0.512181, -0.405504, 0.080028, 1.797519, 1.159522, -0.130962, -0.489820, -1.260310, -1.153670, 0.157666, -0.050374, -0.205562, 0.275873, 0.272609, 1.788926, 0.191621, -2.243406, 2.394803, 2.030279, -0.008380, 0.616333, -1.093910, -0.618523, -0.772706, 0.214202, 1.090486, -0.056821, -1.000049, 1.120457, 0.471925, -0.017474, -0.932191, 2.448223, 0.312786, -0.570233, 0.103254, 0.412084, 2.138385, -1.424234, 0.526878, -0.030993, -0.483080, 0.711400, 1.570059, -0.045757, -0.615562, -0.202112, -0.186906, -0.355662, -1.499499, 0.452176, -1.306366, -0.060845, 0.687419, -0.426334, -0.677161, 0.953849, -0.246114, 0.283662, 0.052363, 0.888625, -0.648133, -0.883023, 0.132355, 0.617834, -0.801756, -0.206490, 0.834138, -0.069569, 0.827816, 0.530390, 2.583523, 2.378686, 0.231530, -0.472425, -0.718416, -0.074558, 0.844882, 0.238385, -1.061172, -2.141033, 0.346715, 1.455691, -0.064735, -1.897900, -0.340222, -0.082148, -0.198286, -0.184554, -0.026063, 0.196635, -0.120027, 0.445230, 0.725064, 0.323062, 0.549894, -1.247355, 2.445707, -0.786796, 0.601871, -0.051169, -1.119982, 0.614433, 0.299321, -0.284203, 0.574165, -0.197308, 0.133723, 1.427952, -1.244693, 1.909488, 1.582976, -0.571251, -0.845582, -0.267984, -0.754143, 0.310975, -1.059667, -0.298561, -1.076711, 1.052108, 0.776001, -0.213370, 0.319792, -1.109760, 0.671688, 0.119422, -0.543591, 0.551007, 0.480275, 1.771482, -1.293824, 0.229311, 0.025143, 0.149236, -0.442184, 1.412518, 1.674555, 0.197456, -0.223144, -1.409458, -1.389691, -1.039414, 0.695984, 0.566634, -1.385879, 1.405706, 0.645872, -1.035509, -1.245561, -1.928605, -1.469069, 0.098430, 0.251602, 1.207269, 1.962450, 0.053232, -0.848431, 0.026797, 1.035832, -0.508173, -0.274124, -0.876143, 0.489302, 0.057040, -2.049574, 1.810043, -1.783591, -0.727251, 0.748529, -0.143345, -0.321486, 0.967581, -0.616159, 0.389917, 0.631891, 2.819839, -0.569773, -0.439533, 0.785680, -2.140511, 1.281066, -0.974431, 1.287095, 0.315956, 1.357504, 0.468886, -1.152190, 0.376193, -0.322438, -0.553610, -0.652906, -1.298764, 0.942262, -0.206670, -0.610650, -0.254701, -0.484246, -0.748808, 1.358993, -0.551174, -1.054484, 1.363765, -0.459157, -1.385064, -0.723829, -0.900977, 0.316384, -1.416369, -0.844753, -0.199117, -0.359055, -1.533950, 0.921003, 0.567535, -0.821189, 0.791639, -1.716919, -0.980149, 0.257582, -1.279201, -2.002789, -0.585638, -0.481773, 0.161000, -0.099305, 0.116177, 0.173858, -0.087902, 0.050081, 1.041255, -1.268709, -2.377311, 1.615988, 2.395039, -0.573038, -1.580473, 0.642813, 2.576947, 0.664358, 0.960551, 0.260078, 0.716135, 0.189141, 0.458350, 0.702744, 0.162669, -0.562829, 0.658312, -0.269642, -0.793999, 0.310773, -0.899019, -1.766469, -0.400017, -0.952291, -0.014443, 0.470082, 0.284529, 0.652241, 0.455674, -0.733946, 0.539400, 0.920863, -1.504751, 0.255409, -0.741640, 0.694701, -0.445413, 3.122810, 0.386979, 0.687063, 1.034158, 1.582009, 0.877097, 0.355180, 0.168807, 0.667832, -0.256917, -0.189042, -2.753169, 0.461727, 1.014557, 0.938720, -1.102713, -0.315307, 0.632602, 0.780972, 0.268898, 0.283712, 2.984571, 0.249064, -0.918872, -0.443747, -0.288149, 0.854929, -2.419526, -0.024338, -0.124747, -0.389400, 0.381251, -1.563854, -0.404464, -0.027618, -0.358348, -0.437135, -0.109179, 0.656523, 1.233804, -0.053291, 2.064710, -0.302933, -1.014404, -0.350766, 0.976182, 1.157565, 0.544869, -1.216118, -0.035945, 0.526483, 0.761278, -0.093863, -0.023768, 1.057672, 0.601090, 0.761974, -0.073394, -0.718574, -0.661424, 0.716005, 1.262573, -0.166284, -0.165801, -0.763309, 0.907407, -1.746724, -0.264277, -0.276137, -2.132658, 0.253038, -0.961316, 0.503105, 0.059558, -0.179085, 0.687936, -1.450311, 0.836182, -1.552948, -0.850773, -1.069188, -0.222868, 0.880518, 0.116282, 0.128223, -0.415909, 0.722790, -0.165264, -0.263296, 0.996883, 1.574473, -1.517527, 0.724709, -0.702674, -1.815968, -1.890065, 0.628119, -0.335020, 0.381691, -1.995636, 0.839345, 0.395197, -1.636671, 0.006266, -0.162563, 0.665479, 0.634188, -0.770526, -0.218571, 2.700738, 0.092893, -0.120705, 0.858537, 0.092137, 0.395640, -2.096134, 1.172338, 1.842091, 0.365980, -0.022981, -1.065968, -1.085350, -0.255632, -0.063124, -0.862086, 2.061833, -1.214078, -1.426198, 0.979296, -0.732898, 0.548372, -1.650792, 0.274925, -0.397693, 1.030965, -0.347018, -1.014469, -2.042359, -0.190615, -0.913491, -0.478975, -1.890718, -0.507786, -1.067903, -2.522357, -2.697023, -0.916697, 0.312874, 0.971749, 0.145942, 1.476816, -1.272319, 0.455715, 0.173124, 0.424844, -0.632877, -1.846036, 1.000657, 1.383268, -0.409663, -0.511002, 0.228873, 1.308887, 0.117155, -0.569325, -0.457979, 0.796540, -0.602732, 1.742786, 0.181494, -1.128430, 0.866648, -0.008198, -0.755870, 0.553129, -1.182762, -0.968411, 0.430716, 0.696532, -0.453921, -0.515100, 0.567421, 0.203976, 0.635604, -0.040386, -2.086328, 0.104618, 1.849123, -0.983445, 0.294923, 0.975473, 0.269779, 0.275598, 0.194512, -1.254995, -2.214264, 0.017599, -0.793475, -1.272358, 0.296770, 0.441972, 0.032215, 1.948137, -0.199612, 0.631908, 0.167630, -0.219031, -1.019063, -0.936647, -1.601210, 1.035708, 0.914466, -0.021400, 0.972169, -1.198022, 0.664877, 0.417958, -0.549424, -0.431941, -1.367107, 0.595558, 0.808811, -0.079015, -2.231074, 0.542931, -0.570214, 2.557182, 0.029229, -1.111075, 0.817198, 0.506270, -2.572650, -0.205799, 0.714069, 0.905818, 1.059992, -0.099123, -0.759091, -0.058292, 0.804693, -0.678893, -0.124130, 0.227400, -0.114052, 0.290914, -0.672628, -0.416457, -0.107799, 0.582565, -0.538141, -0.891721, 1.339715, -0.530201, -1.542516, -0.217258, -1.436383, 0.591169, 0.252790, -1.475958, 0.554232, -0.758492, 0.643670, -0.719136, -1.145808, -0.971530, 0.855600, 0.492393, 1.859212, 0.619952, 1.124673, -1.176322, 0.956296, 0.676405, -3.005822, -1.100873, 0.216065, 0.084559, 1.800594, 0.687811, -0.821150, -0.671863, -0.065151, -0.433684, 1.322238, 0.246229, -0.133013, -0.624855, 1.189197, 0.598540, -0.588955, -0.878977, -2.154656, 0.383747, -0.571774, 0.966242, -1.617877, -0.294130, 0.474843, -1.378153, -0.402337, -0.657712, -0.355810, 1.911092, 1.806948, -0.646646, 0.264055, 0.306268, -1.586184, -0.210411, 1.024532, 1.273616, 0.508824, 0.311745, 1.121528, -1.325789, -0.118821, -1.082738, -0.429775, 0.068407, 0.172191, -1.688624, 0.677475, 0.114101, 0.174666, 0.877175, 0.358579, 0.388201, 1.055913, -1.361012, 0.247648, 0.120634, 0.996759, 0.072905, -1.242962, -1.242010, -0.243775, 0.361070, 0.347500, -0.447048, 1.609029, -1.206522, -0.448835, 2.303598, 1.233788, 0.682812, -0.758433, 0.537724, -1.045537, 0.487396, 1.312670, -0.557142, 1.039417, 0.105405, 0.964287, 0.222252, 1.578494, 0.337669, -1.570955, -1.441346, 0.612728, -2.067993, 0.427430, 0.390304, -1.274493, -0.470260, -0.053443, -1.244934, -0.038436, 0.932271, -1.057389, -0.841705, 0.005869, 1.499803, 1.515065, 0.342324, -0.321612, 0.571636, -0.094475, -0.662625, 0.963008, -0.320264, -1.696618, 1.184545, -0.969765, 1.421304, -0.413662, 0.751396, 0.870260, 0.119614, 1.433314, 0.187571, 0.482808, 1.574479, -0.065548, 0.109305, -0.859730, 0.363374, 0.528040, -0.215061, 0.397912, -0.763185, 0.988961, 1.160911, -0.053102, -0.606195, 1.095434, -0.692076, 0.671270, -1.205575, 0.144518, -0.533849, -2.461264, -1.232280, -1.695626, 0.320749, 0.497435, 0.461227, 2.040773, 1.470384, 2.262313, 1.575332, -0.422186, 1.048181, 0.410031, 0.693048, -0.971745, 0.756518, -0.685695, -2.265130, 0.102192, -0.805292, 1.271520, -1.189375, -1.208521, 0.119064, -0.082353, -0.062604, 0.583199, -0.734485, -0.011299, -0.309595, -1.249067, -0.168101, -0.073886, -1.928694, 0.119868, 0.589827, -0.696624, 1.735564, -0.776031, -0.223677, 0.204086, -0.605697, -1.032657, -0.790152, -0.851046, 0.109058, 0.577901, 0.153441, 0.963552, -0.393585, 0.552297, 0.537398, -0.519305, 0.930691, 1.214716, 0.424321, 0.880533, -0.944533, 1.783358, -0.456452, -1.404230, 1.021792, -1.223593, -0.663051, -0.014047, -1.249957, 0.884051, -1.099918, -0.970737, -0.972150, 0.347681, -0.291815, -0.477583, 1.096438, 0.224036, -0.812916, -0.100534, 0.095870, 0.582518, -0.781115, -0.027749, 0.002074, -1.083760, -0.204547, -0.410241, 0.252550, 0.036799, 1.079212, 1.187525, 0.066114, 0.957340, -0.325493, -0.562176, -0.805265, 0.792827, -0.203212, -1.241583, -1.591024, 1.017288, -0.105552, 1.174423, -1.202687, -0.360328, 0.995262, 1.171603, -0.138051, -0.037817, -0.292088, 0.653707, -0.772936, 0.575747, -1.408628, 0.038211, -0.851917, -0.871240, 0.456340, 1.088471, -1.208210, 0.794887, -0.026783, 1.501776, 1.008402, 1.327928, -0.685640, -0.313839, -0.240896, -1.642584, -1.481331, 1.130448, -1.058729, -1.207120, -0.591751, 0.093304, -0.133169, -0.299287, 2.423010, 0.653286, 0.594701, 0.204569, 0.852043, -0.208294, -1.191066, -0.817401, -0.878747, 0.172002, 0.146648, 0.540305, -2.096557, -0.478583, -0.465355, 1.783981, -0.210733, 1.199453, 0.483422, -0.626852, -1.221009, 0.160450, -0.865561, 0.165649, -0.143489, 0.216056, 0.047132, -1.423612, -0.210721, 0.525906, 0.276112, -0.467089, 0.562238, -2.271231, 1.219086, 0.119222, -0.823306, -0.609421, 0.009412, 1.741470, -0.995418, 0.902640, 0.378936, 0.149090, 0.569097, 1.831045, -0.150073, 0.435419, -0.970630, 0.745214, 0.362934, -0.602778, 0.892790, 1.212886, -0.535595, -0.095723, 0.258318, -0.565528, 0.130863, -0.636893, -2.203274, 1.941860, 0.636706, -1.689915, -0.753445, -0.138319, 1.469374, -1.483642, -0.143226, -0.068979, -0.033960, 1.240809, 0.145407, 1.308154, 0.160239, 0.335553, 0.026599, 0.846044, -1.029148, 0.651536, 0.615950, -0.560944, -0.545467, -1.053978, -0.626967, -1.094171, -0.801897, -0.544148, 0.386038, 0.506968, 0.388224, 1.951980, 0.747297, 2.460152, -0.370456, -0.630324, 0.490673, 0.409630, 0.702227, 0.423207, 0.121961, 1.298426, -0.665022, -0.268486, 0.367943, -0.318143, -1.197364, -1.087145, -1.284371, 0.193698, 0.764441, -0.358747, 0.217584, 1.368642, 1.682070, -0.656644, 2.121108, 0.140474, -0.542248, -1.315086, -0.321160, 0.254592, -0.611636, 0.494306, -0.441404, -0.230432, 0.242161, 1.094802, 0.304504, 1.049116, -0.995623, -0.031750, 0.865594, -0.595591, -2.007646, 0.228565, 0.851940, 0.996282, 0.012932, 0.097732, -0.055978, -0.068229, 0.452398, -0.087864, 1.856238, -0.158062, 0.230057, 0.485353, -0.942492, -0.380043, -0.816379, 0.995688, -0.872643, 1.285164, -1.911689, -0.943544, 0.792354, -0.171818, -2.967786, -0.990091, 1.190321, -0.433448, -0.971406, -0.981417, -0.471746, 0.283640, -0.480423, 0.338877, -1.099430, -0.410402, 1.026978, 1.925956, -1.210134, -0.587294, 0.890915, 1.964697, -1.618644, 0.598483, 0.161867, -2.640347, 0.422235, 1.855615, -0.686472, 0.878173, -0.955851, 0.735719, 1.537305, -0.624413, 0.769929, -1.639714, 2.081826, 0.293566, -0.253718, -1.571105, -1.678064, -1.024081, -0.960972, 2.148795, 0.429450, 0.789889, -0.546483, 2.601382, -1.037341, -0.772325, 1.159914, 1.414944, -0.531199, -0.709725, -1.056136, 0.072706, -1.138966, 0.426360, 0.453583, 0.189144, 0.174739, -2.751483, -0.862172, 0.703835, 0.690066, 0.871391, 1.386454, -0.508981, -0.686251, 0.985681, -0.616873, -0.412116, -0.659893, 0.497967, -0.562584, 2.579193}, - { 0.403650, -1.014357, 0.574913, -0.445437, 1.094661, 1.134115, 0.288358, -3.385571, 0.796048, -0.249780, -0.558531, -0.122649, -0.784038, -0.550558, 1.465000, 2.474917, -2.028365, 0.037672, -1.641080, 2.301788, 2.071623, 0.529941, -1.252949, 1.237254, 0.581403, -0.412883, 0.124912, 0.372891, -1.263205, -0.131711, -0.016222, 0.011139, 0.032905, -0.899638, -0.115517, 1.845425, -1.015900, -0.241577, 0.755320, 1.847321, 1.040070, 0.645562, 0.458842, 1.458119, 0.492040, 0.553860, -1.059370, 0.916266, -0.071800, 0.298681, 0.924285, -0.578455, 0.852463, -2.131735, -1.582429, 0.266644, -0.066622, -1.542669, 1.645423, 0.162123, -0.861890, 0.204836, -0.949205, -0.534554, 0.187803, 0.319879, -0.461831, 0.973578, -0.110314, -0.245235, 0.296543, -1.703765, -0.904522, 0.698099, 0.408387, 0.474978, -1.206558, -1.632827, 0.700368, -0.393521, -0.479803, 1.813555, -0.199872, -0.132172, 0.177989, -0.350155, -1.085370, 0.329317, 1.423793, -0.597576, 1.364015, 0.026374, -0.347868, -1.509244, 0.412236, -1.668170, 0.335332, -0.205457, 0.000051, -0.995482, 1.260030, 1.582177, -2.220616, 0.018139, -0.070463, -1.000663, 0.738686, 1.008254, 0.791168, 0.457487, -0.511023, 0.654914, -1.290303, 0.233504, -1.667212, -0.580289, -1.596230, 0.121505, 0.119900, 1.126179, -0.776565, -2.421473, 0.913234, -0.512228, 0.156020, 0.242267, -0.156494, -0.352227, 0.568852, -2.372196, -0.558408, -0.814404, 0.803400, -0.450912, -1.039012, 1.618778, -0.928862, 0.124976, 0.313682, -0.113927, 1.977735, -0.319704, -1.107360, 0.145451, 0.636119, -0.118886, 1.906191, 0.576585, -2.355120, -1.030013, 0.398517, -0.249832, -1.228368, 1.194110, 0.999952, 0.335488, 1.686971, -1.345639, -1.161981, 0.321674, -0.010277, 0.621946, -0.543480, -1.836735, 0.252794, 0.207638, -1.201019, -0.569695, -0.869720, -0.024617, -0.319028, 1.334856, 0.202437, 0.156878, -0.675716, 1.020870, 1.567374, -2.376426, -0.006889, -2.060126, 0.289579, 0.646099, -0.299576, 1.220229, 0.699140, -0.316892, 0.279181, 0.645902, -0.917055, 2.099333, -0.108554, -0.588589, -0.262278, 0.076212, -0.900526, -0.588247, 0.277803, -0.862968, -0.556489, -0.720162, 0.836842, -0.458211, 0.407476, 3.323483, 0.102982, 1.435021, -0.107586, 2.581338, 0.884011, -0.151865, -0.985982, 2.176918, -1.975165, -0.709848, -1.878093, 1.787065, 1.624997, -1.110798, -0.035640, -0.286764, 0.573791, -1.434333, 0.330872, 0.001660, -0.349379, 2.340239, 0.384685, -0.383720, -0.524242, 0.446390, 1.453213, 1.073712, 0.367489, 0.854753, 0.401788, -0.268169, -0.795803, 1.344657, 1.914867, 0.060212, 1.342665, 1.844248, 0.683149, 0.844919, -1.045163, -0.749471, -0.938539, 1.070481, 0.216803, 0.276765, -1.007369, -0.094269, 1.749082, -1.110859, 0.876878, -0.720469, 1.077733, 0.797991, 0.598824, 0.367988, -1.418543, 0.805829, 0.141320, 0.816281, -0.102348, 0.544938, 0.949649, -0.041311, -0.848627, -0.167435, -1.061705, 1.722685, 1.909846, 0.945638, 0.383591, 0.481468, -0.980928, 0.801423, 0.775630, 0.118020, -0.707412, -0.690296, -0.623419, 0.476887, -2.095384, -0.170983, 0.268854, 1.187011, 1.044914, 0.860511, -1.358630, -0.401680, -0.106810, 0.366891, 0.110413, -1.553775, -0.005772, 0.179523, 1.446954, 1.863318, 1.373255, -0.296341, 0.531260, 0.763358, 0.856919, 0.251658, -0.874166, -0.297233, 0.612500, -0.404567, 0.358791, -0.794084, 0.358868, -0.479656, 0.432944, -1.300818, -0.007985, 1.816262, -0.320376, 0.716702, -1.205585, -0.434012, 0.308615, -1.479865, 0.218971, 0.648748, -0.316473, 1.573821, -2.559482, -1.362501, -0.559912, 2.069263, 1.614291, 1.455573, -1.171642, 0.189204, -0.316051, -1.499253, -0.572555, -0.057391, 1.766878, -0.515420, 1.623991, 0.963558, 0.531500, -1.596240, -1.151685, -0.775070, 0.196245, -1.126315, -1.547278, -0.810357, 1.497284, 0.670666, -0.493768, 0.259942, -0.285163, 0.452725, -0.943477, 0.819788, 0.523223, -0.898829, -0.041125, 1.404306, 0.002926, 1.286466, -1.065030, -1.354182, -0.218270, -0.474482, -2.351792, -0.119771, -1.437854, 0.402988, -0.829463, -0.336072, 0.104880, 1.382572, 0.832138, -0.826629, -0.441240, -0.957771, 0.449953, -0.016467, -0.127841, -0.461525, 2.356978, 0.397976, -0.370878, -1.734662, -0.017854, -0.048064, 1.897087, 0.141245, -1.561147, 1.435536, 0.324683, 1.141221, 0.045720, 1.228539, 0.786667, 0.322392, -0.145924, -0.433266, 0.668625, -0.337349, 0.469963, -0.821507, 0.361637, -0.185504, -0.226764, 1.463808, -1.170744, 0.962554, -1.067644, 0.680177, -0.352000, 0.766491, 0.368286, -0.041368, -0.185891, 0.572279, 0.475622, -0.015614, 0.595553, 0.312691, -0.444387, 0.858805, -0.714035, -0.860998, 1.232973, 0.746909, -0.146962, -0.097159, 0.017668, -0.773621, -1.153864, -0.551942, 2.250875, 0.417342, 1.060219, 1.964819, -1.127420, -0.828311, 0.896610, 0.378337, 1.623264, -0.317616, 1.352037, 0.434727, 0.917286, 3.294066, 1.122401, 0.039238, 0.805987, -1.854270, 1.640013, -0.823682, 0.548888, -1.544348, -0.260741, -0.160354, -0.800431, 2.378434, -0.331215, -0.166094, -0.193455, -0.147849, 0.551494, 0.756349, 0.387109, 0.814995, -0.801545, -0.932988, -0.046805, 0.264169, -0.673894, -0.563174, 0.634202, 0.199476, 0.222129, 0.324260, 0.438683, 0.689621, 0.473255, -0.577350, -1.890997, -0.498742, -1.030212, 1.960762, 0.426586, 0.799986, -0.304973, -1.334436, 0.441415, -0.361671, -0.153559, 0.279821, -1.035372, -0.395245, -1.655331, -0.484320, 0.327468, -0.816196, 0.403930, -1.319878, 0.138421, 0.289832, 1.316994, -0.656594, -1.419364, 0.461996, -1.002195, -0.715450, -0.714658, -0.315496, 0.496665, 0.684950, -1.976423, -2.019666, -2.141942, -0.067594, 0.115619, 0.227518, -1.205330, 0.339143, 0.594462, 0.806198, -0.402049, 0.289432, 0.012881, 0.352648, -0.279749, -0.061365, 0.388821, -0.358784, 0.764064, -0.321759, -0.625129, 0.261736, -0.345302, 0.798635, -2.688097, -0.993953, -0.338664, -0.069779, -0.597257, -1.847885, 0.280960, -0.002756, -1.244031, -0.313816, 0.144402, 1.648641, 0.496644, 0.579856, -1.757140, -1.638650, -0.629387, -1.456585, 0.692796, 2.217984, -0.594434, 0.437397, 0.405732, 0.033633, -1.318801, 0.384458, 0.451332, 1.184789, 1.466613, 0.327402, -0.603376, 1.002395, 1.427166, 0.494772, -0.720510, 1.444688, 0.093412, -0.252758, 0.298626, -1.023951, 0.757852, 0.265532, 0.522633, -0.577624, -0.223571, -0.424457, -2.437884, 0.037673, -0.313798, -0.877012, 0.058171, 0.299391, 0.457107, 1.108758, -1.004998, 1.108680, 1.092108, 0.347071, 0.561858, -0.309738, -1.961865, 0.067770, 0.208781, 1.406564, 0.079408, 0.292537, -1.290361, 0.522549, 0.417226, -0.124813, 0.921581, 0.995435, 1.536781, 0.655386, 0.403072, -0.741236, 0.258980, 0.920533, -0.233766, -1.730940, -1.213816, -0.171870, -0.270637, 0.124970, 0.417329, -2.067523, -0.100395, 0.346188, 1.321396, -1.070765, -0.207533, -1.659396, 1.943506, -1.032507, 0.448917, -1.258586, -1.352016, 0.256929, 0.078243, 0.199747, -0.261881, -1.095747, -0.041415, 2.314274, 0.125063, -0.875276, 0.007655, -0.224708, 0.067192, 0.510492, 0.054327, 0.309587, 1.689233, 0.332936, -0.663006, 0.508924, -1.402498, 0.113803, 1.751177, 0.089091, -0.581800, -0.690685, -0.698377, 0.789543, -0.264834, 0.819967, -0.179253, 0.597610, 1.024996, 1.777037, -0.101047, 0.818741, -1.127099, 0.202876, -0.545788, -1.996230, 0.285502, 0.739056, 0.348153, -1.570766, -0.845416, 0.577325, 0.532560, 1.448241, 0.951012, 1.601069, 0.562329, 0.912995, 2.233775, 0.242845, 0.827675, 0.323510, -1.859925, -1.202888, -0.476400, 0.429710, -1.308589, 0.295224, 0.612134, -1.331652, 1.018703, -1.283876, 0.760105, -0.676802, 1.605096, 0.842045, -0.210628, 0.240826, -0.633423, 0.516157, 0.184192, -0.200448, -0.744881, 0.551060, 0.694408, -1.253124, 0.203826, -0.277176, -0.320803, -1.490409, 0.798990, -0.853038, -1.508126, 0.559247, -0.055065, -0.525157, 0.703393, 0.964516, 0.226263, 0.087568, -1.247614, -0.031154, 0.372990, -0.008329, 0.671473, -0.466580, -0.984668, -0.266251, -1.040791, -0.328515, 0.523336, -0.061269, 0.136050, 1.734326, -1.684678, 0.097109, -0.033681, -1.866523, -0.114286, 0.483032, -0.783239, -0.848321, 1.238794, 0.073016, 0.990971, -0.305485, -0.471023, 0.419819, 0.859822, -0.822961, 0.733795, -0.627316, 1.533442, 0.441122, -0.011299, 0.125103, -0.028121, -0.354656, -0.321765, 0.612309, -0.623230, 0.699508, -0.671007, 0.173559, -0.634868, -1.128972, -0.529348, 0.551161, 0.127342, -1.614116, -1.543403, 1.040704, -0.874271, -0.323190, 0.791401, -1.117346, -1.268923, -1.496959, -0.322501, -0.691180, -0.878479, -0.389889, 0.224996, 1.052182, 0.814613, -0.203115, -1.430450, -1.156906, 0.093334, 0.268751, -1.231103, 0.358831, 0.717739, -0.526319, -0.871801, 1.118623, -0.286269, 0.807651, -0.171898, -0.244346, -0.292616, -0.312339, -0.778441, 2.283582, -1.153663, 0.010582, 0.292626, 0.637879, -0.395363, 0.652680, -0.170944, 0.261480, 1.018349, 0.420863, -1.273513, 0.226659, 0.211982, 0.768227, 0.624927, -0.387252, -1.259928, 1.280543, 1.144495, -0.764596, 1.433049, 0.012981, 0.835417, -0.245949, -0.243545, 0.144518, -0.992883, -1.044753, 0.438425, 0.253992, 0.453029, 0.501885, 1.681062, -0.684413, 1.024482, -1.231547, -0.223500, 1.481364, 2.259431, -0.010872, 1.206360, -0.518804, -1.566448, 0.224529, 1.407457, 0.205682, -1.231488, -1.093900, -0.864383, -0.470304, -0.283235, -1.523998, 0.588132, 0.799795, 0.540549, 1.298360, 0.432368, -1.537464, 0.926389, -0.242382, 0.376326, -0.084512, -0.614499, 0.592639, 0.924944, 0.553291, 1.157093, 0.221752, 1.283735, 0.506319, -1.305093, 1.103942, -0.066378, -0.649467, 0.468847, -0.823644, 0.677119, 0.257429, 0.052998, -1.195108, -0.225365, 1.553572, 0.409460, -1.194006, -0.572291, 0.947205, 1.586773, -0.563282, -0.075441, 1.123739, 0.475328, 0.334366, 0.414407, 0.373830, -0.429325, -0.905962, 1.032345, 0.849797, 0.199190, 1.287890, -1.264970, 0.501707, 0.598815, -0.456416, -0.820294, 0.189219, -0.780710, -0.884509, -1.518949, -0.315514, 2.512309, 1.348925, -0.220670, 0.183711, -0.129030, 1.156924, -0.672819, -0.987780, 0.147582, -0.565920, -1.716531, -0.224108, -2.168154, 1.186326, -0.930835, -0.512965, 0.973275, 1.725040, -1.534523, -1.010800, -0.701094, 0.520839, 0.597366, 0.391436, 0.460181, -1.120708, -0.081569, -0.907186, -1.543816, 1.838788, -0.772729, 0.153728, -0.081366, -1.700483, -1.361371, -0.268214, -1.442124, -0.541602, -1.692319, -1.569642, 0.638361, -1.876925, -1.571427, -0.450344, 0.960780, 0.253591, -1.229348, -0.841928, -0.613002, 2.213668, -0.902062, -0.537889, -0.204258, -0.207101, -0.240051, -0.698893, 1.015808, -0.788519, 0.090246, -1.647101, -1.219294, 0.371430, 0.608064, -1.007720, -0.716862, -1.317105, 0.370004, -0.503596, 0.233341, -0.576625, 0.049660, 0.310022, 0.207220, -1.493660, 0.074741, 0.043931, 0.241622, 0.183654, 0.433645, 0.856215, 0.987696, 0.526214, -1.911603, 0.701377, 0.199308, 0.161817, -0.049446, -0.958827, -1.441590, -0.922162, -0.459064, -1.387224, -1.526984, 1.527146, 0.832633, 0.728032, 0.160987, -1.868734, 2.432333, -1.181181, -1.075494, 0.168446, 0.258317, 2.488678, -0.857732, -0.264983, -0.092322, -1.020084, -0.417596, -1.739162, -0.284714, -0.278035, -0.912109, 1.192221, -2.834740, 1.489730, -0.990097, -0.749150, -0.168077, -1.074848, -1.793903, -0.215131, -0.387670, 0.984328, -0.581987, -1.598644, -0.155541, 0.828786, -0.025096, -1.434835, 0.269190, 1.554233, 0.956460, -1.707802, 0.942780, -0.044878, 1.581209, 0.589502, -0.656406, -0.273697, -0.694312, -0.804025, -1.068324, 1.002741, 1.254451, -0.241819, -1.008920, 0.190989, 0.531043, -0.172930, -0.721633, 0.157305, -0.574001, 0.618801, -2.038373, -0.530031, -1.931389, -0.718863, -0.379351, 0.325355, -0.592091, 0.983623, -0.773068, 0.234150, 0.286031, 0.331320, -0.480235, 0.465021, 0.915267, 0.262110, 0.844248, 2.533713, 0.277368, 0.150545, -1.431177, -0.495116, 0.534041, -0.728234, -2.267874, 2.226621, -1.051680, -0.308458, -0.170056, 0.651044, 0.751770, -0.786996, -0.252661, -0.073379, -0.309679, -1.085102, 0.141903, 1.199780, -0.167697, -0.828849, -0.933525, -1.206744, -0.994324, 0.618158, 1.827536, 0.011788, 0.549670, -0.082109, 0.295925, 0.687917, 0.158110, -0.425561, -0.562384, 0.056593, 0.060151, 1.945135, -0.558745, 0.291663, -1.522245, -0.425124, 1.756151, 1.150879, 0.876375, -1.069071, -1.506176, -0.391403, -0.481686, 0.952427, -0.979452, 0.181769, -0.235477, -0.694768, 0.409172, 0.041034, -0.592468, 0.821789, 0.654778, 1.333243, -1.323900, 1.275142, 0.466929, -1.028773, -0.752241, 0.316623, 0.989202, -0.946536, -0.016043, 1.382814, -0.641642, 1.937514, -1.397096, 0.774539, -1.020369, -1.626969, -1.614144, 0.063889, -2.955909, 1.438022, -0.121510, -0.326616, 0.646469, -1.078933, -0.611948, 0.993523, 0.585306, -0.615415, 0.792652, -0.846684, 1.232522, -0.447847, -1.078540, -0.759884, -0.178300, -0.424913, -0.106878, -0.029422, -0.570760, 0.416001, -1.114337, 0.419540, -1.296435, 0.057007, 1.049508, -0.445451, -0.920846, 0.933629, -1.290948, 0.597998, 0.191925, 0.478656, 0.404023, -0.098274, 1.008412, -0.231724, 0.077271, 2.410440, 0.114034, -0.833849, 0.083616, -1.800023, -1.332195, 0.436132, 0.880319, 0.543931, 1.060894, -0.555089, -0.467839, -0.504384, 0.691468, 0.813803, -0.757775, -0.922457, 0.806198, -2.327282, 0.209234, 0.795627, -0.093983, 1.289781, 0.594643, -0.719695, 0.433027, -0.284932, -1.542211, 0.900129, -1.230149, -1.902017, -0.441231, -1.210279, -0.197998, 0.282436, -1.650350, -0.199126, 0.838268, 0.249907, 1.528176, 1.499617, -0.824535, 0.011667, 1.582711, 0.025462, 0.407588, -0.424479, -0.355147, 1.418948, 0.190102, -0.229875, -0.823422, 0.656396, -0.802241, -0.539804, 1.084687, -1.191797, 0.032747, 0.854266, 1.138491, -0.727793, -0.744864, 1.115566, 0.787275, -0.245471, -0.887163, -0.306688, -0.773476, -2.166873, 0.675027, 1.941835, 0.378349, 0.271412, 0.613518, -0.573172, 0.335306, 2.135315, -0.194711, -0.731636, -0.703300, -1.779873, 1.021432, 1.722873, -0.100871, -1.051369, -0.612717, -0.362892, -1.261449, -1.470752, 0.116421, -1.879108, -1.051846, -0.058405, -0.248763, 0.630028, -0.427359, 0.370717, -0.380314, -1.685083, 2.028761, -0.627172, -0.736063, -0.000232, -0.378465, -0.320739, -0.702141, -0.851224, -1.683412, 0.275351, 0.765837, -0.056659, 0.490378, 0.579577, -0.789724, 1.422014, -0.854742, -1.209662, 0.969723, -0.812093, 0.088157, -0.433541, -1.857995, 1.764611, -0.560070, 0.921676, -0.128485, -0.641978, 0.089977, -1.137541, 0.851115, 1.717667, 0.204153, -1.386338, -0.012240, 0.538882, 0.316104, 1.279872, -0.343778, -0.550929, -0.157596, -0.831566, -0.736403, -0.728087, 1.325507, 0.223421, -1.793291, -0.561975, -0.090290, -0.645108, 0.190792, -0.997602, 0.918327, -0.977693, -0.693141, 0.863141, 0.496938, 0.797128, -0.837729, 0.116220, -0.645902, -0.244782, 1.608342, -0.599335, -0.656318, 2.884092, 0.839951, -0.704683, -0.946596, 3.295261, 1.409860, -0.536865, -1.355396, 0.710234, 0.969652, -1.663202, -0.964779, -0.938305, 1.159045, 0.836793, -1.099281, 0.116668, -0.801463, -0.670267, 0.087341, -1.858877, 0.168464, 0.413383, -0.738234, 1.079499, 1.444205, 2.041893, 1.291946, 0.784241, -1.111100, -0.644108, -1.241789, -0.491682, -0.166509, 1.551962, -0.450500, -0.845400, -0.729360, -0.345683, 0.837829, 0.478985, 0.678351, -1.389608, 0.534791, -0.089142, -0.114093, 0.093009, -0.340041, 0.250614, -0.151415, -1.652256, -0.853159, 0.774902, 1.958038, -1.450961, -0.859910, 0.546809, -0.477893, -0.211489, -0.876248, -0.821221, -2.123207, -1.492650, 1.156059, 0.895164, -0.738948, 0.233253, 1.905542, -0.079593, -0.155136, 2.305882, -0.273484, -0.566885, 0.279136, -0.395144, -1.230924, 0.272750, 0.270651, -0.571963, 0.910520, 0.725947, -0.309072, -0.023248, -0.562326, 0.640770, -0.278303, 0.731448, -0.351787, -0.960881, 0.942895, -0.472951, 0.529909, -0.355112, 0.847091, -0.494718, 0.429351, 0.483058, 1.133634, 1.167801, -0.264509, -2.373041, 1.109496, -1.287663, 0.294950, -0.287150, 0.939537, -1.278916, -0.620015, -0.146790, 0.294089, 0.609734, 0.119335, 0.123527, 0.130386, 0.734867, 0.234173, 0.659366, 0.238540, 0.579723, 0.680795, 0.246009, -0.951645, -0.795111, -0.065673, 0.544346, 2.934424, -0.533174, 0.977978, 1.103460, 0.868221, 1.463206, -1.697608, 0.287286, 0.334054, -0.649849, -1.654191, 0.684923, 0.523903, 1.758263, 0.877924, -0.934760, 0.274968, 0.213620, 0.001457, 0.056218, -0.555498, -0.270374, -1.752823, 1.047068, 2.734392, -0.466875, 0.287841, 0.737404, -0.647578, 0.417001, -0.542664, 0.527525, 0.459630, 0.172339, -1.172532, 0.509536, 0.621444, -0.610799, -0.415070, -0.509843, -1.658756, -1.093467, -2.126905, -0.518205, 0.067556, -0.553795, -2.878675, -1.575168, 0.319597, 0.574191, 0.078536, -0.180321, 0.247530, 0.967652, 0.925374, -0.160885, -0.844323, 1.234135, 0.336521, 0.661189, -0.542232, 0.670142, 0.683886, -0.436394, 1.447906, 1.129992, -0.634565, 0.082254, -1.142330, -0.096293, 0.767680, 0.893264, -1.237613, -1.126703, 0.728170, 0.575194, 1.240174, -1.768852, 0.536677, -0.252502, 0.486789, -0.171011, -0.257381, 1.307250, 0.229467, -1.236534, -0.787848, 0.061045, 0.031829, -1.014912, 1.439787, -1.135896, 0.291074, 0.018218, -0.963381, 0.878649, -0.205836, -0.046363, 0.759615, 0.043303, 0.178095, 0.652399, -1.565304, -0.659674, 0.454158, 0.224785, -0.039544, 0.466910, -1.408313, 0.039009, 0.668789, -1.829626, 0.164978, 0.965653, -1.894616, -0.171453, 0.575807, 0.311404, -0.256240, -1.144235, -0.314146, -0.101274, 1.469922, -1.595728, 0.688351, -0.058753, 1.599472, 1.346916, 1.141347, 0.402206, 0.509964, -0.447592, 2.039549, -0.264526, -0.483366, 0.212342, -1.211447, 1.127557, -0.175670, -1.582539, 1.916948, -0.418697, -1.361261, 0.701625, 0.836808, 1.694200, -1.922272, 2.785683, -0.001746, -0.582601, 0.569545, -0.059714, -0.413965, -0.237097, 0.410471, 1.614576, -0.518125, -0.150064, 0.185868, 1.248381, 0.290936, -1.017554, -0.546839, 1.598038, 1.252281, 0.408563, -0.105386, -0.918977, -2.108553, -0.873579, -0.054834, -0.482299, -0.023416, -1.716354, 1.028809, 0.106077, -0.867786, 2.341866, -0.244537, 1.083142, -0.780861, -0.114854, 0.281570, 0.657147, -0.745454, -0.118075, 0.224655, -0.130497, -0.018081, 0.594210, -0.880708, -0.736090, 0.405108, 0.248463, -0.103432, 0.804367, 0.050547, -0.297901, -0.106650, -0.665342, -0.607072, -1.426338, -1.312137, 0.316742, 0.857733, -1.819282, -1.744692, 0.193747, 0.303592, 0.545289, -0.216144, -1.621939, 1.609917, 0.008518, -1.416048, -0.386168, 0.811665, -1.138723, -0.719371, -1.223980, -0.565182, -0.620800, 0.978672, -0.265252, -0.147947, -0.574011, 1.317613, 0.550122, -0.927371, 0.267496, -0.434137, -1.126929, 0.222792, -0.093836, 0.573814, 0.684660, -0.289461, -0.673617, 0.031222, -0.390207, -1.875464, 0.650939, 0.063618, -0.018508, 0.385772, 1.324701, 1.379135, 1.818650, -1.064153, 0.362183, 0.341372, -1.406471, 0.069905, -0.350700, -0.223056, -1.918347, -0.652705, 0.292548, -0.410094, -1.077892, 0.156263, -0.972401, -1.905446, -0.268428, -0.407302, 0.500146, -0.625782, 1.044492, -1.250173, 0.863476, -0.215112, -0.108704, -1.235056, 0.944494, 0.107667, 0.589667, -0.117342, 0.155034, -1.884534, -0.539770, -1.125896, -0.883840, -0.611908, 2.753627, 1.652613, -0.767095, 0.385451, 0.051766, -1.323072, 0.049867, -0.512946, 0.827393, 2.294214, 1.477571, 0.716674, 0.679587, 1.309817, -0.388980, 1.676723, -0.992685, 0.623931, -0.577933, 1.296038, -0.282157, 0.776775, 0.124468, 0.907620, 1.804456, -0.895438, -0.740157, -0.380904, -0.495472, 1.646763, 1.178004, -0.521876, -0.624476, -0.080065, -0.095494, 0.968431, 0.473506, -0.457273, 0.994473, -0.367438, 1.373465, 1.127022, -0.316771, 1.893742, 0.446486, -2.047539, 0.031481, -0.257734, -0.253363, 1.331671, -0.839316, 0.805521, -1.042728, -1.186315, 0.001378, 0.486470, 1.802370, 1.272869, 0.183356, -0.741275, -0.151712, 1.621823, 0.934742, -0.702545, -0.673393, -2.141491, -0.376082, -0.301698, -0.468269, -0.848141, -0.757061, -0.441397, -1.714403, -0.864817, -0.567808, 0.395281, -1.035108, -1.244881, 0.982442, 0.234864, 0.657748, 0.201716, -0.239845, -0.170057, 0.923069, -0.515938, 0.736369, -0.373563, -0.594491, 1.300918, -0.057348, 1.134259, 0.608627, -1.007348, 0.478846, 0.580348, 0.017821, -0.072000, 0.517446, -1.714189, 1.895427, -0.555520, 1.415054, 0.982356, 0.232862, -0.075252, -0.119670, 0.116894, 0.035425, -2.981077, -0.642234, -0.490223, 0.949176, -0.492867, 0.386664, 0.604940, 0.153660, -1.455345, -0.360739, -0.516151, -0.742326, -1.070877, 0.902510, -1.352179, 1.136226, 1.352921, 0.699752, 0.359441, 2.592792, -0.887433, -0.123843, 0.503732, -0.683479, 0.591829, 0.616676, 0.893981, 1.239937, -0.835748, -0.921213, 0.471332, 1.959629, -0.712119, -0.876056, -1.461577, 0.725497, -0.433947, -0.280278, -0.759501, 1.579697, -0.242384, -1.185813, 1.214715, 0.841201, -0.943776, 0.155406, 0.286934, -0.252360, -0.349418, 0.310711, -1.282880, 0.383753, -0.354927, 0.549806, -0.237914, -0.019383, 0.008966, 0.795499, -0.132362, -0.315418, -0.290750, 0.201498, -1.654917, -1.539167, 0.193551, -0.167884, 0.742253, 0.493177, 1.316069, 0.696697, -0.343644, -1.723649, 1.641208, 1.192964, -0.551287, 1.309234, 0.366176, -0.507910, -0.549484, -1.331046, -0.077263, 0.817586, -0.582795, 0.197074, -0.293068, -0.179441, 1.826765, 1.214504, -1.421991, -1.394491, 0.509878, 0.302011, 0.726037, 0.486916, -1.390760, 0.129507, 0.246152, 0.542568, -0.243816, -0.920033, -0.022152, -0.122849, -0.034907, -1.010447, -2.115669, -0.921480, 0.363158, 0.298078, -0.264359, 2.521276, 0.469212, 1.964345, 0.562863, -0.565281, 0.617093, 1.008149, 0.614923, 0.670064, 0.662407, 2.162896, -1.506033, -1.414300, 0.915611, 1.129178, 1.151091, -0.407912, -1.311165, -0.946797, -1.872198, 1.717881, -0.220359, -0.915865, 0.937339, -1.567913, -0.452273, -0.573111, -1.037161, -1.147535, -0.398549, -0.245396, 0.223974, 0.712700, -0.396805, 1.659639, 0.258945, 0.061332, -0.099915, -0.386359, -0.138077, -2.285939, -2.107903, 0.260845, 0.260295, -0.107461, -0.277447, 2.913926, -0.736411, -1.028210, -0.176374, 1.521541, 0.700929, -1.935581, -0.639139, 0.602713, 2.188656, -1.247290, -0.937184, -0.474168, -0.052560, -0.472749, -1.427891, -1.642530, -0.554331, -1.323366, 0.146956, 0.226637, 0.744074, 0.353701, 1.127897, -0.526748, -1.164095, -0.289418, 2.689822, 2.136349, -0.656709, -0.761043, 1.388401, -1.598813, 0.418309, -1.421558, 0.657747, -0.536230, 0.059853, -0.261367, -0.154115, -0.116551, -0.782348, -0.531219, -2.741324, -0.194774, -0.808758, -0.230346, -1.052592, 0.773294, -0.099241, -1.002693, 0.590679, 2.288377, -0.341220, 0.657274, 0.383222, -0.548760, 0.813253, -0.348239, -0.295838, 0.405406, -0.401578, 1.629204, 1.016865, 1.820713, 0.620749, -0.422787, 1.370819, 0.437397, 2.728343, -0.665351, 0.360643, -2.952486, 0.726280, -0.464092, 1.564664, 1.183746, -0.140077, -1.609305, 0.388781, 1.805430, 0.673783, 0.847742, -1.429641, -0.364561, -0.782296, -0.461391, 0.945367, -0.002263, -1.951044, 0.163468, -1.216889, -0.347887, 0.603077, -2.571118, 0.402727, 0.833914, 2.043092, -1.134621, 0.657550, 0.646142, -1.701417, 1.505809, 0.744325, -0.160547, 0.038150, 0.878490, -0.487961, -0.023531, -1.338219, 0.644638, 1.212874, -0.601670, 0.312677, 2.061152, -0.540609, 0.364667, 0.634646, 0.868277, 0.793666, -0.742269, -0.544547, -1.302459, 0.560828, -0.551382, -0.789269, -1.880177, 0.948593, 1.310579, 1.261896, 1.073440, 0.898310, -0.179731, -1.141158, 0.942666, 0.270296, 0.439961, -0.897617, -1.544970, -0.234612, 0.575016, 1.305525, 0.636647, 0.177148, -0.734641, -2.059326, -2.203162, -0.030725, -2.377880, 0.681216, -0.833386, -0.125028, 0.325196, 0.850329, 1.069324, -0.901739, 1.796688, -1.703425, -0.970516, -0.348875, -0.188258, -2.238509, -0.275880, -0.084813, 0.224025, -0.134691, 0.297070, -1.479561, 0.473431, 0.199697, 0.984612, 0.427675, -1.427747, 1.524924, -1.267863, -0.303976, -0.980761, 1.242003, 0.084785, -0.789370, 0.576805, 0.949141, 0.171224, 0.923626, -0.894551, 0.293951, 2.999224, -0.695536, -0.657224, -0.370457, 0.289485, 0.376630, 0.327050, -0.658003, 1.224362, -1.173111, -0.103859, 1.353293, 0.492534, -1.136925, -0.405728, -1.831111, -1.460551, -0.596232, 0.419152, -0.047052, 0.010094, -1.293542, -0.473344, -1.735135, -0.444567, -1.151635, 2.254477, -0.105680, -1.138938, 0.232102, 0.893697, 0.481107, 0.129821, 0.828834, 0.012631, 2.125962, 0.770060, 1.416905, -1.365304, -1.116700, 1.928549, -0.482531, -1.659604, 1.427824, 0.913770, -1.967791, 0.763760, 1.051851, 0.091184, -0.640880, -0.682313, -1.194793, -1.060970, -0.300702, -0.927257, -0.211245, -0.421115, -0.908739, 0.978105, 1.454828, 0.504301, -1.917201, -1.165814, 1.727954, -2.046449, -1.813825, -2.800429, -1.574381, -0.035876, -0.534210, -1.861530, 0.230464, 1.751231, -0.204038, 0.674686, 0.390044, 0.464456, 1.548922, -0.645087, -1.020081, -0.746528, 0.060918, -0.384667, 0.439998, 1.210240, -0.900052, -0.242748, -0.896840, 1.320688, 0.704749, 0.144492, -1.536981, 0.022620, -1.078140, -0.121028, -0.396926, 1.431968, -0.037225, -0.215811, 0.198981, -0.337709, -0.495669, 0.537513, 0.226481, -0.051115, 1.409801, -0.447711, 1.142646, -0.417949, 0.710524, -0.535885, -0.889719, 1.272967, -1.810272, 1.876250, 0.530862, 0.017543, -1.715143, -0.873434, 0.861819, 0.648042, 0.380872, -0.246158, -0.874763, 1.175764, 1.598093, 1.319488, -1.803118, 0.310229, -1.354173, -0.176996, -0.644531, -0.431836, -1.553841, 0.676229, -1.967339, -0.360646, -1.452337, -0.408455, -0.636573, -0.611551, -0.342793, 0.144527, -1.094639, 0.376491, -1.941913, 0.095123, 0.083729, -2.190884, 0.508485, -1.253052, -0.453907, 0.522360, -0.150098, -0.928572, 1.523357, 0.033463, 0.021376, 0.171265, 0.635548, -0.619018, -1.182319, 0.276227, 0.195062, 1.003434, -0.326149, -0.233598, 0.506441, 0.586626, 1.094506, 0.732796, -1.038504, -0.032688, -0.223191, 0.706378, 1.385335, -0.736105, 1.505928, 0.576942, 1.102368, 0.342808, 0.232175, 0.329078, -0.281622, -0.268113, 0.297442, -1.654862, -1.387284, 0.347010, -0.427002, 1.435983, -0.211988, 1.432677, -0.137043, 0.868494, -1.438739, -0.432645, 0.180190, 0.166272, -1.941954, -0.654251, 0.159904, 0.735305, 1.289666, -0.491510, -0.360136, -0.625220, -0.622546, 0.038664, 1.307312, -1.072097, 1.644663, 1.395235, 0.335790, -2.346597, -1.453871, 0.124641, 0.979782, -0.187530, -0.402526, 1.596517, -1.249949, 1.381190, 1.153673, -0.646039, -1.135743, -2.064886, 0.443188, -0.392404, -0.183575, -0.595350, -0.373553, -1.731477, 0.293917, 0.464925, -0.131654, 0.338280, 0.971592, 0.544083, -0.593729, 0.581391, 0.049570, 0.665698, 1.554073, 2.051040, 1.264994, 0.284753, -0.223940, 0.013025, 1.578663, 0.397423, 0.338771, 0.948901, -0.255468, 0.543271, -1.441572, -1.017584, -2.343974, -0.892020, -1.164765, 0.890379, 0.677515, 0.566318, 2.722571, -0.175620, 0.733549, 2.479710, -1.086199, 1.976917, -0.240016, 0.958143, -0.305520, -0.028627, -0.959700, 0.456449, 2.217017, 2.160115, 0.797643, 1.160221, -0.220677, -0.294599, 0.427451, 0.273464, -0.793952, -1.726198, 0.103973, 1.275484, -0.916343, -0.213839, 0.346862, -0.066235, -1.658777, 1.847968, 0.442934, 0.646220, -1.019012, 0.130128, 0.672232, 0.406632, 0.282525, 1.111466, -0.610471, 0.913907, -0.569503, 0.668567, -0.492053, 0.752004, 0.593907, 1.273272, -1.709688, -1.420430, 0.402947, 0.238491, 1.901797, -1.429218, -1.065302, -0.423841, 0.184660, -1.154388, -1.728662, -0.433297, 0.031642, -1.399173, -2.610458, 0.684569, 0.443293, 0.284231, -0.775240, 0.727082, -0.141152, -1.259207, -0.813588, 1.201866, 1.065534, -1.061569, 0.112190, 0.371255, -2.560068, -1.674337, 0.580230, 1.545776, -0.202455, -0.330252, 0.165186, 0.659836, 0.455610, 1.060875, 0.377072, 0.704615, 0.137726, -0.406939, 0.721694, 2.010913, -0.650981, 0.044983, 1.758263, -0.172722, 1.729487, 0.658749, -1.807022, -0.071710, 0.299541, -0.406716, 1.708485, -0.078615, 0.874915, 0.721516, -0.562142, 0.444970, 0.030435, 1.062719, -0.009797, 0.331812, -0.257507, -0.642826, 1.489980, -1.078856, 0.505459, -0.208200, 1.489289, -1.108806, 0.086110, -1.148330, 0.318746, 0.528346, -1.276897, -1.077130, -1.821224, -0.198135, 0.425110, 1.357034, -1.416233, -1.208188, -0.440489, -2.295060, -0.307250, -0.473740, -0.637878, 0.095922, 0.204680, 0.858249, -0.728034, -0.259860, 1.365026, 0.038359, 1.619341, 0.641033, -0.848915, -1.765775, 0.434685, -0.485445, 0.620264, 0.233168, 0.496633, -0.635425, -0.444807, -0.293892, -0.478920, -0.056509, -0.207709, -0.136660, -0.903967, -1.348821, 1.734755, 0.031791, -2.587564, -1.821445, -0.308052, -0.578963, 1.397245, 0.374941, -1.060330, -0.507319, 0.208604, 1.536535, -0.398829, 1.179931, 1.059424, -0.509376, 0.139877, -1.214148, 1.960906, -0.437455, -2.009377, -2.032501, 1.029385, 0.170179, 0.449437, -0.450656, -0.991511, 0.349132, 0.299581, 1.826763, -0.655495, -1.309017, -3.002771, 0.224369, -0.670101, 0.213385, 0.016603, 0.961343, 0.711519, -0.624134, -0.021240, 0.150877, -0.735731, -0.675393, 1.166867, -0.269430, -1.837347, -0.327538, -0.292053, 0.297637, 1.412328, 0.464034, 1.005424, -0.688567, -0.220827, 0.474712, -1.795709, -0.663337, 0.870004, 0.356175, -0.744858, -0.579476, 1.464894, -2.458880, -2.249442, -0.462045, 0.217238, 0.999104, -0.355552, 1.226544, 2.202270, 1.994216, -0.442910, 0.269814, -2.211737, 0.240029, -0.805894, 0.925663, 0.390079, 0.386544, -0.357518, -1.425346, -0.356111, -0.918788, -0.937429, -0.628619, 0.987202, 1.011958, -0.040734, 1.572538, -0.916034, 2.142630, 0.323526, 1.590794, -0.807134, -0.596215, 0.258800, -0.790889, 0.779883, 0.138611, 0.484443, -0.168145, -0.268714, -0.806645, 0.946017, 0.591252, -1.167035, -0.064037, 1.010003, 0.563049, -1.123573, 1.294540, -0.051518, -0.677284, 1.036607, 0.531620, 0.018017, -0.559476, -1.076060, -0.489468, -0.018593, -1.474160, -1.086951, -0.921499, -0.164137, -0.887251, -1.057573, 0.151256, 0.260231, 0.698099, -0.030594, -1.768641, 1.466413, 0.388410, 0.932538, -0.505031, -0.783742, 1.102085, 0.610680, 0.635592, 0.101899, -0.463534, 1.837103, 0.763778, -0.777260, 0.678067, 0.397137, -1.613219, 1.638842, 1.561704, -1.408138, -1.536592, 1.031409, -2.367192, -0.646976, -1.477342, 0.692510, 0.740599, 0.570904, -1.396710, 0.152288, -0.246136, 1.575269, -0.718980, -0.691288, -0.581177, 0.111762, -0.696594, -1.287438, 0.232954, -0.648621, -1.013484, -1.421856, 0.120184, 1.421674, -0.360872, -0.531505, 0.151806, -0.274982, 2.109722, -1.779857, -1.680797, -0.934375, 0.594241, 0.779384, -2.626769, -2.076733, -1.155985, 0.105148, 0.452280, -0.040999, -0.709963, -0.939537, 0.499941, 0.180139, 0.310072, 1.806872, -1.756247, 0.144770, 0.233338, -0.135717, 0.326980, -1.926322, -1.848879, -0.900480, 0.355452, 0.311934, 0.372904, -0.712604, -0.756677, 0.075465, 1.003045, 0.948611, 0.462486, 0.047251, -1.408994, 0.144499, 1.576225, -2.117524, 0.098124, -0.085894, -0.195769, 1.879621, 0.130960, -0.452396, 0.667443, 1.466419, 1.820750, -0.161807, 2.002359, 0.659923, 0.297108, -0.459391, -1.134038, -0.343862, 0.777568, 0.889402, -0.766731, 1.259474, -0.071255, -0.056483, -1.013449, -0.229199, 1.679355, 0.360851, -0.735641, -0.556593, 0.757427, -0.123547, -0.908905, -0.366782, -0.265149, -0.905410, 1.303287, 0.269712, -0.324711, -0.782275, -0.314567, 0.770087, -0.615491, -0.502674, -1.111622, 1.272049, 0.341114, 0.850730, -0.189032, -0.442412, 0.828035, -1.326719, 1.966919, -0.974363, 1.238002, 0.687884, 1.501663, -0.562896, 0.242446, 0.403003, -1.794563, -0.956314, 0.594500, -0.219098, -1.063674, 0.077278, -0.096761, -1.331001, -0.385402, 2.303776, -0.174691, 0.843084, -0.558374, -1.760521, -1.111174, 0.748879, -0.625377, 0.121835, 0.331567, 0.883143, -0.324301, 1.132352, -0.038810, 0.220479, 1.980888, -0.589401, 1.040358, 0.135460, -0.554857, 0.726069, -0.462902, -0.043163, 0.417688, 0.265841, -1.294165, 0.812285, 0.526812, 1.840654, 0.239063, 0.294933, -0.487954, 0.692051, -1.269333, 0.745254, 0.223149, 1.056486, 0.031604, -0.857991, 1.029837, 1.733909, 1.192550, 1.580611, -0.746985, 0.134219, -0.050879, 1.376632, 0.748439, 1.244129, -1.376228, 1.563825, -0.012375, 0.441585, 0.476368, -1.023567, 0.259841, -0.551011, 0.759149, 0.381059, -0.272999, -0.559508, -0.409139, 0.636831, -0.248852, -0.137838, 0.781860, 0.141871, 0.200331, -1.981182, 0.465103, 1.055211, 0.094747, 2.063927, 0.351936, -1.149270, 0.897396, 1.751979, 1.120999, -0.026925, -0.490009, -0.445049, -1.543464, 1.282042, -0.739783, 0.719865, -1.592278, 0.937762, 0.201059, -1.547987, -1.255977, 0.885717, -0.522399, 0.220323, 0.037051, -0.069133, 0.788517, -1.048137, -1.492292, -2.161613, 1.505137, 0.740686, -0.133142, -0.172486, 1.256635, -1.400967, 1.242837, -0.559335, -1.077442, 2.187645, 0.990782, -0.179737, 0.078305, 0.626391, -1.163145, -0.724571, -1.287627, -1.283305, 0.950602, -1.361256, 0.170686, 0.602111, 1.473908, -0.046966, 1.093398, 1.192551, 0.377511}, - { -0.881922, -0.441475, 0.095216, 0.277822, 1.187204, -1.899612, -1.098378, -0.188219, -0.271675, -1.551891, -0.694090, -0.453620, -0.786726, 1.505944, 1.583824, -1.574230, -0.304759, 0.082964, -1.178429, -0.629984, 2.040542, 0.266754, 0.645194, -0.043418, -0.621926, -1.786077, 0.353232, 0.872558, -0.198297, 1.423826, -2.951744, -0.838225, 0.016662, -0.878651, 0.130458, 1.204120, 0.066266, -1.226935, 0.349790, -0.720848, -1.161333, 1.963225, -2.628083, 0.531781, 1.282090, -1.424954, -1.642135, 0.369479, 1.144751, 0.628271, 2.102018, 1.675541, 0.036108, -0.094256, -0.484588, -0.324516, -0.267067, -1.708106, 1.456672, -0.512451, -1.771174, -0.496636, -0.203187, -0.209032, 1.417528, 0.201170, 0.054343, -2.352902, -0.171269, -0.287056, 1.479919, -0.272208, 0.584413, -0.601323, 0.727503, -0.037182, -0.312569, -0.635195, 1.601334, -0.317933, -1.028278, 0.793352, -0.553760, 0.686380, -0.153927, -0.516167, -0.268562, 0.578627, 0.000580, -0.656903, 0.650811, -0.293908, 0.090713, 0.988020, 0.118716, 0.568436, 1.097589, 0.480402, -0.497558, -0.189817, -0.484848, 2.097325, 0.618577, 0.307531, -1.179443, -0.745780, -0.141165, -1.032444, -0.472793, -1.637769, 1.155855, -2.265675, -1.459298, 0.429757, -1.820618, -0.976688, 0.583280, -1.109002, 0.413996, -0.201739, 0.098282, -1.434527, -0.821132, 0.263854, -0.403834, -0.214608, 0.195771, 0.508480, 1.015544, -1.334033, -0.772913, 0.230757, 3.171164, 0.801644, -0.984648, -0.408775, 0.892276, -0.084682, -0.262540, -0.343953, 0.642774, -1.517211, 0.940200, -1.896136, 0.661245, 1.461544, -0.757805, 0.558368, -1.080584, -1.347332, 1.331923, -0.660617, 0.573280, -0.064832, 1.460700, -0.746018, 0.185523, 0.413879, 0.677270, -0.897426, -1.920292, -0.003490, 1.192940, -1.437579, 0.483549, -0.106602, 0.252345, 1.694844, 1.560199, -0.210364, 1.719331, 0.905494, -0.497101, -0.240751, -0.306421, 0.300991, 1.412517, -0.933404, -1.695450, -0.062303, -0.181337, -1.980962, 0.218808, 0.477373, 0.216669, 1.302895, -1.221518, 0.516993, -0.137677, 0.861115, 0.804766, -0.933367, 0.705496, -0.172357, -0.194780, 0.133321, 0.351466, 0.255344, -0.946124, 0.246271, -0.521414, -0.119903, -0.252033, -2.999929, 0.311372, 0.270962, 1.132810, -1.223415, -1.326929, 0.800213, -0.263988, 0.902403, 0.434560, -0.847739, 0.840797, 0.049833, -2.186665, 0.994462, 1.004662, 0.174228, -0.339594, 0.704017, 0.014614, -1.282498, 0.544331, -0.208560, -1.191696, -0.388204, -1.030882, -0.092887, -0.504820, -0.957989, 1.733145, 1.145290, 2.039025, -1.800519, 0.250587, 0.222131, -1.224767, 0.515113, -0.414525, -1.387028, 0.572231, 0.778980, 0.008108, -0.583075, -0.444417, -0.388208, -0.339023, 0.195905, 0.169182, 0.000530, -2.999993, 0.425017, -0.492439, 1.106103, 1.214372, -0.636495, -0.623705, -2.252326, -0.505196, 0.387389, 0.648679, -0.301876, 0.759134, 0.649238, 1.572919, 0.352764, -0.476879, 1.293139, 0.741614, -0.625515, -0.998262, 0.394698, -0.559627, -0.623834, -0.597203, 1.062729, -0.217285, -0.083428, -0.791258, 1.285348, 1.547900, -0.833103, 0.266786, -0.348633, -1.148197, -1.081452, -0.633465, -0.219719, -0.603646, -0.432448, 2.414271, 0.521440, -0.969086, -0.778761, -0.632293, -1.418125, -0.664495, 0.678055, 0.149162, 0.826395, 0.953730, 1.915789, -0.635126, -0.507180, 0.874297, 0.941489, 0.139489, -1.183554, -0.565548, -1.180420, -0.375897, 0.077466, 0.857649, 0.318530, -0.080861, 0.792615, -0.022289, 0.502704, 0.473651, -0.080403, 0.815462, 0.114641, -0.324211, 0.287149, -1.638044, 0.832413, -1.156925, -0.738518, -0.043875, 0.900965, 1.144693, 0.173568, 0.123190, 0.067719, -0.333825, 0.267890, -1.058012, 1.336774, -0.450500, 0.561924, 0.340607, 0.124565, -0.123169, -0.558627, -0.643291, 0.178710, -2.703767, 0.900895, -0.133826, 0.534285, 0.772143, 0.709713, 1.960788, -0.863720, -0.945287, -1.015019, -0.270637, 0.853249, 0.263402, -0.417374, -0.469738, 1.077232, -0.789801, 0.254249, -0.244236, 0.374345, 0.077507, 4.163978, -0.214677, -0.660921, -1.183298, 0.843937, 0.190921, 1.076918, -1.637761, -0.540155, -0.870821, 0.501623, 0.234239, 0.802983, 0.965028, 0.526389, 0.623481, 0.645466, 0.517610, -0.027501, -0.126191, -1.393792, -1.366363, -1.586830, 0.162576, 0.014585, -0.089766, 0.798340, -0.382945, -0.442585, -3.508447, 0.053691, -0.261107, 1.081604, -0.713828, 0.651608, -0.537735, -0.725444, -0.893032, 0.818583, -2.692069, -0.181880, 1.471898, -2.103962, -0.923691, -1.294132, 0.846215, 0.863169, -0.868037, -0.216476, 1.026033, -0.597380, -0.400197, -0.157312, -0.242278, 0.750249, -0.697439, -0.653707, 1.269485, -0.184855, -0.268337, 0.452186, -0.704510, -0.733193, 1.460170, 1.037376, 0.483194, -1.254678, -0.839436, 0.367864, -0.027925, -3.197841, -1.427614, -0.066117, -0.463247, 2.727879, 0.454125, 0.863162, 1.697308, -1.554835, 1.234633, -0.406632, -1.904808, -0.705320, 0.749228, 0.451145, 2.181263, -1.069893, 0.775668, -1.233840, 0.852005, -0.448346, 0.509341, -0.352564, 0.633048, -1.190605, 0.223186, -0.150575, -2.856350, -0.149040, 1.205862, -0.612369, 0.998939, 1.319145, 1.458498, -0.996119, -0.504002, 1.215494, 0.804158, 0.664033, -2.198613, 0.472915, 0.969556, -0.433604, -1.165602, 0.845389, 0.456149, -0.710381, 1.178303, 0.612422, 0.266654, 1.348515, -1.705691, 1.605785, -2.178704, 0.512979, 0.582276, -1.361259, 0.204127, -0.367851, 0.856941, 0.398114, 0.569099, 1.548776, -1.025822, 0.049280, -0.245633, 1.692654, -0.109666, 0.536395, 0.171944, 0.154791, -0.797560, 0.089322, -0.083234, 1.634436, 1.184060, 0.438092, -0.155353, 0.271874, 1.208094, -0.450600, -1.658713, 0.370131, 0.648125, 0.548693, 0.818451, 0.912229, -0.788066, 0.194086, 1.276482, -0.112466, -1.151196, 1.513922, -3.711241, 0.092354, 1.463342, -0.099834, 2.668918, 0.693174, -0.514847, 1.459478, 0.176794, 0.092626, 0.071760, -0.267300, 1.083152, 1.080383, 0.201979, 0.825793, -0.302209, -0.435496, 0.901130, 0.774261, 1.473601, 0.125915, 1.015194, -1.321496, -1.338176, 0.606074, 0.229791, 1.174267, 1.004795, -1.409657, -1.064941, 2.499508, 0.083731, -1.130139, -0.997475, 0.742749, 1.674309, -0.414880, 0.230781, -0.494016, -1.281798, -1.272924, -0.755912, 1.140988, -0.288875, 0.624233, 0.124953, -0.926546, -0.927038, -0.107384, -0.259576, -1.107491, -0.117098, 0.462850, -0.798517, 1.409912, 1.704733, 0.570611, 0.329553, -0.674943, 0.046271, 0.793233, -0.345799, 0.749524, 0.329532, -1.011016, -0.763064, -0.168968, -0.056861, 1.066920, 0.893196, 2.185479, -0.794679, -0.427544, 0.070849, 0.433064, 0.077359, 0.003436, 0.162383, 0.983868, 0.554784, -0.691311, -0.826291, 1.643626, 0.854292, 1.125333, -0.017044, -1.224044, -1.075267, 1.208748, 2.325320, 0.449146, 1.184311, -0.371697, -0.099171, -1.223464, -1.574479, 0.104012, 0.518046, 0.087771, -0.859436, 2.244544, -1.370255, -0.552702, 0.078036, 1.237150, 0.013732, -0.710365, 0.176021, 0.486684, 1.407215, 1.646811, 0.262505, 1.551575, 3.188217, -0.770889, -0.077134, 0.089741, 1.206549, -0.822351, 1.054732, 0.102670, 2.206458, 1.445395, 0.833297, 2.457510, -1.728800, 0.599150, -0.582643, 0.097194, -1.136378, -0.688553, -0.195513, -0.245099, 1.844040, -0.105100, 0.853352, -0.309574, -0.563897, -0.441236, 0.237346, -0.408479, -0.138365, -1.625808, 0.868811, -0.280192, 0.493001, 0.674456, -0.343582, 0.434312, 0.669937, -0.175451, 1.365134, -2.892808, -1.183394, -0.091017, 1.387830, 0.703267, -0.623548, 0.942164, 1.632241, -1.306528, -2.749374, 0.276803, -0.745572, 0.798255, -1.000637, -1.458244, 0.491269, 0.959132, 0.346337, 0.075468, 1.185422, 0.271902, -1.419956, 0.282057, 1.918228, 1.089584, -0.010469, 0.458757, -0.767412, 1.301465, 1.389624, -1.260870, 1.180853, 0.484705, -2.188981, 0.792479, 0.714185, 0.605025, 0.952898, 0.134912, -1.235238, 1.607226, 1.451735, 0.415238, 0.077623, 0.470180, -0.342912, 1.028479, -0.055690, 1.028239, -0.900879, -0.427759, -1.243175, -0.115151, -0.929140, 1.427196, 0.653424, 2.145258, -0.476897, -3.224758, -1.172282, 1.368746, -1.494570, 0.231549, 0.024774, 0.033839, 0.337740, 0.186950, -0.421734, 0.350482, 1.797337, -0.688539, -1.145910, -0.454249, 1.222528, 1.535292, -0.005720, 0.010158, -0.123753, -0.332244, 0.398909, 0.412471, -0.544447, 0.578117, 0.075340, 1.343170, -1.052085, -1.049295, -1.226794, 0.967907, 0.793526, 0.301906, -0.256535, -0.841373, 1.313865, 1.160292, 0.562957, -1.555518, 1.409643, 0.154059, 1.303371, -0.594280, 0.305819, 0.683273, 0.292133, -0.189054, 1.152105, -1.326082, -0.190841, -1.361771, 1.867669, 0.529327, -0.184337, -0.951420, 0.844195, 0.548164, -0.329046, -0.298008, -1.232516, -0.848725, 1.039243, 0.677688, 1.754691, 0.211559, -0.421213, -1.451701, -1.075094, 1.433823, 0.589598, -0.592737, 1.001268, -0.164301, 0.831514, -0.851337, -0.319376, -1.188594, 0.490024, -0.953329, -0.328743, 1.067372, -0.092798, -0.148887, 1.048740, 1.668782, 0.073771, -0.642713, 0.178989, -1.247878, 0.969800, 1.126590, -0.214965, -0.651847, -0.848796, 2.386024, -0.627260, 1.843457, -0.396643, 1.590733, 0.084648, 0.679973, 1.752495, -1.346202, 1.198498, 0.286413, 1.400917, -0.832526, -0.309414, -1.580427, 1.645774, 0.375651, -0.988303, 0.244476, 0.875341, -0.132433, -0.104962, 1.059073, -0.170972, 0.113055, 1.083726, -0.863104, 1.060560, -0.286064, 0.378833, -0.699312, 0.195520, -0.062180, 0.062546, 0.670877, -0.187040, 0.549768, 0.723665, 0.158522, -1.080894, -2.022463, -1.330280, 0.769321, -0.623390, 0.589122, -2.603539, 0.077963, 2.492569, 0.949839, 0.028214, 0.908321, -0.472304, -0.312787, 1.152931, -1.700557, -0.314476, 1.546729, 0.487628, -0.798660, -0.341185, 0.025688, 0.095764, 1.328377, 0.245065, 0.553417, 1.078881, 0.106080, -0.560438, -0.789023, 1.021754, -1.279406, 0.637431, -1.054778, 0.191064, 2.140608, 2.750964, -2.403914, -0.623919, 0.523767, -0.960161, -1.645391, -0.678351, 0.649959, -1.282536, -1.647174, 0.155191, -0.026512, 1.405654, -0.398208, 1.053135, 0.816466, 0.857483, -0.168654, 0.207787, -0.568376, -0.009338, -0.023136, 0.318650, 1.315814, 0.058477, -1.807736, -1.965529, -0.862158, 1.125721, 0.973043, 1.557969, 1.440967, -0.703748, -0.248196, -1.045089, -1.163703, 0.253765, -1.475202, 1.137774, 0.364498, -0.152420, -1.089788, 0.210508, -0.554863, 2.076716, -1.219146, -0.893798, 0.206912, -0.047258, 0.132269, 0.337451, 1.204410, 1.146869, 0.169324, 0.405697, -1.026699, 0.051197, 0.885041, -1.310795, 2.922701, 1.224093, 0.150798, -0.434110, 1.899445, -0.531133, -0.305585, -0.030248, 0.763784, -0.911392, 0.485970, 0.098812, -0.394887, 0.791757, 1.350301, 0.017140, -0.551452, -0.066585, 1.045994, 1.823092, 1.926965, -1.074952, -0.277081, -0.344379, -0.291810, 0.053751, -1.126909, -0.075890, -1.087656, -0.714200, -0.296798, 0.246123, 0.852739, 0.037882, 1.301080, 1.259783, 0.612830, 0.429907, 1.390299, -0.677781, 0.362874, -2.233999, -0.234516, -1.888978, -0.064577, 0.960304, 0.166318, 0.802973, -2.222100, -1.414177, 0.085681, 0.104343, -1.633848, -0.008128, 0.000967, 1.283816, 0.708171, -0.971977, 0.670413, -0.159861, -0.371016, -0.086713, 0.121429, 1.349553, 0.692302, 0.186588, -0.056225, -1.605362, 0.158325, 0.105081, -0.441081, -1.171210, -0.824036, -0.425089, -0.780167, 0.467271, 1.477060, -0.186394, 0.933010, 2.070554, -1.843193, -1.774896, -0.797813, 2.149390, 1.135622, -1.018471, -0.415634, 0.653175, -0.891686, 1.067191, -0.007165, 0.496180, -0.787690, 0.568704, 1.638926, 0.070631, 0.920519, 0.349549, 2.156247, -1.983065, 0.290679, -0.677541, -1.760506, -0.715745, 1.116771, -1.209096, -1.816491, 1.033952, -0.362942, 0.884537, 0.827786, 0.730876, -0.669978, 1.813718, 1.402303, -1.700528, -1.013634, -1.820079, 0.095952, -1.035872, -0.480061, -0.379839, -0.912898, -0.264880, 1.517827, -0.463551, 0.352251, 0.130164, 2.332497, -0.028922, 0.443766, -1.304958, -1.472410, 1.035763, -1.101846, 2.901433, -0.354998, -0.450480, -1.216262, -0.603764, 0.160699, 0.274182, -0.533108, -1.080594, -0.985764, -1.257313, 0.407175, 0.123992, 0.313562, 0.495335, 0.280934, -1.395029, -0.447972, 0.913930, -1.448814, 1.679359, 0.104837, -0.427140, -0.224953, 0.068672, 0.067730, -0.823906, 1.118350, 0.437090, 1.245209, 1.410232, 0.487148, -0.367850, -1.282146, 0.739470, -0.508719, 1.249100, 0.503872, 0.249262, 0.815700, -0.972942, 0.397513, 1.485023, 0.799986, 1.096092, -0.624241, 0.767271, -1.491576, 0.600328, 1.144898, -0.068248, -2.020988, 0.592130, -0.951313, 0.840826, 0.333156, 0.667291, 0.855686, -0.347796, 1.322176, 1.204352, 0.114998, 1.027900, -1.777248, -1.778332, -2.412091, -0.205883, 0.973647, -0.284563, 1.261633, 1.501836, 0.866648, 2.017867, 0.175566, -0.166357, -0.128714, 0.820255, 0.142926, -1.543707, -0.039183, 0.135456, -0.871004, 0.960942, 0.806418, 0.072109, -0.466384, 0.119727, 0.599797, 1.930298, -0.119280, -0.311788, -0.162368, -1.588966, 0.301218, -0.670223, 0.188717, -0.365654, 2.227688, 0.153143, 0.670092, 0.786637, 0.830828, -0.266765, -1.964233, 0.729069, -0.375852, -0.249783, -1.414957, 0.586597, -0.352794, 0.327521, -0.237322, 0.818482, 0.984688, 1.711303, -0.125945, 1.197571, 1.483743, -0.378969, -0.119920, -0.560513, 0.287176, -0.530987, 0.601947, 0.218575, -0.237280, -0.610846, -0.466199, 0.224395, -0.517297, -0.516917, 0.857552, -0.037768, -2.095469, -0.531140, 0.017974, 0.560206, -1.164554, 0.664445, -1.406126, 1.565798, -0.444494, 0.445471, 0.265461, -1.283813, -0.202963, -2.097519, -0.551163, -1.068015, -2.491025, 2.381917, -1.443396, -0.116319, 0.016134, 1.145433, -0.622011, -0.195866, -0.191009, 0.066968, -1.522375, 1.116776, -2.081887, -0.698877, -0.004324, 0.103909, 0.797424, 1.602896, 0.201399, 2.134752, -0.065543, 1.055553, 0.561204, -0.413320, 0.779557, -0.508724, -0.834424, -0.361137, -0.057420, -0.094977, 0.672547, -0.680201, -1.257418, -1.960751, -0.898814, -0.573116, 0.334908, -0.098769, -0.248138, -0.790284, 0.846287, 0.221012, 0.913824, -0.931201, 0.051975, -0.547636, 1.206176, -2.326738, -1.325514, 0.808084, -1.077789, -0.422059, 0.323329, 0.102727, 1.970550, 0.675910, 0.769067, -1.165315, 0.233005, 0.274330, 1.146954, 0.299627, -0.040996, 0.269804, -1.162999, 1.291527, -0.889786, -0.230086, -0.825445, 0.576964, 0.108649, 0.436685, -0.479446, 0.033433, -0.534048, 0.335921, 1.894276, -1.233628, -0.308310, -1.675360, 0.311542, -0.921139, 0.736703, 0.212206, 0.386166, -1.441360, -1.438089, 0.760145, -0.530970, 1.732343, -0.820658, 0.465698, 0.519485, 0.624739, -1.027241, -1.386933, -1.280267, -0.946869, 1.603771, -0.353522, -0.793781, -1.118903, -0.598790, -1.947302, 1.257481, -0.339479, -0.512596, -0.573824, -1.003128, 0.752786, -0.476255, 0.397884, -0.999493, -0.804579, -0.075201, -0.628777, 0.175562, -0.983386, -0.602899, 1.126484, 1.068613, -0.030540, 1.262273, 0.413888, -1.618262, 0.977425, -0.265147, -0.863149, -0.961986, -1.949951, 0.130440, 0.945878, 1.186437, -0.983058, 0.443571, 0.790726, -1.478379, 0.034085, -1.128010, 1.074454, 2.588352, 2.328054, 0.643465, -1.744763, 0.382313, 0.657340, -1.932727, 0.145758, 1.837286, -2.810978, 0.657765, 0.276446, -1.058729, 1.101085, -0.085697, 1.163795, -0.710919, -0.164517, 0.028117, -0.214978, -1.008693, 0.347523, 1.274251, 0.135901, 0.535375, 0.375694, 0.942406, 0.141696, -0.161005, -1.511698, 1.916786, -2.035104, 0.244508, -0.420288, 1.057638, -0.175824, 0.791098, 0.092408, 0.827614, 0.204406, -0.639299, -0.291948, 0.367686, 0.349552, -0.367517, -0.720946, -0.890992, 0.076202, 0.436535, -2.071006, -0.973718, -0.879978, 0.079384, 1.485519, 0.149479, 0.502984, 2.798131, 1.392370, 0.384372, -0.677758, -0.250453, -0.965124, 0.564233, 0.361695, 0.585218, -0.951781, 0.093972, 1.075999, 0.183504, 0.235872, -0.309443, 0.413366, 0.634793, -0.892458, 0.404762, -1.802691, 0.476768, -0.040187, 1.110379, 0.932290, 1.122344, -0.120403, 0.397679, -0.455845, 0.236457, 1.410093, -0.601208, -0.207682, -1.858027, 0.142867, -0.060832, 0.820478, -0.599163, -0.367270, 1.446840, -1.186845, -1.432450, 1.343965, 0.363510, 0.206087, -1.130621, -0.028088, -0.879500, -2.348903, -0.439495, -0.312865, -0.344653, 2.273295, -0.746024, -0.087415, -0.181760, 0.583880, -0.650429, 1.308432, 1.021131, 0.909715, -2.342439, -1.470911, 0.074364, 1.616066, 0.008424, 0.347278, -1.907093, 2.279639, 0.912322, 2.629043, -0.812293, -1.213392, 0.839442, -1.164493, 0.413603, -0.114130, 0.041607, -0.863448, 2.116364, 1.222635, 0.632420, -0.820922, -0.650576, -1.854771, -1.236575, 1.568214, 0.046729, 0.881926, -0.835425, 0.205124, -0.053262, -1.305565, 0.114088, 0.371250, 0.095793, 1.054353, 0.814413, -0.467907, -0.456350, -0.185025, 0.313252, 0.218872, 1.577726, -0.845508, 1.090848, 0.662741, -2.960680, 0.996808, -0.884228, -0.473740, 0.354764, -0.000670, 0.174945, -2.637402, -0.605583, 0.255331, 0.375933, 1.762564, 1.516608, 0.095531, 0.192385, 0.800741, -0.568484, -0.587810, 0.343944, 1.446319, 0.117862, -2.636307, -0.763755, -2.891528, 1.025460, 1.124344, -0.412155, 0.327251, 1.236045, 0.653691, 2.154784, -0.514347, -0.058963, -0.231906, 1.314250, -0.496456, 0.177061, 0.347333, 0.268927, 0.020891, 0.710353, 0.587201, 0.921417, -0.498401, -1.720635, -0.385663, -0.098711, -1.433234, -1.423126, -0.349140, 0.205020, -0.502561, -1.178710, -0.022038, -0.532369, -0.460549, 0.682050, 2.387576, 0.563303, 0.400730, 0.313201, 0.816143, -0.223170, -0.046886, 0.578917, -0.841060, 0.458140, -0.506423, -0.922431, -1.175617, -0.191638, -0.784792, 0.380983, -0.385590, 0.318427, -0.037819, 0.556483, -0.957075, -0.235619, -0.187277, -0.346809, -0.855409, 0.628025, -1.509265, -0.293857, 0.620634, 1.059672, -1.475793, 0.412013, -0.064256, -0.441233, 0.817410, 1.097804, 0.360774, 1.068397, -1.353745, -0.455986, 1.384126, 0.690355, 1.221958, 0.557418, 0.103649, 0.186476, 1.080419, 1.008509, -0.388546, -1.912660, -1.048290, 0.361955, 0.037930, 0.790550, -0.977382, -0.355440, -0.169698, 0.266259, -1.558135, 0.202029, 0.273389, 0.553430, -0.194001, 1.321441, 1.320206, -0.127143, 0.567237, -0.820418, -2.475253, 0.492874, 0.260979, 0.812465, 0.291753, 0.244083, -0.289416, -0.861417, 0.297614, -0.868261, 0.122020, -0.106085, 0.018623, -1.082180, -1.642747, 0.811081, 0.234866, -0.067180, -0.553996, 1.602895, 0.747538, 0.299346, 1.356720, -0.386431, -0.039293, -0.496731, -0.255590, -1.123560, -0.650510, -0.650795, -1.063649, -0.215478, -0.676532, 2.112758, 0.568889, -0.682662, -1.789211, 0.526914, -1.885903, -1.231516, -0.929049, -0.839145, -0.305659, 0.362864, -0.140336, -0.555466, 1.150828, -0.002115, 0.640784, -0.367025, 0.365086, -0.358707, 2.868566, 2.837660, -0.162320, -0.779964, 1.670955, -0.512765, 0.386066, -0.220777, 0.278390, 0.556234, -0.852708, 1.064032, 0.131845, 0.335708, -3.166561, -0.094939, -0.106683, -1.019679, -0.065065, -0.087549, 0.165368, 0.642381, 0.888100, 1.388455, 0.506448, -0.261452, 2.180812, 0.334105, 0.935125, 0.018916, -1.284985, -0.612871, 0.181584, 0.575108, -0.855314, -2.471379, -0.735328, 1.129301, -1.127553, -0.432614, -1.112375, -0.980567, -0.877408, -1.185331, 0.385646, -0.470406, 1.998922, 1.550787, 0.192449, -1.433948, -0.069114, 0.492900, 0.862598, -0.616737, -1.135970, 2.375081, -0.059984, 1.459782, 0.418617, -1.053723, -0.584916, 1.427206, 0.353895, 0.358891, -0.216249, -2.002320, -0.699313, 0.880428, -1.882237, -1.312622, -0.295044, -0.537725, 0.283550, 1.139247, -0.660279, 0.536278, -3.170810, 0.048857, 1.062004, -1.229809, 0.561541, 0.065720, 0.665227, -0.766287, 1.114112, 1.236612, -0.290817, -0.957704, 1.304326, 0.849858, -0.212679, -0.832184, -1.035586, 0.228477, -0.200378, -0.122340, -0.182645, 1.115644, -0.440816, -1.823129, -0.745467, -0.645722, 0.590903, -1.514485, -1.391965, -1.841697, 0.875155, 1.276177, 2.152644, 0.684107, -1.539459, -0.911951, -0.119516, -1.217774, 1.515266, -0.863684, 0.593592, -0.514919, -0.410263, -0.549296, 1.425411, -0.169282, 1.148017, 0.410914, 0.406741, 1.707894, 0.375225, 1.572652, 0.866476, 0.004789, 0.552830, 0.065118, -0.176754, -0.440454, -0.640308, -0.436749, -0.252697, -0.332317, 1.201348, 0.107903, 1.792038, -3.274158, 0.750333, -1.506759, 2.618268, -1.248676, -0.141491, 0.877191, 0.514080, -0.165380, 1.550525, -2.908632, -1.051421, 0.878593, 0.041384, 1.314228, -2.015728, -0.244169, 0.566571, 0.201047, 0.020901, -1.015448, 0.781054, -1.337709, 0.121043, -0.138398, 2.351187, -0.384905, 0.008869, -0.818706, -1.377856, -0.146257, -2.092710, -0.153646, -1.014776, 0.739208, -0.270509, 1.120150, -0.328009, 1.010280, -0.963525, -0.785014, 1.135739, 0.870727, -3.178505, 0.996472, -0.029343, -0.971175, -0.702670, -1.902041, 0.599985, -0.096797, -0.583084, 0.726020, 0.856930, 1.178495, -0.286306, 0.742989, -0.284985, 1.536316, -0.171397, -0.057572, -1.511549, 0.147823, -0.023687, 1.879345, -0.704230, -1.450555, -1.108542, 0.295747, 0.819734, -1.537456, 1.019990, 1.466569, 2.083033, -0.549885, -0.896451, -1.078444, -0.509836, 0.640672, -0.281184, 0.886987, -1.296474, 1.278729, -0.018402, -0.314649, -0.572640, -0.765351, 0.462305, 1.378988, 0.741147, -0.813850, 0.353960, 0.253429, -0.790994, -0.196322, -0.980238, 1.093953, 0.951914, 1.094002, -0.436871, 1.620881, -0.115925, -1.079942, 0.664795, 1.525141, -0.024042, 0.006837, -1.452153, 1.166962, 0.541562, -0.152434, 0.028712, 1.242315, 1.324968, -0.555496, -1.129462, 0.878241, -1.046364, -2.105438, -0.114743, 0.694103, 0.312592, 0.101893, -1.369664, 0.373999, 1.629687, -0.169910, -0.247077, -0.778456, 0.283832, 0.674214, 0.321660, 1.486508, 1.387328, -0.380597, -1.191547, 0.026962, 1.032993, -1.044210, 0.672911, -1.174432, -0.798523, -0.154865, 0.290119, 0.816309, 0.287407, -0.707331, 0.663273, 2.229958, 1.819381, -0.238843, -0.800596, 0.250382, 0.174613, 1.394184, -1.011165, 1.831030, -0.199448, 0.373930, 0.079597, -0.156153, 1.948584, -2.309557, -0.499350, -0.380272, 1.550372, 0.566938, -0.784970, 0.840266, 0.802237, 1.034324, -0.951168, -0.151087, 0.521729, -0.160848, -0.098417, -1.941358, -0.852052, -0.513054, 1.574704, -1.931041, -0.576806, 0.620982, 1.923834, 0.442249, 0.048758, -1.171994, -0.018641, 1.177161, 0.749860, 0.304717, -1.281929, -0.981491, -1.673674, 0.075436, 2.060573, 1.588352, 0.224248, 0.908720, 0.648349, 0.917754, 0.712913, -0.727731, -0.281513, -0.236952, 2.066495, 0.839659, -0.084867, -1.344536, -1.276762, -1.844733, 1.164718, -0.414993, 0.269311, -0.388316, 0.341097, -0.074387, -0.992266, -0.516338, 0.846021, 0.109766, -0.229995, -1.422504, -0.733193, -0.170473, 1.472753, 1.210416, 1.107681, 0.077759, -1.064770, 1.143862, -1.366929, 1.362047, 0.580229, -0.932737, 0.119755, -0.238056, -1.601105, 0.928629, 0.708296, 1.233007, -0.490027, -1.536985, -0.165683, 0.477898, 0.494831, 0.738171, 1.702583, -1.009274, -0.340488, -0.017557, 0.110842, -0.822950, 0.855275, 0.174597, 0.495674, -0.056231, -0.181632, 1.068847, 0.312378, 0.868944, -1.295914, -0.379480, 1.407339, -0.962619, 0.786099, -0.156102, -0.648525, 0.830405, -0.345259, 0.777856, -1.412597, -0.848113, -0.960953, -0.461577, -1.029847, 0.432415, 1.743716, 1.190725, 1.268154, -2.553616, 0.583195, 0.719288, 0.019859, -0.245786, -0.277849, 0.134980, 0.327712, 1.535849, 1.322112, -1.625558, 3.074630, 0.378514, -0.900456, -0.658942, -1.291657, -0.384568, -0.024976, -1.985516, 0.667845, -0.198051, -0.641738, 0.286313, 1.213348, -0.364882, -0.845175, -0.085825, -0.909018, -0.796189, -1.846105, -1.029620, 1.686773, -0.288002, -0.456407, 0.229126, -1.012804, 1.256675, 0.395701, 0.334437, 0.373426, 1.752798, -0.332288, -1.175152, 0.125282, 0.609567, -1.460314, 0.868646, -0.141740, 0.755100, 1.958667, -0.756435, -1.349188, -0.345672, 0.789610, 1.683662, 0.390632, 1.546828, -1.073412, 2.021458, 1.050944, -1.338132, -0.518155, 0.444027, 1.820359, 0.167465, -0.329012, 0.785518, 0.900773, 0.417825, 1.815703, 0.311853, 1.441529, 1.700556, -1.423484, -1.373104, -0.980469, -0.303256, 2.071674, 0.248387, 0.033582, 1.127916, -0.906861, 0.643511, -0.100844, -0.250065, -1.165741, 0.941070, -0.072895, 1.609546, 2.089129, 1.503252, -1.138760, 1.022542, -0.665060, 1.591020, -0.802288, 0.723045, -0.690499, -1.689816, -0.243705, -1.210942, 0.259324, -0.418267, -2.126488, 0.396425, -0.617675, 1.079907, 2.122475, 0.293392, -2.595889, 0.369907, 0.441051, -0.187928, -0.326055, -0.219322, -0.971088, -0.151217, 1.278926, 0.220847, -0.677934, 1.100636, -0.345281, 0.418767, -0.966717, 0.348046, 1.376881, 0.381549, -0.339071, 1.217970, -0.998819, -0.598224, -0.346389, -0.029439, 0.590923, 0.533556, 2.042408, 0.032883, 1.132560, 0.766818, 1.299712, -0.934534, -0.178002, -0.026773, -0.859456, -0.790302, 0.253254, -2.049632, 0.300394, -1.250193, -0.321342, -0.572749, -2.804044, 0.372897, 1.441523, -1.456649, -0.145398, 0.403655, -1.302139, -0.323873, 0.034422, -0.359558, -0.258767, -0.269207, 0.033304, -0.489046, -1.988850, -0.901370, 0.881076, -0.364360, -0.445980, -1.085344, 0.347185, 0.644059, -0.691416, 0.617382, 0.287261, 0.940514, -0.604116, 1.026581, -0.371150, 0.336167, -0.361897, -0.079658, 0.915591, -1.702460, 0.857129, -0.706100, 0.267868, -0.172295, 0.445122, -1.952904, -1.252272, -0.085508, -0.553325, 0.374018, 0.222693, -0.471334, -0.717840, -0.884423, -0.628685, -1.102572, -0.100826, -0.633390, 0.002218, -0.890179, 1.437047, 1.182940, 0.796394, 1.408563, 1.635527, -0.146837, 2.552778, 0.617330, 1.544822, 1.892926, -1.118390, -2.215963, -0.023060, 0.111138, 1.516372, -0.606042, -0.449226, -1.944569, -0.458289, -0.179059, 0.656626, -1.054081, -0.909960, 0.107664, 1.842379, -1.018586, -0.119134, 0.705051, -0.195532, 1.658544, 0.788681, -0.152538, 0.492369, -0.293989, -0.521998, -1.616632, 0.479045, 0.877403, 0.645449, 0.378188, 0.759829, -0.063468, -1.933527, 0.457304, 1.080467, -1.573578, -0.699171, 0.420302, -0.328182, 1.447962, -0.828517, 1.064114, -0.542364, 0.290381, -0.538679, -0.466245, 1.199234, -0.273288, -0.967941, 0.659453, 1.968379, -1.417598, -0.136527, 1.184574, -1.074898, 0.214242, 0.290383, -0.206632, 1.582061, -0.384771, 0.788284, 1.450816, 0.451441, -2.061872, 0.940121, 0.576555, 0.336989, -1.127818, -0.163571, -0.517262, 0.420306, -1.206828, 1.039765, 2.896665, -0.598912, 0.439686, -1.166044, -1.357214, 0.049388, -1.494847, -0.889396, 0.955254, 3.130605, 0.991595, 0.701981, -0.886781, 0.548963, 1.486610, 0.820349, 0.462546, 0.162739, 1.030247, -0.249395, -0.443981, 0.400527, -1.249348, -0.204139, 1.501553, -0.710105, -0.180677, 0.761653, -0.123226, 0.705874, -0.536304, 0.296038, 1.341150, -0.083476, 0.444904, 1.502023, -0.313660, 0.213639, -0.060028, 0.791046, -0.313777, 0.015319, -0.089583, -0.166763, 2.203184, 0.639267, 0.221027, 0.079686, 1.154981, 1.232699, -0.538654, -0.772357, -1.974569, -0.505430, -0.129025, 1.895915, 0.424560, 0.428099, -0.133725, -0.885217, 0.203022, -0.589729, 1.784148, -0.381472, 1.232490, 0.047793, 0.429282, 0.517375, -0.018025, -0.118813, 1.050464, -0.120960, 0.580269, 0.330632, -0.528192, -0.893002, 0.353178, -0.061197, 0.540435, 1.016047, 0.513322, -0.378343, -0.471803, -0.573490, -1.760579, -0.852294, 1.015304, -0.797230, -2.240814, -0.934675, 0.452018, 0.539630, 0.755198, 0.054010, -0.628689, 0.676392, 0.908796, -0.737947, -0.173215, -0.154435, 0.061049, -1.820747, -1.069377, 0.333487, 0.768496, -0.467100, -0.735552, 0.674373, -0.621329, -0.118467, 0.181377, 0.119910, -0.523939, 1.098148, 0.912044, 0.413595, -0.550656, 0.174836, 0.984044, 1.052446, 0.901621, -1.784663, 1.402209, 1.525380, -0.689647, 1.202817, -0.272716, 0.697391, -0.958346, -1.232387, -0.391263, -0.531669, -0.874702, -0.111323, 1.586736, 0.541447, 0.112361, 0.002850, -0.640366, 0.110621, -0.892347, 0.651657, 0.622092, -1.197867, 0.171882, 0.955913, -0.420170, 1.076496, 0.031850, -0.483227, 0.130544, -0.259519, 0.892904, 0.745312, -0.623183, -0.194230, -0.848095, -0.730427, 2.440153, 1.313519, 0.313307, -2.304621, -0.114957, 0.038365, 0.230991, -0.221570, -0.051813, -0.968248, -0.382071, -0.185296, -0.916142, 0.764156, 1.207455, 0.110737, -0.697520, 0.004359, 0.497101, -1.246626, 0.776336, -0.971389, 0.900781, 0.545013, 0.221045, -3.624343, -0.179332, 0.416681, 0.714520, 0.410994, 0.485850, -1.827451, -1.734341, 0.395246, -1.177950, -0.011145, -0.116578, -1.290493, -2.975739, 1.029267, 0.165221, 0.215991, 0.166056, 0.186584, -0.419394, -0.990354, 0.914803, 1.207179, 0.633648, -0.463292, -1.601626, -0.012953, -0.114577, 1.629724, 1.697032, -0.842245, 1.901347, 1.172064, 1.655557, -1.022669, -0.252382, -0.217159, -0.243679, -1.881943, 1.437304, -0.073220, -0.171109, 0.178968, -0.465553, -1.169522, -2.048234, 0.660666, 0.016530, -1.399306, 0.079903, -0.395331, -0.606240, -0.717732, 1.035233, 0.578479, -0.766344, 0.291540, 0.828631, -0.264489, 0.252914, 0.839953, -0.914266, -0.939197, -0.086787, -0.174329, -0.899346, 0.226852, 0.952315, 0.042178, 0.919733, 0.893023, 1.232539, 0.092457, 1.005046, -0.610252, 0.923529, 1.004334, 0.917837, 0.075240, 2.234123, -1.893703, -2.066901, -0.624758, 2.226923, 0.123714, 0.557044, 1.287487, 1.768175, -0.225645, -0.512870, 1.710537, 1.232614, -1.126071, -2.332517, -0.867636, 1.429713, -1.425202, 2.742917, 1.561269, 0.701638, 0.207679, -0.467569, 0.083176, -0.998672, -0.563386, 0.229913, -0.811327, 1.042571, -0.472220, 2.402308, 0.173181, -1.338089, -0.385145, -0.847959, -0.715156, -0.631694, 1.531796, 1.614695, 0.176082, -0.189494, 0.674136, 0.012790, -0.646178, -0.023701, 0.708185, -1.934791, 0.064592, 1.265034, -0.199290, -0.644541, -2.007693, 0.380045, 0.483091, -1.903050, 0.780035, 1.473295, -1.773733, -0.773828, -0.076878, 0.037464, 0.684390, 0.847965, -0.297854, -2.373667, 1.096025, -1.019376, 0.183695, -1.261570, -0.969170, -0.265311, 1.463061, 0.091775, -0.394271, 2.185644, 0.176432, -0.883051, 0.538685, 0.430007, 1.328085, 0.070688, -0.158855, -0.556540, -0.809787, -1.169645, 0.823804, 0.259492, -0.570716, -0.278238, 0.649705, -0.286741, -0.513373, 0.991930, -1.117432, -0.518094, 0.779473, 0.374975, -1.663482, 0.946010, -0.587003, 0.826821, -0.604905, -0.606628, 1.373131, -0.942280, 1.070948, 0.202506, -1.152681, -0.424173, -1.606313, 0.279731, -0.316660, 0.629499, -0.136853, 0.903446, -1.553894, -0.333378, 2.138888, 0.403615, -0.702710, 1.018782, 2.481591, -0.184669, 1.198353, -0.623040, -0.381351, 0.506452, 0.721207, 0.516375, -1.011259, -0.242117, 0.776201, -0.370294, -0.518844, -0.514973, 1.091080, 1.669463, 0.385912, -0.411481, -3.000129, 0.195795, 0.901197, 0.478825, -0.158952, 0.608984, -1.523480, -1.077663, -0.553221, 0.990451, -1.360416, -0.684818, -0.193963, -0.736405, 0.524206, -0.014413, 0.482968, -0.535576, -0.515588, 0.055106, -1.915295, 1.780386, -0.216515, 0.408402, 0.747409, -1.107107, 0.504950, 0.813346, -0.084400, 0.980024, -2.523302, 1.185954, -1.412941, 1.958553, -0.471887, 0.935598, 0.226762, -0.823328, -0.381229, -1.545965, 0.239025, -1.339292, -1.204573, -0.038170, 0.162243, 0.284924, 0.160284, -0.075831, -1.204118, 1.950845, -0.027041, 0.502562, -0.233833, 0.228521, -1.324953, 0.641207, 0.440546, -0.616214, -0.981713, -0.189221, 0.155695, -0.435234, 0.425463, -0.475733, 0.356660, 0.599701, -0.514314, -0.268036, -0.539240, 0.207156, 0.207203, -1.093896, 0.773720, -0.624260, 0.960475, 0.351199, 0.699440, -0.229281, 1.198004, 1.792920, 0.842821, -0.761879, -0.676045, -1.111442, 0.747222, 0.755971, 0.589334, 0.794957, 0.006024, -1.026940, -1.240171, -0.304907, -1.389341, 0.744292, -0.513514, -0.130207, 1.222011, 1.379931, 0.116939, -1.799626, 0.631320, -0.205399, -0.539173, 1.766677, 0.076616, -0.900857, 0.685288, 0.844339, -1.400584, -0.302496, 1.957520, -0.247281, 0.443760, -1.317921, -0.272959, 0.941583, -0.579566, -1.597064, -0.122253, 0.887002, -1.851339, -0.841908, 0.473235, 1.037434, 1.445248, 0.743396, 0.395094, 1.225506, 1.662126, 0.316668, -0.798783, -0.772848, -1.142628, 0.819518, -0.564070, -0.870163, -0.991737, 1.391020, -0.457231, 0.614237, 0.019516, 2.037912, 1.358165, 1.281120, 0.427062, -0.265299, 0.620793, -1.141888, 0.685051, 1.018313, -0.281270, 0.207921, 1.894215, -1.636014, 0.414347, -0.541211, -0.817818, 0.674079, 0.868940, -0.428386, 0.658202, 0.262049, -0.301668, 0.146478, -1.107759, 0.708071, -0.049975, 0.184183, -0.932660, -1.709101, -0.309602, 0.101522, 0.360043, 0.763528, -0.700444, -0.183832, -0.069885, 0.201585, 1.075564, -0.458042, -0.350673, 1.389256, -1.479800, 0.682230, 0.289885, 0.703015, 1.683242, -0.147036, -0.828292, 0.984562, 0.477242, 0.485064, 0.112665, 0.622281, 0.492070, -0.263405, 1.163628, 2.010934, -0.506844, 0.695653, 1.263529, 0.366341, -0.936147, 0.015777, 0.133691, 0.311393, 0.069390, 0.495545, -0.837437, 1.649048, -0.167114, 1.328848, -1.609527, 1.558907, 0.277797, 1.925958, -0.386554, -0.381685, 0.047441, -0.293147, -0.587781, 1.382169, 0.304343, -0.658820, 0.439627, -1.144301, 1.420872, -0.927780}, - { 0.292891, -1.708510, -2.185706, -0.244947, -0.821272, 1.450950, 1.424964, -0.431861, -1.383292, -0.716461, 1.974213, -0.894689, -1.719556, -1.356400, 0.231541, -0.966506, 0.083534, 0.242377, -0.191265, -0.197449, 1.660832, -0.311673, 0.313023, 0.351125, -0.925571, -0.193178, 0.025055, -2.324670, 0.107742, -1.632257, -0.297190, 0.291926, 2.664977, -0.664031, -0.569963, -0.408873, -0.460503, 1.598926, 0.868365, -1.450154, 1.005934, 0.375826, -0.670606, 0.637593, 0.332802, 1.373593, -0.475296, -0.819583, 0.977991, 0.735534, -0.966828, 0.148544, 0.024582, 1.390121, -1.102279, -1.688447, -1.119557, 0.650295, 0.639350, -0.312520, -0.507114, -0.779926, 1.957356, 0.567040, 0.146519, 0.783273, 0.818639, -2.491803, -2.004623, -0.529808, 1.483119, -2.366978, -0.249309, 0.287323, 1.506401, -0.792854, -0.397687, -0.917683, -0.316980, -0.599443, 1.357496, -0.301975, -0.111516, -1.229903, 0.169000, 0.046529, -1.357439, 2.156298, 1.600920, 0.405498, 0.443675, -1.054478, 0.377440, -0.396471, -0.497906, 0.869869, -1.064701, -0.513512, 0.964440, 0.421268, 0.323402, -0.111356, -0.265792, 0.769441, 0.335623, -1.308464, 1.009527, 0.145549, 0.929947, 0.357812, -0.814115, -0.209047, 0.787138, 0.300938, 0.633906, -0.431068, -0.047960, -0.515060, -1.067042, -1.460882, -1.047530, -2.632407, 1.237485, -1.945593, -1.211345, 0.132771, -0.536113, 1.009678, 0.085230, 0.753992, -0.583521, -0.460307, 2.059750, 1.285325, 1.032129, -0.269690, 0.257610, -0.158392, 0.280761, 0.682041, 1.159714, 1.618063, -1.309796, 0.956775, 1.018945, -1.336185, 0.464816, -0.561561, -0.831023, 1.262633, 1.327701, 2.373687, 4.542273, -0.097010, -0.556613, 1.112400, 0.738165, 0.742581, -0.564402, -0.011848, 0.171923, -0.719148, -1.576356, -1.121765, 1.115668, 0.737594, -0.938355, -0.435746, 0.190921, 0.658826, 0.303713, -0.730322, -2.438232, 0.114269, 0.078303, 0.958724, -1.934861, -1.423180, 1.351432, -1.647877, -0.331842, 1.111123, -1.560790, 0.065268, -2.271621, -1.275978, 0.779194, 0.933272, -0.017336, -1.952305, 0.283716, -0.739312, -0.530806, -2.005578, -0.161424, -0.371535, 1.898929, -0.527492, 0.463612, -0.655326, 0.218653, -0.406655, -0.559668, 0.790860, 1.301448, -1.465441, 0.403506, -1.223558, 2.100382, -0.829208, -0.502725, 0.151171, -0.778230, -1.695609, 0.294853, 1.518498, -1.350138, 0.775311, -0.329676, -3.415075, -0.219203, 1.971403, 0.075180, -0.369401, -1.542137, -0.530304, -1.474646, 1.582011, -0.917005, 0.538405, 2.114314, -0.124029, 0.477711, 2.336969, -0.396765, -1.123354, 0.039216, 0.112787, -0.139218, -0.944495, -0.763684, 0.997287, 1.417784, -0.345995, -0.423057, 1.397287, 0.376601, 1.267979, 0.745433, -0.854055, 0.164431, 0.566650, 0.773948, -1.213448, 0.919028, -0.003071, 0.302285, -0.363874, -1.382851, 1.801374, -1.493086, 0.558097, 1.105853, 2.173006, -1.676891, -0.299052, 0.538238, 0.201006, 0.723465, 0.977900, -0.182530, -0.005362, 1.795848, -0.182832, -0.493448, 1.452400, 0.064221, -1.466771, -0.126108, -0.107220, -0.994895, -1.085001, -0.026704, -1.339095, 0.963092, 1.384430, -0.246086, -0.797056, -0.454069, 0.027056, -0.603872, 1.452029, 0.030280, -1.217478, 1.798160, -0.712081, -1.012086, 0.923644, 0.164759, 1.287082, 0.347788, -1.712420, -0.173141, 0.401047, -0.406398, 0.034959, -0.680275, -0.206232, -0.613904, 0.649680, -1.152045, -1.048357, -0.193687, 0.852478, -1.478935, 0.208540, 1.292965, 1.498585, 1.795307, 1.266239, 0.568582, -0.403831, -1.284378, -0.338240, -0.632272, 0.410119, -0.371463, -0.140562, -0.419117, 0.005570, -0.760282, 1.208550, 0.646112, -1.974479, -1.757854, -1.413260, 0.002034, -0.921508, -1.019410, -0.091603, 0.310681, -1.665338, 0.553750, 0.545329, -1.001807, 2.265850, 0.963306, -0.438406, -0.117895, -0.607653, 1.448049, -0.041341, -0.565033, 0.592700, -0.557312, -0.321587, 0.423004, 0.701197, -1.261603, 0.462973, -2.714076, 0.554875, 0.359922, -0.739469, -0.805084, -3.426799, 0.847265, 2.208081, 0.789774, 2.150444, 0.624629, -1.038113, -0.413425, 2.454882, 2.626144, -1.102012, -0.950069, 0.030648, 1.271111, 1.061401, -1.165392, -2.327266, 1.014271, 0.475691, -0.625056, 1.027901, -0.475552, 0.031236, 1.309724, 0.736699, 0.218125, 0.541387, -0.677458, -0.307832, -0.486233, -1.526194, -1.661415, -0.944457, 0.644331, 2.167019, 0.215784, 0.601616, -0.430486, 0.818222, -1.794037, 0.982718, 0.291569, -2.085956, -0.386507, 0.056042, 0.785065, -0.369807, -0.300279, 1.382001, 1.241396, 0.226918, -0.534698, 0.281058, 0.790899, 0.704463, 1.104488, 0.206228, -0.115892, 1.362966, 2.040797, 0.930832, -0.499394, 1.308533, 0.038474, -0.481727, 1.271917, 0.093185, 1.027524, -1.058642, 1.453905, -0.119899, 0.282057, -0.797613, -0.613116, 0.598727, -1.978262, 1.581403, 1.768274, -1.371727, 0.596770, 0.483326, 1.248562, -2.072330, 0.345192, -1.130156, -0.413975, 0.308699, -0.999458, 2.000450, -0.727893, -0.799304, -1.748235, 0.342308, 0.572691, 1.094910, -0.131486, 0.391579, 0.856615, -0.379866, 0.709835, 2.301630, -0.295983, 0.366237, 0.095394, -0.943021, 0.072385, -0.692351, -0.491897, -1.942546, -0.209199, -0.976951, 0.703390, 0.882315, -0.140885, 0.971320, 1.046713, -1.833827, -0.848040, -0.902475, 1.206739, -0.186708, -0.513700, -0.636293, 2.189780, 0.099314, 1.396261, 0.999723, 1.206330, 0.201980, -0.236837, 0.551101, 0.020832, -1.287175, -0.012679, -1.168575, 0.952123, 1.187614, 0.174262, -1.833502, -0.788792, 0.284911, -0.923546, -0.701950, 0.579197, -1.288502, -0.934693, -0.531277, -0.550297, 0.424981, -0.481678, -0.568877, 0.165475, -0.398001, -0.655614, -0.660530, -0.722770, 0.104100, -1.557982, -1.216011, 0.578792, -1.123166, -0.152202, -0.610867, -0.235874, 1.436928, 0.664378, -0.069716, 1.190115, -1.484155, 0.055556, 0.776146, 1.890962, 2.352409, -0.996553, 2.278443, -0.186201, -0.685986, 1.368316, -0.555180, -1.442758, 0.050701, 0.189587, 1.115584, 0.712029, 0.383487, -0.474714, -0.819532, 0.553201, -1.006239, -0.470012, -0.794397, 0.592416, 2.015376, 0.563762, -0.525463, -1.046815, 0.415018, 1.023756, -1.226087, -0.715211, -0.457262, -1.475429, 2.053750, -0.817486, -0.144130, -1.408412, 0.312953, -0.045965, -0.742768, -0.592396, -0.498212, -1.161338, -1.123862, 0.868017, -0.387588, -1.149278, -0.098976, -0.538908, -0.275223, -0.673831, -0.236932, 0.522214, 1.862571, -0.724714, 0.113470, -0.030180, 0.867167, 0.615528, -1.491319, -1.245311, -1.653809, -0.112606, -0.309782, -0.473697, -0.819074, -0.448935, 0.030836, -1.095170, 0.165387, -0.503660, 0.866712, -0.346152, -0.314465, -0.677123, -0.177118, 1.267335, -0.212055, -0.268177, -0.576133, 0.959965, 0.608411, 0.252166, -0.227027, 0.455450, -0.163730, -0.945263, -0.564231, -1.475780, 0.120220, -0.554524, 0.060990, 2.423817, -0.213706, 0.001410, -0.711890, -0.680973, -0.383531, -0.290049, -0.507651, -0.031594, 0.905885, -1.816476, -0.468269, 0.796781, 0.322228, -0.528841, -0.723818, 1.211553, 1.105538, -1.433756, -0.644082, 0.647983, -1.180568, -0.752597, -0.704020, -0.505185, 0.885326, 0.005479, -0.550318, 0.615822, -0.873853, 1.142081, 1.184152, 0.103964, 1.647361, 0.967744, 0.673536, -0.536562, 0.056784, -2.077467, -1.919048, 1.252205, -0.718282, 1.116761, -0.242194, 1.143201, -0.026847, 0.608832, 0.708688, 0.079831, 0.134089, 0.930380, -0.729393, 0.367778, -1.318354, 1.522532, 0.085972, 1.593959, -1.981243, -1.378361, 0.286758, 0.762529, 0.939118, -0.244318, -0.451555, -1.183896, 0.107928, 0.533478, -0.840499, 0.133740, -1.422853, -0.343426, 0.597483, -0.107674, 0.321853, 0.546763, -0.114930, 1.183602, 1.846683, -1.481568, -1.713139, -3.027448, 1.102476, 0.065993, 0.029244, 0.775203, -0.562777, 0.868315, 1.638600, -1.509365, 1.186059, 0.303477, 0.109088, -0.152322, 0.866439, -0.117734, 0.640226, 2.034814, -0.601030, -1.161561, 0.304143, 0.969342, -0.643773, -0.408139, 0.760046, -1.843315, 0.162190, 0.477456, -1.710225, -0.604101, -0.194816, -0.678343, 2.378602, 0.442871, 0.590240, 1.190987, 0.387996, -0.652592, -0.349694, 0.269263, -0.257546, 0.489823, -0.005972, -0.523285, 0.461713, 0.983745, 0.966786, -1.214870, -0.449246, -0.158108, -1.027027, 0.905758, 0.485926, 0.311863, -0.954620, -0.370001, -0.983756, 1.309037, -0.993112, -1.464900, -0.453496, -2.169531, 2.327251, 0.766307, -0.365884, -2.178003, 0.042199, 0.228299, 1.827621, 0.205068, 0.928119, -1.129028, 0.215187, -0.667648, 0.544146, -0.642307, -1.216451, 0.282151, 0.417768, 0.095059, -0.581879, 0.840889, -0.420691, 1.167246, -0.645507, 1.426113, 0.933374, 0.865025, 0.166366, -0.188546, 0.959291, -0.056122, -0.008197, -1.415343, -0.548600, -0.943413, -0.807224, 0.233624, -1.630257, -1.002499, -1.024861, 0.396569, -0.302054, 0.021819, -1.061831, -0.471147, -2.242388, 0.194980, 0.174102, -1.419076, -1.179402, 0.649922, -1.579208, -0.460712, 0.367351, 1.100219, 0.520826, -1.114273, -1.879597, -0.530805, -0.831654, 0.631768, 2.452335, 1.131999, -1.081673, -1.136642, -1.465356, 1.305989, 0.789847, 0.042800, 0.076241, 1.658439, -0.647155, -0.896072, 0.481696, 1.797639, 0.159411, -0.248198, -1.460728, -0.404525, -1.654078, 0.924408, 1.771791, 0.476497, -0.491226, -0.720338, -1.234394, 0.202733, -2.122692, -1.149185, 0.056084, -0.517622, 0.752513, -0.225029, -0.269667, -1.196974, -0.218352, 1.093614, 0.208290, -2.412891, -0.397495, 1.140108, 1.019041, -0.478599, 0.294369, 0.419145, -0.760007, 0.592244, 0.151055, 0.755161, -2.210251, 1.506074, 0.305659, 0.331512, 1.957274, 0.769484, -0.872395, -0.340453, -0.484196, 0.430044, -0.374944, -0.064067, -0.484668, 1.451902, 0.290851, 0.345923, 0.408974, -1.741815, -0.977260, 1.117456, -0.851607, 0.013538, 0.361242, -0.049036, -0.836200, -1.665353, -0.655521, -0.486741, -0.961460, -0.867219, -1.151246, 1.509381, 0.241365, -1.168545, 0.120289, 0.723778, 0.265600, -1.524131, 0.359123, 1.800541, 0.296537, 0.779271, -0.543676, 1.626263, 0.497753, 0.534732, -0.432103, 0.636541, 0.593076, 0.413430, -0.493843, -0.099982, 0.467438, -0.593307, 1.405572, 0.607467, -1.963034, -0.210452, 0.091405, -1.174371, 1.468553, -0.268140, -1.708917, -0.723537, -2.672091, -0.733406, -1.562848, -0.925071, -0.116377, 0.973578, -1.873076, 0.606714, 0.939712, 0.876750, -0.895680, 0.043429, 1.002743, 1.204138, 1.141840, 1.552457, 0.516442, -1.020007, -0.064621, 0.626035, -1.588657, 0.686750, -1.730330, -0.769423, 1.731730, -0.298637, -0.818697, 0.644770, 1.986733, 1.005610, 0.444123, 0.217915, 0.534630, 0.347506, -0.252165, -0.419583, -0.231749, -0.454531, 0.217733, 0.019112, 0.820521, -1.840944, -0.333867, 0.662126, -0.593705, 1.470261, 0.470701, -0.160169, -0.792550, 0.312170, -0.617706, -0.217511, 0.056290, 0.417560, -0.738338, -1.057764, -0.678686, -0.511943, 0.087805, -1.178904, -0.020077, -0.735312, 2.225171, 0.800270, 0.307776, -0.867212, -1.096273, 0.326317, 0.557982, -0.679935, -0.191818, 0.175686, -1.618904, -0.590567, -0.570022, 0.781748, 0.462327, -0.040145, -0.855343, -0.115104, 0.041352, -0.382528, -1.040630, -0.754828, 1.059888, 1.446273, -2.367270, -0.393964, 1.498215, 0.949906, -1.220955, -1.028000, -0.646646, 0.597771, -1.376758, 2.454723, 0.547693, -0.644849, -0.266013, -1.838894, 0.593752, -0.462218, 1.172756, -2.429083, -1.188214, 0.680437, -0.962133, -0.182934, 0.995955, 0.785354, -0.182547, 0.997651, 1.069256, -1.853381, -1.233168, -0.086025, -1.636772, 2.082049, 1.851984, 1.205178, 0.451759, 0.889009, 0.999693, -0.248210, 1.156428, 1.004071, 1.532621, 0.079613, 0.445009, -1.388159, 0.520110, -0.819688, 1.848428, -1.377076, 1.085867, -0.141614, 0.861770, 0.276234, 0.035827, 1.225758, 0.684828, 1.369979, -0.410746, -0.820309, -0.377636, -0.423588, 0.595391, -1.244304, -0.390997, 0.778996, -1.181772, 0.299752, -0.354254, 0.125417, -0.625872, -1.942388, 0.825644, -0.059739, -0.513850, 0.616186, -0.580190, 1.449074, -0.495146, -0.127389, -1.154311, -0.067258, 1.918328, 0.588570, 1.920000, -1.576218, 1.528751, -1.122871, -0.134969, -0.946113, 0.089608, -1.008826, -0.221527, -0.143156, -0.100505, 0.446338, 0.169057, 1.698623, 1.607382, 0.188724, 1.018286, 0.905217, -0.102444, 0.475338, 0.193732, 1.070050, -0.063235, 0.435163, -0.417609, -1.132598, -1.638451, 0.048354, 0.495399, -0.425564, 0.595727, 0.606261, 0.475582, -0.847307, 0.389538, -0.885340, -0.389737, 0.611642, 1.989955, 0.228534, 0.282527, 0.208047, -0.338404, -0.477009, 0.123264, -0.511459, 0.634120, -0.609135, 1.334642, 2.303862, -1.827268, 0.043426, 0.304302, -1.076522, -0.034358, 0.643726, 0.186605, -0.361674, -0.387850, -0.196510, -3.149267, -1.358457, -1.089782, -0.776390, 0.519703, 1.502051, -2.449704, -1.217901, 0.622746, -0.046500, 0.561773, -0.721465, 0.417034, -0.146263, 0.255638, 0.343702, 0.162747, 1.131130, 0.547638, 0.686442, -1.400053, 0.611963, 0.041466, 0.625173, -0.287345, 0.764026, 0.499103, -0.848533, 2.211276, 0.318991, 0.369081, -0.419225, 0.461029, 0.673602, 0.190658, -0.626521, 0.955305, 0.829342, -1.397739, -0.032750, -1.406936, 0.803207, -0.557970, 0.175772, -0.794910, 1.165292, 1.091059, 0.380290, 2.041073, 1.646045, 1.178117, -2.504400, 0.332805, -0.694430, 0.105917, -0.774951, -1.343382, -0.100343, -2.266622, -0.623679, 0.254797, -1.548932, 2.874456, -1.521962, 0.131839, 1.147142, -0.138694, 0.032951, -1.226551, -1.464446, 1.581435, 1.407592, 0.603723, 0.853720, 0.399882, -1.098830, -1.262822, 0.311992, -0.454619, 0.048546, -0.403091, 0.479674, 1.122055, -0.863642, -0.572461, 0.307126, 0.134515, -1.134196, -0.697220, 1.503836, -0.612185, -0.134003, 0.851509, -0.426730, 0.518561, -0.692058, -0.254887, -0.442444, -2.284838, -1.922591, -1.090347, 0.265984, 1.055776, 0.247543, -0.035070, 0.697355, -1.213801, 0.701310, 0.651835, -0.124529, 0.508516, 0.862556, -0.741192, 2.027012, -1.202887, 2.278743, 0.107991, -2.065218, -0.301215, 0.255792, -0.305803, -0.591421, 0.437408, 0.755406, -0.651447, -0.786370, -0.446447, 0.689408, -0.914871, 1.561946, -1.494240, 1.000568, 0.156876, 3.194226, -0.252239, -1.588185, -0.142343, -0.903314, 0.303029, 0.809735, 2.731235, 1.064802, 1.342311, -0.890441, 1.049239, -1.544716, 0.609665, -2.905241, 1.280152, 1.009786, -0.211146, 0.432507, 0.109842, -0.196329, 0.650985, 0.411019, 1.910696, 0.489661, 0.914273, 0.305095, 0.131587, -0.639844, -1.057865, -0.415362, 0.763949, -1.743765, -0.887085, -1.587725, 0.803191, -1.211341, 0.415068, 0.681620, -0.248724, -1.734414, 0.061383, -0.150479, -0.791074, -1.264693, 1.038573, -0.654671, -2.685874, 0.286722, -0.986716, 1.278460, -0.263806, -1.095659, 0.710411, -0.436489, 0.346448, -0.846777, -0.403399, -0.136516, 0.610977, 2.001507, 2.172742, 0.212230, 0.655414, -0.475522, 0.491290, 0.985538, 1.673805, -0.552468, -1.057271, -0.756938, -0.276423, -0.122831, 0.063485, -3.406634, 0.056409, 0.500615, 0.296047, -0.893557, -0.470523, 0.265109, 0.051965, 1.235011, 0.133661, 0.644713, -0.340267, -1.117079, 0.020120, 0.093797, -0.439721, -0.612145, 0.766791, 0.245905, -0.015878, 0.474079, -1.062378, -1.446133, -0.353047, 0.077878, 2.559675, -1.040980, -1.128039, -1.611361, 0.386166, -1.455491, 0.648884, 1.013590, -0.666501, 0.747269, -0.789928, 0.271830, -0.177431, 2.176266, -0.714339, -1.270784, -1.934228, -0.788925, 1.342962, 1.440324, -1.150443, -0.209699, -0.180819, -0.242046, -0.695413, -0.408575, -0.386395, 0.561054, 0.937899, 0.387918, 1.350737, -1.682938, -0.131034, 0.162744, -0.669833, -0.260482, -1.658021, 0.501010, -1.059402, -1.902739, 0.600738, 0.510977, -0.960409, -2.073417, 0.526822, -0.161208, -0.218772, 1.431358, -0.133447, 2.009278, 2.163928, 0.428371, 1.429709, 0.487019, 1.312181, 0.139452, -1.344984, -0.753194, -0.601805, 0.952805, -1.213544, -0.735502, 0.222692, 0.503392, 0.591962, 0.220531, 0.067417, 0.009803, 0.033539, -1.374292, 0.786708, 0.314891, 1.504740, -1.166156, -0.717198, 0.819826, 0.071165, -1.149643, 0.864733, -0.810493, -0.077067, -1.190500, -0.601995, 0.297059, 1.709856, 0.513614, 0.685256, -0.886553, 0.590667, 0.781852, 1.515978, 0.541267, 0.972015, 0.515594, -0.755665, -1.196803, 0.129995, -0.280775, -0.886776, 2.097949, 0.263299, 1.317637, 1.840404, 0.984385, -1.069731, -1.216292, -0.886254, 0.271411, 0.694655, -1.284353, -0.758446, 2.365119, -0.573235, -0.657749, 1.394524, 0.254811, 0.659707, -0.896089, 0.412251, 0.201681, -0.870381, 0.672244, -0.029943, 0.637134, 0.256491, -0.420665, -0.956037, 0.234495, 0.969257, -0.537339, -0.738158, -0.312571, 0.058444, -0.657838, 0.413471, -0.320519, -0.059049, -2.792986, 1.537826, -0.752734, 0.886925, -0.330531, -2.573396, 1.461152, -1.668271, -0.540423, 0.512467, -0.488480, -0.314196, -0.167764, 0.185336, 0.747084, 1.717574, 0.066471, 0.615602, -0.717860, 0.459512, 0.328669, -0.116149, -0.221468, 0.408906, -0.143066, -0.767844, 0.938640, -0.321025, -1.378388, -0.234962, 1.094633, -0.868932, 2.986082, -1.126683, 0.734696, -0.402107, -1.252201, -1.532368, -0.664881, 1.087629, 0.448883, -1.888391, 1.375879, -0.516788, 0.172639, -0.009919, 1.044257, 0.022091, -0.859001, -1.243192, -0.647605, 0.446667, -0.338769, 0.988514, -1.210149, -0.330996, -0.533625, -1.863738, 0.190243, 1.692262, -1.524095, -0.566387, 0.620357, 1.142895, -1.699816, 0.288415, -0.056193, -1.227904, -0.219258, 0.623016, 0.846967, -0.259036, -0.081195, -0.308153, -1.394274, 0.934198, -0.545730, -0.161737, 0.638075, -0.049673, 1.265629, -0.598267, -1.390629, -1.036259, -1.067406, 0.123528, 0.305077, 0.856855, -0.897730, -0.960500, 1.943170, -1.833273, -1.636155, 0.912541, -1.169834, -0.651926, 0.950193, -0.896680, 1.220830, 0.834673, 1.222897, 2.003617, -0.532680, -0.137615, -0.546514, 0.075600, -1.336629, 0.983891, -0.364252, -0.089601, 1.253298, 0.254480, -0.471829, 0.867606, 1.176369, 0.062034, 1.178102, -0.525081, 1.161275, -0.193067, 0.139609, 2.463785, 1.461310, 0.766934, 2.281673, 1.209999, 0.519513, 0.068587, 0.097167, -0.108971, 0.207804, 1.257828, 0.774688, -0.381719, -0.269692, -0.720154, -0.781548, -0.903291, 0.555728, -0.552487, -0.352502, 1.527233, -0.753100, 0.269822, -0.851738, 1.662200, 0.644648, 1.797857, -0.549966, 1.246007, -1.445524, -0.299174, -0.925746, -1.467359, 0.041498, -0.519567, -0.323140, -1.069878, 1.555201, -0.502747, 1.765482, -1.828932, -1.256124, 1.881498, -1.290076, -0.514382, -0.990444, 1.528788, -1.345397, -2.085680, 0.546039, -0.997838, 0.420786, 1.091363, -1.921797, 1.417968, -1.588256, -0.349233, -1.880143, 0.609446, 0.183582, -0.277156, 0.501461, 1.545049, -0.754368, 0.242740, -0.393583, -0.006779, 0.859682, -0.008279, 1.328433, -0.226712, 0.256763, 0.763203, -0.585298, -0.600372, 0.608268, -0.224290, -0.075229, -0.944613, -1.421874, -0.220666, 0.347021, -1.926725, 0.872041, 0.439350, -0.300862, -0.262054, 2.043514, -0.448024, 0.052036, -0.377657, -0.577341, 0.252018, 0.234727, -0.031186, -0.869760, -0.766313, -2.689955, -0.218688, -0.450176, -1.216507, -0.045255, -0.266067, -0.626529, 0.480286, 0.748951, 0.491928, 1.459725, -1.750205, -1.251004, -1.203791, 0.321140, -0.299866, -2.022978, 1.052269, 1.147653, -1.040212, -1.489554, -0.367603, 1.223913, 1.129208, 0.435260, -1.644381, 1.047900, -0.632342, -0.286455, -2.216182, -0.501942, -0.649034, 0.270376, -0.239904, -1.695754, 0.863139, -0.215888, 0.498591, -0.807422, -0.619186, -0.352490, -0.987165, 0.922463, 0.630104, 0.155820, 0.712317, -2.025440, 0.739338, -0.827246, -0.877744, 0.333282, 0.093306, -0.353306, -0.573530, -1.720615, 0.164724, 0.277571, -1.539407, 0.696843, -1.314282, 1.279053, 2.097290, 0.329142, 0.860229, 0.171302, -1.209728, -0.065187, 1.025886, -0.994287, 0.364668, -0.851759, 1.422363, 1.255699, -1.245092, -0.836066, -0.075105, -0.186672, -2.514777, 1.378517, 0.512229, 2.281718, 0.005549, 1.252450, -1.458085, -0.535434, -1.911853, 0.818133, 1.546728, -0.629296, -1.448725, -1.028722, 0.370583, 0.630838, -0.662629, -1.851900, 0.278069, 1.609316, -0.278265, -0.423641, -0.771315, -0.233973, 1.117934, 0.723387, -0.442049, -0.469074, 1.741392, -1.077910, 0.278056, -0.384259, -0.026249, -0.610386, 0.979903, -0.030335, 1.789018, 2.301672, 0.414716, 0.491515, 0.858355, 1.432340, -2.232933, -0.963937, 0.764947, -0.081959, 0.734473, 0.871468, -0.901378, 0.113705, 0.759349, -2.049533, -0.195830, -0.264110, -0.215689, 0.453122, 0.713367, 1.182610, 1.142626, -1.766239, -0.340621, -0.629056, 0.622529, -1.480955, -0.563009, 0.475270, -1.613631, -0.832101, 0.013527, -1.105328, -1.753744, 1.104966, 1.055996, 0.624471, -0.427321, -0.008244, 1.360452, -0.038796, -1.834075, 0.735670, -0.125000, -0.216410, -0.601347, 1.004473, 1.165247, -1.688021, 0.811148, 0.906928, -0.922489, -1.562956, 0.908931, 0.316262, -1.135446, -0.081845, -0.321890, -0.462137, -0.308414, 0.191668, -0.229555, -1.248932, -0.389092, 0.727887, -1.090106, -0.145516, 1.049549, 0.374020, 1.151163, -0.504337, -1.112494, -0.450709, 0.987908, 0.576634, 0.307261, 0.129751, -0.108852, 1.563658, -1.571587, -0.234733, -0.519843, -0.793486, 1.354939, 1.461516, -1.112439, 0.924630, -0.076241, -0.665127, 0.885971, 1.368419, 0.862948, 0.060260, -0.820589, -0.321140, -0.192278, -0.616737, -0.774871, -1.585511, -1.034324, 1.178423, -0.465963, -0.926429, 0.842551, -0.639459, 1.311219, 0.576606, 1.643043, -0.932883, -1.403570, -0.332349, 0.722983, -0.865942, -1.071464, -0.072637, -0.220877, -0.161178, 0.144614, 0.941853, 0.776319, -0.972007, 0.721637, -0.536685, 0.137130, 0.015957, -0.760158, -0.212186, 0.441671, -0.196893, -0.292674, -1.033663, 1.574584, -1.936772, 0.077969, 1.389032, -0.734494, 0.810573, -0.782792, 2.121448, 0.486889, -0.981116, 1.450077, -1.331966, -0.404402, -0.270852, 1.152673, -1.875978, -0.340984, 0.470770, 0.016166, 0.326169, 1.503670, -0.178025, 1.045433, -0.843477, -1.352006, -1.027982, 0.791837, 1.460205, -0.831909, -0.644491, -0.320261, 1.320606, 0.950770, 0.556535, 0.295401, -1.306557, 0.422963, 0.123349, 0.503248, -0.744786, 0.486533, -2.408756, -0.614059, -1.272639, -0.154480, -0.243890, 1.063763, 1.465359, 0.554328, -0.746714, -2.018773, 0.237961, -0.392855, -0.797780, -0.484219, 0.853947, 2.007815, 1.459001, -1.731505, -0.423916, -2.136174, 0.047897, 0.560132, 1.690631, 2.392580, 0.549979, -0.333159, 0.152302, 0.524191, 0.699575, -0.922877, -0.368055, -0.698793, 0.214048, 1.026225, 0.977724, -0.476521, -0.850956, -0.312651, -0.363223, -0.049452, -0.799464, 1.108645, -0.335565, 1.339667, -0.621804, 2.614281, 0.373765, 0.307237, -1.778127, -0.203879, -1.504643, 0.652233, 1.033645, -0.152112, 0.477987, -1.046903, -0.558052, 0.970424, 0.545387, -1.861901, 0.250406, -0.260694, -0.589204, 0.656227, -0.107706, -0.039342, -0.053218, 0.153837, -2.135235, 0.602633, -1.993757, -1.052201, -0.036309, -0.651222, 0.061159, -0.492028, 0.700293, 1.410145, -0.465270, 1.123876, -1.209428, -1.693274, -1.699338, -0.882237, -0.149133, 0.834647, -1.018124, 0.822442, 1.003223, 0.245477, 0.593216, -0.607539, -0.236567, 1.727665, 0.784726, -1.500339, 1.546760, -0.498538, -1.562123, 1.501674, -1.648893, 0.715318, 0.743820, 0.376845, -0.522694, 0.759597, -0.825380, -0.608655, 0.050804, -2.316278, 2.008482, 2.394639, 0.109615, -0.993553, -0.053334, -1.049782, 0.769240, -0.700958, 0.300825, 1.492070, 0.283139, -0.846569, -0.950123, -0.914549, 0.232677, 0.712320, -1.799841, -0.331977, -0.912701, 0.821955, 0.935060, -2.244362, -0.115074, 0.435303, 0.526526, -0.162080, -0.086235, 1.172745, 0.904955, -0.095507, 0.813715, -1.288053, -0.763342, 0.363022, 0.965670, -1.281185, 0.317115, -0.416058, -0.898607, 0.922693, -1.696935, 0.217736, -0.228798, 0.248914, -0.751413, 0.133102, 0.908114, 1.528758, 1.147066, -0.957855, 0.132555, 0.093994, -0.262816, 0.976301, -1.537189, 0.424576, 0.304050, 1.880432, 2.122470, -0.812044, 0.514938, -1.749113, 0.309892, 1.862914, 0.836823, 1.110028, 1.015239, -0.588796, -1.747168, 1.251882, 2.337649, 1.198727, -0.694477, 0.390293, 0.722892, 0.261920, 0.549463, 0.576119, 0.599389, 1.344038, -0.879712, 1.393368, -0.780667, 1.195700, -0.246208, 0.719912, -0.007648, 1.961045, -1.453336, -0.002449, -0.141741, 0.427325, -2.422113, 0.695441, 2.022704, 0.017737, -0.596918, 0.155318, -0.858020, -0.520189, -1.453613, 0.816655, -0.593158, -0.844048, 0.358683, 1.632988, -1.399397, -1.344688, -0.917759, -0.030035, 0.234188, 1.358806, -0.101600, -0.474973, 0.369328, 1.646710, 0.121548, 1.602458, 0.780981, -0.593549, 0.417278, -2.432728, 0.249042, 0.660860, -0.345129, -0.760740, 1.199562, 1.023778, 0.529702, -0.183113, 0.623992, 0.794430, 2.513446, -0.012140, -0.662494, 0.246767, 0.311046, -1.491785, 1.067445, -0.938982, -0.831476, 0.919879, -0.853041, -0.764526, -0.351859, 0.311569, 0.738344, -0.028153, 0.539080, 0.779188, 0.964853, -1.733557, 0.682349, 0.388291, 1.695299, 0.760431, 0.173611, -0.273504, 0.244218, -0.345069, -0.105760, -0.984397, 0.209721, -0.203139, -0.677633, -1.332104, 0.814355, 0.378778, -1.209317, -0.487814, 0.339988, -0.475619, -1.345430, 1.914988, -0.571983, 0.277617, 0.639979, -0.046215, -1.771259, -0.154392, 1.341459, -1.466065, -1.013458, -0.281309, 0.309099, -0.214550, 0.084995, 0.491035, -0.531771, -0.450929, -1.461833, 0.219309, 0.773946, -0.467971, -0.641384, 0.310318, 0.540565, -2.837778, 1.528794, 0.307575, -1.057888, 0.635492, 0.451333, -0.322562, 1.752682, 0.974493, -1.201776, -0.405035, -1.488871, 0.300513, -2.175068, 0.955324, -2.212816, -1.864128, -0.857669, 0.940579, -0.630297, -1.123194, -0.651623, 0.629504, 0.520490, 0.110960, 0.572056, 0.577275, 1.597715, -1.006731, -2.229998, -0.761004, 2.592788, 0.836680, 0.307343, -0.201454, -0.206884, 0.429721, -2.511901, 0.963045, -0.660989, 0.169770, -0.883397, -0.108154, 0.903001, 0.222154, 2.461946, 0.322017, -1.059526, -0.376265, 0.742527, -0.827880, -0.278785, -2.317195, 0.637021, 0.022313, 0.641768, 0.421516, 0.499739, 0.522512, -0.086299, 0.058879, -0.215715, 0.290025, 0.499986, 0.619287, -0.829891, -1.387232, 0.347831, -0.095727, 0.640363, 0.024536, 0.626070, -1.131388, -0.510303, -0.753886, 0.917931, 1.644192, -0.231398, 0.446463, -0.506301, -0.096248, 0.388652, 0.286085, -0.429816, -0.597529, 1.362114, 1.021289, 0.965536, 0.849185, -0.899132, -1.131406, -0.216204, -0.825323, -1.056397, -0.473163, 1.462392, 1.551040, 1.251491, -0.088721, 0.701875, 0.709237, -0.637144, -0.195304, 1.949687, 0.996440, -0.111126, 0.016823, 0.623643, 0.844338, 2.228092, 0.611183, 0.644143, -0.230474, 1.764777, 0.784049, 1.328226, 0.964108, -1.940537, -0.430083, -0.382930, 1.268362, 0.250581, 0.924466, 0.420056, -1.198357, -0.581462, -0.184268, 0.207480, 0.637975, -2.098031, -1.343645, 0.395007, 1.135976, 1.579757, -1.502006, 0.337460, -1.034233, 0.216000, 0.776910, 1.052276, -2.708989, -1.037782, -0.139173, -1.382878, 0.895287, -0.016969, -0.744158, 0.052344, -1.415435, -0.635015, 0.497164, -1.186337, -1.922488, 1.289869, -1.855075, 0.909266, -0.245163, -1.540543, -0.122026, 0.656166, 0.633519, 1.043577, -1.132829, 0.497291, -0.222675, -0.143908, 1.135145, 0.197856, -1.297522, -0.662142, -0.879106, 0.201731, -0.323394, -1.486506, -1.170497, -0.903873, 0.262275, 0.106676, 0.344558, 0.274238, -1.682186, 0.483856, 2.086176, -0.318197, -1.650790, 0.158982, 0.013069, -0.447818, 0.865378, -0.260138, 0.362155, -1.190720, 0.084464, -1.095194, -0.373772, 1.029437, -0.130929, 1.509885, -0.221927, -0.442260, 0.924319, 0.846035, 0.424969, 1.427361, -0.475618, 0.000885, -0.230159, 0.045590, 1.162345, 1.985336, -0.841627, -0.426462, -0.678987, -0.948554, 0.417560, -0.086297, 2.054386, -0.535873, -0.244189, 1.089798, 1.488903, 0.095581, 1.405582, 0.959342, 0.412968, -0.865895, 0.502475, 0.759015, -0.053159, 1.474974, 3.311616, -2.726684, 0.201715, -0.776050, -0.654310, 0.922350, -0.732019, -0.243712, -0.918842, 0.407679, -0.172024, 1.252879, -0.700771, 2.686821, -1.067172, 0.365555, -0.391219, -0.300030, -0.578497, -1.978502, -0.776273, -0.625032, -1.051527, -0.399244, 0.710774, -0.562948, -0.223699, 0.492573, 1.007358, 0.972846, -1.387209, 0.582019, -1.426677, -0.008003, 0.265598, 0.552070, 0.777388, 0.818219, -0.136261, 0.039044, 0.246083, 1.091513, 0.778749, 0.633168, 0.109980, -0.013590, 0.897413, -0.463689, -0.896730, -0.036204, 0.032072, 0.997550, 0.055774, 0.232243, -1.368917, -1.291377, 0.784231, -0.574608, 0.746839, -0.066957, -1.259130, 0.031658, 1.024423, -1.309216, 0.044281, -0.522100, -0.537462, 0.200850, -0.233059, -0.410379, 1.988236, -0.199114, -2.977719, -0.556046, -0.932151, 0.857484, -1.064307, -0.300298, -0.525847, 0.968885, -0.269495, 1.587986, 1.478272, 0.099931, 1.095847, -0.447675, -0.630767, -0.014909, -0.404349, 0.092116, -1.904968, 1.620780, 0.685424, 0.166678, -1.116913, 1.176257, 0.955548, -0.005178, -0.889623, 1.759122, 0.098328, -2.833148, -0.843227, -1.122339, 0.372779, 2.148740, 0.148913, -2.040244, -1.440733, -2.519475, -0.819943, -0.801535, -2.454587, -0.123305, -0.974747, 1.020552, 1.183795, 0.963816, 0.211812, -0.717252, -0.977562, 0.258807, 0.050002, 0.538316, 1.429791, -0.708449, 0.378926, -0.905112, -0.148238, 0.425067, 0.144572, 1.625686, 0.796075, 0.640701, -0.705840, 1.034225, -0.299034, 0.590012, -0.861962, 0.641564, -1.355265, 0.086982, 0.607299, -1.406732, -0.071551, -0.646230, -2.016154, -0.228500, 0.135832, -0.893615, 0.980445, 0.667505, 1.059190, 1.273170, 0.923153, 0.233411, 0.705158, 0.681301, -0.639919, -0.680036, -0.845177, 2.011084, -1.515560, -1.787846, 1.719361, 1.001815, -1.299586, 0.204942, 0.900031, 0.796488, -0.498832, -0.912853, 0.414596, 0.389513, -0.385443, 0.736788, -0.181731, 1.634039, 0.514451, -0.300646, -0.132658, -0.421377, -1.448779, 2.394668, -0.960910, -0.529001, -0.655801, 1.013660, 0.103203, 2.503516, -0.041665, 0.070174, 0.502330, 1.330866, 0.326154, -3.084213, -0.461131, 0.576619, -1.394261, -0.616433, 0.155895, -1.259295, -0.458393, -0.537426, -0.156774, 0.066851, 2.088616, -0.448071, 0.222122, -1.649537, 0.907412, 1.730049, 1.451952, 1.402704, 1.228492, 1.188904, 1.755113, 0.071429, 0.869794, 1.189267, 0.856337, 1.923983, 0.855815, 0.326022, 1.167820, 0.010653, -0.397656, 0.698905, 0.258567, 0.003295, -1.432642, 0.810588, 1.081931, -0.202994, 1.039256, 1.166966, -0.521562, -2.195156, 0.338812, 0.435148, -0.129992, 0.667046, 0.917094, -0.022450, -1.697108, -1.048027, 0.449520, -1.876792, -1.001283, 0.710211, -0.763948, 0.491031, -0.338711, 1.397417, 0.237465, -2.064210, 0.740985, -0.517271, -2.677195, 0.437818, -1.215550, -1.539046, 1.286696, -0.870245, -1.476366, -1.034659, -0.087172, 0.034080, 0.513004, 1.121356, -0.927337, -0.690235, 0.186683, -0.723085, 0.368796, -1.374483, 0.741311, 0.137899, -0.693621, 1.293474, 1.113973, 0.725431, -0.513985, -0.386443, 0.322043, 0.261640, 0.887429, 1.252439, -2.384531, -0.040552, 1.336827, 0.641073, 2.312727, 2.210737, -0.104167, -1.625606, -0.453935, 0.611962, -0.836001, 0.847648, -0.692852, 0.065729, 0.502129, 1.794014, -0.603319, 1.993123, 1.125630, -1.480434, 0.678249, 1.059124, 1.125257, -0.012855, 0.330655, 1.537045, -0.890942, 1.340598, -0.658356, 0.593778, 1.176481, 1.247908, -0.786720, -2.270212, 1.765034, 1.028400, 0.456530, -1.584285, 1.720204, -1.113021, -0.302439, 1.228953, -1.397177, 0.977870, 0.239450, -1.525943, -1.123345, -0.658571, -0.988388, -0.248297, 0.146819, -0.318589, 1.350987, 0.239436, -0.742782, 0.233791, -1.043852, -0.105036, -0.632381, -0.515999, -0.918480, 0.357263, 0.604040, 0.240700, 2.000727, 0.115686, 1.306229, -0.255383, -0.642580, -0.860596, -0.926360, -1.364598, 2.063289, -0.267165, 0.367679, -1.777664, -0.826145, -0.069895, -0.167629, 0.207241, -1.065631, 1.309244, -0.617902, 1.454542, 0.153149, -0.036952, 1.227826, 1.243757, 1.261898, -0.066420, 0.476860, 0.155793, -0.358413, -0.064075, -0.908484, -0.293375, 0.536978, -0.392840, -0.789004, -1.823451, -0.980039, -0.356630, -0.122844, -0.955951, -0.048716, 1.080556, 0.437407, -0.720724, -0.379348, -0.255609, -0.962648, -1.698318, -0.677181, 0.779339, 0.945545, 1.508962, 0.498305, -0.900018, 0.074643, 0.313226, -0.577610, 0.128087, -0.971260, 0.712669, -1.011854, 0.703006, 0.457057, 1.455630, -0.145059, -0.389027, -0.530551, 0.217589, 0.142119, 2.125057, 0.566416, 1.359129, 1.166560, 0.110256, 2.295379, -0.667212, -0.561118, -1.343902, -2.398419, -0.728303, 0.108555, -0.611231, -0.029871, 2.319218, 0.068388, -0.996810, 0.829313, 0.823211, 1.255286, -0.107265, -0.166906, 1.591236, -0.630983, 0.646015, 0.076722, 0.054033, -3.119606, -0.389339, -1.723783, 0.630847, 2.791872, 1.028374, 0.523483, 1.315657, 1.991441, 0.383832, -0.307406, -1.206428, 0.065238, 0.640835, -1.728876, -1.836075, -1.003828, -0.589259, -0.745668, -0.355166, 1.269328, -1.036189, -0.141874, -1.332710, -0.403485, 0.385235, 0.963984, 0.003028, -1.178468, -0.609446, -1.105644, -1.372298, -1.101461, -1.390052, -0.308819, 1.102935, 0.179133, 0.830299, 0.496424, -0.090244, 0.517730, -0.428464, -1.391725, 1.220459, 0.550446, -0.036274, 0.209970}, - { -0.873797, -0.848738, 0.434394, 0.165952, -0.101749, -1.035490, -0.313941, 1.901035, -0.700648, -0.075471, -0.845506, -1.490779, -0.059166, -0.216956, 0.965000, -2.053168, 1.183160, -0.124705, -0.073124, -0.964602, -1.012523, 0.175003, -0.593043, 0.837658, -0.948471, -1.660789, 0.364952, -0.619076, -0.205556, 1.231340, -0.032919, -0.623376, 2.630106, 1.001652, -0.541699, 0.510936, -0.844868, 0.333981, 0.590360, 1.539893, 0.121047, -0.326439, -1.142898, 0.100881, 0.001682, 0.226457, 0.455227, -2.178535, -1.930263, -1.940689, -0.535355, 2.456134, -0.842179, -1.431153, -0.341559, 0.826787, -0.870120, -0.224147, -0.630461, 1.170811, 0.061555, 0.332346, 0.344112, 0.467991, -1.455549, 0.901558, 0.609355, 0.004234, 0.045178, -0.775070, -0.056467, -0.186505, 0.102892, -0.162622, -0.107156, -0.855904, 0.212941, -0.592138, 2.223728, 0.567127, -1.973265, 2.420116, -0.155879, 0.123229, 1.717498, -0.907038, 0.156527, 1.441655, 0.738692, 0.514639, -0.253390, 0.309961, 0.525147, 1.214306, 0.966114, -0.212056, -0.028691, -0.959778, 1.220209, -0.392920, -0.583386, 0.549408, 0.567118, -0.388875, 0.510404, 1.207088, 1.067818, 2.785378, 0.119904, -0.309696, 0.085133, 1.613665, -0.213364, 2.088050, -1.747495, 0.512213, -0.739886, 1.429557, 1.183244, 0.359349, 0.699110, -0.229758, 0.394552, 0.850096, 1.506585, -0.150035, -0.664259, 0.077857, -0.115529, -0.198777, -0.324835, 0.440172, -0.410794, 0.064644, 2.482541, 0.663723, -1.026647, -0.753733, 0.606273, 1.908399, 2.288875, -2.382905, 0.185754, -1.359612, 0.526965, -0.336724, -0.301072, -0.192350, -0.911742, -0.914910, -2.069892, 0.448750, 2.022995, 0.292217, 0.689663, 0.857953, 0.857013, 0.496406, 0.330190, -0.334918, -1.269139, -1.219388, -1.287231, 0.126139, 0.248839, -0.006057, 0.286530, 0.283814, -0.029719, 2.597322, -0.232601, 0.035984, 0.453491, 0.259375, 1.594944, 0.299652, 1.063329, -0.428121, 0.883773, 1.323527, 1.469233, 1.079023, 1.544922, -0.796412, 0.317603, 0.594706, 1.502108, 0.713799, 1.263587, -0.051119, 1.575659, -0.559676, 1.466976, 1.303368, 0.794425, -0.056557, 0.437781, 1.135189, -0.171401, -0.503153, -0.258255, 0.282217, -0.229790, -0.443361, -0.133894, -1.271598, -1.086809, 1.053922, 0.362512, 1.625527, -1.131755, -0.154455, 0.215111, 0.157766, -0.339994, -0.134817, -0.163873, 0.070482, 0.822340, 0.501798, 1.239665, -0.178244, 0.194652, 1.483102, -0.376957, 0.165967, 0.348799, -0.184718, -0.123104, -0.004752, 0.349809, 0.808950, 1.053163, -1.154732, 0.397341, -1.790398, 1.952309, 1.133645, -0.549162, -0.380406, -0.249190, 0.542042, 2.855514, -0.419409, 0.691657, 1.575807, -0.110361, 0.263098, 0.032790, 1.337082, -1.250040, 0.763334, -1.417936, 0.787585, 0.012291, -0.114913, -0.870507, 0.763329, -0.397274, 0.591245, -0.537081, 1.551406, -0.536766, -0.740443, 0.586634, -0.971348, -1.399864, -0.398851, -0.730361, -0.006105, 0.126774, -0.945285, 1.812753, -0.850067, -1.243495, -1.297913, -0.222988, 0.534580, 0.825200, 1.004085, 0.887223, 1.258721, 0.404682, -0.341614, -0.728742, -1.276063, -1.446142, -0.308469, 0.522140, -0.706649, 0.385457, -1.652104, 0.377075, -0.587679, -0.060075, 0.435365, 0.636048, -1.143908, -0.051553, 1.598327, -0.177369, -0.519292, -0.888987, -1.278914, 1.128265, 1.716922, 0.322868, 0.615016, 0.255010, 0.929196, -0.587114, -0.093149, 0.670374, 0.013461, -1.869998, 0.879745, 0.165750, 0.410311, 0.617640, -0.098478, -0.043505, 2.344395, 1.043987, -0.188261, 0.381790, 0.042312, -1.256711, 0.370431, 1.242003, -0.689607, 1.101824, -0.694310, 0.494667, -0.819248, -0.591947, -1.423812, -0.368861, -0.260623, 0.692585, -0.014712, 0.321562, -1.137205, -1.942794, 0.173974, 1.239827, -0.255088, 0.515221, 1.069920, -0.179254, -0.624410, 0.998396, 0.463096, -1.133941, 0.200623, 0.982487, -1.282192, 0.531911, -0.150898, 1.157475, 0.737805, -0.138015, -0.038034, -2.561984, 1.240103, 1.580067, 1.360010, 0.274650, -0.419968, 0.258068, -0.019160, 0.284717, -2.363257, 1.246648, -0.068826, -0.189712, 0.301607, -0.430255, -1.701566, -1.662705, 0.336265, 1.188985, -0.277080, 0.038711, 1.753275, -0.354583, -0.030541, -0.635535, -1.350001, -0.453627, 0.485518, -0.310117, -1.991418, -1.394487, -1.204275, 1.385730, 1.532049, -0.743426, 1.726983, 1.107863, -0.855946, -0.961546, -0.495941, -0.735220, 0.434227, 0.100410, -1.540966, -0.993406, 0.162378, 0.485831, -0.807926, 0.786809, -0.013933, -0.182386, -1.773660, -0.409443, -0.300064, -1.691005, -0.700845, 1.251145, -0.515880, 3.084770, -0.196229, 1.341347, 0.695394, -0.392186, -1.540710, -0.785667, 0.029593, 0.518960, -0.179704, 0.086364, 0.228524, 1.096202, -1.575037, -0.534947, 0.325853, 0.882455, -0.051859, 1.480205, 0.590740, -1.057869, 0.001325, 0.270726, 1.132633, -0.782542, 0.312935, 0.896330, 0.507983, -0.365484, -0.712971, 3.394018, -2.490313, -1.125502, 0.206467, 1.599721, 0.657169, -0.283679, 1.124174, -2.348284, 1.158276, -0.729405, 1.331504, 0.728637, -0.010471, 0.853176, -0.540158, 0.710491, -0.648670, -1.261007, 0.659760, -1.602068, 0.385471, 1.236530, -0.373931, -1.216723, 0.782166, 0.518858, 0.741126, 1.181222, -0.452245, -0.310623, -1.592700, -0.840693, -0.190214, -0.913470, 0.343869, -1.387528, -2.146013, -0.244781, -0.831834, -0.837137, 0.244755, 2.495455, -1.153015, 1.277186, -0.971267, 0.588025, -1.154546, 0.336293, 0.926829, 1.499895, 1.330487, 0.631662, 0.131026, -1.181064, 0.394847, -0.757980, 0.679984, -0.890153, 0.533177, -1.126614, -0.925741, 0.253237, 0.810413, 0.449212, 0.714676, 0.255307, 0.330430, 0.954011, 0.548512, 0.848720, 1.380340, -0.641731, 0.287658, 0.502756, 1.067452, 1.856128, 0.385449, 0.763073, 0.279837, -1.192479, 1.987592, 2.017749, -0.596425, 0.702303, 1.582034, 0.259425, 1.140055, 0.230562, 0.741972, 0.074263, 0.458920, 0.199115, 1.359564, -0.839329, -2.541946, -0.491798, 0.371719, 1.352471, -1.210687, 0.491899, -0.475649, 0.507362, -0.791749, 0.517009, -0.384639, -1.172105, -1.063940, 0.921971, 0.444174, 1.094059, 0.287988, -1.274336, 1.197093, 0.114402, -0.392596, -0.334581, 0.742851, 0.230382, -1.044681, -0.260198, -1.060002, 0.161679, -1.366182, 1.715493, 0.209306, 1.106504, -1.441134, 1.291332, 1.787589, -1.581039, -1.660450, 0.856094, 0.173957, 1.193662, -0.010061, -1.120459, -0.234718, -0.649268, -0.587739, -1.134397, 1.177334, -0.167345, -0.857602, -1.271244, 0.274089, 0.694503, -0.852496, 1.864025, -1.209389, -1.311375, 1.830360, -1.357040, 0.234062, -2.102948, 1.517784, -0.943160, 1.044338, -0.350490, 2.443066, 1.127010, -1.708234, 1.092864, 0.236638, -2.241469, 0.971953, 0.949029, -1.333067, -0.687228, 0.603503, 0.878563, -0.973861, 0.838152, -1.061702, -0.198305, 1.495856, -0.649506, 0.272413, 0.521770, -0.132953, -0.037420, 0.106475, -0.344337, 0.492315, 0.446872, -2.509764, -0.670762, -0.960145, -0.816795, -0.053331, -1.027300, 1.226148, -0.033900, 2.407965, -0.221452, 1.425465, -1.311877, 0.013489, 0.008113, -0.191251, 2.021773, -3.252783, 1.689220, -1.509074, -0.916271, 0.623727, 1.759822, 0.701114, 0.231413, 1.493022, 0.053286, 0.194039, 1.398027, 1.552581, -1.376504, 0.588012, -0.956358, 3.370157, -1.695171, 1.505114, -0.276534, -0.484877, -0.974936, -0.570646, 0.780547, 0.365633, -1.182399, 1.681789, 3.150536, -1.725887, 1.237103, 0.383390, -0.462370, 1.023093, 1.177954, 0.082964, -0.684876, -0.939594, -0.162199, -0.418712, -1.879254, 0.320162, -2.534414, 1.286754, 0.486903, 0.199877, 2.164792, 1.028128, -0.485419, -0.596682, 1.829474, -0.985803, -0.179419, -0.466334, -0.067507, 0.013825, 1.129545, 1.016373, 0.237486, -0.015376, 0.120091, -0.069139, -0.409013, -0.222964, 0.354003, -0.469577, -1.378805, -0.463160, -0.193178, -1.071038, 0.935398, -0.468805, -0.565995, 1.398633, -0.682929, -1.204336, 0.394559, -0.448119, 2.308041, -1.190700, -2.944988, 0.503053, -0.861273, 1.403163, -1.010805, 0.062732, 0.931844, 0.701437, -0.312693, 0.835784, -1.129111, 0.414414, -0.001500, -0.908178, 1.339091, 1.351958, 1.430699, 0.872436, -1.369176, 0.460138, 1.954497, -0.434556, 1.318717, 0.158252, -0.553733, 0.567646, -2.140976, 0.427230, -0.587030, -0.065860, 0.340750, 0.793745, 0.026856, 0.932550, 0.574330, 1.644600, 0.056040, 2.007151, -0.868476, 1.326848, -0.577642, 1.320018, -0.026505, -0.936118, -1.411375, -1.504570, 0.027733, -2.179797, 1.987123, -0.363308, 0.034969, -0.154959, -0.672077, -1.134341, 0.653236, -0.377601, -0.231364, 2.208291, -1.377131, 0.375767, -0.867021, -1.167802, -0.510440, 1.779801, -0.548639, -0.062339, -0.371849, -1.968101, 2.398468, -1.447563, 1.790997, 0.017191, 0.028676, 0.024980, -0.623947, -1.332594, 0.118911, 0.493238, 0.152728, -2.150569, -0.439688, -1.828365, 2.434748, 1.759992, -0.310606, -0.013625, 1.051821, -0.827251, 0.326990, 0.589416, -0.096940, 0.338640, 1.035044, 1.343994, -0.331351, 2.242577, -1.399551, 2.062928, -1.202526, -0.481986, 0.371684, -0.408488, 1.638926, 0.356934, 0.290026, 1.014995, -0.480828, -0.059920, 0.469033, 0.818101, -1.861719, -0.427206, -1.553181, -0.111263, -1.027036, -0.273159, -0.293965, 1.437975, -1.677643, 1.511291, -0.464462, 0.083231, 1.444706, -0.690580, 1.430769, -0.107777, 0.290893, -1.815149, -0.360414, 0.844302, -0.638143, -0.056138, -0.127960, -0.699033, 0.494976, -0.217468, 0.931234, 0.748696, -0.236775, 1.116828, -0.909744, -0.041435, -0.260521, 0.927551, -1.006051, -0.731290, -0.867307, 1.167866, -1.071291, 1.119445, -0.163502, 1.031572, -0.553013, -0.062647, 0.677530, 1.237563, 1.131280, -0.829031, -0.313977, 0.744128, 1.602186, 0.740259, 0.273573, 0.110629, 0.803115, -1.319286, 0.537474, 0.343758, 0.750090, -0.225904, -1.282854, -0.244730, -1.796310, -0.042886, -1.348148, 0.726813, 0.780839, -1.283072, 0.898169, 1.196588, -0.528897, -0.426531, 0.095184, 0.282711, -0.267767, 1.532729, 1.115751, -0.145530, 1.657048, 0.429187, -0.080514, 0.122684, 0.684693, 0.789753, -1.426426, -0.189109, -0.688439, 1.737359, -3.321473, -0.441590, 0.155393, 0.945181, -0.122142, 0.151183, -1.243692, 0.658338, -0.739791, 0.479664, -0.867412, -0.647682, -1.436106, 0.097294, -0.762940, -1.316606, 0.929163, 0.294908, -0.150324, -1.508457, -0.574610, -0.507425, 2.037915, -0.985695, -0.572796, 1.252800, 0.977083, 0.329874, -0.276343, -0.343509, 1.197196, 0.186276, -2.006528, 1.563665, 1.140794, -0.866908, -0.161542, 1.071668, 1.752032, 0.583046, -0.253452, -1.027896, 0.099582, -0.507812, -1.285015, 0.363874, -1.059797, 0.702654, -0.325248, 0.490160, -0.659730, 0.780183, -0.216917, -0.245822, 0.689520, 0.025683, 0.711573, -1.346126, -0.555475, 0.012099, -1.599186, 0.469211, -0.120177, -1.124876, -0.861453, -0.292163, 1.975580, -2.214300, 0.855478, -1.891435, -0.679762, 0.610162, -0.352326, 1.538534, 0.588692, -1.623438, 0.250309, 0.933469, 0.328425, -1.483896, -1.599679, -0.351933, 0.151970, 0.117031, -0.649682, -0.131687, -0.779215, 1.688697, -0.918232, 1.200791, -0.151135, 0.099577, -1.721239, 1.901751, 0.181824, 1.044146, 0.434374, -0.519283, 0.608095, 1.933566, 1.488835, -1.741835, -0.937609, -0.018013, 1.345228, 0.273830, -1.149869, 1.121986, -1.263159, 0.477750, -0.092138, -1.863020, 0.496620, 1.065773, -0.503982, 0.388646, 2.007415, -1.375215, -0.184766, 0.910255, 0.056525, 1.144221, -0.057490, -1.091968, 0.492871, 0.968269, 0.324450, -0.669989, -0.537623, -0.045442, 2.118505, -1.169907, 0.137405, 0.104216, -1.343479, -0.134893, -0.448355, 1.556915, -0.892209, 0.073962, -0.311453, 0.948830, 0.220449, 0.056991, -0.682761, 0.393614, -0.735674, 1.198820, 0.945771, -1.015016, 0.837880, -0.736158, -0.279484, -1.033231, -0.774380, -0.225892, -0.117209, -0.803421, -0.216841, -0.372019, 1.668499, -0.303796, 0.199436, 0.602118, 1.160118, 0.132227, -0.966832, -0.248106, 0.682929, 1.887359, -0.485334, -0.435572, 0.926605, 1.921098, -0.456458, -1.021343, -1.167305, -0.217193, -0.296922, 0.598713, 0.135461, -0.851969, -2.482450, 0.719498, 1.871426, 0.447754, -0.729774, -0.064988, -1.305964, 0.142061, -0.417794, -0.958928, -0.554571, 0.913503, 0.056664, 0.758304, 0.407414, -0.799513, 1.865229, 0.137471, -0.935868, 0.499112, 0.840425, 0.200003, 0.212648, -0.282735, 1.887994, -0.956180, 1.131944, -0.882155, -0.934613, 1.165504, 1.199214, 0.679276, -1.120585, 0.602116, -1.896793, -1.706442, -0.703670, -0.947852, -0.840680, -0.234873, 1.326432, -0.153049, 0.201148, 0.787004, 1.347252, 0.499391, -0.057229, 1.624402, 0.987720, -0.414107, 0.012290, 0.004895, -0.752822, 0.711551, -0.557629, -0.810728, -1.731287, 0.195009, 0.629647, -1.200022, 0.311762, 0.508083, 0.567836, -0.641662, -0.928611, 0.545434, -0.948312, 0.207666, -0.850181, 2.400131, 0.134273, 0.074509, -0.686494, 0.277727, 1.153168, 1.032671, 0.987121, 0.678164, -0.977768, -0.052123, -1.717382, -0.509175, -0.463965, 0.652137, 1.443825, 0.640481, -2.073364, -0.619372, -0.735560, -0.851541, -2.002999, 1.286310, 0.034971, 0.150300, -1.160925, -1.258954, 0.422683, 0.427521, -0.679861, -0.454075, -0.197073, -0.635795, 0.784844, 1.820831, 0.945207, -0.384067, 2.049506, 2.184735, -0.329881, -0.854281, -0.113531, 0.659425, 0.777964, 1.120278, 0.246555, -0.748567, 0.694933, -0.033036, 0.472583, 0.353728, -0.683101, -0.053967, 0.832413, 1.176380, 2.500025, -0.058649, -2.196164, 0.082696, -1.409087, 0.794452, 0.729199, 0.803465, -1.026470, -0.857664, -0.886748, 0.782177, 0.523280, -0.379187, 0.772289, 0.324344, -0.266541, 2.075259, -0.752601, 1.725607, 1.632782, -1.057611, -1.094484, 0.898664, 1.329297, -0.724967, 0.295164, -0.780565, 1.676351, -1.121012, 0.777508, -1.112347, 0.181298, 1.917919, 0.392110, 1.008776, -1.475828, 0.701189, -1.211434, 0.998752, 0.106608, 0.409920, 0.341130, 0.290987, 1.876673, 0.529106, 0.040157, -0.570756, -0.074173, -1.214770, 0.615687, 1.121859, -0.907450, -0.568124, -0.424018, 1.042878, -0.975851, -0.550150, 1.892082, 0.720620, -1.169587, 2.019148, 0.440019, 0.073882, 0.884144, 0.918236, 0.327920, 0.658107, -0.303924, -0.383038, 2.123507, -1.153664, 0.560738, -0.419070, 2.195846, -0.120590, -0.617304, 0.196093, -1.322234, -0.956740, -0.035418, -0.068704, 0.886061, 1.812267, 0.716877, -0.484067, -1.702875, -2.159582, 0.615750, -0.857899, 0.719776, 1.226220, 0.308468, -1.369228, -0.690921, -0.446609, 0.855350, 0.456788, 1.420410, -0.420214, 1.412506, -1.570202, 1.082759, 0.365710, -1.007448, 1.037896, 0.769644, 0.536410, -1.276756, -1.274338, 0.612264, -0.629952, -0.504407, -0.199097, -0.481339, 1.450813, -0.409533, -0.188472, -0.631239, 0.862969, -0.098147, -0.964330, 1.252065, -0.093279, 0.137864, -1.199482, -1.788731, 0.769994, -0.400072, -1.830476, -1.394949, -1.278353, -0.563996, 0.618985, -0.062313, 0.296633, -0.040673, -0.136020, -0.328873, 0.041308, -0.059497, -1.289437, -0.204424, -1.230821, -0.593215, -0.055707, -1.353388, -1.085863, -0.361064, -0.836223, -1.297228, 0.227810, -0.662086, 1.700719, -0.150082, -1.231130, 1.889481, -0.309077, -1.080283, -0.877697, 0.450691, -2.065777, 0.473671, -1.005220, -0.685562, -0.209055, -0.297017, 1.234457, 0.599300, -0.207727, 0.408132, -0.888000, 0.809001, -0.258091, 1.156533, 0.562945, 0.423880, -0.206558, 0.236992, 0.708378, -1.079169, 0.786600, -1.449186, -0.616572, -0.340739, -0.521175, 0.488493, -1.822978, 0.262799, -0.251985, -0.534117, -0.753024, 0.859978, 0.462873, 2.527222, 0.227939, 3.183127, -1.767398, -0.837983, 0.326343, 0.784119, 0.222906, 1.294762, -0.445501, -0.071532, -0.423394, -0.046706, -0.347847, -0.298138, -0.079034, 0.403114, -0.145433, -1.924442, 0.106588, -1.465761, 1.869713, 0.549044, -2.200667, -1.284504, 0.828727, -0.189690, -0.621107, 0.128566, 1.462825, -1.125143, 0.122825, 0.666666, 1.579664, -2.042778, -0.735023, 0.883986, -0.966238, 0.281108, -1.446397, -0.223070, -0.707126, 2.315877, -0.092012, -1.102111, -1.108305, -1.030284, 1.539808, 0.455301, -0.356866, -0.598221, 0.956522, -1.436536, -1.484100, -0.004964, -0.200254, 0.666967, -0.116351, -0.086557, 1.248488, -0.494315, -1.005199, 0.472840, 1.267421, 1.562253, -0.693598, -0.550248, 0.216879, -1.292486, 0.247419, 0.237888, -2.072490, -0.139263, 0.407916, 0.689437, 0.590112, -0.463972, -0.068615, -0.178135, 0.253229, -0.451894, -1.941185, -1.022730, 0.973522, -0.966210, -0.948426, -1.234626, -1.155081, 0.743852, 0.956592, -0.547490, 1.782894, 1.317237, 0.477779, -0.919065, -0.321530, -1.749841, -1.050047, 0.266870, 0.499318, 0.154896, 1.397807, -1.208349, -1.314981, -0.111247, -0.716556, -0.545996, -1.147961, 0.927733, 1.395322, -1.108331, -0.390796, 0.538215, 0.532420, 0.197091, 0.366025, 1.122880, 0.355584, -1.520536, -1.471314, 0.102963, -0.739418, -0.152815, 0.625759, -0.477605, -0.543125, -0.533872, -1.256792, -2.013792, -1.821953, -1.129859, -0.698191, 0.222712, -0.350098, 1.535496, -0.652162, -0.921907, 0.157317, 0.491219, -1.133797, -0.251725, 0.770432, 0.069771, -1.747186, 2.412967, -1.034829, -0.444732, -0.981540, -0.224378, -0.911424, 1.578627, -0.767356, 0.335464, 1.712580, -2.346518, -0.361063, 0.126530, -0.726743, 0.778664, -0.022063, 1.452461, -0.194446, -0.726396, -1.224825, -1.057556, -1.125874, 0.722100, -0.871614, -0.020428, 0.324345, 0.268552, 0.832808, 0.319075, 0.431505, -0.800401, -0.038801, -2.086641, 0.649966, 1.235451, -4.070897, -1.339530, 1.289486, -0.722219, 0.565223, 1.034162, 1.303374, -0.990778, -0.414443, -0.746867, -2.194612, 0.711904, -1.192039, 0.514182, 0.143451, -0.766785, -0.255545, 0.928006, -1.898451, 0.714790, 1.152362, -1.035173, 0.315182, 0.243698, 0.901493, 0.248293, 0.168933, -0.423861, -0.978658, 0.691964, -0.798738, 0.154340, -0.175135, 1.116433, 1.405095, 0.679093, -1.813615, 1.019598, -0.870041, 0.794375, -0.738155, 0.696922, 1.056967, 0.434083, -2.276902, 0.821846, -0.917113, -0.744667, -0.806971, 1.013628, 0.509641, 1.162024, -0.655226, 1.574152, 0.690670, 0.742796, 0.178534, 0.818483, -0.313130, -0.221297, -1.424399, -0.745591, 0.707514, 0.970455, -0.014214, 0.156618, -1.155821, 1.255942, 3.028221, -0.489321, 0.050097, -0.152184, 1.291576, -0.459446, 0.708037, 0.475632, -0.316036, 0.458191, 0.745359, 1.435928, -0.338627, 1.819806, -0.761714, 0.747827, 0.367706, 0.266772, 0.344456, -0.901315, 0.576411, -0.387344, 0.014081, -0.322828, 0.685115, 0.776365, 1.589674, -0.268129, -1.650495, 0.848776, 0.413434, -0.768873, -1.680851, 0.997750, 0.942062, 1.376000, -0.345001, 0.892045, -0.758244, 1.953168, -1.764911, -0.679837, 0.424989, 0.991842, -2.356953, -0.813163, 1.398479, 0.378674, 0.504555, 1.506965, -0.413046, -0.442354, -0.867619, 0.076633, 0.602498, -0.341242, -0.320856, 1.622438, 0.126537, 0.514419, -1.166277, 0.875710, 0.077184, -1.256653, -1.438137, 2.148986, 0.335838, 0.835136, -1.388356, 1.474581, -0.197286, 0.482615, 0.996656, -1.405659, -1.418190, 0.749739, -0.867667, 0.485051, 0.456310, 0.831420, -0.668103, -0.568000, -0.330922, -1.074203, -0.774532, -0.643523, -0.102030, -0.806592, -0.770076, 2.659268, 1.016761, -0.571417, -0.311601, -0.885764, -0.296915, -0.288180, 1.147856, -1.023605, 0.031077, 1.436114, -1.375351, -0.433529, -0.039206, 0.038817, -0.304904, -2.759342, 0.371967, 0.723791, 1.044183, 0.367574, -0.355216, 1.785020, 0.031121, 0.075485, 1.493547, 0.213006, 0.294329, 0.829292, -0.406182, 0.372803, 0.527657, 0.016925, -0.739515, -0.989221, -0.722495, 1.819109, -0.896739, -0.659261, 0.100044, 0.451640, -0.308397, -0.223542, 1.298188, 0.968934, 0.037445, 1.430147, 0.416938, -0.079124, 2.172876, -0.421029, -0.663412, 0.067004, 1.032880, 0.280201, -0.241083, -1.814517, -0.125518, 0.770768, -0.958126, -0.325494, 1.666037, -0.369086, 0.515020, -0.160673, -0.162137, -0.346009, 0.433268, -0.857580, -0.373611, -0.586818, -1.405049, -0.563264, 0.351220, 2.014155, -1.868559, -0.911191, -0.029116, 0.020609, 0.663296, 0.249491, 0.315867, -1.744432, 0.941553, -0.789900, -0.051125, -1.083393, -0.961400, 1.331433, 1.483558, -0.423383, 2.454194, 1.514235, 0.376916, -1.131882, -0.895033, 1.956283, -0.309296, 0.004177, -0.422090, -1.001029, -1.235326, -1.575620, 0.553659, 0.619426, -0.432587, -1.210699, -0.562986, 0.937443, 0.495339, -1.617236, -0.675779, 1.006997, -0.897973, -1.865404, 0.254398, 1.652028, 0.003558, 0.445099, 1.600728, 1.887262, 0.337496, 0.028757, -0.438310, -0.518615, 0.189860, 0.225079, 0.475631, -0.616208, -2.361126, 1.381669, 2.546078, -1.069124, 1.203774, 0.064036, -0.177754, 0.187311, 0.292041, -1.980481, 0.569163, 1.275161, 0.229022, -0.434644, -0.186941, -0.806234, 0.457997, -0.345218, -0.650751, -0.262977, 0.549816, -0.235493, -1.573061, 0.274166, -0.045476, 0.104714, -1.065665, -2.423514, 0.362955, -0.199590, 0.168000, -0.158713, 1.103296, -0.878555, -0.496114, 0.822615, -0.084075, 0.658370, 0.567438, -0.230872, -1.978313, -0.093761, 0.123903, 0.555242, -1.062465, 0.848796, -1.509971, 0.461129, -0.658232, -0.559032, 1.128587, 0.636297, -1.425189, -0.067258, -0.845536, -0.415927, -1.578033, -1.620856, -0.324745, -0.891440, -2.679261, -0.817751, -1.106844, -1.082666, 0.275680, 1.100832, 0.252276, -0.336593, 0.814005, 0.637513, 0.794632, 0.206239, -0.040442, -0.818978, -0.366419, -0.109293, 0.368692, 0.876775, 1.090275, -0.389706, -2.402212, 0.984706, 0.700412, -0.661401, -0.441826, -1.419492, -1.409017, 0.560914, 1.029681, -0.602908, -0.982583, 0.263798, -1.025388, -0.780952, 1.625930, -0.073587, 0.885151, -1.980669, 2.042013, 0.842933, -0.390833, -0.601025, 0.807707, 1.254403, -1.052967, -0.365726, -0.694004, -1.081829, -0.479693, -0.609262, 0.744993, 0.882722, 0.926648, 1.249139, -0.253078, 0.457072, -0.383332, 1.265803, -0.172052, -0.365335, -1.200692, -0.057059, 1.577216, -0.958708, 2.119287, -0.002816, -0.211187, 1.230592, 1.087342, -0.127134, -0.490526, -1.253417, -0.097866, -3.023724, 1.004901, 1.301354, -0.286095, 1.543983, 0.421830, -0.326886, -0.017270, 0.766024, 1.246374, 0.257410, -0.644069, 0.832286, -0.149492, -0.175627, 1.709921, 1.261924, -0.713043, 0.827875, 2.204624, -0.456179, 0.290482, -1.062459, 0.090632, -0.100989, -0.518460, -0.075443, -0.004797, -0.184420, 0.194285, -1.157088, 2.513550, -0.894272, -1.771312, 0.124259, 0.005337, -0.027383, -1.438518, -0.633817, -0.635977, -0.780004, -0.835784, 0.240183, -1.122456, 1.110533, -0.551751, 0.387411, 0.920062, 0.051877, -0.154550, 1.371476, -0.750778, 0.051156, 0.699646, -0.143831, 1.361109, 0.011445, 1.288524, 0.897092, -0.168982, 0.672107, 0.434787, -0.495754, -0.587873, -0.202011, -0.872038, 0.147401, 1.562312, -0.128341, -2.550588, 1.082401, 1.406234, -0.017021, 2.685938, -1.381512, -1.386910, 0.115679, -0.957897, 0.047144, -0.084572, -1.183553, -2.155967, 0.748992, -0.394829, 1.378111, 0.181634, 1.443300, 0.984785, -1.698986, -1.787799, 0.480374, -1.247162, -1.450890, 0.010151, 1.331369, -1.185209, 1.567533, 0.176878, 0.006673, 1.509334, 0.656064, -0.208520, 0.790275, 1.287370, -0.988057, 1.352323, -0.965644, -0.226695, -0.747641, 1.267734, 1.194362, -0.937150, 0.746607, -0.066101, -0.018767, -0.559041, -0.092517, 0.267197, -0.251746, -1.465711, -0.751503, -0.102418, 0.376199, -0.935842, 0.297394, 0.061692, -0.409963, 0.348228, 0.939848, -0.416218, 0.543367, 2.159775, -0.183789, -1.399992, -1.619005, -0.266010, 0.225379, -1.257629, -0.534396, 0.911954, -0.914061, -0.486434, -0.459721, 0.407377, 0.156536, 0.246381, 0.712111, -0.178444, -0.330799, 0.391883, -0.150403, -0.321764, -1.634665, -0.589779, -0.576479, 1.604025, 0.044423, 0.504510, 0.289461, 0.226769, -0.998265, 2.690823, 0.613966, -0.140237, 0.679621, -0.197719, 1.236124, -0.960280, -0.015742, -0.897404, -0.168263, 0.815817, 0.977649, 0.343593, 0.050616, -0.158133, -2.074888, -1.612293, -0.339457, -0.050051, -1.126577, 1.861130, -0.452999, 1.338810, 1.283842, -0.450604, 0.866034, -0.228560, 0.194316, -1.797786, 1.455428, -1.355997, 0.285064, -1.415562, -1.932892, 0.081709, 0.714059, 1.371520, 0.379305, 2.052870, -2.220613, 1.345166, 0.464530, 0.153611, 1.036399, -0.034561, -1.411508, 0.501317, -0.418068, -1.607486, -0.265424, -1.061974, 0.415014, -0.649094, 1.600215, -0.249604, 0.178480, 0.260814, -3.084882, -1.084545, -1.489688, -0.361095, 1.684645, 0.097904, 1.256284, 0.555350, 1.316304, 2.437455, 0.291673, 0.329692, 0.933851, -0.414571, 0.691242, 0.430749, -1.042392, -0.649095, -0.415587, 1.178646, -0.217135, 0.060029, -0.297771, 0.088406, -1.205931, -2.160835, 1.332246, 0.284249, 0.529039, -0.594714, 0.984719, 0.797587, 0.581423, 0.104946, 1.455793, -1.910314, 0.504864, -0.321062, 0.121363, 0.281242, 1.108340, 0.700861, 1.095647, 0.535462, 0.262465, -0.025890, -1.750286, -2.005204, -0.424577, -2.246840, 0.214356, 0.831948, -0.444376, 0.817716, -0.143438, 0.429254, -1.760056, 0.413482, 0.214755, 1.273360, -0.246099, -0.810043, 0.890382, -2.385448, -0.130046, -1.297735, 0.371049, -0.913487, 1.407911, -0.257704, 1.337519, -0.081812, 0.480331, 0.192156, 1.260653, 1.096467, -0.127971, -0.886982, 0.894815, 0.968389, -0.301500, 0.387681, -0.387086, 0.684037, -1.555130, -0.633499, 0.512972, 0.385627, 1.611803, -0.464580, -1.364141, 0.652880, -0.643743, 1.007357, -1.016502, 0.295243, -0.489078, 0.682236, -1.220332, -1.109950, 0.704243, 0.475046, 0.444595, 0.848337, -0.582109, -0.500207, 0.819681, 1.372505, -0.293911, 0.006119, 0.982636, 2.509520, -1.590701, -0.516746, 0.689921, 0.027434, -0.251855, 1.205500, -0.607565, 1.177772, -0.220909, 0.046881, 0.247935, -1.024456, -0.055081, -0.986375, -0.293950, -1.565924, -1.082573, -0.370663, 0.979864, 0.566557, -1.663469, -0.726270, -0.961424, -0.504228, -0.721721, 0.234565, 0.538642, -0.789872, 0.868366, 1.041327, 0.172043, 1.314795, -0.457944, -0.613631, 1.322537, -0.030772, -0.624614, -1.096802, 1.396122, 0.086538, 1.805860, 0.861613, 1.297135, 0.852249, -0.964579, -1.412429, 0.482533, -0.351218, 1.300716, -0.423286, 0.908448, -0.000239, 0.030886, 0.715455, 0.406061, 0.082275, 0.393866, 1.795231, 0.202189, -0.375593, -1.054657, -0.541270, 1.456591, 0.795750, 0.002464, 0.842138, -0.695211, -1.249563, -0.509197, -1.205473, 1.295496, 1.894109, -2.063459, -0.444362, 1.328915, 1.459168, -0.053515, -1.585185, 0.678189, 0.526809, -0.953041, -1.016779, 1.018460, -0.452276, 1.970402, -0.244466, 0.206433, 0.334839, 0.534692, 1.338601, 0.795001, -0.009104, 0.532033, -1.029491, 0.093857, -0.211267, 1.504938, 1.320888, 0.349648, 1.773109, 1.159588, -1.789474, 1.503369, -0.229268, 0.285640, 1.318248, -0.193005, 0.186943, -1.435524, 0.196402, -1.075722, -0.511935, 0.649947, -0.621740, -1.034519, 2.135831, -1.077765, -0.200548, 2.065387, -1.597836, -0.249370, -1.934236, -0.330658, -1.191767, -0.076250, 0.150176, 0.406204, 0.323697, 3.698026, 0.211789, -2.661479, 1.602004, -1.266778, -0.664475, 1.356215, -1.584628, 0.092662, 0.344788, 0.873712, 0.658920, 0.100393, -0.893233, 0.258816, 0.056905, -0.422986, -0.705525, -1.541934, 0.411968, 0.587822, -0.856278, -1.149795, -1.372157, 1.993783, 0.417225, 0.249678, -0.501093, -1.052675, 1.509805, 0.729904, -1.524687, -0.587286, -0.241062, 0.229873, 0.873946, -0.374790, 0.167224, -0.710537, 0.706672, 0.609731, 1.501700, -0.872201, -0.264805, 0.308999, 1.120724, -0.467259, -1.403144, -0.171249, 0.027821, 1.402304, 0.437091, 0.300520, 0.428991, -0.417355, -0.860895, -0.078252, -0.338569, 1.243772, 0.139089, 1.237436, 1.046122, 1.758577, -0.056001, -1.080089, -0.318887, -0.165384, -0.659895, 0.929234, 1.041019, -0.270315, -0.547705, -1.190991, 0.840146, -1.577911, -1.255538, 0.141685, -1.121234, 0.354572, -0.597731, -1.384831, -0.240799, -1.942411, -1.046672, 0.720966, 2.493818, 0.879957, -2.212848, 0.111741, -0.267388, 0.934117, 0.089279, -0.000436, 0.107630, 0.143939, -0.819166, 1.700851, -0.471980, 0.310459, -0.178048, 1.128049, -1.592222, -0.693166, 2.404939, -0.129209, -0.127624, -0.104250, -0.244974, -0.614714, -0.048168, 1.135242, -1.841301, 0.444470, -0.369818, -1.147391, 0.854430, 1.825092, -2.209159, 2.176996, -1.346555, -0.384842, -0.474091, -0.343165, -1.344626, 0.451168, 0.129410, -2.659615, -0.912160, -1.285282, 0.654044, 1.643453, 0.028151, -0.349026, 1.439204, -0.518539, 0.757308, 1.491009, 0.223655, -0.702354, -0.353384, 1.156588, 1.766105, 0.509288, -0.477258, -1.016374, 2.185866, -1.464329, 0.804440, -1.149002, -0.115668, -1.518874, -1.132489, -0.547996, -0.355139, -0.037153, 0.138885, 0.448524, -0.643943, 0.768945, -0.028494, 1.330506, 1.342354, 1.309262, 1.002246, -0.872878, 1.984760, -0.266478, 0.566562, -1.007468, -0.306489, -1.001227, 0.589821, -1.682174, -0.843755, -0.846889, 0.644372, 0.950076, -1.954880, -0.622601, 0.808321, 0.211067, -0.099052, 1.187003, -0.134028, 0.750249, 0.238632, -0.361291, 0.986631, 0.092130, 1.326910, 0.413339, -1.180656, -0.673874, -0.054493, -0.196562, 0.928118, -1.231475, -0.247857, 0.219444, -0.477481, 2.117707, -0.154310, -0.788292, 1.126048, 0.608914, -0.085963, 0.452387, 1.516219, 2.029900, 0.110328, -0.552955, 1.371373, 1.015613, -0.870824, 1.305929, -1.351783, 1.183690, 0.557685, -2.189965, 1.307642, 0.575329, -1.316755, -0.545651, -0.733798, 1.549197, 0.982687, 0.552113, 0.620669, 0.432007, -2.005233, 0.830597, 0.192245, 0.279492, 0.541324, 0.554233, -0.604246, 1.188891, -0.565041, -0.111041, -0.133189, 0.465130, 0.287658, 1.154719, -0.115181, 1.699646, -1.027687, 0.177179, 0.940629, -1.050065, 0.924721, 0.015353, 0.056962, -1.470531, 0.692122, 1.031810, -1.298798, -0.094780, -0.542055, 0.453849, 0.019877, 0.275461, 1.306992, -0.387133, -0.720945, -1.384032, -0.776934, 0.800107, 0.297293, 2.844329, -1.404095, 0.017348, -0.124833, -0.795513, -0.331723, -1.333538, 0.999705, 0.696514, 2.221155, 0.953933, 0.946105, -0.272155, -0.687570, 0.722434, 0.932711, 0.306941, 0.729121, -0.954006, 1.687498, 0.066421, -1.249341, -0.003440, 0.774590, 1.373644, -0.021675, 1.202662, -0.525433, 0.254912, -1.717258, 1.595962, -1.250993, 1.840066, 0.776272, -0.053064, 0.827546, 1.317726, 1.787302, 2.163496, 1.430301, 1.907054, 0.694875, -0.280525, 0.260386, -0.352011, 0.458037, -1.110236, 1.267851, -0.534593, -0.588764, 0.309135, -1.879492, 0.035352, -0.139536, -0.742433, 0.742947, 0.745155, -0.704302, 0.784523, 1.054547, -0.421769, 0.011103, -1.998637, 0.119192, 0.124622, 2.825203, -0.460627, -0.430910, 0.366712, 1.041711, 1.476939, -1.608557, -0.261650, 0.064011, 0.246476, -1.521877, 0.431569, -0.218499, 1.881978, -0.419796, 0.227128, -0.213425, -0.831999, -0.696144, -1.488770, -0.249433, -1.439417, 0.888266, 0.692098, 0.734017, -0.763255, 1.502400, 1.066486, -0.234031, 0.623760, -1.265111, -0.223055, -1.584564, -0.982820, 1.074746, -0.432197, -0.063675, -0.634958, -0.919212, -0.433748, 0.339003, -1.147149, 0.155465, -0.803854, 0.480936, -1.530631, 0.639619, -0.584894, -0.881128, 1.382256, -0.568161, -0.601746, -1.697621, 0.585114, -1.891512, -1.233945, 2.312901, -0.286202, 1.023677, -0.833774, 1.562487, 0.888749, 0.846609, -1.384236, -1.249270, 0.611012, -0.319369, 0.185535, -0.684286, 0.963202, 1.487249, 0.932574, -0.919274, -0.107438, -0.201333, -1.151745, 1.627880, 1.440148, -0.573841, 0.038769, -0.037364, 0.731012, -0.882477, -1.442649, 0.647167, -1.522481, -0.268122, 1.323239, 0.621295, 0.141608, -0.516510, 0.406066, 0.239028, 0.695781, 1.016956, -0.869642, -0.024607, 0.124703, 0.321867, 0.365313, -1.692990, -1.110927, -0.524307, 0.070632, 0.326163, 0.397645, 1.022518, 0.509502, 0.741798, -0.534563, -0.909392, 0.710225, -0.793412, 1.015276, 0.203276, 0.048521, -0.520939, -0.599181, 0.169474, 0.712557, -0.146814, 0.790916, 0.262489, -1.183904, -0.414311, -1.456739, -0.532087, 0.492914, 0.443717, -1.224561, 0.652479, -0.381101, 0.631142, -0.951389, -0.748055, 1.958987, -1.621339, 0.219838, 0.953179, -0.549319, 1.214279, 0.600105, 0.616500, 0.474453, 0.352334, 1.781357, -0.131343, 1.826006, -0.397309, -0.879419, -0.981829, -1.032522, -0.999648, 2.178363, -0.077233, -1.956051, 1.457633, 0.382946, 0.860043, 0.571539, -1.925714, 0.738957, -0.411493, -1.556813, -0.678739, -0.880405, -0.111712, 0.134208, 0.861920, -0.127082, 1.562567, 0.687603, 1.027770, -1.012644, -0.862965, 0.228224, 0.867151, -1.607630, -1.615450, 0.520643, 0.905501, 0.017299, 0.609877, -0.301121, -2.213011, 0.350527, 1.106638, 0.482060, -1.072284, -1.693080, 1.429630, 0.164684, 1.160576, -0.980296, -0.126100, 0.674160, -1.052648, -0.317049, 1.049771, -0.466878, -0.358464, -0.931413, 0.668481, -0.850745, -0.305409, 0.465397, 0.167509, -0.839169, 1.125066, -0.916545, 0.104113, -0.034595, 0.699454, -0.119113, -0.397297, 0.925237, -0.534460, 0.340951, -1.038565, 0.331929, 1.531489, 0.765263, -0.388036, -0.233204, 0.151217, 0.694961, 1.053589, -0.201690, -1.535868, -1.294136, -1.335026, 1.431389, 0.020607, 0.918079, 0.529109, 0.678749, -0.822431, 0.068077, -0.914206, -0.181805, 0.288102, -0.427557, 0.481091, -0.438777, -0.602720, -2.422925, 0.266526, -0.887787, 0.715369, -0.006406, -0.550246, -0.040513, -2.680595, -0.973400, 1.081469}, - { -1.832720, -1.832301, -0.858971, -0.068511, 0.015957, 0.290116, 1.971678, -1.818348, -0.171814, -0.607553, -0.728880, -0.441366, 0.858876, 2.170838, -0.364291, -0.829784, 0.012024, 0.694301, -0.471728, 0.533645, -2.756962, 0.344333, -0.424362, 0.119773, -0.122927, 0.057514, -0.004152, -0.039561, -0.612580, -0.230801, 0.137849, 0.240761, -0.169301, 0.456201, -0.721595, -0.872174, -0.288688, 0.255072, 1.326190, 1.211307, 0.513432, -0.468443, 0.373509, -0.792299, 1.450765, -0.415729, 2.088330, -0.106131, -0.043062, 0.968273, 2.410419, -0.235828, -0.797940, 0.751688, -1.564137, -0.640848, 0.212215, -1.039907, 0.185821, -1.470347, 0.349961, -0.207751, -0.378918, -0.753879, -0.930603, -0.345121, -0.229026, -1.150897, 0.066851, 1.770378, -0.543972, 0.184164, 0.398250, 0.929519, 0.023276, 0.484811, -0.624795, -0.665576, -1.271366, -0.751242, -1.510183, -0.701861, -1.110028, -1.332270, 0.358947, 0.886726, 1.266427, 0.979999, -0.016413, -1.086805, 1.895910, -0.121508, 0.554533, 0.862734, -2.948685, -1.875964, 0.898773, 0.562024, -0.484180, 0.442920, -1.016102, 0.427959, 0.664658, 0.519379, 0.699151, -1.260125, -0.394596, 0.767132, -1.205431, 0.354781, -0.356781, 0.193565, 0.510048, -0.572174, -1.350218, -0.129569, 0.242325, -0.105176, -0.226456, 1.051061, 0.158634, -0.200009, 2.841508, -1.140844, -1.462400, -0.907046, -1.141460, -1.085693, -0.960574, -1.226325, -0.471773, -0.280140, -0.505682, -1.638406, -0.631178, -0.614763, -0.446756, 0.718442, 0.693146, 0.435755, -0.638107, 0.797300, 0.179674, -1.070701, -0.541512, -1.400111, 1.144544, -1.396786, -0.492346, 0.752622, 0.066662, 0.914564, -1.012139, -1.494793, -0.521299, -1.873981, 1.265147, 1.512550, 2.974113, 1.182032, 0.759378, -0.690800, 1.808796, 1.401083, 0.847649, 0.802560, -1.396436, -0.315149, 1.822089, 0.725991, -0.004979, 0.968417, 0.416611, 1.363325, 0.466866, -0.077580, -0.095541, -1.406930, -1.484723, -0.915263, 0.072917, -1.466353, -0.065023, -0.658928, 0.576274, -1.147621, -1.056663, -0.068673, 0.880450, -1.145829, -0.193310, 0.661180, 0.573130, 0.269451, 0.513838, -0.596401, 0.246365, 1.414554, -0.090303, -0.613901, -0.840856, 0.653172, 0.613870, 2.125894, 1.610134, -0.471377, -1.230640, -0.007436, 1.088735, -0.195634, -1.577360, 0.007677, 1.062298, -0.128449, 1.264510, 0.597773, -1.096283, 0.475706, -0.733746, -0.687970, 0.796791, 0.256732, 0.722035, 1.082146, 0.423609, 0.577310, -0.365878, -0.496381, 1.341201, 1.129766, 1.175709, 0.580556, 0.136516, 0.746958, 0.872743, 0.233471, 0.912820, -0.818716, -0.209696, -0.231288, -1.115904, -0.707770, -1.173894, -0.683225, 1.008227, -2.021586, 0.215633, -0.395726, -1.350853, 1.054856, 0.036285, 0.592611, 1.490920, -0.306426, -1.733382, 2.096300, -1.702142, 0.794681, -0.573523, -1.543606, 0.251101, -0.814978, 1.209185, 0.257427, -0.467054, -0.231642, 1.365641, -0.022341, -0.195658, 0.929227, -2.461080, 0.277429, 0.806286, -0.119442, -0.151015, 0.138489, -0.139592, 0.344145, 0.723801, 0.078990, 0.372359, 0.139291, -0.112992, -0.262053, -1.438716, 0.526531, 0.164840, -0.365649, 1.257863, -0.163226, -1.424476, 0.085861, -0.065369, 0.054693, 0.015411, 1.315456, 0.948639, 0.494314, -1.497777, 0.469180, 0.760513, -0.167401, -1.211327, -0.206842, -2.275510, 0.406543, 0.138142, -1.265705, 0.004515, -1.475990, 0.499026, -0.161267, -1.581079, -3.206524, 2.897883, -0.532960, -0.166146, 0.554681, 1.294470, -0.625242, -0.379908, -1.071774, 0.636361, 0.381188, 1.096051, -0.346525, -0.466328, 1.722085, -1.031056, -0.601266, 0.544335, 1.931753, -0.551171, 1.320578, -0.840517, 1.393607, -1.427305, 0.202009, -0.568021, -0.225273, -0.586006, 1.125578, 0.015065, -0.066697, -1.185297, 1.081961, 0.488671, 0.233902, 0.880454, -0.500196, -1.530206, -0.475919, -1.061961, -0.901775, -1.407697, 0.194499, -0.067511, -0.435849, 0.167759, -0.046169, -0.082012, -0.922595, -0.726355, -0.185417, -0.137887, 0.127443, 1.373420, 0.658410, 1.215808, -0.813472, -0.684199, 2.648791, 0.441740, 1.938400, 0.109648, -0.236162, -1.431709, 0.582799, -0.389025, 0.277761, -0.337447, -3.193700, -0.221675, 0.663196, -0.607676, 0.117341, -0.691970, 0.891802, -2.124604, -0.379848, -1.323032, -0.176311, -0.288646, -0.587781, -0.559636, 0.294699, -0.766015, -0.464369, -1.888323, 1.668840, -0.135138, -0.911677, -0.798953, 1.501290, -0.088101, -1.330508, -0.729768, -0.795864, -0.719788, 0.856310, 0.218073, -0.139238, 0.248479, 0.704901, -1.052365, 0.106043, 0.192382, 0.482444, -1.383192, -0.417042, -0.279515, -0.420451, -0.950209, 0.565158, 0.107145, 1.493626, 1.135680, -0.384439, 2.292500, -0.852784, 0.033379, -0.823245, 0.275555, 0.840976, 1.467319, -0.046799, 0.593424, 0.179664, 1.275595, 0.441259, 0.189890, 0.755776, 0.062193, -0.030754, -0.147529, 0.038369, -1.106183, -0.758992, 0.807666, 0.147525, -0.360158, 0.756533, -0.815082, -1.088857, -1.195562, -0.625136, -1.546773, -1.907767, 0.491687, 1.402890, -0.836658, -0.556929, -0.357503, 1.039553, -0.315287, -0.862386, -1.647083, -0.207310, -0.588979, -0.442073, 0.213923, -1.506858, 0.283633, 0.500758, -1.495604, -0.346149, 0.315409, -0.221715, 0.127251, -0.462193, 0.097718, 0.905177, 0.539254, 0.542988, -0.699242, -0.768073, 0.478406, -1.973436, 1.005495, 1.411217, -0.376640, 0.914643, 2.122389, 0.179373, 0.335835, 1.605174, -1.332542, 0.560720, -1.304283, -0.214007, -0.368071, -0.361121, 0.088270, 0.852277, 0.676035, -1.668912, -1.088159, 0.728319, 0.070816, -2.142621, 0.133536, 1.304933, 1.604591, 0.364144, -0.918253, -0.889311, -0.772152, -0.109712, -2.507555, 0.612365, 0.922212, 0.269101, -1.306834, 1.662199, -0.952345, 0.080564, 1.261690, -1.065717, 0.447004, 0.578322, -0.605190, 0.405597, 0.208439, -1.513911, -0.967321, 0.662348, -2.511435, 2.148412, -1.824987, -1.407923, 0.207946, 0.465404, 0.111866, 0.568392, 0.663037, -0.573058, -0.252268, 1.180791, 2.533222, -0.982789, -2.392091, 1.514748, -0.786343, 1.256342, 0.690187, -0.519451, 1.145276, 0.627233, -0.046189, -0.292440, 0.167778, -1.281944, -1.418141, -1.294809, 1.703806, -1.274521, 0.433678, 1.340039, -1.085837, -0.419466, 0.392586, -0.076883, -1.202521, -0.254105, -0.129938, -1.213844, 0.215077, -0.577627, -0.576037, -0.395255, -0.432890, 0.065108, 0.385916, -0.421567, 0.680867, 0.050080, -0.038231, -0.579365, -0.376047, 0.047513, 1.822100, 0.348665, -0.237937, -0.250587, -0.216700, 1.285351, 0.673508, -0.332168, 0.485875, -1.115937, -1.933738, 0.092374, 0.113479, 1.871990, -2.083959, 2.236064, -0.596336, 0.753577, -0.370309, -0.974957, 0.154728, -1.722148, 1.599687, -0.599239, 0.047513, -0.263175, -0.138233, 0.657799, -0.104442, 0.226136, -1.586790, -0.978153, 1.350703, -0.256937, -0.381376, -1.441363, 0.487806, 1.699068, -0.319092, -2.177988, -0.953121, -0.973794, -1.070862, -1.698470, 0.541639, 0.668873, -3.107235, 1.655452, 0.794379, -2.353640, 0.237908, 1.039634, -0.620145, 1.731915, 0.969508, -0.116990, 0.537241, -0.796226, 0.099674, -0.715086, -1.882007, -0.071374, 0.215035, 0.575879, 1.360723, 0.561983, -0.036119, -0.954396, 1.044683, 1.550348, 2.127364, 0.943453, -0.297135, -0.218404, -2.061828, -0.445342, -0.894547, 0.544565, 1.451985, -1.014841, 0.579430, -0.726554, 1.344709, -0.550160, -0.303196, -1.198609, 0.077399, 0.768315, -0.999268, 0.519522, -1.051224, 0.931482, -0.395536, 1.162513, 0.278089, -0.425839, -1.166338, -0.359470, 1.594578, 0.081606, 0.541795, 0.268801, 1.330165, -0.149018, 0.796014, -1.124921, -2.210028, 1.153039, -0.019499, -0.427745, 0.112874, 0.343361, 2.295793, 1.582641, -2.030160, -0.641952, 1.653663, -0.835255, 2.106245, -1.253538, -1.021218, 0.132782, 0.920243, -1.913165, -1.480320, 1.390349, 1.405211, 0.447508, -1.130453, -1.836359, -0.142439, -1.110296, -0.316201, 1.062991, 1.171153, -0.605924, -0.183538, 0.573447, -0.804833, -0.380529, -1.068994, 0.819859, -0.156425, -1.132608, 0.970302, -0.877054, -0.968523, -0.759535, -0.204436, -1.202424, 0.450419, 1.451980, -0.895043, -0.252793, 0.042345, 0.171996, -0.431470, -0.194020, 2.010751, 2.093337, -1.276787, -1.818508, -0.883565, 0.725713, 2.360842, 0.103035, 0.218545, 0.184122, -0.337625, -1.713123, -0.259713, -0.068365, 0.750867, -0.289981, 0.293062, 1.460979, -1.428279, -1.602283, -0.519933, 0.291780, -0.541845, 1.944392, -0.848068, -0.055059, -0.575102, 1.139731, 0.300089, 1.244637, -0.444968, -0.473716, 1.352966, 1.002676, 0.518000, 0.045769, 0.742580, 0.213750, -0.288912, 1.460568, 0.904971, -0.332375, -1.212083, 1.191515, -0.313142, 0.525902, 0.314540, 1.430933, 0.901913, 1.119165, 1.287069, 0.097020, -1.333638, 0.025993, -1.795957, 0.227036, 0.901899, 0.731792, 0.448340, 1.146886, -1.029467, -0.749836, 0.385661, 0.227530, 0.541757, -0.285274, -1.029459, 3.143156, -0.673093, 0.183598, 1.170165, -1.265325, -0.110300, 1.668278, 1.304225, -0.197501, 1.205860, -0.525641, 0.832874, 0.096193, -0.015025, -0.402876, -0.892037, -1.435559, -1.131844, 0.887976, -0.362663, -0.795465, -0.288803, 0.954447, -0.290530, 1.531746, 0.288380, 0.057554, 1.145870, -0.629790, 0.606378, -0.031671, 0.860599, 1.394345, 0.559602, 0.708591, -0.352719, -1.275779, -0.816685, -0.798901, 0.236109, -1.024711, -0.820713, -1.596872, -0.270651, -0.966266, 0.926692, -0.145946, 0.854088, 0.835014, 1.099812, -0.318658, -1.557490, 0.915004, -0.210137, -0.887933, 0.276610, -1.697332, 0.285334, -0.021032, -1.857608, -0.700330, 1.589297, -1.511928, -2.671510, -0.685265, 1.029548, -0.107692, -0.299445, 0.502867, -0.720859, 2.159889, 0.025626, 0.450715, 1.272231, -1.585154, 2.098454, -0.924828, -0.004269, 2.454919, -0.534183, 0.252459, -0.596137, -0.403467, -1.860237, -0.488636, 1.001635, -0.401582, 2.360323, -0.355156, -0.274386, -0.343852, -0.300800, 0.250864, -0.462338, 0.264199, 0.559447, 0.395857, -0.473311, -0.956768, 0.180765, -1.820016, -0.930589, 0.537459, 0.136038, -0.543921, 1.116435, 0.628245, 1.916098, -1.992828, -0.287836, 1.293815, -0.772859, 0.338769, -1.437588, -0.526812, -0.458092, -0.381313, -0.095355, -1.235589, 0.393244, -0.065132, -1.077925, 1.595350, 1.835047, -0.562597, -0.483414, 1.095102, -0.367654, -1.105523, 0.633395, -0.194306, 1.364053, 1.124175, -1.737561, 0.869281, -0.734572, -0.149817, 0.485881, -0.345455, -1.151689, 0.547390, 0.432561, 1.336705, -1.884141, -1.135753, -1.585466, -1.011228, 0.554296, 2.381828, 1.025961, 0.912554, 0.861448, -0.080987, 2.130682, -1.874841, -0.864526, -0.187719, -0.498674, -0.211500, -0.595008, 0.034636, 1.181810, 0.361560, -0.475286, 1.743335, 0.193003, -1.352088, -1.713440, -1.195427, 0.567539, 0.277035, -0.860542, -0.776021, -1.035137, -1.112260, 1.138129, 1.493088, 0.776855, -0.733063, -0.106431, -0.670845, 0.057474, -1.047425, -0.932289, -0.255616, -1.421560, -0.034466, -0.807775, 0.436437, 0.112443, -0.125924, -0.247341, -0.696251, 0.690554, 0.062915, -0.291037, 1.614712, 1.802697, 1.747259, 0.359763, 2.167287, 0.721800, 0.553362, 1.585231, -1.219909, 0.292659, -0.175155, 0.250576, 0.433762, 0.978129, -0.192516, 0.926476, 1.709025, -0.196189, -1.419010, -1.610725, -1.139151, 0.418477, 0.030781, 0.428467, 0.955228, -1.329049, 2.136544, -0.753554, 0.144378, -1.309009, -0.319252, 0.107476, 1.100365, -0.912521, -1.695622, -0.812841, -1.670146, 0.165089, -2.167830, -1.395043, -0.240092, -0.956234, 2.072348, 1.244422, -0.367778, 1.155234, 0.255655, -2.433108, 1.811857, 0.465015, -0.801403, 1.000156, -0.738690, -0.758785, -0.720474, -0.360317, 0.259860, 0.884560, 0.272492, 1.525586, -0.576470, 2.047932, 0.135484, 0.551894, 2.383303, -0.955489, 0.178403, -0.092787, 0.223843, -0.771744, -0.261845, 1.081957, -0.977109, 0.019251, -0.546238, 0.274337, -1.248699, 0.676887, -0.349812, -1.017841, -1.433567, -0.248887, 1.819039, 0.184725, 1.013275, -1.002464, 0.608662, -0.671547, 0.889142, 0.821296, -0.301276, 0.167438, -1.690382, -0.594733, 0.181993, 0.024378, -0.840144, -0.440406, -0.995634, 2.284890, -0.954848, -0.549651, 1.281924, 0.398530, 0.214604, -1.571814, -0.723159, 1.025694, -0.131527, 1.511320, 0.101087, 0.379709, 1.005073, 0.219690, 1.867635, -0.602519, -0.175249, -1.208021, 1.990277, 0.305184, 0.312529, -1.529788, -1.648523, 0.458170, -0.047002, -0.167763, -1.502900, -0.736849, 0.057294, 0.191503, 0.028819, 0.871960, -0.075299, 1.080283, -1.097980, 0.553851, -1.281829, 1.702711, 1.489629, -0.467573, 0.651820, 0.080584, 1.232225, -1.631917, -0.707350, -0.820758, -0.550567, -0.114626, -0.980827, 0.215939, -0.888754, -0.044568, 0.021106, -1.694772, -1.290123, -0.449361, 0.201360, 0.307135, -0.236631, -0.497062, -0.008269, -0.079835, -0.477083, -1.013636, -1.081288, -0.650827, -1.004003, 1.938105, 0.910352, 0.125397, -1.068286, -0.932632, -1.579465, -0.369639, -0.247112, 1.062374, -0.408199, 1.482614, -0.460721, 0.186753, 1.481219, -0.489907, -1.337796, -0.699971, 0.808863, 0.330573, 0.796773, 0.493474, 1.002080, 1.190109, 1.285149, -0.342454, 0.004594, -0.810426, 0.256017, 2.175907, 0.478686, -0.974704, -1.650560, -1.919799, -0.806684, 1.051057, -0.607070, 0.663752, 0.270259, -0.430638, 1.120565, 0.087927, 2.074924, 0.341147, 2.966357, 0.593779, 0.663429, -1.682544, 0.139702, 0.506686, -0.941655, -1.716694, -0.806997, 0.248225, -0.081305, -1.143662, -1.654156, -0.653636, 0.912851, -0.017424, -1.201388, -1.235504, -0.580401, -1.734266, -0.500781, 0.232107, -0.233127, 0.353267, 2.143698, -0.892033, 1.679429, 0.409703, 0.692034, 0.135149, -0.127969, 1.853854, 0.666951, 0.854184, -0.262366, -0.888163, 0.425473, 0.125431, 0.536852, -0.433712, 1.129834, 1.142447, 0.964107, 0.475582, -0.869154, -1.984985, -0.461826, -0.958307, 0.428953, -0.349023, -0.722149, -0.506030, 1.771888, 0.811316, -0.173751, -0.491654, -0.636194, -1.172714, 1.070790, 1.203398, -0.137311, -0.855569, -1.357612, 0.378279, -1.863734, 1.382591, 0.011161, -1.917006, 2.309142, 1.009754, 0.280754, 0.611907, -0.911189, -0.995606, 2.437438, -1.078067, 1.152842, 0.310598, 1.330012, -2.374388, 0.508518, -0.003723, -0.536883, -1.564876, -1.709864, 0.211008, -1.114856, -1.267503, 0.804683, 0.595315, -0.210372, -1.404252, 2.588056, 0.606274, -0.851993, -1.447979, -0.348797, -0.229041, -0.514998, 1.409166, -0.407386, 0.679208, -1.228353, 1.360178, 0.324280, 0.649254, -0.012220, -0.707265, 0.131290, -0.467987, 0.640930, -0.559834, -0.252676, -0.597875, -0.562935, 1.400386, -0.424715, -0.513280, 0.855115, 0.191991, -0.964520, -0.352933, 1.081527, 0.190430, 0.749862, 1.467684, 0.727411, -0.477440, -1.095180, 0.179929, -1.044553, -0.830838, -0.363329, 0.575085, 0.461175, -0.688499, 0.429750, 0.402037, -1.836882, -1.343481, 1.654838, -1.162995, 1.352182, 1.885412, 0.471842, -0.214834, -1.703495, 0.202681, 0.709370, -0.447599, -1.471250, 0.199692, 0.875522, 1.048451, -0.065706, 1.700373, -2.122299, -0.090670, -0.201647, 1.091765, -0.379659, 0.401704, 0.833976, 0.731895, 0.709447, -0.716736, 1.911557, -1.902063, -0.518437, -0.797185, -0.235644, 1.499953, 0.308034, -0.259524, -1.326812, -0.966541, 0.738371, -0.642539, 0.572851, -1.120586, 0.427213, 0.299291, 1.581746, -1.596753, -0.973999, 0.965577, -0.479069, 0.557041, -0.319204, -0.217317, 0.091067, 0.094040, -1.680667, 0.072046, 0.373416, 1.088088, -0.062071, 0.105099, 0.786048, -1.472981, -0.201788, -0.110247, -0.124703, 1.582004, 0.138461, -0.182415, -1.592387, 0.741989, -0.558639, -0.519499, 0.115620, -0.566589, -0.851491, 0.051869, -2.199328, 0.093601, 0.315632, 1.293925, -1.664142, 1.020213, 0.606874, 0.803589, -0.082597, 0.499662, 0.228775, -0.448975, -1.426017, -0.140244, 0.716109, 1.553304, 0.719433, 0.975645, 0.837441, 1.120692, -0.498690, 0.216276, -1.416430, 0.547602, 0.884554, -0.883310, -0.177371, -1.273554, 1.098291, 1.180377, 1.756399, -0.333211, -0.435881, 0.519508, 1.114167, 1.609321, 0.071498, 0.581950, -0.299901, -0.765122, -0.488867, -0.035351, -0.826499, -1.425051, 1.434185, -2.210378, -0.940950, 1.816813, 0.063278, 0.753839, 0.144365, -0.979390, -0.045419, 0.297778, -0.383652, 0.864681, -1.206591, 1.243333, 1.348250, 1.174847, -0.953818, 0.840999, -0.557367, 0.314909, -1.597800, -1.079209, 0.089300, 1.671589, -0.808067, 0.076293, 0.096278, -0.324097, 1.691696, 1.088688, -0.102197, 0.713123, -2.436126, -1.598818, -0.794874, 0.210923, 1.283019, 0.547768, -0.579813, 0.036665, -0.833858, -1.421240, 0.138998, -0.325604, 1.347060, 1.670095, -1.604636, -1.615392, -0.460504, 1.857504, 1.631746, 1.057933, -0.055917, -1.313222, -0.422599, -0.455539, 0.352716, -2.021872, -0.631336, -1.906826, 0.767665, 0.506621, -0.745368, -2.332947, 0.296637, -1.559323, 0.071974, 0.169996, 0.840164, 1.604448, -0.374057, -0.587066, -0.986345, -0.414328, 0.850159, -0.583975, -1.069348, 1.588573, -0.591482, -0.796043, 0.680985, 1.771477, -1.231028, -0.448036, -1.177586, -1.279473, 0.321128, 1.709116, -0.429261, -0.260985, -0.207789, 0.436985, 0.088741, 0.429940, -0.731834, 0.052336, 1.085671, 0.893380, 0.509342, -1.013332, -1.639478, -1.357020, 1.414649, -0.899549, -0.376484, -0.306010, -0.792559, -0.055293, 0.482073, 0.641750, 1.808035, -0.040113, 0.704865, -0.915666, -0.265766, -0.023698, -0.925227, -0.746802, 0.304658, -0.184038, 0.726465, -0.155801, -0.556488, 0.655451, 0.320722, 0.093133, -0.784770, -0.076329, 1.074745, -1.257506, -0.258270, -0.301241, -0.722143, 0.731017, 0.167733, 0.636896, 1.598458, 1.704751, -1.142440, -0.685851, 1.584837, -0.626776, -0.328650, -1.091329, 0.971738, 1.043644, 0.636459, -0.312368, 1.026271, -1.633195, 0.539821, -0.964621, -0.400355, 0.132008, -0.179207, 1.159695, 0.955293, -0.303751, -0.217484, 2.513990, 0.006818, 1.458397, 1.128086, 0.183672, -0.298289, -1.102964, 0.110033, -0.208438, -0.686324, 0.899560, -1.023875, -0.859286, -0.054482, -1.038903, 1.151221, 2.548196, 1.908477, 0.645170, -0.369748, 0.810512, -0.793427, -0.527577, -0.077106, 1.186085, 0.483219, -0.320033, 0.698668, 1.683920, 0.120677, 0.988550, -1.493364, -0.723505, 1.647273, -0.100119, 0.438654, 0.719387, 0.246423, 0.010835, -1.617130, -0.479237, 0.434476, -0.064019, 0.166649, -0.006954, 0.024624, -0.196386, 0.907595, -0.046163, -1.095835, 0.691906, -0.998547, 0.673572, -1.293808, 0.368095, -2.459684, 0.205549, 0.994630, -0.035405, 0.655553, 0.210941, 0.881665, 0.522077, -0.416486, -0.501087, -1.235737, 1.380430, -0.896689, -1.126449, -0.861117, -1.431397, -2.374008, -0.185161, -0.301201, 0.348443, 0.192501, 1.046262, -0.469976, -0.498890, 0.674246, 0.308645, -0.763818, 0.463878, 0.370435, 0.017343, 1.601899, -0.941614, 1.008298, 1.594859, 0.178323, 0.637547, 0.078154, -0.958955, 1.312140, 0.096965, 0.933447, 0.181134, 0.097072, 0.052523, -0.295644, -0.979182, 1.415053, -0.556326, -0.102701, -0.510035, 0.550682, 0.363609, 1.633884, -0.310255, 0.013011, 0.593944, -1.758845, -1.518336, -0.633596, -0.383157, 0.163710, 1.571116, 1.590887, 0.072846, 0.871000, 0.914114, -0.498564, -1.488947, 1.305893, 0.905593, -0.227759, 0.241577, 0.191664, 0.456879, -0.794243, 1.409171, -0.744751, 0.360987, 0.473105, -0.391104, -0.905041, 0.197796, 0.320883, -1.731515, 1.453186, -1.293101, -1.584068, 1.283133, 1.476748, -0.405433, -0.493755, -0.052667, -0.204378, -0.541118, 0.492995, 1.250793, 0.172867, -0.667022, 0.677376, 0.179161, -0.777011, -2.078700, -1.441447, 1.048290, -1.487841, 0.294937, -0.452218, -0.472494, 1.731985, 3.650026, -0.748173, -0.511208, -0.744948, 0.017124, -1.601023, 0.232189, -0.721906, -0.198432, 0.396972, -1.718849, -0.180867, -0.529996, -0.838769, 1.875711, 3.127018, -0.494097, 2.461127, -0.644371, 1.168177, -0.150548, -0.736924, -0.582264, 1.461116, 0.402506, 0.569627, 1.566779, 1.184108, -0.874220, -0.039653, 0.212669, -0.989231, -0.177178, -0.326706, 0.289737, -0.194158, -0.352394, 1.279422, -1.613065, -0.546365, -0.947715, -1.307459, 0.228799, -0.325311, 1.857904, 2.367548, -2.143504, 1.185711, 0.023310, -0.245319, -0.053544, -0.714797, -1.207599, -1.017377, -1.153081, 1.471800, -0.533222, -0.106148, -0.435499, -0.688528, 0.656703, 0.574933, -0.005387, -1.395935, -0.104269, -0.041974, -1.274262, -2.136190, 0.863266, -0.901615, 1.035668, -0.844594, 1.283889, 1.755277, -1.890345, -0.731781, 0.709649, -0.313370, 0.332204, 1.560688, 0.055312, 0.138974, -0.560567, 0.677662, 1.751913, -0.258554, 0.290400, -1.187742, -0.071480, -0.079336, 0.250645, -0.204532, 0.252637, 1.147611, -1.279423, 0.355029, -0.927427, 0.858100, -1.442043, -2.436779, -0.571746, -1.054116, 1.802603, 2.568276, -0.159607, -0.859052, -1.755104, -0.075094, 0.429452, -1.066747, -0.327732, 0.900284, 1.293475, 0.276533, -0.250297, -1.543613, 0.290647, 0.933780, -1.894013, 1.612368, -0.305038, -1.473978, -0.414879, -0.597143, -1.643668, 0.926439, 0.284534, 0.730527, 0.589243, 1.370415, 0.247107, -0.581779, -0.423290, 0.896937, 0.578896, 0.511773, 0.637184, 1.315664, -0.373985, 0.337739, -0.314847, 0.928552, -1.051257, -0.182437, 0.619872, 1.506933, -1.069797, -1.396807, 0.876967, -2.091229, -1.156655, 2.691005, -0.585278, -0.225732, -0.034191, 0.634141, 1.449422, -1.051603, 0.026337, 0.924095, -0.585849, -0.333940, 0.320869, -0.078419, -1.023535, -0.673724, -0.946902, -0.576454, -0.123051, -0.696129, 0.947458, 1.158253, -1.118220, -0.088368, 1.723133, 0.866373, 1.321266, -0.190917, -0.354790, 0.016682, 0.199741, 0.076106, -2.472578, -0.491191, -2.213902, 0.196228, 2.089944, -0.411776, 2.540997, -0.091430, -0.098488, 0.489360, -0.307179, 1.029859, 0.807510, -1.159881, 0.117357, -0.490907, 0.707053, 0.678481, 1.080089, 0.715684, 0.392280, 1.221960, 0.265962, -0.557330, 0.048529, 1.294021, 0.719138, -0.532130, 0.813531, 0.469985, 0.261738, -1.594005, -0.788719, -0.911482, -0.952686, -0.764332, -0.574385, 1.037331, -1.486272, 0.428177, 1.293537, 1.290042, 0.406969, -0.124457, 2.316815, -1.143812, 0.641655, 1.688069, 0.462520, 1.728105, -2.043435, 1.850362, 1.750298, 1.289351, 0.872667, 1.511825, -1.111976, 0.591458, -1.504478, -0.400845, -2.375541, 0.574131, 1.670279, 0.082997, -0.891840, -0.406302, -0.698602, -1.408785, 0.481809, -0.187033, -0.097334, -0.633844, -0.185018, -0.273898, -0.073878, 1.428934, -0.053016, 0.264499, 0.102886, -0.643190, -1.125247, -1.210615, 0.318774, 0.647272, -0.335101, -0.642515, -0.202426, 0.977787, -0.303940, -1.143692, 0.081544, 0.612070, -0.146524, 0.035038, 0.376637, 0.528662, 0.028879, -0.666669, -0.328715, 0.782662, -0.252001, -0.690979, -0.469470, -0.708381, -0.923942, 1.304723, 0.370498, -0.702136, 2.529210, -0.054950, -1.187487, -0.773994, 0.278975, -0.066161, 0.794054, 0.504187, 0.416453, -0.379658, -2.723108, 1.534548, 0.762826, -1.756781, 0.547000, -0.091992, 0.610848, -0.860154, -0.568627, -0.950247, -0.804920, 0.094614, -1.800706, -0.957929, -0.320965, -0.430799, -0.273611, 0.908135, 1.306168, -0.062194, -0.090874, 0.912942, -0.646390, -1.807085, -0.933588, -0.043086, -1.305417, 0.050470, -0.895961, 1.310764, 0.325361, -0.191396, -0.824477, 1.590671, 1.758281, -0.422506, 1.825948, 0.476100, -0.775445, -0.588464, -0.446426, -0.199340, -0.919906, 0.858454, 1.077656, -1.283093, 0.956044, 1.074878, 0.652241, -1.355035, -0.212005, -1.201545, -0.353020, 0.531426, 1.915986, -0.965934, 0.190336, 0.986044, 0.037555, -0.529147, -0.311364, 0.181307, 0.533788, -1.400613, 0.775118, 0.701766, 0.295929, 0.886815, 0.687763, -0.114143, 0.539465, 0.115756, -0.460651, -0.316303, 0.939736, -3.304141, 0.450156, -0.150967, 2.590709, 0.475691, -0.205907, 1.243305, -0.637208, 0.222785, 0.748470, 0.327467, 0.099044, 0.032882, 1.738621, 0.283333, -0.374721, -0.404877, 1.469799, -0.053844, 1.463576, 0.215078, -0.376748, 0.739035, 1.232927, -0.653800, 1.776496, 0.890157, 0.706800, -0.507877, -0.380121, 0.118047, 0.689611, 1.743918, -0.404770, -1.151464, -1.695880, -0.247196, 3.640188, -1.533481, -0.319891, 0.076200, -1.185571, 0.724319, -0.097713, -0.008245, -2.476176, -1.042394, -0.678655, 0.153472, 0.218226, 0.139165, -0.681017, -1.256133, -0.485314, 0.202880, 0.737773, 1.368623, 1.149944, -0.349254, -0.539458, 0.673286, 0.197265, -0.546732, -0.936812, 0.438582, -0.255539, 1.015393, 0.830016, -1.748915, 0.401725, 1.051908, -0.120281, -0.238244, 0.804372, 0.132807, 0.436494, -0.404823, -0.035251, -0.534760, -0.289785, -0.845962, -1.671271, -0.229290, 2.076859, 2.112873, -1.734705, 1.491760, -1.510347, 1.728574, 0.348427, 0.931202, -0.590530, -0.623766, -0.825722, -2.842976, -0.180604, 0.063132, 0.524808, 0.880048, 1.452389, -1.411420, 0.406923, -0.009063, -0.083285, -0.258333, -0.411093, 0.422656, 0.351526, -1.174328, -0.700595, 0.957094, 0.464154, 0.961940, 1.651793, -0.459023, 0.032361, 1.719693, -0.214426, -1.066313, 1.203414, 1.512252, -0.013053, 0.078026, -0.355100, -1.151602, 0.038365, 0.746541, 0.082617, 1.483096, 0.532986, -0.779316, 0.470299, 0.304849, -1.239046, 0.833531, -0.991812, 0.001219, 0.173022, -0.671808, 0.625388, 0.298280, 0.077275, -1.210524, -0.468787, -0.921020, -0.478186, -0.619984, -1.110261, 0.231596, 0.518341, -0.374246, 0.364306, -0.562572, 0.492916, 0.312070, 0.588313, 1.482537, -0.015267, -0.783096, 0.834487, -1.457625, 1.100386, 1.968092, 1.456164, -0.946590, 0.203014, 0.477965, -1.088596, 0.540124, 0.629137, 0.011425, 0.905091, 1.384760, -1.472135, 1.190629, 2.056539, -0.319791, 0.130147, 1.271055, -1.372692, -1.440046, 0.155413, -0.549882, -1.216933, -0.015819, -0.415747, 0.416547, -0.130419, 1.552997, -1.359725, 0.513762, -0.531440, 1.063322, -0.155506, 0.520833, -0.800494, 0.013978, -0.176839, -0.779325, 0.078672, 0.725792, 1.546884, -1.768456, -0.794239, 1.242195, -0.893333, -0.502014, 0.070600, -0.002877, -0.731447, 0.871525, 0.182300, 0.421710, -1.074521, 0.645462, 0.754332, -1.022830, 1.445887, 0.281259, 1.092868, 0.415702, 0.041165, -0.861055, -0.345498, 0.856263, 0.615832, -0.432934, -0.813447, -0.851235, 1.111349, -3.271591, 1.546055, 1.239123, -1.086900, -1.780178, -1.544458, 1.873742, 0.374872, 0.415019, 0.469029, 0.937666, 0.049280, 0.529974, 0.003972, -0.480289, -0.680859, 0.451785, -1.514718, -1.901561, -1.334306, -0.493515, 0.337956, -0.781422, -2.140366, 0.328653, 0.174495, -1.144279, -0.566132, 0.672687, -0.089142, -0.648147, 0.545837, -0.986966, -2.011614, 0.259612, 2.211427, 0.211769, 0.397450, -0.224143, 0.499279, -0.465039, -0.018928, -0.256960, 1.115301, 1.085668, 0.455206, -0.426466, -0.145627, 0.715345, 0.300405, -1.221085, -0.755768, -2.435087, -0.035126, -2.416443, 0.488851, 1.770282, 0.528806, -1.465314, 2.651483, -0.128389, -0.417145, -0.577149, -1.435889, 0.905378, 1.964585, 0.894539, -1.143834, -2.072651, 1.425874, -0.124561, 0.389397, -1.235276, -0.594976, -1.501140, -1.478278, 0.740822, -1.062056, -1.572316, -2.148202, -0.152699, -0.186795, 1.114281, -0.963079, 0.069280, -0.894024, -1.605450, -1.513596, 0.530406, -0.645352, 1.083404, 0.359742, 1.405155, 0.044220, -1.192332, 0.917870, 0.855886, -0.670823, -0.254677, -1.302230, -1.053527, -0.272081, 1.250596, -0.953726, -1.029437, -0.859062, -0.629846, 0.961099, -1.023370, 0.629703, -0.341659, -1.246644, 0.595643, -0.020413, 1.129626, 0.275426, -1.704722, 0.773559, -0.604371, -0.377520, -0.792514, -0.408869, 1.876892, -0.904421, -1.188380, 0.658271, -0.445619, -0.551301, 0.335250, 0.279356, -0.326728, -1.484962, 0.847658, -1.794759, 0.811666, 1.128677, -0.788439, -1.644893, -1.258992, -1.379385, -1.906459, 0.497265, 1.033804, 1.151994, 0.456040, -0.774154, -0.012932, -1.069791, 2.342337, 1.340138, -1.019621, 0.425536, 0.735433, -0.142667, -0.560009, -0.683843, 1.341919, 0.859628, 0.137526, 0.492168, 0.054559, 0.083764, -0.791269, 0.056748, -0.414487, -0.863183, 2.167135, 0.286823, -0.313111, 0.553862, 0.000764, 0.187081, 0.415014, -0.025802, -0.304829, -0.418926, -1.503555, -0.728779, 1.791107, -0.841265, -1.676302, -0.522063, 0.116286, -0.168111, 1.006858, 0.101588, -0.587156, -0.705265, 0.165976, -0.946316, -2.553041, -1.526274, 0.298436, 1.922130, -0.205348, -2.022770, -0.205359, -1.507347, 1.873686, 0.673701, 0.306206, 1.039660, -0.038807, -0.043503, 0.350892, -2.025926, 0.437385, 0.458255, 1.634356, -0.854927, 0.371193, -0.254437, 0.073511, 1.285112, 0.519757, -0.228653, 1.085662, -0.791520, -1.802710, -0.449006, -0.484930, 0.119999, 0.560412, 0.440483, -0.542622, -1.215385, 0.284334, -0.250832, -0.322118, -0.851089, 1.981881, 0.650384, 0.415281, -0.822203, 0.005297, 1.911241, -1.385507, -0.036001, 0.816934, -0.378025, 0.169822, -0.399903, 0.239210, 0.001490, 2.054050, -0.406740, 1.091864, -0.547333, -1.399578, 0.162506, 0.490285, 0.052707, 1.901091, 0.474383, -1.488865, 1.136825, -2.066674, -0.006272, -0.850482, -0.035556, -0.235673, -0.218231, 0.282727, 0.491038, 0.287284, -0.097007, 0.115075, 1.457639, -3.244357, 0.470283, -0.098323, 1.030281, -0.464562, -0.475466, 0.046398, -0.243231, 1.409080, 0.194063, -0.350261, 0.745933, 0.467701, 0.776280, 0.235805, 0.157086, -0.076641, 0.586459, 0.434680, -1.791565, 0.026298, 0.676300, -1.933337, 0.501824, 1.718093, 1.288899, 0.260463, 1.045297, -1.146577, 0.918897, 0.953756, -0.042108, -2.098849, 0.199197, 0.322978, -0.817203, -1.332367, 2.005766, -1.458670, 0.591116, -0.432035, -0.049552, -0.598772, -1.272601, -0.008249, -1.420874, -0.134552, 1.230841, 1.296471, 2.309085, -0.049947, -0.267413, 1.373158, -1.519797, -0.545450, -0.721523, 1.381696, -1.716540, 0.787918, 0.554416, -0.070415, -0.762030, -0.824556, 0.283408, -0.479842, 1.808094, -0.094731, -1.870258, -1.043470, 0.024725, 0.248764, 0.703275, -1.028994, -0.107399, -0.053329, -2.229501, -1.665794, -0.031335, -0.125519, -0.599666, 0.731239, -0.421697, 0.417807, 1.440879, 0.735590, -2.647292, 0.874610, 0.068902, -3.034189, -1.514768, 1.375592, 0.138118, 1.404842, 0.102398, -0.253506, -1.386411, -0.538118, -0.184038, 1.438215, 0.493969, -0.344355, -1.197392, 1.258777, -0.539622, 1.933346, 0.174602, -0.641495, 2.560009, 0.559602, 0.081997, 1.169597, -1.220777, 0.234462, -0.656987, 2.071997, 0.665757, 1.414597, 1.569744, 0.661390, 0.028050, -0.450470, 0.289979, -1.190956, 0.048685, 0.806834, -0.217576, -0.051532, 0.061492, -1.341624, 0.204468, 0.275311, 1.015437, 0.390251, -0.190717, -0.765341, -1.368739, -0.462784, 0.637006, -0.131510, 0.360640, -0.004806, -0.531379, 0.609566, -0.608923, -0.201313, -1.309795, -0.631704, 0.626638, 0.900704, 0.671277, -2.451971, 0.267234, -0.331389, 0.085007, -0.389346, 0.581410, 1.572095, -0.876835, 0.656450, 1.103068, 2.145412, -0.329937, -0.144463, 0.489393, -0.236403, -0.864358, 0.506528, -1.366651, -0.288515, -0.242011, -0.249457, -0.689139, 1.594921, 0.178823, -0.543440, -0.212464, 0.580742, 0.784289, 0.682584, -1.622043, -0.654385, 0.722397, 0.800628, -1.158074, 0.123853, 0.264135, 1.566360, -0.495162, 0.559053, 1.675383, -0.264058, -1.245865, 0.682013, 0.000450, 0.147345, -0.998236, -0.175671, -0.534080, 0.808792, 0.319772, -0.367929, 0.974291, -0.049030, -1.117112, 1.419691, -0.501245, -0.725041, 1.341914, 1.344847, 0.253530, 0.158335, 1.682190, -1.131622, 0.167605, -1.342492, -0.446232, 0.349514, 0.185182, -0.928107, -1.647748, -0.625048, 0.311100, -2.428436, -1.072399, 0.715704, -1.987772, 0.292917, -2.224710, -0.744249, -0.702430, 1.110776, 1.642087, 0.232296, -1.799583, -0.788508, 0.667428, -0.747804, -0.234830, -0.306652, -0.182916, 2.065650, 1.100246, -0.033264, -1.415357, -0.515378, -0.811896, 0.025481, -1.196895, 1.921172, 0.185095, -0.489697, 0.986528, 0.013538, -0.041245, 0.219131, -1.576243, -0.437772, 0.696383, -0.081948, 0.215104, 0.455184, -1.427389, -1.780960, 2.597677, -0.157039, 0.020257, 0.820653, 1.046425, 0.050160, -0.094993, 1.200100, 0.346938, 0.850390, 0.367304, -2.310000, 1.211297, 0.150482, 0.043871, -0.508709, -1.609964, -0.297195, -0.181224, 0.111775, -0.982257, 0.678733, 1.204637, -0.920422, 1.300763, 1.967843, 0.612005, 0.491201, -0.360247, -0.975194, -0.668533, 0.805851, 0.523935, 0.195248, -0.130975, -1.337807, -0.786042, 0.599628, 1.169225, 2.658781, 1.300806, 0.177758, -0.573090, -0.419563, 0.170684, 1.118638, -0.425810, 0.999040, -0.059230, -1.428994, -0.652792, 0.191031, 0.170650, 0.706141, 1.963883, -0.381524, 0.169058, -0.872359, -0.993459, 1.201042, 1.368303, 0.624524, -2.418988, 0.149065, 1.952251, -1.809313, 1.548608, 0.564970, 0.469068, 1.563380, -0.134034, -0.510471, 1.281595, 1.207709, -1.528424, -0.044249, 1.197483, -0.093338, -1.051536, -0.398160, 0.772390, 0.157586, 2.020971, -0.659765, 1.254528, 0.567158, 0.622205, -1.150470, 0.139632, 0.142316, -0.064545, 0.260148, -0.534607, -0.931033, -1.101969, 0.532323, -0.767783, -1.608334, -0.313577, 0.086653, 0.291630, 0.036925, 0.030688, -0.117193, 0.185717, 0.623620, -0.210230, -0.096605, -0.283992, -2.347278, -1.262812, 1.042450, -0.429306, -2.661640, 0.675233, -0.607473, 1.390264, -1.861211, -0.134102, 0.901294, -1.293585, 0.742760, 0.391332, 0.926030, -0.426751, 0.337803, 0.991124, -0.618245, -0.664740, -0.103559, -0.255470, -0.502952, -0.043288, -0.672390} -} -}); - -#endif /* EXPORT_PARAMETERS_INPUTNODE_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode.hpp deleted file mode 100644 index e82011643..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode.hpp +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef EXPORT_ATTRIBUTES_OUTPUTNODE_H -#define EXPORT_ATTRIBUTES_OUTPUTNODE_H - -#define _OUTPUTNODE_IN_CHANNELS 16 -#define _OUTPUTNODE_OUT_CHANNELS 10 - -#endif /* EXPORT_ATTRIBUTES_OUTPUTNODE_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_b.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_b.hpp deleted file mode 100644 index cc150ee13..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_b.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef EXPORT_PARAMETERS_OUTPUTNODE_B_H -#define EXPORT_PARAMETERS_OUTPUTNODE_B_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> OutputNode_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 10> { -{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } -}); - -#endif /* EXPORT_PARAMETERS_OUTPUTNODE_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_w.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_w.hpp deleted file mode 100644 index 303ae8366..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/attributes/OutputNode_w.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef EXPORT_PARAMETERS_OUTPUTNODE_W_H -#define EXPORT_PARAMETERS_OUTPUTNODE_W_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> OutputNode_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 10, 16> { -{ - { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630}, - { 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164}, - { 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481}, - { -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, - { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876}, - { -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245}, - { 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104}, - { 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, - { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258}, - { 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219} -} -}); - -#endif /* EXPORT_PARAMETERS_OUTPUTNODE_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/include/dnn.hpp b/aidge_core/unit_tests/dummy_export/__cache_export/include/dnn.hpp deleted file mode 100644 index 3a4d5c02e..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/include/dnn.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef DNN_HPP -#define DNN_HPP -#include <aidge/graph/GraphView.hpp> -/** - * @brief This file contains all of what is related to the construction of the - * neural network - * - */ - -/** - * @brief This function generate the exported Aidge::GraphView. - * - * @return std::shared_ptr<Aidge::GraphView> - */ -std::shared_ptr<Aidge::GraphView> generateModel(); - -#endif /* DNN_HPP */ diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/main.cpp b/aidge_core/unit_tests/dummy_export/__cache_export/main.cpp deleted file mode 100644 index 640fc1fe6..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/main.cpp +++ /dev/null @@ -1,23 +0,0 @@ -/* -Example main.cpp used to test aidge export. -This file is copied in the test export. -*/ -#include <iostream> - -/* Register default cpu Tensor implementation */ -#include <aidge/backend/cpu/data/TensorImpl.hpp> - -/* Include model generator */ -#include "include/dnn.hpp" - -int main() -{ - - std::cout << "BEGIN" << std::endl; - - std::shared_ptr<Aidge::GraphView> graph = generateModel(); - - std::cout << "END" << std::endl; - - return 0; -} diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/project_name.txt b/aidge_core/unit_tests/dummy_export/__cache_export/project_name.txt deleted file mode 100644 index eade0289a..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/project_name.txt +++ /dev/null @@ -1 +0,0 @@ -dummy_export \ No newline at end of file diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/python_binding/pybind.cpp b/aidge_core/unit_tests/dummy_export/__cache_export/python_binding/pybind.cpp deleted file mode 100644 index 6514fe0d5..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/python_binding/pybind.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include <pybind11/pybind11.h> - -#include "dnn.hpp" - -namespace py = pybind11; - - -void init_dummy_export(py::module& m){ - m.def("generate_model", generateModel); -} - -PYBIND11_MODULE(dummy_export, m) { - init_dummy_export(m); -} diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/src/dnn.cpp b/aidge_core/unit_tests/dummy_export/__cache_export/src/dnn.cpp deleted file mode 100644 index 69a5269b6..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/src/dnn.cpp +++ /dev/null @@ -1,232 +0,0 @@ -/******************************************************************************** - * This file has been generated by the Aidge export. - ********************************************************************************/ - -/*** STD INCLUDES ***/ -#include <memory> // std::shared_ptr - -/*** AIDGE INCLUDES ***/ -#include <aidge/graph/GraphView.hpp> // Aidge::GraphView -#include <aidge/graph/Node.hpp> // Aidge::Node -#include <aidge/graph/OpArgs.hpp> // Aidge::Sequential - -/*** AIDGE OPERATORS ***/ - -/*** OPERATOR ATTRIBUTES & PARAMETERS ***/ -#include "aidge/operator/Producer.hpp" -#include "attributes/InputNode_b.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/InputNode_w.hpp" -#include "aidge/operator/FC.hpp" -#include "attributes/InputNode.hpp" -#include "aidge/operator/ReLU.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/FC1_b.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/FC1_w.hpp" -#include "aidge/operator/FC.hpp" -#include "attributes/FC1.hpp" -#include "aidge/operator/ReLU.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/FC2_b.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/FC2_w.hpp" -#include "aidge/operator/FC.hpp" -#include "attributes/FC2.hpp" -#include "aidge/operator/ReLU.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/OutputNode_b.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/OutputNode_w.hpp" -#include "aidge/operator/FC.hpp" -#include "attributes/OutputNode.hpp" - -/*** HEADER ***/ -#include "dnn.hpp" - - -std::shared_ptr<Aidge::GraphView> generateModel() { - /*** BUILDING GRAPH ***/ - std::shared_ptr<Aidge::GraphView> graph = std::make_shared<Aidge::GraphView>(); - - /*** INPUTNODE_B ***/ - std::shared_ptr<Aidge::Node> InputNode_b = - Aidge::Producer( - InputNode_2, - "InputNode_b" - ); - graph->add(InputNode_b); - - - - /*** INPUTNODE_W ***/ - std::shared_ptr<Aidge::Node> InputNode_w = - Aidge::Producer( - InputNode_1, - "InputNode_w" - ); - graph->add(InputNode_w); - - - - /*** INPUTNODE ***/ - std::shared_ptr<Aidge::Node> InputNode = - Aidge::FC( - _INPUTNODE_IN_CHANNELS, - _INPUTNODE_OUT_CHANNELS, - "InputNode" - ); - - InputNode_w->addChild(InputNode, 0, 1); - InputNode_b->addChild(InputNode, 0, 2); - - graph->add(InputNode); - - - - /*** RELU0 ***/ - std::shared_ptr<Aidge::Node> Relu0 = - Aidge::ReLU( - "Relu0" - ); - - InputNode->addChild(Relu0, 0, 0); - - graph->add(Relu0); - - - - /*** FC1_B ***/ - std::shared_ptr<Aidge::Node> FC1_b = - Aidge::Producer( - FC1_2, - "FC1_b" - ); - graph->add(FC1_b); - - - - /*** FC1_W ***/ - std::shared_ptr<Aidge::Node> FC1_w = - Aidge::Producer( - FC1_1, - "FC1_w" - ); - graph->add(FC1_w); - - - - /*** FC1 ***/ - std::shared_ptr<Aidge::Node> FC1 = - Aidge::FC( - _FC1_IN_CHANNELS, - _FC1_OUT_CHANNELS, - "FC1" - ); - - Relu0->addChild(FC1, 0, 0); - FC1_w->addChild(FC1, 0, 1); - FC1_b->addChild(FC1, 0, 2); - - graph->add(FC1); - - - - /*** RELU1 ***/ - std::shared_ptr<Aidge::Node> Relu1 = - Aidge::ReLU( - "Relu1" - ); - - FC1->addChild(Relu1, 0, 0); - - graph->add(Relu1); - - - - /*** FC2_B ***/ - std::shared_ptr<Aidge::Node> FC2_b = - Aidge::Producer( - FC2_2, - "FC2_b" - ); - graph->add(FC2_b); - - - - /*** FC2_W ***/ - std::shared_ptr<Aidge::Node> FC2_w = - Aidge::Producer( - FC2_1, - "FC2_w" - ); - graph->add(FC2_w); - - - - /*** FC2 ***/ - std::shared_ptr<Aidge::Node> FC2 = - Aidge::FC( - _FC2_IN_CHANNELS, - _FC2_OUT_CHANNELS, - "FC2" - ); - - Relu1->addChild(FC2, 0, 0); - FC2_w->addChild(FC2, 0, 1); - FC2_b->addChild(FC2, 0, 2); - - graph->add(FC2); - - - - /*** RELU2 ***/ - std::shared_ptr<Aidge::Node> Relu2 = - Aidge::ReLU( - "Relu2" - ); - - FC2->addChild(Relu2, 0, 0); - - graph->add(Relu2); - - - - /*** OUTPUTNODE_B ***/ - std::shared_ptr<Aidge::Node> OutputNode_b = - Aidge::Producer( - OutputNode_2, - "OutputNode_b" - ); - graph->add(OutputNode_b); - - - - /*** OUTPUTNODE_W ***/ - std::shared_ptr<Aidge::Node> OutputNode_w = - Aidge::Producer( - OutputNode_1, - "OutputNode_w" - ); - graph->add(OutputNode_w); - - - - /*** OUTPUTNODE ***/ - std::shared_ptr<Aidge::Node> OutputNode = - Aidge::FC( - _OUTPUTNODE_IN_CHANNELS, - _OUTPUTNODE_OUT_CHANNELS, - "OutputNode" - ); - - Relu2->addChild(OutputNode, 0, 0); - OutputNode_w->addChild(OutputNode, 0, 1); - OutputNode_b->addChild(OutputNode, 0, 2); - - graph->add(OutputNode); - - - - return graph; -} diff --git a/aidge_core/unit_tests/dummy_export/__cache_export/version.txt b/aidge_core/unit_tests/dummy_export/__cache_export/version.txt deleted file mode 100644 index 77d6f4ca2..000000000 --- a/aidge_core/unit_tests/dummy_export/__cache_export/version.txt +++ /dev/null @@ -1 +0,0 @@ -0.0.0 diff --git a/aidge_core/unit_tests/dummy_export/cmake/PybindModuleCreation.cmake b/aidge_core/unit_tests/dummy_export/cmake/PybindModuleCreation.cmake deleted file mode 100644 index 217a48351..000000000 --- a/aidge_core/unit_tests/dummy_export/cmake/PybindModuleCreation.cmake +++ /dev/null @@ -1,22 +0,0 @@ -function(generate_python_binding name target_to_bind) - - find_package(Python COMPONENTS Interpreter Development.Module) - - Include(FetchContent) - FetchContent_Declare( - PyBind11 - GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.10.4 # or a later release - ) - FetchContent_MakeAvailable(PyBind11) - - message(STATUS "Creating binding for module ${name}") - file(GLOB_RECURSE pybind_src_files "python_binding/*.cpp") - - pybind11_add_module(${name} MODULE ${pybind_src_files} "NO_EXTRAS") # NO EXTRA recquired for pip install - target_include_directories(${name} PRIVATE "python_binding") - - # Link target library to bind - target_link_libraries(${name} PRIVATE ${target_to_bind}) - -endfunction() diff --git a/aidge_core/unit_tests/dummy_export/dummy_export-config.cmake.in b/aidge_core/unit_tests/dummy_export/dummy_export-config.cmake.in deleted file mode 100644 index f0be5e076..000000000 --- a/aidge_core/unit_tests/dummy_export/dummy_export-config.cmake.in +++ /dev/null @@ -1,8 +0,0 @@ -@PACKAGE_INIT@ - -include(CMakeFindDependencyMacro) -find_dependency(aidge_core) - -include(${CMAKE_CURRENT_LIST_DIR}/aidge_backend_cpu-config-version.cmake) - -include(${CMAKE_CURRENT_LIST_DIR}/aidge_backend_cpu-targets.cmake) diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC1.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC1.hpp deleted file mode 100644 index db45424cb..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/FC1.hpp +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef EXPORT_ATTRIBUTES_FC1_H -#define EXPORT_ATTRIBUTES_FC1_H - -#define _FC1_IN_CHANNELS 64 -#define _FC1_OUT_CHANNELS 32 - -#endif /* EXPORT_ATTRIBUTES_FC1_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC1_b.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC1_b.hpp deleted file mode 100644 index 7bbef95ae..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/FC1_b.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef EXPORT_PARAMETERS_FC1_B_H -#define EXPORT_PARAMETERS_FC1_B_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> FC1_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 32> { -{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } -}); - -#endif /* EXPORT_PARAMETERS_FC1_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC1_w.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC1_w.hpp deleted file mode 100644 index ccdc12470..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/FC1_w.hpp +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef EXPORT_PARAMETERS_FC1_W_H -#define EXPORT_PARAMETERS_FC1_W_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> FC1_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 32, 64> { -{ - { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164, 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, - { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245, 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, - { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219, -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365}, - { 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620, -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814}, - { -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116, -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061}, - { 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394, -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534}, - { 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535, -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270}, - { -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022, -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879}, - { -0.483628, 0.272165, -0.921403, -0.867794, 0.253838, -1.017495, -0.035984, -0.680159, -0.116601, -1.917364, -0.293144, -1.680917, 1.482456, -2.643867, -0.589814, 1.864317, 0.810974, 0.449891, -0.523071, -1.701221, 1.129147, -0.414783, 0.039269, -1.340263, 0.165569, -0.458461, -0.978111, 0.656720, 0.531054, 0.426182, 0.701776, 1.073439, -0.749516, -0.560629, -0.634230, -0.186059, -0.122258, 0.021843, 0.543000, -0.314648, -0.946935, -0.333649, 0.596433, -0.647178, 0.790704, -0.074659, -0.043766, 1.429068, -0.058342, -0.809171, 1.030495, 0.050716, -0.116684, -1.944978, -1.793352, 1.627739, -0.369663, 2.177690, 1.651580, -2.036985, -1.240169, 0.036523, -1.150051, 0.116815}, - { 1.104999, 1.341058, 0.309679, -1.755930, -0.378678, -0.806254, -1.054984, -0.320765, -0.266736, -0.225193, 0.169121, 0.865690, -0.885389, 0.095123, 0.870764, -0.091391, 1.401193, -0.193103, 0.621627, 0.369497, -0.816600, -0.202823, -0.159167, 0.872668, -0.273115, 1.938011, 0.684697, 1.704309, 1.204039, -0.959246, 1.359703, 0.799502, 0.776908, -0.756584, -0.640936, 0.990894, 0.256858, -3.137142, 0.545601, 0.109409, 0.181050, 1.120293, -0.914028, -0.097133, 0.133803, 0.496900, 1.070259, 0.223329, -0.368285, 0.345049, 1.432678, 1.382178, 0.558631, -0.126281, -1.479764, -2.136274, 0.879013, -0.931591, 0.460165, 0.663047, -0.782686, -2.017072, -1.219782, -1.615018}, - { 0.023152, -0.351595, 0.384548, -0.350487, 0.861079, -2.343885, 0.206722, 0.492284, 0.227113, -0.832889, -0.669958, -0.069160, -0.609277, -0.255370, -0.752728, -0.765413, 1.094080, 0.368862, 0.024828, -0.518220, 0.009554, -0.353964, 1.897386, -0.901690, 0.077136, -0.747170, 0.407625, -1.418082, 0.823818, -0.750032, -0.318462, -0.949275, -0.005721, -0.311060, -1.375086, 0.638032, -0.070481, 0.265967, -1.677426, -0.803207, 0.331928, -0.337461, 1.145064, 0.517522, 2.248859, -0.155701, -0.185320, -0.430223, 0.633950, 0.594881, -0.373053, -0.183769, 0.781241, -1.100458, -1.127900, 1.536747, 0.694964, -1.317671, 0.552416, 0.214635, 1.172117, 0.057319, -0.083945, -2.744316}, - { -2.083668, 1.579024, 0.846874, -0.559092, 1.025974, 0.889658, -1.337327, -2.154229, 0.283269, -0.084246, -0.448027, 1.076064, -0.171827, 0.712631, -0.291771, -1.532148, 0.525627, -0.182083, -0.584263, 0.758026, -0.011926, 0.048968, -0.683809, -0.367121, -0.808110, -0.745193, -0.025946, -0.974672, -0.667272, -1.253634, -0.933169, 1.543063, -0.558194, 0.333470, 0.300683, 0.875321, -0.650058, -0.402874, -1.479110, -1.422508, -1.490082, -1.066710, 0.818719, 1.130872, 0.726068, -0.644154, 0.015556, -1.297712, -1.807793, -0.449898, 0.678534, -0.343751, -0.438977, 1.005177, 0.789181, -0.868195, 2.963583, 0.127910, 0.762864, 2.106842, 0.059183, 1.106624, -0.173846, 0.506085}, - { -0.803235, 0.456489, 1.792648, -0.413096, 0.174623, -0.670578, 1.004736, -1.211046, -0.177172, -1.173558, 1.704121, -0.717132, -0.315196, -0.955144, -0.844640, 0.219873, 0.439474, -0.111900, 0.382651, 0.037409, -0.715340, -0.458230, -1.518173, 0.580286, -0.180067, 0.251145, 1.541854, -1.799514, 0.415876, 0.045524, -0.935430, -0.941019, 0.476378, -0.045153, -0.346679, -0.071810, 0.468796, -0.303942, 1.868755, 0.052552, -1.115326, -0.951675, 0.823079, -0.264655, -0.460295, 0.024275, 0.681858, 1.360035, -1.231762, -1.203111, -0.181563, 0.198488, -0.813774, -1.178844, 0.972454, -0.134574, 0.030472, -0.967580, 0.152757, -2.177683, -0.678582, 1.439619, 0.329668, 1.977801}, - { 0.547752, 0.150742, 0.597613, 0.320251, 0.629068, -1.048041, 1.226918, -1.397015, 0.530945, 1.934914, -0.360577, 0.601554, -1.164239, 0.144575, 0.725861, -0.442685, 0.083200, -0.289393, -1.016526, 1.067162, -0.018115, -0.224101, -0.241866, -0.064766, 2.522637, 1.326687, -0.214645, 0.652540, 0.005862, -0.888118, -1.111310, -0.301777, -0.060108, -0.383830, 0.692486, -0.268334, 0.663172, -1.008340, -1.682795, 0.617490, 0.376519, 1.881652, 1.198976, 0.919806, -0.134369, 0.542711, -0.636402, 2.075232, 0.367750, 0.078205, 1.175514, 0.312489, -0.545571, 1.806641, 0.572128, 0.969595, 2.196302, 0.144951, -0.069890, -0.024643, 0.096254, -0.913089, 0.207929, -0.024540}, - { -2.364928, 0.403653, 0.957075, 0.605313, -0.084031, -0.881650, 0.617897, -0.514700, 1.021071, -2.341326, 0.867535, 0.276200, -1.536776, 1.063557, -0.265884, -1.019689, 0.034769, 0.374245, 0.308205, 0.941602, -2.383936, 0.053763, 0.080351, 0.805516, -1.034883, 0.112969, 0.225962, 0.529344, -0.533202, 0.826293, -0.530990, -0.941042, -1.409687, -0.616595, 0.083008, 0.597792, 0.564483, -0.277788, 0.275536, -1.167859, 0.234086, 0.923334, -1.550176, -0.317221, 0.167047, 0.842336, -0.197037, -0.189047, -1.258022, 1.233136, 2.043196, -0.972316, -0.211159, -0.644789, 0.550668, 0.263230, 0.510620, -0.340782, -0.076202, -0.532805, 0.028492, -0.711909, -0.041329, -0.716095}, - { -0.438745, 1.613258, 1.203239, 0.964917, 2.008562, 2.526586, -1.076117, -1.172786, 1.202410, -1.702984, 2.141656, -0.421657, 0.506291, -1.005197, -1.210642, -1.006717, -1.024502, 0.616641, -1.584712, 0.891012, -2.477347, -0.572187, 0.864046, -1.402610, 0.412339, -0.276108, -2.752150, 0.592655, 0.632535, -0.195088, 2.281385, -1.077261, -0.790374, -1.883068, 0.079064, 0.400938, -0.359422, -0.905535, 0.275971, -0.708639, 1.268833, -1.304649, 1.220814, 0.345417, -1.035277, 1.694809, -0.453738, -0.100811, -0.711486, -2.032043, 0.247771, 0.125351, 1.414129, 1.130891, -0.594405, 0.797592, 0.053162, 0.395181, -0.421787, 0.288705, -1.071319, 0.932462, -0.609468, -0.239886}, - { 0.426226, -0.566084, -0.555236, -0.395055, -1.607937, -0.454888, 1.086999, 0.064433, -0.630807, 0.537331, -0.079178, 0.544384, -0.345341, -0.755680, 0.194209, -0.915100, 0.664959, 0.136650, 0.145284, 0.658129, 1.353991, -0.482921, -1.267343, -0.525734, 0.427054, -0.567577, -0.977804, 0.581563, 0.731378, 0.287522, 2.394391, -0.044662, -1.842992, 1.271125, -0.347839, -0.222826, -0.068077, -0.131304, -2.144952, -2.350498, -0.053892, -1.022586, 0.598608, -3.063631, -0.889890, -0.169715, -0.043919, -1.031522, -0.314142, -1.721556, -1.423945, -0.517471, -0.617123, -0.140159, -0.793929, 0.361729, 0.918396, -0.399743, -0.736005, 1.568120, -1.300957, 1.526744, -0.297900, -0.062842}, - { -1.966952, -1.071676, 1.570217, 1.112780, 0.185776, -0.637180, 1.313317, 1.172860, -0.915400, 1.177792, -1.942183, 0.390201, 1.388212, -0.477988, -1.579742, -0.683059, 1.172021, -0.980434, 0.059954, -0.457660, -0.634426, 1.500102, 0.078013, -0.986448, -0.762938, 0.195547, 1.015367, 1.245432, -0.282828, 0.081046, 0.307498, -0.669810, 0.721569, 0.057625, 0.501820, -0.104848, 1.437235, 0.117299, -0.523084, -1.118009, 1.560399, 0.104631, 0.489168, 0.760339, 1.449355, -1.377321, -0.715611, -1.029579, 0.073359, -0.825450, -0.229307, -0.421830, -0.666367, -0.440156, 0.023840, -0.751700, -0.361373, 0.986500, 0.851569, 0.123599, 0.390027, 0.277061, 0.940906, -0.103239}, - { -0.445279, -0.919782, 0.639714, -0.902529, -1.874779, -1.719761, -1.893759, 0.269624, -0.578221, -0.202651, -0.392257, 1.412725, -0.629082, 1.413975, -0.064950, -0.204246, 0.975600, -0.282429, 0.352274, 0.795323, -0.966890, 0.600321, 0.459449, 1.495051, -0.693799, -2.130963, 2.241615, 0.016742, -1.380529, -0.693764, 0.788271, -2.084727, -0.605345, -0.393199, -1.431592, -0.019263, 0.154902, 2.003049, -0.505429, -0.279594, 1.178694, 0.081671, -0.253501, -0.928567, -0.470637, -0.599760, 0.105334, -0.558767, 0.306641, -1.247424, -1.136135, 0.388699, 0.240216, -0.539604, 0.748712, 1.514203, -0.053900, 0.146477, 1.415987, 0.035719, 0.852351, -0.505780, -2.203605, 1.287532}, - { -0.138672, 0.707916, 0.732445, 0.034828, 0.916650, -0.960419, -1.104703, -1.910655, 0.738577, -1.784924, 0.377324, 0.942214, -2.147115, -0.657372, 1.937143, -0.640029, 0.813896, -1.856751, 0.293933, 0.407355, 0.828903, -0.258431, 0.651304, 1.024936, -1.113730, 0.727588, 0.244997, -1.608019, 0.678481, -0.704592, 0.512401, -0.693952, 0.200313, 0.382440, -0.155662, -1.873614, -1.368903, -0.209850, -1.454814, -0.029855, 0.192369, 1.508715, -0.212503, 1.176330, -1.738381, -0.637968, 0.576972, 0.808788, 0.434982, -0.529857, -1.056989, -0.818170, -1.858517, -1.504275, -1.812055, 1.817686, -0.827064, -0.970820, 0.661065, 0.146447, 0.291060, -0.408877, 0.068819, 0.295079}, - { 0.663102, -0.166278, 0.770570, -1.142846, -0.806847, -0.730912, -0.447671, -0.015643, 0.619293, 0.202428, 1.665242, -0.790555, 1.475059, -0.881476, 0.390759, 1.258389, 0.324598, 1.822245, -0.058715, 0.600523, 1.136708, -1.679807, 0.288505, 0.744363, -0.611639, 1.300585, 1.380471, -1.169925, -0.777400, 2.193714, -0.475082, -0.242079, -0.336258, 0.471824, -0.658170, -1.063402, 0.417935, -1.189927, -1.703003, -1.247581, 0.862522, 0.934985, 1.998402, 0.301988, -1.167236, -0.040485, -0.692792, -0.118653, -0.085074, -0.157554, -0.597173, -1.148901, 0.479436, -1.334729, 0.435822, 0.728494, -0.447077, 0.395057, -0.449488, -0.970525, 1.506991, 0.701021, 0.331930, -0.781135}, - { 0.695741, 0.447304, 0.814847, 2.051350, -0.694026, -0.032321, 0.024414, -0.642007, 1.006013, -0.816746, -1.214119, -2.295536, 0.402007, -0.404793, 0.312364, -0.727692, 0.190903, 1.319342, 2.484523, -0.751330, 0.517379, 1.607649, -1.566784, -1.809135, 1.457683, -0.908496, -2.220334, 0.243166, 0.595011, 0.379217, 1.088163, 1.147452, 0.633369, 0.346038, 0.347236, -0.325225, 1.888308, -3.072945, 1.297680, -1.506335, 0.205380, 0.664307, 0.979495, -1.097883, -0.745897, -0.303797, -0.563891, 2.451149, 0.088773, 0.480402, -0.445841, -0.637341, -0.792031, -0.643933, 0.330410, 0.895335, 1.612401, -0.050137, -0.272140, 0.770629, 0.586540, -0.882999, 2.427387, 0.907571}, - { 1.020693, -0.572768, -1.022579, -0.633937, 1.401881, -0.251258, -1.633224, -0.467908, -1.371026, -0.969493, -0.825524, 0.605472, 0.183619, -1.847969, -1.878521, 1.177194, -0.710708, 0.769348, 0.636449, 1.019374, 1.298586, -1.192946, 0.573427, 0.357284, -0.348353, 0.929739, -0.583619, -0.075304, -2.041761, -0.158822, -0.179691, -3.007082, -1.240545, 0.256757, -0.732539, 0.213922, -3.068860, -0.118184, 1.317333, 0.639406, -1.638411, -0.856709, 0.936945, -0.200855, 0.592933, 0.934265, -0.506393, -2.097188, -0.686307, -0.841321, 0.113067, -0.659559, -0.225567, 0.278005, 0.185259, 0.321431, 1.222981, -1.271038, 0.553208, -0.798184, 0.259451, 0.417953, -0.004145, -0.694951}, - { -0.227405, -0.808163, 0.415147, 0.657638, 1.917061, 1.630171, -1.438121, -0.981062, 0.436875, 1.518751, 0.353086, -0.147144, 0.741269, 1.950936, 2.739364, 0.733956, -0.655084, -0.021943, 2.113906, 1.009407, 0.544371, 0.768170, -0.927640, 0.817491, 0.744725, 0.843117, -0.691860, -0.747689, 0.265487, 0.741109, -0.117990, -0.336553, 1.219656, -0.894997, 0.185234, -0.876471, 1.620419, -0.154121, -0.562478, 0.724263, 0.392547, -0.183256, -0.952905, -0.482131, 0.056012, 1.362304, -0.669158, -1.197868, 1.035019, 0.921444, 0.293030, -0.064290, 0.039056, -1.971230, -0.748615, 1.521501, -1.063615, -1.614336, 0.859108, 0.664434, 0.582681, 0.891293, -0.682233, -1.063711}, - { 1.022504, -1.064391, -0.238194, -1.287860, -1.136086, -0.599646, 2.083999, -0.251891, 1.635609, 0.142861, 0.311812, 1.059390, -0.011250, 0.999566, -0.376215, -0.275687, 1.269079, 0.547754, -0.021728, -1.003898, 1.155573, -0.133892, -0.820203, -0.399042, 0.011735, -0.004630, -1.624290, -3.214955, -0.302276, 0.162449, -0.165589, -0.324434, -0.858639, 1.214711, -0.088071, 0.692165, -2.298264, 0.109115, -0.152067, -1.400125, -0.798508, 0.065675, 0.840315, -0.535997, 0.989161, -0.666881, 0.422332, 2.565203, -0.348443, 0.292504, 0.955866, 1.009752, 2.071980, 1.349440, 0.222731, 0.470191, -2.257708, -0.124012, 0.316573, 0.914732, -0.237629, 1.217734, -0.413807, -1.373763}, - { -0.449355, 1.434391, -0.433576, -0.174979, 0.556502, -0.430827, 1.936127, 0.067958, -0.865320, 0.760247, -0.580725, 0.018868, -0.033391, 0.721388, 0.462043, -1.425273, 0.678470, 0.302006, 0.756002, 0.167077, 0.766390, -0.043001, 0.394925, 1.800999, 0.090170, -0.554982, -0.095026, 0.112222, -1.022792, 0.053468, -0.428305, -0.314164, 1.135005, 2.346780, 0.916245, -0.659896, -0.498403, -0.046144, -0.553811, -0.108004, 0.122168, -0.002586, 0.768014, -0.692886, -1.433461, 0.473015, -0.064335, 1.647390, 0.779012, -0.843045, 1.077922, 0.382245, -1.250200, 0.643778, 0.443442, 0.904600, 1.065371, -0.027124, -0.566289, -0.665816, -0.354307, -0.877381, -1.659182, -0.191498}, - { 0.162333, 0.498699, -0.395470, 1.743060, -1.321712, -0.936546, 0.274050, -0.159812, -0.355672, -1.676516, -0.600875, 0.034010, 0.114026, -1.140778, -0.492318, -1.908774, -1.484320, 1.081611, -0.934511, 1.064218, -1.353714, -0.314849, -0.105485, 2.178031, -0.409103, 0.933178, -2.048981, -0.298461, -2.592589, -0.488420, 0.835982, -1.151600, -0.189469, 1.288512, -0.699727, -0.624615, 0.460098, -0.202874, -0.346232, 0.267220, -0.158052, 1.825733, -0.869135, 0.123580, -0.991966, 0.750955, 1.741264, -0.764096, 0.010258, -0.192117, 0.027155, -0.265093, 1.277057, 0.043134, 0.090176, 0.277584, 0.372338, 0.948639, -0.836552, -0.589544, -0.745397, 0.382427, -0.232827, -0.892618}, - { 0.882999, -0.799134, 0.054087, 0.408222, 1.345659, 0.814261, -1.389691, 0.093555, -1.494835, -1.735067, -0.009094, 1.548697, -0.411162, -0.575812, 0.405427, 0.855615, 0.896117, 0.274727, -0.114478, -0.488888, 0.450323, 0.212904, -0.196283, 0.326608, -1.224662, 0.087978, 1.183714, -0.601534, -0.298352, -0.654938, 0.161118, 1.607924, -0.909086, 0.273687, -2.044743, 0.746246, -1.040757, -0.908652, -0.731929, -0.509273, 0.037672, 0.032804, 0.348324, 0.257188, 0.500905, 0.020275, 0.119230, -0.704439, -2.530083, -1.678277, -0.676852, -2.791788, 0.164539, -0.123641, -1.377383, -0.361288, -1.299663, -1.483092, 0.434668, -1.035801, 1.730346, -0.469573, 0.417228, 0.019251}, - { -0.072003, -0.198577, -0.569901, 0.935016, 0.314889, 0.034155, 0.430543, 0.898514, -0.164523, -0.214377, -0.653906, 0.201249, -1.524915, 0.701587, -0.324459, -0.917747, 1.476484, 0.469838, -0.381519, -1.311817, 0.720365, -0.310191, 1.025053, 1.889874, -0.966916, -0.871145, -0.383549, 1.698432, -0.956719, -1.682718, 1.309966, -0.491572, -0.018925, -1.528414, -1.133854, 1.203479, -1.144830, -0.353264, -0.932797, -0.802824, -1.524664, 0.034604, 1.323310, -0.947217, 0.987849, 0.756220, -0.057331, -0.199653, -1.039496, 0.408915, 0.663561, -1.235246, -0.877334, -1.213858, -0.555124, 0.169166, 0.415630, 0.262026, 1.884413, -1.458849, -0.292172, 0.790321, 1.437780, 0.489940}, - { 1.181251, -0.222410, -0.539658, 1.178497, -0.118368, 0.197939, -0.060905, -1.908541, -1.067447, -0.342585, 2.388675, -0.280412, 1.539183, 0.566500, 0.411963, 0.188143, 1.485968, -1.613623, 0.613969, -1.523564, 0.413067, -0.666758, -0.972755, 0.970277, 0.681646, 0.277529, 1.423990, -0.392149, 0.430833, -0.371182, 1.011777, -0.384506, -1.010383, 0.828187, 1.044202, 0.477430, 0.180531, 0.352829, -0.393196, 0.816648, 0.551559, 0.998243, 0.261241, 0.620633, 0.858043, -0.634724, 1.524376, -1.243713, 1.891966, 0.661525, 0.833298, 1.810750, 0.947274, -0.728384, -1.603718, -0.813418, 1.071318, -0.801694, -0.168650, 0.474758, 0.241127, 0.903248, 0.334180, 0.991895}, - { -1.314739, 0.998850, -0.519051, -2.067554, 1.896067, 0.501201, 0.556987, 0.641588, 0.272504, -0.742982, -0.470703, 1.240292, 1.259373, 0.565328, -0.720676, 0.004026, 0.600226, 0.090100, 0.011061, 0.369402, 0.011070, 0.233415, -0.282847, -0.903427, -0.816539, -0.871172, -2.226825, -1.740848, -0.339944, 0.215897, 0.323387, -0.254469, -0.515725, 0.073948, 0.563910, -0.653186, -0.306754, -0.546975, 1.372907, -0.970252, -0.487223, -0.078836, -1.081625, 1.588108, 1.202025, -2.122401, -0.237531, -0.685333, 0.173563, -0.576237, -0.297172, -1.762223, 0.460683, -1.041090, 0.097664, 0.414681, -0.378730, -0.441698, -0.569381, 1.072555, -1.684300, 0.737147, 0.341000, 0.049181}, - { -1.632741, 0.077021, -0.530017, -0.163073, -1.158130, 2.668592, -0.433849, 0.091581, 0.232981, -0.300411, 0.835452, -0.168550, 0.713216, 0.851907, -1.087314, 0.900005, -0.786708, -0.618744, 0.001694, -3.176547, 0.126415, 0.362694, 0.369459, 0.931487, -1.290275, -0.717392, -0.335578, 0.703348, 0.756063, 0.260056, 0.778826, -0.129166, 0.101717, -0.342590, -0.295437, 0.198471, -1.717762, 0.015128, -0.576792, 0.512532, 0.672616, 1.389580, -0.476444, 0.404700, -0.532910, -1.795952, 0.241228, 1.383689, -1.515232, 0.271979, -1.543068, -0.150854, -1.174402, 0.882491, 0.149071, -0.917308, -0.689293, -0.382830, -1.111705, -1.484126, -0.148355, -0.445174, -0.362349, -2.037557} -} -}); - -#endif /* EXPORT_PARAMETERS_FC1_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC2.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC2.hpp deleted file mode 100644 index a2b18e037..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/FC2.hpp +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef EXPORT_ATTRIBUTES_FC2_H -#define EXPORT_ATTRIBUTES_FC2_H - -#define _FC2_IN_CHANNELS 32 -#define _FC2_OUT_CHANNELS 16 - -#endif /* EXPORT_ATTRIBUTES_FC2_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC2_b.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC2_b.hpp deleted file mode 100644 index 6a2087cc8..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/FC2_b.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef EXPORT_PARAMETERS_FC2_B_H -#define EXPORT_PARAMETERS_FC2_B_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> FC2_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 16> { -{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } -}); - -#endif /* EXPORT_PARAMETERS_FC2_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/FC2_w.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/FC2_w.hpp deleted file mode 100644 index 07e90c19f..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/FC2_w.hpp +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef EXPORT_PARAMETERS_FC2_W_H -#define EXPORT_PARAMETERS_FC2_W_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> FC2_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 16, 32> { -{ - { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164}, - { 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, - { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245}, - { 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, - { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219}, - { -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365}, - { 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620}, - { -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814}, - { -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116}, - { -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061}, - { 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394}, - { -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534}, - { 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535}, - { -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270}, - { -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022}, - { -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879} -} -}); - -#endif /* EXPORT_PARAMETERS_FC2_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode.hpp deleted file mode 100644 index d6da9ad65..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode.hpp +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef EXPORT_ATTRIBUTES_INPUTNODE_H -#define EXPORT_ATTRIBUTES_INPUTNODE_H - -#define _INPUTNODE_IN_CHANNELS 3072 -#define _INPUTNODE_OUT_CHANNELS 64 - -#endif /* EXPORT_ATTRIBUTES_INPUTNODE_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_b.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_b.hpp deleted file mode 100644 index e5b492ced..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_b.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef EXPORT_PARAMETERS_INPUTNODE_B_H -#define EXPORT_PARAMETERS_INPUTNODE_B_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> InputNode_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 64> { -{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } -}); - -#endif /* EXPORT_PARAMETERS_INPUTNODE_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_w.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_w.hpp deleted file mode 100644 index e18c700f3..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/InputNode_w.hpp +++ /dev/null @@ -1,76 +0,0 @@ -#ifndef EXPORT_PARAMETERS_INPUTNODE_W_H -#define EXPORT_PARAMETERS_INPUTNODE_W_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> InputNode_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 64, 3072> { -{ - { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630, 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164, 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481, -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088, 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876, -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245, 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104, 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640, 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258, 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219, -0.074684, 0.517420, 0.822540, -0.806932, -1.878511, 1.376901, 0.885884, 0.205885, 1.911872, 0.994352, 0.333423, -0.235806, 0.118838, 0.298818, -1.919890, -1.998208, -0.675585, 0.351135, 1.007749, -0.764474, -0.353912, 1.259435, 1.632392, -0.962974, -0.333548, 0.508051, -1.737841, 0.756173, 0.773738, 1.683930, 0.891265, 1.257365, 3.290453, 0.131232, -1.197623, 1.640302, 1.893887, -1.213801, -0.566927, 2.399971, -0.023922, -0.385091, 1.075666, -0.987804, -1.268808, 0.958589, -0.831414, -1.497647, 1.394570, 0.660516, 1.004347, -0.189036, -0.551724, -0.273026, -1.915356, 0.918154, 1.239096, 2.173063, -0.471864, 0.075200, 0.219959, 0.071856, -1.324687, 1.125620, -1.446752, -0.355964, -0.771692, -0.253765, 0.305448, -0.040472, -0.303667, 0.496598, 0.166871, 1.380103, -0.460419, 1.802712, -0.227340, 0.645719, -0.260015, 1.811526, 0.030870, -1.252964, -1.116601, 0.387312, 0.304548, -0.410552, -0.370345, 1.284537, -1.094192, 0.210010, -0.435837, -0.086664, -0.939733, 1.464221, -2.246507, -1.305814, -0.343046, 0.934440, -0.407202, 0.538086, 0.508696, -0.160380, 0.915117, 0.841876, -0.491778, -1.005536, -1.556092, 3.132215, -0.157488, -0.435899, -0.526646, -0.492951, -0.178850, 1.437187, 0.431647, -0.318141, 0.467601, -0.162825, 0.172871, 0.683610, 0.761590, 1.610670, 0.000099, -1.264223, -0.514314, 0.138954, 1.719847, 0.667116, -0.114943, 0.214447, 1.561770, 0.993847, 1.111690, 0.108742, 1.493580, 0.535343, 0.536800, -1.861050, -1.325188, -0.468956, -0.647440, -0.676830, -0.552033, -0.615934, 0.100644, 0.642819, -0.331824, 1.659784, 0.494534, -0.010034, 0.719802, -1.086754, -0.329526, -0.195189, -0.517583, -2.790990, 0.723132, -0.357204, 1.441811, -1.498061, 0.173715, -1.309633, 0.079681, -0.141415, -0.239062, 2.003672, 1.939710, -0.507194, 2.307158, 0.788397, 0.305586, 0.564596, -0.016464, 0.264668, -0.229135, -1.474782, 0.675856, 0.271192, -0.634547, -0.413979, 0.472989, 0.320269, 0.637677, -0.283788, 1.550799, -1.239665, -1.727076, 0.870026, 0.076169, 1.279255, -0.382890, 0.758394, -0.538186, -1.634862, 0.255247, 0.197426, 0.564027, -0.985715, -0.059292, 0.611965, -0.174257, 1.969163, 0.652647, -0.643047, 0.584285, 0.354684, -0.838576, -1.107516, -2.762548, 1.779932, -0.478304, -0.404031, 1.617414, -0.528613, 1.479488, -1.272791, -1.476098, -0.188575, -0.836532, -0.593289, 1.287740, 0.363338, 0.402366, 0.592534, 0.345934, -0.756709, -1.787833, 0.139265, -0.178709, -0.202259, 0.986850, 1.046625, -0.821654, -2.317597, 1.188656, 0.228428, -0.517519, -0.555370, -0.211663, -0.224368, -1.070402, -0.034077, 1.336466, -0.868913, 0.772799, 0.830154, -0.368010, 0.224619, -0.138387, 0.197733, 0.176451, -0.294902, 1.683438, 0.379219, -0.551522, 0.102535, -1.031030, -1.005712, 0.770131, -1.125984, 0.037455, -0.325468, 0.960495, 0.490046, 0.979800, -1.050940, -1.244709, 0.337833, 0.020990, -0.738510, 2.649734, -0.473392, 0.269506, 0.952992, -1.138954, -0.654586, -0.053048, 0.546171, 0.444569, -0.314824, -0.011242, 0.653286, 0.116932, 0.239427, -0.066155, 1.430139, 1.428078, 0.893270, -0.005348, 1.076221, 0.801042, -0.481205, -0.360837, 0.411937, 1.322597, 0.570394, 0.903369, -0.380902, 0.404875, -0.508008, 1.637640, -0.139692, -0.180168, -0.000948, -1.345533, 0.814092, -1.205097, -1.769323, -0.212703, -1.076019, -0.556150, 0.886167, -0.397926, -1.248311, -1.049718, 0.031322, -0.198826, -0.851717, 0.207144, 1.084022, -0.038660, 0.116903, -0.182566, 0.837475, -0.635792, 1.238106, -1.001928, -1.663429, -0.235781, -0.498405, 1.396894, -0.470803, -0.389693, -0.819836, 0.019702, -0.287629, -0.744428, 1.030755, -0.153096, -0.258136, 0.265379, -0.613886, 1.024098, 0.567591, -0.412133, -1.546639, 1.522788, -0.479909, 1.248974, 0.217390, -0.332779, 0.991879, -0.483628, 0.272165, -0.921403, -0.867794, 0.253838, -1.017495, -0.035984, -0.680159, -0.116601, -1.917364, -0.293144, -1.680917, 1.482456, -2.643867, -0.589814, 1.864317, 0.810974, 0.449891, -0.523071, -1.701221, 1.129147, -0.414783, 0.039269, -1.340263, 0.165569, -0.458461, -0.978111, 0.656720, 0.531054, 0.426182, 0.701776, 1.073439, -0.749516, -0.560629, -0.634230, -0.186059, -0.122258, 0.021843, 0.543000, -0.314648, -0.946935, -0.333649, 0.596433, -0.647178, 0.790704, -0.074659, -0.043766, 1.429068, -0.058342, -0.809171, 1.030495, 0.050716, -0.116684, -1.944978, -1.793352, 1.627739, -0.369663, 2.177690, 1.651580, -2.036985, -1.240169, 0.036523, -1.150051, 0.116815, 1.104999, 1.341058, 0.309679, -1.755930, -0.378678, -0.806254, -1.054984, -0.320765, -0.266736, -0.225193, 0.169121, 0.865690, -0.885389, 0.095123, 0.870764, -0.091391, 1.401193, -0.193103, 0.621627, 0.369497, -0.816600, -0.202823, -0.159167, 0.872668, -0.273115, 1.938011, 0.684697, 1.704309, 1.204039, -0.959246, 1.359703, 0.799502, 0.776908, -0.756584, -0.640936, 0.990894, 0.256858, -3.137142, 0.545601, 0.109409, 0.181050, 1.120293, -0.914028, -0.097133, 0.133803, 0.496900, 1.070259, 0.223329, -0.368285, 0.345049, 1.432678, 1.382178, 0.558631, -0.126281, -1.479764, -2.136274, 0.879013, -0.931591, 0.460165, 0.663047, -0.782686, -2.017072, -1.219782, -1.615018, 0.023152, -0.351595, 0.384548, -0.350487, 0.861079, -2.343885, 0.206722, 0.492284, 0.227113, -0.832889, -0.669958, -0.069160, -0.609277, -0.255370, -0.752728, -0.765413, 1.094080, 0.368862, 0.024828, -0.518220, 0.009554, -0.353964, 1.897386, -0.901690, 0.077136, -0.747170, 0.407625, -1.418082, 0.823818, -0.750032, -0.318462, -0.949275, -0.005721, -0.311060, -1.375086, 0.638032, -0.070481, 0.265967, -1.677426, -0.803207, 0.331928, -0.337461, 1.145064, 0.517522, 2.248859, -0.155701, -0.185320, -0.430223, 0.633950, 0.594881, -0.373053, -0.183769, 0.781241, -1.100458, -1.127900, 1.536747, 0.694964, -1.317671, 0.552416, 0.214635, 1.172117, 0.057319, -0.083945, -2.744316, -2.083668, 1.579024, 0.846874, -0.559092, 1.025974, 0.889658, -1.337327, -2.154229, 0.283269, -0.084246, -0.448027, 1.076064, -0.171827, 0.712631, -0.291771, -1.532148, 0.525627, -0.182083, -0.584263, 0.758026, -0.011926, 0.048968, -0.683809, -0.367121, -0.808110, -0.745193, -0.025946, -0.974672, -0.667272, -1.253634, -0.933169, 1.543063, -0.558194, 0.333470, 0.300683, 0.875321, -0.650058, -0.402874, -1.479110, -1.422508, -1.490082, -1.066710, 0.818719, 1.130872, 0.726068, -0.644154, 0.015556, -1.297712, -1.807793, -0.449898, 0.678534, -0.343751, -0.438977, 1.005177, 0.789181, -0.868195, 2.963583, 0.127910, 0.762864, 2.106842, 0.059183, 1.106624, -0.173846, 0.506085, -0.803235, 0.456489, 1.792648, -0.413096, 0.174623, -0.670578, 1.004736, -1.211046, -0.177172, -1.173558, 1.704121, -0.717132, -0.315196, -0.955144, -0.844640, 0.219873, 0.439474, -0.111900, 0.382651, 0.037409, -0.715340, -0.458230, -1.518173, 0.580286, -0.180067, 0.251145, 1.541854, -1.799514, 0.415876, 0.045524, -0.935430, -0.941019, 0.476378, -0.045153, -0.346679, -0.071810, 0.468796, -0.303942, 1.868755, 0.052552, -1.115326, -0.951675, 0.823079, -0.264655, -0.460295, 0.024275, 0.681858, 1.360035, -1.231762, -1.203111, -0.181563, 0.198488, -0.813774, -1.178844, 0.972454, -0.134574, 0.030472, -0.967580, 0.152757, -2.177683, -0.678582, 1.439619, 0.329668, 1.977801, 0.547752, 0.150742, 0.597613, 0.320251, 0.629068, -1.048041, 1.226918, -1.397015, 0.530945, 1.934914, -0.360577, 0.601554, -1.164239, 0.144575, 0.725861, -0.442685, 0.083200, -0.289393, -1.016526, 1.067162, -0.018115, -0.224101, -0.241866, -0.064766, 2.522637, 1.326687, -0.214645, 0.652540, 0.005862, -0.888118, -1.111310, -0.301777, -0.060108, -0.383830, 0.692486, -0.268334, 0.663172, -1.008340, -1.682795, 0.617490, 0.376519, 1.881652, 1.198976, 0.919806, -0.134369, 0.542711, -0.636402, 2.075232, 0.367750, 0.078205, 1.175514, 0.312489, -0.545571, 1.806641, 0.572128, 0.969595, 2.196302, 0.144951, -0.069890, -0.024643, 0.096254, -0.913089, 0.207929, -0.024540, -2.364928, 0.403653, 0.957075, 0.605313, -0.084031, -0.881650, 0.617897, -0.514700, 1.021071, -2.341326, 0.867535, 0.276200, -1.536776, 1.063557, -0.265884, -1.019689, 0.034769, 0.374245, 0.308205, 0.941602, -2.383936, 0.053763, 0.080351, 0.805516, -1.034883, 0.112969, 0.225962, 0.529344, -0.533202, 0.826293, -0.530990, -0.941042, -1.409687, -0.616595, 0.083008, 0.597792, 0.564483, -0.277788, 0.275536, -1.167859, 0.234086, 0.923334, -1.550176, -0.317221, 0.167047, 0.842336, -0.197037, -0.189047, -1.258022, 1.233136, 2.043196, -0.972316, -0.211159, -0.644789, 0.550668, 0.263230, 0.510620, -0.340782, -0.076202, -0.532805, 0.028492, -0.711909, -0.041329, -0.716095, -0.438745, 1.613258, 1.203239, 0.964917, 2.008562, 2.526586, -1.076117, -1.172786, 1.202410, -1.702984, 2.141656, -0.421657, 0.506291, -1.005197, -1.210642, -1.006717, -1.024502, 0.616641, -1.584712, 0.891012, -2.477347, -0.572187, 0.864046, -1.402610, 0.412339, -0.276108, -2.752150, 0.592655, 0.632535, -0.195088, 2.281385, -1.077261, -0.790374, -1.883068, 0.079064, 0.400938, -0.359422, -0.905535, 0.275971, -0.708639, 1.268833, -1.304649, 1.220814, 0.345417, -1.035277, 1.694809, -0.453738, -0.100811, -0.711486, -2.032043, 0.247771, 0.125351, 1.414129, 1.130891, -0.594405, 0.797592, 0.053162, 0.395181, -0.421787, 0.288705, -1.071319, 0.932462, -0.609468, -0.239886, 0.426226, -0.566084, -0.555236, -0.395055, -1.607937, -0.454888, 1.086999, 0.064433, -0.630807, 0.537331, -0.079178, 0.544384, -0.345341, -0.755680, 0.194209, -0.915100, 0.664959, 0.136650, 0.145284, 0.658129, 1.353991, -0.482921, -1.267343, -0.525734, 0.427054, -0.567577, -0.977804, 0.581563, 0.731378, 0.287522, 2.394391, -0.044662, -1.842992, 1.271125, -0.347839, -0.222826, -0.068077, -0.131304, -2.144952, -2.350498, -0.053892, -1.022586, 0.598608, -3.063631, -0.889890, -0.169715, -0.043919, -1.031522, -0.314142, -1.721556, -1.423945, -0.517471, -0.617123, -0.140159, -0.793929, 0.361729, 0.918396, -0.399743, -0.736005, 1.568120, -1.300957, 1.526744, -0.297900, -0.062842, -1.966952, -1.071676, 1.570217, 1.112780, 0.185776, -0.637180, 1.313317, 1.172860, -0.915400, 1.177792, -1.942183, 0.390201, 1.388212, -0.477988, -1.579742, -0.683059, 1.172021, -0.980434, 0.059954, -0.457660, -0.634426, 1.500102, 0.078013, -0.986448, -0.762938, 0.195547, 1.015367, 1.245432, -0.282828, 0.081046, 0.307498, -0.669810, 0.721569, 0.057625, 0.501820, -0.104848, 1.437235, 0.117299, -0.523084, -1.118009, 1.560399, 0.104631, 0.489168, 0.760339, 1.449355, -1.377321, -0.715611, -1.029579, 0.073359, -0.825450, -0.229307, -0.421830, -0.666367, -0.440156, 0.023840, -0.751700, -0.361373, 0.986500, 0.851569, 0.123599, 0.390027, 0.277061, 0.940906, -0.103239, -0.445279, -0.919782, 0.639714, -0.902529, -1.874779, -1.719761, -1.893759, 0.269624, -0.578221, -0.202651, -0.392257, 1.412725, -0.629082, 1.413975, -0.064950, -0.204246, 0.975600, -0.282429, 0.352274, 0.795323, -0.966890, 0.600321, 0.459449, 1.495051, -0.693799, -2.130963, 2.241615, 0.016742, -1.380529, -0.693764, 0.788271, -2.084727, -0.605345, -0.393199, -1.431592, -0.019263, 0.154902, 2.003049, -0.505429, -0.279594, 1.178694, 0.081671, -0.253501, -0.928567, -0.470637, -0.599760, 0.105334, -0.558767, 0.306641, -1.247424, -1.136135, 0.388699, 0.240216, -0.539604, 0.748712, 1.514203, -0.053900, 0.146477, 1.415987, 0.035719, 0.852351, -0.505780, -2.203605, 1.287532, -0.138672, 0.707916, 0.732445, 0.034828, 0.916650, -0.960419, -1.104703, -1.910655, 0.738577, -1.784924, 0.377324, 0.942214, -2.147115, -0.657372, 1.937143, -0.640029, 0.813896, -1.856751, 0.293933, 0.407355, 0.828903, -0.258431, 0.651304, 1.024936, -1.113730, 0.727588, 0.244997, -1.608019, 0.678481, -0.704592, 0.512401, -0.693952, 0.200313, 0.382440, -0.155662, -1.873614, -1.368903, -0.209850, -1.454814, -0.029855, 0.192369, 1.508715, -0.212503, 1.176330, -1.738381, -0.637968, 0.576972, 0.808788, 0.434982, -0.529857, -1.056989, -0.818170, -1.858517, -1.504275, -1.812055, 1.817686, -0.827064, -0.970820, 0.661065, 0.146447, 0.291060, -0.408877, 0.068819, 0.295079, 0.663102, -0.166278, 0.770570, -1.142846, -0.806847, -0.730912, -0.447671, -0.015643, 0.619293, 0.202428, 1.665242, -0.790555, 1.475059, -0.881476, 0.390759, 1.258389, 0.324598, 1.822245, -0.058715, 0.600523, 1.136708, -1.679807, 0.288505, 0.744363, -0.611639, 1.300585, 1.380471, -1.169925, -0.777400, 2.193714, -0.475082, -0.242079, -0.336258, 0.471824, -0.658170, -1.063402, 0.417935, -1.189927, -1.703003, -1.247581, 0.862522, 0.934985, 1.998402, 0.301988, -1.167236, -0.040485, -0.692792, -0.118653, -0.085074, -0.157554, -0.597173, -1.148901, 0.479436, -1.334729, 0.435822, 0.728494, -0.447077, 0.395057, -0.449488, -0.970525, 1.506991, 0.701021, 0.331930, -0.781135, 0.695741, 0.447304, 0.814847, 2.051350, -0.694026, -0.032321, 0.024414, -0.642007, 1.006013, -0.816746, -1.214119, -2.295536, 0.402007, -0.404793, 0.312364, -0.727692, 0.190903, 1.319342, 2.484523, -0.751330, 0.517379, 1.607649, -1.566784, -1.809135, 1.457683, -0.908496, -2.220334, 0.243166, 0.595011, 0.379217, 1.088163, 1.147452, 0.633369, 0.346038, 0.347236, -0.325225, 1.888308, -3.072945, 1.297680, -1.506335, 0.205380, 0.664307, 0.979495, -1.097883, -0.745897, -0.303797, -0.563891, 2.451149, 0.088773, 0.480402, -0.445841, -0.637341, -0.792031, -0.643933, 0.330410, 0.895335, 1.612401, -0.050137, -0.272140, 0.770629, 0.586540, -0.882999, 2.427387, 0.907571, 1.020693, -0.572768, -1.022579, -0.633937, 1.401881, -0.251258, -1.633224, -0.467908, -1.371026, -0.969493, -0.825524, 0.605472, 0.183619, -1.847969, -1.878521, 1.177194, -0.710708, 0.769348, 0.636449, 1.019374, 1.298586, -1.192946, 0.573427, 0.357284, -0.348353, 0.929739, -0.583619, -0.075304, -2.041761, -0.158822, -0.179691, -3.007082, -1.240545, 0.256757, -0.732539, 0.213922, -3.068860, -0.118184, 1.317333, 0.639406, -1.638411, -0.856709, 0.936945, -0.200855, 0.592933, 0.934265, -0.506393, -2.097188, -0.686307, -0.841321, 0.113067, -0.659559, -0.225567, 0.278005, 0.185259, 0.321431, 1.222981, -1.271038, 0.553208, -0.798184, 0.259451, 0.417953, -0.004145, -0.694951, -0.227405, -0.808163, 0.415147, 0.657638, 1.917061, 1.630171, -1.438121, -0.981062, 0.436875, 1.518751, 0.353086, -0.147144, 0.741269, 1.950936, 2.739364, 0.733956, -0.655084, -0.021943, 2.113906, 1.009407, 0.544371, 0.768170, -0.927640, 0.817491, 0.744725, 0.843117, -0.691860, -0.747689, 0.265487, 0.741109, -0.117990, -0.336553, 1.219656, -0.894997, 0.185234, -0.876471, 1.620419, -0.154121, -0.562478, 0.724263, 0.392547, -0.183256, -0.952905, -0.482131, 0.056012, 1.362304, -0.669158, -1.197868, 1.035019, 0.921444, 0.293030, -0.064290, 0.039056, -1.971230, -0.748615, 1.521501, -1.063615, -1.614336, 0.859108, 0.664434, 0.582681, 0.891293, -0.682233, -1.063711, 1.022504, -1.064391, -0.238194, -1.287860, -1.136086, -0.599646, 2.083999, -0.251891, 1.635609, 0.142861, 0.311812, 1.059390, -0.011250, 0.999566, -0.376215, -0.275687, 1.269079, 0.547754, -0.021728, -1.003898, 1.155573, -0.133892, -0.820203, -0.399042, 0.011735, -0.004630, -1.624290, -3.214955, -0.302276, 0.162449, -0.165589, -0.324434, -0.858639, 1.214711, -0.088071, 0.692165, -2.298264, 0.109115, -0.152067, -1.400125, -0.798508, 0.065675, 0.840315, -0.535997, 0.989161, -0.666881, 0.422332, 2.565203, -0.348443, 0.292504, 0.955866, 1.009752, 2.071980, 1.349440, 0.222731, 0.470191, -2.257708, -0.124012, 0.316573, 0.914732, -0.237629, 1.217734, -0.413807, -1.373763, -0.449355, 1.434391, -0.433576, -0.174979, 0.556502, -0.430827, 1.936127, 0.067958, -0.865320, 0.760247, -0.580725, 0.018868, -0.033391, 0.721388, 0.462043, -1.425273, 0.678470, 0.302006, 0.756002, 0.167077, 0.766390, -0.043001, 0.394925, 1.800999, 0.090170, -0.554982, -0.095026, 0.112222, -1.022792, 0.053468, -0.428305, -0.314164, 1.135005, 2.346780, 0.916245, -0.659896, -0.498403, -0.046144, -0.553811, -0.108004, 0.122168, -0.002586, 0.768014, -0.692886, -1.433461, 0.473015, -0.064335, 1.647390, 0.779012, -0.843045, 1.077922, 0.382245, -1.250200, 0.643778, 0.443442, 0.904600, 1.065371, -0.027124, -0.566289, -0.665816, -0.354307, -0.877381, -1.659182, -0.191498, 0.162333, 0.498699, -0.395470, 1.743060, -1.321712, -0.936546, 0.274050, -0.159812, -0.355672, -1.676516, -0.600875, 0.034010, 0.114026, -1.140778, -0.492318, -1.908774, -1.484320, 1.081611, -0.934511, 1.064218, -1.353714, -0.314849, -0.105485, 2.178031, -0.409103, 0.933178, -2.048981, -0.298461, -2.592589, -0.488420, 0.835982, -1.151600, -0.189469, 1.288512, -0.699727, -0.624615, 0.460098, -0.202874, -0.346232, 0.267220, -0.158052, 1.825733, -0.869135, 0.123580, -0.991966, 0.750955, 1.741264, -0.764096, 0.010258, -0.192117, 0.027155, -0.265093, 1.277057, 0.043134, 0.090176, 0.277584, 0.372338, 0.948639, -0.836552, -0.589544, -0.745397, 0.382427, -0.232827, -0.892618, 0.882999, -0.799134, 0.054087, 0.408222, 1.345659, 0.814261, -1.389691, 0.093555, -1.494835, -1.735067, -0.009094, 1.548697, -0.411162, -0.575812, 0.405427, 0.855615, 0.896117, 0.274727, -0.114478, -0.488888, 0.450323, 0.212904, -0.196283, 0.326608, -1.224662, 0.087978, 1.183714, -0.601534, -0.298352, -0.654938, 0.161118, 1.607924, -0.909086, 0.273687, -2.044743, 0.746246, -1.040757, -0.908652, -0.731929, -0.509273, 0.037672, 0.032804, 0.348324, 0.257188, 0.500905, 0.020275, 0.119230, -0.704439, -2.530083, -1.678277, -0.676852, -2.791788, 0.164539, -0.123641, -1.377383, -0.361288, -1.299663, -1.483092, 0.434668, -1.035801, 1.730346, -0.469573, 0.417228, 0.019251, -0.072003, -0.198577, -0.569901, 0.935016, 0.314889, 0.034155, 0.430543, 0.898514, -0.164523, -0.214377, -0.653906, 0.201249, -1.524915, 0.701587, -0.324459, -0.917747, 1.476484, 0.469838, -0.381519, -1.311817, 0.720365, -0.310191, 1.025053, 1.889874, -0.966916, -0.871145, -0.383549, 1.698432, -0.956719, -1.682718, 1.309966, -0.491572, -0.018925, -1.528414, -1.133854, 1.203479, -1.144830, -0.353264, -0.932797, -0.802824, -1.524664, 0.034604, 1.323310, -0.947217, 0.987849, 0.756220, -0.057331, -0.199653, -1.039496, 0.408915, 0.663561, -1.235246, -0.877334, -1.213858, -0.555124, 0.169166, 0.415630, 0.262026, 1.884413, -1.458849, -0.292172, 0.790321, 1.437780, 0.489940, 1.181251, -0.222410, -0.539658, 1.178497, -0.118368, 0.197939, -0.060905, -1.908541, -1.067447, -0.342585, 2.388675, -0.280412, 1.539183, 0.566500, 0.411963, 0.188143, 1.485968, -1.613623, 0.613969, -1.523564, 0.413067, -0.666758, -0.972755, 0.970277, 0.681646, 0.277529, 1.423990, -0.392149, 0.430833, -0.371182, 1.011777, -0.384506, -1.010383, 0.828187, 1.044202, 0.477430, 0.180531, 0.352829, -0.393196, 0.816648, 0.551559, 0.998243, 0.261241, 0.620633, 0.858043, -0.634724, 1.524376, -1.243713, 1.891966, 0.661525, 0.833298, 1.810750, 0.947274, -0.728384, -1.603718, -0.813418, 1.071318, -0.801694, -0.168650, 0.474758, 0.241127, 0.903248, 0.334180, 0.991895, -1.314739, 0.998850, -0.519051, -2.067554, 1.896067, 0.501201, 0.556987, 0.641588, 0.272504, -0.742982, -0.470703, 1.240292, 1.259373, 0.565328, -0.720676, 0.004026, 0.600226, 0.090100, 0.011061, 0.369402, 0.011070, 0.233415, -0.282847, -0.903427, -0.816539, -0.871172, -2.226825, -1.740848, -0.339944, 0.215897, 0.323387, -0.254469, -0.515725, 0.073948, 0.563910, -0.653186, -0.306754, -0.546975, 1.372907, -0.970252, -0.487223, -0.078836, -1.081625, 1.588108, 1.202025, -2.122401, -0.237531, -0.685333, 0.173563, -0.576237, -0.297172, -1.762223, 0.460683, -1.041090, 0.097664, 0.414681, -0.378730, -0.441698, -0.569381, 1.072555, -1.684300, 0.737147, 0.341000, 0.049181, -1.632741, 0.077021, -0.530017, -0.163073, -1.158130, 2.668592, -0.433849, 0.091581, 0.232981, -0.300411, 0.835452, -0.168550, 0.713216, 0.851907, -1.087314, 0.900005, -0.786708, -0.618744, 0.001694, -3.176547, 0.126415, 0.362694, 0.369459, 0.931487, -1.290275, -0.717392, -0.335578, 0.703348, 0.756063, 0.260056, 0.778826, -0.129166, 0.101717, -0.342590, -0.295437, 0.198471, -1.717762, 0.015128, -0.576792, 0.512532, 0.672616, 1.389580, -0.476444, 0.404700, -0.532910, -1.795952, 0.241228, 1.383689, -1.515232, 0.271979, -1.543068, -0.150854, -1.174402, 0.882491, 0.149071, -0.917308, -0.689293, -0.382830, -1.111705, -1.484126, -0.148355, -0.445174, -0.362349, -2.037557, -0.949282, -1.611513, -0.153610, 0.424405, -0.395808, 1.023179, 0.975042, -0.311931, 0.324270, 0.113626, 0.309115, -0.332104, -0.238800, -0.368156, 0.400204, 0.779575, -1.039874, -0.180268, 0.655636, 0.785250, -1.127972, 0.777665, 0.016652, 0.727648, -1.386528, 0.678570, 0.272134, -0.734405, 0.346691, 0.710352, 0.413029, 1.777285, 0.155423, -0.484363, 1.320690, -1.946193, -0.524754, -0.771088, -0.524043, 0.604248, -0.816410, 0.472590, 0.311729, 0.459517, 0.275026, 1.501116, 0.012700, 0.194177, -1.557604, 1.287073, 0.858426, -0.366481, -0.492214, 0.540634, -0.216906, 1.056813, 0.108197, 0.326910, 0.087416, -0.722098, -0.256490, 0.602468, 0.997557, -0.674882, -1.212450, 0.208286, 0.332696, -2.512025, -1.130804, 0.673082, -1.404227, -0.519971, 0.151259, 1.565283, -0.179690, 3.395982, 0.026674, -1.768538, -0.786760, -0.626921, -0.460870, 0.031497, -0.499570, 0.244112, -0.106123, 0.594928, 0.170613, 1.934060, 0.623652, 1.197117, -0.110753, -1.273471, 1.488819, -1.185202, 0.929832, -0.626908, 0.888896, -1.537817, 1.271557, -0.716535, -0.464746, 1.185983, 1.854573, 1.425654, -0.058017, -0.799256, 0.199133, -0.372743, -0.782147, -0.250217, -0.433804, 0.302341, 0.958295, 0.577269, -0.597675, 0.314995, 1.007424, -1.008409, 1.329026, 2.672855, 0.998121, 0.112067, 0.621820, 0.410118, 0.875217, -0.653587, 0.630092, 0.656486, 0.819713, 1.881184, 1.612515, 0.570351, -0.235872, 1.513090, 0.096251, 0.057704, -2.665689, 2.195297, -0.780487, -0.533711, -0.066655, -0.448292, -0.190116, 1.032401, 1.406327, -2.502980, -3.354525, 0.273516, 1.866227, 0.377479, 0.603672, 2.100813, 0.560821, -2.054955, 0.294400, -0.702300, 0.245335, -1.990072, 1.331997, 0.240215, -1.157135, -0.986040, 0.094928, 0.310835, 1.343763, 0.611746, -1.530175, 0.958943, 0.312722, 0.799592, -0.721303, 1.173564, -0.672806, -1.797724, 1.004274, -0.386549, 1.453313, -0.063464, 0.013326, 0.878770, -0.071918, -0.329081, -1.047271, 0.103185, -1.203935, 1.063529, -1.318201, 0.814826, 0.313617, -0.437196, 0.199292, -1.691726, -0.373155, -0.320716, 0.369388, 0.154613, -0.500642, -0.215388, 0.843930, -0.794182, -0.562701, 1.475003, 1.817497, 0.291827, 0.101184, 0.643614, -1.082114, -0.320927, 0.268631, -0.829719, 1.740005, -1.009110, 0.260317, -0.119149, -3.099813, -0.484698, 0.170382, 2.142591, 0.884803, -0.084357, -0.333901, 0.542875, 0.408539, 0.191847, -2.333756, -0.190223, 0.353178, -0.478883, -1.652882, -1.062859, -0.973991, 0.706297, -0.987439, -1.111054, 0.016979, -0.965271, -0.126417, 0.185341, 1.020485, 0.927526, -0.687493, 0.186440, 0.258571, 1.418577, 0.272011, 1.191018, -1.985886, -0.178206, 0.025245, 0.853979, -0.219570, -0.115001, 1.075246, 0.332232, 0.646989, 0.038275, -1.700743, 0.274573, -1.093827, -0.999136, 0.973571, -0.102699, 0.525674, 0.577398, -0.752118, 1.026548, 1.114586, 1.369077, 0.584804, -0.621655, 1.168142, 0.804781, 0.343986, 1.096203, 1.070783, 1.806614, -1.190219, -0.198395, -0.963841, -1.604436, -1.206218, -0.090030, -1.204958, 0.051241, -0.064168, -1.143898, -0.845679, 0.557284, -0.452700, 0.498488, 0.110566, -0.650531, -0.372469, -1.809649, -0.047768, 0.590213, -1.239304, 1.075142, 0.102358, 0.349711, -1.567159, 2.841117, -1.355863, -0.675081, 1.360123, -1.135762, 0.580593, 0.215153, -1.305609, -0.741612, 0.289778, 0.528629, -0.038775, 0.165159, -0.281788, -0.230657, 0.741059, -1.011146, -1.999856, -0.688773, -0.393231, 0.423286, -0.524114, -1.335793, 0.485363, -0.006235, -0.169893, 0.060844, 0.587908, 0.591803, 1.300798, 0.207293, -0.011734, 0.396885, 0.493708, 0.094967, 0.129666, -0.461424, 0.391614, -1.299748, 1.165409, -0.333323, -0.674106, 0.604386, -1.632012, -0.666379, -0.449477, 1.772636, -0.359355, 0.276887, 0.825800, -0.419506, 1.212223, 0.669444, 0.077342, 2.958738, -0.544855, 0.346167, -0.758018, 0.907585, 0.426352, -0.546804, 1.497249, 0.320760, 1.542374, -0.436480, -0.165733, 0.735464, 0.376609, 0.727380, 1.467214, -0.045451, 0.828314, 0.557330, -0.704539, 1.426054, -0.143571, 1.415633, -1.029139, -0.685039, 3.734304, -0.399661, 0.973099, 1.363623, -0.412255, -0.825430, -0.093730, -0.072947, -2.813968, -1.236721, -0.114895, -1.899929, 0.377031, 0.503660, -0.724370, 0.146165, 1.325534, -1.177018, -0.133923, 0.132714, 0.598730, 1.007868, 0.204387, 0.205703, -1.167212, -2.288567, -0.344970, -0.482560, 0.473897, 0.614909, 1.272410, -1.425560, -1.296793, 1.514753, -0.035810, 1.974070, -2.745449, 2.172904, -1.414158, 2.639008, -0.768351, -1.916167, -0.194903, -0.439431, 1.382882, -1.183044, 1.417865, -0.319718, 0.439528, 2.562625, -0.835081, 1.387452, -1.035946, -1.466946, -1.200867, -0.906393, 0.036630, -0.374630, 0.871451, 0.833122, 1.253911, 0.567000, -0.537273, 1.376860, 0.760199, 0.838544, -0.320509, 1.032247, -0.955733, 1.140584, -0.409046, 0.075324, -1.463270, 0.494432, -0.210940, -1.047624, 0.827575, 1.219817, -0.300007, 0.269813, -1.480722, -1.200738, 0.135519, -1.401633, 0.244732, -0.801174, -0.847630, 0.914612, -1.664178, -0.329912, -0.222111, 0.668047, -1.233335, -0.340507, 0.017628, -1.942019, -0.024778, 0.153863, 0.374352, -1.316392, 1.012054, 1.741003, 1.305630, 0.891019, 0.507232, 0.600619, 1.130118, 0.891952, -1.102907, -0.258095, -0.862249, -2.186176, -1.528700, -1.588713, -1.748829, 1.373339, -0.400587, -0.378748, 0.338176, -0.666251, -0.590839, -0.664750, 0.961008, -0.424795, 2.517701, 0.161817, 1.337533, 0.683717, -0.877583, 0.743000, 0.295750, 0.458967, 0.521527, 2.021405, -0.682616, 1.116257, 0.790794, -1.669943, 0.658199, -1.551574, 2.174583, -2.009853, -1.172726, 1.735298, -0.597603, 0.248709, 1.080414, -2.354634, 0.674898, 0.030266, -1.799594, -2.267624, -0.204637, 0.157424, -0.226376, 1.397952, 0.599074, 1.006063, -0.147075, -0.676597, 0.430587, -0.950560, 0.621860, -0.730571, -0.411861, 0.024380, 1.017599, 1.600327, 0.673456, -0.044896, -0.793557, -0.825355, 0.581568, 0.436996, -2.016153, 0.972259, 1.955608, -0.487107, 0.776204, 0.179620, -0.871618, -0.153258, -0.775054, 2.840904, 1.402854, -0.415008, 1.684875, -1.129291, -0.732454, 0.383098, 0.392689, -1.109019, 0.519680, 1.383790, 0.847850, -0.589012, -0.036424, 1.344046, 1.363295, 1.761992, 0.377844, -1.436695, -1.970094, -1.180632, -0.809178, 1.797209, -0.149285, 0.132401, -0.713662, -1.275082, -1.197905, -0.748634, 0.237209, -1.333120, -2.745325, 0.713881, 0.232845, 0.831090, -0.296095, -0.867552, 0.485242, -0.616120, -1.055965, 0.820971, -0.939916, 0.157495, -0.177354, -2.702216, 0.453328, 1.668784, -0.167276, 0.238334, 0.286401, 1.521507, 0.465304, 0.746890, 1.281111, 0.059721, 1.142529, -0.279406, -0.601295, -1.321091, 0.383939, -0.168319, -1.025849, -1.156128, 1.139910, -1.696016, -0.286395, -1.129498, 0.473730, -0.407834, 0.158420, -1.677758, 0.256852, 0.911341, -0.564925, -1.183455, -0.526705, 0.483374, 0.300456, 1.321482, 0.093388, 0.770189, 0.450334, 0.274731, -0.973051, -0.801585, 0.306781, -0.287825, -1.279992, -0.071329, -0.236271, -0.894338, -0.507214, -1.932352, -1.815300, -0.761447, -0.059965, -0.388040, -1.562640, -0.924461, 0.056389, -0.907379, -0.577252, -0.008059, 0.336369, 1.204455, -0.359990, 0.330235, 1.671894, 1.162308, -0.792580, 0.901545, 0.270950, 0.401148, 0.307969, -0.746227, 0.023639, -0.225019, -0.274379, -1.332720, -0.787131, -0.559917, -0.376785, 0.093683, 0.256641, -2.401024, 0.135685, 1.889152, 0.411340, -0.997004, -1.039582, -1.404646, -0.049727, 1.022393, -0.051089, 0.572572, 0.660656, -0.977950, 0.032098, 1.482607, -0.801451, -1.397866, -0.157505, 0.200904, -1.141862, 0.692075, 0.212825, -0.726461, 1.048337, 1.177044, -1.594877, 0.436792, 1.541752, -0.130615, 1.517058, 1.184071, -2.406118, 0.688700, 1.849778, -0.274477, -0.802801, 0.945356, -0.556384, -0.892448, -0.354862, -1.172656, -1.878773, -1.678301, 0.555834, -1.905515, -0.186236, -0.680109, 0.143936, 0.139477, 0.623513, 1.273880, 0.851637, 0.090370, -0.037056, 0.132823, 0.770665, 0.972567, 0.880003, -0.766449, 1.112240, -1.871778, 0.387332, -0.286746, -0.159725, 0.114820, 0.390126, -0.495996, 0.443110, 0.990618, 0.958876, 0.454360, -0.153635, 1.360347, 0.392153, 0.108345, 0.565794, 0.381280, -0.268314, 0.033666, -0.953113, -0.862205, 2.132107, 0.768619, -0.382404, -1.818438, 0.090521, 0.379119, 0.424749, -1.435447, 0.571269, -1.929907, 2.909792, 0.121825, 0.076226, -0.391732, -1.454764, 0.306095, 0.375485, 0.765917, 0.665369, 0.192011, 0.396967, 0.389895, 0.404369, 0.093362, 0.454103, -0.011704, -0.021997, -0.312407, 1.611869, 1.352119, -0.519063, 0.566702, -0.644022, -1.989684, -0.459097, -0.640570, 0.490471, 0.395119, -0.138599, 0.161169, -0.907985, 0.125904, 0.023362, -0.950623, 1.168311, -0.054330, -0.629465, -1.824191, -1.735295, 0.091745, 0.686547, -0.356245, 0.020564, 1.221096, 1.105374, -1.289991, -0.635291, 0.144271, -1.884302, -0.829538, -0.211958, 0.785631, 0.023984, -1.370053, 0.818047, 0.463937, -0.461188, -0.398834, -0.945416, 1.490969, 0.065619, 1.524260, 2.470697, -0.218250, -1.038640, 0.320372, 0.679273, -0.994275, 0.987532, -0.059098, -0.255913, -0.359327, 0.437101, -1.957016, 2.023776, -0.777541, 0.544046, -0.634359, 0.202622, -2.537697, -0.880690, 0.262395, 0.022746, 0.670331, 0.382700, -0.550049, -0.225985, -0.658639, -0.845300, -0.038983, -1.177553, -0.153436, -1.193876, -0.664998, -2.020264, -2.023222, 0.324771, 0.407006, 0.097901, 0.239137, 2.563511, 0.554227, -0.773526, 2.304720, 0.661692, -0.240537, -0.570215, -1.067428, -1.571948, -1.857316, -2.437285, 0.541499, 0.110785, -0.521269, 1.400451, 0.523955, 0.587476, -0.483776, 0.441642, 0.510013, 0.337857, -0.129384, 0.182896, 0.464079, -0.293459, -1.041778, -0.409600, 0.818222, -0.446246, -0.276326, -1.245914, 1.087373, -0.799157, 0.486454, -0.031705, -1.009549, -0.654358, 0.085969, 0.855879, 0.598715, 0.624939, 0.736916, 0.979428, 0.997864, 0.307965, 0.286235, -0.849707, 1.034841, -1.771177, 0.096200, -0.576832, -0.052888, 0.459083, 0.048119, -1.041326, 1.098587, -0.644037, 0.174581, -0.173699, 0.959956, 0.925711, 0.603697, -0.198832, -0.475749, 1.521169, 0.004493, 0.952271, -0.742357, 0.296712, -0.146022, -1.299515, -0.769878, 0.790328, -1.721681, 0.724551, 0.132630, -1.088783, 0.753908, -0.644844, -0.408361, -0.307816, -0.953280, 1.544019, 0.468724, -0.086609, 0.769120, 2.025079, 0.452213, 0.269482, -0.521790, 0.184583, 1.194644, 2.081644, -0.790718, 0.092783, -0.234092, 1.369498, -0.629570, -0.023905, 1.019000, -0.330552, -0.373826, -0.539825, 0.928078, 0.010203, -0.041057, 0.529640, -0.048649, -1.111100, 0.514363, 1.565414, 1.223987, -0.003894, 0.686597, -0.402719, -1.054044, -0.717959, 0.476371, -0.934562, 0.268760, -0.264276, -0.225479, -1.619312, 0.203887, -0.164995, 0.509049, 0.579713, 0.193660, -0.168138, 1.828611, 2.593979, -0.172799, 1.210807, 0.301616, 0.094140, 1.051921, -0.351484, 0.228479, 0.759428, -1.627644, 0.256001, -1.516263, -0.324057, -0.895028, -0.698632, 1.030831}, - { 0.498600, -0.630364, -1.934851, 1.978740, 1.297702, -0.366390, 0.396950, -0.474528, 0.365379, -0.384767, 1.053095, -0.796208, 0.118948, -0.200839, -2.280172, -0.828167, -0.266828, -0.326641, -1.628112, 0.359216, -0.532697, 0.297303, 0.886123, 0.536909, -0.502440, -0.563721, -0.318734, 0.163537, 0.738058, -0.406623, -0.650341, 1.666817, 0.316455, 0.172766, 1.239138, -1.374082, 0.306644, -2.331464, 0.929375, -1.947381, 0.708352, 2.265958, 0.512173, -0.975597, -0.143397, 0.167462, -0.501506, 0.183967, 0.549654, -0.103497, -0.466289, 0.386910, -0.752389, 0.483060, -0.773666, -0.035798, -0.975706, 0.400843, 2.763508, 0.066222, -0.512881, 1.116536, 0.748304, -0.041251, -2.250712, 0.389888, 0.192828, -0.112889, -0.606110, 0.144230, -1.006171, -0.708104, 1.159180, 0.261429, -0.346232, -0.340050, -0.492282, -0.699225, -1.828571, -1.178086, 1.848835, -1.606901, -0.689881, -1.485548, -0.396604, -0.630256, -0.016148, -0.569914, 0.029803, -0.444130, 1.975413, -0.428265, -0.836023, 0.614451, 1.597898, -0.153646, -0.392575, -0.371178, -0.781775, -0.327638, -1.684671, 0.623956, 0.449735, 0.809483, -1.333013, -1.194109, -0.457923, -0.262625, 0.170568, -0.575261, 0.531945, 0.621200, -1.347152, -1.707142, 1.850222, 0.793587, 0.046903, 0.254743, -0.243458, -1.104970, -0.124515, 1.517588, 0.520323, 0.504096, 0.464529, 1.435610, -0.901409, 0.082204, 0.269690, -2.488350, 0.983689, 2.245436, 1.562155, -0.611086, -0.915243, 0.741547, 0.733133, -0.652388, 0.156579, 0.538230, -1.072847, 0.751287, 0.137664, -1.842280, -0.748604, 0.774597, 0.224907, -0.422822, -0.004653, -0.644180, -0.597642, -0.403732, -0.211798, 1.645996, 0.501405, 0.034623, -0.313537, -0.821324, -1.109246, -0.346518, -1.183343, -0.477077, 1.565661, 2.162567, 0.463808, 0.584915, -2.479038, -0.063887, -1.344777, -0.524891, -0.443048, -0.756877, 0.548129, 0.551165, 1.415485, -0.476431, 1.599387, 0.112393, -0.604599, 0.238660, 0.342879, -0.347186, -0.811838, -0.407510, -1.161911, 0.332919, -0.143734, -0.003872, 0.331830, 1.909795, -0.461120, 1.125101, -1.160524, -0.037597, 0.021065, 1.190991, -1.867031, 0.925425, 0.230105, 1.687341, 0.911828, 0.603531, 0.733339, -0.410497, 0.691719, 1.662063, 1.328381, -1.544447, 1.470204, -1.736659, -0.725563, -0.701414, -1.063086, -0.526010, -0.033144, 0.656060, -0.941699, -1.359735, -0.808648, -0.792566, 1.688558, 1.727384, 0.639528, -0.434445, 2.609233, -1.220485, 0.760613, -0.945875, 0.891968, -0.163294, -1.261257, 0.467184, 2.259121, 1.180275, -0.049289, 0.161012, 1.137014, 0.841523, -0.345265, 1.652922, -0.083475, 0.443857, -1.080949, -0.259055, -1.338761, -1.331164, 0.116265, -0.316040, 0.037631, -1.354656, 0.116217, -1.596441, 0.507521, -1.084110, -0.822434, 0.934781, -1.503291, 0.193167, 0.148730, 0.053301, -0.273592, 0.242086, -0.105414, -0.067733, 1.200888, -1.026494, 0.946440, 1.340357, -1.607273, -1.335891, -1.691025, -0.498899, 0.138916, -0.025839, 1.236057, -1.061116, -0.029666, 0.213228, 0.652542, 0.224519, 0.965390, -1.976661, 0.302520, -0.569860, 0.034934, 1.485381, 0.853022, 0.543659, -0.429706, -1.382558, -0.678502, 1.548906, 0.590621, -0.588423, 0.277246, -0.109895, 0.531839, 1.036831, -1.907868, 0.398361, -0.013880, -0.619297, -1.700102, -0.260177, -0.638563, 1.833697, 2.153433, 0.597775, 1.823454, 0.758914, -0.704724, -1.094395, -2.033701, 1.016783, -0.847457, 1.450119, -0.051495, 0.282050, 0.481209, -0.074188, 0.320197, 0.060417, -1.101019, -0.853074, 0.831001, -0.867891, -0.808916, -0.553487, -0.305298, -1.977615, 0.700406, 1.495796, -1.270270, 0.274327, 0.235669, 1.443637, 0.530089, 0.732876, 0.456071, 0.934206, 1.806708, -1.179482, -0.987963, -0.204915, -0.890853, 0.401321, 0.194023, -0.725235, -1.076367, 0.122571, 0.584353, -2.119283, 0.784755, 0.215461, 0.896773, 1.264879, -0.379028, -1.793941, -0.031743, 0.453713, -0.357120, 0.445265, -1.947280, 1.359870, -0.340473, 1.061085, -0.864080, 0.299490, -1.367263, 0.172260, 0.229675, -0.305726, -1.734245, 2.508320, 1.056079, 0.412452, -0.107441, 0.276507, -1.801411, 1.311701, 1.064675, 0.499074, -1.454018, 0.029158, 2.093279, -0.459083, 0.082882, 0.984361, 0.286337, -0.414942, 0.170918, -0.901985, 0.471364, 1.500944, 1.241543, -0.849459, 1.275193, 1.591275, 1.182822, 2.080917, -0.049049, -2.429894, 0.586602, 0.040475, -1.208794, 0.629368, -0.096037, 0.673191, -1.795674, 1.672328, 1.348753, 1.782115, 0.196033, -0.460948, 2.572930, 1.168051, -0.940551, -0.191133, -0.872147, -0.960073, 0.379402, -1.676307, -0.233545, 1.432444, -0.985572, 2.047824, 1.958467, -0.765291, -0.104188, 0.317891, -0.529768, -1.303015, 0.985363, 0.076202, -1.467007, 0.472621, -0.443107, -0.203267, -0.894790, -0.432701, 0.778032, -0.014877, -0.351363, -0.899447, 0.871419, -0.655006, -0.335003, -0.860796, 1.174089, -0.123632, 0.230959, 0.681467, -0.615895, 1.942438, -0.086646, -0.770541, -0.955458, -1.032896, 1.415443, -1.145293, 0.653932, 0.594903, -0.094169, 0.383691, -0.727563, -2.290730, 1.054179, 1.383306, 0.859246, 0.905080, 0.974548, 0.373188, 0.079963, -0.808236, 0.233153, -0.089717, -0.241619, 0.456371, -0.361749, 1.074772, 1.292462, -0.654600, -1.401936, 0.134937, 0.385610, 0.034410, 0.999438, 1.056893, 1.428685, 0.079046, 0.746196, 0.916434, -0.443332, -2.537755, 0.990478, -0.992442, -0.757811, -0.554858, 0.599378, -0.238326, 1.822607, 1.696197, -0.246041, 0.850187, -0.526443, -0.625866, 0.908694, -0.706092, 0.420556, 0.072978, 1.682558, -0.326236, 2.142879, -1.027462, 0.207436, 0.415592, -2.821089, -1.211530, -1.119491, 1.176020, -0.545044, 0.527122, 1.075734, 0.052872, 1.039222, -0.959000, 0.132693, 0.038326, -0.742397, 0.148741, -0.293556, 0.636246, -0.122293, -0.585191, 2.393996, 0.907956, -1.273070, -0.862822, -0.945147, 0.874301, -2.142893, -0.157647, 0.664078, -0.116931, -0.924814, -1.690552, -0.489379, 0.525611, -2.022288, 0.620293, -1.005329, 0.602536, -0.618161, 0.773970, 1.153424, 0.767592, -1.490730, -0.441524, 0.378543, -0.714283, 1.795595, 1.543324, 1.474025, -0.453359, 0.606984, 0.004696, 0.441260, 0.116171, 0.520404, 0.839695, -1.738653, 0.538265, -0.051506, 0.225686, 0.823927, -0.898231, 0.277226, 0.132438, -1.014787, 0.013427, 2.744513, -1.379169, -0.159827, -1.622324, 0.312074, -0.801969, -0.132457, 1.199220, 1.762816, 2.614702, -1.251020, -0.292932, -0.650674, -0.366716, 2.432578, 0.034004, 0.364269, 0.638649, -0.951142, -1.007079, -3.639020, 3.559285, -0.202650, -0.070716, -0.588417, -0.689876, 1.259315, 0.279627, 1.322981, -0.703149, -0.320339, 0.591559, -0.248742, -0.603587, 1.447409, 0.854169, 1.176190, 0.462784, -0.163880, 1.225252, -0.188107, 0.474241, 0.722550, -1.386720, 1.805160, -0.728132, 0.744601, -0.859084, 2.809067, -1.140650, -0.280099, -1.631087, 0.347477, 0.517512, 0.981620, -1.607984, -0.064968, 0.381553, 0.119513, -0.012089, 0.725931, -0.740354, 0.990801, -0.786111, 0.942182, -0.930947, 1.047784, -0.359566, -2.470492, -0.535079, -1.882133, 1.415739, 0.755526, -0.785738, -0.422217, -2.157502, -0.075675, -1.724756, -0.214210, -0.316398, -0.448632, -2.191588, -0.337842, 0.635482, -0.869785, -0.289716, 0.008577, 0.685914, -1.767045, 0.130024, -0.699719, 0.703842, 0.266145, -0.954319, 0.998666, -0.091582, 0.173133, -0.994769, 0.673786, -1.245531, -0.436189, -0.709814, -1.404860, -1.015782, -0.020176, -2.400612, 0.095698, 0.624370, 0.329876, -1.679498, -1.694843, -0.194741, -0.363958, 0.320114, -0.474492, 1.137740, 0.791094, 0.697049, 0.721421, -1.592182, -1.344499, -0.021251, -0.570454, -0.670966, -2.020386, -1.248654, 0.660396, 0.445477, 0.421517, 0.023469, -0.303631, 0.826053, -0.583889, 2.743410, 0.896533, 0.252610, -2.119778, 2.325007, -0.394109, -0.319441, -0.154400, -0.493423, -0.245623, 0.044359, 0.674579, 0.609360, -0.289882, 0.199548, 0.082043, -0.402017, -1.526817, -0.597538, -0.454720, -0.293778, 0.607726, -0.936898, 0.293511, -0.213769, -0.439017, -0.158604, -0.962467, -0.980164, -0.100530, 0.457554, -0.137260, 0.943699, 0.436898, -0.428960, -0.784887, 0.945776, -0.051841, -0.714418, 1.290290, -0.147452, -0.588972, 0.699039, 0.053845, -0.516412, -0.414229, 0.298465, 1.241984, -0.644308, 0.237210, 0.408205, 0.790844, -0.459350, 0.922009, -0.214878, 0.720270, 0.281951, -2.078843, -0.187262, 0.484475, 0.206875, 0.408172, -0.964247, 0.770193, 1.189002, -0.875251, 1.355666, 1.606735, 0.390186, 1.775172, 1.465068, 0.050377, -0.071914, -1.097418, 0.318219, 1.179317, -0.444139, 0.402958, 0.663078, 0.466497, -1.897668, -1.576414, 0.502513, -0.882007, -0.160975, -0.042891, 1.064051, -0.627360, -0.434418, 0.095608, -0.153836, 0.218954, 0.128237, 1.235171, -0.335874, -1.734261, 0.911400, 0.350893, 0.809636, -1.171943, 0.464698, 1.175104, -1.900901, -0.025425, 0.406024, 1.093599, 0.741210, -1.074187, -0.113963, 0.054027, 0.499148, -1.934338, 0.359452, -0.330697, 0.084156, 0.548030, -1.615265, -0.516798, -0.110019, -1.258339, 0.225121, -0.029273, -0.352252, 0.038000, 2.922897, 0.860672, 0.023219, -0.371106, 1.357774, -0.929375, -0.181150, -1.519803, 0.301891, 0.209642, 0.875006, -1.522879, -1.262935, 0.885418, 0.229146, -1.094486, 1.068061, -0.284890, 0.226158, 0.591172, -0.165347, 0.466614, 0.181490, -2.115568, -0.387427, -0.865010, 1.320431, -0.496358, -0.479626, -1.233676, 0.855247, 0.364460, 1.018782, -0.329787, -1.532578, 0.806446, 0.881082, 1.401609, 1.368758, -0.063228, 0.144286, -0.853197, -1.161441, 0.393941, -0.456803, 0.331404, -1.935883, -0.576243, -0.374308, 0.500627, 1.482619, -0.650121, 0.418620, 0.829698, 0.381839, -0.416514, -0.318647, 0.401735, 0.857991, -0.925324, 0.072773, 0.432449, 2.136667, 0.591740, 0.000894, -0.989923, -0.964892, -1.002391, -0.979134, -0.312657, -1.947916, -0.433204, 0.678539, -1.548827, -0.221351, -1.182740, -0.520955, -0.108246, 0.676326, 0.642880, -0.579660, -1.172029, 0.180481, 0.145567, -0.553995, -0.123572, -1.377090, 1.649688, 1.172847, -1.009557, 1.696461, 1.489116, 0.464210, -0.386753, 0.798605, 2.423591, -1.067660, 0.428387, 1.063113, 0.068168, -1.043389, -0.152927, 1.994861, -1.278035, 0.070708, 0.546025, -0.937271, 0.077218, 0.343963, 0.646248, -1.974246, -1.533420, 0.914345, -0.263439, 0.945293, -2.819857, 0.282333, 0.325182, -0.794679, 0.574447, 0.810553, -1.356496, -1.064521, 0.038704, 0.162952, -0.293545, 0.869195, -0.049179, 1.175396, -0.663484, -0.228122, 0.460879, 1.506221, 0.619085, 0.035940, -2.057078, -0.364081, 0.341804, 0.412966, -0.827478, -1.010396, -1.733934, 0.004979, -0.055362, -0.882838, -1.690594, -0.648414, -0.823177, -1.247144, -1.409382, -0.489024, 2.222220, -1.552172, 0.138275, 0.313593, -0.085941, -1.136765, -2.510321, 0.187420, -0.367543, -1.117285, -0.870430, -2.042670, -0.820943, 0.707323, 0.499850, -0.081534, -0.323482, 1.315124, 0.636423, 1.616224, -0.166473, 0.458523, -1.577853, 2.771953, -0.939610, -0.500617, 1.134954, -0.596695, -0.884782, -2.324834, -1.523583, -0.558413, 0.308515, -0.656419, -1.630020, 0.121766, -0.321717, 0.738284, -0.150970, -0.319377, 1.694014, -0.369920, 0.957237, -0.774793, 0.683244, 0.723942, -0.984938, 0.869628, -0.407774, -0.527981, 1.419893, 0.916213, 0.359340, 0.281274, 0.532969, 1.358405, 1.112822, 1.247943, 0.736070, 0.448360, 0.064406, 1.131104, 1.018164, 0.021234, -1.008104, -0.101913, -0.098800, 0.404524, -0.653387, 0.919976, -1.151311, 0.192772, -0.900603, -0.435119, -0.195076, 1.178728, -2.195306, -1.699499, 0.689685, -0.070511, -1.645161, -0.353244, 0.920113, 0.268945, 0.010245, 0.158192, -0.397984, 0.372596, 1.122764, 0.398309, 0.355010, 0.314810, -0.362476, -0.001019, -1.118581, 2.261982, -0.829255, 1.313405, 0.419686, 0.975783, 0.077348, -0.680541, -0.646671, 1.215562, 0.298133, -0.032200, -0.822940, 1.872837, -0.091985, 1.590571, 2.189615, 0.671482, 0.959947, -0.227700, 0.121324, -0.777780, 1.105815, 1.191487, 0.564404, 1.170724, -0.678744, -0.174674, -0.791007, 0.160115, 0.617460, -1.771890, -1.014007, 0.108575, -0.094883, -0.041363, -0.698639, 1.431201, 0.055950, 0.522269, 0.782784, 0.329436, -0.081920, -0.749310, 0.721772, -0.919258, 0.228491, -0.094053, -0.151695, -1.453414, -0.111173, 0.193356, 1.298390, 1.302749, -2.400853, 0.089225, -1.948672, 0.695801, -1.082552, -1.382506, -1.364050, 1.763154, -1.346791, -2.205111, -0.487307, -0.439755, 1.296285, 1.151645, 1.061861, -0.393782, 0.699981, 0.851676, -1.661902, -1.748502, -1.270151, 0.031468, 0.688376, 0.934216, -0.642324, -0.074840, 0.002208, 0.528916, -0.477442, 1.049474, 0.637585, -0.163023, -0.965330, 0.201402, 0.884500, 1.568763, 0.682966, 1.875984, -0.008904, 0.628444, 0.096640, -1.850374, -0.765162, -1.577299, -0.594107, 0.613427, 1.222398, 0.258605, -1.217890, -0.656070, 1.179256, -0.225954, 0.805915, 0.146057, -1.989709, -0.370744, 0.803784, 1.112917, 0.684902, -0.102059, -1.119677, -0.630912, -1.063871, 0.331905, -0.199834, 0.135074, 0.223982, -0.562146, -0.459546, -0.936665, 0.336523, 2.065681, -0.994555, 0.233976, 0.044739, 0.311842, -1.869856, -0.004827, 0.181460, -1.088715, 0.775957, 0.390985, 1.644371, 0.967996, 0.634975, 0.130202, 1.647675, 0.310514, 0.016864, 0.719848, -0.460764, -0.883501, -0.720083, -1.272417, 1.220531, 0.353710, 0.078132, 2.441542, 0.122551, -1.573647, 0.147233, -0.003191, 2.267303, -0.303616, 2.241765, -1.264280, 0.491044, 0.454064, -1.194816, -0.097203, 0.561550, 0.402088, -0.519705, -0.739811, -1.837483, 0.281988, 0.527873, 0.965765, -0.110451, -0.093962, -1.316626, -0.144071, 0.366697, 0.085085, 0.463985, -1.153225, -0.807744, 0.842997, -0.155893, 0.462589, -1.204939, -0.110900, 1.867847, -1.724745, 1.217191, 0.777816, -0.665992, -0.330855, 0.103533, 1.251164, -0.899884, 0.357965, 0.641076, -0.691929, -0.427051, -0.489703, -0.173351, 0.256565, 0.358023, -0.332414, 1.024814, -1.391588, 0.254832, -0.975139, 0.621087, -0.052536, 1.105053, -0.202236, 0.178073, 0.686421, -0.238463, -0.742911, -0.916062, -0.115710, 1.721554, 1.318805, -1.935127, 0.393952, 0.371033, 0.081142, -1.242742, -0.843665, 0.526875, -0.376163, -2.277156, 0.175020, -1.010671, -0.854628, 0.479450, -1.374991, -0.960397, -0.845392, -0.423776, -0.104226, -0.938695, -1.074392, 0.681518, -0.929067, -0.325328, 0.222046, -1.217866, -1.036856, 0.134252, -0.982169, 1.443324, 0.202745, -0.980911, -1.893088, 0.058971, 1.033726, 0.915244, -0.321112, -0.526253, 2.219343, -1.490468, 0.076183, 1.302339, 0.846440, -0.347658, 1.005859, -0.027592, -0.907004, -0.753489, 0.641079, -0.223017, 0.093323, -0.393854, 0.817221, 0.271533, -0.801750, -1.095142, -0.979342, 0.813610, 1.313003, 0.146132, 1.132320, -0.089613, -0.008423, 1.188470, -0.229290, -0.660246, -1.580706, 0.005675, -0.197319, 0.592839, -0.825189, 0.299222, 0.369708, -0.550421, -0.333250, 0.923634, -0.330064, 0.660208, -0.346987, 0.420864, -0.966817, -0.290246, 0.553422, 1.117027, -0.705553, -0.998050, 0.749883, 0.896945, -0.415782, -0.023040, -0.970122, -1.378783, -0.553771, 0.500768, 0.055368, 0.575297, 0.845588, 3.163929, -0.206427, -0.645871, -1.290812, 0.951909, 0.230984, 0.640766, 0.687113, 1.130615, -0.729285, 0.064664, 1.905062, -0.534741, -0.084036, 0.064332, 0.512932, 0.559215, 0.435457, 0.112609, -2.229610, -0.363946, 2.104479, 0.269953, -1.365839, -0.194544, 0.442989, -0.916018, -1.102157, -0.432396, -1.845771, 0.250807, -1.205893, 1.555903, -0.248013, -0.390279, 0.566889, -0.430657, 0.203078, 0.051656, 0.049730, 0.752098, -0.953414, 0.888385, 0.754414, -0.226461, -1.796367, -0.436016, 1.887462, 0.086257, -2.540550, 0.460174, -0.230777, -0.238524, -0.077088, 1.097227, -0.358950, -0.852384, -0.108136, 0.089569, 0.197142, 0.191996, 0.417871, -1.934974, -0.252158, 0.012013, 1.815527, -0.797995, -0.422927, 0.163177, -0.678507, -1.223878, -0.574484, -1.077810, 0.982228, 0.942096, -1.082984, -0.315990, 0.379165, -0.675427, 0.929860, 0.985859, -1.661204, -0.533872, 0.667684, 0.482606, -0.323883, 0.934162, -1.721741, -1.165999, -0.657639, 1.436376, 2.145906, -1.250238, -0.419071, 1.441633, 1.048542, -0.410452, -0.233101, -0.196294, 0.801836, -0.776944, 0.769657, -0.408917, 0.312041, -0.815606, 1.295848, 0.283211, -0.371126, 1.828149, 0.844474, -0.477986, -0.250453, 0.339010, 0.171278, 1.247593, 0.457815, 0.861051, 0.496436, 2.031770, -1.045570, 0.690956, -0.209337, -0.130950, 0.677668, 0.726198, -0.310236, -0.052020, -0.571697, 1.354022, -0.476486, -0.123084, 1.464579, 1.342380, 1.010569, -0.075310, 0.516703, -0.255226, -0.846005, 0.250577, 0.678318, 1.250262, -0.581924, -0.837191, -0.052001, -1.609562, -0.487951, 0.220230, -0.952890, -0.828554, -1.013836, 0.519786, 1.554351, 0.063381, -0.387435, 1.151662, 0.418503, -0.473609, 0.341987, 0.095320, 0.373941, -1.509981, 0.544070, 0.867939, -0.895089, -1.476093, 0.348520, 0.876986, -0.460812, -0.455791, -0.608436, 1.968207, -0.685293, -1.311222, -0.019769, 0.027398, 0.163930, 0.004945, -0.595132, 0.627187, -1.747154, -0.340727, 1.042050, 0.548571, 0.203586, -0.531577, 0.916435, 0.674560, 0.264932, 0.795920, 0.835980, -2.293107, -0.121481, -0.199880, -1.424760, 0.269736, 0.224302, -1.276516, 0.270943, -0.044360, -0.046254, 0.296121, 1.339972, -0.001777, -2.171376, 0.843261, -1.511411, 0.211905, -0.704402, 1.254118, 1.085893, 0.096693, 0.255339, -2.751762, -0.609475, -1.233330, 0.898609, -0.404407, 0.705861, -1.037741, -1.661959, -0.173625, -0.108401, -0.145233, 0.896454, 2.550848, 0.224521, 0.608556, 0.149591, 0.311065, -0.383015, -0.437713, 0.904401, 1.137051, -0.566618, 0.905288, -2.012599, 0.773460, -1.388191, 0.036844, -0.908313, 0.827142, -0.564213, -2.279496, -0.523770, 0.406829, 1.196736, -1.000412, -0.123413, -1.063237, 0.118590, -1.730392, -0.800990, -0.295268, -1.539280, 1.074800, 0.990241, 0.938344, 0.008648, 0.270552, 1.504636, -1.992391, 0.840412, 0.114271, -0.818257, 1.016207, -0.065419, 0.719255, -0.422184, 0.967049, -1.198595, 1.379827, 0.209556, 0.899116, -0.459669, 0.305595, 0.263592, -1.081652, 1.019637, 1.788260, -1.029073, -0.774219, 0.248703, -0.282321, 1.095758, 0.188455, 1.324632, 0.014700, -1.270554, 0.446974, 1.079532, -0.687912, 0.200267, -0.074585, -0.090963, -1.538364, 1.634101, -0.862753, -1.604892, -1.786448, -0.668017, 1.077949, -0.742842, -0.908906, 0.001696, -0.204625, 0.047484, -0.755280, -0.414966, -0.126783, 0.424308, 1.520521, -1.531182, -0.197597, 1.911759, 0.258339, 0.073342, 0.252828, 0.589639, -0.292894, -0.320263, -0.142690, -0.819674, 0.607538, 0.818658, -0.848856, -0.014286, 1.060685, 0.765401, -0.151427, -0.697303, 0.359113, -0.261557, -0.120428, -1.176533, 1.626248, 0.878618, 0.634200, -0.831657, 0.003904, -0.714046, 0.723078, -0.382527, 0.981350, 1.594958, -1.187487, 0.275221, -0.455454, -2.006084, -1.692158, 0.452176, 2.030479, -0.253968, -1.625709, -0.359816, 0.296818, -0.308585, -1.835828, 0.039642, 0.548832, -1.542726, 1.216405, -0.419782, 0.793618, 0.589789, 1.527137, -0.610310, 1.612953, 1.678237, 0.769253, 0.624159, -1.450371, -0.467088, -1.247703, -1.614081, -1.038799, -1.450659, -0.579249, 0.505138, -1.520023, 0.782548, 1.715204, -0.914999, -1.236802, 2.692922, -2.258207, -1.305801, 0.302295, -0.179105, 1.138938, -0.408856, 1.093325, -0.381717, 0.724882, -0.127229, 0.199732, 1.090881, -0.243553, 1.390858, 0.480334, -0.428308, -0.233091, 1.193697, -0.832480, -0.978503, -0.105364, -2.142534, -0.211938, -0.646781, 0.112030, -0.627763, 0.012003, 2.016760, 0.063875, 0.805672, -0.588321, -0.008961, -0.461640, 0.606676, -0.622125, 1.080776, -0.714583, 0.295806, 0.062171, 0.301859, -0.488713, 0.446270, -0.703305, -0.446033, -0.064286, 1.478045, -0.590927, 1.806130, 1.675596, -1.228243, -0.039367, 1.441270, 0.725322, -0.579056, -0.786712, 1.662601, -1.004281, -0.059023, 1.017297, 2.551392, -0.541552, 0.133698, 0.470523, -0.950493, 0.925239, -0.842815, -1.016801, 0.917952, 0.244602, -1.583197, 0.068994, 1.085170, 1.278637, -0.848786, -0.409601, -1.183971, -0.127387, -0.332900, -0.955443, 0.240069, -0.230033, 1.265599, -0.921187, -1.160511, -0.643802, 0.492340, -0.178216, -0.459460, 1.385097, 0.345105, 1.424889, 0.337604, -0.873427, -1.799328, 0.994206, -0.107136, -0.390023, -0.992338, -0.043299, -1.259286, -1.526205, -1.148374, -0.462512, 0.291424, -0.344562, 1.166278, 0.705970, 0.551753, 1.148313, 0.748673, -0.193060, -0.728595, -0.079233, -0.073007, 0.315085, -1.327685, 0.096009, 1.024534, 1.037750, -0.643653, 1.089484, 0.332034, -1.921824, 0.825178, 0.281066, 0.044033, -1.029022, -0.775630, 0.812846, 0.241263, 0.438447, -1.523057, -0.390679, -1.181283, 1.435409, -0.463888, 0.820352, 0.496726, -1.506960, 0.976491, -0.026568, 0.534467, 1.358570, 1.132596, 0.431385, -0.781128, -0.497669, -0.844447, -0.432680, -1.227080, -1.693156, 1.067945, -0.235915, 0.869937, 1.374782, -1.931202, 0.041417, 0.004889, 0.596894, 0.718105, -1.105204, -1.226033, -1.544991, 1.755095, 1.399246, -0.107737, 0.251172, -1.247777, -1.792983, -2.513066, -0.981324, -2.235411, -1.497458, -0.373662, -0.816140, -0.924858, -0.401730, -0.828722, 0.251567, -1.579836, -0.954801, 1.205989, -0.674743, 2.553820, 1.274381, 2.445274, 0.169583, -0.749331, -0.361765, -2.167931, 0.116224, -1.612522, 1.437178, 0.518369, 0.925946, 1.244001, -0.287581, 1.533695, -1.254095, 0.607090, -1.852139, 0.968363, -1.566348, 0.753822, -0.212007, 1.061535, 1.432382, -0.655633, -0.512329, 0.455304, 0.808479, 0.319832, 0.550245, -1.810582, -0.038852, -0.242902, -0.396533, -0.311935, 0.871135, 1.531660, -1.758956, 0.768577, 0.947164, -0.925342, 0.392665, -0.054169, -1.051204, 0.540079, -1.371150, -0.312267, 1.528846, -1.971221, -1.083212, 0.125064, -2.283222, 0.387995, -1.171463, -0.507675, 0.789502, 0.908121, 1.597176, -0.549736, 0.645642, -1.586370, -1.211177, -0.505284, -0.197607, 1.748958, 0.618762, -1.501589, -0.506183, -1.400233, 1.660637, -1.228425, 0.114984, 1.479920, 0.515851, -0.750474, -1.709443, 0.932454, 1.151439, 2.728647, -0.591449, 0.780029, 0.807998, 1.180349, 0.362442, -1.069364, 1.860791, -0.210566, 0.137039, 0.688006, -0.826477, 0.856380, 0.035750, 0.318166, 0.076763, -2.678424, -1.146179, -0.484830, 1.078147, -0.732110, -0.876544, 0.725752, -0.229854, -0.178575, -0.401983, 0.593291, -1.134600, 0.299971, -0.080647, -1.355316, 0.075274, 0.176714, 0.041601, 0.547252, 2.035405, -1.610458, 3.304648, -0.688604, 1.342285, 0.676487, 0.635658, 1.234083, -2.906488, -0.936661, 0.646795, 0.229119, -0.338055, 1.679101, -0.275683, 1.685993, 0.289674, -0.702806, -1.067165, -0.438921, -0.167604, -0.386343, 1.515304, -0.890131, -1.560939, -0.888819, 0.180830, 0.739056, 0.385542, 0.054245, -0.247060, 0.904239, 0.914448, -0.132387, 0.240149, -0.116692, -1.323525, -1.292280, -1.146213, -0.576850, -1.234097, 0.729883, 0.931078, -1.232934, 0.291481, -0.579669, 0.584854, 0.001575, 0.165488, 0.735198, -1.034704, 2.057282, -0.356086, -0.276032, 0.835456, 0.426434, 0.864435, -0.439887, -1.931927, 0.698827, 0.612898, 0.273311, 0.222419, -0.215456, -0.390212, -0.039740, 0.264148, -1.326302, -1.669482, -0.109314, 0.275399, -1.197135, -0.737204, -0.667844, -1.696526, -1.024282, -0.838153, -0.140210, 0.257477, 0.357491, -0.774643, 0.262323, 0.840553, -0.133754, 0.006898, 0.310085, -1.470412, 0.740721, -0.497280, -0.205097, 0.936296, 0.563652, -2.475411, -0.098824, 0.302977, 0.544696, -0.702273, -0.224016, 1.488240, 0.340930, 0.770135, -0.559111, -0.799438, 0.253213, -0.483138, 0.575897, -1.438512, -1.167161, 1.028894, -0.317772, 0.367781, -0.175546, 1.144240, -0.947621, -1.261444, -0.037873, 0.405451, -1.824173, -1.013213, -1.812381, 2.083658, 0.146819, -0.548985, -0.849855, 0.075940, -0.252510, 0.799214, -0.152363, 0.591349, 1.570370, -0.816732, -0.612182, -0.773485, -1.673563, -1.008755, -1.378837, -1.820998, 0.599782, 0.855464, 1.294876, 1.170179, -0.721917, 0.473666, 0.335093, 1.213475, -0.514751, -0.312647, 0.667063, -0.955969, -0.332286, 2.051668, 0.560123, -0.872217, -1.153726, 1.150429, 0.583915, -1.059292, 0.155215, 0.066745, 1.824363, 1.725572, 0.351913, -0.255321, 0.213747, 0.544924, 1.070085, 0.967913, 1.209858, 1.285793, 0.165512, -1.205263, 1.027338, 1.200385, -0.099305, -0.359821, 0.958892, -1.164842, 2.059499, -0.293423, -1.681142, 1.485179, 1.167770, 0.259798, -0.490254, -0.173270, 1.494035, 0.865552, -1.037125, -2.299628, 0.857576, 0.664129, 0.706929, -1.808215, -0.032979, -0.025548, 0.436533, 1.800980, -0.019184, 0.273754, -1.771974, 0.192992, -1.912216, 0.678894, 0.482888, 1.946389, -0.801648, 0.652475, -0.120300, -0.613245, -0.298331, -0.278718, 0.319872, -0.538019, 0.526453, 0.355085, 1.615025, 0.010841, -0.433678, 0.074101, -0.372801, -0.996397, -0.628399, -1.600311, -0.156809, -0.296482, -0.072060, -0.922985, -1.350325, 1.570328, 0.453621, 0.249506, 0.517055, 0.839752, 1.212247, -0.355969, -0.834899, -2.256092, 1.508950, 0.958231, 0.627800, -1.119957, -0.445233, -1.314693, -1.156792, 1.222933, 0.056463, 1.139011, 1.133834, -1.954986, 0.911514, 0.284220, 0.146273, 1.283033, -0.541273, -0.206320, -1.315816, -0.724174, -1.779215, -0.726110, 0.751588, -1.242158, -0.935277, 1.231239, 1.132305, -0.978927, -0.800345, 0.592947, -0.771981, -0.289251, -1.884033, -2.330992, -0.975545, 0.685898, -0.646062, -0.795275, -0.383030, 0.000804, -0.148897, -0.712477, 0.581027, 1.094729, 2.210095, 0.216186, 1.224661, -1.028130, -1.278383, 0.169229, 0.292108, 0.877600, -1.117363, 1.673167, 0.023445, -0.452841, -2.543711, 0.470517, -0.231038, -0.193303, 0.648278, -0.477477, 0.331214, 0.755570, 0.045610, 0.533408, 0.660642, 0.596556, -0.054480, 2.405887, -1.561524, 0.735585, -0.010487, -0.642784, -0.511849, 0.872943, -1.049492, 0.366129, -0.304031, 0.400193, -0.258380, -0.672031, 1.229638, -1.581198, -2.069448, 0.399057, -0.778449, -0.407193, 0.510858, 0.525076, 1.312252, 0.735877, 0.790376, -0.319886, -0.118436, 1.215148, -0.493103, 0.478139, -1.259715, 0.936273, 0.765667, -0.930100, 1.902143, 0.371726, -1.246367, -1.849395, 1.108525, 0.478887, -0.037993, 0.073749, -1.424276, -0.618281, -0.189405, 2.227087, 0.792688, 1.111051, 0.458507, 1.006177, -0.060704, 0.029167, 0.476807, -0.072299, -0.594517, 1.224957, 1.403397, -0.681391, -0.750033, 0.641810, 1.321338, 2.481421, -0.326549, 1.089872, 0.274751, -0.140629, 0.240780, 0.470571, -0.660207, -0.972413, 0.572010, 0.540627, -0.099027, -0.424190, 0.470737, 0.958158, -2.573777, 0.944992, 1.288011, -1.236674, 0.248440, -0.276320, -0.920838, 0.925885, 0.723091, -1.035724, 1.069552, -0.325077, -0.801796, -1.388701, 0.290580, 1.181303, -0.750910, -1.579917, -0.249554, -1.615275, -0.544449, -0.022362, -0.969041, -0.384764, -0.426919, -0.122412, -0.187072, 0.354822, 0.413978, 1.759249, -0.604203, -0.529838, 1.174600, -0.167540, -0.893276, 0.745195, -0.985655, 0.837010, 0.623226, -1.297125, 0.809458, -1.255280, 0.242493, -0.228881, -1.250483, -0.658232, 0.780472, 0.321582, -0.379518, -0.160174, -0.176678, -0.623748, 1.062364, -1.170764, -0.499050, 0.613400, -1.617004, 1.092308, -0.682719, 1.044111, -0.523858, 1.079999, 1.125256, 0.782317, -0.773193, -0.615507, -1.905080, -0.372791, 0.266970, -0.232541, 0.421497, 1.106063, 2.054860, 1.944606, 0.449349, -1.150533, 0.466411, -0.369180, -1.936198, 0.353288, 0.343445, -0.206814, 0.144677, -0.779067, 0.139409, 0.726236, 0.383863, -0.166169, 0.920671, 0.842909, -0.940188, -0.708426, 1.132965, -0.567276, -1.776396, 1.000999, 0.324230, -0.286391, -0.709427, -0.506209, 2.008922, -1.408515, 1.697712, 1.427112, -0.764681, 0.503639, -0.857550, 0.137164, -0.393988, -0.645424, -0.466057, -0.263195, 0.188539, 1.348784, 1.076512, 1.817029, 0.657550, 1.261102, 0.609959, -0.740831, 0.196078, -0.743779, -1.184573, 0.650455, -1.960792, 1.084642, -0.279466, 0.145483, -0.997303, 0.080009, 0.499684, 0.062574, 0.405807, 1.946896, -0.646038, 0.874223, -0.946148, 0.076162, 0.187738, -0.289608, 0.254565, 1.167982, -0.126705, -0.758044, -2.476125, 0.623089, 1.213360, -1.738868, 0.146560, 1.000399, 0.486940, 1.993934, 1.306430, -1.001753, 0.895397, -0.800027, -0.243823, -0.517256, -0.703311, -0.749954, -1.189894, -0.313332, -0.249444, -3.232671, 0.300845, -0.092155, 0.460650, 1.927405, 0.187557, 0.940361, 0.523489, -0.762684, -0.534927, 0.320713, -0.626661, -0.532747, 0.805675, 0.527081, -0.502156, -0.318472, 0.107356, -0.880202, 0.561103, 0.118711, -0.116539, 1.601423, 0.526576, 0.658094, -1.072707, -0.604475, -0.067742, 0.201239, 1.058724, 1.070100, 1.358473, -1.740627, -0.509498, 0.196283, -0.296208, -0.237573, -2.243055, 0.380953, 0.431689, -0.335545, -0.112867, -0.422986, 0.450012, 1.100065, 0.163314, -0.653564, 0.590977, 0.019812, -0.782144, -1.281447, -0.949235, -1.068316, -0.059770, 0.111876, 0.622994, 1.885855, -1.205939, -0.143202, -0.881391, 1.709445, -1.305343, 1.705924, 0.260919, -0.212098, 0.328828, -1.038350, -0.926027, 0.663006, -0.322986, 1.267319, 0.574209, 1.779133, 0.040785, 0.587367, -1.047119, 0.063418, -1.164881, -2.262731, -0.172727, -0.516903, 1.334643, -0.228500, -0.055950, 1.088091, -0.340928, -0.416462, 0.435197, 1.259548, 1.501645, 0.076284, 1.566954, 2.186026, -0.456482, -0.215436, 0.674405, -0.181536, -0.973145, -1.401503, -1.558267, 0.219778, -0.721509, -0.837303, 0.135807, -0.316957, -1.438389, -0.485605, 2.274061, 0.057356, 0.771073, -0.524855, 0.976812, -0.721963, -0.574090, -0.139908, -0.211448, 0.897787, -2.094179, -2.007833, -0.469451, 0.262724, -0.286139, -0.211648, 1.842703, -1.731299, -0.696976, -0.563637, 1.106420, 0.191047, 0.030182, 0.116623, -0.330102, -0.949236, -1.734516, 1.071167, 0.761497, 0.946811, 0.344153, -0.932545, 0.474702, 1.261517, 0.438154, -0.312641, 2.218739, -0.636284, 0.177427, -0.891629, 0.073059, 0.432573, 1.519030, -1.342308, -1.574174, -0.776080, -0.044776, -1.306273, -2.023080, 0.622893, -0.619993, -1.069019, -0.668112, 0.062935, -0.125840, -0.766712, -1.815272, -1.599102, -1.021402, -0.171320, -0.847002, 0.602906, -1.240145, -0.651905, -1.394652, 0.188672, -1.536856, -0.607298, -0.213942, 0.415434, -0.899680, -0.679669, 0.442699, -1.006434, -0.478302, 0.370300, -0.711353, 0.037286, 0.007108, -0.066142, -0.686171, -0.503276, -0.859378, -1.450166, -2.110347, 0.560666, 1.816826, -1.325563, 0.794742, 0.449122, -0.166732, 1.159933, 0.922354, -1.629065, -1.071650, -0.473958, -0.462836, 0.771678, 1.811227, 0.667743, -0.405866, -0.446916, 0.091320, 0.307196, 0.775608, -0.596851, -0.285515, -0.122423, 0.254493, -1.624426, -1.347769, 0.013939, 0.922401, -0.519619, -0.198171, -0.989232, -1.601648, -0.030778, 0.627954, -1.264892, -0.876560, -0.416890, 0.950213, 0.262130, 0.729413, -1.816510, 0.768735, -0.922000, -0.625709, 0.346602, -1.325937, 1.182077, 0.093946, 0.289798, 0.108753, -0.873945, 0.889817, 0.512309, -0.940536, 1.293848, 0.142711, -1.416883, -0.313962, 0.060443, -1.465414, 0.889088, 0.116119, 0.671001, -0.412079, -0.284037, 0.020374, 0.502909, -1.214663, 0.263673, 0.778859, 1.570789, 0.919372, 0.109478, -1.041236, -1.134445, 0.463988, -0.933648, -0.902000, -0.674116, -0.165772, -0.136524, 0.030182, 0.512634, -1.308213, 0.408942, 0.839246, 0.495097, 0.462561, 0.192995, -1.624213, -0.618026, 1.414266, -0.878879, -0.090491, 0.492939, 0.628859, 0.525880, -0.039021, 0.617737, -1.267245, 0.956660, -1.720725, 0.385655, 1.282341, 0.084000, -0.150844, 0.866546, -1.516527, 0.851712, 0.471689, 2.531880, 0.542086, 0.100295, 1.398098, -1.109739, 0.617787, -0.284909, -1.231408, 0.406820, -1.410199, 0.329036, 0.944494, 1.259406, -1.009261, 1.611839, -0.339957, 1.574730, -1.418461, 0.378514, 1.829653, -0.790625, 0.074517, 0.881604, 1.710198, -1.543031, -0.617113, -0.434464, -1.234593, -1.610144, -0.568606, 0.755789, 1.969215, 1.434471, 0.121619, 1.816659, -1.294432, -1.519971, -0.125081, 0.103685, -0.099768, 0.272657, 0.046338, 0.803169, 1.364452, 0.089515, 0.636846, -0.435049, -1.817132, 1.656341, -1.197036, 0.520743, -1.056417, 0.150290, 1.026894, 0.536498, 0.663240, -0.645223, 1.216482, 2.042433, 0.856201, -0.703970, -1.208082, -0.091632, -0.108666, -0.098345, 1.509354, -0.230640, -1.448274, -1.886524, 0.007456, 2.477842, 0.707337, -2.054148, -0.091582, 0.153579, -0.460725, 0.198817, 0.987613, -1.813821, -1.239454, 0.204163, 0.322734, -1.487123, -0.019094, 1.265777, -0.271168, -0.951826, -0.662571, 0.189142, -0.743110, -0.982357, -0.619117, 0.957933, 2.201865, -0.159187, 1.589898, -1.510805, 0.223414, 0.481670, 1.486963, -0.445288, -0.545946, 0.282803, 2.658768, 0.453831, -0.351686, 0.658675, -1.217944, -0.229624, 1.645123, 0.558230, 1.028391, 0.734674, -0.596569, 1.089123, -0.629326, 0.777236, 2.115886, -1.612976, -0.850611, 1.502406, 1.180521, -0.393392, -0.002920, -0.450433, 0.914858, -0.239300, 1.055565, 0.939469, 2.186308, 1.500550, 0.776769, -1.219393, -0.181543, -0.077796, -0.296048, -1.050082, -1.164428, -1.626741, -2.193989, 0.945202, 0.239424, 0.338808, 2.003991, 0.485541, -0.476657, 0.608667, -1.516347}, - { 0.971813, -0.920174, 1.846539, 0.629848, 0.343860, -0.418023, 0.196509, -1.013686, -1.319651, -1.013042, -1.224583, -1.107630, 0.744378, -0.328667, -1.674248, 1.161416, 0.972131, -0.569480, 0.743796, 0.751730, 0.022005, -0.893676, 0.611287, -0.259918, -1.227763, 1.042601, 0.325731, -0.480853, 1.523066, -0.348158, -0.975072, -0.611629, 1.136848, 0.474921, 1.187678, 1.289511, 1.501528, -2.782071, 0.803552, -1.408013, 0.730737, 1.321385, 0.382434, -0.342034, -0.436544, -0.560894, -1.522092, -0.041509, -0.969737, 0.041066, 0.337097, -0.748090, -1.187868, -0.786850, -1.258359, 0.060814, 0.773434, 0.433587, 0.896879, -0.001600, -0.512817, 0.910728, -1.512975, -1.102233, -0.035423, -0.467501, -1.068874, -0.216873, 0.368641, -1.982073, -0.058476, 1.155416, 0.506792, -1.439055, -1.501287, -1.194824, -1.634018, -0.485168, -0.565400, 0.421402, -0.066977, -0.534743, 1.346970, 1.597382, -0.959063, -0.213779, 0.906425, -1.332859, 1.143031, -0.034087, 1.032573, 0.942437, 0.304260, 0.028277, -1.107901, -0.795919, 0.300141, -0.319785, 2.304236, 0.966513, 0.418149, -0.588981, -0.032505, 0.715881, -1.054713, 0.112103, 0.450980, -0.472431, -0.897862, 1.297535, 0.189193, 1.541018, 1.662518, -2.520785, -0.395973, -0.608422, 0.239942, -1.757357, 0.061939, 0.614363, 0.684749, 0.002828, 0.408846, 0.002571, 0.270919, -0.584605, 0.827381, 0.641225, 1.003051, 0.048399, 1.097997, -0.207120, 0.925233, -0.347599, -1.346167, 0.254696, -0.771559, 0.019891, 0.077092, -0.390164, -0.542696, -2.276683, -0.165124, -0.591951, -0.053938, -2.427174, 0.549246, -1.046526, 1.143240, -2.201089, 0.249985, -0.325234, -0.369794, -2.147344, 0.030667, -2.855161, 0.499867, 0.601390, -0.039920, 0.755047, -0.754678, -0.390014, 1.947499, 0.904867, 0.798818, -0.309321, 0.005252, -0.670809, -0.075017, -0.018729, -0.335959, -0.566311, 2.013777, 1.496688, -1.387787, 1.153324, 0.106980, -0.082899, 0.587804, -1.155205, 1.085579, 0.369825, 0.417089, 1.021712, -0.669302, -0.758896, 0.210923, 0.253470, -0.212504, 1.052913, -0.834339, -0.955122, -1.501965, 0.044251, -0.089116, 0.154636, -0.468314, 1.942479, 1.130711, 1.554711, 0.897517, 0.133241, 0.767225, -0.541034, 0.952236, -0.127024, -1.076128, -1.306692, 0.139515, 1.760366, -1.612195, 1.024336, 1.058249, -0.530043, -0.659581, -0.332121, -1.381470, 0.717139, -1.315567, 0.023098, -0.430636, -0.297089, 0.113438, -0.623983, -0.043908, -0.347067, 0.769097, 0.578816, -0.549213, -1.051440, 0.863544, -0.719289, 0.040030, -0.225305, 0.455594, -0.848245, -0.083824, 1.066442, -0.809301, -0.935748, -0.506573, -0.691330, 0.452970, -1.568340, 0.095337, 1.097788, 0.484391, -0.076441, 0.918378, -1.009492, -0.861432, 0.487705, -0.307148, 0.776054, 0.300242, 1.140218, 0.645286, 0.916950, -1.916275, -0.076287, 1.318896, 0.290422, -0.894996, -1.127544, -0.964298, 0.413565, 0.533709, -0.028855, 1.717943, -1.305980, 0.366002, 1.339150, -0.114969, 0.703352, 1.129595, 0.358759, -0.974376, 0.655035, 0.971618, 0.478921, 0.870140, -0.688404, 1.579125, -0.486345, 1.295197, 0.246409, 1.380043, 0.396221, -0.566857, -0.554473, -1.665938, -0.365643, -1.619207, -0.176565, 0.014242, -0.294738, 0.436808, -0.685948, -1.435917, 0.806713, 1.312199, 0.904785, -0.466605, 1.105168, -0.663831, -2.719723, 1.384892, 0.507204, -0.623716, -0.521850, -1.347116, -0.380209, -0.355050, -0.144522, -1.331080, 0.827650, -0.997355, -2.578861, -0.311889, -0.630814, -0.149935, -1.488386, 2.417150, 0.009275, 1.545489, 1.421100, -0.299038, -0.857799, -1.470489, 0.631914, 0.356574, 1.123001, 0.661686, -1.220224, -1.751932, -0.033867, -0.479748, -1.062558, -0.161204, 0.237046, -1.089888, 1.117793, -0.897274, 1.024702, 0.481106, 0.821814, 1.698008, 0.284859, -2.886798, -0.601113, 0.846343, 0.115336, 0.986459, 0.950422, 0.894066, -0.251326, 0.367570, -0.491369, 0.984153, 1.201833, 0.134712, 0.298497, 0.370454, -0.542984, 0.844034, 0.603911, -0.817840, -1.607979, -0.636919, -1.321260, -0.442724, 0.847497, -0.139469, 0.853183, 0.863377, -0.355089, 0.198343, -1.283811, -0.650588, 0.682261, 0.190765, 0.987441, -0.583438, -0.255676, -0.655559, 0.241466, -0.201111, 0.244188, 0.388859, 0.948580, -1.755311, 1.834091, -1.680032, -0.727987, 2.572913, 0.719841, -0.186008, 1.287947, -0.299030, 1.760421, -2.423195, 0.026613, -1.619953, -0.077301, 0.746800, -1.073566, -0.750002, 1.798259, 0.717453, 1.662824, -1.126805, 0.218205, 0.619591, -1.511202, -0.942170, -1.394857, -1.411789, 0.676113, 0.366643, -1.712855, 0.297478, -0.000230, 1.145733, -0.716335, -1.835205, 0.089205, 0.008892, -1.566904, -0.402140, -1.292695, 0.187779, 1.725797, 1.543179, -0.920616, 0.719518, -0.668737, -1.601129, -0.767975, -0.341658, -0.746770, -0.970000, -1.065336, 0.665581, 0.098309, 1.094631, 0.406114, 0.602856, -0.335420, 0.386918, 0.199210, 1.615882, -2.408951, -0.380376, -0.069536, 1.405371, -2.024847, -0.386590, -1.046656, 2.673621, 0.920108, 0.471663, -0.281005, -0.793354, 2.093169, -1.379986, -0.513385, -0.386928, 0.968884, -0.301650, 1.508372, -0.148648, -1.161270, -1.733997, 0.974015, -0.314582, 1.800069, -2.159910, 0.203225, -0.343901, -0.665765, 1.140197, 0.010250, 1.164854, -0.226451, -1.194389, -0.963590, 0.920885, 0.193840, -0.783899, -1.798317, -0.707328, -1.207207, -0.844507, 0.697535, 0.691267, -0.939020, 0.059549, 0.283004, -0.443326, -0.055189, -0.593534, 0.892826, 0.406508, 1.316018, -1.844848, 0.148372, -0.559569, -0.364895, -0.469858, -0.941906, -0.099158, 0.831627, 1.189852, -0.976663, 2.835562, -0.127476, -0.548714, -0.079719, -1.930110, -0.811902, -1.033335, 1.896706, 0.109211, 0.505187, 0.607807, -0.817037, -0.670715, 0.315486, 0.302596, 1.796894, 0.568534, 1.437424, 1.223598, -0.910170, -0.350935, -0.905451, 0.953954, -0.856089, -1.593141, -0.191105, 0.431107, 0.084841, -0.032016, 0.900846, -1.074397, -0.139936, -0.107714, 0.090016, -0.099433, 0.374506, -1.302671, -1.236478, 1.501433, 0.300742, 1.589936, 1.893235, -0.277069, 1.365385, -0.004377, -0.004247, -0.177179, 0.170261, 0.937936, 0.795878, -1.595454, 0.439143, 0.028638, -0.471835, 1.336467, -0.014874, 1.259495, 0.407983, 1.405498, 1.327009, -0.822830, -0.488193, 0.250268, 0.253280, 1.340945, -0.205361, 1.224654, 1.227148, 0.327843, 1.307411, -0.952049, 0.914469, 0.606254, 1.096813, -0.813158, 0.281851, 0.152936, 0.846013, 0.857708, -0.410271, 0.060223, 0.434891, -0.489143, 0.125288, 0.353961, -0.003488, -0.028117, -1.571742, -1.519079, 0.193470, 0.122562, -0.700344, -1.355346, 0.237293, -0.443501, 0.662822, -1.198535, -1.069011, 0.487202, 2.241471, -1.375819, -0.934614, -1.675911, -1.713843, 0.974879, -1.738360, 1.601777, -0.105966, -0.377980, -0.469952, 0.562329, -0.558756, -0.186445, -0.333349, -0.998854, -0.083348, -0.449209, 0.923690, 0.268688, -0.611534, 1.254464, 1.308631, 1.126693, -0.257512, 1.420009, -1.121793, 0.787145, 0.424889, -1.497740, -0.636727, -2.255743, 1.646417, -0.712464, 1.075660, 0.396806, -0.584058, -2.412119, 0.711252, 0.381605, -0.842922, 0.376938, 0.229876, -0.046180, 0.289171, 0.827664, 0.194347, -0.001255, -1.991791, -1.303784, -0.558858, 0.473175, 0.886602, 2.228929, -0.535967, -1.766033, 0.005980, -1.272594, 0.579264, 1.129129, -1.179870, -0.653437, -0.328890, -0.285420, -0.354478, 0.977197, 0.113783, 0.226503, -0.665439, -1.370713, -0.239997, 1.174984, -1.134012, -0.581365, 0.539099, 1.524967, -1.312458, -0.153321, 0.217497, 0.602811, -0.876007, -0.234869, 2.577600, 0.343239, -0.805436, 0.073816, 0.000318, -0.646728, -1.523271, 0.743044, 0.594229, -0.750330, 0.285405, 0.464418, -0.082225, 0.250548, 0.900854, -1.744746, -1.234793, -0.294216, 1.651288, 1.633520, 0.015482, 0.052410, 0.653854, 0.936157, 0.087540, 0.562775, 1.357288, -0.031579, 0.468495, 0.647439, 1.540446, 1.867660, 1.021137, -1.439585, -1.180619, 0.122432, -0.428441, -1.893297, -0.794879, 0.832536, -0.178663, -0.522226, 0.608327, -0.591676, -0.717490, 0.869065, 0.878123, 0.038759, 1.013347, 1.233262, 1.121326, -1.818453, -0.855657, -0.875917, -0.764359, 0.498708, -1.105016, 0.738071, 2.519559, 0.910957, -0.208716, -0.085094, 1.695150, 0.955911, -0.671634, -1.259013, 1.454198, -1.542137, -0.478988, 0.051290, -0.582529, -0.847671, 0.247783, -0.497812, -0.151810, -0.558376, -0.033536, 0.203148, -0.802974, -1.374078, 0.731130, 0.527886, 0.030048, 3.744859, 0.087207, -0.158493, 1.009677, 0.258204, 0.125366, -0.337034, 0.054513, 0.407245, -0.250819, 0.915709, -0.488188, 0.056892, -1.411888, -0.923479, 0.080322, -0.991549, -0.298401, -0.490447, 1.223770, 0.299586, 0.162116, -0.898755, 1.599583, 2.296298, 0.045946, -1.799554, -0.709610, 1.954485, -0.008311, 1.066191, -0.150060, -0.774191, 0.300882, 0.059664, -1.699009, 1.096290, 0.010271, -0.034781, -0.171092, 1.085680, 0.268309, -0.962462, 0.105220, -0.044777, -0.248024, 0.102901, -0.942928, 0.339519, 1.140226, 0.953310, -0.114524, -0.368990, -0.772944, -0.576804, 2.357136, -0.634191, -0.265064, 0.461750, 2.215632, 0.304108, -1.139323, 0.424672, -0.601927, -0.594569, 1.377077, 0.124884, -0.180933, 0.437936, -0.882867, -0.621552, -0.073142, 0.430129, -0.704793, 0.471346, 1.557045, 0.843472, -0.024710, 0.415605, 0.898428, 0.147821, -0.144825, 0.367620, -0.142628, 1.009105, 0.028088, -0.682879, -0.755734, 0.216086, 0.711905, 1.269009, 1.052855, -0.954055, -1.217704, -0.076662, -0.041843, 0.510446, -0.947420, -0.283176, 0.226060, -0.466057, -0.061122, 0.946984, -0.855128, 0.540702, 0.525191, 0.161850, 0.028560, -0.409095, 1.284615, 0.325593, -0.847021, 0.513871, 0.205773, 0.582434, -0.245673, -1.126008, 1.128173, -0.716222, 0.946040, -1.303834, 0.272117, -0.759836, 1.294235, -1.801852, -0.264292, 0.761123, -0.488240, 0.030704, -0.576573, -0.799884, 0.382460, -0.326242, -1.020764, 2.012962, -0.493112, 0.777578, 0.338564, -0.096767, 0.975525, 0.738551, 0.193163, 0.648066, -0.617337, -0.805184, -0.049253, 1.032000, 0.552918, 0.389483, 0.217783, 0.784359, 0.949948, -1.573999, 0.132809, -0.210008, 0.227654, -0.222163, -1.515145, 2.102382, 0.530020, -0.140866, 0.187320, -0.397628, 0.347515, 0.487305, -0.376161, -1.595558, 0.486900, -0.299084, -0.115807, 1.076742, 1.647478, -2.662083, 0.931876, -1.473537, 0.945647, -1.537945, 1.006837, 0.872007, 1.154192, -0.135422, 1.421912, -0.006298, -0.726809, 1.638857, -0.768131, 0.059250, -1.286659, 0.223529, 1.472108, -1.562910, -0.516101, -0.978386, 0.261524, 0.067219, -1.549361, 0.547936, -0.104764, -1.216422, -0.378732, 0.564135, 1.452287, 1.876404, -1.680602, -0.822061, 0.937479, 0.615516, 0.599575, 1.533458, -0.890088, 0.522776, -2.854117, 2.320244, 0.388879, -0.389888, 0.455235, 0.295684, 1.563179, -0.871747, 0.309036, 1.594712, 0.210101, -0.492190, -0.662566, -1.338976, 0.566235, -1.288773, 0.718287, -0.876564, 1.182189, 1.034080, 0.542032, -1.434643, 0.647351, 1.308984, 0.658362, 0.341634, 1.367687, -1.035447, -0.756976, -0.831769, -0.312966, -0.260625, -1.389426, -1.250990, -0.160787, 1.137220, -0.299648, -0.248941, -0.581429, -0.631343, -0.475784, 0.360374, -0.618511, -1.569376, 0.332820, 0.575447, -0.972190, -0.953109, -1.652333, -0.416522, 1.190706, -0.916058, 0.166155, -0.086494, 0.003397, -0.188485, -0.024024, 0.333510, 0.529733, 1.768549, 0.754436, -1.503722, -1.835428, 0.548523, -2.067754, -0.148840, 0.883645, 1.827315, 0.647267, 0.849674, -0.953655, -1.808820, 0.161266, 0.632572, -0.453001, 0.123088, -1.612214, 0.442415, 0.193868, -0.012294, 1.517930, 1.124382, -0.756879, 1.162058, -2.235952, -0.367381, 1.364506, -0.040604, -0.181010, 0.886222, -1.775406, -0.933216, -1.519562, 1.422214, 0.209427, -0.155873, 0.210300, 0.134160, 1.211529, -1.802308, 0.515630, 1.641126, 0.689008, 0.043007, 0.589520, 0.935665, -0.813095, -0.720976, -0.693965, 0.682387, -0.047922, -1.558724, 1.987596, 0.932124, 0.887283, 1.912086, -1.299665, -0.077051, 0.126033, -1.148273, -0.120544, 0.578289, 0.801707, -0.304225, -0.469446, -1.017890, -0.962110, 0.806902, 1.311600, 1.187824, -2.629572, -1.202088, 1.273359, 1.887361, -0.642433, 1.306468, 0.766928, -0.950644, -0.303460, 0.169253, 0.698658, -1.105081, -0.058064, -0.883515, -0.198951, 0.560059, -1.973132, -0.167510, 0.157681, 1.615469, -0.314562, -0.772741, -0.298139, 1.643603, 1.720051, 1.530203, -0.623360, 1.214878, -0.970001, 0.910209, -1.006051, -0.090853, -0.036730, -0.022288, 0.576968, -0.012129, 1.735744, -0.043744, 2.147399, 1.423504, 0.888891, -0.941176, -0.914758, -0.264422, 0.154247, -1.014878, -0.011012, -0.062793, -0.365773, 2.523519, 1.783464, 0.368886, 0.680752, 2.454685, 0.716968, 0.712061, -0.053589, 0.593336, -0.427347, 0.580925, 0.588111, -0.363578, 0.477619, -0.970110, 0.653638, -0.255987, 0.537856, -0.322035, 0.018959, 1.341503, 1.378237, -0.518096, -0.291986, -2.383266, 1.354055, 0.322570, 0.474119, -2.190690, -0.235221, 0.932107, 0.223629, -0.605306, -0.010049, 0.399634, -0.443307, 1.176211, -0.708537, 0.787653, 0.024496, 0.225631, 0.697763, -0.303147, 0.394061, -1.406711, 0.933753, -0.417042, -1.621655, -0.005629, -0.104089, -0.018177, -1.396924, 1.182165, -0.915042, -0.989190, -0.931818, 0.199863, -1.164411, 0.035943, -1.123842, -0.726692, 0.475951, -0.101742, 0.674788, 0.847375, 0.148091, 1.000266, -1.646230, -0.378429, -1.106680, 1.467531, -0.083979, -0.752996, -0.011458, 0.715144, 0.761876, 1.115057, 0.086972, 0.590307, -0.649086, -0.589264, 0.866955, -0.418955, -0.923752, 1.245276, 0.106807, 0.634579, -2.190740, 0.652071, 1.903773, 0.280164, -0.324085, -0.354360, 0.018221, -2.151176, -0.498744, 0.230777, -0.569936, -0.036628, -1.789605, -0.856402, -0.853208, 0.730745, 0.190610, -0.229136, -0.504730, -1.447500, 1.542168, 0.150378, -0.891806, 0.984614, 0.882121, 1.240062, -0.189251, -0.336081, 0.882380, -0.469770, 0.186600, -1.199768, 0.883424, -0.361033, -1.321942, -0.153831, 0.770083, -0.426436, -0.964800, -0.953939, 0.299613, -0.793931, -0.787713, 0.153326, 0.575251, 1.056142, -0.630192, 1.135133, 0.296740, -0.362268, -0.515882, -1.379330, -0.091961, -0.801024, 2.285999, -0.117616, 1.558606, -2.038399, 0.856770, -0.980715, 1.326690, 0.429703, 0.666089, -1.557004, 0.324893, 0.588794, 0.370877, -2.240965, -1.030808, -0.363712, 1.606537, 1.056159, -0.225490, 1.362141, 0.952315, -1.919861, -0.534532, -0.962749, -0.553841, -1.181948, 1.173754, -1.570500, -0.806858, 0.989303, -0.132119, 0.356266, 0.430132, -0.821426, -0.616771, 0.794070, 0.227103, 0.165308, 1.187267, -0.605798, 0.945808, -0.514199, -0.363247, -0.275213, -0.141464, -0.554355, -0.753045, -1.087246, -0.962494, -2.295231, 2.494291, 1.174601, 0.621080, 1.303096, -1.748542, 0.657429, -0.911710, -1.794990, 0.662236, -0.751830, 0.629277, 0.847901, 1.597533, -0.212010, 0.227406, 0.279594, -1.693786, 1.231303, 0.010829, 2.509286, -0.287808, 1.092718, -1.409460, -1.129427, 0.939660, -0.619020, 0.917412, -0.103279, -0.335687, -1.525955, -1.494753, 0.542674, 0.129437, 1.894534, -1.294623, -0.498218, 0.176489, -0.110692, -0.420677, 0.713729, -1.598181, -0.957914, -1.337547, 0.023698, -0.285161, 0.232140, -0.781073, -0.040973, 1.183703, -0.692324, 0.670933, -0.414949, 0.242312, -1.121752, 1.063712, 0.071522, -0.790074, -1.060368, -0.967597, 0.667568, -0.512581, 0.508028, 1.216053, 0.298135, 0.101781, -0.197221, 0.223722, -0.952113, 1.767540, -0.716713, 1.029834, 0.094344, -1.914947, -0.432848, -1.600961, 0.524762, 0.199797, 1.255647, 0.243163, 2.695452, 0.189915, -0.518012, -1.006203, 0.754227, -0.808953, 2.201628, 1.221990, -1.157120, -0.308827, -0.029266, 0.072014, 2.096768, 1.621062, 1.756547, -0.599873, -0.129024, 0.323896, -0.628606, -1.562733, -0.946005, -0.414196, -0.384258, 0.472222, -0.699227, 0.618444, -1.038929, -0.762177, -0.296663, 0.950127, -0.057706, -0.720077, 3.099193, -0.478931, 0.511509, 0.180634, 0.667542, -1.792011, -0.303764, -1.652293, -1.280203, -0.062729, 0.596576, -0.263964, -1.193720, -0.303549, 0.216534, -0.796900, 0.040397, -0.251684, 0.297526, 0.912297, -1.034247, -1.017054, -1.206869, 1.352986, 0.969517, -1.595762, 1.099380, 0.543110, -0.479170, -3.358348, -0.127788, -0.558697, -0.456841, -2.552514, 1.062199, -1.648405, -0.676737, -0.572096, -0.510583, -0.111546, -0.774599, -0.382882, -0.827536, -0.272139, -0.176061, 0.757217, 1.647794, -0.819430, -0.867901, 0.838656, -0.361105, -1.078085, 2.461106, 1.291247, 1.366076, -0.027307, 1.716192, 1.454110, -0.984450, 0.562563, -0.404285, 0.570545, -0.616408, -1.294423, -0.260217, -2.380855, -1.358480, 0.665907, 1.369127, -0.519710, 0.425237, 0.089161, -0.558228, -1.228448, 1.984715, 0.326622, 0.560814, 0.179908, 1.102964, 0.634109, 0.836891, 0.298898, -0.430326, -0.394783, 0.579352, -1.177464, -0.198226, -0.121994, 1.923454, -0.006262, -0.706024, 0.305504, 0.588560, 0.601342, -1.400091, 2.379891, -0.824755, -0.056605, 1.274209, -0.408111, -0.527862, 0.041188, 0.380470, -0.451442, 0.363334, 1.402236, -0.232648, 1.329393, 0.402984, 1.173035, -0.467945, 0.522728, -0.533722, -0.656040, 1.288262, 1.193023, -1.313586, -0.340013, 1.489951, 0.474619, 0.362209, 1.583132, -1.180411, -1.787519, 0.829754, 0.722097, 0.873255, 1.238939, -0.517981, -0.229627, -0.422582, -0.624532, -1.337405, -0.737128, -1.412669, 0.986173, 0.438277, -0.019205, 1.021370, 0.598993, -0.148298, -0.763043, 0.579651, 0.422510, -0.509580, 1.072799, -0.983634, -1.027078, 0.749448, -1.316331, -2.035858, -0.902220, -1.118457, -0.350836, -3.290744, 1.538079, 0.593238, -0.548930, 1.220102, -0.021955, 0.441516, 1.193944, -0.977958, -0.792941, 0.333881, 0.459984, -1.270217, -0.316534, -0.474043, -1.435200, -0.098169, -0.146348, 0.302231, 0.018440, 0.451915, -0.408195, -0.160546, -0.148002, 0.170020, 0.577289, -1.218128, 1.333437, -1.782829, -0.953887, 0.193308, 0.009397, -1.558472, -1.079982, 0.967111, 0.935985, 1.104000, 0.306498, 0.048959, -1.535052, 0.218331, -1.639868, 0.246992, -1.486356, 2.848007, -0.181802, -0.927040, -0.666915, -0.692319, 0.473089, -1.191594, 0.467454, 0.529816, 1.023217, -0.796036, 0.664019, -0.996616, 0.182204, 0.242223, -0.030521, 0.794364, -0.692690, 1.744260, 0.251815, 0.283903, -0.590698, -0.774000, 1.273107, 1.231728, -1.476550, 0.349324, -1.163586, 0.503046, -0.708940, -0.720347, 0.795058, 0.933600, 1.018722, -1.971080, -0.157388, -0.907509, -1.537901, -1.533309, -0.783092, 0.334103, 0.536473, 0.074305, -1.499410, 1.870492, 0.188172, 0.301038, -0.524217, -0.600346, 0.296362, 1.886847, -0.532337, -0.120864, 0.855696, 0.948470, -0.873934, 0.411673, -0.108981, 0.239930, 0.517267, -1.673661, 0.630848, -0.781659, -2.124833, -0.147121, 1.412322, 0.066195, 0.024525, 0.491079, -1.417892, 0.594024, -0.105015, -2.475106, -0.323457, -0.111461, -0.727591, 0.477356, -0.840608, 0.328171, -0.234355, -0.424616, -0.526582, 0.626653, 1.784402, 0.362903, -0.267303, -0.782190, -0.909535, 1.244296, -0.407208, -0.119454, 0.389337, 1.345816, -0.735962, -0.924169, -0.607997, -1.319383, -1.333291, 0.722979, -0.680176, 0.220947, -0.298770, 0.852112, -0.611865, 0.895760, -1.391772, 0.390544, 0.453035, 0.344289, 1.386752, -0.419754, 0.070027, 0.901925, -0.629054, -0.525925, -0.224853, -1.738995, 1.056784, 0.283250, 1.673737, -1.492004, -0.807594, 1.616719, 0.059522, -0.525472, 2.103395, 0.618304, 0.048548, 0.434617, -0.442420, 0.647397, -0.853310, -0.183788, 0.047155, 0.066744, -0.433075, -0.912800, -0.345984, 0.969438, 1.108527, -1.094352, 0.927107, 0.654865, 0.999573, -0.500909, 0.234292, 0.298394, 0.071158, -0.753990, -0.024070, 0.394929, -0.313079, -1.811564, 0.674493, -1.397763, 0.922982, -0.267128, -0.957053, 1.480111, 0.353777, -2.088970, 1.858404, -0.040560, -1.235375, 0.139376, -0.983130, 0.240955, 0.714288, 0.885126, 0.220309, -0.792366, -1.187943, 1.461065, 0.183228, 0.423110, -0.580854, -0.690032, 1.093411, 0.662932, -0.005757, 0.767360, 0.520753, -0.617891, 0.317027, -0.373111, 1.942600, 0.854538, 0.127914, -0.318061, 0.339670, 1.777531, 0.867699, 1.043440, 0.221468, 0.447914, -0.200078, 0.199318, 0.551104, -2.190970, 0.255184, -1.608382, -1.278952, 1.571371, 0.249518, 1.058376, -0.789240, 2.812099, 0.725047, 0.542104, 0.256587, 0.239273, -0.114991, -0.099124, -1.114297, 0.628005, 0.082941, 0.307606, 1.056695, -1.765013, -1.586355, 1.027566, -0.065029, -0.635301, -1.667406, -0.513803, 1.136289, 0.122947, -0.146331, -1.145963, 1.184713, 1.233809, 0.176630, -0.593536, -0.962742, 0.508538, 1.265618, -1.282028, -1.208776, 0.736253, 1.441993, 0.852333, 0.540907, 0.275650, -0.861491, 0.549781, 0.364437, 1.706620, 0.551301, 1.011261, 0.667913, -0.666879, 0.505472, -1.109132, -0.019596, 0.736578, -0.261241, -0.603579, 0.487883, -1.498205, -1.385296, 1.253567, 0.527889, 0.072070, -1.229519, 0.021725, -0.232425, -0.457872, 1.274671, 0.864985, 0.141963, -0.103384, 0.625382, 0.850684, 0.098495, -0.889554, -1.130785, 0.031865, 1.588821, 0.963561, 0.442547, 1.164780, 0.754968, -2.020823, -0.621038, -0.944792, -1.131911, -0.987944, -0.638715, -1.900232, -1.561238, -0.561367, -0.448166, -1.050050, 1.056443, 0.441451, -1.391055, -0.816149, 0.776623, 0.159550, 0.692669, 0.344331, 0.042670, 1.713334, -0.364159, -0.390255, 1.319268, 0.933050, 0.309050, -0.592574, -1.628771, -1.857893, -3.068927, 0.214256, 0.302144, 0.254882, 0.438567, -0.278715, -0.955446, -1.259480, -0.479821, 1.476324, -0.152102, -0.076762, 2.891149, 1.164605, 0.449336, 1.181607, -0.761865, -0.339467, -0.930732, 0.267239, -0.159446, 0.077732, -0.145504, 0.879262, -1.327493, 0.737494, -1.304277, -0.824024, -0.479485, -1.208102, -0.622517, -0.598328, 0.673618, -0.330795, -2.187228, 0.322942, -0.373992, 0.803198, -0.039636, 1.115615, -0.060927, -0.688936, 1.059522, 0.224974, -1.749339, 0.182948, 0.100304, 0.058683, -0.416857, -0.123788, 0.216024, 0.295013, -0.640923, 2.268791, -0.326884, 1.283744, -0.624295, -0.712606, 0.246953, 0.354621, -0.986225, 1.007678, -1.115502, 0.878721, 1.689297, -0.383738, 1.043325, 1.691676, 1.486106, 2.696296, 1.178405, 0.221530, -0.908419, 0.328012, -0.374297, -2.623704, -2.309197, -0.716143, 1.266856, 0.346911, -0.265984, 1.047110, -0.112382, 1.365114, -0.030201, 0.533709, -0.332707, -0.261632, 0.946086, 0.064392, 0.794587, 0.437872, 1.562116, 1.256813, 0.574278, 0.349693, -1.506280, 0.465180, -0.268917, -0.551112, -0.632856, -1.891182, 1.499568, -0.671930, -0.080869, -0.487188, -0.337470, -0.673157, 1.129903, 0.031568, -0.437237, -0.576593, -0.897238, -0.104980, 0.087607, 2.342418, 0.864323, -1.211711, 0.640604, 1.931100, -1.033041, 1.807031, -0.609410, 0.192863, -0.230001, -0.204107, -1.257146, 0.235375, 0.497319, -0.522283, -0.047603, 2.247055, -0.472672, -0.742728, 1.887584, 0.297853, 0.019960, -0.346045, 0.642405, 0.908946, -0.190561, -0.903710, -0.200454, -2.026911, -1.987453, 0.441738, 0.803257, 1.005574, 0.304628, -0.810955, 0.719511, -0.061451, 1.819792, -0.801520, 1.559348, -0.082772, 2.704689, -0.026683, 0.844406, -0.694418, -0.047838, -0.671424, 2.624848, 1.394493, -0.180582, 0.721058, -0.125405, -0.871509, -0.265418, -0.435092, 0.514038, 0.000100, -0.302822, -0.822031, -0.010094, 0.864020, -0.714704, -1.123714, 0.660663, 0.336561, 1.147660, -2.273621, 1.129006, -0.178031, -1.377156, 0.792094, 1.170925, -2.218573, 0.337177, -0.612150, 0.719061, -1.819574, -0.947904, -0.242153, -1.994135, 0.836154, -0.569495, 0.998790, 1.436393, 0.080266, 0.314516, 0.891994, -1.376253, 1.360397, -0.165339, 0.866988, 2.559131, 0.777232, -1.187380, 1.287731, 0.094124, -0.730634, 0.485846, 0.513444, -0.818649, -0.455261, 0.580234, -0.878480, -1.731625, -0.131472, 1.166456, 0.910154, -0.902469, 0.590506, 0.428243, 1.010460, 2.472925, 0.255461, -0.858515, 1.170253, -0.357613, -1.214351, -1.245906, 0.238280, 0.082317, 1.852567, -1.318894, -0.858178, 0.339556, -0.643254, 0.907428, -0.033898, 1.877326, 1.533348, 0.975519, -0.446442, -1.541719, -0.984386, 0.018960, -0.697507, 0.559199, 0.723013, -0.773009, 0.493163, -1.300100, -0.493068, 1.902532, 1.547151, -0.303401, -0.508648, 0.270874, 0.507754, -0.616424, 1.134995, -0.937899, 0.238074, 2.290282, -0.390994, -0.975604, -0.155326, -0.178728, 0.511132, 0.398456, 1.100996, -0.757965, 0.870789, 1.209118, 0.617684, -0.132987, 0.129870, 0.179757, -1.401115, 0.496647, 0.496407, -0.901952, -0.121360, 0.549526, -1.048672, 0.090208, 0.596081, -0.445324, -1.725782, -0.956257, 0.226075, -0.248751, -0.247744, 1.002601, -0.774292, 0.167107, 0.533074, -0.040924, -0.157621, 1.437727, 0.304615, 0.319718, -0.303391, 2.116110, -0.405676, 1.252120, -0.037453, -0.008630, -1.969046, -0.692743, 2.409692, 0.126349, 0.636677, -0.437878, -0.823856, -0.162109, 0.868169, -0.689817, 0.275756, 1.306606, -0.073079, -1.154076, 1.638784, -0.192958, -1.113801, 2.071736, 0.495999, -0.046639, 0.236917, -0.719900, -1.269621, -0.803141, -0.634999, 0.167393, 1.458770, 0.944166, 0.217359, 0.934394, -2.149999, -0.102730, 0.291910, -0.483770, 1.106285, -0.261264, -0.495627, -0.504177, 0.268520, -0.197266, 1.430473, -1.499636, -1.068286, 0.035220, 1.113044, -1.479456, 0.756326, 0.319994, 1.437050, 1.778368, 0.761751, 0.188487, -1.126828, -0.167963, 1.391164, 0.626894, 0.996698, 0.342408, 0.252847, -0.223673, 1.989495, 0.206736, -1.098589, -0.939435, -1.544804, -0.940315, -0.814343, 1.727745, -0.211864, 1.713724, 0.622814, -1.097588, -1.328360, 0.464264, -1.404117, -2.184486, 0.319263, 0.412176, 1.341600, 0.036501, -1.143893, 1.207517, -0.743986, -0.225329, 1.573940, -1.041914, 0.389225, 1.620758, -2.315213, -1.738401, 0.077456, -1.885578, 1.180387, -0.651181, 0.169728, -0.838826, -2.134971, -0.867158, 0.502595, 0.142177, 0.049358, 2.363822, -0.887378, 2.034538, 2.519930, 0.049951, -0.876273, -0.980878, 0.456311, 0.778226, -0.144836, -1.291349, -0.797972, -1.301330, -0.309712, 0.826805, 0.580028, 0.551396, 1.410279, -0.236090, 1.064316, -0.379266, 1.010815, 0.765353, 0.612462, 0.533685, -0.734670, -0.702826, 0.902122, -1.025042, -1.077872, -0.280234, 0.768349, -0.873531, 0.617642, 1.164467, -0.982887, 1.284477, 0.507335, -0.189306, 0.837987, 2.037528, 0.484350, 1.602050, 0.263021, 0.097864, 1.608288, -1.080719, -1.339452, -0.861968, -2.282254, 0.797448, -0.025785, 0.823465, -0.930541, 1.080138, -0.105426, -0.149637, 0.728237, 0.958368, -2.512169, -0.648876, 0.450217, 0.471417, 0.069004, -0.112511, -0.836981, -0.780356, -0.401388, 0.631717, -0.709272, -0.169853, -0.867400, -0.114735, -0.250278, -0.589930, 1.565497, -0.242609, 0.531088, 0.315663, 0.459644, -0.195170, -0.230764, 0.378899, -0.062841, 0.695626, 0.121692, -0.879932, -2.399155, -1.839934, -0.566015, -0.406802, -0.996987, 0.963469, 1.014006, 0.270777, 0.619836, 0.330515, -0.433092, -0.610199, -0.454567, 1.874223, -0.812274, 1.479860, 0.293079, 1.079191, -1.665428, 0.698277, 1.251763, 0.217812, 0.816184, -0.205709, -0.452428, 0.672523, -0.922743, -2.879743, 0.675595, -2.220519, -0.298541, 1.404589, -0.509544, 0.204987, 1.988579, -0.843112, -1.309876, 0.018853, -0.272084, 0.799356, 0.050541, 1.056019, -0.222319, 0.227980, 1.184379, 0.032781, -0.264699, -0.110375, -0.215949, 1.965842, 0.170879, 0.928995, -1.201973, 0.418469, 1.172599, 0.950635, -0.945837, -1.105076, 0.811742, 0.990821, 0.042311, -0.959333, -0.666812, -1.304557, 0.475595, 0.002756, -0.720316, -1.420150, -0.341490, 0.796456, 0.070078, -0.053087, -0.748564, 0.117776, -0.935660, -0.978098, 0.656585, 2.443043, 1.158344, 1.581965, 0.849176, 1.335384, -0.821780, -1.552891, 0.134091, -0.475488, -0.316487, 0.493461, -0.685609, 0.750872, 1.335694, -0.058513, 1.445563, 1.201822, -0.946800, 0.281683, -1.246872, 0.130106, -1.172482, 0.874065, 1.029111, 0.337881, -1.866338, 1.405511, -0.405088, -0.902345, -0.362323, 0.481963, 0.789111, 1.150148, 0.088632, 2.682568, -1.272945, 0.844879, -1.080114, -1.274087, -0.026501, -1.314465, -1.031805, 0.299062, 0.808069, 0.628225, -0.547387, 0.714948, -0.247041, -0.120229, 0.284313, 0.693740, 1.314882, 2.263302, 0.319014, 0.165651, 0.571691, 0.623252, 0.260181, -1.833646, 0.990031, -0.289431, -0.409693, 1.082961, 1.152201, -0.348899, -1.637911, -0.213421, -0.178989, -0.492583, -0.347373, -0.099031, 1.177058, 0.062711, -0.416057, 1.449955, -0.251558, -1.009918, -1.014540, -3.107098, -0.343748, 1.482357, -1.136439, -1.685111, -2.002580, -0.130317, -0.088109, 0.261270, -0.539753, 1.846484, 0.450707, -0.319699, 0.858138, -0.786194, -0.413516, 1.465221, 0.812131, 1.751616, -0.586267, 1.053182, -0.389006, -1.207141, -0.456188, -0.682035, -0.113984, -0.218750, -0.813892, -1.150459, 0.365009, 0.257702, -0.808845, 0.332905, 0.330440, -0.733580, -0.621455, 1.069198, 0.232972, -0.173688, 1.089804, 1.077080, -1.537364, -1.160265, -0.827133, 2.969784, -0.380828, -0.174024, 0.895129, -0.595677, 1.369341, -0.742931, 1.821479, 0.840993, -0.288871, 0.458630, 0.666277, 0.241158, 0.191612, 0.036389, -1.152994, 0.349647, 0.611416, 1.108040, -0.449885, -1.075631, -0.057494, -1.911325, 0.083033, -1.049838, -0.432355, 1.244782, 0.986063, 0.436598, -0.085157, -0.472627, -0.655530, 1.098706, 0.290803, 1.287088, -1.332629, -1.046975, -1.254226, -0.197748, 0.446187, 0.338644, -0.701213, 0.828524, 0.645492, -0.813817, -0.697010, -0.083626, 0.874070, 0.631169, 0.167962, 1.979197, 0.518246, 0.002537, -0.093608, 2.074943, -0.969589, -0.767457, -0.626315, -1.170803, 0.365757, -0.286812, 0.310755, 0.644034, 0.386650, 0.026644, 0.668145, -0.023332, -2.174154, -0.590257, 0.185610, -0.279616, 0.150596, -0.533425, 0.325675, -2.208292, 1.302406, -0.350507, 0.749857, -1.247586, -0.024519, 0.832427, -0.210042, 1.213729, -0.692158, 1.393602, 0.496035, -0.017001, -0.157795, 0.422846, -0.690903, -0.478644, 0.271725, 1.028905, 1.307697, -0.873003, 0.375732, 0.223415, 1.521141, -0.103832, 0.845385, -0.902537, -0.191197, -0.520706, 0.715710, -0.144872, -1.069634, 0.228421, 3.094215, -0.241571, -0.174412, -1.226843, 0.841745, -0.277049, 0.227562, 0.667720, -2.239697, -0.793509, -0.910455, 0.027401, -1.830518, -0.243316, 0.168970, -2.414641, -0.147897, -0.620089, 2.558652, -0.000057, 1.661484, 0.677712, 2.488127, -0.568762, -1.201332, -1.723140, 0.158921, 0.460419, -0.740550, 0.564684, 0.171478, -0.563114, -0.109429, 0.823484, -0.738401, 0.920455, 0.791381, 0.334914, -1.621531, -0.847671, -0.130315, -0.537176, -0.700846, -0.494190, -1.096820, -0.056814, -1.836258, -0.896149, 1.626858, -0.272714, -0.551725, 0.166678, 1.343282, -0.211742, 0.018142, -0.362325, 0.464796, -1.238167, -0.684141, 0.535091, -0.758839, -1.982718, -1.209737, 0.433154, 0.338704, -0.048311, 0.069631, -0.278169, 0.595718, -1.162647, 0.163905, -0.128582, -0.887832, -1.531715, -0.481626, 0.628036, -1.796754, -1.570508, -0.604021, 0.234261, 0.320008, -0.765202, 0.087421, -0.393904, 0.234731, -0.405125, 0.246564, -0.172009, 0.076080, 1.493095, -0.827760, 1.292185, 0.130032, -1.630737, -1.161111, -0.390723, 0.211540, -0.496253, 1.050335, 0.183662, -0.347180, -0.676433, -1.164106, -0.195154, -0.222503, 0.711885, -0.718925, 0.764717, 0.081814, -1.651702, 0.639418, -1.388937, 0.500354, -0.029187, -1.250546, 1.773692, -0.272374, 0.326819, -0.261313, -0.738117, 2.001954, -0.761357, 0.362197, 1.516437, 0.196018, -0.989632, -0.910374, -0.223146, 0.504880, 0.336588, 1.570307, 0.663175, -0.365961, 0.720082, 0.255691, -0.398342, -2.252949, 0.896608, 1.016340, 0.307385, -0.019093, 1.362621, 0.333366, 1.089450, -0.792678, -0.048040, 1.142190, 0.357204, -0.004240, -0.250458, -0.798590, 0.417309, -1.303907, 1.389667, 0.522712, 0.006600, 0.370091, -1.109512, -0.357632, -2.379878, 0.603968, 0.018663, 0.055206, 1.358885, -1.209405, 0.025900, 0.356927, 1.959827, -0.287294, 0.896338, -0.218103, 0.970927, 0.712794, 0.578861, 1.404701, 0.318558, 1.164792, -1.409568, 0.973918, -0.815496, -0.214010, -1.409923, -0.925293, -0.357835, -0.667657, -0.276477, 0.486161, -0.874614, 0.180940, 0.532994, 0.121336, 1.054200, 0.760681, -0.078399, 0.621015, 0.607999, 0.352320, -0.106320, 0.320432, 0.383911, 0.266024, 0.697116, 0.867710, 0.080710, 2.035456, -0.281142, 0.025039, 3.302772, -0.296941, -0.190671, -0.173798, -0.834814, -1.201109, -0.434305, 0.405013, 0.308712, -0.711574, 1.803364, -0.070834, 1.233203, 1.552413, -0.285635, -2.380870, 0.480311, -0.107579, -0.458753, -1.096381, -0.210808, -0.199755, -1.408006, -0.482792, 0.724200, -0.050026, -0.055566, 0.018171, -3.453251, -1.452587, -1.605376, 0.473555, 0.836121, 2.006517, 0.919471, -1.828668, -0.215271, 0.910352, 0.224749, 0.486680, -1.428302, -1.787159, 0.171893, -0.737114, -0.275540, 0.247846, -0.354593, -0.260594, 1.422811, 0.609530, -0.197687, 0.843860, -0.856948, 1.198039, -0.882144, -0.249322, 1.893704, 0.853703, -2.073418, 0.648907, 0.765741, -1.588450, 0.612558, -1.239891, -1.501171, 1.242420, -1.883491, 0.718154, -2.456889, 0.451654, -0.135719, 0.519739, 0.491944, 0.277727, -0.680570, -0.075004, -1.013855, 0.577856, -0.443291, -1.673644, 0.092935}, - { 0.940526, 0.887387, 0.309132, -0.937364, -1.405484, 0.042481, 0.992950, -1.340081, -0.015140, -0.574928, -0.507835, -1.142446, 0.824822, 0.993765, -1.133806, -0.390372, -1.992765, 0.898597, -0.583480, 0.876658, -0.876132, 0.407157, 1.640619, 1.006239, 1.135340, 1.241958, -0.240657, -0.799536, -0.768057, 0.199818, -1.315046, -1.600416, -0.012148, 0.130446, -0.235852, 0.205656, -1.484646, 1.288140, -0.068559, -0.228333, 0.831898, 1.768803, -1.585690, 0.652062, 0.209220, -1.771986, -0.978867, 0.586275, 0.402439, -0.043299, -0.306034, 0.159427, -0.006557, -0.690996, 2.300789, 0.587313, 0.391062, -0.940961, -0.674125, 0.700082, -0.681964, -0.615783, -0.081372, -0.896282, 0.232699, -0.255126, -0.100263, 1.214195, 0.723305, 0.152433, -0.257539, 1.419703, 0.872340, -0.987622, -0.251330, 2.327261, 0.103543, 0.931798, 1.312482, 0.138533, 0.394271, 0.695938, -0.409393, -1.399902, 0.139501, -0.231048, 0.711327, 0.608661, -0.646272, -0.920056, 0.253304, -0.339334, -2.043987, 1.514823, -0.045538, -2.004462, -0.722375, -0.989673, -1.623197, -0.410901, -0.757147, 2.119746, -0.101556, -0.050354, 0.871860, -1.343920, -0.971318, 1.069508, -0.281959, -0.156714, -0.699701, 0.676886, -0.394877, 0.124446, 0.867944, 0.155741, -2.323891, -1.117519, 0.544463, -1.448807, -1.599253, 1.022935, 0.071111, 1.069493, 0.049684, -0.485061, 0.917281, 0.970418, -0.040711, 1.045886, -1.508376, 0.866566, -0.839336, -1.175106, 0.599689, -0.208608, 0.807379, 0.724269, -1.442641, -1.123863, 0.241164, -0.353247, -0.858006, -0.582642, 1.563841, -0.825886, 1.132508, -1.809314, 0.126486, 1.387790, -0.437504, -1.401641, 0.506998, 0.522143, -0.190632, 0.141195, -0.618607, -1.077614, 0.522254, -2.197108, 0.423611, -0.505221, 0.261767, -0.512533, -1.937629, 0.620771, 0.739900, -0.349168, 2.972752, 1.011305, 1.081848, 0.267255, 0.891520, 0.242948, 0.160616, 0.571391, -0.556764, -0.416337, 0.228978, 0.847622, 0.083379, -0.288222, -0.146149, -0.190783, 0.937473, 0.374239, -0.862612, 0.063180, -0.503953, -0.821632, 0.865393, 0.061638, -0.558521, -0.667048, -0.549572, -0.348509, 0.093502, -1.038754, 0.584890, 2.492065, -0.064212, 0.784852, 0.048595, -1.606579, 2.401086, -0.642349, 0.523450, 0.266800, 1.871073, 0.260841, 0.759216, 0.263080, 0.840160, 1.298602, 0.931528, 0.902908, 2.401204, -0.315305, -0.823406, -1.437014, -0.329049, -1.381237, 0.133680, 0.798418, -0.584474, -0.225122, 1.117085, 1.080177, -0.304421, 2.512603, -1.522030, -0.388842, -0.142835, -0.931814, -0.232359, 1.911014, 2.263468, -0.272604, 1.236671, -1.331730, -1.247643, -0.540547, -1.933454, -1.061987, -0.178697, 1.992812, 0.504918, 0.111620, -0.189832, -0.631413, -0.156127, -1.206439, -0.385447, 0.463096, -0.801485, -0.162023, 0.000562, 1.128822, 0.339864, 0.416473, 0.700814, -0.223725, -0.827491, 1.097825, -1.265630, -0.727988, 0.227635, 0.912893, 0.008795, -0.074968, 0.898770, 0.161034, -2.745800, 0.992101, 0.407895, 0.598136, 0.674322, -0.398716, 1.326816, -1.694708, 1.716335, -0.180579, 0.244268, 0.209196, 1.331395, 0.434155, 1.600800, 2.192872, 0.673845, -0.221391, -0.884999, -0.659403, -1.614005, -0.136580, 0.761343, -1.303276, 0.867821, -0.380751, -1.114501, -0.185373, 0.282322, 1.141597, -0.192928, 1.257557, -2.113192, 0.346356, 0.656475, 0.366368, 0.507368, -0.192517, 2.086732, -0.568287, -1.367349, -1.128475, 0.292438, -1.225625, 1.716491, -0.203610, -1.175708, 1.574390, 0.032061, -1.078944, -1.076593, -0.907408, -0.026308, 0.037099, -0.987890, 0.539579, -0.708428, -0.743176, -1.488049, 0.649591, -0.826594, 1.874313, 1.620186, 0.145343, 0.223312, 1.592611, -1.291578, -0.008859, -0.172940, -0.723387, 0.876983, -0.499470, -0.969061, 0.200791, 1.098158, 0.281714, -1.343299, 1.843204, -1.119645, -1.434076, 0.787892, -0.889741, 2.804718, 0.338952, 1.360404, 0.316914, -1.903448, -1.491209, -0.955582, 0.313923, 1.715639, -0.388586, -0.565613, -1.265825, -0.966466, -0.326571, 0.232721, -0.688230, 1.451941, -1.432288, 1.382565, 0.718879, 0.806800, -1.294727, -0.101493, 0.836169, -0.704357, 0.345892, -1.012159, 1.463798, 0.891712, 1.576033, 0.004615, -0.091832, -0.591403, 0.890560, -0.115643, 0.182762, -0.663205, 0.150053, 1.185333, 1.123098, -0.548641, -1.125101, -0.497673, 0.857784, 0.651230, 2.220247, 0.562432, -1.319893, 0.692175, -0.998087, 1.177240, 1.077739, -2.617096, -1.158213, 0.587090, 1.622966, 0.009008, -0.932717, -0.280580, -0.215901, 0.529568, -1.321549, -1.732153, 0.427205, 0.966982, -0.143685, 0.431669, -1.479178, -0.212818, 1.526083, 0.730856, 1.036207, -0.082696, -0.319906, -1.602095, -1.370153, -0.471111, -0.554854, -1.283618, 0.594372, -0.245750, 1.083385, -0.566870, 1.287830, -0.669923, -1.949077, 0.265545, 0.965428, 0.717874, 0.039618, 0.706706, -0.038704, 0.060564, -0.059399, 0.158943, -0.804668, -2.431096, 0.658742, 1.113609, 1.388871, 1.146664, 1.961212, -0.277887, 0.351079, -0.640366, 0.244719, -0.438159, 0.469400, -0.387198, -0.510851, 0.327828, -1.195682, -0.223334, 0.429879, 0.392374, -2.173770, -0.252019, -1.467999, 0.082957, 0.865147, 0.971516, 0.376630, 1.457638, -0.690048, -0.507254, 0.225998, -0.402772, -0.926409, 0.297716, -0.083123, 0.502191, 0.628109, 0.449516, -1.853666, 0.808515, -0.244907, -0.759893, -0.693971, 0.030414, -0.686166, -0.197380, -2.518680, 1.144789, -0.573087, 0.004007, -0.735187, 1.022803, -2.045648, -0.896991, -1.840741, -0.027391, 2.213709, 0.085896, 0.996516, 0.416912, -0.576612, 1.160453, 0.390934, -0.556056, 0.419952, -1.255214, 0.141892, -0.438810, 1.275985, -1.540116, -1.836285, 0.283771, 0.102123, 0.621224, -0.709577, -1.257253, -1.274538, 2.539695, 0.545706, 0.624028, 0.353077, -1.227228, 1.218095, -0.421982, 0.415457, -1.597139, -0.495200, -0.225658, 0.396558, 0.555077, -0.616111, 0.507593, 1.899810, 0.307952, -1.633628, -0.312383, -0.309716, -0.330314, 0.755856, -0.019170, 0.114432, 0.206483, 1.082221, -0.122932, 0.136367, 1.134921, 0.458193, -0.137511, -1.534386, -0.600983, 0.620910, 0.147590, -0.536225, -0.452255, 0.079495, -1.580624, -2.265837, 0.730491, -2.283147, 2.364879, -0.472926, -1.422249, -0.442355, -0.165429, 0.826578, 1.255601, -0.117737, 0.162070, -1.660082, -2.475524, 1.087775, -0.177648, -0.475232, -0.992624, -0.760889, -1.267435, 0.688817, 1.405906, 0.341179, 0.638841, -0.601002, -0.065936, 0.254887, -0.083637, -1.078369, 0.831542, -0.238792, 1.761856, -0.076984, 1.029634, 1.175075, 0.302846, 1.139395, -0.084567, -1.104801, -0.964944, -0.815327, 1.425555, -0.513680, 0.483789, -1.008315, -0.195667, 0.860141, -0.338004, 0.290731, -0.719580, 2.240007, 0.912252, 0.089787, -0.614922, 0.531358, -0.822009, -1.720064, -1.398278, 1.162112, -1.184831, 0.265589, -0.231697, -1.234419, -0.598225, 0.766560, 2.398124, -0.191674, -1.411627, 1.602533, 0.431152, 1.507087, -2.247573, -1.700305, 0.879822, 0.853328, -0.650790, 1.225139, 0.584583, -0.052447, 0.031025, -1.371664, -1.200770, 0.363609, 1.953235, 0.642444, -2.453701, 0.010915, -0.700079, 1.076349, 1.184752, 0.131645, -0.651101, -2.714039, -0.368345, 1.243199, 0.788225, -1.401640, -1.382137, 1.285882, 1.057002, -2.120762, -0.670265, -1.731633, -0.830834, -1.144851, 2.464682, -0.333216, -0.461933, 1.221566, -0.304211, 0.834752, 0.275251, -2.751639, 0.241242, 1.261281, -2.620539, 1.753883, -0.741609, 0.584930, 0.786554, 0.035789, 2.115420, 0.575085, 0.138786, 0.472845, 0.813167, 0.651782, 0.652535, 2.741705, 0.850771, -0.229544, -0.506982, -0.861370, -0.978247, -0.681520, -0.866314, 0.492584, -0.611082, -0.869338, -0.401526, -0.708807, -0.052963, -0.815406, 0.409059, -0.269102, -0.970492, -0.285170, 1.434604, 1.360422, 1.798268, 1.158577, -0.208801, 0.419049, 0.658380, 0.300169, 1.945927, 0.779334, -0.996911, 0.857130, 0.967446, 1.727473, -0.763530, 1.001292, -1.170105, 0.247736, -0.545548, 1.099868, 0.088913, 0.930548, 1.015224, 1.341713, 1.040489, -0.443463, 0.940143, -1.202178, -1.401692, 0.956253, -1.453889, 1.138730, 0.047507, -0.408518, 0.663838, 0.477821, 0.126877, -1.521904, 0.234010, -1.152321, 1.251971, 1.355889, 1.157867, 0.074907, -0.204920, 1.165760, 0.319168, -0.636174, 0.359267, 0.354501, 1.300310, 1.321581, -0.102251, 1.723456, 0.595957, 1.505832, -0.323219, -0.602265, 0.684557, -1.479206, 0.750292, 0.257895, 1.410151, -1.613866, 1.342770, 2.885222, -0.440332, 0.736052, 0.093906, -0.988739, 0.911747, 0.937869, -1.038208, -0.096772, -0.531313, 0.022134, -0.777897, -0.554110, 0.303482, -0.256398, -1.409659, -0.781860, 0.429085, -1.503121, -0.551766, -1.060799, -1.454215, -2.513233, 1.058468, 0.651489, 1.303681, -0.607029, 1.667378, 0.523476, 1.010740, -0.002082, -1.395638, 0.614751, -0.773249, 1.464555, -1.065634, 0.571230, -0.753449, 1.132764, -0.408891, -0.528530, 0.556729, -0.209366, 1.546020, -0.102627, -0.721234, -1.034548, 0.653230, 1.218829, 0.153500, 0.241851, 0.231240, 1.742368, -1.082954, 1.578017, -0.916967, -0.206152, 0.294879, -1.667612, -1.546908, 0.720675, 1.068973, -1.147804, 0.784052, 0.056616, -0.536692, 0.089015, -2.053860, 0.359396, -0.017881, -0.279121, 1.298982, -0.874506, -0.569842, 0.520096, -1.149758, -0.607831, -1.190130, 0.031831, -1.082223, -0.532112, -0.640784, -0.854931, -1.395686, 0.769793, -0.129004, 0.708788, 0.695424, -0.126532, -1.364286, 0.817777, -2.114746, -0.435771, 1.179339, -3.188931, -0.872089, -0.097222, -1.413917, 0.715516, 0.038682, -0.862494, 0.061328, -0.753394, -1.080710, -2.193052, 1.655002, 0.707736, 1.727937, -0.569483, -0.365498, -0.805186, -0.586932, -1.201593, 1.585724, 0.853430, -2.148236, 0.788765, 0.970394, -0.506235, 1.191214, -1.078663, -1.103025, -0.325589, 0.311707, 1.580385, 0.044905, 1.724720, 0.692422, -1.084512, 0.336065, -1.489352, 0.717867, 2.175291, 0.165281, 2.174848, 1.463336, 0.320850, -0.326204, -0.547052, -0.793737, -0.501631, -0.520167, 0.369639, 0.533181, 1.126470, 0.210579, 0.400558, 0.229428, -0.729577, 0.038107, 0.058491, 0.004158, 0.127478, -0.713990, 0.763348, 0.566215, -1.552309, -0.559973, -1.568112, 1.126845, 1.074668, -0.048499, 2.022139, -0.255659, 0.088336, 1.320908, -1.341480, 1.842938, 0.172599, 0.999700, -1.349347, 0.780501, 0.182180, -0.699305, 1.141438, -1.015053, 0.741596, 0.424962, -2.789942, 1.388358, 0.111885, 0.728245, 1.062062, -0.416011, -1.476984, -0.577584, -0.484234, -1.281961, -0.058160, -2.860554, -0.265195, -1.655357, 1.810852, 0.686490, -0.129861, -1.023600, 2.480591, -1.204899, -0.842177, -0.596075, -0.580947, -0.383060, -1.889659, -0.077926, 1.122478, 0.233547, 0.023356, 0.656460, -1.625884, -0.998433, -1.348194, 0.455943, 1.586826, -0.249676, 0.611781, 1.694345, 0.938767, 0.934505, -1.139524, -0.535455, -1.371842, -1.531794, -1.655446, 0.664407, -0.360252, 1.356037, 1.292781, 1.694829, -0.694999, -0.289380, -0.611472, 0.014235, 0.786110, -0.210534, 0.160611, -0.986672, 0.828771, -1.060977, -0.437840, 1.073428, 0.686817, 0.507301, 0.945078, 0.563399, 0.587414, -0.919150, -0.492664, -0.249485, -1.309486, -0.942244, 0.103900, 0.242000, -0.140187, 0.678244, 1.038158, 1.591696, -0.498914, -0.713459, 1.011112, -0.418695, 0.179414, -0.744385, -1.061182, -0.639207, -0.309561, -1.107782, 0.442813, 0.733172, -0.312097, -0.008863, 0.217318, -0.309280, 0.703689, 2.082483, -0.025158, -0.217275, 1.111380, -0.312404, -0.501761, -1.319379, 0.843017, -0.491185, -0.328615, -2.157022, -0.982700, -1.233174, 0.275016, 0.237246, 0.543454, 0.147259, -1.825428, -0.831559, -2.241464, 0.317358, -0.254904, -1.063616, -0.528527, 0.381869, -0.717303, -1.327763, 0.202781, 2.040626, 0.940327, -0.417828, 0.111837, -1.937566, -1.524740, 1.079186, -0.812008, 2.728725, -0.401091, -1.100778, 0.968973, 0.780684, 0.753094, -1.602348, -0.769126, -0.668304, 0.515670, -0.835429, 0.621628, -1.149018, 0.488431, 0.411247, -0.569995, 0.243786, -1.822899, 2.100520, 0.463380, -1.167050, -0.340112, -0.076574, 0.460609, 1.245818, 1.144194, -1.073804, -1.336356, 1.926519, 0.732360, -1.477801, -1.316168, 0.047259, -0.627070, -0.229594, -0.805999, 0.600884, 0.990705, -0.609192, -0.798750, 0.872692, 0.937063, -0.323447, 2.871616, -0.531921, 0.827662, -0.006886, 0.049655, -0.063115, -1.192432, -1.169224, 1.762000, -0.044798, -0.534325, -0.298343, -0.077906, -1.000037, -0.274247, -1.775476, 0.674259, -0.760887, -0.306521, 1.018695, -0.761243, 0.398712, -0.323686, 0.615993, 1.630701, 0.619615, 1.300986, 0.462491, 0.108679, 0.301135, -1.545958, 0.753607, 0.398092, 0.490709, -0.738653, 0.147129, 1.026423, 0.620080, -2.907449, -0.490195, -0.025168, -0.651507, -0.951932, -1.363866, 0.599453, 1.740867, 0.934134, 0.227936, 2.163285, -0.721143, -1.596901, 1.157426, -1.317045, -0.511804, -0.484685, -1.596244, 0.088449, -0.062781, -1.180691, 1.495677, 0.861199, -0.980752, -0.087046, 1.043560, 0.374902, 0.310324, 0.837729, -0.975785, -2.076079, 0.569342, -0.530965, -2.392098, 0.015678, -0.966770, 0.621173, 0.651022, -0.252235, 0.785422, -1.648217, -1.193201, 0.743098, -0.149356, -0.229308, -0.339430, -2.255997, 2.705487, -0.961928, 0.382274, 0.251098, -1.162365, -0.830047, 0.612514, 1.117482, 0.709976, 0.887568, 0.255098, -0.210429, 0.879077, 1.887006, -2.056711, -0.046913, 1.394084, -1.040551, 1.216761, 0.513911, -0.009769, 0.054156, 0.669614, -0.875619, -0.879960, -0.315495, -2.181774, 1.323698, 1.235317, 0.906991, 0.692222, -0.232224, 0.711802, -1.121761, -0.319626, -1.265987, -0.285759, -0.503947, 0.959616, -0.522615, -0.227509, -0.612520, 0.474007, -2.526826, 0.278075, -1.205121, 0.771113, 0.149123, -0.809881, -0.247451, 0.233745, 0.069097, -0.290915, 1.488276, 0.040352, -0.858144, 1.932050, -0.433662, -1.524598, -0.171841, 0.673445, 1.157464, -2.525804, -0.234460, -0.590567, -1.880041, -1.514791, -0.621075, 0.174272, -0.346065, -0.907222, -0.426922, -0.906698, -0.003719, -0.750335, 0.567493, -0.691667, -0.332419, -0.410227, 1.144540, 0.294669, -0.479069, 0.076921, -1.068625, -0.000040, -1.271460, 0.453549, -0.811271, 0.396292, 1.337204, -0.505309, 0.504452, -0.056127, -0.049573, -0.224637, -0.924415, -0.226021, 2.767811, -0.499822, 0.238916, 1.455410, 2.409404, 0.765089, 1.027142, -0.732396, 0.438889, 0.540349, 1.687249, 0.592111, -0.569481, -0.204368, -0.561730, -0.118713, -0.005295, 0.645404, 0.395124, -0.067770, -0.917294, -1.681609, 0.033654, -1.418023, 0.019211, -0.194692, -1.008386, -1.202643, -0.645315, -1.046724, 0.728620, -0.643703, 1.528484, -0.717905, -0.357343, -0.665428, 0.735647, 1.848674, 1.453481, -1.512419, 0.185966, -1.806614, -1.814222, 0.590736, -0.556669, -1.859202, -1.599929, 0.457145, 0.593688, 0.925193, 1.006301, 1.100023, -0.180675, -0.089713, 0.405569, 0.696484, 0.818583, 0.079157, -0.571366, 0.137363, 1.651717, -0.977439, 0.925075, 0.012146, -0.643164, -1.013904, -0.086907, -0.138112, -1.602633, -1.814572, -0.466615, -0.923824, 2.305109, -0.626958, 0.013557, -0.768376, 0.344966, -0.114292, -1.708193, 0.729413, 1.646970, -0.284462, 1.268415, 0.023695, 1.447427, -0.678493, 0.487337, -1.429773, 1.420931, 1.029969, -0.108640, -0.249168, -0.124584, 0.516319, -1.761558, 0.054916, 0.309581, 0.074176, -0.313250, 0.265805, -1.171613, 2.206824, -1.806538, 0.357016, 0.689345, 1.089329, -1.147482, 0.168832, 0.650902, -0.314960, 0.979762, -0.631349, -0.366186, -0.747488, -0.112594, 0.184929, 0.702753, -0.322038, -0.882463, -0.379425, -0.336891, 0.731327, -1.013576, 0.553206, -0.687139, 0.077979, -0.440938, 0.741133, 1.535822, -0.505320, -0.755037, -0.767538, -2.991638, -1.325684, -1.547404, 1.603531, -1.495010, -0.232593, 0.713062, -0.440391, 1.802875, 0.115387, 0.165683, -2.459484, -0.248380, -0.233782, -1.236610, -1.616550, -0.686213, 1.212663, 0.352518, -1.867745, 0.391217, 0.295719, 0.507461, 0.714676, 0.154403, 0.840564, -0.761439, -0.263041, -0.239408, -2.464345, -0.595947, 0.198922, 1.846304, 0.012942, 0.000918, 0.393114, 1.918203, 1.096173, -0.188537, -1.477900, 1.120755, -0.486376, 1.604251, 0.076044, 0.711321, 0.509937, 0.745275, 0.012120, 0.571369, -0.099875, -0.121695, 0.001356, 0.291662, 0.644422, -0.873065, 0.149963, -0.248319, -0.937181, 1.812800, 1.000859, 1.604721, -0.694614, 1.166088, -0.891790, -0.245980, -1.044806, 0.291431, 1.229583, 0.437321, 0.662905, 1.269442, -1.843804, 1.120986, -0.550116, -0.139720, -0.644274, 0.290627, 0.456884, -1.493160, 0.888222, -1.902829, 0.103934, -0.755085, 0.559701, 0.973925, 0.382425, -1.846877, -0.056663, 0.794203, 0.969839, 0.148291, 0.661202, -0.645339, 0.004266, 0.238014, -0.179047, -0.372602, 0.524936, -0.394560, 1.274504, 1.534236, 1.634632, 0.243235, -0.119428, -1.256966, 2.107261, 0.426591, -1.705651, 0.221400, -1.060943, -0.740140, 1.469806, 0.721159, 0.454433, -0.387493, 0.063305, 0.793529, -1.926678, -0.745509, 1.547774, -0.415599, 0.679532, 0.742551, -0.262276, 0.483877, -0.552918, -0.007194, 0.532652, 0.406929, -0.372980, -1.602074, -0.636809, 1.777902, -0.188021, 0.667559, -0.293030, -0.878388, 0.270273, -0.320048, 1.608794, 0.198568, 0.616044, -1.253145, 1.057194, -1.034038, 1.543244, 1.063046, 1.340640, -1.009972, 0.001709, 0.012912, -0.706588, -1.131786, 0.235221, 0.991750, -1.701807, -0.482821, 0.983203, -0.923239, 1.311897, 0.282940, 1.035744, -0.070229, 0.462706, 0.982819, -1.089813, -0.245042, -0.648462, -0.964822, -0.644799, -0.447359, 1.037254, 1.664551, -0.396625, -0.434554, 0.786647, -0.067926, 1.339954, 1.791237, -1.683401, 0.035166, 0.289901, 1.443648, -0.257986, -1.787606, 0.865624, 0.159365, 2.366563, 1.300579, 0.149055, -0.927566, -0.495982, -0.556095, -0.307571, 0.188555, 1.559767, 0.203126, 0.414107, 2.202690, -0.296530, 1.277944, 1.397699, 0.416067, -0.870662, -1.643675, 2.525369, 0.669229, -0.997304, 0.460952, -0.320531, 0.513951, 0.102732, 0.368117, 0.152434, -1.486880, 0.713778, 0.577108, 0.633847, -0.061359, 0.127291, -0.227663, -0.565365, 0.533232, 0.570740, 1.041588, 0.940619, 1.167342, -0.002836, 0.164584, 0.537048, -0.629868, 0.654777, 0.943004, -1.230325, 0.809898, 0.329693, 0.175072, 0.685910, -2.340250, 0.181857, 0.520950, -0.826398, 0.505053, -0.253696, -0.019515, 0.364053, 0.180645, -0.918615, 0.763246, 1.551783, -1.093729, -0.425336, -0.013297, -0.499103, 0.052858, -1.049092, 0.668183, -1.476376, -0.276600, -1.240288, 1.358208, -0.468263, 0.132595, -0.782875, -1.053637, -0.289345, 0.168417, -0.167430, -0.335913, 1.761245, 1.757716, -0.560587, -0.760889, 0.470775, -1.170096, 1.260187, -1.879163, -2.770560, 1.029848, -1.214506, 0.843518, -1.180444, -0.005717, -0.301006, 1.740381, 0.074337, -0.305847, -0.738706, 0.338764, -1.078533, -0.664572, -0.102138, 0.120747, -0.403462, -0.533463, -0.119733, -0.664668, -2.002666, 0.247811, 0.502806, -1.313671, 0.370975, 0.232601, 0.132243, -0.598320, -0.664703, -0.552567, 0.130383, -0.383350, 0.576975, 0.518866, -0.330835, -0.722144, 0.037399, 1.227627, 0.657799, 0.651969, 1.623170, -0.809349, 0.651820, -3.065103, 1.507050, -0.707046, 0.383874, -0.297895, -0.030726, -1.551289, 0.815146, 0.436793, 0.843672, -1.413977, -0.707373, -0.966325, -1.009925, 0.726912, 0.368701, -0.074487, -0.952476, -2.084474, 2.028796, -0.164717, 0.052187, -1.718413, -0.667007, -0.222215, 1.319468, 0.404146, -0.725416, -0.775996, -1.765674, -0.304063, -0.442627, 0.070624, 0.168125, -1.103981, 0.369296, -1.896372, -1.317223, 0.217692, 1.546734, -0.681958, 0.720146, -0.680538, 0.208336, -0.012354, -0.376611, 0.355713, -0.429052, -0.827290, -0.314084, 0.597497, 1.839279, -2.118891, -0.941276, -0.047448, 0.017547, 2.282560, 0.942305, 0.099224, -0.211880, 1.282972, 0.562168, -1.003576, 0.122679, -0.137638, 0.852672, -1.207618, -0.291122, -0.674193, 2.067981, 0.387535, -0.598566, 0.492513, 1.566337, 0.316197, 0.803851, -0.910228, -2.760594, 1.022515, -0.902013, 0.990269, -0.650464, -0.033795, 0.260880, 1.231654, 0.916473, 0.115825, 1.058442, 0.302749, -1.317326, 0.055116, -0.646666, 1.149097, -0.291527, 0.431140, -0.063607, 0.216260, -0.350655, -2.117795, 0.242829, -0.050827, 1.230035, -0.566987, 0.076513, -1.326295, 1.032293, -0.259736, -0.620771, 0.954626, 0.766084, -1.069348, 0.112920, -0.822272, 1.267524, 0.971574, -0.133473, -1.507629, 0.569266, 0.060907, 0.008979, 0.381692, 1.056639, -0.028541, 0.050194, -0.647694, 0.176354, 0.007581, -1.848455, -0.158585, -1.281686, -1.067409, 0.444980, 1.513490, 0.931571, -0.274106, 2.300519, 0.887455, -0.386968, -1.207925, 0.822575, -0.913211, -0.445866, 1.593749, 0.320163, -0.428290, 1.162631, 0.158736, -0.179814, -1.145749, 0.105351, -0.467657, 1.769470, -0.652457, -1.808436, -1.667299, 0.897776, 0.414695, 0.842697, -0.233000, 1.119390, 0.225108, 0.709879, -0.869811, -1.369341, -1.636471, -0.822347, -1.080083, -0.830137, 0.329208, 0.350142, -0.821055, -0.531446, 0.198401, -0.352964, 0.966670, -0.108505, 0.120679, -0.487222, -0.713007, 1.284985, -0.128009, 0.218244, 0.883929, -0.866034, 0.694990, -0.408727, 0.712352, -0.794204, -0.221023, -0.659065, -0.001451, -0.051257, 0.966171, 1.533197, -2.153540, 0.957859, 1.683044, 1.548128, -0.469343, -0.912069, 0.623761, 0.459791, 2.378263, 1.379164, -2.479560, -1.381770, 0.223994, 0.581903, 2.462769, 0.357460, 0.580593, -0.679694, 0.302157, 0.993067, 0.885331, -0.006423, 0.497747, -0.177228, -0.369860, -0.564683, -0.638989, -0.881432, -1.665654, -0.130389, 0.585423, -0.753778, -0.932322, 1.898966, 0.756286, -0.284318, -0.895073, -0.636077, -0.395144, 0.622954, -1.594219, -0.855068, 0.547991, 0.138027, 0.083437, -0.793249, -1.639088, 0.706620, 1.457656, -0.699871, -0.224520, -1.793717, -0.726605, 0.382871, -0.692738, -0.288011, -0.794972, 1.579095, 0.253690, 0.997295, 1.925212, -0.220757, -0.360908, -0.055112, -0.153784, -0.233199, -1.201126, -0.545576, -0.439421, -0.971251, 0.605837, 0.776413, 0.394598, 1.656441, -1.544852, -2.957562, 0.228542, -0.983380, -1.292152, 0.459452, -0.197741, 0.998687, 0.308993, 0.655450, -0.493743, -1.486049, 0.382888, 0.631073, -0.371239, 0.514159, -0.097317, 1.225145, -0.638378, 0.342363, -1.580652, -2.446595, 0.769604, -1.444124, -0.657230, -0.113286, 0.577576, 0.238484, 2.364442, -1.381381, -1.207125, -0.899980, 0.419608, 0.689530, 0.208504, -0.266494, 1.227303, 1.123001, 1.237160, 0.056717, 0.654519, -1.299933, -0.400978, -0.623902, 0.525421, 1.187168, 0.031041, 1.871590, -1.473323, -1.173467, 0.694392, 0.310131, 0.998769, -0.093835, -0.361254, -0.128190, 0.630134, 0.327430, 0.517911, -0.355291, 0.844662, 0.960411, 0.386081, 1.041679, -0.091655, -0.027101, 1.410294, 0.411787, -1.332057, -0.459408, -1.070325, -0.614363, -0.825695, -0.928216, 0.604325, -1.460609, -0.192262, -0.004410, -0.524866, -0.179887, -0.309788, -0.139984, 0.717091, 0.223635, 0.128181, 1.414812, 0.219963, 0.256240, -0.190217, -0.388563, 1.462272, 0.875212, -0.481109, -0.684982, -0.994921, 0.517506, -0.950163, -0.492670, 0.475388, 1.314657, 1.750620, -1.213376, 1.648163, -0.195402, 0.664914, -0.094891, 0.973404, 0.454690, 0.188792, -0.737362, -1.051652, 0.193673, 0.706130, -0.814144, -1.296558, -0.068961, 0.239795, -0.205138, -1.516257, -0.930584, -0.772402, 0.242668, 2.736581, -0.333195, -0.351602, 1.468608, 0.715578, 1.155788, -0.091197, 1.564632, 1.249670, -0.126512, 0.786249, -1.518057, 1.600814, -1.204734, 0.009395, 1.148951, 0.589218, 0.032962, 0.491163, -0.600983, 1.023351, 0.581409, 1.100210, 1.244052, 0.901803, 0.265863, 0.707759, -0.485055, -0.043618, 0.857998, 0.006887, -0.425407, 1.041564, 2.396044, -0.339230, 1.347777, 0.112678, 0.341312, -1.573165, 0.904727, -0.439225, -0.704625, -1.605155, -0.132223, -0.414968, 1.809788, 1.380576, -0.445033, 0.962185, -0.690909, 0.627085, -0.819576, -1.038175, -1.797299, 1.142296, -2.796450, -0.397238, -0.548388, 1.001740, -1.052414, -0.471114, 0.105292, -0.391651, 0.233797, 0.917240, -1.001446, 0.532974, -0.490091, -1.097559, 0.659390, -0.942814, 1.192824, -0.376587, -2.398330, -0.522802, 0.104258, -2.075186, -2.474453, 0.375520, 0.852840, 0.286258, 0.437765, -0.125125, -0.427362, 0.757399, -1.009901, 0.703712, 0.349340, 0.068894, 2.156740, 0.232376, -0.222264, -0.385089, -0.251131, 0.048317, -1.095175, -2.171664, 0.480706, 0.051593, -0.311058, -0.422785, -0.399902, 1.382518, -2.428111, 0.259279, 0.195612, 1.250679, 0.476466, -1.284679, 0.859136, 0.165677, -0.075955, -0.795367, 0.011942, 0.044537, 1.854053, -1.176886, -0.249800, 0.568523, 1.325002, -1.483092, -0.199339, 1.658340, -0.645532, 1.746280, -1.907639, -0.081327, -0.491918, -0.079938, 0.165468, -1.028362, -0.282269, -1.389076, 1.354632, -0.646270, 0.400435, -0.700321, -2.046731, -1.270018, 2.537819, -0.195418, 1.616142, -1.002783, 1.938049, -0.231846, -1.275888, 0.975771, 1.867821, -2.517521, -1.055571, -0.979233, 2.479350, 0.423528, -2.692297, -2.634333, 0.075809, -1.943608, 0.091067, -0.511079, 0.211322, -0.560384, 0.531533, -0.711254, -0.992869, 0.377976, 0.663449, -0.207054, -0.161622, 0.783406, -0.054875, 1.458825, 1.144048, -1.265718, 0.020294, 0.323040, -0.845896, 1.813638, 2.005624, -0.434095, -0.109263, 0.161651, -0.624304, -1.716682, -0.819730, 2.222390, 0.926520, 0.196876, 1.408468, -1.334636, -0.137650, -0.019383, 1.261439, 0.618483, 1.216183, 0.582504, -1.212431, 1.625142, -0.990585, -1.418532, 0.977245, 2.328674, -0.887481, -2.217097, -1.159147, -1.240270, 0.308745, -0.818975, 1.308973, 0.506362, 0.159078, 0.110513, -0.680036, -0.120664, 0.097619, 0.149916, 0.342207, -0.487246, 2.650337, -0.390253, -1.253697, 0.671902, 1.799849, 0.673474, -0.277662, 0.847310, -1.149167, 1.045030, -0.450937, 1.099226, -1.101415, 1.581423, 1.290898, -0.945054, 0.699864, -0.449924, -1.330844, -1.199549, -1.037826, -0.261741, 0.322473, 1.208010, -0.108038, 1.853039, 0.263362, 1.242270, -0.269046, 1.301799, -0.140519, 0.375859, -0.459513, -1.946383, -1.168694, -0.387385, 1.079513, 0.224769, 0.464253, 1.877396, -1.981441, -0.395818, -0.614816, 0.584426, 0.024514, 2.307854, -0.367066, 0.074375, 0.109017, -1.159713, 0.498944, -0.986801, -0.619723, -0.286456, 0.079653, -0.129912, -0.075097, 0.535491, 2.374083, -0.480849, 0.906860, -0.145243, -0.429104, 0.535679, -0.106580, 1.272346, -0.395097, -0.587267, 0.153514, 0.003306, 0.275903, -2.010791, 0.369468, 2.565899, 0.658069, 0.625572, -0.292657, 0.426859, -0.039537, 0.466782, -0.213646, -0.998102, -0.432814, -0.096134, -0.400232, 0.118353, -0.250267, 0.347886, 1.054453, 1.375482, -0.749868, -0.200890, -0.533132, 1.440839, 0.078127, 1.293177, -0.800576, -0.372939, -0.823248, 1.142839, 0.779238, -1.025555, -0.528999, -0.489301, 0.002016, 1.384675, -0.063106, 1.580018, -0.511192, 0.515575, -0.242889, 1.597541, -0.449379, -2.313836, 0.433332, -0.328102, -0.348891, 0.049113, 1.143714, -0.606944, -1.021334, 1.020627, 0.463043, 0.211384, -0.167821, -1.121984, -0.741784, 0.682838, -0.582474, 0.085909, 2.029262, 1.135633, -1.250152, -1.223211, 0.007997, -1.245446, -0.435278, -1.105139, 0.616406, 0.753225, 0.854637, 0.823325, -0.422497, 0.593634, -0.593916, 0.304636, 0.280708, 1.694358, 1.329585, 0.247179, -0.279895, 0.651856, -0.102773, 0.913088, -0.440420, 0.123232, -0.863050, -0.171629, 0.400619, -1.512546, 0.062961, 1.398601, 0.088090, 0.279573, 1.282322, -0.080128, -0.004702, -0.976383, -1.642297, -0.616974, -1.043240, 0.229035, 1.730206, -0.600759, -0.164065, 0.716513, 0.730629, 1.054250, 0.866217, -0.216470, 0.993549, 1.460599, 0.591707, 0.314538, 0.796852, -0.332350, 1.264228, 1.797137, -0.195246, 0.113306, -0.728226, -1.068509, 1.119313, 0.174270, 1.602209, -1.230554, -2.169655, 1.684373, 0.943918, 0.861171, 2.066307, -0.161146, 0.467258, 0.210221, -0.902464, -1.913673, 0.977871, 0.298279, -0.112413, -0.010105, 0.669705, 0.935085, 1.659433, 1.734217, -0.008280, -0.437842, 0.058607, 0.304021, 2.458997, 0.169586, -0.968576, -0.972189, -0.327630, -0.573669, -0.846364, -0.359719, 1.043108, 1.911941, -0.662465, -1.018908, -0.816293, -0.568155, -0.420614, 1.480624, 0.229438, -0.493321, -0.645297, -0.603714, 0.961630, 1.163723, 0.556973, 0.403312, -0.282806, 0.806484, -0.551240, -0.499907, -0.639638, 1.585647, -1.076977, -0.494800, 0.345501, -0.081872, -2.397432, 0.169326, 0.149086, -1.075565, -1.189096, -0.578485, 0.052927, -1.336818, 0.820895, -1.699156, 0.161837, 0.128269, -0.682065, -0.511034, -0.302649, -0.297757, -1.770633, -1.402995, -1.574083, -0.802078, -0.808154, 0.853138, 0.929639, 1.234076, 1.021366, -0.612301, 0.939807, 1.422796, -0.055038, -0.376734, 1.556973, 0.607052, 1.083412, 0.130041, 0.255501, -1.094005, 0.352081, -0.584930, 0.159433, 0.296823, -0.740273, 0.008519, 0.141079, -0.384061, 0.442857, -0.865421, 0.474803, 1.979470, -1.906425, -0.224100, -1.591969, 0.741749, 2.277313, -0.934287, -0.549533, 0.762357, -0.000739, 0.719938, -0.831228, 1.335212, 0.000618, 0.084169, 0.634156, -0.037498, 0.061090, -0.708419, -1.107336, 0.218445, -0.798154, -0.077214, -0.041986, -0.365435, 1.920474, -1.003709, -0.575926, -0.896164, -0.977762, 0.950663, 0.385647, 0.026513, 0.007574, -0.604650, 0.076311, -0.566295, 1.767049, 3.196131, 0.000131, 0.377919, 1.602773, -1.779870, -1.514597, 1.440958, 0.117473, 1.601819, 0.558959, -0.792584, -1.261061, 0.562293, -0.410142, -1.819307, 2.783495, 0.003900, 0.673560, -0.801667, -2.213346, 1.375020, -0.761294, -0.158954, -0.151664, 1.487704, -1.573357, 0.171300, -0.873633, -0.510119, -1.462343, -0.283168, 0.697521, 1.124460, 0.945671, 1.712378, 1.721964, 0.230917, 0.194659, -1.396264, -0.576336, 1.537436, 0.237531, -0.597759, -0.738369, -0.601753, 0.230585, -0.543026, -1.382452, -0.767581, 0.539591, 0.658891, 0.370795, -1.123319, -1.128508, 0.431978, 0.390993, 1.178774, 0.410019, -1.303392, 0.942956, 1.327732, 0.186054, 0.021305, -0.880841, -0.017911, 1.762350, 1.378189, 0.279522, -0.326773, 0.180000, -1.097935, 1.209249, 0.694255, 0.680515, -1.146881, 0.528379, 0.655943, -1.664021, -0.675777, 1.142683, -0.055859, -0.378568, -0.579741, -0.408200, 0.269103, -1.362701, 0.873458, -1.072699, 0.108220, -1.072228, 0.052957, 0.972322, -0.670796, 0.771325, 0.698519, 1.662428, -0.955793, 1.267732, -0.884990, 1.103815, 0.349899, 0.689126, -0.697367, -0.279191, 0.159953, 0.278799, -0.830304, -2.486086, -0.809876, -0.907824, 3.074993, -0.528381, 0.608962, 0.808748, 0.064482, 0.459938, -0.666045, 1.579249, 0.464766, -1.973515, -0.097804, 1.183425, -0.403961, 0.463900, -0.902652, 1.469840, -0.164329, 1.171188, -0.075618, -0.079109, 0.857114, 0.537591, 0.135858, 1.139763, 1.885059, 0.848467, 0.975857, -0.187125, 0.493947, 2.722894, -0.259751, -0.103315, 0.634920, -0.185781, -0.055063, -0.477004, 0.268640, -0.061299, 0.722828, -0.000579, -0.363334, -0.006565, 0.831911, -0.347205, 0.652493, 0.303242, -1.390029, -0.324232, -2.590419, -0.347550, -0.520888, 0.712762, 1.347832, 0.712340, 0.749463, -1.300805, -0.239872, 1.426470, 0.879974, -0.317680, 1.114858, 0.177073, -0.842019, 0.071504, -1.036478, -0.425654, 0.409760, 2.089564, -1.131355, -0.224425, 0.176514, 0.003063, -1.022606, -0.607528, -0.184959, 0.140400, -0.029518, -0.184174, 1.240667, 1.911520, 0.093550, -1.106623, -0.234596, -1.186179, -0.143543, -1.053546, -0.259176, 0.310255, 0.031607, -1.377744, 1.302794, -1.220217, 1.900659, 0.008092, -1.108560, -1.359943, -2.354624, -0.107920, 0.966216, 0.408460, -0.676664, 0.640905, -1.063868, -1.801584, -0.803397, 0.999650, -1.071502, -0.228426, -0.557674, 0.424089, -0.020392, 1.626072, 0.518945, -0.644892, 1.410088, -1.076187, -0.183477, -1.476076, 1.066781, 0.045591, -0.708241, -1.061886, -0.069735, 0.268439, 0.996012, 1.577090, 0.652477, -1.169383, -1.877606, 0.241385, -0.716275, 1.076989, -0.004071, -0.144108, -0.737553, 1.776167, 0.247408, 1.470623, -0.401614, 0.798566, 0.999228, 0.117658, -1.185933, -0.383031, -0.383739, -0.988735, 0.924957, 0.884045, 1.678148, -2.295000, 0.313245, -0.216504, 0.230821, -0.622617, 0.251752, 0.110113, 0.717413, -0.804830, 0.851634, 0.558755, 0.247025, -1.310933, -1.333926, -0.185024, -0.328081, -2.074067, -0.726968, -1.285351, -0.159432, 0.630274, -0.164899, 0.601325, -0.641290, -1.510466, 0.923575, 0.155575, -0.893360, -0.445703, -0.851990, 0.099344, -0.922377, 0.313641, 0.205622, -0.349394, 0.608267, 0.285746, -0.392929, 1.175276, 1.965447, 0.558696, 0.150607, -0.748425, -1.521350, 0.488068, 0.093578, 0.510095, -0.073489, 0.137762, -0.180477, -1.113647, 0.757016, -0.357791, -0.407108, -0.507146, 1.248808, 1.846160, -1.376829, -0.176339, 0.661752, -0.797810, 1.703219, -0.303573, -1.071365, 0.953577, 1.271903, 2.462126, -0.535654, 1.303970, 2.613081, -0.456449, 1.181750, -1.107752, -0.163638, -1.374968, 0.879616, 0.322532, -0.224062, 0.194928, 1.504785, 0.020028, -2.529463, 0.324772, 0.003576, 0.012668, 1.084877, 0.289536, 0.448849, 0.605379, -0.097210, 0.098546, -1.305508, 1.396452, 1.264388, 0.792639, 0.323461, 0.638596, -0.358651, 0.956730, 1.160253, 1.653206, -0.309618, 0.080314, 0.671156, -1.409953, -0.235518}, - { 0.382059, -0.756124, -0.268898, 0.670647, -0.722895, 1.233612, 0.019898, -0.227095, -1.047232, -0.102094, 0.262718, -0.056508, 0.047468, 0.031591, -1.147398, -1.131913, 0.837965, 2.021922, 0.763104, -2.425157, -0.823654, -0.121762, -0.793927, -0.604823, 0.498514, 1.295028, 2.282117, -0.730465, -0.112153, -0.351011, 2.763001, -0.115223, 2.129663, -0.188060, 1.015183, -0.469658, -1.064144, 1.883169, -1.472189, -0.583824, -0.351299, 1.601087, -0.158024, 1.030751, 3.135841, -1.037427, -0.452121, 2.110509, 1.046477, -0.982384, 1.466126, 1.351951, -0.949733, 0.354520, -1.524563, 0.065414, 0.497113, -0.734463, -0.492778, 1.666764, 0.200520, -2.004752, -1.030668, -0.323292, -1.114985, 0.788598, 1.704072, 0.513804, -0.234502, -0.427492, 1.331277, 1.338116, 1.600348, -0.896026, -0.305012, 1.462368, -1.064661, -1.037984, -0.448500, -0.467702, 1.689152, 1.115221, 0.822431, -0.364413, 0.233804, -0.574877, 0.631714, 0.503844, -1.209398, -0.035902, 0.519446, 2.187777, 1.488170, 1.956980, -0.775304, 0.054704, -1.033544, 1.270657, 0.650151, 0.066474, -0.165130, 0.741537, -1.244502, 0.193526, -0.345141, 0.291083, 0.470458, 0.798296, 0.374880, -0.304612, 0.416809, -2.090556, 0.086823, 0.934948, -0.457083, -0.809578, 1.342113, -0.041538, 0.398531, -0.472814, 0.200100, 0.036538, -0.440097, -2.455165, -0.916274, -2.536629, 0.406445, 0.006890, -1.014239, 0.500616, 2.705946, -0.022637, 0.538087, -2.044204, -0.353036, -1.296478, -1.523036, -0.196764, -1.287256, -0.577633, 0.544843, 1.022733, -0.013695, -0.347855, -0.550234, 0.084698, -1.354719, 1.720470, 0.342556, 0.599860, -2.525371, 0.469707, 0.371450, -1.794418, -0.027776, -0.228502, 0.049353, 1.204295, 0.049864, 0.437735, 0.222994, 1.888575, 0.998941, 0.282273, 1.345065, 0.513661, -1.163260, 1.623799, -1.164773, -1.830389, -1.062759, -1.548091, 0.132407, 0.071544, -0.536221, -2.505579, -0.189660, -0.498596, 0.814257, -0.289688, 0.113668, -0.128814, -0.085521, -0.494300, -1.048639, 0.675048, -0.048130, -0.416781, 0.697961, -0.118799, 0.308944, -0.957638, 0.682217, -0.083334, 0.345109, -2.258950, 1.311002, 0.742619, 1.338444, 1.137395, -0.247233, 2.207792, 0.034036, 1.122454, 0.001738, -0.477747, -0.664504, 0.034436, -2.298915, -0.688178, 0.485656, -0.155005, 0.699738, -0.182813, -0.277011, 0.269205, 0.277718, 2.345576, -0.119955, -0.212371, 0.079055, -0.675778, -1.075429, 0.082380, 1.528678, -1.655458, -0.668242, 1.481890, -0.733430, 2.166434, 0.178931, 1.212819, -1.575392, 0.445340, 0.367124, 0.454937, 1.617629, -1.830756, 1.902955, 0.325177, 0.015093, -0.829517, 1.900083, -0.315760, -0.705444, -0.337590, 0.347599, 0.562739, -0.551997, 0.711850, 0.552669, -1.563068, -1.330176, -1.040038, 1.064567, 1.614874, 0.934245, -1.642661, 0.717998, -0.610720, -0.983824, 0.859206, -0.964966, -0.320549, -0.388639, 1.195694, 0.817436, 0.664509, 1.687307, 1.669409, -0.014416, -0.914878, 0.045907, 0.197022, 1.022861, 0.055055, -0.066334, -1.712152, -1.004981, 0.279715, 0.674143, 1.665503, 2.384454, -0.790930, -1.360469, 0.899800, -0.093856, -0.120326, -0.282830, 0.955345, 0.289944, 1.986020, 0.486134, 1.398686, -0.266424, -0.888304, -1.435087, 0.093107, 0.759727, 0.396672, -2.664654, 0.911650, 1.075412, 2.049538, 0.621762, 0.665132, 0.008100, 0.143697, 1.156016, 0.227429, 0.108149, -1.560778, -0.660750, -0.143933, 0.024302, -0.978624, 0.993727, -0.227724, -0.162943, 1.215951, 1.270337, -0.470716, 1.143346, 0.728295, -0.709416, 0.355111, 0.605511, -1.026261, -0.385031, 0.340678, 0.862034, -0.613504, -0.750120, 0.097246, -0.962190, -0.602672, 0.453841, 1.866659, -1.427991, -1.492646, -0.692929, 1.255367, -2.168110, -0.237477, -0.608745, 0.199082, -2.008715, -1.333466, -0.210509, 3.017457, 0.697097, 0.351825, -0.019699, -1.488519, 0.090121, 0.795999, 0.102292, 0.204322, -0.630613, 0.929686, 1.323448, 0.162824, 0.465104, 0.562041, 1.001537, -0.109705, 1.105437, -1.957387, -0.924382, 1.440254, -0.616247, -1.104835, -0.361146, -0.126514, -0.364270, -0.641116, 0.389182, 0.487654, -0.632764, 0.258316, -0.065638, -0.232363, 0.934742, 3.004745, -0.466283, -0.856876, -1.719915, 0.081078, -0.733059, 0.745355, 0.922169, -0.205358, -1.573404, 0.700384, 2.055251, 1.944711, -1.240147, 0.297236, 1.653817, -3.043529, 0.369082, -0.376191, -0.793096, -1.058544, 0.202065, 1.702075, 0.980632, -1.538775, -0.087307, 0.224487, 1.661905, -0.435689, 0.944074, 2.596069, 0.586904, 0.357412, -0.029610, -0.701129, -0.596044, 0.049660, 1.366184, 0.236003, -0.385317, -1.325649, 0.525150, 1.503238, -0.034382, 0.393256, -1.117113, -1.050756, -0.430850, -1.681886, 0.913539, 0.075520, -0.858186, 1.138578, 0.592154, -1.308793, 0.060918, -1.914763, -1.781331, -0.494782, 0.879823, 0.009281, 0.705704, 0.662487, -0.562745, 1.685661, 1.204443, 0.261912, -1.174259, -0.820031, 0.179824, -0.362322, 0.878144, -0.908297, 0.331722, -1.319254, -0.717314, -1.085246, -1.958957, -1.296220, -1.099202, -0.391190, 1.254537, -0.964507, 0.348543, 0.766253, -0.495980, -0.439942, -0.261941, -1.351386, 1.509463, 0.418022, 1.429536, -1.450138, 0.902776, 0.124037, -0.610596, 0.203545, -0.498523, 0.776397, 1.514069, 0.039039, 1.017294, -0.563437, 0.679385, 0.169064, 0.269506, 1.080527, -0.465674, 0.874369, -0.219138, -1.489180, -2.615988, -0.367151, -0.055648, 1.501447, -0.619220, -2.449960, 0.464516, -0.000535, -0.326176, -0.110683, 0.811327, -1.274049, 0.881897, -0.248487, 0.325582, -1.875550, 0.062114, -1.237213, 0.087808, 0.173102, 1.246930, -0.271178, 0.651691, 0.212459, 1.478099, 0.398686, -0.281847, -0.963581, 0.734263, 0.990676, -0.841449, -0.198852, 1.382271, 0.178462, -1.368272, -0.349254, -0.378986, -0.271455, 0.736766, 1.163576, 0.563409, 0.368660, 1.346949, 0.981946, -2.272106, -1.379623, 2.029833, -0.428224, -1.055603, -0.931259, 0.782737, -0.577287, 0.360062, 0.964592, 0.327885, 0.167229, 0.213906, -2.060635, 0.223158, 0.437575, 0.559332, -0.398564, -1.245556, -0.964019, 0.780927, 1.239923, 0.089169, -0.149114, -0.919069, 0.634949, 0.909422, 0.462337, 0.659830, -1.744606, 0.495139, 1.736703, -0.263927, 0.747554, 1.943027, 0.180411, -0.330468, -0.943574, 0.058006, 0.979571, 0.387951, -0.008286, -1.581976, -0.657403, -1.084765, 0.140902, -0.449816, -0.357501, -1.147356, -1.487937, 0.348165, 0.195799, -1.942437, 0.807144, 0.785277, 1.015885, 0.826304, 0.899044, 0.347857, -0.413957, 0.224523, 2.176913, 2.646751, -0.710003, 0.081168, -0.705328, -0.196207, 1.229838, 0.258339, -1.479319, -0.109133, -0.681406, 0.153488, 0.663806, -0.324739, -0.363910, 1.700875, 0.141772, -1.249241, -1.696840, -0.119858, -0.497950, 1.025684, -1.448539, -0.192165, -0.060901, -1.692251, -0.045484, 0.630726, 0.335616, 2.048478, 0.221174, -0.103263, 0.652923, -1.804758, 0.228436, 1.222847, 0.358293, 0.421496, -0.791960, 1.947306, 1.248854, -0.867100, -0.666459, -1.531495, -0.390254, -1.437477, 1.594514, 1.038594, -0.745096, -0.080827, -0.299325, 0.066211, -1.634254, -2.234896, -1.152932, 1.052401, 0.329964, 1.335873, 0.432223, -2.088759, -1.020118, 0.948494, -0.485056, -1.492027, -0.113937, -1.343985, -0.829372, -0.268781, 0.662770, 0.599540, 0.833252, -1.501010, 0.533089, -1.754615, 1.959507, -0.498201, -0.002809, -0.110131, -0.902340, -0.876667, 0.481718, -0.998151, -0.347933, 0.936260, 0.865499, -0.200296, -1.041223, 0.610695, 1.061170, 0.375502, -0.219200, 1.789266, 1.308462, 1.543149, 2.161704, 0.119549, -1.309706, 2.051585, -1.100319, -0.434722, -0.603976, -1.127354, 1.992013, -0.191003, 0.032470, 1.004440, 0.549231, 0.705583, 2.208463, 0.717833, 0.167186, 0.275973, -0.776252, -0.781164, -0.903851, -0.887587, -0.078421, 1.166423, -1.426779, 0.595513, 0.527694, -0.052090, 0.019514, -1.108611, -0.882998, 0.141618, 0.453112, 0.749485, 0.269211, -0.308234, 1.104774, 0.553994, -1.128259, -1.135981, -0.345478, -0.729224, 0.149570, 1.639662, 0.110621, -1.922511, -0.746145, 0.187155, -1.725436, 1.352881, -0.396462, 0.665984, 2.734129, -0.786993, 0.650727, -1.645926, -0.365741, -0.928118, -0.162804, 1.215651, -0.105507, 0.215606, 1.080293, 1.194821, -0.554374, -0.255487, 0.349845, 0.853962, -0.972678, -0.285763, 0.480039, 0.166039, 0.335910, 0.671465, -0.829052, -0.160457, -0.111635, 0.820356, 0.863077, -0.267192, -0.078685, 0.631299, -0.669211, -0.204799, -0.136229, -0.202992, -0.087659, 0.128671, 1.260443, -1.249178, -2.798633, 0.340411, -0.473649, -1.299904, -0.622390, 0.506174, -0.208705, -0.346622, 1.211028, -1.634334, -0.447706, -1.037892, 0.841851, -1.264424, -0.969955, 0.168473, 0.612454, -1.405871, 0.003603, 2.402675, -0.561010, 0.485877, -0.151942, -0.061614, -2.191525, 0.458814, -0.276728, 0.530174, -0.751052, -0.846799, -1.531303, 0.041635, -0.243618, 0.740602, -0.027810, 0.034180, 0.096023, -0.979097, -1.048058, 0.381958, 2.025718, -0.117946, 0.235742, 0.237039, 0.239039, 0.058563, -0.835180, 1.450489, -1.070995, 0.833846, 0.740038, 1.778937, 0.490873, 0.439209, -3.230690, -0.610515, -0.118432, 0.229473, 0.061777, 0.217299, 0.704839, 1.528250, -0.485037, -1.411039, -0.631554, -0.582107, -0.186172, -0.522741, -0.490199, -0.416542, 1.086767, -2.098762, 0.936904, 0.065106, -0.229315, -1.983214, 0.037280, 1.661507, -0.906222, 0.156427, -0.715053, -0.573588, 0.783703, -1.645982, -1.512202, 1.449465, -0.897894, 0.982410, 1.627641, -1.316233, -0.236404, 1.291026, -1.694265, -1.829128, 1.919201, 0.906396, -0.339507, 0.503020, 0.346296, 0.815150, 1.020208, -0.261457, 1.428235, 1.713231, 0.324184, -0.311596, 0.280373, 0.167352, -1.741678, 0.142945, 0.224572, 0.790027, -0.187601, 1.810110, 0.254688, -0.511187, -0.879314, 0.136074, -0.201431, 0.487789, 1.411333, -1.584449, -0.569379, 1.030299, 0.312562, 0.464376, -0.750697, 0.151506, 0.147195, 0.819245, 0.249036, 0.490367, -2.129723, 0.197688, 0.209628, -0.522797, 0.270370, -1.839541, -1.225898, 1.291117, -0.680506, 0.530471, -0.653734, 0.539361, -0.056638, -1.450216, -1.272983, -0.170609, -1.956840, -2.456795, -0.531451, 0.451671, -1.162901, 0.138955, -0.130039, -0.200198, 1.309971, -1.170939, 2.640239, 0.961979, 0.007073, -1.018755, -0.139291, 1.483178, 0.267623, -0.341609, -0.531584, 0.086517, -0.751275, -0.554852, -0.333852, -2.284164, 1.769114, 0.231000, 0.598336, 0.526093, -1.110846, 0.600715, 2.275986, -0.018750, -0.080620, 0.217101, 0.538192, -0.194818, -0.916838, -0.157432, -0.596418, 0.353062, -1.293293, 0.925400, 0.268169, 1.704831, -0.148937, -1.045687, 0.097606, -2.001956, -0.772268, 1.257815, 0.137249, 0.891564, -1.183802, -1.063159, 1.238094, 0.973459, 0.757664, -0.192597, 0.008110, -0.692726, 1.954843, 0.305383, -0.004067, 0.347564, 1.098256, -1.411022, 0.428267, 0.288067, 1.355488, -0.122372, -0.536689, -0.545794, 0.485193, 1.661622, -1.237771, 0.380034, 1.757733, -0.966951, 0.446081, 0.826341, 0.034387, -0.344282, 0.122601, -0.133951, -2.647708, 0.240524, -0.244076, 1.557510, -0.505505, -1.457286, -0.112656, -1.023001, 0.599384, 0.884535, -0.626787, -1.346594, 0.935042, -0.775457, -0.930951, 0.590213, 0.452432, -0.938790, 0.805782, -0.350595, -0.592970, 1.680689, 0.843593, 0.132452, -0.841636, -0.930182, -0.427818, -0.022887, -0.397914, 2.337185, 0.066307, 0.029618, -1.055913, -1.327883, 1.010142, 0.423029, 0.818162, 1.112986, -1.100333, 1.129665, -0.521119, -1.009762, -0.176153, 0.954177, -0.238755, 0.163068, 0.721406, -0.406305, -0.371310, -2.167452, -0.383150, -2.178418, -0.211284, 0.632274, 0.428763, -0.549847, -0.077475, 0.358896, 0.935344, -0.116820, 0.042490, 0.632999, -1.496621, 0.294719, 0.251196, 0.211936, -0.272773, 0.505324, 0.468646, -0.416746, 0.517494, -1.180855, -0.334057, 1.065670, 1.088631, 0.071595, 0.451374, -0.556994, -0.640171, 0.358023, -0.127145, -0.316040, -1.022120, 2.401750, 1.335340, 1.412372, 0.557954, 0.337608, 0.535724, 1.725849, 0.556922, 0.272821, 0.385750, -0.413290, -0.131951, -0.150539, -0.113936, 2.031130, 0.307317, -1.013190, 0.082152, 0.260691, 0.508713, -0.268346, 0.295205, -0.475464, 2.412240, -0.018501, 0.716163, -0.862697, 0.939820, -1.338693, -1.532533, 0.870847, 2.036955, -1.457022, -1.033978, -0.226362, 0.612688, 0.019719, -0.394044, 1.351239, 0.240877, 2.110411, 0.094527, -0.445468, -0.412644, -1.391369, -0.344252, -0.623643, -0.322644, 1.117232, 0.687389, 0.755359, 0.641025, 0.632983, 1.263062, -1.549328, -1.566109, 0.508483, -0.499566, 0.934570, -1.388095, -1.972671, 0.383109, -1.554389, 1.282048, -0.314249, 0.244176, -0.929808, 0.750151, 0.538923, -0.903286, -0.702035, 0.512179, -0.291152, -0.419729, -1.037791, 0.706775, 0.235843, -0.323291, -0.307070, 1.163700, -1.123638, 1.339157, 0.422202, 0.211622, -1.802166, -0.102486, -0.482759, 0.110254, 1.695480, -0.573106, -1.885119, 1.681647, -0.317307, 1.407837, -0.340345, -1.341479, -0.127103, 1.046783, 0.876001, -0.507508, 0.063203, -1.178663, -1.428701, 1.024696, -0.896592, 0.053648, 0.580304, -1.716423, -0.604713, 0.178515, 0.226823, 1.818136, -0.396441, -0.216096, 0.241328, -0.935681, -2.599711, 0.298774, 0.142816, -2.043109, -2.757879, -0.226371, -0.856734, 0.685580, 0.032610, -0.314795, -1.044021, -0.059882, -0.347866, -0.517393, -0.738436, -0.167800, 0.061006, -0.612486, -1.202937, -0.586060, 0.263318, 1.325335, 1.538581, 0.464627, 0.250619, 1.180136, -0.062583, -1.311607, -1.173635, 1.181178, 0.739139, 1.322723, -1.272996, -1.303412, 0.873488, 1.008013, -1.498082, 0.113426, -0.553117, -0.036235, 0.374515, 1.103926, 3.328024, -1.022932, -0.421770, 0.262564, -0.503790, -1.633372, -0.007215, -1.793562, -0.599036, -0.574131, 0.307367, -0.578097, -0.603297, 1.036978, 0.525538, 0.255428, -0.734761, -0.206187, -0.929634, 0.815794, -0.976295, -0.084094, -1.288993, -0.045804, -2.553293, 1.341587, 0.834528, -0.658100, -0.330164, -1.596242, 1.379503, -0.051641, 1.338710, 0.003061, -0.975803, -0.772650, 0.789224, 0.155685, -0.470558, 1.422664, 0.922696, 0.539045, 0.334621, -0.382806, 0.986372, 0.403048, 1.097702, -0.343614, -2.157048, -2.003753, -0.301641, 1.385413, 0.345771, 0.541487, 0.982265, 0.973675, 0.545239, 1.334835, 0.145104, 0.694036, -1.940873, -0.155251, 0.952639, -0.828553, 1.449055, -0.963560, -1.566589, -0.452516, 1.144256, -1.138718, 1.058887, -1.227144, 1.352370, 0.893869, 0.553074, 0.590197, 0.919767, 0.739209, -1.018547, 0.619404, 0.222069, -1.122920, -0.389960, -0.872692, 0.329413, 0.535901, -0.037393, -0.184809, -0.768187, 1.777426, 0.580693, 1.055400, 0.585909, 0.327382, -0.704963, 0.240446, -1.395908, -2.819053, -0.384524, 2.115703, 1.038788, -0.386047, 0.394414, 0.014153, -1.083468, -1.268366, 0.536117, -0.926263, -1.745804, -0.126100, -0.330795, -0.002477, 0.006076, -1.751601, -0.414086, 0.342491, -1.246699, 0.227819, 0.104210, 1.963027, -0.973180, -0.072700, 1.289908, -0.525466, -0.194186, -1.123758, -0.028480, 0.140284, -0.449811, 0.249794, -1.954564, -0.501909, 3.107896, -0.537157, -0.615363, 0.833358, 0.130818, -0.470886, -0.598067, 0.485613, -1.002959, 1.054358, 0.922946, 0.493656, -1.295034, 0.178383, -1.298867, -0.902897, -0.186459, 0.297287, -2.278912, -2.306244, -0.553346, -0.810070, -0.692834, -1.223441, 0.102538, 1.072940, 1.420007, -1.079470, 0.556298, -0.017055, 1.374812, 0.117503, -0.497939, 0.429562, -0.742376, 0.205753, 0.201880, -0.481039, 1.490959, -0.947261, 0.971029, -0.108493, 0.720250, 0.440317, -0.416947, 1.383560, 0.471141, 0.100752, 0.262796, 0.253040, 0.246668, -1.583514, -0.908608, -0.432621, 0.734936, -0.704864, 0.372885, 0.865412, 0.654514, -0.335699, 0.875965, 0.966441, 0.043451, 1.130952, -1.448211, 0.084560, 1.562433, 0.897327, -0.478653, -1.555636, -0.342984, 0.141601, -1.480922, 0.727107, 0.155291, 0.729729, -0.341500, 0.277332, 0.986748, -0.353078, -2.394480, -0.337447, 1.226549, -0.903471, 1.040266, 0.818542, 0.224118, 1.912971, -0.540235, -0.104006, -0.276808, -0.636575, -0.188062, -0.769401, 1.244844, 1.113535, -0.103677, -0.230933, -0.026137, -0.319776, -0.008241, -0.280197, 0.163175, 0.409097, -1.531480, -0.212707, 0.993851, 2.238241, -0.430772, -0.664651, 2.236682, -0.194209, -2.817317, 1.369213, 0.691955, -0.065841, -1.836263, 1.580153, 0.463895, -0.451494, -0.019339, 0.793518, -0.698635, 0.743865, -1.935537, 0.746649, -0.273229, 1.496653, -0.932133, 2.122871, 0.348416, -0.715187, 0.284995, -0.826647, 1.210554, 0.192236, 1.027849, 0.741061, -0.105768, 0.676569, 1.511936, 0.625080, -0.573357, 0.089922, -0.754655, 0.933946, -0.907716, -0.902172, -0.382202, -0.279071, 1.007410, 1.360056, -0.338614, -0.656702, -2.972382, -0.343269, -0.068953, -1.184716, -1.570419, 1.230470, -0.034472, 0.413933, 0.421515, -0.829905, 0.430061, 0.842059, 0.522409, -2.363926, 0.270115, -0.462297, 0.609779, 0.810664, -0.397330, -0.301961, 1.102627, 0.336136, -0.949634, -0.075748, 0.942352, 1.969863, 1.222832, -0.315211, -0.182519, -0.541826, -0.394947, -0.434682, -0.212007, 0.315701, -0.988780, -0.032872, -0.346798, -1.302104, -0.794423, -0.408617, -0.107816, -0.783035, -1.310212, 1.584678, -0.236133, 0.548946, -1.954693, 1.183554, 1.385798, 1.144646, -0.662593, -0.360306, 0.667431, 1.659822, -0.131879, -0.379783, 0.656328, -1.123773, 0.082908, 0.712996, -0.554024, 0.563332, -0.199654, -0.591824, -0.561203, -0.426122, 1.403884, -0.903585, 0.605969, -0.267066, 0.394250, -1.134614, -0.140413, -1.815379, -0.376101, -1.036198, 0.119113, 1.289139, -1.048372, 0.056461, 0.210852, -1.502173, 0.430627, 0.942377, 0.948156, -0.288107, -0.331095, 0.346218, 1.452065, 1.446460, 0.310730, -0.599100, 1.074394, -0.277119, -0.100676, -0.755747, -0.604814, -0.135194, -0.147059, -0.320600, 0.565933, -0.601891, 2.256898, -0.966677, 1.544399, 1.176373, 0.523012, -1.033173, 0.019421, -0.847849, 0.383928, 0.668527, 1.245495, 0.262286, -0.543192, 1.228638, -0.524260, -0.818620, 1.324099, 0.864988, -0.441179, 1.662709, -0.438737, 0.214887, -0.483506, -0.834040, 0.807325, -0.454915, -1.349250, 0.223666, 0.062603, -0.182985, -0.822051, 1.002139, -0.292325, -0.025453, -0.661704, 0.985902, -0.182107, 0.287878, -1.975922, 1.205834, -0.228720, 0.679974, -1.008461, -0.223986, -0.548418, 1.051901, 0.692890, 0.719782, -0.303480, 0.153221, -1.393792, -0.441942, -1.498185, -0.169126, 0.742102, -0.474701, 0.888013, 0.472060, 0.637395, -1.894348, 0.084049, 1.787478, -1.303280, -0.771379, 1.150421, -1.216579, -1.432280, -1.126357, -0.680823, 0.239725, 0.110651, 1.101968, 1.195594, 0.492082, 0.003649, -1.672103, 0.973431, 0.208777, 1.851184, 0.745595, -1.197848, -0.554000, -0.700665, 0.582748, 0.519406, 0.948609, -0.406675, -0.375352, 0.068398, 0.035967, 0.229828, 0.328180, -0.659148, 1.003073, 0.138572, -0.698168, -0.617026, -0.445099, -0.157105, 1.164395, -0.938300, 0.675986, 0.603065, 0.266605, -0.626078, -0.078041, -1.407729, 0.369928, 0.626755, -0.414400, 0.729216, 0.155342, 1.095113, 0.825624, 1.569832, -1.084364, 0.102525, -1.174111, -0.105123, 0.633358, -0.028924, 0.228623, 0.130390, -0.236850, -0.144029, -0.573546, -1.032795, -0.417168, -1.504977, -1.354221, -0.403611, -1.461983, -1.129268, 0.892131, -0.335983, -0.676187, 1.446193, 1.193494, 0.306674, -1.055063, 0.704590, -0.435023, -1.763519, -0.550816, 2.047600, 0.822127, 0.040306, -0.033598, -0.242002, 0.147377, 0.250908, 2.251618, -0.041361, -0.358791, -0.181501, -0.591130, 0.254489, -0.714953, -0.740986, -1.279546, 0.949467, -0.873217, -0.467208, 0.190946, -1.008175, 1.801631, -0.126082, 1.067338, 0.288161, 0.249066, -0.617229, 0.593719, 1.530435, 1.884994, -0.081046, -0.968992, 0.160153, 1.969566, -1.053953, -0.836548, 0.139843, 1.494685, 0.352406, -0.926121, 1.569402, 1.523643, -0.278746, 0.898174, 0.658881, -1.684113, -0.701539, -1.447959, 0.663772, 1.112158, 0.061477, -0.059743, -1.103660, -0.182346, -1.185428, -1.876082, 0.655456, 0.558117, -2.022881, -1.520818, 0.347973, -1.594027, -1.155989, -0.045850, 0.731735, -1.289687, -1.541892, 0.210944, -0.625924, 0.199930, -0.080277, 0.903839, 1.231986, 1.067262, -0.068049, -0.699953, 0.822718, -0.296499, -0.221543, -0.278970, 0.513237, 0.827613, 1.713596, 2.597856, -0.140316, 0.362628, -0.821054, 0.157040, 0.118295, 0.553996, -1.485809, 0.258481, 0.355334, -1.177092, 0.103126, 0.398919, 0.190596, -0.803824, -0.397641, -0.372418, -0.009174, 0.162730, 0.611300, 1.236188, 1.789484, -0.232265, -1.521689, -1.170176, -0.831056, -1.337540, 0.137027, -0.417757, 1.164534, -0.801658, -0.389173, -1.443340, -0.920076, 0.441733, -0.040641, -0.035823, -2.645470, -1.232161, 0.147755, -0.421072, 0.532214, -0.856269, -0.634907, -0.403554, -0.346834, 0.839574, -0.087193, 0.441669, 0.738109, -1.393023, 0.478111, -1.067152, -2.588732, 1.711142, 1.215224, -0.728539, 1.647228, -0.973777, -0.713173, -0.077688, -1.157092, -0.827909, -0.856171, 1.090561, 1.046554, -0.058885, -0.559543, 1.384331, 1.161126, 1.337533, 0.097788, 0.670159, 0.911006, 0.529475, -1.536989, 0.349344, -0.096134, -1.219789, 0.046755, 0.823575, -0.009236, 0.107935, -0.477113, 0.648281, -0.213923, -0.803146, -0.329485, -0.572589, 0.652331, -0.207981, 0.727378, 0.381030, 0.022028, 1.303343, -0.468149, -0.477167, 0.456223, 0.125330, 0.478265, -0.628370, -0.159488, -0.967702, 2.533384, -1.029571, 0.114859, 1.126299, -0.223379, 0.059862, -1.161115, 1.011638, -1.229890, -2.005553, -0.727579, -1.437629, -1.777161, -1.213175, 0.875985, 0.028471, 0.050240, -0.783120, -0.064472, -0.759533, 0.589579, 0.430470, 0.649749, 0.209732, 0.040350, 0.941712, -0.323346, 1.486470, -0.150771, 0.344093, -0.475365, -0.936564, -0.502017, 0.144467, -0.759579, -0.750176, 1.734031, 0.114979, -0.829583, -0.024601, -0.897302, 0.670654, -0.412803, 0.400521, 0.668734, -0.957613, -1.484817, -0.345223, 1.250503, -0.535899, -0.009035, -0.528449, 1.986513, 2.060075, -0.130140, 1.040218, 1.052733, -1.392318, -0.435285, 1.826712, 0.505820, -1.051085, -0.080287, -0.617848, 0.883152, -0.647066, -0.396832, 0.743422, 0.887783, -0.697282, -0.544166, -0.702491, -0.623455, 0.374829, -0.785628, 0.003286, 1.263164, -2.329807, -0.614077, -1.238433, 0.891699, 1.553901, 0.704964, -0.671187, 1.504610, -2.033374, 1.953688, -0.124666, -1.080682, 0.884962, -1.197730, -0.583376, -0.131424, 0.280526, 0.926353, -1.122543, -0.911031, -0.265768, -0.019021, 1.521266, 0.602850, 0.893976, -0.913951, 0.292408, -0.037936, 1.372991, 0.969045, 0.231774, -1.618405, 1.453707, 0.110059, -0.115255, -0.276925, 0.413341, -0.438483, -0.553558, -2.901073, 0.260692, 1.145421, -1.203136, 0.948973, -1.298123, -1.958885, 2.066862, 0.112493, 1.208171, 1.674916, -0.020802, -0.838846, -0.305266, -2.597898, -2.074761, -0.180108, 0.895331, 0.244444, -0.338277, 2.188682, 1.884206, -0.598579, -0.558468, -0.410476, -1.159934, 0.309216, 0.381153, 1.448310, -0.998552, -0.910545, -2.139353, 0.663926, 2.045503, 1.095219, 1.955748, 1.028688, -0.651780, 1.632300, -0.943432, 0.911641, -0.684423, -0.327019, -0.505193, 0.135176, -0.888351, -1.751179, -0.208985, -0.932757, 2.598347, -0.609779, 0.307194, -0.886524, 0.034716, -1.398090, -0.614924, 0.288838, -0.632283, -0.272610, -0.929351, -0.378669, -0.077282, -0.006521, -0.058322, 0.491247, 0.351092, -0.072483, 0.992031, -0.283934, 0.642206, -1.271951, 0.840728, -0.348995, -0.172767, 0.194900, -0.274372, 1.686866, 0.365430, -0.762178, -1.689258, 0.396351, -1.103336, -0.433077, -0.610659, -0.476620, 0.920566, -2.285129, -0.080145, 0.183470, -0.357605, 0.029375, -1.174137, 2.090874, -0.468729, -0.646514, -0.704356, 0.751061, 2.093110, 1.365408, -0.647215, -0.607229, 0.553309, 1.028274, 0.500955, 0.044174, 0.391770, -0.964070, -0.389583, -1.040431, -0.149200, -1.870575, -1.083602, 0.407257, -1.515209, 0.945394, -0.877288, 1.202483, 0.329300, -0.414634, 1.363362, 0.701967, 0.021943, -0.336957, 0.563201, 0.362663, -0.096563, -0.352436, -0.313084, 0.774509, -0.292444, 0.235398, -1.047354, -0.217255, 1.224749, 1.198082, 0.243714, 0.413656, -1.563167, 0.009253, 1.336108, 2.276343, -0.816204, -0.609763, -0.106606, -0.211859, -0.419947, -1.252650, 0.678270, 0.364397, -0.303829, -0.496633, 2.521461, 0.444512, -0.690825, -1.091630, -0.674005, 0.256683, -0.522537, -1.058666, 0.717487, 0.029575, 0.583096, -0.262566, 0.638153, -0.294252, 0.399917, -1.033148, 0.216968, 0.547010, -0.973192, -0.242378, -3.080508, 0.707494, 0.985695, 2.193674, -0.246119, -0.737012, 1.426696, 0.295096, 0.250086, -0.610012, 0.053014, -0.253414, 0.018542, -1.049275, -1.513752, -0.445451, -1.492897, -0.601685, 1.208795, 0.409892, -0.361743, -0.293387, -0.145330, 1.127861, -1.852282, -1.495407, 1.223743, 1.118501, -0.598514, 1.016503, -0.598052, -0.816620, -0.111217, -2.164274, -1.506453, 0.848012, -1.684716, 0.397399, -0.025137, -0.082389, -1.592093, -0.931004, -0.053304, 1.186109, 0.241978, 0.001271, 1.244314, 0.253956, 1.508187, 0.336085, -1.638505, 0.342083, -0.468752, -1.653105, -0.983859, 0.236307, 1.104780, 0.414965, -0.465309, 0.983627, -0.832675, 1.590554, 0.267019, 0.442295, 0.089077, 2.132010, 0.776167, 0.638996, -0.450323, 0.347643, -0.923947, 0.255782, 0.168298, 0.509174, 0.443585, 0.944438, 0.087974, -0.828370, 0.002427, 2.078786, 0.805401, -1.471338, 0.357937, 0.164135, 0.867548, -0.882660, 0.310870, 1.745017, 0.497361, 1.018385, -0.306170, 0.729058, -0.505483, -0.030711, -0.949488, -2.127658, 0.498005, 0.361026, -0.372618, 0.036155, -1.172335, 0.421863, 0.232184, -0.246218, 0.118726, 1.610804, -1.378174, 0.283408, -0.947898, 0.004621, 0.352545, -0.418786, -0.284877, 1.156360, -1.784031, 0.586838, -1.190856, -1.825560, 0.391753, 0.204176, 0.679014, 1.117311, -0.053043, -0.381388, 0.225296, 1.156356, -0.565207, 0.946840, -0.772552, -0.281142, -0.716169, 1.183331, -0.462058, -0.133600, 2.386313, -0.954903, 1.617639, -1.990874, -0.503741, 0.805940, -1.798753, 1.018242, -0.069681, 0.768632, 0.829163, 0.248769, 0.473693, 2.759011, -0.175960, -1.088549, 0.090859, 0.868354, 1.221065, 0.098714, 0.504231, -0.488036, 2.065358, 0.424258, 0.932790, 1.445589, -0.535498, 0.323761, -1.241941, 0.770135, 1.600767, 0.377585, -1.561460, -0.315027, 0.809735, 0.208054, -0.680719, 0.951335, -0.057570, 1.001270, -0.167095, -0.205945, 1.083783, -0.006386, 0.507432, -0.509077, -1.529743, 1.234340, -1.826191, 0.331366, 0.708026, 0.112583, 0.828184, 0.093870, -1.045377, -0.439622, -0.689164, -1.625109, -1.033484, 1.300538, -1.205164, 0.735395, 1.848574, -0.412589, -0.460112, -0.654017, 0.824179, 1.737731, 1.692008, 0.217702, -0.920894, 0.289846, 0.489996, -2.763100, -1.476797, -1.584765, 1.324330, 0.241056, -1.376677, 0.798251, 0.989410, 0.486622, 0.432964, -0.127954, 0.255011, 0.235208, 0.324400, 0.242507, 0.850728, 1.853686, -0.769172, -0.676401, 0.981819, -0.665699, -0.436257, -0.746578, 0.719598, 0.670031, -1.617423, -0.765698, -0.130638, 1.339001, -0.250610, -0.233239, 1.887988, 0.395393, 0.443265, -0.357346, -0.932440, -0.041591, 1.545087, -0.827120, -0.328962, -0.258529, 0.272733, 0.755365, 0.316440, 0.583357, 0.307030, 1.749242, 0.128056, 0.731642, 2.486978, 0.222047, -1.213414, -1.748090, -0.666311, -0.726829, -0.102644, -1.158301, 1.226055, 0.189799, 0.249707, 0.297159, 1.648256, 0.602773, -0.078200, 2.368379, -1.029276, -0.031718, -0.060050, -0.106025, 0.208640, -0.297482, -0.594718, -0.536860, -1.618080, -0.012819, 0.665794, -1.306326, 0.329952, -0.384732, 0.471170, -0.692423, 0.352658, -0.353765, -0.624031, 1.618181, -0.117278, -0.160651, 0.133729, 0.416183, 1.741488, -0.132032, -0.096393, -0.667343, -0.126846, -1.023001, 0.756026, -0.216776, 0.307320, 0.185616, 0.765330, 2.698803, 0.155681, -0.284734, -0.049457, 1.226896, 1.321137, 2.105102, -0.024803, -2.351218, 0.955395, 1.623109, -2.593519, 0.880723, 1.366364, -0.453704, -0.169199, 0.101298, -0.339878, 0.669135, 0.084879, 0.898043, -0.671916, -0.210344, 1.651739, -0.314424, 1.108827, -1.167360, -0.458726, -0.480828, -1.032212, -0.385593, 0.958898, -0.979084, -1.761650, -0.311020, -0.663789, 3.002856, 0.500758, 1.869690, -0.009320, 0.976446, -1.649059, -0.016867, 1.788669, -0.281528, -0.820604, -0.935893, -1.498471, -0.762326, -0.425157, 0.495993, 1.540421, -0.284625, 0.385401, 1.375196, -0.032166, -1.812318, 0.580485, -0.579971, 0.569041, -0.324428, 0.429991, 0.747618, 1.127255, 0.482443, -1.583986, 0.003698, -0.794320, -0.131490, -1.469137, -0.287240, 2.368807, 1.997617, 1.975032, 1.281578, 0.030255, -0.206150, -0.613783, 0.652650, -0.132643, 0.566216, 0.201846, -0.410452, -1.550183, 1.027754, 1.109950, 1.231980, 0.117048, 0.026106, -1.141737, 0.522628, 0.560496, 1.075405, -1.829545, -0.032200, 0.580612, -0.329021, -0.479999, -2.144433, 0.689593, -0.942547, 1.524227, 1.470467, -0.180339, -0.560179, -0.947481, -1.483103, -2.078937, 0.546303, -1.200161, 0.443168, 1.246248, 0.467015, 0.041833, 1.185161, -0.327042, -0.262802, -1.070756, 0.465227, 0.014188, -1.044144, 0.186583, -1.184165, 1.554506, 1.030036, 0.886680, 0.014195, -0.589994, -0.918017, -0.297715, -0.964505, -0.339930, -0.349669, -0.342444, 1.181813, -1.065601, -0.118944, -0.326901, -1.334548, -0.159863, 0.837796, 0.027617, 2.080922, -0.133526, -0.319612, 1.616086, -0.166965, 0.420309, 0.407471, -0.707876, 0.146836, -0.485669, -2.241846, 0.058797, 1.638197, -0.281664, 0.363624, 0.224746, 0.347689, 1.504757, 0.867705, -1.058335, -0.757657, -0.233610, -0.605775, 0.103034, -0.782511, 0.484143, -0.614415, -0.849009, 0.009519, 0.851913, 0.783826, -0.705088, 1.500142, -0.516031, -0.475369, -1.390907, -1.310930, 1.388639, 1.468088, -0.862605, 0.641629, -1.331897, -0.420069, 0.996633, 2.415989, -0.690723, -0.248493, -0.120515, -0.383829, 0.621671, 1.196772, -0.290069, -0.656415, -0.050779, 0.442847, -1.222851, -0.512616, 0.694622, 2.135243, 1.632016, 0.463504, 0.163877, -0.432316, -0.074746, -0.036560, -0.136754, -0.902811, -1.496528, -0.072025, -0.228463, 1.702090, -0.363793, 0.074235, 1.243025, -1.659096, -0.603901, 0.414347, -1.563740, 0.905980, -2.441795, 0.378857, 0.365431, -2.931975, -0.640035, 0.491280, -1.182243, -0.057325, -0.705213, -0.623949, 0.589179, -0.011464, -0.339350, 1.278987, -0.350046, -2.259562, 1.156975, 0.431198, -0.448226, 0.181641, 0.884539, 1.563273, -1.797369, 0.938881, 0.276529, 0.733857, 2.082041, 1.287495, -0.493925, 1.098816, 0.598159, -0.414070, -0.519057, 0.482735, 0.509668, -1.662336, 0.028147, -1.365872, -0.233200, -0.490152, 0.327856, -2.546453, -1.171195, 0.957049, 2.172434, -1.613645, -0.725649, -0.333343, 0.723008, -1.046704, 0.184869, 0.302755, 0.632297, -0.213238, 0.131648, 1.907775, 0.501460, 1.272059, 1.344904, 0.474290, -0.362896, 0.230117, 0.467075, 0.454175, 1.339638, -0.595783, -1.008737, -0.238725, 0.480643, -1.216938, -0.362692, 0.718953, -0.532518, -0.293144, 0.455388, -1.204346, -0.509517, -0.672102, -0.347790, -0.355769, 0.668932, 0.450684, -0.464111, 0.428428, 1.070328, -0.769980, -0.040134, 0.211202, -0.117045, -1.614071, 0.612755, -0.749004, -1.503798, 2.681678, 0.526501, 1.302395, 1.850410, -1.570418, 0.552783, 0.555774, 0.647278, -1.540283, 1.126552, 0.716625, -0.805623, -0.784180, -0.457727, -1.494954, -1.800645, -0.247513, 0.770136, -1.755537, -0.064888, 0.334915, -0.438589, 1.378984, 0.304287, -0.828168, -0.082067, 0.025025, -0.641677, -0.957067, 0.192324, 1.713293, -0.198615, -0.430762, -0.307394, 0.108820, 2.067800, 1.753175, -0.175777, 0.380387, 0.287044, 0.822855, 1.312685, -0.011331, -1.184620, -0.706590, -0.960235, -0.371950, 0.484617, -0.307238, -0.415538, -0.450592, -1.798892, -1.024896, -1.962870, 0.383872, -0.945319, -0.546227, 0.143008, 0.885236, -1.415447, -0.607128, -0.073790, 0.839108, 0.095335, -0.612102, 0.131944, 1.497239, 0.703147, -0.762010, -2.455624, -0.550255, -0.527730, -1.200463, -1.335213, 0.198714, -0.853133, -0.108890, 0.778238, 0.519175, -1.099018, 1.044160, 0.064686, -0.248143, -1.123017, -0.104113, 0.593299, -0.328193, 1.238760, 0.289982, -0.120638, 0.543488, 1.481058, -1.728156, 0.557878, -0.564819, -1.294336, -0.365197, -0.903325, -0.736969, -0.593731, 0.231700, 2.312100, 0.044761, 0.605234, -0.402889, 0.293846, -0.238520, 0.792277, 0.399851, -1.271464, -0.143157, 0.817546, -0.414382, -0.584692, -1.231259, -0.610151, -1.301072, -0.960832, 0.844918, -0.394307, 0.091667, 0.049415, -0.228930, 1.193390, 1.165965, 0.239050, -2.000160, 0.563655, 0.524789, -0.323701, -0.288131, 0.586101, -1.919066, 0.788416, 1.076393, -0.267581, -2.066545, 1.361658, 0.192215, -0.268293, 0.685415, -1.066501, -0.890900, -0.753302, -0.943416, 0.136978, -2.134350, -0.177144, -2.083099, 1.529065, -1.324988, -0.713418, -1.698089, -0.951384, -0.528493, -0.824585, -2.350519, -0.055867, -1.488417, -0.436066, 0.015655, 0.713698, -0.390350, -0.624259, 1.473821, 1.544823, 0.261959, -0.437874, 0.531292, 1.669885, 0.309119, -0.113530, 1.824166, 0.706350, 0.716046, -1.927026, 0.799317, -1.153619, 0.480715, 1.901056, -0.734579, -0.028224, -2.146215, 1.224755, 0.135683, 0.707858, 0.074689, 0.815132, 0.006397, -0.226859}, - { -1.775708, 1.577773, -1.357120, -1.948466, 2.379937, 0.974103, -0.075040, 2.195132, 0.891181, -0.713695, -0.795392, 0.952692, 0.562669, 0.395196, -1.223407, 0.087385, -0.574228, -0.018478, -0.592905, 1.485322, 0.147479, 1.544212, -0.067118, -0.527288, -1.324014, -0.092526, 0.218096, 1.054857, -0.207179, -1.471871, -0.072510, 0.128589, 0.313770, 0.527617, 0.781455, -0.560813, -0.497827, 0.763926, -0.081313, 1.627997, 0.422461, -0.470420, 0.163412, -0.515582, 1.152705, 1.348188, -1.169136, 0.777720, -0.124728, 0.823216, -0.321754, -1.199779, -1.373755, 0.059612, 0.408166, -1.728657, -0.574989, 0.558442, 1.049780, -0.651828, 0.478471, -1.564489, 1.136657, 1.178832, 0.361032, 0.250224, -1.324271, 0.368622, 0.609381, 0.041441, 1.023976, -0.317153, 0.008926, 1.497955, 1.331776, -1.366921, 1.694042, 0.319073, 1.243736, -0.275788, -1.386266, -0.239738, -1.453370, -3.428048, 0.438705, -0.963804, -0.878525, -0.583121, -1.116015, 0.049740, -0.222268, -0.115479, 0.255961, 0.240079, 1.159971, -0.515537, -0.405841, 0.556940, 1.876047, 1.499914, 0.318520, -0.357236, 0.616091, 0.319665, -0.036077, -0.409389, 2.053128, -0.509843, -0.178014, 0.089493, 0.768478, 0.241166, 0.286690, 0.398833, 0.478272, 0.465642, -1.566303, 0.228673, 0.268823, -0.600708, 0.250576, -1.016163, 0.510160, 1.088357, -1.432796, -1.336184, -1.323552, 1.956550, 0.650685, -0.353928, -0.315436, 0.735578, 0.247915, 0.539326, -0.048299, 0.596354, -0.172272, 0.679505, 1.323684, 2.440036, -0.953941, 2.264165, -0.857901, -0.282070, 1.451947, 1.021027, 1.484610, -0.326566, 1.162769, -1.563729, -0.125484, 0.731224, 1.693233, 0.546951, 1.626992, -0.224999, -0.349068, -1.081630, -1.393522, 0.187838, 2.066783, -0.542921, 0.555104, 2.261391, 0.445907, 0.630637, -1.327879, -1.552196, 0.495191, -0.901314, -2.284741, 0.505776, -0.772807, -0.435042, 1.676813, -0.687331, -2.071118, -1.328349, 0.025718, 0.102198, -1.748192, -1.294535, 1.859533, 0.864871, 0.344695, 0.195630, 0.000184, -1.547332, -0.790501, -0.568389, 0.756407, 0.561980, -0.585830, 0.653992, -1.078229, -1.255563, -1.558588, -1.028194, 0.143493, -2.542594, -0.032492, 0.019688, -0.150061, -0.345382, -1.687949, 0.772111, 0.063768, 0.599223, 0.593575, 0.103457, -0.040748, -0.232488, 0.090344, 0.048193, -0.810328, 1.002816, 0.856849, 1.381180, -0.230105, -0.805479, -2.013278, 0.432458, 2.037941, 0.659237, -0.259172, 0.392761, -1.393723, -0.267069, -1.790866, 0.528086, 2.181783, 1.148085, -1.356451, 0.083570, 0.046276, 0.663066, 0.199981, 0.755376, -0.627783, -0.792499, 0.361999, 0.498776, -0.480737, -0.203732, -2.370168, 0.786610, -0.194616, -0.831342, -3.450214, -0.093845, 0.401587, 0.471217, -1.019708, -0.591133, -0.353336, 0.370283, -1.552086, 1.005746, 1.153766, -0.595319, 1.459991, 2.573270, 0.350138, -1.293580, -0.739786, -0.737980, -0.458690, 0.994674, -0.650658, 0.809190, 0.253029, 0.273181, -2.272073, -0.374725, 0.861526, 0.381432, 0.638572, -0.059434, -0.392367, -1.576198, -1.080680, 1.085267, 0.581584, 1.250279, -0.270705, 0.907434, 0.204817, -1.132815, -0.312156, 0.325631, -0.068137, 1.716925, -0.569874, 1.850344, 0.140704, -1.427467, 0.519566, 2.054110, 0.238838, -0.338579, 0.426959, 0.788494, 0.231708, -0.179429, 1.521585, -0.346507, -0.639987, 0.708528, 0.055052, -0.138056, 1.218998, -0.040668, -1.703094, 2.910345, 0.515357, 0.775643, 0.537399, 2.486140, -0.158430, -0.652643, -1.694820, -0.671851, -0.432173, 0.155075, -1.529571, -0.912793, -0.039052, 0.300161, 2.178182, 0.957360, -1.162344, -0.119158, 1.773908, -0.912277, -1.059169, 0.230747, 1.762620, -0.648301, 0.746444, -0.210026, -2.037598, -0.063281, -0.662760, 0.634799, -0.725785, 0.010431, -0.767840, -0.923967, 0.006651, 0.660096, -0.345080, 0.551504, 0.236843, -0.259468, 0.400491, -1.287899, -1.383754, 0.323031, 0.167118, 0.666256, 1.135421, 0.207733, -0.476413, -1.314378, -0.184729, -1.721126, -0.643044, 1.427276, 1.711674, 1.453249, -0.969912, -1.113708, 0.534715, -0.571263, -1.024817, 1.747044, 0.565119, -0.441453, 0.132921, -1.238919, -0.862933, 1.144910, -0.989436, 0.832204, 0.206228, 0.601980, 0.735158, -0.530706, 0.454795, 0.087421, -0.110428, -1.532028, -2.125558, -0.732246, -0.095187, 0.314524, 2.072491, 0.141578, -2.154202, -0.996405, 0.154052, 0.386981, -1.527894, 0.662735, -0.728092, -1.277087, 1.947863, 0.176360, -1.577321, 0.470118, -1.595076, 0.330754, -1.172099, -0.333187, -0.295277, -1.073788, -0.182389, 1.065091, -0.422886, -0.648396, 0.001978, -0.573041, -0.319242, 0.563175, 0.190408, -1.009268, -1.572550, -0.229680, -1.521161, -1.606081, -0.186338, 1.084512, 0.767137, 1.324980, 0.294943, -1.189233, 0.840304, -1.238156, -0.515402, 0.684759, -0.514806, -0.035721, 0.423411, -0.939540, -0.027619, -0.170692, 0.607354, -1.620211, -0.028658, 0.451254, 0.062468, -0.687237, -0.712231, 1.869627, -0.853865, -1.928953, -0.855752, -0.092192, 0.251865, -1.488517, 1.201767, -0.762946, 1.061949, -1.292997, -0.980431, 0.764382, -0.321076, 0.423421, 1.114901, -0.291273, -1.751577, 0.198999, -0.393977, 1.105855, -0.220299, -0.149601, -0.976882, -2.059405, -0.264161, 1.898186, -0.281793, 1.114171, 1.217944, -0.076797, -0.038639, 1.210367, 1.624460, 0.317270, -0.168522, 0.248750, 1.351528, -1.778224, -0.007352, 1.591936, -1.030857, 0.068813, -0.931847, 1.498091, 0.340230, -0.715672, -0.810611, -1.280811, 0.904199, 0.994395, 2.076841, 1.768701, 1.654172, -1.064972, -0.471928, 0.319467, -0.027157, -0.431668, 0.541589, 0.588718, -0.657105, 1.404547, 1.463650, -1.647953, 0.033319, -0.228811, -1.716704, -0.084922, 1.160699, -1.855660, 0.486622, -0.448874, -0.534979, 0.538831, 0.398621, 1.816244, 0.617336, 0.509768, 0.278272, -0.407466, -1.102746, -0.640729, 2.204052, -1.090603, 0.428259, 1.131038, 0.484830, -0.219091, -1.273546, 2.582221, 0.129235, 0.225636, -0.446631, -0.947427, 1.641930, 0.001540, -0.222013, 0.516219, -0.217888, 1.285172, -1.654165, -0.400398, -0.263518, -0.577081, -0.614662, -0.034810, 1.151575, 1.481600, 1.029548, -1.324441, -0.033114, -0.464003, 0.746416, -1.513239, -0.557277, 0.613971, 0.323732, 1.050647, 0.454061, -1.844451, 0.506889, 1.338220, 0.263406, 0.014499, -0.399012, -0.244619, -0.058918, -0.545773, -0.612247, 0.460900, 0.033688, -2.438305, 0.830354, -1.647037, -1.478666, -0.471272, 0.275862, 0.658311, 1.516656, -0.435511, 0.083734, 1.399203, 0.297462, -1.815983, -0.623867, -1.854946, 0.668973, -2.180854, -0.364391, 0.081705, 0.823075, 1.776006, 0.067504, 0.224016, -1.491039, 0.748698, 1.074837, 0.131548, -1.422208, -1.920705, 1.442040, 0.222505, 0.046959, -0.564873, -0.932313, -0.873606, -0.200770, -0.425828, -1.369458, 2.656986, -0.879825, -1.926587, -1.297984, -0.591694, 0.624829, 1.122620, 0.371118, -1.125153, -0.211166, -0.105891, -2.217010, -0.442485, -0.340532, -0.656841, -1.088273, -0.361514, -0.770818, -0.421875, 0.334398, -1.338224, -0.958271, 0.872752, -0.808662, 0.255063, -1.515681, 0.493300, -2.064736, -0.552958, 0.626030, -0.549370, -1.835676, -0.196684, -0.050138, 0.269438, 1.094259, 0.135782, -1.033487, -1.065508, 1.876711, 1.126448, 1.844628, 0.980747, -2.225693, 1.555722, -0.480570, -0.482708, 1.575417, 2.144323, 0.720656, 0.341507, -0.451255, -0.423274, -1.030605, -0.895396, -0.963350, -1.078762, -0.261076, 0.218953, 0.991210, -0.844975, 0.154304, -0.726847, 0.198680, -0.486901, -1.515643, -0.716145, -0.628174, -0.907404, -0.451294, -0.314370, -0.051817, -1.352604, -1.062598, -1.005519, 3.518583, 1.019941, 0.668420, 0.945828, 0.293143, -0.273200, 0.386627, 1.298502, -0.742222, 0.434938, 0.206664, 0.817568, -1.004614, -0.172594, 0.959674, 1.426990, -0.500679, -0.283698, -0.720258, -0.188524, -0.504126, 0.778705, 0.545453, -0.376503, 0.294048, 1.174140, -0.089970, 0.642154, -0.150266, 1.027822, 1.254247, -0.507758, 1.931679, 0.434283, -0.349654, 1.071715, 0.989825, 0.959410, 0.691310, 0.179832, 0.795462, -0.460646, 0.271950, -0.210593, 0.990797, -0.306692, 0.789792, 0.609754, -0.840308, -0.719276, -0.467790, 0.607719, 0.210216, 0.737544, 1.578652, -0.332656, -0.369550, -1.562057, 0.406025, -0.072135, 0.705253, 2.786014, -0.782209, 0.144101, 0.027090, 0.411446, -0.103862, -0.794118, -2.550025, -0.794052, 1.197102, -0.070774, -2.141302, 1.142176, 0.571104, -0.106905, 1.215271, 0.411307, 0.322397, -0.143596, -1.489449, -0.012869, -0.030781, 0.289805, 2.102154, -0.468891, 1.575945, -0.154692, 1.109218, 1.013330, -0.850630, -0.691914, 1.364860, -0.484503, 1.456156, 1.014713, 0.734903, 0.449798, 0.716608, 0.162605, 0.186169, 0.215676, -1.057875, 1.186841, -1.372339, 0.688239, 1.331015, -0.296080, -0.676232, -1.943690, 0.173155, -2.314358, -0.320911, -0.085317, 1.200871, 0.103588, 0.201949, -0.215095, 0.357064, 0.688957, 1.057573, 1.973270, 1.274735, -0.571417, 0.226696, 1.014030, -1.502967, 0.707380, 1.203169, -0.515187, 1.283324, -0.620082, -0.051055, -0.089619, -0.117189, -2.145127, 0.826318, 0.567406, 1.020097, -1.139863, 1.425147, 2.643832, -0.201424, 1.463312, 0.842408, 0.771046, -0.658888, -0.638513, 1.154166, 0.506405, -0.269198, -1.747310, 0.748471, -1.039160, -1.183894, -1.773082, 1.734395, -0.218093, -1.189979, -0.639931, -0.287645, 0.479232, 0.375571, -0.884342, -0.646296, -0.627006, -0.175362, -0.523969, 0.968641, 1.286379, -1.329833, 0.122692, -2.351994, -2.193979, -0.104421, 0.457688, -0.122849, 0.118144, 0.721333, 1.005934, -0.030132, -1.142573, -0.811456, 1.625021, 0.472148, -1.774473, 1.366981, -0.061792, 1.655075, 0.823839, -0.406401, -0.709887, 0.263895, -0.582684, -1.147522, -0.243877, -1.173104, 0.715198, -0.135716, 0.970815, -0.506302, 1.256250, -0.304273, -0.622631, 0.774186, -0.098001, 0.511715, -0.653205, 0.405905, -1.144706, -0.762377, 0.104969, -1.191963, 0.436752, -0.486578, -0.738273, -0.218448, 0.677714, -0.140663, -0.176665, -0.231104, 0.824045, -1.405195, -1.396788, -0.678873, 0.932869, 1.584708, -0.859148, -0.525673, 1.603462, 0.185084, 1.146181, -1.679175, 2.919252, -0.378511, -0.078541, -1.639030, -1.181860, 1.001962, -0.226263, 0.300445, 0.952903, 0.349240, -0.018386, 1.339089, -0.852537, 1.293326, -1.234429, -1.259413, -0.574849, 0.341944, 0.635390, 1.248488, -0.518246, -0.009616, -0.395374, 0.335589, -0.391057, 0.967579, -0.431392, -0.244620, -1.216109, -0.676797, -1.929863, -1.927927, -0.145844, 0.203886, -1.372941, 0.613168, -1.291676, -1.549550, -1.404324, 0.543865, 0.743535, 1.588470, -0.780898, -0.366438, 1.637097, 2.270249, 0.516151, -0.650590, 1.958283, 0.533614, -0.362792, -0.280270, -0.472363, 1.033453, 1.194234, -1.257510, 0.269215, -0.458214, 0.383964, -1.431215, -0.533049, 0.633671, -1.486081, -0.395552, 0.883551, -1.189532, 0.229135, -1.089706, -0.079819, -0.131758, -0.042324, -1.633988, -1.674003, -0.630605, -1.468850, 0.382644, -0.553704, 1.748937, 1.870357, 0.231930, 0.566580, 1.053156, 0.482045, 1.192855, 0.770437, -0.205162, 0.221310, 0.384379, 1.852206, -1.237267, -1.810564, -0.175734, -1.025309, -0.719673, 0.014981, -1.054880, 0.129170, 1.155245, 1.084922, -0.131768, -0.778565, -0.683912, 1.632237, -0.270281, -0.515743, 0.554145, -1.552635, 0.728398, -0.513917, 1.028731, 0.946778, 0.101074, -0.222134, -0.453484, -0.157685, 0.686110, -2.657552, 0.213809, -0.570501, 0.398271, -0.034616, 2.299735, 0.617206, -0.009037, 0.489672, 0.259026, 0.982366, -0.916636, -0.835163, 0.452656, -0.636508, -0.837199, 2.029793, -1.028072, 0.241387, 0.490390, -1.198617, 0.827183, -0.101270, 1.271432, 0.647919, -0.252802, 0.025678, 1.099627, -0.192586, 0.382749, -0.229662, 0.425308, -1.479770, -0.144008, 0.926339, -0.078180, -0.442595, -0.084503, -1.174988, 2.062048, 0.220858, 1.023074, 0.629293, -0.758778, -0.161750, -0.801879, -0.903283, 0.944132, -0.906454, -0.522810, 2.106923, -0.956492, 0.746447, -0.041929, 0.477438, 0.883054, 0.558895, -1.335454, -0.346808, 0.259823, -0.158528, 2.285153, 1.922114, -0.490711, 1.660747, -0.132825, -0.163069, -0.080119, -0.153927, -0.650564, -1.200334, 1.385344, -0.390135, -0.207605, 2.078298, 1.237065, 0.141470, 1.033145, -0.540462, -0.494870, -0.071068, -1.664295, -0.274671, -1.468852, -0.578119, -0.396694, -0.442577, 1.973585, -0.069533, -1.006045, -0.315918, -0.726714, 0.706754, 0.468841, 0.083514, 1.290425, 0.190972, -0.139193, -0.506232, 0.982724, 0.544418, -1.815975, 1.874176, 0.871083, 0.033521, 0.629592, 1.304928, -0.700882, 0.789623, -0.586080, -0.848986, 1.135839, 0.634214, 1.201540, -0.870741, 1.944623, -0.496977, 1.444003, -0.405687, 0.822867, 1.676593, -0.520585, 0.578250, -1.194576, 1.823117, -0.996548, 2.402521, -1.021042, -0.027274, -0.354823, -1.500319, 0.931279, -0.417669, -1.397350, -0.182041, -0.048365, 0.996540, -1.742504, 1.150031, 1.341433, 1.367734, -0.822363, -2.223567, 1.100254, 0.653989, -0.807970, -0.189016, -0.804092, 0.213814, -1.485453, 2.800562, 0.110801, -1.951356, 0.363166, -0.586134, 1.883338, 1.420361, 0.034059, -0.056076, -0.755489, -0.082437, -0.258651, 0.796638, 1.511878, 0.495026, -0.059032, 0.371131, -0.809234, 1.961914, -0.189696, 0.467770, 0.473456, -0.160251, 1.425941, 0.161275, 0.331375, 1.081585, 1.100084, -1.512353, -0.023201, -0.144617, 0.521923, -2.516715, -0.221022, -0.908016, -0.541444, 1.576889, 0.516303, -0.896864, 1.080233, 1.054607, -1.323635, -0.506084, 0.737874, 0.682534, -1.312657, 1.105786, -1.857938, -1.067394, -0.134948, -0.358176, -0.440916, -0.085567, 0.083360, -0.361560, -1.121371, -0.293974, 0.835560, 0.161648, -0.763389, 0.137067, -0.369772, -0.363351, -0.014890, 0.637033, -0.383004, -1.248646, -0.349934, -0.491336, -0.234832, -2.255174, -1.491752, -0.360289, 2.037044, 0.770860, 0.579947, 1.045691, -0.754107, 0.800637, -0.685494, -0.155525, 0.324770, -0.844874, -0.242755, 1.075303, -0.881917, -1.878024, 0.241259, 1.222231, 0.224661, 0.574867, 0.216944, 0.264035, 0.650297, 0.722769, -0.080460, -0.660219, 0.617302, 0.885114, 1.609503, 0.535712, -0.732011, 1.418941, 2.063185, 1.824984, 1.660638, 0.896825, -0.029203, 1.372220, -0.952185, -1.322015, 0.556037, 0.580473, -0.104982, 0.046964, -0.117813, -0.705521, -0.646329, -0.173694, -0.131886, -0.087059, 1.104625, -0.242121, -0.307542, 0.093469, -0.619114, -0.004495, -0.096606, 0.822098, -1.272659, 0.418360, 1.847186, 1.086269, -0.424036, 0.467723, -0.494768, 0.950519, 0.387744, -0.350703, -0.700662, -0.125557, 0.555294, 0.678339, -0.080568, 1.735546, 0.174262, 1.191062, 0.136239, -0.154005, -1.542194, -2.308535, -0.596132, 0.315933, 0.819645, 1.340121, -0.660858, 0.370789, 1.327930, -1.018899, -1.055663, -0.815302, -1.597600, -0.958477, 0.813381, -0.443054, 1.867535, -0.765669, -0.894600, 1.424273, -0.097083, -0.098563, -1.085633, -0.058550, 0.554588, -0.377396, 0.119660, 0.711123, -0.026442, -1.025043, -0.376491, 0.119248, -1.533973, 0.095374, 0.617827, 0.987291, -2.183068, 0.027208, 0.221829, -3.005217, 1.090522, -0.993239, -0.445808, 2.030088, 0.922485, -1.083660, -1.347993, -0.880972, -0.724366, -0.340507, -1.374918, 0.967600, -0.512508, -0.616746, 0.766628, 1.796489, -0.300281, -0.428366, -0.245438, 2.327469, -0.597833, 0.103056, 0.595945, -0.848635, -0.154962, 1.697285, 0.553511, -0.408970, 0.226626, 0.156645, 0.170564, 0.553376, -0.706542, 0.822720, 1.343730, -1.500968, -1.947354, 0.107539, -0.651983, 2.212274, 0.544837, -0.326758, -0.064990, 1.426269, 0.385979, -2.018229, 0.389803, -0.614532, 0.857144, 1.853422, 0.333639, -1.681254, -0.127935, 1.169867, 0.743258, 0.812147, -0.013091, -1.023290, 1.279952, 0.218842, -0.052876, 0.494333, 0.518687, 0.655237, 0.224787, 1.017037, -0.862203, -0.755503, 0.874073, 0.676425, -1.137551, -1.548401, -0.509317, 0.612588, -0.290280, -0.496163, 1.142411, 1.085601, 0.784212, 2.014164, 0.055325, -1.718364, 0.263004, 0.073543, 0.055354, 0.879918, -0.334428, 0.081678, 0.578851, -0.897087, 0.412534, -1.877735, -1.256565, -0.733116, -1.046757, 0.679224, -1.610478, 0.024093, 1.440681, -0.838338, 0.126584, -0.343775, 0.547078, 0.375123, 1.018756, -0.730928, 0.328524, -1.705947, -1.048713, 1.091643, -0.028292, -1.224218, -0.089561, 1.217982, -1.989449, 1.088431, 0.252731, -0.162801, 0.768207, -1.699195, 1.247580, -0.220136, 2.589546, 0.660711, -0.565806, -0.054828, -0.553599, 0.884829, 0.188387, -0.076428, -0.506129, -0.551856, -1.062665, 0.738606, -0.427905, -0.987469, 0.245128, -1.223548, 0.091279, -1.566992, -0.265303, -0.134684, -0.682425, -0.756457, -1.467724, 0.660941, 2.109020, 0.143626, 0.428602, 0.143336, 1.300321, 0.748056, 0.432438, 0.847719, 0.947533, 0.139024, -1.571151, -1.071211, -0.468524, 0.384259, -1.189497, 0.406632, 0.681126, -0.440703, -0.773902, -0.838168, -1.208226, -0.988567, 0.150959, -0.643446, 0.856990, 0.980113, 1.162811, 1.596140, -0.724479, 0.105303, -0.186950, 0.283084, -0.064893, 1.990701, -1.785999, -0.864643, -1.870263, 1.107410, 0.504602, -0.732027, -0.570880, -1.302793, 1.154628, -0.054597, 0.399226, -0.225317, -0.212890, -0.855952, 2.569160, 0.545390, -0.824547, 1.599204, 0.058183, -0.919645, -0.917455, 0.832989, -0.170566, 1.908245, 0.001603, 0.627770, -1.670792, -0.301800, 0.935163, -1.255118, 1.568303, 0.005433, 0.449391, -0.077267, -0.647444, -0.168594, -0.784819, 0.187211, 0.134343, -1.045220, 0.826532, -0.677676, -1.064600, -1.007895, 0.002193, -0.934753, 0.455572, 1.054577, 0.325151, -0.727604, 0.948810, -0.040443, 1.009822, -1.099845, -0.685704, -0.577473, 1.042355, 1.585365, 0.508017, 1.250269, 0.834853, -0.187163, -0.974382, -0.558890, 0.751242, 0.520268, 0.563874, -1.592970, 0.392170, 0.749258, -0.909995, -0.609332, 0.145706, -0.495422, 2.282540, -0.553180, 1.030593, -1.251119, -2.292460, -0.680006, -1.029058, -1.053776, -1.431870, 0.712730, -0.193627, 0.298942, -1.077898, -1.324547, 0.561727, 1.385163, 1.295232, -0.768190, -0.172363, 1.791400, -0.230682, -0.779946, -0.612985, -1.317359, 0.680402, -0.902588, -1.318383, 0.624819, -0.360594, -1.340570, -0.789035, -0.505029, 0.517947, -1.639783, -0.098554, 0.615573, 0.362778, 1.149147, 0.900741, -0.108052, 1.909900, -0.094781, 1.451123, -1.404963, 0.405052, -3.160711, -0.217405, -0.236148, 0.559246, -0.330710, 0.530316, -0.571844, 0.323980, 0.478754, -0.385131, 1.908600, -0.399630, -0.617568, -0.445279, -0.065905, -1.197955, -1.117299, 0.422909, 0.249833, -2.023288, -0.905316, 1.100531, -0.474970, 0.398178, -0.009706, -0.923664, -1.106093, -2.069996, 0.094279, 0.199192, -1.646251, 0.115020, -1.870811, -0.610377, -0.101928, -1.591876, 1.248467, -0.967401, -0.958078, -0.983985, -0.525775, -0.238477, 0.073324, 0.690220, -1.192351, 0.706804, -1.027691, 0.445164, 0.445526, 0.507654, 0.458278, 1.214694, -0.991027, 1.694324, -1.962804, 1.587605, 0.267685, 0.597028, 1.384048, -1.207393, 1.402665, -1.002188, 0.542966, 0.205386, 0.161106, -0.490303, 1.384367, -1.525820, -0.147554, -0.579420, 0.132134, 0.437392, 1.344328, -1.230314, -0.423900, -1.136409, -0.975552, 1.292045, 0.059140, 0.513426, 0.204706, 0.137762, 0.752766, -0.074565, -0.323963, 0.981965, -1.418644, -1.048476, 1.083746, 1.441313, 1.109894, 0.686279, 1.962865, -0.585661, 0.404725, 0.501347, -0.741332, -1.222185, 0.062794, -0.990662, -1.739711, -0.393303, 0.218227, 0.775324, -0.120361, -0.379616, -0.023608, -0.567983, 1.541468, -1.188268, -0.009361, 1.022319, 0.100692, -0.764004, -1.399661, -0.101892, -1.273206, 0.306998, -0.100859, 0.968483, 1.012353, -1.814927, 1.443665, 0.329604, 0.226099, 0.420079, 2.182723, -0.706210, -1.743484, -0.223990, -0.981296, -1.344207, 0.026827, 1.165722, 0.080950, -1.436192, -0.727950, -0.335521, 0.016692, -1.943586, 1.010619, 0.863864, 0.555188, -1.724232, 1.179763, -0.652402, -1.187410, -1.128296, 0.034642, -0.470956, 0.579688, 1.028719, -0.029948, -2.009375, 0.160249, 0.183795, 1.233182, 1.465205, -0.782515, -1.590237, -0.384087, -0.240510, 0.091320, -2.005267, 0.477657, 0.151191, 0.108872, 1.003721, 0.339393, 1.325678, 0.393562, 0.088816, -0.309190, 1.301266, -1.186674, -0.019479, -0.799372, -0.677829, -0.390775, -0.247341, 0.382879, 0.638548, -0.637109, 0.594272, 1.228869, 1.298967, -1.971720, 0.344073, -0.096511, -0.454820, 0.920726, -0.285646, -0.051787, 0.050206, 0.262606, -0.152623, -1.407591, 0.733645, -0.491175, -1.989340, 1.805234, -0.303618, -0.425677, -0.078338, -0.177448, 1.035850, -0.380796, -0.909890, -0.026420, 0.506166, -0.346338, -0.110518, -0.353320, -0.851201, 1.400690, 1.005261, -1.665477, 0.541884, -0.815251, -1.433695, -0.054924, -1.830152, 0.618322, -0.024651, 0.556516, -0.083552, -0.099854, -0.531426, -0.592710, -0.924229, 1.361632, -1.784960, 0.541107, 1.805802, -1.070639, 0.324827, -0.538632, 1.372235, 0.399999, -2.064262, -1.449957, -0.770128, 0.344969, 0.359928, -0.164216, -1.695213, -1.053622, -0.406078, -1.306273, 0.862667, 0.016658, -0.522787, 0.670778, 2.279625, -0.249720, 0.159726, 0.094341, 1.340139, 0.734755, 0.019777, 0.170436, -0.502489, -0.723570, 0.899053, -1.660418, 0.618812, 0.026541, -1.285614, 1.535885, -0.316763, -2.671963, -1.499371, -2.017975, -0.054807, 0.063276, 1.133049, 0.382705, 0.581800, -0.365803, -1.150293, -0.891006, 0.575040, -0.572197, 0.694885, -0.471478, -1.217547, 1.155872, 0.807433, 0.283096, 0.465342, -0.278141, 1.816866, 0.345605, 0.411659, 0.593769, -0.324959, -1.703209, 0.036549, -0.434589, -0.863085, -0.645012, 0.020649, -0.402335, 0.328794, -0.854237, -1.490313, 0.519622, 0.260884, -0.622462, 2.225539, -1.734284, -0.708441, 0.891565, -0.320693, -1.241685, 0.922951, -0.616811, 1.213397, 0.883570, -0.577842, -0.254065, -0.660441, 0.416066, 1.458002, 0.262960, 1.419493, -0.733050, -1.214074, 0.471576, 0.604537, -0.610646, -0.568204, 0.895381, -0.224940, 1.307829, -1.066282, -0.278069, -1.010297, -0.085463, -1.070483, -2.524631, -1.657709, -0.328665, 0.196075, -1.536689, -0.269993, -1.468156, 1.200014, 1.317859, 0.496922, -0.821136, -0.750105, 0.734596, 1.882009, 0.258236, -0.506153, 0.805853, -1.016002, 0.072952, 1.331897, 0.914816, -0.782357, 1.472884, 0.090339, -0.145303, -0.811489, 0.532729, -0.032703, 0.450639, 1.463354, -1.675764, 0.561146, 1.615618, -1.071429, -0.794066, 0.541196, -1.009295, -0.953484, -0.319365, 1.330206, -0.263253, -0.106828, -0.085058, -0.342887, 0.204592, -0.961015, -1.119459, -0.403068, -0.781531, 0.350601, -0.563330, -0.333154, -1.629797, -1.377713, -2.357569, 0.616803, -0.863318, -0.279692, -0.138355, 0.489389, -2.114235, -0.566127, -1.161819, -1.795574, 0.332270, -1.024892, 0.190045, -0.714724, 0.981877, -1.083411, 1.132376, 0.779131, -0.701695, -0.457713, -0.580509, -0.257548, 0.752325, 0.356168, 0.341560, -0.915911, -0.025256, 0.119849, -1.390833, 1.626216, -1.821793, -0.610723, 0.219096, 0.846793, -0.442989, -0.173498, -1.037215, -1.003763, 0.815575, 0.990365, -1.440434, -1.308487, -0.299982, 0.146772, 1.355022, 0.459104, 0.650038, 0.437847, -1.841343, 0.806706, 0.404297, 1.577582, -1.052571, -0.204794, -1.621402, -0.039549, 0.528580, 1.951219, 0.582628, 0.328794, 0.096244, -0.978636, -0.490978, -0.655558, 0.902283, -0.156434, -1.272759, -1.105615, 0.541369, -0.494170, 0.661613, -1.141477, -0.250881, 0.775980, 0.377850, -1.538527, 0.568645, 0.422027, 0.142389, -1.120289, -0.949990, -0.975085, 0.012336, 0.080454, -0.798149, -0.140873, -1.567917, -1.678914, -1.199589, -0.240739, -1.167511, 0.474352, -0.615202, 0.432346, -0.431418, -0.973709, 0.128807, -2.114420, -0.752288, 1.514651, 1.201147, 1.381283, 1.833200, -0.684496, -0.644019, -0.032498, -1.739330, 0.604950, -0.668583, 0.731599, 0.935346, 2.529008, -0.080260, -1.535189, -1.623080, 0.472362, 0.112937, 0.034706, 0.108317, 1.351220, 0.384778, 0.270590, 0.004455, -0.060803, 0.962521, 1.806219, -0.382347, 1.010272, 0.610690, 0.321843, 1.995162, -0.925456, -1.426959, -0.503160, -0.859878, 0.997869, 0.180420, 0.022802, -0.543608, -0.395936, 0.384772, 0.731211, 0.643875, -1.024770, 1.055487, -0.209147, 0.483721, -1.921153, -0.330497, 1.164398, 0.841495, 1.261328, 0.811130, 0.465430, -0.060005, -0.599450, 0.396830, -0.042464, 1.646814, -0.393928, -0.663650, -0.203225, 1.342105, -1.615342, -0.955749, 0.132427, 0.349548, -0.172642, -0.381730, -0.674794, 0.004365, 0.885937, -0.744909, -1.050710, 0.114999, -0.017450, -0.140872, 0.368162, -1.381751, 2.223168, -1.247892, 1.309157, -0.992121, -0.406124, 0.600386, -0.523733, -1.714635, 0.957007, -0.521903, -0.381957, -1.151117, -1.468466, 1.366095, 1.416929, -0.569795, -0.189906, -0.528922, 0.140109, 0.104641, -1.388965, -0.374247, -1.695187, 1.141310, -0.354672, 0.367612, -0.681574, 0.742611, 2.481385, 0.117414, 0.639853, -1.632688, -0.802826, -1.183616, 0.162699, 1.067759, -0.219933, -0.467832, 1.759198, 1.095757, 1.927000, -0.106438, -2.846754, -0.373539, -1.139454, -0.983262, -0.404448, 0.405138, 0.488139, -0.594759, -0.794701, 0.825140, -1.023294, 0.586792, 0.533998, 1.212344, -0.001632, 0.077263, 0.811187, 0.409740, -1.464570, 0.079236, 0.672090, 1.719249, 0.727476, 1.228663, -1.702258, -0.287894, -0.626606, -0.522534, 0.097011, -1.508073, 0.061058, -0.259103, 0.417731, 1.522940, 0.910828, -1.885467, -0.016602, 1.623869, -0.295934, -0.371918, 1.205788, 1.157457, 0.007835, -0.599605, 1.144053, 0.316588, 0.369770, 1.872153, -0.509227, 1.261109, 0.572774, -2.557551, 0.638096, -0.217323, 0.145953, -1.567689, 0.119539, 1.160691, 1.642228, -2.761168, 0.829417, 0.250574, -0.284405, -1.078680, -0.087639, -1.283276, -0.880838, -1.095592, 0.292243, -0.113082, -0.120326, 0.152604, 1.391578, 1.480961, 0.689682, 0.384452, -0.976138, -1.013940, -2.097892, -0.689014, 1.334035, 0.802433, -0.775227, -0.331985, -0.134870, 0.386745, 0.926449, 1.966517, 0.002414, 0.225337, 1.830822, 0.087287, -0.191044, -1.228650, -1.103200, 0.535576, 0.448832, -0.882940, -1.389402, -0.474648, -2.912386, -0.321580, 1.491610, -0.027717, 0.322831, -0.197970, 1.970081, 0.647669, -2.086119, -0.719397, -2.231312, 0.280339, -0.064404, 1.711110, -0.193742, 0.236382, 0.896318, 1.831130, -1.704295, 1.253539, 1.391618, 0.713065, -0.850322, 1.207138, 0.981926, 0.464186, 1.251897, 1.556553, 0.524986, 1.014675, 0.055805, -0.235241, 0.076670, 0.538526, 1.730335, -0.587256, -0.473110, -0.247164, -1.197966, -0.035639, 0.155089, 0.593809, -0.185745, 0.323978, 0.018321, 1.346498, 0.707829, -1.064135, -0.775178, -1.528107, 0.203195, 0.183634, -0.930529, 0.398016, 0.015713, 0.017203, 1.094427, 0.154613, 0.986109, -0.668638, 0.045320, 0.624950, 1.218392, -0.590207, 0.039290, -0.939700, 0.347518, -1.080879, 1.109423, 0.459649, 0.808434, 0.860789, -0.147751, -0.549967, -1.264631, -0.115886, -1.017183, 0.071367, -1.792004, -0.873864, 0.356028, -0.335641, -1.232728, -1.179856, 0.662938, -0.380446, 0.972452, -1.985803, 0.596918, -1.288895, -2.476754, 0.367720, 1.158958, -0.287308, 1.612499, -0.639899, -0.992828, -1.023186, -1.277189, 0.228138, 0.430396, 0.708025, 0.857596, 0.401366, 0.385236, 1.049906, -0.728567, 0.602123, 1.514122, 1.434843, -0.691096, 0.505747, 0.700124, -1.047528, -1.404575, -1.183536, -2.092552, 1.644240, -1.167867, -0.720097, 1.379291, 0.192405, 0.245716, 0.701627, -1.780863, 0.176897, 1.108580, 0.837794, -0.717489, 0.014237, 1.514900, 0.832846, -0.058489, -0.006861, -0.957518, 0.630517, -0.896191, 0.183444, -0.537597, -0.048099, -0.163294, 0.353119, -0.480711, -0.476088, 0.077457, -0.921198, 1.196173, -0.161084, -1.282600, -0.011753, -0.202328, 0.111695, 0.334534, 0.529977, -0.176867, 0.296759, -0.031366, 0.867123, -1.197649, -0.797153, 1.227730, -1.936863, -0.475364, 1.146740, 1.550781, -0.188952, -0.118396, -0.117279, -0.568768, -0.056729, 1.434670, -1.344079, -0.012801, -0.864768, 0.263012, -2.174557, -0.079170, 0.198756, 1.080901, 0.213995, -0.138920, -0.184450, 0.736849, -1.015848, 0.591306, -0.868033, 0.175184, -1.353097, -1.088848, -0.391434, -0.238016, -0.762331, 0.096874, 0.618679, 0.615525, 0.474266, -1.956552, -0.886348, 0.065288, -1.279955, -0.396800, -0.054905, -2.140511, 0.720317, 0.111989, -0.188230, -0.904910, -0.699197, -0.753609, -1.370695, 0.522442, -1.144708, -0.824139, 0.578492, 0.032596, 1.234211, -0.140526, -1.204944, 0.414282, 0.672143, 1.386806, -1.174552, 0.260907, -0.101144, -0.688084, 0.334148, 0.658840, 1.339427, 0.866108, 0.251280, 0.849447, -0.296863, 0.813822, 0.592182, 0.666626, -0.417604, -0.704341, 1.805481, -1.085395, -1.471843, -0.526046, -0.798585, 0.461616, 0.455374, 0.198808, 0.643054, 0.848528, -1.025526, 0.251955, -0.684070, 0.987381, 0.010578, -0.552161, 0.433957, -0.049865, -0.379219, -1.249383, 1.708083, 0.379515, -0.785636, -0.829067, 0.712277, -1.557817, -0.938206, 0.702534, 0.575845, 1.052007, 0.765936, -2.690529, -1.018806, 0.973163, 3.894614, -0.141342, -0.212867, -0.998326, 0.434509, -1.221487, 1.642527, 0.505829, 0.527765, -0.139643, -0.485151, 0.571778, -0.990793, -0.776317, 1.889388, -1.816237, 0.467499, -1.211371, -2.260401, 0.889239, -0.600719, 1.246642, -1.670895, 1.030508, -0.120777, -0.910964, 0.101612, -0.078331, -1.618454, 0.660884, -0.001900, 0.029511, -1.436794, -0.871114, 0.107618, 1.334153, -0.084568, 0.108842, -0.409169, -1.805117, 0.198104, 0.001397, -0.151294, 0.652565, -1.538362, -0.244384, 0.518996, -1.674269, -1.726131, 1.548832, -0.212926, -0.494182, -2.498331, -0.789039, 0.615790, -1.651339, -0.992343, -1.785200, 0.087360, 0.932293, 0.696440, -2.408025, 0.947396, 0.075647, 0.333008, 0.124958, 0.141207, -1.117673, -1.637799, -1.466103, -1.280784, 0.944840, 1.777779, -1.163379, -2.880063, -0.994002, 0.141081, 0.020690, 0.484998, -0.466470, 0.095529, -1.180752, 1.111776, -0.517998, -1.325843, 1.735500, 1.548226, 0.734140, 0.983640, 0.709410, -1.586697, -0.354250, -0.886171, 0.968904, -0.064094, 0.926899, 0.880921, 1.188696, -0.207731, 0.049663, 0.001441, -1.286147, -0.098486, -1.176948, -1.014778, 0.787811, 0.806721, 1.149112, -0.071881, 1.469494, -0.535219, -1.081428, 1.659162, 0.475277, -0.088917, -0.190097, -0.213815, -2.845499, -1.058624, -0.097921, -0.076876, 1.143328, -0.266844, -0.438507, -0.237990, 1.942492, -0.883034, 0.129053, 0.948352, 0.028201, -0.830583, 0.816437, 2.073250, -0.101159, 0.851635, -0.541708, -1.613257, 0.287060, -0.805527, 0.541621, -2.505954, 2.066478, -0.667170, -0.183563, -1.245635, 1.305435, -0.893380, 1.530889, -0.682172, -0.610702, -0.313108, 1.001325, -1.068051, -0.658278, -0.119745, 0.785136, -0.169412, -2.839016, 0.780181, 0.098738, 0.045568, 0.198376, -0.309532, -0.135328, -1.202397, 0.030464, -0.922725, -0.047256, -0.486867, -0.472834, 0.520375, -0.608999, 1.027450, 0.056838, -0.386279, 1.171524, -1.253464, 0.357801, 2.306967, 0.046679, -1.295139, -0.111503, -0.720255, -0.486340, -0.702307, 0.826913, 0.317037, 1.154962, 0.479846, -0.901476, -1.106205, 1.195696, -0.304677, 1.885280, -0.197662, 0.184613, 0.755152, 1.122081, 0.763658, 1.124159, -0.798773, 0.714035, 1.183381, 1.764612, -0.484801, 1.711390, 0.852786, -0.798011, 1.922672, -0.174849, -2.038882, 1.979155, 0.006627, 0.284280, -0.488100, 0.211718, 0.213431, -0.075562, 0.602582, -0.076912, 1.226605, 0.102534, -1.087868, 0.622465, 0.362372, -0.594104, 0.752425, -0.316477, 0.256494, -1.782364, -0.602093, 1.136649, -0.009733, 1.606517, -0.463423, 2.587354, 0.294361, 0.586736, 0.822519, 0.262047, 0.314503, 0.007418, -0.351994, -0.505615, 0.196448, 1.035212, 0.369256, -1.052827, 2.105798, 0.590610, 1.458264, -0.889388, 0.788536, 0.300303, -0.490584, 0.777276, 0.469276, 1.157301, -1.181388, 0.537685, -1.172405, 0.048209, -0.203005, -0.366984, 0.869575, -2.246902, 1.876398, 0.729724, 0.518105, -0.711057, -0.877547, 0.374919, -0.744996, -0.385429, -1.044250, -0.603253, -0.397732, -1.148584, -0.559165, 0.630078, -0.083826, 0.101190, 1.158692, 0.884957, 1.146484, 0.305474, 0.672290, 1.127642, -1.219168, -0.732483, 0.583748, -0.594153, 0.557610, 1.322005, -0.759000, -1.780601, 0.195723, -1.692121, -0.291109, -0.694366, 0.205620, 0.773941, 0.543874, 0.232398, 0.722553, -0.320214, 0.055977, -1.867450, 0.440543, 0.545316, -0.360690, 0.939106, 1.926783, -0.458366, 0.258509, -0.718722, 0.262705, 0.160377, -0.503539, -0.469412, -1.173705, -0.644112, -0.482584, -1.015266, 0.536556, -0.749363, -1.061847, 0.516571, -0.823574, 0.581866, -1.664287, -1.022961, -0.521343, 0.776000, -0.501781, 0.828502, 1.419262, 1.959566, 0.963908, -0.116325, -0.939014, 0.029349, 2.198124, 0.877653, 1.002720, 2.497785, -0.268468, 0.287738, -0.329702, 0.580366, -0.803510, -0.988516, 0.131645, -0.897182, -0.275945, 0.680384, 0.735429, 1.126706, 0.176773, 0.055237, 1.057445, -0.178276, 0.073145, 0.472411, -0.685040, -0.087068, -0.118235, -0.782402, 0.283651, -2.162942, 0.551814, 0.803555, 0.609387, 1.664766, 0.387063, 0.518703, -0.298149, 0.135753, 1.455144, -0.764563, 1.029194, -0.840962, -0.164008, 0.191356, 0.648072, 0.812507, 1.492637, 1.504805, 0.661302, 0.865894, -0.309037, -0.112874, -0.073699, -0.562879, 0.251284, -0.223203, 0.344566, -0.567345, -0.128516, 0.264010, -0.740563}, - { 0.686786, -0.412827, -0.954384, -0.250036, -1.279124, -0.388454, 0.772480, 0.265782, 0.239731, -0.320993, -0.236322, -0.213086, 0.483063, -0.963978, -0.512312, -1.003315, -0.715501, -0.460491, -1.350278, 0.292528, 0.761338, -2.479331, -0.365349, 1.054416, 0.636595, -1.082940, 0.138221, 0.633486, 0.956523, -0.367531, 0.190268, 0.227681, 1.191601, 0.235072, 0.462468, 0.577388, -0.374628, -1.099212, -0.855962, -0.272587, 0.200696, 0.546901, -0.517906, -0.684247, -0.410653, -1.310561, 0.013227, -1.526165, -0.188351, -1.117439, -0.434290, -0.651184, -0.507773, -0.091448, 1.411584, -1.198217, 0.795058, -1.118065, 0.069142, 0.909652, -1.140848, 0.282164, -1.091999, -1.669020, 0.019183, 0.874124, 0.223936, -1.417213, 0.303794, 0.084386, 0.944091, -1.135258, -0.156557, -1.306080, -1.545901, 0.760520, -2.129505, -0.680492, -0.379109, -1.060158, -1.884403, 0.970512, 1.085505, 1.550855, -1.069825, 0.829637, -0.848534, -0.885269, -2.420554, 0.418745, -1.232314, -0.856177, -0.500907, -0.020048, 1.892329, 0.868363, 1.321794, 0.129578, 0.770199, -0.730568, -2.257548, -0.293321, 1.740305, -0.370603, 0.350315, 0.161306, 0.204819, 1.780152, -2.041967, 0.321083, 2.138391, -0.504547, 0.171929, -0.001936, 1.164255, 1.210264, -0.418027, 1.150411, 0.259347, 2.006141, 0.276597, -0.079845, 1.802190, -0.177237, 1.440719, -0.165683, -0.115821, 0.360355, -1.609864, -0.428472, 0.256303, 0.567704, 0.089992, 0.876491, 0.809326, 0.707831, 0.635360, -0.986334, -1.337440, -0.331593, 1.338936, 1.320294, 0.865981, -0.872283, -0.162961, -1.218794, 1.324572, -0.073147, 1.053123, 2.220264, 0.567374, 0.193227, 1.079667, 0.349257, 0.894225, -1.426330, -0.763945, -1.976367, 1.339014, -0.582789, -0.626101, -1.051183, -0.666207, -0.801345, -1.051876, -0.116021, -0.329459, -0.442221, -0.089336, -0.984451, 0.993044, 0.013954, -0.035889, -0.626623, -1.307395, -0.431291, -0.843793, 1.016768, 1.678853, -0.000837, -0.335257, -0.390500, 0.705424, 0.566030, -0.302734, -0.327476, 0.848161, -0.945110, 0.808173, 0.427212, 0.883622, -1.986534, -0.787966, -0.063913, 1.011009, 0.156580, 0.846975, -0.210390, 0.441976, -1.721662, -1.546866, 0.290919, 0.445625, -0.313846, -1.069270, -1.714673, -1.980601, 0.009956, 0.789273, 0.483036, -0.823980, 1.208253, -0.964687, -0.072437, 1.668113, 0.743317, -0.271165, 0.168597, -0.007601, 0.740105, -0.504425, 1.276407, 1.038000, -0.704446, -0.144954, -1.012597, 0.087733, -0.230432, 1.409416, -1.760558, 0.283564, 0.158769, -1.019383, -0.129060, -0.239653, 1.723891, -3.909227, -1.239985, 0.014286, -0.342466, 0.376859, 0.798029, -0.993885, 0.271538, -0.394079, 1.854243, -0.610577, 0.298628, 0.162271, -0.791895, 1.019610, -1.524958, -1.039182, -0.845453, 0.453652, 0.561561, 0.640124, -0.052841, 0.374167, -0.241185, 1.117634, -0.173280, -0.137072, 0.552920, -0.552898, -1.432745, 0.511922, 1.363761, 0.550298, -0.763824, -1.243657, 0.656262, -0.740492, -0.851194, 0.657613, 1.222592, 2.190613, 0.753660, -0.142028, 0.950250, 0.311732, -0.544070, -0.454233, -0.426882, 1.224790, -1.297737, 0.788370, 0.454713, -0.357497, -0.467719, 0.203628, -0.255674, 1.075629, 0.008185, -1.093055, -0.272300, -0.416621, -0.422433, 0.222307, 2.056519, 0.674456, -0.130661, 0.712831, 1.779856, 0.709882, -2.260879, 1.420516, 0.373098, 0.540918, 1.067045, -0.526540, 2.264968, -0.834754, -2.032719, -1.506854, -1.534465, -0.483309, 0.456616, -0.105632, -1.294574, 1.209211, 0.528366, 0.564573, 1.516921, -0.336675, 0.384380, 0.755788, 0.885710, -1.328422, -0.347906, -0.373588, 1.385492, -0.997038, -0.753151, -0.101377, 0.754270, -0.157166, 1.728030, -1.003422, -0.242540, -2.582107, 0.281566, 1.718961, 0.105754, 0.567749, -0.458978, 0.441752, -2.504363, 0.747901, 0.443635, -0.986823, 0.543094, 0.758128, 0.276799, -0.838422, -0.254628, 0.154302, 0.023075, -0.620657, -0.531672, -1.173659, 1.179663, -0.183430, -0.446886, -0.061832, 0.705365, -0.773264, 0.088834, 0.509560, 0.919250, 0.962761, 0.049566, -0.535423, -0.072359, 0.533825, -0.355980, 0.166492, -0.550328, -0.832446, 0.678626, -1.229817, -1.259421, 0.421155, 0.630249, -0.800549, -0.808628, -0.966701, 0.202434, 0.271819, -0.332733, -0.414194, -0.663516, -1.349441, 1.137386, -0.742321, -0.914946, 0.413743, 0.269309, -0.139922, -0.115573, -1.027439, 0.016030, -0.590604, 0.311563, -0.476149, 0.020791, -1.659814, 0.400162, 1.366274, 0.521312, 1.199674, 0.272051, -0.244506, -1.702876, 0.519922, -0.251876, -3.415838, -0.123890, 0.490404, -1.402815, 0.919506, 0.289372, -0.532127, -0.258929, -0.070306, 0.943063, -0.808710, -2.718118, 0.153334, 0.564909, 1.000353, -0.227652, 0.631858, -0.947609, 0.895864, -1.980478, 0.184859, 1.177037, 0.235448, -2.432657, 0.619778, 0.698334, -0.212454, -0.515430, -0.172867, 1.027052, 0.977117, -0.205310, 0.507572, -0.201579, 1.140437, 0.317274, 0.370059, -0.119170, -0.959528, 0.390766, 0.539213, 1.710125, 1.329072, -0.370380, -0.468552, -1.006907, -0.696435, 0.410752, 1.709874, -1.336538, -0.737561, -0.657240, 0.606588, -0.705513, 0.507796, -0.916452, 1.412139, -1.740738, -0.970704, -0.169924, -0.599638, 0.771926, 0.790928, 0.790850, 0.113795, -0.283163, -1.028869, 0.430322, 0.019492, 0.504161, -0.621251, -1.716833, 1.359194, 0.559757, -1.119485, -0.154378, 1.299095, 2.195402, 1.545555, 0.369028, 0.903856, 1.088053, -0.970528, -0.542894, 0.663104, -0.101616, 1.339739, 0.354353, 0.880610, -0.713797, -1.697795, -0.097082, 0.743069, 0.465664, 0.278032, -0.799819, 0.890183, 1.288068, -1.110344, 1.255000, -1.001724, 1.127172, -0.716119, -0.992804, -0.162644, 1.304924, -0.710251, -0.582232, 1.376230, 0.431043, -1.098114, 0.037602, -1.773925, 0.785106, -1.060948, -0.320657, -0.724032, -1.467829, 2.076141, -0.536129, -0.415248, -0.627632, 1.345590, 0.610116, 0.515450, 0.051921, 1.018772, 1.585701, -1.408608, 1.159209, 0.175208, 0.318945, -1.725426, 0.125371, 0.318990, 0.462319, -0.208388, -0.988782, 0.930157, 0.919493, 0.292909, -0.389948, -0.102549, -0.390623, -2.126758, -1.574990, -0.235185, -0.208250, -0.942776, 0.869169, 2.481962, -0.035201, -0.304398, 1.126150, 0.141366, 0.315819, 0.704915, 0.104685, 0.105298, 0.098470, 0.955901, -0.320000, 0.620367, -0.000443, 0.616779, -0.264065, -0.451803, 0.714067, 1.659721, 0.822508, 0.562821, -0.090356, -1.948032, 1.066526, 0.129443, -0.544590, -0.320278, 0.809754, -2.441317, -0.719177, -0.919938, -1.384614, 0.241870, -0.694270, -0.170047, 0.206789, 0.905787, 1.251660, -0.624036, 0.964863, 0.224957, -0.307109, -0.161758, 1.728824, -0.764930, 1.011986, 0.400483, 0.263698, -0.485156, 0.540260, 0.098768, -0.846968, -0.475801, 0.503877, -1.005066, -1.509396, 0.439936, -1.346023, 0.193136, -0.151591, 1.484433, -0.008946, 0.499975, 1.317144, 1.196448, 0.652226, 0.597085, 0.481827, -0.925874, 1.096406, -1.180965, -0.314917, -0.270137, -0.934176, -0.782880, -0.231976, -1.231468, -1.270191, 0.863512, 0.065505, -0.842318, 0.226728, 0.205516, -0.260108, 0.714896, 0.649742, 1.094028, 0.023332, -1.544193, 0.562718, -0.275914, -1.453496, 1.526585, -2.339322, -0.254268, -0.386339, 0.627062, 0.388599, -0.563492, -1.261876, 0.520191, -0.162895, 0.674523, -1.395587, -0.452683, 0.865333, 2.106666, 0.462597, -0.640847, -0.678950, -0.698807, 0.135454, 0.619530, -0.975410, 0.799226, 0.862220, -0.065348, -0.095913, 0.316879, 0.518147, -0.366385, 0.850906, 0.088455, 0.417005, 1.256919, -0.877705, -0.145089, 0.186268, 0.212057, -0.549067, 0.376268, -0.965200, 0.832861, -0.117663, -0.336138, -1.705418, 1.285777, 2.040204, 0.217795, -1.043740, -1.497164, -0.616132, -0.217728, -0.868704, -1.033684, 0.482896, 0.441117, 1.330352, 1.082108, -0.076171, -0.038633, -0.743616, -0.774865, 0.212039, -0.695159, -0.575788, -1.359800, -0.630690, -0.521749, -1.137597, 0.800093, 0.285926, -0.512262, 1.054841, -0.722327, 1.090069, 1.612239, 0.299381, -1.331767, 0.238730, 0.021873, -1.443125, 0.041261, -0.204166, 1.149507, 0.194036, 0.698985, 0.363813, -1.576851, -0.807296, 0.696471, 0.241355, 1.124999, -0.743816, -1.344677, -1.230981, 0.941631, -0.305382, -0.443746, -0.374589, -0.053789, 0.488511, -0.409527, -0.241075, -1.027440, -0.024958, -0.410471, -1.608270, 1.693856, -0.158322, -1.077427, -0.309164, 0.922232, -0.308500, 0.997683, -1.328948, -1.737507, -0.384962, 0.653399, -1.463339, 0.592553, -0.740229, 0.418823, -0.487712, -0.191475, 0.038117, -0.799629, -1.302999, -0.175122, -1.704433, -0.012633, 0.212992, -1.363732, 1.203866, 1.435550, -0.318578, -1.213288, 0.912331, -1.773704, 1.330481, 0.314178, -0.894960, -0.815668, 0.859242, -0.799324, -0.913832, 0.605599, 1.674654, 0.366161, 0.000371, 1.778550, -0.667728, -0.480150, 0.413115, 0.942118, -2.385074, -0.332675, 0.139496, -0.053274, -0.398646, -2.203224, 1.022387, 0.707606, 0.461915, 1.584127, -0.536401, 0.309274, -0.685028, -1.776032, -0.213263, -1.847616, 1.542393, -1.295443, -1.393740, -1.276267, -0.046056, 0.296055, -0.946070, 0.143859, -0.134447, 0.557150, -0.851634, 0.987143, 3.034742, 1.179105, -0.840504, 0.758509, -0.853593, -1.303635, -1.527710, -0.425551, -0.518229, -0.408586, 0.657220, -1.793430, -0.155493, 0.340596, -1.117213, 0.766365, -0.615975, -0.308872, 0.904717, -0.708467, 0.496372, 0.232802, -0.555202, -1.007697, 0.336694, -0.839170, -1.200312, 0.355497, -1.055986, -0.367983, -1.803417, -0.885488, 1.251403, -0.270784, 2.308097, 1.079320, -0.760809, 0.078073, -1.058863, -1.019223, 0.312140, 1.264329, -0.094438, -0.669735, -2.188102, 1.082121, -0.019285, -0.686093, -0.461736, -0.340094, 0.877557, -1.095224, 1.099599, 0.561499, -0.102243, 0.125279, 0.798579, 0.335828, 0.041117, -0.443373, 1.078746, 0.938751, 0.227797, -0.614971, 1.235823, -0.057603, -0.137368, 0.473112, 1.191525, -0.308574, 0.162644, 1.329305, 2.044406, -0.247064, 0.584813, -0.590792, -0.139225, 0.918273, 0.766051, 0.722334, -0.524138, -1.700157, 1.659801, -1.543023, -0.358191, -0.628182, -0.511199, 0.862120, 1.053664, -0.755867, 0.376711, 0.183212, -0.765554, 0.961003, -0.870851, 1.764497, -0.290330, -0.047319, 0.007996, 0.486137, 1.393689, 0.324664, 0.374559, -2.226274, 0.561006, -0.450550, -0.375078, 1.095775, 1.105933, 0.156463, 0.393381, -0.125902, -0.508615, -1.187574, 1.635680, -0.931458, 1.939179, 0.527625, -0.098392, -1.436941, 0.855899, 1.395831, -0.593924, -2.774503, -1.404459, 0.511385, 0.998486, 0.180451, 0.362988, 0.454479, 1.598041, -1.196180, 1.071723, 0.299573, 1.856691, -0.196294, -0.228442, 0.538361, -1.626858, 1.200136, -0.148306, -1.102481, -0.235780, -0.297007, -1.166779, -1.179737, -0.967552, -0.993188, 0.920322, -0.155835, -0.425178, -1.199717, 0.539237, -0.222480, -2.277026, 0.656393, -0.362945, 0.087165, 0.387593, -0.492040, -0.410881, 0.213712, 0.309292, 0.685655, -0.333987, -1.880259, -0.604153, 1.240811, -0.249888, 1.905823, 0.103252, -0.147296, -0.390929, 0.082614, 0.409527, 1.635633, -1.906732, 0.310449, 1.177089, 0.098295, -1.950454, 0.176045, -1.834756, -1.159774, 0.366167, 0.715917, 1.104433, -1.160204, -1.352480, 0.651027, 1.491238, -0.317499, -0.621631, 0.203636, -0.424024, 0.190574, -0.803283, 0.983866, -0.953901, 1.660653, 0.143466, 1.063439, -0.939690, 0.723419, -0.387405, 0.562349, 0.003468, -0.040658, -0.580987, -0.527315, 0.767364, 0.096242, 2.815122, -0.998191, -1.139517, 0.498806, -1.421889, -0.387422, 0.828329, 0.813944, 1.146248, -3.228796, -2.094913, -1.050164, -0.102330, -0.224840, 1.780088, -0.896367, -0.887257, -0.770723, -1.796928, 0.631518, 0.178172, -0.662787, 1.282492, 1.930620, 0.344506, -1.731976, 0.944697, -0.477242, 1.441443, -0.694415, 0.392576, 0.199819, -0.060354, 0.720098, 0.729184, -0.361049, 0.722444, -1.086976, 1.490175, -0.662072, -0.095159, -1.506942, 0.277037, -0.747569, -0.881556, -0.551217, -0.931725, -0.009303, 0.673059, -1.078026, 1.703707, -1.050703, -1.027260, -0.107057, -1.340918, -0.973599, 0.285315, -1.935603, 0.198716, 1.192959, -0.945462, 0.416709, -0.421329, 1.464060, -0.692199, -0.277998, 1.180237, -2.403859, 0.665797, -2.041831, -0.879629, -0.745589, -0.279683, -0.786548, 0.594801, 0.459740, -1.148127, 1.332565, 0.799983, 0.154175, -0.594357, 0.927541, 0.817094, 0.012064, 1.550141, 0.338382, -0.928847, -0.809447, 1.201927, -0.218417, 0.389575, -1.073272, 1.782594, 0.790329, 2.690952, -0.854106, 0.605478, 0.397799, -0.292042, -0.545598, -1.796967, -0.033556, 1.271666, -1.494714, 0.516119, 0.215435, 0.283051, -0.026076, -0.845024, -0.529101, -0.719377, 0.533285, 0.513572, -1.270989, 1.749668, -0.610834, -0.521547, -1.498350, -2.216109, -1.674349, 0.602783, 0.085579, 1.919086, -1.049912, -1.840025, 0.742700, -2.070721, 1.616043, -1.205884, -0.499156, -0.680976, -0.078202, -0.552070, 0.760756, 2.213746, -1.204720, -0.139873, -0.454880, -1.731420, -1.926642, -0.568161, 0.216731, -0.340966, -1.555043, -1.333619, -1.227993, 0.479945, -2.477036, -0.039328, 0.155679, -1.630847, 0.747141, -2.849936, -0.282815, -1.446722, 0.270661, 0.539898, -0.145862, 0.699798, -0.626077, 0.437131, 1.885929, -0.658615, 0.459139, 1.084074, 1.658282, 0.753585, -0.990620, -0.613555, -0.061971, -0.397148, -0.197585, 0.245847, -1.653196, 0.816565, -1.008766, -0.760112, -0.917557, 2.789919, -0.195072, 1.892358, -1.432319, 1.541289, -0.079494, 0.985417, 1.910793, -1.697142, -0.180906, -0.352929, -2.099798, -0.367024, -0.908286, -0.272068, -1.437038, 0.258898, 0.636025, -0.269686, 0.056963, -1.607519, 0.041652, -2.093534, 0.905654, -1.398328, -0.715254, 1.272977, 0.710819, 0.687911, 0.001742, -0.221029, 0.209738, 1.141345, 1.988818, -0.668183, 0.193601, -0.849359, -1.522522, 1.050579, -1.128853, -0.800873, 0.600003, 0.665269, -0.365811, -0.369379, -0.117044, 1.544924, -0.812353, -1.177569, -1.005114, -1.080506, -0.229261, 1.664228, -0.827576, 0.741223, 0.678941, -0.847511, 0.229853, -0.740431, 0.542731, 1.688227, -0.239932, 0.114038, -1.296318, 1.800347, -1.497541, -1.353060, 1.242992, 1.041044, 1.524270, 0.823733, -0.508059, -1.218891, 0.922841, -0.551410, -0.342022, 0.865529, -1.248247, -1.209369, 0.598614, 0.324598, 0.235621, -1.418816, -0.621824, -0.505364, -0.411728, -0.019689, 0.105613, 0.935643, 0.646233, -2.496740, 1.380557, -1.091092, -1.940543, -0.512763, -0.790937, -0.644819, 1.347443, 0.213199, 1.282681, -0.271331, 2.417922, 0.571479, 0.749029, 1.067326, -0.632802, 0.539238, -0.633065, 1.522586, 0.554098, -1.174882, 0.211887, -1.244379, -0.026399, -0.231448, -0.645496, 1.363875, -0.660919, -0.859490, 1.550215, -0.391130, 0.256604, -0.714977, 2.365872, 1.091650, 1.455415, -0.512348, -0.236868, -0.123357, -0.451179, -1.887984, 0.299722, 2.047120, 0.057376, 0.523066, 0.120305, 1.919198, -0.983197, 1.497362, 0.893917, 0.365696, -1.749394, -1.047617, 0.572081, -1.369414, 0.124660, 0.434574, 1.350827, 0.958559, 1.471701, -0.901075, 0.710243, -0.768128, 1.631744, 0.255488, 0.194679, -0.149011, 0.928359, 1.968508, 1.017136, 0.464226, 0.780892, 0.940171, 2.191196, 0.396962, 2.175486, 2.812886, 0.186325, 1.145789, -0.248121, -0.314955, 0.297093, -1.034387, -0.399280, -0.707100, 0.271872, 0.075209, 0.039129, 2.262311, -0.929207, -0.277004, 1.315781, -0.271506, -0.858215, 0.035157, 1.715799, -0.168779, -1.442646, 0.950059, -0.370277, -0.256212, -0.226615, 2.825429, -0.758130, 0.111143, 0.558345, -0.399092, 0.675165, -0.942873, 1.110861, 0.090156, -1.076805, -0.371468, -0.391298, -1.827450, 0.101201, -0.580944, 0.365027, 1.258143, -2.037072, 1.875970, 0.800073, -1.105441, -0.754599, 0.167846, 1.134017, 0.310822, 0.567510, -0.493330, -1.017928, -0.252374, 0.163640, -1.008037, -0.437007, -0.870018, -1.429713, 0.914931, -0.877254, -0.470576, -1.016514, -1.321604, 1.130046, 0.333676, 0.520429, -0.350936, 0.045528, -0.240283, -0.756092, -1.684721, 0.108907, -0.085249, 0.283357, 0.105023, 3.114342, -0.614636, 1.369744, 1.002582, 1.532972, 0.807571, 0.776130, 0.766981, 0.223366, 0.380151, -0.421675, -0.185594, -1.240574, -0.607701, 0.443978, 0.893475, 0.516036, -0.041775, 0.784014, 0.888409, 1.795471, 1.333600, -1.716295, 0.444112, 0.531101, 0.438343, 0.488325, -0.123772, -1.777215, -0.429330, -0.805608, -1.365521, 0.294407, -1.637442, -1.508557, 0.294235, 1.154034, 1.373750, -1.216943, 0.117971, -0.207947, 2.667760, 1.193870, 0.170425, -2.861491, -0.920327, -0.401834, 0.051076, -0.763792, -0.419237, -0.253164, 0.548181, -0.260666, 1.114218, -0.472359, 0.000777, 0.942669, 0.274244, -0.804280, -0.920966, -0.479232, -0.896244, -1.296808, -0.485839, 0.256575, 0.472418, -1.099501, 1.083782, 0.175227, 1.739817, 0.086799, 1.452611, 1.473743, 0.236520, 0.894751, 0.539812, 0.228592, 1.260415, -0.235119, -1.538888, 1.089239, -0.557788, 0.434740, 1.238091, 0.699313, -2.177261, -0.346899, 2.130578, 0.534032, 0.606903, 0.342108, 1.473813, -0.673447, 0.163659, 0.198401, 0.669836, -1.735455, -0.613109, -0.497421, 0.373850, -0.666279, 0.539778, -0.012893, 2.137125, -0.172673, -0.203354, 1.786115, 1.621231, 0.153345, -0.687931, 0.042081, -0.240865, -1.153801, 2.108947, -0.088081, -0.627526, 0.220326, 0.520893, -0.197772, 0.859140, -0.030755, 2.204912, -0.088261, -0.322531, 1.113869, 0.192430, -0.091217, -0.799817, 0.356725, -0.570216, -1.129366, 0.090061, -0.492572, 0.070809, -0.721441, 1.008628, 0.002018, 1.507723, 1.058046, -1.074672, -1.881438, -1.998306, 1.115537, 0.026094, -0.220509, 0.273241, -0.548247, -0.002409, 1.650509, 0.601163, 0.106623, -1.572271, 0.718868, 1.036136, -0.067851, -2.264058, -1.075715, 0.733057, 1.856139, 0.139983, -0.464700, 0.619518, -0.595357, 3.258187, 0.330511, 0.351369, 0.822868, -0.378564, -1.044285, -1.769115, -1.022173, 1.098753, -0.365373, 0.158807, 1.058372, -0.762679, -0.268012, -0.988236, -0.376957, -1.499588, -0.650633, -0.195035, 1.215868, -1.784685, 2.135588, -1.465462, 0.204122, -0.401013, 1.004250, -0.366283, -0.796044, -0.268670, 0.175652, -0.995022, -1.143925, 1.574796, 0.731559, 0.384915, -0.840597, 0.482574, 1.150213, -0.167820, 0.398102, -0.093998, 0.105793, 0.677898, 1.613358, 0.815593, 0.827124, -1.223293, 0.683526, -1.235659, -1.675279, 0.077846, 0.101757, 0.669349, -0.619003, 0.834292, 0.246638, 0.387830, -0.205522, -0.997976, 1.503187, -0.620129, -0.506207, -0.591371, 0.114501, -0.730490, 1.271365, 0.745807, 1.632571, 0.220765, 0.357309, 0.672587, -0.469215, -0.881775, -0.814130, -1.942472, -1.011197, 0.224068, 0.097396, -0.817933, -0.194047, 0.919817, -1.466467, 0.195265, -0.072863, 0.063559, -0.859960, -0.017212, 0.960897, -2.295446, 1.322414, 0.105254, 0.815768, 0.617768, -1.321106, -0.252745, -0.671972, 0.339428, -1.348388, 0.737005, -0.237628, -0.465819, -1.030587, -0.530554, 0.087951, -0.199632, -0.318314, -1.073532, -1.698142, -1.671828, 1.344701, 0.003553, -0.559478, 0.811507, -0.555669, 1.308364, -0.620497, -0.000049, -0.415008, -0.181747, 2.221251, -1.662945, -0.519566, 0.136829, 0.079531, 0.033857, -0.620097, 0.423572, 1.017152, -0.024860, -1.670799, -0.497549, -0.621389, 1.408771, 1.131663, -0.504252, 0.018398, -0.678687, -0.154862, 1.336222, 1.276668, 0.838400, 1.464020, -0.208965, 1.182976, 1.161914, 0.684418, -0.248047, -2.366961, 1.694174, -0.274180, 0.206851, -0.105770, 1.171527, 1.552044, 0.610508, -0.196718, -0.371139, -0.746466, -0.227213, 0.494243, -0.182971, 0.233854, -1.703848, -0.128566, -0.505413, 1.051162, -0.095104, -0.446183, -0.998096, 1.572434, -0.435290, 0.304048, -0.238648, 1.034630, 0.199094, 0.498759, 0.308008, 0.567423, 0.535799, 1.247896, 1.101454, -0.512195, 1.708025, -1.160282, 0.399715, 0.342799, 0.860835, -0.981930, 0.966950, 0.176748, 0.114596, -0.465750, -0.720403, 0.912818, -0.634569, -0.015950, 1.681451, 0.796052, 0.161531, 0.115802, -0.037630, 0.506112, 1.203614, -0.722811, -0.321431, -0.292871, 0.021080, -0.267876, 0.649199, -0.087122, 0.238224, 0.117405, -0.796072, 0.043822, 0.106367, -0.858445, -1.923243, 0.001214, -0.383780, -0.793290, -0.298617, 0.711272, 0.673491, 0.314610, -0.888251, -0.679692, -1.327119, 0.275225, -0.920021, -0.496445, 0.875245, 0.535981, 0.114400, -0.299781, 0.403232, 0.294880, -0.923130, 0.825482, 1.730328, 1.532264, 2.092793, -0.391504, 1.081222, -0.524529, -0.022091, -0.328772, -1.802426, -3.191733, 0.810919, -1.148615, -0.073164, 1.119239, 1.209517, -0.137190, 0.591770, 1.159989, -0.503019, 1.082312, 0.211661, -1.352652, -0.939927, -1.410106, 0.278397, 0.204997, 0.343849, 0.527669, -0.209864, -0.159209, 0.667135, -0.663653, 0.568100, -0.943844, 0.968383, -0.584700, 1.035199, -1.330756, 0.185383, -0.287200, -1.398206, 0.987634, -0.948540, -0.761210, -0.476222, 1.679815, 0.190751, -1.774180, -1.118783, -2.163490, -0.681097, 0.886447, -0.393574, -0.156353, 0.806331, 1.445205, 1.760609, 0.775289, 0.476010, 1.406761, 0.448653, -0.668189, -1.231927, -0.653629, 0.500012, 1.325792, -1.548845, -0.483784, 0.831622, -1.314894, -1.561311, 1.811731, -0.912836, 0.630485, -1.403108, -0.391168, 1.268278, 0.168812, 0.088604, 0.130069, -1.499388, -0.849860, 0.208970, -1.548968, 2.431698, 1.501798, 1.145675, 0.511107, -0.294855, -0.445006, -0.125896, 0.834638, 0.352165, -0.801772, -1.507155, 0.771091, -0.598979, 2.869002, -2.871846, 0.155109, -0.123399, -0.539084, 1.917127, 0.622973, 1.223195, -0.088143, 0.041642, 0.925027, 1.111906, 0.792184, 2.656297, -0.209163, 1.669466, 0.717435, 0.243146, -0.051716, 0.683014, 0.899531, 0.134089, 1.159671, 1.415220, 0.827601, -0.047416, -1.872233, 0.506747, 0.800150, 1.101284, -0.003516, 0.047211, 1.433037, 0.230170, -1.622533, -0.698518, 0.122633, -1.203151, -0.474861, 0.508189, 0.346365, 0.240614, 0.322376, 0.639400, 0.626123, 1.446888, -1.370581, 0.497816, -0.946326, -1.198888, -0.194216, 0.220833, 0.813054, 0.750587, 2.132821, 0.410698, 0.202643, -0.262041, -0.029299, 0.835202, 0.721498, -0.739723, -0.103559, 0.746257, 0.012022, 0.637422, 0.180977, 0.425005, 0.810973, 0.094005, -0.425275, -1.144537, 1.509941, 1.235870, 2.426218, 0.950339, -1.697245, -2.842267, 0.088028, -0.943818, 0.118406, 1.056480, 0.873825, 0.694412, -0.380172, 0.728019, 1.598631, -1.262186, 0.456457, 2.355905, -1.225146, -0.073613, -0.029739, 0.348293, 1.389075, -0.585340, -0.531548, 1.049350, -1.524120, 0.565031, -0.878409, -0.475034, 1.708689, -0.821485, 0.091255, 1.589056, -1.197163, 1.336935, 0.235905, -0.938052, -0.624809, 0.531845, 2.105759, -0.549775, -0.960220, -1.652345, -1.301098, -0.605823, 0.361772, -0.868646, -1.089649, -1.282840, 0.854270, -0.087551, -2.123483, 0.386107, 0.028299, 0.206407, -0.835850, 0.057705, 1.393362, -1.547544, 1.418833, -0.726110, -1.609997, 0.284366, 0.133282, -0.113803, -0.246302, 0.385716, -1.342819, 0.802481, -0.747192, -0.168460, -0.410725, -0.676639, 0.501431, 0.701874, -1.112610, -2.127012, 0.844464, 0.120311, 0.335041, -1.169146, -0.486243, 1.991832, -0.725771, 0.414585, -0.013879, 1.460312, -1.775961, -1.494349, 1.276276, -1.334565, 1.342523, -1.006457, 0.451700, 0.538312, -0.642308, 0.988902, 0.344799, -0.993196, -0.566174, 0.839782, 2.086088, 2.044614, -0.435779, 1.037257, -0.408007, -0.928194, -0.576962, -0.507459, -1.375975, 0.077665, -0.321384, -0.037849, -0.523371, -0.321993, -0.764563, -0.491723, 0.738228, 0.704627, 1.607469, -0.927576, -0.394017, 0.249020, 0.479376, -0.730120, -0.214330, 1.451152, 0.789474, -0.656674, -0.436832, 1.409303, -0.169377, 0.031340, -0.195310, 0.072180, 1.309401, 0.438797, -1.208211, -1.192136, -0.115447, 0.850717, 1.463341, -0.321036, -0.198649, 0.141033, 1.239271, -0.785351, 0.832252, -0.552908, -1.609960, 0.197240, -1.632666, -0.047350, 1.204379, 1.903071, 1.023687, -0.402241, 1.194819, -1.232732, -0.171118, -0.218171, -1.127609, 0.001241, 1.623563, -0.833868, 1.034040, -0.272128, 1.444232, -0.414683, -0.794986, 0.457525, 2.211998, -1.412703, -0.882442, -1.041413, -0.894098, -0.015035, -2.559808, -1.231526, -0.334869, -0.409786, 0.502894, 0.563420, -1.208762, -0.756070, -0.564320, 1.080210, 1.122943, -1.392264, 2.110693, 1.787055, 0.262440, 1.456286, -1.393583, -0.105681, -0.820904, -0.504632, -0.052866, 1.159623, 0.032887, -0.250310, -1.119535, 0.247586, -0.605135, 0.511148, 0.005030, -1.153227, 0.147900, 0.797783, -1.144099, 0.571842, -1.287317, -0.639211, -0.143556, -0.862830, -0.170144, 0.563183, 0.230548, -0.112485, 0.517635, -0.557753, -1.331880, 2.015481, -1.005509, -0.845512, -1.196353, 1.349394, -0.672747, 0.168585, 1.240524, -2.042310, 1.634272, 0.277167, 2.580223, 1.310991, -0.113471, -0.213667, 0.546703, -0.659731, 1.408466, 0.215727, -0.125880, -0.415096, 0.589020, 0.963551, 1.390151, -0.568232, 0.010769, -1.282196, 0.731194, 0.691128, -0.168497, 0.636977, 0.169990, -0.554185, 0.509476, -0.018903, -1.392492, -0.390973, 0.039503, 0.540164, -1.239303, -0.195522, -0.710986, 0.407797, 1.338748, -1.045769, -0.547504, -0.618966, 1.000677, 0.641639, 1.665834, -2.476673, 1.194500, 0.244884, -0.612303, 0.963516, 0.822845, -1.977967, 2.666875, -0.240559, -1.600907, 0.041680, 0.145598, -0.276400, 1.129459, 1.092059, 1.278152, -0.221769, 1.133793, 2.168534, -0.069488, 1.005401, -0.874005, -1.124220, -0.741599, 1.837862, 2.094641, 1.319952, -1.770013, 0.332870, 0.012995, 0.736634, 1.339620, -0.820453, -0.105114, -0.732068, -1.169210, -0.668723, -0.017110, -0.141183, 0.310239, 0.283326, 0.031051, 0.226616, 0.591523, 0.896183, -0.592901, 0.576669, -0.948299, 0.386607, -1.387453, 0.362097, 1.726283, 0.560772, 0.975516, -0.245287, 0.839740, 0.340040, 0.745198, -0.750384, -0.718762, -0.001350, 1.366076, -0.972330, 1.569860, -0.466808, -0.709081, 2.652749, 0.874044, -1.134175, -0.071458, -1.567075, 0.088887, 1.004075, 0.550873, 0.350425, 0.015071, -1.363464, 0.341334, 1.126974, 1.112274, -0.022050, 0.358191, 1.264031, 0.338957, 0.185863, -1.360988, -0.836657, -1.608280, 1.500583, -0.971778, 0.257653, -0.227526, 0.465699, 0.188826, -0.849953, 0.491701, 0.676032, -1.168220, -0.381367, -0.022353, -1.842891, -0.171064, -1.284449, -0.072340, -0.876003, -0.720632, -1.405663, -0.620966, -0.076243, 0.982724, 1.181013, -0.562688, -1.019681, 0.669343, -0.161448, -0.552471, 0.340967, -0.536234, 0.679144, 0.232275, -0.178437, -1.231996, -0.985292, 0.866831, -0.297292, -0.984240, -1.611099, -0.713850, 0.090579, -0.859244, 0.522835, 1.511846, -0.287760, 0.003001, -0.091751, 0.879735, 1.096157, 0.522097, -1.202111, 1.220460, 1.514596, -0.214418, 0.293782, 1.305268, -2.114405, 0.372568, -1.816376, -0.872256, 0.696825, -0.960278, 0.419332, -1.002015, -1.223839, -0.103561, -1.248187, 0.313550, -1.053969, -1.706059, 0.881536, -0.310815, -0.925452, 0.566417, -1.073520, -1.011073, -1.163271, 0.915884, -0.233023, 0.860841, 0.493819, -0.174333, 0.106531, -0.472695, 0.132618, 1.326250, 0.086093, -0.179486, -0.582379, -0.303287, -0.027709, 0.339106, 0.334272, 0.888361, -0.586072, 1.521095, -0.621835, -0.163574, -0.544514, -1.551514, -0.491152, 0.876617, 0.339755, -1.271527, -0.011788, -0.285099, 1.249713, 0.961025, -0.261550, -0.046599, 0.644335, -0.462460, 1.060666, 0.056946, 1.487455, 0.331886, -0.360921, -0.131251, -1.610050, 0.929308, -1.871521, -0.400929, -1.189950, 0.067779, -0.792719, 1.218581, -2.228314, -0.004547, -0.560896, -0.115964, -1.301079, -1.561295, -0.008356, -0.172635, -0.908535, -0.341397, 0.685877, -0.158706, -0.130564, 2.384541, -0.098827, 0.449443, 0.950520, 0.761160, 1.653470, -0.202540, -0.390809, -0.329936, 0.055520, 0.231570, 1.532906, -1.252980, -1.216625, 0.262683, 0.058548, 0.093706, -0.035446, -0.202067, -1.954899, 1.235684, -1.118334, 0.987205, 1.836035, -0.827753, 0.245321, -0.236708, 0.432973, -0.434754, 0.427317, -1.766231, 0.804420, -1.451646, 0.729757, -1.556782, 0.313522, 1.132205, 0.790076, 1.132085, -0.244644, -0.048008, 0.520618, 0.507019, -0.517541, 0.349050, -1.029242, 1.620831, 0.704765, -0.257112, -0.996632, -0.348176, 0.293673, 0.463793, 0.599818, 1.126504, 0.629891, 0.003862, -2.478686, -0.876447, 0.937444, -1.476415, -1.158235, 0.922548, 1.686318, 1.073159, 0.838935, 0.868073, -0.268444, 0.074560, -0.494903, -0.974432, -0.043104, 1.536741, -0.984721, -0.019144, 0.337097, 1.113034, 1.128949, -0.688006, -0.971811, 0.663827, 1.976121, -0.612086, -0.830535, 0.801822, 0.976767, -0.073481, -0.413936, -1.723152, -0.708928, 0.553123, -0.268435, -0.458164, 0.337600, -0.015853, -0.430938, 0.482120, 0.632976, 0.855297, 0.369161, -0.350407, 0.119413, -0.654142, 0.283021, -0.249341, 1.927499, -0.089492, 0.805017, -1.127186, -0.993823, 0.694021, -0.099729, 1.335679, 1.833143, -0.536073, -0.002318, 1.607860, -0.431108, 0.624783, 0.760140, 2.909349, 0.479077, 0.739320, 0.523408, 0.036420, 1.204480, 1.006408, -0.668286, -0.100322, 0.780936, 1.131848, -0.248103, 0.865610, -0.439550, 0.668874, 2.303895, 0.428077, -0.798268, -0.240835, 0.712137, 0.539072, 0.477924, -0.319070, -0.455309, -0.359487, 0.795799, 1.450555, 0.935734, -0.115616, 0.076071, -1.013090, 0.661341, -0.035756, -0.839959, 0.697285, 1.181995, -0.957671, 1.467023, -0.415440, 0.670669, 0.050084, 1.101031, -1.796386, -0.383964, -0.506647, 1.700881, -1.474094, -0.887938, 1.086542, -0.236236, 1.501965, 0.661134, 1.084216, -0.529496, -0.599299, -0.167001, -0.627688, -0.971668, -0.613478, -0.057687, 0.140727, -0.671385, -0.280310, -0.329909, 0.144409, -0.048162, 0.719904, 1.569735, 1.270838, -0.551058, -0.316185, -0.026704, -2.606563, -1.123548, -1.389630, 1.857853, 0.453112, -0.537148, -0.119366, -0.188593, -0.133040, 0.570386, -0.689890, 1.261455, -1.203871, 0.118285, 0.673056, 0.314670, -0.467185, 0.890509, -0.640167, 1.316349, 1.760802, 0.381836, 3.156204, -0.548873, 0.309878, -1.721900, -1.461609, 0.323998, -1.449580, 0.419490, -1.025768, -2.196789, -0.427061, -2.127100, 0.495228, -1.407256, -0.768990, 2.156069, -0.253221, -0.436109, 1.126936, -0.981917, -0.607818, -0.136395, -0.233681, -0.758238, -1.968764, 0.513559, 0.650059, 0.363139, 0.297366, 0.645142, -0.177422, 0.951003, 1.610096, -1.260217, -1.041405, 0.349460, -0.053213, -0.879416, 0.704586, -0.495656, -1.164474, 0.749899, -0.358014, -0.684477, -0.233709, -2.041568, -0.401728, -1.567360, 0.744014, 0.657171, 0.049838, -0.093999, -0.701229, 1.605713, -1.157617, -0.276461, -1.111061, 0.588042, -0.509359, -1.521079, 0.715904, 0.424626, -1.572558, 0.863950, -0.847231, -0.819362, -0.234975, -0.205080, 0.244306, 2.532727, -0.282346, 0.813899, 1.237427, 1.316864, -0.595758, -0.438923, -0.192364, 0.651349, -1.155411, 1.332552, 0.365111, 0.287079, 1.388856, 0.784964, 0.962629, -0.067794, 1.554280, 0.133279, 0.045459, 0.076014, -0.041055, 0.392661, -0.229723, 0.226269, 0.170076, -2.228773, 1.195458, 0.160948, -0.448022, -0.306435, -0.433887, 0.647301, 1.566533, 1.025537, -1.856659, 1.369221, -0.332818, -0.416411, -0.685193, 0.142815, -2.053967, 0.479696, 1.388820, 0.072373, -0.165684, -0.723197, -1.120170, 0.721519, 0.694942, -1.327925, 0.852870, -1.270574, -1.671023, 2.365201, -0.429087, -0.264616, 1.305838, 0.051837, -1.489186, -1.379524, -0.267827, -1.513242, 0.206231, -1.226853, 0.262906, 0.804098, -0.662063, -0.737027, 0.006400, -0.097888, 1.409563, -0.005622, -0.265703, 0.430784, -0.374082, -0.353639, 0.498409, 0.634408, 0.423830, 0.794608, 0.230726, 1.496160, -1.248603, -1.345097, -0.461340, -0.594938, 1.276330, 0.049087, 2.877397, -0.155074, -0.402770, 0.395112, 2.750214, -1.599486, 1.171930, -0.626030, -0.359968, -0.526952, 1.355983, -1.127950, 0.562453, 0.803102, -1.026099, -1.751319, 0.910812, -0.138222, 0.039850, -0.588132, -1.006941, 1.155574, 1.700764, 0.533998, -0.594966, -0.045537, 0.042856, 0.142323, -0.689567, 1.367362, 0.793721, -0.318274, -1.230443, -0.804394, -1.556826, 1.295637, -0.410950, -1.001370, -0.142660, 0.011917, -2.000602, 1.701693, -0.204075, 2.126241, 0.571278, 0.213523, 0.273277, 0.711628, -0.644814, 2.377962, 0.067837, -0.203787, -0.492727, 0.825123, 1.750371, -0.056338, 0.152948, 2.230357, -0.698760, 0.077599, -0.029802, -0.571621, -0.258995, 0.154825, -0.607714, 0.042422, 1.871377, -0.459544, 0.204277, 0.902499, -0.681999, 1.033516, 0.134362, 1.066330, 0.626885, -1.045229, 1.773388, -0.070718, 0.272405, -2.291435, 1.153380, -0.936707, -0.686482, -1.712940, -0.250838, -1.797788, 1.208108, 2.012615, 1.753916, 0.404781, -0.871592, -0.479848, 1.139744, -0.567713, -0.342623, -0.658585, -1.999230, 1.718585, -0.937630, 0.722913, 0.748836, -0.649737, -2.078196, -0.152699, 0.548236, -0.728365, 0.325118, 0.566414, -0.077661, -1.900146, -0.146621, 1.614005, 1.609826, 0.110968, -1.507258, 1.761579, 1.040985, 1.095699, 0.164434, -1.315387, 1.237369, 0.115449, 0.342713, -0.205608, 0.290848, -0.450209, -0.384163, 0.453791, 0.773005, -0.344453, 0.751582, 1.051541, 0.773914, 0.514508, -0.866921, 2.373794, 1.549060, 0.868504, 0.940303, 0.037269, 1.596310, -1.622590, -1.321213, 0.422387, -1.556589, 0.278207, -0.715823, 0.442452, 0.611006, -1.406512, -0.400933, -0.036381, 0.682282, 0.440410, 0.337547, 1.054140, -2.370662, 0.500439}, - { -1.557117, 1.354714, -0.507189, -1.677046, 2.251007, -1.236535, -2.730527, -0.135517, 0.426629, -0.840740, -0.484746, -1.135077, -0.431187, 1.055289, 0.722851, -0.033690, -0.104293, 0.511147, -1.845357, 1.101776, -1.811933, 0.339437, 0.540583, -0.475171, 0.639632, -0.340200, 2.074263, 0.891054, -0.257403, 1.878608, 0.436490, -0.221761, 0.107039, -0.395112, 0.723690, 2.195958, 1.373352, 0.191767, 0.965378, 0.134876, -0.511638, -1.963900, -0.601847, 0.888348, 1.360059, -1.005337, -1.352559, 0.275802, -0.996586, 3.429792, -0.089151, 0.671209, -1.229815, 2.154351, -1.125775, 1.665587, 1.796281, -1.711791, -0.930979, 1.180638, -2.721949, 0.367663, -1.339680, 1.915345, 0.653384, 0.853967, -1.278708, 0.210739, 0.496017, 1.707879, -0.676035, 1.144740, 0.241170, -0.088847, 0.894312, -0.015625, 1.366835, 0.855726, 0.146110, 0.439883, 0.526952, 0.463049, 1.613597, 0.931085, -0.005703, 0.176923, 0.200233, 1.221886, -2.212358, 0.244618, -1.479742, 0.157874, -1.162725, -0.935696, 0.654720, 0.802513, -0.598277, -0.626279, -0.992366, -0.009777, -1.218925, 1.364486, -0.350957, 0.921134, 1.114492, 0.866894, -0.703489, -0.684720, -1.438787, -1.062744, 0.357847, -1.529508, -2.131406, -2.031877, 0.099589, -0.392503, 1.824714, -0.434718, 0.283077, -0.821671, 1.593158, 0.891252, 0.344510, 0.950365, 0.122338, 0.235416, 0.070577, -0.591245, -0.544214, 0.048842, 0.493935, 1.145389, 1.823551, -0.779781, 0.339646, -0.679694, -2.653334, 2.521782, 2.455108, 0.610537, -1.119245, -0.202094, -0.355687, -0.778566, 0.002674, -0.544540, -0.318923, -0.780856, 0.707767, 0.345975, -0.617952, -0.596359, 2.635500, 1.579006, 0.259500, 0.323165, 2.359543, -0.594938, 0.068492, 0.549249, -0.512844, -0.190790, 0.595400, -0.590486, -1.031470, -0.524377, 3.203436, -0.281427, 1.053369, 0.065607, -0.721295, 0.919299, 1.060299, -0.661467, -0.107674, -0.576129, -1.235150, 1.660981, 1.133712, 0.287339, 0.287246, -1.554665, -0.787339, -1.351613, -1.062265, -0.455838, 0.038943, 1.090834, -0.414549, 0.426604, 0.106733, -1.156028, 0.792491, 0.414883, 0.984235, 0.527139, 0.293199, 0.899923, -1.988108, -0.444575, -1.584547, 0.422906, 0.194498, 1.025737, 0.828271, -1.456154, 0.117757, 0.066355, -0.211340, -0.518127, -1.217674, -0.178295, 0.704854, 0.483708, 0.294321, 0.526501, -1.291551, -1.874611, 1.592156, -1.805152, 0.266123, -2.492696, -0.868882, 0.479426, -0.023887, -0.316269, 2.259561, 1.800243, -0.758295, -0.150794, 0.780820, -1.185125, -1.673051, -0.047029, -0.266093, 0.890193, 1.160271, 0.772067, 0.528865, -2.118247, -0.731128, 1.012658, -0.319670, 0.551970, 1.067810, -1.249290, -1.229468, 2.821555, -1.244210, 0.298691, -0.381823, -0.315208, 1.066915, 0.879789, 0.276744, 1.559746, -0.424278, -0.031569, -0.061117, 1.112057, -0.164522, -0.667368, -0.406287, 0.502148, 1.479977, -0.718784, 1.329454, 0.365968, 2.085443, 0.904310, -0.472464, 0.304797, -0.022248, -0.718791, -0.443014, 0.357514, 1.831675, -1.094502, -1.025506, -0.365520, 1.171117, 0.328614, -0.655944, -0.755994, 0.373699, 0.845346, 0.283553, -0.768500, 0.031940, 1.364133, -1.017221, 0.676596, 0.187238, 0.099184, -0.763140, -0.222902, -0.219223, 1.826233, 1.093794, -1.138860, -0.418974, 0.317812, -0.395524, -0.838842, -0.399299, 0.882260, 1.344751, -0.557243, -0.890126, -0.708344, -0.170535, 1.518636, -0.398429, -0.349143, 0.182937, 0.644080, 0.293535, 1.330478, 0.042729, 0.713383, 0.670294, -1.489232, -1.952641, 1.089116, 0.766679, 0.260208, -0.092512, 0.722679, 0.971277, 2.077432, 0.688735, -1.332670, -1.730159, -0.281100, 1.178166, -1.937678, 0.121702, -0.959751, 0.380197, -0.126586, 0.660441, 0.096211, 1.854894, -0.148417, -0.486456, -0.668114, -0.692463, -1.034927, -0.111797, 0.648791, -0.568638, -1.028907, -0.716304, 0.046795, -0.030656, 0.504981, 0.063141, 1.611272, 0.801220, 1.375850, -1.128715, -0.191421, -0.477263, -0.473041, -0.558201, -1.297186, -0.522119, -0.257538, -0.114766, -0.259126, -1.069742, 0.269224, 0.245706, 0.948744, -0.731799, 1.502836, -0.898101, 0.093258, -0.898092, -1.043162, 1.211760, 0.724990, 0.967940, 1.255183, -0.689236, -0.829589, 0.429128, 1.443109, 1.570252, -0.740298, -0.316961, 0.536463, 0.199828, 0.121909, 2.004791, 0.756453, -0.507309, -0.730538, 1.615830, 0.445823, 0.877933, 0.155118, 1.033334, -1.077395, 1.656990, 1.328022, 0.191761, -1.031495, -0.584851, 0.797350, -0.634260, 0.835749, -0.358748, 2.032304, -0.591092, 0.223780, -1.314651, -1.699066, -0.239608, 0.020907, 0.160940, -2.688284, 0.658536, 1.486791, 1.620062, -2.104166, 1.188102, 0.370384, 0.059716, -0.252538, 0.579343, 0.462017, 0.295460, -0.229596, 0.256024, -0.244064, -1.136943, 0.187441, 1.188502, 0.057767, -1.243613, 0.071384, 1.709040, 1.539935, 0.934083, 0.649864, -0.236786, -2.584575, -1.431453, -0.517931, 0.321816, -2.963837, -0.718307, 0.924068, -0.789880, 0.751059, -0.214046, -1.650300, -0.094235, -0.208179, 0.887398, 0.425317, 0.836094, 1.120878, 0.777292, -1.955840, -2.196150, -0.366979, -0.323786, 0.098094, -1.240425, -0.153496, -0.368574, 0.323803, 0.422725, -0.383971, 0.486266, 1.912627, 1.069989, -0.835923, -0.688125, 1.032788, 1.070619, -0.608596, 1.254905, 0.085726, 0.105570, -1.843710, 1.407650, -1.347667, 2.621028, 1.587248, -1.376651, -0.653023, 0.707422, 1.455100, -0.831775, -1.663748, -1.495220, 0.571127, -2.077593, 1.572516, 1.161790, -0.313553, 1.834049, 0.544914, -1.143451, -0.702849, 0.885798, -1.707950, 0.410130, -1.565802, 0.165077, -0.549966, -1.959193, 1.167866, 1.802445, 0.431422, 0.885983, 0.600516, -1.363368, 0.510890, -0.554945, 0.048845, 0.737844, 0.663687, -1.842748, 0.811965, 0.853685, 1.683111, 0.482860, -0.208920, -0.515260, -1.023627, 1.893778, 0.929339, 0.550755, 0.818082, 0.502538, 0.725463, -0.246349, -0.238920, 0.952603, 0.569799, -1.001931, 1.969856, 0.716774, -1.137192, -0.798399, -0.965910, -1.612037, 0.749674, 0.280505, -0.516543, -0.854051, -0.574175, -0.813508, 0.360200, 0.170275, -0.329160, -0.876415, 1.163529, 1.020010, 0.275865, 1.429493, 0.206745, 0.669694, 0.988536, -0.111673, -1.064488, -1.381906, 0.054743, 0.094889, -0.177771, 0.803945, 0.576841, 1.221266, 0.325914, -0.372008, 2.111483, 1.932752, -0.565688, 1.122114, -1.310081, -1.008726, -0.338272, 0.277182, 0.642604, -1.775700, 0.739044, -0.906823, 2.325243, 1.046948, -0.423112, -2.036797, -1.761800, -0.975541, 1.134551, 1.344011, -0.117449, 0.172826, -0.823505, -0.143463, 0.863610, -0.210688, -0.619058, 1.870949, 0.063990, -0.651090, 0.195268, 0.501306, -0.607498, -0.710503, -1.635040, 1.027606, -3.069799, -0.638853, 0.540163, 1.745569, 0.567150, -0.134887, 0.158715, 0.410833, -0.526851, 0.454765, 0.716343, -0.623224, 0.695090, -0.598681, 1.241086, 0.683083, -0.041679, 1.525075, -0.962389, -1.307760, 0.675192, -0.578039, 0.245004, -1.231397, -0.829305, 0.115689, -2.717426, 0.144028, 1.032865, 0.148114, -0.952908, -1.504366, -2.247828, 0.406948, 2.433513, -0.463547, -0.020855, 1.089980, 1.915876, -0.780706, 1.175394, 0.066952, -0.950170, 0.834358, -0.846286, 0.016857, 1.175339, 0.215610, -0.584048, -0.401780, -0.832289, -0.202046, 0.711954, -1.264368, -2.883734, -0.423156, 0.936798, -0.289677, 0.709213, 0.479675, -1.788116, 0.398553, -0.343703, -1.613222, -0.507234, -0.480106, -0.091324, -0.299687, -2.786705, 1.600875, -0.662804, 1.011639, 0.092112, -0.066656, 1.343879, -1.046727, -0.410463, -1.168224, -1.704453, 1.066022, -2.321124, -0.224048, -2.070347, 0.694574, -1.826250, -1.852257, -1.834839, 0.343259, 0.656732, -2.709880, 1.514210, 1.956066, -1.795674, -1.797701, 0.592806, -0.607482, -1.512448, -0.090299, -0.638567, 0.687265, 0.252648, -0.057771, 0.418299, 0.324606, 0.880168, -0.114430, 1.441478, -1.031433, 1.357451, 1.081684, 0.073322, 0.385400, 1.574116, -0.838686, -0.562279, 2.803296, -0.062337, -0.715824, -1.483479, 0.697064, -1.511971, 0.622425, 1.685541, -0.185731, 0.977569, -2.076476, 0.372813, 0.019008, -0.659924, 0.837051, -0.646133, -0.279275, -0.313328, -0.301571, -0.288674, 0.040925, 0.691603, -0.455363, 0.381743, 1.438290, -0.958760, -0.402769, -0.331764, 0.213186, 0.493733, 0.604938, 0.149029, -0.182319, 0.764589, -0.690511, 0.395842, 0.433151, -1.657155, 0.999666, -1.443099, 1.285412, -0.236826, 0.579664, -0.935998, -0.233323, -1.267898, 0.026270, -0.775491, 0.257070, -1.378352, -0.907157, -2.086672, 0.873207, 1.008371, -0.623795, 2.244254, -1.394387, -0.493002, -1.006927, 0.900087, 0.526529, -0.408201, -0.909291, -0.412598, -1.666606, 0.336379, 1.937729, -0.072592, 0.678691, -0.614418, 0.250235, 1.045207, -0.581390, 0.755579, -1.646924, -1.423800, 0.230081, 1.003887, -0.725993, 2.114760, 0.806880, 0.096856, 0.559407, 0.107620, -1.821931, 0.121767, -0.515205, 0.172496, -1.398159, -0.312484, -0.835134, -0.092868, -0.714001, -1.111573, 1.999733, 0.130829, 0.798623, -0.440334, 1.082063, -1.787091, 0.127145, -0.937345, 0.413789, 2.730453, -0.905496, -0.800846, 0.027002, 1.017213, -1.605840, -2.170621, 0.333026, 0.989201, 0.322813, -0.144388, 0.788195, 1.910774, -0.027260, 0.648311, 0.398361, 0.110731, -0.267675, -0.614838, 1.994243, 0.494190, 0.428123, 0.933699, 1.799689, -0.682839, 0.278480, -0.196905, 0.478146, -0.801117, 0.827211, -0.208584, 1.749742, -0.309020, 0.550399, 0.029851, -1.455646, 0.604909, -0.079668, -2.667139, 0.087649, -0.460940, 0.762463, -2.313522, 0.324131, -0.051233, 1.416637, -1.459987, 0.823470, 1.385938, -0.935317, 0.286730, 1.344583, -0.171006, -1.096904, 1.473253, 0.965604, -1.496269, -0.178862, 1.717303, -0.583761, 0.113950, -0.018208, -0.327182, 1.401059, 1.389596, -0.796274, 0.020972, 1.471807, -0.812743, 0.257384, 0.751148, 0.047724, 0.700667, 0.265306, -2.105040, 1.943851, 0.336538, 0.061315, -0.880601, 2.034990, 0.390806, -0.251553, 0.949620, 0.569913, -1.127480, -0.133491, -0.360130, 0.507190, -0.120065, 0.239050, -0.186229, -0.451519, -1.754476, 0.374530, 0.611022, 0.789310, -0.348057, 1.140915, 0.085280, -2.326496, 0.418783, 0.016176, 0.686528, -0.627661, -2.044782, 0.762335, -2.777923, -0.539664, 0.490943, 1.338368, 0.666821, -0.109984, -0.242139, 0.338926, 0.599906, -0.988994, 0.075134, 0.612756, -0.137218, -0.329234, 0.209015, -2.814755, -1.220983, 1.693280, 0.505602, -1.028624, -1.108691, -0.708004, 0.897789, 0.116973, 0.676235, 1.243742, 0.574093, 0.568279, 0.204379, 0.320489, 3.624524, -0.107981, -1.071918, 0.476256, 0.647188, -0.725657, -0.683423, -0.150823, -1.443447, 1.602178, 0.200285, 0.649823, -1.720011, 1.414100, -0.197545, 0.515355, -0.374684, 0.283812, -0.470898, -1.063043, -1.816326, 0.250095, 0.935557, -1.139354, -0.466160, 0.405362, -0.622125, 1.001775, 1.485674, 1.143600, -2.325331, -0.168706, 0.076381, -0.256243, 0.727384, -0.405000, -0.397265, 2.091771, 0.961732, -0.555531, 1.535828, -0.058543, 0.309129, -0.454639, -0.373124, -0.027610, -0.002329, -1.562552, 0.450250, 1.854350, 0.136018, -1.061123, 0.668776, -1.319662, 0.071643, 0.671723, -1.192360, -0.847854, -0.117530, 0.658111, -1.046560, -1.172832, -1.027798, 0.205758, 1.142023, 1.912734, -0.143382, -0.007215, -0.348592, -0.052300, 0.602616, 0.149774, 0.986381, 1.471414, 0.300240, 1.089306, 1.396079, 1.683783, -0.992930, -1.046782, -1.896329, 0.023814, -0.529550, 0.032748, 0.078279, -2.043210, -0.488937, -1.731646, 0.052488, 0.245970, -0.086917, -0.119635, 0.661894, 2.422866, 0.264647, 1.130475, 0.825577, -0.210446, 0.789719, 0.806348, 0.487728, 1.400573, -0.602437, 0.084405, -0.589990, 0.158884, -0.442584, 0.780902, 0.867537, 0.161949, 0.543853, 0.588014, 0.573093, 2.175162, -1.271450, 1.267353, -0.965747, -0.371463, -1.254071, 0.676379, 0.064895, -1.493244, -0.402029, 0.549497, 1.876008, 0.531956, 0.855622, -0.113579, -0.856276, 0.550516, -1.477120, 0.125452, -0.081384, 0.451109, -0.396976, -0.067359, -0.695863, 0.102945, -0.662459, -0.344884, -0.912358, 1.044545, -0.038694, -0.989957, -0.876553, -0.233115, 1.001486, -0.033651, -0.073757, -0.031075, -0.008064, -1.806170, 0.047935, 0.193671, 1.413952, 0.040483, 1.190362, -0.462616, 2.006792, -0.942195, -0.404081, -0.688151, -1.438415, 0.360901, 0.442568, -1.319612, 0.296704, -1.096544, 1.121205, -1.854651, -1.497170, 1.133617, 0.176775, -0.322742, 0.632726, 2.031226, -0.141536, -1.193344, -0.719150, -0.907301, -0.302887, 1.501997, 0.222989, 0.607424, 0.715540, 0.135347, -0.180373, 0.872393, 0.302123, 0.621171, 0.565502, -0.865762, 1.556385, -0.639774, 0.770244, -0.289162, 0.909540, 0.198509, -0.406314, 1.114900, 1.965350, 0.376352, -0.487214, 0.252000, -1.466713, -1.148095, -0.376994, 0.142340, -0.733264, -0.264959, 0.718959, -1.021395, -0.760192, 0.573613, -0.240009, 0.920737, -2.227340, 1.754826, -0.455740, -0.071718, 0.527629, -0.288560, -1.655325, -0.214926, -1.059318, -0.110169, 1.234615, -1.071158, -1.332628, 1.193424, -0.052697, -3.007507, -0.231441, -0.501489, -0.097044, 1.156758, 1.010388, -0.699723, 0.011532, -0.366105, -0.354938, 0.706469, 1.324823, -0.723851, -0.765305, 0.104078, -0.152778, -1.760532, 0.108150, 0.417053, -0.240973, -0.631443, -0.842603, 0.085735, -0.642529, 1.114929, -1.277776, 0.069594, -1.270295, -0.762618, -0.099499, 1.846426, 0.813036, 0.018230, -0.703635, -1.385186, 0.787865, 0.149337, 0.922254, 1.058334, -1.488605, 0.733014, -1.218047, 0.062609, -0.080778, 0.922523, -0.317111, 1.008965, 1.554433, 0.315259, -0.477063, 0.615799, 0.560589, 1.504575, -0.779535, -0.156815, -1.290895, 1.693081, -0.978720, 0.512226, -0.009672, -0.435017, -0.708193, -0.773288, -0.470815, -0.014696, -0.098243, 0.889275, 0.518527, 1.333418, 2.264540, -0.357673, 1.677651, -0.796292, -0.421162, -1.647305, 0.941487, -0.896379, 0.661574, 0.953356, 1.050237, 1.914091, 0.551282, 0.489249, -0.597443, 1.130541, -0.318466, 0.830834, -0.953340, 0.086149, 1.435785, 0.604072, 1.209609, 0.774671, -0.592657, 1.467651, -0.351216, -1.484281, 1.343407, -1.611825, -0.332055, 0.723110, -1.139692, -1.001073, -0.325930, 1.749366, -0.148873, -0.610217, -0.543498, 0.691570, 0.888235, -1.561314, 1.459599, -0.535249, 0.541400, 0.009179, -1.395937, -1.128175, -0.649366, -2.114625, -0.065877, 0.312541, 0.018073, -0.647090, -1.427603, -0.124610, -0.474331, 0.632228, 1.363993, -1.584020, 0.068125, 0.103750, 0.936805, -1.948344, -1.349068, -0.072204, -0.331641, -0.963022, 1.867544, -0.187147, -0.352917, -0.375159, -0.799938, -1.031288, 0.619725, -1.233922, 0.823035, 1.129496, -1.508481, 0.391089, 0.034143, -1.486469, -1.511410, 1.540567, -0.317665, -0.751800, -0.848927, 2.832581, -0.103704, -0.566887, 0.323637, -0.135427, 0.105963, 0.002972, -0.731210, 1.706718, 0.280686, -0.847416, -0.587071, 0.208485, -1.240083, -0.850757, -1.066710, -1.459347, -1.611627, -0.793716, -0.393560, 1.027389, -0.439485, 0.268820, -0.862088, -1.119811, 0.318000, -0.260147, 0.325984, -0.622883, -0.669476, 0.408702, -1.056129, -0.584641, 0.000201, -0.752587, -0.787775, -1.164250, -0.723832, -0.746187, -1.927120, -0.840254, 1.385708, -0.078547, -1.140047, 0.166102, -1.191008, 1.178601, 0.959276, 0.618510, 0.405589, 0.196847, 1.581025, 0.967423, -0.514203, -1.092266, 2.248667, -0.973327, 1.737345, -1.705929, 1.422695, 1.555662, 1.207116, -0.733619, -0.009778, 1.435663, 0.167343, -0.979807, -1.046875, -0.735424, 0.845894, 0.153676, -1.047022, 0.701910, 1.023052, 1.084728, 0.371670, 2.275627, -0.458659, 1.762021, -0.151062, -0.459453, -0.346671, -0.439336, 0.138806, -0.071424, 1.075717, -0.707650, -1.222287, -0.326649, -0.365195, -0.631663, -0.452039, 0.076999, -0.453122, -0.758912, -0.603327, -0.946270, -0.568353, 0.655457, 0.228447, -1.157819, -0.140629, -0.815454, -0.364001, -0.907113, -0.252045, -1.557672, 1.351852, -0.024363, -0.142018, -0.672413, -1.739248, -1.996266, 0.644202, 0.169764, 0.561553, -0.785866, -0.596929, 0.816867, -0.039996, -0.239989, -0.885165, -0.459998, 0.368302, -0.012020, 1.504429, 1.469093, 1.607059, 0.214752, 0.528592, 1.533930, -0.534178, -0.160462, 0.810724, -0.253174, -0.118833, 0.692363, -0.085343, 0.265335, 2.406784, 0.634014, -0.260212, -0.024009, 0.971677, 0.807658, -1.138677, 0.453462, -0.757718, -0.680201, -0.436209, 0.276405, -1.000322, 0.249727, -1.897274, -1.480437, 0.476978, -0.360568, -0.847952, 0.348301, 0.162966, 1.566202, -0.367893, 0.860830, 1.780864, -0.369717, -0.078052, -0.871633, 0.089699, 0.194816, -1.254903, -0.435643, 1.155469, 0.630962, 1.598219, 0.578034, -1.298599, 0.152819, -1.568090, -0.751830, -0.978385, -0.454237, -0.846124, -0.385268, 0.042639, 0.610340, -0.833527, -1.874566, -0.595565, 0.412910, -0.488504, -1.235172, 2.326921, -0.177846, -0.577322, 0.351844, 0.326709, -1.063931, -0.535155, 0.011826, -0.945323, 2.371784, -0.027007, 2.269670, 0.383736, -1.519508, 0.935869, 0.732636, 1.390427, -0.078902, -0.449151, -0.488681, 1.094915, -0.202084, -0.287595, 0.142216, -0.898288, 2.426931, 0.845492, -0.003604, -0.077900, -0.072413, 0.543166, 1.372370, -0.550238, -0.903998, 1.768091, -1.157348, -0.973716, -2.085474, 1.285981, 0.297159, -0.563190, -0.990179, -0.928343, 0.036833, -0.132404, -2.793431, 0.140091, -0.561387, -0.766239, -0.463243, 0.720224, 2.433175, 0.577626, -0.102106, 0.453248, 1.149690, 0.060122, 0.184904, -0.086450, 0.222498, -0.269881, -1.756782, -0.212303, 0.348684, 0.063343, 0.479133, -0.627331, -1.242213, -0.885179, -1.534372, -1.079785, -1.334267, -0.946222, 1.621160, 0.765204, -1.648988, 0.154881, 0.588840, 0.001410, -0.856360, -0.693779, -0.593685, 0.636250, 0.527808, 0.391954, 0.056132, -0.915853, -0.785997, 0.354604, 0.048352, 0.482858, -1.549876, 1.140285, -0.729221, -1.000013, -0.238574, 0.009340, -0.850482, -0.096991, -1.063285, -0.254214, -0.269767, -0.314655, 0.538193, 0.731428, -0.129746, -1.956473, 0.700639, 0.620613, 0.330232, -0.752340, -0.109973, 0.342319, 1.606716, 0.399675, 0.540330, -1.416298, 0.053976, 1.417298, -1.874458, 1.070427, -0.199754, -1.608628, 1.103573, 1.588237, -0.520360, 2.218319, 0.946560, 0.782908, 1.249461, 1.181448, -1.122672, -0.953556, -0.140751, 1.528455, 0.497748, -1.076518, 1.041024, 0.312284, -0.210207, -0.169994, -1.827092, 1.115518, -0.652308, -1.621547, 1.297407, 0.709014, -2.372253, -0.410997, 0.167149, 1.097231, -1.976804, 1.373858, -0.905328, -0.057656, -1.195878, 1.042341, -1.602360, 0.462578, -0.849047, -0.932067, -0.823945, 1.781272, 0.363393, 0.286439, -1.312072, 0.100421, 0.864303, -1.370142, 0.512092, -2.117177, 2.141616, -0.741381, -0.326326, -0.652323, 0.911839, -0.490780, -0.167039, -0.325924, -1.554214, -0.287802, -0.376901, -1.526887, 1.817247, 0.668049, -0.201002, 1.068239, 0.614162, -0.688809, 0.617680, -2.282654, -0.369808, -0.868731, 1.832154, -0.112420, 2.153309, -0.472138, 1.746971, -0.158361, -1.330890, -1.004652, -1.304650, 1.164770, 0.598732, -0.678409, -0.649571, 0.374289, -0.366423, -0.830665, 1.085109, -0.147578, -1.173575, 1.365459, -0.240607, 0.585568, 1.074867, -1.771816, 0.350242, 0.542322, -0.903360, 0.779767, -0.455828, -1.087029, 1.143988, -1.087878, -0.338279, -0.006980, 0.206698, 0.573161, 0.405787, -0.170474, -0.435998, -0.853423, 0.626173, 0.954629, -0.851737, -1.767429, 1.012765, -1.027125, 0.084180, 1.653846, -0.017657, -2.041177, 0.478052, 0.301108, 0.794047, 0.326979, -1.696737, 1.239793, 0.817544, -0.544289, -1.079586, 0.480169, 0.697885, 0.029189, -0.157003, 0.244460, 1.471116, -0.058096, -0.335356, 0.846185, -0.706565, 0.893403, 0.064045, 0.599305, 0.777811, -0.327337, -1.161725, 2.090903, -1.326161, -0.725093, 0.899056, -0.310031, 0.595842, -1.982696, -0.449979, 0.321119, 0.298156, 0.428420, 1.595750, -0.426936, -0.019715, 0.544453, 0.529716, 0.950191, 0.161947, 0.216113, 0.021033, -0.859725, -0.311713, -0.044644, 1.123937, -0.388754, -0.457174, -1.975546, 0.253457, -0.143959, -1.257514, 1.608866, 0.903306, -1.594638, -1.004951, -0.747047, -0.465666, -1.048783, -0.784695, -1.166549, -0.079232, 2.567748, -1.117581, 0.466456, 1.777307, -0.754517, 1.052868, 0.842280, 0.407805, -0.438280, 2.096974, 1.599941, -1.144482, 0.706852, -1.079994, 0.446117, -1.588874, 0.153943, 0.146844, -1.031799, 0.044539, -0.077193, 0.546758, -0.220017, -0.961376, -0.194828, -0.623218, -0.677772, 0.770816, -1.187404, -0.468903, -0.558702, 0.077340, -0.589303, -3.303533, -1.043170, -0.552415, 1.136450, -0.528130, 2.127850, -1.585950, -1.345437, -0.114537, -4.300495, 0.925318, -0.632387, -0.778907, 0.161790, 1.695711, -0.044800, 0.293022, 0.606354, -1.381420, -1.688716, -0.366741, 0.739439, -0.851905, 0.077586, -0.817667, -0.648724, -0.079391, 0.092442, -1.654611, -0.380085, -2.359384, 1.422481, 0.341910, -0.367495, 0.139648, 0.648311, 0.002428, -0.543509, 0.638240, -0.719029, -0.973774, -0.585278, 0.887388, 0.623954, 0.637385, 1.235658, 0.536885, 0.840931, 1.843361, 0.016616, 0.186860, 0.748575, 2.052685, 0.946707, 0.714075, -0.867320, -0.349556, -0.232103, -0.788715, -0.059042, -1.367973, -0.816085, 0.363620, 1.263519, -1.900187, 1.133963, -0.170226, 0.395506, -0.050084, 1.661634, 0.187009, -0.275987, 0.532311, -0.792247, -2.209967, -0.174388, -0.503377, 1.043901, 0.377315, 0.878469, 1.666189, 0.166155, 0.959415, 0.293677, -0.547424, -1.362808, -0.224272, -0.881520, -0.981233, -0.608290, -1.230971, -1.684822, -0.285943, 1.015244, -0.462072, -0.906668, 1.921854, 0.834137, 1.904203, 1.734076, -2.155846, 0.447119, 0.113841, -0.105290, 1.140077, -0.635905, 1.161924, -2.251748, 0.265711, -0.485624, -0.335880, -1.445401, -0.090981, 0.506388, -1.738436, 1.396771, -1.923806, 0.108555, -0.403277, -0.952693, -1.975905, -0.589969, 1.068580, 0.474613, -0.207443, -0.941785, 0.313337, -0.338199, -0.504333, -1.717215, -1.175869, 0.506519, -1.085890, -0.807780, -1.406470, 0.812941, 0.715761, -0.760918, -1.890742, -1.925585, -2.049034, -0.331508, -1.221669, -0.160516, -0.069893, 0.004622, 0.969929, -2.446832, 1.740517, -0.695053, 0.477487, 0.505786, -0.566565, 0.045836, 0.561914, 0.082420, 1.275409, -0.079680, 1.554209, 0.297980, 1.545889, 0.056693, 0.929750, -0.800087, 0.174759, -2.121391, -0.425979, 0.494141, 0.410757, 0.484254, -1.115728, 0.595760, -0.141025, 0.215541, 0.069802, 0.710761, -1.362658, -0.911008, -0.997132, -0.309394, -1.834935, -1.014773, 0.265875, 0.023405, -0.946596, -1.590703, -1.228491, 0.870008, -0.340985, -0.070390, -0.818430, 0.343354, 0.487150, -1.982794, 1.011562, -0.285269, -0.328664, 0.065852, 0.708075, -0.077594, 0.242811, -0.212249, -2.497117, 0.048809, 0.660148, -1.865733, -0.975017, 0.949623, 0.690463, 0.848092, 0.969258, 1.463848, -0.822141, -1.599392, 0.067922, -0.156459, 0.479083, 1.138052, -1.001565, 0.013482, -0.712189, -0.382242, -0.509447, 0.208836, 0.049709, -0.843975, 0.715524, 0.547512, 1.015411, -0.172784, -1.112108, -0.776726, 0.966446, -0.159367, -0.589542, -0.596102, 0.307302, -0.255558, -0.316782, -1.974549, 0.160857, 0.911458, 0.035802, -0.674841, -1.071291, -0.951451, -0.506916, -0.336920, -1.328063, 1.967865, 0.092645, -1.456744, 0.276830, -1.130429, 1.217138, -1.679936, -0.630305, 0.825974, -1.209480, 1.591581, -1.723964, -0.816020, -1.048776, 0.490735, -0.475880, -0.437219, 0.188528, 0.137812, -0.544941, -0.067159, -0.739706, -0.552998, -1.000327, 0.402042, 0.407939, 0.525162, 0.731016, -1.266692, -1.411585, -0.306509, -1.058082, 0.033268, -0.255101, 1.359707, 1.967774, 1.511500, 0.762854, 0.118548, 1.599814, -0.615524, -0.048723, 0.488591, 0.375427, -0.038320, 0.288628, -0.103925, 0.464141, 1.240456, 0.272748, -0.596565, 0.223885, -0.735085, -0.188305, -0.797489, -1.422948, 0.304770, 0.208513, -1.319620, -1.178728, 0.792189, -0.454396, 0.621427, 0.750056, 0.046164, -0.571839, -2.198831, -0.557676, 0.504787, -0.340769, 1.155886, -0.602151, -1.350994, 0.183326, 0.093178, 0.139263, -0.499876, -0.481268, -0.954176, 0.126912, 0.116863, 0.765332, 0.205981, 1.341605, -0.257970, 0.183472, -1.824464, 1.337553, 0.334509, -0.061754, -0.234325, -0.100152, 0.330343, -0.424811, -1.439790, 1.195658, -0.595843, -0.259344, -2.044168, 0.064204, -1.652589, -0.321069, -0.553556, -0.832698, 0.446229, -0.861846, -1.806791, -0.617371, -0.742199, -2.485753, 1.249662, 1.421692, -0.797433, -0.802611, -0.225920, -0.261215, 1.820470, -1.821068, 0.966022, -1.272230, -0.142168, 0.865661, 0.848400, 0.611056, 1.000821, -1.189157, -0.380715, -0.641966, -0.008629, 0.268261, 0.722904, -0.659296, -0.685737, 1.440202, -0.573664, -2.913980, 0.933113, -1.917645, 1.351861, -0.616408, -0.477297, 0.862531, -0.572179, 0.874445, 0.260035, -1.265886, -1.105464, 0.865375, 1.365638, -0.292919, -1.419697, 1.938201, 2.356994, -0.044798, -0.973055, -0.167109, 0.351039, 0.340722, -1.461834, 1.426527, -0.185248, 0.773286, 0.484805, 0.819893, 0.211411, -0.651001, -0.355170, 1.774631, -0.358988, -1.109809, 1.330151, -0.355999, -1.124707, 1.063322, 0.345758, -1.876200, -1.120688, -0.767086, -2.450008, -0.501714, -0.528775, -0.575405, -0.828807, 0.855159, -1.767087, 2.053926, 0.211529, -1.357369, 0.573687, 0.828535, 1.517782, -0.308071, 1.303685, -1.689624, -1.065987, -1.741522, -0.897759, -1.484677, 0.306969, 0.512068, 0.467876, -1.774692, 1.742781, -0.482540, -0.769283, -0.361696, -0.446929, -0.018232, -0.818328, -0.384064, 0.238841, 1.017175, 0.797651, 0.862126, -2.394478, -0.685041, 1.141945, -1.219869, 0.749380, 1.208255, -2.420062, 0.082417, -0.605711, -1.090430, -0.634442, 0.291487, 0.551130, 0.146109, 0.966412, -0.377455, 1.150829, -0.249140, 0.102413, -1.299381, 0.847570, -1.151470, -1.402707, -0.280173, -0.329089, -0.632742, 0.609246, 1.443998, -1.252176, -0.142825, -0.991600, 1.400027, 0.861248, -0.296644, 0.744214, -0.754783, -0.625774, -0.463525, -1.249192, 0.158552, 1.489001, 0.334800, -0.329807, -0.135256, 1.075552, -1.358308, 0.929805, -0.376771, 0.826095, -0.954144, 0.478493, 0.585142, 0.269756, 0.157139, -0.620211, 0.310792, -0.256908, 1.776156, 1.336898, -2.289882, -0.446814, 1.089413, 1.598865, -1.099717, -0.899428, -0.107001, -0.314352, -1.160159, -0.378809, 0.466047, -0.309189, 0.615682, -2.061841, 0.157211, 0.341351, -0.894049, -0.513637, 0.988657, -1.150672, -0.489670, -1.102414, 0.056941, 0.766576, 0.763492, -0.840921, -1.135290, -0.262023, 0.935517, 0.589387, 0.312873, 1.666263, -1.146234, -2.163281, -0.942766, 0.158120, 0.307408, 0.262979, 0.047560, -0.015414, -0.118879, 0.557691, -0.383128, -0.575649, -0.123407, -1.248606, 0.351627, -1.961615, -0.475022, -0.082092, 0.756998, 0.481618, -0.933765, -0.387378, -1.044283, 0.444688, -2.110740, 0.882128, -0.192984, 1.581900, -1.505186, 0.938435, 0.799770, 1.165289, 3.024083, -0.206379, -0.100118, 0.782040, -0.444366, 0.636295, -0.461406, -0.136020, -0.479741, 0.048873, 1.005753, -1.541248, 0.492095, -1.258456, -0.883361, -0.198476, 0.733936, 1.512280, 1.325008, -0.690003, 0.674963, 0.021092, 0.464440, 1.246704, 1.231883, 0.238418, -0.820233, 0.393607, -1.380600, 1.094744, -0.556734, 1.299303, 1.089489, -1.127183, 0.193055, -1.021661, -2.162528, -0.238160, 1.853278, -0.535029, 1.064245, -1.025247, 0.030453, -0.970250, -0.726249, 0.522500, 0.625467, -1.975249, 1.210737, 0.727929, 0.852778, 1.331287, -0.025068, -0.089720, 1.173838, 0.356005, 0.021698, 1.572658, -0.701724, 0.001808, 0.326351, -1.064895, 0.335627, 1.420564, -1.447721, 0.048674, 0.120460, 0.192077, -0.159222, 0.620979, -1.132691, 0.885596, -0.672108, 2.108951, 0.590129, 0.004810, 0.551644, -1.410655, -0.591229, -1.774089, -0.472742, 2.436532, 0.016593, 0.762421, -0.294313, 0.128433, 0.176181, -1.316388, 0.476815, -2.096947, -0.504716, -0.338564, -0.966901, 1.216820, 0.153871, 1.074961, 0.282674, -1.091407, 2.347421, -1.042338, -0.022819, 0.318516, 0.057826, -0.165713, 0.266254, 0.697009, -0.816301, 0.192424, 0.605237, 0.893806, -0.442881, -1.431923, 2.216052, -0.541955, 0.140457, 0.630794, 0.658994, 0.063157, 0.007512, 0.287694, 1.829861, 0.775708, -0.179263, -1.828487, 2.307510, 0.584948, -1.051735, -0.635638, 0.529219, -0.275500, -0.477878, 0.151203, 0.033712, 0.784343, 0.564970, -0.387843, -1.125990, -1.917728, 1.454181, -1.629448, 0.192831, 0.745016, 1.751915, -0.179042, -0.819542, -0.095948, -2.742397, 0.653421, 0.982961, 1.460629, -1.362661, 1.510778, 0.824519, -0.275595, 0.354997, 0.488819, 2.258819, 0.359619, -1.283820, 0.897959, -1.922831, -1.211657, -0.786508, -0.335672, -0.066206, -1.885398, 0.106196, -1.075324, -0.130771, 0.936019, 1.199241, 0.818597, -1.295691, -0.252380, -0.580393, 0.718272, -0.219422, -0.083880, 0.817375, -0.477985, 0.342383, 0.880923, -1.288045, -0.107524, -0.291669, -0.782096, 0.243727, 0.085524, -0.525933, 0.431572, -0.983014, -0.880919, -0.301686, 0.111170, -0.353627, 0.147223, 0.644625, -0.010997, 1.672121, -0.647457, 0.854281, 0.129677, 1.886402, -1.613103, 1.083120, 1.666750, -1.137492, -0.193517, 0.481021, -0.777120, -0.636568, 1.088941, 0.169902, 0.514698, 1.019902, 0.618131, -1.584765, 0.950636, 0.091505, 1.036228, 0.804537, -0.568730, 0.419557, 0.424344, 0.613427, -0.565812, -0.561972, -0.450024, -0.150461, -2.487002, -0.772121, -0.789989, -0.601415, 1.164385, -0.989414, 0.172397, -1.331528, -0.946586, 0.646704, 0.481265, -1.474057, 1.019306, -0.378230, 0.152290, 1.763388, -1.424848, 1.907498, -3.040169, 1.664067, 0.629568, 0.703467, -0.895947, 0.097275, -0.199917, -0.108095, -0.778527, -1.699217, 1.018501, 0.375550, 1.372404, -1.116008, -1.420740, -0.423042, 0.221206, -0.534473, 1.665612, 0.037007, -1.744174, -0.168484, -1.889772, -0.253912, -0.865062, 1.123276, -0.171041, -0.557752, -0.544259, 2.175464, -0.924443, -0.868644, -0.204754, -0.421062, 0.173582, 0.311574, -0.250844, -1.658209, -1.277540, -1.286674, 0.520298, 1.740611, -0.238448, -1.193111, 0.238622, 1.807017, 0.273297, -1.451350, 0.320300, 0.034210, 0.409694, -0.019713, -0.729223, 1.203844, -1.094943, -0.065545, 0.478520, -1.504856, 0.309317, 1.420546, -0.193712, 0.880712, 1.616937, -0.234721, -0.619091, 1.839139, 1.640983, -0.153224, 0.299766, -0.196582, 0.604506, -1.481387, -1.129494, 1.480800, 0.483069, -0.181322, 0.633865, 0.468024, -1.259344, -0.772260, -0.090819, 0.045058, 1.221004, 0.309356, -0.795301, -0.322054, -0.747134, 0.942645, -0.855732, 0.571040, 0.418151, -0.311619, 1.451395, -1.253479, -0.816530, -0.844545, 0.465934, 0.142660, -1.574321, -0.607416, -0.865954, -1.985933, -0.357751, -2.003364, -0.165155, 2.120625, 0.424884, 1.625462, -0.635548, -0.828839, 0.962227, -0.458569, -0.263883, -0.003447, -0.811828, 1.466801, -0.861442, 1.817312, 0.763435, -0.077283, 1.171337, 1.852980, -0.825663, 0.380816, -0.763107, -1.273469, 0.050053, 1.128880, -0.529200, -0.491573, 0.518026, -3.078030, 1.453127, 0.168322, -1.354980, 0.054666, -0.483361, 0.086041, -1.201428, 0.910132, 1.136404, -0.822585, 0.583446, -1.146909, 1.098380, 0.492739, -1.194805, -1.016227, -0.906808, -0.923640, 0.064073, -0.993246, 0.267169, -2.204418, 0.137569, -0.545028, -0.088738, 1.513250, 0.174449, 0.795486, 0.742522, -0.746636, 0.508116, -0.132021, 1.098349, -0.252487, -0.686360, 0.895944, -2.132263, -0.394777, 0.741522, -1.430188, -0.150352, -0.534067, -1.836780, -0.145386, -1.950096, 0.612955, -0.126225, -1.251469, 0.652834, -2.065746, 0.217627, -1.366868, -1.038746, 0.078324, 0.008992, -0.592714, 0.004255, -0.615789, -0.054335, 1.936118, -1.043879, -0.680675, -1.986930, 0.177496, -0.491806, -1.685774, 1.324623, 2.353280, -0.011818, -2.221364, -0.197860, 0.934152, 1.032305, -1.041719, 1.736700, -0.724483, 0.039847, -1.148865, 0.377469, 0.367587, -1.228222, 0.845540, -0.122739, 0.534080, 0.826322, -1.324016, -0.306079, -0.528325, -0.233354, 1.066766, 0.501423, 1.135994, 0.214983, 1.068522, 0.537713, -0.859421, -0.100945, 0.367885, 0.100765, -0.446465, 0.467550, 0.195550, -0.795318, 0.723142, 1.315103, 0.113011, -0.803484, -1.844653, 1.593148, -0.679890, 0.633723, -0.651584, 2.387120, -0.559977, 1.153716, -0.117818, -1.709053, 0.537448, 1.140011, 0.388794, -0.586205, -0.652244, 0.582954, 0.572474, -0.486873, 0.469235, -0.835635, 1.059082, 1.087970, -0.869034, 0.550068, -1.201545, 1.172184, -1.311114, -1.168822, -0.854887, -0.988639, 0.652909, -2.012884, 2.881532, 0.385573, 1.328973, -0.406575, 0.357078, 1.203155, 2.004030, 0.168714, -0.185673, -0.900449, 0.198355, -0.666205, 0.589277, 0.590101, 1.282242, -0.965786, 1.271261, -1.952521, 1.558415, -1.673966, -0.533179, 0.121260, -2.861208, 0.223961, 0.209302, -1.273812, -2.248562, -1.150613, 0.657367, 3.058783, -1.890622, 1.149055, -0.726599, 2.517329, -0.804355, -1.732042, -0.665235, -1.699141, -0.006095, -1.908328, 0.113505, -0.279544, -0.390446, -1.757928, 0.572983, 1.184147, -0.133289, 0.097485, -0.538614, 0.174600, 0.167428, 0.201676, -0.526435, -2.325884, -1.249860, 1.076213, 0.046791, 1.713099, 2.231667, 0.122428, -0.492444, 0.103533, 1.546822, -0.242880, 1.092226, -0.194675, -0.230519, -0.396828, 0.395040, -2.256280, 2.101752, -1.612372, -1.471967, 0.567622, -0.362724, -0.822732, 0.051362, 0.232761, -1.345580, -1.438230}, - { -0.310151, -1.641493, -1.683665, -1.581617, -1.556019, -0.116435, -1.287109, -0.966370, -0.089292, -0.211547, 1.763310, 0.579855, -1.045628, 0.436643, 0.261845, 0.733646, -0.396500, -0.378268, 0.603173, -0.280098, 0.924935, -4.027768, 0.153613, -1.119465, -2.695040, 0.877621, -0.015011, 0.379179, -0.697479, 2.227116, 0.843324, -2.411422, 1.100514, -0.646175, -0.407407, 0.774470, -0.059263, 0.068859, 0.807068, -1.031870, -2.000034, -0.105345, -0.559362, -0.083196, -0.427561, -0.935833, -1.558999, -0.303375, -1.066436, -0.134515, 0.720490, -0.393071, -0.245085, 1.327125, -0.220163, 1.293344, 0.650545, 0.319051, -0.240703, -0.727662, -0.031034, 0.061075, -0.110715, -1.196082, 0.593898, 0.346634, 0.876513, -0.117547, -2.411158, 0.597994, 1.512122, -0.912695, 1.315173, -0.781762, 0.978962, 0.268485, -0.372545, 0.076102, -0.866315, 0.589567, 0.888052, 1.358490, -1.514236, 0.230478, 1.034699, 0.546458, 0.358096, -2.007857, -1.543755, -0.772075, 0.052994, -0.933745, 1.866748, -0.558237, -1.004363, -1.252712, 0.315357, -0.203742, 0.345551, -0.349825, 1.221299, 0.301064, 0.390154, 0.019005, 1.667327, -0.377088, -0.297350, -0.162071, -0.491520, -0.870485, 0.703710, -0.439612, 1.075361, -0.748508, 0.315140, -2.672870, -0.294738, -0.310354, 1.946445, 0.253400, -0.375124, 1.511451, 0.686464, 0.911366, 0.194062, -0.458325, -0.196889, -1.567737, -1.187004, -0.275806, 1.240922, -0.791952, 0.950935, -0.873036, 0.328712, 0.308279, -0.582859, -0.854740, 0.950263, -0.151132, -1.356655, 1.183778, 0.756249, -0.154072, 0.190848, -0.870682, 1.205910, -0.332975, -0.005420, 0.610894, 1.967734, -0.371011, -0.502420, 0.905882, -0.475590, 0.275417, 1.430607, 1.296125, -0.067216, 1.404206, -0.383606, -0.569027, 0.193384, -0.510845, 0.203063, 0.571223, -1.494977, -0.609065, -0.087508, 0.493762, -0.042944, 0.731347, -0.927992, -1.050806, -0.152273, -0.121183, 1.115768, -0.292373, -0.725986, 0.748516, -0.569663, -0.390570, -0.300701, 1.460526, 0.147317, -0.035903, 0.984443, -0.143064, 0.380947, 0.498990, 1.140561, 0.255050, -1.428924, -0.580013, -1.232750, 0.225186, -1.279091, -1.844107, 0.519803, -0.271412, -0.793659, 1.333586, 0.676960, -0.887825, -0.287264, -0.407759, 0.565029, 0.834353, 0.070054, -0.105081, 2.022605, -1.062835, -0.273014, -0.825507, 0.485221, -0.128918, 0.569196, -0.073302, -0.614044, -0.231966, 1.473376, 1.065993, 0.120870, 0.340169, 0.551432, -1.128610, 1.066085, 1.443780, -0.081021, 0.627802, 0.627782, 0.698831, 0.410732, 0.737487, 1.662959, -0.625680, 0.769234, -0.871365, 0.155800, 0.334328, 1.124731, -1.542722, -1.143543, 0.054246, 0.932913, 0.838537, -0.614754, 1.241706, -0.848885, -1.055196, 1.483312, -1.149844, -1.305572, 0.203506, 1.807135, -0.227899, -1.209714, -0.097224, -1.331722, -0.123500, -0.204608, -1.271745, -0.573085, -0.325283, -1.784665, 1.137962, 1.286999, -0.635914, 0.011226, 1.555348, 1.911332, -0.388874, -0.789669, 0.344745, 1.082035, -0.172750, -1.410603, -1.313485, -1.390669, 0.511204, -0.260211, -0.386496, 0.206977, -0.975190, 0.584153, -0.695019, 0.594575, -0.596553, -0.136340, -0.153377, -0.994783, 0.907626, -0.642956, -2.737844, -0.656160, 1.322876, 0.403209, 0.367092, -0.727361, -0.079238, 0.616475, 0.482636, -0.492358, -0.670880, -1.324560, 1.606926, -0.481022, -0.234074, -0.603051, -1.673742, 0.896434, -2.246106, -1.000184, -0.468452, -0.965423, -0.821975, -1.904006, -0.878640, 2.397516, -0.990474, 0.514271, 0.091049, 0.446070, -0.521314, 1.093349, -1.001414, -0.954734, 0.370627, 1.362720, -0.669483, 0.300900, 1.034795, -0.198767, 1.066936, -1.675233, -0.109229, -0.685550, 1.011421, -1.617687, 0.572178, 0.140233, -0.134989, -1.772660, 0.681099, -1.634689, -1.012262, -1.148095, 0.529883, -0.407684, 1.062071, -0.113872, 1.945737, -0.575557, -0.264226, -0.020241, -0.602449, 1.246558, -1.544465, -0.512249, -1.066577, 0.093703, 1.682195, -1.705918, 0.580953, 0.196687, -0.540479, 0.122659, -1.501659, 1.405684, -0.613692, -1.392747, -0.131502, 0.691649, 0.472306, 1.002877, -1.098071, 2.402353, 1.660777, -2.961617, -0.357633, -1.701014, -0.183279, -0.408472, 0.051728, 0.533615, 0.009234, -0.010222, -1.194633, 0.321439, -0.278805, -0.181466, 0.744299, 0.351215, -1.382850, -0.161837, -1.342715, -0.574785, 0.010487, -0.449983, 0.385413, 0.600294, 1.524382, -0.397665, -0.597690, 0.940345, 1.160229, -1.168342, 0.253787, 0.030955, -0.611624, -0.120345, 1.550938, -1.101529, 0.081941, 0.441206, -1.908851, 0.581606, -0.956610, 0.397061, 0.554236, 0.633761, 0.602822, -0.515505, 0.028329, -1.087766, -1.004993, 0.332241, -0.362820, -0.880724, 1.039595, 0.694672, -0.564924, -1.217957, -0.491260, 0.291386, -0.519124, -0.206957, 0.570894, -0.550539, 0.325174, -0.116496, 1.018754, -0.119980, -0.422186, -0.911080, -1.127013, 0.557183, -0.741349, 0.417320, -1.845168, -0.476819, -0.428370, 0.908760, 0.309934, -0.175018, -2.417913, -0.181377, -0.118255, -0.828087, 0.033081, -0.891520, -0.734479, -0.881171, 0.197650, -1.576140, -0.103693, -0.046928, -0.889378, 1.213214, -2.124298, 1.053849, 2.803650, -1.182848, 2.114977, -0.897833, 0.737297, 1.267197, 1.323833, 1.463259, -0.261870, 0.221097, 1.595391, -0.131520, 0.568046, -0.790963, -0.822192, -0.835176, 1.614148, 1.067247, 1.303380, 2.334189, -1.938402, -0.778444, -1.239119, 0.720032, -1.162438, -1.092555, -0.763218, 0.525978, -1.553559, -1.526637, -0.095601, 1.053814, 0.441394, -1.123411, -0.164210, -0.486548, 1.166285, 0.288927, 0.407736, -0.051392, 1.205685, -0.443430, -2.251801, 0.139248, -1.504257, -0.583445, -1.534388, -0.230572, -0.196783, -3.209231, 0.612040, -0.200021, 0.677319, -0.774423, -1.594781, 0.500904, 1.427571, -0.002244, -1.288796, 1.020730, -1.391180, 0.816931, -0.563466, -0.890417, 0.087841, -1.058150, -0.094071, -1.714016, 0.705109, -1.059075, -0.520994, 0.684637, -0.679719, 0.969776, -1.003722, -0.196672, 0.472371, -0.340139, -0.212567, 1.521100, -0.479488, -2.244764, 1.353559, 0.211539, -0.911525, -0.291194, -1.369187, -0.255942, 0.014644, 0.206609, -0.447558, 0.179153, -0.600172, 1.487605, -0.046165, 0.633974, 0.741361, -1.266746, 0.669063, -0.465436, 0.950921, -1.228601, -0.463809, -0.464304, 0.499068, -0.201404, -0.748462, 1.770598, -0.281201, -1.431788, 0.258918, 1.616739, -0.327229, -1.762581, 0.756684, -1.270479, -0.703220, -1.431333, 0.156219, 0.233116, -0.581765, 1.769609, 0.135386, -0.524163, -1.748615, 0.760809, -0.687220, -1.236011, -1.140508, 0.511009, -0.152677, 0.681075, 0.221346, -0.565020, -0.662267, 1.448199, 0.579600, -0.859085, 0.641966, -0.329431, -0.033679, 0.855319, 1.574513, -1.373427, -0.222315, 0.279325, 0.810730, -0.596319, 1.562196, 1.070140, -0.071247, -1.385282, -0.776424, -0.929720, -0.240324, 0.572532, 0.566468, 1.043381, -0.766918, -0.433388, -0.824041, 0.105005, -0.426479, -0.476288, -1.379433, 0.328408, 1.025340, 0.545463, -0.760219, -1.181240, 0.977242, 0.409170, -0.423137, -0.059377, -2.025424, 1.280215, 1.248784, 1.458418, -0.662637, 1.229671, 0.638619, 0.098351, -0.059211, 0.464381, 0.865670, 0.388890, 3.230340, 0.875133, -0.109925, -0.147007, 0.396882, 0.413388, -0.135330, 0.067621, -0.748232, 1.022368, -0.002326, 0.176242, 0.983975, 0.444501, 1.375921, -0.176766, -1.201070, 0.002097, 2.248635, 0.647923, -0.196902, -0.902357, -0.887038, 2.005423, 1.208699, 2.898546, 1.236021, -0.581685, 0.278169, -0.581965, 0.241766, -1.703681, 0.929086, -0.256205, -0.402781, -0.078960, -1.494719, -0.304907, 0.689507, -0.104299, -0.444205, -0.519252, 1.121699, -0.574500, -0.247439, -0.355541, -0.130872, -1.393619, 0.165875, 1.164973, 0.252271, -1.702936, -1.327904, -0.471345, 0.094060, -0.379685, -0.119167, 1.536727, 0.232353, 1.401327, -0.345654, -0.551768, 0.286880, 0.977198, -1.085671, -0.335262, 1.388834, 0.309359, 1.463658, 1.031883, -0.103777, 0.957895, 1.358527, -0.307526, 1.054264, -1.478447, -0.711435, 0.451137, -2.019896, -0.811723, -0.208723, 0.734780, -1.706889, 0.079485, -0.111662, -0.434619, -2.141463, -0.024723, -0.239503, -0.872730, -0.017037, -0.112162, 0.268361, -1.524560, -0.170977, -0.917587, 0.645516, 0.984182, -0.223178, 0.524829, 0.299534, 0.217136, -0.910675, 0.668189, -0.803499, -0.349058, -0.367616, -2.212027, -1.494074, 0.202834, 1.204517, 0.505635, 0.453109, 0.371346, 1.300557, -0.529976, 0.190081, 0.938478, -1.940067, -1.391734, -1.617529, 0.928458, 0.054658, 0.335628, 0.001279, -0.244629, -0.038825, 0.448149, 0.269513, -2.270245, 0.082001, -0.426183, 1.473616, 1.191829, -0.364693, 0.973891, -0.233262, -0.507476, 0.299866, -0.863028, -0.660551, -0.239455, -1.072409, -1.834458, -0.497106, -0.513471, -0.566059, -0.792595, -0.508657, -1.449835, 0.116803, -0.717022, 0.890431, 0.889788, -0.350094, 0.986653, 0.015442, -0.956295, 0.226685, -0.740512, 0.413079, 0.860112, 1.236905, -0.630845, -0.931731, -0.147487, -1.422998, 0.402559, 0.579921, 1.271513, -0.963529, -1.024402, -1.439640, -0.393807, 0.467550, 0.797238, 0.108384, -0.390986, -0.262875, 0.654479, 0.856139, 0.232487, 0.767878, 0.924483, -0.531363, -0.740987, 1.066798, -0.561043, 0.740392, -0.566895, -0.363379, 0.247682, 0.644484, -0.344641, -0.804242, 2.148025, 0.217033, -0.153000, 0.950998, 0.551147, -0.610186, -0.177180, 0.909568, -0.343768, -0.670508, 0.718671, 0.490303, 0.170217, -1.490391, 0.593561, 0.436733, 0.499217, -0.836626, -1.197528, -0.588773, -0.597544, -1.802702, -0.029295, 1.081923, 1.588356, -1.588753, 0.240571, -0.445431, -0.046116, 0.271433, -0.131587, 0.806012, -1.463762, -1.134691, -1.386343, 0.810560, 1.020875, 0.007190, -1.056850, -1.568949, -0.059256, -2.179584, -0.483692, -0.217182, 0.328203, -0.684399, -1.970007, -0.324724, 1.307183, -0.140845, 0.203176, -0.111262, -0.023455, -0.020441, 0.917440, -2.455155, -0.914688, 0.817847, 0.435525, 0.174985, 0.438944, 0.485137, -0.186118, 0.160377, 0.081294, 0.406003, -1.665644, 0.999643, 0.631962, 0.812076, 0.630455, -0.253524, 0.227897, -0.598656, -2.095248, -0.657193, 1.101583, 1.349289, -1.815911, -1.092206, -1.926853, -1.295744, -0.099835, 0.048909, -0.184993, -1.185609, -0.301085, 0.379236, -0.124415, 0.555805, -0.304434, 0.109467, -0.333628, -0.686461, 0.869904, -0.703766, -0.489518, -0.139309, 0.016252, 1.215338, 1.332435, -0.714926, -0.623521, 2.100325, 0.958336, 0.597919, 0.285964, -0.302350, 1.134882, 1.264198, 0.058059, -2.245315, -0.982188, 1.426329, -0.930261, 0.427298, 1.099799, 1.612976, -0.998279, -0.119997, 1.255413, -0.428746, -1.137348, -0.043879, 0.215420, 1.824946, 0.303328, 2.110681, 0.408459, 0.002890, 0.439512, 0.879812, -0.590043, 0.799313, -2.001028, -0.679687, 0.110229, 0.030804, -0.598085, 0.963913, -0.205722, -0.528403, 2.269712, -0.631607, 0.389748, -0.046796, 0.974459, 0.153934, -0.382556, 0.152428, -0.859834, -2.198076, 0.212276, -0.108004, 0.895122, -0.748592, -1.785119, -1.272737, 1.385509, -1.542201, -0.282588, 1.646902, 0.394683, -0.345625, 1.255681, -1.489733, 1.278147, 1.789601, -0.116686, 0.276218, -0.576014, 0.480398, 0.564563, 0.090023, 0.342563, -0.659904, 0.646081, -1.617043, -0.127928, -0.179244, -1.258273, -0.339893, 1.884799, -0.314919, -0.647343, -0.675543, -1.846914, -0.205921, -1.041431, -1.602912, -1.013722, 0.202905, -0.427558, 0.480325, -0.265356, 0.691178, -0.841844, 0.595422, 0.257490, -0.211061, 0.443674, 2.164342, -0.964128, -0.610492, -0.394115, -1.044007, -0.702231, 0.163212, -1.083503, -1.427791, -0.544006, 1.351743, 0.023961, -0.858073, 0.405021, 0.203585, 0.399556, 1.308953, 0.370530, 0.778679, -2.003744, -0.490781, -1.137240, -1.093967, -2.007708, 1.014723, -0.303606, -0.950006, 0.086146, -0.619831, 0.055449, -0.339410, 1.257595, 0.448026, 1.419038, 0.202594, 0.487320, 0.948779, 1.788145, 0.305789, -0.121315, -0.575190, -2.008777, 2.231899, 1.415720, -0.520328, 0.408420, -0.876427, -0.047159, -0.251633, -2.315549, 0.443662, 0.022653, -0.051200, -1.455249, -0.305578, 0.704665, 0.218667, 0.036960, 0.606606, 2.255737, -1.572563, -0.415935, 1.001221, 0.188568, -0.723376, 0.173396, -0.801289, -0.139955, 0.606574, 0.606333, -0.918415, 0.084749, -0.771950, 0.878474, -0.113157, -0.679438, 1.498421, -1.075501, 1.023144, -1.234719, 0.980799, 0.164045, 0.414859, 0.551970, 0.128727, 0.115802, -1.212982, 0.473085, 1.188062, -0.302362, 1.039614, -0.717064, 2.174548, -0.139021, -0.889077, 0.364911, -1.019333, -2.179367, -0.236315, -0.606734, -0.880041, -0.038874, 0.246082, -0.049309, -0.309367, 0.353062, -0.950315, 0.832331, -0.796088, -1.044570, 0.893077, 0.854818, 0.134419, -0.399943, -0.396154, 1.005236, -0.042738, 0.848694, -0.055694, 0.132425, -0.350843, 0.821841, 0.610316, -0.282661, -0.292886, 1.793833, -0.577801, -1.402546, 0.994330, -0.449941, 1.533199, 2.157122, -0.170263, 1.691110, 0.809207, 0.837475, 0.404157, 1.172644, -0.856839, -1.302981, 0.553534, 0.435473, 0.555584, 0.251128, 0.363303, 0.183690, 2.546469, -1.365064, -0.993427, 0.446809, -0.209524, 0.027349, -0.677232, 1.718123, 0.093526, 1.223074, 0.003940, 1.341304, 0.256256, 0.453635, -0.477263, -0.257878, -1.252648, 0.124172, -0.648575, -2.087541, -1.018370, -0.079769, -1.798382, -0.206057, -0.289375, -0.256719, -0.677412, 0.144033, -0.336674, 0.246354, 0.450361, -0.417430, -0.420206, -0.502874, -0.308524, 0.887787, -1.253018, 0.705646, 2.798658, 0.810133, 0.615424, -0.945940, -0.108846, 0.602770, -0.242829, 0.494183, -0.723774, 2.298913, -2.140609, 0.167969, 1.731453, 0.798705, 0.833450, -1.081802, 0.896913, -0.553075, 1.281635, -0.463550, 0.603082, 1.334096, -1.198750, -0.549820, 0.260556, -0.860542, -0.797400, -0.277765, -1.915504, 0.825628, 0.337622, -0.351585, 2.237904, -0.241973, 0.053173, 1.222113, 1.083499, -0.415134, -0.947996, -0.465939, -1.502165, -0.053548, 1.496980, -0.656529, -0.149603, 0.605857, -1.023077, -0.573270, -1.280582, -0.557406, -0.146291, -0.038841, -0.216691, -1.577769, -0.196704, -0.904112, 0.584148, 0.649687, 1.968806, 0.288819, -0.525708, -2.805209, 0.901529, -0.523971, -0.051543, -0.480624, 0.665921, -0.524600, 0.417170, 1.019296, 1.705064, 0.449199, 1.202385, 0.200063, 0.587563, 0.707577, -0.194253, 0.411877, 0.459522, -0.976448, -0.492446, -0.119110, 0.999352, -1.018420, 1.033762, -1.123915, 0.072348, -1.551234, 0.032980, 0.013613, 0.279831, 0.575874, -0.552735, 0.992108, -0.338639, 1.669724, -0.205140, -1.432228, -0.213240, -0.203441, 1.256557, 0.381836, 1.317111, -1.252723, 0.605235, -2.336290, 0.450344, 2.135969, 1.632366, -0.703203, -0.103031, -1.083230, 0.324939, 1.380566, 1.518380, -1.286865, -0.396283, -0.686912, 0.043801, -0.171330, -2.167181, 0.106603, -0.073512, -0.709928, 0.496409, -1.606301, -0.082459, -0.522890, -0.258991, -1.465826, 0.285836, -1.252133, 1.644876, 0.458423, -1.120672, 0.495272, 0.860859, -0.862916, 0.493858, 0.231052, 0.333055, 1.078423, -0.430531, -0.426262, 0.739665, -0.051367, -1.536554, -2.138158, 1.224571, -0.416434, 1.642096, -0.306261, 0.854513, 1.630692, 1.299029, 0.785019, -0.128641, 0.878071, -0.430557, -0.661864, -0.463054, 1.450376, -0.778230, -1.100004, -0.691200, 0.060367, 0.433526, -0.314556, -0.895461, 0.902982, 0.694510, 1.841522, -1.441770, 2.002311, -0.209057, -2.192071, -0.295782, -1.235335, -0.570194, -0.187680, -0.538743, -0.314282, -0.969063, -1.213279, -0.702292, -0.595821, 1.987409, 1.436946, -0.236897, -0.621210, -1.929375, 2.243590, -0.180490, 0.905122, -0.272006, 0.724476, 0.881353, -0.497596, -1.092774, 2.150041, -0.723889, 0.332220, -0.146065, 0.921359, -0.250293, -2.020249, 1.197382, 0.100955, -0.347675, -0.356890, 0.779672, 0.722382, -0.478699, -0.109197, -0.533204, -0.881675, 0.214805, 0.433422, 1.055058, -0.148328, 0.662964, -0.307062, 0.303768, 0.113056, -0.678854, 0.960057, -0.684778, -0.601479, 0.642987, -1.016820, 0.919149, 0.027752, 0.040127, -0.400100, -1.700941, 0.327812, -0.960601, 0.066818, -0.868953, -1.226377, 0.813049, -0.125870, 2.407048, 1.660116, 0.307024, -2.974072, 0.016078, -0.598350, 1.093386, -0.557983, -0.474581, -0.268793, -0.941962, -0.546879, 0.344974, -0.937501, 1.950975, -0.916045, 1.245198, 1.504125, -0.189757, 0.745054, 0.063587, -0.765522, -0.779060, -0.765481, 0.371388, -0.232414, 0.734661, 0.484605, 0.923389, 0.946756, 0.767741, -1.552785, 0.247190, -0.942871, -1.426758, 0.105174, 0.583194, 0.342345, -1.668015, 1.322648, -0.543859, -0.592447, 0.177456, -0.965898, -0.375638, 0.884468, 0.064959, 2.742650, 1.124398, -1.718729, -1.031690, 1.620995, 0.535332, -1.034079, -0.745892, -1.957268, 0.361841, 0.504717, -0.255257, -0.819853, 0.548913, -0.088541, -0.107280, 1.124136, -0.366217, 0.764901, -0.439781, -1.687703, -0.359027, 0.056989, -0.652481, -2.371082, -2.023236, -1.138334, 1.095922, -1.061795, -0.077270, 1.112138, -1.757375, 1.879672, 1.005198, -0.003898, -0.302811, -0.362128, -2.424897, -0.204675, 0.369157, 2.291474, 0.279842, -2.648222, 0.281477, -0.292614, -0.609326, -1.584215, -0.577252, -1.414526, 0.234824, -2.030697, -0.261067, -0.611428, 0.965207, -0.134344, 0.678341, 0.343700, 0.483760, 2.277985, 0.248091, 0.068842, 0.847192, -0.021343, 0.010816, -1.063793, -0.157371, 0.213674, -0.644417, -0.411241, 0.025639, 0.384020, -0.868608, -0.505267, -0.448896, 1.591835, 0.448985, 0.122964, 1.176225, 0.308975, -0.051793, -2.101740, -0.041024, -0.466685, -1.528628, -0.939093, -2.123558, -0.087205, 0.301431, 0.302289, 0.648901, -0.455770, 1.454976, -0.026293, -0.110300, -1.185548, 0.162560, 0.340710, 1.294543, -0.749508, 1.169249, 0.424025, 0.271612, -0.059737, -0.589331, -0.020771, 0.730268, -0.882745, -0.287966, 0.154120, 1.157551, 0.922601, 0.579842, 0.089463, 1.590788, -1.666092, 0.727716, 0.414143, -1.515764, -0.551236, -1.228522, -0.151851, -1.213655, -0.435873, 0.242595, 0.088702, -0.689951, -1.055395, 1.238220, 0.127997, 0.965761, -0.283036, 0.147813, 1.754206, 0.405498, -1.992561, 1.762365, -1.084132, -1.073596, -1.878363, -0.839287, -1.099495, 2.436202, -1.300402, -0.064908, 0.098924, -0.151576, -0.415735, -0.261413, -0.575746, 0.343917, -0.979946, 1.461867, 0.279795, -0.053731, -0.700137, 1.116902, 0.445720, 0.519343, 1.301252, -0.824556, 0.290675, 0.471464, -1.664197, -0.587274, 1.773432, 0.076869, -0.478612, -0.997378, -0.608230, -1.146604, 0.612330, 0.587869, -0.467863, -0.830914, -0.434591, 0.823486, -0.307968, 0.803833, 0.356400, 0.119798, 0.994389, 1.646933, -0.319657, -1.143077, 0.238084, 0.073254, 0.290750, -0.496784, 0.127839, -1.134333, -0.475590, 0.342793, 0.561700, 1.083739, -0.621562, 2.007190, -0.749681, 0.306245, 1.410570, -1.027610, -0.607160, 0.526426, -1.053345, -0.662391, 0.999669, -0.267399, -2.100553, -0.107248, 0.428875, 2.392276, -1.260995, 0.838607, -1.438173, -1.543364, -0.173887, 1.161157, -1.656016, 0.768624, -0.503136, 0.242731, -0.797137, 1.457012, 1.194033, -0.219754, 0.787140, -1.074659, 1.075281, 1.488120, -1.631383, -0.880727, 0.903084, 1.710677, -1.608465, -2.258219, -0.760839, -1.488068, -1.009893, 0.316453, 0.247425, -0.436649, 0.594081, 1.520355, 0.365858, 0.479449, 0.396479, -0.317011, -1.829359, -0.861024, 0.389624, -2.236999, -0.998257, -0.436500, -0.646010, 0.255605, -0.108665, -2.391119, -0.715518, -0.306217, -0.129100, -0.773214, 0.124885, 0.053684, -1.027598, -0.439747, 0.971525, -0.586588, -0.654349, -0.224725, 0.881898, -0.926858, 0.036545, 0.577139, 0.646965, -0.760576, 1.764605, 1.315793, -1.383656, -1.295657, 0.567028, 1.313968, 2.156826, 0.622794, -0.577323, 0.966672, -0.162567, -0.166342, 1.071267, 1.346142, 0.631020, -0.446261, -1.328898, 0.313343, -0.147901, -0.841389, 0.222595, -1.015563, -0.361185, -0.544159, -0.780957, -0.306144, 1.295227, -0.198116, 0.595291, 2.193578, 1.139577, -0.948389, 0.779828, -0.104870, 1.307266, -1.220165, 1.471168, 0.529367, 0.376907, 0.104109, -0.652195, 0.989544, -0.643177, -0.699260, 0.071478, -1.316203, -0.715383, 0.034564, -0.225686, -0.417212, -0.932655, -1.355596, -0.543498, 0.549977, 0.665187, -1.051346, -0.024952, -1.021750, 0.908657, 0.396883, -0.666521, -0.919344, -0.933225, -1.349254, 1.280828, 0.300822, 1.487108, 0.073654, 0.798379, 1.840953, 0.096050, 0.251136, 0.426554, 0.075867, 0.818025, -0.702888, -1.547570, -0.297522, -1.040091, -0.622535, -0.548506, -1.736907, 0.281682, 1.684424, 0.412191, 0.257385, -0.985927, 1.380737, -0.621087, 1.157389, -0.921362, -0.752636, -0.214531, 1.910784, -1.778952, 0.945402, -0.432019, 0.984830, -0.943382, 1.006706, 1.012294, 0.261448, -0.510279, 0.201624, -1.683555, 0.890802, -0.211688, 1.077732, -0.639263, -1.678163, 1.711292, -0.100516, 1.304589, 0.604852, -0.365599, -0.010730, -0.952301, 0.107426, -0.070798, -1.157372, 1.055539, -0.391167, 0.345501, -0.060577, -0.913950, -1.936471, -1.686686, -1.226831, -0.343731, 0.042320, -0.698214, -0.471303, -0.060837, -0.004004, -0.807956, -0.639474, -1.626745, -0.777022, -0.167135, -0.716723, 0.211603, 0.701444, -0.079420, 0.765703, 0.172018, 0.487554, 2.338663, 0.204641, -0.628556, -0.908164, -1.524089, 0.895699, -3.181342, 1.838353, 0.941070, -0.181201, -0.077085, -0.037133, -0.745765, -0.341597, 0.358737, -0.607055, -0.960976, 0.341276, -1.718026, 0.507012, -0.185008, 0.496628, -0.115866, 0.254557, 0.858412, 0.452447, 0.068163, -0.948059, -0.867992, -0.294745, -0.171641, 1.307509, -0.536352, 1.572355, -1.285495, -1.583022, 0.609885, -0.545417, -0.567351, 0.017278, -0.472687, -0.539322, -0.738005, -0.040125, 0.238187, 0.225476, 0.195657, -1.121244, 0.524517, 0.867339, -1.223749, 1.100164, 0.192512, -0.424814, 0.213192, -0.726144, 0.057377, -2.277452, 1.454617, -0.431642, 0.968204, 0.286864, -0.864763, -1.835117, 1.137366, 0.855414, -0.805245, -0.415130, -1.920147, 0.101846, 0.071377, -0.995996, 0.113731, 1.397568, -0.154424, -0.559770, 0.017713, 1.083274, -0.217913, -1.286497, -2.510026, 0.198235, 0.440841, -0.588075, 0.286140, -0.129562, -0.532723, -1.131228, -1.967916, -0.562502, -0.595027, 0.692927, 1.506119, 0.927660, -1.429361, -0.352394, 0.063303, 1.241069, 0.821308, 0.580679, 0.342259, 2.192977, -0.061027, -1.330248, 0.371904, -0.709655, 0.258159, 0.435750, 0.059419, -1.496021, -1.258572, -0.884779, -1.229493, 1.417518, 0.922647, -1.193793, -0.556581, -2.006065, -0.915661, -0.080225, -1.148947, -0.587301, -0.902605, 0.946050, 0.233480, -0.090540, 0.440161, 2.058893, 0.516855, 0.627407, 0.361430, 0.745026, -0.914920, 1.360206, 0.516031, -1.467430, 1.161816, 1.197780, -2.351098, -0.139326, 1.524526, 0.923400, 0.489121, -0.993048, -1.734001, 0.945297, 1.220334, 0.331749, 1.684402, -0.353123, 0.175850, 0.168414, -0.172173, -0.998616, -0.875388, -1.447039, -0.846360, -1.000666, 0.415238, 0.615538, -0.618100, 1.020172, 0.565845, -0.592145, -1.146130, -1.457018, 1.207882, 1.496605, -0.849828, 0.508080, 0.003622, 0.328261, -0.701423, -2.800366, -0.183583, 0.355335, 0.481280, 0.507019, -0.085662, -0.721476, 0.699493, -0.177184, 0.195426, 1.372931, 0.829205, -1.648045, -0.080820, 0.233745, 1.047875, 1.427457, -0.909939, 0.744946, 0.475579, 0.333252, -0.263291, 1.990240, -1.365667, 0.917134, 0.441225, 0.673682, -0.916110, 0.405118, -0.474774, 1.917762, -0.697735, -0.036623, -0.980998, 0.263049, 1.467996, -0.034055, 0.349727, 0.678725, 0.158301, 0.803709, -0.507814, -0.038403, 0.307919, 0.857095, -0.097496, 0.924752, 0.025445, -1.237824, -0.214348, -0.027085, -1.736331, -1.239600, 0.248293, 0.509233, -0.386509, -1.181276, -0.152069, 1.553040, 0.696582, 0.525683, 1.597154, 1.901917, 0.805370, -0.698043, 0.649477, 0.602392, -0.016678, 1.092806, -1.774571, -1.435562, 1.890936, 0.086065, -0.924814, -0.591353, -1.121881, 0.197200, 0.238419, 0.279097, -0.100666, 0.264216, -1.421075, -0.454308, -1.724634, 0.282924, 1.083129, -0.838754, 0.225976, 1.307797, 1.058809, -0.031642, 0.645758, 0.317284, 0.724163, -0.198597, -0.906990, 0.213882, -1.088142, 1.040360, 0.821178, -1.045283, 2.308885, -2.524420, 1.119177, 0.076171, 1.262248, -0.446808, -1.195896, 0.075890, -0.900165, -1.757358, -0.718774, 2.174259, -1.032000, 0.096615, 0.157903, 0.791328, 1.081137, -0.885764, -1.850947, -1.183055, -1.507301, 0.712992, 1.732668, 0.901277, 0.016435, -0.280354, 0.840882, -0.210382, 0.142032, -1.124885, 0.127261, 0.672604, -0.363000, -2.047144, -0.855219, 2.181710, 1.751058, 0.153848, 0.438194, 0.697085, 0.420518, 0.038862, -0.221947, 0.122238, 1.160154, -2.507385, 0.933318, 0.083480, -0.243918, -0.462833, -1.409920, 0.273440, -1.463539, -0.835774, 0.111227, 0.909224, 0.835322, 2.172103, -0.918187, -1.175444, 1.129680, 1.078784, -0.153537, -1.893563, -0.960224, 0.538696, -0.871992, -0.067772, 0.758162, -0.883632, -0.842116, -1.591063, 0.083256, -0.171992, -0.981999, -1.731926, -0.688443, 0.998944, 0.501271, 0.958474, -0.555670, -1.501655, -0.075017, -0.461104, 0.255650, 0.704346, -1.337912, -0.823977, -0.244628, -0.687529, -0.098329, 0.074311, -0.598204, -0.076985, -0.120871, -0.990464, 0.770631, 0.611492, 0.268503, 1.004112, -0.033537, -0.533634, -0.190868, 0.246541, 0.721708, -0.159107, 0.971243, -0.508424, 0.050478, -0.373519, -0.608556, -0.462618, 0.352636, 0.034063, -1.038757, 0.112267, 0.508388, -0.985115, -0.906600, 0.477189, 0.114287, -0.497110, 1.734062, -0.070026, 1.023882, -0.248691, 0.300448, -1.759610, 1.276085, 0.857557, -0.072614, 1.019292, 0.237518, -0.888582, 0.097059, -1.039182, 0.076510, -0.590849, -2.305364, 1.030212, 0.864798, -0.430117, -0.408832, -0.242595, -1.267063, 0.795501, -1.928859, 0.376409, 1.295978, -1.117510, 0.280895, -0.876879, 0.091945, -1.255657, 3.164684, -0.845828, -1.349402, 0.988130, -1.029804, -0.195219, 0.075179, -0.632267, 0.017759, -1.341069, 0.822836, -0.283893, -0.406789, -1.505872, 0.927258, -0.622945, -1.971337, 0.077713, -0.038158, 1.411234, -0.694144, 2.075378, -1.479411, -0.003131, 0.868766, 1.517291, 0.307990, 0.541939, 0.453360, -0.144542, -1.692116, 1.079328, -1.769774, -0.618976, 0.555567, -0.791216, -0.428293, -0.256351, 0.653905, 0.386770, 0.817421, -0.549590, 1.713343, 0.201976, -0.434063, 0.225663, -0.269358, 1.769395, 0.956612, 0.420838, -0.443193, -0.257455, -0.426874, 0.050375, -0.423207, 1.757968, 0.799518, -0.000807, -0.056956, 0.896834, 0.719281, 0.561073, -0.191542, 0.415154, -1.456944, 2.303187, 0.217195, -0.493105, -0.334977, 0.566781, 0.521812, -1.376313, 0.278076, 0.030406, 0.015732, -0.661941, 0.298692, -0.880820, 0.914317, -0.399431, 0.626608, 0.038130, 0.152455, 0.445241, -0.365663, 0.076561, 0.717730, 0.161654, -1.670412, 1.087152, -0.023482, 0.950588, -0.775232, -0.612186, -1.959710, 0.313728, 1.046517, -0.985566, -0.193551, -1.296268, 0.925013, 1.223331, -0.776702, 0.575320, -0.083190, 0.072640, 0.769301, -0.923038, -1.320054, 0.082854, -1.710474, -0.372311, -1.412019, 1.723844, 1.000924, -0.467507, -0.484589, 0.036566, 0.313383, 1.179591, 0.020684, -1.160053, 1.247307, -0.807505, 0.020688, 1.742298, 2.024711, 1.184497, -0.008964, 0.609727, 0.490184, -0.202058, 0.258400, 1.085185, 0.833418, -2.779565, 0.555570, -2.094595, -0.186561, 1.142307, -0.918973, -0.149209, 2.213779, -0.920077, -0.025114, -0.520302, -0.393919, -1.789394, 0.880283, 0.356621, -0.221776, 0.586213, 0.904796, 0.838269, -0.760575, 0.743000, -0.919198, -0.184044, 0.415012, -0.271382, -0.646863, -1.523698, 1.051963, -1.069894, -1.012604, -0.236637, 0.915695, 0.138098, -0.053403, 0.523349, -1.830911, -0.696539, -0.001436, -0.920409, 1.509446, 0.024678, 0.310692, -0.042820, -1.470886, -0.340588, 0.680679, 1.090556, -0.748067, 0.626648, -1.431427, -1.539084, -0.003610, -0.619504, 1.573656, -0.173368, -0.424501, -1.383728, -0.566086, 0.335188, -1.185907, 0.049138, -0.005151, 0.837219, 0.624121, 0.006286, 0.429383, 0.712850, 0.089235, 0.698854, 0.525458, 0.760112, 0.688253, 0.205123, 0.837281, -0.446258, -1.340193, 0.380758, 0.035583, -0.819312, -1.087095, 0.556273, 0.011733, 0.139557, -0.317590, -0.611950, -0.571309, -0.264010, 0.440053, 0.727609, -0.344671, 0.909651, -0.884586, -0.578869, -0.234492, 1.454889, 1.430487, 1.378302, 1.598956, -1.083427, -0.310009, -0.155737, 0.374251, -1.429693, 0.430718, 0.081822, 0.190631, -1.557784, 2.139986, 0.704301, -0.080527, -0.488847, -0.180615, -0.825121, 0.797745, 0.070422, -1.379337, 0.770112, -0.201300, 1.257681, -1.559767, 0.954702, 0.262251, -0.390231, -0.453681, -0.534720, -1.245797, -0.808851, -1.323062, 1.197518, -0.367002, -0.404558, -1.260693, 0.498798, -2.126786, 0.699288, 0.844992, -1.062545, 0.554952, 1.029685, 1.534529, -1.016991, 0.796071, 0.322459, -1.053258, 0.172888, 1.664207, -1.116758, 0.820305, 0.537864, -0.358862, -0.167093, 0.234392, -1.219927, 0.799502, 0.155219, -1.551043, -0.470551, 0.215138, 0.726536, 0.755432, 1.197583, 0.000180, 0.270339, 0.559760, 0.091093, -0.958068, 0.497680, 1.529384, -0.919723, -1.789068, 0.821277, 1.786879, 0.830937, 0.365744, -1.024045, 0.396144, 1.451209, -0.177993, 1.148332, -0.754967, -1.498588, 0.878133, 0.255672, -0.929071, -0.174194, -0.241098, 0.216625, -1.421072, 0.258611, -0.006258, 0.001316, -1.967351, -0.911126, 1.642749, -0.194109, 0.446810, -0.511681, -0.366206, -0.894649, -2.520897, -1.271178, -0.061469, 0.525111, -1.054646, -0.477613, -0.037780, 0.264983, -0.670012, 0.193640, 2.239022, 0.782237, 0.093453, 1.217922, -1.125239, 0.186524, -1.217536, 0.387808, 0.651438, 0.228257, 0.493827, -0.857188, -0.422560, -1.046046, 1.994965, 0.955670, 0.277036, -1.562797, 0.263950, 0.649883, -0.358410, 0.036053, -0.464641, -1.852338, -0.067981, -0.286028, -1.326705, 1.640515, -0.624299, -0.191637, -2.227155, 0.815211, -0.207173, -1.084288, 0.814027, 0.043674, -0.340180, -0.587977, -1.414120, 0.365860, 2.202248, -1.857453, 0.345494, -1.445607, 0.042674, 0.928611, -0.789138, -0.041123, -0.806838, 0.408333, 0.711270, -1.676877, 1.006731, -0.741377, 1.658223, 0.589143, -1.066477, 0.018940, -0.587039, -0.708912, 0.363412, -0.062402, -0.180554, 0.908121, -0.222007, 0.698433, -1.838004, 2.588210, -0.701208, -3.094547, 0.113705, 0.340981, 0.351077, -1.757313, 0.042251, -0.747120, -0.598821, -0.767167, -0.981324, -0.265951, -1.473342, -0.744741, 1.115091, 1.427784, 1.449736, -0.561037, 0.856597, -1.670493, 0.383029, -0.470917, 0.260866, 0.738071, 1.077008, -0.441587, -0.558199, -0.738047, 0.844971, 0.085258, 0.286147, 0.000820, -0.986124, 0.186742, -0.669454, -0.438728, 0.791371, 0.523009, 0.797874, -0.641454, -0.438565, 2.624934, -0.907067, 0.218986, 0.752567, 0.201835, -0.356921, -1.209756, -2.072974, -0.269782, -0.906181, -0.723429, -0.913182, 1.081401, 0.366046, -0.514189, 0.866532, -0.002830, -0.438531, 0.114696, 0.534298, -0.514706, 0.073194, 1.388721, -0.035413, 0.719548, 0.579709, 1.387984, -2.423218, -1.576603, -0.732477, 2.100616, 0.570651, 0.738533, -0.543864, -1.255042, -0.655080, 1.399053, 1.169010, -0.504083, 1.312875, 0.408026, -0.409128, 1.085221, 0.851448, -1.116794, 0.983143, -0.560507, -0.303669, 1.019848, 0.018468, -0.780123, -0.954622, -0.399165, -0.048510, 0.355284, 1.066423, -0.664636, -0.814613, -0.955034, -0.086364, 0.584881, -0.723788, -1.248137, 0.296047, -1.910484, -0.965900, 1.701747, 1.668487, -0.118189, 0.422676, -0.846454, -1.045484, 0.343870, -0.447060, 0.292989, -3.203964, -0.327839, -0.434155, 0.874992, 1.161777, -1.142981, -0.792215, 0.152357, -1.935103, -0.573060, -0.429037, -0.155364, -0.638707, -0.349531, 0.166698, -2.132177, 1.008922, 0.327766, -0.561583, -1.204961, -0.112316, -0.738355, -1.066753, 1.036466, 0.970635, -0.270422, -1.670643, 1.391918, 0.317374, 0.375373, -0.015045, 1.008280, 0.670953, -1.171077, -0.595101, -1.363801, 0.356327, 0.073796, 0.544178, -0.537264, 0.712877, -0.976084, 0.080749, 0.174769, -1.004800, -0.152914, -0.740234, 0.239566, 0.462955, -0.133066, 0.491680, 0.348344, 0.686421, -0.072592, -2.053041, 0.307036, -0.035607, -0.246717, 0.801397, 1.787263, 0.131559, 0.658268, -0.457083, 2.907004, 1.559669, -1.232428, 1.958302, -1.127388, -0.366609, 1.465390, -0.153982, 1.393130, 0.120811, -0.454076, -0.333829, 0.216967, 0.459765, 1.119988, 0.727001, 0.473132, 1.994609, -0.910677, -1.239176, 0.857230, -0.747760, -1.601133, 1.279362, 0.014875, -0.179844, -2.320856, 0.956510, -0.352767, -0.206347, -0.872153, 1.218439, -0.017155, 0.025791, -1.473008, 2.048477, 1.054912, -1.111531, -1.165017, -1.164368, 0.932443, -0.044897, 1.022811, -1.594181, 0.989384, 0.501250, -0.589144, -1.352458, -0.268539, 0.049744, 1.325826, -0.062814, 0.336177, 0.055328, 1.848644, -0.833365, 1.594352, 0.027282, 0.289210, 0.047497, 2.022735, 0.717957, 1.995398, -0.195936, 0.707879, 0.633227, 0.706728, -0.231926, 0.156454, -1.090426, 1.174006, 0.361361, 1.231607, 0.316276, -1.048609, 1.149534, -1.185685, -1.035447, 0.027341, -0.932903, -1.118645, 0.230071, -1.587508, 0.320556, 0.262587, -0.539882, 1.216443, 0.208325, 0.845333, 1.121565, 0.192880, -3.140594, -0.418211, 0.417657, 0.604396, -1.241822, -0.710761, -0.536584, 0.075336, -0.186761, 0.511881, -0.177559, -0.480942, 0.169375, -0.371069, -0.627916, -0.362166}, - { 0.143918, 1.209518, 1.415510, -0.205715, -0.936060, -1.237411, -0.550202, 0.353154, -1.200365, 1.122263, 0.051693, -0.242302, -0.423628, 0.457544, -1.246581, 0.056824, -0.501337, -1.175486, -1.992990, 1.536908, -1.326588, 0.369966, 0.888753, -0.370986, -2.471787, 1.719236, 0.214642, 1.686835, -0.614896, -0.971546, 0.843978, -1.383184, 1.441207, 0.613419, -1.833871, 1.638187, -0.534332, -1.698133, -0.572502, -0.189408, -1.674664, 0.625750, 0.734396, -0.836157, 1.706086, 0.513340, -0.701658, -1.403919, 0.266223, -0.062718, 1.810517, 0.228098, 1.830545, -1.476762, 1.306687, 1.103031, 0.535736, -0.657251, 1.088705, -0.459884, -1.079125, 0.280869, -0.242346, -0.240299, 0.698342, 0.648797, -1.159735, -0.234159, 0.979236, 0.506642, 1.702918, 0.677144, 0.560954, 1.171368, -0.347971, -0.902574, 1.580047, 1.084753, -0.054096, 0.806028, -0.511310, -0.799868, -1.636023, 1.932105, 0.223907, -0.891992, 0.042282, -0.392356, -0.768495, 0.126914, -1.136937, 0.882718, 2.173886, -1.358792, 0.968487, -0.341842, -0.539973, 1.378629, 0.365335, 0.271343, -0.068264, 1.730835, 0.478729, -0.465711, -0.027898, -0.203940, -0.003608, 0.280007, -0.189025, 0.476227, 0.834066, 0.038117, -0.070393, -1.541939, -1.693667, 0.973008, 0.464555, -0.318185, -0.404033, -0.063626, -2.232232, 0.114086, 0.356333, 1.004483, -1.832418, 0.465320, 1.570264, -0.366883, -0.463609, -0.788944, 0.015914, -2.478295, 0.570409, 1.439167, 1.545094, -0.722282, -0.104137, 1.477334, 0.776044, -0.401765, 1.417226, -0.054772, -2.109218, 0.498766, -0.746104, -0.754237, 0.523962, -0.534865, -0.711868, 1.287099, -2.812712, -0.388172, -0.958290, -0.049340, 0.039339, 0.069759, 0.270166, 0.481200, -0.216221, -1.089272, 2.103500, -0.105479, 1.080820, -0.010104, 0.752620, 0.629320, 1.407724, 2.823805, -0.083349, 0.390308, 2.006799, 1.829215, -0.620298, -0.285180, -0.496323, -2.107688, -0.781278, 0.420345, 0.128184, -0.248174, 0.246796, -0.489934, 0.502627, -0.047097, -0.467564, -1.481424, 1.808712, 0.401177, 1.625860, 1.393245, -1.362942, 1.661454, 1.332333, -0.696751, -0.196716, 0.096774, 0.024129, -0.138905, -0.645495, 0.497227, 0.259457, 1.249452, -0.478036, 0.997549, 0.261659, 0.195590, 0.570529, 1.352992, 0.418749, -2.513577, -0.062813, 1.950935, -0.285982, 1.124080, -0.297805, -0.366265, 0.617152, -0.680090, -0.791329, 0.353119, 1.280112, -0.272498, 0.772698, 0.545199, -0.262263, -0.511896, 0.043836, 0.760013, 1.099155, -0.894746, -0.402218, -0.303505, -1.390923, 0.582289, -0.262984, -0.352570, 0.206513, -0.715337, -0.119958, 0.734848, 0.252623, -0.907771, -0.270547, -1.466006, -1.062064, -0.000257, -1.590410, 0.534492, 0.354389, -1.255308, 0.141845, 0.411606, 0.042744, 0.438899, 0.432145, -0.393618, 1.632343, -0.119138, -0.462697, -1.693901, 0.214942, 0.013048, 0.677745, -0.059431, 2.389953, -0.518742, -0.332149, 0.905615, -0.032889, -0.809388, 0.362643, 2.089731, 0.518698, -0.933710, 0.980651, 1.069113, -0.621232, 0.762645, 0.861475, 0.193316, 2.363846, -0.181789, 2.246472, 0.036937, 0.715949, 0.216091, 0.303439, 0.542813, 1.152276, -0.204929, 0.151618, -1.560658, -0.853676, 0.442658, -0.333495, 0.329665, 0.134486, -1.939936, 1.357361, 0.603543, -0.221472, 2.120132, 0.164142, -0.095962, 0.993437, 0.693298, -0.962013, -0.654571, 2.396662, -0.384940, -0.336034, -0.728558, -2.115731, -0.109374, 0.254983, -0.104400, -0.512464, 0.212592, -0.774205, 1.446622, 0.863379, 1.015948, -1.241960, -0.311417, 1.105041, 0.607457, 1.796587, 0.968534, -0.728675, 0.879589, -1.026476, 0.681945, -0.893970, -0.846563, -1.386097, 0.481104, -0.298373, 1.235945, -0.714278, 0.057681, -1.265714, 1.026161, -0.258595, 0.215059, 0.433780, 0.030152, 1.322083, -0.313523, 0.661436, 0.574634, 0.062002, 0.448030, -1.351823, -0.342904, -0.899390, -0.833402, -0.862040, 0.286503, -1.596009, 0.185339, -1.228744, -0.152450, -1.264958, -0.438211, -1.699029, 0.611233, -0.207356, -0.153936, -0.971623, 1.650841, -0.663815, -0.001463, 1.006120, -0.724176, 1.397104, -0.385031, -0.873603, 0.211383, -0.235104, 0.929222, -1.606893, 1.195198, 1.390564, 1.376394, 2.098204, -0.906723, 0.976047, -0.690193, -1.349634, -0.111960, -0.838166, 1.232577, 0.919637, -0.303729, -0.397418, 0.429518, 0.729866, -1.931267, -0.145646, 1.260670, -0.208229, 2.540711, 0.491056, 0.784049, 0.716853, 0.918358, -0.600872, 0.501814, 0.820461, 0.524352, 0.976756, 2.045748, -2.222711, -1.123774, -2.081546, 0.974690, 0.518746, 0.383969, 1.239864, -1.661525, 0.022700, 1.527257, -0.353291, -0.567537, -0.017469, 0.944910, 2.294375, 0.633391, 1.017232, -0.228991, 0.192200, 1.263752, 1.009429, 0.028072, -0.481217, -0.472747, -1.361700, 1.005212, -0.706737, -0.513133, -0.284827, 0.251549, -0.011069, -1.922108, 1.862506, 1.080771, -0.777661, -0.772122, 0.657934, 0.862764, -0.397629, 0.713396, -2.084646, 0.597535, -0.234314, 0.174427, -1.272333, 0.121910, 0.144938, 0.720131, -0.576369, 1.027848, -0.150313, -0.415464, -1.326369, 0.423022, -1.877166, -1.212137, -0.937541, 0.182630, 1.056029, 0.356087, -0.505843, 0.115067, -0.961201, 1.755523, 0.101426, -0.425238, 2.520553, 0.587572, 0.349178, 0.500825, -0.588090, -1.049082, 1.396782, -0.335828, -2.316049, 1.318304, -1.005887, -0.254008, 0.683383, 1.599672, 0.034560, -0.430784, -1.242570, -0.456116, 0.469624, -0.639228, 0.649453, -0.586729, 0.969864, -0.222494, -0.271476, 0.551550, -0.183159, -0.980633, -0.098881, 0.108335, -0.560834, 0.054874, -0.838989, 0.361214, -0.330196, 0.580019, -0.027323, -2.657912, 1.404254, -0.693355, -0.489336, 2.060231, 0.887965, 1.127442, -0.693249, -1.873725, -0.056001, 1.895301, -0.727537, -0.908226, 0.386019, 0.186846, -1.116179, -0.406045, -0.433380, 0.844938, 0.581732, -1.597412, 0.004275, 0.343639, -0.872025, -1.765925, -0.013071, -0.963240, -0.142272, -1.763152, 0.071830, 0.695810, -0.613795, 0.846098, -0.586315, 2.437475, -0.998368, 0.217887, 0.361830, -1.314214, -0.895564, 0.023789, -1.806738, -0.878966, -0.280102, -0.358086, -0.751641, -0.372304, -1.919498, -0.068374, -0.641328, -0.093263, 0.443248, -2.281028, 0.372234, 0.047600, -0.300436, 0.409499, -0.154587, 1.105725, 0.213204, -1.581790, 0.202304, 0.022584, 0.430704, 0.315257, 1.327084, -0.676229, -0.660351, 0.572701, -1.569216, -1.618231, 1.628285, 0.345966, 0.599971, -0.323887, 0.595413, 0.092189, -0.426243, -1.522186, 0.215856, 0.683957, -1.714237, -0.507090, -0.180805, -0.003548, -0.284993, 0.030777, 0.218056, 0.870802, -0.341984, 0.893762, 0.659915, -0.063454, -0.384196, -1.008250, 1.221139, 0.185160, -1.581144, 1.307092, 1.238129, -1.433739, 0.433266, -0.071964, 0.508833, 0.081763, -0.827419, 1.452268, -0.190060, -0.557385, 0.034104, -0.108170, -0.461960, -0.232610, -2.454894, 1.049523, 1.396392, 0.372988, 1.789103, 0.695052, 0.673884, -0.010802, 0.489616, -0.521052, 0.523827, 0.682258, 0.582782, 1.253322, -0.417443, 1.110823, -0.416431, 1.098492, -0.867697, -0.045616, 0.076892, -0.805973, -0.785036, 0.368724, -0.379459, 0.939626, -0.462018, 0.821758, -0.693737, -0.448729, 1.220697, -1.297246, -2.077047, -1.337539, 1.464895, -0.607275, -0.982364, 0.070545, 2.344499, 0.520427, 0.207627, -1.502672, 1.238815, 1.813022, 2.026497, -0.704383, 2.309919, -1.071715, 0.147977, 0.340072, -0.082867, 1.210100, 0.283416, 0.903177, -0.111705, 1.187372, 2.902369, 0.160699, 1.492474, 0.935065, 0.256235, -0.875925, 0.416311, 0.427472, -0.016680, -0.190924, 0.336898, -1.218016, -0.293958, 1.242140, -0.684970, 0.298323, 0.353376, -2.102941, -0.668866, 0.077764, 0.376080, -0.542232, -0.353828, 0.433790, -1.662959, -1.770191, -0.762407, 0.348892, 1.327524, 1.224735, 0.787652, 0.325507, -0.950806, 1.652738, 0.150331, -1.022907, -1.179663, 1.667096, 0.503125, -0.054708, 0.577142, 0.049615, 0.078269, 1.179773, 0.278827, -1.584616, 1.104613, -0.726730, 0.822010, 0.846132, 0.682486, -2.378982, 1.412871, 1.371286, -1.503497, -0.621429, 0.343486, 0.869514, -0.763580, 0.063196, -1.331506, -0.872145, -0.589685, 0.869377, -0.627132, -0.096647, 1.075544, -1.148070, 1.280006, -0.090411, -0.076110, 0.872075, 0.021528, -0.713879, -1.633595, 1.551635, -0.580211, -0.222397, -0.774978, -1.497328, 0.668740, 0.183756, -0.979620, -0.250338, 1.108617, -1.055104, -0.198191, 0.393876, -0.964888, 0.990976, 2.007022, -0.790667, 1.565048, -0.027922, 0.311114, 0.454034, 1.232266, 1.681190, -1.048765, 0.863171, -0.141154, -0.120735, 0.086368, 0.164663, -0.032055, 1.088944, -0.817960, 0.551714, -1.044344, -1.529323, -0.657256, 1.413873, 0.011763, 0.618154, 1.725017, 1.397573, -1.000053, 0.227320, -0.662110, 0.918212, -1.637119, -1.068358, 1.723664, -1.057421, -0.020259, 0.254529, -0.465879, -2.277395, -0.014294, -1.506582, 0.055501, 0.334060, 1.220469, 0.168996, -1.874954, 1.555025, -0.776264, -0.841947, 1.214907, -1.277503, -0.229906, -0.325316, 0.047284, -1.065174, 1.422059, 1.370473, 0.161496, 1.117566, -0.516433, -0.823126, 0.720307, -2.176265, -1.456730, 0.399478, 0.153443, -0.231652, -0.889814, 1.125761, 3.337486, -0.812580, 1.513475, 0.347073, -0.517041, 0.457599, 2.543773, -0.676577, -0.661725, 0.519489, -0.125325, -0.461115, -0.028126, 1.710458, 0.863779, 0.053281, -1.373120, 0.046816, -0.052169, -0.170530, 1.939812, 0.843303, 1.586381, 1.687643, -1.155204, -1.093468, -0.125768, -0.679091, -0.746591, 1.520703, -0.441585, 0.630180, 0.560079, -0.604709, 0.889147, -0.697132, 0.214768, -1.058395, 0.629487, -0.134298, -0.614105, 0.688999, -0.937614, -0.049793, -0.472484, -1.140216, -1.491043, 0.660714, -0.011643, -0.794925, -0.785080, 0.460955, 0.583837, -0.362863, 0.762094, -0.410582, 0.967799, -0.789362, -0.816914, 0.847880, 0.242090, 0.526234, 0.299295, -0.783677, -0.383676, -1.031198, 1.446156, -1.050907, -0.738330, -0.452281, 1.029508, 0.098506, 0.294438, -0.519765, 1.167788, 0.583584, 0.047951, 0.388703, 0.474761, 1.140131, -0.305717, -0.732303, 0.303618, -0.053867, -1.327068, -0.986698, 0.725678, -0.493701, 0.755276, -0.186091, -0.026841, -1.437410, 1.191415, 1.280375, -0.263418, 0.046663, 0.589329, 2.056455, 0.176193, 0.020132, -0.264343, -1.067982, 0.442591, -2.012205, 0.212100, -0.715966, 1.622531, 0.891194, -0.430566, 1.575854, -0.681447, 0.975758, 1.461304, 0.471763, -1.521512, -0.747590, -0.113143, -0.962984, -0.454598, 0.469894, -0.816372, 2.305019, 1.109768, 0.499653, 0.507731, 0.797073, -0.670619, -2.103842, -0.378361, 0.096315, -0.186113, 0.353704, 0.731541, 0.912456, -0.226365, 2.475935, -0.947046, -1.215867, 0.944136, -1.263590, -0.325788, 0.212705, -1.481161, 0.425147, -0.240799, -0.894787, -1.315372, 0.588340, 1.164927, -0.137595, -0.635644, 1.273758, -0.697351, -0.342219, 3.102881, 1.345796, 0.134191, 0.248090, 1.791207, 0.789727, -2.943933, 1.219192, 0.858836, -1.307881, -0.049507, -1.782492, -0.272808, 1.634433, 1.078393, 0.191553, 0.959971, 0.148198, 1.350678, 1.034535, -0.796547, -1.385673, 0.637981, 0.145088, 0.308295, -0.865624, 0.212762, -0.868204, -0.998864, 0.170664, 1.130297, -0.723851, -0.347515, 2.647883, 0.362370, -1.870187, 0.332791, 1.916221, 1.634928, 0.280556, -1.200652, 0.364559, 0.825790, -0.924397, 0.392393, 1.486134, 0.562158, -0.724153, 0.383157, 1.402983, -0.449497, 0.250040, 0.491233, 0.978817, -0.614823, -1.266325, 0.275805, 0.110052, 0.009780, -1.369228, 0.862445, 0.002470, 0.319805, -0.381020, 0.196468, -1.267349, -0.388345, 1.337526, -0.380834, 1.679628, 0.825904, 0.435964, -0.430529, 0.368636, -1.526051, -0.133137, 0.316569, 1.188769, -1.034041, 0.442261, -0.833932, 0.726919, 0.444092, 0.021020, -0.180114, 0.691879, -1.276975, 0.779742, 0.560705, 1.497143, 0.820534, -1.050074, 0.976326, 0.829330, -0.749170, 0.440191, 0.052696, -1.297568, 0.389543, -0.305468, -0.475802, 1.882753, 0.690292, -0.829858, -0.793177, 1.153632, -0.606419, 0.738836, 0.138331, -1.588802, 0.596538, 0.576173, 0.721506, -1.873809, 0.620846, 1.030279, 1.397279, 1.467184, -1.979299, 0.206453, 2.100982, 1.052231, -1.041611, 1.370476, 0.119844, -1.215214, -0.362735, 1.641905, -0.235563, 0.335580, 0.008142, 0.506156, -0.102518, 1.561611, -1.659342, -0.470413, -0.953792, 0.621376, -0.357466, 1.727999, 1.385200, -0.988300, -0.771211, 1.932962, -0.001637, 1.854878, -0.434222, -1.308446, 2.165843, 0.759218, -0.186683, 1.168201, 1.201224, 0.808716, -0.228364, 0.686502, 0.749201, -1.014981, 0.693725, -1.151095, 0.791120, 0.841981, -1.314296, 0.223916, -0.485333, -0.776303, 0.845748, -1.570707, 1.229241, -0.320438, 1.503051, 1.582160, 0.018349, -1.270061, -1.105981, -1.095752, 0.638423, 1.095289, 0.915528, -0.993148, -0.247416, 1.440400, -1.027800, 0.379999, 0.768198, -0.609642, -1.873906, 0.847325, 0.781594, 0.439981, 1.410181, -0.228625, -0.682470, 0.341436, 0.962507, -1.456151, 0.515019, -0.974384, 0.057340, -0.847645, -0.253236, -0.571886, -0.669795, -0.705352, -0.341011, 0.672880, 0.461658, 0.104177, 0.246889, -2.279662, -1.214561, 0.038690, 0.623432, -0.758409, 2.829443, 0.043046, 0.925939, -0.619343, -0.080817, 1.717057, 0.426861, 0.377949, 0.524727, -0.363203, -0.190493, -1.111771, -0.570682, -0.804020, 1.652374, 0.646142, 0.360384, 0.606764, -2.267877, -1.578426, 0.634695, -0.039773, -0.675857, -0.408203, 0.790941, -0.414555, -0.791152, -1.447742, -0.101123, 0.694835, -0.235019, -2.014651, -0.544846, 1.644013, -0.579032, -0.376821, -0.792559, -0.534888, -0.528000, 0.485593, 0.726400, 0.219275, -1.606865, -0.637418, -0.194022, 1.938055, -0.230561, -0.392530, -0.029433, -0.079863, 0.030547, -1.690866, 1.021236, 0.330774, -0.849816, -1.200827, 0.018342, 0.952855, -1.847905, -1.157915, 0.385315, 1.523961, 0.189226, 0.284901, -0.236001, -1.128477, -0.257783, 0.733517, 0.906165, -0.186465, 0.330822, -0.100674, 0.227714, 1.047101, 0.402691, 0.178935, -0.479966, -0.972547, 0.085684, 0.280473, -0.680743, -0.956101, -0.067043, -0.043444, -0.423860, -1.431487, 1.785578, -0.403868, 0.135247, 0.177338, 1.266297, -1.419286, -0.019987, -0.600000, 0.376572, 0.395711, 0.547185, -0.851191, -0.810450, 1.620857, 0.198021, -1.340421, -0.169411, -0.181947, 0.829641, 0.347308, -0.139790, 1.043162, 0.414267, -0.185098, -1.125200, 0.767852, 0.486725, 1.362585, 0.075763, 0.591354, 0.410808, -2.174905, 0.546123, 1.098918, -1.846365, 1.125447, -0.394972, 1.009875, 0.493997, -0.034090, -0.358880, -0.164017, 0.497917, -0.836251, 0.274598, 0.892336, 0.292421, -0.523671, -0.476477, 0.366224, 0.297864, -1.293940, 1.572629, 0.218977, -1.208299, -1.468921, -1.005271, -1.315076, 0.050478, 0.000118, 1.472276, -1.779780, -0.487180, -1.989578, -0.175389, -0.114721, -0.340563, -0.786085, 0.229292, -0.389049, 0.231493, 0.460837, 0.280056, -0.805843, -0.578639, -1.268060, 0.870908, 1.022897, 1.444145, -0.611573, -1.557369, 0.000382, -0.685728, 1.060017, 0.324899, 0.666328, 0.608093, -0.640875, -0.431135, 1.740098, 0.213174, 0.311500, -0.648503, -0.411613, 0.814678, 1.005494, 2.068207, -1.827732, -0.214563, -0.387490, 1.629509, -1.224637, 1.646266, 0.218674, 2.009914, 1.692994, 1.331669, -0.635512, 1.679007, -1.288978, -0.777167, 1.117640, 0.772795, 2.818392, -1.129921, 0.012129, 0.359697, -1.113243, 0.187010, -1.637286, -0.985339, -0.231506, 1.687171, 0.632401, -0.187848, 2.037420, -1.028750, 0.879615, -0.820166, -1.137429, 0.709749, -1.735245, -0.364049, 0.081651, 0.434274, -1.594779, -0.090954, -0.520978, 0.414483, 0.847307, -0.179835, -1.248063, 0.523093, -1.133471, -0.052280, -0.572817, -1.477456, -1.484785, 0.765020, 0.198138, -1.604406, 0.105591, 1.091369, 0.985142, -0.489852, 0.641059, 0.278474, 0.783888, 0.264552, -0.516150, -0.404999, 1.012161, -0.052900, 1.064197, -0.234965, -0.703951, -0.616026, -2.164735, -0.826753, 1.519988, 0.264698, -1.721244, -0.782308, -0.744139, 0.903597, -0.642493, 0.965614, -1.225115, -0.935501, -1.780527, 0.156984, -1.093822, 2.617778, -0.456001, 0.256682, -1.975094, -0.351159, -0.945742, -0.756613, -2.432863, 1.322113, 0.796331, 1.773006, -0.321627, 0.221067, 0.930219, 1.083945, -0.831533, 0.772991, 0.111766, 0.238352, -0.416830, 0.104399, 1.332182, -0.403450, -0.040660, -0.151557, -0.738574, 1.098338, -0.077803, 0.170047, -0.023169, -1.855730, -1.286719, -0.671617, 0.276023, 0.258835, 0.450115, 0.348014, 0.138224, 0.678333, -1.175952, -0.118125, -1.281212, 0.219560, -1.396473, -2.031704, 0.169597, -1.558197, -0.507837, -0.341647, -0.411748, -2.353515, -0.823815, 0.547196, 0.152572, 0.941773, -0.132502, 0.353957, -0.374074, 1.933327, -0.693691, 0.097224, 0.384921, 0.614135, 0.836104, 1.748898, -0.556862, 0.541714, 0.539119, 2.504559, -2.247921, -0.144833, 0.715338, 0.244103, -1.194156, 0.315205, -0.195992, -1.109842, -0.681922, 1.305083, 1.632660, 0.174473, 1.081053, -0.697581, -1.249751, 0.064262, -0.079740, -0.641816, 0.423762, 2.282303, 0.504471, 0.481696, -0.143376, 1.618654, -1.241618, -0.821932, -1.071982, -1.552989, -0.430421, 0.053239, -0.150558, 0.357365, -0.941143, 0.324645, -0.219965, -0.320421, -0.306399, -0.162997, -0.043216, -0.299875, -0.190169, -0.175823, 1.598249, 0.302305, 0.531722, 0.529184, -1.227818, -1.263368, 0.910903, -1.352136, 0.414417, -0.691839, 0.184465, -0.709986, -0.817126, -0.850985, -1.500053, 0.064047, 0.552074, -0.493353, 0.334505, 0.476269, -0.839961, -0.324028, -0.504277, -0.341015, 0.280118, -0.217858, 0.011077, 0.053562, -0.829168, 0.944967, -0.945398, -0.370070, -0.793656, -1.054477, 0.072705, -1.163156, 0.096346, 1.211309, 0.372250, -0.013209, -1.186569, -1.223648, -0.069903, 0.143383, -1.102027, 0.174251, 0.185013, 0.444361, 1.877374, 0.124881, 0.265931, 0.313493, -0.380179, 0.528459, -0.294885, 0.020683, 0.268312, 0.686996, -0.822764, 0.356774, -0.104993, -0.147408, -1.873306, -1.028076, 1.286824, 0.752496, -0.374466, 0.579663, -1.304120, -0.392455, -0.526908, 0.394459, -0.613859, -0.091887, 0.903183, -1.109726, 0.675838, -0.085295, 1.051192, -0.016866, 0.326990, 1.263379, -1.585195, -0.661578, 0.620993, 1.378048, 0.475401, 0.177983, -0.971243, 1.099195, -0.763719, -0.048398, 0.487208, 1.164095, -0.527009, -0.600236, 0.266523, -1.329845, -0.185820, -0.587015, 1.197968, 0.483367, 1.180162, 1.000607, -1.666219, 3.592965, 0.005810, 0.103460, -0.379997, -0.804158, -0.762023, 0.487444, 0.012350, -0.381975, 0.854549, 1.102220, -0.791890, 1.011859, 1.422311, -0.201551, 0.430874, 0.706137, -0.621989, -1.431359, -0.541830, -0.109603, -1.803321, 0.599062, 1.082363, -1.727323, 0.581667, -0.388399, -0.387510, -0.268347, 0.230137, -0.211202, 0.728521, 1.242526, -1.079046, 1.062484, 0.359966, -1.226313, 0.739156, 0.030655, -1.765626, -0.149636, 1.459785, 0.762530, -0.492712, 0.218338, -0.135339, 0.563411, -2.098810, 1.348681, 0.722642, -0.685129, 0.189547, -0.143518, 0.698839, -0.304914, 0.224611, -1.772923, 1.202020, 2.585183, -1.160130, 1.122913, -0.426645, -0.959485, 0.223545, 0.251159, -0.225319, -0.424503, -0.476923, -1.237562, 2.097269, 0.966247, 0.458852, 1.176988, -0.595764, 1.428310, 1.377048, 1.064520, 0.944863, -0.471240, -0.127947, -1.572854, 1.865792, 2.083482, 0.670633, 0.104540, -0.397667, 1.997226, -0.106271, -0.608268, -0.870572, 0.072127, 0.986973, -0.416156, -0.653851, 0.074068, -0.019042, -0.986571, -0.018002, -0.983321, -0.613986, 0.560652, 1.261426, -1.042631, -1.747539, 0.745243, -0.133538, -0.379869, 0.216768, 1.195644, 0.405613, 2.045917, 0.365249, -1.354414, -0.376270, -0.006553, 0.362668, -0.904080, 0.747589, 0.198446, -0.538016, 0.881561, -0.310994, -0.343918, 1.244070, 2.000613, -1.600150, 0.647509, -1.256487, 0.701125, 0.246671, 0.108562, 0.922212, -0.804351, -0.850594, 1.013685, 0.900552, 1.270867, 1.563839, 0.907486, -2.005560, 0.442177, -2.103153, -0.044940, -1.520954, -1.306385, -0.792545, 0.958612, 1.956637, 0.949954, -0.245294, 0.129125, 2.445799, 1.646368, 1.013799, -1.098808, -1.164370, 1.533652, 0.686235, 0.792318, -1.574291, 0.198587, 1.505112, -0.704153, 1.539799, -0.786237, 0.742085, 0.436683, 0.952655, -0.080700, 1.385913, 1.776141, 0.391914, -0.014451, -0.578049, 2.047994, 0.561269, -0.209200, -0.783461, -0.469990, -1.229856, -0.210625, 0.115914, 0.830101, 0.725687, -0.299943, 0.116684, -0.784304, -0.806670, -1.978712, -1.180928, 1.131475, 0.542189, 0.256547, 1.075608, -0.195630, -0.542400, -0.789014, -0.324209, -0.859475, 0.649801, -0.767602, -0.998245, 3.291083, -0.527494, -0.194860, -0.520921, -1.045487, 0.578567, 0.303074, 0.681786, -0.293648, 0.594617, -0.808306, 1.320991, 2.622552, 0.048417, -1.228960, -0.263984, -0.414892, 0.007103, -1.335975, 0.422645, -0.267703, -1.172696, -0.158137, 0.394125, -0.697199, -0.335698, -0.193902, 0.383253, 1.800366, 1.100667, -0.642460, 0.154940, -0.475391, 0.409989, -0.232179, 1.574244, 0.375923, 1.598368, 0.781955, 0.104189, -0.937510, 0.304039, -0.513409, 1.284597, -0.048314, -0.997324, -0.424721, 0.696322, -0.595087, -0.249153, -1.799990, 0.073800, -0.644472, 1.315935, -0.818653, -1.500680, -0.083754, -0.280041, 1.310595, 0.254121, 0.209215, -0.619412, 0.337245, 0.014890, 0.228921, 0.478691, -0.438901, -1.667995, -1.456345, 0.409701, 0.424796, 1.148928, -0.062927, 0.970516, -0.227197, 1.446486, -1.698990, -0.483551, -0.950690, -0.506982, -0.560694, -0.677606, -0.956363, 0.242048, -0.935352, 0.847280, 0.736683, -0.501086, 0.445259, -1.219422, -1.543004, -0.060447, -0.742367, -1.057063, 0.902699, -0.905459, -0.559891, -1.946507, 0.207084, -0.074622, -0.042401, -0.658913, -0.519988, -0.076985, 0.081014, 1.171612, -0.979588, 0.023708, -0.252099, 0.461627, 0.960544, -0.503724, -1.777104, 0.280910, 1.165504, -0.506259, -0.172485, -1.143889, 0.913221, -2.011524, -0.512824, -1.680265, -0.525892, 0.094003, 0.815813, -1.150683, -1.011090, 0.178379, -1.070876, 1.490121, -0.552821, -1.201117, 0.882974, -2.115034, -1.575595, -0.387130, 0.439784, 0.539421, -0.055772, 1.364372, 0.861246, 0.344243, 0.259153, -1.255549, 0.400312, -0.616561, -0.979032, 0.412833, -0.004636, -0.343319, -0.716839, -1.208622, 0.475568, 0.527625, -0.047370, 1.400738, -1.619014, -1.203610, -0.555936, 0.103826, 0.440331, -0.136716, -0.610684, 0.802815, 0.894211, -0.471609, 1.063656, 0.543890, 1.560269, 0.597948, 0.538398, 0.291025, 0.607748, -1.218361, -1.394040, 0.880483, -0.743415, -0.494944, -0.763028, 1.347232, 0.202154, -0.503577, 1.650189, 0.619100, 0.679815, 0.017464, -0.379545, 1.285849, -0.634801, 0.586431, 1.363330, -0.465049, -2.353583, -1.368040, -0.110282, -0.763812, -0.534703, -0.080556, -1.277511, -0.192667, 0.773091, 1.558537, -0.072994, 1.244117, -0.292472, -0.099457, -0.572902, 1.330516, 0.284130, 1.109900, -0.011437, -1.822190, 0.696207, 0.287361, 0.134555, 0.730946, 0.693094, 1.278310, 0.603130, -0.502733, -0.298057, -2.120405, -1.252650, -0.585504, -1.697913, -0.153409, -1.381612, -0.355373, -0.419217, -2.147746, 0.437598, 0.071903, -1.250967, 0.888995, -1.279496, -0.524999, 0.847654, 0.540934, 0.988537, 0.220426, -0.248349, 0.702039, -0.373690, -0.292794, 1.251551, -0.136726, -1.349951, -2.006402, 1.952456, -0.426821, 1.660869, -1.662619, -0.426596, 0.329979, -0.925119, 1.086507, 1.247635, 0.759971, 2.748834, -0.230738, -1.384721, -1.122254, -0.456420, 0.376815, 0.136528, 1.334217, -1.259515, -0.380063, 0.847187, -0.507247, 1.168831, -0.899540, 0.364901, -0.565273, -0.762716, -0.390254, -0.313475, -0.480110, -0.124875, 1.051658, -0.815459, 0.616314, -0.816195, -0.149589, -0.196263, -1.823787, -0.747584, 0.604710, -0.635718, 0.838170, 1.318557, 1.380034, 0.030648, 0.189420, 0.103005, -0.202615, 2.178581, 0.144942, 0.288130, 0.428349, -1.358391, 0.895738, 0.288058, -0.148462, -0.762656, -1.249119, -0.999641, -0.825954, -0.045740, -0.876863, 0.081127, 0.180492, -1.070712, 0.069462, 2.499226, 1.208066, -1.089126, -1.153212, -0.633523, 1.041080, 0.179309, -0.044136, -1.243529, 1.406187, -1.471448, -0.501115, 0.395088, 0.172486, 0.509783, 0.077203, 1.388737, 2.525844, -0.136487, -1.234559, 1.299042, -0.846108, 0.774194, 0.968037, 0.215330, -0.469177, 0.401849, -0.263293, -1.531249, -1.588852, 2.390583, -0.819375, -0.286632, -1.405893, 0.265913, 1.948279, -1.763698, -1.313349, -0.196341, 0.746557, -0.197265, 0.385748, -1.354313, 0.445977, 0.218553, -2.012631, -0.414542, 1.017698, -1.847814, 0.242002, -0.195827, 0.482920, -1.964476, 1.842669, -0.301600, -1.450880, -1.458653, 0.743479, -1.936708, 0.315710, -0.631097, 0.434831, 0.012618, 0.566895, 0.888040, -0.426595, -2.086709, -0.582593, 0.331953, 0.191696, 0.202003, -1.453614, -0.118366, -0.988162, 0.655168, -0.067755, -0.601428, 0.210343, -0.526311, 0.093570, 1.624383, 0.533583, -1.011251, -2.975027, -0.197862, 1.731261, -1.455112, -1.351827, -1.005466, 0.775502, -0.274310, -0.834313, 0.026578, -0.923564, -1.162562, -0.438935, 1.310981, -0.844952, -0.639270, -1.005501, -1.157427, 0.799392, 1.471006, 0.587484, 0.762854, 1.430742, 0.190146, 1.277148, 2.050369, 0.392673, -0.155007, 0.168144, -0.552254, -0.926370, -0.612983, -0.457701, 0.578693, 1.110674, 0.425022, 0.229803, 2.166550, -0.245349, 0.044718, 2.327867, -0.755978, 0.735073, 0.691000, -0.372918, 0.559897, -0.227446, 0.126589, 0.138772, 0.441423, 1.871359, -0.049067, 1.158514, 0.573930, 0.132841, 0.210897, -1.937643, 0.819365, -1.493229, 0.140068, 0.358949, 2.188984, -0.014209, 0.028942, -0.271618, -2.212539, -1.036573, 0.832698, 1.260570, 0.243328, -1.764464, -1.089780, -0.308576, -0.940177, -0.517370, -0.356109, 0.271797, -0.370817, 1.200888, -0.961231, 1.697590, 1.183354, 0.966891, 0.447719, -0.575066, -0.140690, 1.753668, -1.293170, -0.835097, 0.519911, -0.871805, -0.818254, -1.142053, -1.029756, -0.453165, 0.744701, 0.428048, 0.517613, 0.413268, -0.412662, -0.416161, 0.077534, -1.844502, -0.210068, 0.960682, 0.722467, 0.722120, 0.356762, 0.579144, 0.844782, -2.218417, 0.292815, 1.243716, 0.190755, 0.296549, 1.637157, 0.489667, 0.492616, 1.724824, -0.446847, 0.040712, 0.703715, 0.807092, 1.300552, 0.101970, -0.082710, -1.083100, -2.629662, 1.190288, 0.248348, -0.408591, 0.569903, -1.923930, -2.354898, -0.460324, -1.052738, -2.032039, 0.284669, 0.221328, -2.382770, 0.412199, -0.057338, 0.932570, 1.713927, 0.616716, 0.678924, -1.007089, -1.855047, 2.245682, -0.797435, 0.366729, -0.537063, -0.278747, 1.156163, -0.211522, 0.030367, 1.655177, -1.306086, 0.293756, -0.001744, 0.283854, -0.159195, 0.688433, -0.859293, 1.593975, -0.914517, 0.430648, 0.605256, -0.041184, 0.861674, -0.042582, 0.363541, 0.902050, -0.289410, 0.194056, -0.653735, 1.456413, -1.652748, 0.524409, 0.774439, -0.507796, -0.218706, 0.783481, 0.239214, -1.056154, -0.843452, -1.439239, 1.113900, 0.882122, -0.924865, 0.627621, -2.506988, -0.658403, 1.062265, -1.683057, 0.442730, 0.274948, 2.348994, -0.765417, 0.776610, 0.241322, 1.128288, 1.515094, -2.085134, 1.049170, -0.605473, -0.140245, -1.321326, -0.045581, 0.855986, -0.443743, -1.354501, 0.388817, 0.095488, 0.261038, 1.011495, -0.314717, 0.029782, -0.038697, 2.136642, 0.014697, -3.011778, 0.173705, 0.146129, -0.845379, -1.288893, 0.848944, 0.605097, 0.152458, 0.974621, 0.765603, 0.771062, -1.775870, -0.678981, -0.176923, -0.686449, 1.898232, -1.020612, -1.354837, -0.043068, -0.300015, 0.154585, 1.755027, -0.426490, -1.267349, -0.268653, -0.287218, -0.186931, 0.547677, 0.648549, 0.466099, 0.503078, 0.317238, 0.244550, 0.796795, 0.902169, 0.387778, 0.662838, 0.099500, -2.226891, 0.597740, 0.715034, -0.633031, -1.679369, 0.543111, -0.257643, -0.828987, 0.312307, 0.596694, -1.297439, -0.802969, -1.838572, 0.200758, 1.614324, 0.775535, 0.505559, 0.778013, -0.509092, -1.135050, -1.178565, 1.338580, 0.237240, 1.010507, 0.570691, 1.146659, -1.472037, 0.828128, 1.012029, -0.465989, 0.402074, -0.416875, -0.131153, -0.679788, 1.259486, 2.123017, 0.080991, -0.609785, -0.022760, 0.680924, -0.799098, -1.604908, -0.864820, -0.567600, 0.097648, 0.827421, 0.196851, 1.194387, -1.823332, 1.136009, -1.352971, 0.931056, 1.025733, 0.996780, -0.300885, 0.749047, 1.874420, -0.216025, 2.865738, -2.151413, -1.571273, -0.657617, 0.502213, -0.324155, 0.821925, -0.090171, 0.288615, 0.513541, 0.168332, -0.484436, -0.030806, -0.323216, 2.515737, -0.768082, -0.584409, 0.118621, -0.963008, -0.133828, -1.249792, -0.131978, -0.531103, 1.225566, 0.918561, 0.668808, -0.101127, 1.508622, 0.606976, -1.378289, -0.452788, 0.041343, 1.316459, 0.160414, 1.701994, 0.551498, -0.483048, 1.251926, -1.526237, -0.736546, 0.754953, -0.817343, 1.015382, -0.031105, 0.370372, -1.199750, 1.627179, -1.657286, -1.168224, -0.244165, 0.160987, -0.112550, 1.019035, 2.280782, -1.871327, -0.524802, 1.821679, -0.685914, 0.062724, 0.257558, -0.676704, 1.419979, 0.651204, -1.068474, -0.052351, 1.203416, -0.652589, 2.327816, -0.660048, 0.692844, 0.793130, 0.158290, -0.585633, -0.087601, 1.173301, -0.290935, 0.040166, 0.542299, -0.582586, 0.271306, 0.122196, 0.665061, -0.779517, -0.718081, -1.877276, -1.252328, 0.360431, -0.955324, -1.978227, 0.803410, -0.178430, -0.959295, 0.630731, -1.279081, 0.192315, -1.903189, -0.675285, 0.309240, -0.541594, -0.056293, 1.776019, -0.894201, 0.056392, 1.404103, 0.113519, 1.104897, -0.443649, 1.219918, 0.353797, -0.501165, 1.113912, 1.278034, -0.871461, 1.172982, 0.596697, -1.548223, 0.313286, -1.333420, -0.430893, 1.573169, -0.253580, 0.267122, -0.075675, -1.109400, -0.277010, -1.027555, -0.433901, 0.033297, -1.141899, 0.648755, 1.568496, 1.162342, -0.543404, 0.400204, -1.257169, -0.629579, -0.571377, 0.805252, -1.225040, 0.934275, -0.578302, -0.638888, -0.206949, 0.495699, 1.793069, 0.501017, 0.776776, 0.585656, 0.573843, 0.149676, -0.200380, -1.574862, 0.346256, 0.339128, -0.278733, -0.165454, 1.829574, 0.196033, 1.282044, 0.130789, 1.727596, 1.790129, 0.659798, 0.716811, 0.683067, -0.346571, 0.242042, 0.860938, 0.485511, 1.276565, -0.919079, -0.862969, 0.183405, 0.152476, 0.260639, -0.173565, 0.512594, 1.375960, -0.396851, -0.363907, -1.641055, -1.822389, 0.039212, 0.164753, 0.116395, -1.774030, -0.323417, -2.230603, -1.179728, 0.202419, 0.876117, 0.793657, 0.788611, -0.763736, 0.385331, -1.549563, -0.499845, -1.011770, -1.517638, 0.468193, -0.087922, -1.224269, -1.178208, 0.620655, 1.900572, -0.532846, 0.170689, 0.848457, -1.394555, 0.201337, 1.128630, 0.196815, -0.035499, -0.033795, -1.607241, 0.260005, 1.942873, 0.747811, 0.431182, -0.930874, -2.030816, -1.885500, -0.883294, -1.315229, -0.025818, -0.418902, -0.132735, 1.010110, 1.156663, 0.072571, -1.051639, -2.090901, -0.328538, 0.114635, 0.008651, -1.125049, 2.466474, -2.917685, 0.142033, 0.624541, -0.703083, -0.477289, 0.011147, -0.192426, -0.526601, -1.148287, -1.278181, -0.204467, 0.548412, 0.015905, 0.571718, 1.646519, 1.344547, -0.624031, -1.397568, -0.246429, 0.510796, 2.391095, -1.335905, 0.536445, 0.380635, 0.770062, 0.257350, 0.433161, 0.568259, 0.424748, -0.897766, -1.044633, 0.239560, -0.902328, 0.781752, -0.465627, 2.061125, 0.820822, -0.518875, -1.257676, 0.012471, -0.245483, -0.865950, 1.924137, -2.220682, 0.438959, -0.703392, -0.032280, -0.619949, -0.591307, -0.358743, -1.207613, -0.569484, 0.006838, 1.575664, -1.596865, 1.020027, 3.073270, 0.222619, -0.458251, 1.803644, -1.981149, -0.206486, 0.611732, -0.247545, 0.020892, -1.118521, 1.372310, -1.083308, 1.166251, -1.587290, 0.532322, 0.046277, 1.646540, 1.197983, 1.695619, 0.730179, -1.827557, 0.878910, 0.644323, -0.346873, 0.053954, -0.504006, -0.331597, -1.512858, -1.540880, -1.150630, 1.236867, -2.611885, 0.733829, 1.598033, -0.823751, -0.150936, -0.162573, 0.682289, 0.457879, 1.494980, 0.572642, 0.551503, -0.000152, 0.327813, -0.229658, 1.122496, 1.376082, -0.616302, 0.546517, 1.918280, 1.781606, 0.034718, -1.993492, -0.692250, -0.241492, 0.530820, 0.235702, 0.481145, -1.984227, 0.364654, 0.135874, 0.292133, -0.104011, 0.679996, 0.751805, 0.040565, -0.487294, -0.065285, -1.540447, -0.336744, -0.748744, -1.238833, -1.685375, -1.168528, 0.276482, 1.191660, 0.892987, -0.786405, 0.062498, 0.351929, 1.982254, -0.168346, -0.130996, 0.485008, -0.156850, 0.420248, -0.239325, 0.566120, 0.467160, -0.382663, 0.212102, -0.343557, -0.672544, -0.869294, 0.816820, -0.178021, 0.344465, 0.092975, -0.417941, -0.180374, 0.703312, 0.181560, 0.257753, 1.029101, 0.158804, 0.233925, -0.968973, -1.988769, -0.099716, 1.106740, 0.135644, 0.181653, -0.957438, 0.608039, -0.096022, -0.800750, -2.378509, 0.404807, -0.566938, -0.750786, -0.464362, -1.428267, 1.457952, -0.079389, -0.700990, -1.147858, -0.091208, 1.321306, -1.806182, -0.080394, 1.529596, 1.466066, -0.605815, -0.769387, -1.386900, -0.769394, 0.555541, -1.459008, 0.859010, 0.736189, 1.352214, -0.072282, 0.552458, 1.679355, 0.220488, 0.680177, -0.557058, -1.079371, 1.756279, -0.337515, 0.858185, 0.347230, 1.037756, 0.868605, 0.893179, 1.515999, -0.350862, 0.109698, -1.271031, -1.546041, -1.970385, 0.463732, 0.494671, -1.669773, 0.236069, -0.271946, 0.498189, 0.246775, 0.922381}, - { 0.913403, -0.295290, 0.086092, 1.005054, 1.725580, -0.133652, 0.342107, 0.357993, -1.589066, -1.048333, 0.238940, -1.376018, 0.188080, -1.612856, -1.934624, -0.467801, 1.277703, -0.948792, 0.674268, 0.123088, 0.316576, 0.237434, 0.979154, -0.574009, -0.795337, -0.240708, -0.113751, 0.081421, 0.008718, -0.347913, -1.123316, 1.777761, 0.883286, 0.590090, 0.171913, -1.182438, 1.350497, -0.361385, 0.017211, 1.504698, 0.313551, -0.844819, -0.618732, -1.577376, 0.061875, 1.193806, 1.537125, -1.725651, -0.242986, -1.837148, 0.931901, -0.073035, 1.073268, 0.077756, -0.756300, -0.829790, -0.974044, -1.524843, 0.713368, 1.474400, 0.910172, 0.446263, 1.585931, 0.679202, -0.658093, 1.826162, -0.009757, -0.232815, 1.243577, 0.091568, -0.167431, -1.431377, 0.030063, -1.932114, 0.316663, -0.944830, 1.162451, -1.131858, 1.491109, 1.691544, -1.329376, 0.139726, -0.804626, -0.022518, -1.044561, 0.420332, -0.743144, -1.822255, -0.437006, 0.400183, -0.317712, 0.693633, -0.564303, -0.098094, 0.760899, -0.110091, 0.403445, -0.315074, 0.066276, 1.978001, 0.437739, 0.995208, 0.282942, -0.233445, 0.073684, 0.410945, 0.387493, -0.173382, -0.985331, 0.575592, 0.679394, -1.915635, -0.500575, 0.799922, -0.200503, -0.149439, 0.762506, 0.649875, 0.194384, -0.425565, 1.513602, -0.583543, -1.442096, 0.553279, 0.256465, -0.683770, 0.798597, 0.662315, -1.552708, -1.651697, -0.261657, 0.028729, -1.660404, 1.625884, -0.622325, 0.314700, 0.095353, 0.081231, 0.293623, -0.206468, 1.204259, 0.358432, -2.016816, -0.265700, 0.478025, -1.895010, -1.461382, 0.785414, -1.590029, -0.082857, -1.039708, 0.250805, 0.874629, -0.080413, 2.482724, 0.172107, 0.792439, 0.187465, -1.579936, -0.794222, -0.636311, -0.889284, -1.921318, -0.657590, 1.778675, -1.843720, 0.325486, 0.043203, -0.713850, -0.728758, -0.968976, 0.727232, -1.064471, 0.878060, -0.008737, 1.160822, -4.114590, -2.042076, -0.611600, 0.127878, -1.159296, -1.170815, 0.117916, -0.272055, 1.234184, -1.810103, -1.356371, -0.376263, -2.450144, 1.233387, -1.217582, -1.679335, 0.457814, 1.050618, -0.544435, -0.368644, -0.232821, 0.043874, 0.935485, 0.454126, -0.906432, -0.304290, -0.159284, 1.410072, -0.236534, -2.195936, 0.789080, -0.632066, 0.486165, 1.460808, -1.166771, -0.242664, 0.770249, 0.891180, 0.852778, 0.752358, 0.833951, 1.350073, 0.604933, -1.119053, -0.316285, 2.170391, -1.073226, -1.425531, 0.811938, 0.054409, -0.976320, 0.114019, 0.460297, 0.913301, -2.035406, -0.970896, 0.731869, 1.361570, -0.797868, 0.169634, 0.462445, 0.358620, -1.109236, -0.403613, 0.209397, -1.120581, 0.164944, 0.411159, -2.269710, -1.255673, -0.666517, 0.536336, 0.995050, 1.141749, 0.019619, -1.227143, 0.278797, 1.348266, -1.650656, -0.183376, 0.281023, -0.662262, -0.604583, 0.302586, -1.789549, -1.043313, 1.654594, -0.282964, 0.249613, -1.353860, 0.972507, 0.514998, -0.460577, 0.081415, 1.438501, 1.162506, 2.461328, -0.342899, -0.099116, 1.703849, -0.799054, 2.250685, 1.002557, 1.032787, 0.366252, -0.088449, 0.578996, 0.309805, 0.080233, 0.034031, -1.366195, -0.889938, -0.942371, -0.715408, -0.073784, -0.614486, -1.335649, 1.281016, 1.416838, -0.793418, -0.183820, 2.226790, -1.275784, -1.301143, 1.175273, -0.645667, -0.094837, -1.158250, -0.176231, -0.563877, -1.035846, -0.530539, 0.461159, 0.791217, 0.132766, -2.418760, 0.059318, 0.267904, 0.566350, 1.005936, -0.034073, 0.214185, 0.054725, -0.173895, -1.022204, 0.593985, -2.160395, -0.791361, -0.835063, -0.063793, 1.239700, 0.004030, 2.958032, 0.050634, -0.426058, -2.227523, -0.748648, 0.845190, 0.981113, -1.794394, -0.652911, 2.441202, -0.200283, -0.847372, 0.230857, -0.958025, 0.390691, -0.494975, 0.606822, 0.236227, 1.278609, 0.504989, -0.348713, -0.768320, -1.662945, 0.738913, -1.376755, -0.720088, 1.546482, 1.591030, 0.769729, 0.568637, 0.230630, 1.194979, 1.088164, -1.099574, 0.892180, -0.036292, -1.117458, -0.308925, 1.214907, 0.240722, -0.204111, -0.333902, -0.299545, 0.202653, -0.827144, -1.210344, -0.584223, -0.527318, -0.713438, 0.553275, -0.154885, 0.821249, -0.650773, 0.268670, -0.610320, 0.917912, 1.157194, 0.768376, 0.161635, -0.141360, -0.893721, -1.227267, 0.715565, -0.738901, -0.359867, 0.205392, -0.916198, -0.206067, 0.791689, -1.651486, -1.188522, 0.612037, -0.572621, 1.337013, 1.317472, -0.536303, -1.465946, 0.732252, -0.775071, -1.521306, -0.707566, 0.200054, -0.926414, -0.193990, 0.938176, 0.753778, 0.133653, -1.589309, -0.230409, -0.818231, 2.010239, -0.541675, 0.645513, -0.577786, 0.219515, 0.316971, 1.299165, 1.183105, 0.476046, 1.353827, -0.547525, -1.224698, 0.179259, 0.737115, -1.128772, -2.165439, -1.049073, 1.585385, 1.247090, -0.453924, 1.617306, -0.702724, -0.171480, 0.062967, 0.106036, 1.561527, 0.251820, -1.065674, -0.309443, 0.452167, 0.307494, 1.753611, 1.577688, -0.735904, -1.224096, -0.611819, -0.387908, -0.739698, -0.704023, 0.006210, -0.727352, 0.742725, -0.705610, -0.237533, 0.670380, -1.012794, -0.690726, 1.418735, -0.466697, 0.052781, -0.175423, -0.421615, 0.346860, 0.023260, 1.570746, -1.280639, -0.467799, 0.225527, 0.704658, -1.811950, 0.252413, 1.139279, -0.461804, 1.275409, 1.531644, 0.795347, 0.580419, 0.745464, 0.858649, 0.676112, 0.131382, -0.684164, -0.191336, 0.379843, -0.087554, 0.820696, 1.686524, -0.113226, -0.008035, 0.548109, -0.147544, -0.631111, 0.597068, -0.065515, 0.349485, 0.842227, -1.377857, -1.018725, 1.181294, -0.497171, 0.902685, 1.457999, -1.685141, -1.146413, 0.237137, -0.471157, 2.239570, -0.841215, 0.537012, 0.105813, 0.419670, 1.262526, -0.825573, -0.319996, 0.514645, 1.022644, -0.245500, 1.401732, 0.137622, 1.096113, -0.386344, 0.135761, 0.515783, -0.303785, 0.042243, 0.648488, 0.231282, -0.385912, -1.805604, 0.169719, -0.084000, 1.922627, 0.880066, 1.794085, -0.012218, -0.369052, 0.169733, 1.229249, 0.546774, -1.153349, -0.162112, -0.395439, -0.799835, -0.934362, 0.379754, 1.143776, -0.854335, -0.465476, -0.129304, 0.194105, -0.479547, -0.172307, 0.570265, 0.144661, 0.897203, 1.067333, -0.171449, 1.230701, -0.521839, -0.529737, 0.148736, -0.717064, 0.291837, -2.632122, 2.647436, 0.708961, 0.428708, -1.842660, -2.135876, 0.965447, -1.783203, 0.710079, 1.166904, -0.408116, 0.488993, 0.106535, 0.763684, -0.171735, 0.221046, -1.703968, -0.563011, -1.429563, -0.650974, -0.876201, 0.635325, 1.594456, 1.123131, -0.734087, -0.333893, 0.165535, -1.229982, 0.088228, -1.286999, -1.878592, -0.665636, 0.949814, 2.002466, 1.301372, -1.208860, 1.186290, -0.315561, -0.784986, -0.783045, -0.160142, 1.492897, -0.139057, -0.220124, 0.086398, -3.372561, 1.073421, 0.171393, 1.089487, 1.343760, 0.672042, 1.825138, -0.476072, 3.042275, -0.315788, 0.815354, 0.595959, -1.188119, -0.762317, -0.880267, 1.719976, 1.014601, 0.659368, 0.335869, -0.243646, 0.610776, -0.996865, -0.471263, 1.047923, 1.439167, 0.520818, 1.570329, -0.068086, -0.646972, 0.401265, -0.225824, -1.905432, 0.372691, 1.056847, 0.362449, -0.395691, 0.290200, 1.286069, 0.419890, -0.215639, -0.948611, 1.051324, -1.628543, -0.178035, -0.641380, 1.323620, -2.443933, 1.262372, -1.519546, -0.798928, -0.805421, -0.123867, 0.872316, -1.505693, 0.574153, 0.017660, -0.349287, -0.639374, -0.200385, -2.029329, -2.302649, -0.783666, 0.654354, -2.658243, 1.251016, -0.106872, -2.195074, 0.155139, -1.320805, -0.207960, -0.989584, 1.087116, -0.688379, 0.405956, -0.359556, -0.555725, 0.420931, -1.102275, -1.355091, 0.153878, -0.316535, -0.095558, -0.299016, 0.775489, 0.141287, -0.204345, -0.118941, 0.039299, -0.485611, -0.592696, -0.994134, 0.094326, -1.561734, 0.167129, 1.455357, 0.639588, 0.663504, 0.356364, -0.145230, 1.663015, -0.951385, -0.645525, 1.364940, -0.239877, 0.756187, -0.262879, 1.380013, 1.571304, 1.042977, -0.316306, -0.016299, -0.584617, 0.130968, 0.769290, -1.686567, -0.884075, 0.127944, 0.804433, 0.297289, 1.242926, 0.949061, 1.883114, -0.112831, 0.105122, 0.102241, 1.948179, 0.021827, 0.589759, 0.136672, -1.136392, -1.032745, 0.051008, -0.380643, -2.210566, -0.699576, 0.380231, 1.438732, -0.270174, -0.383435, -1.272785, 2.043159, -0.870828, -2.338278, -1.844778, 0.746975, -1.230290, -1.002257, -2.078463, 1.853119, -0.910829, -0.270036, -1.715081, -0.338202, -0.614883, -0.425491, -0.735518, 0.633470, 0.297810, -0.360796, -0.122611, -0.608419, -1.504582, 0.355186, -0.399242, -0.590992, -0.652033, -0.552218, 2.013478, -0.698620, -0.189950, -0.818127, -0.764823, 1.078019, 2.396269, -0.299505, 0.696984, -0.808472, 0.190950, -1.212633, 1.043719, 0.602868, -0.089388, 0.061692, 0.824064, -0.348082, -1.172253, 0.142974, 1.221284, -0.318246, -0.069737, -0.451380, 0.493433, 0.311425, -0.827212, 0.315756, 1.180425, -0.589397, 1.388996, -0.732194, 0.942442, 1.578300, -0.379549, 1.172463, 2.034979, -0.405942, -1.561896, 0.784890, 0.548668, -0.220109, -0.243668, -0.079107, -0.645614, -1.801148, 0.620777, 0.017744, 1.159341, -0.184901, -0.670137, 0.551791, -2.393059, 0.317979, 1.178799, 0.422720, 1.431991, 0.638591, -1.123644, 0.832713, -1.074586, 0.449156, 0.129873, 0.795875, -0.964696, 0.728549, -0.286222, 0.714366, 0.837298, 0.498846, 0.128404, -1.170166, -0.420597, 0.472304, -1.232533, 1.454803, 0.230409, 0.082428, 0.624540, -0.464645, -0.000915, 0.218237, 1.222162, -1.074255, 0.687082, 1.180105, -0.132165, -0.095443, 0.203219, 0.781170, 1.306183, -0.226083, 0.682511, 0.620491, -0.813432, -0.302646, 0.946222, 2.840906, 0.028700, 1.533162, -0.037276, -0.239754, 0.400961, 0.624923, -1.481543, 0.647345, -1.516621, -1.841342, -0.542951, 0.599887, -0.890403, -0.630342, 1.803004, -1.111105, 0.753599, -0.379072, -0.848904, -0.882156, -0.887099, -0.494679, 0.189248, 0.890949, 0.498730, -0.412214, 0.441821, -0.456395, 1.671962, -0.077532, -0.549207, 1.112935, 0.418469, 0.547161, 0.467275, 0.060746, 1.100012, 0.376833, 0.577460, 0.343832, -1.308718, 0.732842, -1.251363, -1.595083, 1.503064, 1.999101, -0.382579, -0.304532, -0.091495, 0.475582, -0.381950, 0.187116, 1.152055, -0.748732, 0.188938, 0.488012, 0.225913, 0.129863, 1.541680, 2.369422, -0.637973, 0.055969, 0.411817, -0.667355, -3.527637, -0.984312, -1.048900, 0.202127, 0.819740, -1.334814, -0.070994, -2.014429, 0.361486, 1.130946, -1.602990, 0.000375, -1.476401, -0.935506, -0.353213, 1.010574, -0.942318, 0.950611, 0.764468, 0.695908, -0.623897, -0.458631, 1.035566, -1.608659, -1.857964, 0.698215, -0.010384, 0.651333, 1.090681, 1.635870, -2.248759, 2.289357, 1.205925, 1.089136, 0.065225, -1.380599, -0.387291, -0.513308, -1.740715, -0.773301, -1.163052, -0.939172, 0.082578, -1.920769, -0.092279, 0.460818, -2.234457, 0.375061, 0.277873, 1.579771, -0.894758, 0.176911, 0.798657, -1.262394, -0.318567, -1.264222, 1.332434, -1.653745, 1.659940, -1.865237, -2.056912, 0.077004, -0.578130, -2.308095, -0.302860, 0.624086, 1.000560, 1.467000, -0.104386, -1.291158, -2.436184, 0.490167, -0.329805, -1.290207, 0.136893, -0.151299, 1.218869, 0.778693, 0.088672, -0.370493, -0.177106, 0.175202, -0.231248, 0.515380, -1.190236, -0.334552, 0.021026, -0.995821, -1.295010, -1.116324, 0.811160, -0.870292, -1.672778, -0.593456, 1.443441, 0.446948, 0.452867, 1.664361, -1.341895, 0.240986, -0.436342, 1.704268, -1.324615, 0.945221, -2.050392, 2.912199, 0.494053, 1.687847, -0.013021, 0.127526, 1.051579, 1.388188, 1.653286, 0.440886, 0.346153, -0.194893, -1.179121, 0.080471, -1.478681, -0.124384, 0.185349, 0.042733, 0.608128, 1.920044, -0.333860, -0.033559, 1.288794, 0.568745, -0.601229, -1.724765, -0.158642, -0.753548, 0.411068, 1.313829, -0.555419, 0.642677, -1.193577, 0.321132, -0.413717, 0.821574, -1.962753, -2.132265, -0.524618, -0.433854, 0.165799, 0.927373, 1.492068, 0.537762, 0.649336, 0.569878, -0.321524, 0.967405, 0.338689, -0.238759, 0.496493, -2.441943, 1.996752, 0.991112, 0.039014, -1.018100, -2.082364, -1.607005, -0.071409, -0.580939, 1.907665, -0.776569, 2.208256, 0.017919, 1.100528, 0.517153, -0.090844, 1.060116, 0.569297, -0.304519, -0.067431, -0.889586, 0.614484, -0.205404, 0.189071, 1.549247, 1.650078, -1.481414, 0.481248, 0.282041, -0.191443, 0.505036, -0.090998, -2.091541, -1.710783, 0.663430, 0.355174, 0.762291, -0.143409, 1.294493, 0.015476, 0.759706, 0.367099, 0.018843, -0.728650, 0.670583, -1.792846, 1.239986, 1.203303, -0.531529, -0.255791, -0.000355, -0.248994, -0.679766, -0.087303, -0.690944, 2.031164, -0.139140, 1.190683, 0.300215, 0.467673, 0.691671, -1.315433, 0.189585, -2.325052, 0.156303, -1.952984, 0.537005, -0.923529, -0.775256, -0.539709, 1.403758, 0.260577, 0.661433, 0.145085, -0.384894, -1.017240, -1.627399, -1.203338, -1.201718, 1.885988, -2.356426, 0.494031, -0.420237, 0.051255, 0.092339, 1.825015, 1.059425, -1.181145, 0.569534, -0.023212, 0.204816, -0.298683, -0.974444, -0.688290, 0.131769, 0.659427, -0.830690, 0.460499, 1.831640, -1.254516, 1.366628, 0.113751, 0.077125, 0.213675, 0.830589, 2.167343, -0.330955, -3.130218, 0.898353, 0.787544, -0.905263, 0.298872, -0.001970, 0.610958, 0.342370, 1.357600, -0.695130, -1.377497, -0.888876, 0.208488, 0.177307, 0.531810, 0.133495, -0.944870, 1.062205, -0.090498, -1.051363, 1.793358, 1.033854, -0.542087, 0.731653, 0.571691, -0.330579, -1.357541, -0.478325, 0.933061, 1.731145, 2.090360, -1.411629, 1.028173, 0.493643, -1.119598, 0.216493, -0.073794, -0.309202, -0.424162, -1.916224, 0.228828, -0.258099, -1.626322, 0.916342, 0.847263, -0.955396, 0.028673, -1.430828, -0.202529, -0.238464, 1.353451, 0.943183, -0.178260, 1.037155, -1.494147, 0.800795, 1.586948, -0.692738, -1.992311, -0.014793, 0.378782, 0.298682, 0.681722, 1.348960, -1.024274, 0.803142, 1.416649, 1.359811, 0.275028, 0.949459, -1.038998, -0.352822, -0.162785, -0.111768, -2.208667, -0.120801, 0.785123, -1.899193, 0.742753, -0.435845, 0.503526, -0.850572, -0.920864, -0.937710, 0.115942, -0.065955, -1.682792, -1.768431, -0.286779, 0.189624, 1.275929, -0.183378, -0.987214, -1.360563, 1.742706, 2.509756, -0.027711, 0.573839, 0.787127, -1.858311, 1.299002, -0.128850, -0.610663, 0.843929, -0.062417, 0.863325, -0.085206, -0.351954, 1.739607, -2.504574, -0.896298, 1.701456, -0.050931, -1.881217, 1.616482, -0.482369, -1.394796, -0.041055, -0.859732, 0.325654, 0.524310, -1.166517, 0.432988, 0.207665, -2.117461, -1.600686, 0.613088, -0.332504, 1.597860, -0.365008, 0.175404, -0.417082, 0.982976, 0.675928, -0.171601, -0.481248, 0.560674, -1.444848, 0.788258, -0.402086, 0.011922, -1.333007, 0.326771, 0.249193, 0.574481, -0.352502, 1.395494, -0.461596, 0.822688, -1.617339, 0.058780, 0.652375, -0.360354, -2.080351, 0.952601, -0.837369, -1.335315, -0.582457, -0.725704, -0.736837, -0.891244, 0.576048, 1.019237, -1.325011, 0.508911, 0.730365, 0.043901, -1.410119, -0.079602, -0.143578, -0.217001, 1.783046, -0.833245, 0.684810, -0.460381, 0.605139, 0.303966, 0.920487, 0.865388, 0.871592, 0.868629, 2.036801, 1.348196, 0.713841, 0.456392, 1.632854, -0.644074, -1.069048, 0.181974, 0.374629, -0.405599, -0.316621, -1.517407, 0.046311, -0.522704, 0.146426, -0.819076, 0.534937, -0.681408, -1.548025, 1.521171, -1.032147, 0.120204, -0.157576, -0.330034, -1.335280, 1.551339, 1.018876, -1.583021, 0.728387, -2.541262, 0.760436, 0.788721, -0.114877, -0.337016, -0.531941, 1.012118, 1.881705, -0.392592, 0.260281, -1.752325, -1.128482, 0.148766, -0.099091, 0.353457, -0.996570, -0.161375, 0.528342, -0.303480, 1.929400, 0.799600, 0.573743, -1.254646, 1.702658, -0.134820, 1.186657, -1.662686, -1.583298, -0.874662, -0.209792, -0.291872, 1.698716, 2.325266, 0.521890, -1.472887, 1.142520, -1.312554, -1.397017, 0.260880, 0.705056, 0.134479, 1.996535, -1.591174, 0.374104, -0.885840, -0.385429, -0.964313, 0.489072, -0.065803, -1.330338, -0.914240, -0.857496, -0.109447, -0.927463, 1.819203, -0.155816, 0.454896, 0.712746, -0.417292, 0.311138, 0.197462, 1.205566, 0.648917, -0.755831, -2.616862, -0.163157, 1.237701, -1.230158, -0.016490, -0.637669, 0.465496, 0.001832, -0.143131, 0.705141, -1.023242, -1.268311, 0.381315, 0.841478, 0.293367, -0.782445, -0.756819, 0.592478, 0.364340, 0.918993, -1.262358, 0.664348, 0.304306, -0.560838, 0.027819, -0.366784, 1.045292, 1.412022, 0.708641, 2.108564, 1.287159, 0.591160, -0.302547, -0.585347, -0.585575, 0.006980, -0.903736, -1.349664, -0.700131, 1.001958, -2.518805, 0.167720, 0.657626, 0.312682, -1.384503, -1.132080, 0.485172, -1.407931, -0.835635, -1.141446, 0.963320, -1.220829, 1.045625, -1.488148, -0.229424, -1.416775, 0.733098, -1.353227, 1.484108, -1.001539, 0.399988, -2.312788, 0.141654, 0.279016, 0.359828, 0.291394, 0.436174, 0.740175, 0.788727, 0.075608, 0.218465, 0.818498, 0.410584, -0.552661, 0.464544, 1.005693, -1.013873, 1.999746, -0.424312, -0.732459, 1.196663, -1.775183, -1.129266, -0.998833, -0.431410, -0.776909, 0.006672, 0.562266, 0.140724, -0.197857, 0.331699, 0.422590, 0.568836, 0.671404, -0.136716, 1.271331, 0.079040, 1.413950, 0.556110, -0.669662, -0.350413, -0.076738, -1.461412, 1.384252, -0.121194, 0.574469, 0.639011, 1.118204, 0.995114, 0.641265, 0.132009, 0.411010, 1.086222, -0.787708, 0.313102, 1.534390, -1.489901, -2.595364, 0.374673, -1.182831, 1.544350, -0.136823, -0.698017, -0.607790, -0.563755, 0.230661, -0.114301, -0.618625, 0.049853, 0.206117, 0.702277, 0.671852, 1.904894, -0.743612, 1.052593, 0.355758, 0.996889, -0.787670, -0.141536, -1.666204, 1.784780, -0.360527, -0.111677, -1.495615, 1.082809, 0.239898, -0.442906, -0.235109, 1.110178, -0.822740, -0.133057, 0.435325, 0.472139, 0.638112, -0.340802, 0.829507, 0.482909, -0.061095, -1.193948, -0.046133, -0.298780, -0.203912, 1.019176, -0.566364, -1.467158, 1.190117, 0.443801, -0.460225, 0.907993, 0.467284, -1.487065, 2.425051, 0.981015, -1.344281, 0.481750, 0.065548, -1.250557, -0.678110, 0.384018, 0.040002, 1.665672, 1.390966, 0.847474, -0.019644, -0.443412, -0.284247, 0.408083, 0.861682, 0.143609, 0.200291, -0.091713, -0.220923, -0.438046, -0.060802, 1.797990, 0.516717, 0.216150, 1.730818, 0.534644, -0.813614, 2.036968, -1.081348, 0.101518, 0.595408, 1.428694, -0.681440, -0.633095, -0.067956, 0.637223, 0.314772, -1.136123, -1.453235, -0.999856, -0.636267, -0.154853, -0.132758, -0.524910, -0.413373, -0.533090, -0.009956, 0.585465, -0.025168, 0.372844, -0.852343, -0.710855, -0.161087, -0.106839, 1.096798, -0.139601, 0.519056, 0.296049, 0.392487, -0.405439, 0.147789, 0.193749, 1.401156, -0.734772, -0.107948, 1.605380, 0.104968, -0.422602, -0.777041, 0.097238, -0.786663, 0.257706, -1.290495, 1.498422, -1.034299, 0.637373, -1.815397, -2.048041, 1.175819, -1.321941, 0.003204, 0.571317, -0.020497, 0.647902, 1.045323, -0.633302, -0.303898, -0.756791, -0.535225, 0.257244, -1.160991, -1.097740, 0.821813, -1.143465, 0.367682, 0.736349, -0.594280, -0.104580, 1.026055, 0.917265, -0.204418, 0.307431, 1.100862, -1.032685, 0.513092, -0.127439, -1.795178, 0.110245, -0.171046, -1.159945, 0.138175, 1.005968, 0.451161, -0.365544, -0.237846, -1.096985, 1.616921, -0.057506, 0.480996, 0.073631, -1.042372, 0.257152, -1.713247, -0.451949, -1.209089, 0.080691, -1.942874, 2.342692, 2.698232, -0.873547, -0.849517, 0.041467, 0.769473, 0.882044, -0.388577, 1.141990, -0.269912, -0.659595, 0.952904, 1.648635, -1.364752, -0.389308, -0.998666, -1.255390, -0.910889, -1.814911, -1.248577, 0.409798, 0.430065, 0.204084, -0.257947, -0.882907, -0.606953, -0.364158, -0.116928, -1.727485, 1.094589, -1.583883, 0.275217, 1.427145, -0.785385, -0.479235, -1.862024, -0.665783, 0.583499, 0.571398, -0.418106, -2.161863, -1.477446, 0.530406, -0.969047, -1.540887, 1.313533, 0.393603, 0.739096, 0.122418, -1.559744, 1.223960, 0.458846, 1.578485, 0.517954, -0.684393, -0.125996, -0.763663, -0.327630, -0.473866, -0.816504, -0.202052, -0.295117, 0.518002, -0.557734, 0.457844, 0.830280, -0.635566, 1.040560, -0.777955, -0.173942, 1.855183, -1.757794, 0.421589, -0.055937, 0.884173, -1.334001, 0.421763, 0.273419, -0.168015, 0.605136, 1.488071, -0.275083, 0.379397, 0.403700, -0.061764, 0.339857, 0.504642, 1.650509, -0.345053, -0.261294, 0.597117, -0.351792, 0.304133, -0.279741, 0.102362, -1.167461, 0.766256, 0.764644, 0.433666, -0.345296, -0.624376, 1.427717, 2.154486, -0.143827, 1.928755, 0.031296, 0.182007, 1.531425, 0.252431, -1.038667, -1.353779, -0.404474, -1.818243, 0.484782, 1.430379, -1.886377, 2.537169, 0.064042, -0.699539, 2.435627, 0.790189, -0.551094, 0.598359, -0.559784, 0.011286, -0.724970, 0.774402, 0.064860, 0.331265, -0.131036, -1.218105, 0.321921, 0.302713, 0.000870, 0.414696, 0.762788, 0.205052, 0.701044, 0.153276, 0.286723, 1.738822, -1.576476, 0.825534, -0.356657, -0.320160, 0.306882, -1.225395, 0.791589, 0.308400, 0.903629, 1.263457, -0.329563, -0.560733, -0.568888, 0.500984, 0.324989, 1.538370, 0.302471, 0.056957, 0.788040, -2.308721, 0.352296, -0.180490, 0.558103, 1.132525, 0.872064, -1.893678, -0.395341, -0.418926, 0.379508, 1.203501, -1.386672, 0.040549, -0.624092, 0.842019, -1.006843, -1.550552, -2.426134, -0.378154, -0.098406, -0.035565, 1.493141, 0.644917, -1.433892, 1.209951, 2.090833, 1.332629, 0.070709, 0.290186, -0.118776, 0.518135, -0.726204, -1.063034, 2.350941, 0.692363, -1.412961, 0.764082, -0.046269, 0.905475, -0.187353, 1.153199, -0.069834, 0.254013, -0.922581, -1.785706, -0.561326, -0.226021, 1.481277, 0.056705, -0.792192, -0.787747, -0.310655, -0.487953, -0.266872, -1.206300, -0.309148, 0.171846, -0.270655, 1.219158, -1.363111, 0.166464, 0.114144, 0.478354, 1.160402, 0.469235, -0.653176, 0.808511, 0.285775, -0.212631, 0.293289, 1.425705, 0.576202, -1.441844, 0.426328, 0.543491, 1.350556, -0.158943, 1.055269, -0.198036, -0.351125, -1.079552, -1.893802, 0.432161, -0.133249, 0.302658, -0.351570, -1.234667, -0.626159, -0.664196, 1.037593, 1.155569, -0.522709, -1.077202, 1.002297, 0.585420, -0.217901, 0.198175, 0.318026, 1.768833, -1.058664, 1.492809, -0.302124, -0.421800, -0.678741, 1.878892, -0.774489, 0.755585, -0.106241, 0.904974, -0.504471, -0.829184, 0.555512, 0.585367, -0.191608, 1.262370, -0.277712, 1.431052, -0.508953, -1.756781, -0.001432, 0.495361, 0.342478, -0.805958, 0.946354, 0.186571, 1.636587, -0.219186, -0.406737, -1.108580, 0.139791, -0.493492, 0.347928, -1.138091, 0.741415, -0.353863, -1.019975, 0.595426, -0.611289, 1.147716, -1.071537, 0.350685, -0.640571, 1.872764, 0.735030, 1.654490, 0.034209, 0.850442, 0.765857, -0.620457, -0.015989, 2.013378, -0.022775, 0.099577, -0.697340, -2.879510, 0.372183, 0.243963, -0.043717, -1.029111, 0.336166, 0.127513, 0.019005, -1.102317, 0.491639, 1.571659, 2.176620, -0.012573, 2.280913, 1.064391, -0.324564, 0.832812, 0.078775, 0.020725, -0.159046, -0.028331, 0.715936, -0.096145, 0.579009, 0.053481, -0.164582, 2.100804, 0.972980, 1.361413, 2.197529, -0.816555, -0.157454, -0.318873, 1.079657, -0.314151, 0.054441, 0.222260, 1.165442, -0.298025, 0.144725, 0.784585, 0.199756, -1.003200, 0.888169, 0.654144, 0.934175, 0.103473, -0.640708, 1.178961, -0.304657, 0.887440, 2.279331, 0.453346, 0.603411, -0.531799, 0.130137, -0.565762, -0.134563, 1.156452, -0.288235, -0.852428, -0.194860, 0.777655, 0.334638, -0.437264, 1.376237, -0.992949, -1.716769, -1.366388, -0.315270, -0.490887, -0.127992, 0.841555, -0.251131, 0.671576, 0.302325, 1.012264, 0.123762, -0.127324, -0.968504, -1.480337, -0.746352, -0.531919, 1.302861, 0.831615, -0.182994, 1.218896, -0.080928, 0.723429, -1.217126, -1.356633, 1.432953, -1.152604, 0.106947, 1.471100, -0.181404, -3.568440, -0.316173, 0.435846, -1.916468, -1.512657, 0.009091, 0.426266, 2.402625, 1.567715, 1.496022, -1.168769, 1.047770, 0.179737, -0.348029, -1.098742, -2.063512, 1.027799, 1.780596, 0.612523, -1.574373, 2.524835, -1.374561, -0.778436, -0.957637, -2.054949, 0.145749, 0.175394, 0.505519, 0.977582, 0.345112, -2.037111, -0.927995, -1.212412, 0.223951, -0.989434, -1.294394, 0.242332, -1.101422, 0.008829, 2.642361, 0.601457, 0.511484, 1.104965, -0.740049, 1.032274, 1.521340, 0.418595, 0.186579, -0.254883, 1.787646, -1.254245, 2.032933, 1.517695, -3.545144, 1.183899, -0.270412, 0.487055, 1.166276, -0.438415, -1.514135, -0.554513, -0.617940, -1.687389, -0.227842, 0.106053, 2.023804, -0.363783, -0.996351, 1.135031, 0.936972, 0.565574, -0.095137, 1.578855, 0.446448, -1.758693, -0.473102, 0.426665, 0.593770, 0.236990, -0.408046, 0.421205, 1.228682, 0.012840, -0.083265, 0.476912, 0.923252, -0.467840, 1.300762, -0.556500, -1.642052, 1.630240, -0.708485, -0.633587, -0.762091, -0.508881, 0.398978, 0.447225, -0.830081, 2.413004, -0.451778, 0.526217, 0.909779, 1.075033, 0.831975, 0.446355, 0.287110, -0.845184, -1.169920, 1.174785, -2.768360, 0.957603, 0.324926, -1.586653, -0.290031, -0.083768, 0.382290, 1.231667, 0.136754, 0.297569, 0.574737, -1.223524, 0.300898, -1.867978, 0.650859, -0.201653, 0.144520, 0.749572, -0.326839, 0.139823, 0.148926, -0.838488, -0.730101, -0.449120, -2.092322, -1.563825, 1.270334, -0.294818, 0.328440, 2.064492, 0.804310, -0.095004, -0.131517, -0.188995, -0.716594, -0.249630, -0.399271, 0.062273, 0.197774, 1.688540, 0.560332, 1.966268, 1.862716, 1.274138, 0.853900, -0.409317, 1.301466, -1.221812, 0.588668, 0.512362, 1.194384, 0.354985, -1.861071, 0.853644, -1.465980, 0.553109, -0.618291, 0.463894, -0.929551, -1.479010, 1.760136, -0.877305, 0.483413, -0.574642, 1.050095, -0.762708, -0.920617, 1.307727, -0.324027, 0.306300, -0.430994, -0.632565, -0.319898, -1.390639, 0.527508, 1.719242, 0.060705, 0.347969, 0.894917, -0.202357, -0.230826, -0.811858, 2.757146, -0.234030, 0.955649, -0.304265, 1.015319, -1.160955, 0.469541, 0.508901, 0.670137, -0.957369, 1.033738, -0.481820, 0.869655, 0.535868, -0.018482, -1.741288, 0.293051, -1.637447, 0.388526, -0.228709, 0.372566, 2.362631, -2.146944, -0.713169, 0.592027, 0.787872, -0.162650, 1.708984, 1.409063, -1.025890, 0.841282, 0.405074, 0.801964, -0.327892, -1.275438, 0.926400, 1.357385, -0.073323, -0.485023, 0.021156, 0.243930, 0.091909, -0.068057, 1.403117, 0.467883, 1.400371, 0.805564, 1.889632, -0.118338, 1.764054, -0.736752, -1.122008, -0.377373, 0.009527, -1.623898, 0.836203, -0.363454, -0.640454, -1.875459, -1.092256, -1.441671, 1.558256, -0.750560, -0.373675, 0.865361, 1.234995, 1.125266, 0.395811, -0.022773, 0.197167, 0.007381, 0.923891, -0.831439, 0.226626, -1.099458, -0.926198, -1.339785, -1.544265, 0.580473, -0.285662, 2.265238, -0.139878, 0.789782, 0.579527, 0.168491, 0.422958, 0.186334, 0.372643, -0.812192, -2.483223, -0.916413, 0.259543, -0.433709, 0.727875, -0.208566, 0.240940, -1.575465, -1.074365, -0.254755, 0.045610, 0.746528, 0.374914, 1.528220, -0.341982, -2.043488, 1.321139, -2.265050, 1.655388, 0.682077, 0.991440, -0.027207, 1.412758, 0.151436, 0.369345, -0.590194, -1.095364, -4.028951, 0.159493, -0.166382, -0.298497, -0.057245, -0.620391, 0.338155, 0.659787, -0.863450, -0.429374, -0.414803, -0.156152, -0.683025, -1.155642, 0.950042, -1.293040, -1.672338, 0.717449, -2.059910, 1.487892, -1.812863, 0.278829, -0.120026, -0.717550, -0.731674, 0.433853, -1.116572, -0.840175, 2.280801, 0.609194, -0.992410, 1.731396, -0.473380, 0.932571, -1.212812, -0.081151, 1.184658, 0.611622, -0.938133, 0.275685, -0.481444, 0.541503, -0.432204, -0.232005, 0.614604, -1.562121, -1.478809, 0.076820, -0.402272, -0.762268, -0.013962, -0.380914, -1.118065, -0.343008, -1.202855, -0.710815, 0.398142, 1.036885, 0.041031, -2.082236, 1.602139, 0.876305, -1.633099, -0.288876, 0.916554, -1.215253, 1.698726, -1.858373, -1.112238, -0.450475, 1.107043, 0.388873, -1.135089, -0.927723, 0.999405, 0.014627, 1.744954, -0.238647, -0.972019, 0.559564, 1.442079, -0.196181, 0.891297, -1.127344, -0.902923, 1.016003, -2.524766, -1.043598, 1.100892, 0.217631, 1.653156, -0.422902, -0.076812, 1.116328, -0.349129, 0.877345, -0.715883, 0.722114, -1.184385, -0.439747, 0.143207, -0.267721, -0.091531, -1.265011, -1.159084, -0.788831, -0.468603, -0.421225, 1.402885, 1.165097, 0.864080, -1.194031, -0.895374, -0.461266, 0.254826, 0.973134, 0.038159, -0.167948, -1.066567, 0.435731, 0.768859, 1.089454, -0.147396, -1.752767, 0.413201, 0.120852, -0.228817, -0.547546, 1.313816, 0.883920, 0.198701, -0.954609, 0.892256, 1.188296, -0.127875, 0.281723, -0.730584, -0.515162, -0.576808, -0.669400, 0.747251, 0.922279, -0.451017, -1.312547, 0.488410, -0.015164, -0.630987, 0.244804, -0.023600, -0.110172, -1.688636, -1.099755, -1.264311, 0.605284, -1.047630, -2.270113, -1.160437, 0.188070, 0.929694, 1.638460, -0.407882, 0.553695, -0.133639, -0.752260, 0.000383, 0.027980, 0.374554, -0.805770, 0.326732, -0.811344, -1.801671, -0.882372, -0.308596, -0.745292, 0.369921, -0.389137, -0.139044, -0.982609, 0.673312, 0.709306, 0.836314, 2.148085, -0.919646, 0.987193, -0.713852, 1.128606, 1.217113, -0.448392, -2.102051, -0.990894, -0.444901, 0.141034, -1.249807, -1.233114, 1.871157, 0.213236, -1.498692, 0.977776, 1.237016, 0.619078, -0.648968, -0.534807, 1.062609, -0.941795, 0.570307, 2.201882, -0.750764, 1.029423, 0.593815, -0.183899, -0.391740, 0.691329, -2.525548, 0.075094, -0.541265, 0.199680, -0.548531, 0.365055, 0.991206, 0.809004, 0.578658, 0.060022, -0.096914, 0.296141, -0.135291, 0.710508, 0.197356, 0.245742, -1.228728, -1.098207, -2.686509, -1.169829, 0.597920, -0.632502, -0.139874, -0.400868, -0.011230, 0.599821, 0.382221, 0.048743, -0.525958, 1.026595, 0.601787, 1.415860, 0.129519, 0.708026, 0.435735, -2.330690, -0.389387, 0.776127, 0.584931, 2.257942, -1.515005, -0.511448, 0.303596, 0.595484, 1.656856, -0.771827, -0.994817, 1.422932, 1.332034, -0.149090, -0.265294, -0.397469, 0.379033, 1.694423, 0.447997, -1.570153, -0.089158, -0.086017, -0.967446, 0.067988, 1.695774, 0.701273, 2.164411, 0.463189, 0.903775, 0.511064, -0.401185, 1.571891, -2.644824, 0.016108, -1.617177, 0.322496, 0.000156, -1.160804, -0.139238, 0.773385, -0.098137, 0.260448, -0.053990, 0.698565, 0.577274, -0.294196, -0.941537, -1.247872, -1.111137, -1.100471, 0.323913, 1.138807, 0.514017, -0.239844, 1.716664, 0.955563, 0.086412, 0.091778, 1.886840, -0.134974, -0.412190, -1.321164, -0.014370, 0.441097, -0.275041, 0.776471, 1.532128, 0.009101, 1.068483, -0.324029, 0.726338, -0.363590, -1.251564, -0.151983, -1.621185, 0.603166, 0.472064, -1.021529, -1.300062, 0.117378, -0.221013, 0.826730, 0.258223, -1.540108, -0.299465, 0.389069, 1.826519, 1.375158, -0.610503, -0.640270, -2.128700, -1.361019, 0.304397, 1.268630, 1.982280, 2.374999, -1.582392, -0.859749, 0.202352, -0.311795, -0.123896, 0.191879, 0.058069, 0.558738, 0.520384, 0.004194, -0.602771, 0.142611, -0.054142, -0.357365, 0.969687, 0.361977, -0.196208, 1.106786, -0.627201, -1.801704, -0.782003, 0.155789, 0.041914, 1.272822, -0.090475, -1.188388, -0.233435, -1.427323, 2.346176, -0.142670, -0.266223, 0.008481, 0.723429, -1.186255, -0.008313, -1.798804, 0.570339, 1.121206, -0.364187, 0.054683, 0.422579, -2.383863, 0.265590, 0.846815, 1.370411, 1.080774, -0.085602, -0.474165, 0.257208, 0.617063, -0.582138, 1.476125, 0.650199, -0.733512, -0.556780, 0.028073, 0.408167, -1.229586, 0.676080, -0.981668, -0.143881, -1.260435, -0.672088, -0.400708, -0.762909, 0.841157, 0.584557, 0.514956, 1.394566, 0.871759, 0.435483, 1.880680, 1.308004, -0.430115, 0.690599, 0.741397, 0.758247, 2.519149, 0.634506, -0.317702, -0.560100, 0.300683, 0.412415, -0.188594, 0.221788, 0.763854, 0.138656, -0.309080, -0.223011, -1.008753, 1.995117, -1.077216, 1.147962, -0.118815, -1.661076, 1.628467, 0.283830, -0.556320, 0.478977, 0.191957, 1.100823, 0.210399, 1.011432, -0.092414, 0.659339, -0.723105, -0.415904, -0.033294, -0.897675, -1.369242, -0.355525, -1.128827, -0.753842, -0.125666, 1.182246, -0.477374, 0.802720, -0.339999, 0.507273, -2.108042, 1.246653, -1.355852, -0.072143, 1.443943, 0.960883, 2.195333, 0.602771, -0.970382, 0.647908, 0.128111, 1.487054, 1.909764, 1.827573, -0.343491, -0.326354, 1.239794, -1.149675, -0.388032, 0.474306, 0.931638, -0.165641, 0.302087, -0.050422, -1.193716, -0.732192, 0.660223, -0.639095, -0.872254, 0.949212, 0.575310, 0.867402, 0.522579, 0.407141, -1.567226, -0.792121, 1.232461, -0.077620, -0.046321, 0.421619, 1.094008, 0.829440, 0.212569, 0.523233, 0.873317, -0.599018, -0.787512, 0.913969, -1.591831, 0.360243, 0.088424, -0.626259, -0.550966, -0.004342, 0.285390, -2.558359, -0.298232, -0.596415, -0.584835, -0.399839, 0.145515, 0.553095, -0.391628, -0.534985, 0.407951, 1.708183, 0.883380, 0.049504, -0.461170, -1.496085, 2.129611, 1.130048, -0.381561, 0.184587, -0.020660, -0.257374, 0.792080, -1.234028, 0.520797, 0.656905, 0.857286, 0.021623, 0.608729, 1.949707, -0.081103, -0.291643, -2.045269, 1.410216, -0.762949, -0.374732, 1.181215, 0.858358, -0.084233, -2.348849, 0.000924, 0.376552, -0.658585, -0.636248, -0.728522, 0.990217, -2.061188, -1.423783, -1.120863, 0.137497, 1.061472, 2.002100, 0.309031, 0.922598, -0.642286, 1.010850, 1.215770}, - { 0.506871, -1.028086, 0.333454, -1.819913, -0.932727, -0.734647, 0.436107, -2.435479, -0.102241, -1.142667, 0.344360, 0.493277, 1.356089, -0.638260, 0.525237, 0.191718, -0.384910, -0.100187, -1.245053, 0.817766, 0.073222, -0.900262, -0.809003, 1.168447, -0.341697, 0.110161, 1.084642, -0.207496, 1.277462, -0.495653, 0.506607, -1.644226, 0.101372, 0.951081, 0.714621, -0.213582, 0.416974, 0.267479, -0.558939, 1.162816, 0.595401, 2.163417, 0.128427, -0.988476, -0.779671, 0.651281, 1.248581, 1.208375, 0.783666, -0.518446, 0.918311, -0.837449, 0.817109, -0.848641, -1.517951, -0.653286, 0.857924, -0.550692, 1.739208, 0.525253, 0.876505, 0.053974, 1.003027, -0.348235, 0.432844, 0.330946, -0.872178, 0.193459, 0.873235, -1.114055, -0.474327, -0.350354, 0.564311, 0.702254, 1.388021, -1.034526, -2.131092, -0.179557, -1.019807, -0.863690, 1.087397, -1.333162, 1.035943, 0.232971, 0.235359, 2.487620, -2.392188, -0.491525, 0.057287, 0.111865, 1.159882, -0.291180, -0.610021, -0.926663, -1.293061, 0.457060, -0.210178, 0.146676, 0.055559, -2.348365, -1.118778, -0.561984, 1.968548, -0.924064, -0.277752, 1.962906, -1.413839, -1.280119, 0.365970, 1.126217, -0.818652, 0.293583, -0.429567, -0.800594, -0.613970, -0.435983, -0.518738, 1.398532, 1.074233, 1.203743, 1.224673, -0.073099, 0.472020, 0.866863, 1.174188, -0.365996, -0.328835, -0.838208, 1.231001, -0.977838, -0.924533, 1.105622, 0.119830, 2.386402, 0.014295, 0.259958, 0.578555, -1.384730, 1.941279, 1.256005, -0.582506, 0.528746, 1.083225, 0.345880, 1.191796, -1.093438, 0.416329, -1.044629, 1.157839, 0.190983, -0.535723, 0.315568, 2.768559, 0.229484, 0.530878, -0.070951, -0.472648, -1.314054, 1.251120, 0.065611, -1.787489, 1.533268, -0.143985, -0.083775, 1.695184, 0.781711, 1.401290, -1.462094, -1.498528, 0.818587, 0.232110, -2.752134, 1.074952, -0.265990, 0.027901, -0.326848, -0.266229, 0.394909, 1.286935, 1.903423, 0.856421, -2.996159, 1.053779, -0.133058, -0.417529, 1.325012, 0.829651, -0.157210, 0.483997, 1.605611, -0.363794, 1.154716, 0.907180, 0.689966, 1.813809, 1.167121, -0.880650, -0.829636, -0.610522, 0.666763, -1.207582, -0.502017, -0.035137, -0.252211, 1.918513, -0.735611, -1.137445, -0.018183, -0.072106, 1.910286, -2.254370, -1.206579, -0.390499, 2.195765, -2.016397, 1.479767, 0.373619, -0.207920, -0.121880, 0.800550, 0.960348, 1.111823, -0.144936, -0.561242, -1.075166, 0.575082, 1.688228, -0.554783, 0.056927, -0.242473, 0.998442, 0.757760, -0.598126, 0.219568, 0.291908, -1.253682, -0.315116, -1.430570, -1.295462, 0.981643, -0.911552, 2.184510, 1.388381, 0.680599, -0.128096, 1.229210, -0.296642, 1.051676, -0.737744, 1.661701, -0.158732, 0.233756, 0.642761, -0.014594, -0.125602, -0.113192, -0.259449, -0.128961, 0.041865, -1.263608, -0.275140, -1.805762, -0.974947, 0.689844, -0.093764, 1.393099, 0.139042, -2.776862, 1.327671, -0.891649, -0.306699, -0.056004, 0.371399, 2.118679, 0.756505, 0.530864, 1.945587, -1.016823, -2.678065, 0.886110, 1.478257, -0.021938, 0.670166, 1.511554, 0.257807, 1.080266, 0.085661, 0.475338, 0.619186, -0.784234, 0.244970, -0.633055, -2.021925, -0.157997, 1.498005, 1.403562, -0.525906, -1.365122, 0.090063, -0.523221, 0.406834, -0.196108, 2.293954, 1.449968, 1.096979, 0.221007, -1.271333, -0.299820, -0.156128, -1.472537, 1.473026, 0.429491, 0.361121, -0.837088, 0.827901, 1.341356, -0.269251, 0.523660, -0.229372, -0.742076, -0.908911, 0.166586, -0.635219, -0.251923, 0.621899, -0.033928, 1.182387, 1.154744, -0.155309, 1.106757, -2.055408, 1.394407, 0.949440, -0.802971, 0.922736, 1.729809, -0.354811, 0.069899, -0.206281, -0.291407, 0.229849, -0.760588, -0.617826, -0.919752, -0.052122, -1.800281, 1.319551, 0.099214, 0.530939, 0.406997, -0.507261, 0.650796, -0.846924, 0.672875, 0.776650, 2.675063, -0.376680, -0.388394, 0.350965, 0.933035, 1.701591, 1.521972, 0.895261, 1.050842, 1.440968, -0.574800, -1.059955, 0.975209, 0.989358, -0.342347, -1.632231, 0.677422, -0.553473, 1.199497, -1.325147, -0.592882, 2.101669, -0.454906, -0.908048, 0.248221, -0.159892, -1.605081, 0.325971, 0.324244, 0.084135, -1.540794, -1.990782, 1.635770, 1.414592, -2.063030, -0.327807, 0.347032, 1.708667, -1.981109, -0.820924, 1.699660, -0.257613, 0.418403, 0.583817, 0.591380, 0.369215, -0.062806, -0.486724, 0.112751, -0.210611, 2.228692, -1.228723, 1.476886, 0.394358, -0.494808, 0.179041, -1.474099, -0.265910, -0.107076, 0.634432, 0.116593, 2.213573, 0.133815, 0.198002, -0.228198, -2.432275, 1.383376, 0.584339, 1.779321, 0.515977, -1.095016, -1.850108, 1.844631, 0.886836, 0.043783, -0.809067, 0.340003, 0.760413, 1.594715, 1.620687, -0.382691, -0.692038, 0.153532, 0.306218, -0.175919, 0.594845, -0.098605, 0.362574, 0.457859, 0.079462, 0.611952, -1.281256, -0.281107, -1.356612, 0.209347, -1.704631, -0.444404, 0.149201, 0.185288, 1.238491, 0.644852, 1.037144, 1.294864, 1.172776, 0.236729, -1.648224, 0.121968, 0.464514, 1.458154, -0.361933, -1.028064, -0.584922, 0.681206, 1.354488, 0.330542, 0.371674, 1.762697, -0.392456, -0.351427, 1.375817, 0.229419, 0.401568, 0.607066, -0.147476, -2.140150, 0.940149, 0.180005, -0.204660, -0.061595, 0.853025, -2.095792, 0.374727, -0.670594, -0.586398, -0.352146, -1.959643, -0.130573, 0.188901, -0.050050, -0.245464, -0.100226, -0.336154, 1.337047, -0.022380, -0.206537, -2.316825, 1.811419, -1.213860, -0.086513, 0.907867, 0.504951, 1.552537, 0.731573, 0.359746, -0.295048, -0.319915, -0.956043, 0.231407, -1.471618, 0.879083, -0.517082, 0.989525, -2.106552, -2.004617, 0.579055, -1.063423, -0.687609, -0.487427, 1.725849, 0.215699, 0.331319, 1.364488, 0.023214, 0.939430, 0.313982, -0.172831, 0.551678, -1.424885, 1.575445, 0.611882, -0.573376, 0.021266, -1.169879, -0.910127, -0.116495, -0.836225, -0.886003, -1.668261, 0.232375, 2.032125, -0.784490, -0.185926, 0.415972, 1.294493, -0.842082, 0.493804, 1.545032, 0.017830, -1.348155, 0.019232, -1.079451, -0.432134, 0.337105, 0.069256, 0.795754, -0.913074, 0.800524, -0.690408, -0.932996, 0.439641, -1.472380, -0.830286, 1.298978, -0.143003, 0.394168, -0.027879, -0.594239, -0.554857, -0.489994, 1.941572, -0.843086, 0.317650, 2.585401, -0.616249, -0.323175, 0.143159, -1.212935, -0.945922, 0.702520, 0.129841, -0.157044, -0.278909, 0.774934, -1.450155, 0.500172, 0.919218, -0.918897, 1.549385, -0.876927, -0.522283, 0.621508, -0.950915, 0.498941, 2.595968, -0.439244, 0.792227, 0.563457, 0.974904, 0.630945, 0.231264, -0.316774, -1.000644, -0.165804, 2.867201, -0.038242, 0.198213, -0.137874, 1.900393, 0.581758, -0.416139, 0.042761, -1.273061, 0.320319, -1.478072, -1.566672, 1.625317, 0.921591, -0.442340, -0.594859, 1.362286, -0.595977, 0.842920, -0.838669, -0.030282, 0.682832, 1.626037, -0.571340, -0.072957, -0.143661, 0.424387, -0.954722, -1.810794, 0.852989, 0.453505, 0.494626, -0.293041, 0.106772, 0.367856, 0.659164, 0.049241, 2.415543, 1.293567, -0.259524, 1.171583, 0.963811, -0.538546, 0.582951, 0.080358, 1.011190, 0.234570, -0.906878, -0.385064, 0.284654, -0.563148, 0.841669, 0.052451, -0.471298, 0.625580, 0.413415, 0.639706, -1.003508, -0.841501, -2.666129, -2.569904, -0.054244, 1.332208, -1.322868, -1.716580, 0.480922, -0.346452, 1.401289, 0.168639, -1.664780, 0.097196, 1.241899, -1.171405, 0.307442, -0.046475, -0.200474, 1.518368, 1.661219, 0.709184, 0.076947, 0.309252, -0.112947, 0.857385, -0.773066, 0.251622, -0.293660, -0.150191, 1.066686, -1.313290, -0.380943, 1.175184, -1.119341, -2.330105, 0.091631, 1.811531, 1.816462, 1.323631, -0.248926, 0.519820, -1.497895, -1.427420, -0.894503, 3.141955, -0.782951, 0.720175, 0.297401, -1.202899, 0.403146, 0.268448, -0.440790, 1.277633, -0.404780, -0.922715, -0.315402, 1.040566, 0.284810, -1.648353, 0.310636, -0.515322, 1.432741, -0.203496, 2.212134, 0.541273, 0.799907, -0.881617, 0.498619, -0.852932, -0.606683, -0.412065, -0.174265, 0.525445, 0.735102, 1.053567, 0.856562, -0.699227, -1.290829, 1.154974, 0.098077, -0.317221, -0.044988, -0.478438, -1.559106, 0.478874, 0.842738, 0.990144, 0.204637, 0.069872, -1.196687, -0.336675, -1.453377, 0.959646, -0.453675, -0.953995, -0.792530, 0.179286, 0.456367, -1.993210, 1.252418, 0.996201, 1.040510, 0.256077, 0.048956, -0.061825, -0.508976, 0.110576, -1.091321, 0.366939, -1.964138, 0.288748, -0.010288, -0.052438, -0.657884, -0.591872, -1.722020, 0.106935, 1.274984, -0.731850, -0.977478, 0.834308, -0.218229, -1.657773, 0.391947, 1.512284, 1.293613, 1.391057, -0.229947, -2.463298, -0.697818, 1.620220, -1.891001, -1.342276, -0.916236, -0.287045, 2.447347, -1.608303, -0.632753, -0.701817, -1.046284, 0.835508, 1.410092, -0.806470, -0.654273, -0.312000, 0.018473, 1.503586, -1.450711, -1.484290, -1.073414, 1.732454, 0.057267, -0.586281, -1.847580, -0.792489, 0.167536, -1.171918, 0.846681, 0.773065, 0.157679, -0.092978, -1.494971, 1.379326, -0.940499, 1.205699, -1.481086, 0.506050, 0.971329, -0.124867, -2.097896, 0.931591, 1.240504, 0.373941, -1.255740, -1.290441, -0.503910, -1.802223, 1.098247, -1.060801, 0.490538, 0.666955, -0.550195, -0.652218, -0.416328, 0.873299, -0.155807, -1.088966, -1.060395, -0.813621, -0.890119, 1.854597, 0.201048, -1.145748, -0.842745, -0.754172, 0.280163, 0.670149, -1.529600, 0.845964, 0.776126, 1.751540, 0.929870, -0.916049, 1.418379, -0.711054, 1.211871, 0.820014, -0.275866, 0.529241, -0.499945, 0.889727, 0.330485, -1.385394, -0.624781, 1.727812, 3.236132, 1.263788, 0.821377, 0.517941, -0.747952, -1.103399, 0.149550, -0.411932, -1.044878, 0.896470, -0.982389, -0.235136, -0.076455, 1.380224, 1.285976, -0.677620, -1.571596, 1.031534, -0.920591, 0.670592, -1.957642, 1.024900, -0.227494, -0.360212, 0.587193, -0.668121, -0.419393, 0.383979, -0.056639, 0.308851, -1.047747, 1.170383, -0.520963, 0.553909, 0.582051, -1.079941, 2.551904, -1.720110, 2.643331, -0.247719, 1.161635, -0.216542, 1.761458, -0.034812, -0.536079, 0.237921, -1.414752, -1.301362, 0.417568, 2.041728, 0.660027, 0.545726, -1.126332, 0.560860, 0.585227, 0.801462, -0.431444, 0.118115, -1.832895, -1.315447, -0.575500, 1.294888, 0.409696, 0.459431, 1.627473, -0.705610, 0.918548, 1.310587, 1.117737, 0.876004, -1.538982, -0.005994, 0.611343, -1.045217, -0.046796, -0.083676, 0.059462, -1.695141, -0.462115, -1.011114, 0.053949, 0.818080, 0.086923, -0.357674, 1.588792, 1.154733, 0.354007, -0.482375, -1.001638, 0.347242, -0.820048, -0.995227, -0.365395, 0.028502, 0.741760, -0.500802, 1.051582, 1.328797, -0.409088, 0.250948, -0.241273, -0.058813, 1.290199, 1.573330, -0.307897, 0.593547, 1.267628, 0.479333, 0.345604, 0.158933, 0.480968, -0.131331, 0.819696, -0.724365, 0.271693, 0.740934, 0.201645, 0.422690, 0.549102, -0.194907, 1.745630, 0.481871, -0.068105, 0.640891, -1.529325, -0.582696, -0.199383, -1.016337, -0.795540, -0.889001, -0.159208, -0.568989, -1.718636, -0.676042, -0.738582, -1.321692, 0.361849, -1.310735, -0.208890, 0.410868, -0.887178, 0.099447, -0.764170, 0.039897, -1.117652, -0.800166, 0.655029, -0.930351, 0.168240, -0.106752, -1.621915, 0.817746, -0.248909, 0.386667, -2.155398, 2.413433, -1.077559, -0.980679, -0.980901, -0.220881, 1.029266, -0.053464, 0.278127, -1.489136, 0.085160, 1.144071, -0.040595, 1.110302, 0.306260, 1.092719, -0.904907, 0.425772, 1.542143, 1.568737, 1.742242, 0.236294, -2.103586, 1.186467, -1.336452, -1.704430, -0.264710, 0.956143, -1.277454, 0.909651, -0.709555, 0.441285, -2.492730, 0.578628, -0.039776, 0.932590, 0.342762, 1.017311, -1.949276, 0.902927, 0.806446, -0.767128, 1.004084, 0.523543, 1.647147, 0.481824, -0.513073, 0.197556, -0.799432, 0.778539, -0.598990, 1.147692, -0.676291, -1.341436, -1.129938, 0.149855, -0.500207, -1.425462, -0.915792, -0.997488, 1.412546, -1.360756, 0.420496, 0.531553, 0.579871, 1.475505, -0.647488, 1.249395, -0.113180, 1.187444, 0.718361, -1.315768, -0.642989, 1.813761, 0.252616, 0.703685, -0.096955, 1.039348, 0.280344, -0.055094, 1.657718, -0.938784, 0.172565, 0.067420, 0.789561, -0.633658, 0.509149, 0.281715, 0.089393, 0.855006, -0.724415, 0.879228, -0.787023, -0.184318, -0.109537, 0.358242, -0.286756, -0.050717, 1.765066, 1.884827, 0.101998, 0.224162, -1.903940, -0.986853, 1.109637, 0.398010, 1.863332, -0.787027, 2.025484, 2.446731, 0.319619, 1.063879, -0.947871, 0.849518, -1.517322, -1.093576, 1.846027, 0.387379, -0.733536, 0.482120, -1.820065, -0.074766, 0.099638, 0.431822, -0.588051, -0.059725, -1.470170, 0.542445, -2.095173, -0.412288, -0.490622, -0.020717, 0.754266, -1.085695, -0.027239, -0.000256, -0.141635, 0.051191, -1.285789, -0.026179, 0.930485, 0.342043, -0.500810, -0.397122, -0.123563, 0.369116, 0.358340, 0.400340, 1.155835, 2.169096, -1.972283, -0.305014, -1.458149, -0.428184, -1.232554, -0.204267, 2.251776, 1.058856, -0.007572, 2.085565, 1.271874, 0.395161, 0.545344, -0.272638, 0.502239, -0.465174, -2.652681, 1.612404, 2.123525, 2.777124, -0.455072, 0.673251, -1.416709, 0.618070, -0.437798, -0.926230, -0.746872, 1.535608, 2.212188, 0.331347, 2.924891, -0.192770, 0.603248, -0.256141, -0.187339, -1.137936, 0.948356, -0.330431, 2.454799, -0.510886, -0.497687, 0.322173, 0.287284, -0.079310, 0.750227, -0.084722, -2.814213, 0.164766, 0.678554, 1.249843, 0.186978, 0.405097, 0.446662, 1.532967, 1.719244, -0.415792, 0.552896, 0.499597, -1.112121, 0.296269, -1.678740, 0.177937, 1.875700, 0.460890, 0.274979, 0.237006, 1.640100, 0.250203, -0.925616, -0.308156, -0.133147, 0.179228, -0.407543, -0.548646, 1.004794, -0.183196, -0.013951, 0.000581, -0.284944, -1.678542, -0.703226, -1.326370, -2.487555, 0.394824, 0.910227, 2.095461, -0.701369, -0.641264, 0.882170, 0.751649, -0.176613, 0.232415, -0.512985, -0.137294, -2.181886, -0.191429, -0.500312, 0.480463, -0.406384, 0.784873, 0.790667, -0.790792, -1.044979, -1.223992, -1.360119, 0.770312, 0.133672, -0.598479, -1.481717, -0.302640, 1.508606, -0.960015, 1.860304, 0.588767, 0.261833, 0.127649, -1.229028, 0.062990, -0.669371, 0.254091, 0.597324, -0.521907, -0.210969, -0.213732, -0.302381, -1.999495, 2.120083, -0.143616, -0.549552, -0.336638, -0.007274, -0.404452, 0.372276, 0.783185, 0.754677, -1.840979, -0.145493, -0.374200, 0.601742, -0.878945, 0.528481, -0.199148, 0.390582, 1.160950, 1.456968, -0.143279, 1.509058, 2.154591, 0.910885, 0.151467, -0.953222, 1.432171, -0.068581, 1.677911, 0.201722, 0.225224, -0.025024, 0.004803, 0.414296, -0.224015, -1.830733, 0.703402, -0.521498, -1.002795, -0.137668, -2.482194, 0.496311, 0.619543, -1.870157, -0.178087, 0.770708, 0.156051, 0.308312, -1.246587, -1.880291, 1.272365, 0.455820, 1.347884, 0.372269, -1.626357, 1.395024, -0.059604, 1.363501, -0.380455, -0.109333, -0.093111, 0.837738, 0.572406, -0.691148, -0.913825, 0.180630, 1.637246, 0.854042, 0.070308, -0.400941, 0.569554, -0.022394, 1.708702, 1.163423, -0.926487, -0.548629, 1.106915, 0.126070, -1.102774, 0.735142, -0.090377, 1.252778, 0.583071, 0.430026, 0.712146, 0.898740, 0.934713, -0.761003, 0.827986, -0.403717, 1.472393, 1.115206, -0.431013, -1.113927, 0.207012, 0.793702, -0.112140, 1.782927, 0.083311, -0.674532, 0.836910, 0.893381, 2.285878, 0.407556, 2.638236, 0.133887, 1.704314, 0.631884, -0.436137, 1.009384, -0.220273, 0.428627, -1.281090, 0.258248, -1.312715, 1.677697, -0.003655, -0.077159, 1.091310, 0.218095, 1.335132, 2.203062, 0.031074, 0.219608, -0.406351, -0.138634, -0.894790, 1.217463, -2.464502, -0.449169, 0.765943, 1.738895, 0.503656, 0.806471, 0.947300, 0.751978, -0.947777, -0.779963, -0.042770, 0.153708, 0.263995, 0.574917, 0.240454, 0.048193, -0.153488, 0.995589, -0.473756, -0.891060, 0.324455, -1.332687, 0.796229, -0.649612, -0.560629, 0.439378, -0.454064, -0.305545, 0.972624, 0.976789, -0.169617, 1.229982, 0.296208, -1.374517, 1.927219, 0.536131, -0.437695, 0.505251, 1.491130, 1.868266, 0.460997, -0.420729, -0.336885, 0.628547, 0.329609, 0.853064, -1.465502, 0.641196, 1.004532, -0.398041, 0.725100, 0.921336, 0.724147, -0.449764, 0.547855, 0.994646, 0.181740, -1.043676, 1.128018, 1.018493, -0.814496, 0.535093, -0.973439, -1.348941, 0.784595, -0.850829, 0.165486, 0.701197, 1.171839, 0.322300, -0.513352, 1.180496, -0.256156, 0.146038, 0.287136, 1.320017, 0.209384, 0.459464, -0.514783, -0.061917, -0.165566, -0.337388, -0.488494, -0.323833, -0.498187, -1.132023, 0.630765, -1.375017, -1.528158, -0.631622, 0.353248, 0.278390, -1.728644, 0.967450, 1.915133, 0.008400, 1.120531, 1.148627, 0.283694, -1.218961, 1.191173, 0.313243, 2.628294, 0.014973, -1.578803, 0.510189, -0.459030, 0.417873, 1.328510, 1.001685, 0.435731, 2.473753, 0.342514, -0.196086, 0.075623, -2.500268, 0.869280, -0.308600, -0.850861, 0.496634, -0.803739, 1.857542, -0.715025, -0.460637, -0.145001, 0.260115, -0.536407, -0.110595, -0.336350, 0.714081, -1.563972, 0.607812, -0.225697, -0.862958, -0.800225, 0.533645, -0.972355, 0.837920, 0.966941, 0.370413, 0.885577, -0.974826, -1.263638, 1.061987, -0.552872, -0.619585, 0.648594, 1.505130, -1.654396, 0.686558, -1.649517, 0.311883, -0.501729, -1.694383, -2.224716, 1.287914, -1.110329, 0.400074, -1.341282, 1.511002, 0.302405, -0.203600, -0.247756, -0.541213, -0.478103, 0.763005, 0.571285, 0.348176, 0.190957, -0.609966, 1.132619, -0.056162, -0.629209, -0.665975, -1.649907, -0.019061, -0.804076, -0.740870, -1.081288, -0.581413, 0.146947, -1.049989, 0.851972, -0.684561, 0.309312, 1.450863, 0.534242, -1.257457, 0.163640, -1.321139, 1.871381, 0.204001, 0.225022, -0.006182, -0.871379, -1.544991, 0.345622, -1.048773, 0.332245, 0.709824, 1.047056, -1.737401, 1.776759, 0.686156, 0.452645, -1.342992, -0.653955, -1.555712, 2.745269, -0.672848, 1.377458, -0.581897, 0.767704, -2.187953, -1.319155, 0.263353, -0.938119, 0.671757, -0.070144, -0.265803, 1.457119, -1.071312, -0.250789, 0.885817, -0.010378, 0.295291, -0.266068, -0.077381, 0.935330, 0.406207, 0.974234, -0.241043, 1.084916, -0.653807, 1.761725, -0.885310, -0.344039, -0.633939, -1.319513, -1.490815, 0.854836, 0.108802, 1.546312, 0.975535, -0.937013, -0.794646, -0.600795, 0.801212, 0.592837, 0.283805, 1.205427, 0.754122, -0.563656, -0.293502, 0.155604, -1.031581, 0.154729, -1.222623, -0.103622, -0.625553, 1.045250, -1.131021, 2.464154, 0.937471, -1.266288, -0.188779, -0.275916, -0.497747, -0.127946, -0.709713, -0.599648, 1.025313, 1.191717, -0.613292, -0.334053, 0.689072, 0.021405, -0.426098, -1.287400, -1.174470, -0.955824, -2.391423, -1.559399, 0.986952, 1.247572, -0.582415, 0.457641, 0.403906, 0.564281, -1.600985, -0.247129, 1.996557, 1.701653, 0.111502, -0.687072, -1.600166, 0.846035, -1.001467, 1.884078, 0.227117, 0.535211, 1.351557, -1.621079, 0.597410, 1.692688, 0.285438, -1.731304, -0.564751, -0.458676, -1.435193, -0.423758, -0.507657, -1.468365, -0.090999, -0.767928, -0.333034, -1.404603, -0.445295, 1.214692, -0.663413, -1.544612, 0.476879, -0.713801, 0.787993, 1.315051, 1.674923, -0.696790, 0.653380, 1.209520, 1.809957, 0.145681, 0.866202, -1.198370, -0.738158, 0.197560, 0.564865, 0.829181, -1.157142, 1.475927, 0.122292, -1.119002, -0.549447, 0.362558, 1.420274, -0.315410, -0.413908, 0.089396, 1.315787, 2.040618, -0.570274, -0.995665, -1.415478, 0.149018, 0.812447, -0.451894, 0.088294, 1.773157, 0.506789, -0.768359, -0.539299, 0.918118, 2.742515, 0.246748, -0.319611, 1.392044, -2.421969, -0.800373, 1.661154, 0.276272, -0.980296, -1.387524, 0.505219, -0.066690, -0.265554, 2.174703, 0.184386, -1.066870, -0.477847, -1.485337, -1.160334, 2.134926, -1.108147, -0.375237, 0.675928, -1.354667, 0.333366, 0.499028, -0.264162, 0.071411, 0.895376, 0.109540, -0.587700, 0.424386, -0.485216, 0.339988, 1.186576, -0.710255, 0.268619, 0.069845, 0.257942, 1.135555, -0.025192, 1.194465, -0.771367, -1.110150, 0.524895, -1.592030, 0.319311, -0.801286, 0.856355, -0.378300, -0.909329, -0.279168, -0.224338, 0.643724, -0.746465, -1.286630, 0.331874, 1.984558, -1.038907, 0.240234, 1.425839, 0.336086, 0.702880, -1.689978, -1.613898, -0.185241, -0.091918, 0.355665, 2.165458, 0.030535, 0.260799, 1.165721, 0.802152, -0.179855, 1.475334, -0.753776, -1.268127, -2.253018, -0.014508, 0.231118, -1.091745, 1.708748, 0.356360, 1.737976, -1.762605, -0.727196, 0.464652, -0.712995, 0.756724, 1.541533, -0.625384, -0.701337, -0.589535, -0.879455, 0.457790, 1.933675, 1.397282, 1.279628, 1.300772, 1.314083, -0.613075, 0.931141, 0.309561, -1.774472, 0.318761, 1.524575, -0.626034, -0.492233, -1.701324, 0.875026, 0.342994, -0.236374, 2.670813, 1.826012, 1.016830, -0.000991, 1.344566, -0.794488, 0.702906, -0.022783, 2.516826, -0.179120, -0.689675, -0.195425, 1.208217, 0.888653, -0.924768, 0.527770, 0.325938, 0.029111, 0.155565, -0.010599, 1.916196, -2.021047, 1.168798, -0.543831, 0.575642, 0.583487, -0.779686, -0.006324, 0.280509, 0.910827, 1.495097, 0.155135, -0.710840, 0.643256, -0.733887, -1.491193, -2.241921, -0.657447, 0.471319, 0.622343, -0.301092, -0.365548, -0.111016, -1.228983, 0.768110, 0.079455, -0.428603, -1.494595, -1.007126, -0.695683, -0.629224, -0.483811, 1.317885, -0.667013, -2.072384, -0.789599, -0.289670, 0.539358, -0.276089, -0.245423, -0.797629, -0.748536, 1.538998, 0.456474, 0.109480, 0.700305, 0.209454, -1.753698, -0.199737, 0.366180, -0.141180, -2.086135, 0.409999, 0.092900, 0.577046, 0.080824, 0.447036, 0.181249, 0.275332, 0.732036, 0.331610, -0.085078, -0.902146, 0.011851, 0.537836, -0.713226, 0.105185, -0.499172, 0.994670, -0.615682, -1.233502, -0.808508, -1.370478, 0.946874, 0.237686, -0.347345, -0.751645, 0.218581, 0.476560, -0.802249, 0.334654, -0.358024, -0.122794, -0.084316, 1.728971, -0.263379, 1.042413, -1.412475, 0.458972, 0.332932, 0.274856, 0.483925, -0.633042, -0.724539, 0.219797, 1.277416, -1.470168, 0.874251, -1.556984, 0.218211, -1.117856, 0.366932, 0.597500, 0.794865, 1.719607, -0.867824, 0.431786, -1.498545, 0.635509, 1.030200, -0.342009, -0.736825, -2.026460, -0.855395, -0.620872, -1.208344, -1.456857, -0.530180, 0.273012, 1.059494, -0.019405, -0.816723, 1.057766, -0.089720, -0.892084, 0.480461, -0.001814, -1.169565, -1.996294, 0.051384, -0.269828, 0.400033, -1.093477, 0.844433, -0.317918, 0.872635, 0.624898, 1.334590, 0.883614, -1.644275, 0.997656, 2.814571, -0.139504, 0.249623, -0.642635, -2.105332, 0.742291, -0.229777, 0.235703, 0.183855, -1.449033, 0.537369, 0.890137, 1.986003, 1.635879, 1.533882, -1.177689, 0.306512, -0.172724, -2.235410, 0.258579, 1.515709, 0.480840, -0.518566, -0.997434, 0.449247, 1.774214, 0.033595, 0.113604, -0.787320, 1.067512, 0.534114, 0.391503, 1.377359, 1.533713, 0.237806, -0.580997, 0.262743, -2.688823, -1.181593, 0.317966, 1.056735, -0.265381, -0.845975, 0.705788, -1.476477, 0.104007, -0.061571, 0.132525, 1.172665, -0.403183, -0.676646, 0.961702, -0.504385, -1.199482, 0.293052, -0.596697, -1.245085, 1.474648, -0.764356, 0.640714, -0.150225, -0.493172, 0.582959, 0.331081, 1.338902, 1.647818, 0.130065, 0.460612, 1.262606, 1.728806, -2.861237, -2.247664, 0.148536, -0.232905, -0.051161, -0.610389, -0.539013, 0.051441, 0.604580, -0.371963, -2.230177, 0.563327, -0.625428, 0.604905, 1.205526, -0.422607, 0.116579, 0.220437, -0.406820, -1.209645, 0.217361, 0.172896, -0.446617, -1.318840, 0.891240, -0.333473, -0.160212, 0.867340, -1.056876, 0.264609, -0.260226, -0.964260, -0.347383, -1.520069, 0.267511, -0.101279, -2.250854, 0.503038, -1.270890, 2.420293, -0.269200, 1.013116, -0.385248, 0.716852, -1.288336, 0.049615, 0.549253, 0.204417, 1.523709, 1.415952, -1.213428, 0.046334, 0.498685, 1.607935, -0.107502, -0.012489, 1.113093, -1.262372, 0.635310, 1.079105, -1.272005, -0.390408, -1.666804, 0.459862, 1.971103, -1.087889, -0.921188, -2.152943, 1.172582, -1.627422, 1.494756, -0.466420, -0.919285, -0.012257, 1.503815, 1.129391, 0.366269, 0.097845, 1.788218, 0.024079, 0.533088, -0.253594, 0.691081, -0.403347, -0.241545, -1.386020, 1.119385, 2.332255, 0.026364, -0.694972, -0.534860, 0.557126, 1.070677, 0.143742, 1.162118, -0.373626, 0.675855, 1.296753, 1.222787, -0.417039, 1.794739, -1.131771, 0.251165, -0.153850, 0.679615, -0.592602, 0.967419, -0.825761, 1.026805, 1.314102, -0.147767, 0.933058, -0.750476, -0.607121, 0.158971, 0.819274, 0.886966, -0.489672, -0.762964, -0.556662, 0.249269, -1.189935, 0.149237, 0.794543, 1.539583, 1.117802, 1.493570, 0.081249, -0.688845, 1.236806, -0.136323, -0.642509, 0.791909, -0.316187, -1.486396, -0.286044, 0.601812, 1.020883, 0.483257, -0.498491, 1.510354, -0.846811, 1.463543, 0.816403, -0.128102, 1.293291, -0.892125, 0.065162, 0.800300, -0.230737, -0.843545, 1.281737, -1.595139, -0.252319, -0.777570, 1.140861, -0.984396, -0.267249, 2.108263, -1.003959, -0.513135, 1.075903, 0.091835, -2.677899, -1.111084, 1.194312, 1.320407, -0.328568, -0.667354, 0.376435, -1.547423, -0.539298, -0.371540, -1.739619, 0.206203, -1.633796, 0.340958, -0.144559, 1.320986, -0.504530, 0.131376, -0.045478, -0.016382, -0.656809, 0.399018, -0.673054, 1.411125, 0.066629, 1.119156, 1.223984, -1.243670, 0.624111, 0.162919, 1.506701, 0.369993, -0.651917, -0.536100, 0.122017, 0.315836, 0.223999, -0.441284, 0.702756, 3.399359, -0.937984, -1.277279, -0.320646, 1.110265, 1.352486, 0.392803, -0.217718, 0.592121, -2.828296, -1.273913, 1.010857, 0.803452, 0.362336, 0.744039, 1.513910, -0.123968, -0.478849, 1.216170, -0.834086, -0.520943, 0.476857, -1.432903, -0.264333, 0.174768, -0.130957, -2.319249, 0.018810, -0.472043, -0.714302, 0.483415, 0.948798, -1.954869, 1.905223, -0.789518, -0.756109, 0.944602, 0.015665, 2.361336, 0.824000, 0.235085, 2.874695, 1.586301, -0.351636, 0.008695, 0.187248, -0.778460, 0.367337, -0.801179, -0.846551, 0.192538, 0.475482, -1.701226, 0.024326, -1.082116, 0.599711, -1.787788, 0.474537, -0.176982, -1.006472, 2.020376, -0.565137, 0.181229, 0.233631, -1.479626, -0.121306, 0.485107, -2.170983, -0.936832, 1.271556, 0.824126, 1.162649, -0.526079, 0.397148, 0.041766, 0.058662, 0.841343, 0.150001, 0.412063, -0.437563, -0.290072, 0.534768, -0.293810, 1.005391, 0.820057, 0.205259, 1.501838, 0.402394, -0.902669, -1.947405, 1.195238, -0.691564, -0.583608, 0.292778, 1.341641, 0.307124, -1.195522, 0.928294, 0.110196, -1.008178, -1.924284, 0.571656, 0.931630, -0.609255, 0.409721, 0.062547, -0.719543, -1.481461, -0.142414, -0.189412, -0.292694, -0.349087, -1.150324, 0.239773, -0.818704, 0.143214, 0.797478, -0.667021, -0.827515, -1.675469, 1.087868, -1.474185, 0.067507, -0.537100, -1.716275, -0.812033, 1.563121, -0.580177, 1.211277, -0.024871, -0.319198, -1.714087, 0.175352, -1.221683, 2.118346, -0.705239, -0.404739, -1.947605, -1.148222, -0.461689, -0.607428, -1.339699, -1.007118, -0.750962, -0.454246, -0.112804, 1.257235, 1.102586, -0.644324, 2.078511, -0.003431, 0.365301, 1.759221, 1.043148, -0.073328, -1.107175, 0.328991, -1.366089, 0.045647, 0.382893, 0.785101, -0.356169, -0.765107, -0.312606, 0.625214, 0.040221, -1.520915, 0.296356, 0.448759, -0.630433, 1.359117, -0.246462, -0.028595, -1.366253, 0.938096, -0.311617, 0.684739, 0.038732, -0.011837, 2.324516, 0.082977, 0.442350, -0.240775, -0.859987, -0.319721, -0.588970, -0.483831, -0.263322, -0.336983, 0.124937, 0.052341, 1.341358, -1.459795, -2.099358, -0.610480, 0.809997, 1.111102, 0.125458, 0.185947, 1.712147, 0.946655, 0.195306, 1.663208, -0.812384, 1.375934, -0.135452, -0.008247, -0.434778, -0.350705, -0.268835, -1.639927, -1.125024, -1.417332, -0.585967, -0.314052, -0.923774, 0.318371, 0.386757, -0.352994, 0.717880, -0.523875, 0.766112, -1.422297, -1.619022, 0.069192, -1.315972, -0.617964, -1.323193, 2.456321, -0.972811, -0.273706, -1.839287, -0.231148, 0.269941, -0.324045, -0.452531, 0.878415, 0.161730, 0.956676, -1.621601, 0.201484, -0.973074, -0.727023, -0.917278, -1.511942, 1.427847, 0.478701, 1.241028, -1.418374, 1.776652, 1.233867, -0.164416, -2.178570, -0.195001, 0.697629, -1.774063, -1.836039, 0.457045, 1.326695, 0.011643, -0.354881, -0.411363, -0.163280, 1.450767, -0.431097, 1.132592, 0.343753, 1.120846, 0.077151, -1.794622, -0.619901, 1.281413, -0.418432, 0.201495, 0.633136, 2.338012, 0.591667, 2.086289, -0.824611, -0.339316, 0.584931, -1.341490, -0.081706, 1.083835, 0.554222, -1.156499, 1.427610, 0.082780, -0.915099, -0.745243, -0.032628, -0.677012, -1.078401, -1.678155, 1.131563, 0.161781, -0.432355, 0.363152, -0.060627, 1.408744, 0.150847, -0.600754, 0.743023, 0.635570, -0.001342, 0.329122, -0.173368, -0.292805, 0.245684, -0.680523, 1.851528, 0.029777, -1.657625, -1.398327, 0.180173, -0.077970, -0.241042, -2.196875, 0.029724, -0.326221, -0.210451, 0.360744, -0.106676, 1.697662, -0.808074, -0.982597, 2.129099, -0.547203, 0.383010, -0.659713, 0.285108, -0.322815, -1.110508, 0.838579, -0.169701, -0.026920, -0.642277, 2.522694, -1.711465, -0.343259, 0.651668, -0.497310, 1.260940, 0.374315, -0.760889, -0.711834, -0.567988, -0.992907, -0.559066, 1.697468, 0.332616, 1.024768, 0.550566, 1.224745, -0.654200, 2.032773, 0.082563, -1.295397, -1.051432, 0.567468, -2.107276, -1.400129, -1.008241, -0.105041, 0.733549, -0.317511, -0.321361, -0.107378, 1.738176, -0.415773, -0.235396, 0.276437, -0.401816, -0.484924, 1.966882, 0.317909, -0.529905, 0.267830, -0.458091, 0.483079, -0.192916, 1.227695, -1.093794, 0.906393, -0.865770, -1.496917, 0.956625, -1.373152, -0.215082, 0.231005, 0.709967, -1.166990, 0.855483, 0.534399, 0.172511, -0.036255, 0.609297, -0.912030, 0.657148, 0.980654, 0.018551, 0.557849, 0.550249, 0.042714, 1.107041, 0.664145, -0.691010, 0.059476, 0.687923, -0.605355, 0.129882, 1.175040, -0.190449, 1.057329, -0.379636, -1.658650, -2.028174, -1.327957, -0.030442, -0.385998, -2.905207, -1.043786, -0.387258, -1.424118, 0.741109, 0.689532, -0.656806, 1.157464, 1.537871, 0.623958, -0.592050, 0.230121, -1.103302, 0.089339, 0.432980, 2.284280, 1.034716, -0.076819, 0.744677, 0.326310, 0.202031, 1.039770, 0.512596, -0.523637, -0.109553, -0.768347, 1.166721, 0.262571, -0.078743, 0.469324, 0.925129, -1.099557, 1.230837, -0.414925, 1.048999, -1.785126, -0.073170, -1.055125, -1.277047, -0.744703, -0.535291, 0.433479, 0.717865, 0.264718, 2.387341, 1.607247, -1.267971, -0.921362, -1.426878, 0.066004, 0.187551, -0.766656, -0.593011, -0.747655, 1.040539, -0.592087, 2.084353, 1.174902, -0.705021, 0.532277, -1.003524, 0.191509, -0.847932, -0.346876, 0.561315, -0.429310, 0.993986, 0.769355, -1.023120, -0.952315, 1.878818, -0.020951, -0.476551, -0.067435, 0.398025, -0.616951, 0.932660, 0.746036, -1.728409, -0.388349, 0.061211, -0.171022, 1.860426, -1.147508, 1.432770, 1.151326, 0.449021, 0.129542, 1.078047, 0.985745, -1.006536, -0.709188, -0.006087, -0.069743, -0.654086, -0.101824, -0.527980, 0.236388, -0.545744, -0.278505, 1.732982, 0.654190, -0.548465, -1.169641, -0.909830, -1.139532, -1.294405, 0.410543, 0.978736, -1.443742, 0.379763, -0.006065, -0.577878, 0.368109, -1.466094, 0.610852, 0.470614, -0.147005, 3.206289, -0.405871, 2.097315, -0.060147, -1.276298, -0.560039, 0.256024, 0.152755, -0.340687, -0.325523, 0.132116, -0.499273, -0.576767, 0.890889, -2.108584, -0.088569, -0.674214, 0.927033, -0.245145, 0.995695, -0.023889, -0.139383, -1.062445, -1.211801, 0.870238, 0.028575, 0.063234, 1.353849, 0.022134, 1.651862, 0.213931, 0.062244, -0.759874, -0.966781, 1.090717, -0.621585, 0.528606, 1.942844, -0.819251, 0.065602, -0.532211, -0.387889, 0.449216, 0.096665, -0.501901, 0.131407, 0.240525, -1.033219, -0.055638, 0.869617, -0.187925, 2.207625, 0.306278, 0.847202, 0.206908, 1.009583, 0.084580, -0.012668, -1.033329, -0.148545, 0.618870, 0.399428, -0.924602, -0.559469, 1.652509, -0.783998, -1.375497, -0.155683, 0.228549, 0.488797, -1.157642, -0.763601, -1.153309, 0.353518, -1.743940, 2.141547, 1.027402, -2.250444, -0.762393, -0.172657, 0.256640, 0.251934, -1.478273, -0.556554, 1.185991, -1.174300, 1.121918, 0.362458, 0.205066, -1.068521, -0.153926, -1.456109, 0.027802, 0.027177, 1.813897, 1.802821, -0.009907, 1.011838, 0.308289, 2.702428, 1.196861, -1.238380, 0.320980, -0.157653, -0.421377, 0.082636, -0.273268, -1.626294, 1.041722, 0.068328, 0.396877, -1.190137, 0.875380, -0.307799, -1.115998, -0.977425, 0.182764, -0.202348, 1.528468, 1.751493, -2.430546, -0.241253, 0.038598, -0.467628, 0.551568, -1.215156, -0.677621, -0.721341, 1.425326, 0.749313, -1.626045, 0.374403, 0.681429, 1.033166, -2.205969, -0.190492, -0.141536, 1.628953, -0.321825, 1.530588, 0.462488, -1.938315, 0.933523, 0.986000, 1.365227, -0.758421, 0.256652, -1.623406, -0.185373, 1.156479, 0.061563, 0.127256, 1.275467, -0.010870, 0.530133, -0.219159, -0.688762, 0.012882, -0.710524, -0.273936, 1.142749, 0.633708, -0.739569, -1.094733, -0.207656, 0.735874, -0.143747, -0.553577, -1.494831, -0.721280, 1.377119, 1.355121, 0.540618, -0.667525, 1.260628, 0.724238, -0.912280, 1.434365, 0.411682, 2.308520, 1.800172, 0.093727, -0.475210, -1.738169, 0.491769, -0.167128, 1.664286, -0.779238, 3.895680, 2.018933}, - { 0.369689, -1.453203, -0.084053, -1.002592, 0.326842, -0.440155, 0.567610, -1.035517, -0.302129, -1.156545, 0.710368, 0.572679, 0.885492, -1.743570, 0.795580, -1.307853, 1.321114, -0.786144, 0.537529, -0.516815, 0.538087, 0.602819, -0.975910, 0.228100, -0.969746, -0.928184, -1.092438, 0.875759, 0.501662, -1.771648, 0.055292, -0.512473, -2.446271, 0.530254, 0.227196, 0.151845, -0.449478, -0.177817, 0.214641, 1.499790, 0.340742, 0.684597, -1.554874, 0.240645, -0.102351, 2.457285, 1.096147, -0.856053, 1.101331, 0.716102, 0.094902, -0.477282, -0.395248, -1.171082, -2.174341, -0.737518, -1.428781, 0.333930, -0.695825, 0.521078, -1.043650, 0.956063, 0.254790, -0.402749, -1.005517, 0.288685, -0.275279, 0.724000, 1.223699, 0.716951, 0.656162, -1.087510, 0.393052, -1.563124, 0.818448, 0.390672, 0.534776, 0.405630, 1.792928, -0.096517, 0.710342, 0.911791, 0.115740, -1.416866, 0.037790, 0.042211, -1.457783, 0.651088, -0.906669, -0.334106, 1.045581, 1.064233, -1.034228, 0.649035, 0.651082, -1.155782, 2.747354, 1.452138, 1.761604, -0.510621, 1.129589, -0.585258, 0.332348, 0.874178, -0.065626, 2.074037, -0.188338, 0.267385, 0.446834, -0.390049, 1.293800, 0.744112, 0.553123, 0.065390, -0.501732, -0.329394, 0.848650, -1.109138, 1.143934, -0.516926, 0.497432, 0.616393, -0.642400, 1.392112, 1.192614, 0.863733, -1.111371, 2.384692, 0.183054, 0.674574, -0.724793, -0.749809, 0.455305, 1.035621, -0.777965, 0.897956, -0.493177, 1.170380, 1.035612, -1.126469, 0.035366, 0.407703, 1.058143, -0.465718, 0.163207, -0.208828, 1.162260, -0.148163, -0.805230, 0.200731, -0.753959, 0.771479, 0.874691, 0.051820, -0.709412, 0.914033, 0.140355, -1.430717, 0.339664, -0.111629, 0.308109, 0.592078, -2.115375, 0.000744, -1.145634, -1.039584, -0.045592, 0.596309, -0.537589, -0.780524, 0.431188, -0.567912, 0.342105, -0.628612, 2.060537, 0.016569, -1.505612, 0.945865, 1.807107, 0.217729, -0.644192, 1.000326, -0.125984, -0.157555, -0.505954, -2.400203, -1.221491, 0.288849, 0.697424, 0.423409, 0.013814, -1.543810, -0.268002, -0.664635, 0.619712, 1.110208, -0.993203, -1.761034, 0.560374, -0.683994, -0.088302, 0.919979, -2.354632, -0.697850, 1.519281, -0.557671, -2.558178, 0.054532, -1.284076, 0.478767, 0.992271, -0.955872, 0.631003, -1.427651, -0.268507, -1.414831, -0.677730, 0.022256, 0.192281, 0.761786, 0.092861, -0.740192, -0.588563, 1.363043, 0.401617, 1.379578, -0.109945, 2.016294, 0.527714, -0.602640, 1.241739, -0.812055, 0.726616, 1.081297, 0.515926, 1.523206, -0.189192, 0.571368, 0.768785, 1.261674, -0.034119, -2.127709, -0.487732, -0.350357, 0.775456, 0.320789, -0.674258, 0.047525, 0.742857, 1.614325, -0.353965, -1.353718, 0.777219, -0.031324, 0.070399, 0.268705, 0.075449, -1.261787, 0.973170, 1.088630, 0.421289, -0.350645, 1.061954, 0.510234, 0.621404, 0.932031, -0.641082, 0.120774, 0.371778, 1.158704, 1.550140, -1.215098, 1.148910, 0.395027, -1.140883, -0.913957, 0.785054, -0.017105, -0.058446, 0.261973, -2.248816, 0.487702, 1.356698, -0.058001, -1.663495, -0.332430, -0.359360, 0.139886, -1.463473, -0.526742, 1.175166, -1.473695, -0.380607, 0.732220, -0.431963, 0.291989, 0.527473, 2.854968, 1.150628, 0.422467, -1.975060, 1.717803, -0.237129, -0.831081, -2.234257, 0.778262, -0.297309, -0.215805, 0.384649, 1.561229, -0.088332, -0.354620, 0.215478, 0.208409, 0.038895, -2.122936, -1.292107, 0.947442, -0.857196, -2.921377, -1.244198, 0.293632, -0.651422, -1.018784, 0.459424, -0.591164, -1.016176, -0.152256, 0.546038, -0.989675, -0.912033, -0.264038, 0.400981, -1.121412, 0.472131, -0.219662, 1.155358, -0.024484, 0.372769, -0.114488, 1.655474, 0.528671, 0.086342, -0.781975, -0.455583, -0.123450, -0.396102, -1.506722, 2.484445, -1.636081, -0.531117, -1.927067, 0.342912, -0.293332, -0.581212, -0.850019, 0.861472, 0.250241, -0.332538, -0.594993, -1.560828, -1.727583, 0.839703, 0.301217, 0.240456, 0.069477, -0.257552, -0.284075, -1.083013, -0.279790, 1.222841, -0.512705, -0.006829, -0.853864, 1.189641, 0.354379, -0.909794, -0.507967, 0.574376, -1.091098, -0.458638, 0.383160, 0.863653, -1.296254, 0.973990, 0.882776, 0.541169, -0.293698, 1.621275, 0.367914, -0.498681, -1.000963, 0.991296, -2.331301, 0.835760, -1.083304, -1.718730, -0.168252, -2.017599, -0.213571, 0.827002, 0.218285, 0.233484, 0.765916, 0.789751, -0.636025, 1.087739, 0.065238, -0.696152, -1.524986, 0.794677, 1.975290, 0.937155, -0.079810, 1.483511, -0.819275, 0.229394, -0.360053, -0.313955, -1.227792, -0.156955, -2.156920, -0.259614, -1.165592, -0.248625, 0.922018, -0.606049, -0.517682, 0.471080, 0.879359, 0.785953, 0.643077, 0.029058, 1.029680, 0.226352, -1.837588, 0.842358, -0.188321, 0.135403, 0.376958, 0.722064, 1.456808, 0.489466, -0.187465, 2.473450, 1.244644, 0.970772, 0.370720, -0.172166, 1.910470, 0.493223, 1.390667, 0.248679, 0.137445, -0.106974, 0.552990, -0.230598, 0.419236, -0.228156, 0.464455, 0.976817, 1.362111, 0.387325, -1.610563, -0.746007, -0.525078, -1.092137, -0.648174, 0.884429, 2.360616, 0.821417, -0.785905, -1.561717, -1.872034, 0.926875, 0.255245, 0.513380, 0.409484, 0.293854, 1.215249, 1.229824, -0.634025, -1.116084, -1.047516, -0.688904, 1.566175, -0.463718, -1.161816, -0.061057, 0.232937, -0.129579, -0.701311, 0.096780, -0.134332, 0.705358, 0.535672, 0.678041, 0.791912, -0.842546, 0.562181, -0.196512, -0.262346, -0.472723, 0.817032, 1.041303, 0.941651, 0.728860, -0.711400, 0.253174, 0.827447, -0.823291, -1.206290, 0.120566, -0.799829, 0.442896, -1.101857, -0.660444, -0.251467, -1.663550, -1.417972, 1.453454, 0.052903, 1.315999, 0.675551, -0.789463, -0.514772, -0.831269, -2.765714, -0.133113, -0.948486, 0.609700, -0.034798, -0.016230, 0.114713, 0.155087, -0.922049, 0.454080, -1.631591, 0.897473, 0.589649, -0.747470, 0.036998, 1.470163, -0.088558, -0.294550, 0.631283, 1.234150, 0.718360, -1.683148, -0.039850, -1.046863, -0.232456, -0.058628, 0.865256, -1.650519, -0.419546, -2.025628, -0.357157, -0.595798, 0.232194, -0.754949, -0.247473, 2.242571, -1.137297, 2.155089, 0.379669, -0.320925, 0.380617, -2.125954, 0.708342, 0.443547, -0.573545, -1.398831, 0.882674, -0.535715, -0.377176, 1.228115, 0.223747, -0.239107, -0.724356, -0.042103, -0.127807, -0.821020, 0.049000, -2.140369, 0.090695, -1.261153, -0.352746, 1.598261, -0.699843, -1.375553, -0.841864, 1.771109, 0.533353, -1.364781, 0.137542, -0.312220, 1.471829, 0.993276, -0.827561, 0.218342, 0.500259, -1.013958, -0.532696, 1.884176, -1.321814, 0.216314, 1.655990, 1.626722, 0.746489, -1.364250, 0.557495, -0.460634, -1.216966, -2.173369, 0.996067, -0.996231, -0.429574, 0.018420, 0.910546, 0.318917, -1.408834, 1.934830, 0.779283, -2.334530, 0.164922, -0.397106, -0.309615, -1.370774, 0.144893, 0.577256, 1.341239, -0.217499, -0.408152, -0.025371, 1.929946, 1.550775, -1.020726, 0.211927, 0.892306, -1.474161, 1.173576, -0.568810, 2.267454, 0.597750, 1.029649, -0.368160, 0.042378, 0.386285, 1.410877, 1.063391, -0.848895, 0.708512, 1.241466, 0.465842, 2.189624, -0.467179, 0.828411, 0.554927, -0.804239, 0.119211, -2.023518, -0.781659, 0.847321, 1.018253, 0.636135, -0.628185, -0.830827, -2.747293, 1.192954, -1.463552, 1.768067, -1.150370, 0.518232, 2.337300, 0.929799, 0.209229, -2.126120, -1.720864, 0.360394, -1.192737, 1.091630, 0.324888, 1.090668, 0.632533, 1.164260, -1.782221, -0.375809, -0.635192, -0.110880, -0.821958, 0.856985, -2.019447, 0.140317, 0.109698, -0.523703, 0.552862, 0.457601, 0.807561, -0.176591, -0.176117, -1.953221, -0.712108, -1.130132, -0.207610, -1.210260, 0.743578, -2.072756, -0.317122, 0.113129, 1.186310, 0.417103, -0.512384, -1.529987, -0.948777, -0.004296, 0.306080, -0.212301, -1.632694, -0.312521, 1.621936, 1.300571, 0.118023, -0.551320, -0.606357, -1.596477, -0.778995, 0.221404, 0.518199, -0.284117, 1.595672, -0.033958, -0.071420, -0.764661, -0.230472, 0.678405, -0.305870, -0.667839, 0.889213, -0.188320, 1.298133, 0.126381, -1.557205, 0.130069, 1.207199, -0.087984, 0.111300, 0.418719, 0.188591, -0.115041, 0.660011, 1.822436, 1.389691, -1.272622, 0.995286, -0.719182, 1.142639, -3.092916, 1.772221, -0.518963, 0.783928, -1.039579, -1.171307, -1.247914, 0.403026, -0.211691, 0.258523, -0.247828, 0.143368, 0.566572, -0.576677, 0.059365, -0.288350, 0.100396, 1.180954, 0.519914, -0.149029, 0.367727, -0.524921, -1.528320, 0.178626, -0.217439, -2.139006, -1.557480, -1.343548, 1.402936, 0.101325, 0.621454, 0.499847, 0.990730, -0.467496, -0.777940, 0.096640, 0.287830, -1.330762, 0.152709, -1.408787, -1.934963, 0.895951, -0.086200, 0.023863, -0.516398, 0.750345, -0.829315, -0.406156, -0.000638, 0.464036, -0.225698, 1.260206, 1.484522, 0.562975, -0.690382, -0.865064, -0.700290, 0.346072, -1.015117, -0.524614, -0.409801, 0.178105, 1.662082, 0.245050, 0.347665, -0.796964, 0.633326, 1.212025, 1.381881, 0.402262, -0.054441, 0.205107, 0.459338, 1.292623, -1.203604, -0.664533, -0.919210, -0.003714, -0.964518, 2.054479, 0.387152, 0.791512, -0.923715, -1.564013, 0.605946, -1.075409, -0.158372, 0.066748, 1.545785, 0.510247, 1.272004, -0.607648, 0.403179, 1.146457, -1.219555, -0.833820, 1.379713, 1.346889, -0.856198, 1.831080, 0.352397, 0.688834, 1.052052, -0.326348, -0.703215, -0.677543, 0.587165, -0.315590, -0.919319, 0.137460, 1.328630, 0.597373, 0.825097, 0.247880, 0.513533, 0.012934, -0.712791, 1.027502, 0.599187, -0.149577, -0.173370, 0.734984, 1.201526, 0.736430, -0.725606, -0.118309, -0.579155, 0.790588, -0.147930, 0.262254, 0.980089, 0.021544, 0.147380, 0.121886, -0.186734, 0.313215, -0.261702, 0.190823, 1.429472, 0.073399, -1.515437, -1.734010, -2.191942, 1.859195, -0.725058, 0.328375, -1.534722, 0.877910, 1.584877, -0.363275, -0.330748, 2.467584, 0.575761, 0.091246, 1.482049, 2.058556, -0.715661, -0.839751, 0.168422, 0.125029, -1.080540, -0.482786, 0.504113, -0.451936, 0.119925, -0.844221, 0.777926, 0.593844, 0.004039, -1.019550, 2.652729, -1.378957, -0.570600, -0.821353, 0.454466, 0.325693, -0.190419, -1.854241, 0.326960, 2.373198, -0.798869, -0.334264, -0.494334, -2.656583, 0.534943, -0.924612, -0.343005, 0.729580, -1.925721, -0.585522, 0.350715, 1.727118, 2.076452, -0.382337, 0.388629, -1.030397, 0.075613, 0.327214, -0.171853, 0.563928, 1.466995, -1.367164, -0.609201, -1.196493, -0.978365, -1.155945, -1.099621, -1.396894, -1.201453, -1.820136, -0.310980, 0.071132, -0.493406, -1.507086, -0.809904, 1.475229, 1.411258, 0.815289, 0.246215, -0.187638, 0.050374, 0.065441, 0.950469, 0.094546, -0.298355, 0.949661, -0.164806, 0.640183, 1.393049, -1.420712, -1.135173, -0.629025, 0.446102, 0.409624, -0.752536, 1.054140, 0.912412, 0.438262, -0.337505, -0.885521, 0.396660, 0.882099, 1.244400, 0.583222, 0.541942, 0.046336, -0.375729, 1.259741, 0.694516, 0.822852, 1.150303, 1.813050, 1.196570, 1.532458, -0.112561, 0.765254, 0.734017, -0.200022, 0.495340, -0.179774, 0.193926, -0.365785, 0.251324, -0.628043, -0.491628, -1.613178, -1.098310, 0.819850, 1.621907, 1.731538, -0.531335, 0.830041, 0.873087, 0.418166, 0.613090, -1.081968, 0.334713, -1.092727, 0.924228, -0.168361, -0.219248, -1.515555, 1.613762, 0.196898, -0.320409, -0.020910, -0.414135, 0.293997, 0.313748, -0.948665, 0.595197, 0.985700, 1.884190, 0.953941, 1.559382, -0.845496, -0.541110, -1.037165, 1.355440, -0.240251, -2.945162, -1.690170, -0.583808, 0.565909, 0.324842, -1.581359, 1.335000, 0.540263, 0.821007, -0.811234, 0.640032, -0.517974, 0.905773, -0.212125, -0.811519, 1.160139, 0.248193, -0.337304, -0.311801, 1.309863, -0.655936, 0.578354, 0.230677, -1.260614, -0.206843, -0.129614, -0.319422, -0.063451, 0.410484, 1.054411, -0.507901, 0.621336, -0.094623, 1.689099, 2.085285, 0.949036, -1.062983, 1.475254, -0.133039, 0.796293, -0.541350, -1.175893, -0.309451, 0.467444, 0.322762, -0.637914, -0.174805, -0.526288, -1.071649, 0.182267, 0.291260, 0.391122, 1.824953, 0.807077, -0.554600, -2.606520, -0.543214, 0.708949, 2.355566, 1.211389, -1.691016, -0.236906, -0.064956, 1.235964, 0.311686, 1.345693, -0.423804, -0.176127, 0.487110, -0.320497, -0.262928, -1.055427, 0.952468, -0.291215, 0.235028, -0.701469, 0.471249, -0.241191, -0.312293, -0.231193, -0.596198, 0.303463, 0.593136, 1.235870, 0.248424, -0.101594, -1.645068, -2.480258, -0.587485, 1.231571, -2.174002, 1.286151, -0.076383, -0.951833, -0.103295, 1.017001, 0.129254, 0.126655, -2.584477, 1.033152, -1.816085, 1.082703, 1.941277, 0.142964, 0.381827, -0.485206, -0.474895, -1.376646, -0.864314, 0.586723, 0.388182, 0.883993, 0.180967, 0.910626, 0.533516, 0.177026, -0.256922, 3.074898, 0.472876, 0.594846, -1.658655, -0.037229, -1.298519, 1.702570, 0.574459, -0.229606, 0.628596, 0.237106, 0.835682, 0.422320, 1.230000, -0.903944, 1.288396, 0.349564, 0.735781, -0.098097, -0.364939, 0.522232, -0.883011, -0.485902, -0.881221, -1.338988, 0.479825, -0.836477, 0.083343, -0.148984, 0.324212, 0.591756, 0.147278, 1.276035, -0.361051, 0.940623, -2.598221, 2.397041, -0.191901, 1.962914, -0.038508, -0.382499, -0.887144, 1.162506, -0.012613, -0.504076, 1.165283, 0.234544, -0.384904, -0.222327, 1.167807, -0.870831, -0.369651, 0.955762, -1.401175, -1.504423, -0.020265, -0.679867, -0.935231, -0.056145, 1.868584, -0.594031, -0.527776, -0.554549, -0.514957, 1.516269, 0.116693, 0.473745, -0.102826, 0.513894, 0.932561, 0.027228, 0.623840, 1.032128, 0.104418, 0.741575, -1.679415, -1.192255, 0.321627, -0.828913, -1.349335, 0.632935, 0.890292, 0.437688, -0.227034, 0.335418, 0.049459, 0.724373, -1.671488, 0.176020, -0.374343, 0.254090, -2.075548, -0.484902, 0.296412, 0.523166, 0.768178, 0.087610, 0.926462, -2.186858, -1.198580, 1.643683, 0.234801, -0.486080, -2.117910, 0.603340, -1.004678, 1.682788, -0.961916, 1.797310, 1.884647, 1.475095, 0.584586, 0.165867, 0.272881, 1.133891, 0.556460, 0.742031, -0.275031, 1.235634, 0.932589, -1.053908, -0.257892, 0.332026, -1.056460, -0.145212, 1.533126, -0.120149, -0.113588, 0.050304, 1.456181, 0.407513, 0.237643, -1.416271, 1.533071, -0.165018, 0.336539, -0.661115, 0.800157, -0.398622, -0.868135, 0.267367, -1.306977, -0.879139, 0.079973, -1.219551, 1.697130, 0.373199, 0.858831, 0.652219, -0.565992, 0.338268, -0.154019, -1.419849, 0.738985, -1.254001, 1.941751, -0.593920, 0.675499, 0.004605, -0.289304, -0.512924, 0.632265, 1.450813, 1.609672, 1.046503, -0.909683, 1.554108, -0.235379, 1.712608, 0.795843, 0.401878, -2.291585, 0.743067, 1.316745, -0.024247, -0.817712, -0.372298, -0.379659, -0.217670, 1.053197, 0.204553, 0.684404, -0.375207, -0.039076, -1.894295, 0.605904, -1.081617, 1.279664, -0.292974, -0.052085, -0.705365, 1.019907, 0.763236, 0.044657, 0.424004, 0.987251, 1.066817, 1.515459, 0.836232, 1.188274, -1.554347, -0.177143, -0.519960, -0.198786, -0.855771, -2.644951, 0.025266, 0.772202, 1.190315, 0.108014, 1.866243, 0.029881, 0.387912, 0.907149, -1.359823, -0.669153, 0.259995, -1.987492, 0.193020, 1.035968, 0.501884, -0.938998, 0.691270, 0.969736, -0.139169, 0.159928, 0.542495, 0.417110, -2.229785, -0.378399, 0.205535, 0.379204, 0.248025, -0.284299, -1.812779, -0.624310, -0.696426, 1.225554, 1.653222, -1.563704, -0.070534, -0.643461, -1.572547, -0.442934, 0.146049, 1.130921, 0.361494, 1.430582, 1.323829, 0.438721, -1.404530, -0.647201, 1.195281, -1.732942, 0.106817, -0.627603, -0.502232, -1.020040, 0.090695, 1.215738, 1.850232, 2.119719, 0.336909, -0.866658, 0.884403, 1.424762, -0.658921, -0.200636, -0.105434, 0.525333, -0.651487, 0.444109, 0.936841, 0.200815, 0.300288, 1.481389, 0.636704, 1.063698, -0.446502, -0.481675, 1.295370, 0.195739, 0.571653, 0.803317, 1.365239, -1.033470, 0.273164, -0.603607, 1.246939, 0.397400, -0.111385, 0.149312, -1.333105, 1.599795, -1.049144, 1.605232, 0.480585, 0.019586, -0.170216, -0.539797, -0.611482, 1.022604, -1.543115, 1.575168, 0.900111, 0.619460, -0.379933, 0.812058, 0.716127, -1.386156, -0.285592, 1.645362, -0.122247, -0.984852, 0.181130, -0.897139, 0.577652, -1.846773, -0.792216, -0.459891, 1.237503, 1.218345, 0.507659, 0.401161, -1.580426, -0.645551, 0.431850, 0.272556, -0.640024, 1.501328, 0.097618, -0.226089, 1.357681, 0.642397, -0.301296, 0.238793, -2.028144, 1.237056, -2.047739, -0.003138, 1.279416, -0.013295, -0.040423, 1.273679, 0.095526, -1.510416, 0.338575, -0.897153, -1.574995, 0.667604, -0.647126, 1.297509, -0.189834, -1.735131, 0.346467, -0.387383, 0.334408, -0.731959, 1.659167, 0.328247, 2.043740, -0.727637, -0.471995, 0.107684, 0.451542, -0.212427, 1.032818, -0.396457, 0.967522, 0.026766, 1.060822, -0.410064, -0.651738, -0.635912, -1.324542, 0.042411, -1.248637, 0.632750, 1.088512, -0.955982, 0.060488, 0.205236, -0.236711, 1.644439, 1.388496, -1.038161, 2.250437, 0.582821, 0.243450, -0.330602, -0.126818, 1.711435, -0.306606, 0.562323, 0.758824, 0.332204, 0.564271, 1.549712, -0.077883, -1.043365, 0.874691, 0.419816, 0.472237, -1.799613, 0.582136, 1.221781, -2.275681, 0.210618, 0.161319, 1.805974, 0.618748, -1.602444, -0.202080, 0.308053, 0.912782, -0.831882, -0.519299, -0.479760, 0.647252, -0.447211, -0.330485, 0.549397, 0.636230, -0.175237, 0.647608, -1.060936, -0.834699, 1.573222, -0.771146, -1.445732, 1.544112, 0.989244, -0.222379, -0.980293, -0.358746, 0.631122, 0.024881, 0.493351, -0.980924, -1.496515, -1.476285, 2.123760, 0.448699, 0.324939, 0.889897, 0.827959, 1.053775, -1.215044, -0.028244, -0.414609, -1.750615, 0.418347, 0.122679, 0.500184, -2.390927, -0.272080, 1.344650, -0.025173, -0.100997, -0.338371, 0.323430, -0.920693, -0.305362, -0.621262, -1.168995, 0.169776, 2.018693, -1.086431, -0.039656, -0.189374, 0.718889, 2.486898, 0.609052, 0.520889, -0.706367, 0.130882, 1.321332, 1.355950, -0.275612, 0.417053, 0.157980, 0.870940, 0.811623, -0.284646, 1.687041, 0.128169, 0.466296, 0.021437, -0.492624, -1.213931, 2.175844, 0.577146, 0.821402, -0.549181, -0.638525, -1.552969, -0.270153, 1.053716, 0.069494, 0.161928, 0.727706, 1.820071, 1.300635, -1.880401, -1.011756, -0.704841, 0.444285, 0.700306, 0.153119, 0.063772, 0.341860, -1.218569, -1.562679, -0.092077, -1.086208, 0.230478, -2.428952, 0.433562, 0.615468, -1.023752, -0.019248, -2.004397, 0.858222, 0.131786, 1.063129, 1.460445, 0.640818, -1.843242, -0.161401, -0.609158, -1.728559, -0.291499, -0.586932, 1.159234, -1.059424, -1.761687, -0.620608, -0.757412, -0.666260, -0.644637, 1.136447, 0.977482, 0.100492, 0.496077, -0.873040, 2.891653, 0.533914, 0.813691, 0.377243, 1.158747, -0.384126, -0.305206, -0.062554, 3.634307, -0.449640, -1.742369, -0.722342, 1.064901, 0.370198, 1.479394, 0.087976, -1.801567, 1.414482, -1.734688, -0.119935, 0.789686, 0.800417, -1.191572, 0.481645, 0.921589, -0.697429, 0.481370, -0.332025, 0.239390, 1.008940, 0.717251, -0.358650, 0.973406, -0.046911, -1.341880, -1.490852, 0.799696, -0.166077, 0.018684, -1.533417, 0.313054, -0.209294, -0.525398, 0.600222, 0.453679, 0.332193, 0.277139, 1.375135, -0.792214, 0.922301, 0.334927, 0.368115, -0.952988, 1.288529, 0.046073, -0.049559, 1.533648, -0.769050, 0.124602, 1.396857, 0.131933, -1.433377, 1.153672, -1.283796, -0.743035, -0.736097, 0.819984, 0.188190, 0.238723, 0.777744, 0.715049, -1.457234, -0.149734, -0.871964, -1.722914, -2.343277, 0.756449, -0.469095, -0.105168, -0.102212, 0.519162, -0.949081, 0.317942, -0.008905, 0.880694, 0.768018, 0.102661, -1.424841, -0.067067, -0.293462, 0.962291, 0.212433, 1.118502, 1.148754, -0.412285, -1.022446, -0.700458, 0.979952, 1.919874, 0.398266, 0.490786, -1.626828, 0.648067, 1.135415, 0.311954, -0.292344, -0.652591, 1.160436, -1.128722, -0.738498, -2.548654, 0.439208, -0.123548, 0.806428, -0.385683, -0.381651, 0.492031, 0.554466, 0.306599, -0.317037, -0.657626, 0.276241, -0.799675, -1.135994, 0.025576, 1.524356, 1.779939, 0.075114, -0.698642, -0.285887, 1.285481, 0.215047, -1.027201, -0.284533, 0.380795, 0.706966, 0.366309, -1.011600, 0.631539, -0.282359, 2.982848, -1.153484, -0.189096, -1.137280, 0.818690, -0.171569, 1.042511, -0.632542, -1.102181, 0.689640, 0.422844, -0.547450, -1.131301, 0.312503, 0.637665, -0.751289, 0.155013, -0.328764, -0.792004, 1.417963, -0.160974, -1.402231, -0.932805, -0.685808, 2.398775, -0.471940, -0.547215, 0.908190, -0.265153, 2.262488, 1.384673, -0.840720, -0.701540, -0.172422, 0.850958, -0.153448, -0.278825, -0.757067, -1.187760, -0.043663, -0.570766, 0.154946, 0.594962, -1.070082, -1.765571, -0.712869, -1.771842, 0.046882, 1.024883, -0.347007, 0.098460, -0.061667, 0.656342, -1.433418, -2.280200, -1.835229, 0.225144, -0.485068, -0.486958, 1.327062, 1.548246, -1.496099, -0.968958, -0.224064, 0.028635, -1.441095, 1.091844, -0.795990, -1.443695, -1.037121, 0.192777, 0.233803, -0.780962, -1.293411, 0.707099, -1.497790, -0.846497, -0.494631, 1.074160, -0.013830, 0.174071, -0.201901, -0.486750, -0.362127, -0.267790, -0.270937, 1.111896, -0.046425, 0.310211, 0.538690, 0.246840, 1.603209, -1.006151, 1.399642, 0.516344, -1.119212, 0.011564, 1.032392, -2.137830, -0.458846, 1.076548, -0.421424, -0.030632, -0.934729, -0.518425, 0.651381, 1.247126, 0.972164, -0.214589, 0.053051, -0.642297, -0.753393, 0.697890, 1.972582, -0.065124, 0.659279, 0.207376, -0.546509, -1.274967, -0.065927, -0.419302, -0.251757, -0.638892, 1.805074, -1.801460, -0.108050, -1.346863, -1.705499, 1.452543, 0.755774, 1.092339, -1.012060, 1.814085, 0.545268, -2.122539, -0.280203, -0.426116, -0.256643, 1.048114, 0.155350, 1.364737, 0.395107, -0.022182, -0.653808, -1.266924, -0.426717, -0.359394, -0.179963, -0.773853, 0.089784, -0.740791, 0.367406, 0.407117, -0.689775, -0.731657, -1.155499, 0.893848, 1.235849, 0.320152, 0.059431, -0.604499, -1.350062, 0.125098, -0.814026, -0.506056, 2.164879, -1.353691, -1.011465, -0.685051, 1.104228, -1.157439, -0.485205, -2.497320, 0.604647, -1.420419, 0.602604, 0.278328, 0.150027, -0.138131, -0.050711, -0.841844, -0.070716, -0.595316, 0.010523, -0.203920, -0.225158, -1.402896, -0.126184, -0.593979, -0.145913, 0.167566, -0.596005, 2.164720, 0.217478, 0.742733, 1.029717, 0.628989, 0.806181, -0.248373, 1.520913, -0.438485, -0.566362, 0.652311, 0.866376, -0.269359, -0.113015, 1.266411, 0.594742, 2.423619, 0.543786, -0.115658, 0.857222, -0.940680, -0.214410, -1.496817, 0.500499, 0.141213, -0.806804, -0.237316, 0.447476, 0.168397, -0.172755, 1.882573, 0.240807, -0.297934, 0.611999, 0.966728, -0.078697, 0.168583, 0.205307, -0.952354, -0.320256, 0.832322, 1.666139, 0.631517, -0.506827, -0.551355, -0.657646, 0.575448, -1.135399, 2.069389, -0.841543, 1.787026, 1.482088, -1.690799, 0.524223, -0.594750, -0.077839, 1.278702, -1.026274, -0.978542, -0.393522, 0.004852, -1.052877, 1.080055, 0.734276, -1.044457, -1.639061, -0.755365, 0.800940, -0.184771, -0.412833, -0.531526, -1.402736, 0.940678, 0.166610, 0.144127, -2.324184, -1.375890, 0.537638, -2.428773, 0.509257, 1.208723, 0.928230, 2.237816, -0.288016, -0.211706, 0.966168, 0.021801, -0.601339, 0.686722, 0.120243, -0.109425, 0.983141, 1.350210, 0.351095, -0.580328, -0.471648, 0.837873, -0.419865, 1.950191, -1.676164, -1.986370, 0.535044, -1.917312, 0.519233, 1.278150, -2.637649, -0.931096, 0.118603, 0.208989, 0.886885, -0.091652, 0.377726, 1.055290, -0.649825, 0.433201, 0.086600, -0.017669, -0.332059, -0.156662, -0.450940, -1.142937, -1.463332, -0.243229, 1.614473, -0.170515, -1.079244, -0.849102, 1.475989, -0.930568, -0.487682, -0.630463, 1.860586, -0.264389, 0.156278, 0.447009, 0.016093, 1.353387, 0.646973, -0.220601, 0.994193, -0.775016, 0.351284, 2.529540, -0.645325, 0.582984, -1.466871, 0.789530, -0.782410, -0.199359, 1.063133, -1.527282, 0.697280, -0.916191, -0.797119, -0.148378, -1.099864, -0.918967, 1.772733, -0.293160, -0.175819, -2.873878, 0.210562, 0.133415, -0.447022, -0.369241, 1.551989, -0.777479, 1.698630, 0.308076, 0.278889, -1.220540, -0.180882, -1.663167, -0.552691, 0.126772, 0.002524, 1.350661, -0.513274, -0.644278, -0.488755, 0.066758, -0.210896, -0.287152, 0.636588, 1.123429, 2.485032, 0.986254, 1.648961, -0.075521, -0.548075, 1.986850, 1.357698, 2.300064, -0.284665, 0.543455, 1.592470, -0.184173, -0.111129, -0.580227, 0.220468, -0.208687, 0.448734, 0.032736, -0.966882, 0.317363, -0.481474, 0.684299, 1.336560, 0.027664, -0.437053, 0.020271, 1.879279, 0.982406, -0.496204, -0.909334, 0.454811, 1.069827, -1.622297, 1.827473, -0.816461, 2.020078, 0.805258, -1.092625, 0.198462, -0.714587, 1.197768, 0.916227, 0.396992, 0.253684, 1.290877, 1.118490, 0.079442, 1.900216, -0.119153, -0.384979, 0.524162, -0.592564, -0.999366, 0.199682, 1.003846, 0.474500, 0.327132, -1.394262, 0.752885, 0.283028, -0.360385, 0.428653, 0.014572, 2.063022, 1.644953, -0.036233, -0.295001, 0.869577, 0.983596, 1.707063, 2.156869, 1.711904, -0.502335, 0.147112, -0.873209, -0.035239, 0.523164, -0.462570, 0.900196, -1.329216, 0.601497, -2.313992, -0.413853, 0.438713, 1.284026, -0.428070, 1.461834, 0.398688, 1.465784, -1.900860, -0.729031, -0.142893, 0.168145, 1.704455, 0.512674, -0.244008, 2.288321, -1.461442, 0.456502, 0.660286, 1.396450, -0.079329, 1.148720, -0.483842, 0.477136, -0.125468, -1.041603, 1.084591, 1.639639, 0.376313, -0.469184, -0.598421, 0.442313, -0.119095, -0.946090, 0.831479, -0.121850, 0.701710, -0.260115, 0.230561, 1.623636, -0.190297, 0.415193, -0.057653, -1.480215, 0.053738, 1.113153, 0.218547, -0.671041, -1.507383, 0.717438, 1.844223, 0.630939, 1.625890, 0.127088, -0.071475, -1.260457, -1.249726, -0.959038, 2.164299, 0.507268, 0.194375, -0.568231, -0.606358, -0.074386, 1.034043, 1.147497, 0.100215, -0.636835, 0.568724, -0.068536, -1.281750, 1.593863, 1.938854, 1.019770, 0.663070, -0.956689, 0.100639, -0.398490, -0.916473, -1.039211, 0.554584, -0.261504, -0.073555, -0.130241, -0.882494, -1.379310, 1.844366, 0.617660, 1.127325, -1.575470, -0.154042, -1.422882, -1.155640, -0.707396, 1.282934, 0.003124, -0.224813, 0.284165, 0.232662, 0.929362, -1.390440, -1.287308, 1.866545, -1.010280, 1.712442, -1.134542, -0.303493, -0.868544, -0.916382, -1.447089, -1.748556, 0.324426, 1.156134, -0.435936, 0.033932, 0.515855, -0.717973, 0.027965, 1.252700, 0.997011, -1.459125, 0.939454, 1.253726, -1.565335, -0.006108, -1.643310, 0.873896, 1.374321, 1.225836, 0.564169, 2.153342, 0.162568, 0.651912, -0.418130, 2.703199, -0.767437, -0.534123, -0.294185, 0.285560, -1.023888, -0.096266, 1.327629, -0.547232, -1.165852, 0.056561, -0.068240, -0.574851, 2.475833, 0.610420, -0.604346, -1.104933, -0.095885, -0.108639, 1.184208, 0.000399, 2.368381, 0.941614, -0.641642, 0.324708, -0.957477, -1.203021, 0.813082, -0.150098, -0.296032, -0.135761, 0.870696, -0.107229, 0.634188, 0.866151, -0.081902, 0.325302, 0.842824, 0.390093, 0.025223, -0.203878, -0.570896, 0.164745, -1.844790, 0.520028, -0.023327, -1.829439, -0.456234, 1.800588, -0.199132, 0.992753, -1.584012, 1.606374, 0.349932, 0.682876, 1.050901, 0.870898, 1.312261, -2.837859, 0.733290, -1.073519, -0.025142, 0.738580, -0.574779, 0.580421, -1.445295, 0.138911, -0.580722, -1.430385, -0.628842, -0.905252, -1.387759, -1.177275, 1.764368, -0.966234, -0.530609, 1.081259, 0.225107, -1.078352, -2.185733, 1.035257, -0.793806, -1.409346, -0.784551, -1.106549, -0.126562, -0.905708, 0.269379, -1.128022, -0.242388, -0.423059, 0.105344, -1.024157, 0.202763, -0.063013, -0.088429, 0.655410, -1.110098, 2.428923, -0.502188, -1.386327, 0.226384, 0.604643, 1.620373, -0.364794, 0.778856, 1.857160, -2.043384, -0.325213, 0.132761, -0.545914, -0.417377, 0.042706, 0.209212, -0.701293, -0.149360, 1.221534, 0.417134, 1.092080, 1.184439, 1.789684, -0.040896, -0.480061, 0.916486, 2.427948, -0.111680, -0.231581, -0.041493, -0.379683, -0.015162, -0.145177, 0.646470, -1.081743, -0.558725, 0.075091, -0.658205, -1.520468, -1.368554, -0.435683, 0.404889, 0.623453, -1.698661, -0.045201, 2.583282, 1.622723, 0.515381, -2.472880, -0.349608, 0.761993, -0.425938, -0.247565, -0.165860, 0.578170, 0.214630, -1.104797, 0.237689, 0.099863, -0.344605, -0.584362, 2.300824, 1.934830, 0.870265, -1.091693, 1.200358, -1.127811, -0.624323, 0.413726, 0.279315, 0.453928, -0.681680, -0.627302, 0.258638, 0.344921, -0.623981, 0.562794, -0.215639, -0.856844, -0.794088, 1.259898, 0.237298, -0.622015, -0.548554, -0.502306, -0.174810, 1.027696, 0.806162, -0.467659, -0.239836, -1.998171, 1.063450, -0.718953, -0.139901, 0.545427, -0.714572, -1.050039, -0.315258, 0.345020, 1.039544, -0.948866, 0.298364, -1.238915, -1.511428, -0.610218, -0.938979, 0.377812, -1.114161, -0.372858, 1.207247, 1.328421, -0.238980, 0.268872, 0.167597, -0.487284, 0.463517, -0.361816, 3.039635, 2.437635, -0.044734, -0.258641, 1.838695, 0.080889, -1.251838, 2.388910, -0.033314, 0.069068, -1.440609, 0.259411, 0.343637, 1.518689, 1.273710, 1.182842, -0.750187, 1.290238, 0.002208, -0.352721, 0.390876, -1.150684, 0.119555, 0.282951, 0.501361, -0.069848, 0.949723, -1.317181, -0.989062, -0.088267, 0.520365, -1.843896, 0.089088, -0.195586, -0.311254, 0.659937, 1.233026, 1.125150, -2.106544, -0.356165, -0.779234, -0.691224, 0.484419, -0.931746, 0.809339, 1.002660, 0.370814, 0.853346, -0.548096, 1.514438, -1.187621, -0.662147, 1.479093, 1.327541, 1.307220, -0.234879, 0.403882, 1.447610, 0.589404, 0.694251, 1.343502, 0.272674, 0.695819, -1.971697, -0.448987, -0.082878, -1.171790, 0.567854, 0.177039, -0.769617, -0.249011, 0.916148, -0.773082, -0.621623, 0.152847, -1.794625, -1.364801, 0.501819, 1.037467, -2.247378, 0.861127, -0.657073, -1.112528, 1.174116, 0.983575, 1.945536, -0.734273, 0.342169, -0.452515, -0.989329, -1.565692, 0.567737, -2.375162, 1.539514, 0.180613, -0.231800, -0.754102, 1.981379, 3.051359, -1.317772, 1.254228, -0.000224, 0.684869, -0.271161, 0.132324, 0.312634, -0.484563, -1.966262, -0.647917, -1.647337, -0.648669, -1.341726, 0.174658, -0.761759, -0.014404, 1.944759, 0.014563, 1.354151, 0.974332, 0.585895, 1.500535, -0.562382, -0.906372, -0.462941, -0.996713, -1.512921, -0.180466, 1.329657, -0.379760, 0.280724, 1.320967, -0.749961, 2.008527, -1.209985, -0.731997, 0.308620, -1.720397, 3.468847, 1.166597, 0.364208, -0.477032, 0.365462, -1.407846, -0.146539, -0.430565, 0.746793, -0.504040, 1.846322, 0.308604, -0.199607, 0.464713, 0.967399, 1.176451, -0.954085, -0.310357, -0.312332, 0.376844, -0.141200, 0.626920, 0.526404, 0.487815, 1.620388, 1.133050, 0.610087, 0.787252, -1.111351, 0.080964, -0.643370, -0.551468, 1.412445, 0.110894, 0.437612, -0.533933, 0.197843, 0.660002, -1.448300, 0.303212, 0.222153, -0.010663, -0.377082, -1.287343, -1.244848, 0.992829, 1.138175, 0.372370, 0.172019, 0.384046, 0.685067, 0.370009, 0.150763, 0.040075, 0.499127, 0.037870, -1.727757, -1.036404, -1.291844, -0.674590, 0.435098, 1.315524, -0.050060, 0.092492, 0.867327, -0.280056, -0.815012, 0.058775, 0.279875, 0.304464, 0.336304, -0.606496, 0.249897, 0.147141, 0.326585, 1.065376, -0.200741, -0.024578, 1.711345, -1.081244, 0.254302, -0.493614, -0.766170, 1.137178, -2.513116, 0.477851, 1.114748, 0.535397, -0.476511, -0.349666, 0.930684, 1.363176, 0.299322, -0.473799, 0.240119, -0.145147, 1.566139, -1.574533, 0.856187, 0.557551, -1.186705, 1.320359, 0.925068, -0.289164, -0.113207, -0.469041, 1.077772, -0.092773, -1.313327, 0.292556, -1.077790, -1.116142, -1.835961, 1.567392, -0.789563, -1.157259, -0.066608, -0.020266, 0.295775, -3.064260, -1.619626, -1.247574, -0.333937, 0.639552, -0.738649, -0.343526, 0.413276, 1.288495, -1.008308, -0.294123, -0.610943, -0.259599, -0.501844, -0.520179, 1.200212, -0.934556, 0.989451, 0.180485, 1.793080, -2.066965, 1.462470, -0.795857, -0.960574, -0.416713, 0.013765, 0.915275, -0.294831, -0.220237, -1.689309, -0.923329, -0.069512, 0.005182, 0.564783, -1.919777, 1.912786, 0.417144, -0.031081, 1.462456, -0.391718, -0.624316, 0.173232, 0.252350, 0.016398, 0.595127, 2.154663, -0.027733, -0.755305, 0.187097, -0.971865, 0.063590, -1.592528, -0.266684, -0.138495, -2.285557, -0.799050, 1.624028, 0.547817, 1.956761, 0.141741, 0.388984, -1.128071, 0.169306, 0.129080, 2.300993, -1.876662, 0.113277, -0.157561, -0.498305, -2.280520, -0.410952, 0.207234, -1.054393, 0.599088, 0.355501, 0.107757, 0.097653, -1.604631, -0.844321, 0.464462, 0.658170, -0.357475, 1.042900, 0.223686, -0.420273, -0.090101, -1.214755, -1.180588, -1.094236, -1.393801, -0.637307, -1.002002, -0.755302, 0.072168, 1.117273, 0.103632, -0.369438, 2.210273, 0.170898, -1.366383, 1.044325, -0.513313, 0.389067, 1.236725, -0.929034, 0.783262, -0.005786, -0.271203, 1.839131, 1.016765, 1.187792, 0.323238, -0.113888, -2.164189, -1.405855, -0.274058, -1.355127, -1.506934, -1.182847, -0.370296, -1.614776, 0.297431, 0.052085, 2.701141, -0.926264, -0.659334, -1.514827, -1.096203, 1.766446, -1.792354, -0.516676, -0.970751, -0.610784, 0.214726, -0.105453, -0.081795, -1.493617, -0.187128, -0.801699, -0.350642, -0.525621, -2.161659, 0.584065, -1.357938, -0.521444, 0.499180, 1.660716, -0.291489, -1.528784, 2.352291}, - { -1.032016, 1.854591, -0.215522, -1.387603, 0.004889, 0.449155, 0.104728, 0.020874, 1.222272, 1.480285, -1.191374, 0.947607, 0.888379, -1.506574, -0.559701, -0.055621, 0.291745, 0.597127, 2.152806, -0.869542, 0.017395, 0.930051, -0.744311, -1.700843, 0.436947, -1.766412, 0.529422, -1.023080, -0.772948, -0.697452, -1.501460, 0.432844, 0.322991, 0.389627, -0.792569, -0.314687, 1.667322, -0.355861, 0.120736, -0.273842, -0.784053, 0.184458, 0.210351, -1.140201, 2.409621, 1.449104, -0.002138, 1.021659, -0.911501, -0.843906, 0.111113, 1.964941, 1.542510, 1.406612, 0.517131, 0.368924, 0.024763, -0.337369, -0.031090, 1.290943, 0.087439, -1.344030, -1.033239, -0.346714, 0.852564, 0.677325, -0.901013, 0.418104, -0.480731, -1.097337, -1.691154, -0.532958, 0.617703, 0.877878, -0.645001, -1.062746, -0.380974, -0.614441, 1.092631, -0.866036, -0.931524, -0.626952, 1.226366, 0.168713, 0.950177, -0.557153, -0.267041, 0.042744, -0.072765, -0.571458, 0.371207, -0.181331, -1.174651, 0.100353, 1.152169, -0.245983, 0.276579, 0.630689, 0.645390, -1.542664, 0.287892, -1.966227, 2.895799, 0.473836, 1.288372, 0.148612, 2.475049, 0.527445, 0.937163, 2.688011, 1.219828, 0.277092, -0.749727, 1.249389, 0.387824, 0.423623, 0.037290, 0.043830, 0.360338, -2.508510, 0.465263, 0.561708, 0.609726, 0.690628, -1.026875, -1.010403, 2.002129, -1.971392, 0.112570, -1.539712, 0.553410, 0.028059, -0.004749, -2.133714, -1.014866, 1.476596, 0.280019, 1.398513, 1.157147, -0.290232, -1.981096, 0.674028, -1.511503, 0.483117, 1.363053, -0.514163, -0.776454, -0.158192, -0.253181, -0.428754, -0.288293, -0.172351, -0.911873, -1.360609, 0.307155, 1.873235, -0.963907, -0.135169, 0.562139, 0.774167, -0.882563, -0.615164, 0.180195, 0.077910, 1.179424, -0.874645, 0.056420, 0.331574, -0.023752, 0.944618, 1.629864, -0.829140, -0.198809, 0.936105, 0.310516, -0.208277, -0.423705, -1.217533, -0.213382, -0.126103, -0.052538, -0.506724, 1.581277, -0.358663, 1.089691, 0.531895, -0.027278, 0.703215, -0.882655, 1.394934, 0.099182, -0.450208, -0.920682, 0.480102, -1.393848, 0.554102, 1.890914, -0.238349, -0.189114, 1.912245, -0.986157, -0.889509, 0.745610, -0.605612, -1.891715, 0.032407, 0.659069, 0.421151, 0.084908, 0.125713, -0.180533, 1.662164, -0.622092, 1.279968, -0.944012, -0.838864, 1.417750, 0.707576, -0.980073, 1.642846, -0.071000, 0.053094, 1.109880, 0.708380, 0.488305, -0.069913, -0.599691, -1.161746, 0.700080, 1.521088, 1.792642, 1.218995, 1.926570, -0.364577, -1.702465, 1.949011, 0.908122, 0.130924, 1.668756, 1.884508, 1.399567, 0.008585, 0.936778, 0.240411, -0.407272, -0.708686, -0.546560, 2.050210, -0.026404, 0.231036, -0.869428, -1.228726, -0.153557, -0.346251, 1.184444, -0.400680, 1.094365, -0.002089, -0.941457, 1.553974, -0.433057, 0.789555, 1.313542, 0.020200, 1.500007, -0.669353, -0.302262, 1.709308, 0.432081, 0.398792, -0.536806, -0.653943, -0.196166, 0.832619, -0.867496, -0.153895, -0.252974, -0.741366, 0.639479, -1.318888, -0.038313, -0.693417, -0.927080, 0.932684, 0.803425, -1.728262, 1.682792, -0.857272, 0.657629, 0.849434, 0.296028, 0.144598, 0.062429, 0.801032, -0.897822, -0.890341, 1.054406, -0.498566, 0.090428, -1.076260, -1.598137, -0.581367, -1.173660, 1.061905, 0.356659, 1.304267, -0.801799, 1.246165, 0.667837, -0.820372, -1.309478, 0.459676, 0.541285, -0.618476, -0.739771, 0.330440, 1.564528, 1.084407, 1.471269, -0.526647, 1.086766, -0.206993, -0.920489, 1.210893, 0.645602, 0.103009, 0.930268, -0.095701, 0.229570, 0.513355, 0.115237, -0.324102, 0.812715, 0.602063, -0.215722, 1.318895, 1.701331, -1.467334, 0.958047, 0.194303, 0.194073, -1.831349, 1.143847, 0.775388, -0.707565, -0.774336, 0.262818, -2.312440, 0.591929, -0.148091, -0.065918, 0.584594, 0.481410, -1.359851, 1.005084, 0.144354, -0.367480, 0.664287, 2.416342, -0.296834, 0.749579, 1.132690, 0.002088, 0.825948, 2.032626, -1.084534, -0.283351, 0.682833, 0.014223, 1.041453, 1.116392, -1.086432, 0.125484, -0.321226, -0.203686, 0.296916, 1.481791, -0.622020, 0.474773, 0.132598, -0.975393, -0.026756, -0.700388, 0.646137, 0.185499, 1.233930, 1.029603, -0.135610, -1.317337, 1.330919, 0.274546, 0.261772, 1.215554, 0.114212, 1.033923, 0.616942, 1.403023, -0.722602, 0.327544, 1.391384, -1.382234, -1.821349, -0.125506, -0.706927, 0.199987, 0.351954, 1.134098, 0.870109, -0.078746, -0.857906, 0.717979, 1.274832, -0.765643, 0.232387, -0.521633, 1.727670, -0.260526, -0.987254, -0.742446, -1.446580, 0.181792, 0.888987, 0.472363, 0.634425, -0.716143, 0.079465, 1.374539, 0.493535, 1.927585, 2.140982, 0.401549, 0.890757, 0.774744, 0.199304, -0.420552, -0.874384, 0.143213, -0.470475, -0.834608, -0.113475, -0.040145, 0.985630, 1.303231, 0.270954, -2.334831, 0.751316, -0.360642, 0.429777, -0.561546, 0.001370, 0.500387, -0.685473, -1.119624, 2.591336, 1.973171, -1.495251, 1.147286, -1.476510, -0.750757, 1.819601, -1.387690, -1.674675, -0.820915, -0.841003, -1.054115, -0.878545, 0.450059, 0.302665, -0.304095, -0.657107, -1.373809, 0.683586, 0.513120, -0.153538, 0.587214, -0.178789, -0.771145, 0.981733, -2.678084, -0.360978, 0.579160, -0.979916, 1.180557, 0.906121, -0.988775, 0.429118, -0.243366, -2.479257, 0.148848, 0.418409, -1.841728, 0.005940, 0.478099, 1.772866, -1.233891, -2.564396, -0.056156, 2.089041, 1.088386, -0.353672, 0.668447, 0.149646, -0.553954, -0.566497, 0.442340, -0.011381, 0.471670, 0.602019, -1.436193, -1.254965, 1.780027, 0.052386, 0.989152, -0.421028, 1.482023, 1.574207, -1.785544, -0.611356, 1.006527, -1.607428, 1.321297, -0.296010, -0.895521, 1.118481, -0.601377, -0.067650, -0.281833, 1.592834, -0.043791, 0.239481, 0.117711, -1.326522, -1.173818, -0.889782, 0.499607, -1.229618, 1.352457, -0.375628, -2.688049, 0.484384, -0.675598, -2.851353, 0.418927, -0.531147, -2.178747, -0.620355, -0.687873, -0.452168, 0.078381, -0.788451, -0.126407, -1.430971, 0.301005, -0.420261, -1.044814, 0.721834, -0.224389, 1.269181, -0.673290, 0.610022, 0.322914, 0.288976, 2.962226, 1.555213, 0.670430, -2.914404, 0.775814, 1.530241, 0.044895, -0.413111, -0.450824, 0.535644, -1.102416, 0.855280, 0.046259, -0.269084, 1.433368, -1.204725, -0.032151, 0.867805, 1.311642, 1.228350, -1.213409, -0.469054, -0.711696, 2.192108, 0.172786, 0.015074, 0.886867, -1.970909, 0.222367, -0.839810, -1.680780, -1.506236, 0.595583, -0.460526, 1.304477, -0.301202, -0.942746, 0.799834, -1.234622, 0.997966, -0.343350, 0.125635, -0.249554, -1.039301, 1.197757, -0.589366, -0.758682, -0.623128, -0.513029, 1.001507, 1.726441, 0.384944, -0.077365, -0.946518, -1.145625, -0.468252, -0.785403, -0.589111, -0.590267, 0.253627, 0.345603, -0.551738, -0.487664, -1.393245, -0.251796, -0.112630, -0.761932, 0.513099, -0.722046, -1.397475, -0.062571, -0.006208, -0.344936, 0.898064, -0.406844, -1.058608, -1.038658, -0.707946, 1.597920, -0.832562, -0.419433, 0.073509, 1.006773, -1.736862, 0.820719, 0.019082, 0.353860, 0.408105, -0.055810, -1.098349, -0.817160, -0.311048, 0.405275, -0.629797, 0.755819, -0.238527, -1.026413, -1.139971, -0.280944, -1.043725, 0.112288, 0.062357, -0.387122, -0.676964, -2.498029, -2.384445, 0.339674, 0.715561, -0.850102, 0.794963, 1.235157, -1.154691, -0.911378, -1.116083, 1.677790, -0.586472, -1.897209, 0.254429, 0.190187, -0.011855, -1.017788, 1.839750, -1.371098, 1.144897, -1.102128, -0.237888, -0.471465, 0.802670, 1.046923, -0.476656, 0.760300, 1.681519, -1.869753, -0.557502, 0.121166, -0.169569, -0.759741, -0.747529, -1.215231, -0.652986, -1.626459, -0.341549, 0.504136, 0.896154, -0.831009, -0.882100, -1.043559, -0.576469, -0.036531, 1.900556, 0.272033, -0.473085, -0.882971, 1.533360, 0.438491, 0.201686, 1.772072, 1.311067, 0.290760, 0.721544, 0.680458, 0.309648, -1.778819, 1.091028, 1.652424, -0.703120, -0.368153, -0.064626, -0.516528, 0.088144, 0.755239, 0.446299, 2.049288, 0.853415, 0.410563, -0.441081, 1.941374, 0.318625, -0.929125, 0.888702, -0.217404, -2.055099, -0.298698, 0.433219, -0.851539, 0.028616, -3.073194, 0.197669, -0.214431, 1.393304, 0.457332, 0.282850, 0.748774, -0.370778, 0.512766, -0.869590, 1.775725, -0.381640, 2.064993, -0.150312, -2.011588, -1.000874, -0.619422, 0.759872, 1.527296, 0.246786, 0.102310, 0.121937, -0.123196, -1.073119, 0.353966, 0.538203, -0.672015, -0.445545, 0.472643, -0.278015, -0.274855, 0.201580, -0.291376, 0.979554, 1.285204, -0.079972, 1.845073, 0.018455, -0.332106, 0.538070, 2.261812, -3.153538, -0.900794, 1.344540, 1.438202, 0.378637, 0.743369, 2.143876, 1.284867, -0.180881, -0.405424, -0.591861, 1.657997, -0.371613, 0.616362, 0.244465, 1.690240, 0.469006, 0.312795, -0.107786, -1.433827, 1.043196, 0.540520, 0.625573, -0.632253, 0.054265, 0.009328, 0.440699, 0.096355, 0.482888, 0.013599, 0.721417, 0.758791, -0.674839, -1.084236, 0.194385, -1.488305, -1.531361, -1.141776, -0.333379, -0.044094, -0.332861, 0.170944, -0.919710, 1.492268, -0.138132, -1.301799, 0.090258, 1.217156, 0.747416, 0.275898, -1.078026, -1.568503, -1.258780, -0.401220, -0.797802, 0.888903, 1.191863, -0.857255, -1.323898, -2.001235, 0.192529, -1.139978, -1.305345, 1.444400, 0.820702, 0.086833, 0.972912, -0.738201, 1.272847, 0.435851, -0.581540, -0.068129, -0.577289, 2.224838, 0.014232, -1.024243, 0.219190, 0.413199, 1.241418, -1.174235, 0.017577, 0.019241, 0.784325, 0.914175, -0.453461, 0.667504, -0.809297, -1.750080, -0.141297, -0.831413, -0.125206, -0.465609, 1.580447, -1.012284, -0.849111, 0.306523, -0.320722, 1.377635, 1.430311, 1.658944, 0.309130, -1.601476, -0.300309, 0.356393, -0.100079, 1.858357, 0.734674, -1.489920, -0.702290, -0.577557, 0.845826, 0.925556, -0.133251, -0.250079, -0.270773, -0.440477, -0.419883, -0.364977, -0.275343, -1.290047, -1.257682, -0.580341, -0.808149, -0.677219, 1.351719, -0.465671, -1.343446, 1.863603, 0.059346, 1.143813, 0.467443, 2.004931, -0.065551, -0.069550, 2.081304, -1.088374, -1.724354, 0.986678, 1.349470, -0.287666, 0.636318, -0.831416, -0.276590, 0.096441, 0.400207, 1.761069, 0.033869, -0.239444, 1.927289, 0.326985, 1.861964, -1.027518, -0.252546, -0.914581, -1.493719, 0.687954, 0.431235, 1.293586, 1.036075, 0.309026, 0.008513, -0.431012, 1.367234, 1.897807, 2.296672, 0.948918, 0.600105, 0.522261, -0.368362, 0.892143, 0.249466, 0.482641, 1.448118, 1.727586, 0.565913, -0.290096, 1.535042, -0.757973, -0.086502, -0.669223, 0.620891, 1.306139, 0.836862, -0.059012, 0.161054, -0.110510, 0.248580, 0.423718, 0.776868, 1.771792, 0.019362, -0.314416, 0.230599, 0.292728, -0.568906, -0.411275, -0.858015, -1.882231, -0.529734, 0.197664, -1.177380, -0.626984, 0.442823, 0.330114, -0.523000, 0.152460, 1.968234, -0.743490, 0.672194, 1.995935, -1.006615, -1.737551, -1.133825, 1.569160, -0.550759, 0.260316, 0.061030, -0.299893, -1.398609, 0.464938, -0.578189, -0.674429, -0.892877, -1.309711, 0.967669, -0.016976, 0.074026, 1.035867, 0.579666, 0.139395, -1.750185, -0.507347, -0.542170, 0.013362, 0.964037, 0.991608, -0.373843, -0.694114, 1.507900, -0.593654, -1.487798, -1.497645, 1.669663, -0.458306, -0.706962, 1.662581, -1.918587, 0.084422, 0.421538, 0.496799, -1.673889, 0.555501, -1.068548, 0.731318, 1.562805, -1.740687, -0.297419, 0.128330, -2.583031, 0.075735, -0.311489, -0.097381, -1.189062, -0.663472, 0.639390, 3.145621, -0.405558, 0.410006, 1.408620, 0.725816, 0.656646, -1.805473, -0.804754, 0.005580, 0.015301, 1.217217, -1.187022, -1.129431, -0.802469, -0.073172, -1.370412, 1.145019, 0.297423, -0.303112, -0.154936, -0.087705, -0.487541, 0.076855, 0.900322, 1.459603, -1.114173, -0.560727, 0.828400, 0.568284, 0.247648, 0.069986, 2.343649, 0.483855, -0.491534, 1.264371, -0.386331, 2.186863, 0.176023, -0.320987, 0.538502, 1.360584, 0.091475, 0.728556, -0.024649, 1.377089, -0.621904, 0.375754, 0.889572, 0.147274, 0.287843, -0.257625, -0.354862, 0.236499, -0.057406, -0.076215, 0.582610, 1.831080, -1.549489, 0.369506, -0.231272, -0.555946, 1.105228, 1.310853, -0.381417, -0.592675, 0.445043, 1.412374, 0.509445, 0.499025, -0.202159, -0.301325, -1.021279, -0.213811, -0.307318, 1.265393, 0.518794, -1.086239, -1.037994, -0.553106, 1.546336, -1.005629, -0.566092, 0.461581, 0.757976, -1.161483, 0.208647, -0.514475, -0.415844, 0.292909, -1.012986, 1.179868, -0.008937, -0.065337, -0.647396, 0.424811, -1.308007, -0.544268, 0.065002, 0.618984, -0.507736, -1.052013, 0.093192, -0.221534, -1.012366, -0.000609, -0.712374, -0.525488, -2.226508, 0.986113, 1.093016, 0.599521, 0.482077, -0.396838, 0.220787, 1.014042, -0.481698, -1.213871, 0.538134, 0.482876, 1.040492, -0.636604, -0.822290, -0.387025, -0.250082, 1.851348, -0.984867, -0.305903, 0.132120, 1.211872, -1.638612, 0.857618, 0.275511, 0.711673, -2.569485, -0.712061, 2.313772, 0.018603, 0.436174, 0.594517, 1.579452, 0.709101, 1.343971, -2.581629, 0.880758, 0.037315, 0.769113, -0.181262, -0.486842, 2.206519, 1.570604, -0.700580, -0.985305, 0.209329, -0.590215, -0.184059, 0.727232, -2.210170, -0.798697, -2.763262, -1.204549, -0.898423, -1.647859, -1.284928, 0.076998, 0.020094, -0.140689, -1.921330, 0.104324, 2.374990, 0.842787, 0.546089, 0.317766, -0.498612, -0.458068, -0.226340, 1.538769, -0.114176, -0.142312, -0.408754, 0.919678, 0.478961, -0.374630, 0.883696, -1.454080, 2.120202, -0.769070, 0.368273, -1.414514, 0.071525, 0.066694, -0.893816, 1.744107, -1.628857, -1.190436, 1.830014, 0.798957, 1.285507, 0.414290, -0.365950, 0.212305, 0.541625, 0.519255, 0.206425, 0.083886, 1.522180, 0.597596, 0.972386, -1.417210, -0.419069, -1.046872, -1.408441, 0.460918, 0.604269, -0.003579, 0.915099, 0.020660, 1.913400, 0.595366, -0.925062, 0.470077, -1.667605, -0.947630, -0.550432, -0.127000, 1.520927, -0.075824, 0.408459, 1.006025, -1.145472, -0.549303, 2.061292, 0.645890, -0.500019, -1.351231, -0.283737, 0.694273, 0.044929, 1.779419, -1.637010, 2.111714, 0.767379, -2.375297, 1.179533, -0.101051, -0.066479, -0.008702, -0.694684, 0.393051, 0.873756, -2.176816, -1.770323, 1.470756, -0.029126, 1.166746, 1.217988, 0.559861, -0.695957, -0.065061, -0.070542, 0.546533, 0.898012, 0.266859, -1.274410, 0.678097, 0.061996, -0.400796, -2.607193, -0.851315, -0.406411, -0.547298, 0.054909, 1.414761, 1.246948, 0.467590, 1.095844, 0.482120, 0.437341, 0.263228, 1.033184, 0.252267, 0.093054, 0.805185, 0.315904, -0.520940, -1.022251, 0.019651, 0.586666, -0.070927, 1.777155, 0.191013, 0.488259, 0.874730, -1.575678, 1.953128, -0.075579, 0.412057, -0.045897, -0.595760, -0.876899, -0.166518, 0.121110, -1.338137, -0.408745, -0.581085, 1.783476, 0.292805, 0.504644, -0.766789, -0.717569, 0.747268, 0.881905, -1.250172, 0.419696, -0.937994, -0.229856, -0.333113, -0.387024, -0.166988, 1.472329, -1.239947, 0.218135, -0.170028, 0.168799, 1.355003, -1.128460, 1.150250, -0.598744, 1.887246, -1.435522, 0.053824, -0.097469, -0.247719, -0.908708, 0.957033, 2.029927, -0.265685, 1.980939, -0.295662, -1.032470, -0.312848, 1.586759, 2.132348, -1.538381, 0.228691, -0.049835, -1.399582, -0.073877, -1.006920, -1.325234, -0.726887, 0.771350, 0.892443, -1.405279, -0.136513, 0.428208, 0.050376, -2.476303, 0.707187, 0.569651, 1.378333, -1.367301, -0.792259, 1.247573, 1.154033, -1.178072, 0.121984, -1.333111, 0.552416, 1.027333, -0.239504, 0.696476, -0.128553, -0.095029, -0.103731, -0.420336, -0.136789, -0.732562, 0.643649, -0.304384, 1.173717, 0.441279, 0.148747, 0.905687, -0.431355, -0.803931, 1.021063, -0.909395, 0.628105, -1.691992, 0.841441, 1.819508, -0.221426, -0.430381, -0.019026, -1.349211, 2.117701, -2.244253, -0.940768, 0.943783, -0.492540, 1.163696, 0.055375, 0.587787, -0.819144, 0.328868, 1.232107, -1.007656, -1.393181, -1.672471, 0.536193, -0.228995, -0.965492, 0.785634, 0.710431, 0.079519, 0.316411, -0.182454, 0.490831, -0.513063, 0.476037, 1.466525, 0.220559, -1.405481, -0.026434, 2.269587, -0.058644, 0.952468, 1.499490, 0.831637, 0.490270, 0.111448, -0.682964, 0.391554, 0.579796, 0.197869, -0.920101, 0.163704, 1.364783, 0.604521, 0.460194, -0.268582, -0.199590, -1.166637, 0.442435, -0.103673, -0.431949, 1.355813, -0.615516, 0.813909, 1.960588, -0.043940, -0.643737, 0.494287, -1.988429, 0.144331, 0.190850, -0.403714, 1.187951, -1.695865, -0.276980, 1.428582, 0.346514, 0.886400, -0.464825, 1.083113, 0.701988, -0.590220, 0.005318, 1.247763, -0.209317, 1.099862, 0.921660, 1.456642, -0.456111, 0.595674, 0.212764, -0.328237, -0.214248, -0.707355, -1.580833, -0.168709, 0.146383, 3.446459, -0.122041, -0.734542, 1.032795, 0.831277, -0.047282, -0.412163, 1.512903, 1.538750, 1.471705, 0.094461, 0.075108, -0.136330, 0.658774, 1.018835, 0.050999, 1.389396, -1.198546, 1.702388, -1.481226, 1.578812, -0.298361, -0.263696, 0.188468, -0.175714, 0.700729, 0.594524, 1.296757, -0.191567, 1.559525, 0.866800, 2.456388, -1.235216, 0.037084, -0.677195, -2.670623, 0.046851, 0.322372, -0.572669, 0.897736, 2.094399, 1.085917, 0.906435, -0.155260, -0.659601, 1.238277, 1.040122, 0.812068, -0.832285, -0.283456, 0.582074, 0.515003, -1.281442, 0.631931, 0.596915, -1.637752, -0.443029, 0.236002, -1.155528, 0.613431, -0.523756, 0.323791, 1.396541, -0.571049, 1.104737, 0.736704, 0.557855, 0.285693, 0.189533, 0.930596, -0.210904, -0.920275, 0.052844, 0.074781, 1.949393, -2.412667, 1.003973, -0.589588, -0.003506, -0.902035, 1.377478, -0.778610, -0.407606, 0.117293, -0.651661, 0.054945, -1.211458, 0.462582, 1.873424, 0.722806, -2.770347, -0.119273, -0.503750, 1.473681, 0.975476, -1.010413, 1.042296, 1.238433, -0.938008, -0.728560, 0.376925, -0.956081, 0.011466, 0.725805, 0.520027, 0.024736, 0.395166, 0.276382, -0.758967, 0.371791, -0.277016, -0.482217, 1.516854, 1.238215, 0.357917, 0.753775, -0.044133, 0.383709, 0.499183, 0.163549, -1.717057, -2.024710, -0.611703, 1.943177, 0.701638, 0.592317, -0.267938, 0.321441, -0.256890, 1.579996, 0.203618, 1.526209, 0.179004, -0.660084, -0.069916, -0.014608, 1.471248, -0.897747, -0.235631, 0.112548, -0.346779, -0.728746, 0.624949, -1.149650, 0.757305, -0.896338, 2.843814, -1.371808, -0.448464, 0.954617, -0.962784, -0.036211, 0.610669, -0.092109, 1.645823, -1.188056, -2.315273, -0.528662, -0.717103, -1.277390, 1.336446, -0.147532, 0.654006, 0.463884, -0.552874, 1.955063, -1.285863, 0.992872, -1.916208, -2.395226, -0.408732, -1.977409, 0.917685, 0.383861, -0.142092, -1.318711, 0.124619, 1.056977, 0.413814, 0.336144, 1.533921, 0.223313, 1.060642, -1.283249, -0.631323, -0.175790, 0.651299, -0.630352, -0.704957, 1.356616, -0.880676, -0.030906, 0.542885, 0.846886, 0.586080, 0.093319, -0.157209, 1.112800, 1.229595, 0.005031, -0.391875, 0.533880, -1.191926, -0.791639, 1.051172, 1.205914, 0.558227, 1.948544, 2.067349, 2.409107, 0.266498, 0.328651, 0.865006, 1.353431, -1.515322, -2.389339, 0.145200, -0.671403, -1.114850, -0.061807, -1.386645, 0.393648, -1.953225, -0.282228, -1.394624, -0.523367, 0.237623, -0.684228, -1.456224, -1.633033, 1.499257, -0.893801, -0.464386, -0.877572, -0.206085, -0.447041, 0.758949, 1.617575, 0.753378, -0.250988, 1.006753, -1.099142, 0.881237, -1.572938, -1.160119, 0.644720, 0.225622, -1.069600, -2.109837, -1.390318, -1.611650, -0.714760, 1.134972, 0.643940, 1.706788, 0.115340, -0.530326, -1.246605, 0.487469, -0.132878, 0.409373, -0.859713, 0.799765, -0.413604, 1.000953, 0.798361, -1.259677, 0.428005, -0.923447, 0.631390, -0.500858, 0.557168, -0.275840, 0.438324, -1.572771, 0.445342, 1.004666, -1.209943, -0.357591, 0.068273, 2.305620, 0.597706, -1.054057, -1.814628, -0.788999, -0.588640, 0.206967, -0.103477, 1.809712, 1.267682, -1.026873, 2.027195, -1.285425, -0.972916, 1.352830, -0.526871, 0.544960, 0.541204, 1.308058, 0.834290, -1.286143, -0.154372, 1.407742, -0.246564, 0.830907, -0.967135, 1.820153, -0.549792, -1.070620, -0.534266, -0.919116, -0.185253, 0.731539, 0.212810, -0.332154, -0.510626, -1.454790, -0.080025, -0.351333, 0.157283, -0.549266, -1.615344, 1.730455, -0.649297, 0.190744, -0.831886, -0.936667, 0.015948, 0.720576, -1.876699, -0.682965, -0.453794, -1.414689, 1.736050, 0.008561, 0.312144, 1.296210, -1.280944, -0.704392, 0.290724, 1.565238, -0.202578, 0.191801, -0.968651, 1.514850, -1.114058, -1.096789, -0.820385, 0.845176, 0.413650, 1.021525, 1.222043, 0.154778, 0.454504, 1.096233, 1.266801, 1.635947, -0.113073, 1.154464, -1.577966, -0.794192, 0.220213, 0.399331, -1.302455, -0.416022, -1.026614, -0.097876, 0.951085, -0.519640, 1.567650, -0.060696, 0.663175, -0.077574, -0.192225, -0.149003, -1.062935, -1.037653, 0.408102, 0.479170, 1.558305, 0.678527, -0.581692, 2.430110, 1.163041, -0.680079, 0.396466, -0.705365, 1.590397, -0.740765, 0.867322, 0.040142, -1.303725, -0.684827, 0.131530, -1.807243, 1.528909, -1.010846, 1.640436, -0.908713, 0.787411, 0.231352, -0.745874, 0.160292, -0.279531, 0.961012, -0.797647, 1.366180, -0.901171, -1.337296, -1.238572, -0.402956, 0.460458, 0.380735, -0.154166, 2.192153, 2.028020, 0.337790, -0.527919, 0.713404, 1.199757, -0.055861, 0.851719, 1.414778, -1.763312, -0.001033, -0.542141, 1.378675, 2.086765, 2.305128, 0.547403, -0.851679, -0.333418, 0.070833, 0.965707, 1.560105, 1.510050, 2.643993, -0.706800, 1.003849, 1.358109, 0.846680, 0.901954, 0.112089, -0.836486, -0.064886, 0.430954, 0.607838, 0.375196, 0.289134, 0.330539, -0.097550, 1.617773, 0.903045, 0.742820, 1.826865, 0.926677, -0.718733, -1.047407, -0.886977, 0.369895, -0.606141, -0.572282, -0.479812, -0.218184, -1.774815, -0.805873, -0.730471, 0.823628, 1.142655, -1.514761, 1.791532, -0.234077, 0.955067, -1.358827, 0.616646, -1.283117, 0.877659, -1.940242, -1.246764, 0.640437, 1.130462, 1.001348, -1.680912, 0.409822, -1.666909, -0.030885, -0.516816, -1.856195, 1.018544, -1.724585, 0.522068, 0.700098, -1.143859, 0.572873, -0.961349, 0.820750, -0.010485, -0.116311, 0.203981, 0.590563, -1.003838, -0.787620, 0.344983, 1.350685, 1.458603, 0.420328, -0.033227, 1.323458, -1.059601, -1.720771, 0.709019, 0.913253, -0.470768, 1.742693, -1.082031, -1.177111, -1.998001, -0.563768, 0.971397, 0.067253, -0.101241, -0.186177, -0.508653, 1.322866, -0.055172, 0.618867, -0.008830, 0.975024, 0.869386, 1.234461, -1.351817, -0.236427, -1.868688, 0.786276, -0.265823, -1.178222, -0.578450, 0.256279, 1.031529, -2.289628, 0.553063, -0.661698, -0.990158, 0.396663, -1.957404, 0.999205, -0.109836, -0.985665, 0.083380, -0.534359, 0.222067, 1.084438, -0.862686, 1.312481, 0.760783, -0.581048, 0.268677, -1.480391, -0.107075, -1.184436, -0.048022, -0.344521, 1.393321, 0.044444, -0.383481, 1.147731, 0.360637, 1.734339, 1.802311, -0.726881, 0.249944, -0.373506, 0.898014, -0.964003, 0.876672, 0.426642, -0.194719, 0.564961, -0.697050, -0.312073, 1.120262, 0.044470, 0.470137, -0.122352, -0.604833, -0.349258, 0.833419, 0.169384, 1.268513, 1.729769, -0.236001, -0.233723, -0.580897, -1.161469, -0.365901, 0.312669, 0.887875, 1.546978, -0.890675, 0.862030, -1.636754, -1.424074, 1.165398, -0.158082, 0.288339, -0.451497, 0.285630, -0.240152, 1.615812, 0.680265, 1.595659, -0.756025, -1.018565, 2.034748, -0.485651, 0.994230, -0.604563, 1.064825, 1.926302, 0.336396, 1.088176, 1.708239, 0.502367, 0.116351, 0.103977, 0.588522, 0.063292, 1.254127, 0.304198, 1.096845, 2.508130, 1.049502, -1.006886, -1.027467, 0.397627, -0.794067, 0.662102, 0.864420, -0.024122, 0.505713, -1.151320, 0.891628, 0.202978, 1.682321, 0.795602, 0.633982, -1.115798, -1.693797, 0.127936, -0.077949, 3.344180, 0.242363, 1.002810, -0.503455, -0.550001, -0.147092, 1.216906, -0.316945, -0.260383, -1.388100, -1.169067, -1.270534, -0.625484, 1.227430, 0.935123, 0.037409, 0.372030, -0.154392, -0.684856, -0.208470, -0.657843, 0.125208, -0.582134, 0.382061, 0.860177, 0.611998, -0.317250, 1.057534, -0.342993, 1.550719, -0.594171, 0.035464, -0.591165, 1.047574, 0.960892, -1.699322, 1.535361, -0.667340, -0.900123, 0.201211, 0.033034, 0.346498, -1.110052, 0.407570, -0.038033, 0.250053, -2.031626, 0.315210, 0.641723, 0.562864, -0.090892, -1.308061, 1.533030, 1.242754, 0.098800, -0.646152, -0.523367, 1.535242, 1.043365, -0.850727, -0.521824, -1.078189, 0.648358, -1.514060, 0.725995, 0.384459, -1.331182, -0.760957, 1.403442, 0.563748, -1.040899, -0.193141, -1.567497, -1.193108, 0.190353, 0.552560, -1.074500, 0.653699, 0.819858, 1.906865, -0.750278, 0.314379, -0.029354, 0.286899, -0.536086, 0.059802, 0.380686, 1.620046, -0.571762, 1.314672, -1.293426, 0.307908, 0.419348, 0.371080, -0.928048, 0.122027, -2.604293, 1.059884, 0.027451, 0.903947, -0.272890, 1.052297, -0.386181, -0.983350, -1.723490, -1.499208, -0.251930, -1.946835, -0.064450, -0.491760, 1.573286, 0.032768, 0.013694, -1.061894, -0.974271, -1.146702, -0.716149, -0.752461, 0.653892, 1.547198, 0.103832, 0.698579, 0.671568, 0.478396, 1.627655, 0.271561, 1.359593, -0.324283, 1.696703, -0.258062, -0.728895, 0.863040, -0.091661, -3.772455, 0.230892, 0.292104, 2.534233, -0.102419, -0.913761, 0.931531, -0.155057, 1.769632, -0.535695, 0.382460, 0.152282, -0.467083, -0.668859, 0.105002, -0.660106, 1.467721, -2.155798, -1.704149, 0.336524, 0.662871, -0.103230, 0.879865, 0.516020, 0.295518, -0.013646, 1.164235, -1.102249, -0.198510, -0.366394, -0.628972, 1.193508, -0.151948, -0.271104, -0.145160, 1.066895, -0.149989, -1.064653, -0.525015, 0.144321, -2.076643, 1.067538, 0.170173, -0.818574, -1.257330, -0.471032, -0.086021, -1.968988, -0.577781, 2.044721, 0.206383, 0.607284, 1.592395, -0.679272, 2.263664, -2.147050, 1.049730, -0.600864, -1.215987, -0.982422, -1.701561, 0.923156, 0.597927, 0.614331, 1.865459, -1.263711, -0.680304, -0.845397, 0.711188, -1.246963, -0.683299, -1.446251, 0.976431, 0.345499, 0.951938, -1.102222, -1.069594, 0.055713, -0.192610, 2.048524, 0.161287, -0.153846, 0.644674, 0.279740, 0.610724, -0.395827, -1.502689, 1.101688, 1.885468, -0.833984, -1.900289, 0.050612, -1.994453, -0.851452, -0.404429, -0.258913, -0.406011, -0.073366, -0.044755, -1.064263, 0.507616, 0.948567, 1.255216, -0.455703, 1.300927, 0.413346, -0.719824, 1.005476, -0.324980, -0.180993, -0.995937, 0.297535, -1.116001, -0.872563, -0.451288, -0.347697, 1.236664, -1.293019, -1.524871, 0.372686, 0.408280, 0.442732, 0.212313, 0.551812, -0.306874, 0.456919, 0.395687, -0.775057, 0.045567, 1.546288, 0.759643, 2.396427, -0.557435, -1.166623, 0.799720, 0.351509, 1.172748, -1.392950, 0.735341, 1.069346, 0.229549, -0.953077, 1.005276, 0.663233, 0.132659, -0.214504, -2.755625, 0.994023, -0.486711, -0.309840, -0.861233, 1.559172, 0.136010, 0.334843, 1.440723, -0.000989, 1.111148, 0.120530, -0.331084, -0.365218, -0.824321, -0.869514, -0.083013, -1.126565, 0.672072, -0.459549, -0.767582, 1.208314, -0.446348, 1.161726, -1.721873, -0.679274, 0.028978, 1.341399, -1.245065, 0.317287, 0.321357, 0.079317, -0.716698, 1.170179, 0.237163, 0.675552, -0.166115, 0.407111, 0.399885, -0.968576, 0.681371, 0.598661, -1.752539, -0.173853, -0.020455, -0.382180, -1.068781, -1.096903, -0.225546, -1.855226, -0.748854, -0.070013, 1.912014, 0.588166, 0.074576, 0.592623, -0.314434, -1.202972, 0.241658, 0.100086, -1.498520, -0.707393, -0.846801, -0.742180, 0.590103, -0.524420, 0.919087, -0.822203, -1.158576, -0.899081, 0.648302, -0.917771, 0.299502, -0.398934, -0.573695, 0.978786, 0.304536, 0.903239, 0.655523, -1.492181, 0.154611, -0.171831, 0.740646, -0.143299, -0.483662, 1.385643, -1.079088, 0.177135, -1.194415, 0.830433, -1.193854, 1.845001, -0.396713, 0.032579, 0.471722, -1.786436, 0.890630, 1.617960, 1.248826, 1.158249, -0.032984, -0.356479, -0.821236, 1.848518, 0.505010, 0.113255, -0.600625, -1.074236, 0.526376, 0.223529, -0.064476, -0.152476, -1.299967, 0.121514, 0.633766, -1.049633, -0.465552, -1.145384, 0.276140, 0.259913, -0.046988, -0.515279, -0.310216, -0.142159, -1.217004, -0.804346, 0.823779, 0.673845, 1.646384, 0.531953, -1.010857, 0.896076, -1.067919, 1.282693, 0.461994, -1.065891, -1.117791, 0.369392, -0.782354, -0.158739, 1.103918, -0.254131, 1.109031, -1.705459, -1.135567, 1.165624, -2.075440, -0.058033, 1.362951, -0.755137, 0.971397, -0.016074, 1.099171, -0.710694, 0.461655, 1.444956, -0.747823, -2.926803, 0.770790, -0.063315, -0.539705, -1.823800, 0.689401, 0.735259, 0.319308, 1.269656, -0.682643, -1.140455, 0.623030, -0.749413, -0.874429, 0.118068, 0.048593, -0.680377, -0.645648, -1.434522, -0.360171, -1.977347, -1.589783, -0.201440, 0.626622, 0.223287, -1.358728, -0.351137, 0.609879, 0.723918, 0.848012, -1.229136, 0.509654, -0.234734, 1.237493, 1.174296, 1.377581, -0.630168, 0.851766, -0.958202, 0.514781, -0.729680, 0.817819, -1.662856, -0.595757, 0.462144, 0.613390, 1.107780, -0.658617, 0.498097, 0.549595, 1.972459, -1.004603, -1.881727, -0.726333, 0.791114, -0.202812, 0.055109, 0.761539, 1.179312, -0.531588, -0.748678, 1.684076, 1.143644, 0.161425, -0.932355, -0.394319, -0.289218, 1.400532, -1.612496, 0.241063, -0.201612, 0.827243, -0.108612, -0.114052, 1.354226, 1.432404, -1.608047, 0.473381, 1.027832, -0.709460, 0.365425, 0.070829, -0.665322, -1.205278, 1.123336, -0.735939, 0.226728, 1.492900, -0.933165, -2.980941, -0.732041, 0.192348, 2.012847, 0.270914, -0.280728, -1.110859, -0.704557, -1.215169, -0.044518, -0.222197, -0.713530, 0.023918, -0.027181, 0.708304, -0.549459, 0.492234, -0.338531, -2.626127, -0.720413, -2.854406, 0.786457, -1.835711, 1.135623, -1.766952, 1.192702, -0.183353, -0.697780, -0.404982, -0.209856, 0.747576, -0.179077, -0.826658, 0.211499, -0.949399, -1.093148, 0.763003, 0.368006, 0.616929, 1.799301, -0.248912, 0.815946, -2.082269, -0.233851, 0.480418, 0.433150, 1.435929, 0.674256, -0.821936, -1.744937, 1.349838, -1.143740, -0.042019, -1.068779, -0.036604, -0.826578, -1.269788, -0.163324, 0.980576, 0.145160, -0.168131, -0.299735, -1.432980, 2.077291, -0.623178, -0.946511, 0.013062, -1.109483, 0.853656, -2.031153, -0.035052, 1.027674, -1.615746, 3.277532, -1.530270, 1.090109, -0.919569, 0.758519, 2.209165, 0.194935, 0.533125, 0.905261, -0.647402, 0.093282, -1.119283, 1.824330, -0.971285, -0.928625, -0.855520, -0.140929, 0.151129, 0.639285, 0.727474, 0.934177, 0.163255, -0.077864, 0.140581, -0.190447, 0.106935, 2.394971, 1.526551, -0.111116, -0.327693, 0.531850, -0.906037, 0.309561, -0.716739, 0.578917, 0.355348, -2.203720, 0.195933, 0.660357, -1.340626, 0.395982, 0.019702, -0.258033, 1.631359, 0.232673, 1.084207, -0.524542, -2.116215, 1.392312, -0.102300, 0.781665, 1.136476, -0.213952, 0.728676, 0.621558, -0.023629, -2.278256, 2.337897, -0.810747, 1.760615, -0.853349, -0.594865, -1.097098, -0.030849, 1.177287, -0.568098, -1.555266, -0.547187, -0.466962, -0.304102, -1.745990, 0.457723, -2.220311, -0.004086, -0.285437, 1.551086, -0.453740, -1.330529, 2.456252, 0.326602, 0.895571, 0.666339, -0.732530, -2.124988, 0.915875, 1.982891, 0.257027, -0.239658, -0.522056, 1.463049, 0.467841, -0.402214, 0.055518, -0.324530, 1.333185, -0.318277, 0.146713, 1.087032, -0.330806, 0.764165, -0.577693, 0.693955, -0.448005, 0.900752, -0.427641, -0.877528, 0.264105, 0.729760, -0.714564, -1.728755, -1.856451, -0.684253, 0.446021, 1.480096, 0.986339, -1.027836, 0.502443, 0.835218, 1.092301, -0.705589, 1.796223, 1.050501, 0.100831, -0.395559, -1.775399, 0.691389, -0.214155, 0.736650, -0.632579, -0.085798, 0.167135, -0.374284, 0.087788, -1.962084, 1.509764, -0.910973, 0.496838, -0.505171, 0.626436, 0.276608, 0.033155, 0.548369, -0.355129, 0.724806, -0.938911, 0.730872, -0.139884, -0.352924, 1.209760, -2.784087, 1.582661, -1.541018, 0.120211, -0.319449, 0.290768, -0.453909, -0.719737, -1.028474, -1.322815, 1.617754, 1.243056, 1.668473, 0.719025, -0.790461, 0.213352, -1.156175, -0.240148, -1.699316, -0.465595, -2.036089, 2.570208, 0.524211, -2.019296, 0.675555, 0.294202, 0.627027, 0.029701, 0.209171, 2.119109, -0.837285, -1.555292, -1.214675, -0.778165, -0.730934, -0.220054, -0.572724, -1.244467, 0.899617, -1.774891, -0.501535, 1.232534, 0.249357, 0.724067, 0.299136, 1.117942, 1.226046, 0.409235, -0.231697, -0.592938, 0.226446, -1.561394, 0.228419, 1.810575, -0.327771, 0.819889, 0.158609, 0.342542, 1.094945, 0.343868, -0.858801, -0.777628, -0.887488, -0.096936, -0.793064, -0.305448, -0.716926, -0.696180, -0.129663, 0.246629, -1.211957, -0.055691, -1.139108, -0.274116, -0.996722, 0.128087, -0.160157, -0.741477, 0.078587, -0.221049, -0.480052, -1.808400, -1.180372, -1.117711, -0.595097, 0.741232, 0.311395, 0.490400, -0.083445, 0.234577, -0.503631, 0.461917, 0.099144, 1.048437, 0.564109, 1.520398, 0.015736, -0.709918, -1.858296, 0.443715, -1.230118, 1.172389, 1.223183, -1.077773, 1.593823, -1.943502, 1.225823, 0.026566, -0.199898, -0.059304, 3.115885, -0.439566, -1.177517, -0.211195, 0.608833, -0.922508, 0.283197, 1.771180, -0.554386, 0.073628, 1.094411, 1.877895, 1.245303, -0.636822, -1.386112, 1.222266, -0.743528, -0.318297, -0.295041, 1.103942, -1.514988, 0.791654, 1.226119, 0.879487, -0.461865, 1.663185, 0.104435, -0.101085, -0.766770}, - { 0.689951, 0.097325, -0.842049, -0.408984, 0.681186, 0.431712, -0.574087, 0.153478, 1.313640, -0.851003, -0.033713, 0.634940, 0.363657, 0.784135, 0.926034, -1.200096, 0.831650, 0.371080, -1.426944, 1.458924, -0.105939, -0.756442, -2.004988, 0.770335, 1.108040, -2.033500, 0.312406, -0.534367, -0.031998, 0.559736, -0.961870, 0.932116, 0.687371, -0.400492, 0.507023, -0.341746, 0.965531, -0.048065, 0.375511, 1.402407, 1.079850, 0.406902, 1.444163, -0.033590, 0.275076, 0.263476, 0.054831, -0.794711, -1.773072, 0.029096, -0.901910, -1.457686, 1.229610, 0.042231, 1.098095, 0.186009, 1.943123, -1.130041, 0.269797, 0.755049, 0.417993, 0.333036, -0.329134, -0.693672, 0.511281, 0.268551, -1.040382, -1.149143, 0.502747, 0.067995, -1.342633, 0.436317, -0.314542, 0.488527, 0.920689, -2.299440, -1.353595, 0.015131, -0.671603, -0.018836, -1.529278, 1.005406, 1.503572, -1.575159, 0.413875, -0.287277, 2.131307, 0.870388, -1.705459, -1.411482, 1.323493, 0.869190, 1.635208, 0.637823, 0.630954, 0.578550, -1.111362, 1.848269, -0.947274, 1.111124, 1.254176, 0.210646, -0.164543, -0.523212, 0.671140, -1.610833, -1.249851, 0.533944, 0.196678, -0.734848, -0.156679, -1.202376, 1.310191, 1.402138, -1.031699, 0.438359, -0.126641, -1.756959, -0.898102, 0.084334, -0.126336, 1.198977, -1.002284, 0.889119, 0.139882, 1.493109, 0.537658, -0.732972, 2.012621, -0.502716, -1.080049, 0.457279, 0.674679, 0.076529, -0.745520, -0.158427, 0.375695, -0.601720, 2.490990, -0.445907, 1.225331, -0.961198, -1.169462, 0.154979, -1.580261, -0.734533, 0.294848, 0.850115, 0.247139, -0.294829, -2.265285, -1.089797, -0.588404, 0.475075, 0.647060, 0.169229, 0.249568, -0.208935, -1.153369, -0.845720, -0.371088, -0.662505, 0.123438, -1.839646, 0.699477, -1.214284, -1.246900, 2.034276, -1.397566, 1.146364, -0.028732, 0.512021, -0.888734, -0.122492, -1.622697, -0.834302, -1.547315, 1.126431, -1.158501, -1.691902, -0.650445, -1.907658, -0.027434, 1.058581, -1.730337, 1.705516, -0.687672, -2.149556, 1.591849, -0.293423, 1.101824, -0.625354, -0.186441, -1.600639, 0.429803, 0.868616, -1.646954, 1.413395, 1.753749, 1.716950, 0.101521, 0.937510, 0.457540, 0.202797, 2.227267, 0.334415, -1.323006, 1.549792, 0.196139, -1.021303, -2.404240, -0.785139, -1.401868, -1.681349, -0.091364, 0.031759, -2.506438, 1.650650, 0.292867, -1.181819, -1.076227, -1.223304, 0.246239, 0.646191, -1.189787, 0.294281, 1.147983, 0.413658, -0.235058, 0.414948, -0.837366, 1.328595, 0.388871, 0.532362, -0.004196, -0.971951, 0.406416, 0.208283, -0.517296, -1.595229, 1.520931, 2.184674, 0.283389, -1.169685, 0.856360, 0.690161, 1.157026, -1.294999, 2.405818, -1.000748, 0.547409, -0.779746, 0.297089, -0.357001, -0.585580, 0.549026, 0.171888, 0.298578, -0.350796, 0.310001, -0.497194, 0.098578, -1.898388, 0.975992, -2.216721, 0.995036, 0.364646, -0.974152, -0.316486, -0.955412, -1.513883, -1.036198, 0.313992, -0.639762, 0.794014, -0.212252, -0.767540, 0.520552, -0.982692, -0.920780, -0.048713, 1.626255, 0.282115, -0.777698, -0.835181, -0.418324, -1.680892, -0.934136, -1.537712, -0.113042, -0.060567, 2.078120, 0.544885, -0.647449, 0.950259, -0.272968, -0.078856, -0.524596, 0.843698, -0.075209, 1.782109, 0.564126, 2.029315, 0.111872, 0.599726, 1.980710, 0.662641, 0.566985, -0.355790, 0.326389, 1.348127, 0.985709, 0.230372, -0.374585, 0.889464, 1.538096, -0.545130, -0.357992, 1.251312, 0.631189, 1.612237, -2.079338, 0.015839, -0.134100, 1.345410, 0.490089, -0.424754, 0.760101, -0.493129, -1.728163, -0.579848, 1.294129, -1.945330, -0.149489, 0.054411, -0.164451, 0.393074, -0.835098, 1.108992, 0.424708, 0.006197, 0.540134, 0.073163, -0.270356, -0.866458, -0.806532, 0.701126, -0.125671, 0.992588, 0.676596, 1.043440, -1.011311, 0.075780, 0.453422, 2.106599, -0.241383, -0.619887, 0.623556, -0.498441, 1.641868, -0.887002, 0.218399, -0.210046, 2.037644, 1.125943, -0.249855, 0.684336, -0.159822, -2.276832, -0.780667, -1.900090, 1.240956, 1.778817, 0.888939, -0.852585, -0.751947, -0.045643, -0.484234, 0.675671, 0.444654, -1.022348, -1.149806, -1.031918, -0.324696, 0.656732, -0.258560, 0.986993, -0.772448, -0.217280, 1.702929, -0.201151, 0.452720, -1.056508, 1.474309, 1.341681, -0.958542, 0.635343, -0.555497, 2.146910, 0.826012, -0.544909, 1.457129, -2.649341, -0.169285, -1.786415, -0.786847, -1.254448, 1.459025, -0.254798, -0.366311, -0.742762, -2.138465, -1.182953, -0.184985, -3.140683, 0.375086, -0.189853, 0.684027, -0.744228, 0.826484, 0.455434, -1.718065, 1.518439, 1.249987, -0.523672, 0.211889, 0.684187, 0.355597, -0.027999, -1.737903, 0.849408, 0.461129, 1.120344, 0.424578, 0.528711, -0.055951, 0.291723, -0.779995, 0.151308, -0.634254, -1.199173, 0.108834, 0.550735, 0.381578, 1.151941, 2.402412, -0.177042, -0.228641, -0.339709, 0.766508, 0.767482, 1.088771, 0.052341, -0.169850, 0.856926, 0.346416, 0.623490, 0.867838, -1.582609, 1.580532, 1.158016, 1.064035, 0.987111, -0.544885, 1.192940, 0.394496, -0.212381, 0.191806, -0.255303, 0.491913, 0.494330, 0.767965, 0.836769, -0.740160, 0.041891, -1.748031, 0.422618, -1.368583, 0.201665, 1.486212, -0.336275, -0.562319, 1.679778, -1.023449, 1.101054, 0.108002, 0.365185, -0.200283, -0.775822, 0.247592, -0.800007, -1.416423, -0.280428, -0.196346, -0.617912, 0.740562, -0.076115, 0.662654, -0.968496, 1.273145, 0.082485, 2.339176, 0.672833, -0.376356, -0.170802, 1.277735, -2.182541, -1.006511, -0.561782, 0.439777, 0.106182, -2.161812, -0.548316, -0.208754, -0.135248, -1.427445, 0.149820, -1.952311, 0.522910, 1.175716, -0.470227, 0.620100, -1.549889, 0.354314, 0.733683, 0.121963, 0.961040, 0.121256, 0.216021, 1.257174, -0.037237, -1.156936, 0.251176, 0.395304, -1.017317, -0.744162, -1.268397, 0.614057, -0.699220, 0.012200, 1.765265, 1.458704, -1.509709, 0.406552, 0.716127, 0.851425, -1.653791, 0.699570, 1.925062, -1.628428, 1.492858, 0.441321, 0.219389, 0.091819, 0.612288, -0.361136, 0.142359, -0.515524, -1.096450, -0.260036, 0.466881, -0.531250, 2.186645, 0.087140, -0.575417, -0.879779, -0.794964, 0.693024, -0.075257, -1.420365, 0.218337, 0.059935, -1.002202, 1.266697, -0.341917, 0.187407, -0.205643, 1.535496, 0.018877, -0.603322, -1.064602, -0.515364, 0.793993, 0.322875, 1.075979, 2.021308, 0.864498, 0.572107, 0.838082, 1.576862, 0.979788, 1.207642, -0.382269, -1.507238, 1.256837, -0.535220, 1.090951, -0.761628, 0.814542, 1.118759, 0.785260, -1.302554, -1.003707, 1.032231, -1.104005, 0.563237, 0.801158, 0.402821, 0.572866, -1.589107, -1.475629, 1.309771, -1.013358, -0.359048, -1.917231, 1.301166, 0.304311, 0.134104, 0.693582, 0.226595, -1.053878, 0.374178, -1.396904, 1.537522, -0.722396, 1.115089, 0.192487, 0.591805, 0.297311, 0.495835, -0.059763, 0.710920, 0.688616, -1.242882, 1.064096, 1.164572, -0.381910, 0.333554, -0.165045, 1.385929, 0.118782, 2.058575, 0.752836, 1.546412, 0.421473, 0.388646, 1.197587, -1.006244, 0.061473, -0.052546, 1.931221, -1.155875, 1.083126, -0.481900, -0.173046, 0.266837, 0.538307, 1.738582, 0.138797, 0.302340, -0.208745, 1.494761, 1.121132, 0.676848, 0.799758, 0.091338, -0.121311, 1.291842, 1.227370, 0.100644, 1.029869, -0.356102, -2.536334, 0.017960, 0.747882, 0.820157, 1.579158, -0.239047, 0.625578, 0.287629, 1.486529, -0.897932, 1.621744, 1.505213, -2.509670, 1.147579, -0.531808, -0.303608, -0.027603, -0.229468, 0.769872, 0.127854, -0.570592, 0.020179, 0.220692, -1.323555, -0.059471, 0.879047, -0.278977, -0.780658, 2.081504, -0.644623, 0.702622, 2.190915, 1.435745, 0.251836, -0.189986, -0.513796, -0.645874, -1.168766, -0.004392, -0.363151, 0.763016, -1.795154, -0.731690, -0.755075, 2.421360, 0.829916, -0.135463, -0.607727, -1.120921, 0.315364, -1.230479, 1.653468, 0.319027, 0.204565, 1.467268, 0.456773, -0.851812, 0.213705, 1.676578, -0.285764, 0.301515, 1.332813, 0.600311, -0.476211, -0.137864, -0.823748, -2.163814, 0.450754, -0.239860, 0.503297, -1.392177, -0.549346, -0.320510, -1.252463, -1.234705, 0.296886, 0.001639, 0.974450, 0.811300, -1.426436, -0.296600, -1.480214, -1.838463, 1.361903, 0.378138, 0.683977, -1.236287, 0.972597, 0.883192, -0.817253, 0.349986, 2.450875, -2.369201, -2.049398, -0.804404, -0.242203, 0.236606, 1.158959, -0.073065, 1.111717, -0.238728, 1.079087, 0.028575, 0.594414, 0.649470, 0.648669, 0.684385, 0.067773, 0.427567, -0.716782, 1.404021, -0.115824, -1.273082, -2.014765, 1.929856, -0.255229, 0.759660, 0.263310, -1.848238, 1.487085, -0.567849, 0.780816, -0.866246, -0.295951, 1.953309, -0.274259, -1.010306, 1.530594, 0.620051, -0.096109, -0.168808, 0.150951, -0.627841, -0.589723, -0.356848, -2.310044, 1.103195, 2.360602, 0.062967, 2.556126, -1.037190, -1.382720, 0.606276, 1.624485, 0.484098, 1.379322, -2.310276, -0.236863, 0.602291, 1.895646, -1.477609, 1.495901, 0.504772, -0.444953, 0.048502, 1.356260, 0.725614, 1.486398, -1.264815, -0.473068, -0.371919, -0.589942, 0.128515, -1.200270, 0.517064, 0.676906, -0.657623, 0.820499, -0.711324, 0.635742, -0.639673, 1.414845, 0.047139, -0.017878, -1.020773, -2.526667, 1.287521, 0.717717, 0.959860, -1.130456, 0.946305, 0.704199, -0.281039, 0.137291, -1.262645, -2.493693, -0.062852, -0.705149, -1.149192, 1.416286, -0.480593, -1.014492, -1.023887, 0.822643, 0.644911, -0.211240, -0.926601, 0.774906, -0.123407, 0.141567, -0.892026, -0.396529, -0.881941, -0.203568, 0.110894, 3.105673, 0.003495, -0.922527, 0.633054, -0.586052, 0.179168, -0.146498, 0.591064, 0.480728, -0.457135, 0.440798, -0.411088, -0.523075, -0.934501, 1.007854, -0.212754, -0.204960, -0.657488, 1.611085, 0.705908, 1.407740, 1.056035, -0.865148, -0.143939, 0.106342, 0.055493, -0.383948, 0.984916, -0.150570, 0.470642, 0.691638, -2.718007, -1.176383, -0.891762, -0.525282, 1.187093, 0.429278, 1.726022, 0.012820, -0.625768, -1.200608, 1.957109, -0.941112, 1.144450, -1.827447, -1.078862, 2.438508, -0.642301, 0.007786, 0.530299, 1.263526, 0.418815, 0.948315, -0.227298, -0.793847, 0.691715, 0.041646, 0.681119, 1.270043, -1.327954, -0.484842, 1.424195, -1.109722, -0.159692, 0.874995, 0.130359, -0.935802, 0.028840, 0.575948, -0.032305, 0.568211, 0.742064, -1.990100, 0.840136, -1.255754, -1.452344, -0.147453, 0.506626, 0.041868, 1.424585, -0.722389, 0.041051, -0.666766, -1.011511, 1.511575, -0.787040, -0.790681, -0.956542, 0.626786, 1.726152, 0.510006, 0.923796, 1.032875, 0.513635, -2.553805, 0.364535, 1.132312, -1.804569, 0.399767, 0.054799, -1.521679, -0.401453, 0.044042, -1.831755, 0.155594, -0.748367, 0.001518, 1.972288, -0.053589, -0.501293, -1.346921, -0.129338, -0.562946, -0.918586, 0.702406, 1.186264, -1.062100, 0.809271, -0.918817, 0.202526, 0.702233, -0.536687, -0.584059, -0.398902, 0.765598, -0.658668, -0.306280, 1.355754, -0.529804, -0.341567, 0.307767, 0.677244, 0.613362, -0.833459, -0.740232, 0.538345, -0.613070, -0.978365, -0.297489, 0.180805, -0.181251, -1.378169, 0.055562, -0.160816, 1.337232, -0.687753, -2.501628, 0.493473, -1.618955, 1.936835, 0.967083, -0.466566, 0.766623, 0.662131, 1.018864, 1.967128, -0.460887, 1.665411, 1.033160, -0.145536, 1.289797, -1.046282, -1.369588, 1.851337, 0.128872, -0.188017, -0.525318, 0.055145, 1.856867, 0.166017, -0.706766, -2.313396, -0.946809, -0.162566, 0.148104, -1.655266, -0.480423, -0.186119, -1.706330, 2.677828, 0.671232, 0.676647, -0.270442, 0.061081, -0.224509, 0.528219, 1.092839, 1.327743, 0.451997, -0.569849, 0.254065, -0.221835, -0.159471, 0.534886, -1.036622, -0.934938, -0.403508, 0.947760, -2.413657, -0.529632, -3.518771, -0.614162, 0.796558, -0.012038, 0.319317, -0.663647, 0.967605, -0.143816, 0.319052, 0.084799, -0.587701, 1.410346, -0.264971, -2.232334, 0.135336, 0.963922, -0.809729, 1.572595, -0.407254, -0.122816, -0.245609, 0.859615, -0.629885, -0.893999, -0.615149, -1.866086, -0.211278, 1.048110, -0.899428, 0.653544, 0.223033, 1.338657, 0.975614, 0.848968, -0.903068, -0.895025, -1.147771, 0.979434, 1.089331, -0.134982, -1.813801, -0.203818, -0.431249, -1.030787, 0.363526, 0.336111, 1.125790, 0.511567, -2.156148, -0.022344, 0.511465, -2.458836, -0.561654, 0.685231, 0.890424, 0.326576, -0.915420, -1.477009, 0.049069, -2.777364, -1.107728, 0.473764, -0.356226, -0.209892, -1.305071, 2.297559, 0.007586, -0.477850, -1.209193, 2.437358, 0.673404, -0.313004, -0.629245, -0.008791, -0.201551, -1.665222, -0.117304, -0.017763, 1.321082, -0.607701, 0.361099, -0.407215, -1.353533, -0.404353, -1.718252, -0.563913, 1.225477, -1.522315, -0.431783, -0.793643, 0.195019, -0.229563, 1.363223, -2.131078, -0.142930, -0.559743, 0.331740, 0.096874, 0.846838, 2.282031, -1.967080, -0.412563, -1.370682, 0.426974, -0.164373, -0.172370, 0.173863, 0.659006, -0.106026, -0.780781, -1.142493, -0.780159, -1.046248, 2.660763, 0.198689, -1.165937, 1.556963, 0.136510, -0.482644, -0.249452, -0.828123, 0.898070, -0.600479, -0.054621, 0.882806, 0.324823, -1.185672, 1.566899, 0.165478, -0.279222, 0.024702, -0.115087, -0.302168, -1.511801, -0.315636, -0.066304, -0.946190, 0.938942, 1.837181, -0.422219, 0.057165, 0.549397, 1.205996, -0.957544, -1.536323, -0.483584, -1.170062, -0.926848, -0.430654, 1.581395, -0.518038, 0.935770, 1.254127, 0.178089, 0.203655, 0.261586, 0.062107, -2.089841, -0.714563, -0.605176, -1.277198, 0.902273, -0.002155, -0.692019, -0.391753, 0.925146, 0.634683, -0.370590, -0.620713, -1.964169, -0.143595, 0.657318, -0.526561, -0.833524, -0.217829, -1.072824, -0.220489, -1.422366, -0.308954, -0.148304, -0.280740, 0.802444, 0.829230, 0.519280, 0.922508, 0.306362, 0.697459, -1.468117, -0.012703, 0.212841, -0.377306, -2.176012, -1.094402, 2.020101, 1.120107, 0.918825, -0.167031, -0.647291, -0.759218, 0.344466, 0.786638, -0.241205, -0.355834, 0.069892, 0.606373, 0.697831, 1.725827, 1.032838, -1.722355, -0.671316, 0.999247, -0.962374, 1.379095, 1.612645, 1.459141, 1.556968, 1.585498, -3.151633, -0.114706, -0.185889, -0.728116, 2.369860, 0.712221, -0.246149, -0.442294, 0.745291, 0.615263, -0.671254, -0.630518, 1.009828, -0.709764, -1.163608, 0.481831, -1.160363, 2.209230, -0.365026, 0.420480, 0.350655, 0.476352, 2.650240, 0.475697, -0.125365, 0.018619, -1.398115, 0.303437, 1.336541, -0.423916, -0.783772, 0.544236, 0.244661, -1.407908, 1.927236, -0.119040, -0.044053, -0.156227, 0.618746, 0.658073, 0.896918, -1.494020, -0.645091, 0.070294, 0.104391, -0.529914, 1.384208, 1.843973, 1.561845, -0.370182, -0.195020, -1.277415, 0.299448, 0.620786, 0.577719, -1.003523, -1.381766, -0.258438, -0.257932, 0.434490, -0.320915, -0.705110, -0.811845, 0.405571, 1.544974, -0.619623, -0.527351, -0.147414, -1.136473, 0.285752, -0.259591, -1.401924, -0.217241, -0.008307, -1.197842, 0.365585, 0.029320, 0.280738, 0.755116, -0.949056, 1.016546, -0.782295, -0.173897, -1.507983, 0.700204, 1.636836, -1.015340, 1.655845, 0.756329, 0.937876, -0.421995, -1.837983, -1.179858, 1.532997, 1.784707, -0.295226, 0.620657, 0.392981, -0.374932, 0.551260, 1.432416, -0.978373, 0.646885, -0.180465, 1.124926, -1.300982, -0.623740, -1.019707, -0.045381, 1.889375, -0.473028, 0.640459, 0.662821, -1.809385, 0.163778, -0.617824, 0.042024, 0.086220, -0.474637, 0.803472, -0.416286, 0.296489, 0.824755, 0.624393, -0.311561, 1.394036, -1.291485, 0.225611, -2.085091, -0.481727, 1.666851, 0.807123, 1.517455, 1.078587, -0.310616, -0.414556, -0.323790, 0.676409, -0.633905, 1.680565, -1.117972, 1.486107, 0.345268, -0.431747, -0.352119, 1.991086, 0.542998, -0.555641, 0.986888, 0.363573, -0.269045, 0.518710, -0.017023, 0.156984, 2.848249, -0.870059, 0.971870, -0.095933, 1.733612, 1.204900, 1.162228, 1.587313, -0.957012, -0.584765, 1.356757, 1.539821, -0.329039, 1.113182, -0.349085, -0.414514, -0.156979, -0.792844, -0.911605, 0.066953, -1.407517, -1.014863, 1.556662, 0.606896, -3.144268, -1.199586, -0.251315, -0.828759, -1.633119, 1.911084, 0.459197, 0.483186, -0.715589, 0.238635, 1.184666, -2.090992, 0.799604, 0.390985, 1.881968, 1.116412, -0.993002, -0.093208, 0.837373, -0.048322, -2.225270, 0.566448, -1.836706, 0.044398, -0.379642, -0.268883, 0.382874, -0.358089, -0.993963, -0.473572, -0.068528, 0.301505, 0.549659, 0.042897, -0.911584, 1.309377, -1.215561, 0.646133, 0.232844, -1.036913, -0.045538, 1.467173, -1.858081, -0.595858, 0.998807, 0.226299, -3.177863, -0.510722, 0.552987, -0.761040, -0.864725, -1.621404, -0.300462, -0.901508, -2.554041, 1.624015, -0.526292, 1.161477, -0.821660, 0.759873, -1.390754, -0.058209, 0.330061, -0.559312, 1.406890, 1.227153, -0.792305, 0.073252, -1.438588, -0.342459, 2.938545, 0.542821, 0.001294, -1.261566, 0.028344, -1.068127, -1.072300, 0.112531, -0.199821, -0.210584, -1.354290, 0.702377, -0.130634, 2.363247, -0.666392, -1.546358, 0.032210, -0.809096, 0.170851, -0.406261, 0.384160, -0.562774, 0.129590, 1.274760, -0.482624, 0.424922, -1.824954, 0.680147, -0.398809, 0.936751, 0.785594, -0.940701, -0.410107, 0.953090, -1.661574, -1.745428, 0.120935, -0.388712, 1.169878, -0.816516, 0.748471, -0.021897, -0.522100, -0.820570, -0.063556, -1.127231, 0.514458, -0.449865, -0.635535, 0.522894, 2.497557, -0.250279, 0.487238, 0.228305, -0.585258, -0.336766, -0.232703, 0.115284, -0.337079, 1.522525, 0.737065, -0.444942, -1.397517, 0.768168, 0.055502, -1.169985, 1.449758, 0.753520, 0.924678, 0.918896, -0.299539, -0.900524, 0.592958, -0.518402, -2.105719, -0.878156, -1.889809, 0.661141, -0.848325, -2.232933, -0.553246, 2.054680, 1.349866, -0.076245, -0.319977, 0.007274, -0.149635, -0.877156, -0.463378, 0.992310, 0.427740, -1.385775, 0.577726, 1.186789, 1.481043, 1.057210, 0.202869, 0.383348, 0.699782, 0.123751, 1.495927, -0.071317, -0.955680, 0.396725, 1.279496, -0.625692, -1.375270, 0.433448, -0.088306, 0.214709, 1.825950, -0.963132, -1.618750, -0.089555, -0.385440, 0.651028, -0.142174, -0.003333, -1.358945, 2.038163, -1.844265, 1.127256, 1.312969, 0.005573, -1.026542, 1.435329, -0.864539, 0.458897, -0.596632, 0.004456, 1.714298, 1.571266, 0.355165, -0.492291, -0.359605, 0.956705, -0.219066, 0.838829, 1.262553, -0.893147, 2.071190, -0.819357, 0.144827, -1.180013, -2.675898, -1.801138, -0.271235, 0.091470, 1.578775, -1.810200, 2.211401, 0.341638, 2.131899, 0.226534, 0.574974, -0.134434, -0.901934, 0.802280, -0.630921, 0.385228, -0.528319, 0.623985, 0.226264, 0.045753, -0.609097, -0.266002, 0.923718, -1.537924, 0.443569, 0.326099, 1.380187, -2.034181, 0.129372, 0.575436, -1.013484, 0.018747, 0.574896, -1.858508, 0.240098, -1.518029, 2.389091, 0.300058, 0.487881, 0.651746, -0.861572, 0.237501, 0.961166, -0.477314, -0.634790, -0.073697, -0.983401, 0.798057, 0.441296, 1.441929, 1.120153, -0.003484, 0.646387, 0.164941, -1.334906, 1.703917, -0.677255, -2.028932, 0.115060, -2.429360, 0.158223, -1.164888, -0.553035, -2.236114, -0.369689, -1.362703, -1.044752, 1.059387, -0.765227, -1.785291, 2.649995, 0.544274, 0.272920, -1.149533, 1.052560, 1.285578, -0.623496, 0.632952, 0.918364, -1.832775, -0.173056, -0.934890, 0.611699, -0.289570, 0.472510, -2.247237, 0.401005, 0.832871, -0.532777, 1.305856, -1.178315, -0.445150, 0.185634, -1.907742, -0.237095, 0.907344, 1.133945, 0.400838, -0.118532, -1.553778, 0.708180, 0.034324, 0.185476, -0.035903, -0.362920, -0.124697, -0.215565, 0.918645, -1.223034, 0.649649, -0.413386, -1.055784, 1.002770, 0.347673, -1.149993, -0.591752, -0.047227, 1.150191, 0.680954, 0.754580, -0.362268, -0.046219, 1.320621, 0.358015, -0.425496, -0.948636, -0.515211, 0.488664, 2.220851, 0.152475, -0.322572, 1.507703, -2.554930, 1.702484, -1.232286, -1.689592, 0.452119, 0.114869, -0.806358, -0.966084, 0.665500, -0.064516, 0.283972, -0.591314, -0.984988, 0.035453, 0.807580, -0.241146, -0.003432, -0.669793, -1.684809, 0.931758, 0.339282, 0.001183, -0.548606, -0.242845, 2.112411, 0.613434, -0.868501, -0.630718, -0.985912, -0.040889, -0.559499, -0.549284, 0.262270, 1.482466, -0.779960, -1.958737, 0.679269, 1.513424, -0.230433, -1.309387, 0.440715, 0.022414, -0.457279, -1.279781, -1.294270, -1.067273, -0.328560, 1.370852, 0.280138, 0.122968, 0.083914, -0.603845, 0.383693, 0.272936, -1.075067, -0.216858, 0.460976, 1.051391, 0.145911, -0.483209, -1.644570, -0.477524, 0.450814, 0.014885, 0.377842, 2.794503, 1.442519, 0.365051, 0.009436, -0.497912, 0.943976, -0.007877, 1.186802, 0.567637, -1.015810, -1.237468, 0.872254, 0.268269, 2.360038, -0.118789, 1.185400, 0.078120, -1.349240, -0.452304, 1.073710, 0.239071, 0.118497, 0.422855, -0.637594, 0.825759, 0.816487, 0.752923, -0.237677, -0.321493, -0.588262, -0.801402, -0.193311, 0.753435, 0.951404, 0.445178, 0.449208, 0.068602, 0.068707, -1.773906, -1.241951, -0.567524, -0.412615, -1.361336, 1.106563, 0.524876, 0.735194, -0.041026, -1.473043, 0.456746, 0.169889, -0.343237, -0.823120, 1.665329, 0.011515, -2.577429, 0.441031, -2.770078, -0.341169, 0.571461, -0.499455, 0.275399, -0.655399, 0.824817, -1.152406, 0.884240, 0.724289, 1.334040, 1.169334, 0.732458, 0.959342, -0.114453, 1.314417, -0.515421, -0.894781, 0.193774, -1.490651, -0.561932, -1.739149, 0.257442, 0.160792, -1.424366, 1.032708, 0.587867, 0.434294, -0.357654, -0.575172, 1.507984, 2.734978, 0.082878, -0.624155, -0.326743, -0.852063, -0.232097, -0.248054, -0.700945, -0.077735, 1.555807, -1.781611, 0.649070, 0.404625, 0.686619, 0.945486, 0.801426, -0.170022, -0.568949, -0.464811, 1.400599, 0.950386, -0.339802, 1.250202, -0.386284, 0.520567, -0.032774, 0.587078, 1.241796, -0.004177, 2.710072, 1.444975, -0.206976, 1.840633, 0.363532, -1.494168, -0.030833, -0.282444, -0.601110, -0.776506, 1.584413, -1.534149, 0.204492, -0.344900, 0.837779, -0.308939, 0.566983, -0.664053, 0.270641, -0.465199, 0.337096, -0.272767, 0.746510, 0.444334, -0.691783, 0.749312, -0.069301, -0.798368, -2.546450, -0.363543, -0.163682, 0.264635, -0.279781, -0.663371, -1.244567, 3.110087, -0.139270, -0.361728, 1.099998, -0.234408, 0.008094, -1.763912, 0.047577, -0.378853, -0.478202, 0.566272, 0.534376, -0.201511, -0.375988, 0.670718, -0.160961, 0.640467, 0.162820, 0.545340, 0.197701, 0.785218, -0.022056, 0.792162, -0.445726, 0.567696, -0.846011, 0.015103, -0.264506, -0.365400, 0.953287, -1.125247, -0.958488, -0.771544, 0.060966, 0.102147, -0.881208, 0.401661, 1.216240, -0.669951, -0.518098, -0.683614, -0.817399, -0.612922, 1.249587, 0.307398, 0.264048, 0.503022, -0.853762, -1.377160, 0.223325, -0.038358, -0.681615, 0.085604, 0.660566, 0.236031, -1.199727, -0.670853, 0.783312, 1.498755, 0.788163, -0.605429, -0.386896, -1.421776, -0.150687, -1.219539, 0.349966, 0.408757, -0.032311, -1.265151, -2.531996, 0.133071, -0.910598, 1.658162, -1.244183, 1.776458, 0.165311, -0.791087, -0.082474, 0.658419, -1.115934, -0.868666, 1.047547, 1.602957, 0.057903, -0.268394, 0.757399, -0.376680, 1.852453, 0.320095, 0.044151, 1.871976, -2.021899, 0.103878, -0.180849, -0.972977, -0.118703, -1.323707, 1.255112, 1.085167, -1.054004, -0.560121, -0.445981, 0.628089, -0.053967, -2.152822, 1.367440, 1.422836, -0.484046, -1.330399, -0.374115, 0.016599, -0.904930, -0.567050, -1.219723, -0.315913, -1.724965, 0.028067, -1.198853, -1.035153, -0.372658, -0.474694, -0.729823, 0.665056, 0.958688, 0.412038, 0.207809, -0.467525, -0.119375, 0.285823, -0.651859, 0.009197, -1.533368, -0.684782, 0.740215, 1.365385, -0.345835, 0.749870, -0.118998, -1.814807, -1.650023, 0.664261, 1.546283, 1.710806, 1.337344, -0.386794, 0.831154, 0.548415, 1.182900, 1.234695, -0.394526, -0.175544, 0.086942, -0.933525, 0.771633, -0.619899, 1.017690, -0.904702, -0.687981, 2.384723, -1.210470, 0.183095, -1.678221, 0.551925, -0.016682, -1.395844, -1.084251, -0.846659, 0.739384, -1.225799, 0.174492, 1.699094, -1.427296, -0.275089, 0.058298, 0.622816, -0.584472, 1.262084, -1.181654, -0.136373, -1.233015, 2.687593, 0.608488, 0.500834, -0.527371, 1.103202, -0.099323, 0.387246, 0.120024, -0.580303, -0.370761, -0.371187, -0.416018, -0.882484, -0.154651, -0.859116, -0.231416, 0.824197, -2.102131, 0.615009, 1.071167, -0.911007, -1.963166, 0.849541, -1.177846, 0.065931, 0.320462, 0.868366, -0.089241, 0.982755, 0.322218, -0.909825, 0.013015, -1.921611, 0.111185, 0.964889, -1.733390, -1.655811, 0.486229, -0.824584, -1.668262, 0.253930, 0.327927, 0.426296, 0.748701, 0.220388, -1.759823, 0.550759, 0.824168, -0.551185, -1.091939, -1.426232, -0.617009, 1.231535, -0.846114, 1.745201, 0.549594, -0.411470, 0.074375, 1.105149, -1.036461, -1.134496, 0.984107, 0.284496, 1.538397, 0.327994, 0.024905, 0.509709, 1.778015, -1.385756, 0.355541, -1.329181, -0.379967, -0.242900, 0.356713, 0.585702, 1.434050, -0.794927, -0.686445, -0.112819, -0.393019, -0.019249, -0.463003, -1.827535, 0.137492, -1.410532, -0.470562, -1.694991, -0.349440, 0.280145, -0.141225, -0.510468, 0.600104, 0.991855, 0.339032, -0.084664, 1.306915, -0.394277, 0.965358, -0.703340, -0.572282, -1.652121, 1.804445, -0.239519, -0.394140, -0.708797, -1.359255, 0.429076, -0.515791, -1.702558, -0.294286, -0.541623, 2.477447, -0.057299, -1.470669, 0.923536, -0.490483, 0.195253, -0.624888, 0.685188, 0.028561, 0.190944, 2.229516, -0.860915, 2.602502, -0.306506, 0.534472, 0.008106, -0.843431, 1.349477, 0.676840, 0.128719, -1.345515, -0.956253, 1.838857, -1.022696, 0.093328, 0.282279, -0.503747, -0.273130, -0.622884, -1.087304, 0.287185, 0.745202, -0.464979, -0.697113, 0.310591, 0.490624, 0.755517, 0.542252, 0.619584, 1.020937, -0.910798, -1.786292, 0.190994, 1.826668, 0.317975, 1.002769, -0.323183, -1.529315, 0.175847, -1.264847, -1.109033, 0.589359, -0.388068, 0.571923, 1.426574, 0.532142, 1.347649, 1.333089, 0.855593, -1.258241, -0.799740, 1.098480, -0.600058, -0.245217, 0.429308, -0.615835, -0.636877, -1.949426, 1.431403, -0.654288, -0.657554, -1.772552, -0.593896, 0.822839, -1.210681, -0.389798, 0.490135, -1.151668, 0.279475, -0.615684, 0.540278, 0.047094, 0.641617, -2.142809, 0.065758, -0.029447, 0.290168, 1.181075, -1.233810, -0.114679, -0.635931, 0.533989, -0.338375, 0.139303, -0.660744, 0.207312, 0.399703, -0.232142, -1.156039, 1.081304, 0.464406, -0.225901, -0.111770, 0.335748, -1.823993, -1.073698, 0.129325, -0.797490, -1.016337, 0.160893, 0.933567, 1.084396, 0.541481, -0.339006, 1.983097, -0.518898, 0.026699, 0.656000, 0.411235, -0.668627, -0.310930, -0.791654, -0.688810, 1.431014, -0.277610, -2.575974, 1.433862, 0.803749, -0.614599, 0.413957, -1.207011, 0.247740, 2.347045, 1.125360, -0.936704, -0.183356, -0.103509, 0.947096, -0.995407, -0.281098, 0.970853, 0.985308, 1.059436, -2.079844, 1.233139, -1.118749, 1.872540, 0.293127, -2.942135, -1.317322, -0.548362, -2.202464, 2.041263, 1.225500, 1.013580, 0.344977, -0.919268, 0.185573, 0.382029, 1.421248, 1.135969, -0.056160, -0.841260, 1.705358, 0.602895, -0.122235, 0.914267, 0.476182, -0.148793, 0.332019, 1.452618, 0.298480, -0.818239, -1.029908, -0.706829, -1.726506, 1.356200, -1.368737, 0.483196, -0.946670, 0.491303, -0.826232, 1.000457, -1.353634, -2.040248, 0.874328, 0.844261, 0.022611, 0.503355, -1.224456, -0.475208, 0.788530, -0.835018, 0.967597, 1.911875, 0.675145, -1.343399, -0.718974, -0.083156, -0.140760, -1.125658, 0.488638, -1.121232, -0.426824, -1.330101, -0.425513, 0.796960, 0.079897, 1.614927, -0.401868, -2.133731, 0.231331, -0.826151, -1.860929, 0.573775, -0.514173, -0.607531, -0.228410, -0.995703, -1.491366, -0.519542, -0.025651, 0.256424, 0.037396, -0.685564, 1.791118, -0.832128, -0.113558, 0.785820, 0.949209, 0.641642, -1.150795, 1.338832, 0.239832, 0.944731, -1.324968, 1.678841, 0.002645, -0.077697, 0.195573, 0.432307, 0.954298, -0.406977, -1.277759, -0.907420, -1.806958, 1.234875, 3.014520, -0.799077, 2.742745, -1.324165, -0.255825, -0.541757, 0.482968, 1.721113, -1.522342, 1.163748, 2.403505, -0.509342, 0.483471, -1.428428, -0.061458, 1.587781, -0.783354, -0.050433, 0.629520, 0.864240, -1.395597, 0.107228, 0.823915, 0.005444, 0.499131, -0.339062, -0.295097, 0.991396, -0.322221, -0.530987, -1.197486, -0.753621, 1.670541, 1.436926, -0.411578, 0.339897, -1.289984, 0.061021, 0.209111, -0.348547, -1.259163, 0.894381, -1.279974, -0.439007, -0.299394, 0.637945, -0.519612, -1.145587, 0.571898, 0.041607, 0.885507, 1.553901, 0.023756, 0.872025, -0.811794, -1.424095, 0.086840, -0.689333, 1.187767, 0.865142, -0.339892, -0.243186, -0.645244, -0.773328, -1.231678, -0.086912, 1.713869, -0.144804, 0.393021, -0.089343, -0.279151, -1.799816, 0.602509, -0.268784, 0.588497, -1.190337, -0.787351, -1.882528, 0.659920, -0.724093, 0.775418, -0.675166, 0.000686, 0.428083, 0.463684, -0.476841, 1.469501, -0.654527, 0.327880, 0.879131, 0.248746, 2.101594, 0.122552, 0.276876, -0.001911, -0.957076, -3.208823, -1.615574, -0.433487, 0.226720, -0.420281, 0.965141, 0.095147, -2.242007, 0.300449, 0.076282, -1.365614, -1.870833, 0.054189, 0.827640, -0.661032, -0.210772, -1.194631, -1.017595, -0.752148, 1.116002, -2.304146, 0.951749, -0.110114, -0.844786, 0.494828, -0.260262, -0.674481, -1.129930, -0.215812, 0.546032, -0.466306, 0.644153, -0.147925, 0.867174, 0.045759, 1.034827, 0.426746, -0.423652, -0.162697, -1.408930, 0.475538, -1.071504, -1.037191, 0.298321, -0.976895, 0.700682, -1.893396, 2.326948, -1.282179, 0.209819, 2.152333, -0.192697, -1.056775, -2.076637, 0.480162, 1.810017, -0.928973, 0.737307, -0.032687, 0.888973, -0.071929, 0.032594, -0.660783, 0.907694, -0.257774, -0.232050, 2.377575, 1.621866, -1.180327, -2.478682, 0.091084, 0.154767, 0.741321, -0.688070, -0.753984, 1.973991, -0.734224, 0.814869, 0.547152, 1.889799, 0.601632, -0.644769, 0.022917, -1.941745, -1.630398, 1.299110, 0.339750, 0.351955, 0.805760, 0.913119, 0.313713, -0.005974, -0.044722, 0.019067, 1.481980, -0.043148, 2.381949, 0.681642, -0.979021, 1.069971, -1.382439, -0.396834, -2.139694, 0.203082, 0.770693, -0.126867, -2.356263, 0.322232, 2.007141, -1.794395, 0.592197, -0.643780, 1.823006, 1.518627, 0.885696, 0.766732, 0.099202, -0.195026, -0.948018, -0.879934, -0.757266, -0.760687, -0.520707, 0.458947, 0.204648, 1.474144, -1.286402, 1.345399, -0.013325, -0.260802, 0.562541, -0.342927, -1.058143, 0.114277, -0.180343, -1.749448, -0.835538, 2.076169, 0.090361, -0.890402, -0.036053, -0.994488, 0.322276, -1.521323, -0.151094, 0.153495, 2.220248, 0.383992, 2.816355, 0.456995, -2.097848, -1.012078, -0.130407, 1.508551, -0.538089, 0.716734, 0.062955, -1.580951, -0.665447, -0.141319, -0.178174, 0.369904, -0.545363, 0.533221, 1.376949, 0.354799, 1.810270, 0.813193, -0.225814, -1.114854, -0.696925, -2.085944, 0.119469, -0.108404, 0.826254, -0.901839, 0.476316, 0.552266, 0.561827, -0.622024, 0.646186, -0.088715, 1.228750, -0.670279, 0.545059, -1.626673, -0.369648, -0.730830, -0.500690, 0.106717, 2.246510, -0.528366, -1.766289, 0.757272, -2.234733, 0.646477, 1.300462, -0.217834, 1.427958, -2.461451, 1.260720, -0.558624, 0.475943, 0.538607, 0.075726, 0.582705, -1.335014, 0.997488, -0.067525, 1.061844, -1.603271, -0.383171, 1.668311, 0.221180, -0.912917, -1.163807, -1.211920, 1.597408, 0.585032, 0.040529, 0.357959, 0.345990, -1.053388, 1.458777, -0.223465, -0.201855, -0.986164, -0.968193, -0.488270, 1.007701, -0.811985, 0.304515, -1.169742, -0.855871, 0.919790, 0.219357, 1.091413, 0.807782, -0.083979, 0.324193, -0.947443, 0.053717, 0.936797, -0.562786, 1.660110, -0.462107, 1.672204, -0.311008, 0.728481, -1.537524, -0.438393, 0.905430, -0.666430, -0.074606, 0.193948, 0.979103, 0.185768, -0.841039, 0.947116, -0.648128, -2.545181, 0.229775, 1.931381, -0.429992, 0.836756, 0.669885, 0.167988, -0.232264, -0.136503, 0.868582, 0.082799, 1.170592, -1.664669, -1.246595, -1.272071, -0.198292, -0.392002, 0.347999, -0.360833, -0.486329, -0.348076, -1.260678, 0.542108, -1.889541, 1.900921, -0.437571, 1.135884, -0.008839, -0.709594, -0.312676, 1.010754, -1.775021, -0.090376, -0.374285, -0.010112, -0.325232, -0.481684, 1.135251, 1.191691, 0.073755, -2.006225, -0.958194, -0.416396, -0.866296, 1.725761, 0.957189, -1.396519, -0.400844, -0.555836, 2.281839, -0.811664, 0.280439, -0.663291, -0.250193, 0.003751, -1.002213, -1.056557, 0.281373, 0.489768, -0.576792, 0.705104, -1.671691, -0.103901, 0.354344, -1.342603, 0.283845, -1.798113, 0.608776, 1.885199, 0.114857, -0.508227, 0.679871, 0.991424, 0.494670, -0.737955, -0.387582, 0.563049, 0.333657, 0.402739, -0.412585, -0.710063, 0.130640, -1.366815, 2.520833, 0.900841, 0.079563, 0.603177, -0.111528, -0.043496, 0.882482, 1.217692, 0.460307, 0.999374, -0.063308, 0.084357, -0.800679, 0.078081, 1.235522, 0.101629, -0.119091, 0.080906, 1.461462, 0.065047, 0.341452, 0.151233, 0.011513, -2.571426, -0.348576, 0.716042, 0.209402, -1.981607, -1.342325, 1.406166, -0.787436, -0.833536, 0.745685, -0.156950, -0.429805, -0.344611, -0.001708, 2.021371, 0.113006, -0.248351, 0.943292, -0.157886, -1.143932, 0.333702, 0.569119, 0.997018, -1.264709, -0.389552, -2.655914, -1.382412, 0.008260, 0.294783, 0.322707, 1.110824, -0.204515, -0.295807, 0.497328, -0.256779, 0.281451, -0.202429, 0.566785}, - { -1.182033, -0.990724, 0.104045, -0.115285, -1.609855, 0.874568, 0.892411, 2.007296, -1.968755, 0.132095, 1.820703, -1.159879, 1.056728, -1.621238, -1.735622, 0.365577, 0.044551, 0.245102, 0.781900, -0.568182, -0.903664, -0.761595, 0.577774, 0.012518, 0.323001, 0.806387, -0.715938, 1.291085, -2.341664, 1.049098, 1.647642, 0.563267, -0.447792, 0.824436, -0.023639, 1.219416, 1.102642, 0.113489, 0.912743, 0.109638, -0.302463, 0.690598, -0.237857, 0.894208, -1.035659, 2.328670, -0.562059, -0.296181, 0.916796, -0.357272, 1.160758, 0.451315, 0.196456, -0.884296, -0.654022, 1.668492, 0.461198, 0.293342, 0.186362, 0.759364, 0.196021, -0.673123, 1.369451, -0.822186, -0.668167, 0.891107, 1.046052, 2.174824, -0.217663, 0.222540, -1.491159, -0.951655, -0.819255, 0.668112, -0.063466, 0.046701, 1.053596, 0.644253, -0.096507, -0.742529, 0.039552, -0.116341, -0.947332, -1.350485, 0.413847, 2.598992, 2.459606, 0.514045, -0.290478, 0.531872, 0.623313, 0.705847, -2.440353, -2.229876, -0.243842, -1.659471, -2.184856, 0.347365, -1.520216, 0.068324, 1.212021, 1.090282, 1.625544, -0.242690, 0.978063, -0.647997, 2.228631, 0.150888, -0.448686, 0.282191, -0.638558, 0.313404, -1.548489, -0.987350, 0.504220, 0.200817, 0.331415, 1.698722, -0.194588, -0.867004, 0.635534, -1.404777, 1.130592, 0.307063, -1.019221, -0.937982, -1.596464, 2.248796, -0.375377, -0.286856, 0.710374, -0.679039, 0.084932, -1.272005, 1.762173, 0.306859, -1.000013, -1.563703, 0.070367, -1.731430, -0.129567, 0.680612, -0.211895, -0.482885, -0.626461, -1.691782, 1.110358, -0.086106, -0.515570, -0.987962, 1.169888, -0.406341, -0.483877, -2.080735, 0.285999, 2.004029, -1.256048, -1.882583, -3.047656, 0.099457, -1.818615, 0.062210, -0.807041, 0.039765, -1.493414, 0.152758, 0.973733, 1.504650, -0.852136, -2.933638, 1.068753, -0.301381, -0.352158, 0.204912, -1.223965, -1.252604, 1.693246, 1.631687, -0.671105, 0.906412, -1.280496, 1.915374, -0.177969, 0.159518, 0.816535, 0.450977, -0.750484, -0.018431, -1.190060, 0.166193, -0.067318, -0.043534, 0.206740, -1.341822, 2.316914, -1.613452, 1.066080, 1.425543, -1.780641, 0.325450, -0.450151, -1.997296, -1.621558, 0.920813, -0.135516, -0.763896, -0.021063, -1.167069, -0.144444, -0.213741, 1.478804, -0.263028, -1.013180, 2.245053, -1.356859, -0.690404, -0.222947, -1.624552, -0.464506, -1.517442, -0.308159, 0.499479, -0.057061, 1.228032, 0.299066, -1.380981, 0.777070, -0.209613, 0.410636, -0.353264, 0.487815, 1.036224, 1.503528, 0.274954, -2.000251, 0.030772, 0.677885, -1.276899, -0.096168, 0.444528, 0.714932, -0.997932, -0.241405, 0.596798, 3.191526, -0.441197, -0.770703, 0.198933, -0.503894, -0.636223, 1.316053, -2.422652, -1.003362, -0.645443, 1.312824, 0.696529, 0.496544, 1.254918, 0.067976, 0.579736, -0.612679, 0.095804, 1.179636, -0.306940, -0.835429, -1.120113, -0.728495, 0.573919, -0.505831, -0.404828, 0.545294, -0.942293, -0.709087, -0.990315, -0.051144, 0.850603, -1.056156, 0.342539, -0.403991, 0.856288, 0.058781, -1.306745, -0.195350, -0.604557, 1.110527, -0.889690, -0.333949, -0.460623, -0.472012, 0.224678, 0.653727, -0.296846, 1.589186, 0.289251, 0.571712, 1.807680, -0.241117, 1.578081, -0.230120, -0.019002, -0.284344, -0.733357, -0.494227, -1.510475, -0.881025, 0.011355, -1.695467, -0.552732, 3.597214, -0.760997, 0.160454, 1.604971, -0.056311, 0.782432, 0.012931, -0.721449, -0.482569, -0.645418, -0.685215, 1.484420, -2.147895, 0.319111, 0.434472, 0.613192, -0.443633, 2.904831, -0.377940, -0.816888, 0.681861, -0.331878, 1.322679, 0.426241, 1.535460, 1.807671, -0.155240, 0.608807, -0.789376, 0.066064, 0.173941, 0.442881, 0.302427, 0.675783, -0.206586, 2.158039, 0.509036, -0.928564, 1.916680, -0.162566, 0.047139, -0.392633, 0.773404, 1.075810, -0.377545, 1.240136, -0.423998, -1.755018, -0.376135, -0.800686, -0.907901, 1.713279, -1.289116, -0.828548, -0.957205, 0.919591, 1.058795, -4.015570, 0.303151, -1.871327, -0.258658, -0.663640, 1.705543, -0.665959, 0.171985, 0.205161, 0.997869, 0.335844, -0.581812, 0.141911, -0.898024, 0.905078, 1.467683, -0.516611, -1.066879, -0.183614, 0.145401, 0.406541, -0.495786, 2.152388, -0.157968, -0.255234, -0.027002, 0.287821, 1.262139, -0.598631, 0.507232, 0.125771, -0.334446, 1.279116, 0.292011, 1.215638, -1.050658, 0.150421, 0.836198, 1.265561, -0.782982, -1.379708, -0.112104, 0.130101, -1.144690, -0.833199, -0.217920, 0.025572, 1.152740, -1.165658, 0.466775, 0.393018, -0.510852, 0.753150, 0.736648, 0.414469, 0.710530, 0.562602, 0.620719, 0.500728, 1.057322, 0.300625, 0.736402, -1.602048, -0.129288, -0.974479, -0.420793, 0.447426, 0.182499, -0.019345, 0.804603, -0.216000, -1.647184, -0.023763, 0.740351, 0.610837, 0.093540, -0.744371, 0.508537, -1.447733, -1.206406, -3.590968, 0.141688, 1.332558, 0.751247, -0.871550, -0.202231, 2.078777, -0.794069, 0.915636, -0.040179, 0.458278, -0.840516, 0.119802, -0.482384, -0.161426, 0.704770, 0.153015, -0.000750, -0.219447, 0.262337, 1.518239, 1.355411, -0.458673, 1.161361, -1.054924, 0.579480, -0.119109, -0.329629, 0.812682, 1.857557, 0.099020, 0.820302, 2.090000, 0.247340, -2.325257, 0.304030, 0.084419, -0.821864, 0.456438, 0.748984, 0.468434, -0.745492, -0.411619, -0.268436, 0.998883, -0.801896, -1.206509, 0.889848, 1.676262, 0.598750, -0.508465, 0.084038, -0.475236, -1.639909, 0.357904, -0.408079, -0.583212, -1.119743, -1.706453, 0.186840, -0.800573, 0.090565, 0.463982, -1.350953, 0.548916, -0.819529, -0.005303, 0.342667, 0.033524, 1.180686, -0.240149, -0.082084, 0.121012, 0.584651, -0.081447, 0.435425, -1.062111, -1.297010, -0.354924, 0.058040, -1.326069, -2.293762, -0.826101, 0.425946, -1.302736, -0.436073, -1.042596, 0.276245, 0.392518, 0.717258, 3.301770, -0.644866, 0.377213, -0.406736, -0.318716, -0.816595, 1.013310, 1.477392, -1.298086, -0.234732, 0.282106, 1.522305, -0.734220, 0.467740, 0.545424, 1.020615, 0.653171, 0.453015, 0.254356, 0.018373, 1.661917, 1.118822, 0.098586, 1.395874, -0.187699, 0.508652, -0.548066, 0.257491, 0.235350, 0.505458, -0.372710, 0.271288, -2.049830, -1.394902, 0.715808, 1.042062, 1.460668, 1.376373, -2.056576, 0.345659, 1.282268, 1.746942, -1.589097, 0.516501, 0.139361, -0.154290, -0.924339, 0.335194, 0.889294, 1.160918, -0.638914, -0.657616, -0.993357, 0.032571, -2.107877, 0.991383, 1.390078, -0.715143, 1.641153, 0.043067, 0.817948, 0.154437, -1.268595, 0.718767, -1.082909, 2.428075, -0.849468, 0.428728, -0.346973, -0.109188, 1.310439, -0.497318, -0.107854, -1.039751, -2.319314, 0.506966, 1.154441, 1.849161, -0.592776, 0.613116, -0.039152, -0.464128, -0.161897, -2.227032, 0.045890, -0.564227, 1.103639, -1.510715, -0.291276, 1.967509, 0.785963, -0.990884, -0.216925, -2.164696, -0.003942, 1.009959, -0.098606, -1.182608, 0.338989, -1.038732, 0.870748, -0.982860, -1.151487, -0.728321, 1.248880, -0.466434, 1.601769, 0.551422, -0.658448, 0.502653, -1.053988, 0.594415, 0.163925, -0.080079, 0.536887, -0.056005, 1.457503, 1.138792, 1.634425, -0.078903, 0.236324, -1.198733, -1.716764, -0.803560, 0.022557, -1.092070, -0.833702, -1.877477, -0.304326, 0.053183, 1.887550, -1.147866, -0.803854, -1.541034, 0.969796, 0.074783, 1.486452, 0.236390, -1.117702, 0.486334, -1.841179, 0.660699, 0.905663, 0.222406, 0.840630, 1.689011, 1.449841, 0.785060, 0.247622, -0.384732, 0.759199, 1.906931, 1.065960, -0.041626, 0.394889, 1.688113, -0.075546, -0.361648, 0.062103, 0.283601, 0.159933, 1.277289, -1.323852, -0.593494, 0.123995, 1.324236, -0.205210, -0.803219, -1.340778, -0.710786, -1.370338, 1.156267, -0.077055, -0.244050, 0.000291, 1.988200, -0.147974, 0.640865, 0.225355, -0.208274, 1.147141, 0.221391, 2.376750, -0.683141, -1.561707, -0.037740, 0.244160, -0.294200, -1.515108, 1.197305, 1.414708, -2.325714, -0.867730, 0.048080, -1.325000, -1.754054, -0.048702, 1.316129, -0.557108, 2.111063, 0.014839, 0.740811, 1.187295, -0.211452, -1.235271, -0.203892, 1.170752, -0.515556, 0.534500, -0.589873, -0.085859, 0.757107, -0.454449, -0.242475, 0.892581, -1.583763, 0.163886, 0.928978, 1.342655, 0.689295, -0.647056, -0.398740, -0.562487, -0.144457, -2.807038, -0.966036, -0.073517, -0.997487, -1.895521, -0.048410, -0.245080, 1.371564, 1.418200, 1.927510, 0.724537, 0.348282, 0.097457, -0.752247, 0.547111, 0.452678, 1.842658, -1.372846, -1.080536, -0.492402, -0.948238, 1.248988, -0.136566, 0.888306, -0.507940, -1.208086, -2.109605, 0.216898, 0.124905, -0.012725, -2.139055, -1.029584, 0.245014, 0.518949, -0.145007, 0.894423, -1.507149, 0.469880, 0.737765, 0.172519, -1.487251, 0.292384, -0.270667, 0.462509, 0.022113, 0.120434, 1.887821, -0.366725, -0.578942, 0.309197, 0.071899, 0.919132, 0.111711, 0.953862, 0.928987, -0.178857, 1.024506, 0.298323, 0.723635, -0.954093, -1.873633, 0.262402, 0.516609, -1.279220, 0.186461, 0.766670, -1.462925, -0.746575, 1.293203, -0.019324, 0.552474, 0.804343, 0.905144, -0.795691, 0.237082, -0.288253, -0.256831, -2.167557, 0.241622, -0.362114, 0.098529, -0.730083, 0.694702, 0.472205, -1.018633, -0.665194, 0.318752, 1.942694, 0.947298, 0.384414, -0.949530, -0.242625, 1.494762, 1.116680, -1.165330, -2.006563, -0.167549, 0.318343, 0.327429, 0.268683, -0.256726, -1.094689, -1.933067, 0.575581, 1.576788, -0.790888, -1.421626, 0.559636, 0.169084, -0.614721, 1.249090, -2.028653, 0.033302, 0.703858, 0.810570, 0.525806, 0.553967, 0.309991, 2.161190, 0.487782, -0.203454, 0.939968, 1.521396, 1.169673, -1.308519, -0.611268, 0.808024, 0.655301, 0.096592, -0.148393, 0.276038, 1.716933, -0.142533, -1.244457, -1.249490, -1.574976, 0.870563, -0.885578, -1.213086, 1.120872, -1.189445, -0.585305, 1.269445, 0.305883, -1.062068, 0.799435, -1.251410, -0.600416, 0.804726, -0.271234, -0.895507, 0.268118, 0.273714, 0.817049, 1.620739, 0.042687, -0.247700, 1.158443, -0.032706, 0.186347, -1.014765, 1.309911, -0.993179, 0.638214, 0.353942, 0.262249, -0.515910, 0.905912, 0.071666, 1.425258, -0.214364, -0.405860, 0.322082, -2.038569, 0.663869, 1.374939, -1.704746, 0.001251, -0.468250, -0.543265, 0.786153, -0.014665, 1.744427, -0.396289, 0.065601, -1.783098, 1.628016, 0.221392, -1.623130, 0.913457, 1.569945, 0.074148, 0.681321, 0.167484, -1.354388, 0.372236, 0.355057, -0.698553, 0.243511, 0.047298, 2.324381, 0.494232, -0.354383, 2.683529, -0.299160, -0.732044, 0.591202, 1.365810, -0.674266, -0.143102, -1.892520, -1.891342, 1.712276, 0.588573, -2.112565, 1.322950, -0.567429, -2.209439, -0.507957, -0.494205, -1.052432, 1.107759, -0.111659, -1.599427, 0.569260, -1.142308, -0.376497, -0.704686, 1.216245, -1.656430, 0.237153, -0.554729, 0.689873, 0.358264, 0.023091, -0.409037, 0.936587, 0.768994, 1.378372, -1.399549, 1.208693, 0.486285, 0.331197, -0.686468, 0.005126, -0.502025, -1.036639, -0.491039, 0.596697, 1.302914, 0.067185, -0.120411, 0.208858, -0.718485, 1.843144, -0.853323, -1.646446, 1.443056, 0.396544, -1.461868, -0.994024, 0.601044, -0.368966, 2.109496, -1.858449, 1.675221, -1.689736, 1.414936, 0.620734, 0.209911, 0.220183, -1.311763, -0.902506, 1.203832, -0.180132, -0.140792, 0.127870, 0.298109, -0.249634, 0.353379, -0.839347, -1.157898, 0.144337, 1.485741, -1.117781, 1.176339, 0.510259, 0.027923, -0.198288, 0.257066, 0.478007, -1.653934, 1.118124, 0.876101, -0.894446, 0.218383, -0.441243, -0.736363, -0.941684, 1.215643, 1.784836, -1.096164, 0.644597, -1.001155, 0.851863, 2.314310, 0.762955, -0.773405, -1.224005, -0.020442, 0.490393, -0.691299, 0.399926, 0.624403, 0.150433, 1.792048, 0.370861, 0.041537, -1.017301, -1.209133, -1.222578, -1.331111, -0.583000, 0.278368, -1.546722, 0.849334, -0.545177, 0.993589, 0.697411, -0.158505, 1.562587, -1.661492, 0.717039, -0.292506, 1.020398, 0.207425, -0.015711, 1.666373, 0.993838, -0.854248, -0.120354, -3.378056, -0.980753, 0.011066, -0.532348, 1.887271, -1.352068, 0.338103, 0.796058, -0.171730, 0.397031, -0.160426, -1.037023, 1.285795, 0.090821, 1.216535, -1.318853, 0.012382, 0.535242, 0.261766, 1.071842, 0.440831, 0.611455, -0.929570, 1.570926, -0.154514, -1.659442, -1.652807, 0.832240, -0.746617, -0.675656, 0.661198, 0.398967, -0.735796, -0.746877, 0.984032, -0.199201, -0.758471, 0.311492, 1.004689, 0.393983, -0.663058, -0.629355, 0.167509, -0.618294, 0.567620, -1.938332, 0.922270, -0.415272, 1.212559, -0.023118, -0.767115, -1.495589, -1.255184, 0.118539, -0.745166, -0.672295, -1.545429, -0.716545, -1.106630, -0.078553, 0.879629, 0.974308, -0.137689, -0.464611, 0.936891, 1.147917, 0.509769, 0.563796, 0.052862, -1.284131, -0.291096, 0.081777, -0.400073, 0.705509, -0.114025, -2.159276, -1.544984, 1.674441, -0.926547, 0.125256, 2.087236, 0.725663, 0.776126, -0.827905, -1.981602, 0.603253, -1.184810, -0.678212, 0.307489, 0.226716, -0.616348, -0.111767, -1.820482, -1.417757, 0.634413, -1.138639, -1.298559, 0.384734, 0.579211, 1.705501, 1.469555, 0.019641, -1.401232, -0.141805, 1.087576, -0.941758, -0.581052, -1.658015, 0.918930, -1.896925, -1.185906, -0.032664, 0.928568, -1.145188, -2.217072, 0.696880, -0.139694, 1.611320, 1.590444, -0.823083, -0.161521, -0.190495, 0.298279, 2.147478, -0.143921, 1.850659, 0.124507, -1.676375, 0.262602, 1.173930, 0.952699, -0.956552, 0.898254, 0.844637, -0.745090, -0.864909, 1.577642, -0.472348, 0.594579, 1.323665, 0.695430, -1.457288, 1.197672, -0.530519, 0.850585, -0.886207, -0.718863, -0.129478, 0.875762, 1.344030, 1.166345, 1.406504, -2.190434, 0.701644, 0.558108, 0.409784, -1.656140, 1.208338, -0.519180, 0.223482, 0.748124, 0.097323, 0.715970, -1.527134, 0.535389, 0.370611, 0.578901, -3.046126, 1.462143, -0.752133, 1.250911, -1.494899, -0.161154, 0.243344, -0.134417, -0.373131, -1.073105, 1.267560, 0.738967, 0.249464, -1.528957, 1.407050, 1.296934, 2.696871, -1.198885, 0.404112, -0.563298, 1.905446, -2.483317, 0.607973, 1.400213, 0.785318, -2.427183, -0.573498, -1.450760, -0.413151, -0.139899, 1.530708, 0.277043, -0.188913, 0.514852, 1.399172, -0.811467, 0.005990, 0.181239, 2.083996, 0.098943, -0.232644, 0.346235, 1.252002, 1.810240, 0.430197, -1.269393, 2.199245, 0.635753, -1.036215, -0.120450, 1.199328, 0.517621, -0.289110, 0.409783, 1.080916, -0.200301, 0.234920, -0.758630, -0.054944, 0.343013, -0.487173, 0.227276, -0.880040, 1.823280, 0.018873, 0.449070, 0.141262, 0.434751, 1.174268, -1.907374, 1.270779, 0.117235, -0.495601, 0.370781, 0.034318, 0.708558, -1.016281, -0.809590, -0.236292, 1.413989, -1.018390, -0.604388, 0.077290, -0.322879, 0.317386, 0.195364, -0.224596, 0.419801, -0.051214, -1.294279, -1.585191, -0.614829, 0.291316, 0.527026, -0.035368, 0.862249, 0.429781, 0.026719, 0.311587, 2.149591, -0.723808, 0.083928, -1.263941, 0.565994, 0.607109, 0.051392, -0.647140, 0.408378, -0.325048, 0.666051, -1.812193, -0.481149, -0.895440, -1.487628, -0.051724, 1.030995, -1.429187, 1.616624, 1.332899, 0.817643, -0.651819, 0.180374, -0.928031, -0.574170, -0.987816, 1.026662, -0.001211, 1.132437, -0.461924, 0.799407, 0.009504, -1.247738, 1.366446, 0.485234, 1.683592, -0.818062, 0.466098, 0.618622, 2.081132, 0.386411, -0.376256, 2.302080, -0.472404, -0.197619, 0.041499, -1.151170, -1.806785, -0.376674, 0.063492, 0.754902, -1.170045, -2.322990, -0.137742, -0.243928, -1.468925, 0.545148, -0.357012, 0.064328, -0.243415, -0.822864, 2.019027, -0.769357, 0.468290, 1.882418, 0.342787, -0.696157, -1.560195, 1.948524, -1.407121, -1.124421, 0.828790, -0.299129, 0.966997, 1.135263, -1.492739, -0.168288, 0.316350, 2.065712, -1.206027, -0.600245, 0.478660, -0.659134, 0.893908, 0.667413, -1.680572, -0.442523, 1.186590, -0.160877, -0.469502, -1.533293, 0.285390, 0.658302, 0.701033, -0.191945, -0.192662, -1.602242, 1.633399, -1.609775, -0.988848, 0.669548, 3.220970, 0.415837, -1.343026, -0.014933, -0.094364, 0.099381, -0.991866, -1.052532, -0.023157, 0.114131, -0.470556, -0.677907, 2.241443, -1.891253, 2.090881, -0.236475, -0.115302, -0.847335, -0.678742, 1.631226, -0.350954, 0.746013, 0.439496, 1.703137, 1.978385, 1.502600, 1.832951, 1.006809, -0.861861, 0.136237, 0.194582, -0.049889, 0.768008, 0.729039, -0.789408, -0.493955, -0.174524, 1.164600, -1.410962, 1.338335, -0.093167, -0.143927, 1.037471, 0.355913, 0.721230, -0.114761, -1.068794, -0.369482, 0.678685, -1.852772, 0.870384, 0.507279, -2.306766, -0.691351, 0.339238, 0.874056, 0.175721, -0.274644, 1.222448, 0.249203, 1.455549, -0.233866, 0.288981, 0.317599, -0.811498, -0.908194, 0.418703, -1.026886, 0.901506, 0.421606, -2.355229, -2.010783, 0.639056, -0.387780, 0.529579, -0.115747, -2.026635, 0.762252, 0.342841, -2.721693, 0.225247, -1.119844, 1.762495, -1.234644, -1.186285, -1.118980, -0.790823, 1.372955, -0.144790, -0.289554, -1.474859, 0.935327, 0.257315, 0.657742, -0.752228, 0.373652, -0.877215, -2.682745, -0.610774, 0.455652, -1.285036, 0.938585, -1.040668, -0.506063, -0.635054, 0.734377, -0.148222, -0.766240, -1.794213, 0.264920, -0.651568, -0.127556, -1.511425, -2.408001, -0.065094, -0.500168, 0.081581, 0.293386, -0.918540, 0.481355, -1.415078, -1.506683, -1.791014, -1.940797, -0.731344, -1.251695, -0.309286, -0.693743, -0.796699, 2.297995, 0.736554, -0.360015, -0.145277, 0.265324, 2.174685, 1.361956, 0.418747, -0.028816, 1.201867, 0.282520, -0.736020, 1.589420, 2.311612, -0.158355, -0.348948, -1.570364, -1.064447, -0.871774, 0.836884, -0.241113, 0.680196, -1.468255, 0.360123, -0.117796, -0.902268, 1.206016, -0.273557, 0.294911, -1.407273, -0.659960, 0.424815, -0.386988, -0.913246, -0.508748, -0.219080, -1.651974, 0.775883, -0.051616, 0.325976, -0.485320, 3.142784, -0.518282, -0.524431, 1.943767, 1.705564, 0.440877, 1.349568, -0.489779, -1.226827, 0.056258, -1.534418, 0.178679, -0.212164, 0.418668, 1.318532, -0.727790, 0.187988, 0.370431, 0.477882, 1.348819, 1.123202, 1.293542, -1.830254, -0.906303, -1.160818, -1.499872, -0.749063, -1.843293, -1.209419, -0.094008, 0.906350, -0.514163, -0.674518, -1.229189, -0.251380, 0.089014, -0.394945, -0.948207, 0.179413, 1.705880, 1.481214, -1.569964, 0.258922, 1.706765, 0.790410, 0.240023, -1.391616, 0.714121, -0.987433, -1.098027, 0.849551, -0.103418, 0.365080, -0.282595, 1.164164, 0.665270, 0.355595, 0.115689, 0.125766, 0.361181, 0.763215, 0.968049, -0.107044, 1.016707, 0.088473, 1.193165, -0.435059, -0.100778, -0.317268, -0.825614, -1.051258, 0.243711, 0.377545, -0.094623, 0.723646, 0.814205, -0.030798, 2.052617, -1.259441, 0.093852, -1.847167, 2.151407, -0.583909, -0.202982, -1.409784, 0.071909, -0.173323, -1.325530, -1.612066, 0.111486, 1.877957, 1.020731, -1.090581, 0.027436, 0.718217, -0.159228, 0.039074, 0.135114, 1.141439, -0.369754, 0.149730, -1.332786, 0.405130, 0.189829, -0.142822, 0.268124, -0.188454, 1.224434, -0.977509, 0.763707, -0.161697, 0.024968, -0.057457, -0.658942, 0.393707, 0.024037, -0.402251, -0.383377, -0.600593, -0.577664, 0.917264, -0.666357, -1.869187, -0.336415, -1.091990, 0.102598, 2.138619, 0.122753, -1.135455, 1.134380, -0.036447, -1.175676, 0.533750, 1.721340, 0.999408, -1.620160, 0.556890, 0.988642, -0.176587, -0.737106, -0.513593, -1.156436, -1.011539, 0.529095, -1.561689, -0.278184, -1.858055, -1.853150, 0.158110, -0.144312, -0.149990, 0.307596, -0.655647, -1.150726, 0.081073, 0.339135, 1.373845, 1.286314, -0.258182, -1.679334, -0.694605, -0.384283, -1.940498, 1.066846, -0.198975, -1.389420, 0.048676, 0.454977, -0.304671, 1.722365, 0.605073, 0.601758, -0.839313, 0.817142, -0.023608, 0.431783, 0.567458, -2.460163, -0.277263, -2.522150, -0.843465, 0.475266, 0.155524, -0.182731, 1.290886, -0.031742, 1.595315, -1.487618, 0.434404, -0.151036, 1.554354, -0.442486, -0.971564, 1.536515, 2.030288, -0.091330, -0.639896, 0.675043, 0.372680, -0.097302, -1.079158, 1.616633, -1.180672, -1.134611, 1.106823, -0.264735, -0.428301, 0.321761, -0.428073, 0.837635, 1.779821, 0.889562, 0.014049, -1.663147, -0.709730, 1.815853, 0.826502, -1.832997, -1.001730, -0.035752, -0.883202, 0.198855, -0.720034, -0.512378, -1.235309, 0.637103, -0.318085, -0.722293, -0.725155, -0.516654, 0.106518, -0.725105, 1.835024, -0.927853, -1.955561, 0.763174, 0.373548, 1.146230, -3.753366, 1.273680, 0.012062, 2.852662, 0.236338, -0.295475, -0.244922, 0.767836, 0.119353, 0.993934, 0.756175, -0.980474, 0.385351, 0.172012, -0.332472, -1.052266, 1.427503, -1.895816, -0.447396, -0.139730, -0.679052, 0.213772, 0.266755, -0.519739, -0.077430, -0.093825, -0.202419, -0.238314, 0.651187, 1.560948, -0.184705, -0.627118, -1.269736, 0.615082, -1.105759, 0.617015, -1.084346, 0.146138, 0.743565, 0.139173, 1.156885, 0.492462, -0.067773, -0.635241, 0.085324, 1.302415, 0.467737, -1.612368, -0.877104, -0.044858, 0.088059, -0.897877, 1.781092, 0.053566, 0.452692, 0.362189, 0.052842, 0.158434, -1.563583, -0.030714, 1.672257, 0.357928, 0.162656, -0.415725, -0.400887, -0.459514, -1.245656, 0.002331, -0.005904, 0.030327, -1.433488, -1.353397, 0.020028, 1.164917, 0.313599, 1.181723, 0.352966, -0.858882, 2.606408, -0.512971, -1.197124, 0.464680, 1.313213, 0.204163, -1.415648, 1.007134, 2.564667, -0.089119, 0.345481, -1.031982, -0.521176, 0.519781, -0.763010, 0.733503, 1.814899, -0.001072, -0.708667, -0.513932, -1.814224, -0.592833, -0.525615, 1.370029, 2.308789, -0.976814, -0.314422, -0.477806, 0.305997, -0.872631, -0.088829, -0.662893, -0.569024, -0.066163, 1.533401, 0.366497, -0.212668, 0.755595, 0.449040, -0.108833, -0.587931, -1.009151, -0.799894, -0.154522, 0.107163, 1.425453, 1.631916, -0.073408, -0.440364, 0.631786, -0.737705, -0.055127, 0.772019, -0.258056, 1.539292, 0.395897, -0.343193, -1.031211, -0.302418, 0.288518, -0.135447, 1.438798, 0.294601, 0.405512, -0.561546, -0.409586, 0.651017, -0.272401, 0.930303, -0.630249, -1.622772, -1.261243, -0.249885, -0.019325, 0.512813, 0.933841, -0.463988, 0.305396, 1.287911, -0.758046, 0.661103, -1.843919, -2.065572, -0.410313, -1.541864, 1.339012, -0.804902, 1.045279, -0.769203, -0.032602, 0.063275, -0.662296, -0.144066, -0.243627, 0.332526, -0.820790, 0.603103, 1.184764, 0.448711, 0.616243, 1.898227, 0.515180, -0.455631, -0.818757, 0.443795, 1.069992, 0.636242, -0.286327, -0.666330, -0.737574, -1.093274, 1.225394, -0.243206, -0.112195, -1.572394, -1.555291, 0.235222, 0.662835, -0.140926, 0.550963, -0.469103, 0.586619, -2.375870, 1.041302, 0.594935, -0.382474, 1.445974, 0.908579, 0.825926, -0.652322, 0.437661, -1.902363, 0.509471, 0.382050, -0.154797, 1.412613, 1.231123, 0.285335, 0.323703, 1.230827, -1.325370, -0.882106, -0.040444, -0.254714, -0.257117, -0.529394, 0.779346, 0.682189, 1.133347, 1.187395, -0.223462, -1.298226, -0.275506, 0.331544, -0.445988, 0.123823, 0.696435, 0.421639, -1.261232, 0.776110, 0.132655, -0.720933, -0.609152, -0.061301, -1.048410, 0.921329, 1.112192, 0.370525, -0.019465, -1.114954, 0.277303, 0.901529, 1.694158, 0.529833, -0.882069, -0.245371, -0.603769, 0.758759, 0.508264, -2.029322, -0.040732, -0.494105, -1.147427, 0.495379, -0.041708, 0.730202, -0.422939, -0.632949, -1.984159, -1.108105, -0.993817, 0.282263, -0.080835, -0.788011, 1.243930, 0.742627, -1.815206, 0.314197, 0.602959, 0.055921, 0.130547, -1.698285, 0.671603, -0.306370, -0.550947, -3.093813, 0.376060, -1.627970, 1.799160, -0.125827, 0.449279, 2.025550, 1.338993, -1.261597, 0.445731, 0.609896, -1.726927, -1.364881, 0.542433, -0.810466, 0.863934, -2.478897, 1.668358, -0.060390, -0.424467, -2.022434, -1.145987, -0.837309, 0.083879, -1.809817, 0.723728, 0.859393, 0.372108, -0.237508, 0.796737, -0.447039, -0.194162, 0.796565, 0.074311, -0.011911, 0.224484, 1.298364, -0.619427, 0.397665, 0.720958, -0.174028, -0.027007, 0.152947, -0.616935, 0.528441, -0.548607, -0.046968, 0.866270, 0.233197, -1.674556, 0.186067, 1.357813, 0.557800, -0.558316, -2.339965, 1.293808, -0.709143, -0.565500, -1.154304, 0.312092, -1.036005, 1.043651, -0.780841, -0.368151, 0.179745, -0.306073, 0.255710, 2.103900, -1.071129, -1.279216, -0.703963, 0.759521, -0.140323, -0.608581, 2.917427, 0.248669, 0.338649, 0.485611, -0.531817, 0.863207, 2.153741, -0.296518, -0.459129, 0.270417, 0.935235, 1.394564, -0.551661, 0.226926, 0.216715, 0.541608, 0.363598, -0.583128, -0.483484, 0.219572, 0.346102, -0.184419, -0.312754, -1.021271, -1.778001, -1.153524, -2.060209, -0.038508, 1.803398, -0.673404, 0.185306, 1.306659, 0.976398, -0.081853, -0.609699, 0.843565, 0.276698, -1.175775, -0.586864, 0.344750, -2.477780, 0.177836, 1.484502, -2.088840, -0.491484, 0.254499, -0.891253, 0.922149, 0.397272, 0.140329, 2.255648, -0.080438, 0.190627, -0.344085, 0.914310, -0.492837, -1.322400, -1.311848, -1.906278, -1.127237, -0.759115, 0.843289, 1.298117, 0.127567, 0.050809, -0.053783, -1.038648, 0.462915, -0.432071, 1.638138, 1.477372, -1.211059, -0.154430, 0.024262, 0.067581, 1.115890, 0.367321, 1.327273, -1.408346, -1.128287, -0.922713, 1.145809, 0.008678, -1.854904, 0.523576, -0.329485, 0.303820, 0.575895, -0.402776, -0.599858, -1.450637, -1.904945, 1.265459, -0.159827, 1.406783, -0.024990, 0.239961, -1.854666, 0.086036, 1.209725, 1.887180, 0.583309, -0.083836, 1.048282, 0.552419, -0.207426, -0.064380, -1.575963, -0.378237, -0.229650, -0.601722, -0.960228, -0.102083, -0.414764, -0.832576, -0.893981, 1.439118, 1.311700, 0.636207, 2.695851, -1.953427, -1.121281, 0.109427, 0.807637, -0.640741, -0.935607, -0.514951, 0.799321, 1.356677, -0.019797, 0.608427, -1.336663, -0.452547, 0.544517, 1.252920, 0.707849, -0.067403, 0.464638, -0.964007, -0.427682, 1.191631, -0.465947, 0.013992, -0.394630, -0.407368, -1.767068, -1.423715, 0.157861, 0.322349, -0.721958, 0.288086, -0.113849, -2.595654, -1.889727, -1.893902, -0.979257, 0.563037, 2.069219, 0.486238, 0.484894, -0.508484, -0.654682, 0.501518, 0.447948, -0.899938, 1.609891, 0.372200, -0.465811, -0.876349, -0.989570, 0.322810, -0.163933, 0.162493, 1.217476, 0.941825, -1.047924, -0.181836, -0.693214, 0.549036, 0.863952, -0.714402, 0.862002, -1.796094, -0.728835, -0.976425, -2.619379, -0.215380, 1.479812, 1.673869, -0.086293, -0.036034, 0.267581, 0.287811, -0.344847, -1.304700, -0.825427, -0.848370, -0.457317, 0.080942, -0.758908, 0.629612, -1.074773, 0.757741, 0.668105, -1.219031, -0.208474, -1.711361, 0.226617, -0.841018, 1.660807, -0.697073, 1.393023, -0.787531, -0.761010, -0.984526, -0.814087, -0.013918, 1.599091, -2.240978, -0.874549, 0.712055, 0.085046, 1.011351, 0.840473, -1.043489, -0.823256, 0.668104, -0.592289, -0.046664, 1.144287, -0.559592, -0.729162, 0.849113, 0.222759, 0.195738, -1.121981, -1.121979, -0.066825, -0.157941, -1.773485, -0.782219, 0.655074, -0.262132, -0.712077, 0.752541, 0.425039, 0.972398, -1.672732, 0.634087, -0.214051, 0.568499, -2.309596, -1.113105, 1.696879, -0.353259, -0.290204, -1.128185, 0.674188, -1.267031, 0.637262, -0.530526, -0.875749, 0.967556, -1.556293, -1.117577, 0.668908, -0.388012, -1.702704, -0.982943, 0.825036, 2.169169, 1.586789, -1.343200, 1.101355, 0.883851, -0.868814, -0.497662, -0.431353, 0.442203, 1.489853, -0.126395, -0.648795, -0.169522, 0.297527, 0.310265, -1.304085, -0.760477, -0.037992, 0.027178, 2.459609, -1.534498, -1.575119, -1.700460, 1.139519, -0.014968, 0.234533, -0.067230, 0.096728, -1.786536, -0.602227, -2.189427, 0.519104, -0.040212, 0.775011, -0.830357, -0.571322, 1.384906, 1.701390, -1.280063, -0.678924, -0.492366, -0.248255, 0.288810, 0.746716, -0.854638, -0.343785, -1.035924, -0.604085, -0.946944, -0.631828, 1.844068, -2.555476, -1.448799, -0.092470, 1.225179, 1.333341, -0.746759, 0.315804, -0.878796, -1.078185, 1.097040, -0.105570, 0.333994, -0.377507, 0.378326, -0.053087, -1.126848, 0.934960, 0.410731, 0.197805, 0.223323, 0.312033, -1.840421, -1.807174, -0.840043, 0.068570, 1.757604, -0.076322, -3.128909, 0.140312, 2.139157, -0.905102, 0.111514, -0.848952, 1.090445, -1.340872, -1.455730, 0.399908, -0.420877, 0.155199, -1.340483, 0.471297, -1.757322, 0.636677, 0.590320, 1.093107, 0.007619, 0.358078, -0.672528, -0.494688, 1.306112, 0.778751, 0.926516, 0.932918, -0.652896, 1.519377, 1.808176, 0.580447, -1.560422, 1.103326, -0.711911, 0.589932, -0.025245, 1.441283, 2.070462, 1.525393, -0.429804, -2.243278, -1.381306, 2.027807, -0.717750, 0.158620, 0.203938, 2.275288, -1.290036, -0.763332, -1.005744, -0.104188, 1.433085, 1.138323, 1.260414, -0.772884, 0.603607, -0.961641, -0.146728, 1.131142, -0.586622, -0.793266, 0.422120, 0.238596, 0.988546, -0.920935, -0.354626, -1.574340, 1.132674, -0.846445, -1.345843, -1.729672, -1.271401, 1.427218, 1.986580, 0.541635, 0.295550, -0.500550, -0.408490, 0.070781, 1.784228, -0.119234, -1.159608, -1.380432, -0.149607, 0.415031, 0.891507, 0.955257, -0.360345, -0.136555, 0.424249, -2.018592, 0.386525, 0.801126, 0.304958, 0.605012, -1.027500, 0.412363, -0.358259, 0.185826, -1.080077, 1.157918, -1.356224, 0.723348, -0.996599, -0.896110, 0.106722, 0.654700, -1.110127, 0.826412, -0.939684, 1.592098, -1.599002, -0.705636, 0.939622, -1.749310, -0.142900, 0.329500, 1.537404, 0.539679, 0.535866, 0.931259, 0.999876, -0.289414, 0.793408, -0.344457, -0.194481, 0.817257, -1.476450, -0.202502, -0.193899, -0.959493, -0.599850, -0.467182, 1.566532, 0.805961, -0.020652, -0.408956, -0.347758, -0.380462, -0.143103, 0.292589, 0.436122, 1.453586, -2.999577, 0.010084, -1.748454, 0.400327, 2.423968, 1.875613, 2.410515, 0.474966, -0.477082, 0.079202, -1.377004, 0.044919, 1.120112, 0.935645, 0.670242, 0.954505, -0.254576, -0.067505, 1.072077, 0.464383, -0.971635, -0.734305, 0.529991, 0.320964, 0.660038, -0.884118, 0.868322, -0.054656, 0.408413, -0.928430, -0.848887, 0.336249, -0.827988, 1.095226, -1.161564, 0.709723, -0.387843, 0.890326, -2.268380, -0.640441, 0.252365, 2.276407, 1.348281, 2.029460, -1.695108, 0.308716, 0.235891, 1.914263, 1.649640, -0.477879, -0.117208, 1.872425, 0.445807, -0.961056, -1.492970, -1.115844, 1.930394, 0.047135, -0.256759, 0.197470, 0.421923, -0.422296, 0.433128, 0.399215, -0.802778, -0.563040, 0.757818, -0.844195, -0.663983, 0.162023, 0.396168, 0.111668, 0.755298, -0.691091, -0.758507, -0.364105, -0.365148, -1.240560, -0.643815, 1.971015, -0.117173, 0.856542, 1.257437, -0.198269, 0.234995, -1.532506, -2.353866, 0.077296, -0.019384, 0.389523, -1.019283, 0.472070, -0.966912, 0.300588, 0.252483, -0.804045, -1.730821, -1.365752, -0.990922, 0.849213, 1.604441, -1.362975, 0.748139, 2.501775, -0.126310, 0.612473, -0.064447, 0.004416, 0.568888, -0.222759, 0.974630, -0.767727, 0.380578, 0.317705, -0.143703, 0.413208, -0.947242, 0.131730, 0.025382, -0.758325, 0.580607, 1.039693, -1.978096, -0.352989, -0.141092, 1.056524, 0.148448, 1.169638, -0.284465, -0.692905, 0.985378, 1.801891, -0.582393, -0.519100, 1.096080, -0.047229, -0.112265, -0.608350, -2.452482, -1.220425, 0.902638, 0.880592, -1.106066, -0.118210, 0.672128, -0.363375, 1.247757, 0.170906, -0.849769, -1.609034, -1.015062, -0.428678, -0.238637, -1.086833, -0.200252, -2.326732, -0.301218, -0.342991, 0.407981, 0.123120, -0.474811, 0.689556, -0.535312, -1.460389, -0.656256, -0.872668, -0.959749, -0.130226, 0.850948, -0.461050, -0.035449, 0.660750, -1.518566, 0.156001, -0.919434, -0.540750, -0.000871, -0.811852, 0.247025, -2.625853, -0.525114, 1.337842, -0.158807, -1.316601, 0.409387, 1.545733, 0.177541, 1.264480, -0.296738, 0.380318, -0.214996, -0.976262, -0.337425, -0.525910, -1.026923, 0.461673, 0.652946, -1.557104, 1.204365, -0.346271, -0.451315, -0.885818, 0.694764, 1.227606, -0.274514, -1.055869, 0.995573, 0.388055, 0.735920, 0.395819, -2.003695, -0.743029, -1.165036, -0.017400, -0.420809, 1.536804, -0.478933, -0.710430, -0.991006, -1.514194, 0.586450, 0.658552, -1.800328, -0.749451, 0.634071, 0.005889, -1.048293, 0.904292, -1.275187, -2.073517, 1.546540, 1.003061, -0.180415, -0.774517, 0.980949, 1.035466, -0.760792, -0.699135, 1.418587, -1.223056, -0.537477, 0.496585, -1.549317, -0.643062, -0.079485, 1.035337, -1.035709, -0.055925, -0.811267, 0.842547, -1.028167, 0.781426, -2.309164, -0.514714, 0.196260, -0.648122, 1.232203, 0.212556, 0.123973, -0.290506, 0.097181, 1.624703, 0.648933, -1.808541, -1.562539, 1.907293, -0.763823, -0.301554, -0.579386, -0.758413, 1.312228, 1.365965, -0.516405, -1.030932, -0.766624, -0.207938, 2.671840, 1.144630, -0.243363, -0.291062, 0.177277, 0.661588, 0.292051, 1.060794, 1.012830, 0.316930, 0.771680, -0.438249, 2.304440, -0.352412, -0.701439, 0.242441, 1.985065, -0.229084, -0.028268, 0.306352, -0.007879, 0.460231, 1.329044, 0.514899, -2.989984, -0.687685, -1.007076, 0.912048, -0.774717, -0.389092, -0.196883, -0.006537, 0.630364, 0.382722, 0.332988, 2.250091, -1.396306, 0.624280, -0.699713, 0.960984, 2.080729, -0.652034, -1.975734, -0.415395, -1.465640, 1.562211, -0.175790, 0.824711, -0.356191, -1.150109, -0.233485, 0.285365, 0.260212, -0.193945, 1.516209, -0.896587, 0.768712, 1.036168, -0.243662, 0.481208, -1.441876, -0.560259, 1.113345, 0.471965, -0.431091, -1.250092, -1.683304, -0.300121, 1.046572, -2.410199, -0.211774, 0.808844, -0.314220, 1.518381}, - { 0.128537, -0.670602, -0.941475, -2.075702, 3.765909, 0.102639, -1.360386, -1.352912, -2.199890, -0.356542, -0.548534, 1.083015, -0.219626, -1.837468, 0.307975, 2.474036, -1.179890, -1.226841, -0.035152, -1.388017, -1.100560, 1.459469, -0.322957, -0.382961, 0.962851, 0.544617, -1.090333, 1.191922, -2.301647, 0.082504, -1.564297, 0.133258, 0.024619, 1.143878, 1.393599, 1.292673, -1.089038, -0.879109, -0.815245, -1.486507, -1.627000, -0.363177, 0.734727, -0.906984, 0.140965, 0.228108, 1.041279, -0.104223, 0.782667, -1.843960, 1.740561, -0.013574, 0.694218, -0.155485, -0.521172, 0.752713, 0.998398, -0.833192, -1.114559, -0.794343, 2.989994, -0.872038, 1.513704, 0.629367, -0.925364, 0.304949, 2.170120, -0.046620, -1.439427, -1.969413, 0.007699, -0.622994, 0.360708, -0.186120, 0.513979, 1.093525, 1.388947, -1.641175, -0.434575, -2.174075, 0.568396, 0.369095, -0.962749, 0.636245, -0.749850, -0.312564, -0.439927, -1.049657, 0.715777, -0.830842, 0.336457, -0.458061, 0.361679, 1.312442, -1.349914, -1.373442, 0.466411, -0.321108, -0.987542, 1.310365, 0.459285, -0.259899, -1.179171, -0.526067, -1.657148, 0.510295, 0.151148, 0.373471, -0.181669, -0.628925, 1.297304, -0.709963, 0.627065, 1.784400, -0.514238, -0.331305, 1.821596, 0.667845, 0.706016, -1.452509, -0.192294, -0.168034, 0.145840, 0.009496, -0.120101, 0.383971, -0.783377, 0.499506, 0.009345, 0.352568, -1.011090, 0.796884, -0.738463, -0.462101, 0.439446, 0.765423, 0.012124, -0.360724, 1.710252, -0.876721, 0.634070, -1.742265, 1.081704, 0.714346, -0.651518, -0.124076, -0.834885, -1.095042, 0.815158, 0.481116, -0.464446, 1.367829, -0.565797, 0.548488, -0.730504, -1.194563, 1.524745, -0.156051, -0.411893, -0.480487, 0.840294, -0.338822, -0.240886, -0.628193, 1.357250, 0.036518, 0.377764, 1.100770, -0.501338, -0.084643, 0.718565, 1.343306, 0.786453, -0.286447, 0.056912, 0.764441, 0.167947, -1.104121, 0.937350, -0.488405, 0.077020, 0.572429, -0.363019, -1.137365, -0.072138, 1.179134, -1.281425, -0.162017, 1.292157, -1.460789, -1.169910, -0.695259, 0.781697, -0.757298, -0.186544, 1.030351, 1.226103, -0.061206, 0.741831, -0.205310, 0.336452, -0.418091, 0.256129, -0.589552, -0.016107, -0.528205, 1.183622, 0.274816, 0.948890, -0.883414, -0.823517, 1.601086, -1.625964, 2.577285, -0.010679, -0.614043, -1.524519, 0.492720, -0.712786, 0.010297, -0.166608, -0.737975, -0.776431, -0.407772, 0.217062, -1.372896, -0.251997, 1.635961, 0.384630, 0.942922, 0.007065, 0.083350, 1.269261, -0.470669, 1.239913, -0.952311, 0.856264, -0.709488, -0.092519, 0.712155, -0.731621, -0.132552, 0.097545, 1.907118, 0.396839, 0.974610, -0.636824, -0.714329, 2.447124, -0.217811, 0.034559, -1.698206, 0.287549, -0.361915, -0.151098, 1.223457, -0.121801, -2.212093, 0.351750, 0.820912, 0.369526, 0.842379, 0.029458, 0.699306, -0.019367, 1.311826, 0.005036, 0.975546, -0.801337, 1.417394, -0.553596, -0.905190, 0.543119, 2.164182, 0.184621, 1.121817, -0.094439, 0.538848, -0.764849, 0.234015, 0.350500, -0.353927, 0.915828, -0.795170, 0.578837, -0.446255, 1.414809, 0.040365, 0.543634, -0.414916, -0.396937, 0.083738, -0.305781, 0.162280, -0.422275, -0.515621, 0.919775, 2.824093, 1.883923, -2.059076, 1.156116, -1.033594, 1.424248, -0.129631, 0.993868, -1.338105, 0.121313, 1.424818, -1.360097, -0.845116, -0.698107, 0.603760, 1.111564, -1.650275, -2.248919, 0.635334, 2.317605, 0.492146, 0.769590, 0.498856, -0.280956, 1.201436, -0.498265, -1.181321, -0.131460, 1.644883, -1.362115, 1.204524, -0.677628, 0.914850, -0.835515, -2.359968, -1.756582, -1.616609, 2.451912, -1.037418, -0.519811, 0.333044, 1.110450, 0.725847, -2.335431, -0.912301, 0.304967, -2.190945, -0.511443, -0.334613, 1.204966, 0.165317, -1.656046, 0.755813, -0.594507, 0.623824, 1.212355, -0.852367, -1.451164, 0.557766, -0.184797, 0.524469, -0.788076, 0.158610, 0.473008, -0.703875, -1.824585, -0.955644, -0.482006, -0.244215, 0.268331, 0.883281, -0.112941, -2.095427, -0.683533, 0.059003, -0.399347, 0.006024, -0.900482, 0.378172, 0.125599, -0.637001, -0.056601, 0.046604, -1.389300, 0.816312, -1.187900, -0.388857, -1.456877, 0.365000, -0.437971, -1.506913, -0.720490, -0.626345, 0.025915, -0.827044, 0.561066, -0.641411, -0.005865, 0.958764, 0.582838, 0.720305, 0.711929, -1.257981, 0.755007, -1.731898, 1.240253, -0.644459, -1.490373, -1.524186, 0.063530, -2.491212, 1.069354, 0.375626, 0.466196, -0.737508, -0.642321, -0.965403, 0.181980, -0.012027, -0.947776, 2.623076, 0.902594, -2.090675, 0.066975, 0.684317, -0.092737, 0.433291, 0.151832, 0.306097, -0.439875, -0.807361, 2.468966, 0.910381, 1.491696, -0.354918, 0.663040, -0.519321, -0.639173, -1.514122, -0.080023, -0.674681, -0.513976, 0.491233, -0.019003, 0.380971, -0.949059, -0.325129, 0.395044, -0.551756, -0.531165, -0.194571, 1.537157, 0.051242, -1.280902, -0.015943, 0.643221, 0.579922, -1.336749, 0.112255, 0.247440, -0.087321, 0.568656, -0.795775, -2.210391, -1.045927, -0.018885, -0.503057, -0.792914, -0.078247, -1.250512, 1.242041, 1.075042, -0.321397, -0.307762, 0.565773, -0.505933, 0.825109, -0.239967, 0.039210, -1.164223, -1.883010, 2.009194, -0.177216, -0.572038, 0.181038, 0.955104, 1.457119, 1.829673, 0.958096, 0.467236, 1.799874, 0.387139, 1.599357, -0.938158, -0.379826, 0.992256, -1.682731, 0.445734, -0.014583, -0.065345, -1.549021, 0.857328, 0.288644, 0.613711, 0.704716, -0.860672, 0.845589, 0.698174, -0.811378, 0.652019, -0.311993, 0.977202, -0.322329, 0.994609, 1.411611, -2.117161, -1.039453, -0.920591, -0.364939, -0.918867, -0.360990, -1.502650, 0.063864, 0.308797, 0.174872, 1.420781, 1.441314, -0.427689, -0.453411, -0.026318, -0.470474, -0.306527, 0.415312, -2.049282, 0.112369, -2.217676, -0.605638, -0.797510, -1.266255, -1.149408, 0.565867, 0.294566, 0.398265, 0.205364, 0.573439, 0.655674, 0.224139, -1.184827, 1.444275, 0.742321, -0.205954, -0.508863, -0.416045, 2.000826, -1.183707, 1.119605, 0.636358, -0.284115, 0.835066, -0.671253, -0.492639, 1.653319, 0.361982, 0.261258, -0.765324, -0.704395, 1.489597, -0.409022, -0.684278, 1.296253, 0.262459, -0.594065, 0.892053, 0.113591, -0.186571, 1.419554, -1.146256, -2.032616, 1.269508, 0.417317, -0.368275, -1.037489, -0.577215, -0.468349, 0.295703, -0.806165, -1.034132, 0.055423, -0.565423, 0.256421, -0.310760, 0.160878, 0.669311, -0.276824, -0.278637, -1.085305, 1.311609, -0.214098, -0.774199, -0.952059, 1.702484, 0.254200, 1.105872, 0.164157, -0.548066, 1.451453, -0.267770, 0.924385, 0.202977, 0.663506, 1.385014, -0.830456, -0.163753, 0.023945, -0.970770, 1.295719, -0.908838, 0.153189, 2.110795, 0.030225, -1.121889, -1.222903, 0.905045, -1.277809, 1.038556, 0.249766, -0.403726, 0.539607, 1.684138, 1.831428, -0.976582, 0.087286, 1.290690, 0.492419, 0.369827, -0.124068, 1.040885, -1.491401, -0.150024, -1.300743, 0.655696, 1.271876, 1.837865, 0.477435, 1.515435, -0.783233, -0.079367, 1.605294, 0.970216, -0.595700, -0.830469, 0.157640, -0.442686, -0.176556, 1.183612, 0.767809, -0.992447, 0.227132, -0.580263, 0.558280, 0.785622, -0.351400, -0.722470, 0.239416, -1.377898, -0.399519, -2.971084, -0.523780, -0.843012, -0.511529, -0.732507, -0.208483, -0.682648, 0.488962, 0.392924, -0.490841, -0.770259, -0.916399, -0.044535, -0.348905, -2.096553, 0.312618, -0.069986, -0.031483, 0.567567, -1.575987, 0.072220, 0.509980, 0.680870, 0.394275, 0.687129, -0.155187, -0.126079, -1.355249, 0.386133, -0.252273, 0.343249, 0.486025, 0.289659, 0.845483, 1.056263, 1.247721, -0.023424, -1.230134, -0.358446, 0.201851, -0.730165, -0.326684, 0.864638, 0.705886, -0.443817, 0.673669, 0.155611, -1.365210, -1.179507, -1.099509, 1.135222, 0.315041, 1.890617, -0.793469, 0.640021, -1.046628, 2.068006, -0.242118, 0.350408, -1.485754, -1.386601, 1.522136, 1.177601, -0.592218, 0.230992, 1.630994, 0.777690, -0.354331, 0.189101, -0.649541, 0.507858, -0.273123, -0.182222, 1.928086, 0.702538, -0.033511, 0.429416, -0.243823, 0.205272, -0.179475, -0.182058, -0.926379, 0.124603, -1.114894, 0.330274, -0.523904, 0.137802, 1.168966, -0.571995, -1.514846, 0.209383, -0.621317, -0.213881, -0.664374, 1.449134, 1.103543, -0.289954, 0.906567, -0.111004, -1.436180, 1.670286, -0.372349, -1.003621, -1.277356, -0.137835, -0.488894, 0.084217, 0.626066, 0.565942, -0.303904, 0.659792, -0.780545, -0.124051, -0.571281, 1.183033, -1.458519, -1.106880, -0.473537, 1.644144, -1.017864, -1.598076, 1.190213, -0.836535, -1.568818, 0.788704, 0.927541, -0.752101, 0.313344, 0.281777, 0.636353, 1.549493, 0.280524, -0.264606, -0.610554, -1.919711, 0.653319, 1.424934, -0.785417, 1.224268, -1.180971, 0.165936, 0.487368, 1.153089, 0.517848, -1.275576, 0.726610, -1.368032, -0.237849, -1.126041, 0.173694, -0.490255, -0.432427, -0.624869, 0.133623, 0.312649, 0.185147, 1.707235, -1.720660, 0.609835, -0.307185, 0.204924, -0.701712, 1.179198, -0.783892, -0.523260, 0.046386, -1.268280, -1.503855, -0.650664, 1.492274, -0.145696, 0.415971, -0.241327, 0.466000, 1.157454, 0.128617, -1.629637, -0.637176, -0.664575, 0.364718, -2.124861, 1.196481, 1.774055, 0.431801, 1.150000, 0.361367, -0.085435, -1.240195, 1.132389, -0.378835, -1.600777, -0.462424, -0.336643, -1.316186, -0.326879, 0.076930, -0.547768, -0.604841, 0.077580, 0.066181, 0.227490, -1.619251, 1.118006, 1.595455, -0.125496, 1.191157, -1.634163, -0.075634, 2.262978, -0.312201, 0.515258, 0.059529, -0.595164, -1.324728, -1.227759, 0.136685, -0.417678, 1.203606, 1.439591, 2.726557, 1.459409, -0.739902, -0.317488, 0.967969, -0.362139, -0.659066, -0.695904, -0.686681, -2.677735, 0.777344, -1.215838, 0.780265, 0.556658, 0.494166, -1.660920, 1.788701, 0.522706, -2.010412, -0.590015, 1.350011, -0.693924, 0.975793, 0.428045, 0.305442, 1.107949, 0.438695, 1.007582, -1.087590, -0.046311, -2.461139, 1.658997, 0.161683, 1.753198, 0.412367, 0.545545, 1.314341, -2.367570, 0.031012, 0.660228, -0.236705, 0.021732, -0.669543, -0.594148, 0.791439, 0.076700, 2.471543, 0.138551, -1.947648, 0.959014, 2.217317, 0.270679, 0.313646, -0.479831, 0.162036, 1.416550, -0.540616, 0.345573, 1.087326, -0.274019, 0.261633, 1.301664, -0.922612, -1.272690, -2.031605, -0.894200, -0.816444, -0.671471, 0.555713, 0.716231, -1.667320, 0.375600, -1.005561, -1.016563, -0.206470, -0.204039, -0.530330, 0.278247, 0.152441, 0.632744, -0.877953, 1.200536, 1.551752, 0.609659, -1.628131, 0.050063, -0.728106, -1.397370, 1.346165, -0.684604, -0.447864, 0.772922, -0.998592, -0.058879, 0.142974, -0.137613, -2.175337, -0.113236, -1.786672, 0.895229, 0.560018, 1.781616, 0.172600, -0.875082, 0.699555, 0.790223, 0.351233, -1.690040, -0.995523, -0.980984, -0.099059, 1.840148, -0.617950, 0.226358, -0.388735, -0.199827, -0.321202, 0.568149, -1.226010, -0.780106, -0.809263, -1.057186, 0.286066, 0.912921, 1.170311, 0.294013, -0.430193, 0.471392, 0.093757, -1.789928, -0.690895, 2.009739, -0.440292, -0.591010, -0.752697, -1.950452, -1.905393, -0.016078, 0.197080, -1.915355, -0.416469, -0.995245, -0.788576, 0.645035, 0.560849, -0.753182, 1.994099, -0.453359, 0.954400, -1.021221, 0.359962, 0.574895, 0.378318, 0.035199, -0.097529, 1.596637, -0.248035, -0.520152, -0.016553, -0.048196, 1.020556, -0.086239, 0.387346, -0.935816, -1.278336, -0.076711, -0.745448, -0.327161, -0.881434, -0.218145, 1.767851, -1.983002, 0.028666, 0.343880, 2.552683, -0.219072, -0.098383, 0.990083, 0.680412, -1.582882, 1.289372, -0.805342, 1.432774, -0.316938, 1.768718, 0.044016, -0.737437, -0.660707, -0.188507, 1.201987, 0.941607, -0.345131, 1.336218, -1.189798, 1.262702, -0.401241, 1.290309, -1.823167, 1.585083, 0.838783, 0.774985, -1.042511, -2.090751, 0.124269, -0.795024, -0.797538, 0.931702, 0.329542, 1.208447, -0.228311, 1.111298, 0.810721, 1.645589, 0.250281, -0.065167, -0.745058, 0.202196, -1.090299, -0.384741, -1.819925, -1.375296, -0.100273, 0.740362, 1.074953, 1.535626, -0.319866, 0.463111, -0.870584, -1.058462, -0.681389, -0.740061, -2.142427, 0.528938, -0.781072, 0.002958, 1.170330, -1.476504, -0.206220, -2.350513, -0.752907, 0.953063, 0.112923, -1.140730, 0.846724, 2.043769, -2.252817, -0.419277, 0.604017, -0.336120, -0.034494, -0.548516, 1.441508, 1.305745, 0.602722, -0.092164, 0.584616, 0.048808, -0.273065, -0.275118, -0.965446, -0.760297, 0.412038, -0.827024, -0.898347, 0.406026, -0.989714, 2.746835, -0.216432, 0.831026, -0.007489, 0.968373, 1.007589, -1.638642, 0.871265, 0.876579, 0.449295, 1.561519, 0.625705, -2.217768, 0.386854, -1.517621, -0.547360, 1.097745, -0.657576, -0.595142, -1.737785, -1.320253, 1.135759, 0.851784, 0.417392, -0.438072, -1.083232, 0.358709, 0.355959, -0.169862, 1.822577, -1.977698, 0.937350, -0.380408, -1.800249, 2.085992, 0.641473, 0.133226, 1.167038, 1.099830, 0.680796, -1.563612, -1.261751, -0.710462, -0.329412, 2.099457, -2.715281, -0.834858, -0.762551, 0.383127, -0.280792, 0.822590, 0.228282, 0.383899, 0.634356, 0.249231, -0.888757, -0.533496, -1.086838, -1.790170, 0.806613, -1.106673, 1.808679, -0.420361, -0.288687, 0.471998, -0.538887, 0.698892, -2.139881, 0.671664, -1.375760, 0.662905, -0.293531, 1.370349, -0.114384, -0.886915, -1.549728, -0.347021, -0.104266, -0.268895, 1.002261, 0.684305, 0.204034, -0.467146, -0.475951, -1.880544, -2.424715, -0.641136, 0.450963, -1.094303, -1.325613, 2.193413, -0.889185, -1.324216, -0.108056, 0.925173, -1.317150, 0.560328, -0.294670, 1.143298, -0.710969, -0.850945, 0.667384, -0.540053, 1.411986, 0.413841, 0.524822, -0.422901, -0.054853, 1.599552, -0.569855, 0.414951, 0.030399, -1.218638, -0.238978, -0.524193, 0.861659, 0.005022, 0.673670, 0.484431, -0.174391, -0.629718, -1.380824, -0.597543, 0.282676, 0.452901, 0.476013, 0.117948, -2.397279, -0.136835, -1.860596, -2.529751, 0.582910, -0.868149, 1.069501, 2.023673, 0.414396, -0.423402, 3.365510, 0.682345, 2.005574, 0.586835, -0.568037, -2.197620, 0.713272, 0.157667, -1.136658, -0.923565, -0.857041, 0.027589, 0.946651, -1.166997, 0.141450, -1.764942, 0.616596, 0.203131, 0.892084, -0.411506, -1.488316, -1.520469, 0.589313, -0.289657, -0.695093, -0.967629, 0.240132, 0.580963, 0.492055, 1.604860, 0.708413, -0.896701, 0.609267, 0.324537, 0.875412, 1.689012, 1.316985, 0.200579, -1.525594, 0.979660, -2.835577, 0.492330, -0.059049, 0.998389, -1.816064, -1.491397, 1.616248, -1.500978, -0.246793, 0.128212, 0.979156, 0.338202, 2.115990, -0.929127, -0.001349, 1.908698, 1.466267, 0.336205, 0.633462, 0.319305, -1.143877, 0.871177, -0.322407, 0.946998, -0.151078, -0.004548, -0.565339, -0.756891, -1.881408, 0.379964, 0.905631, -0.059628, -0.718056, 1.111951, 0.822387, -0.864100, -1.088078, -1.815400, 1.055168, -0.649688, -0.520341, -1.995433, -1.554481, -0.435070, -0.034064, 1.131726, -0.579123, -1.347430, -1.141215, -0.124311, -0.086594, -0.281484, 0.476107, -1.748589, -1.068276, 1.647245, 0.069615, -0.078227, 1.208101, 1.241545, -0.111028, 0.345575, -0.682716, 0.432327, -0.096485, -0.401960, -0.610776, 1.025829, 0.959307, -1.235978, 1.031188, -1.574948, -0.227899, 0.584832, 0.760406, 2.469717, 0.256413, 1.655118, -0.180078, 2.644947, 0.652479, 0.981664, -1.701316, 0.163683, -0.139815, -2.065104, -0.207387, 0.480101, 0.835322, -1.683494, 0.612152, 0.981000, -0.326164, 1.324524, 1.090115, -0.761424, 0.210655, 0.072510, 0.363037, -0.048188, 0.261154, -0.355165, -0.379591, -0.408861, 0.069162, 1.571172, -1.384401, 1.039511, 0.113424, -0.766459, 1.245786, 0.531509, 0.887918, -0.974149, 0.066867, 1.294011, 1.488115, 1.599605, 0.477251, -1.103884, -0.393892, 1.252033, -0.151463, -0.504116, -0.202424, -1.702858, 1.006998, -0.249685, 2.179104, -0.154331, -2.121810, -0.891202, 0.515123, -0.564630, 1.267366, 1.372638, -0.376694, -0.448909, 1.245027, -0.475679, -0.172053, -1.242728, -0.869827, -1.112337, -0.743300, 0.174500, -0.662093, -0.482210, -0.019174, -0.613502, 0.451104, -1.466087, -1.546249, 0.481771, 0.901356, -0.586204, -0.160295, -0.139245, -1.274105, 0.254188, -1.718351, 0.891518, -0.537422, -1.102405, -0.069243, -0.461786, 0.956110, 1.053045, 1.169975, 0.460827, -0.627802, 1.079890, 0.688306, 0.621129, 0.540451, -1.079225, -0.359015, -0.101863, 0.766714, -0.731075, -1.282088, -0.469996, -0.526358, -1.218683, 0.319503, 0.650002, 0.248635, 0.156987, -0.036215, -1.264908, -0.349433, 2.733280, 0.605436, -2.182984, -0.535243, 0.137908, 1.634333, -0.032955, 0.070663, 1.881920, -0.015118, 0.094975, -0.840910, 0.338012, 0.370459, -0.851801, 0.954864, -0.324575, 0.957873, -0.385518, 1.634035, 1.096395, 1.313862, -0.982811, -1.718714, 0.327434, -1.758455, -0.099843, -0.542603, 0.931352, 0.615328, -0.209592, -0.138691, 0.952544, -0.803807, 1.022720, -0.995755, 0.469721, -0.639294, 0.423762, 0.983858, 0.334180, 0.099188, 0.194572, 0.117675, -0.307973, -0.052692, -0.887336, -0.048526, -1.203387, 1.136108, -1.284760, -0.711396, 1.423754, -1.286746, -1.063178, 0.293632, 0.071649, -0.948240, -0.666323, 0.295953, 0.005905, 0.948598, -1.290044, 0.045857, -0.198361, -0.376395, -0.672173, 0.285037, -0.058442, -0.813423, 1.315453, -0.747336, 0.123433, 0.318759, 0.868046, -1.456905, -0.366207, 1.892226, 1.258285, 1.083913, 1.103781, -0.450662, 0.373093, 1.912441, -0.323160, 1.196849, 1.032394, -0.489225, -0.611835, 0.646563, 1.305835, 0.314645, -0.895626, -0.259233, 0.101800, 1.312914, 1.129141, 0.343941, -0.692631, -0.685989, 0.044296, -0.424293, 0.498901, 1.196001, 0.213762, 0.515535, -0.523633, 0.063178, 1.522725, 0.532717, -1.690319, -1.239101, -2.257515, 1.777094, -0.909916, 1.293131, 0.264584, 2.153925, -2.007944, 0.552625, -0.763890, -0.562035, -0.953106, -1.863531, -1.204616, 0.091707, 1.100253, 1.077512, -1.864751, -0.048694, 0.440074, 0.365932, -0.187143, -1.357357, -1.749817, 0.693002, 2.213509, -0.562541, -0.956100, 0.296205, -0.342402, 0.016615, -0.714624, 1.392855, 0.398274, 1.376125, -1.112563, -2.039956, -0.501882, -0.628819, -0.274327, -0.069416, -1.093633, 0.774201, 0.095567, -0.170180, -0.667728, -1.652667, -1.280517, 1.217072, -1.523037, 0.237479, -0.681775, -0.670266, -0.385816, 1.015591, 1.445426, -0.430446, -0.278403, -1.610721, 0.380949, -0.643644, 0.282753, 0.424551, -0.410483, 0.455569, -0.464155, -1.521376, -1.357681, 1.755529, -0.450180, 0.578626, -0.360625, 1.117646, -0.320945, 1.237796, 0.596200, -1.057519, -1.374348, 1.234651, -0.738660, -0.596546, 0.169076, -0.254177, 0.094557, 0.611700, -1.091182, -0.767056, 0.812085, -1.293561, 0.433524, 1.517909, 0.311327, 0.255798, -0.159060, 0.021957, 0.033504, 0.721222, -1.024611, 1.300561, 0.522489, -1.989534, 0.350933, -0.475699, -1.926994, 0.794393, 1.638186, 0.131138, 1.596888, 0.351886, 0.811365, -2.126849, -1.773102, -0.385086, 0.288300, 0.422061, -0.127214, -1.815054, -1.704918, -0.628168, -1.850733, -0.279316, 0.623252, -0.632217, -0.434341, 0.589068, -0.051822, 0.658519, -0.747813, -0.879590, 3.326272, -0.961751, 0.730675, -1.017394, 1.260736, 0.300467, 0.560240, -1.309674, -0.420158, -0.369774, -2.090397, -0.565354, 0.046129, 0.849049, -0.460684, 0.091789, 0.205908, -1.132166, -1.973450, -1.186814, -1.622404, -1.758816, 1.202013, -0.377011, 2.403231, -1.590112, -1.032344, 0.972198, -0.654387, -0.351407, 2.172723, 0.626657, -0.219501, -0.203482, -0.720068, 0.695508, -0.680560, 0.350919, -0.009336, -0.602829, -0.523066, 0.687998, 0.761637, 0.007375, 0.551127, -0.640848, 0.760267, 0.996246, -0.988837, 0.118537, -1.512689, -0.967337, 1.052003, 0.335907, -1.059500, -0.181654, 0.338329, -0.803241, -0.196976, -1.121395, -0.975595, 0.374180, -0.605473, 1.275259, 0.432008, -0.588684, -0.929118, -0.009496, 1.351648, -0.300524, -0.351779, 0.103595, -0.490596, -1.535599, -0.437618, -0.531483, 1.320316, -0.746982, -1.977622, 0.274763, 0.659368, 0.265058, 0.393151, 0.948197, -1.527902, 1.070292, 0.531644, -0.025967, -2.585584, 0.109236, -0.349427, 0.714527, 0.081005, 1.599536, 0.364819, 0.504110, 0.134927, -0.042656, -1.741699, -0.427442, -0.570640, 0.570292, 1.048239, -0.738686, 0.886855, -0.218045, 0.644869, 0.126317, 0.176439, -0.186015, -0.142634, 1.140198, -2.284539, -1.304675, -0.825940, -0.591909, -0.024776, 0.638917, -1.677299, -0.661704, -0.230292, 0.168203, -0.132978, -1.292803, 0.600158, 0.141014, 1.583463, -0.652423, -0.430009, 1.442691, 0.811679, 1.069620, -0.649406, 0.064184, 0.138485, -0.521861, 0.966340, 0.315617, 0.746724, -0.507305, -0.424242, -0.379260, 1.918421, 0.404286, -0.063935, -1.416665, -0.802534, -2.562267, -0.019566, 0.646719, 0.482523, -1.075180, 0.549775, -0.805887, -0.448409, 0.810043, -0.201821, -1.662197, 0.781888, -1.562957, -0.251527, -0.135668, -2.216716, 0.572576, -2.239706, 0.507306, -1.782985, -1.791312, -0.365453, -0.201207, -1.364960, -1.356800, -1.161624, 0.901004, -0.053705, -1.299121, -0.758874, -0.464280, -1.956964, -1.210469, 0.290738, 0.357532, 0.098175, -0.914227, -0.410533, -0.063066, -1.431780, 1.307595, -0.255819, 0.920684, 0.839122, -1.104104, 1.509767, -0.205813, -0.154908, 0.767213, -0.094795, 1.296136, -0.443297, -1.138982, 0.501735, -0.852770, -0.812613, 1.194576, -2.665832, -0.799391, 1.358673, -2.086300, 0.499290, 0.748209, 1.179608, 0.699183, -0.616288, 0.183494, -0.904054, -0.491022, -0.143933, -1.115812, -0.189929, -1.065354, 0.046956, -0.822499, 0.701307, -1.420680, 0.181819, -1.173984, 0.105723, -0.447377, -1.163066, -1.672108, -0.566332, 0.326219, -0.011615, 0.604640, 0.181881, -0.291125, -0.262693, 0.532989, 0.243873, -2.278914, 0.378499, -2.177700, -0.050487, -0.423321, 2.964864, 1.611710, -2.748098, 0.055403, -1.072288, 1.405921, 0.622425, -0.810689, -0.105351, 1.467777, 0.238425, 0.699128, -0.790384, 0.429293, 1.989825, -0.325836, 0.475885, 0.963313, -1.548403, 0.989366, -0.977546, 1.001289, 1.094308, -0.061254, 0.716554, -0.259068, -1.026794, 1.200617, 2.348669, 0.884227, -1.173520, 1.361217, -0.132846, 0.886013, 0.755648, 1.097248, 0.904229, -1.964036, -0.677520, -1.076012, 0.531972, -0.285703, -0.220560, -1.324212, 0.676223, 0.889158, 0.211189, 0.201764, 0.195226, -1.678255, -0.592627, 0.944011, 0.102422, -1.166668, 0.691240, 0.816047, -0.466195, -0.215434, -1.532484, -0.525226, -0.541634, 0.331564, 1.496379, 0.007882, 0.267803, 0.116316, -1.200258, 1.241892, 1.654223, 0.501049, -1.001680, -0.232856, -0.534538, 0.816728, -0.733738, -0.379755, -0.028850, -0.293135, -1.180674, -1.255911, -0.362506, -0.343649, -1.515994, 2.508415, 0.628740, -0.091337, -0.210417, 1.485599, -2.606368, -0.152286, -0.355858, 0.616820, 0.214789, 1.067787, -1.462990, -0.220144, 0.323410, 0.554181, -0.247375, -0.619222, -0.097113, -1.130752, -1.059527, 0.354404, -0.867502, -0.574209, 1.064287, -0.701589, 1.160461, 0.079184, -0.769385, -1.034086, -0.402912, -1.754543, -0.496846, 0.996719, -0.437931, -0.465567, -0.087749, 0.803148, 1.478224, 0.069322, -1.048425, -0.156366, -0.911584, 0.189066, 0.382192, 1.911009, 0.425621, 0.850026, 0.846915, -1.179356, 0.727010, 0.827595, 0.410849, 1.371772, -0.606145, -0.080613, 1.102135, 0.026705, -1.231639, -0.953569, -0.448215, -0.915990, 0.762368, 0.827003, -0.029055, 0.762329, -0.579281, 0.249816, 1.436914, 0.228266, 0.483711, 0.918707, -0.732941, 0.974577, 1.192704, 1.304704, 1.280495, 0.454713, 1.910975, -0.420849, 1.500076, 1.232506, 0.397188, -1.325852, 0.177486, -0.520000, -0.754956, 0.958913, -0.681294, -0.229633, -0.346341, -1.254670, 2.325723, 0.929674, -2.462046, -1.923749, 0.181683, -0.518890, -0.296452, 0.824116, -0.189372, 0.500839, 0.203966, -0.498178, -0.859768, 0.249729, 0.139699, 0.399916, -0.036136, -0.679596, 0.636561, -0.736321, 1.960231, 0.282792, 0.173209, -1.663080, 0.966210, -0.275866, -0.434864, -0.298571, 0.274940, -1.463957, -0.428047, 0.327412, -1.420246, -1.283784, -0.072660, 1.565956, -0.782935, 0.218355, 0.324207, -0.289147, 1.158334, -1.163833, -0.824748, -0.999101, 1.269441, -0.267956, -1.118836, 0.709604, 0.309737, 1.385169, -0.189328, 0.299190, 0.224285, 1.104959, -1.813469, -1.524392, 0.350099, 1.329354, -0.484162, -2.297920, -0.826873, 0.801493, 1.033009, 0.405450, -0.230036, 0.116736, 0.131545, -0.186365, -0.042283, -0.932860, -0.690057, -0.741857, 1.065376, -0.759045, 0.068818, 0.353222, 1.617720, 1.114845, -0.608284, 1.118746, 0.724212, -1.559718, -0.173792, -0.313056, 0.074559, -0.603105, 1.789751, 0.595971, -0.819520, 0.281272, -0.476995, -1.010833, 0.229635, -1.849665, 0.864481, -0.216551, -0.034766, 2.420255, 0.349244, 2.043260, 0.427657, 0.932241, -2.422338, -0.805430, 0.021119, -0.426717, -1.000772, -0.633513, -1.831402, -0.333146, -1.220375, -0.191128, -1.276040, -0.770326, 1.576051, -0.271034, 1.414798, 0.832555, -0.266150, -1.477493, 0.857825, 1.804461, 4.130207, 0.239867, 1.543715, -0.496270, -0.017649, 1.490691, 0.328614, -0.138745, 0.413253, -0.522791, -0.744054, -0.205437, 0.620186, -0.344427, -2.035611, 0.849596, 0.948447, 1.025948, 0.996796, 0.196479, -0.790346, 0.804284, 0.280843, -0.703696, -0.082807, 1.527246, 2.337364, -0.767139, -1.486588, -0.585225, -0.496735, -0.196173, 1.656400, -0.755068, 0.721025, 0.505150, 0.093764, -0.214065, -0.644444, 0.762856, -0.267866, -1.162107, -0.433391, 0.006584, 0.469195, -0.530328, -2.336403, -1.424684, 0.452840, 0.921251, -0.048104, -1.530046, -0.008502, -0.678213, 0.596110, -0.804504, -0.099055, 0.260235, -0.252246, -1.425888, 1.595043, -1.171057, -0.530394, 0.700477, 1.433159, 0.647698, -0.310902, -1.127235, -1.803936, 0.973383, 1.165033, -0.934748, 0.489157, 0.463883, -0.172083, -0.405608, 0.316482, 0.767434, -0.668231, 0.076947, 0.958626, 0.608010, -0.731403, -0.576228, -0.387127, -0.179981, 0.193513, -1.338057, 0.193783, -0.792103, 1.634757, -0.785151, 0.602284, -0.028170, -1.098832, 0.350796, -0.936700, 1.519341, -1.453602, 0.800259, -1.211707, 1.356336, -0.219330, -0.023373, -1.704031, -1.104505, 0.226076, 0.040124, -0.948625, -2.774177, 0.617655, 0.447202, -0.987279, -0.634783, 0.103508, -1.135967, 0.517512, 0.291683, -2.054892, 2.244324, 1.370581, 1.970615, -0.939026, -1.674758, 0.257961, 0.225425, -1.919457, 0.476954, -1.071607, 0.611884, -1.612559, -1.132235, -1.026179, -0.533038, 1.272140, -0.257043, -1.253260, 0.245808, -1.014841, 0.279744, -1.814775, -1.127045, -1.419677, 0.376369, 0.591224, -0.458866, -0.716003, -0.964200, -0.383081, 0.179936, 1.216983, 0.958687, -0.994106, 0.778144, 0.251646, 1.697774, 1.387842, 0.813823, -2.525960, 0.370418, -0.205953, -0.084161, -0.832263, -0.541393, -0.574338, -1.120311, -0.872154, 0.035485, 0.053247, -0.053344, 1.038644, 0.712385, 0.794505, -0.030323, 1.516880, -0.390367, -0.199084, -0.394014, 2.235563, 0.092503, -0.302474, 0.115420, 0.120407, -0.425892, 2.012095, -0.292872, -0.326430, 1.081680, 0.102949, -1.784114, -0.973225, -0.387002, 0.820568, 0.045591, 1.530530, -0.565542, -1.143308, 0.021528, 0.156963, -0.732662, -0.751316, -0.089788, -0.635457, -0.040644, -1.117088, -1.937384, -1.243058, -0.114646, 1.289554, -1.441474, -0.484146, -0.798555, -0.457454, 1.190964, -0.641817, 0.564035, 0.106007, 0.094236, -0.753865, -1.042466, -0.989856, -0.295683, -0.706202, -1.169450, -0.460193, -1.657395, -0.841694, -0.995539, -0.358772, -1.664882, 0.570838, -0.396289, -1.731477, -1.115403, 0.620929, 0.061335, 0.399668, -0.068127, -1.585043, -0.701610, 1.284485, 0.952493, 1.419603, 0.247697, -0.100541, 0.713978, -0.006986, 0.702984, 0.159201, -1.497845, 0.154597, 0.162456, -0.939554, 1.490744, -0.332034, 0.977357, -1.559501, 0.866462, 0.694334, 0.087797, -1.824179, 1.325368, 0.730660, -1.234466, -0.703555, -0.656350, -0.652637, -0.902969, -2.319799, 0.871028, -1.552981, 0.833205, 0.895942, 0.251900, 1.552731, 0.354995, -0.553135, 0.710911, -0.582761, -0.638968, 0.066044, 1.636780, 1.402966, -0.262480, 0.059942, -0.771936, 0.458813, -0.581053, 1.514566, -0.373376, -0.635316, 1.723701, -0.319360, 0.079383, -0.695946, 0.552839, -1.008440, -0.413302, -0.011188, -0.671497, 0.217848, 1.610889, 0.494483, -0.155197, -1.746254, -0.218598, -0.824741, -1.004146, -0.259388, 0.950771, 0.998660, -0.069742, -0.789814, 1.255958, 1.008365, 0.720721, -1.145533, 0.297605, -1.335619, -1.139722, -0.754910, -1.285328, 1.704588, -2.935427, 0.558715, -0.207603, 0.019552, 1.065160, -0.670505, 0.118061, 1.883379, 0.194770, 0.455807, -0.454709, 0.875503, -0.072469, 0.336244, -0.134423, -0.324554, -0.140578, 0.657979, 1.918190, 0.633870, -0.296094, -0.039935, -1.658460, 1.233894, 0.438655, -0.562516, 0.589375, 1.154545, 0.953974, 0.406260, -0.346270, 2.092486, -0.226207, -0.323744, 1.271546, 0.326654, 0.620056, -0.088792, 0.687579, -0.610112, -2.305884, 1.035462, 0.957462, -1.229826, 1.101536, -1.357840, 1.136547, -0.033601, -0.560270, -0.718953, 0.175790, -1.112367, -0.348648, 0.767139, -0.647391, -1.114609, 1.195654, -0.250543, 1.967953, 1.025841, -0.476287, -0.211184, -0.899513, 0.831512, 0.330946, 0.703301, 0.475542, 0.206674, 1.011727, 0.720259, -0.710573, 0.453554, 0.596722, 0.921845, -0.487315, -0.605008, 0.772409, -0.191312, -0.690173, -1.238858, 0.438486, -1.187214, 0.537621, 1.885140, 0.403860, -0.171882, -0.238482, -0.383263, -0.632753, 0.339261, -1.671580, -0.111760, -2.289896, 1.533002, 0.618681, 0.996485, 0.614050, 1.264215, -0.790580, 1.127925, -0.038441, -0.200495, -0.322968, 0.642345, 0.931459, 1.031330, -0.087173, -1.137137, 2.167655, 0.053971, -2.000159, 0.250566, -1.785509, 1.340821, -1.530557, -0.324439, 0.588352, -1.982796, 0.707953, -1.464408, -0.056328, 1.742646, 0.175610, -0.190105, -1.070601, -0.511225, 0.131527, -1.180681, 1.042335, -0.776898, 0.895998, -0.313644, 2.331589, -1.112329, 1.270100, -0.366736, -0.434087, -0.810905, -0.026635, 0.497211, 0.684384, 1.741307, 0.616157, -1.282660, -0.120078, 0.987783, -0.168482, 0.723899, 1.038838, 0.100580, 0.029448, 0.144325, 0.073713, 1.574727, 1.177462, -0.051801, 0.865571, -0.324303, 2.109416, -0.107176, -0.376570, 0.686553, -0.262115, -0.150045, 0.978806, -0.265865, 1.750817, -0.519104, -0.418066, -0.484084, -0.821681, -2.023824, 0.641041, 1.435649, -1.512143, -1.894185, 0.067978, 0.559519, 1.192820, -0.225480, 2.114467, -0.097792, -0.461523, 1.083582, -0.597585, 1.228360, -0.321451, -0.659091, -1.595330, 0.058044, 0.350588, 0.021272, 0.487109, -1.692837, -0.806641, -0.212023, -0.066364, 0.739048, -0.062819, -0.733062, 0.803858, -0.623208, 0.404414, -0.731762, -1.420083, -0.025725, -0.398996, 1.446463, 0.863140, 0.314338, 0.133996, 2.370759, 1.478229, 0.425683, -0.752016, -0.879089, -0.643364, 0.110096, -0.991735, 1.316670, -1.112914, 0.563816, -0.654088, 0.473336, -0.009078, -1.340841, -1.323081, -0.686711, -0.235782, 0.225756, 0.293093, 0.127440, -0.069312, -0.511438, -0.119174, 0.278989, -0.257616, 1.174912, 1.910318, 1.846705, -0.485785, -0.110256, 0.174367, -0.134730, 0.725907, -1.468874, 1.246396, -1.046981, -0.594833, -1.276122, -2.771809, -0.721197, -0.482600, -1.567459, -0.481347, 0.674979, 1.274488, 2.423560, -0.267976, -0.793804, 0.001143, 0.736860, 0.107118, -1.235729, -0.577313, -0.734275, -0.347611, -1.187458, 0.919333, 0.560804, -1.156626, -1.012794, -1.061025, -0.532376, 0.083541, -0.132204, 0.129508, -1.381266, -0.240195, -1.444914, 1.165820, 1.439741, -1.324961, -0.654943, 0.655981, 0.243397, 1.198244, -0.486708, 0.560428, 0.137818, 0.823235, 1.164202, 0.077050, -1.022000, 0.558753, 1.074133, -0.575440, 3.846572, -0.861372, 0.878048, -0.443052, 1.340118, 0.546710, -0.702909, -0.145654, 0.811572, -0.272769, 1.172947, -0.046379, -0.627028, -1.117964, -0.399355, -1.573482, 0.089649, -1.009108, -0.747467, -1.852126, 1.218465, -1.799042, 0.420656, 1.315488, -0.044988, -0.329546, -0.729793, 0.165016, -1.077543, 0.190401, 0.498616, -1.555304, -1.564459, -0.649043, -0.621572, -0.901994, -0.437664, 1.572078, 1.090919, -0.347152, -0.097114, -0.008492, -0.088418, -1.314030, -0.852944, 0.515324, -0.138421, -2.133178, 0.257018, 1.494010, -0.666710, 1.053039, 1.119645, -0.233466, 0.926570, 0.628476, -0.732007, 2.396122, 0.764430, 0.452404, -0.781547, 1.157910, 1.192325, 0.069585, 0.440461, 1.527722, 0.724217, 0.015602, 1.229416, -0.284238, -0.283669, 0.043592, -0.231933, -0.428403, -0.755100, -0.398849, 1.700462, -1.345873, -0.182431, -1.399765, -0.186655, -0.409987, -0.649845, -0.045203, 0.429021, 0.262803, -0.399553, -0.871401, -1.168656, 0.738563, -0.049850, 0.892668, 0.132433, 0.610917, 0.137063, 0.433859, 0.514240, 0.695130, -0.335846, -0.581702, 1.686332, -0.009841, -1.626923, -0.814719, -0.487415, 0.580132, 0.447047, 0.999129, -2.298136, 3.174378, 1.590696, -0.602044, -0.655543, -0.064960, -1.081756, 0.217372, 0.213395, -1.828219, 0.915394, -0.687638, 1.220056, 0.645803, -0.522768, 0.291591, 1.527654, 1.557375, 0.140858, 1.160296, 0.570901, -0.350977, 0.075466, 1.235740, 0.417247, -3.039995, 0.729048, 0.148605, -0.266659, -0.124755, -0.319608, -0.222303, -0.540852, -1.181588, -0.313741, -0.477109, -0.314955, 0.297445, 1.841823, 0.674925, -0.054718, 0.447850, 0.370269, -0.639421, 0.665439, -1.082406, -0.446864, -0.012731}, - { 0.149201, 0.607848, 0.571009, -0.942545, 0.771453, -0.212226, 0.058464, 0.774646, -1.963408, -0.465182, 0.359998, 0.894922, -0.886981, -0.247132, -0.003471, -1.460085, -0.663854, 1.135019, -1.642478, 1.008311, 0.731790, 0.450006, 0.773482, -0.061462, 0.052153, 0.678651, 0.573115, -1.208215, 1.909858, 0.421693, 0.929735, 0.864259, -1.141738, 1.223686, -1.109217, 0.984746, -0.978247, -2.176719, 1.648515, -1.188535, 2.736112, 0.333844, 0.226158, 0.846350, 0.236238, -0.281712, -0.535999, 1.093299, -0.052205, 3.367359, -2.017437, 1.276153, -0.521063, -2.192487, -1.224024, -0.703188, -0.615570, -0.250131, 0.756666, -0.393562, 1.301098, 1.452987, -0.375948, 0.905563, 1.463920, 0.264936, -0.888188, -0.901797, 1.230940, -0.964646, 2.814580, 0.578438, 0.639298, -0.244537, -0.186156, 1.481897, -1.301719, 0.163302, 1.538474, -0.186097, 0.752612, -0.556733, 0.261054, 0.790453, 0.107251, -0.094122, 0.452418, -0.334284, 0.172710, -0.817803, 0.808597, -0.092870, -1.813319, -0.654746, -0.620809, -0.079379, 0.193466, 0.049231, 0.065597, 0.138429, -0.059022, 1.448003, 0.039527, -0.667836, 1.358580, 0.417994, -0.252500, -0.881600, 0.494864, 0.688595, 2.067117, -0.531967, 1.112465, 0.374695, 0.565772, -0.144289, 1.995160, 0.737967, 1.488846, 1.175379, -0.916523, 0.086072, -0.966446, -1.253574, -1.060612, 2.033441, -0.384185, -0.863025, 0.720623, -0.690059, 0.576666, 1.499698, 0.373314, 0.620510, 0.338523, -0.265990, 1.055906, 1.529830, -1.118868, -0.871804, -1.769321, 0.034801, 0.219992, -1.281552, -0.884433, 1.567363, -0.157295, -0.019330, -0.898638, -1.331085, -0.655498, -0.594928, -1.130312, 1.325868, 0.714797, -0.303128, 1.538395, -0.498912, 1.095302, 0.852048, -0.007978, 1.772600, -1.026688, 1.601207, 1.036925, -0.128326, -0.172162, 1.193384, 0.022913, 0.574300, 0.321012, -2.067840, -0.552600, 0.651050, 1.105677, 1.871612, 2.019039, -1.303980, 0.084590, 0.691413, -0.960544, 0.372917, -0.245415, -0.455332, 0.661441, 0.441852, -2.310091, 0.252972, 1.067785, 0.989216, 0.821433, -1.836955, -0.568899, -0.115600, 0.060218, -1.829445, 0.199915, 1.806750, -1.454021, -1.403841, -0.193774, -0.321435, -0.907775, -0.477136, -0.474733, 1.683291, -0.153215, -0.081198, 0.615531, 0.249131, -0.255322, -2.091997, 0.078301, 0.850972, 0.619311, -0.203184, 0.171706, 0.839984, -2.222275, 1.399564, -1.318785, -0.274813, 1.207025, 0.841960, 0.825615, -0.427766, 0.481194, 1.869943, 0.311663, 0.472879, 0.741636, 1.143243, 0.147972, -0.279252, 0.075799, -0.669681, 0.644069, -0.029855, -2.389512, -3.206553, 1.216014, -0.097270, -1.907906, 0.396996, 0.624075, -0.714592, 0.840651, 0.562035, -0.656425, -0.271064, -0.677881, -1.008011, -0.275070, -0.845542, 0.366825, -0.406152, -0.061023, -0.590583, -1.158842, 0.481301, 0.972210, -1.209690, -0.068309, -0.898814, -0.460966, 0.374733, 1.239942, -0.464876, -1.255529, 0.775415, -0.080818, 0.292881, -0.877401, -0.312969, -0.609988, -0.779694, -1.169048, 1.024208, -1.249409, 0.975934, -0.148221, 0.120674, -0.007175, -0.219167, 1.167609, -0.543154, 1.892106, -0.689056, 1.831157, -0.872480, 0.659092, -1.905825, 1.356023, 1.868800, -0.657159, 1.051402, 1.289349, 0.066189, -0.321068, 0.200492, -0.248553, -1.297939, -0.623279, -0.764325, 0.889382, 0.441994, 0.118719, -0.309078, 1.833939, 0.156771, 0.499061, -0.197711, -1.751932, -0.770309, -0.754101, -1.275840, 0.882715, -0.974121, 0.712038, -0.921530, 1.934155, 0.602529, -1.815789, -1.121674, -0.686113, -1.004526, -0.239342, 0.363483, 0.863386, -0.698767, -1.856703, 0.873302, 1.689974, 0.458752, 0.821154, -1.495647, 0.244811, -0.507818, 0.122410, -0.906406, 0.517280, 1.502776, -0.740901, 0.133321, 0.530318, -0.411730, -1.241181, 0.193992, 0.124217, 0.078860, -0.270026, -1.332654, 1.425538, -0.594217, -0.488097, 1.004978, 2.255169, 0.277357, 1.256154, 0.570166, 0.509349, 1.390481, -0.487943, -0.751929, 0.400332, -0.004789, 1.042529, 0.082396, -0.730154, 0.786876, -0.576375, -0.929996, -0.732195, -0.942859, 0.850259, 0.998232, 2.242853, 2.980645, 0.758255, 0.081561, -0.959155, 1.420790, 0.302579, 0.527391, -0.213157, 0.788526, -2.607101, 0.579846, -0.870390, 1.622177, 0.936404, 1.838332, -1.761127, -0.649259, 0.305144, -1.543134, -0.234822, -0.007515, -1.297053, 0.204279, 1.541178, -0.173477, -0.469038, 0.383388, -0.939410, -1.677596, 0.206556, -1.113159, -0.516805, 0.208911, -0.428605, -1.174720, -1.789550, 1.406195, 0.892721, -0.144223, -0.830940, 1.587967, -0.705649, 0.503895, -0.427511, -0.631396, 1.619334, -0.305129, 0.750430, 0.897113, 2.013000, 0.029861, 0.262749, -0.668467, -0.121179, -0.391992, 0.277025, -0.460582, -0.557721, 0.554165, -0.868609, 1.665734, 0.016450, -0.846482, 0.969759, -2.007837, -0.127694, -1.832206, 0.765123, 1.592913, -0.559585, 0.710764, -1.117246, 0.728141, -1.255409, -1.403969, 0.063065, 0.337141, -0.784380, 1.106666, 1.465880, -1.355253, 0.885339, 1.505471, -0.651014, -1.665309, 0.307230, 0.442420, 1.216134, 0.437539, -0.826053, 0.207671, -0.212459, 0.408485, 1.968118, 1.045585, -0.347560, -0.019622, -2.069206, 0.976641, 0.797163, -1.203767, 0.098658, -0.906575, -0.328720, -0.812596, -1.147026, 0.256450, -1.648167, 1.900817, -0.167441, 0.742017, 0.411506, 1.129699, -2.890979, -1.246854, -0.517934, -0.586635, -0.477197, -0.455523, -0.266780, 0.636626, 1.171635, -1.040942, 0.772996, 1.604347, 0.820293, -0.239571, -1.569811, 0.554919, 1.256917, -0.029403, -0.461808, -1.464663, 0.707973, -0.988706, -0.271798, 0.656110, 0.221315, -0.511569, 0.049245, -2.632035, 2.090562, -0.666088, 0.436966, -0.550321, -0.792834, 0.018997, -0.346333, -0.702599, -1.068031, 1.088632, 1.970409, -0.037554, -0.800670, -0.757214, -0.797822, -2.528800, -0.970495, 0.060879, 0.111033, -0.334404, 1.172868, 0.288381, 0.822279, 1.194054, 0.168564, -1.689323, -2.573836, 1.303644, 0.126792, 1.538782, -0.563871, -0.359045, -0.768851, 0.731580, -0.550312, -1.098872, -0.073123, 0.429948, -1.089006, -0.014579, -0.641638, 1.249358, 0.923591, 0.325363, 0.048936, -0.140937, 0.940481, -2.177061, 0.413712, -0.113942, -0.109343, 0.929529, 1.354857, -0.264771, 0.225420, 0.386258, -0.146628, 1.099721, -1.330830, -0.293051, 0.862432, -0.167110, 0.524110, -0.116484, 0.386106, 1.191900, -0.347398, 1.892673, 1.150784, -0.715381, -1.152122, -0.104430, -0.092699, 0.539072, -0.281348, -0.860378, -0.791183, -0.367574, -0.169019, 0.731042, -0.348181, -1.302638, 0.772865, -0.343593, 0.384028, -0.632844, -1.505481, 0.117213, 0.743553, -0.267846, 0.015909, -0.422074, 1.379979, -0.159648, -0.486311, -1.567048, 0.800332, 1.029405, 0.047318, 1.640302, 0.871179, 0.373822, -1.415608, -1.521852, -1.163931, 0.756666, -0.241035, 0.948581, -1.587851, -0.780195, -1.124518, 1.415949, -0.498076, 0.840156, -0.351807, -0.823556, 0.087739, 1.069030, -0.615327, -1.719704, -0.450357, 1.284308, -0.236312, 1.133519, -0.318956, 1.154290, -1.389853, -1.205672, -0.012555, -1.205553, -0.637079, -1.156984, -0.197456, 0.141278, 0.367560, -1.127421, 1.330321, 1.129526, 0.261183, -0.462119, -0.888573, -1.259332, -1.395158, 0.535289, 0.713098, 0.761988, -0.167740, -0.544483, -0.837973, -1.138644, -0.175192, -0.712883, -0.406908, -2.441294, -0.661088, 0.094047, 1.590959, -1.042496, -1.725298, 0.848982, 1.612410, -0.227921, -0.080204, 1.175641, -0.679755, 0.638943, -1.603580, 1.430700, -0.891440, 0.439303, -1.065962, 1.672859, -0.007660, -1.387395, 1.641540, -0.295314, -0.819496, 1.323874, -0.053013, -0.056089, 0.775836, 0.987990, 1.530613, -0.564851, -0.030366, -1.585126, -0.028851, -0.188450, -0.480429, 1.039645, -0.776626, 0.144817, 2.396612, -0.528075, -1.227692, 0.299480, 0.093125, 0.629944, -2.456309, -0.453557, -0.475528, -1.229707, 1.229101, -1.008786, -0.880102, -1.077733, 1.803171, 0.212662, -0.848684, 0.167281, -1.137621, 0.439724, 0.631176, -0.598245, -1.577634, -0.596036, -0.365109, -0.295102, 1.920111, -0.359934, 0.276507, 0.961542, 0.257167, 0.167061, 0.858438, -0.322175, -2.071193, -0.980438, 0.987964, -0.052062, 0.604191, 0.855799, -0.494034, 1.588121, -0.032285, -1.015721, -1.651904, 0.078028, 0.915060, 0.828652, -1.146578, 0.070168, 1.461110, -0.151155, -1.137509, -0.761922, -0.950942, 1.997504, -0.361643, 0.491155, -0.040032, 1.260619, -0.251878, -0.290040, 0.382053, 0.083459, -1.050812, -2.145545, 0.279021, -0.067025, -0.161817, -1.446462, -1.217072, 1.204879, -0.592065, -1.081154, -0.850625, -1.173197, -0.062487, 2.118081, 0.506652, -0.449009, 1.751553, -0.321272, 1.507819, -0.314958, 0.134979, 1.384565, -2.955125, -0.283867, 0.078814, -0.211898, -0.226967, 0.573109, 0.200208, 1.605955, 0.248580, 0.757331, -0.255479, 1.307199, 1.010151, -0.326622, 0.792750, 0.051186, -0.376606, -0.317637, 0.447989, -0.723224, 0.554832, 0.640609, -0.056975, 1.801513, 0.414428, 1.088714, -0.283683, -1.499129, 1.398144, -0.296018, 0.610458, 0.884158, -0.836216, -1.489107, 0.431303, -0.359063, -0.007515, -1.010872, -0.453721, -0.374391, 0.994950, -1.359902, -0.786621, 0.318597, -0.386631, 0.185353, -0.350736, 0.185003, -0.637703, -0.480557, -0.409032, -1.106753, 0.483084, -1.171951, -0.105414, -0.555543, -1.197392, 0.651101, 0.045685, 1.834311, 1.104711, 0.999883, -1.422899, 0.270038, 0.174272, 0.312557, 0.598122, 0.427074, -0.036128, -1.154482, -0.866233, 1.695838, -0.316850, 0.158765, 0.187985, -1.011472, -1.478120, 0.137634, -0.338142, 1.644206, 0.902956, 0.521377, -0.511349, -0.945625, 0.121090, 0.620034, -1.820078, -0.105173, -0.675237, 0.864920, 1.067501, -1.228684, -0.755016, -0.628408, 0.375815, -0.697170, 0.220100, 0.399190, -0.211824, 0.130923, 0.044351, -0.282484, 0.952266, 0.611868, -0.007632, 1.163557, 1.955808, 0.758852, -0.990990, 1.202379, -0.529358, 1.166041, -1.224939, -0.558407, 0.464950, -0.245553, 0.981848, -2.755735, 1.109626, -1.092044, -0.535157, -1.187582, 0.437637, 0.340411, 0.207799, 1.382684, -0.099487, -0.924974, -0.604575, -0.280310, -1.924818, 1.730679, -0.099489, 0.927105, -0.524098, -0.702229, -0.150720, 0.543267, -1.093150, 0.711867, 1.621031, -0.368971, -0.494024, 1.224635, -0.462169, -1.248082, -0.022194, 2.379237, 1.748775, -1.734834, 0.320724, -0.048801, -0.890791, 0.093482, -0.845531, -0.502929, 1.363672, 0.521064, 1.767126, 0.911220, -1.470797, -0.681921, 1.018354, -1.042110, -0.281185, -1.131075, -0.927553, 1.241408, -0.544769, 0.829601, 1.602589, 0.646913, 0.034951, -1.645524, -1.019176, -1.466121, -0.248557, -0.117175, -2.106003, 1.169941, 1.660831, -0.747520, -1.270801, -0.124126, -0.095915, -0.607709, -0.780736, -2.290315, 0.974936, 0.537196, -0.670478, -0.211151, 0.309119, 0.959258, 0.174146, -0.517605, -0.834903, 0.372601, 1.456180, -1.258510, 0.151260, 1.379354, -0.231260, -1.185922, -0.346028, -0.621739, -0.584649, 0.847721, -0.388086, -0.218502, 1.172472, -1.234970, -0.317102, 0.286069, -0.152869, -1.730038, 0.938823, -0.452470, -0.150653, -0.751000, -0.861125, -1.673548, 0.015942, -1.769763, 0.342681, -1.033299, -0.884228, -0.241775, -0.852191, -0.986658, -1.880001, 1.335850, -1.067870, -0.275532, 1.219326, -1.242037, -0.846159, -0.168420, 0.196826, -0.529145, 0.365818, 0.227110, 0.408198, -0.494421, -0.831610, -0.471365, 0.774180, -0.226798, 0.570199, 0.529078, -0.542267, 1.450386, 0.592933, -0.379372, -1.425411, 0.144318, 0.179941, 1.041530, -0.774547, 0.463808, 0.673805, -0.004938, -0.122694, 0.497543, 2.568955, -0.083913, -0.155812, -0.217187, -0.810842, -1.603720, -1.248545, -0.645904, 0.075846, -1.061958, 0.088274, -0.765172, -0.405291, 0.790168, 0.475921, -0.337083, -1.641051, 0.119987, -0.530493, -0.614599, 1.330474, -0.674055, -0.839359, 0.851403, -0.684143, 0.260262, -0.606028, -0.211830, 0.954393, -0.559420, 2.421412, 0.692107, 0.797535, -0.995547, -1.262061, 0.111319, -0.203991, -0.062493, -0.994530, 0.492733, 1.917762, 1.462497, -0.478587, 0.299400, 0.414351, 0.750356, -1.117146, -0.048830, -0.498265, 1.264890, -0.574407, -0.262815, 0.242167, -0.459163, -1.072892, -1.047095, 1.023642, -1.051941, -0.132526, -0.597137, 0.958617, -0.491855, -0.688306, 0.612433, 0.573038, -0.862718, 1.242017, -0.903679, -0.746634, -2.584370, 0.613286, 0.084027, -0.585794, 0.810032, -0.340284, 0.116032, -0.085611, -1.260334, -0.048354, -0.240084, -0.666387, 0.847188, 3.106357, 0.113349, 0.328906, -1.138530, 1.591675, 1.320039, 0.934805, -2.541944, -1.011793, -0.969712, -2.413254, -0.123661, 0.177802, -0.636519, -0.382558, 0.199456, 0.749215, -3.064507, 0.347773, -0.327088, -0.247124, 0.965566, -0.607548, 1.062786, 0.122809, -0.199329, 0.556261, 1.823568, 1.468847, 0.397709, -0.784720, -0.575994, 0.586440, 1.047005, -0.123366, -0.363057, -2.624258, -0.767382, -1.728837, -1.500550, 0.083723, 0.492181, -1.649778, 0.235831, -0.300202, -0.049904, -0.127694, -0.253886, 1.372372, 0.519919, 0.134778, 0.077695, -1.845336, 0.799809, -0.102759, 0.820715, 1.719161, 0.958062, -1.652676, -1.991410, -1.017608, -1.036588, 1.057431, -0.602496, -0.277506, -1.259548, 1.066618, -0.711275, -0.425878, -2.139620, 0.822112, 0.163018, -0.511526, 0.325567, 1.446156, 0.389453, 1.072211, 0.221189, -0.123412, 0.164455, -1.445186, -1.096777, 0.413386, -0.445980, 1.196981, 1.041197, 0.334185, -1.063610, -0.149294, 0.064874, 1.285635, 0.285338, -0.631886, -0.597928, 1.613712, -1.026082, 2.722634, 0.227651, -1.630924, -0.771793, -0.176722, 0.457608, -0.337623, 0.508725, -1.155671, 1.195770, 0.728704, -1.860535, -0.356027, 0.626465, 0.721880, 0.073398, -0.818486, -0.390084, 0.207500, 1.366954, -0.748259, 1.525421, -1.260207, 0.875698, 0.500301, -0.731830, -0.820801, -0.410863, 0.421485, 0.898028, 1.548518, 2.117296, -1.593225, -0.723634, 0.306897, 1.033075, -0.021910, -1.038486, 0.666074, 0.591077, -0.865629, -1.137821, -1.350243, 2.461920, 0.068409, -1.146083, -0.458541, -0.070093, 1.263338, -0.706218, -0.957105, -3.294787, -2.299563, 0.131921, -0.154168, 1.196194, 0.584646, 1.283428, 0.103624, 0.774664, -0.654099, -0.202629, -0.357849, 0.730825, 2.051115, 1.437440, -0.310151, 1.856034, 1.297169, -0.392272, 0.338569, 0.639314, -0.343742, -0.318258, 1.642427, 0.901359, -0.267214, 1.213424, 1.844536, 1.260031, 0.911591, -1.231594, -1.330641, -0.131112, 1.345875, 0.442911, 2.489695, -0.174064, -0.922050, 1.498562, 0.095677, -0.388545, -0.728232, 0.967035, -1.047480, 0.117068, -0.055944, 0.517253, 1.520160, 0.765177, -0.168312, -1.970597, -0.042346, 0.897118, 1.020232, 0.057082, -0.373285, -2.071722, 0.068116, -0.825410, 0.292560, -0.193112, 1.234488, 0.267386, 0.330797, -0.183826, -1.654482, -0.266647, -1.299870, 0.953848, 0.483609, -0.083428, 2.536303, 0.250108, 2.370729, -0.547940, -0.609660, -0.058822, 1.443196, 0.685863, -0.432354, 0.961740, 1.264327, 1.196046, 1.057996, -1.309299, -0.305432, 2.316704, 0.672968, -0.776782, -1.221628, -0.050847, 1.243562, -0.392993, -1.600202, 1.322430, 0.925353, -0.829251, -0.985898, 0.016973, 1.116976, 0.618889, 1.421038, 0.433715, 0.439900, 0.233164, 0.188565, 0.488959, -0.732365, -0.749850, 0.524333, -0.565628, -0.575503, 1.169017, 1.283895, -1.652527, -1.043620, -0.716208, 0.385822, 1.072892, 1.396946, 1.140387, 1.969026, 0.398739, 1.797070, -0.692053, -0.423477, -0.027239, -1.167946, 0.738102, 1.550322, -1.279032, -0.520762, 0.117092, 0.450279, 0.781322, 0.445715, -0.840788, -1.668623, 0.546266, 0.101741, -0.836997, 2.093446, -0.390265, -0.493358, -0.858428, 0.870861, -0.541845, 1.318626, -0.229913, -2.302627, -0.107648, -1.349221, -0.064091, 0.505872, -0.518531, -0.872966, 2.338731, -0.515348, 0.296947, 1.061729, 0.440155, 1.055311, -1.477064, 0.428967, 1.933912, 1.163326, 1.555506, -1.086426, -0.730437, 0.107253, -0.684363, 0.720184, -0.309668, -1.337294, -1.773575, -0.563587, -0.222956, 0.889119, 0.067291, -0.902921, -0.657469, 0.587936, -0.159503, -1.372482, 0.307291, -0.044918, -0.532010, 0.334640, -1.165935, 0.174595, 0.808977, 0.214787, -0.413598, 0.206775, 2.155323, 0.971580, -1.243864, -0.190765, -0.917861, -0.998484, -1.769660, -0.333549, 0.696826, -2.299335, -0.519640, -0.899774, -0.925672, -0.576504, 0.440411, -1.345894, -0.203047, 0.036914, 1.642719, -0.778267, 0.253421, -1.691178, -1.274574, -1.298600, 1.419747, 1.787647, 0.115205, 1.721722, 1.435250, 0.836909, 0.818980, -1.156009, 0.525674, 0.713775, 0.218713, 0.061268, 0.549883, 1.018396, 0.032054, -1.040015, -1.298242, 1.291810, -0.829988, 1.453031, -0.081897, -0.488900, 0.482968, -1.202772, 0.690761, 0.357578, 0.717751, 0.312866, 0.377382, 0.911278, -0.017509, -0.917956, 0.146617, 0.591575, -1.079441, 1.351288, 0.416063, 1.266100, 0.486867, -1.351142, -0.543511, 0.201936, -0.115333, 0.246885, 0.812562, -2.725627, -0.903915, 0.056077, -0.688293, 0.955303, -0.042529, -0.435986, 0.995610, -0.537746, -0.646035, 1.985819, -1.440160, -1.212804, -0.303726, 0.184776, -0.204591, -1.577412, 1.409813, 0.931170, 1.869951, 0.642564, 0.473252, 0.045894, 0.327160, -1.022547, -0.226534, -0.046579, 1.541723, 0.559081, 0.198642, 2.653671, -0.470270, -0.056498, -1.815817, -0.695746, -0.390758, -1.059136, -0.287565, 0.500386, -0.453675, -0.214689, -1.314294, 2.124161, -0.481870, -1.221630, 1.518887, 0.310977, -0.166154, -0.538045, 0.320023, -0.373452, 0.684540, -0.541411, 1.175937, -1.548541, -0.815471, -0.419730, -1.818922, -0.812239, 0.651535, 0.246888, 0.909491, 0.757587, -0.878225, 0.720263, 0.788756, 1.894143, -0.183486, -1.147772, -0.321078, -1.568437, -0.575769, 0.314336, 0.064963, -0.920860, 0.739571, -0.799163, -0.020605, 1.069005, 0.221032, 0.033306, 0.722869, 0.217193, -1.125440, -0.286937, 2.593075, -0.324396, -0.021025, -0.147873, -0.108357, -1.017214, 0.167601, -0.100800, -0.641358, -0.148384, 1.146581, -0.172189, -0.079754, -0.337982, 0.264845, -0.667049, 1.522982, 0.068352, -1.421352, 0.553754, -1.029660, -1.389621, -0.650323, 0.608450, 0.765460, -0.480427, 1.719323, 1.530837, 1.352147, -0.539452, -0.728205, -0.289440, 1.238384, -1.859709, -0.164917, 0.611183, 0.333272, 0.043235, 0.107394, -1.506761, 0.630302, 0.670784, -1.485462, -0.885507, -0.857629, -0.544483, 1.226999, -1.398027, 1.976142, 1.945029, -0.717879, 1.083131, 0.601411, 0.616302, -0.555335, -0.555318, 0.711178, -0.244854, 1.047159, 0.193479, -0.468753, -0.082854, 1.945026, 0.908903, 1.613671, 1.244805, 0.285969, 0.699130, -1.232457, 0.407800, 0.720733, 0.778562, -0.603465, 1.162670, -0.255111, -0.017728, -1.314711, 0.217689, 1.497094, 0.818944, -0.234143, 0.072500, -0.410634, -2.607684, 0.921220, -0.037439, 0.246088, -0.605548, 0.439275, -0.795736, 0.797346, -0.716717, 0.339123, -2.019090, -0.182187, -1.335673, 0.259978, 1.653428, 0.675601, -0.922123, -0.166392, 1.249810, -0.997363, 2.208431, -1.242374, -0.534548, -0.993581, 0.500817, -0.392681, 1.652644, -0.069704, 0.640649, 0.537264, -0.967187, 0.549753, 0.989922, -0.522108, -0.756870, -1.516896, -1.469859, 2.094418, 1.084111, -0.184690, 0.714410, 1.446437, -0.759202, 0.921436, 0.136870, 0.481108, 2.348843, -0.335309, -1.350474, 0.717339, 0.702010, 0.224093, -1.692914, -2.196663, -0.451444, -0.871143, 1.985705, -1.197093, 2.628658, -0.855127, 0.078917, 0.712711, 2.063890, 0.345424, -1.713913, 0.053198, 0.097076, 0.084486, 1.085831, -2.942844, 0.908334, 0.160938, 1.023398, 0.366058, -0.060187, -0.575407, 0.639791, -0.088645, 1.604726, 2.927742, -1.082644, -0.270145, -1.335198, 0.338717, -1.821043, 0.964323, -1.625552, 0.780702, 0.477826, -0.800376, 0.523111, 0.369025, 1.245785, -0.381496, 0.148221, 0.274938, 0.518518, 0.358801, 0.433234, -0.654964, -2.137191, 2.364537, 0.213943, 0.424608, -0.333920, 0.064086, 1.331688, 1.487929, 0.564217, -1.056354, 1.114637, -1.033250, 0.834008, 0.077213, 0.735597, -0.385114, 1.233065, -0.404703, 0.975694, 1.953189, 0.710061, 0.874974, -0.873350, 0.734087, 0.015294, -0.428246, -0.221910, 2.749456, -1.303687, 0.254639, -0.320381, 1.185232, -2.557705, -0.854437, 0.095059, -0.247995, 1.111029, 0.682240, -0.507852, -0.019989, -0.192194, 0.475778, 0.839589, -0.051492, -1.493541, -0.504765, -1.407140, -0.463491, 1.611016, 0.777079, 0.756655, 2.298157, 1.279991, 0.054396, -0.929516, 0.280770, 0.063491, 2.124701, 1.032480, 0.242202, -0.784070, -0.164317, -0.752295, -0.311986, 0.357116, 0.646169, 1.211834, -1.153229, 1.638067, -0.909612, 0.040453, -0.760889, -0.728214, 0.624168, 0.233724, -1.486220, -0.936797, 1.810260, 0.095250, 0.642192, -1.078182, 1.228718, -2.251075, -0.787528, 0.674758, -0.452898, -1.450645, 0.075598, 2.195413, 0.120605, 1.675799, 1.028607, 1.133095, -0.687797, -1.330897, 1.906713, -0.421618, 2.282566, 1.650577, -1.571260, -0.022753, -0.813847, -0.700581, -0.612438, -1.962804, 1.206240, -0.317857, 1.085146, 1.409747, -0.796394, 0.233119, -1.212614, -0.019540, -0.104782, 0.065606, 0.568877, -0.370864, 1.514297, 0.911852, 0.852035, 1.382020, 1.206218, 0.388230, -0.109975, -1.643510, 0.219096, -1.823825, 0.708963, -1.286280, -0.108092, 1.715523, -1.250175, 1.374728, 0.435218, 1.874771, -1.587252, -0.573409, 1.062077, 0.200179, 0.160916, -0.054276, -0.441074, 0.668816, 0.635072, 0.706346, -0.515625, 0.969951, -1.836677, 0.664553, 0.161248, -0.504426, 0.418334, -0.766124, -1.631492, 0.060867, -1.556152, 0.110655, 0.237738, -0.076750, -1.897029, 1.301633, 0.103754, -0.023509, -2.091118, 1.593171, -0.798912, -0.241198, 1.177807, 0.847342, 0.754564, -0.702858, -0.953498, -1.067529, 0.480264, -2.544836, -1.025979, 0.261932, -0.990739, -0.352954, -1.576018, -0.674583, 0.573619, -0.348575, 1.430100, -1.359205, 1.160196, -0.475650, -1.418547, -0.724067, 0.052394, 0.241321, 0.189390, -0.458566, 1.715675, -0.259126, -0.560336, -0.336420, 0.307523, 2.103936, -1.086089, -0.941402, 1.360882, -0.078568, 1.069642, 0.406190, 1.228448, 2.080045, 1.710971, 0.703004, -0.022652, -2.304456, -0.728997, -1.795338, -0.498077, 0.540722, 0.187551, 0.529428, -1.151801, -0.310114, 0.153387, -1.404219, -1.813480, 0.794346, 0.352173, 1.338165, 0.850162, -0.225038, -0.167416, -0.404632, 0.270419, -0.687981, 0.535449, -0.101477, -0.165800, 1.069551, 0.437195, -1.463546, 0.317318, -0.042081, -1.874462, -0.234735, -0.158075, 0.468044, -1.225636, 0.021927, -0.692164, -1.240567, -0.238586, -0.321754, 0.058038, 1.749179, 0.780722, 0.899346, -0.362388, 0.512818, -0.347653, -0.122173, 0.486668, 0.254972, 1.060605, -3.330893, -0.848603, 0.169145, -1.903979, 1.658314, -0.142390, 0.109099, 1.521919, -1.099334, 0.510142, 2.015790, -0.887881, -3.088587, -0.731992, -0.640893, 0.273448, -0.649989, 1.281792, -0.469102, -0.908237, -0.281290, 0.418677, -0.350093, 0.175188, -1.346333, -0.135523, -1.242874, -1.599269, 0.946620, 0.933084, -0.986967, -1.475112, 0.337279, -0.759522, 0.773863, 0.360864, 0.375795, 0.342019, -2.193547, -0.591675, 1.099452, 0.050526, 0.596584, -1.589102, -1.447948, 0.294333, 0.198311, -0.207655, 1.063678, 0.712125, -0.250338, -0.830990, 1.454679, -0.078153, -0.182746, 0.729893, -0.756329, -0.727408, 0.030368, -0.518128, -0.737160, 2.216797, 1.075264, 0.689296, 0.195180, -0.688191, 1.085504, 0.484290, -0.135030, 1.927774, -1.130193, -0.083181, -0.914206, -0.051457, 1.147075, -0.114333, -1.065647, 0.612540, -1.855985, 0.077113, -1.758529, -0.575775, -0.198210, -0.136353, 0.983723, 1.167087, -1.282908, 0.394032, 0.441478, 0.706853, -0.153504, 0.570595, 0.700878, 1.926696, 0.689210, -0.759217, 1.123449, -1.755343, 0.433145, 0.322592, 2.163970, 1.764772, -0.221501, -0.077027, -0.344597, -1.229059, 0.675558, 1.354935, -0.357937, -0.018455, 0.539297, -0.094365, -0.670102, 0.208960, -0.470608, 2.131201, -0.409162, 1.196678, -0.916581, -0.993127, -0.507149, 0.831271, -0.217001, -0.361255, -0.133153, -0.879703, 1.018339, -0.127916, 1.704769, -1.338772, -0.445393, 0.153549, -1.881477, 0.600847, 1.509023, -0.249080, 0.160151, -1.344914, 1.182460, 1.177651, -1.666785, -0.151305, -0.815749, -0.844017, -1.054972, -0.797645, -0.878460, 1.161515, 0.988742, 1.637632, -0.205189, 1.118304, -0.170133, -0.295434, 1.443829, -0.514089, -0.433477, 0.170094, 0.321378, 1.147670, 0.260662, 1.086005, -0.196800, -0.434707, -0.758094, 0.926730, -0.015249, 0.179387, 0.107703, -0.965584, 0.358516, 0.804347, -0.299195, -0.882999, -0.861585, 0.561087, 0.702533, -1.874868, -1.656486, 0.951960, -0.738889, -0.552069, -1.125096, -1.702933, -0.259888, -0.557553, 0.126570, -0.200831, -0.343166, -0.423782, 0.465506, -1.730303, -1.379234, 0.274824, -0.120863, 0.141093, 0.468650, 1.307742, 0.496847, -0.963365, 0.147135, -0.726274, -1.249636, -1.665222, -2.323496, 1.251643, -0.394400, 0.126252, -0.527650, 0.060189, 2.206653, 1.133147, 1.196164, 1.536704, 0.284010, -2.522779, -1.372270, -0.116722, -0.942591, -0.881784, 0.298016, 0.166188, 0.008092, 0.768952, -1.035638, -0.553823, -0.689117, 0.522422, 0.838712, 1.828365, -0.250781, 0.059916, -1.611368, -0.192312, 0.914720, -1.490616, 0.515060, 0.686156, -0.624570, -0.493592, -1.710923, 1.098963, 0.945378, -0.248058, 3.227589, 1.793707, -0.370564, -1.237949, -1.176003, 1.107723, -1.281360, -0.949722, -1.525117, 0.445103, 0.464639, 0.721906, -0.524428, 0.153295, -0.967464, -0.300795, 1.672709, -0.343525, -0.664938, -1.266006, 0.948389, -0.019081, -0.536341, 0.628003, -0.111193, -0.378715, -0.315987, 0.315329, -1.416956, 0.937942, -1.096324, 0.264338, -1.493933, 2.323896, -0.438985, -0.441054, -1.118096, -1.283621, 1.418447, 1.701715, 1.145482, -2.225544, 1.807544, 0.456759, 0.287953, -0.886350, -2.127660, 0.521931, -1.014119, -0.665152, -0.955395, 0.332580, 1.345558, -0.150654, -1.806973, -0.382947, -0.383030, -0.547349, 0.740724, 0.195575, -0.758256, -0.194345, 2.613254, -1.474896, -1.161848, 2.464419, 0.164068, -0.518511, 0.430016, -0.889948, 0.528219, 0.833695, -1.688696, -2.375681, 0.918920, -0.916112, -0.615052, 0.280241, -0.362451, 1.744795, -1.067756, -0.897074, -0.602246, -0.041602, -0.230906, -0.984118, 0.215107, 1.356938, 0.641882, 0.827869, 1.879166, -0.009978, -0.706269, 2.123842, -0.610725, 1.391842, -0.114912, 0.436658, 0.419251, -1.192562, -0.296644, 1.623204, -0.128263, 0.890636, 1.002930, -0.322791, 1.575811, -0.866970, -0.247719, -0.285896, -0.044846, 0.399279, 0.485904, -2.111681, 1.458884, -0.686243, 1.017792, 0.181967, 0.160032, -0.363940, -0.789405, -0.045901, -0.398053, 1.482738, 0.174865, 0.133076, -0.831572, -0.626974, 0.004535, 0.538366, 0.179657, -0.720387, 0.156853, -1.069117, -1.158555, -0.574731, -1.823767, 0.160691, 1.385460, 1.804040, 0.068777, -0.169229, -0.895321, 0.736519, 0.943490, 0.276774, -0.544262, 1.934911, 1.100312, 0.135381, -0.208266, 0.805393, 0.895910, 1.220592, 0.839968, 0.656904, -0.947809, 0.250160, 1.327527, -0.275230, -0.896859, -1.552629, -0.122891, 0.514040, 0.908310, 0.806895, -0.138531, -0.325118, -0.857067, 0.660311, -0.781029, -0.211677, 0.735403, 1.297556, -0.123127, 0.345860, 1.141471, 0.766391, -1.926411, 0.262821, -2.196987, -1.157269, 1.083074, 0.480122, 0.613028, 1.002370, 1.016511, -0.260060, -0.704010, 0.499189, -0.261603, -1.223492, -0.328900, -0.166102, 0.650941, 0.419420, -0.039127, 1.132943, -0.864713, -0.610824, -0.889720, 1.274654, -0.360884, 0.430137, -0.082666, 0.631616, 0.826398, -0.352772, 0.123987, -1.163990, -0.395595, 0.490041, -0.518836, -0.543182, -0.884489, 0.502251, -1.325089, 0.688049, 0.760975, 0.866051, -0.955380, 0.082390, -0.653710, 0.618073, -0.373580, 0.162492, 0.981884, 0.296001, -2.428015, -0.014876, 2.027094, -1.382469, -0.695400, -0.028213, 0.128615, -0.561253, 0.185778, -0.484359, 1.215579, -1.691350, -0.030627, -0.571790, -0.580195, -0.055000, 0.455679, -2.040278, 1.605490, -1.308529, 0.593147, -0.387072, 0.236456, -1.525982, -0.787845, -1.501738, 1.479215, 0.762102, -0.551032, 0.727081, -0.692409, 1.064490, 0.573914, -0.039996, -1.015630, 1.066914, 1.166375, -1.948346, -1.364063, -0.570753, 1.871874, -0.005461, -2.582093, -1.056135, -1.215165, -0.015245, -0.030541, 1.367074, -1.094980, -0.421514, -1.409598, -0.080573, -1.109689, -0.170495, -0.701886, -1.663771, 0.504651, -1.730618, 0.814758, -1.189907, -0.022678, -0.900925, -1.282092, 1.036108, 1.286971, 0.146561, -0.104122, -0.900358, 1.194999, 1.085071, 0.245473, -0.344552, 1.136613, -0.222807, -0.039748, 1.226650, -0.477331, -0.306240, 0.009091, -1.133449, -0.478763, -0.027651, 0.548283, -0.265791, -0.506056, -0.455783, -0.531620, -0.555388, 0.045440, 1.051072, 0.820059, -1.720696, 0.085284, 0.954460, 1.756948, 1.133869, 2.490584, 1.392225, 1.155582, 1.258072, 1.336534, -0.048626, -0.184858, -0.478615, -1.935108, 1.392227, -0.606312, -0.414760, 2.026889, -0.219457, -0.172333, 0.781231, -0.698827, 0.875314, 1.233227, -1.634788, -1.039862, 0.117942, 0.849633, 0.863716, -1.065377, -1.686738, -0.598673, 0.771012, -0.885423, 0.289281, 1.727263, 1.318882, 0.274868, -0.906274, 1.264238, 0.468178, -1.039663, 1.496806, -0.417078, 1.272921, 0.630650, -0.438431, -2.277566, -1.210622, -0.473948, -0.899909, -1.035093, 0.051717, 0.911415, 0.192445, 0.155345, 1.762306, -0.973867, -0.376061, -1.763172, 1.802793, -0.291311, 0.669337, -0.928726, -0.157349, 0.044624, -0.820466, 0.637974, -1.097872, 0.332506, -0.760951, 1.372918, -0.663406, 0.168231, 0.171713, 0.367454, 0.449412, -1.563049, 1.201667, -0.465472, 0.631889, -1.641761, 0.653492, 0.605014, -0.406481, -0.343667, -0.678263, 0.781456, -1.912179, -0.539338, 0.841557, 0.054534, -0.263837, -0.024809, 0.414199, -1.054561, 1.104222, -1.499765, -0.781907, -0.478213, -0.881519, 0.383298, -0.529201, -0.104214, 0.120789, 1.019846, 0.487809, 0.482114, -0.323590, 2.476811, -1.636494, -0.444597, -0.866103, 0.611504, -0.239812, 2.578005, -0.164232, 0.218792, 1.885903, 1.183741, 0.914319, -0.233472, 0.475280, 0.534430, -0.980125, -0.801128, -0.879462, -0.745111, -1.004103, -1.354266, 0.326177, -0.630928, -0.000771, -0.559626, -0.307599, -0.788990, 0.301350, -0.658314, 0.440005, 0.001909, 1.008989, -2.232125, 0.863060, -0.304955, 0.945003, 0.884038, -0.175643, 0.372697, 0.946738, 1.915100, 0.993498, 0.284672, -1.038963, -1.358843, -1.153239, 0.320318, -2.755738, -0.352300, 2.253395, -1.447105, 0.692975, -0.868532, -1.236475, -0.502317, 0.531573, 1.502469, -2.444619, -1.179295, 0.601001, 0.311607, 0.395198, 0.755518, 1.976267, 0.204615, 1.106207, 0.561237, 0.387203, -0.837171, 0.077322, 1.821755, 0.565255, 1.198347, -0.004862, 0.416905, 1.302956, -0.599332, 0.485901, -0.151075, -0.020921, -1.034141, -0.806071, -0.029095, 1.188493, 0.258671, -0.978080, -1.268929, -1.063724, -1.467195, 1.252039, -0.386705, 0.711198, -0.920883, -2.420926, -0.290539, -0.062117, 2.074835, -0.374069, 0.878367, -0.205094, 0.256383, 1.434138, -0.183714, 0.539224, -0.861300, 0.859191, 0.136592, 1.724366, 0.280813, -1.047397, 0.639498, 0.721197, 1.109048, 2.530865, 0.172151, 0.992468, 2.380822, 0.705975, -0.259773, 0.281196, -0.699031, -1.064526, 1.441540, -0.521743, -1.387615, 0.687498, 0.200466, 1.723945, 0.186570, -1.188742, 0.736814, -0.855797, -1.308723, -0.238915, 1.852911, -0.664917, 0.973878, 0.461865, 0.916721, 0.540135, 1.163384, -0.082009, 1.349012, 0.345283, -0.369935, -0.295485, -1.424258, -0.949818, -0.678800, 0.311844, -0.727653, -0.826054, 2.215930, 1.217589, -0.425064, 1.584409, -1.576904, -0.501944, -0.437954, -0.227501, -0.470265, 1.538283, -0.999006, -1.588923, -0.701121, 0.652228, 0.547492, 0.330306, 0.745149, 0.445952, -1.599581, 2.355876, -0.259323, 2.147191, 0.789432, -1.193722, -0.308272, 0.905792, -0.237533, -0.420663, 0.186424, -0.060277, 0.329435, -0.251988, 1.206661, 1.455311, -0.102099, 0.439973, 1.874725, -0.875383, 1.538812, 0.151283, 0.754883, 1.218416, -0.307863, 0.362797, 0.556609, -0.206668, 1.156604, -1.623848, -0.121572, -0.527849, 0.296861, 0.523361, 1.128567, -0.085918, 0.635616, 0.176748, -0.708314, -0.687628, 1.695505, -1.628185, -0.483821, -0.545136, 0.909749, 0.300384, -0.824013, 1.799047, -1.172044, 1.656234, 1.297919, -0.493350, 1.103375, 0.392184, 0.994335, -0.259227, -0.649651, 0.896740, -0.138826, 0.765243, 1.909679, 0.049780, -0.237862, -0.258180, 0.298850, -0.028429, 0.910624, 0.474021, -0.298196, -0.061631, -0.135204, -1.599762, -1.395628, 0.669363, 2.177910, 0.030061, -0.343063, 0.546187, -1.514810, -0.286909, -1.139559, 0.235273, -0.019798, 1.206490, 2.374522, -0.375667, -1.670095, 1.552036, -0.523969, -0.670330, 0.555415, 1.334496, -0.423447, 1.411823, 0.487578, 0.696663, -1.266013, 1.235226, -0.235227, -0.962345, -1.845408, 0.859036, -0.757812, 0.046500, -0.466294, -0.979230, -0.743074, -0.780998, 0.641689, 0.707992, -0.872524, -0.029345, -0.086639, -0.134237, -0.634409, 0.147895, 1.344257, 0.274307, 1.013566, -1.450009, 0.159792, -0.694519, -0.119801, -0.315509, -0.391460, 2.225720, -0.613707, -0.501829, -0.538628, 0.585139, 0.894433, -0.090804, 0.632710, 2.402012, 0.381078, 1.504487, 0.519381, 0.664636, -1.680124, 0.150588, -0.772539, -1.055521, -0.926961, 0.892638, -1.844589, 0.208582, 1.267388, 1.237923, 1.799750, 1.482798}, - { 0.866080, -0.625056, 0.121576, 0.683522, -0.202481, -0.031306, 1.427738, -0.488166, -0.186778, 0.894950, 0.925825, -0.191137, 0.717836, -0.879052, -1.100222, 0.353360, -0.417645, 0.605303, -1.253296, -0.669116, -1.194778, 0.623267, 2.341286, -0.657832, -0.878181, 1.181717, -1.897064, 0.811238, -0.730155, -0.570854, 0.767517, 0.119827, 0.534865, 0.272399, 1.227020, -1.742613, 1.004194, -0.442072, 0.670814, -1.506767, -0.752951, 0.486330, 2.335784, -0.555937, -2.128456, -1.597014, -0.329895, 1.121284, 0.738840, 0.243518, 0.375629, -0.170737, 0.763442, 1.587682, -0.692817, -0.936445, -0.194823, -0.074044, -0.404243, 0.471099, 0.186785, 0.421224, -1.671246, 0.968159, 0.758238, 0.142311, -0.077029, -0.051229, 1.091731, -1.126450, 1.034504, 0.072515, 0.795068, 0.023054, 0.600066, -0.256137, -1.477674, -0.442686, 0.308367, -0.813398, 2.630720, -1.785801, 2.496218, -0.892052, -0.833671, -0.637926, -1.563931, -0.068708, 1.009903, 0.239129, 1.387142, -0.877682, -0.097589, -1.138588, -1.256634, -2.490517, 0.166882, -0.445716, -1.342862, -1.024068, 0.699409, -0.604573, 0.696067, -1.088224, 1.358951, 1.520175, 0.056891, -1.030266, 0.454259, 0.851122, 0.178090, -0.044059, 0.723282, -0.632171, 1.512396, -0.272019, 1.413195, -2.408789, -0.609614, -2.469491, -1.568153, 0.098862, -0.503856, 0.836568, 0.604145, -1.944672, 0.070242, -0.238194, 0.113773, 1.589729, 0.025282, 2.289331, -2.281631, 0.535196, -0.324952, -1.049516, -0.989250, 0.162283, -0.760608, -0.279558, -1.365060, -1.015585, -1.531056, -0.537421, -1.016214, -1.166797, 0.941740, 1.365052, 0.518987, -0.261628, -0.632740, 0.533625, 1.756043, 0.500323, -0.156668, -1.423898, -0.079336, -1.659259, -0.235127, 0.530761, -0.551240, 1.344640, -0.138553, 0.055545, 0.945635, 1.249807, -0.246087, -0.167804, 0.036563, -0.701682, 1.880804, 0.044013, -0.588649, 0.857985, -1.601004, 1.568145, -0.004795, 0.513520, 1.473438, -0.240329, -0.940371, -0.406401, 0.527143, -0.619889, 1.161171, 0.994367, 1.144915, -1.411791, -1.105600, 0.124040, 1.229793, 0.006724, -0.329356, 0.338324, -0.373046, 0.316355, 0.253644, -0.591294, 1.157036, 2.007112, -1.217574, 1.344516, 1.483402, -0.261257, 0.014705, 2.063675, 1.919235, -0.004932, -0.530673, -0.684331, -0.780340, -0.473427, 1.812634, 0.115207, 1.092782, -0.705669, -0.465017, -0.430005, -0.150851, -0.698143, -0.145435, 1.191302, 0.947306, -0.422873, -0.636114, 0.596539, 0.930528, 1.250969, -0.194961, -0.421729, -1.357245, -0.291536, -0.471628, 0.210783, 1.466112, -0.812788, -0.597556, 0.831338, 0.128582, -1.379366, -0.823598, -1.109293, -0.927909, 0.117315, -0.482314, -0.975568, 1.141278, 1.009733, -0.754042, 1.562002, 0.436963, 1.514210, 0.234493, -0.849063, -0.383298, 0.483355, 0.501147, 0.959971, -0.389813, -0.195204, 0.158393, -0.706217, 0.369670, 0.457643, 0.012449, 0.032779, -0.606546, 0.151965, 0.116383, 0.304348, 0.737343, 0.945559, 1.946601, 1.404633, -1.637507, 1.189380, -1.143859, 0.634591, 1.429753, 0.077491, -0.608245, -1.815699, 0.481323, -0.283573, -1.637408, -1.551261, -0.515094, -0.202550, 2.245906, -0.621128, 0.558414, 1.476321, 0.513519, 1.627048, -0.818652, 0.777813, -1.993592, -0.728490, -1.123018, -1.066344, -0.022479, 0.282836, -0.385306, -1.049368, -0.098289, -1.206473, -0.299108, -0.534904, 0.965860, 0.171924, -0.284782, 0.306616, -1.007264, -0.478522, -0.137854, 0.730069, -1.743119, -0.077908, -0.209660, -0.599580, 1.872925, -0.592893, 0.938033, -0.153283, 0.324590, -0.993903, 1.162394, -0.440835, 0.281423, 0.701583, -1.295074, 0.227009, 1.732142, -0.791053, 1.133152, 0.409532, 1.334237, -0.536727, -1.378523, -2.128803, -0.992456, -0.288152, 0.783170, -0.599178, 0.079859, 1.314679, 1.168192, 0.555146, 0.117692, -1.584788, -0.796828, 1.045045, -0.391945, 0.743054, 0.034987, -1.627516, 0.281056, -0.434273, -1.226724, -1.755962, -0.305257, -1.636569, -0.038305, -1.202151, 0.803421, -1.357541, -1.492121, 0.930937, 0.393656, 0.491163, 1.866477, -0.092015, -0.545907, 0.386556, -0.372691, 0.808851, -0.971420, 0.551977, -1.222459, 0.674766, -1.729624, -0.372694, 1.424360, 0.516517, -0.993228, -1.156948, 1.193111, -0.346497, 0.512757, 1.610829, -0.049649, -0.106986, -0.241958, -0.158423, -0.164717, 2.527416, 0.685740, -0.674470, 0.260833, 0.500579, -0.220337, 0.048914, 0.682433, 0.518936, -0.353085, 0.232056, 1.231053, 1.279112, -0.305579, -0.749819, 0.746049, 1.289129, 1.575381, -0.218919, 1.365493, -0.808482, -0.121943, -1.112036, 1.540329, -1.934186, 0.420315, 0.240255, -0.129204, 0.429837, 0.476000, -1.351878, -0.854836, -0.059540, 0.167376, -0.567624, 0.395599, -0.672338, -0.784793, -0.648753, 1.263464, 0.338883, -0.087137, -0.343555, -1.367965, -0.774313, 2.242901, -0.820300, 0.092045, -1.530808, 0.123239, 0.314421, -1.061623, 0.598152, -0.061931, 0.486039, 0.153387, 0.461348, -1.587206, -0.788664, 0.332952, 0.155265, -0.141890, 0.397604, -1.084012, 0.090640, 0.853002, -0.426816, 0.212600, 0.607898, 0.740935, -0.658008, 2.020804, -1.354068, -1.085039, 2.034110, 0.073370, 1.119913, 0.925678, -0.121731, 0.169471, -1.021834, 0.554295, 0.304618, -0.285245, 0.050441, 0.320287, -2.384048, -0.872404, -0.169052, 0.557579, -0.527850, 2.183009, 1.661903, 0.247150, -1.697130, 1.474665, -0.896336, 0.590937, -1.740218, 1.095348, 0.088326, 0.598268, -0.989111, -0.498938, 1.754319, -0.734885, -0.475523, -0.441134, -0.282573, 0.259958, -0.803159, -1.139269, -0.009103, -1.187762, -1.011415, -0.985840, -0.865901, 2.678457, -2.276532, -0.855305, 0.972495, 1.283762, -1.111560, 1.442450, -0.711381, -0.570406, 0.906598, -0.770528, -1.061474, -0.673857, 0.147451, -1.082723, 1.180839, -0.436853, -0.524940, 0.601215, 1.179201, -1.050460, 0.405990, -1.458281, 0.793042, -0.711795, 0.406700, 0.018243, -0.370712, 0.654176, -0.302028, 0.393976, -1.058034, -0.902753, 0.381339, 0.692187, -0.738020, 1.057761, 0.015325, -1.110343, -0.656409, -0.055695, 1.310873, 0.750534, -1.363022, 1.175762, -0.120519, -1.031137, 1.140029, -0.329029, 0.025319, -2.087813, 0.247282, -1.452162, 0.827695, -0.739062, -0.529970, 1.102839, 1.530424, 1.055784, 2.305816, -1.632225, 0.709391, 1.464674, -0.102572, -0.365037, 0.071583, -0.831253, 0.858458, -0.545418, -0.939763, 0.136604, 0.362291, 1.180735, 0.282425, 0.258424, -1.024531, -1.023833, -0.465537, 0.641825, -0.754757, -0.470048, 0.553161, 2.572747, -0.452273, -0.082609, -0.484712, 0.709840, -0.347187, -1.283469, 0.726399, -1.376245, -1.017341, -0.769386, -1.460398, 0.756859, 0.074215, -0.883605, -0.085961, 0.513298, -0.887467, 1.093229, 0.786730, -0.889586, -0.439322, 0.566151, 0.682972, 0.966316, 0.762452, 2.145279, -1.417722, -0.399061, 0.312206, 0.876386, -1.744653, -0.326833, -0.975932, -0.125209, -0.025324, 0.392906, 1.547869, 1.431672, 3.566266, -0.212317, -1.933719, -1.742438, -0.443646, -0.386387, -0.649715, 0.316112, 0.720124, -0.621040, 2.019113, -1.868344, -1.204657, 0.592919, -0.719526, 0.080945, -0.120886, -0.212831, -1.136993, -0.489251, 0.087271, -1.557861, 0.010958, 0.735884, -0.088227, -0.302970, -0.471382, 1.537142, 0.216014, 2.509764, 0.797699, 0.193308, -0.544166, 0.018125, -0.644585, -0.393085, 0.533862, -0.223951, 0.716247, -0.072976, 0.089957, 1.529737, 0.309489, 0.960230, -0.202549, -0.409538, -0.362624, 0.773931, -0.143382, -0.983237, 0.925479, 0.290366, -0.771150, -1.087026, -1.597768, 1.495027, -1.862602, -0.963893, -0.448775, -1.895035, 0.518529, -0.284084, -0.560165, 0.124057, 0.371273, -0.432069, -1.086086, -0.546512, 0.833328, 1.623601, 0.536892, -0.147260, -2.005611, 0.629331, -1.469961, -1.097785, 1.662673, 1.141078, -0.563562, 0.627441, 0.302879, -1.433626, -1.259479, -1.558900, -0.501172, 1.432016, 0.205649, -0.231006, -1.392617, 0.455032, -0.521806, -0.011940, -0.171073, 1.289475, 1.278206, -1.023689, 0.697618, -1.264072, 0.277073, -2.001110, -1.683971, -1.146299, -0.871609, -0.253327, 0.363848, 0.861232, -0.715006, 0.512186, -0.145668, 0.370110, -0.571338, -1.151515, 1.232720, -0.793683, -0.741712, 1.055755, -0.694236, 0.810106, 2.199485, 0.140183, -0.963557, 0.845009, -0.987688, 0.990250, -1.577770, 1.431587, -1.301437, 1.239062, -0.677719, -0.522684, 1.874665, 1.225909, 0.928061, 0.052261, -0.684423, 0.221779, 1.707296, -1.300179, 1.240287, -2.429695, -1.032099, -0.421101, -1.879222, 1.260394, -0.293095, -0.325011, -0.555053, 1.830536, 0.237767, -0.631116, -0.230862, -0.462782, 0.476752, 0.352012, -1.417231, -1.111102, 0.646558, -2.226050, 0.349928, -0.754827, -1.185599, 1.020158, -0.674111, -1.444716, 0.513836, -1.380571, 2.237895, -0.915158, 0.852023, -0.089503, 1.688970, 0.427471, -0.894534, 0.497518, -1.223063, -0.319078, -0.626563, 0.443969, -1.835064, -0.085767, 1.786129, -0.490578, -1.494761, -0.111281, 1.525945, 0.627078, -0.479635, 0.392405, 0.830649, -0.979098, -0.880157, -0.741741, 1.788440, -0.059044, -0.096899, -0.289844, -0.864377, -1.861610, 0.887553, -0.243750, 0.682854, -0.818693, -0.403739, 0.407293, 0.952543, 0.184516, -0.264644, 0.603370, 0.157254, -0.265024, 0.506363, -0.970555, -1.871022, 0.046592, -1.393637, 0.469394, 0.368070, -0.205906, -0.437604, 0.580834, 0.987258, -1.476638, -0.007926, -0.533343, 0.857065, 0.402322, 1.555581, 0.628366, -0.079442, 0.467065, -1.277888, 0.871195, 1.789343, -0.761707, 0.306273, 2.548108, 1.391456, 1.624150, 0.260732, 0.682083, -0.562809, -0.024022, -0.594007, -0.878409, 1.621674, -1.316073, 0.593073, -0.740887, -0.468724, 0.459892, -0.665582, 0.858507, 1.290915, -1.296884, -0.300729, 0.048045, -0.031714, 0.063180, -0.086559, 1.021989, 0.798749, -0.036070, 0.526889, 0.267839, -0.555943, -0.170009, 1.871376, 0.179436, -0.414829, -1.182134, -0.632216, 1.612467, 0.067326, -0.477916, 0.362054, 0.133632, 0.457566, 0.471967, -0.416417, 1.944087, 1.588940, 0.945364, -0.712993, 0.359503, 0.768896, -1.333828, 0.289991, -0.095798, -1.194459, -0.340439, -0.380044, 0.788486, -0.841882, 0.432185, -0.257383, 0.226356, 0.800804, -1.746093, 1.833542, 0.129083, -1.562647, -0.674053, -0.872678, 0.409536, -0.417973, 1.468005, -0.654525, -0.738618, 1.283969, -0.106187, 0.673474, -1.587501, -0.176866, -0.057429, 1.063939, 0.371306, -2.029183, 1.153850, -1.476369, 0.490714, 0.735153, 2.296438, 0.383435, -0.337478, -0.127492, -0.083371, 1.315445, -1.657943, 0.333524, 2.280654, -0.179751, -0.560651, -0.851302, 0.447417, -2.058154, -0.462227, -0.284589, -1.198078, -0.754108, 0.698126, 1.636841, -0.265110, 0.370307, 0.799386, -0.893016, -2.349732, 1.437648, -0.693910, 1.043736, 0.643352, 0.207635, -0.142330, -1.384235, 0.128748, -1.065996, 0.371468, 0.293711, -0.043013, -0.917557, 0.214133, -1.264201, 0.809578, -0.720514, -1.374734, 0.461260, -0.840797, -0.591591, -1.010133, 0.431669, -0.002577, 0.561860, -1.076547, 1.551711, -0.954878, -0.174032, 1.381817, 0.836243, 0.335142, -0.778518, -1.642962, 0.049834, 0.564255, 0.004090, 1.947392, 2.338240, 0.718297, -1.833553, 0.058871, 0.271972, -0.175633, 1.629816, 0.700878, -0.288959, 0.592680, -1.515393, 0.472875, 2.112240, 1.162787, -1.495415, 1.190261, -0.393630, 0.253107, -0.464610, 0.492040, -0.097936, -0.817057, -1.044482, 1.897956, -0.808720, -0.135495, -0.107551, 1.302777, 0.240345, 1.090704, -0.839641, 0.158970, -0.907895, 0.722996, -0.266976, -0.082540, -1.054283, 0.028118, 0.241373, -1.243846, -0.054739, 1.537156, -0.099751, -0.084943, 0.340408, 1.221556, -1.409493, -0.387700, -0.415074, -0.342647, -0.929319, 2.220125, -1.464192, -0.165621, 1.047390, -1.715423, -1.594238, 2.273807, 0.655294, 0.479319, -1.015210, 0.806681, -0.209447, 0.204576, 0.258196, -0.483063, -1.681366, 0.008328, -0.219593, 1.909453, -1.053701, 0.396671, -1.061971, 0.363481, 0.330236, -0.226809, 0.018982, -0.037943, 0.023632, 1.074286, -0.839933, -1.674575, 0.147764, 0.454554, -0.538546, 1.224776, -0.966047, 0.394956, 0.683762, 0.223490, -1.441312, 0.101555, 0.122068, -0.368579, -0.438313, 0.897250, -0.679879, 0.354355, -0.261714, -0.887968, 0.379458, 0.563363, -0.032173, 0.460656, 1.790193, -0.411473, -0.398949, -0.313208, -0.696975, -2.386993, 0.560689, -0.918726, 0.273229, -0.506375, 0.535167, -0.039461, -1.288077, 2.248814, -0.342561, -0.795268, 0.453964, 0.473058, 0.727831, -0.089775, 0.432799, -1.112878, -1.938059, -1.390420, 0.948197, -0.090147, -0.284371, 0.590925, 0.134578, -0.291504, -0.505787, -3.847496, 0.176390, 0.282504, -1.096974, 0.610727, 1.086551, -0.199676, 0.111785, -0.300103, 1.174017, 1.694637, 0.817853, 0.242458, -0.527984, -0.185254, -0.777582, 2.046369, 0.882931, -0.876828, -0.604258, 0.986735, -0.603645, -0.032872, -1.423635, -0.195754, 0.166335, -1.298287, 0.276551, 0.723668, -1.974046, -0.813926, -0.021943, 0.486148, -1.429870, 0.626000, -1.124876, 0.273593, 0.823846, -0.253530, -0.431954, -0.761624, 1.459349, 1.799130, 0.391437, -1.278682, 0.004817, -0.503401, 0.722611, -0.250671, -0.602714, -0.437887, 0.572359, 0.142011, -0.427153, -0.828514, 0.011911, -0.717657, -0.030854, -1.313396, -0.507176, 0.785684, -0.712978, -0.564218, 0.804374, -0.581219, -1.211383, -1.014890, -0.752703, -0.860390, -0.100982, -1.224481, -1.636135, -0.010095, -0.717337, -0.549612, 1.428019, -0.709451, 0.403979, -0.687782, -0.622907, -0.139188, 0.216700, 1.714843, 0.539288, 0.683704, -0.663875, -0.793943, 0.624918, 0.676490, 0.208840, 0.962314, 0.362820, 0.772940, 1.606428, -0.122450, 0.216362, -1.182223, -0.969204, 2.276088, 0.195578, -0.861958, -0.064710, -0.252919, 0.072252, -0.297379, -1.139888, 0.615842, -0.797196, -2.362969, -0.425130, 2.479320, -0.502803, -0.189390, 0.741748, -0.491664, 0.951242, 0.827396, 0.178470, -0.641742, -1.533794, -0.593862, -1.626103, 1.130744, 1.131827, -3.772321, -0.559363, 0.719245, 1.122014, -0.287638, -1.169031, 0.651085, -0.510943, -1.510822, -0.063816, -0.722222, 0.255818, 0.697665, 0.320904, -1.289394, -1.224787, -0.347790, -0.166135, -1.791772, 0.258354, 0.498435, -0.539995, -1.567683, -0.865629, -1.814919, -1.128370, 0.790603, -0.132310, -0.448530, 0.145025, -0.244010, 0.224476, -0.890154, 0.306108, -1.298195, 2.108936, -0.582208, 1.452610, -0.312109, -1.236338, 0.094996, -0.009935, -0.470598, -0.403244, 0.204501, -0.428012, 0.439674, -0.128136, 1.276248, 2.559436, -1.016343, -2.112634, -1.441053, -1.185648, 0.039115, -0.228886, -1.430952, -0.515052, 0.167344, -0.604830, -0.284895, -2.520651, 0.054911, 0.325911, 0.411236, -0.324748, 0.013136, 1.646319, 0.022821, 0.785766, 0.320375, 1.178190, 0.918574, -2.096366, 1.599525, -1.156967, -1.291589, 0.173924, 0.544679, -0.099780, 1.046660, -1.000173, 1.632640, 1.536410, 0.752063, 1.089912, 0.600260, 0.988167, -0.059682, 1.664781, 1.607080, -0.383973, 0.715836, -0.588035, -0.171650, 0.724845, -0.009811, 0.144272, 1.485045, -2.468019, -0.625782, 0.629748, -0.149571, 0.094794, -0.720417, 0.466368, 0.839744, 2.813787, -1.109426, 1.788474, -0.152154, 0.011179, -0.493324, 1.116369, 1.123329, 0.789971, -0.980939, 0.410504, -1.580570, 0.170416, 0.543618, -0.843891, -1.015638, 0.719766, 1.441691, 0.216968, -0.667386, -1.094302, -0.794691, 0.723954, -0.464506, 1.488797, 0.747929, 0.359773, 0.292485, -0.207020, -0.427866, -0.325735, 0.776294, 2.377958, -0.225268, 0.528907, -0.123222, -0.741996, 0.379008, 1.084395, -0.455357, -0.113783, -1.016427, 0.333656, 0.022496, 0.578530, -0.791001, -0.036372, -0.098465, 1.911017, 0.755293, 0.160291, -1.019335, -0.021960, -1.173783, 0.158222, 1.221956, 0.391605, -0.688374, 0.674036, 0.162344, 1.607492, 1.079123, -0.963116, 1.791465, -0.381475, -1.076895, -0.942434, 0.183333, -1.544643, 0.186308, 1.006477, 0.028194, -2.687652, -0.497943, 1.155251, -0.160850, 1.779146, -1.038186, -0.027444, -1.656326, -0.070191, 0.226612, -1.105460, 0.838924, 0.424065, -1.230931, 0.398621, -0.039785, 0.628192, 1.014558, -0.377979, 0.373647, 0.531381, -0.379779, -0.599680, 0.399506, -0.812143, 0.041911, 0.599747, -1.560446, 0.080338, -0.541123, -0.727403, 0.038486, -1.330103, -0.046058, -0.335335, 0.368983, -0.448917, 0.682676, 0.568725, -1.714079, 0.921011, -0.206732, -0.368350, 1.321718, -0.020491, 0.531012, 0.021592, 0.339343, -1.140593, -0.391564, -0.107119, -0.236683, -1.034557, 0.100708, -0.449282, 0.030256, -0.465716, -0.455046, -1.184186, 1.723527, -0.258237, -1.290475, -1.421946, 1.294195, 1.379051, 0.136141, 0.351948, -0.018266, 0.847237, -0.021566, -0.931318, -2.056534, 0.365122, 0.997505, 2.602920, -0.761167, 1.264392, 1.830410, -1.213272, -1.553209, 0.234176, 0.323397, -0.725278, 0.526702, 0.226803, -1.958645, -1.091297, -0.011619, 0.684826, -0.009424, 1.215389, -0.909560, 0.050839, 1.758763, -1.407746, 0.423231, -1.959009, -1.254847, 1.125488, 0.552132, -1.654553, -0.554040, 0.637097, 0.696657, -1.386460, -0.505970, 0.740580, 0.850192, -0.161729, -0.587337, -0.218720, -0.599069, 0.804794, -0.057150, -1.209704, -1.395190, -0.767662, -0.064794, 0.372170, 1.135837, 0.429881, 0.525413, -0.352796, 1.233959, -0.973516, 1.073572, 0.593402, 1.543265, -1.188478, 2.123628, -0.248787, 0.491973, -0.494814, -0.762773, -0.033604, -0.534293, -0.310574, 0.036215, -0.064379, 1.902932, -0.277711, -0.855579, -0.859116, 2.425140, 1.447875, 0.651337, 1.091749, 1.120395, -1.221832, 0.112273, 0.024132, -0.983881, 2.035450, -0.567740, -1.363777, -0.499334, -1.012821, 0.094597, -0.852352, 0.655773, 0.239259, -0.877779, 0.228158, -1.236552, 0.320742, 1.445940, -0.025044, -0.003785, 1.563272, 1.172344, -0.884234, -2.289657, 0.830618, 0.327599, 0.157927, -1.882563, -1.508342, 0.382493, -0.994105, -1.779637, -0.350338, 0.644919, -0.162481, -0.561791, -0.292453, 1.661347, 2.744623, 0.508979, 1.267254, 0.387200, 1.116384, -0.153209, -0.353780, 1.885726, -0.446143, -0.996422, 1.312443, -0.348828, -0.179586, 0.226335, 0.340366, -0.251821, 0.824876, 0.775029, -0.116069, 1.221625, -0.649652, -0.262559, -0.189682, 0.340743, 1.709756, 0.585655, -0.661662, 0.342280, -0.232525, -0.562666, 0.174523, 0.066243, -1.599213, 2.531471, -0.142645, -0.125509, -0.915869, 0.308407, -1.158598, 0.408644, -0.083824, 2.681291, -1.546395, -1.523349, -0.304321, 2.641508, -1.475251, -0.817083, 1.122185, 0.612842, 1.328678, -0.526128, -0.234835, -0.679203, 0.369675, 1.542627, 2.138129, -1.202362, -0.275408, -0.319938, 0.769256, -0.899474, -0.128025, 0.727383, -1.950824, -0.532140, 0.577920, 0.544175, -0.275512, -0.661959, -1.184935, -0.539799, -1.251001, 1.061214, 0.987375, 0.952338, 2.106361, -0.445452, -0.102870, -0.987018, 0.796406, -1.589291, -0.984786, 2.175890, 0.878986, -1.303779, 1.381738, -0.382568, 1.545153, 1.120980, -2.607963, -0.742678, -0.797142, 0.054504, -1.254030, 0.531856, 1.495502, -1.095563, 1.238427, 0.145039, -2.147918, -0.614304, 2.304283, 0.572977, 1.878409, -0.820310, -1.299808, -0.251479, 0.402326, -1.094128, 0.419399, -1.453472, -0.353842, 0.449488, 1.035677, 0.602080, -1.049608, 0.215506, -0.370363, 0.614483, 0.213826, -0.110799, -1.268846, 0.550292, 0.488564, 0.650422, 0.094543, 1.400128, 1.085979, 0.078700, -1.454187, -0.659944, 0.808809, -0.898729, 0.486505, -0.660853, -0.663082, -0.753350, 0.122708, -1.486485, -1.044857, -0.462478, -0.629648, -1.037736, 0.523050, 1.289400, -1.188837, 0.345922, -0.079748, 1.544174, 0.825203, 1.494623, 1.013468, -0.493277, 0.190401, -1.227905, 1.450422, -1.793353, -0.669938, 0.444625, -0.687635, 1.703094, -1.738284, -0.975158, -0.883730, 0.117322, -0.653096, 1.693622, 1.288797, 1.490813, -1.174640, -0.157626, 1.514826, 0.431111, 0.490108, 0.365193, -0.330806, 0.257561, 0.162109, -0.956062, -0.678524, -0.696529, 1.573911, 0.260740, 0.734999, -1.957596, -0.469499, -0.468998, 0.991787, 0.380781, 0.421273, 0.178817, 0.751496, 1.052312, 1.117894, 0.159977, -0.107782, 1.719500, 0.774930, 0.556565, -0.318402, 1.262776, -1.698784, -1.735955, 0.483090, 0.155759, -0.920446, -0.593141, -0.464839, 1.747810, 0.574726, 2.271998, 1.096809, -2.022347, 0.486468, -0.310964, 0.979258, -0.299639, -0.662594, -1.161256, 0.826822, -0.482803, 0.848660, 0.000758, 1.692897, 0.235913, -1.935236, -0.346001, -0.353184, -2.144652, 1.034221, -0.673041, 0.287329, -0.777888, 0.351853, 0.490109, 1.474277, -0.183182, 0.319611, -0.456337, 0.133169, 0.467387, -0.565013, -0.421942, -0.193670, -1.332679, -0.874967, 1.613541, -1.136294, 1.854410, -0.556349, 0.548563, -1.671199, -0.043325, 0.817063, -0.128590, 2.412078, 1.331446, 0.378804, -0.043284, -0.286320, 0.848561, 1.278577, 1.773656, 0.911615, -1.805698, 0.234705, -0.181564, 0.121394, 0.466954, 1.267693, -0.371449, -0.020568, -2.171257, 1.000126, 1.061159, 0.505495, -0.969288, -1.152498, -0.182558, -0.628118, -0.373315, 2.211878, 1.285323, 1.186292, 0.845856, 0.427614, 0.721105, 0.031726, 0.776502, 1.512902, -1.046481, 0.904783, 1.308605, -1.539528, -0.040557, 0.361875, -1.012259, -0.940666, 0.037068, -0.065892, -1.155974, -0.841934, -2.347145, 0.075728, -0.316108, 0.972830, -0.589255, -0.191023, 0.463864, 0.390986, 0.181009, 0.190874, 0.766675, 1.032602, -0.593371, 0.503112, -1.045168, 0.550146, -1.900579, -0.272935, 1.148232, -0.245716, 0.754492, 0.157743, -0.063951, -0.912690, -0.323499, 1.655576, 0.727205, 0.337494, -0.746560, 1.979771, -2.154375, 0.238954, 0.674898, 0.290035, 0.508623, 0.238075, -0.746953, 0.917649, -1.644612, 0.502363, 0.089401, 0.508571, 0.623569, 0.477996, 0.387759, -1.172721, 0.970701, 0.733727, -0.125840, 1.773905, -1.121656, 1.333812, -0.251404, -0.896054, -0.381041, 0.118461, -1.629806, 0.067714, 0.061594, 0.321507, -0.050412, -0.278915, 0.627870, -0.044515, 1.287073, -0.979405, 0.685551, -0.380886, -1.643892, 1.313650, 0.141613, -0.970911, 1.184946, -2.157228, -1.459640, 0.538561, 0.699558, -0.303640, -0.108299, 1.245393, -1.913161, -1.542441, -0.163104, -0.324393, -2.242914, 1.630139, 0.948557, 0.426050, -1.618316, -0.696065, 0.586882, -1.018793, -0.437240, 0.745870, -0.316719, -1.665113, -1.242550, -0.814925, -0.325437, -1.117700, -0.212810, -0.756375, 0.390049, -1.004653, -1.651104, -0.871851, -0.698587, -1.425555, -0.811383, 0.642577, 0.310604, -1.859788, -1.692393, 0.238403, 0.386056, -0.340491, -1.001342, -0.593708, -0.064249, 0.659165, 0.187226, -0.772300, 0.453423, 0.841282, 0.934110, 0.864331, -0.940953, 0.345837, 0.103412, -0.027145, -0.227788, -0.300733, 1.372915, -0.477588, 0.031030, -1.770696, 1.731423, 1.594679, 0.596607, -1.023487, 2.074233, -0.666359, 0.644589, 0.841822, 0.277574, 1.564192, 0.863628, 0.836216, 0.870658, -1.265987, -0.124717, 0.600019, -0.471383, 0.269590, -0.919838, 0.523051, 1.549593, 2.487397, -0.595452, -0.166794, -1.103905, 0.878145, -0.211910, -1.791964, -0.838534, -0.957797, 2.505346, -1.169337, -0.472157, -0.388990, 1.302714, -2.537949, -2.488113, 0.853702, 1.182353, -0.000154, -2.121131, -0.028600, 0.761508, 1.429013, 1.292225, 0.204175, 0.752785, -1.226625, 0.351576, -1.568331, 0.702363, 1.777936, -1.854469, -1.040808, 1.192233, -0.013438, -0.512396, -1.555198, -1.442163, 0.892473, 1.234882, 1.289877, 0.280704, -0.169063, 1.375754, 0.857097, 1.336896, -0.441673, -1.566456, 0.778496, -0.695970, 0.006153, -1.720969, -0.889830, -0.763117, -0.528502, -0.097321, 0.195173, -0.625830, 0.195705, 0.940522, 0.773672, -0.100510, 0.918883, -1.060731, 0.131079, 0.828299, -0.624251, 0.127454, -0.978299, -0.323283, 0.334632, -1.449966, -1.445615, -0.293141, -1.611847, 0.023450, -0.024560, -0.114500, 0.120742, 0.012154, 0.433593, -0.967235, 1.190966, -0.358853, -0.510341, 1.171354, -0.738971, -0.500408, 0.152481, 1.438761, 1.207522, 0.901185, 0.800722, 0.160888, 0.186841, 0.692368, 0.073113, 1.058602, -1.590634, 0.515061, -2.049998, -0.465840, -0.693507, -2.183272, 0.524993, 0.423880, 0.408038, -1.054390, -0.880862, 1.538043, 0.909203, -0.725540, -1.434025, 0.403302, 0.587620, 2.974963, 0.931787, 0.173392, -1.230264, 1.998399, -0.359904, 1.391133, 2.113743, -0.386662, -0.621082, 0.300080, -1.373614, -0.209795, 0.667779, -2.221721, 0.754526, 0.022138, 0.135022, 0.803149, 1.884429, 0.606001, 2.013745, 0.112433, 0.133606, 1.429963, -0.960882, -1.305413, -0.140874, -0.856742, -0.701118, 0.315902, -1.346026, -1.838305, 2.523635, -0.460362, 2.023920, -1.283741, 0.247436, 0.372712, -0.120169, 0.459905, 0.575902, -0.389160, -0.998085, 0.207795, -0.550396, -0.222576, 0.658455, 1.385007, -1.329448, 0.186255, 0.186056, -0.203054, -0.372280, -0.871205, 0.104640, 1.582643, 0.337969, -0.476638, -0.096993, 0.509839, 1.311044, 0.267209, 0.547898, 0.606629, 0.661469, 1.478996, 0.303150, 1.054283, 1.963517, -0.701416, -0.644236, -0.670002, 1.485709, 0.867337, 0.330906, 0.310329, 1.293163, 2.306950, 0.512658, -0.694413, 0.068148, -1.136732, -0.810269, 1.395791, 0.997877, -1.143858, -1.089280, -0.496521, -0.050454, -1.358466, 1.567171, -0.141172, -1.363225, 2.074891, 0.231248, -0.591231, -1.028763, 1.302356, -2.111721, 1.336129, 1.147171, -2.028263, 0.841178, 0.102087, 1.241837, 0.512563, 0.467606, -0.240968, 1.268157, 0.389327, 1.278809, -0.102705, 0.408528, -0.488802, -0.377720, -2.062289, -0.370082, -0.420057, -0.001716, -0.112779, 1.504343, -0.853454, -1.042517, 0.212851, -0.472853, 1.170080, -0.541422, -0.039304, 0.933957, 1.357692, -0.429652, -1.702277, -0.159772, 0.001983, 0.000002, -0.543599, -1.698953, -1.104731, 0.698160, 0.442014, 0.421941, -0.584926, -0.385530, -0.571799, -0.154162, 2.106135, -1.281321, -0.289063, -0.004227, -1.236964, -0.364015, 0.404688, -1.278293, -3.094613, -2.402176, -0.350939, 0.559308, 1.620555, 0.702482, 0.313948, -0.120019, 1.820701, -0.209859, 0.034231, 1.009775, -0.240234, 0.641508, -0.830939, 0.047171, -0.461867, -1.351455, 0.045219, 1.273847, -0.067354, 1.777573, 0.194085, 1.382331, -2.380929, 1.322756, 0.066846, -0.443359, 0.844103, -0.182564, -0.321789, 0.525938, 1.558613, -1.000298, 2.095170, -1.273995, -1.048167, -0.047360, -0.398325, 1.345394, 1.237966, -2.107172, 1.281710, -0.688015, 0.340963, -0.761513, 0.036355, 0.751413, 2.138854, 0.837824, -0.661121, 2.223464, -0.024160, 0.258210, -1.262901, 0.101704, 0.886722, -1.530659, -2.376492, 1.471753, -1.091717, -0.080357, 0.328669, -0.709377, -0.627621, 0.200232, -0.399206, -0.985927, -0.316829, -0.887110, 0.441063, -0.730294, -0.483783, 0.309477, 2.657938, 0.741498, -0.014179, 0.548736, 0.297112, 0.053352, -0.534102, 0.675665, -2.457662, 1.756811, -0.656191, 0.648414, 2.293105, -3.063736, -0.371508, 0.669888, 2.075385, -1.055540, -0.389699, -0.202379, 1.000234, 0.851372, -0.286208, 0.386047, 1.082359, 1.027662, 0.695166, -1.019722, 1.415310, -0.850611, 0.228916, -0.172337, 0.788785, -0.490355, -1.012435, 0.779454, 0.867956, -0.622320, -0.090468, -1.180841, -0.527309, 0.799429, 0.602665, -0.816127, 0.165748, 0.310293, -1.297851, -2.127904, -1.053795, -0.662907, -0.250302, 1.088920, -1.113692, 1.543742, -0.576911, -0.213999, 2.256395, 1.962789, -0.383080, 0.069965, 0.347551, -0.185584, 1.376954, 1.159101, -0.256020, -0.125754, 0.057725, -0.205835, -0.687395, 0.268903, -1.814178, -0.008433, 0.397908, -0.419803, 1.289426, -0.781659, -0.554355, -1.473182, 0.696459, -0.066383, 0.987544, 0.880593, 0.066657, 0.378186, -1.038281, -0.351476, 0.993799, 0.353034, 1.967381, -1.244548, 0.979393, -1.938769, 1.197030, 1.552737, -1.013856, 0.278807, -0.776079, -1.393610, 0.417863, 1.896697, -0.583991, 0.845668, 0.072539, 0.416493, 1.224551, -1.032908, -0.800929, -0.257251, -0.341851, 0.654992, -0.062871, -0.126248, 0.638023, 0.411336, -1.146026, -0.871349, -0.107819, 0.159237, 1.084878, -0.096234, 0.008714, 0.363630, -0.885676, 0.824603, -0.348342, -0.290375, 1.992267, -0.944929, -1.033954, -2.124754, 0.306700, 1.568433, 0.237954, 1.011253, 0.890108, 1.137032, -0.970933, 0.323666, 1.409332, 0.634482, -1.863711, 0.136564, -0.031205, -0.990787, 0.078272, -0.388315, 1.529234, -0.180333, 0.654552, -2.241537, -1.685225, 0.276770, 0.787062, -0.951388, 1.494093, -1.052059, 1.363340, -0.606494, 0.435609, 1.032341, 0.854363, 1.151113, -1.584345, 1.533453, -0.254832, 1.204281, 0.745791, -1.491793, -0.078630, -0.463900, 1.553098, 0.563620, 0.278828, 1.504271, -0.418872, -2.625763, 0.123032, -1.236659, 1.284504, -0.158240, 0.797906, -0.748526, -0.288808, 1.613181, 0.715834, 0.409639, 0.231675, -2.486954, 1.359262, 0.693055, -0.053956, 0.688209, -0.542796, 0.917013, -0.156186, -0.733029, 1.300479, 0.103335, -1.143418, 0.927558, 0.673648, -2.786823, 0.630348, -0.596049, -1.192626, 0.397885, 0.935736, 0.360845, -0.102760, 0.171726, -0.122494, 0.717100, 0.825085, 1.096298, -0.337822, -0.632185, 1.125006, 0.330534, -0.448444, -0.118234, 1.081982, -0.706928, -1.447757, 0.784149, -1.080579, -0.007369, -1.275368, -2.074418, -0.341810, 0.625092, 0.693246, 0.013951, 0.951710, 0.833433, -0.562873, -0.379527, 0.339144, -0.118447, -0.630108, -0.064035, -0.243146, 2.724359, 0.696421, 0.882557, 1.114483, 0.474649, -0.078484, 0.923468, -1.233502, 0.081886, 0.561078, 1.546341, -0.227950, -0.476978, -0.602240, 0.058573, -0.939124, -0.895486, 0.703519, 1.507734, 1.295597, 0.444187, -0.967023, 1.312898, 1.001435, -1.094791, 0.311407, 0.544028, 1.649227, -0.539164, -0.748347, -1.037615, -0.085585, 0.944574, 2.846277, 1.472078, -0.338934, 0.938910, -1.315354, 0.807254, -1.851259, 1.563321, 0.552499, -0.790993, -0.083347, -0.822957, 1.003915, -0.061260, 1.095248, -1.742030, -0.688430, 1.127627, -0.263740, 0.733030, -0.540750, 0.238349, 1.293281, 0.870832, 0.997744, 0.185250, -0.110307, -1.537922, -0.365415, -0.039089, 0.982837, 0.319798, 1.032417, -0.576030, 1.310834, 0.136676, 1.127323, -0.089150, 0.896282, 0.417950, 0.070422, -0.157127, 1.234319, -0.978378, 1.476864, 0.538272, 0.385858, 0.320429, 0.022871, 0.392842, 0.177457, -0.332814, 1.390906, -0.397742, 0.112415, -0.340343, -1.330629, 0.912444, 0.346352, -0.483079, -0.433957, -0.328288, 0.074146, 0.337486, 0.741707, -0.383569, -0.563149, -0.218291, -0.517675, 1.377026, 1.542241, -0.767136, -1.118123, -1.837940, -0.696887, 0.324369, 0.830081, 0.464813, -0.125971, -1.908897, 1.403316, 0.166996, 0.582172, 0.572374, 0.348029, 1.436253, 0.242459, -0.271409, -1.317343, -0.374362, -1.281095, 1.020371, 1.681033, -0.711967, 1.158792, 2.966699, -0.125565, -1.093711, -0.243393, -1.654180, -0.591599, 0.718302, -2.049595, -0.703539, 0.167982, -1.420567, 0.662354, 1.062625, -0.681258, 0.888918, 1.372472, 0.330192, -0.557152, -1.373163, -1.256078, 0.872913, 1.500677, -0.400971, -1.098439, 0.752767, -1.375299, -0.704750, 0.398118, 0.120716, 1.290664, -0.248734, -0.061709, -0.315851, 0.413841, -0.991105, -1.510866, -0.408108, 0.405287, -0.293155, 0.179160, -1.653138, 0.990054, 0.711607, 2.209724, 0.325221, -0.042293, 1.082162, -1.343456, 0.150146, -0.968255, -1.531807, -0.504254, -0.317111, -0.196447, 0.191399, -0.762299, -2.040827, 1.885169, 1.282522, 0.962386, 0.280749, -0.036098, -1.639054, 1.170920, -1.492695, 0.143669, 0.650995, 0.234237, 1.230955, 0.057640, -0.214090, -0.534227, -0.578776, 0.125763, 0.019438, 2.150549, -1.869604, -0.313717, -0.314017, 0.486108, -1.115248, 0.462417, 1.098508, -1.190247, -0.727925, 0.669302, -0.021880, 0.807131, -0.897302, -0.413006, -1.143647, 0.747145, -0.446139, -0.165424, 0.761598, -1.464150, 0.308694, -0.945917, -0.416103, -0.305428, -0.898248, -0.159927, -0.425741, 0.027930, -0.645810, -0.023443, 1.363165, -0.682764, -0.867862, -1.430043, 0.673272, 0.214845, 1.537753, -0.012069, -0.946378, -0.503318, 1.903265, -0.604833, -0.912314, 0.350789, 1.039350, 0.201091, -0.759496, -0.787621, -0.507002, -0.951064, -0.133818, 0.853275, 0.360311, -0.057158, 0.810785, 0.417495, 0.018208, -1.632295, -0.809766, -1.169716, 1.522623, 0.568319, 1.102799, -0.209293, -0.215655, -1.167315, -0.206248, -0.816123, -0.874441, -0.190806, 0.378056, -0.895094, 2.001792, 0.279251, -1.649177, 0.514400, 1.805737, -0.539054, 0.846530, 0.238871, -0.573209, 1.738087, 0.746235, -0.279255, 0.450477, -1.008486, 0.495469, 0.077325, 0.477148, 0.261582, -0.645051, -0.633761, 0.032262, 0.253078, -0.305077, -0.837905, 1.051906, -0.275461, -0.468255, 2.785873, 0.995899, 1.418191, -0.675931, 0.529137, -0.604013, -0.395066, -1.748740, -1.505819, -0.289815, -1.232342, -0.690178, 0.448758, 0.124130, -0.210617, -0.672301, -1.221108, 0.537656, 0.654851, 0.032209, 0.592418, 0.254624, -0.710136, -0.086747, -0.622997, -1.310471, 1.036720, -0.903373, -0.959263, 0.262379, 0.998065, -0.182319, 1.007750, 0.356757, -0.022003, 0.824459, -0.359133, -0.017737, -1.407765, -1.187161, 1.273830, 0.118736, -0.700377, -0.752612, 0.450680, 0.089769, 0.594245, -0.793705, -0.084685, -1.136831, -0.721463, -1.679135, 0.053687, 0.193615, 1.107299, -0.015698, -0.156326, 0.076302, -2.239511, -0.128651, 1.292904, -0.779378, -0.786066, 0.832118, -0.525856, -1.994214, -1.537125, -1.580682, 0.208293, 0.372145, -0.463928, -1.100816, 0.726475, -1.400278, -0.435401, -0.748394, 0.314515, -0.398082, 0.045251, -1.189218, -0.538288, -1.333592, 0.439772, -0.373387}, - { 0.445119, -0.473154, 1.043832, 0.777392, 0.336832, 1.607917, -1.256141, 0.886497, -0.493596, 0.676463, 0.012833, 1.039813, -0.030301, -0.612872, -0.133890, -1.667399, 2.916224, 0.100309, -1.667854, 1.436229, -1.732758, -0.453935, -0.285197, -0.322268, 0.601576, 0.176054, 0.811950, 0.836817, 0.551970, -1.137375, 0.317023, 0.097334, 0.680212, 0.770360, -0.797717, -0.379524, -0.795399, 0.194768, 1.628859, -0.217443, 0.030528, 0.945046, 0.292479, 0.136449, -0.635604, -0.628854, 0.572396, -1.108107, 0.805043, -0.575554, 0.191515, -0.600326, -1.467304, -0.160230, 0.968471, -0.371370, -0.642809, 0.517223, 0.645355, -0.865668, -1.973043, 1.192697, -0.546544, 0.234783, 0.831680, 1.071745, -0.306672, -1.219912, -1.655767, 0.471195, -0.732462, -1.356594, 1.425433, 2.090956, -1.082446, -0.234593, -0.601599, -0.647650, -1.406416, -0.080426, -2.663863, -0.766313, 1.641921, -0.352298, 0.745640, 1.491805, 2.281355, 0.514820, 2.185823, -2.314241, -0.169153, -0.298561, 0.334818, -0.491147, 0.328098, 0.915667, 0.402621, -0.746891, -0.946256, -0.144328, 0.227210, -0.478551, 2.912821, 0.470826, -0.404351, 0.548383, 1.860363, 1.211489, 0.244203, 0.065883, 1.231655, -0.481459, 1.409605, 0.744219, 0.665025, 0.692379, -0.019274, 1.339805, -1.001782, 0.111468, -0.955685, 1.245185, -0.316737, -0.090949, 0.013979, -1.520471, -1.386841, -0.411242, 0.920072, 1.776073, -0.082401, 0.157874, 0.091302, 1.025784, -1.359340, 2.027332, -1.349896, 0.385464, 1.905441, -1.127224, 0.482441, 1.913600, -0.617968, -0.898145, 1.119693, 0.358507, 0.019756, -0.191372, 0.703550, -0.547417, -0.346055, 0.184678, -0.111272, 0.619518, -1.948512, 1.083403, -0.085566, 0.281789, -0.864147, -1.348143, 1.721284, 0.542809, -0.605238, -0.662774, 1.618685, 0.026117, -0.999879, 1.073480, 1.695607, 0.686530, -0.070985, 0.067097, 0.441073, 1.058383, 0.236613, -0.122160, 1.226766, -2.121287, 0.864963, -0.906502, 0.788784, -0.114583, 1.716322, -0.140293, 0.803576, 0.097291, -0.079516, 0.731232, -0.179123, 1.447323, -0.404925, -1.159394, -0.096744, -1.058249, 0.324214, 0.032134, -0.915288, -0.892403, 0.035589, 0.410577, 1.733285, -1.554785, 0.734351, 1.227558, 0.417913, -0.278726, -0.123782, -0.533453, -0.519297, 0.603304, 0.008567, 0.197589, -0.304968, -0.619938, -1.508928, 0.842970, 0.388260, 0.965970, 1.615622, 0.037578, 1.321452, 0.570423, 0.837113, 0.959701, -1.785599, -0.118456, 0.440891, 0.390267, -1.246232, 0.388323, -0.359202, -1.526424, 0.649643, 1.248093, 0.444873, -0.876070, 0.588197, 0.516607, -1.146631, -1.477178, -1.867158, 2.048766, 0.583620, 1.099906, 2.005556, -0.154881, -1.377580, 0.992883, 1.499071, 1.408246, -0.754189, 0.809171, -0.463964, 1.036659, 0.407151, 0.182255, 0.859734, -1.040145, -0.393154, 0.304349, 0.099052, -1.669704, -0.059810, -0.115147, 0.681644, -0.035526, 2.093822, 0.374111, 0.966913, -0.711796, 0.558377, 0.004689, -0.236323, -0.015492, 0.507350, 0.884238, 0.796181, 0.407894, -0.651447, -0.297920, -0.675614, 0.080077, -0.546734, -1.485716, 0.356631, -0.381172, 0.228533, 0.689613, -0.165249, 0.874549, 0.522173, 1.338984, 1.683538, -0.858577, 1.715507, 0.962570, -1.854659, 0.301397, 0.777961, -0.168081, 0.822478, -0.091549, -1.307847, 0.395082, -0.734842, -0.908345, -0.106309, 0.795496, -0.989138, -1.035424, -1.028767, 0.794088, -0.556766, -0.578390, -0.205136, 0.407657, 0.192795, -0.004476, 1.330971, -0.460468, -0.340379, -1.404826, -0.268784, 0.009571, 1.271649, -1.710451, -2.075173, -0.264577, -1.691788, -1.099675, -0.527835, -0.724047, -0.771612, 0.636082, -0.496467, -0.230907, 0.097217, 1.231677, 0.824362, -2.003355, -0.411184, 0.420341, -2.203910, -0.119704, 0.429810, -1.679386, -3.574735, 1.227788, -1.065000, 0.838933, -0.033208, -1.115704, 0.435834, 0.217366, -2.191301, 0.511384, -0.355264, -1.158450, 0.633463, -0.307346, -1.324384, 0.483216, 1.122067, 0.806615, -0.219632, -0.830491, -0.489634, -1.658145, -1.419990, -0.975801, 1.988137, -0.428863, -1.211944, -0.293354, -1.890205, -1.864249, 0.203997, -0.729941, 0.339944, 0.927718, 0.412664, -1.409777, -0.503725, 0.092292, 0.320979, -0.275510, -1.846167, -0.503700, -0.970977, -0.069228, 2.064976, -0.323504, -0.362595, -0.580841, 0.037430, -0.225678, -0.667707, 0.380894, 0.849483, 1.021359, -0.606119, 0.590615, 1.082592, -1.106674, -0.707658, -1.296561, 0.507987, -0.871183, -1.377768, -1.984335, 0.667969, 0.564089, 0.734477, 0.454342, -0.127853, 0.197681, -0.559246, -1.551669, 0.099377, 0.199236, -1.410957, 0.504269, 0.490630, -0.682557, -1.050351, -1.410082, -1.629301, 0.134012, 0.986930, -0.266827, -0.221795, -0.283894, 0.313460, 0.394926, 1.339049, 1.207692, -1.325734, -0.874716, -0.585774, -1.138751, 0.250473, 2.165983, 0.299551, -0.024552, 0.108212, -1.080102, 0.019353, -0.506037, -2.250953, -0.536788, -0.036371, -0.158025, 0.243695, 0.110131, -2.970728, -0.546735, -0.859855, -1.213565, 0.507321, -0.255617, -0.908084, -0.119083, -0.500949, 2.417475, -0.944488, -0.943858, 0.644891, 0.213952, -1.412248, 0.336780, -0.360798, 1.631748, -1.572463, -0.632524, -0.041980, -1.419299, -0.828942, -1.567378, -0.039727, -1.079625, 0.229201, 0.540608, -1.194643, 0.285663, 0.272545, 0.363028, -0.602567, 0.052341, -0.505195, 0.834541, 0.050153, -1.553528, -0.205532, -1.577365, -1.215052, 0.251855, 0.168267, 1.217532, -0.197365, 0.899619, 1.246372, 0.827659, 0.357098, -1.029141, -0.294885, -0.659836, 2.170795, 0.805875, 0.861501, 0.261309, -0.389645, 1.508403, 0.762291, 1.077466, 0.703692, 1.135156, 0.057295, -0.376282, 0.938975, -0.858866, 0.142821, -0.523899, -2.285423, -0.385617, 2.811867, 0.627690, -0.462247, 0.901901, 0.652575, -1.488570, -2.032548, -0.527948, -2.175511, 1.228637, -0.651459, -0.586265, 0.714938, -0.275992, -0.686925, 0.436959, 0.353218, -0.917387, 0.509369, -0.352333, 0.446812, 0.287032, -0.433148, 0.039009, -1.966737, 0.444408, -1.744633, 0.709875, 0.766815, 0.899542, -0.524911, -0.297837, -0.605165, 0.231073, 1.080600, 0.954147, 0.922436, 0.708972, -0.384127, -1.495357, 0.662669, -1.454976, -0.962301, -0.710635, -0.384602, 0.167715, 1.860776, 0.481277, -0.582406, -0.336220, -0.270634, 0.990622, -1.391581, -3.308254, 0.077200, -0.967182, 0.031076, 0.106201, 1.324206, -0.474467, 0.123622, -1.284238, -0.843066, 2.506301, -2.289709, 0.357971, -0.450290, 0.875618, -1.589743, -0.279220, -0.075697, -0.579546, 2.264063, 0.607433, 0.802204, -0.261092, 0.572771, -0.056676, 1.260767, -1.387489, -0.186559, 1.016351, -1.186001, -0.347246, 1.183536, 0.875133, -0.934673, -0.797560, 0.499391, -0.046449, 0.073275, -1.042153, -0.701949, 0.622057, 2.408287, -0.153173, 0.227560, 0.666372, 1.134668, -1.259363, -1.148901, 0.522791, 0.140595, -0.210053, -0.518753, -1.677094, -1.660687, -0.459667, 0.360807, 0.423693, -0.220381, -1.114191, 0.369428, 1.140286, -1.218788, 0.061807, 1.683959, -0.396777, 0.454495, 0.458192, -0.365413, -1.974917, 0.164067, -2.237991, 0.145513, 0.410231, 1.428426, 1.624179, 0.442423, 1.449412, 0.140301, 0.167444, 0.751907, -1.105274, -0.235989, 1.810214, -0.823111, -0.947231, -0.499959, -0.269678, -0.939640, -0.300699, -0.125594, -0.147036, -0.782391, 1.741470, 0.556263, 1.613137, 1.857892, -0.212925, 1.286526, 0.622445, 0.629121, 0.271868, 1.189664, -0.555635, 1.137723, -0.283038, -0.152573, -0.305756, -0.922141, 0.139124, -0.452746, 0.783817, -2.224815, -0.988587, 0.438941, -1.346850, -0.383588, -1.076174, 2.017057, 0.830436, -0.072499, 0.771816, 0.089721, 1.127169, -0.849913, -0.851651, -1.179918, 0.365567, -1.575183, -0.690552, -0.600083, -0.244377, 1.494794, 0.186040, -0.528508, -0.187898, 0.277297, -0.467606, -2.656732, 0.029013, 0.049409, -0.345733, -0.695619, -0.515020, 1.230146, 1.424461, 1.045369, -1.072933, -1.221967, 1.483192, 1.375120, 1.096154, -1.019855, -0.547238, 0.484669, -0.213334, 0.407507, -1.138925, 2.211552, 1.364770, -0.897791, -2.195113, -0.002323, 0.508676, -0.652900, 1.036706, -0.986855, -0.272933, 0.716294, 0.225263, 0.850050, -0.175702, 0.277604, -0.394775, 1.173868, 0.170788, -0.537138, -1.400774, -0.924265, -0.772661, -1.254959, -1.068254, 0.039644, 0.625782, -0.678057, -0.314933, -0.375694, -0.128456, 0.595554, 0.684521, 1.157750, 0.591429, 1.338761, -0.049339, 0.523924, 0.949159, -0.364290, 0.594550, -0.277029, -2.544848, 0.979828, -0.054113, 0.466571, -1.441097, 1.128570, -0.627319, -0.152311, -0.074559, 0.521714, -1.244803, -0.544302, 0.031556, -0.352984, 0.219783, -1.295021, -0.461377, -0.678573, 0.594697, -0.232036, 0.965991, 0.671720, 1.197810, -0.177209, 1.668815, 0.852600, 0.667697, -0.954891, -1.164466, 0.876681, -1.099380, 0.863135, -1.590830, 0.387270, -0.627818, -0.282209, 0.092205, 0.259731, -0.436475, 0.666336, 0.862636, -1.418429, 1.028954, 0.633128, -0.344502, -0.445413, -0.917772, 1.067161, 1.033806, -0.736623, -1.232848, -0.000046, 1.670158, 0.830659, -0.947006, -1.655568, 2.115228, -0.204682, -0.317320, -0.259247, -2.256614, 1.768609, -0.940352, 2.617489, -1.161082, 0.488415, 0.160001, -0.462501, -1.547884, 0.061177, 1.531977, 0.885637, -0.115703, 0.110924, -1.409144, 0.480873, 0.066116, 1.202956, 1.374884, 0.055035, -1.198477, -0.552291, -0.982413, -0.388546, 0.495215, 0.732222, -0.372056, -0.402332, 0.740621, 0.382441, -2.032376, -0.336690, -0.559466, 0.160377, -0.150932, -0.333271, 1.341663, 1.160145, 0.076670, 0.170253, -2.123780, -0.558750, 0.138413, 2.014167, -1.759145, 0.869138, 0.123394, 0.076442, -1.298242, 0.437281, 1.676512, 0.162649, 0.832893, -1.591976, -0.819439, 0.214216, -0.911420, 0.139072, 0.532018, -0.780894, -1.067391, 1.148767, -1.122494, -1.501490, 0.805299, 0.517967, 1.044873, 1.127760, 0.503342, 0.116609, 0.905633, -0.056781, 0.468285, 1.822238, 1.779784, -1.304204, -0.787120, -2.216815, 1.331130, -0.342338, -0.419741, 0.605828, -0.010802, -0.285163, -0.026632, 1.611123, -0.061228, -1.101793, -1.718956, 0.203809, -1.272315, 0.616155, 1.924212, -2.224122, 0.411870, 0.814128, 0.080769, -0.490324, 0.918461, -1.869735, -0.878138, -0.159494, -0.926811, -0.062024, 1.141993, 0.880375, 0.625960, -0.429581, -0.936075, 1.072202, 1.320746, 0.404902, 0.113128, 1.007151, 1.177857, -1.744764, -2.508235, 0.014618, -0.115547, 1.815358, -0.316185, 1.275342, 0.061115, -1.660781, 1.610791, 0.327311, 1.821667, -0.435296, 0.474132, 0.231506, -0.397195, -0.019476, 0.320195, -0.158928, 0.184390, 0.227816, 0.591366, 0.338935, 0.481443, 1.192742, 0.464517, -0.188714, 0.137157, -1.042174, 0.812147, 0.420455, -0.501368, 0.361881, -0.514902, 0.803301, -0.321871, 1.194072, 1.162477, -1.042911, -1.043543, 0.194267, -1.305863, -1.247235, 1.296510, 0.273247, 0.259932, 0.485477, -1.181866, 0.951560, -0.387023, 0.276561, -0.363700, 0.727754, 0.278888, 1.496657, 1.174182, -0.662167, 0.397465, -0.097367, 0.556628, 0.890196, -0.827231, 2.505127, -0.322196, 0.318376, 2.180679, 0.461050, 1.313473, -0.404756, 0.094558, -0.258227, -0.430046, 0.029090, 0.308702, 1.467458, -0.377381, 0.183779, -1.228246, 2.507902, 0.770001, -0.483459, -0.709113, 0.679286, 0.300974, 1.381046, -1.338413, 0.169533, -0.152893, -0.731757, 0.317206, -1.132385, -0.171978, -1.593291, -0.277441, -1.082818, 0.058690, -0.743156, 1.375419, -0.175848, 2.298379, -0.758842, -0.344876, -0.065156, 1.701633, -2.291595, 0.911433, 0.163927, 0.067509, 0.430522, -2.050629, -0.985868, 0.031607, -1.156353, -1.942840, -0.734165, 1.143682, -0.747089, 0.378977, 0.719969, -0.257888, -1.444776, -1.299187, 0.081402, -0.380061, 0.411510, 0.920972, -0.648182, -0.610466, 1.554721, 1.295226, -1.258189, -1.439284, -0.200945, 0.208935, -0.978033, 1.031139, -0.753402, -0.789891, -0.215346, -1.658424, 0.375993, 0.139050, -0.689565, 1.005204, -0.023334, -0.191030, 0.289306, 0.178403, 0.579095, -0.040404, 1.720090, 0.394306, -0.913215, 0.662100, 0.754405, 0.853628, 0.605991, -0.933922, -0.647689, -0.105286, 0.363477, -0.108114, 0.732689, 0.425879, -0.043327, 1.814529, 0.155269, 0.289706, 0.035651, -2.006486, 1.632694, 1.373249, 1.345818, 0.053766, -0.923442, -0.344884, -1.671897, 0.915645, -0.498141, -0.127691, 0.706245, -0.814765, 0.781381, 0.045203, 0.972048, -1.784395, 1.173390, -0.494823, 1.487358, 1.446239, 0.034313, 1.603450, 0.074342, -0.816015, 1.586687, 0.386678, 0.737776, -0.601382, 0.171102, 0.522108, 0.543032, 0.335067, -1.505013, 0.282409, -0.654412, -0.847894, 2.247601, 0.933468, 1.241868, -0.776326, -1.514374, 0.447895, -0.259333, -0.842128, 0.384512, 1.351975, 0.062370, 2.568610, -1.990075, -0.951339, -0.262280, 0.596171, 0.663489, -1.177934, 0.492811, -0.886424, -0.797710, -0.121154, 1.552999, 0.313108, -0.298076, -0.156315, 0.351074, 0.125582, -0.207448, -0.178823, 0.785584, -0.126075, -1.112788, 2.490072, -0.473838, -2.842844, 0.868082, -0.833170, 0.195383, -0.932486, -0.794868, -0.266260, 0.985101, -1.522821, -1.158494, -0.722767, 0.514334, 0.015415, -1.122106, -2.154212, -1.518069, -0.541851, 0.768034, -0.803622, 0.427963, -0.841106, -0.670725, -0.382748, -1.333887, -2.448131, 1.174273, 0.730021, -1.206206, 0.584151, -0.865172, -0.302115, -0.690067, -0.446726, 1.575567, 1.058657, 0.520960, 0.914414, -0.061830, 0.128361, -0.782718, 0.370507, 1.194851, 1.343405, -0.061607, 0.263703, -0.652339, 1.207498, -0.716345, 0.846537, -0.473825, 0.042430, 0.041640, 1.234389, 1.338405, 0.738119, 0.666933, -1.267039, -0.390895, 1.062140, -1.118198, -0.846442, 0.342947, 0.351610, -0.115796, 0.016200, -1.098224, 1.091577, -1.057773, 0.007015, -0.902867, 1.813186, -1.782957, -1.121155, 0.121229, 0.404375, 1.084698, -0.607494, 1.489850, -2.232066, 0.879626, 2.396561, -0.743366, 0.602817, 0.249033, -0.224385, -1.027244, 1.475202, -0.346287, -0.354360, 0.668195, 0.288366, -1.143454, -0.254986, 1.019211, -0.883886, 0.669895, 0.335771, -2.501511, -0.000678, 0.521951, 0.926404, 0.026464, -0.100591, -0.481409, 0.446169, -0.695211, 0.140362, -0.311028, -0.651785, -0.623096, -1.360713, -0.489672, 0.549583, 0.755439, -0.260836, -0.567216, 0.030241, -0.140121, 0.246393, 0.975419, 1.382190, -0.798915, 0.239506, -0.268295, -0.159122, -1.585953, 0.747272, -0.532467, -0.285113, -0.796293, 0.356058, 1.319108, 0.757863, 0.239226, 2.130827, -0.449856, 0.101542, 2.613616, 1.723821, -0.108323, -1.593893, -1.280913, 0.795403, 1.258569, 1.309434, 0.655668, 1.482746, 0.649095, 1.144722, -0.820602, -2.744595, 0.634148, -1.483733, -0.641179, 0.551660, -0.910362, 0.473238, 0.932652, 1.372759, -1.544250, -1.516462, -0.560264, -0.238196, 2.254369, -1.064274, -0.566798, 1.100560, 1.121158, -1.439244, 0.164573, 0.082947, -1.576217, 0.359215, 0.519583, 0.277496, -2.064572, -0.553201, -0.472310, -0.531897, -1.262510, -1.490321, -0.184336, 0.213583, -0.082576, 0.712710, 0.889190, -0.184382, -1.018899, -0.865866, 1.028713, 0.255126, -1.152397, -2.668563, 1.884888, 1.037127, -0.129276, -0.983769, 0.578943, -0.315907, -2.392622, -2.068044, -0.711312, -0.699440, 0.713103, 1.154616, -0.193342, -0.056196, -0.715936, -1.829736, -0.843283, 0.291382, -0.332320, 1.464449, -0.077736, -0.179879, -0.519876, -0.884140, 2.269854, -1.099012, -0.826958, 1.547832, -1.126261, -0.877795, 0.028225, 1.254288, -1.516589, -0.016362, -0.556604, -1.370548, -0.709287, -0.253742, 0.732590, -0.269497, 0.677645, -1.076326, 0.936983, -0.153014, 0.443587, -0.371669, -0.521957, -1.564137, 0.236757, -0.856678, 0.502733, -0.034335, -0.123695, 0.031425, 0.604081, 1.792542, -0.002419, -1.149064, 2.582753, 0.757973, 0.879873, 1.036599, 2.350180, -0.481103, 1.953600, 0.519668, 0.982878, 0.373251, -1.823076, 0.935773, -0.058210, -1.619501, -1.008537, -0.111197, -0.279499, 0.020806, 0.474039, 0.510868, 0.330736, 0.789774, -0.993991, -1.225134, -0.023239, 1.798303, 0.101420, -0.145706, -1.219598, 0.717533, -0.065697, 0.081663, -0.379192, -0.822726, -0.791134, 0.618944, 0.589658, -1.060974, -0.535595, -0.849699, -0.372148, 0.165658, -1.706431, 0.246088, -0.666787, -0.649115, 1.886058, -2.048868, 0.073428, -0.127120, -0.194877, -0.895977, -0.131984, -0.452674, 0.353178, -0.872516, 0.311068, -0.992896, -0.029525, -0.354854, 1.361940, -0.156905, 0.398816, -0.410035, 2.640672, 0.195255, 1.105745, 0.591894, 1.178438, -1.658445, -2.114143, 1.353203, 1.882879, 0.647577, -0.130688, 0.182636, -0.299645, -0.836746, 1.852175, 0.260973, 0.848115, -0.445454, -1.415326, -0.682726, -0.062508, -1.373027, 0.284194, 3.046700, -0.270779, -0.485439, 0.379177, -0.533127, -2.622355, -0.305153, -2.990642, -0.382298, -0.952272, -0.564787, 0.633838, -0.497530, -1.150794, 0.521476, 0.647438, 0.982146, 0.144940, -1.737650, -0.189878, 1.814182, 0.044093, 0.250311, -0.393888, -0.646298, 0.282796, -0.546004, 0.950596, -1.219468, 0.101956, -0.329027, -0.893116, 0.382298, -0.835156, 0.455222, -0.810042, -1.728659, 0.070281, 0.522243, 0.149543, 1.081405, -2.061179, -0.342778, -1.242144, -1.000491, -1.606063, 0.400750, 0.344441, 0.475442, 0.023703, -0.817914, 1.335303, -1.244611, 0.919742, -1.430083, 0.284198, 1.519820, 1.193296, 1.914698, 0.280096, -0.082116, -1.293697, 1.806942, 0.233742, -1.727113, 1.325746, -0.125245, -1.457025, 0.440654, -0.518948, -0.542313, 0.803286, -1.918487, -0.392634, 0.309334, -1.286398, 0.642813, -0.708413, -0.980393, 0.256864, 0.895897, -0.982714, 2.412287, 0.639417, 0.296300, -0.432270, -1.326373, -1.386119, -0.859217, 0.339147, -1.205001, 2.308950, -1.297361, -1.555357, 0.871930, 1.075600, -1.038596, 0.174123, -1.466021, -0.887464, 0.439317, -1.723472, -0.773080, 1.229570, 0.724867, -1.200188, -0.651788, 1.682758, 0.623271, 0.819648, 1.764677, 1.634892, -1.234713, -1.525173, 0.033753, -1.208368, 0.772260, 0.550460, -0.752932, 0.570802, -0.145400, -0.515983, 0.929833, -0.670029, -1.338948, 0.810665, -1.075947, 3.239363, 1.214045, -0.173753, 1.086475, -2.183919, -0.727514, 0.878490, -0.231816, 0.098383, 1.069742, -0.139798, 1.383972, -1.431137, -0.155524, 0.107187, 0.818522, -0.419686, 0.090750, -0.165686, -0.032497, -0.772933, 0.675015, -0.051851, 0.604939, 0.383417, 0.006427, 0.747382, -0.786682, 0.337299, -0.811814, -0.214729, 0.046527, 1.570973, 0.590468, 1.954929, 1.115029, 0.126530, 0.151831, 1.720756, 0.185496, 0.164751, -0.716055, 1.646703, 0.470563, 0.826827, -0.707098, -0.869494, -1.056069, 1.706341, -0.947747, 0.311783, 0.850451, 1.021112, 1.052958, -0.824862, 0.359316, 0.645330, 0.836770, 0.408352, 0.783425, 0.448322, 0.118488, -0.123785, 0.543083, 1.254135, -2.438142, -0.046303, 0.687505, -0.725906, -1.399050, 0.666024, 0.020835, -1.425929, -0.504805, 0.004117, 0.251806, 1.806840, -1.289493, 0.948377, -0.173118, -0.450858, 0.899437, 0.829159, 0.648834, -0.695746, -0.500749, 0.106845, 0.643378, 1.969162, -0.384268, -1.237373, 0.657158, 1.141960, 0.576006, -0.154924, -0.522245, 0.235861, -1.251629, 1.227190, 0.124610, -0.106148, 0.882952, -1.566059, 0.394798, 0.631748, 1.561614, -0.857375, -0.298411, -0.114183, 3.107838, 0.634903, 1.697383, -1.368094, 1.414419, 1.685980, 0.469506, -2.339400, -0.470354, -0.539957, 0.752268, 1.948096, -1.299947, 2.209646, -0.972365, 3.123261, -0.499789, 0.411832, -2.754864, 0.050477, 0.469501, -2.038935, -0.878044, 0.855652, 0.199876, -0.703543, 0.374343, 1.167835, 1.153715, 0.544666, -0.532937, -0.307288, -0.517039, 0.244624, -0.107869, 0.543769, 1.484097, 0.553920, -0.599081, -0.033657, -0.389028, -0.929977, 0.167219, 1.342763, -0.579549, -0.480978, 0.014840, -1.950127, 1.157626, -0.364853, 0.077331, 0.296183, -0.877377, -0.394357, -0.290307, -1.573712, 0.192010, 1.525145, -1.233198, -0.878320, -1.396172, -0.843371, -0.083626, 1.278501, -1.203108, 2.158181, -0.338898, -0.520221, -0.763082, 0.554311, -0.414722, -0.489690, 0.903157, 0.946642, -1.763235, -0.709302, 0.733793, 2.099186, -0.430129, -1.053120, -0.707658, 0.187597, 0.870224, 0.329374, 1.564309, -0.113607, -0.449934, 1.140110, 1.148917, 0.261029, 0.854663, 1.254778, 0.149178, 1.697518, 0.218603, 1.414580, 0.662400, 1.188810, 0.866572, 0.966318, -1.228429, -0.558151, -0.775880, -0.321728, 1.015275, -1.177651, 0.624961, 1.592404, 0.658400, -0.961794, 0.788909, -0.298850, 0.474365, -0.305631, -1.274752, -0.247920, -0.565445, -1.110976, -0.094393, 0.128003, 1.523329, -0.592129, -0.273271, 0.338141, 0.164882, 0.140703, 0.856759, 0.557581, 0.725007, 0.887878, -1.575801, 1.082501, 0.802525, -0.846624, -2.450380, -0.027417, 1.160120, -0.876875, 0.665872, 0.056115, 0.678734, 0.522773, 2.375005, -0.570240, 0.351812, -1.215094, 1.496298, 0.466337, 0.004833, 1.362081, -0.665827, -0.345820, 0.240475, 0.971472, 0.138472, 0.699409, -0.897390, 0.145269, 0.442312, -0.800023, 0.691540, 0.519334, 0.839232, 0.124278, 2.193990, 0.970328, -0.130000, 1.355692, -0.177570, 0.394085, 0.140887, 0.317281, 1.499767, 1.116584, 1.466801, 0.156931, 0.172191, -0.366363, -0.816484, -0.484801, -0.394532, 1.492783, 1.097460, -1.346779, 1.065015, -0.409580, 0.587696, 0.302069, 1.053640, 1.240212, 1.116937, 0.823102, 0.532479, 1.161337, 0.534540, 1.329467, -1.635893, 1.344311, 1.031487, -0.465008, 0.011091, 1.317150, -0.706851, -0.482200, -0.555220, 0.970122, -0.915416, 0.337366, -1.188465, 0.823592, -0.280394, 1.129206, 1.262385, 0.206818, -0.958472, -0.403096, -1.960969, -0.156436, -1.817728, 0.058621, -0.937661, -2.574958, 1.196240, -2.174734, 0.660575, -0.098401, -1.124977, -0.405538, 0.262015, -1.301079, 0.054430, 0.463855, -0.392882, 0.718025, 0.927174, -0.943939, -1.886439, 0.287906, 0.142918, 0.624646, 1.909642, -0.890252, -1.237076, -0.431491, -0.385939, -0.159040, -2.060808, -0.563694, 1.703303, 0.171865, 0.610756, -1.339435, -1.033214, 1.193579, -0.112958, -0.840296, -0.875586, 1.571828, -1.117643, -0.326746, -0.642918, 1.172195, 1.261208, 0.506327, -0.973180, -0.623980, 1.680725, 0.664086, -0.557622, -1.325644, 1.221144, -0.243666, 0.273273, -1.167349, -0.277732, 0.215382, 0.296523, 1.369266, -1.529631, 1.278960, -1.446984, 0.898180, 1.610570, 0.420249, 1.580500, 0.741431, 0.415944, -0.271828, -1.327712, -0.858541, 1.980369, 0.433231, -1.345234, -0.136021, -0.712164, 0.719573, 0.002668, 0.126652, -0.225729, 1.442768, -0.005062, 0.278475, 0.548349, 0.333459, 0.569977, -0.229757, 0.542157, -0.003927, -0.229945, 0.465486, -0.338063, -0.256578, 0.621886, -1.155744, -0.989504, -0.059479, -0.681969, -0.278101, 0.844314, -1.111082, -1.351723, -0.448149, 0.024706, 0.570856, -0.816887, 1.129449, -0.586894, 1.377468, -1.419398, 0.824789, -0.553485, 0.429284, 0.072544, -0.091782, 2.559306, 1.280580, -0.053309, 1.017680, 0.011755, -0.557787, -1.749623, 0.506322, -1.244153, -0.635163, -0.052143, -0.007948, -1.450335, 0.031427, -0.445962, 0.751267, -0.226573, -1.339501, -0.697049, -0.301933, 0.741104, 1.593529, -1.635407, 1.043478, 0.560015, 0.461283, 0.577739, 0.767304, 0.563988, 0.167180, -0.716158, -0.911206, 0.059151, 1.285289, -0.023074, 0.461194, -2.312461, 0.746139, -1.397856, 1.760796, -0.265294, 0.453073, 1.694083, -0.042914, 0.141447, -1.393602, 0.203397, 1.395482, -0.538113, -0.289765, 1.915001, 1.538113, -1.045848, 0.787230, 1.567099, 0.553045, 0.923660, -0.443930, 0.190700, -0.724304, 1.197513, -1.023009, -0.517609, 1.231048, 0.311936, 0.163326, 1.128081, 1.660442, 0.910080, -0.204356, -2.158100, -0.347869, -0.281085, 0.050793, 0.504579, -1.155712, -0.036819, 0.916988, 0.121339, 0.177754, -1.907408, -0.894663, -0.528765, -2.300378, -0.314587, 0.214344, 0.199457, -0.956849, 0.338651, 0.372935, -0.230400, 0.947612, -1.382138, 0.235219, 0.578544, 2.782571, -0.931137, 0.262602, -1.670414, -0.930342, -1.986811, 0.536506, 1.707789, 1.316520, -0.279316, -1.736040, -0.094301, -0.278340, -1.575139, 2.010543, 0.125107, -0.190962, 0.947005, -0.044107, 0.902201, 0.020473, 1.511117, -0.527767, -2.871304, 0.276488, -1.317324, 0.492933, -1.073972, 1.797996, -0.489012, 0.056658, 0.511585, 1.054746, 0.137984, 1.035550, 0.467196, 0.749252, -0.161535, 0.729445, -0.623730, -0.127494, -0.320258, 0.162846, -0.790931, 0.639133, -0.409762, 0.426748, 0.311413, -1.838424, 1.447363, 1.086839, 0.781768, -1.108313, -1.115052, 0.835288, 1.382072, -0.015458, -0.245803, 0.968015, -1.123724, 0.494564, -0.038508, -0.387131, 1.106225, 0.009442, 1.200671, 0.528790, -0.144378, -0.606111, 0.371866, -0.468716, 1.733440, 0.869307, -1.476297, -2.006900, 0.705579, 0.841590, -2.070354, -0.555132, 0.746545, 0.100803, 0.814912, 1.536637, -0.787772, -0.042370, -0.310165, 1.355631, -0.719627, 0.342789, 0.973230, -0.611076, 0.906250, 0.261213, -0.369027, -0.301825, 1.835713, 2.119118, -0.865479, 0.560915, -0.812310, 1.026368, 2.041843, -0.175875, 0.574802, 0.954238, 1.171314, 0.235029, 0.002576, 0.949293, -0.143947, 0.648565, 0.677570, 0.466369, -0.045866, -0.067830, -0.182763, 0.241196, -0.589831, 0.641594, 0.469336, -0.704943, 0.765208, 1.405321, -2.586930, 0.504387, 0.923522, -0.413934, -1.287781, -1.170544, -1.276405, 2.573697, 0.866409, -0.392593, -0.611072, 0.064542, 0.500189, -1.838727, -0.045371, 0.303432, -0.228493, 0.024984, 0.247104, -0.176999, 1.729159, -0.183860, -0.322647, -1.273515, -0.431710, -0.407515, -0.529484, -0.539063, -1.531165, 0.396057, 1.322986, -0.226699, 0.099704, 0.082171, 0.573679, 1.620993, -1.754027, -0.031096, 0.159269, 1.283569, 0.132250, 2.616592, -0.027288, 0.878672, -0.852922, -0.017852, -0.068829, 0.337308, -1.504776, -0.626574, 0.482235, 0.037153, 0.766060, 0.138370, -0.782014, -0.051792, 0.035599, -0.451657, -1.357122, 0.204080, -0.537314, -0.851261, 0.625139, 1.466073, 0.450127, -0.179821, 0.829165, -0.225354, 0.510498, -1.195154, 1.283967, 0.556581, -0.196188, 0.239925, -0.251414, 0.218577, 1.006958, 1.481866, 0.618208, -1.579377, 0.209141, 2.507805, 0.643082, -0.349892, 0.210590, -0.055031, -2.033960, -0.196276, 0.563640, 1.146144, 0.533118, -1.008577, 1.259767, -0.679221, -1.768842, -0.691799, -0.050704, -0.064375, 1.203347, -1.261703, -0.029635, -1.267219, 1.261616, 1.540422, 2.697761, 0.936547, -1.383151, 1.185941, -0.784177, 0.480951, -0.088694, -1.873029, -1.000411, 0.288119, 0.026073, 1.486634, -0.368049, -0.008690, 1.211875, -0.181960, 0.052896, 0.157682, 0.413803, -0.047971, -1.276602, -0.137402, -0.932968, 1.203422, 1.985214, 0.173327, 0.826649, 1.216570, 1.537049, -0.095690, 0.894564, -0.577314, -1.067967, -1.616430, -0.892332, -0.100268, -0.162172, 0.037294, 2.931959, -0.390638, 2.476921, -0.850866, -1.880034, 0.940545, 1.168214, -0.372699, -0.997372, -1.344309, 0.366253, -0.414391, 0.806214, 1.105949, -1.735690, -0.749426, 0.442343, 0.356426, 1.309756, 0.239795, -1.498293, -1.174952, 2.026730, 1.274727, -0.631073, 0.218077, 0.842128, 0.715973, 0.513658, -1.332315, 1.421439, 0.075649, -0.485636, -1.100232, -0.425527, 1.913609, -0.424338, -0.125630, 0.826761, 0.868808, -0.515694, 0.420084, 0.837584, -0.256476, 0.462730, 2.109076, -1.325152, -2.614274, 0.381084, -1.864672, 1.062618, 0.796504, -0.548352, 0.412650, 1.802110, -0.455621, 0.653162, 0.205297, 1.088083, 1.418042, 1.840997, -1.000186, -0.129693, 0.710866, 0.349496, 1.624947, 0.663476, -0.930858, -0.764883, 0.844605, 0.344576, 1.894931, -1.110100, 0.055522, 1.457486, 0.175511, -0.673116, -0.825865, -0.312506, 0.085200, -1.005920, -1.338646, -0.968501, 1.783331, -0.033418, 1.337914, 1.354819, -1.150176, 0.542002, -0.819032, -0.929293, -0.886023, 0.540529, 0.529881, 0.461316, 2.198988, 1.039596, -0.381874, 0.994611, -0.097990, -0.618171, 1.036063, -0.128804, -0.059572, -1.422507, -1.616396, -0.567453, -1.684671, -1.154930, -2.122177, 0.020472, 0.188448, -0.281856, -0.614978, -0.861772, 1.371670, 0.963873, 1.440382, 0.819237, -1.466511, 0.046215, 1.027821, -1.062101, 0.870284, -1.170438, 1.002682, 0.128588, -0.362307, 1.194106, 1.529350, 1.079643, -0.867110, 0.173117, 1.753436, -0.384962, -0.210062, -1.211264, 0.914321, 0.831748, -0.289767, -0.393380, -1.045292, -0.218983, 0.162850, 0.576392, -0.747760, -2.132529, -0.374764, 1.075252, 1.368446, 0.614433, 0.784159, 0.998922, 1.402115, 0.413642, 0.853606, 0.307536, 1.018278, 1.186868, 0.308069, -2.051404, -0.209297, -0.007471, 0.113945, -1.181682, 0.397277, 1.547440, 0.454210, -1.422295, -0.274718, -0.886599, -2.117491, 0.094100, -1.408151, -0.910527, 0.202663, -2.111931, -0.667701, 0.016120, 0.423472, -0.129547, -0.685574, 0.277973, 0.664660, 0.154029, -0.002274, -0.112638, -0.220912, 0.710863, -1.155411, -0.602838, 0.525730, -0.493204, 0.066081, 0.762007, 1.808286, -1.491509, -1.653607, 1.320863, -1.017336, -1.597963, 0.503794, -0.552158, -0.380628, -0.232112, 1.900824, 0.449515, 0.805114, 0.281926, -1.072548, 0.304914, 0.241748, -0.147825, 0.739446, -0.575660, 0.078954, 0.503776, 0.402500, -0.871709, 1.995089, 0.141639, -0.321793, 2.458877, 0.791777, 0.213938, -0.801643, -1.176360, -1.628903, 0.227337, -0.202964, 2.377225, -0.414948, -0.212604, -0.029952, 1.667230, -0.648748, 0.793706, 0.315122, -0.127790, 0.157811, -0.023022, 1.127182, 0.690497, -0.080774, 1.389231, 1.388951, 0.315906, -0.941514, -0.668299, 0.626686, 0.366315, 0.761998, -1.691397, -0.567768, 0.782920, 0.087398, -0.989534, -0.089442, -1.112205, -1.655602, 0.845405, -0.979932, -0.621913, 0.341469, -0.841533, 0.763129, 1.964652, 0.641574, 0.125370, -0.248421, -0.119691, 0.094154, 0.187117, -0.325465, 1.033841, 1.367824, 0.035982, -1.074745, -0.205548, 1.107619, -0.639589, -0.566624, -0.071150, 1.873251, -0.414732, -0.043120, -1.491350, 0.132143, -0.795502, 1.011363, -2.610685, -1.372581, -0.216076, 1.264477, -0.814401, 1.357369, 0.830488, -1.478731, -0.739502, -0.501687, -0.126677, 1.461818, 0.332628, 1.763559, -2.403701, 1.248663, -0.115690, 0.544353, 0.911584, 0.172331, -1.461996, -1.146678, -0.504065, 0.353899, -0.222511, -0.319474, -0.712997, -0.933359, -0.259083, 0.220278, 0.984686, 0.806947, -0.352082, 0.478239, 0.540776, -0.302879, 0.218109, -0.402735, 0.043845, -0.257444, 1.330354, 0.685986, -0.628673, -0.786473, 0.451059, 0.223090, 2.746953, -3.192045, 1.050389, 1.312766, 0.185920, 0.204864, -0.980669, 0.945794, 0.469161, -0.845435, 0.295456, 0.364052, -0.432265, 1.109849, -0.645794, 0.211575, 0.035461, -0.271523, -0.934340, 1.081102, 0.399726, -1.789979, 1.380088, -0.775216, 0.308756, 0.296923, 0.621531, -0.398855, -1.944472, 0.135696, 3.078555, 1.633316, 2.472620, -0.027389, -1.379917, -1.213266, -0.552189, -1.117704, -0.627201, -0.474243, 0.233880, 0.858701, 0.597096, 0.995571, -0.149394, 0.131599, 3.023540, 0.990320, -0.387559, 0.194157, -0.661549, 0.992530, -1.085806, 1.088710, -0.492843, -0.220814, -0.586818, 1.303468, -1.165376, -0.915063, 1.198294, -1.412731, -0.014002, 0.427326, 0.613732, 1.466150, 1.146561, 0.081403, -0.760330, -1.727830, 0.764730, -0.843078, 0.992430, -0.045395, 0.474261, 1.422835, -0.962950, -0.041529, -0.922869, 0.187789, -0.711709, 0.324116, 0.454405, 0.385090, -0.869315, -2.257521, -1.488564, -1.072348, 1.090927, 0.381059, -0.805549, -0.611456, -0.237535, -1.480893, -1.207193, -1.068438, -0.626834, 1.455436, 1.616093, 1.336291, -0.844376, 1.005406, 1.957869, -0.104202, -0.074938, 0.298070, -0.459832, 1.485114, -0.101477, 0.634632, 1.515647, -0.275526, 0.030645, 1.433441, 0.666253, -1.690786, -1.178418, 2.547283, -0.257785, 0.439092, -1.469637, 0.077075, 0.431684, 0.189967, -0.494375, -0.861028, -0.332260, -0.410466, 0.989876, -1.999406, -1.827448, 1.385238, -0.346283, 2.047734, -0.404249, -0.219221, -0.085152, -0.624391, -0.257860, -2.415328, -0.952369, 0.894287, -0.984438, 1.569269, -1.042673, 0.221111, -1.406157, 0.543850, -0.633184, 0.059251, -1.574110, 1.425475, 0.077419, 0.403313, -0.536827, -1.515825, 0.789457, 1.179071, 0.953108, 0.821623, -0.973314, 0.401178, 0.229556, 0.262362, 1.087518, 0.873532, 0.379720, 0.381720, -0.085807, 0.896269, 0.461447, 2.463325, -2.518463, 0.851560, -1.329320, 0.092004, 1.578780, -0.572657, 0.767601, -1.079418, 1.168974, -0.627887, -0.011383, -0.118989, 0.531131, 1.143228, 1.902901, -0.200627, -0.486797, 1.641399, 0.608356, -0.216496, 0.725261, -0.162895, 0.330982, 0.820958, -0.921749, -0.733622, 0.310342, 0.553115, 1.359880, 0.082874, -0.149544, -0.742177, -1.103584, 0.393630, -0.398683, 0.626538, 0.424161, 1.507152, -0.502384, 1.191880, -0.234665, -1.903783, -0.023994, 0.784056, -0.657606, 0.406854, 2.338391, -1.410067, -0.127203, 0.532538, -1.027586, -0.244461, 0.232750, -1.394837, -0.424207, -0.734668, -1.031211, 0.169774, -0.503059, -2.034449, 0.502734, -1.014961, -0.293693, 1.015388, 0.374324, 0.943302, -1.221246, 0.824060, -0.720302, 1.723397, 0.505406, 0.704047, -1.924815, 0.199160, -1.213922, -2.698929, 1.703014, 0.470391, 0.648153, 0.360156, 1.165374, -1.145570, -0.052626, 1.174861, -0.747914, -1.843718, 1.308031, 2.207995, -0.748276, -0.513953, -1.100582, 0.595030, -1.228178, -0.579758, -0.033902, 0.625216, -0.004651, 2.388036, -0.914000, 0.016502, 1.338437, -1.013636, 0.240145, 0.016415, 1.743971}, - { -1.050104, 0.851740, 1.760948, -0.260951, 0.773147, -0.085042, 0.984130, -0.694930, -0.848098, -0.303356, 0.486844, -0.036915, 0.756838, 0.270384, -0.096876, -1.705442, -0.875968, 0.148035, 1.944572, 0.137014, 1.051771, 0.101055, -0.591238, 0.228010, -0.222546, -0.522328, -0.279744, -1.260191, 0.411245, -2.832319, -2.845732, -0.403106, 1.321160, -1.301782, 0.283506, -0.170718, -0.337379, 1.025586, 0.947707, -0.013840, -1.617493, -1.872769, -0.494146, -0.277383, 0.426942, 0.222001, -0.989461, 0.235463, -0.326515, -0.326163, 0.925300, -0.695288, -0.055403, 1.661719, 2.754292, 2.063362, -0.452832, 0.441295, -0.094271, -1.358375, -1.358480, 0.286429, -0.310945, -0.391619, -0.611637, 1.299027, 1.484519, -1.884884, 0.822183, -0.131740, 1.548682, 1.914729, 0.121496, 1.034936, -0.829079, 0.135968, -1.233624, 0.468950, -0.739665, 1.052215, 0.231715, 0.835897, 0.146238, -0.596226, -0.952935, 0.705589, 0.462045, -0.749679, 0.734601, 0.164376, -0.632611, -0.839422, -0.625897, -1.060581, 0.942459, -0.782899, -0.507493, -0.553138, -3.155368, 0.325823, 1.181858, 1.834368, 1.259962, -1.352813, -0.804411, -1.289760, -0.856301, -0.447351, -1.797498, -0.244937, 1.902796, 0.586957, 0.558029, 0.044265, 0.219389, -0.799320, 1.020997, -0.389787, -2.005269, -1.162310, 1.277081, -0.024593, -0.536412, -0.627559, 0.701306, 0.564163, -1.055129, 0.891800, 1.832375, -0.482354, 1.175039, -0.345960, -0.085098, 1.101402, 0.342817, -0.387280, 2.258290, -0.428307, -0.437184, 1.238583, 0.208886, -0.501958, 1.711706, -0.514997, -1.170438, 0.790473, -0.138227, 0.454635, -0.911892, -1.027287, 1.166656, -0.945643, 0.753910, 0.671653, 0.963674, -1.020669, 0.240791, 1.571823, 0.320863, 0.288264, -3.088539, 0.217848, 1.370296, 1.675737, 0.951504, 1.233946, -2.394449, -1.489108, -0.831133, 1.126583, 1.759461, 0.604534, -1.883522, 0.729702, 1.428674, 1.247608, 2.020521, 1.785367, 2.022477, 0.282335, -0.225219, -0.899817, 1.134865, -0.012182, -0.356991, -2.958370, 0.528379, -0.091994, 1.612938, 0.177113, -0.174741, -0.820671, -0.050537, -0.334556, -0.558426, -1.262703, 0.813752, 0.532830, 0.102357, -0.585148, -0.554758, 0.855231, -0.708542, 0.354830, 2.242085, -0.837441, -0.308129, 0.672828, -0.067562, 0.608800, 1.137189, -0.208148, -0.238313, 0.524548, 0.919691, -0.553098, -0.423979, 0.452772, -0.399442, -0.718471, -0.751696, 0.642043, -1.399958, 0.835269, -0.832004, 0.873779, 1.670800, -0.305059, -1.683703, 1.194154, 0.971555, -1.267333, 0.384064, -0.408261, -1.253819, -0.855192, 2.680749, 0.031036, 1.109628, 0.315149, 0.785434, 1.392679, 0.451148, -0.705222, -0.594100, -1.729232, -0.870825, 0.242882, 0.737568, 0.405518, 0.958272, 0.857112, 0.763798, 0.029028, 0.234864, 0.763468, 0.039577, 0.668616, 0.563011, 0.862598, 0.355550, 0.822836, -1.030874, -0.614458, -0.175062, -1.544618, -0.085549, 0.437895, 1.150567, 0.935721, -1.012053, 1.238802, -1.052835, 0.509425, -0.662986, -1.055440, 1.885569, -0.595978, 0.700366, 0.035828, 0.608206, -0.180353, -0.157545, 0.820219, 0.527421, 1.513075, -0.119157, 0.136759, -1.303168, 0.208308, -0.399784, -1.406116, -0.205548, -1.623276, 1.193833, 0.359449, -0.913725, 0.608309, 0.418733, -0.746842, -2.197005, -0.555930, -0.610731, -0.127108, 1.005005, 1.805324, -1.007350, -1.075301, -1.207348, -0.706700, 0.987397, 1.020994, -0.750428, 0.584071, 1.748245, -1.332641, -0.238638, -0.269564, 0.355541, 1.727980, 0.442839, -0.099061, 0.366921, -2.100170, -0.179568, 0.160748, -0.802068, -0.026250, -0.546199, -0.093223, 1.209833, 1.119917, 0.145115, 0.363496, -1.858578, 0.524531, 0.125150, 0.113246, 0.132912, 0.077245, 0.818551, 0.308586, -0.293372, 0.667801, 0.673581, -1.345068, 1.026106, -0.015549, -1.997613, -0.316884, 0.788533, -0.654679, 0.758228, -0.403889, 0.185800, 0.046381, 0.316637, 0.340012, -0.162078, 1.098674, 0.039271, -0.957268, 0.332483, 0.273801, -1.566557, -0.176081, 0.175404, -0.864928, 1.414942, 0.310111, 0.685319, 0.116172, 0.430560, 2.224497, 1.927643, 1.832579, -1.691567, 0.955506, -0.463715, -0.088780, 0.908587, -0.178115, -0.021907, 0.847479, -0.959113, 1.409545, 0.024926, -0.902441, -0.100101, -1.183805, 0.693638, -1.956918, 0.308475, -0.492400, 1.656146, -0.538849, -0.449507, 0.116587, -2.057016, -1.341323, 1.935542, 0.229906, 0.633852, 1.607449, -0.113654, -1.453684, -0.177316, -0.388556, 0.337893, -0.399097, 1.178495, 0.433103, 0.068697, -0.934139, 0.551306, -0.509546, 0.986441, -1.254727, -0.152533, 0.922647, 1.704715, -0.516479, 0.984688, -0.222721, 0.621025, -0.290732, -0.133148, 0.748114, -1.188029, 1.492964, 1.800189, -0.321394, 0.017701, 0.271388, 1.519788, 0.325735, 0.369316, -1.117259, 0.558981, 0.026964, 0.821030, -0.540670, -1.410102, 0.393539, 0.907437, 0.285348, -1.244247, 0.457723, 0.449056, 1.896329, 1.051571, 1.353777, 1.092753, -0.289386, -1.517437, -0.447366, 0.610817, -0.415439, 0.282971, 0.415185, 0.209349, -0.119361, 0.598789, -0.246369, -2.540778, -2.157437, 1.039342, 0.176405, 0.202913, 0.401381, -0.096723, -1.802381, 1.067456, 0.060001, -0.155005, 0.100308, 1.399262, -1.737475, -2.401234, -0.244674, -1.802676, 0.415239, 0.284430, -0.262086, 1.569243, 1.363004, 1.014927, 0.126073, -1.263765, 0.927902, 0.202006, 1.323096, 0.540385, 0.012786, -0.068971, -0.291507, -0.238783, -0.232579, 1.374966, 0.534851, 0.030856, 1.688450, 0.069913, 0.739804, 2.261253, -1.111018, 0.091270, -0.173607, 0.424485, 0.924848, 0.693890, 0.849674, 0.334656, 0.919878, 1.374691, 1.137824, -1.188757, 0.456192, 1.517513, -0.699862, -0.471799, -0.307264, -1.127343, 1.504756, -1.595168, 0.745482, 0.719533, -0.279094, 0.186277, 1.080644, 2.017308, -0.026321, -0.064334, 0.715085, 1.963507, -1.674630, -0.467564, 0.354547, -0.003942, -1.293154, -0.696808, 0.282367, 0.022179, 0.867287, 0.348183, 0.047591, 1.155602, -0.183960, -1.733841, -0.011869, 1.697129, 1.585940, 0.533170, -0.053558, 0.712089, 1.049178, -0.764531, 0.933778, -0.619964, -0.673276, 0.755021, -0.550821, 1.002476, 0.655378, -0.521221, -1.231635, 0.810712, 0.498618, 1.592913, -1.874308, 0.767303, 0.423292, -0.110988, -0.038420, -0.768042, -0.003506, -1.356288, 0.171800, -0.235799, 0.671319, -0.575070, -0.771590, 3.047997, -1.891565, -1.081929, -1.215924, 2.047206, 0.717007, -0.801868, 0.411989, 0.118208, -1.344364, 0.239152, -0.631539, 1.334027, -0.706374, 1.589629, 0.997319, -0.556157, -0.417240, 1.038071, 0.062831, -1.203538, 0.784616, 0.155421, -0.097677, -0.729028, -0.912433, -0.516493, 0.905656, -0.297156, -0.672749, 0.364179, -0.688422, 2.347499, 0.238138, -0.260670, -2.338491, 1.791093, -2.554378, -0.060427, -1.297048, 1.181877, -0.946683, -0.945687, 0.993629, -1.734293, -1.096941, -0.358513, 1.112343, -0.521198, -0.437314, 0.025110, -0.113967, -0.992061, -0.713330, 0.681993, -0.225123, 2.293878, 1.403153, 0.739554, 0.310456, -1.291777, -0.328176, -0.683770, 0.238519, 0.254914, 0.153806, -0.987748, 0.513807, 0.424743, 0.945607, -0.220656, -0.490016, 0.738459, 2.185630, -0.059705, 2.373328, -0.602771, -0.845253, -0.462983, 0.403368, -0.064104, -1.280047, -0.293702, 0.335559, -1.489431, 0.180948, 1.100480, -0.782283, -0.460562, 1.113970, -0.097187, -1.283036, 1.244986, -0.236520, 0.367219, 1.059567, 0.461540, -1.434444, 0.608749, -0.017703, -0.264461, 2.668455, -0.805338, -1.732785, 1.052351, -0.205993, -0.384507, 0.917261, 1.330197, 1.114638, 0.363902, 2.749459, -0.606039, -1.512052, 1.364934, 0.401135, 0.283434, -0.178777, -0.940149, 0.401252, 0.191250, -1.052515, -0.673125, 1.348890, 0.418493, -0.690067, 0.002045, -0.974710, 0.894730, 0.229738, 1.047669, 1.274858, -0.337723, -0.370015, 0.306857, 0.625710, -0.400371, -0.358819, -0.755431, -0.898174, 1.017288, 2.520072, 1.242687, 0.361563, -0.596693, -1.447858, -0.629902, 0.396876, 0.959751, -0.064345, 0.206358, 1.876887, 1.201578, 0.999628, -0.057378, -1.434791, -2.983628, -0.654079, -1.426744, 0.564790, -0.033222, -0.246810, 2.335053, -0.062262, 1.784829, 0.602693, -1.550762, -0.032094, -1.045864, -1.888092, 1.812221, -1.009752, -0.058859, 0.113872, -0.188944, 0.845872, 0.727605, -0.369217, -0.467735, -0.903551, 0.230362, -0.968503, -0.119049, 2.130219, 1.992388, -0.064370, -1.146456, -0.771580, -0.600606, 0.094632, -1.308043, 0.386780, 0.218758, -0.354974, -0.600921, 0.197313, 0.802285, 1.828176, -0.215307, 0.369628, 0.635802, 0.717933, 0.181594, 0.209398, 0.314150, -0.212557, 1.022041, 0.525169, 0.546904, 0.692528, -0.908854, 0.014867, -1.394348, 0.141442, -0.030332, 2.840991, -0.778409, 0.016614, -0.138869, -1.199519, 0.222956, 0.800841, -0.865870, -0.389325, -0.106275, 0.489065, 0.250935, -1.539800, 1.393391, -1.455775, -0.976652, 0.895871, -0.326881, 1.014845, -0.472287, 0.764726, -0.564137, -0.188655, -0.135541, -0.837198, -2.076240, 0.241777, -0.068509, 0.901481, 0.197587, 0.622280, 1.084918, 0.470674, -0.262295, 0.068701, 0.172609, -0.682893, -0.621625, 0.063194, -1.208267, -0.704549, -0.861561, -1.730424, 1.212334, -1.769090, -0.962524, -0.723652, -1.349620, -0.187003, 0.410022, 0.661138, -0.707714, 1.260247, -0.414381, 0.758798, 0.683419, -0.261396, 0.061901, 0.149950, 0.266812, -0.726238, -0.486876, 0.062698, 0.553897, 0.479294, -1.448374, 0.507636, -2.346486, 1.063414, -0.822606, -0.340498, 0.236981, -0.075136, -0.677558, 1.116128, 0.449878, -0.399137, -1.245261, -0.580172, -0.677592, -1.399622, 0.945854, -0.337612, 0.562182, 1.480059, 1.390533, -0.972220, 1.013287, -0.725117, -0.990412, 1.211104, 0.519324, -1.656554, -2.638333, 0.651821, 0.624165, 1.270033, 1.258196, 0.494269, 0.238732, 0.531198, -0.072483, 0.557525, -0.322904, -0.074844, -0.907902, -0.221786, 0.457757, -0.598915, -0.322739, 0.346953, 0.868127, 0.360280, -1.678912, 1.452304, -0.019834, -0.458903, -0.216007, 1.091661, -0.807372, -0.424735, 1.225945, 0.385545, 0.412738, -0.239363, -0.507021, -0.435201, -0.048752, -1.630993, 0.818481, 0.760323, -1.176984, 0.197156, -1.038101, -1.067224, -0.401381, 0.214429, -0.766218, -0.645589, -0.651632, -0.519759, 0.022447, 0.386456, 1.680880, 1.296471, 1.238824, -0.425002, 0.798854, 0.584602, -2.378628, 0.511520, -0.582259, -0.446778, -0.332894, 0.970097, 0.296599, 0.043734, -1.178687, -0.943815, 0.051011, -1.188565, -0.437895, -0.551500, -0.216011, -1.440180, 1.300131, -1.522742, -0.535919, 0.245617, -0.456483, -2.186481, -0.749511, -0.902191, 1.478058, -0.919501, -0.274592, -0.227791, -0.141516, 0.058764, 2.225221, -0.870458, -0.967629, -1.771994, 0.326383, 0.241432, 0.171822, 1.426217, -1.480473, 0.341936, 1.966583, -0.791514, -0.081857, -0.202100, 0.369928, 1.058743, -0.611827, 0.921819, -0.604249, 0.995822, -1.046986, -0.484409, -2.316767, 0.399777, 0.957714, 0.314163, -0.965273, 0.961739, -0.733071, 1.106458, 1.793095, 0.039524, 0.979612, 0.306513, -0.522191, -0.504139, -1.036884, -0.280283, -0.254177, 1.065350, 1.816050, -2.005032, 0.161313, -0.285361, -0.977616, -0.109072, -0.696342, -0.256539, -0.180186, 1.430899, 0.838463, -1.061960, -1.592524, 0.441530, 1.366050, -0.685318, 0.233680, -2.311427, -0.308096, 0.555344, 0.048981, -0.752526, 0.585936, 0.370827, 0.352839, -0.462694, 2.730259, 0.318348, 0.066214, -0.342504, 0.586782, 1.457488, 1.856496, -0.605141, -0.535174, -1.999769, -1.668622, -0.408905, -2.378285, -0.016774, 1.287151, -0.719079, -0.548583, -0.337331, 0.862812, -0.605760, 1.648520, 0.094051, -1.951560, 0.089223, -0.780328, -1.075616, -0.501557, 0.207018, -0.984979, 0.505881, -0.957748, 0.292560, -0.654020, -1.521583, 0.399999, -0.875850, -0.427864, 0.104920, -0.284185, -0.279061, 0.311303, 0.824885, 1.477813, 0.126833, -0.169382, 1.263168, 0.565827, 0.294153, -0.041792, -1.703477, -0.882949, -0.164699, 0.015699, -0.194581, -1.209354, 1.462874, -1.141294, 1.590655, 0.811364, 0.573021, 1.166842, 1.156637, -0.505591, 0.096107, -1.026647, -0.179227, 1.679374, -1.184700, 0.711789, 1.047191, -0.182652, 0.970459, 0.419897, 1.290955, 0.810446, -0.581004, -0.595683, -0.139267, -0.498031, 0.048846, 1.505327, -2.143813, -0.629577, -0.252255, 1.028242, -0.765101, -0.390921, -0.217402, 0.479872, 0.011424, -0.157042, 0.734651, 0.189349, -0.119298, 1.560242, 0.612179, 1.302071, -1.198902, 0.618100, 1.676716, -0.772555, 1.220210, -0.166774, -1.177870, -1.177902, 0.809546, -0.799127, 1.034321, -0.145202, 0.367323, 2.489962, 0.425243, -0.464740, -0.234826, 0.207980, -0.911901, 0.744626, 0.640711, 0.294641, 0.312020, -0.100161, 0.023665, -0.569919, 0.539226, 0.144603, -1.384257, -1.079836, -1.278033, 0.736026, -0.544919, 0.176548, -1.709892, -1.411979, 0.782916, -0.097198, 0.229842, -1.588447, -0.459033, -1.412327, 1.015274, -1.276133, 0.435498, -0.278965, -0.074937, -0.172663, -1.084600, -0.630960, -1.487925, 0.528229, 0.569579, 0.083534, 0.460871, 1.379124, 1.016671, -0.118298, 0.973762, -0.136367, 1.315556, 0.668521, 1.814967, -0.771829, -1.384105, 0.990654, 0.841416, 0.029240, -0.691763, 1.171851, 0.370924, 2.733368, -0.568443, 0.673389, 0.869627, -1.045340, 0.497292, -0.280144, -1.036110, 0.847121, -1.130689, -0.820482, -0.430357, -0.123934, 1.888240, -0.527257, -0.351635, 1.423017, -0.339125, 1.102714, -0.315699, -1.104933, 1.008917, 1.342390, 1.458689, -0.385539, -1.016880, 0.581250, -0.196346, 0.931329, 1.164288, -0.247903, -0.228536, 0.835217, -0.144650, -0.090957, 0.760739, -0.809166, 0.947617, -0.212802, 1.281088, 1.101748, -0.716830, 0.043255, -0.528309, -0.763206, -1.506980, 0.974319, 1.138049, -0.803519, 0.176812, 0.286667, -0.104673, -0.741020, -0.625206, -0.330992, 0.198928, -0.594688, 1.396620, 0.016673, -0.815823, 1.664508, -0.170367, -2.500268, -1.219836, 0.695559, 0.165445, 1.588555, -0.695296, -0.489465, 0.150997, 0.493484, 0.101510, 0.126520, -1.573688, 1.159101, -0.364522, -0.688085, -0.312782, -0.898272, 0.450867, -0.435013, 0.246921, 0.034450, -0.439975, -1.804829, -0.068320, -0.499654, -1.826085, 1.732197, -0.619400, 0.793144, -3.463029, -0.440606, -0.850981, 0.305892, 0.090604, 2.434437, 0.655124, -1.372699, -0.517537, -2.463883, 0.722855, 0.572804, -0.627829, 2.062758, -1.756823, -0.522275, 0.222496, -0.085869, 0.692665, -1.785366, 0.613105, 0.260673, -0.204498, 0.250998, 0.330212, 1.385464, 1.499173, -0.244544, -0.602137, 1.724807, 0.963152, 0.882231, 1.284749, -0.290747, 0.870654, -0.187853, 0.296364, -0.582804, 0.539557, 1.500398, -0.396130, -0.506023, 0.698999, 0.630518, -0.378596, -1.396902, 0.533503, 0.287936, 0.448920, 0.647826, 0.107994, 0.816036, -0.317601, 0.478552, 1.790181, -1.788593, 1.631016, -1.079836, 0.811293, -0.628658, -0.580595, 0.401982, 0.569849, 0.770866, 1.332316, -2.743430, -1.254921, -2.446743, -1.056456, 0.141758, 1.556393, -1.090519, -1.363106, -0.351823, 0.029793, 1.169748, 1.378610, 1.711351, 0.828068, -1.074599, -0.223655, 1.107016, -0.445439, 1.903487, -2.814875, 0.002307, -0.847779, 0.247274, -0.564948, 1.217887, -0.495183, -0.762937, -0.862757, -0.286405, 0.728582, -0.400891, -0.404757, 1.617295, 1.799583, -0.067192, -0.436241, 0.422387, -1.409052, 0.743152, 0.668135, -0.848996, -0.770020, 0.151187, -1.119343, -0.254092, -0.980843, 1.428326, -0.139192, -1.632969, -0.997932, -1.298561, 1.268624, 2.015321, 1.566318, -0.090312, -0.145650, -0.077887, -0.331785, -2.126774, 0.079247, 0.516671, -0.244639, -1.618103, 1.007665, 0.011055, 1.087784, -0.376843, -0.384728, 1.290764, 1.057104, -0.913489, -0.522801, -1.892181, -2.794821, -0.715227, -1.903783, -0.198911, -0.320695, -0.648763, 1.287908, -0.448754, -0.276334, 2.333137, -0.236980, 1.518776, 0.618936, 0.308806, 0.251606, -0.141605, 2.084855, -1.516574, 0.067112, 0.015472, -1.164162, -0.728226, -2.385466, 0.314487, -0.851540, 0.300903, -0.784852, 2.687056, 1.665760, -2.083869, 0.309880, -1.947824, 2.580373, 1.132692, -0.078935, 0.463516, -0.873756, -0.788863, 0.549656, 0.721034, 1.474422, -1.952553, 0.190517, 1.041629, -0.596603, -1.905171, 1.129173, 1.251417, -1.817391, -1.061355, 0.915165, -2.123946, 1.236051, -1.228409, -0.159711, -0.655804, -0.560730, -0.562828, 0.721478, 0.010690, 0.437009, 0.495920, -0.703829, -0.775189, -1.194754, 0.337509, -0.932305, -1.271299, 1.027621, -0.460641, 0.388271, 0.972452, -0.280572, 1.885038, -0.460650, 1.480823, 1.766066, -2.534727, -1.046588, 1.150445, -1.914867, -0.549929, 0.261702, 1.594321, -1.445070, -2.427070, 1.437757, 0.409672, 0.482781, 1.634529, 1.790684, -1.029307, 1.098532, 0.883415, -0.304889, -1.273391, 0.828298, 1.039949, -0.276642, -1.955131, 0.748213, 0.948770, -1.751379, 0.170211, -0.348103, 0.778671, -0.327411, 0.727372, -1.308437, -0.417400, -1.118454, -0.017688, 0.265638, 0.399090, 1.092914, -1.671373, 1.553571, -0.320174, 0.149660, 0.292985, -0.452985, 0.167332, 0.048975, 0.332529, 1.156851, -1.803404, -0.612971, -0.344844, -1.345627, -2.173171, 0.337222, -0.340274, 1.470315, -0.465364, 0.777066, -0.059724, 0.540948, -0.924273, -0.498785, 0.130303, -0.024488, 0.771386, -0.888127, 0.409938, -1.327856, -0.271714, -1.612004, 0.112701, -1.986177, -1.149349, 0.642528, -0.603705, -1.515244, 1.840038, 1.147426, -0.108651, -0.384249, -0.392141, -0.767295, -0.649777, 1.895359, -1.430295, -0.272704, 0.969845, 0.256234, -1.367562, 1.372657, 1.148524, 0.804224, 0.250775, -0.543023, 0.044346, -0.176317, 0.356183, 1.804415, -2.931144, -1.303446, 0.215903, 1.559797, 0.164174, -0.177832, 1.081160, 0.829425, 1.429229, 0.314129, 0.639403, 0.049648, -0.150397, 1.223584, 0.068886, -0.871838, 0.250440, -0.121434, -0.790761, -1.551351, 1.957268, 1.425010, 1.720424, -0.140462, -0.292308, -1.145658, -1.090995, 1.442057, 0.771168, -1.421402, 1.924043, 0.042159, 0.440960, 0.084090, 0.792587, 1.623435, -0.848524, -0.410371, -1.910007, 1.114971, 0.113813, 0.384190, -0.343022, 0.901978, 1.780175, 0.165075, -1.235795, -0.973140, -0.684883, 1.378608, -1.556359, 1.389666, 0.125180, 1.432838, -0.367771, 0.348334, -1.170123, 0.894740, -0.892537, -0.429992, 0.041033, 1.725004, 1.691471, 1.270950, 2.368528, -0.649795, -1.793756, 0.648308, 0.390791, 0.100766, 0.439901, -1.116386, -1.336909, 1.158723, 1.261636, -1.846923, 1.178719, 0.118388, 0.982257, -1.036349, -1.180894, -0.245587, -0.129389, -0.053290, -0.077119, 0.049128, 0.302768, -1.212949, -0.297443, 1.020663, 0.864797, 0.907904, 0.281368, 1.169923, 0.056198, 1.455476, 0.487488, -1.467424, -0.509325, -0.081169, 0.189246, 2.273947, -1.102465, -2.270064, 2.581475, 0.243144, -1.425038, 0.786366, 1.204281, -1.225804, 0.664714, 1.304731, 0.208075, 1.271172, 0.358766, -2.539291, 2.170035, 1.003199, 1.000141, 1.153371, 0.376017, 0.245331, 0.119319, 0.170506, 0.468791, 0.845317, 0.880419, -0.182267, -0.351487, 1.221351, 1.109485, -0.122763, -0.441408, 0.397473, -0.692110, -0.958655, -0.890841, -0.165561, -0.669242, -0.960004, 1.029351, -1.827937, 0.344003, 0.487598, -0.509466, -1.950244, -0.986274, -0.754782, 0.490325, -2.561658, -0.364866, 0.115597, -0.835832, -0.680565, 1.116448, 1.034222, 1.156194, -0.462367, -0.646126, 1.490184, -0.092126, -0.985075, -1.204694, 0.966325, -0.439018, -0.291853, -0.972802, 1.684901, -0.306335, -2.867162, 0.840268, 0.047128, -0.484602, -0.361164, 0.529141, 0.253967, -0.279505, 0.301664, 0.908830, 0.570776, 0.450165, 2.010303, 0.977634, 0.450457, 1.897397, 0.130140, -0.472491, -1.332368, -0.590533, -0.236377, -0.171133, 0.685940, -0.456521, 1.388796, 1.351646, 0.170174, -0.382853, -1.348521, 0.691629, -0.278505, -1.271869, -1.342085, -0.139426, 0.329207, -0.708711, 0.017592, 1.484468, -1.975322, -0.854597, -1.040721, 0.085031, -1.284979, -1.059245, 0.839824, 0.931990, -0.163811, -0.008066, 1.313868, 0.631472, 1.869960, -0.307023, 0.555135, 0.174737, -1.814567, -1.491072, -0.252474, 0.213044, 0.238095, 1.161464, -1.684574, 0.313886, -0.216870, -0.618215, 2.270164, -3.519725, -0.367013, -1.231144, -0.811809, 0.219825, 0.315066, 0.814039, -0.233066, 1.959956, 1.282328, 0.152132, -1.447953, -0.359744, -0.127220, 0.547382, 0.621872, -0.243756, -0.680312, -1.452631, 0.674617, -0.882651, 0.505583, 0.574320, -0.724038, 0.208307, -0.758440, 0.037523, -0.436246, -1.103913, 0.605163, -1.203271, -0.349048, -0.590220, -0.587942, -1.742100, -0.122615, -2.138384, 1.205681, 0.268602, -0.364161, -1.191892, 0.407916, 1.239345, -0.703523, -0.360744, -0.711938, -0.320934, -0.523445, 1.561669, -0.743672, -1.076270, -1.210861, -0.827123, 0.340647, -0.034845, -0.560500, -0.123075, 0.673215, 1.025805, -0.163507, 0.118245, -0.172347, 0.829372, 0.959543, -1.080799, 0.145325, -1.512127, 0.243233, -0.851418, -0.402083, 0.670363, -2.581012, -0.094808, -1.015808, -0.091176, 0.356494, 2.140609, 1.451248, 0.290791, 0.955669, -0.612150, 0.355083, -0.860035, -0.220295, 1.935034, -2.245154, -0.691729, -0.641136, -0.957094, 0.264666, 0.953032, 0.925415, 0.805269, -1.676702, -0.732828, 0.321373, 0.820801, 0.263415, 0.978789, 0.415271, -0.770884, -0.560305, -1.474311, 1.453777, -0.139642, -1.420674, 0.967396, -0.255116, -0.477515, 0.055763, -1.208753, 1.400063, -1.609228, 2.044857, -0.461519, -1.552521, -0.567215, 0.564991, 0.129456, -1.370450, 0.495831, -0.699535, -1.036510, -0.713296, -0.056456, -1.175707, 1.714374, -0.546644, 0.555167, 0.589690, -0.114738, -1.099528, -0.720584, 2.580354, 0.154068, -0.075990, 0.497113, -0.557604, 0.632325, -2.232875, -0.555574, -1.780078, -1.514722, 0.930837, -1.006835, 0.224690, -0.801820, -0.062706, -1.463318, 1.299447, -0.188101, 0.937312, 0.483199, -0.571289, -0.810484, -0.644893, -1.193224, 0.059205, -0.141947, 0.418589, -1.198344, -1.883460, -2.485989, -0.826594, -0.843370, -2.850616, -0.465154, -1.836882, 1.497049, 1.158938, -0.037906, 1.257824, -0.388018, 0.557795, -1.873809, -3.291062, -0.014402, 0.263339, -0.641722, -1.651595, -2.528742, -0.578036, 0.321927, -0.588572, -0.571020, 0.814622, 0.098188, 1.541206, -0.233167, -0.067291, 2.019158, 1.188454, -0.491439, -1.278601, -0.880556, -0.137270, -0.239827, 1.146000, -0.410556, 0.807072, 1.006048, 1.333995, -0.171237, 1.928859, -0.650880, 0.775498, 1.419518, 0.066664, 0.424831, 1.121179, -0.204914, -2.000347, -0.731608, -2.163165, -1.186326, -0.001448, 0.732853, -0.114406, -0.241247, -0.052114, -1.340066, 1.064839, 2.225616, 0.252704, 0.048093, -0.152621, 0.371792, 0.079982, 0.195513, 1.385363, -0.167603, 0.362770, -1.148246, 1.123373, 0.437405, 0.615800, 1.022465, 1.091354, -0.246173, 0.679600, 0.297476, 0.067711, 1.085536, 1.521773, -1.743577, -0.963234, -1.663871, 0.197685, 0.956560, -0.755337, -0.448105, -0.307985, -0.372927, -3.681711, -1.190052, -0.650981, 1.021996, -1.023422, -0.432114, -2.023940, 0.193068, 0.499775, -0.721505, -1.853910, 0.701858, -0.410427, 0.833886, 0.673609, 2.411486, -2.828877, -0.258035, -0.999973, 0.206999, 0.094633, 0.609048, 0.181900, -0.039991, -1.936095, -0.653988, 1.382607, -0.845476, 0.260008, 0.326553, -1.852391, -0.822542, -0.954687, -0.968077, 0.278658, 0.068318, -1.167719, -0.052708, 0.154352, 0.212280, 0.596978, 0.604840, 0.432039, -1.806290, -1.023921, 0.458002, -0.074754, 0.242409, -1.401399, 0.676589, 2.262212, -0.399023, -0.301030, -1.010048, -0.271403, 1.708313, -0.026174, -1.056340, -0.713290, 0.298816, 0.331817, -1.359979, 0.706568, -1.110049, 1.831745, -0.294758, 0.763841, 0.546000, -0.380547, -0.975400, -1.438008, 0.808115, -1.427639, -0.454569, 1.688931, 0.916512, 1.141009, -0.854748, 0.067646, -1.136776, -0.235838, 0.204974, 0.212840, 0.743308, 1.639927, 0.516522, -0.283163, -0.092873, -1.549742, 0.596333, -1.259256, -0.828800, 0.370436, 1.245179, 0.068038, 1.309856, 0.698309, -1.572554, 2.273052, -1.019572, -2.053736, 0.303562, 0.903053, 0.932825, -0.637823, -0.141961, 0.383576, -0.745588, 0.461201, 0.852043, 0.786838, 1.099883, 0.910615, -0.913858, -1.436887, 0.133763, 1.193469, -0.105290, 0.626564, -1.244284, -0.824674, -1.349277, -0.607738, -0.049062, 0.431512, 0.410840, 1.091541, 0.501111, -1.633811, 0.345205, 2.327626, 2.004410, 2.551513, -1.097027, 0.417169, 0.307445, -0.187798, -0.964303, -1.388449, -0.096223, 0.206668, -0.512665, 0.038904, -0.338043, 1.865018, -0.441585, 0.161255, 0.060204, -0.567725, -0.054680, -1.049167, -0.934331, -0.400814, -1.103378, 0.218030, 0.408159, -0.825384, -1.668284, -0.735799, -1.523152, 1.301409, 1.350244, -2.044044, 0.295981, 1.024060, 1.518365, 0.627217, -0.362370, 0.178887, 2.220145, 0.845519, -1.245751, 0.296076, -0.906249, -0.550781, -0.187704, -0.966384, 0.258156, 0.731842, -0.151215, 0.602581, -0.324755, 0.184688, 2.105219, -0.360765, -1.102379, 2.683188, -0.002378, 0.935326, 1.088723, -0.372392, 0.369770, 1.084281, -0.882304, 0.416716, 0.079135, -1.082771, 1.285754, 0.880396, -1.371859, 0.870100, -0.489232, -1.602242, 0.455934, 1.763801, 0.404464, -0.614565, -1.724052, -1.982593, 0.570093, 1.096289, -1.472392, 1.381516, -1.850454, 0.917283, 1.426737, -0.094476, 0.254634, -1.713858, 1.478379, 0.890432, 0.401829, -0.090656, -1.292247, -1.279843, 0.302457, -0.236417, -0.467403, -1.154478, -0.906065, 0.705937, 0.002082, -0.607295, 1.536265, -1.094748, 0.629592, -1.460641, 1.839497, -0.668563, -0.095149, 0.027071, -1.275475, 0.720768, -2.313432, -2.117853, -1.466619, -0.380405, -1.684252, -1.543230, -2.469121, 0.284849, -1.769367, 1.843941, 0.645849, 0.562916, -1.152369, -1.154117, 0.053049, -0.911990, -0.652897, 1.031700, -1.035564, 0.573847, -0.589830, 0.827473, -0.987938, -2.240338, 1.096295, 0.369008, 0.113771, -0.044153, 1.336587, 0.514051, 0.395887, -1.226199, 0.572327, 1.363572, 0.347048, 0.560013, 0.781436, 0.606495, 2.375325, -0.153912, -1.585245, 0.423466, -0.935471, 0.146285, 0.376451, -0.835973, -1.660926, 1.582481, 0.471677, 1.288726, 0.719894, -0.369299, -0.605758, 0.136684, -0.432780, -1.579723, -0.963347, 1.514310, -0.830247, -1.760513, 0.007297, 0.440421, 1.620559, 0.175405, -0.204266, -2.106836, -0.380563, -1.463042, -0.388214, 0.368389, -1.828637, 0.839464, 0.224701, -0.066454, -1.094345, -1.870579, -0.403838, 1.541245, -2.228127, -1.190789, 1.185140, 0.875489, -0.762382, 0.410577, -0.824674, 1.884373, 0.658230, -0.360211, -0.909355, -0.149655, -0.323001, -0.206297, -0.870072, 0.265621, 0.461955, 0.317674, 1.622650, -1.717764, -0.442985, -0.325512, -0.367192, -1.078023, -1.407287, -2.238735, -0.712122, 1.305645, 0.856626, 2.403688, 1.216418, -1.689685, 0.809785, 1.053149, -0.512433, -1.504532, 0.894018, 0.469305, 0.266478, 1.378944, -1.226123, -0.873641, -1.508280, 0.923169, -2.592287, -0.371285, -0.028856, 0.718734, 0.709310, 0.191418, 0.495436, 1.004859, -1.971753, 0.510060, -1.196623, -0.020200, 0.444278, -0.290145, -0.355238, -0.594349, -0.651522, 0.226935, -1.178136, 0.820969, 0.560619, 1.003440, 1.069418, -1.878259, -0.183214, 0.800477, 0.202630, 0.502726, -0.294162, 0.654934, 0.980805, -1.512176, 0.483358, 0.228810, 0.154502, -0.092433, -0.291913, 0.277689, 0.131718, -0.129950, -1.024526, 0.538989, -1.753239, 0.272279, 1.867798, 0.530696, -0.675928, 0.537991, 0.235620, 0.232758, -0.184438, -0.204704, -0.163548, 1.038092, 2.092777, -1.498174, 0.035976, -0.362997, -0.415563, 0.334518, 0.209770, -0.157115, 1.608045, 0.523456, -0.901635, 0.512854, 1.170690, -1.862518, 0.677543, 2.004447, -1.229728, -0.887000, 0.429626, 0.653907, -2.198623, 0.113910, -1.012737, -0.602652, 0.268596, -0.433785, -0.403663, 1.012576, -0.179156, 0.728264, -0.269759, 1.466707, -0.268548, -0.401664, 0.401893, 2.991096, 0.507529, -0.674686, 0.464573, 0.348770, 1.201653, -0.056604, 0.135997, -0.092281, -0.991061, -0.916831, -0.670588, -0.231594, 0.995374, 0.443734, 0.254507, 1.108321, 0.199079, -1.256905, -0.225160, 2.169815, -1.211504, -1.613809, 0.851215, 1.203705, 1.792670, 0.549233, -1.009304, 1.738254, 0.798481, -0.885659, 0.584313, -0.040680, -1.389247, -0.555906, -0.496788, 0.444996, 1.008133, 0.890202, -0.672025, 0.218345, -0.066502, 0.796782, 0.594442, 0.400180, -0.614666, 0.461127, -0.788149, 0.580780, -0.252922, 1.598786, 0.345562, -0.465401, -0.908905, 0.402144, -1.370560, 0.890239, 0.497729, -0.366781, -0.654610, -0.134878, 0.534342, 1.786823, -0.550269, 0.766497, -1.151797, -0.224203, -1.340949, 1.844077, -0.117947, -0.814984, -1.282964, -0.785406, -0.207749, 0.021620, 0.064032, -0.193473, 0.859739, 1.952088, -0.750830, 1.016058, -0.528133, -0.352504, 0.997560, -2.948111, -0.391757, -1.890509, -0.028581, -1.116947, 0.900249, 1.632925, 0.211528, 1.464261, 0.813499, -0.965834, -0.191811, 0.968300, -0.626022, -0.627869, 0.203130, 0.212776, 0.288468, -0.489586, 1.383871, -0.353621, -0.470161, -1.250769, 0.501932, 0.578503, 0.522494, 1.383515, 0.036709, 0.611702, -0.324476, -1.341430, 0.535411, 0.171775, 1.211939, -0.946181, -0.557432, 0.402751, -0.339894, -1.970996, 0.487801, -0.506185, -0.116569, -0.163749, 0.362941, -1.675222, 0.133179, -0.932245, 0.227481, -1.412128, 1.298975, -2.981760, -0.195989, -0.103139, 0.266744, -0.108065, -0.207866, -0.561348, 0.170384, 0.287127, 0.365311, -1.053901, -2.143873, -0.122602, 0.836379, 0.702712, -2.281724, 0.091834, 0.450036, -1.102499, -0.516250, 0.257807, -0.201001, 2.401299, -0.660058, 0.251632, -0.877792, 0.666423, 0.845179, 0.841628, -0.896648, -1.132187, -2.201586, -1.656882, -0.379535, 1.073976, 0.083634, 0.268975, 0.912557, 1.286196, 0.497235, 1.072200, -0.092967, 0.678398, -0.221040, 2.006468, 0.371291, -0.826240, 0.720615, 0.601670, 1.351313, 0.355805, -1.220755, 1.327509, -2.158093, -0.265237, -0.460523, -0.901234, -0.679397, 2.160350, -1.077485, -0.231026, -0.245614, 0.568309, -0.649115, -1.354293, -0.213618, 0.719830, 0.596101, -0.916382, -0.193533, -0.251266, -0.562228, 0.009247, -0.359364, 0.904510, 1.566602, 0.733213, 0.057844, 1.088685, -0.855912, 0.563026, -1.046159, -0.220802, 0.849690, 2.908533, -1.654303, 1.727432, 0.684040, -1.850934, 1.306162, -1.040588, 0.778143, 1.001766, -2.117378, 0.354126, -2.434271, 2.116376, -1.291661, -1.618389, 1.618531, -0.223615, -1.202130, 0.185509, 1.283886, -0.976218, -1.315687, 2.660844, 0.627925, -2.724558, -0.051845, 1.500147, 0.173336, -0.671355, -1.616030, 2.833105, 0.089477, 0.187101, 0.439169, 2.095438, -1.809289, -0.036200, 1.658423, -2.193846, -1.200890, 0.757756, 0.897567, 1.400721, -0.541263, 0.170801, 1.723530, 0.849128, 0.044761, -0.782273, -0.032073, -1.469752, 0.317400, -1.178158, -2.219496, 1.061824, -2.720530, 0.625581, -0.245036, -0.693298, -1.376902, 1.447943, 0.426345, 0.684331, 3.045380, 0.314667, -1.724104, -0.335636, 2.040052, 0.610763, 1.748671, -0.537217, 0.081519, -1.232412, -1.590867, 3.281409, -0.236164, 0.516442, -0.367121, 1.113477, -0.101688, -0.895257, -0.122986, 0.577028, 0.828970, -1.597559, 1.299989, 0.177506, -0.538503, 1.064118, 0.343365, -0.655215, 0.483452, -1.800218, -0.767643, -1.775171, 0.602599, -0.041027, 1.002649, 0.273201, 1.799783, 1.639954, -0.846828, -0.445425, -1.503152, 0.029173, 0.138277, -0.573592, 0.403383, -0.116117, 0.872516, 1.422441, -1.560168, -1.566623, -0.273330, -0.775797, -0.234296, 0.963701, 0.751731, 0.593447, 0.234605, -1.605393, -0.566641, 0.375025, 0.029848, 0.841423, -0.714929, 0.439749, 0.829317, 0.185950, 0.521275, -0.866284, -0.685984, -0.501778, 1.644804, -0.343457, 0.309802, -0.158656, -0.815835, 1.363981, 2.075718, 1.283538, 0.847531, 0.315317, 0.173977, 1.574663, 0.659445, -0.573065, 2.061598, -2.496942, 0.058987, -0.658761, 2.133844, -0.897984, -0.206965, 1.126628, 0.414460, -0.531610, -0.243805, -0.231926, -1.443090, 0.507506, -0.406759, 0.595977, 0.517678, 0.257494, -0.918222, -1.189355, -0.483287, -0.121459, -1.049367, 0.285166, 0.609940, -1.659741, -0.603259, -0.652179, -0.407910, 0.081981, 1.260762, 0.879977, -0.366529, 1.073076, 0.678174, -2.091066, -0.020090, 0.386587, 0.032529, 0.020348, -0.232831, -0.439285, 0.963073, -2.157159, -0.088462, 0.766416, -0.671181, 1.522421, -0.960185, 0.526432, -0.881427, -0.644743, 0.726419, -0.862196, -0.567700, -1.287147, -0.820527, -0.951630, 0.750921, -1.029318, -0.720539, 0.708780, 0.489514, -0.550919, -0.755829, 0.511643, -0.394900, -0.417637, -1.140377, 1.311014, 0.327576, 0.064683, 0.317144, -0.398887, -1.065391, 1.146876, -1.290596, -1.280738, 0.569320, 0.050438, 0.485064, 0.668543, 1.455787, 0.232036, 0.445867, -2.160827, 1.751598, -0.321649, 0.068739, 1.075140, -0.364060, -1.712742, 0.435224, 0.402828, 1.232949, -1.543923, -1.375330, 0.803641, -0.325610, 1.143298, 1.944335, -0.218840, -1.115818, -0.493478, -0.410096, -1.436890, -0.588038, -0.229452, -2.056219, 0.756037, 1.211246, -0.187034, -0.288765, 0.616333, 0.137836, -0.400240, -0.491144, -1.110797, 0.336978, 0.032051, -0.856657, -1.214663, -0.080546, 1.870633, -0.282188, -0.930166, -1.240665, 0.307673, 1.721147, 0.602459, -1.175582, 0.397474, -1.188016, -1.785199, -0.184665, -0.415283, 0.950586, 0.359571, 1.751423, -2.100031, 0.439803, -0.597166, -0.432930, -1.217145, 0.270341, 0.347048, 0.216593, -0.749260, -0.850258, 0.000787, 0.159751, 0.993618}, - { 0.301731, 0.340315, 0.356582, -0.199931, -0.692607, -0.670357, -1.513091, 1.274315, 0.483492, -1.273754, -1.048047, -0.602107, -0.509375, 1.703353, 1.416582, 0.501710, -0.075911, 1.163827, -0.229310, 1.099196, 1.963809, -0.078191, -0.665969, -1.344182, -0.013689, -0.292125, -1.779218, -0.859861, -0.708837, 0.676676, 0.499517, 0.178592, -0.402246, -1.382905, 0.686772, -0.584893, -0.575881, 0.694766, -0.024090, -0.050965, 0.953661, -0.622870, 0.836188, 0.029189, 1.159838, 0.165515, 0.378790, 2.050405, -0.660663, -1.538973, -0.847163, -0.717603, 0.253120, 1.357337, -1.058493, -0.095297, -1.081879, -0.700258, 0.044495, 1.712566, -0.921942, -0.252533, -0.414732, 0.743698, 0.743899, -0.524788, -0.260550, 0.542102, -0.918968, -1.100057, -1.059030, -0.596496, -0.272056, 1.357622, 0.634886, 0.145636, -0.154541, 0.229817, -1.773797, -2.028810, 0.109299, 0.347456, 0.827197, -0.826999, -0.722656, -0.619107, 0.389974, 1.182330, -1.423043, 0.995307, -0.913115, 0.770915, -0.616580, -1.141662, 1.683443, 0.826815, 1.089156, -0.844702, -0.448526, 0.680786, 0.595490, 1.333555, 0.827444, -1.927784, -0.372818, -0.531507, -0.113064, -1.123855, 0.118561, -2.277498, 2.295796, -0.759066, 0.758029, -0.960120, 0.191058, 0.386608, 0.070052, 1.463023, 0.398881, -0.331290, -0.185937, 0.513445, -0.667540, -0.176668, 2.967364, 0.293913, -1.354059, 1.766835, -0.318633, -1.100933, 0.254869, 0.036773, -1.315956, 1.159468, -1.080406, 1.207758, 1.385852, 1.660041, 1.465256, -1.387277, 0.005947, 1.743804, 1.441585, -0.231859, -0.606515, 1.048532, -0.191874, 0.572778, -0.492012, 0.509080, -1.410149, 0.458897, 0.311114, -0.369147, 1.200200, 0.811518, -1.115069, -1.622676, 0.519984, 0.417236, 1.205972, 1.300473, 0.606398, 1.473777, -1.091435, 0.806429, -0.932551, 0.494567, -0.837687, 0.572030, 0.869833, 0.545405, 1.315020, -2.294152, 1.148977, -1.111109, -1.989875, 0.223125, 0.794686, -0.703741, -1.232284, -0.022285, -0.359718, 1.443275, -0.402033, 1.346300, 0.237843, 0.811650, -0.433078, 1.155858, 0.617472, 1.291299, -0.461007, 0.206134, 0.490470, 1.553077, -0.067552, -0.377907, -0.904223, 0.493127, -0.250618, 2.067950, 0.333474, 1.824845, -0.807702, 0.851756, 0.228255, 0.541410, -0.531682, 0.195160, -1.644215, -0.482778, -0.162985, 0.817808, 0.118681, -0.072329, 0.082215, -0.079760, 1.836766, -0.892851, 0.395527, 0.243779, -0.183584, 0.093627, -1.158231, 0.332813, -1.346124, -0.031608, 0.942257, -0.825450, -1.106920, 1.560990, -0.653940, 0.446562, 0.553755, 0.540008, -1.595925, 1.092760, 0.395390, 0.908261, -1.507372, 1.775162, 1.122793, 0.520032, 0.900858, 0.354926, 0.314007, 0.173428, 0.836221, 0.313523, -0.022132, -0.716503, 1.184181, -0.155130, 1.076736, -1.077288, 1.020293, 0.307203, -0.372011, 1.430982, -0.312458, -0.301034, -1.045088, -0.172423, 1.224366, 0.233651, -0.698798, 1.171618, -0.277354, 0.924341, 1.228120, 1.480400, -0.592843, 0.024125, 0.369709, -0.512804, -0.807521, 1.502057, 1.286383, -0.238933, 0.194284, -1.645072, -0.759845, 0.018062, 0.599161, 0.189479, -1.045806, -0.363235, 1.012787, -1.992165, -2.280294, -0.020684, -0.167178, 0.264359, 0.214267, -0.767510, -0.269353, -1.075058, 0.240005, 0.913014, 1.122564, 3.143238, -0.219032, -0.195347, -0.819146, -0.179572, 1.151536, -0.897796, -0.575631, -0.106497, -1.558885, -0.035942, -0.677244, 0.368379, -1.527248, -0.082788, 0.448401, -0.950365, -1.297375, 1.443643, 0.671306, -0.505342, -0.528870, 0.517745, 0.724624, -1.634843, -0.279723, -0.412208, -0.044171, 0.550800, -0.380265, -1.132098, 2.779808, 1.099924, 0.900117, -0.746871, 0.698239, 0.468645, 0.927760, 0.194123, -0.226882, 0.271124, -0.569158, 0.003426, -0.011632, -1.209737, 1.318997, -0.755500, 0.401329, 0.933217, -1.236041, -0.652248, 0.725733, -1.939159, 0.740022, -0.209385, -1.428430, 0.474135, -0.639669, -1.726154, -0.973631, 0.129549, -0.290139, -0.913872, 1.676089, -0.123993, 0.723219, -1.771569, 0.458740, 0.511286, -0.197916, -0.780482, -0.568680, 1.363672, -1.133307, 0.486805, -1.041064, 0.022507, 0.898393, 0.745415, 0.670479, 2.005906, -0.649511, -1.474462, -0.572460, -0.464904, 1.396734, 0.841705, 0.263239, -0.888334, 1.429085, -0.297824, 1.555869, -0.200461, -0.133046, -1.528087, 0.964913, 0.076381, 1.768266, -0.512871, -0.041117, -0.172383, -0.378645, -0.104837, -0.988190, 0.138538, 1.027950, -0.119624, 0.966073, 1.602044, -0.380665, -0.051357, -1.047217, -0.899111, -0.922363, -0.664096, 0.449538, -0.224948, -0.785595, -0.715102, -0.442596, 0.775693, -0.661684, -0.103729, -0.573598, 0.615203, -0.499645, -0.987635, -1.082462, -0.316347, -0.045296, 0.746258, -0.671951, -1.323349, 1.501651, 1.746913, -0.147925, 0.099872, 0.346254, -1.276066, 0.232616, -0.457229, -0.915705, 0.831763, 0.256330, -1.178553, -0.826680, -0.876064, -0.198926, -0.704767, -0.303037, -0.601242, -1.082732, 1.911549, -0.253599, 0.050120, -0.644634, 0.706186, -0.981749, 0.739799, 0.059147, 0.571289, 1.460922, 0.522896, 0.152329, 0.376585, -0.094636, 0.437663, 1.308744, 0.547445, -1.529621, 0.561978, 0.635995, 1.287352, -1.073645, -1.750299, 0.933533, -0.552610, -1.338540, 0.140115, 0.379590, -0.510426, 1.103815, 0.640973, 0.376664, -0.011929, 0.644988, -0.731731, -0.218970, 1.272982, -0.226110, 0.205127, -0.368558, -0.022630, 2.318778, -1.229447, -0.290865, -0.563527, -0.829533, 0.078361, 0.054665, -1.866439, -0.601924, -1.055621, -0.081156, 0.954206, 0.878962, -0.853083, 0.433576, 0.771821, 1.650254, -1.040189, -0.943020, -0.600853, -0.951020, -0.058790, -0.412329, 0.070419, -0.327229, 0.639502, -0.130401, -1.981886, 0.892368, 1.927000, 1.395447, -0.035979, -0.268848, 1.504998, -1.268180, -2.091290, 0.692991, 1.503467, -0.595840, -0.359548, -0.598310, 0.237555, 1.361935, 1.195720, 1.488564, 0.531622, 0.639224, 0.005910, -1.281677, 0.688168, 0.436142, 0.003748, 0.505624, -0.462939, -1.437582, -1.013640, -1.273356, 1.619996, -0.860430, 0.206553, -1.011272, -0.178100, 0.907035, 0.024300, 2.001593, 0.576700, 1.030430, 0.130177, -1.339414, -0.460570, -2.994749, -1.577236, -0.323091, 1.105102, -1.486310, 0.160474, -0.957567, 0.238647, -0.401481, 1.432569, 0.710533, -0.554321, 1.213134, 1.846723, -1.439332, 0.128210, 2.619654, 0.351559, -1.153459, -0.410734, 1.109101, -0.533198, 0.350223, 0.430851, -0.982769, -0.609022, -0.522238, -0.181879, -0.459462, -0.213042, 0.142233, 0.445944, -0.789727, 0.721732, 0.917974, 0.244496, 1.145396, -2.108143, 0.193287, 0.551993, -2.250021, 1.201748, 0.716213, -0.027772, -0.580437, 0.715608, 0.196750, -0.851143, -0.354354, -0.847215, -0.505379, 2.311434, -1.452240, -0.859659, 0.149073, -0.011959, 0.247673, 0.742919, -0.853720, -0.164723, 0.966060, -2.186510, 0.341235, -0.460015, -0.183738, 0.573395, 1.611481, 0.487849, -0.149331, 0.076666, -0.816759, -1.125576, -1.069115, 0.119665, 0.487101, -2.070111, 0.113776, 0.149254, -1.227676, 0.739415, -0.402675, -0.823281, 1.107952, 0.642089, -0.383887, -0.207413, 0.679701, -0.662711, -1.606719, 1.148310, 0.587015, -0.294478, -1.032606, -0.808599, -0.676572, 0.599677, 1.284897, 0.072044, 0.537082, 0.677495, -0.841507, -1.741538, -1.199398, -1.070768, -0.381516, 0.693988, -0.246137, -0.051508, -0.442244, -1.691891, 0.104943, -0.420289, -1.544920, -0.425850, 0.648355, -0.538390, -2.096101, 0.105226, 0.027247, 0.650452, -0.307101, 1.047194, 0.746077, 1.012907, -0.396122, 0.694341, 0.743929, -1.091642, -1.909330, -0.467969, 0.402921, 0.844133, 0.546082, -0.291221, 0.645099, 0.375578, 0.090473, -1.156305, 0.909478, -0.344901, -0.915072, -2.355663, 1.861707, 0.170117, -0.345389, 1.611302, -2.380288, 1.357473, 0.907826, -3.133594, -0.119388, -2.195933, 0.699139, -0.155774, -0.943318, -0.112979, -0.345713, -0.634705, 1.501585, -1.081227, -0.081979, -2.046712, -0.880067, 1.731963, 0.432684, -2.039904, 0.167068, 0.341228, 1.122631, 1.662312, -0.441109, 1.167886, -0.092796, 1.101570, 1.728996, 1.244415, 1.014655, 0.213812, -1.410235, 1.303385, 1.574433, 1.140175, -2.336849, 0.619250, 1.743942, -0.284411, -1.236207, -0.177656, 1.440527, -0.071437, -0.997129, -1.096870, 0.251441, 1.087029, -1.145252, 0.653924, -0.166977, -1.180721, 1.442425, -0.148463, 0.327964, 0.626723, -1.094068, -1.684336, 2.216597, -1.607166, 2.419754, -0.162077, 0.432021, 1.336056, -0.083807, -0.189344, 2.150855, -0.494389, -0.073852, -0.083455, 0.761674, -0.927206, 0.831074, 0.103302, -0.717190, -0.205294, -0.896933, -1.047605, 0.776190, -0.089770, -0.851187, -0.612422, 0.209004, 0.664630, -0.463832, 0.705006, -1.380867, -0.598404, 0.618253, -0.249423, -0.287642, 0.358870, 1.447476, -1.891968, -1.251815, -1.265438, 0.868030, 1.151141, 1.387998, 1.276075, -0.161557, -0.302295, -0.781948, -1.090143, -0.907986, 1.153903, -0.158851, -2.025944, -1.752189, 0.563785, 0.832849, -0.281860, -1.422815, -0.250152, 0.390725, -0.707259, -0.255062, -0.434000, -1.832353, 0.054505, -0.874437, -0.694879, 1.724513, -1.158847, -0.799266, 1.509151, -0.321243, -1.023412, 1.458976, 0.982309, -0.224010, -0.504862, -1.925597, -0.893189, -0.089461, 0.801045, 0.786735, -1.132107, 0.191275, -0.143792, 1.279276, 0.453176, 0.150880, -1.473621, -0.487389, -2.148995, 1.275446, -1.067105, -0.194897, -0.992779, -1.082810, 0.943347, 1.304245, -0.036478, -0.003345, 0.665198, 1.935720, 1.278178, -0.040036, -0.710101, -0.749596, 0.553681, -0.745719, 0.417474, 0.520062, -1.351514, 0.427031, -0.546031, -1.492872, 0.267286, -0.504399, -1.000964, 1.273063, -0.651205, 1.030016, -0.782948, 0.497383, -0.183553, -0.401096, 1.110661, 0.872114, -0.170100, 0.282692, -0.795149, 0.332732, 0.643477, -0.249532, 1.635548, -1.044594, -0.295628, -0.920430, 2.626061, 0.487947, 0.211885, -1.296393, -1.072465, -0.203752, 0.170502, -0.088814, -0.801740, -0.737554, 0.208035, 0.940708, 1.305298, 1.212413, 0.782284, 0.230158, -0.389325, -0.566361, 0.430025, -2.453650, -0.388663, 1.011179, -0.208083, 0.858045, 1.731164, -0.202383, 0.693175, 0.927188, 0.628455, 0.986906, 0.191767, -0.140978, -0.154277, -0.997423, 0.096075, -0.183515, -0.681884, 0.713886, 1.265605, -0.525586, -0.278860, -1.008217, 1.654861, -0.021838, 0.172042, -0.755139, -0.037302, -0.154158, -0.337038, 0.273891, 0.263120, -1.773232, 1.110118, 1.178350, 1.746639, -0.104237, 2.031744, 0.165341, -0.379496, 0.501640, -0.559309, 0.275472, 1.567459, -1.102631, 0.633580, -0.930758, 0.241228, 1.100809, 0.442949, 0.599054, 0.663753, 0.186169, 0.292533, -0.423256, -0.648971, -0.136168, -0.569410, 0.031565, -1.150596, 0.595486, 0.742416, -0.546966, -1.677502, 0.951948, 1.031747, -1.099773, -1.728090, 0.585113, 0.631279, 1.600641, -0.305789, 0.437371, 1.932847, -0.537977, 0.931596, -1.838440, -0.015818, -1.622449, -0.040143, 0.362594, -0.890436, 0.426689, 0.636668, 2.481544, -0.807978, -0.110130, -1.141717, -0.094556, -0.179840, 0.354897, -0.194146, -1.837641, -1.313678, -0.445775, -0.028980, 0.800842, 0.221583, -1.936449, -0.961818, -0.846018, -0.335061, -0.720752, 1.514343, 0.269006, 0.862937, 0.192483, -1.216576, -0.956318, 2.885808, 0.765089, -0.311713, -0.945407, -0.545809, 0.725385, 1.093667, -0.061274, 1.711193, -0.433426, -0.215971, -0.543020, 0.724515, 0.403210, 0.869631, 0.157949, -0.002083, -0.464703, 0.199242, -1.738906, -0.171850, 1.478736, 0.750696, -1.278336, -0.344337, 2.085411, -0.777218, -0.750230, -2.526896, -0.429946, -0.038312, -2.605750, -0.614735, 0.938820, 0.947402, -0.577474, 0.556643, -0.798407, 0.565714, 1.477476, -0.461781, 1.676078, -1.114238, 0.069705, 0.037606, -0.657933, 1.054590, -0.808508, 1.104857, 1.529753, 1.102995, -1.080505, 0.155131, 0.142506, -0.663007, 1.160230, -0.250282, -0.522495, -3.863022, 0.065601, 1.898197, 1.294152, 0.824046, -0.446956, -2.238514, -1.023182, -0.950372, 3.760072, 1.253797, -1.685765, 1.360150, -0.572155, -0.529619, 0.015218, 1.592276, 0.533458, 0.537726, -0.396657, 1.090247, 0.574728, 1.641131, 0.244294, -0.764788, -0.294207, -0.429231, 2.160279, -0.585587, 0.008594, 0.410570, 0.459396, -2.319650, -1.987478, -0.200157, 0.084520, -0.451076, 1.142606, 1.389749, 0.199081, 0.354148, -1.355257, -0.458227, 0.033238, 0.129894, 1.666640, 1.995953, -0.302551, 1.051346, -0.520094, 0.004230, -1.607123, 0.429005, 0.270415, 0.314175, -0.524505, -0.298218, -0.391555, 1.056179, 0.443406, -1.532320, -0.053713, 0.526718, -0.159284, 1.742543, -1.159388, -0.559781, -0.422273, 1.102554, -1.729312, -1.581294, 1.895429, -0.114143, 1.484401, -0.020270, 1.242298, 1.651455, 1.336936, -0.201987, -0.751444, 0.261352, -1.025556, 0.721701, 0.301649, -0.189576, 0.339008, 1.021007, -0.467743, 0.199743, 1.331981, 0.742519, 0.702157, 1.874298, 1.026808, 0.599412, -0.185421, 0.589504, -0.127130, -0.603353, -1.266549, 0.114474, 0.456255, 0.999890, 0.660022, -0.351638, 0.974813, 0.227392, -0.426923, 0.188976, 1.035330, -1.286124, -0.632550, 0.065661, -1.141877, 0.439256, -0.411609, 0.438568, 0.245852, 0.154813, 0.786368, -1.666565, 0.101667, 0.726125, -0.258098, 1.430828, -0.973455, -1.164799, -0.804723, -1.660878, 0.724905, 0.003622, 2.518405, -0.821849, -1.203569, -0.920241, -0.347009, -0.429517, -0.218684, -0.363691, -0.676136, 0.849115, 0.253290, -0.167034, -1.677462, -0.943318, -0.059456, 0.981061, 0.228082, -0.498045, -0.011386, 0.543529, 0.675897, -0.602654, -0.332944, -1.684504, -0.138444, -1.398646, 0.695943, 1.384534, 0.048922, 0.052279, 0.445894, -0.007716, -0.948554, 1.005421, 0.110103, -0.339983, 0.308759, 0.005576, 1.540160, -0.661971, -1.930171, 1.070834, 0.552744, -0.086532, -1.003284, 0.964403, 0.368057, 1.557855, -0.683712, 0.968482, 1.560189, 0.205528, 1.204257, 0.168757, -1.089900, -0.166008, -0.276822, 1.288948, -1.579818, 1.106215, 1.764589, -0.735160, -0.513925, -0.332291, -0.432862, 0.538629, 1.970195, -0.503093, 1.825510, -0.851094, 1.043372, -0.786157, 0.195709, -1.106888, -0.862172, -1.161158, 0.194246, -1.286416, 0.268817, 1.319611, 0.258319, 0.805095, 1.427110, 0.148204, 0.733514, -0.012265, -0.129145, -1.583334, 1.019218, -0.673775, 0.912491, 0.455014, -1.683563, 0.313058, -0.788071, -1.151111, 0.137989, 0.279501, 0.131515, 0.681638, -0.811328, 2.154928, -0.920189, -0.576842, -1.868773, 1.916564, 0.892843, 1.188732, -0.495584, 0.574613, -2.128337, 0.948332, -1.652525, -0.344080, -0.925831, -0.476208, -1.295742, 0.825655, -0.219038, 2.336519, -0.542141, -0.879528, 0.998332, -0.885338, -0.410581, 1.157868, 0.887529, 0.546793, -0.119927, 0.556263, 0.603421, 2.098276, 0.234344, -1.218359, -0.228490, -1.439272, 1.276009, 0.150508, -0.488764, -1.188981, -1.618396, 2.034557, -0.311839, -1.789165, 0.714627, -3.241854, 0.605791, 0.649312, 0.614132, 0.684677, -0.899841, 0.057542, -1.937206, -1.183239, -0.593327, 0.614598, 1.041341, -0.496205, -1.751677, 1.977614, 1.683848, 1.516063, -0.328396, -1.696270, -1.209620, -0.284087, -0.382491, -0.413478, 0.141751, 0.218658, -0.626540, 0.656667, -0.912117, -1.735687, -0.704264, -0.681995, 0.614389, -0.210368, -1.721584, -1.634176, -0.041366, -1.080553, 0.401964, -1.358046, 1.129168, -0.645780, -0.547942, -0.197578, -0.119129, -0.021959, 0.975386, -1.820966, -0.545574, 0.729146, -1.524926, 0.214967, -0.703118, 0.260650, 0.355321, 1.967348, -0.479549, 0.232670, 0.609636, 0.651773, -1.856775, -0.314928, 0.490626, -0.490476, 0.065247, -1.093362, -1.710783, 0.479643, -1.266125, 2.916858, 0.395481, -0.469633, -0.005751, -1.271365, 0.362709, -0.140248, -1.805602, 0.613691, -0.759143, -0.140610, 0.267943, -0.206594, -1.412791, 0.624664, 0.547263, 0.373155, 0.709517, 0.176978, 1.641680, 2.020586, 0.466355, -0.906755, -0.071427, -1.089906, -0.029639, 0.363439, -0.198020, -0.127079, 1.956164, 0.440522, 0.513886, -1.796162, 0.837763, 0.109987, 0.075265, 0.423366, 0.523431, -2.338522, 0.063965, -0.154354, -0.488166, 0.384259, -1.091778, 0.631721, -1.660728, 1.851979, 0.300069, -0.540797, -1.068448, -0.619603, 0.179161, -0.921241, 2.601532, -0.100220, 0.764467, 1.940143, 1.481879, -0.411336, 0.400048, 0.445539, -0.642727, 1.005939, -0.559863, -0.107485, -1.133241, 2.248171, 0.148766, -0.050439, -0.763270, 1.173710, 0.543949, 0.719926, -1.380532, 1.455724, -1.954754, 0.191885, 1.047383, -0.055181, 0.067765, -0.193047, 0.685021, 0.791924, -0.063495, 0.956633, 0.333739, -0.618674, -1.535626, 2.004221, 2.568413, -0.702948, 1.907915, 0.213514, 0.074934, -1.443073, 0.588510, 1.238695, 1.949012, 0.524589, 0.137723, 2.291528, -1.002643, -2.020133, -0.173899, -0.287366, 0.633437, -0.326582, 0.301225, 0.882578, -2.893429, -1.463340, 0.979887, -1.557021, 0.197504, 0.058903, 0.760729, -0.480202, -0.534622, 0.610186, 0.962622, 1.511943, -0.482532, -0.261485, -0.071230, 0.168140, -0.061168, 1.350243, 0.618477, 1.804237, 0.257283, -0.128231, -1.728029, 0.200455, 1.200062, 0.328923, 0.432758, 0.105380, -1.131069, -0.136168, -0.069884, 0.404249, -0.408784, -0.255515, 1.395448, -0.281421, 1.655929, -0.414393, 0.066142, -0.601646, 0.783763, -0.637032, 0.350136, 1.325956, -1.455285, -0.428905, -0.317900, 0.552004, -0.102692, 2.083838, 0.934837, -0.280961, 0.063432, -0.423507, 1.076833, -0.416788, -0.502943, -0.230439, 1.904904, -0.145474, 1.116579, 0.289299, 0.712281, 0.220929, 0.723025, -0.960970, -0.191319, -0.237056, 1.936813, -0.391569, 0.608243, 0.390187, 0.220902, 0.352282, -0.044823, -1.197997, 0.005569, -1.655990, -1.963922, -1.197090, 1.120382, -1.478556, -0.608600, -0.587427, 0.283057, 0.087609, 0.567818, 0.418145, 0.273816, -0.475406, 0.802629, 0.663746, 1.292739, 1.943314, 1.728960, 0.463592, 0.592385, 0.306311, -0.239121, -0.331913, 0.753530, 1.341508, 0.045289, 1.456249, -0.112073, 0.872989, -0.525661, 1.492156, 0.512362, -0.395138, 0.921375, 0.519459, -0.392125, -1.082873, 0.338398, -0.101418, 0.087493, -0.858884, 1.320164, 0.138540, 0.899533, -0.602230, -0.395940, 0.053647, -0.406491, 0.260205, -0.280444, -0.410601, 0.303662, -0.158068, 0.123977, -0.049745, 0.661406, 1.133147, 0.301529, -0.283301, 0.086445, 1.666444, 0.143803, 1.704894, -0.475500, -0.366486, 0.211542, 0.567884, -0.129356, 1.435244, 0.020772, -1.131476, -0.089181, -0.309321, 0.077059, -0.672087, 0.572843, -0.163259, -0.978702, -1.446526, -0.625613, -1.318081, -0.721298, -0.680078, 1.847799, -0.418294, -0.602874, 1.158229, 0.769679, -0.606297, 0.876627, -1.911764, 1.578822, 0.407763, -0.198504, 1.127478, -0.601356, -1.128093, -0.897507, 0.055020, -0.695643, 1.936208, 0.163776, -0.369722, 0.344532, 0.849090, -0.630274, -2.283234, -0.053299, 1.062097, 1.169596, -0.932489, -0.064371, -2.070770, 0.928290, -0.180465, 0.217732, -0.992157, -0.635478, -0.252806, 0.405256, -0.199592, -0.824726, -0.154464, -0.119519, -1.748641, -1.031692, 0.703265, -1.448966, 0.341707, -0.260722, -1.580059, 1.958296, -1.667620, 0.232777, -1.208156, 0.596980, 1.496026, -0.153971, 0.835032, -1.623652, -1.084719, 1.161023, 0.818291, -0.194181, 0.883238, -0.164320, -0.234377, -1.062249, 1.789353, -0.455813, -0.767958, 1.205597, -1.272696, 1.768498, 1.000642, 0.492871, 1.984776, 0.446479, -0.718084, 1.936141, 0.187449, 0.227080, 1.082278, 0.178257, -0.727150, 0.152735, 0.588750, -1.347089, 0.267602, -1.589438, -0.242205, -0.348296, -0.447812, 1.332005, -0.109987, 0.713350, 1.959988, 0.886860, -1.367260, 0.315042, -0.217964, 2.561946, 1.039628, -0.648836, -1.121465, -0.972995, 0.898369, 0.700193, 0.015627, 0.463744, -0.852181, 0.437625, -0.115093, -1.762941, -1.951170, -0.403873, 0.692655, -0.592486, 0.675800, 0.695697, -0.808606, -0.666883, 0.876165, 1.473400, 0.383658, 0.018461, 2.639049, -0.589383, -1.338700, 0.017713, -0.211562, 0.906365, 0.668441, 0.775710, 1.200767, 0.430085, 1.031541, 0.051452, 0.433621, -0.046206, 0.244739, -1.009615, -0.274276, -0.150335, -0.817762, -0.078315, 0.678624, -0.460352, -0.995724, 1.225914, 0.245840, -1.384803, 0.158079, -2.820754, -1.238687, -0.259432, 0.556390, 0.430531, -0.764754, -0.008340, -0.218249, 0.378924, -1.186254, -0.370347, 0.356590, -0.541068, -1.056414, -0.178890, 0.172732, -0.220900, 0.057519, 0.052452, -0.880049, -1.181674, -0.359520, -0.319118, -1.826494, 1.781046, 1.167557, -1.682008, -2.172502, 1.150669, 2.226176, 1.164139, 0.016495, 1.215782, 0.756317, -0.134769, -0.556952, 1.902740, 1.371228, -0.049627, 1.394635, 2.187705, 0.215410, -0.711373, -0.317358, -0.042612, -0.628702, 1.252396, 0.590713, -0.509766, -0.357739, -1.272660, 0.614505, -0.785269, 1.686853, -0.817846, -0.245070, -1.540112, -0.638239, -0.140424, 1.447841, 0.180816, 0.570393, 0.732703, -0.645269, 0.045402, -0.816230, -0.157526, 0.356127, 1.551203, -0.054277, -0.514000, -0.061724, 0.746154, 0.066489, 0.281339, 0.753759, 0.644522, 0.636840, 0.951156, -0.867456, 1.764249, 0.065511, 2.010101, 0.461107, -0.422423, 0.115251, -1.428685, 0.066474, 0.780328, 0.982491, -2.252636, 1.380864, 1.385895, -0.585753, 3.060201, 0.495925, 0.257784, 0.317770, -0.724218, -0.027689, 1.005678, 0.887670, 1.887434, -0.769505, -1.215669, 0.340487, 1.799093, 0.871864, -0.661876, 0.071821, -1.227728, -0.622969, -0.357377, -1.978369, 0.303017, -0.239514, -0.084570, 0.116498, 2.666832, -0.448812, 0.804166, -0.023746, -0.507447, 1.118932, -0.347776, -0.073723, 0.740973, -0.336018, -0.549698, 0.568777, -1.881742, 1.239304, 1.367368, 0.702300, 0.272692, -1.077847, -1.121986, -0.017198, 2.111832, 0.526122, -0.580326, 0.025489, 1.342631, 0.065291, 0.656574, -0.218764, 0.626640, -0.116426, -0.834598, 0.547881, 0.968269, 0.166072, 0.674785, 1.209617, 0.274679, 0.751307, 0.964807, 1.228521, -1.255558, 1.084980, 0.019804, -1.449037, 1.159229, 0.954614, 0.092146, -0.280054, -0.519465, -1.926053, -0.061965, 0.169230, 0.850119, 0.519686, 0.372584, -1.370726, -1.197251, -1.824408, -1.072567, 1.134980, -0.503332, 0.829760, 0.133400, -1.139958, -0.655918, 0.007764, -0.278091, -0.668253, -1.296406, -0.142673, 0.277825, 0.792285, 0.246248, -0.983226, -0.497304, 0.063856, -0.729541, -0.515812, 0.381771, -0.128081, 1.189037, 0.543374, 1.755209, -0.659257, -0.156564, -1.219527, -0.748285, -1.414362, -0.206548, -0.768475, 1.753264, 0.433693, -0.456829, 1.305124, 0.944325, -0.304434, 1.567057, 0.389593, -0.805715, 0.288141, 0.001073, -0.866277, 0.856254, 1.005045, -0.575004, 1.255241, -1.267135, 0.827891, 0.627456, 0.290053, -1.751737, -0.228863, 0.877419, -1.028292, 0.207357, 1.051466, 0.473822, -0.350145, -0.227565, -0.529510, -0.163023, -0.875734, 1.733327, 1.450800, -0.170262, -1.058933, -0.907097, -0.141974, -0.458068, -0.519686, -0.325724, -0.745580, -0.534122, 1.485114, 1.081691, 0.275739, -0.601219, 0.769657, -0.416320, 0.142507, -2.762656, 1.144743, 1.180477, 0.181053, 0.074636, -0.796548, -0.186655, -1.881362, -1.085970, -0.509258, -0.606819, 0.938280, 0.124097, -0.373066, -0.661267, 1.230995, -0.385835, -1.383469, -0.035172, 0.219884, -0.257441, -1.043364, -0.169221, 1.232250, 0.528677, -0.353701, 1.476772, 2.518705, 1.523314, -0.769814, -1.381941, 0.068797, 0.872599, 0.021330, -1.554189, 0.174941, -0.817998, 0.192949, -0.193834, 1.352635, 0.126426, 0.541882, -0.822730, 0.473513, 0.926315, -0.320130, -0.254830, 0.755312, 0.361027, 0.196379, 1.042954, 0.904753, 0.696622, 1.640117, 3.010218, -2.193397, 0.534677, -0.772548, -2.197632, -1.020278, 0.407861, 0.414727, 0.042747, 0.139400, 0.735074, 0.453214, -0.200430, 1.245677, 0.734763, 1.204037, 1.591414, -0.335526, 0.194340, -0.779917, 0.883076, 0.049662, -1.339622, 1.806029, -0.075693, -0.450085, -1.486220, 0.098281, 0.205562, -0.621085, -0.503952, 0.351056, 0.194712, -1.131180, -0.063038, 2.202519, 1.897910, 0.037346, -0.961491, 0.250592, -0.583878, 0.217716, -0.096137, -0.613621, -0.436752, -2.161181, 0.331355, 1.346340, 0.716746, -0.834276, -0.333817, 0.204897, 1.152756, -0.567320, -0.247394, 0.010408, -0.114000, 0.099380, -0.872770, 0.278929, -1.660458, 0.989818, 1.567889, -0.844155, -1.212154, -0.085480, -0.273551, -2.041399, 0.660285, 1.663567, 0.054955, 0.855375, -0.587682, 0.409303, -1.572726, -0.388262, 1.008047, 0.130382, -1.128315, -1.155455, -0.916014, 1.614258, 0.320916, -1.448536, 1.034356, 0.978944, -1.461521, -2.289691, 1.578304, 0.420726, 0.891065, -1.493227, 1.011295, -1.078855, 1.048173, 1.239733, 0.640246, 0.227257, -0.257930, 0.478270, -0.433540, 1.573823, -0.065773, -0.416057, -1.590933, -0.450791, 0.046318, 0.445231, -0.215918, 0.151527, -0.237031, -0.494039, -0.164976, 0.924101, -0.206761, 1.449285, -0.427534, 0.632189, -0.247537, -1.298990, -1.342565, 1.100166, 1.377972, -0.356412, 0.637115, -1.091612, -0.245056, -0.362218, -0.200866, 0.091204, 0.544847, 1.106568, 0.507441, 0.827890, 1.258804, -1.941600, -0.881314, 0.527156, -1.086383, 0.271413, -0.901657, 0.696029, 0.417992, 0.979525, 1.042010, -1.030698, -1.874807, 3.398919, -0.641428, -1.746851, 2.144200, 0.192693, 0.571218, -1.680415, -0.052169, -0.248896, -0.306711, 0.863894, -0.523245, -0.196574, -1.166822, -2.152000, -0.149223, -0.228715, 1.210455, -1.129504, -0.704782, 1.341994, 0.954814, -0.702368, 0.981207, 0.504292, -0.347149, -0.412695, -0.054337, -0.024363, -0.988587, -0.573520, -0.144234, -1.464112, 0.813837, -0.076591, -0.411887, 1.149100, -0.962143, 0.430304, 1.755473, -0.214532, 1.147916, 1.014250, -0.906121, 0.475568, 0.498543, 0.085289, -0.700405, -1.309766, 1.146371, 1.108562, 0.612347, -1.180042, 0.370103, -0.507015, -0.293970, -0.186250, -1.140048, -1.273633, -0.168196, -2.000909, -0.451467, -0.100563, 0.279401, 0.849988, -0.013809, 0.248252, 0.832523, 2.201352, -0.740547, 0.760130, 0.314832, -1.518040, 0.466491, 1.268121, 1.333187, 0.623572, 0.253644, -1.829596, -0.245294, 0.458871, -0.980105, -1.471228, -0.376917, -0.297523, -1.094802, -1.839626, 1.981950, 1.287344, 1.422106, 1.168553, 0.237041, -0.859686, -0.631022, 1.334355, 2.119022, -0.707684, -0.249415, -1.200882, 1.242370, 0.049691, -1.020185, 0.122966, -1.275383, 0.957110, 1.405397, 1.703356, 0.882804, -0.089679, -0.877427, -1.109126, 0.380792, -1.685032, -0.033966, -1.091904, -0.138151, 1.009477, -2.220388, 0.032645, 0.544454, -0.599903, -0.907719, 0.567989, 0.269712, -0.513824, -1.126466, -0.271517, -1.188455, 0.936433, 1.120812, 1.377916, -0.276338, -0.026779, -0.154409, 1.794437, 0.117785, -1.227497, 0.165788, 0.396939, 1.903204, 0.096561, 1.512436, 0.040895, -0.146897, 0.741428, -0.028302, -0.170163, 1.651506, -1.360639, 0.537423, 0.437283, -0.278803, -1.324650, -0.976932, -0.276450, -0.978670, -1.976231, 1.193017, -0.752801, 0.088483, -0.563669, 1.415742, 0.383571, 1.978561, -0.810498, 2.032773, -1.256114, -0.723276, -0.181050, 1.213796, 0.163981, 0.734518, -0.225810, 1.000340, -2.509578, 2.372815, 0.309886, -1.332610, -0.277844, -1.120238, 0.207199, -0.322332, 0.877200, 0.668735, 1.183866, -0.383187, 0.034996, 0.021170, 0.395998, -2.275283, 0.600536, -0.490011, -0.860737, -1.934725, 0.763329, -0.036843, 0.117915, -0.427276, 0.138674, 1.466570, 0.666265, -0.708103, -0.053743, 1.731860, 3.368065, -0.186848, -0.849061, 0.128535, -0.181701, 0.645400, 0.472349, -0.756277, 0.361928, 1.036846, -0.245113, 0.800314, -0.030196, -2.445163, -0.609551, -1.066292, -0.639986, -0.060376, 1.058545, 1.555088, -0.144319, -0.888315, 0.803384, -0.084323, 2.055458, 0.405981, 0.815759, -1.047926, 0.517240, 0.377259, -0.946853, -0.504865, 0.209505, 2.288201, 0.173619, 0.497703, -1.621674, -0.752915, 1.134102, 0.544574, 0.432113, -0.943979, -0.186731, -0.706785, -0.081770, -1.146737, -0.788218, 1.182414, 0.663943, 0.008436, 0.370637, 0.191173, 0.497074, 0.609104, -0.794619, -2.050091, 1.608134, -0.010504, -0.630989, -0.293492, -0.788311, 1.608822, -1.264485, 0.378428, -1.461977, 0.870693, -1.323739, -2.027706, -0.270420, -0.020569, -0.094163, 0.604453, 0.514551, 1.309150, 0.300110, -0.132355, -1.037283, -0.601923, 1.373913, 1.836320, -1.925639, -0.447010, -1.165429, -0.575455, -0.654843, 0.222102, -1.637068, -0.386336, -0.062709, 0.469046, 0.360834, 0.885365, -1.140781, -0.660643, 1.349843, -1.142633, -1.573966, -0.581078, 0.203327, 0.173475, -1.543451, 1.253947, -2.360781, 0.052113, 0.054256, 1.489929, -2.319850, -0.875172, 1.052834, -1.168659, 1.203849, 1.873580, -1.304988, -1.195347, 0.074933, -0.819237, 0.225344, 0.878967, 1.709015, 1.049806, 1.288809, -1.032700, 0.086863, -0.946706, -0.818545, 0.872467, -0.237770, 0.155820, -1.304577, 1.636670, 0.151133, 0.967993, 0.110881, 0.150877, 1.484445, 1.121276, -0.118021, 0.608817, 2.357328, -1.016401, -0.469376, -0.550390, -0.409004, -1.288844, -0.022064, 1.322211, -0.179143, -0.222284, 0.297379, -0.227155, 0.767312, 0.742179, -0.178157, 1.907347, -1.488104, 1.752610, 0.309048, -0.687354, -1.591249, -0.066197, -0.632987, 0.156538, -0.092357, 0.657221, -0.968431, 0.013441, 1.566867, -0.779775, -0.102937, 0.187588, -0.239708, 0.514408, -0.892555, -2.006233, 1.823657, -0.516750, -2.148337, -0.790337, -0.606263, -0.473256, 1.168875, -0.090796, -0.455657, -1.093990, 1.394264, -0.037004, -0.973671, -0.703020, -0.391457, -0.883238, -0.865456, 0.194524, 0.277050, 0.197426, -2.719405, 0.999210, -1.911888, 0.768931, 0.893925, 0.798184, -0.483811, -0.109018, 1.789914, -0.732209, -0.197841, -1.148164, 0.600628, -1.104373, 0.493309, -0.578877, -0.014371, 0.244305, -1.305085, 1.323745, -0.604934, -0.431943, -1.869939, -0.342695, 0.273983, -0.637892, 0.625504, 0.060483, -0.375854, 0.481039, -0.465637, -0.493322, 2.078899, 0.965049, -1.873762, -1.398574, -1.103456, 0.023818, -0.048828, 0.499922, 1.103808, -0.407019, 0.234889, -0.290098, -0.280004, -0.255307, -1.155633, 1.745537, -0.877842, -0.153193, 1.243263, 0.414363, 0.235606, 1.926401, -1.345772, -1.537519, -0.164772, 1.319398, 0.237318, 0.387374, 0.156613, -2.544656, 1.487631, 0.696228, -0.631754, 1.044520, -0.405275, 0.442023, 1.095049, -0.476201, -0.765776, 0.969635, 0.581589, 1.887556, -0.774355, -0.087189, -1.963782, -1.440028, 1.664002, -0.453721, -2.270548, -0.133651, 1.859609, -0.091845, -0.303762, 1.874308, -0.532028, 0.968764, -1.352737, 1.735034, -1.853280, -0.311987, -1.361894, 0.162358, 0.843325, 0.860413, -0.027289, 0.627408, -0.435320, 0.282668, 0.048371, 0.703496, 0.742708, 0.124144, -0.204005, 0.829737, -0.612569, -0.464114, 0.937625, -0.369567, 2.200452, -0.926200, -2.153710, -0.903290, 1.360621, 0.382107, 0.161709, 0.122960, -1.003582, -0.105325, -0.923724, 0.092264, 0.224534, -1.563664, 0.824365, -0.955211, 0.363359, -2.580325, 0.973050, -1.143877, -1.238295, 0.763985, -1.921105, 0.683867, 1.187746, -0.038994, -0.178769, 0.315576, -2.251306, 0.634587, -0.031517, 0.665309, 0.586579, -0.391361, 2.723842, 0.173339, 0.870107, -0.129691, -1.586291, 0.012321, -2.054189, -1.348105, -0.047760, 0.648424, -0.617658, -0.555565, 0.269593, 0.378318, -0.771060, -0.035391, 0.553282, -0.554301, 0.189406, 0.020271, -0.363177, -1.372483, 0.136119, 0.310903, 0.536777, -0.664214, 0.266679, 1.377958, 0.951877, -0.505270, 0.966229, -0.165921, -0.678581, -0.292191, -0.452764, -0.471618, 1.581310, 2.239947, -0.475507, -1.166860, -0.226614, 0.330568, -0.599378, -1.029070, -0.740106, -0.991834, -0.838594, -0.286063, 0.087952, -0.578373, 1.139414, 1.418043, 0.528983, 0.813993, 0.517582, -0.440381, 1.033115, -0.499338, 1.714287, -0.184252, 0.410220, 0.155704, -0.087856, 0.197838, -0.204555, -2.190064, -0.393011, 0.180747, 1.506584, 0.310229, 0.209610, 0.208258, 0.920001, -1.320895, 1.235602, 0.875701, 0.506555, -1.510092, 0.536531, -0.756404, -0.366492, -1.553902, 0.671268, 2.275665, -1.315565, -1.990081, -2.434534, -3.003460, 0.187586, 0.024793, 1.967721, -0.615093, -0.991161, -1.947062, 0.901306, -1.009685, -0.208878, 0.389756, -0.808893, -0.183898, 2.358423, -1.266086, 1.458911, -0.997851, -1.573394, -0.739068, -0.977383, 0.027170, 1.028018, -0.915064, 1.518475, -1.839727, -1.588492, -0.319333, 2.604299, -1.544695, 0.623290, 0.478191, 0.479097, -1.104491, 0.117296, -0.278895, 0.239931, 1.488080, -0.623504, 0.123458, -1.262306, -0.923429, 0.411504, 1.373551, -0.528096, -3.115369, 0.459906, -1.543553, -0.795593, -0.983580, -0.693758, -0.718482, 0.792452, 0.183048, -1.986654, 1.163537, -1.924302, -1.021194, -0.226743, -0.057445, -0.371688, -0.000038, 0.455770, -0.803171, -0.352188, 0.427768, -0.671950, -1.397304, -0.228509, 0.243365, 1.662694, 0.321892, -0.629543, -1.920191, -0.212265, 0.168026, -0.417266, -0.202305, 0.341350, -0.817676, -0.077210, -0.016715, 0.786514, 0.259231, 0.682989, -0.400077, 0.193763, 1.432670, 0.273162, 0.438181, -1.117096, 0.279743, 0.195410, -0.492454, -1.365304, -1.138301, 0.013034, -0.808158, -0.133111, -0.433158, -0.622648, 0.269748, 0.380002, 0.502397, -0.209955, -0.469299, 0.302911, -2.705736, 1.482955, 1.012440, 1.327509, 1.845529, 0.059318, -1.288721, 0.440556, 0.132143, -0.177198, -0.020683, 0.011311, 1.007897, 0.476104, -0.954094, 1.032277, 0.854230, 0.372054, 1.306225, -0.264705, 1.803049, 0.219990, 1.237412, 0.903214, -1.408900, -0.868558, -1.045087, -0.270156}, - { -0.124556, 0.214732, -0.475685, -0.003755, -1.551845, 0.290485, 0.084813, 1.064142, 1.780594, -0.330511, 1.763450, 0.159717, -1.646925, 0.106462, 1.850661, -0.907728, 0.754688, 0.495498, 0.122055, 0.411446, 1.280869, 1.408719, -0.592297, 0.896132, 0.026837, 0.537325, 0.488521, -0.815213, 0.227998, -0.938928, 1.533882, 0.665805, 0.936838, -0.234686, 0.044656, -0.022932, 0.095962, 0.062116, 0.372148, 0.206869, -0.605317, -0.078986, -1.407345, 0.231873, -0.409335, -0.664240, 1.447953, -0.698160, 3.335412, 0.870955, -1.260834, -0.091863, -0.084850, 0.640673, 0.307444, -0.835049, 0.962834, -0.829647, 1.960242, -0.901437, 0.859880, -1.852758, 1.278928, -0.343956, 0.348270, -1.865621, 2.482861, 0.401716, 0.751886, -1.002222, -1.551203, 1.795758, -0.730999, -1.448246, -0.229022, -0.272483, 0.243393, -1.314431, 1.394117, 0.212025, 0.192108, -1.697462, 1.551802, 1.046398, -1.361587, 0.118674, -0.381348, 0.714766, 0.195474, 0.252701, -0.210753, 1.251111, 2.910465, 1.097646, -0.122490, -2.049957, 0.060060, -0.156807, -0.529914, 1.513162, -0.269578, 0.571004, 1.423364, -1.229091, -0.293224, 0.286141, 1.370368, -0.513470, -0.557197, 0.027631, 0.133527, -0.101162, -0.009544, -0.931478, 0.353155, -1.475984, -0.578765, 0.475901, 0.223068, -1.491776, 0.640581, -0.263308, -1.103687, 0.692428, 1.419664, 0.892742, -2.005419, 1.660345, -0.884437, 2.003043, -0.234451, 0.595339, 0.410456, 1.365405, 0.240031, -0.414562, -0.396543, -0.065898, -0.193108, 1.200651, -0.778109, -0.767686, 0.988285, 0.402860, -0.557806, -0.853069, 1.292825, 1.614735, -0.785408, -0.804496, -0.550633, 1.237612, -0.119418, -1.048116, 0.816668, 0.071597, -0.760067, -0.024247, 0.530724, 1.998850, -0.623444, -0.495789, -0.728117, 1.136157, -0.415790, 0.612050, -1.638522, -0.062055, 0.806061, 0.300774, 1.158025, 0.726819, 0.419197, -1.660878, 0.858088, 1.481711, -0.101485, -0.530590, -0.035412, -0.750298, 0.900485, 1.486717, 0.038184, 1.076900, -1.209982, 0.296408, -0.860844, 1.262837, -1.931212, 0.672062, 2.367405, -1.164733, -0.318571, -0.483524, 0.459769, -1.118972, -0.342848, 1.202205, 0.486918, 1.526388, 0.889725, 1.149997, -0.430029, 0.376025, 3.149772, 2.023580, 0.374976, 0.187981, 0.795106, 0.258165, -1.291416, -0.533949, -0.124301, -0.522019, 1.478513, -0.604373, -1.432819, -0.243765, 0.662953, -0.906332, -0.004578, -2.471117, -0.833055, -1.219079, 0.212340, 1.859250, 1.206218, 0.192215, -1.285447, -0.213471, 1.224513, -0.859124, -0.695230, -0.500472, 1.173397, -0.117129, 0.360284, 0.220255, 0.333413, 0.675134, -0.047669, -0.387372, 1.440709, -0.785724, 1.034797, -0.805795, 0.260910, -0.747421, -0.417968, 0.660365, -0.096735, 0.236975, 0.100046, 1.609320, -0.612572, -0.240876, -0.099845, 2.752326, -0.302302, -1.082565, -1.688467, 0.038791, -0.723517, 0.836125, -1.350985, 0.729227, -0.373164, -0.701913, -0.379932, -0.093915, -2.051312, 0.404109, 0.836971, 1.540677, 0.085790, 0.689076, -0.607341, -0.572421, 1.667701, -2.021840, -0.136856, -0.735925, -0.024302, -1.329776, -0.820792, 1.854717, -0.024481, 0.101076, -0.785774, -0.365410, 0.042571, -0.297230, 0.798715, 0.385450, -1.250740, -0.048449, 0.007554, 0.663689, 0.662752, 0.308399, 1.184945, 0.583256, 0.003352, -1.979616, 0.616051, 0.806489, -0.779062, -1.088973, -0.216438, 0.397105, -1.526621, 1.138214, 2.184197, 0.065824, -1.038327, 1.046104, -0.632096, 0.736100, -0.021066, -0.652877, -0.729231, -0.657829, -1.290562, 0.697807, 0.279240, 0.289866, 0.117573, -0.118003, -0.417927, -0.601012, 1.120439, 1.271690, -0.432336, -0.156383, -0.064426, -0.348522, -1.494706, -0.218396, 1.389066, -0.524989, 0.031994, 2.223101, -0.313071, -1.175229, 0.503698, -1.903233, -2.279456, 0.465461, -0.497311, -0.095432, 0.079771, -0.124652, 0.184967, -0.793246, -0.936887, 1.523089, -1.027867, -0.765387, -0.402405, 0.032419, 0.069341, -0.083108, -1.212047, 0.069437, 1.285615, -0.824335, -0.634190, 0.534955, -1.487075, -1.388754, -0.230385, -0.106416, 1.100100, -0.682561, -0.718692, 1.161490, -0.891574, -0.254596, -1.607980, -0.785684, 0.822982, -0.117902, -1.085879, -1.673469, 0.746334, -1.017921, 0.452566, 0.801144, 1.102851, 0.333506, 0.853609, 0.605417, 0.054769, -0.831675, -0.253099, 0.536466, -1.158812, -0.237043, 1.909930, 0.524417, -0.029045, -1.427767, 0.089708, -0.433114, 1.476551, -0.306867, -0.642571, -1.126997, -0.873396, -0.277359, -0.999856, 0.054863, 0.603877, -0.704717, 1.398580, -1.293804, -0.021676, -0.728282, 0.000341, 1.858945, -0.399946, 0.761750, 0.713962, -0.815401, -1.246949, -0.290712, 0.057757, -0.992989, 0.296043, -0.496273, 0.005757, 1.039500, 0.144973, -1.478988, -1.025327, 0.669251, 1.142326, -0.955892, 1.896616, -0.251807, -1.062911, 0.775867, 0.899093, 0.734023, 0.274711, 0.331019, -0.318289, -1.105881, 0.274094, -0.659667, 0.814517, 1.101066, -0.420062, 0.444412, 1.941795, -0.080213, -0.929138, -0.805259, -0.919051, 1.173050, -0.597020, 1.918823, 0.936452, -0.106886, 1.379318, 0.594719, 0.491022, -0.929728, -0.398663, 1.142565, 0.276807, 1.005901, -0.245142, 1.116563, -1.690943, 0.569288, -1.085292, -0.475897, -0.813621, 2.081917, 1.298205, 0.798231, 0.114789, 0.997470, -1.448101, 1.206036, 1.076599, 1.020118, -0.119822, -1.168915, -0.018358, -0.025953, -0.288002, -1.597011, -1.090315, -0.783672, 0.381058, -0.520627, 0.417752, 0.145083, -0.175108, 0.715159, 1.525393, 1.315036, 0.201650, 0.398830, -1.625843, -0.434306, -0.511978, -1.309002, -1.046297, -1.010623, -0.093374, 0.853805, -1.538929, -1.277129, -0.819305, 0.173539, -0.351919, -0.322774, 1.715311, -1.552179, -1.246247, -0.937346, 0.513066, -1.188081, 0.503276, 1.431313, -0.906037, -1.209430, 1.842265, 0.855947, 0.209670, 0.045423, -0.459216, 1.359160, 1.172179, 0.139677, 0.975699, 0.498079, 0.628391, 1.157151, -1.598262, 0.153501, 0.662128, 0.706682, -0.550672, 0.771564, 0.907013, 1.268376, -0.632004, 0.617584, -0.458430, 2.085585, -0.008046, -0.210887, 0.396583, -0.734302, 0.097747, -1.744962, -0.789943, -0.157987, -0.190494, 0.070852, -0.601011, -0.317571, -0.124127, -1.890930, -0.284864, -0.520676, -1.146291, -0.919355, 0.651292, -1.787168, 0.882431, -0.351980, -2.669798, -0.430740, 0.561496, -0.581550, 0.078186, -0.178902, 0.607134, 0.842264, 0.327635, -1.217835, 0.205561, -1.942389, -0.056853, -0.537946, -2.262090, -0.066176, 1.324403, 1.128981, -1.797952, -0.989625, -1.575181, 0.145158, 1.175949, 1.494624, 1.120458, -0.998547, 1.995705, 1.089385, 0.548776, 0.282457, 1.330262, -0.174400, -0.204203, 0.161817, -0.264929, -0.461986, -1.626783, 0.391523, 0.145890, -1.754169, 0.296589, -0.612268, 0.153805, -0.861908, 1.438167, -0.674448, -0.327895, -2.062997, -0.289202, 1.176646, 0.323835, -0.830045, 1.408956, -0.751730, -0.316489, -0.158235, -0.368825, -0.277708, 0.197704, -0.817506, 0.558676, -1.413840, -0.711814, -0.597066, -0.674612, 0.367378, -0.968266, 0.667102, 1.117752, 1.586125, 1.565250, 0.144219, -0.695463, -0.290525, 2.881412, 0.015000, 0.639978, -1.080645, -0.783334, 0.515186, -1.398020, 0.373036, -2.158046, -0.254884, -0.605621, 0.802108, -0.126641, 0.938277, 1.376617, -0.718748, -0.842720, 0.381600, -1.215405, -0.827983, -0.059611, 0.196732, -1.650873, -0.084782, -0.185829, -0.487551, -0.463072, -0.259181, -0.103362, 0.537078, 0.014879, 1.135703, -2.041666, 1.979608, -1.603868, 1.507785, 0.953596, -0.377685, 2.613216, 0.650664, -0.437154, 0.254299, -0.429017, -0.557572, -1.633633, 0.576717, 0.534072, 1.159335, -0.427657, -1.118196, -0.012284, -0.186427, -0.691040, -0.730078, 0.075365, -1.132984, -0.190870, 0.406804, 0.207879, -2.294693, 2.152850, -0.467270, 0.942535, 0.032904, -1.564979, 0.675052, 1.961251, -0.453044, -0.820623, -0.294431, -0.451907, -0.265416, -0.631487, 1.066984, -0.338139, 0.333483, 0.243287, -0.247070, 1.720912, 0.983091, -0.056447, 0.692842, -1.604852, 0.306966, -1.017264, 0.290449, 0.455763, -1.414400, 0.297050, 0.592006, -0.383773, 0.930126, 1.519644, 0.596109, -1.209475, -1.261013, 1.107478, 0.062156, -1.135464, -0.968872, 0.164482, -0.784653, -0.629053, -0.354562, -0.777726, 0.810718, -0.565584, 1.122523, 1.361012, -2.056448, -0.553321, 0.866706, 0.667344, -0.793330, 0.323302, -0.120487, 0.150663, 1.007660, -0.071390, -0.108765, 0.022239, -0.575841, 0.630777, -0.177022, -1.483497, 0.638667, -1.501063, -0.805663, -0.224633, 0.987011, -0.741495, -0.381262, 0.325782, -0.352854, 0.565832, 0.563500, -0.537951, 2.486304, 0.465521, -0.588733, 0.035477, -0.242992, -0.428474, 0.708396, -0.056116, -1.068553, 0.159806, -0.439672, 0.550554, -2.380432, 1.804097, 0.128071, 0.754179, -0.447299, 0.694061, 0.516008, -0.989336, -2.064580, 0.111212, -0.408785, 1.179455, 1.168253, -0.333812, -2.679116, -1.028988, -0.106062, 1.643627, -0.292608, -0.540806, 1.311380, -0.574682, -0.018146, -1.784798, 1.172512, 1.580119, 0.363252, 0.230218, -0.541092, 0.069216, -0.342713, -1.048313, 0.356980, 0.746783, -0.256746, 0.449411, 1.622351, -0.634571, -0.545241, 0.381035, -0.291517, 0.040134, 0.622269, 1.027205, -1.421924, -1.890758, 1.668177, 1.108259, 0.960238, -0.296446, -0.629126, 1.326619, 1.021395, -2.145787, -0.285352, 0.566308, -1.366336, -0.407285, 1.453667, -0.413106, 0.929902, -0.048213, 0.612840, -1.548366, -0.418754, 0.418942, 0.869369, -0.111274, 0.065392, 0.165834, 0.143857, 0.314177, -0.708972, -1.262740, -0.330130, -1.789362, -0.870849, 1.972676, -1.296305, -0.337860, -0.926449, 0.040697, 0.024703, 1.511723, -0.256754, 0.424117, -2.056355, -0.349122, -0.038793, -0.334562, -0.435336, -0.403743, 0.634943, -0.071141, -0.067210, -0.468274, 0.523411, 1.230742, -0.516104, 0.811010, -0.587272, 0.489719, 0.428672, -0.691886, 0.966198, -1.073430, 0.139791, -0.335730, 0.359905, -0.681301, -0.755568, 0.402569, -2.042570, 0.214874, 0.366972, 1.374920, -2.773028, 1.356821, 0.001218, 0.307316, -1.078310, -1.695454, 1.530202, -0.673198, 0.227762, 0.721745, -0.272509, 1.356354, -0.612329, -1.385841, -0.359150, -1.587610, -2.609899, 0.765939, 0.403686, -1.345989, -0.016400, -0.782035, -0.068772, -0.563583, -1.512323, -0.802373, 0.846235, -0.676507, -0.411770, 1.204343, 0.466326, 2.791710, 0.178031, 1.023895, -0.194968, -1.675175, 0.164688, 0.990177, -0.791173, -0.047906, 0.066020, -1.862855, -1.359542, 0.836239, -0.176627, -2.052211, 1.159254, -0.110586, -0.535847, -0.725505, -0.043446, -0.883788, -0.741774, -0.446175, -1.080935, -0.146795, -0.372000, -0.545105, -0.413078, -0.415851, 0.804739, -1.245653, -1.058451, -0.818105, -0.064762, -1.002594, -0.408039, -0.866596, 0.543270, 0.828634, 0.225722, 0.419858, -1.183411, -0.892608, -0.503698, 1.093961, -0.887446, -0.344446, -0.320414, 0.648191, -0.238688, -0.545827, 0.174564, -1.884116, -0.206660, 2.030400, 1.183137, 2.163397, 0.479257, -0.334608, 1.057730, -0.243829, -1.786532, -0.452534, 2.139789, 1.696456, 2.233223, -0.757544, 0.582066, -0.874874, 0.135934, 1.248448, -1.150499, -1.198146, -0.408667, 0.091871, -2.181645, 0.140551, 0.125460, 0.994109, -0.657229, 1.252808, 1.307662, -2.303020, -0.133937, 2.735802, -1.506595, -0.902908, 0.598781, -0.259200, -0.739598, -0.971033, -0.191418, 1.915108, 0.188066, 0.613548, 0.880680, -0.567797, 1.113599, -0.228490, -0.856571, -0.709118, -0.324824, -0.762390, 1.076884, 1.017765, 0.086270, 1.181267, -2.207183, 0.657843, -0.801405, 1.974467, 1.020810, -1.811095, 0.188050, 0.038996, -0.237017, -0.546838, 0.958459, 0.981209, -1.040830, -0.289389, 0.025209, 0.552407, -0.019490, -0.185065, 0.347340, -0.258149, 0.929790, 1.121788, -0.383434, 1.013352, -1.132277, -1.151446, 0.062418, -0.308587, -0.294004, 0.457512, 0.707404, 1.097272, -0.461449, 0.562656, -0.291580, 2.313274, -0.457785, -0.681476, 1.408637, 0.285265, -1.621723, 0.284824, -0.740783, -1.060114, 0.249114, -1.772057, 0.983641, 0.599315, -1.316473, 1.988788, 1.090292, 1.513413, 0.400976, -0.027280, 0.549917, 0.471572, 1.373071, -0.653361, 0.466708, -0.052620, -0.073322, -0.680658, 0.489331, -1.885395, 1.251539, 0.593031, -1.014345, 0.753572, 0.197509, 0.446290, 1.288177, 1.212358, 0.980768, 0.780476, 0.787523, -0.435219, -0.909224, 1.049510, -0.617111, -0.348352, 1.446409, 0.414974, -0.721153, 1.620298, 0.096506, -1.259982, 0.664118, -0.443832, 1.290849, 1.858972, -0.455368, -1.944236, -0.456144, -0.845723, 1.370862, 0.742908, 1.254573, -0.749793, -0.036196, 1.755142, -0.685936, -1.107264, -0.836196, 1.052430, -0.147071, 0.548983, -1.089857, -0.635970, 0.330474, -0.176892, 0.944300, 1.125057, 0.758845, -0.870518, -0.402911, 1.600570, -1.257928, -1.023360, 0.663575, -0.696277, -0.400817, -1.327128, 0.539098, 1.736591, -0.321577, -0.545796, 0.434284, -0.714456, 0.618137, 0.511372, 0.278212, -0.260021, 0.915341, -0.922452, 0.037292, 0.426179, 0.705869, 1.035049, 0.026599, 1.677043, 1.657345, 0.923044, -1.411100, -3.832237, 0.008010, 0.373282, 0.883514, -0.034189, 0.334271, -0.159206, 1.034732, 0.320248, -0.616155, 1.255802, -0.623626, -0.737680, -0.875783, -1.574785, 0.263765, -0.666912, 0.646696, 2.237981, 1.637003, -0.249799, -1.026068, -0.652068, 0.727805, -1.743778, 0.185351, -0.059293, -1.177505, -1.102831, 0.697480, 0.507852, -0.045236, -0.465180, 0.318554, 0.267656, -1.012823, 1.693587, 0.076736, 0.162081, -0.840275, 0.607198, 1.714491, -0.075592, 0.966025, 0.191240, 0.097275, 0.413008, 0.241719, -2.111725, -1.035877, 2.077765, -0.016953, 0.871715, 0.100560, 0.541924, -1.293770, -0.162740, 0.005407, 0.901538, 0.093142, 0.344972, -1.250350, -0.159083, 0.031903, -0.444135, 0.688179, 1.217298, -1.062174, -0.217747, -0.427113, -0.855284, 1.759428, 0.074507, -0.802393, 0.293451, -0.327369, -0.563558, 1.044823, 0.896199, -0.372447, -0.437880, 0.138788, 0.476211, 0.506663, -0.181221, -1.264109, -0.528839, -0.946731, -0.458235, 1.261515, -1.380901, -2.605806, 1.348817, 0.847604, 0.804814, 0.014878, 0.361055, -1.160617, -0.779195, 1.518698, 1.230783, -2.283942, 0.343663, -0.107100, -0.737299, 0.216103, -0.805411, 0.824130, -1.364841, 1.861787, -2.115733, 0.701171, -0.498939, 0.154625, -1.784520, -1.670132, 0.072219, 0.114108, -0.116636, -0.523063, 1.294796, 1.744407, 0.594212, 1.582234, -0.355617, 0.085229, 1.375400, -0.518462, -1.445663, 1.350187, -0.156895, 1.557601, 0.092361, -0.077288, 1.373156, 0.914879, -1.165836, -0.719149, -0.136050, -0.534955, 0.766915, -0.050572, -0.170610, 1.072980, -0.316467, -0.428878, -0.098019, -0.266370, 0.995632, -1.158306, 0.333018, 0.915557, 0.585576, -1.795874, -0.597102, 0.288074, -0.780558, -0.121593, -0.422456, 0.651376, -0.533608, -0.129734, 0.160401, -0.820242, 1.469957, 1.260974, -0.073573, -0.513647, -0.521365, -1.311475, -0.747555, -1.736958, 0.515721, -0.069416, -1.707808, 0.861408, -1.267705, 1.445141, 0.168282, 1.096348, -0.032258, 0.487565, -1.378492, 0.984394, 0.295189, -0.581293, -1.126321, -0.965170, 0.904861, -1.627988, 0.718193, -0.128275, 0.441543, -1.188704, 0.528057, -0.325109, -0.503576, 1.109411, 0.117337, -0.770917, 1.109915, -1.538171, -1.301114, 0.202651, 0.106116, -0.175800, 0.619204, 1.829062, 1.394035, -0.098988, 0.123457, -1.280059, -0.651270, 0.200186, -0.146245, -1.378196, -0.870654, -1.081427, -0.437840, -0.905927, -0.335555, -0.007978, -1.816853, -1.340287, -1.020128, 0.544799, -0.758345, -1.848817, 0.102965, 2.011129, 1.116329, -0.888418, -0.567218, -0.650773, 0.193882, -0.141545, -0.579191, 0.052989, 1.623450, -0.202421, 1.118551, -0.537210, -1.469557, 0.924297, 0.020956, 0.484929, -0.207247, 0.514712, 1.103358, 0.001177, -0.525153, 1.233094, -0.635913, -0.649243, 1.462223, -0.686829, 1.128536, -0.803818, -0.184998, 0.270263, 0.927053, -2.022480, 0.206045, 1.006607, 0.015428, 0.102861, 1.440047, 0.315756, 1.383134, 0.257763, -1.979327, 0.161625, -0.121104, 0.703871, 0.030053, -1.357377, 0.529402, -0.209974, -0.133984, 0.364779, -1.430084, -0.112340, -0.287188, -0.122642, 0.883928, -0.373543, 0.471797, 1.579353, 0.572610, 0.248064, 0.627978, 1.189376, 0.968811, 0.100968, 1.464239, 0.323001, 0.001922, 0.204583, 1.067669, 1.025336, -0.044850, -1.692197, 1.847710, 1.267234, -1.620949, -0.692003, -1.877843, 0.170211, -1.156007, 0.100961, -0.142167, 0.957809, -0.898717, 0.565431, 0.386347, 0.497924, 0.975725, -0.290307, -0.385659, -0.274842, 2.817502, 1.749468, 0.314457, 1.995306, -1.260524, 1.260217, 0.319917, -0.107772, -0.571743, -0.374177, -2.346767, -3.701163, -0.385988, 1.706604, -0.268029, 0.681639, -1.260063, -0.502416, 0.599105, -0.513001, 0.258413, -0.612485, 1.239879, 1.101319, -1.090047, 0.161688, -0.943966, 0.837877, -0.085611, -2.648102, 0.158742, -0.424351, 1.128505, 0.529096, -2.066522, 0.154007, -0.630589, 0.467402, -0.628746, 0.530201, 0.352529, 0.749033, -0.551184, -2.492387, -0.405858, 0.439029, 0.583280, 1.539024, 0.458645, 1.306940, -1.929151, 0.756864, 0.587704, 0.710589, -0.853597, 1.736809, -0.801042, 0.538108, -0.838605, 0.173434, 0.105998, 0.795775, -1.496930, -0.420346, 0.266893, -0.169787, -1.839956, -1.742866, -0.479910, 0.410828, -1.140694, -0.690392, 0.343315, -1.044437, -1.241186, 0.520850, -0.875228, -1.698586, 1.301165, -0.380026, -1.493971, 0.669261, 0.466058, -0.294756, 0.155520, 0.138254, -1.961680, 0.742914, 0.347212, -0.279362, 1.176827, 0.034865, -0.055329, -0.868841, 1.127957, 0.950364, -2.977225, 0.161512, 0.383668, 0.933197, 0.788786, 0.794875, 0.913040, -0.567714, 0.745576, -0.122633, -0.949421, 1.093675, -0.310490, 0.304520, 2.759228, -0.598371, 0.268793, -0.067396, 0.771450, -1.427038, -0.493772, -0.220780, -0.313156, 2.883943, 0.147233, -1.091275, 1.853781, 0.464963, -1.036713, 0.999920, 0.023326, -0.167619, 0.731841, 1.611902, 0.335417, 0.135229, -0.374251, 0.155828, 1.116370, -0.149655, 0.656955, 0.184027, 1.892442, 1.597349, -0.751827, 1.274067, 1.181018, 1.596015, 0.248309, -0.545003, -1.713966, -0.951092, -0.359620, 0.778025, -0.694317, 0.679964, -0.749977, -1.126008, -2.398620, -0.279269, -1.550496, -0.192556, 1.427267, 0.828476, 0.936609, -0.465418, -0.073531, 0.443348, 1.176055, -1.584841, -0.896934, 0.024355, -0.048658, 0.856792, -0.111085, 0.405076, -1.192463, -0.027935, 0.790964, -0.926888, -0.310886, -0.448039, -0.516360, -0.604700, -0.094143, 0.333861, -0.311795, 1.131255, -0.176567, 0.797273, 0.229303, -0.397290, 0.695944, 1.479155, -1.558551, 1.967325, -1.095525, -0.847723, -1.137966, 0.605955, -0.445466, 0.978939, -0.152505, -1.055603, -0.143988, 0.771586, 0.726765, 0.919972, -0.012515, -1.341406, -0.016560, 0.670849, -0.863836, 1.551746, -0.519147, -0.191495, -0.196949, -0.566305, 1.616965, 1.051764, 1.122878, 1.896729, -0.967552, -0.621959, 1.250674, -0.141358, -0.286530, -2.305885, 2.397047, 1.234361, -0.000481, -0.001546, 1.645498, 1.646374, -0.214856, -2.177384, 0.332065, 1.128000, -0.880155, 0.749936, -1.245540, -0.436007, -0.722076, 0.932980, -0.510917, 0.947311, -1.020211, -1.237462, 0.676312, 1.169495, -0.961555, -1.150385, -1.467081, 0.090576, 0.412152, -0.345900, -1.943398, 0.231390, -1.126427, -0.110403, -0.299365, -1.343542, 0.070518, -1.213746, -1.948285, -0.430098, 1.104704, 0.570656, -1.316857, 0.166003, -1.330528, -1.699090, 1.020340, 0.017074, 1.121869, 0.585611, 0.126813, 0.444190, 1.384652, 0.182754, 0.841823, 1.394185, -0.472243, -0.823611, -0.823375, 2.398123, -0.225179, 0.338163, 1.272070, -0.844961, 1.283233, -1.215489, 2.793196, 0.488079, -1.467792, 0.070271, -0.649087, -2.207076, -0.303574, 0.812287, -0.471858, -0.669357, 0.949947, -1.000990, 0.196791, 1.231420, 0.494419, -0.494974, -0.611909, 0.382722, -1.150502, -0.399735, -0.856167, -0.195031, 1.976696, -2.609494, -0.384130, 0.643403, 0.096395, -0.279943, -2.064576, -0.466337, -0.200146, 0.114344, 1.426532, 0.000527, -0.752574, 0.894544, -0.655629, 1.109187, -0.866218, -0.516024, 0.640022, -0.518555, 0.145864, 0.773181, 0.225581, 0.290538, 0.747641, -1.174569, -0.647270, -1.980715, -1.972549, -0.373698, 0.579239, 0.561119, -1.520669, -1.395047, 1.013265, 0.027813, -0.156359, -0.665146, 0.573089, -0.821151, 0.137131, 1.277774, -1.033218, 1.145000, 1.533029, 0.322583, 1.632788, -0.167658, 0.052905, -2.018619, -0.481707, -0.659924, 1.949958, -0.841278, -0.435364, 1.154726, 0.978961, 1.112133, 0.520385, 0.040436, 1.461085, -2.511556, 0.338614, 0.787096, 0.120330, 0.620896, -0.451394, -0.522217, -1.424278, -0.059059, 0.891092, 0.057211, 2.103189, -0.052520, 1.399019, -0.121249, -0.099928, 0.449735, -1.077104, -0.934913, -2.111855, -0.220665, -1.437807, 0.971195, -0.495310, -1.418799, 0.374201, -1.857120, 0.622335, -1.736548, 0.778899, -0.004125, -0.508303, -0.050053, 0.012916, -1.389756, 1.838392, 1.003756, -0.557629, -0.329985, -0.081035, 0.932347, -0.810706, 1.062518, 0.224968, 1.405744, 0.745647, -1.997574, 0.252469, -0.353212, 0.633688, -0.695673, 0.324678, -0.570519, -0.986554, 0.604292, -0.489062, 0.168370, 0.344445, -0.726769, -0.072534, -1.160619, -1.276769, 1.144912, -1.164568, 0.394456, -1.273124, 0.810511, -1.145871, -1.171945, 2.025588, 1.719475, 1.054481, 0.757027, -1.269937, 0.228416, -0.156074, -2.262204, 0.173409, -0.407751, 0.103071, 0.475066, -1.050379, -1.510848, -0.238104, 0.284706, 0.504880, 0.770080, -0.136400, 0.572330, 0.829604, -0.040399, -0.391842, -0.168304, 0.403776, 1.012514, 0.037916, -1.052998, 1.533547, 0.036985, 0.262151, -0.306815, 0.190909, 0.763127, 0.948737, -1.653135, -0.650829, 0.607049, 2.328665, -1.036538, -1.915372, -0.335898, -1.054629, -0.647564, 2.064487, -1.103924, 1.190822, -0.034968, -0.206577, -0.720869, 0.933140, 1.398061, 1.194782, 1.721316, 0.421452, -0.261041, -0.426014, 0.383200, -1.022142, -0.682805, 0.763092, -0.052450, -0.052127, 0.398723, 0.486852, -0.543223, 0.730223, 0.586764, -0.917056, -0.073443, -0.391036, 0.913963, 0.126772, -0.849941, 1.107111, -1.193883, -0.732857, 1.199895, -1.015222, 0.221759, 0.226034, -1.232783, 0.589265, -0.327667, 0.321114, 0.346832, 1.019846, 1.221999, 1.537736, 0.803042, -0.356546, 1.009670, 0.200623, 0.889767, -2.181979, 1.500390, 1.840137, -0.583186, 0.648864, -0.836413, -0.640562, -1.197309, -1.256311, 0.841414, -0.307614, 1.164824, 0.747089, -1.266735, 0.747264, 1.717242, 0.441949, 0.339690, 0.853023, 0.248407, -0.426098, 0.875694, -1.268495, -1.375267, 1.529163, -0.680222, -0.851567, 0.229538, -0.979576, 0.654135, 0.265722, 0.129227, 0.202677, -0.603778, -0.237018, 1.867644, -1.902437, 0.277132, 0.481365, 1.502165, -0.189917, -2.100104, 0.717783, 0.008972, -0.319309, 0.604783, 0.442692, 0.463905, -0.849629, 1.099183, 0.655235, -0.660627, 0.116045, 0.693271, 0.220451, -0.392222, 1.044933, 0.371334, -0.447102, -0.068173, -0.926980, -1.061302, 0.845635, 0.139445, 0.724504, 1.246881, 0.328783, 0.150668, -1.082396, 0.648875, 1.645309, 0.864821, -1.265298, 0.288567, -0.457901, -1.460030, 0.182971, -1.053223, -1.042254, -0.805499, 0.402352, -0.096270, -1.419052, 0.260306, -1.912350, 0.464357, 0.028771, 0.291029, -2.028773, -0.767735, -0.649982, -0.738791, 1.202714, -0.074713, 1.098142, 0.027250, -0.050268, -0.637749, 1.384421, 0.338970, -0.015888, -0.119556, 0.613569, 0.203998, 0.954284, 0.382512, -0.716652, 1.126443, 0.905335, -0.229832, 0.574947, -0.662453, -0.030610, 1.215706, 0.500625, 0.051322, -1.211131, -1.261215, 0.323648, -0.081571, 0.459103, 0.206311, 0.589389, -0.257962, 0.188781, 1.218578, 0.657053, -0.754671, -0.318125, -0.584927, -1.376840, -1.179587, -0.547652, 1.029155, 2.672415, 2.787307, 2.210649, -0.463513, 0.356750, -0.965728, -0.934902, -1.334134, 0.446187, 0.803827, -0.267750, -0.907267, 0.448584, -2.034448, 0.291839, 0.119803, 1.539824, 0.359316, -0.167523, 2.053133, -0.486958, -0.451775, -0.447460, 2.183904, -0.348901, 0.497314, 0.151343, -0.025286, 1.400967, 1.213992, 0.706893, 0.878736, -0.542568, -0.713312, 1.045372, 0.328224, 1.530628, 1.154304, -1.220586, 0.063098, 0.772705, 1.212450, 0.082040, -0.328541, 0.752032, 0.614110, -0.712406, -0.046151, 0.541844, -0.312134, -0.687797, -0.293987, 1.046043, 1.499904, 0.654042, -0.440012, -1.447626, 0.749602, 0.598931, 0.096156, 0.956299, 1.218762, -1.543216, -0.012744, 0.564561, -0.325190, -0.031480, -0.882811, -0.091742, 0.301502, -0.376800, -1.566011, -3.185509, -0.472711, 1.261891, -0.166312, -0.094215, -0.824482, -0.325673, 1.362876, 0.594479, -1.219396, -0.338121, -0.718209, -1.950390, -0.824664, -0.784586, 0.504109, -1.937794, 1.961687, -0.499681, 0.864963, -0.569470, -0.147595, 1.274664, 0.274799, -1.058419, -0.939051, -2.111732, 1.311098, -0.827448, 0.803640, -0.734731, 1.346134, 0.261815, 0.477327, 0.472301, 1.119150, 0.095586, -0.285461, 0.674269, -1.057942, 0.843822, 1.946816, -0.896351, 1.082087, -2.154961, -0.244605, -0.004460, 0.318436, -0.738881, 0.578767, 0.249968, -0.040326, -2.350247, 1.036081, 1.529633, 0.742063, -1.470166, -0.672417, -0.342264, 0.927006, -0.344444, 0.400777, 1.560836, 1.104811, 0.251211, -1.018178, -0.550247, -0.261240, 1.885252, 0.050868, 0.429471, 1.274583, -1.659118, -1.139802, 1.689020, -1.819155, -0.391737, 1.936047, -0.674383, -1.077109, 0.582478, -0.050151, -0.463283, -0.082294, -0.156641, 0.288596, -0.756687, -1.027395, -1.091916, 0.338210, -0.291455, -1.089907, 1.931904, 1.782614, -1.027111, 0.072944, 1.221987, 1.038942, -0.168081, -0.572764, -1.187558, 0.150853, 1.017483, 0.481622, -0.571727, 0.180890, -0.449917, -0.984001, -1.302260, -0.349963, -1.067973, -0.251996, -1.162151, -1.543553, -0.462163, -0.401639, -0.120303, 0.288614, 0.302817, -0.698703, -1.032643, 0.223822, -0.662259, -0.868777, 1.071301, -1.045193, -0.164127, -0.391009, 0.013630, -0.388123, 0.245041, 0.424042, 0.009748, -0.719421, -0.180480, 1.639515, 0.402062, -0.740891, 0.149684, 0.248755, 1.706435, -0.091404, 1.109994, -0.244125, 2.497059, 0.102330, -0.177319, -1.129288, 0.307627, -0.925393, -1.052974, -1.134666, 1.009218, 0.045739, 0.226864, -1.180758, 0.307602, -0.187725, -0.751480, 0.305978, 1.769848, -1.177584, 1.077664, 1.269134, 2.390996, 0.705909, 0.389782, 0.330631, -0.211538, 0.787761, -0.417390, -0.095061, -1.904208, 0.418058, -0.283909, -0.368772, -0.261908, 1.062451, -1.806426, -0.509271, -0.184831, 0.357617, -0.722223, 1.047431, -0.147525, -0.764120, -1.443322, 0.142139, 0.210944, 0.738781, 1.423368, -0.506459, -0.719896, 0.179730, -0.115166, -0.358652, 0.102097, -0.504885, 0.306345, 0.642847, -1.012690, -0.440801, 1.096082, -0.013515, 0.358865, 0.635343, -0.483523, -0.901756, -0.263051, -1.132975, -0.145640, 0.872782, 0.755807, 0.356380, 1.506973, 0.366068, -1.000958, 0.516380, 0.573854, 0.206245, 0.298657, -0.011098, 1.083328, 0.616480, -0.455971, 0.302329, -0.103590, 0.284991, 0.244868, 0.533082, 0.874814, -0.349713, -1.182924, -1.311491, 0.535004, 1.862282, -0.076467, 0.835622, 1.256029, -0.565852, -1.504594, 2.277408, 0.016275, 0.035760, 0.102109, -0.210999, 0.126120, -0.638288, -2.384612, -0.375901, 0.461192, 0.960570, 0.315896, 0.045985, 0.564629, 0.529140, -2.559819, -1.047713, 0.329466, -0.997374, 0.489387, 0.055280, -1.722771, 0.398606, 0.487157, 0.104550, -0.990803, -0.124218, -0.835197, -0.786026, 1.566341, -0.602284, 0.492510, 0.315360, 0.503011, 1.107253, -0.678015, 1.494259, 2.036781, 1.069011, -0.227542, 0.039585, 1.703182, -0.044750, -2.362349, 0.243684, -0.030508, -0.672654, -0.145267, 0.453308, -0.400244, -0.772117, 0.737629, 0.973770, 1.651525, -0.258138, -0.104751, 0.218496, 0.042494, -1.138496, 0.150492, 0.618673, -0.512350, -1.080380, -0.274232, 0.884633, 0.444273, -0.233005, 0.798308, -0.467572, 2.433550, 0.585784, -0.664523, 2.605470, 1.339960, -0.434429, 0.029536, -0.039991, -0.101863, 0.349465, 0.597840, -1.196737, -0.126427, 0.935964, -0.025526, -1.189689, 0.753324, -0.986274, 0.153445, 0.706372, 0.632197, 1.902034, -1.256663, -0.134228, 0.553498, -1.329364, -0.199758, 1.093690, 0.137674, 0.074629, 1.143971, -0.622682, 0.684820, 1.254369, -0.660103, 0.703685, -0.894909, 1.371870, 0.606431, 0.754138, 0.534528, -1.001241, 0.578271, 0.426436, 0.793215, -0.740149, -0.485584, -0.384494, 2.977618, 0.167704, 1.055053, -1.678718, -0.488530, -0.645943, -1.386534, 0.594655, 0.137613, -0.194399, 0.147244, 2.191463, 0.589561, 0.155157, -0.397009, -0.373146, 1.588335, 0.548365, -1.375504, 0.745258, -0.154341, 0.992464, -0.577978, -0.195855, 1.664223, 0.694524, -2.726967, -0.437916, 0.986295, -1.079693, 0.594812, 0.539542, -0.277344, 0.941402, -0.060753, -1.008352, 0.094972, -0.910181, -0.649991, 0.890040, -0.578983, 0.705631, -1.127651, 0.432541, 0.953788, -0.031506, 0.029359, 3.103742, -0.274652, -1.609812, 0.086658, -0.285004, -0.294109, -1.897404, -0.653915, 0.844298, 1.537646, -0.985621, 0.389841, -2.044208, 0.118238, 0.535755, -0.744912, 0.039770, 1.431132, -0.573443, 1.413536, -1.440234, 0.419968, 0.225114, 1.804120, -1.237094, 0.593894, -0.716003, 1.658175, 0.047013, -0.882131, 0.157059, -0.339198, -0.378511, -1.217220, 0.162421, 0.371167, 2.141889, 1.354069, 0.297119, -0.843006, 0.482372, 1.234613, 0.875482, 1.222869, -0.161291, -0.995356, -0.438671, 0.416588, 0.596731, 0.065985, -0.684466, 1.011878, 2.061402, 0.132167, 0.411189, 0.312151, 0.184291, 0.211096, -1.457534, -0.795647, -0.296328, -0.757931, -0.140544, -0.964305, -0.392550, 0.315525, 0.601454, 1.839404, -0.594580, 0.191142, -0.862696, -0.186251, -0.240750, 0.077531, 0.448939, -1.514732, 0.124252, -0.955633, 0.271409, 0.536774, -1.597665, 1.286043, 0.273853, 1.161376, -0.418880, -1.946422, 0.602668, -0.703806, -1.306034, 0.074630, 0.029758, 0.857925, -1.115937, -0.030894, -0.254380, 1.132448, -0.053832, 0.098550, -0.683910, 1.197410, -0.618806, -0.290345, -0.027905, -0.272453, -0.512632, -0.829069, 1.852748, -0.504823, 0.441979, -0.193136, -0.009785, -0.243243, -0.544696, 0.002690, 2.212299, -0.244478, -1.012666, 0.682170, 0.529566, 0.576155, -0.700527, 0.453308, -0.121798, 0.974262, 1.496188, -1.247547, 0.155104, -1.154205, -1.893895, -1.869161, -0.074632, -0.147338, 0.274421, 1.973705, 0.089033, 0.300854, -0.078432, -0.923467, -0.273353, 0.819620, 0.994959, 1.146665, -0.137906, -0.684620, 0.608531, -0.169350, 1.817891, 0.888513, -0.716495, 0.296398, 1.543710, 0.686084, -0.989226, -1.233147, 0.797087, -0.076455, 0.135359, 1.992051, -0.559256, -0.355711, -0.211369, -1.840335, 2.083733, -1.013689, -0.733991, 0.415794, 0.740574, -0.930320, -0.111373, 1.690626, 2.429542, -0.004308, -0.995957, 0.382483, 0.209008, 0.919120, -0.072409, -1.228856, -0.991454, -0.268372, 0.522556, -0.096552, -0.914431, 0.039501, 0.242114, -0.221412, 2.324423, -0.651460, -0.666151, -1.119609, -1.448346, -0.925386, 0.389292, 1.124154, -0.271806, -0.729049, 1.193724, -0.626982, 1.412729, -1.752315, 0.045337, -0.249343, -0.116884, -0.904167, 0.817044, 0.152291, 0.115017, 0.342553, -0.474283, 0.641435, -1.151900, -1.425590, -0.578896, -0.288439, -0.087481, -0.175025, 1.896984, -0.917184, -0.002832, -1.364489, -0.680488, 0.531802, 0.027634, 0.168496, 1.787259, -1.037840, -0.085357, 0.495851, 2.038621, -0.319107, 0.614780, 0.390782, -1.846728, 0.002384, -0.254565, -0.239848, 0.842797, 1.092042, -1.282239, 0.570512, 0.536954, -0.926982, 0.716224, -1.071743, 0.600182, 1.211640, 0.829380, 0.560705, 0.078512, -0.333731, 0.492895, 0.159626, -1.005067, -2.226572, -0.634672, 1.752485, 1.032170, 0.358745, -0.234850, -0.035530, -1.128157, 0.742679, -1.196054, -0.347674, -2.054854, 0.273413, -0.698963, -0.246795, -0.709943, 0.454131, -1.805550, -0.267575, 0.148850, -0.782469, 0.368612, -0.496542, 0.211443, -0.771216, -0.063712, -0.267752, -0.531594, 1.239240, 0.149041, 0.038675, 1.645157, 0.886968, -0.853405, -1.465230, -1.742101, -0.798284, 0.241082, -2.311634, 0.320004, -1.280485, -0.209859, -1.190324, -0.895839, 0.529627, 0.616560, -0.810841, 0.000102, -0.972396, 0.033103, 0.156390, 1.839610, -0.112166, 0.232799, 0.109225, -0.550243, 0.334020, -2.550766, 0.679509, 0.756145, 0.110251, -0.273988, -0.982102, 0.640712, -0.866290, -1.462347, 0.035077, 1.683773, -0.270578, 0.088040, 0.636150, 0.986303, 1.702691, 0.586015, 1.202545, -2.570271, -0.472190, 0.243466, 0.133880, -0.006401, 0.727936, -0.599675, -0.160660, -1.630240, 1.277823, 0.686225, 0.904499, 0.300069, -0.874093, 1.958989, 0.793191, -1.971186, 2.200583, -0.899536, 0.629933, 1.189624, -0.914638, 0.788546, -3.259173, -1.244885, 0.890972, -0.657992, 0.628539, -1.223282, 1.278668, -0.644911, 0.476486, 1.105676, 1.638826, -1.829981, 0.303061, -1.587406, 0.799293, -0.538447, 1.381353, 0.536929, 0.430886, -1.281552, 1.598193, 1.230857, 0.782224, 0.138354, -0.081236, 0.205909, -1.004968, -0.529797, -1.032847, -0.949249, 0.090189, 0.044878, -0.070573, -0.164321, 1.449813, -2.246111, 1.685842, -0.270831, 2.823672, -1.197951, 1.175283, -1.445425, 0.268843, -1.904981, -0.492387, -1.884344, 1.279282, 0.807842, 0.755428, 0.028804, -0.512331, -0.433352, 0.499296, 1.037904, -0.026814, 0.021602, 0.494125, -0.531134, 0.894899, -1.569244}, - { -0.623453, 0.954053, 1.623444, 0.693702, 1.051604, 1.869862, -1.381684, -0.695497, -1.232447, 1.529873, 0.144401, 1.715343, 3.588311, 1.314834, 0.045535, -0.811673, 0.174592, -0.866058, 0.631247, -1.116479, -0.436631, -0.047052, 0.719751, 1.785655, 1.156472, -0.219903, -0.030608, 0.299466, -0.631376, 0.573242, -0.456588, 0.610688, 0.166786, 0.115527, -0.679740, 1.058073, -0.554841, -1.111318, -0.488704, -0.761492, 0.761811, -0.104446, 0.279684, -1.022138, -1.286590, -0.794616, 0.336994, -1.249675, 1.074103, 0.809033, 0.049789, -1.003783, 1.566896, 0.021207, 0.952531, 0.373783, 0.415383, 1.061700, -0.609034, -0.176690, 1.405349, -0.054868, 0.294895, 0.078584, -0.794150, -1.227244, 0.475934, 1.527520, -0.532228, -0.031494, 1.132420, -0.035409, -0.853781, -0.205829, 1.058578, 0.312618, 1.025839, -0.992747, -0.055552, -1.097253, 0.543441, 0.701778, 0.046210, -1.613917, 1.337267, -0.123126, 0.584711, -1.261481, 1.432934, -0.044287, -0.173449, 1.030038, -1.563089, -0.447450, -0.517009, -2.013959, 1.598219, 0.112909, 0.216350, -0.605201, -1.710702, 0.045644, -1.231230, -0.914531, -1.654087, 1.329637, 2.037380, 0.791088, 0.157253, -0.710456, 1.305099, 0.566779, -0.077611, 0.989932, 0.984189, 0.685566, 0.501019, -1.280524, -1.182654, 0.803050, -0.758460, -1.057862, -0.187893, -0.339902, 1.954562, 0.212230, -0.986281, 1.165170, -0.695722, 0.020398, -1.103753, -0.230648, -0.361203, -0.834126, -0.463378, -0.716393, 0.436393, 1.824251, 0.058563, 1.480980, -1.113165, 0.679718, -0.698174, -1.151177, -0.434598, -0.485698, 0.086315, 1.172273, 1.177265, 0.968471, -0.547780, -1.143789, -1.401750, 0.833172, 0.498177, 0.727264, 2.187537, 0.059330, 1.919571, 1.752794, -0.938311, 0.962821, -0.071750, -1.666583, 1.905437, 0.335731, 1.818801, 0.302484, -0.877142, -1.477450, -0.820728, 0.743103, 0.247202, 0.215841, -0.487392, -0.488721, -0.946522, 0.000023, 0.316309, -1.721988, 1.914840, -1.302360, -0.341921, 0.248546, 0.939944, 0.528778, -0.202490, 1.004617, -1.070344, 1.615516, 0.892080, 1.994732, -1.434383, -0.056931, 2.826312, -0.413024, -0.865239, 1.903107, 0.369067, -0.065173, 1.196553, 2.428730, 0.610659, -0.083590, 1.574067, 0.219858, 0.650548, -0.280599, -0.357974, -0.838390, -0.916102, -1.290103, 0.257130, 0.137525, 1.160550, 2.504158, -0.560719, -1.026722, -0.615722, 1.716536, 0.245685, 1.426338, 1.027635, -0.050195, -0.059096, -0.528190, 0.129126, 0.221599, 0.672226, -1.345480, -0.844464, -0.310609, -0.300496, 0.004860, -1.575402, -0.105495, -1.414926, 0.109777, 0.227233, 0.919921, 1.134450, -0.991901, 0.164022, -0.830330, -0.620654, 1.062751, 0.735327, -0.253591, -0.617748, 0.869474, -1.102727, 0.343456, 0.340353, -0.711225, 0.738152, -2.494143, -0.447320, 0.261639, -0.876834, -0.621362, 0.401711, 0.403854, -1.818019, 1.734050, -1.216679, -1.266483, -1.780765, -1.295812, -0.852020, -0.971149, 0.823359, -0.709542, 0.693283, 1.294185, -1.498523, 0.993589, 0.839256, -0.284462, 1.506703, 0.037203, -0.648762, 0.930297, 0.201614, -1.370532, -1.292700, 0.403996, -1.706020, -0.318158, 0.449052, 0.497324, 0.521217, -0.194938, 0.484995, -0.504353, -1.952156, 1.490097, 0.628563, 1.015440, 0.652072, 0.548159, -0.298940, 0.681354, 1.622283, -0.709891, -2.619955, 0.027944, 0.952976, -0.583707, 1.104840, -0.280059, 1.763923, -1.689790, -0.141087, 0.682918, -2.840436, 1.242989, 0.897080, -0.023077, -0.723775, -0.620017, -0.055428, -0.074814, -0.208272, -1.530227, -2.466289, -0.389793, 0.477436, -0.563231, -1.659874, -2.046016, -0.482248, -0.512303, 0.753429, -0.329284, -0.215627, -2.592513, 0.274906, 1.215909, 0.684245, 2.300354, -0.759647, -0.418392, 1.445860, -0.724331, -0.038904, 0.909814, -0.929235, 0.804243, 0.412419, 1.321878, 0.161760, 1.228870, 1.594674, -1.760651, -1.545941, -0.017338, -0.257052, -1.342466, 0.921997, 0.363393, 1.660995, 3.110499, -1.271268, 0.796166, 1.070389, 1.248606, -0.743917, 0.252434, 0.342996, 1.066864, 0.341531, 0.739123, 0.880762, -0.279449, 1.692952, -1.129257, -0.340177, -1.940223, 0.030578, -0.796483, -1.690204, 1.375955, -1.667420, -0.451877, -2.686948, 0.624933, 1.104958, 0.213290, 0.613976, 1.402480, -0.093016, -0.868012, -0.446540, 0.454247, -0.707785, 2.101789, 0.768771, 0.804757, -0.714055, -0.005500, -0.143981, 2.309610, 0.187676, 0.922561, -0.869147, -0.932537, -0.210430, -0.740733, -0.801509, 0.138654, -0.500698, -2.191879, 0.736989, 0.050568, -0.847442, -0.467371, -0.620093, 1.071607, -1.219288, 0.701180, 1.164552, -0.062570, 1.510141, 0.579090, -0.328714, 1.614425, 0.927753, 0.732866, -0.371786, 0.725116, 0.323996, -0.123742, 0.223387, 0.482749, 1.718388, -1.261799, 0.465963, 0.768161, -1.520144, 0.590971, -0.403894, -0.482664, -0.322890, 1.520487, -1.346282, 1.322418, -1.604702, 0.292978, -0.279316, -0.856389, -0.145189, 0.665877, 0.206045, 0.268668, -0.708773, -0.195848, -0.120889, -0.853206, 1.156486, -1.407154, 1.262708, 0.763650, -1.086083, 0.164940, 1.686167, 1.206167, -0.794927, -1.167664, 1.518261, -0.408484, 0.929001, 0.281053, -0.667475, 0.045282, 0.800883, -1.227243, 1.099914, 0.289765, 0.222921, -0.326742, -0.272994, -0.578084, -1.277323, -1.328512, 1.271082, -0.323974, -0.936015, 0.152633, 0.050185, -0.061969, 0.902417, -1.872260, -1.760017, -0.665758, 1.750578, -1.115335, -0.482179, -0.721216, -0.661339, -0.354468, -0.409206, 0.860945, -0.372282, 0.981023, -1.693248, 1.216220, 0.005642, -0.246426, -0.690470, 0.454123, -0.614794, 0.282413, -0.041944, 1.619260, -1.426622, 2.134139, -1.215949, -2.555833, -0.245038, 0.482855, -0.776026, -1.288328, -0.354847, 1.575842, -1.383988, 0.424619, 1.943871, -0.038640, 0.006247, 0.367939, 0.735515, -0.101791, -0.194711, 0.411367, 0.037841, -0.149004, 0.846544, -0.668612, -0.935705, -0.372453, 0.122381, -0.678787, 1.740865, -0.387087, -1.985908, 0.036531, 0.357803, -1.141082, -0.078745, 0.757630, -1.772953, 0.995736, -0.251684, -1.044462, -0.352929, -0.159211, 0.566438, -1.353958, 0.585748, 1.164025, -0.151318, 0.892339, 0.303215, 0.102689, -0.785613, 1.720145, -1.634517, -0.077173, 2.910751, 1.238376, -1.070150, 1.717178, -0.424230, -0.860789, 0.374001, -2.334249, 0.004519, -1.068791, -0.992720, -2.348866, 1.297737, -0.266538, -0.681577, -1.446853, 0.428924, 1.508156, -0.784141, -0.346106, 0.278468, 0.633195, 0.200221, 2.339906, -0.518537, -2.456020, -1.113917, -1.030970, 0.694407, -1.515428, 1.177057, -0.107440, -1.011979, 0.417285, 0.818502, -0.189856, 0.598343, 0.415470, -1.693178, 0.641560, -0.029072, 0.568614, -1.050384, -0.059501, -0.005994, 0.841842, -1.783431, 1.251634, -1.509092, -1.244333, -0.057438, 1.210072, -0.470286, -0.142246, 0.155634, 0.119058, -0.807101, -1.966949, 0.276064, 1.928274, -0.363779, 1.778863, -0.694578, -2.953176, 0.339838, -1.257644, 0.273053, 0.905211, -0.089732, 0.618200, 1.658325, -0.113873, -0.696675, -0.635603, 0.015964, -0.840557, 0.895750, 0.660494, 1.161041, 0.854115, 0.086081, 1.356078, 1.108299, -0.087507, 1.331952, -0.295514, 0.197562, 0.585499, 0.728088, -0.866588, 0.549671, -0.378238, 1.728026, 1.274765, -1.570455, -2.396265, -0.123276, -0.144986, 2.008585, -0.199556, 0.369414, -0.773789, 1.485619, 0.116638, 1.234015, 0.124005, 1.039817, -0.558376, 0.951702, -1.545855, 0.107654, -1.080724, -1.115903, 0.393940, 0.037577, 0.440651, -0.409629, 0.713164, -0.404153, 0.278440, 0.963260, 1.742860, -0.463231, -1.209535, -0.323712, -0.231298, -0.502553, 0.285147, 0.142140, -1.282130, -0.710462, 0.855065, 0.037743, -0.677499, 0.118042, -0.454565, 0.981097, 1.722714, -0.167418, -3.202382, -0.412894, 0.701014, 2.011460, -0.315601, -0.474802, 0.075601, 0.987902, -1.040080, 0.709486, -1.125118, -0.017001, -1.904518, -0.183568, -0.975301, 2.269899, 1.557225, -0.342013, -1.417912, 0.342440, -0.435465, -0.042540, 1.618265, -0.250682, -0.787410, 1.098447, 0.045734, 1.140916, -0.005694, 0.461982, -0.680186, -2.262146, 0.030759, 2.020773, -0.861753, 0.271623, 1.596500, 0.245057, -0.408449, -0.208146, 0.483222, -0.213091, -1.737382, -0.470778, 0.852057, -0.108822, -0.705684, -1.794956, -1.733111, -1.200252, -2.157468, -0.559874, 0.013241, 1.321396, 1.098886, -0.230483, -0.590569, 0.624788, 0.741311, 0.008630, -0.626681, -0.545619, 1.076151, -0.144665, 1.064903, -1.146352, -0.754815, -0.374404, 1.490998, 1.178891, -0.458798, 1.216729, -0.051359, -0.200159, -0.192953, -0.273308, -0.769555, 0.134451, -0.097036, -0.575961, -0.938152, -0.186811, -2.027305, -1.089062, -0.271874, -0.470876, -0.105277, -0.426130, 1.131322, -1.279843, -1.123745, 0.901968, -0.286172, -0.405162, 0.464232, 0.336823, 0.051341, -0.249817, 1.398990, 0.901713, -0.828001, -1.043243, 0.426822, -1.505874, 0.011781, 1.062281, -0.662296, -0.806976, 0.826020, -0.565465, -2.312020, 1.578992, -0.759484, -0.351286, 0.704443, 0.712394, -0.767216, 0.222625, 0.860920, -1.566572, -1.182164, -1.929471, -1.352744, -0.537665, 1.514014, 0.524002, -0.405265, 0.883618, 0.530110, -1.020418, -0.688276, 1.782730, -1.240812, -1.196037, 0.742602, -1.502700, -0.961634, 0.849075, -0.450839, -0.770336, 0.108036, -0.563989, -1.165810, -1.543547, -1.403592, -1.023245, 0.964347, -1.592831, 0.128164, -0.599490, 0.338740, -0.182169, -0.753812, -0.645035, 0.563881, 1.879971, 0.735333, -1.075692, 1.077581, -0.125789, 1.003849, 0.278407, -1.279668, -0.087034, 0.557527, 0.631904, -0.364409, -0.591107, -0.530717, -0.806510, 0.021594, 1.805066, -0.234287, -1.149436, -0.510306, 1.110254, 0.245971, 0.416621, 0.190544, -0.576510, -1.649418, -1.165816, -1.057189, -0.442838, 0.566944, -0.736546, 1.999349, 1.400423, -0.248045, 0.076294, 0.286319, -1.015722, 0.082188, -1.220659, -1.588475, 1.490315, 0.568091, 1.189487, -0.032901, 0.788781, -1.683181, -0.681388, -0.322550, -0.903044, 1.105530, -0.368619, 0.305826, 0.771226, 1.621447, 0.110249, -1.263226, 0.650783, 0.775220, -0.776529, 0.744234, -0.514982, 0.333820, 2.156255, 0.772207, 0.546877, -0.541077, 1.033439, 0.027314, -1.179867, 0.112219, -1.869214, 0.254614, 0.441247, 0.600428, -1.529266, -0.828392, 1.779309, 0.421391, -1.959596, -0.101238, 1.068820, 0.078936, 0.430229, -1.120721, -1.067357, 0.496507, 1.599528, -0.626374, -0.813625, 1.463498, 0.347601, 0.927429, 1.148257, -1.586493, 0.093626, -0.772744, 1.625483, -0.478545, -0.221309, 0.000621, -1.148203, -1.438723, 1.056092, 0.733679, 0.307065, -3.348996, -0.203099, -1.277446, 1.063363, -0.950062, 1.387271, 2.128470, -0.367682, -0.833131, 1.879218, 0.097407, -0.172273, -0.580684, 0.232930, 1.930204, 0.575178, 0.290120, 2.931159, 0.548125, 0.462058, 1.261512, 0.435107, 1.618984, 0.466057, 1.992763, -1.456414, -0.613729, -0.992565, -0.609947, 0.041044, 0.086893, 1.203942, -0.676437, 0.222967, -0.350054, -0.484052, 1.286109, -0.262943, 0.667269, 1.411309, -0.931674, 0.833679, 0.780207, 1.295682, 1.058218, 0.154652, -1.299975, -0.181953, -0.067264, 1.822692, -0.143681, -1.374258, -1.710318, -0.031247, 0.856007, -0.023738, 1.750374, -1.765197, -1.000061, 1.991553, 1.324514, 1.198946, 0.221269, -1.008166, 0.015012, 0.341822, 0.520590, -0.601956, -0.497275, -1.314573, 0.375441, 0.022262, 2.559487, -0.021369, 0.876764, -0.911074, 0.572897, -0.461993, -0.118148, 0.400654, 0.091359, -1.185379, -0.114256, 2.018330, -0.378927, 0.123732, 0.065811, -0.148458, 0.009804, -0.487581, 0.920691, -1.605965, -2.316377, 1.363888, 0.557818, 0.946484, -1.411012, 0.840466, 1.765036, 0.680239, -0.673007, 1.208876, 0.578271, -0.112013, 0.373387, 1.738491, 0.654488, -0.997188, 0.371525, 0.415120, 0.312278, 0.482467, -1.144021, 0.708331, 0.298731, 0.585536, 1.304343, -0.882933, -1.174656, -0.364076, -1.735889, 0.543588, 0.815846, -0.069151, -0.161164, 0.276600, 1.124768, 0.501393, -1.081831, 1.205866, 0.335251, -0.802165, -0.728224, -0.728497, 1.744816, -0.625711, 0.318683, 0.411529, -0.240272, -0.548268, 1.784923, -0.597437, -0.839994, 0.826265, 0.208463, -0.593553, -0.343072, -0.414023, 1.643092, 0.177418, -0.837071, 0.947163, 0.598130, -0.357140, -1.193699, -0.520810, -0.049950, 0.328843, -0.115809, 1.237598, 1.429429, -0.866494, 1.067158, 0.881910, 0.755652, 1.812063, -0.101621, -0.189353, 0.588834, 2.224868, -0.215545, 0.475178, -0.785537, -1.994503, 1.138737, -0.312048, 2.111838, 0.243595, -0.217862, 1.632969, -1.048329, 1.198893, -0.330813, -0.498998, -0.109484, -1.034779, 0.962764, 0.333293, 2.275247, 2.340490, 0.578223, -0.676159, -0.778772, 0.092917, -1.291921, -0.043946, -1.006860, -0.442360, -0.352270, 0.349411, -1.729677, -1.336875, 1.257883, -0.997495, -0.007765, -0.373652, -0.057240, -0.839117, -1.462761, -0.819780, -0.160442, 1.915766, -0.492907, 0.510259, -0.663838, 1.119401, -1.068146, 0.205162, -0.730906, 1.351709, 0.036955, 0.165369, -3.168551, 0.291011, 0.116180, -1.416719, -1.666722, 0.882316, 0.493695, -0.107312, 0.892315, 1.015771, 0.086327, 0.751946, -0.999129, 0.373692, -0.891583, -0.561115, -0.127191, -0.311987, 0.915724, -1.180343, 0.749417, -0.163806, -0.872631, -0.456631, 2.761867, -0.874390, 0.290952, 0.045706, 0.067123, -0.002035, 0.811363, 1.037285, -0.192652, 1.878039, 0.408610, -0.719494, -0.987027, -0.079995, -0.148389, -1.205181, -0.614823, 0.079235, 1.937508, 0.469927, -1.000745, 1.002714, 0.756052, 0.415123, 0.323209, -1.016147, 0.617013, 1.157310, 0.299938, -0.740063, -0.369359, -1.169232, 0.295839, 0.058527, 0.870896, -0.082892, 1.213350, 0.958314, -0.768342, 0.169133, 0.226603, -0.200703, -0.769491, -0.625037, -0.515528, 0.625763, 2.897615, -1.093809, 0.075097, -0.364193, 0.153641, -0.287079, -0.696256, -0.166970, -0.602850, -0.144847, 0.430072, 1.057270, -0.427213, -0.386023, -2.026752, 0.109442, -0.782503, -0.314018, -0.129226, -0.414538, -0.761880, -0.575583, 0.539498, -0.133999, 0.405557, 1.357618, 0.768280, -1.626472, -0.940342, 0.284853, -0.960396, -2.374528, 1.334795, 0.243184, 0.763377, 0.148786, 0.214573, 0.550710, 0.581688, -0.499359, -0.324890, -0.150250, -0.438701, -0.886777, 0.664653, -0.837704, -0.737847, 1.262831, -1.006748, -0.906348, 0.603079, 2.390491, -0.335118, 0.655038, 0.337169, -0.400447, -0.435655, -0.793657, -0.061330, 0.238077, 2.079480, 0.903865, -1.330803, -0.155710, 0.992865, -1.264595, 0.629640, 0.160758, -0.760545, -0.448366, 0.922689, 1.636543, -0.148524, -1.345407, -0.336809, 0.847822, -0.888932, 0.112179, 0.810667, -0.920844, 0.699311, -1.698227, -0.072819, 0.194583, 2.913199, -1.661479, 0.491781, -1.630995, -2.292904, -0.156592, -0.831328, 0.333362, -1.346217, 0.740406, -0.646210, 0.330476, 0.011820, 0.261232, 0.891277, 2.536957, -0.098186, -1.035584, -1.477232, -1.873089, 0.441552, -1.420753, -0.728468, -2.461144, 0.518028, 0.651003, 0.749435, -0.791859, -0.140180, -0.426504, 0.280434, 0.824883, 0.019835, 0.319204, -2.522234, 2.159223, -2.491072, -0.057348, 0.492508, -0.952368, 0.097768, -1.645331, -0.449716, -1.085213, -0.928719, 0.239231, 0.751589, -1.002256, 0.215936, -0.606306, -0.733353, -0.710711, -0.394801, 1.207395, -0.347099, 0.044909, -0.232702, -2.167305, -1.001443, 1.914278, -0.477186, 0.836531, 0.691079, -0.214423, -2.006643, -0.132784, 1.232694, -0.616862, -0.004635, -1.944668, 0.213088, 1.552813, 0.374027, -1.138560, 0.406288, 0.791432, 0.525353, 1.094239, 0.706779, -1.632860, -0.739450, 0.049644, -0.108114, -1.567377, -0.250007, 0.161739, -0.440145, -0.346428, -1.196800, 0.406576, -0.200230, -0.110491, 1.468977, -1.547761, -0.052417, 0.087336, 0.697882, -0.577451, -0.048326, -0.679717, -0.389158, -0.831398, -1.364468, -0.127567, 0.241172, 0.007756, -0.640342, -0.642852, 0.778124, -1.113056, -0.032823, -0.444457, -0.613264, 1.920060, 0.820966, -0.276815, 0.195405, -0.385462, 0.802172, -1.244596, 1.319686, -0.395284, 1.687466, 0.341534, -0.362167, 0.203323, 1.585754, -0.749208, -0.255050, 0.233084, -0.267739, -0.215205, 0.679483, -0.129030, -2.025603, -0.545162, -0.177973, 0.052779, -0.571604, -0.228202, 0.326959, 1.729283, 1.202517, -0.908482, 2.067965, 0.988786, 0.221466, 0.347342, 0.339143, -0.404961, -1.616164, 0.096909, 0.302887, -0.200845, -0.385569, 0.493558, -0.514158, -1.429668, 0.704494, 0.705244, 0.794807, -0.222113, -0.233228, 0.129633, -1.693415, -0.454547, 0.814292, -0.280736, 0.661494, 0.314321, 0.288306, -0.254610, -0.240969, -0.555553, -0.860210, 1.569442, -0.334052, -0.310842, 0.264963, -0.571964, -0.754633, -0.345627, 0.134951, -0.725342, 1.321555, -0.260204, 0.427543, -0.375964, -1.056924, 0.371639, 0.567981, 0.634436, 0.030608, -0.783334, -0.450729, 0.037815, -0.275719, -0.365921, 1.114759, -1.609446, -0.669731, 2.159318, -0.278625, -0.871735, 0.077756, 0.386762, -0.392128, -0.085670, -0.604126, -1.747318, 0.555601, -0.450966, 0.710088, 2.087791, 0.312704, -1.942972, 0.116592, -0.493857, 0.831028, 2.226056, 1.483603, 0.366641, 0.685873, -0.727404, 0.443080, 0.125284, 0.725298, -1.204736, -0.597128, 0.195025, 0.732572, -0.469062, 0.477659, 1.874927, 2.106595, -0.375360, -0.362208, -0.287513, -0.056017, -0.833202, -0.912884, -0.195822, 2.167403, -0.301143, 2.482659, 1.063425, 0.367249, 0.822278, 0.112339, -0.128620, 1.102664, 0.762336, -0.321454, -0.953026, -2.228239, 0.765689, -1.747361, 0.822630, 1.092762, -1.132774, 0.693391, 0.570049, 0.958624, -0.436718, -0.281885, -1.354223, 0.471678, -0.232098, -0.714516, 0.951227, 1.214682, 0.937597, -1.029204, -1.131709, 0.534172, 0.649547, -2.054628, -0.131366, -0.447538, -0.726765, 0.597428, 0.256786, 0.145479, -0.395442, 0.612840, -0.947940, 0.642573, 0.014943, -1.608187, 0.124304, -0.676657, 0.590953, 0.710924, -1.567442, -1.030316, 1.555993, 0.361457, 1.216279, -0.402003, 1.853082, -0.595164, 0.164794, -0.743279, 0.995666, 1.586500, -0.059508, 1.808829, -2.116118, 1.635752, -0.937809, 0.567232, 1.071493, 0.303327, 0.881441, 0.219488, -0.193947, -0.923307, 0.796834, -1.878409, 1.766440, -0.067873, 0.070588, -0.618395, -0.808697, 0.671449, -1.243319, 0.291487, -0.457839, -1.264555, -0.826279, -0.032396, -0.105896, 1.023749, 0.431738, -1.273322, -0.318433, 0.586852, -0.089034, -0.468333, -1.030797, 1.747286, 0.396295, 1.589622, -0.688438, 0.472268, 1.045664, -1.120522, -2.158789, -0.700277, -0.100062, 1.224239, -0.028336, 0.780148, 0.750950, -0.863507, 0.377686, -0.294723, -0.262106, 0.771339, 0.890611, 1.060766, 0.185323, -0.135984, -0.837736, 0.525532, 0.019600, 0.881206, 0.347934, -2.414978, -2.115059, 1.023043, 1.749845, 0.678521, 0.056153, 0.557952, -0.236341, -1.056321, 0.234636, -0.956992, -0.441433, 0.732408, -0.379329, -0.011801, -0.071274, -1.706708, -2.356571, 0.786006, 0.203953, -0.317419, -1.083134, 1.149797, -2.085296, 0.752887, -0.932524, 1.746426, 0.679927, 1.135209, -0.834052, 0.098566, -0.789324, 0.636161, 0.186533, -0.732246, 0.435459, 1.226857, -0.760132, -0.433036, -0.233559, 0.651796, -0.392767, -0.237725, -0.336180, 0.194321, 0.161021, -1.181983, -0.641880, -0.016784, -0.724357, -0.022949, -0.585239, -1.621261, 1.410727, -0.120273, -1.228143, 0.226797, -0.740254, 1.990417, 0.854266, 1.119888, 1.281324, 0.464073, -0.030313, -1.021628, -2.528571, -0.496044, -0.220940, 0.296065, -1.571630, -1.411951, -1.034487, -0.183921, -0.714003, 0.554770, -1.939697, -0.870241, 1.579534, 0.407536, 0.845163, 0.169817, 0.608389, 0.522581, 1.708390, 0.111518, -0.490308, 1.335780, -0.460659, 0.411525, -0.080968, 0.269510, 0.292276, 0.101777, 0.266486, 0.455205, 0.452102, 0.769950, 1.655536, 1.619416, -0.087528, 0.070307, -0.004677, 0.765683, -2.225653, -0.560522, 0.345340, -0.702346, -0.931809, 0.341249, -0.869568, -0.103519, -0.687064, -1.030831, 0.070214, -1.221788, -1.396775, 0.556335, 1.180188, -0.548804, 1.133078, -0.592456, -0.184492, 0.130857, 0.237093, -0.987683, -0.332959, -0.951278, 0.446272, 0.898166, -1.547139, -0.388416, -0.953992, -1.619748, 0.001487, -0.373560, 0.454699, -0.301258, -0.208208, -0.338697, -1.237921, -0.038130, -0.801799, -0.389003, -1.264494, -1.949058, -1.690619, 0.338203, -0.449090, 1.154036, 2.257233, -0.045447, -0.940018, -0.135010, -1.367771, 0.675752, -0.847615, 0.836265, -3.218179, 0.772681, -0.700947, 1.329807, 2.207220, 0.660263, 0.537273, -1.650653, -1.055598, -0.432696, -0.963343, 0.674557, 0.258531, 0.091242, -0.156451, -1.876613, -0.311569, -0.992994, 1.373373, -1.083461, -0.706989, -0.837429, -0.439604, 0.610860, 1.201186, -0.152969, -0.692993, 0.303026, 1.091902, 0.562589, -0.444140, -0.397255, 0.036604, 0.782060, 1.461951, 1.215109, 1.015874, 0.411564, 0.603514, -1.187557, 0.837245, 0.186959, 0.462223, 0.269404, -0.552504, -0.882271, -0.989298, 0.366308, 0.694815, 1.008333, 1.242507, -0.410094, -0.239002, -0.812863, -1.278352, 0.616818, 0.744511, -0.071488, -1.218788, 0.335584, -0.055247, 0.190317, -1.361688, 0.092413, 1.391584, -0.089277, -0.477297, -0.297653, -1.329137, -0.176489, -0.780425, -1.242031, -0.455239, -0.128555, 0.705808, 0.652702, -0.907426, 0.115842, 1.439899, 0.583011, -0.586446, -0.508457, 0.145344, 0.474562, -0.997828, -0.497745, 1.263431, -0.498363, 1.067552, -0.140476, 0.195365, -0.339264, -0.550975, 0.430140, -2.495366, 0.820498, 1.151712, -0.580847, -0.664775, 0.300745, -1.900717, -0.246849, 0.174779, 0.095474, 0.301566, -1.462927, -0.457453, -1.198832, 0.260430, 0.525427, 2.327744, -1.917447, 0.651556, -0.082186, 1.258345, -0.599588, -0.777779, 0.395293, 2.045056, 1.120563, 1.661898, -0.539189, -0.111726, -0.107838, 0.628474, 0.855023, 0.050101, 0.291567, -0.751113, 1.743932, -1.885355, 0.827604, 1.001296, -0.799931, 0.832705, -1.218060, 0.589579, 1.204786, -1.311507, 1.293605, 0.120319, -0.673120, 0.768688, 0.896431, 0.687807, 0.565967, -0.331070, 1.144239, 0.344915, -0.536867, -0.657178, 1.542104, 0.667695, -0.314779, 0.967024, -1.946962, 0.091642, -1.883904, -1.918245, -0.747505, -0.275695, 1.471952, 1.597673, 0.643054, -1.427826, -0.940320, 0.045873, 1.094288, 1.310489, -0.449426, -0.976604, -0.161207, -0.479570, 1.346457, -0.163808, 1.376277, -0.904598, -0.484484, -0.504983, 2.231356, -0.574739, -0.925540, -0.604247, -0.651224, -0.719114, -0.761973, -0.668061, -0.255279, -0.078762, -0.022794, 0.211515, -0.920800, 0.637119, -0.714713, 1.671272, 0.192129, -0.180253, 1.393980, -1.204250, 0.737188, -0.077572, -0.695508, -0.256038, 0.124274, 0.944659, 0.957450, -0.178383, 1.970102, -0.991845, -0.507732, -0.281083, 1.439515, 2.388603, 0.230345, -0.072544, 0.788672, 0.121837, -0.605396, 1.692880, -0.838169, -0.199886, 0.096945, 0.124041, -1.143811, -0.618569, -0.211310, -0.699583, 0.170679, 0.393933, -0.008682, -1.669207, 0.139770, -0.176186, 0.586495, -0.272988, 0.639205, -0.053130, -0.899506, 0.453998, 0.075434, 0.669400, 0.193137, -0.185708, 0.555906, -1.290901, -1.267053, -0.821400, -2.053677, 2.290072, -0.077008, -0.920618, 0.023749, -0.117790, 1.077128, -1.319185, 0.177130, 0.145882, -0.796767, 2.135765, 0.174968, -0.790916, -0.701847, -0.645645, -0.226694, 0.108898, 0.454596, 0.562653, -0.731533, -1.487294, 1.617465, 0.383866, -0.994835, 0.407216, -0.261415, -0.697723, -0.238328, -0.680263, -1.702497, -0.019850, 0.412528, 0.646121, -1.124923, 0.260227, -0.676179, -0.548324, 0.113787, 1.106406, 0.478712, -0.996195, -0.400662, 0.322306, -0.183456, -1.094775, -0.714005, -2.390916, -0.124259, 1.317828, 1.232597, -0.461590, -1.142817, 0.618168, -0.314165, -1.010540, 0.747660, -1.440197, 1.082188, -1.315799, -0.236548, -0.607677, -0.547380, -0.332656, 0.705554, 0.341649, -1.080255, 0.883253, 0.532238, -2.370310, 0.643896, -0.696013, 0.560925, 1.117974, -0.119678, 1.088691, -1.319988, 0.907951, -0.366180, 0.698432, 0.550332, 0.966005, 0.904856, 1.320437, 0.729177, 0.536385, -0.569802, -0.680889, 0.695696, -1.529623, 1.016953, -0.905905, -0.263244, 0.803606, -1.550442, 0.112123, 0.600202, -0.862481, -1.347078, -1.474102, 0.142699, -0.900816, 2.040950, 0.547448, -0.408968, -0.853502, -0.859737, -1.367904, 0.703143, -0.291022, -1.893490, 1.078926, 0.006518, 0.252045, -0.835005, -0.356546, -0.261641, -1.671060, -0.326894, 1.896629, 1.012121, -0.211800, 0.338384, -0.184103, -0.122299, -0.132211, -0.855417, 0.492985, -0.099009, -0.343577, -0.082816, 1.081974, 0.921803, 0.641486, 0.499388, 1.859946, -1.221179, -0.088010, 0.308682, 1.435141, 1.082307, -1.517399, 0.101751, 0.173340, -1.151169, 0.680290, -0.174590, 1.305213, -0.671548, -0.442931, 0.129224, 2.026346, -0.768422, 0.199532, -0.226109, 1.509976, 0.721038, 1.441118, 0.020177, 1.516057, -1.973640, 1.343944, 0.303457, 0.188708, -0.331241, -0.542382, 0.879981, -0.996384, -0.137007, 0.504955, 1.750427, -0.654324, 0.904405, -0.809206, 0.759498, 0.892563, 0.407132, -0.196360, -0.305179, 0.101894, -1.022962, 1.948404, 0.211720, 0.422802, -0.151179, -0.799501, -0.708741, 0.680537, -0.245442, 0.140980, 0.211048, 0.102425, -0.714462, 0.008719, -2.286333, -0.911013, 0.410143, -0.251832, -0.635754, 0.220559, 0.273058, 0.249602, 2.147115, -1.275174, 0.441373, 0.101199, -1.209903, -1.686076, 0.697102, -0.728055, -0.599947, 0.434907, -0.742242, -0.231319, -0.485639, 1.490613, 0.456012, -0.315430, 1.032377, 1.016384, 2.071719, -0.581866, -0.997055, 0.361761, -0.579864, 0.588728, -0.431103, -0.318526, 0.593021, -1.226416, -1.543987, 1.143324, 1.317451, 0.807418, -0.951109, -0.232099, 0.030076, 0.300818, 1.741943, -2.176701, -1.189019, -1.335963, 0.927846, 0.176398, -0.225009, 1.401209, -0.256503, -0.016149, -1.241953, -1.070358, 0.369862, 0.281447, 2.637036, -1.203327, 0.529598, 0.479650, 0.802503, -0.275342, 0.086772, -0.021011, -0.208393, 0.011626, 1.438752, 0.961595, 0.581880, 0.550852, -0.738347, 1.423225, -0.690117, 0.063013, 0.530657, -1.198591, -0.260484, 0.182210, -0.888091, -0.389593, 1.579610, -0.956951, 0.701923, 0.510090, -1.268439, 0.437497, -1.000280, 0.914457, -2.079672, -0.642056, 0.575708, 0.036583, -2.124228, -0.337062, 1.520439, 1.086876, -0.443614, 0.623885, -2.132409, 1.892285, -1.028370, -1.046202, -0.244842, 0.148280, 0.422102, 0.717107, 0.483886, -0.064513, -0.102968, -0.544850, 1.843724, 0.523018, -0.426738, -0.767726, -0.163730, 0.658391, 1.490329, 0.891014, -0.760058, -0.995975, 0.941965, -0.228759, 0.819013, -1.438934, -1.759312, 1.634432, -1.490389, -0.754722, -1.157871, 1.290812, -2.045502, -1.010032, -0.745381, 0.145885, -1.085113, 0.726223, 1.356378, 0.689163, -0.025504, -1.611363, 0.116147, 0.203872, -0.883090, 0.015775, -0.445040, 0.524059, -0.738939, -1.356761, 0.632259, 0.989492, -0.288515, -1.409764, -0.190458, 0.757061, -0.195403, -0.728183, -0.279709, 1.133811, -0.069051, 1.054468, -0.336070, 2.098590, 0.798654, -0.350733, -1.387883, 0.048497, -2.198933, 0.307884, -1.533988, -0.842805, -0.163025, 1.368090, -1.688254, -0.218864, -0.168888, 0.316394, 0.803479, -0.943433, -1.784473, 0.069284, 0.821159, -1.154330, -0.397152, 1.045521, 2.045438, 0.534702, -0.009791, -1.095701, -0.311276, -0.496416, 0.792970, -0.487859, 0.325287, 0.485965, 0.432876, -1.126865, -0.685436, -0.085591, -0.414640, 0.228518, -0.821009, -0.743283, -0.161088, 1.142402, -1.018194, 0.476906, 0.276374, 0.987624, 0.383144, -1.295667, -0.488333, 0.617016, -0.033344, 0.725141, 1.008377, 0.439418, 1.472104, 0.155561, -0.110068, -1.304138, -1.165281, 1.315892, 0.444532, 2.298580, 0.227679, 1.336553, 0.946921, -0.440665, -0.680986, -0.260142, 1.197007, -0.098810, 0.861896, 0.132229, -1.200370, 0.120048, -0.474769, -1.315054, 1.050065, -1.008350, -0.255670, 0.426554, 0.174012, -0.210155, -0.068163, 2.407134, -0.601567, 0.799011, -0.624274, -0.469872, -0.280167, 0.011803, 0.864613, -0.501991, 0.980410, 0.137826, -1.481396, -2.424272, -0.223357, 0.942771, 0.688922, 0.865510, -1.111012, 0.624729, -0.025743, -1.629060, -0.758888, -2.265140, 0.975112, -2.076916, -0.129254, -0.356208, -0.606403, 1.246377, -1.888516, 0.899758, -0.849161, 0.364329, 1.925512, -0.950648, -0.616728, -0.874016, 1.383138, -0.172858, -0.918178, 1.024213, -0.941024, 0.766330, 0.153633, -1.626859, -0.475497, -0.643694, -0.905033, 0.940519, 1.136209, 0.211226, -0.467632, 0.768584, 0.706210, 1.397715, 0.138225, -0.431444, 1.122714, 0.571397, 0.548292, -0.631882, 1.414571, -0.135924, -1.275109, -0.940283, 1.720902, 0.349364, 0.680290, 0.095300, -0.323898, -0.007615, 1.202715, -0.284686, 1.662228, 0.701834, 0.034678, 1.381668, 1.859965, 0.966662, 1.430236, -0.150380, -0.372605, 0.098700, 0.696459, -0.309120, 0.459758, -0.275880, 0.799164, -0.224122, -0.528460, 1.048741, 0.905117, 0.480607, -0.296526, 0.945736, 0.133489, 0.089401, 1.380204, 1.754053, 0.779173, 1.216589, -1.024632, 0.759024, 0.537437, -1.139913, 0.696660, 0.308960, 3.609614, 0.339608, 1.885982, 0.023916, -0.875844, -1.432505, -0.408879, 0.584979, -0.618855, 1.262627, 2.090262, -1.082905, 1.685835, -0.536519, 0.173338, 1.443709, -2.353907, -1.209625, 0.035264, 0.724880, -0.802651, -0.310640, -0.851194, 0.611488, -0.269466, 0.182953, 0.029499, -1.014550, 0.994472, 1.221726, -0.131445, 0.280344, -0.855399, -0.543700, 0.270336, -0.346383, -0.531537, 0.300804, -0.090422, -1.123561, 0.287737, 0.707782, -1.353820, -1.284211, 0.480772, -1.396575, -1.554634, -0.084988, -0.186334, 2.129409, 0.530384, -0.133940, 3.329255, 0.457656, 0.867170, 0.499770, -1.001991, 1.411815, 0.040660, 0.676519, -0.624028, 0.904351, -1.411417, -0.472960, -0.996108, 2.300970, -0.662128, 1.222117, 0.269884, 0.390922, -1.267248, -1.749175, -1.508577, 1.856439, 0.123758, 0.155336, -0.293283, -0.183849, -1.440819, 1.447976, 0.524395, 0.506728, 0.757555, -0.786207, -0.849897, -1.340120, 0.481862, 1.816820, -1.376189, 0.641864, -1.924750, -2.417068, -0.160125, -0.193410, -0.381317, 0.927559, -2.568306, 1.271271, 1.303896, -2.166029, -1.530379, 0.829018, 1.732181, -0.142883, -2.048300, 0.065327, 0.763748, -1.820923, 0.940883, 0.860248, 0.229715, -0.482862, -1.746277, 1.577981, -0.148202, 0.488000, 0.667652, -0.643817, -0.639880, 0.475490, -0.112918, 0.024775, -0.303965, 0.769395, 2.331867, 1.243592, 1.776780, 1.552388, 0.815864, 0.582191, -0.822834, -1.167023, -0.017253, -0.817653, 0.886605, 1.262202, -0.163658, 1.243207, -1.652786, 0.328303, -0.799172, -0.683606, -0.429759, -0.663217, 1.450431, 0.051583, -0.195661, -0.419989, -1.419475, -0.879870, -0.730321, 0.290857, -0.046591, -0.568303, -0.166330, 2.531542, 1.964246, 0.228536, -1.092517, 0.103806, 0.250279, 0.015149, -2.444742, -0.257351, 1.175701, 0.213322, -0.241328, -1.163861, 0.221895, 1.118525, 0.805948, -0.594000, 0.242908, 2.210176, -0.552144, 0.942479, 0.553428, -1.980603, -1.221319, -1.055179, -0.439258, -0.533544, -1.869555, 1.269748, -0.761043, 0.446409, 0.411258, -0.522056, -0.788410, -1.651978, -0.697587, -0.290002, 0.255671, 1.480034, -0.405975, -0.133830, 0.677668, 0.207794, 0.705147, -0.086225, -0.452590, 0.082180, -0.046804, 1.277458, 1.057401, -0.070093, -0.595076, -2.132848, -0.703874, 0.188869, -0.392086, -0.881015, -1.165322, 0.410799, 0.471603, -0.211359, 0.070827, 0.900068, -0.444908, -1.120263, 0.003885, 2.025558, -0.908057, -0.839589, -0.755224, -0.843029, -0.568644, -0.908302, 2.828378, -0.611708, -0.665658, 0.153252, -0.034665, -0.134379, 0.770814, 2.250486, -2.436569, -0.962193, 0.319847, 0.984329, -0.923787, 0.168609, 0.847455, -0.477922, -0.283222, 1.247782, 3.877625, 0.061579, -0.597473, 0.968885, -0.724715, 2.344604, -1.180566, 1.619984, -0.016636, 1.101751, -0.591842, -1.365216, 0.003815, 1.326410, 2.052107, -1.039814, 1.038797, 1.231920, -0.644768, 1.469848, 1.424112, -0.161596, 0.181252, -0.753282, 0.211047, 1.295373, 0.198816, -0.233923, 0.998324, 0.175984, 0.024981, 0.063775, 0.806074, 0.343550, -0.334650, 0.562876, -0.468298, -0.207810, -0.874198, 0.866068, -1.239539, 0.690880, -0.212895, 0.125039, -1.686516, 0.653755, -0.386915, 1.461090, -0.691420, -1.523585, -2.568363, -0.716705, -1.886883, -0.381368, -1.872987, -0.382293, 0.415671, 1.000871, 0.636103, 0.150059, -0.234357, -0.351909, 0.730472, 1.440648, 0.353006, -0.448621, 0.898384, 0.390281, 0.584547, -0.217881, -2.378435, 1.155621, 0.800089, -1.396390, 1.286503, 0.127026, -0.257437, 0.639106, 0.143371, -0.455290, 0.187221, -0.766412, 0.533768, -0.344767, -2.099163, 1.662149, 1.249898, -0.461237, 1.105386, 1.017086, 0.128956, -1.242296, 0.388200, 0.036844, 0.059973, -0.360936, -0.232911, -0.751454, 1.359506, 1.272376, -0.691905, 0.024678, -0.614514, 0.576087, -0.285341, -0.712411, -0.866115, 0.219493, -0.667458, 0.297395, -3.397004, 0.779929, 1.371903, 0.710868, -0.948317, 0.485220, 1.393659, 1.578432, -0.396895, 0.623320, 0.804159, -1.946680, -0.118661, 0.296309, 0.770289, -2.094488, 1.354425, 0.846930, -1.323099, -0.255901, -1.112033, 0.881309, -1.045812, 0.231874, -0.437478, 0.227008, -1.548594, -1.383024, -0.498416, -1.314851, 0.645995, -0.184971, 0.301225, 1.426172, 0.333262, 0.369996, 0.477147, 0.428016, 0.393985, 1.584549, 0.594897, 0.411753, -1.484976, -0.800685, -0.022960, -1.020552, 0.152559, 1.489777, 0.871866, -0.360478, 0.780749, -2.045890, -0.555319}, - { 0.397902, -0.625628, 1.479387, 0.301508, -1.111580, -0.268341, 1.573557, -1.145249, 0.637864, -0.847365, -1.795448, -0.289333, 2.414314, 2.162613, -0.261415, -0.168199, -0.860304, -0.991795, 0.179852, 1.245093, 0.258291, 0.231043, -0.574224, 0.139197, -0.903825, -0.520385, -0.118809, 0.431198, 1.264804, 1.203976, 0.549401, 1.199434, 1.241233, 0.605376, 0.092087, 0.728034, 1.285359, -0.073010, 1.558317, -1.491558, 2.070826, -0.169041, -1.353781, -0.556507, -0.999211, -0.393171, -1.357439, 0.152901, -0.328406, 1.229994, 2.347155, -0.053017, -0.556455, -1.093065, 0.905515, -1.634576, 0.465455, 0.062382, 0.586577, -2.428869, 0.016895, 1.041459, 0.429108, 0.670191, 2.021802, -0.049661, -1.619991, 1.651106, -2.601614, 0.360174, -0.349763, 0.554840, 0.059825, 1.796347, 1.150188, 0.183160, 0.287071, -0.216400, -1.179182, 0.324511, -1.091342, 0.666005, -0.125617, 0.632509, -0.415586, 1.254706, -0.365042, -0.154315, 0.423750, -0.687698, -1.095811, -0.437080, 1.195237, -0.502768, -0.297017, 0.573047, 0.815506, 0.016211, 0.259915, -1.174870, 0.321185, -0.024461, 0.243258, -0.192603, 0.887272, 0.931584, 0.300058, -0.183879, 0.309701, -1.828334, 1.380724, -0.252967, -0.237349, -0.540729, 1.670534, -0.247425, -0.370222, 0.745058, 0.600605, 0.432842, -0.201970, -1.583855, 0.418849, -0.815864, -0.276003, -0.676250, -0.072936, -0.449164, 0.862817, 0.008487, 0.436551, -1.249150, -0.591659, -0.642105, 0.880850, 0.705326, -0.351558, -0.556165, -0.456567, -0.022146, -0.093462, 0.526523, -0.326691, 0.169439, -0.592688, 0.561000, 0.833284, 1.402720, 0.393110, 0.745189, 1.109875, -0.616299, 0.511503, -0.056702, -1.623536, 0.796917, 0.068542, 0.545954, 0.538066, 0.452050, 0.264712, 0.808458, 2.316365, -1.251816, -1.470128, -0.167181, 1.863362, 0.841509, -1.188357, 0.468992, -0.282439, -1.707706, 1.307675, -0.694134, -1.559336, 0.717897, 0.678974, -1.435963, 1.034485, -0.794434, -0.239942, -0.346986, 0.384528, 1.326524, 0.380102, -0.750890, -0.725756, 0.451464, 0.517938, 1.445675, -1.848911, -1.723534, 0.815476, -1.215246, 1.510624, 1.192425, 0.384347, -1.130144, 1.961066, -0.123552, -0.553472, -1.452633, 0.953591, 0.118772, -0.825222, -0.124089, -1.406725, -0.544679, 0.209230, -0.235874, 1.234162, -0.351002, 0.842394, -1.055806, 2.030265, -0.759735, 0.451925, 0.313142, 1.805153, 0.635674, -0.551841, -0.805381, 0.559676, -0.219827, 0.383242, 0.369866, 1.258649, 1.352083, 1.289509, -1.196115, 0.313936, 0.463391, -0.751866, 0.510596, 1.487680, -0.457503, -0.194005, -2.266080, 2.071722, -1.287911, -1.649169, 0.007173, -1.511061, -0.379841, 1.008682, -1.318822, -1.464255, -1.016002, -0.015871, -0.106886, -2.637326, -0.680773, 1.569122, -0.899328, 0.055442, -1.043027, -0.179923, -1.411653, 1.401585, -0.008668, -1.485639, -0.512759, -1.109846, -0.341646, -2.357267, -0.267082, 0.327114, -0.538263, -1.974607, 0.465478, 0.536107, 0.140605, 0.580848, 0.775572, 0.273671, -0.195684, 0.351589, -0.291344, 0.789389, 0.355494, 1.991824, 0.941108, 1.291807, 0.497956, 0.058046, 0.891124, -1.631686, 0.064557, 1.664873, 0.779738, 1.495963, 0.230727, 0.622008, -0.937111, -0.797877, 0.378265, 1.028295, 1.104523, 0.206274, -1.272290, 0.163572, 1.252883, -0.280044, -0.326013, -1.691937, 0.353829, 0.373003, 1.611550, 1.869360, 0.743680, 0.312009, -1.045734, 0.114571, -0.721438, 0.059467, 1.173317, -0.832717, -1.434169, 0.212966, 0.152695, -0.675706, 0.239844, 1.110258, -1.027962, -2.223228, -0.339359, -0.187397, 1.297618, 0.605033, 0.692649, 0.747547, -0.467109, -0.273467, -0.180523, -1.032680, 0.069647, 0.786971, -1.344939, -0.014145, -0.399295, 0.567165, -0.577537, 1.722423, 1.418422, -1.055373, 0.218069, 0.149612, -0.097183, -0.675311, 1.160755, 0.006216, -1.015604, -1.597331, 0.247162, 1.644854, 1.297949, -0.972633, -0.454446, 1.034320, 0.746576, 0.074242, 0.498527, 0.993786, -0.900211, -0.510987, -0.492017, -0.434712, -0.128737, -0.939523, 0.401896, 1.181159, 0.718623, -2.541697, 0.211067, 0.934952, 0.243785, 0.239564, 0.245031, -1.016884, 1.873756, 0.346441, -0.965325, -1.046962, 0.028684, 1.109325, -3.236459, -1.249434, -0.215591, -0.346796, 0.815893, -0.380468, -1.168015, 0.968293, 0.846781, -1.554854, 0.660721, -0.196492, -2.529359, 1.104557, 1.068576, -0.912981, 0.647836, -0.673273, 0.202953, -0.746167, 1.391816, -0.367632, -0.423983, -1.096837, -1.213978, -1.650027, -2.154068, 1.085110, -0.065280, 1.095219, 2.160916, 1.133895, 0.605502, -0.037332, -0.914821, 0.155807, -0.375078, -1.039768, -1.761924, -0.659202, 0.487244, 1.168084, 2.082662, -1.359603, -2.239086, -0.780609, -0.186767, 0.145168, -0.324051, -1.124557, -0.609289, 0.918961, 1.341877, -1.145339, -1.604142, -0.692339, 0.595833, 0.622823, 0.266690, 1.505500, 0.768237, -1.063251, -0.101952, -0.944630, 0.564766, 1.827564, 0.734241, 0.442886, 0.156192, -1.060690, 1.027479, 0.600775, -0.647523, -1.642485, 1.056724, 1.224363, 0.306832, -0.474383, -0.625286, -0.881909, 1.572986, -0.575539, 1.312308, -0.621236, -1.218176, -0.914801, 1.097045, -0.570638, 0.546480, 0.230379, -0.742362, 1.354333, 1.278417, -0.165027, -0.072332, 1.098148, -1.113943, -1.402935, 0.880472, -0.323580, -0.377257, -0.211428, 0.600710, -0.267630, 0.655203, -0.625052, -0.231555, 0.426684, -0.339672, 0.645270, 1.746541, -0.159183, 0.438685, 0.209977, 0.219198, 0.312064, -1.490843, 0.051519, 0.965100, -1.210808, -0.688722, -0.824444, -1.447609, 0.836103, -0.080510, 1.336200, 0.320610, 0.861792, 0.221703, 1.906374, 0.981361, 0.573299, 0.621737, 1.256313, -0.980522, -0.324407, -0.799707, -0.527238, -0.749697, -0.518749, 1.385509, 0.296353, -1.193576, 0.898063, -0.815179, 2.012119, -1.822363, 1.315985, -0.943272, -0.308327, -3.180191, 0.030982, 0.033757, -0.227730, -0.557081, 0.087957, -0.158858, 0.732622, -0.730323, 0.839778, 1.263403, 0.201684, 0.478520, 1.391217, 0.429208, -1.926970, 0.444913, -0.253590, 0.783124, 0.149794, 0.228818, -0.156759, 1.565686, 1.128065, -0.385326, -0.238820, 0.142572, 1.207330, -0.350904, 0.803233, 0.726274, 0.145972, 0.846257, -0.568462, -1.007236, -0.350368, -0.414480, 0.167306, -1.078522, -0.011083, -1.325884, -0.261677, -0.063001, 0.064699, -0.046340, 1.090827, 1.610452, -0.078146, 0.657580, -0.887938, 1.698157, 0.475013, -0.753172, 0.047510, 0.128340, -0.185470, 2.308815, -0.768362, -0.298944, 1.490169, -0.163181, -0.141706, 0.280293, 0.347666, -0.930147, 1.692237, 0.784575, 0.441540, -1.364817, -1.592082, -1.005267, -0.236132, 0.264326, 1.400481, -0.864173, -0.164374, -0.648073, -0.103964, -0.633422, -0.091832, -0.845128, 0.610313, -0.793220, 0.114684, 1.331711, 0.052275, -0.044252, -1.277283, 0.715250, 0.744954, 0.078848, 1.025515, -0.550467, -1.851244, 0.814695, 1.429012, -0.517363, -0.282072, -0.338155, -0.759759, -2.167563, -0.289156, 0.276747, -1.281504, 0.384948, -0.137668, -0.639828, -0.655429, -1.868230, -0.525978, -3.318033, 2.028107, -0.198462, -1.628217, 0.368521, -0.398997, -0.659896, 0.262710, 1.866975, -0.359355, -0.916458, 0.260492, -0.022290, 1.329419, 0.519441, -1.003110, 0.224461, 0.000708, -0.870572, -2.013021, 0.455899, 0.659418, -1.408089, 0.546824, -1.196154, 0.630183, 0.722417, 1.381391, -1.120544, 0.510466, -0.426731, 0.652140, 0.013611, 1.616731, -0.352046, -0.053897, -1.832929, -0.639912, -0.337219, 1.866480, -0.072241, -0.122027, -0.446886, -0.460639, 1.260563, 0.343270, 1.659025, 1.953304, -0.862370, -1.102291, 0.107293, -0.312064, 0.875453, -1.615332, 2.395746, 0.663640, 0.776950, 0.651915, 2.238382, -0.882837, 0.425103, 0.336348, -1.195239, 0.308997, 1.112996, -1.095769, 1.224501, 1.003981, 0.666561, -0.263300, 0.839102, 0.479109, 1.101422, 0.079921, -0.431181, 0.424569, 0.896718, -0.375499, 1.210316, 0.209991, 0.081365, -0.633965, 0.338000, 0.482959, -0.223752, 0.161142, -1.421300, 0.360435, -0.562725, -2.255239, -0.187742, -0.692581, 0.084831, -0.142436, 0.268714, 0.314078, -0.250118, 0.294570, -0.593531, 1.635043, 1.924079, 0.133923, 1.648445, 0.814732, -0.957051, 0.501103, 2.133228, 0.882361, -0.754572, 0.017249, -0.774283, -1.937786, 1.727056, -1.526170, 0.107468, -0.090990, -1.664206, 1.386554, 0.571319, 1.309265, -0.824381, 0.397706, 0.795643, 1.035703, 0.796255, -1.111539, -0.559384, 0.201687, 0.727894, -0.186225, -2.856054, -0.432620, 0.120702, -0.061352, 0.181169, -0.406681, -0.604765, -0.279922, 0.138639, 0.640739, -0.931177, -2.112040, 0.144120, -0.170148, 0.253386, 0.817774, 1.755317, 0.291607, 0.292368, 1.083997, 0.492946, -1.142132, -0.730558, 0.722754, -1.114944, -0.483674, 1.237506, 0.589123, -0.164140, -0.439675, -1.082012, 0.319133, -0.949891, 0.267695, 0.540682, 1.892502, 0.915960, 0.235131, 0.145682, 0.635065, -0.621037, 0.931392, 0.943104, 0.587557, 0.919953, 1.221641, 0.649709, -0.429679, 1.143710, 0.704110, 0.681591, 1.645936, -0.870068, -0.687080, -0.352319, 1.442036, 0.765700, 0.705972, -0.571633, -0.896662, -1.346071, 0.038369, -0.900158, 0.409980, 0.902031, -1.160114, 1.162613, 1.227467, -1.194573, 1.493758, 0.524206, -1.435843, 0.991254, 0.618583, -0.203432, 0.497358, -0.351674, -0.111591, 0.574600, 1.328734, -0.627848, 0.237703, -1.620735, 0.691644, -1.829404, -0.129348, -1.778855, 1.013611, -0.871972, 0.192941, -1.170202, 0.133178, -0.624322, -0.941917, 0.435955, 0.646856, -0.821544, 1.230857, 1.977842, 1.696647, -0.808502, -1.292378, 0.215458, -0.755800, -1.842436, -0.533982, 0.555028, -1.717735, 1.782895, -0.193736, 0.643441, -1.200487, 1.401901, 0.647254, 0.315923, -0.929332, 1.017438, -0.159385, -0.163197, 1.073068, 2.494771, 0.220851, 1.212367, 0.829879, 0.553959, -1.125298, 0.219472, -0.344191, -0.274845, 0.391239, 0.724445, 0.644183, 1.339640, -2.402907, 1.424422, 0.775488, 0.855621, -0.316442, 0.652609, 0.151223, -0.509427, 0.357319, -0.002232, 0.002625, 1.787257, 0.093730, 0.422814, -0.181495, 0.122268, 0.462504, 0.489205, 0.006345, 1.657085, -1.052014, 0.805784, 0.272965, 0.009273, -1.206407, -0.603380, -0.271340, 0.279851, 2.060154, -0.659178, -0.263021, 1.438617, -1.114851, 0.978198, -0.629626, 0.092254, -0.079602, 0.729486, 0.246264, -1.330521, 0.595567, -0.194329, -0.488868, 1.261218, -0.629127, -0.003524, -0.930757, -0.971893, -0.977347, 0.169135, -0.029851, 0.663033, 1.331198, -0.166863, -1.413124, -0.611232, -1.325887, 0.719540, 0.366036, -0.843728, -0.039725, -0.901228, 0.970152, -1.932931, -1.336615, -1.450713, 0.322657, -0.086283, -1.490028, 1.429576, 2.014214, 0.587086, -0.209670, -0.497042, 0.075194, -1.305046, -1.103764, -0.053643, -0.914243, -0.507178, -0.258858, 0.478769, -1.026318, 0.581566, 0.970539, 1.057537, -1.220953, 1.115451, -2.018055, -0.094590, 0.612631, -1.119480, 0.057983, 0.790750, 0.857275, -0.775829, -0.723215, -0.788819, 0.092315, -1.208597, -0.332328, 0.073370, -0.875584, -1.259870, 1.376252, -0.110302, 0.198944, 0.665233, -1.004277, -2.495070, -0.501481, 0.209519, 2.160294, -0.392717, 0.893331, -0.116144, -1.601647, -0.912129, 0.406116, -0.382399, 0.390812, 0.264827, -2.756296, -1.413604, -1.233068, -0.261524, -0.032756, -0.897102, -1.347869, -1.052447, 0.367772, 0.471368, -0.708269, 1.138336, 0.204978, -0.945817, -0.120756, 0.416951, 1.527039, 0.576882, -0.031194, -1.029366, -0.711289, -1.178913, -0.275569, -0.415667, 0.516198, -0.492818, -0.908636, -0.602793, 0.423466, -2.831839, 0.025080, -0.837435, 0.097479, 0.794901, -0.707969, -1.296508, 0.197815, -0.607117, -0.407268, 2.144266, 1.297526, -0.401619, -0.123520, -1.749741, -0.093029, -0.482218, -0.513170, -0.077495, 1.339276, -1.923275, -0.366532, -0.088114, 1.714944, 0.464533, 2.008305, 1.797857, 0.119683, -1.920210, -0.889408, -0.002820, 0.769199, 0.995564, -0.545528, -1.115026, 0.079013, -0.012283, -1.519053, 0.988466, -0.007880, 1.955811, 1.229000, 0.012550, 0.068846, -0.084205, 0.551803, 0.973551, 0.095191, -1.047018, -1.178344, 0.619286, 0.680781, 1.104758, -0.856137, -0.658829, 0.503207, 0.435084, 1.420897, -0.997445, 1.915613, -0.765488, -1.150219, -0.588657, -0.021214, 1.272808, 0.778202, 0.970973, 0.446273, -0.687227, 0.532673, -0.962006, 1.416638, -0.120991, 1.212373, -0.848133, 1.363248, -1.024722, -0.540119, -0.063279, -0.554893, 0.825082, -1.861743, -0.279161, 0.759229, -1.919250, -0.389236, 0.225432, -0.155800, -0.644842, 1.005462, -0.331361, -1.276624, 0.421900, -0.934115, -1.028485, 0.188554, -0.060705, -1.971242, -1.104679, -0.461934, 1.194904, 1.355721, -0.498667, -0.087895, -0.341180, 2.152280, -1.156931, -1.297162, 0.159961, -0.371560, -1.660581, -1.718519, -1.173714, -0.388387, -0.710685, -0.665281, 0.534684, 0.922758, -1.603039, 0.722145, 0.713343, 0.295906, 0.004487, 1.232303, -0.725855, 1.200933, -0.365656, 0.709004, 1.516460, 1.978608, -0.862091, 3.220235, -0.287797, 1.246924, -0.955292, 1.563985, 0.389392, -1.152659, -0.386489, 1.415505, 0.819921, -0.490103, -0.640921, -1.649100, 0.036991, -1.168213, 0.180131, 0.030534, 0.343469, 1.730103, 1.306038, -1.120715, -0.023258, -1.067802, -0.230431, -0.638243, -0.275032, -0.195180, -0.498887, 1.328472, 0.250918, -0.403072, 0.221525, 0.154046, -0.355871, 0.005889, -0.071270, -0.213476, 0.235303, -2.103062, 2.674556, -0.930435, -0.195183, 0.656623, -0.324090, -0.195452, 0.479278, 0.719781, 2.332605, 0.577367, 0.472275, -1.442480, 0.500991, 0.473953, -0.122388, -1.187577, 0.397951, -0.641310, -0.121393, 2.176812, -0.327258, -0.606647, 2.223547, -1.237120, -0.992715, -0.159497, 0.455373, 0.156582, 3.120859, 2.264301, 0.031816, 0.113769, -1.799282, -0.510779, 0.020287, -0.573934, 1.441873, -1.582964, -1.314808, -0.905121, 1.751048, 0.211886, 0.279688, -0.031168, 0.807837, -0.179264, -0.558977, 1.561998, 0.061429, -0.648085, -0.011632, 0.901130, 0.539795, -0.062280, 1.037842, -0.069247, -1.358977, -0.727844, 1.373096, 0.268221, -0.502699, 1.203040, 0.291188, -0.304377, 0.260948, -0.728182, 2.210609, -0.499431, -0.069824, 1.122771, 1.425929, -0.205414, 0.013548, -0.195850, 0.313866, -1.243809, -0.439834, -0.637609, -0.428886, -0.933359, 0.263488, 1.076910, 1.798448, 1.718117, -0.691431, 1.140254, 1.306156, 0.264880, -0.426295, -0.483738, 0.147290, 0.135848, 2.367270, -0.874218, -0.389739, 0.222940, -0.602368, 0.550388, -0.423112, -2.834760, -0.251033, 0.491035, 0.743647, -0.811746, -1.483979, 0.403688, -0.964126, -0.188674, 0.413081, -1.378762, 1.791452, -0.800096, -1.594639, 0.624772, 1.007449, 0.952239, 0.375546, -2.358524, -0.239566, 1.040509, -0.578055, -0.157878, -1.377931, -3.109737, -1.884068, -1.361481, 2.111804, -0.822966, 0.512906, -0.462270, -0.117832, -0.761100, 1.473985, 0.373687, -0.016655, -0.115666, 0.389894, 0.210412, -1.374144, 0.536187, 0.610932, -1.142081, 0.103665, 1.171672, -0.466920, -0.565776, 1.228711, -0.592833, -0.230855, 0.479654, 0.407419, 0.053162, 0.203749, -0.949128, 0.899117, 0.950011, 1.560256, 0.155268, 1.120049, 0.977134, -0.386127, -0.947654, 0.744135, 0.709754, 0.399837, 1.146906, 0.157047, -1.215089, 0.555536, 0.924675, 0.847462, 1.943426, 0.415244, 1.114699, 1.344164, 0.988261, 0.051285, -1.045561, 0.714125, -0.268082, -2.060783, 0.927242, -0.984802, 0.685616, -0.263042, 0.018238, -1.561641, -1.298827, -1.418777, 0.895254, -0.466107, -0.096130, 1.201377, 1.365423, 1.279658, -0.265955, 0.066162, 0.274351, 1.176118, 0.053008, -0.422437, 1.462755, -3.015315, -1.492427, -2.527809, -0.010963, 1.307484, -0.851646, -0.589602, -0.004985, -0.441831, -0.298692, -2.216329, -0.187479, -0.547348, 1.658710, 1.555562, 0.308208, 0.473002, -0.749534, -0.787369, -0.514901, -0.920756, 1.053708, -0.569274, -0.059521, -0.700414, -0.625122, 0.601374, -0.012728, 0.250269, -1.275045, 0.364849, -0.171555, -0.423571, -0.985311, 0.591574, -0.557575, 1.327642, 1.316166, -0.978657, 0.375612, -0.875736, 0.190580, 2.040755, -0.013696, -0.223093, -0.495197, -0.383582, -0.728658, 1.316873, -0.013236, 1.326230, -0.239358, 0.028608, -0.312866, -1.183085, 0.066513, -0.795607, -0.631752, -0.790130, 1.754964, -0.535769, 0.351556, 0.436180, -1.531465, 0.104114, 0.548718, -1.822194, -0.585365, 0.782286, -0.702233, 0.305163, 0.045526, 2.147397, 0.167095, 1.054680, -1.318063, -0.082929, 0.044461, 1.798332, -0.401105, 0.254712, -0.490336, -0.922367, -1.598941, 0.176974, 0.792304, 0.190157, 0.836363, 0.632260, -1.421667, -0.166150, -0.705454, -0.117918, -0.114645, -0.494666, -1.964028, -1.483485, -0.805194, -1.124968, 0.752185, -0.445609, -0.539539, 1.082037, 0.374930, 0.157324, 0.057473, 0.996430, -0.901272, -0.010872, 0.349762, -0.008421, -0.625017, -0.035655, 0.043201, 1.032874, 0.296900, 0.806917, 0.511126, 0.097089, -0.824277, 0.981837, -0.869999, 0.522362, 0.696053, 1.657134, -0.153059, -1.430641, 0.881273, 0.229371, 0.115647, -0.928265, -0.179038, 2.032038, 1.416396, 0.847308, -0.606086, -1.861907, 0.252192, -1.369171, 1.981785, -1.321295, 1.073320, -0.921769, -0.445751, 0.269134, -0.611617, -0.365908, -0.236242, -0.098734, -0.806022, -0.215842, 0.620205, -1.132795, 0.961762, 0.208385, -0.242921, 1.075466, -0.974263, -0.572946, 0.386050, -0.865346, -0.021480, 0.992734, 2.288755, -0.545419, 0.575367, -1.288827, 0.574643, 1.096143, -2.253523, -0.203932, 0.463036, -0.921544, -0.731187, -0.520028, 1.360932, -1.799895, 0.486349, -0.886007, -1.858305, 0.403362, 1.408571, 1.119234, -0.216637, 1.955386, 1.244642, 1.186321, -0.833162, 0.761052, 1.714296, -0.421925, 1.328339, 0.165691, 0.057056, 0.212240, -0.725287, -0.448622, -0.707221, 0.739069, 1.175328, -0.030339, 0.391110, 0.324313, 1.234727, -0.611348, -0.135203, -0.217118, -0.575642, -0.481307, 1.614949, -0.743329, -0.776322, 0.907290, -0.557254, -0.626826, -0.460979, -0.029481, 0.218129, 1.062821, -1.269559, -1.773411, 0.439020, -1.968440, -1.873107, 1.116506, 1.341182, -0.472738, -0.563285, -0.115501, -0.028733, 0.684597, -0.404609, -1.548671, -2.754110, 0.192049, -0.262183, 1.545758, -1.166935, 0.317727, -0.813394, 0.093455, -0.594494, 2.243908, 0.862889, 0.494756, 0.329103, 1.242202, 0.092987, -0.065457, 1.130374, -0.005381, 1.127514, -0.491244, 1.041776, -0.343603, 0.471847, -0.850555, 0.944268, 1.606235, 1.358560, 0.207087, -0.551920, -0.391832, -0.278153, -1.024869, 0.929067, -0.903400, 1.154206, -0.290539, 0.465979, -0.949779, -1.229331, -0.324859, 1.852412, -1.528874, -1.374022, 0.659562, 0.148540, 1.298361, 0.355546, 0.898985, -0.787030, 0.885879, -0.180930, 1.003042, -2.142610, -0.752738, 1.027719, 1.933525, 0.583066, -0.725643, 0.062547, 0.224479, 0.484880, -0.500071, 1.590852, -0.012077, -1.138220, 2.307087, 0.058780, 1.109037, -0.340743, -0.375280, -1.026863, 0.261883, -2.873732, 2.599088, -0.026834, -0.090668, 0.096925, -0.106037, 0.429530, 0.274213, 0.287082, -0.322930, 0.637699, 1.133164, -1.005047, 0.562509, 0.107756, -1.314345, 1.550069, 1.746011, -0.023739, -1.145663, -0.572618, -0.091766, -0.073645, -0.867268, -0.086424, 1.240232, 1.290610, 0.792627, -0.917114, 0.207297, 1.519323, 0.543178, -0.904294, 0.029228, 1.491327, -0.708791, 0.584278, 0.394101, 0.170791, 1.665265, 0.679291, 1.128493, 0.518032, 0.090865, -0.205841, 0.175440, -0.304879, 1.213930, 0.133233, 0.307538, -0.343509, -0.476510, 0.720584, 0.086064, -0.123170, -1.508930, 1.664220, -0.909256, 0.581730, 0.326905, -0.628290, -0.865279, -0.269337, 0.431555, -0.912122, 1.115049, 0.462110, 0.109722, 0.488445, 1.570567, -0.777412, -0.337776, 0.012234, -1.319299, -0.999330, 0.789943, -0.802324, 0.132238, 0.701228, 1.549307, 0.330899, -0.354603, -1.188475, -0.066450, -1.725475, -0.011502, 1.729350, -1.740283, 1.989218, 1.483074, -0.302512, -1.929752, -0.073134, -0.519722, -0.812547, -0.894488, 0.209302, 0.286915, 1.759358, 1.188033, 0.277531, -0.786866, 1.675290, -0.795249, -0.987034, -0.498810, -0.327979, -0.772105, 1.690472, -1.095643, 1.099586, -1.285466, 1.745408, -0.007676, 1.599954, -0.126218, 1.800575, 1.307515, -2.675705, 1.107394, 1.138512, 0.655565, -0.690958, -0.628045, -1.093270, -0.327841, -0.569912, 0.407510, 1.936694, 0.420488, 1.439300, 0.732885, -0.644625, 0.328560, -0.024258, -0.400122, 0.028204, -0.074894, -0.121787, -1.384298, -0.068262, -1.236813, -0.372484, -1.394397, 0.340848, 0.994900, 1.286134, -0.078777, 0.227388, -1.856870, 1.666336, 0.920616, -0.861653, -1.058923, 0.398428, 0.227442, 1.014405, -0.959578, 1.027706, 0.443570, 0.195949, -0.031804, 0.742083, 0.647662, 1.159854, -0.768153, 0.425177, -2.734565, -2.635970, -0.776466, -0.339134, 1.609774, -0.053368, 0.189059, -0.369728, 0.546454, 0.197936, 0.552730, -0.326067, -0.353512, -0.998867, 2.202140, 0.526449, 0.008358, -0.163653, -0.701090, -0.970405, -1.159152, 1.578912, -1.053726, 0.644994, -0.351175, -1.224443, -1.880515, 0.584871, -1.526418, 0.667879, 1.722451, 2.405367, -0.089798, 0.896519, -0.932062, -0.746178, -0.066302, -0.121282, 0.723257, -1.147001, -0.705364, -0.148270, -0.727830, -0.435181, -1.857304, 1.025615, -0.247655, 0.170963, 0.630386, 2.019815, -0.051581, -2.396340, -1.489793, -1.139267, -0.356815, -1.507095, 0.357992, 0.120801, 2.656139, 2.205944, -0.633099, 1.421507, -0.737112, -0.389680, 0.595222, 0.423990, -0.410285, 0.764676, 1.641639, -1.932271, 1.527080, 0.348338, 0.358684, 1.234703, -0.963635, -1.372566, 0.561248, 0.380021, 0.468774, -0.642245, -1.804695, 0.931268, 0.505565, -0.293890, 0.824634, -1.447939, -1.487093, 0.644569, 1.273257, -0.388113, -0.490511, -0.311814, 0.525488, -0.322727, 0.746299, -0.013972, 0.951541, -0.878458, -1.195304, -1.266439, 0.754591, -0.563294, -0.032327, -1.933672, -0.025318, 0.461708, 0.515547, -0.509287, 0.523600, 2.074127, 0.314889, 0.026121, 2.087113, 1.417964, 0.676282, -0.906987, 0.359946, 0.443624, -1.704957, -0.801375, 1.197335, 0.134621, 0.939449, -0.451562, 0.022929, -0.238121, 0.312455, -0.523777, 0.055907, 1.107461, 0.648612, 0.296204, 0.663174, 0.371537, 0.206355, -0.883969, -0.480764, 0.263936, -0.648345, 0.665095, 1.004315, 2.189885, -1.445895, 0.482572, -0.896395, 0.307800, -1.529635, 0.637840, -2.313832, 1.417485, -1.458698, 0.272801, 0.887301, -2.055120, 0.223960, 0.641071, 1.009966, 0.290074, 0.794865, -0.868054, 0.146543, -0.843323, -0.051535, -1.574116, 0.805259, 1.050735, -0.025870, -0.498268, 1.040492, 0.544859, -0.197614, 0.067346, 1.526364, -1.696052, 0.333217, -0.842155, -1.109141, -0.688241, -0.184381, -0.519930, -0.514361, -0.645382, -0.427517, 1.360512, 0.453192, 0.348188, 0.114309, -1.191802, 0.190292, 1.212574, -2.157988, -0.571602, 0.052900, -0.474125, -0.350652, -1.390604, 1.297446, -0.266244, -0.172165, 0.261631, 1.477623, 1.605108, -0.551839, 2.929697, 1.124276, -1.001032, -0.176865, 0.655861, -0.406324, 2.124618, -2.635197, 1.687983, -3.004538, 0.432338, 0.469672, 0.820505, -1.239035, 1.071978, -0.382358, -1.359175, 2.171713, -0.742410, 0.621414, -0.114376, -0.025554, 0.894191, -1.923222, -0.996807, -0.231399, -0.009685, 0.832969, -1.151006, 0.282607, 0.241059, 0.191672, 1.095477, 2.968779, -0.611573, 0.547394, -0.938493, 0.693095, 1.201304, -0.671215, -1.791842, -2.898029, -1.615832, 0.331113, -0.301897, 0.178059, 0.561332, 0.587000, 0.929405, -0.661530, -2.917735, 0.902986, 0.390727, -0.605329, 0.618787, 0.938493, 0.864314, -0.104563, -0.324752, 0.921397, 0.418408, 2.499801, -0.443724, 0.369828, -0.657718, -0.717587, -0.851624, -0.102751, 1.974144, -0.353687, 0.129317, -0.014258, -1.786300, 1.231025, -2.190894, 1.353528, -0.539742, 0.366985, -0.491186, -0.749337, 0.468829, 0.726582, 0.901876, 1.689844, -0.015404, 1.291313, -0.652228, -1.617892, -0.407098, 0.811635, -0.100882, -0.505936, 0.064013, 0.190718, 0.741500, -0.509659, -0.736679, -1.423419, 0.480006, -0.536431, -0.921670, -2.029162, 0.199977, 0.695036, -1.274866, 0.921030, -0.326365, -0.755873, 0.159117, 1.810865, 1.353728, -1.020579, -0.990970, 0.066096, -2.151225, 0.651172, -0.150863, -0.340168, 0.980596, -2.188121, 0.543628, 0.557794, 0.245082, 0.781492, 0.607996, 0.828434, -0.962132, 0.024858, -0.379184, -0.733837, 0.834223, 0.386350, 0.224020, 0.471652, 0.734388, -2.240056, 0.658683, -0.123757, 1.223046, 0.117629, -0.108488, 1.669346, -0.994313, -0.033688, 0.518057, 1.067093, -1.768806, -0.011158, 1.266573, -0.811456, -0.505756, 0.506981, 0.880940, 0.972582, 0.212036, 0.167964, -0.502662, -1.862485, -0.901330, -1.061944, -0.674017, 1.530106, 1.535317, -0.003357, -0.629021, 1.311750, -0.362371, -1.117139, 0.733495, -0.825549, 0.699071, 0.262661, 0.557515, -0.340045, -0.271981, -0.245013, -0.378185, 0.455393, 1.183034, 0.757507, -0.236184, -0.683246, -0.636849, 0.020856, 1.240710, 0.248111, -0.684862, 0.221066, 1.521175, 0.544850, -0.596628, -1.598467, 0.875317, 1.252968, 0.861524, 0.462880, -0.044788, -0.473580, 0.748585, 0.657940, -1.803560, -0.453853, 0.906142, 1.871403, 0.001191, 0.332404, 1.610611, -0.259326, -1.566393, -0.853359, 2.262617, -0.480641, 0.716550, 0.126798, 1.165830, -0.076613, -2.341905, 0.671848, 0.108832, -0.016483, -0.613855, 0.102640, -0.847983, -0.008419, -0.666179, 0.085670, 0.512744, 1.182312, -0.373375, -0.121694, -1.064701, -0.171300, 0.009237, -0.442841, 0.219998, -0.033954, 0.345724, -0.578005, -0.512361, 1.049148, -0.909180, 2.146466, -1.547479, 0.508790, -1.448311, 0.957618, 0.170861, -0.497308, -0.406293, -1.400490, 0.742989, 0.522649, 1.331268, 0.270015, -0.844411, -1.163259, 0.991921, 1.429273, -0.734774, -1.062894, 0.750652, -0.873146, -0.340084, -0.121451, 0.688241, 1.159015, -0.255511, 0.604745, -1.202697, -0.677825, 1.992253, -1.045228, 0.532146, -1.159546, -0.924687, 1.259292, -0.273964, -0.948197, 0.641389, -1.272496, -0.463940, -0.002209, -0.058116, 1.046463, -0.291613, -1.898186, -0.650218, -1.426814, -0.125597, -0.182237, -0.010218, -0.160333, 0.866401, -0.827633, -0.397214, -1.539608, 1.606753, -1.648968, 0.064658, -1.670380, -0.818662, -0.802417, -0.007865, -1.395617, 1.410061, 0.065654, -0.389685, -0.394439, 1.194661, -1.361651, 2.210598, 0.876620, 1.191854, 0.431486, 0.190191, -0.659261, 0.870055, -0.951275, 0.901923, -0.675700, -0.043060, -0.800696, -0.437791, 1.352623, -1.093744, -0.318814, -0.544211, 0.774899, 0.767785, -0.403334, -0.060868, -1.618558, 0.093884, 1.317460, -0.051572, 0.335705, 1.947734, 0.095813, -0.504450, 0.322079, 1.038718, 0.642387, 0.597046, -0.312992, 0.580084, 1.042214, -1.409265, 0.664566, -1.119946, -0.834135, 0.352572, -0.916297, -0.079989, -0.363696, 0.366679, -1.521041, 0.285981, 0.403917, 1.516945, 1.553444, 0.018757, -0.829727, 0.221342, -0.322714, 0.610327, -0.340918, -0.338989, -1.050245, 1.755176, 1.039579, 2.109206, 2.012368, -0.466858, -0.888285, 2.066537, 1.778743, 0.637035, 0.119061, 0.612273, 0.257950, -0.530613, -0.403464, 0.646749, -0.025139, 0.199194, -0.344601, 0.355487, -2.023522, 0.377586, 0.302126, -0.450572, -0.405818, -1.151762, -1.440746, -0.663230, 0.106122, 0.155294, -0.863698, 1.015369, 0.837256, 0.830364, -0.812796, -0.356073, -0.241617, 0.148976, -0.040264, 1.562158, -1.232786, -1.710810, -0.574893, -0.275699, -0.160778, 0.547746, -0.423288, -0.102024, -0.989349, 0.504044, -0.379042, 0.709743, -1.407546, -1.218258, 0.266243, 0.057741, -0.218605, 0.081067, -0.322416, -0.344185, -2.073922, -0.351984, -1.641033, -1.584123, 0.029263, 1.124833, 1.777017, 0.229199, -0.848880, 1.048581, 0.882925, 0.875108, 0.355294, -0.908931, -0.591330, -0.162301, 0.579405, 0.428711, -0.264838, -0.179268, -0.798161, 1.090056, 1.308645, 2.271164, 0.951394, -0.566985, 0.003633, -1.534758, -0.513952, -0.526102, -0.748872, -1.113273, -0.076867, -1.795030, 1.480317, 0.597119, 0.481580, -0.769170, 0.069823, 1.365360, -0.314300, -0.564640, -0.162384, 0.143921, -0.440087, -1.629171, -0.338432, -1.095155, -1.335774, 0.315612, 2.658962, -3.545459, 0.366555, 0.458854, -0.585870, -0.163190, 1.094791, 1.027735, -0.851878, -0.584315, -0.272664, -0.468000, 1.679178, 0.065369, 1.178473, 0.114016, -0.917252, 0.614730, 1.247345, -0.852123, 1.724295, 0.423845, 0.228764, 0.309849, -1.689854, 1.387500, -0.346404, 0.342243, 0.516343, -0.562844, -1.173812, -1.635971, 0.987711, 1.778350, -1.589562, -0.149500, 0.746067, 1.285770, 0.265498, 0.332839, -1.344064, 0.405747, 0.876179, 0.643592, 0.679825, -1.996853, 0.840229, -0.308427, -1.354843, 0.994137, -0.167879, 1.821004, -0.200148, -0.468580, -3.071407, 1.842265, -0.014271, 1.796380, 1.966879, -0.754317, 0.279862, 1.390972, -0.677753, 2.123153, 0.091538, 1.185210, -0.428905, 0.180440, 0.193139, -0.250162, 0.068827, 0.439453, -0.375087, 0.815952, -1.461931, -1.484343, 0.155991, -0.343934, -0.674934, -0.757111, -0.890701, 0.127912, -0.881186, 1.854031, 1.150320, 0.185665, 0.343833, 0.000591, -1.842694, -1.330324, -0.747392, 1.833260, 1.602708, -1.778736, 2.294672, -0.920821, 0.427335, 0.054717, -1.703291, -0.594606, -1.190024, 0.317248, -2.270661, 0.043405, 0.012945, 1.078138, 1.351644, -0.469334, -1.056596, -0.917601, -0.792745, -1.065556, 0.598509, -0.717723, -0.641035, -1.417798, 0.204366, 0.736533, -0.632759, 1.024566, 0.433833, -0.871351, 0.173831, 0.546875, -0.559636, -1.199808, 0.541229, -0.404993, 1.070378, -1.871046, -0.237491, -0.922447, 1.178701, 0.562200, 0.072855, -0.022191, -0.445932, 0.729217, 1.187591, -0.103484, -1.848249, 0.154510, 1.689602, 2.042302, 1.754312, -0.558963, -0.998207, 0.705210, -1.184328, 1.749835, -0.709990, 1.140654, -0.180331, 0.627150, -0.371165, -0.665236, 1.296182, -1.229416, -0.169815, 0.848362, -0.216884, 1.686927, 0.533186, -0.235374, 0.728526, -0.703474, -0.968710, -1.259308, -1.604750, 1.034491, 1.644409, 0.447905, -0.848401, 0.051421, -0.166443, -1.747666, 2.819800, 1.718565, -0.861314, -1.148654, -1.167886, 1.067937, 0.128287, -0.088797, 0.756557, -0.699210, -0.897109, 0.536279, -0.301925, -0.367722, 1.285569, -0.377353, -0.721170, -0.750814, 1.483239, -0.930610, -0.570279, -0.145981, -1.246912, 0.418122, 0.059250, -1.554485, -0.266390, 1.091305, 0.446368, -1.524833, -0.943701, -1.070007, 0.494341, -0.974884, -0.598197, 0.280411, 1.012184, 1.705875, -0.459727, 1.430849, 0.262635, 0.383192, 0.101176, -0.457649, -0.455794, 0.666279, -0.855365, -0.587374, 0.804247, -1.136523, 0.031035, 0.299125, -0.293908, -1.700541, -0.767805, 0.310221, 0.573647, 0.060023, 1.220455, -0.486062, 0.806113, -2.107617, 0.726239, 0.083309, 1.725120, 0.844222, -0.056153, 1.323175, -2.387690, -1.390260, 0.531682, -0.266384, 0.138585, 0.918953, -0.017883, 0.681578, -0.736954, -0.686526, -0.926517, -1.220135, 0.039758, 0.775645, -0.644901, 0.833274, 1.274415, -1.721664, -0.888778, -0.231867, 0.235912, -0.777624, 0.732187, -1.136244, 1.161911, -0.122186, 1.219785, 0.002935, 0.262351, -0.947834, -0.443407, 0.448637, -0.182164, -0.624199, 1.178681, -0.301519, -0.927613, 0.358561, 0.723395, 1.284822, 0.020915, -0.921297, 1.415148, -0.028887, 1.260009, -0.616478, -0.850232, -0.606855, 0.319328, -0.777257, 0.763812, -0.773171, -0.074065, 1.024682, -0.021542, 0.924040, 0.147887, -2.540340, 0.787905, -2.202209, 2.183229, 0.078587, 0.676481, 1.319769, -1.229369, 1.169221, 0.019099, 0.467532, 0.403137, -1.267605, 0.220141, 0.015981, -0.474303, 0.385978, 0.514755, -1.218006, 0.085768, 0.764566, 0.157970, 0.928002, -0.649639, 0.777782, 1.382949, -0.020832, 1.595039, -3.048661, 0.944558, -0.514045, 1.025427, 1.469392, -0.109880, -1.603322, 0.156127, 0.336927, 2.740097, 0.789550, -0.202094, 2.100307, -0.176833, -0.348746, -0.780790, -0.890921, -0.099375, -0.395321, 0.433843, 0.598821, -0.830188, 0.946844, -0.577158, 0.877350, -0.419625, 0.407801, -0.383112, -0.738779, -1.457638, -0.874808, -0.083943, -0.386337, -0.615102, -0.110938, 2.399594, 0.138209, 0.805105, 1.154359, 0.646286, 1.418561, 1.281643, -0.001071, -1.380921, 2.108154, 0.416818, 0.040940, 0.231086, 0.752446, 0.874355, -1.580034, 0.761316, 0.928182, -0.698029, -1.780215, 2.482449, 0.833725, 0.777575, 0.342206, 0.069072, -0.993652, -0.401144, 0.152109, -0.571896, 0.217344, -2.014789, -1.370766, 0.271145, -0.958365, 0.304366, 1.863107, -0.705185, 1.667054, -0.869407, 0.360849, 0.798730, 1.170564, 0.873055, -0.885686, -0.104314, -0.152820, -1.332623, -0.674574, 0.009500, -1.467141, 0.426071, -0.766816, 1.775136, 0.910604, -0.261173, -0.525031, -1.178618, -0.757797, -0.018717, -0.431502, -0.283731, 0.610062, -0.865533, 0.356493, 1.860568, -1.418370, 1.200678, -0.682103, -1.123933, -0.912822, 0.266417, 0.761528, -0.299052, 0.390178, 0.374262, -0.690621, 0.664783, -0.585657, 0.080661, -0.481833, 0.413695, -0.491090, 2.034048, -2.579438, 1.133765, 1.114850, -0.349869, -0.783117, 0.287694, -0.214938, -0.403892, 0.183720, 0.508172, -0.300976, 0.263131, -1.238047, -1.103012, 1.237580, 0.475203, 0.051850, 1.736512, 0.950980, -0.957073, 0.462025, 1.186640, -0.442101, 0.075753, -0.847180, 1.593524, 1.952048, 0.303155, -0.637542, 1.611378, -1.155672, 0.805596, 0.236460, 1.268958, 0.826291, -0.521109, -0.339635, -0.841301, 1.659363, 0.465622, 0.511912, 0.384712}, - { 1.488284, 1.330846, -0.371249, -0.706700, -0.128159, 0.316970, -0.222012, 1.147926, 1.074494, -0.637062, 0.645820, 0.424690, 0.354252, 2.004198, 0.211832, -1.055273, 0.540119, -0.940722, 0.629497, 0.425959, -0.821599, -0.958282, 1.062192, -0.716362, 1.112680, -0.666876, 0.418390, -0.185154, 0.596687, 0.479556, -0.831553, -0.227498, 1.544578, 1.156180, 0.989153, -0.042450, -1.442718, -0.587043, 1.858011, -0.178001, -0.960765, 0.052231, -1.499229, 0.351036, -2.049671, 0.647956, 1.755111, 1.333532, 0.819052, 0.249685, 0.106214, 0.545834, -0.180527, 1.371128, 0.973645, -0.220022, -0.330115, 0.453680, -0.305798, 0.008971, -0.969774, 1.082547, -1.058692, -0.475529, -0.055859, 0.894912, -0.235552, 0.659295, -0.283773, 0.148231, -0.590003, 0.998369, 2.745591, 0.092729, -0.763964, 1.401282, 0.380047, -2.029149, 0.699010, -0.610621, -0.151801, -2.760549, -0.478110, 1.721781, 0.153553, 1.151082, 0.731791, 0.377939, 0.415729, 0.709719, -0.155469, 1.220647, 0.660904, -0.862420, 1.319342, 0.504005, -0.329366, -1.166463, -1.182404, -1.994112, 1.179447, -1.509758, -2.109114, -0.367236, 1.618536, -1.059429, -2.462149, 0.118205, 1.528405, -0.578237, -0.425628, 0.907529, 0.531125, 2.254234, 2.074360, -0.633480, 1.329949, 1.125934, 1.944340, 0.341322, 0.215088, -0.755004, -0.723544, 0.288280, -1.372267, 1.247373, 1.176502, -0.911718, 0.379741, 0.893702, 1.406911, -0.179979, -1.021812, 0.220684, 0.636548, 0.521364, 0.768487, -0.491810, 0.014957, 0.005432, -0.014787, 2.777054, -0.022956, 1.207085, -0.462742, 1.101856, -0.864417, -0.640600, -1.250903, -0.120797, -1.380943, 0.916870, 0.468529, 0.363097, 0.179666, -0.112367, -2.044940, -1.696922, -0.419227, -0.605321, 0.130448, -1.158217, 0.888279, 0.152084, -0.595941, -0.244556, -1.835541, 0.053526, 0.850667, 0.757873, 0.816197, 0.986167, 0.211762, -0.263500, -0.554244, 0.790700, 2.296112, 0.559414, 1.450232, -0.529178, 1.441271, -0.744235, -0.615776, -0.491298, 0.222937, -0.858225, 1.559832, 0.507470, -1.184948, -0.989638, 1.792391, -0.683495, 1.609814, 0.022853, -0.665807, -0.065448, -0.708545, 0.096816, -1.596361, -0.302028, -1.020043, -0.013623, -0.597671, -0.670315, 1.102742, 0.677511, 0.155962, -0.033316, -0.280646, 0.497923, -1.033335, 0.373051, 0.560646, -0.618726, -0.285628, 0.463295, 0.652641, -0.223976, 0.444801, -0.732769, 0.345047, -0.301863, 1.172142, -1.427613, 1.106507, 2.281866, 0.049895, 0.686708, -2.283705, -2.065030, -2.146643, -0.488307, -0.960979, 0.277318, 0.358627, 1.233822, -0.138668, 0.161311, 0.244642, -2.000421, -1.477591, -0.524930, -0.178885, -0.350734, 1.376032, -1.524976, -0.495371, 2.303456, -0.155995, 0.069263, 2.487510, 2.691426, 0.183146, 0.051350, 1.506999, -0.327698, 1.740944, -0.903227, -1.490389, -0.838341, 0.670030, 0.799334, -1.150403, 0.577928, -0.210943, -0.078011, 1.724208, 1.110941, -0.428077, 1.687086, -0.219585, 0.595265, 0.264062, -0.279742, -1.581671, -0.606109, -1.112272, 0.335287, 0.743072, -1.347311, -0.658623, -0.673496, -1.277729, -0.653073, 0.547916, -0.621104, -0.930651, 2.807364, -0.070892, -0.581133, 0.529676, 0.611070, -0.197015, -0.953424, 1.066589, -0.065104, -0.125835, -1.346007, 1.649068, 0.540757, 0.159164, -0.579491, -1.737465, 1.283069, 0.597093, 0.260604, -0.431374, 0.602131, -0.854430, -0.617854, -0.942026, -0.186626, 0.073261, -0.998074, 0.304726, 0.718916, -0.033522, 2.173613, -1.447706, 0.866108, -0.486824, -1.275792, 0.421254, -0.739139, 0.637680, -1.348572, -0.146789, -0.521491, -0.259717, -0.368042, -1.691728, 0.304291, 0.185070, 0.825061, -0.141284, -0.402403, -0.712123, 0.753967, -0.462155, -0.453783, -1.315966, -0.193813, 0.069560, -0.578219, -0.709787, -0.301844, 0.488566, -0.768008, -0.552401, -1.061857, 0.094105, -0.828002, -1.140688, 0.326263, -0.222679, 0.554585, 0.229233, -1.356815, 0.592072, -0.047683, 1.034730, -1.066653, -0.696417, -0.248349, -0.282827, -0.615503, -0.099163, 0.932915, -0.116394, 2.404182, -1.306188, -1.291007, -2.419976, -1.102906, 1.350070, 1.665870, 0.944724, -1.271717, -1.256515, 1.633516, -0.187134, 0.426036, -1.911604, -0.115048, 0.369735, 0.065712, -0.197229, -0.043363, 0.015436, 0.161740, -0.503515, 1.104762, 0.151166, -0.057403, -0.328602, -0.266407, 0.390169, -1.375549, -0.072628, -1.422879, -0.026788, 1.352814, -0.791253, -0.254403, 0.081444, -0.356329, -0.723353, 2.302583, 0.241803, 0.296036, 1.984392, 0.796008, 0.618749, 1.420725, 0.032126, -0.743630, -0.246097, 0.536454, 0.152000, -1.087217, 2.426174, 0.015906, 0.275415, 2.234602, -0.376081, -0.686624, -0.866532, 1.773266, 2.695015, -0.232329, -0.301617, -0.211112, -1.271264, 0.238822, -0.493766, -2.439716, 1.040945, -0.188803, 0.765661, -1.683193, -0.464403, 0.715227, 0.616358, 0.134745, -1.047286, -0.936940, -1.233237, 1.875633, -1.380045, -0.280724, 1.117247, -0.319603, 1.157329, -0.435374, 0.652553, -2.026715, -0.792754, 1.281221, 0.145530, 0.056371, 0.985981, 0.111999, 1.095907, 0.458310, 0.500194, 0.106973, 1.977520, 1.103638, -0.571408, -0.175926, -0.236528, -0.537450, 1.429650, -1.968732, 0.810628, -0.306914, 0.163512, -0.379949, -0.051880, 1.420851, -0.850017, -0.326942, 0.047257, 1.310404, -0.608043, -0.081874, 2.195554, 0.908760, -1.108635, 0.813125, -1.255296, -1.443611, 0.624197, 0.478212, -0.797432, 2.253088, -0.759320, 1.115183, -0.029667, -0.777897, 0.791987, -0.531776, -0.228371, 0.186422, 1.055128, -0.407792, -1.172000, -0.585378, -0.098115, -1.067093, 0.530884, 0.135526, 2.428370, 1.499491, 1.278821, -0.270112, 0.899253, 1.185719, -1.276506, -0.868477, -0.847041, -0.864010, 0.919765, 0.915769, 0.553889, -0.553419, -0.026144, -1.073272, -3.356031, -0.161676, 1.541598, 0.112893, -0.255835, -0.364423, -0.717646, 0.458640, -1.558169, -1.007135, 1.120559, 0.547225, -0.814403, 1.819648, -0.653812, -1.207867, 0.505722, 1.640130, 0.463470, 0.101603, 1.078754, -0.575381, -0.191720, -0.882805, 0.547714, 0.714566, 0.447557, -1.193154, -0.512650, 0.713168, -1.260003, -1.499872, 0.085738, -0.085289, -0.686612, -2.104815, -0.673908, 0.668608, -1.421870, 1.266327, 0.462386, 0.101756, 0.602933, -0.709497, 2.599922, 0.259568, -0.892499, 0.134986, -1.129762, -1.250512, -0.614213, -0.708689, 0.596438, 0.774918, 1.041890, 0.545257, -1.597241, 0.922957, -0.791834, 1.010132, -1.028797, -2.165823, -0.780366, -0.424773, -0.988356, 0.102508, -0.089050, 1.080387, -1.048331, 1.371180, -0.404081, 1.847094, 1.459541, -0.158845, -0.832628, 0.545844, 0.139352, 1.477193, -0.539361, 0.455904, -0.241009, 1.411772, -1.478743, 0.134595, -0.298439, 2.133660, -1.245356, 0.778192, 1.548274, -0.160574, 1.636036, -1.721051, -0.529509, -0.965503, 1.400001, 0.764491, 0.581056, 0.642891, 1.139768, -0.364778, -0.854533, 0.758367, 1.223488, 0.150088, 0.835369, 1.495998, 0.999082, 0.241026, -1.091635, -0.670136, 0.437402, -0.979698, -1.066279, 0.159888, 0.022121, -0.811617, 0.351727, -0.686538, 1.669690, 0.766040, 1.542966, 0.758283, -0.377314, 0.017700, 0.314333, -0.677052, 0.927898, -3.142581, -0.825384, -0.611094, -1.687978, -0.068944, -0.305770, -0.230347, -1.308581, -0.550707, -0.309003, 0.049275, 0.865440, -0.398886, -0.394157, 0.232014, 0.623440, -1.052180, -0.577274, 0.579890, 0.474635, -0.198626, -1.058141, 0.429730, 0.730248, 1.189838, 0.420886, 0.538718, -0.219842, 1.551149, -1.145710, 2.733196, 0.496272, -0.560489, -0.666892, 1.060740, -0.031477, 0.902162, -1.023220, 1.082066, -0.229264, 2.568453, -0.971169, -0.253888, -1.264791, -0.595885, 0.110009, -0.248175, -0.050601, 1.165455, -0.804406, 0.338100, -0.174584, -1.392026, -1.276228, -0.192036, -0.643985, 0.713858, 0.040750, 1.350916, -1.697004, 0.536661, 0.926828, -1.830485, 0.403813, -0.983561, 0.996290, 0.604868, -1.261306, -0.916467, 0.896992, 0.136766, -1.049637, 0.244871, -0.155011, 1.429436, -1.207711, 0.238552, -1.366565, -0.107531, -0.551965, -0.037524, 0.468254, 1.041927, -0.409519, 0.904918, -1.365643, 1.612919, 0.796001, 0.666793, 1.900450, -0.020564, 0.499324, -0.131561, -2.954202, -1.208204, 1.424279, -0.418988, 0.449754, 0.121596, 1.311723, -0.479784, 1.438307, -0.381211, 0.979173, 0.491460, 0.682049, -2.475152, 0.255303, -0.950559, -0.503183, -0.132934, -0.556823, 2.605558, 0.197343, -1.789038, 0.634120, 0.033399, -0.758693, 0.168686, 0.628178, 0.804242, 0.573494, -0.356650, 1.053283, 0.699791, -1.106253, 1.898773, 0.675651, -0.335385, 0.107749, 0.769568, 1.026481, 0.135212, -1.660031, -1.205220, -0.512192, 1.340907, 1.036265, 0.530965, 0.360020, 1.340083, -1.315547, 1.738053, -0.837033, -0.547311, 0.541164, -0.146726, -0.925608, 0.200214, -0.466100, -0.476550, 1.026023, -0.984113, -1.113356, 0.008523, 1.304382, -1.468478, 1.928269, 0.865763, 0.773392, 2.220466, 1.946600, -0.523083, 1.065258, 0.603018, 0.692011, -0.159269, -0.311391, 1.111904, -0.730017, 1.756240, 0.002390, 0.791365, -0.476773, 0.549721, -0.577801, 1.122136, -1.082046, -0.309574, 0.441826, 0.193037, 0.747204, -2.036809, -1.237285, 1.479961, -0.617290, -0.352972, 1.160338, -0.723375, -0.105574, -1.067699, -0.945405, 0.548705, 0.595376, -1.946760, -0.317018, -0.348913, 1.065026, -0.756858, 0.807093, 1.046876, 0.696074, 1.662886, -0.473702, -0.591742, -0.236191, 0.976646, 0.429816, -1.031514, 0.524972, 0.918933, -0.458290, -0.936736, -0.827425, -1.491004, 0.869376, -0.086894, 0.185643, -0.582129, -0.767080, -0.079056, 1.784763, 1.005401, -0.008594, 0.859383, 1.217634, -0.450083, 1.052127, 0.572890, 1.032524, -1.150038, 0.187569, -0.048435, -2.569745, 1.196347, -0.938403, -0.506398, -0.177292, 0.000409, -1.179353, -0.362433, 1.669865, 0.174737, 0.676922, -0.543225, -0.870051, 1.096279, -2.339968, -0.490009, -1.951602, -1.238253, -0.137318, 1.015338, -0.520223, 0.909413, 3.127967, 0.937844, 1.377377, 1.234076, 0.835402, 0.209011, 1.641898, -0.217048, 0.399757, -0.075871, -0.305867, 0.949344, -1.648407, -1.668205, -0.494839, -0.485240, 2.044459, 0.506419, 2.242176, -0.194122, 0.293306, 0.485428, 0.072464, -0.042825, 1.169043, 0.160831, 1.362719, 0.625990, 1.199849, 0.492835, -0.783237, 0.618880, 0.973774, -0.221643, 1.327531, 0.125349, -1.420248, 0.813011, 0.904695, 0.780501, 0.391708, 1.472889, -0.073489, 0.964364, -1.995790, 0.057931, -0.274363, -0.902359, 0.301172, -0.931182, 0.171532, 0.309000, 1.311345, -0.579130, 1.441224, -1.680203, -2.368783, -1.400710, -0.025896, 0.715253, -0.672132, 0.687174, -0.357674, 0.056097, 0.056811, -1.199571, -0.152809, 1.431808, 1.030336, -0.036026, -1.724797, -0.628399, -0.222463, -1.151916, -0.384978, -0.642916, 0.132118, 1.395137, -1.119293, -1.101133, 0.706364, 0.253212, -1.222695, 0.996735, 0.784525, 1.668740, -1.218691, 0.992114, -0.115216, -0.937214, -1.412776, 1.347441, -0.037668, -1.921636, -0.305959, 1.232431, 0.002944, -0.523545, -0.454856, 1.635937, 0.730323, -1.217698, 0.826352, -0.822073, -0.674951, -0.358323, 0.233837, -1.852168, 1.088099, -0.012312, 1.330288, -0.242631, 0.522852, 1.057018, 1.630010, -0.782408, -0.872526, 0.638366, -0.530404, -0.066758, -0.925336, 1.376610, -1.461964, -0.784054, 0.087376, 1.797643, 1.571559, 0.060684, -1.409933, -0.481521, -0.883510, 1.256697, 0.283646, 0.754958, 0.304292, 1.687608, -0.301821, 1.153102, -0.873134, -0.535639, 0.169179, -1.655128, 0.280211, -0.449471, 0.456959, 0.321646, 1.154166, 0.505825, -1.371755, -0.358783, 0.245975, -1.493932, -0.178529, 0.524361, 1.506509, -0.388366, 0.780570, -2.596276, 1.722413, 1.004146, 0.946492, 1.416111, 0.338870, 1.023988, -1.408675, 1.476565, 0.279479, -1.404357, 0.306637, 0.786669, -0.897072, -0.159471, -1.132122, 0.230545, 0.087727, 0.382816, 1.102120, 0.736083, 2.330244, -0.103059, 0.186625, 0.007963, -0.428528, -0.659560, 0.738534, -0.709689, -0.545237, -1.738128, 0.410468, 0.126478, -0.019710, -1.130002, -1.951612, -2.220564, -1.076943, 1.062743, -0.067791, 0.531550, 0.916087, 0.227392, 0.906629, -0.742700, -1.377671, -1.022687, -0.072012, 0.751025, -0.338539, -0.119812, -0.437046, 0.148316, -0.137764, -0.415380, -1.126817, 0.659250, -0.837731, -0.045528, 0.821888, 1.401157, -0.953551, -1.213206, -0.585941, -0.527802, -1.804248, -1.716529, -1.782075, 0.933644, 0.004375, 1.022649, -0.220852, 0.937938, 0.617581, 0.918651, -2.484693, 0.924044, 1.042355, 0.963076, -0.548202, -1.268399, -0.899765, 0.221500, 0.280601, 0.286190, -0.688907, -0.400227, 0.644011, 0.780068, 0.036821, -0.239860, -0.254828, -0.243585, -0.459240, -0.125286, -1.511965, 0.913040, -0.305719, -0.119078, -1.224240, -0.273243, 0.172479, -1.175873, 0.928754, 0.262145, -0.265970, -0.956604, -0.630759, -0.738529, -1.028837, -1.724607, 1.196571, 0.103293, -0.612860, -0.781090, -2.612334, -0.788824, -2.389518, -1.660816, 0.842600, 1.156197, -0.580387, -0.316903, -0.735455, 1.184250, 1.024445, -1.837848, -0.493217, 0.128950, 0.708576, 0.972220, 1.083859, 0.196282, -1.049510, 0.074637, 0.583425, 0.833917, -1.146355, -0.201176, -0.346809, -1.844215, -0.366876, 1.406471, -1.441287, 0.333678, 0.003082, 0.026881, 1.983215, 1.142308, 0.665265, -1.108432, 0.481229, -0.221803, -1.833930, -1.582469, -1.138715, -0.441722, -0.148985, 0.148732, 1.642432, -0.300734, 0.282558, -0.747683, -0.402012, 0.931267, 0.219382, -0.644117, -0.723114, 0.296524, 0.697054, -1.056046, 0.078200, -1.636521, 0.712419, -1.018593, 0.010076, -0.697246, -0.066990, 0.796035, 0.110276, 0.652754, -0.154726, -0.162200, -0.322558, 0.340374, -2.566428, 0.295037, 0.304982, 1.214574, 0.209637, 0.486313, -0.504054, -0.677925, 0.143669, 0.689036, -0.540443, 0.268655, 0.466998, -0.482852, 0.654541, 0.381986, 0.578551, 0.594768, 0.394276, 0.312636, 1.981718, 1.517838, 0.355472, -2.131008, 0.458938, -0.572606, 1.143567, -0.058979, -0.995286, 0.465170, 0.137173, -0.654033, 0.689504, -1.992940, 0.697420, 0.756488, 1.490498, 1.350837, 0.664821, -1.585667, -1.174331, -0.263818, 1.714457, -1.010432, -0.831422, 1.467236, -0.324932, -1.428705, 1.213975, 0.378956, 0.288632, -1.508446, -0.055944, 0.518558, -0.645023, -1.360887, -0.175679, -0.504137, 0.480394, 0.290714, 1.614133, -1.286636, 1.538815, 0.799626, 0.294155, 1.419054, 1.357316, -0.356723, -0.244771, -0.395521, -0.449170, 1.044874, 0.722255, 0.182184, 0.410220, -3.000255, -1.016072, -1.383911, 0.851802, 0.279882, -0.184141, 0.262979, -0.437383, 2.845142, 0.146591, -0.439881, -1.697477, -0.361629, 1.120585, -1.339821, 0.623931, -0.615554, -0.199097, -0.266119, -0.331204, -0.900152, 1.104358, -0.902361, -0.401398, -0.587631, 1.405495, -1.087982, -0.271600, -0.799984, 1.158685, 0.645724, 1.738455, -1.021376, 0.053310, 0.661913, -0.633552, -0.045705, 0.651643, 1.954124, 1.911685, 1.154008, 2.321908, 0.030398, 1.049996, -0.698988, -1.367071, 0.953407, -0.462519, -1.975505, -1.416580, 0.201807, -0.213668, 0.223636, 2.096636, 0.357450, -0.727993, 1.268084, -0.696158, 0.710462, -1.209256, 0.131700, 0.296752, 0.797077, -0.410326, 0.846653, -0.285849, -0.588933, -1.018749, 1.218904, 1.283582, -0.193679, 2.028374, 1.978193, 1.917187, 1.050118, -0.751537, -0.863507, -1.192480, 1.009862, -0.117858, -1.115536, -0.924902, 1.819066, 0.276183, 1.929383, -0.268754, 0.294618, 1.190741, 1.281027, 2.162514, 0.024303, -0.539244, -0.310893, -1.321513, 1.032661, -0.075000, -1.592564, -0.696441, -0.456998, 0.681673, 0.136708, -0.361567, 1.450003, -0.630085, -1.392638, 0.275226, 0.001654, -1.386347, 0.224028, -0.157376, -0.031336, -0.180088, 0.693046, 1.490725, -0.585927, -0.951144, 0.773254, -1.421763, -1.884691, 0.093277, -0.447519, -0.365441, -1.077223, 1.071944, -1.661200, -0.542165, 0.076132, -0.616706, -1.147359, 1.405593, 0.025611, 0.187353, -0.306242, 0.205320, 2.144422, 0.523295, 0.770460, 0.150019, 1.873023, 0.822097, 0.990920, -1.418163, -2.009984, 0.145998, 1.592334, -0.036410, -0.261122, 1.221181, -0.158753, 0.134746, 0.888824, 0.527906, 1.965857, 0.111956, 0.311089, 1.566770, -2.111988, -2.078265, -0.089090, 0.974328, -0.979057, 0.247900, 0.193321, -0.149852, -0.539429, -0.488432, 2.595137, 0.735603, 0.550240, 0.495577, 0.782581, 0.882110, -0.059411, -0.178529, 0.349388, 0.877343, -1.257591, -0.846639, -0.615598, -0.523491, -0.407948, 0.279256, 2.512961, -0.388211, 1.141331, 0.034108, 0.098152, 0.513007, -0.841768, 1.322772, 0.743284, 0.319963, 1.076746, 0.576681, -1.344721, 0.071352, -1.349805, -0.396475, -1.086461, -0.394789, -0.836839, -0.121572, 0.472023, -0.978058, -0.760028, -0.858627, 0.573856, 0.470543, 1.852199, -0.106368, -1.570268, 0.857212, 1.552631, -0.186692, 0.568721, 0.687121, -0.281725, -0.622135, -0.764662, -0.673018, 0.420033, -0.212581, -0.473103, 0.717630, 0.707134, -0.451706, 1.003608, -2.253626, 0.005614, 0.058079, -0.293738, -0.493356, -0.195697, 0.099743, -0.419783, 0.050703, 0.984371, 1.025241, -0.266747, 0.876469, 1.203320, -0.513361, 0.803487, -0.232633, -0.105008, -1.891854, -0.046849, -0.522255, -1.386277, -0.316371, -0.830241, -2.125927, 1.709374, 1.306397, -0.170569, -0.006688, 0.064006, 1.116223, -0.978921, 0.070519, -0.933255, -1.048840, -0.775217, -0.269373, 1.076584, -2.839118, 0.967448, -1.164397, -0.645358, -1.193206, 1.623817, -1.092674, -0.147733, -0.014692, 0.694421, -1.149737, -0.535466, -0.412479, 0.441411, 2.685483, 0.445619, -0.250452, 0.948475, -1.584082, -0.816577, -1.569408, 0.685850, -0.692384, -1.564641, -1.476774, -0.016792, 1.584186, 0.235145, 0.098632, 1.735743, -1.580701, 1.738353, -0.648206, -1.353362, -0.290095, 0.552723, 0.269646, 0.842972, -0.462167, 0.496398, 0.734800, 0.328454, 0.783290, 1.256495, 0.148680, -1.308815, -0.028547, -0.450856, 1.224862, 0.325284, 1.991896, -0.228183, -0.677130, -0.687055, 0.019820, 0.657589, 2.874516, -1.224136, 0.240652, -0.563945, 1.604034, 0.082963, -0.586073, -1.640440, -2.542560, 1.301595, -0.698694, 0.729568, 0.082747, 0.251437, -1.202776, 1.765493, -0.131354, 1.462832, -0.597498, 0.430165, -1.414980, -0.292800, 0.375897, 0.896199, 0.912182, -0.258908, 0.143616, 1.096125, -2.102231, -0.729292, -0.765799, 2.075603, 0.628189, -1.451436, 0.067840, -0.112114, 0.681505, 0.349802, -0.921099, -0.318616, 0.786550, 0.315460, -1.797591, -0.843515, -0.642482, 0.976631, 0.450332, 1.398967, 0.618452, 0.250414, 0.719940, -0.244915, -0.406924, 0.779709, 0.914129, 1.782713, -0.241857, 1.244293, 0.161255, 1.813240, -0.437375, 0.396075, -0.396237, 0.019526, 0.685613, 0.720663, 0.681514, -0.522867, 1.339329, -0.973044, -0.053615, 0.601661, 0.649169, 1.639585, -0.945094, 0.925711, 2.531612, 0.169050, -0.456826, 3.090086, 0.869017, 0.140844, -2.067863, 1.651612, 1.254644, -0.168833, 0.436296, -1.093356, -0.054427, 1.552346, 0.226470, -1.466866, 0.078009, -0.143113, -1.294501, 0.021757, 1.377752, 1.569163, 1.924825, -0.578889, 2.057211, -0.818758, 0.658124, 0.066462, 1.243857, 1.284173, 0.030025, -0.512484, -0.146436, -1.505791, -1.033772, 3.054168, 0.520075, 1.248599, 1.188072, 0.726008, -0.272591, 0.169020, 0.161560, -1.108373, -1.100665, -0.012494, 0.951902, 0.867229, -0.750969, 0.588076, 0.384465, -0.028365, -1.023031, 0.871488, 0.028327, -0.028589, -0.050674, 0.367524, -0.098203, -0.885738, -1.181657, -0.223716, 0.413920, 0.673128, 0.561127, 0.815016, 0.112883, 1.175732, 0.376292, 1.126188, -0.249249, -0.200340, -0.374868, -0.197085, -1.119844, -0.813047, -0.154468, 0.212282, 0.194484, -1.075461, -1.610859, -0.970718, -2.410832, 1.173997, -1.071299, 1.446524, -0.924301, -0.233726, 1.741949, -0.575764, -1.756002, -1.324981, 0.389942, 0.941365, -0.715684, -0.181362, 0.521817, -0.043801, -0.970294, 0.376156, 0.236400, -0.119913, -0.843144, -1.081599, 1.436162, 0.340705, 0.848092, -0.325986, 0.913431, 0.400545, 1.090820, 0.112997, 1.353017, -0.497164, -0.385706, 0.901321, 1.132113, 1.085912, 1.217223, -0.370479, -0.647054, -0.449021, -0.275032, -1.333082, -1.039811, -0.643885, -1.764832, -0.336022, 0.349230, 0.817908, 0.158657, 0.033433, -1.894126, -0.972246, 1.381618, 0.211040, 1.057400, 0.786518, -0.517952, -0.378894, -0.516177, 0.665983, -1.047732, 0.143553, 0.949213, -0.585571, 0.093786, -0.696313, 0.000263, 0.301229, 0.888330, 0.656826, 0.675407, 0.533683, 0.789365, -1.331845, 1.190212, 2.466915, 0.502653, -0.043609, 0.318833, -0.411267, -1.119379, -1.296076, 0.318336, -0.105445, 0.943960, -0.438659, 2.029359, 1.194033, 2.397624, -0.272764, -0.593874, 0.085238, -0.397318, 0.879002, -0.235356, 0.199130, -1.762171, -1.267374, -2.115594, 0.309859, 1.680724, -0.311985, 0.115423, 1.598252, -0.621192, -0.429569, 0.480112, -1.510997, -0.730976, -0.587454, 0.977642, 1.199566, 0.022748, -0.610670, -1.199552, 0.984375, 0.744561, -0.146462, 2.142167, 0.186884, 2.555793, 0.285310, 1.336335, -0.602524, 0.513103, 1.145807, 1.048998, -2.346402, -0.950671, -1.244990, -0.032651, 0.967067, -0.754866, 0.027856, 0.003557, 0.367778, -2.143100, -0.710300, 0.551008, 0.289913, 0.245276, -0.440656, -1.922634, -0.853893, -0.874107, -0.118240, -0.757246, 0.761083, -0.735576, 0.670994, -0.809934, -1.196244, -1.321556, 1.669255, -1.681196, -0.839216, 0.193274, -1.142784, 0.140686, -1.413664, 0.804883, -0.772448, -0.821475, -0.363677, -2.017625, 0.157790, -0.316774, 0.218654, 0.992248, 0.606362, -0.720250, -0.874989, -0.141459, -0.556316, -0.186641, -0.677301, 0.661459, 0.847446, 0.145008, -0.695669, 0.597427, 0.386860, -0.952867, 0.897209, -1.176122, -0.790860, -1.097884, 1.682380, 1.370546, 0.029454, 1.532160, -1.235394, -0.092455, 0.720440, 0.793758, -1.533913, 0.120092, -0.029052, -0.715149, 0.002552, -0.914272, 0.410341, -0.337411, -1.363726, -0.005143, 0.395627, 1.409340, 1.251054, 1.992716, -1.944287, -1.073071, 0.092784, 0.804512, 0.264699, -0.008387, 2.199105, 0.111418, 0.904875, -1.035348, 0.465309, 1.119095, 1.096066, 1.005608, 0.101267, 0.041222, -1.183136, -0.829782, 0.448185, -2.592413, -1.989517, -0.546123, -0.547309, -0.774205, 1.112622, 0.498929, 0.896646, 0.260779, 0.272912, 0.856440, 2.406652, 0.118697, 1.218411, -0.961615, -0.038193, -1.373661, 0.160141, -0.034777, 0.618437, -0.176387, 0.674802, 1.197345, 0.549512, -0.389763, 3.242957, 0.240743, -0.403716, -1.079500, 0.176163, 0.532608, 0.886413, 0.717452, 1.109493, 0.457495, 0.011626, 0.258112, -0.129299, -0.707949, -0.266624, -1.152578, 1.140921, -1.588591, 1.619598, 0.938488, 0.684948, 0.201134, -1.696252, -0.279966, 1.279078, -0.841567, 0.288412, -0.332668, -0.278764, -0.082852, 0.021088, -0.194490, 0.507523, 1.009448, 0.283424, 0.226359, 0.380778, -1.469228, -0.190177, 0.572555, -0.143093, -1.114942, 0.736657, 0.326716, -2.571711, -0.756262, 0.149976, 0.964245, -0.890577, 0.591208, -1.549383, -0.498702, -0.935282, 1.628013, -1.175710, -1.058410, 0.039155, -0.683987, -0.511258, 1.120494, 0.298570, -0.266713, 1.726309, -0.048958, 0.541969, 0.943814, 0.180268, -0.233538, 0.347573, -0.836910, -0.026836, -0.610206, 0.036771, 0.157989, 0.421839, 0.308115, 0.418927, -0.888428, -0.496527, -0.037603, 0.352714, -0.474819, -0.228321, -0.552397, -0.806203, 0.631726, 1.306783, -0.383702, -0.480690, 0.639913, 0.858603, 1.047957, -1.364327, -2.217143, 0.958797, -1.368611, -0.021844, -0.569761, 0.037923, 0.130362, 1.001156, -1.234113, 0.493915, -2.019410, 1.193282, -0.886468, -0.392464, -0.070643, 0.153324, -0.301343, 1.520576, 0.858591, -0.649230, -1.310754, 2.537157, -0.089176, -0.944329, 0.182854, 0.281304, -0.844244, -0.716282, 0.795671, -1.478288, 0.324106, -0.672504, 0.051027, 0.300746, -0.460639, -1.660100, 1.389212, -2.210620, -1.400407, -0.751135, -0.940383, -1.521511, 1.844960, 0.345781, -0.967317, 0.505203, 0.618788, -0.002003, 0.138010, -0.255116, 0.798767, 1.647137, -0.784609, 0.283863, 0.056476, -0.722476, -1.238047, -0.841301, -0.811834, -1.814050, -0.534769, -0.538293, -0.191700, -0.594344, -0.733604, 0.401247, 0.669845, -1.773934, 1.296115, 1.439526, -0.125644, 0.404896, 0.689892, -1.152393, -1.053661, 1.689313, -0.432506, -0.753156, 1.757841, -0.552784, 1.958883, -0.418141, -0.341218, -0.089376, 1.126180, 0.960688, -1.626286, 0.666151, 0.803854, 0.658230, 0.648884, 0.506386, 0.736218, 1.242383, 1.970587, -0.993150, 0.438809, -1.717881, 0.656458, 1.504722, 0.673889, -0.200130, 1.872706, 0.204884, 1.363484, -0.669302, 1.344402, 0.674449, 0.475534, 0.005058, -0.575226, -0.568939, 0.202703, -1.052909, 1.141856, -0.473977, 0.216896, -0.161027, 0.605053, 1.569724, -0.103360, -0.074409, 0.252179, 0.833811, 0.815950, 0.017972, 0.643572, -0.292335, 1.200602, -0.084307, -0.452480, -0.251017, -1.712140, -0.715587, -0.834005, -1.027298, 0.033543, 0.914575, 1.646344, -0.087466, -1.964764, 0.818996, 1.939010, 0.424073, -1.153130, 0.360071, -0.587884, -0.213562, 1.389223, 0.246476, 0.432637, -1.185148, 0.995115, -0.989822, -0.728197, -0.630096, 0.385907, 0.954208, 1.333976, -1.562676, -0.778937, -1.735264, -1.381968, 0.996094, -0.738619, 0.115355, 0.026151, -0.293289, -0.354300, 0.168105, 0.637134, -0.069387, 1.549347, 0.040454, 0.862688, -1.240979, 0.349673, 2.779640, 0.908441, 0.101166, 1.049196, -0.785965, -0.687487, 0.890825, -0.364503, -0.487526, 0.238375, -1.614056, 0.233577, 0.267264, -0.110156, -0.494307, 0.572376, 0.582555, -0.905543, -1.755509, 0.067406, 0.686067, 0.289316, -1.491770, -0.803695, 0.265339, -0.507130, -1.429903, 0.279912, -0.764638, 1.661420, 1.162663, -0.280001, -1.308852, -0.846166, -0.475877, -0.933327, 0.328839, -0.016647, -1.395481, -0.105477, 0.499046, 0.147631, 0.733547, 1.146172, 1.027361, -0.340597, 0.708083, 0.346893, 1.528922, 1.390378, -1.819575, -0.230632, -0.314697, 1.083750, 1.946883, -1.210362, 0.366487, 0.665678, -0.352627, 1.558465, -0.229474, 0.503225, 0.019167, 3.242755, 0.574955, -0.355573, -0.053191, -2.154994, 0.206575, 0.861852, -1.419634, -0.552694, 0.517845, -0.135301, 1.437637, 0.913657, 0.280486, -0.676520, 0.400523, 1.494019, 0.984620, 1.644297, 0.268362, -0.599839, -0.241930, 0.203737, 0.491043, -0.266231, -0.275390, -0.671783, 0.767136, 1.268408, -0.251382, 0.980491, 0.078228, 0.366554, 1.175425, 1.568815, 0.310388, 0.314181, 1.130540, 0.487624, -1.144888, -3.380844, -1.043620, -0.820011, 0.153013, 0.454051, -1.182901, -0.178062, -1.181108, -0.635059, 0.946700, -1.446254, -0.031076, -0.300637, -0.181046, 1.180774, 0.154682, -1.572271, 1.178777, -0.796525, -1.189114, -0.007001, -0.040280, -0.240104, -0.245266, -1.071460, 0.308473, -2.266394, 0.043437, 1.375577, 0.798433, 0.341380, -0.120841, -0.496608, -0.297151, 0.041067, -0.987962, 0.022550, 0.489986, 0.383518, 0.333539, -0.001987, 0.398696, 0.360187, 0.154755, 2.650976, 1.479147, -1.020100, 0.854494, -0.440166, -0.194081, -1.165633, 0.369923, -0.424517, 0.214297, -0.545256, 1.368541, 0.410258, -1.021837, 1.856039, 2.441777, 1.179499, -0.653368, 0.529592, -0.552644, 0.805524, 0.340090, -0.381750, -0.144317, 1.836230, -0.181049, -1.159586, 0.045645, -0.801131, 0.606322, 1.325371, 0.888792, -0.827293, -1.304720, -0.702549, 1.249350, 0.401596, -0.157956, -0.599861, 1.234717, 0.020488, 2.028800, 1.048237, 0.134028, -0.172207, -2.937941, 1.001057, -0.359892, -0.455440, -1.223244, -2.194023, -1.342547, -0.265743, 1.160109, -0.098688, 0.453349, -0.913686, -0.271713, 0.555072, -1.297949, -1.083474, 1.236000, -0.172323, 0.674310, 0.540799, -1.787918, 0.543626, -0.288342, 0.157674, -1.797346, -0.192660, 1.014563, -0.007597, -0.077965, -2.058984, 0.175817, 0.707205, -0.990297, 2.186791, -0.756116, 0.996088, -0.852121, -0.110567, 2.546988, 0.156603, 0.487385, -1.340434, -0.565527, -0.309328, 1.232183, 0.823847, 0.324301, 0.466348, 0.620110, -0.620754, 2.191857, 0.504046, -0.744251, -0.260180, -1.575016, 1.771523, 0.205309, -0.194525, -0.096586, -0.942818, 1.050860, 0.575279, 0.229296, -0.727124, 1.207045, -0.644677, -0.792784, -0.568934, -1.634567, 0.557398, -0.583529, 0.614534, 1.441784, -0.448880, -0.004559, 0.771907, 1.202060, 0.156492, -0.428785, -0.419874, 1.009354, 0.411101, -0.789610, 0.728675, 0.076445, 1.729917, -0.667892, -0.033922, 0.246355, -0.384200, 0.368263, -0.331218, 0.001495, 0.708451, -0.665455, 0.299230, 0.343364, 1.108582, -0.730301, 1.090257, -1.189878, -0.924349, 0.343003, -0.671145, -0.118470, -0.048970, 0.125404, 1.820392, 0.352833, 1.111137, 0.006925, 0.540156, -0.011053, 1.515314, -0.094588, -0.997014, 0.899312, 1.359382, -0.187213, -0.180415, -0.059935, 1.363873, -0.519303, 0.188480, 1.296355, -0.175602, 0.905922, 0.023252, 0.720165, 0.684998, 0.246176, 0.361854, -0.099949, -0.567281, -0.223802, 0.098973, -0.842298, -0.322244, 0.921387, -1.103452, 1.674435, 1.013094, 0.070245, 0.081696, 0.716882, -0.401381, 0.253771, 1.404174, -0.893527, 0.713274, 0.221884, -1.063284, -0.813323, -0.709072, 1.543819, -0.145402, -0.066152, 0.628459, 0.276183, -0.885614, -0.426576, 1.599129, -0.493024, -0.331524, -0.926891, 1.815066, -1.227715, 0.456414, 0.518535, -1.376400, -0.903839, -0.704526, 0.093076, 0.540306, -0.382712, -0.372558, 1.277203, -0.457774, 0.935312, -0.887574, 1.951207, 1.094039, 1.331676, 0.222851, 1.598154, 0.456927, -0.506445, -1.402299, 1.585901, -1.733246, 0.087495, 0.371473, -0.556816, 0.310369, -0.095819, 0.050419, 1.483976, 0.174552, -1.467672, -0.063072, 0.211793, -0.572932, -1.430596, 0.213994, 1.648021, -0.980538, -1.415404, 0.344014, -0.066481, 0.086318, -2.288229, 0.855315, 0.400970, 0.551140, 1.020015, -2.006954, 1.430738, 0.096001, -0.604573, -0.674902, -0.790129, 0.531947, 0.457554, 0.607967, -0.367446, 0.824679, 0.576684, -1.161550, 0.523099, 0.394006, -0.624623, 0.010591, 0.218063, -1.603351, 0.486728, 0.511626, -0.961079, 0.407014, 0.092450, -0.760182, 0.141634, 0.149371, -0.517802, -0.502396, -2.773117, -0.725021, -0.425992, -1.439202, 0.851006, -0.624807, -1.671395, 0.153665, -1.609802, 0.146165, 0.802434, -0.455154, 0.236187, 0.256586, -0.470374, -0.697853, 0.535391, -0.594195, 0.423005, -1.000982, -0.011862, 2.612301, -0.608736, 0.036247, 0.273991, -0.452419, 0.664167, 1.196594, -1.953139, 0.426724, -0.596585, 1.571780, -0.226418, 0.558401, -1.269757, 0.623086, 0.799321, 0.187630, -0.975454, -1.384670, 0.815772, 0.518144, -0.184279, 1.482645, -1.746478, 0.254673, 1.478644, -0.361736, 0.813790, 1.117436, 0.263568, -1.652777, 0.913780, 1.239972, -0.202751, -1.036590, -0.316331, 0.731122, 0.339312, -0.180115, -0.757585, -0.285849, 0.082995, -1.474026, 1.474402, -0.454812, 1.794350, -0.548455, 0.885742, -1.258813, 0.684264, -0.471451, -1.771566, 0.129455, -1.380036, 0.563674, -0.603892, -1.463750, 0.228426, 0.911034, 0.274185, 0.422622, 1.159011, 0.118977, -1.018029, -2.479925, 1.691404, -1.568525, -1.317917, -0.537501, 1.670645, -1.890105, 0.031761, -0.071098, -1.806499, -1.736098, 0.838499, 0.436174, 0.046730, -0.871402, -0.867162, -0.301262, 0.471351, 1.469979, -0.566323, -1.020953, -0.708661, -0.285569, 0.036857, -1.383692, -0.170049, -1.703476, 0.230277, -1.358836, -0.881406, 0.693222, -0.554954, 0.365691, -0.470092, 0.519062, -0.194337, 0.341719, 2.138516, 0.590942, 0.142093, -2.554609, 2.218141, -0.944951, 1.231023, -1.405950, -1.326814, -2.452128, -0.643954, -0.033388, -0.100510, -1.043900, -0.899142, 0.473145, 1.166353, 1.694092, 1.215379, -0.325040, 0.016748, 0.508877, 0.540147, -0.211066, 1.096513, -0.855781, -0.228774, 1.135932, -0.608350, 0.489989, 1.218665, 0.773853, 0.285801, 0.481724, 0.111804, 0.322254, 0.500364, 2.179589, -1.888124, -0.127274, -0.625675, -0.671828, 0.703467, -0.832597, 0.008845, -1.203453, -0.397637, 0.106696, 0.006077, 0.230481, -1.351761, 0.547575, 2.625362, 2.146603, -1.017467, 0.271686, 0.797819, 0.941221, 1.600861, 0.950617, 2.559654, 0.609090, -0.307161, 0.060480, -0.574064, 1.583999, 1.793632, -0.711863, 0.726575, 0.270590, 2.272430, -0.157739, -1.058615, 1.622331, -1.125452, -1.843768, -0.078278, 1.740481, 1.824444, 0.784402, -0.106382, -0.467952, 1.296723, -0.764729, 1.315884, 0.152846, 0.601016, -0.262548, -0.428568, 0.446372, -1.534969, 1.636515, 1.052215, -0.544631, -0.539550, 2.270524, 0.494257, 0.585112, 1.647986, -0.398734, 0.013786, 0.209865, -1.452126, 0.599200, -1.402436, -0.613238, -0.003972, 1.067335, -0.283126, -0.245166, 0.191961, -1.449515, 0.463684, 0.815299, 0.073737, 1.082976, 0.293794, 0.670612, 0.143377, 0.171043, 0.808881, 0.032854, 0.946165, -0.367223, 1.682208, -1.323634, -0.422998, -1.249921, -0.124798, -0.254751, 0.808571, 0.028316, -2.479560, 0.971163, -0.486956, 1.713814, 0.446665, 0.053134, 0.101732, -2.470068, 1.173814, -0.838995, 2.267375, -1.557401, -1.373082, -0.450953, -1.405447, 1.055510, -0.647756, 2.538760, -0.415681, 2.130071, -0.646308, -1.117635, -0.107596, 0.715535, -1.170509, -0.447454, -1.204838, 0.620161, -0.941296, 0.353405, -0.056707, 0.050945, 1.417850, -0.092382, -1.101896, 1.076433, -0.263144, 0.393465, -1.570708, -0.876891, 0.820119, -0.681650, -0.624618, -1.420860, 0.192898, -0.063609, 0.713392, 0.496183, 0.453552, -0.862438, -1.039380, -0.910973, 0.772395}, - { -0.927943, -0.848864, -1.007952, 0.335526, -2.017541, -0.914680, 0.078810, -0.898423, -1.708599, -0.155889, 1.007167, -0.747462, -0.171016, -2.308906, -0.114479, -2.339214, -0.457396, -1.526376, 1.623720, 0.457976, 0.813552, 0.206856, -0.101218, 0.073019, -0.045020, 1.352025, -0.638211, -1.537627, -0.435254, -0.964205, 0.583681, 0.188579, 0.181941, 0.057947, -0.563493, 0.118283, 1.010443, 1.395760, -0.092736, -1.030230, -0.320378, -1.097519, 0.627467, 1.335169, 0.508092, -0.385964, -0.641630, 0.556415, -0.569044, -0.246809, -0.650686, -0.437328, 0.608802, -2.162268, -1.165045, -0.282270, -0.247688, -2.979329, 0.575926, -0.230373, -1.303513, -0.265617, -0.552202, -0.988376, 0.518985, 0.264679, -0.939547, -1.755571, -0.230379, 0.062619, 0.866288, 0.236366, -0.194471, 0.756843, 0.560732, 0.257200, -1.105184, 0.784192, 0.626963, -0.800312, 0.046077, 0.061475, -1.217718, 0.725432, -0.247772, -2.974380, -0.863058, -1.722903, -1.585467, -1.027864, 0.484068, 2.281535, 0.021882, -1.119987, -0.382134, -0.888447, 1.227709, -1.214013, -2.370314, 0.332083, -0.873489, 0.604533, 0.654887, 0.114215, -1.058772, 1.396704, -1.270196, -2.602735, 0.382191, -1.446693, 0.098017, -0.584281, 0.858455, -0.694204, -0.246084, 0.477965, 1.394454, 0.144403, -1.991599, -0.790703, -1.481822, 1.832909, -0.897893, -0.392857, -0.637408, -1.430072, -0.085667, -0.051698, -2.014769, -1.033955, -0.217898, -0.514559, -1.073518, -0.400990, 0.490306, 0.020518, -0.938738, 0.315694, 0.405789, 0.714008, 0.088199, 0.951635, -0.156677, -0.415429, -0.919523, -0.648329, 0.152128, -1.219878, 1.421183, 0.142722, -0.112126, 0.457937, -0.118108, -1.324538, 0.485108, 0.858896, 1.543063, 0.805543, 0.753079, 0.716355, -0.555134, -0.731093, -2.202731, -0.289889, 0.281604, 1.496243, 0.296459, -0.344467, 1.166366, -0.467911, -1.547582, 1.118591, 0.037099, -0.086089, 1.907300, 0.347141, 0.615853, 0.869868, 0.863162, -0.973901, 0.372848, 0.105157, -1.957845, 1.323176, -0.852377, -0.539613, -0.943925, 0.529939, -0.552553, -0.512323, -1.791544, -1.017195, -0.822663, 1.299985, 0.289184, -1.501497, -0.242835, 0.136465, -0.561395, 0.081931, -0.556423, 1.712416, 1.905352, -1.200593, -0.058503, 1.741204, 1.135129, -0.681590, 0.157162, 1.780704, 1.458561, -1.167853, -1.073411, 0.989011, 1.790497, 0.131350, -0.207506, -0.446647, -0.878583, -0.295445, -0.226523, -0.899659, -0.011195, -0.162805, 0.099131, -0.788797, -0.334394, 0.150064, -0.118765, 0.287391, 1.756517, -0.175097, -1.092550, -1.817786, 1.604110, 1.965222, -0.470014, 0.193645, -2.609614, -0.022956, 0.267545, -0.208348, -0.574019, 1.033829, -0.944228, -0.513080, -0.086179, -0.068793, 0.167631, -0.467098, -1.215286, 0.388725, -0.227476, 0.265260, -1.294074, 0.232139, 1.943728, 0.952719, -0.181417, -0.169241, -1.785415, 0.475991, -1.196911, 0.213349, 0.704132, -1.959569, -0.209594, 1.316006, -1.364279, -0.748612, -0.437346, 0.238616, 0.508802, -0.057441, 0.240803, -0.579069, -0.321784, 0.438001, 0.087155, 0.279821, 1.002000, 0.250575, 0.182982, -0.713008, 0.533901, -0.159440, -0.588976, -0.657896, 0.087516, 0.272619, -0.063072, -1.539775, -1.775648, 0.158050, 0.319217, -0.588794, 0.544648, -0.608979, -0.483757, -0.489778, 0.903135, -0.797372, 0.481088, -0.483062, -1.250498, 0.401972, -0.998930, 1.653525, -0.051723, -2.718770, 0.368626, 0.022137, -0.350321, 1.641191, -0.359209, 0.507800, 0.847977, 0.495757, 0.056085, 0.126058, 1.404442, -0.433099, -1.161144, 1.228121, 0.066707, -1.155914, -1.182173, 0.021392, 0.825278, 0.602612, 2.544014, 0.034278, -0.286417, 0.758915, 0.608593, 0.581685, -0.466770, -0.116069, -1.783712, 0.454724, -2.603312, 0.138698, 0.592285, 1.107950, -0.766594, 1.347931, 1.347740, 0.517797, 0.139061, 0.249193, 0.553629, 0.008133, 0.669462, -0.754085, -0.203519, 0.186317, 0.110165, 0.060332, 1.182343, 0.766188, 0.014383, 1.201515, 1.578160, -1.042033, 2.336762, 0.107837, 1.232856, -0.596776, -0.043819, 0.069396, 1.251105, 0.629297, -0.152866, -0.337303, 1.448249, 0.452210, -0.495416, 0.348913, 0.821613, 0.717262, -0.321402, 0.519330, -0.097419, -0.715642, 0.349553, 1.321074, 2.219332, 0.044082, -1.510974, -0.541657, 0.497968, -0.255279, -0.208367, 0.066882, 0.391862, -0.414870, 0.285611, -1.580357, 1.904696, 0.326333, -0.010005, -0.587741, 0.413864, -0.463637, -0.192878, 1.077390, -1.224993, 1.266089, 0.242087, -0.469611, 0.180648, 0.022548, 0.291803, 1.340684, -0.880295, -0.236240, -1.524891, 2.509343, 0.782742, -1.243343, -1.133610, 0.447418, 0.292570, 0.628489, 0.832094, -0.834520, 1.445554, -0.457705, 0.940864, 0.196840, 0.234719, 0.681855, 0.717254, 0.752367, 0.508608, 0.769516, 0.708943, -0.576327, -1.658545, -0.107476, -0.354848, 0.082087, 0.362338, 0.440647, 1.671895, -1.037819, -0.306201, 0.076307, 1.616233, -1.238897, 0.066267, -0.024560, 0.472596, 0.032355, -1.763085, -0.209261, 0.823012, 0.267756, -0.513282, -0.217905, 0.814842, 1.006657, -0.115592, -1.295611, 0.214233, 0.476267, -0.731630, -0.358477, -1.063962, -0.697687, -1.432371, -0.367252, 0.893559, 0.611873, -0.646305, 0.918673, 0.192326, -0.323520, -0.115658, 0.933000, -0.807400, 0.641474, 0.535697, 0.318424, 0.093264, -1.197386, 0.386390, -0.558527, 0.231152, 0.872326, -0.131630, -1.265806, -1.249577, 0.554404, 1.336484, 0.143908, -0.155708, -1.130782, 2.113932, -0.380531, 1.352066, 0.745056, -0.035679, 0.045261, 0.149299, -0.051082, 0.842708, -0.662899, -1.214880, -0.687400, 0.060657, 1.147772, 0.088104, -0.857543, -0.864207, 0.047330, 0.107283, 0.264170, 1.151708, -0.419330, 0.173155, 0.384277, -0.041881, -0.150074, 1.577698, 1.288926, -2.486381, -0.065349, 1.001110, -0.740458, 1.293048, -0.119164, -2.333424, -0.352414, 0.606735, 0.522174, -0.655393, -1.600829, -1.619429, 1.163313, 0.599836, -1.076846, 0.220918, -1.174212, -0.171512, 2.024237, -0.737483, -0.423817, -0.920860, 0.014837, -0.804615, 0.499049, -0.345348, 0.647496, -1.025689, -1.408556, 0.154800, -0.814080, -0.890445, -0.435126, 0.360664, -1.206917, 0.963296, 0.357455, 0.897320, -2.087111, -1.349186, 0.867854, 0.327595, -0.524693, 0.875666, -0.220575, 0.347752, -1.480195, 0.148482, -0.222405, 0.251350, -1.915801, 0.388131, 0.603146, -3.203593, 0.531218, 1.868075, 0.458617, -1.174954, 0.244054, -1.304455, 1.196585, -1.201653, 1.474107, -0.426473, -0.854629, -1.479377, -1.245414, 2.141289, 0.002585, 0.793922, -0.510862, -1.268813, -1.321165, 0.899540, -0.227880, 0.210332, -1.266062, 1.919314, -0.204862, 0.231374, 0.147181, 1.009484, 0.432774, 0.545192, 0.625975, 0.004619, 0.117338, 1.880970, -0.916497, 0.527592, 1.175011, 0.535266, 0.622861, -0.090368, -0.470978, 0.648491, 0.832114, 1.510331, -0.760787, -1.021950, 1.644606, -2.190853, 0.506645, -2.273086, -0.797426, 0.939197, 0.197609, 0.042075, 0.444532, -0.907776, 0.924141, 0.721633, 0.964365, 0.039645, -0.622620, 0.413722, -0.416789, -1.059769, -1.402015, -0.318759, 0.235055, 0.040810, -0.339326, 1.998217, 1.911765, -1.288431, -2.215854, -1.611742, 0.606864, 0.814347, 0.232382, 0.378639, -0.815160, 2.142320, -0.369369, -0.847102, -1.106990, 0.926171, 0.398485, 1.697152, -1.412457, -0.660148, -0.100567, 0.122255, -0.775312, 0.195316, -1.914149, -0.783259, 1.371915, 0.716988, 2.154932, -0.775929, -1.642688, -0.686566, -1.130656, 0.708010, 0.205619, -0.822354, 0.286945, -1.762586, -1.835892, -0.055453, -2.159250, -0.595203, -1.234347, -1.119582, -0.569000, 0.920316, 0.970850, -0.522653, -1.611656, 0.037889, 0.514440, -0.411900, 0.245702, -0.229427, 1.736876, -1.479308, 1.230309, 1.027730, 0.759393, 0.453581, 0.740624, -0.510150, 0.286593, -1.164558, -0.630723, -1.118675, -0.684163, 1.475408, -0.513927, -0.415364, -0.136300, -0.433766, -0.189449, -0.538142, -0.930861, -0.009446, 0.391436, 2.023198, 1.411867, -0.507803, 0.084696, -0.569933, -1.525797, 0.412340, 0.210363, 0.044233, 0.901978, 1.419834, 0.677276, -0.652197, 0.389954, -0.747245, 0.256262, -0.239018, -0.424416, 0.195915, -0.145170, -0.901196, -0.910658, 0.913185, 0.160334, -0.834326, -0.782434, -0.461058, -1.470574, 0.155376, -0.445109, 0.089911, -2.456486, -1.782437, 0.490214, 1.646560, 0.066937, -2.299922, -0.047979, 0.603489, -0.646352, -2.248479, -0.280179, 0.156131, 0.069344, -0.847731, -0.139704, 0.043159, 0.126194, 0.603933, 1.538464, -1.506664, -0.179378, 0.407332, 0.809856, -0.166067, -1.292168, -1.769859, -2.079509, 0.739625, -0.736729, -0.713354, 1.073867, 1.844931, -1.939672, 0.471914, -0.156489, 0.138424, 0.890533, 0.612764, 1.475300, -0.526159, -1.735516, 1.410267, -0.876821, 1.171168, 0.075415, -0.387776, -0.882955, -0.551826, -1.028673, -0.024397, 2.792131, -1.603245, 0.402022, 1.737134, 0.115065, -0.216108, -0.521870, 1.635362, -1.264822, 0.541659, -1.944620, -0.755439, 0.285255, -2.913314, 0.311291, 0.427674, -0.862534, -0.098715, -1.429178, -1.617302, -1.323428, 0.339025, -0.591097, -0.132334, 1.202685, 0.283947, -0.429917, -2.540929, -1.405465, 1.592140, -0.757374, 1.108627, 0.873684, -0.927622, -2.282203, 0.224326, 0.502771, -0.994116, 1.285542, -1.194033, 0.482534, 0.207624, -0.490080, 1.346618, -1.521279, -0.306631, -1.740103, 1.524379, -1.353220, 1.823642, -1.020735, -1.211194, -0.200056, -0.321512, 0.106106, -0.689623, 0.920550, -2.241492, 1.660964, -0.233836, 0.416134, 0.949040, 0.362489, 0.661448, -0.551020, -1.277775, 0.753808, -0.728999, 1.259455, -0.855020, -0.113403, 0.180453, 0.042225, -1.437568, 0.637236, 0.025830, 0.537016, -0.058317, 0.671484, -2.318072, -0.643389, -0.562461, -1.452972, -1.112109, -2.104362, -0.360837, 0.531970, 0.488858, 0.593668, 0.218039, 0.758817, -0.427450, -2.061395, 1.705541, 1.480190, -0.798173, -0.314018, 0.823357, 1.055417, 0.933325, -0.215806, -1.250151, 0.297458, 0.096078, -1.289634, -0.310853, -1.329689, -0.481198, 0.165585, -0.355458, 0.276325, 0.635595, -0.729753, 0.637424, 1.495186, -1.718847, 0.223172, -1.835021, -0.461343, -0.708494, 2.117562, -0.062408, -0.067752, -0.254458, 0.984144, 1.321805, 0.670593, 0.567188, 0.328510, 1.234885, 1.181028, -0.563270, -0.905491, 0.270681, 0.609736, -0.687382, -0.206509, 1.864390, 0.523094, -0.468049, -1.163573, 0.840661, -0.227165, 0.835723, 0.701759, 0.864262, 2.507117, 0.639601, -0.537041, 0.354290, 1.103883, -0.370686, -0.258310, -0.262834, -0.812582, -0.595378, -0.944029, -0.953974, 2.823998, 1.270386, -0.811090, -1.462563, 0.211065, -0.891727, 1.596180, -0.180620, -1.314641, 0.669107, 0.806106, 1.603680, 0.346867, -0.395742, 0.904379, -0.953341, 0.374559, 0.814034, 1.508167, 1.248294, 0.128080, 2.067523, 0.750697, 0.687511, -0.588257, 1.093959, -0.098795, -0.012618, -1.839321, -1.149667, -0.662068, 1.496468, 2.167565, -0.236460, -1.570776, -0.732336, -0.042147, 0.405120, -0.369327, 0.810185, 1.313395, -0.767107, 0.197084, -0.727138, -0.609878, -1.097356, -0.672487, 1.194189, 0.556869, -0.336657, 0.425821, 0.569506, 1.723290, -0.247420, -0.980576, -0.855025, -0.155905, 1.222950, 1.948963, -1.270618, 0.348116, -0.491914, -2.116805, 0.189608, -1.191331, -0.049422, 0.323932, -1.616547, -0.922383, 0.945364, 1.985738, 0.374413, -1.308167, -1.071365, 0.014611, -0.130538, 0.757273, -1.293112, 0.940560, 0.134145, 1.010601, 0.783650, 0.255528, 1.060758, 1.198641, 1.295738, -0.580612, 0.578393, 0.884045, 0.180836, -0.458545, 0.192984, 1.173479, -0.123109, -0.257911, 2.552269, 0.375229, -1.339672, -0.279820, 0.328244, -0.713262, 0.353616, -0.679741, -0.672665, 0.160089, 1.357111, -2.032015, -0.131624, 1.702815, -0.980851, 0.914760, -0.157481, -0.435516, -0.521515, -0.650218, 1.756954, 1.545284, -2.529951, -0.769625, -1.645308, 0.524984, 1.283369, -1.506804, -0.465938, -0.698563, -0.834909, -0.308978, -0.556149, -0.769594, 0.497699, 2.276626, -0.844418, 0.254551, 0.017238, 1.455137, 0.230232, 0.679763, 1.308492, 0.701632, -1.196901, 1.945062, -1.175911, -1.124874, 1.292782, -0.338028, 0.367165, 0.353531, 0.633568, 2.557875, -0.167781, 0.424514, -0.294773, 0.280180, 0.732246, -1.407929, -0.848970, 0.729634, 0.911062, 0.263933, -0.545052, 0.105529, -0.223433, 0.645134, -0.873666, -0.133974, 1.671354, 0.198154, 0.286433, 0.971493, -0.721881, 0.050207, -1.286270, 1.330596, -0.762040, -0.490164, -1.530473, -0.912325, -1.361833, 0.684286, 0.133923, -0.538645, -0.730002, 0.521018, -1.844207, -0.109827, -1.608073, -1.622082, 0.076888, -0.404588, 0.693388, 1.515352, -1.246440, 1.331426, -0.457352, 1.717526, 0.911947, 0.665998, 0.722040, -1.067963, -0.410837, 0.905061, 0.432025, -0.450593, -0.748104, -1.484108, -0.495278, 0.109436, 0.241716, 1.599032, -1.147695, 1.769514, -1.479689, -0.415782, -1.170278, -0.622471, 0.393543, -0.559444, 1.874969, 0.287597, 0.767469, 0.357354, 0.267501, -0.266990, 1.456886, 0.368555, -0.727274, 0.213615, -0.261534, 0.850806, -0.469329, -0.935140, 0.660715, 0.773345, 0.233064, -1.301188, -0.610967, 0.345995, -0.603919, -1.053955, 1.047476, 0.353146, 0.282915, -0.812627, 0.421331, -1.284377, 0.194997, 0.660365, -0.209087, 0.537426, 0.954637, -0.632826, 0.245715, 1.806435, 1.880646, 2.457077, -1.207209, 2.238415, -0.629680, 0.908186, 0.084370, 0.576474, 2.198799, 0.242670, -0.628591, 0.497697, 1.402853, -0.711362, -0.298425, -0.801774, 0.054332, 0.681303, 0.552893, 0.770221, 0.643135, 0.273837, 0.330350, -2.246512, -0.442313, 0.996603, -0.270699, 0.647778, -1.096185, 1.299947, 0.135745, -0.714829, -0.458041, -1.670897, 0.229702, -0.052380, -1.262217, -1.589613, -0.270982, 1.535045, 0.503076, -1.822937, -1.292228, -0.311002, 0.024634, 1.160637, -0.652208, 0.123767, -0.557057, 0.558771, 1.086947, 0.540257, 0.909246, -0.898957, 1.530163, -0.923892, 0.485648, 0.238247, -0.436018, -1.090601, 0.870652, 0.504701, 0.599472, -0.145817, 0.942055, -0.100235, 0.569638, -0.337121, 0.044976, -0.599574, 0.061402, 1.918601, 0.834554, -0.031722, -0.704964, -0.161246, 0.544671, -0.651383, -1.645877, 0.435550, 0.676679, -0.066669, -0.292441, 0.865631, -1.383248, 2.826511, 0.885830, -0.271709, 0.593572, 0.480456, 0.269602, -0.293841, 1.586214, -0.185174, -0.700619, -0.588683, 1.760091, 0.041362, 0.140348, -1.012107, 0.768306, 0.906298, -1.002926, 1.175111, -3.774929, 0.167701, -0.148679, 0.825280, -0.833319, -0.837649, -0.224188, -1.071116, 1.872995, 0.553967, -0.087436, 0.736050, -0.083514, -0.741703, -0.313768, -0.447542, 1.419413, 0.474555, -0.538200, -0.609044, 0.315440, 0.093846, -0.604892, 0.628349, 0.044505, 0.679262, 2.457449, -0.134066, -0.549109, -0.913091, 0.364055, 0.494420, -0.056844, 1.222093, 0.074178, 0.904414, 0.190268, 0.607383, 0.380522, -1.618842, 0.106518, 0.398193, -2.297612, -0.998274, 0.714249, 0.162382, 0.378262, 0.454799, 0.069100, -0.167135, -0.738255, -1.558727, 0.967726, 0.423194, 0.052705, 0.392266, -0.532611, -0.856387, 0.456523, -0.425223, -0.522495, 0.362853, -0.666647, -1.847039, 0.817615, -1.144197, -1.626253, 0.774238, 0.260345, -3.258763, 0.026512, -0.285162, -0.005065, 1.859652, 0.590737, -0.410954, -1.418287, 0.831048, 0.155411, -1.734565, 0.316919, -0.149549, 0.119297, -0.058238, -0.006399, -1.887887, -0.638349, -0.429402, -1.545517, -1.425266, 0.856502, 1.099850, -0.076803, 0.061601, -0.415425, -0.883589, -0.274312, -0.735317, -0.141561, 0.298130, 1.483487, -0.615409, -1.578746, 0.715461, 0.026218, -0.217577, 0.662090, 0.505457, 0.930162, 1.536933, 0.363893, -0.008661, 0.936962, 0.492318, -1.887021, 0.565682, -1.971513, -2.056686, -0.045446, -1.305931, -0.881378, 1.008077, -0.941508, -0.213740, -0.865698, -0.932219, 1.098633, 0.159927, -1.405609, 0.459212, -1.559741, -0.261565, 0.256250, -0.110848, -0.672365, -0.342622, -0.787630, -0.092756, 1.122715, 0.969572, -0.038907, -1.399385, 0.978575, 0.700709, -2.083883, -0.845570, -1.146723, 0.583142, -0.465145, 0.188317, -0.984040, 0.855091, 2.205299, -0.662515, 0.763596, -0.858891, 0.260237, 1.452351, -1.259991, -0.479036, 0.785177, -0.846226, 1.043118, -0.733261, 0.188875, 0.487674, 0.051956, 0.178794, 0.684831, -0.821461, 0.928840, 1.334278, -0.104548, -0.639198, 1.500090, 0.406619, -1.099985, -1.416839, -0.390211, 0.291419, 0.933916, 1.444235, 0.868859, 0.805315, 1.445146, 0.611266, 0.785611, 0.154246, 1.157670, 1.109126, 0.271696, -0.155566, 0.761438, 0.471443, 0.051751, 0.489360, -0.128504, -0.768859, 1.172385, 1.322451, 0.509303, 0.528920, -0.754073, 0.201715, 2.338198, 1.740549, -1.628224, 0.770020, -0.492662, -1.140821, 0.489712, -1.528871, 0.103982, 1.880946, 0.905111, -0.833171, -1.682546, -1.862728, -0.997107, 1.007095, -0.144976, -0.507198, -1.205614, 0.457016, -0.243494, 1.031220, -1.198406, -1.225401, 0.468323, 0.919303, -0.528095, -0.661466, 0.307176, 0.343826, 1.076542, -1.721700, -0.663999, 0.747687, 1.235697, -0.069326, -1.770146, -0.848474, -0.197615, 1.513558, -2.524689, 1.400738, 0.406095, -0.184936, 1.280244, -0.216047, -1.676776, 0.219719, -0.405184, 0.967325, -0.375629, -0.785722, 1.220597, 0.334789, 0.566480, 0.009254, 1.746741, -0.787908, 1.763453, 0.017366, 0.706532, -0.140022, -0.783722, -2.182021, -1.087504, 0.909114, -1.296626, -0.469856, 0.809443, -0.538671, 0.953015, 0.835782, -0.623321, -1.074792, -0.834355, 0.326608, -0.167698, -0.316246, 0.736643, -0.302629, 1.197693, 3.204298, 1.157178, -0.593553, -0.557982, 0.982327, -1.169718, -2.160820, 0.108015, 0.697272, -2.031981, 1.345407, 0.862154, 0.926838, -0.035839, -0.250587, -0.701835, -0.795605, 2.111944, 0.538221, 0.356078, 0.832455, 0.936934, 1.684944, 0.549750, 0.790562, -2.052320, 1.330595, 0.326634, -0.853783, 0.487032, -1.996852, -2.565112, -0.523779, -0.102644, 0.005887, -0.781062, 0.514485, -1.407459, -0.936053, 0.621269, -0.017720, -0.617706, -1.137232, -0.807767, 0.235180, -0.134021, -0.359856, -1.462101, 1.832937, -0.273101, -0.020999, -0.438320, -0.009446, -0.243226, -0.544482, 0.166262, 0.738021, 0.077360, -0.488276, -0.821518, -0.415494, -0.216131, 0.142641, -0.253094, -0.679378, -1.484582, 0.456298, 0.565872, 1.553964, -0.021438, -0.388620, -0.807010, -0.136264, -0.866476, -1.156408, -0.985454, -1.657730, 1.234892, -0.137808, -0.238852, 0.033399, 0.215430, 0.880274, 0.155169, 1.268355, 1.839431, 0.133500, 0.020458, -0.616348, 1.589242, -1.617563, -0.003197, -0.638750, 1.057412, -1.081039, -0.641924, 0.498153, -2.484929, 1.599888, -0.340949, -0.068286, 0.371734, -0.870459, -0.189091, 0.198300, -0.538583, -0.340019, -1.088236, -2.017619, 0.843293, -0.882988, 1.638878, 0.349668, 1.657731, 1.289697, 0.936379, -0.272177, 0.191521, 0.271849, -0.672913, 0.064053, -0.080055, -0.633254, -0.747562, -1.992939, 1.620304, -0.518901, 0.382423, 0.077329, -0.216099, -1.755247, -0.483255, 0.739758, -0.181267, -1.574334, -1.651722, 0.693794, 0.953994, 0.950048, -1.253076, 1.656438, -0.371822, 0.481879, 0.611983, 0.862718, 1.245632, 0.882637, -0.847025, -2.207047, 0.757778, 0.817937, 0.195750, 1.034330, -0.200130, 1.624408, 0.162437, 1.263891, 0.223653, -0.894796, -1.085478, 0.674211, 0.611244, -0.005049, -1.733819, 0.894442, 0.838969, -1.619244, 0.651272, -0.800640, 0.359469, -0.145293, -0.259317, 1.625399, -0.400067, -1.943555, 0.325960, 0.302873, 0.541227, 0.119039, -0.495761, -0.327059, 1.090673, 0.855052, -1.354466, 0.022400, -1.922561, -0.006519, 0.417387, -0.950574, 0.189850, 0.723750, 0.285134, 0.920834, 0.176980, 1.213805, -0.365228, 0.712436, 0.900792, -0.619316, -0.141724, -0.965008, 2.041592, -0.505673, 1.058618, 0.574162, -0.662834, -1.266578, -0.589979, 0.354142, 0.698730, -0.051693, -1.277285, -0.738954, 0.713953, -1.218836, 1.242006, 0.407080, -1.259255, 2.019546, 1.438067, 0.736658, -0.510014, -0.990531, -0.765166, -1.007231, -0.214694, -0.747685, -1.968806, -0.161317, 1.621844, 0.210423, -0.771294, 0.450599, 2.001394, 1.738619, 0.566885, -1.893497, -0.530683, 0.850890, 0.220721, -1.712036, -0.046604, 2.631550, 0.149449, -0.212828, -0.197895, 1.905503, 0.819902, -0.523158, -2.023850, 0.124120, 2.946158, -0.919509, -1.538836, -1.776377, 0.530943, 1.406346, 1.630764, -0.110141, -0.735590, -0.635372, 0.398702, -0.776307, 0.395137, -1.925777, -0.273339, 1.358249, -0.861496, 0.089180, -1.012947, 1.540609, -0.742041, 0.552658, 0.340891, -0.954655, 0.139637, -0.090485, 0.250190, 0.482467, -1.228982, 0.531436, 0.507531, -0.004376, 0.411277, -0.718831, -0.336491, -0.195399, 0.224481, -0.666029, -0.345856, -0.073758, 0.174176, -1.713911, 0.163176, -0.256084, 0.298473, 0.117545, 0.503351, 0.695065, 1.334711, 0.609364, 0.958845, -1.178927, 0.510191, -1.486158, 0.401862, -0.855869, 0.807488, -0.945352, -0.087425, 0.217774, -0.888259, 1.399231, 0.492064, 1.220216, 1.476372, 0.487832, 0.284453, 0.153273, -0.016706, 1.585354, -0.205146, -1.237179, 0.542567, 0.989088, 0.648264, 2.159141, -1.254500, -0.923453, -0.148642, -0.726381, -0.776980, 0.770464, 1.392206, -0.930231, 0.266298, 1.465960, 2.306773, -0.625814, 0.274268, 0.051292, -0.239717, 0.729621, 0.664993, 1.121924, 0.632058, 0.905467, 1.427446, 0.007445, -2.049455, -0.216021, -0.858709, -0.134386, 0.855359, 0.507594, -1.070304, 0.209477, 1.737250, 0.299925, 1.398934, -0.434993, 0.077866, 0.692991, -0.756430, 1.537987, -1.806252, -0.476487, -0.859116, 0.963591, 0.923220, -0.338264, 0.662789, 1.323264, -1.300412, 0.083961, -0.118212, -1.380022, -0.749058, 0.447634, 1.958049, -2.459430, 0.421433, -0.743782, 2.129945, -0.602323, -0.183671, 0.206305, -0.302544, -0.719317, 2.121706, 1.540766, -0.225557, -1.511597, 0.754543, -0.091522, 1.924275, 0.230632, 0.365935, -0.811286, 0.681153, 1.572017, 0.115002, 0.625835, 0.605080, 0.213463, 0.192024, -0.194023, -0.399103, -1.958182, -0.358869, 1.022202, 0.132406, 1.471805, 1.070965, 0.175471, 0.285277, 0.021200, 0.599523, -1.314948, 0.281622, -0.081000, 0.172158, -1.862646, 0.986665, -0.534133, -1.916276, -0.530737, 1.407987, -0.626147, 0.182106, -0.781367, 1.492690, 0.952253, 1.078951, -0.206277, 0.668398, 1.804943, 0.232114, -1.230453, 0.837795, 1.477466, -1.629281, 1.470325, 1.441007, -0.040301, -0.602422, 0.838631, -0.591540, 0.382618, -0.118419, 0.051557, 0.096159, 0.902218, 1.605196, 0.143768, 0.147585, -0.141291, 0.678024, 1.390853, -0.421511, 1.208288, 0.036119, 0.029561, -0.163579, 1.589282, -0.815432, 0.514626, 0.166672, 0.525113, 0.970681, 0.485214, 1.136702, -1.800761, 0.690678, -0.194342, 0.908171, -1.090786, 0.218515, 0.838834, -1.171016, 0.214444, 0.441577, 0.287095, -0.412562, -0.618340, 0.290903, 0.958213, -1.447302, -1.446268, -0.710906, 1.578458, -1.091832, 0.545546, 0.304186, -0.309296, 0.683226, 0.701882, 0.076304, 0.285923, 0.103014, 1.323580, -0.006013, -0.593497, -1.069417, 0.091635, -1.132696, 0.571171, 1.140896, -0.936000, 0.254236, -0.907856, -1.089543, 0.993852, 0.273657, 0.967522, 2.093941, -1.223866, 0.429392, 0.120051, 0.549104, 0.647190, -1.115838, -0.195397, 0.446270, -0.492344, -0.558010, -2.640300, 0.155339, -1.019168, -0.670918, 0.290420, 0.382878, -0.424822, -0.338645, -1.270369, 0.919237, 0.590560, 1.008365, 1.227771, -0.625557, -0.150320, -1.672765, 0.824407, 0.001227, 0.410100, 0.962835, -1.759868, -0.558739, -0.134206, -0.697611, 0.323811, -1.104477, 0.847668, -0.379923, -1.013853, -1.541471, 0.116949, -0.114481, -1.733531, -0.999286, -0.626130, 0.472367, 0.003997, 0.154539, -1.099100, -0.555579, 1.068332, 0.455766, -0.807047, 1.007023, 0.444259, 1.327401, 1.437015, -0.043844, -1.090147, 0.796512, 0.521100, -0.284028, -0.530354, 0.736647, 0.629921, 0.664883, 1.840846, 2.030298, -0.511684, -0.977230, -0.554112, -1.465355, -0.074527, -1.022036, 0.131191, -0.428613, -0.098370, 1.004801, 0.012264, -0.961686, -2.209918, 0.260822, 1.475644, -0.929505, 0.392600, -0.927285, -0.133991, 2.312371, -1.049276, 0.973929, -0.255088, 0.704127, -0.792910, 0.430684, 1.825592, 0.740534, 1.494470, -0.863474, -0.136603, -1.977052, -0.811724, 0.919494, 1.093497, 1.148729, -0.604218, -0.471478, -1.583214, 1.654827, -0.554981, 2.093590, -0.979652, -0.688824, 1.316643, -1.230648, 0.570379, -0.669996, -1.223467, -1.891810, -1.924267, -1.235424, 0.756017, -0.666367, -1.023326, 0.555475, 0.305918, 0.180063, -0.141499, 0.167064, -1.871583, 1.328987, -1.360708, 0.260314, -0.125774, 0.667003, 0.662604, 0.518516, -0.104374, 1.370616, -2.464720, -0.901188, -0.121387, 0.084551, -0.626412, -0.675372, -0.312952, 0.853075, -1.172036, -0.954390, -0.513668, 0.833627, 1.389015, -1.560414, -0.479683, -0.138798, 0.594588, 0.767498, 0.475659, 1.623153, 0.735289, 0.562974, 0.158398, -0.378628, -0.670631, 0.088275, 0.772969, -1.207289, -0.338791, -0.363498, -1.426166, -0.320898, -0.810194, -1.817028, -0.555361, -0.372655, 1.879006, -2.218235, -0.465146, -0.337877, 1.478354, -0.970064, 0.343084, -1.173539, 0.188834, 0.261888, -0.562787, 1.627506, 0.580245, 0.327927, -0.844266, -1.060338, -0.147947, -0.460550, -0.177256, -0.945131, -1.313558, -0.298973, 0.410588, -0.669070, -1.090892, 0.289215, -0.377820, 0.839338, -1.111745, -0.811818, -1.172831, 0.391945, -0.491829, -0.227326, 0.939623, -0.540792, 0.130543, -0.069212, -0.548100, 0.550014, 0.219876, 0.454632, 1.712600, 0.521004, 0.130218, 0.255326, -1.264603, -0.557759, -0.246010, 0.648926, -0.486580, 0.690779, 0.612560, 0.511398, -0.086692, -0.675319, -1.768657, -2.139894, -1.734304, 2.012283, 0.343154, -0.903062, 0.365472, 0.839142, -1.214435, 0.324033, 0.616915, 0.935193, -1.017241, 0.408117, -1.726444, -0.121322, 0.192869, 1.081294, -0.817966, -0.697636, 1.024459, -0.473298, 0.718078, -1.040346, -2.491232, 0.131391, 1.742156, 0.353938, -1.779879, -0.189823, -1.040354, -0.260624, -0.965293, 1.309706, 0.195921, -0.919993, -0.563284, -0.207294, 0.352581, 0.883915, -0.291144, 0.193367, 0.178430, -1.110159, 1.221385, -0.209801, 0.248522, -0.473450, -0.571792, -0.625436, -1.170056, 0.194336, -0.047487, -2.029404, -0.299411, -0.930910, -0.038067, -0.777132, -0.213311, 0.147254, 1.656849, 0.573813, -1.539118, 0.880464, 0.880131, -0.747459, -0.858205, 1.228164, -0.760625, -1.832125, -0.019177, 0.564201, -0.868261, -0.537545, -0.582654, -0.616964, 0.560157, -0.905352, -2.020527, 0.587057, -0.453112, 0.090689, -1.420369, -1.587916, 0.238346, -2.234722, -1.555369, -0.456377, -2.005966, -0.237870, -1.680128, 0.151082, -1.593435, 1.387881, -0.741671, 1.223455, 1.103431, -0.777037, 1.408736, 1.902882, 0.531550, 1.044782, -1.076130, -0.673309, 1.709906, 0.256266, 3.343550, -0.685823, -2.121159, 0.089676, -1.187886, -0.097671, -1.044594, -0.846009, 0.133710, 1.893877, 0.359745, 0.252651, 0.244037, -1.538918, 1.115700, -0.072269, 0.697478, 0.664608, 1.180620, 1.147225, 1.191006, 0.368092, -0.210100, -2.311575, -0.063836, -1.455704, 0.493406, -0.630681, -1.676298, -1.193554, 0.905106, -1.545751, -0.219819, -0.041734, 0.979126, -0.255762, -1.924916, -0.318397, -0.310783, 1.196124, 0.838070, 0.577734, -0.994569, -0.946624, 0.500414, 0.110417, -0.094273, -0.032592, -1.253767, 0.296884, 1.873517, 0.177414, -1.031563, 0.144232, -0.883040, -0.658280, 0.155666, 1.299628, 0.517497, -0.208179, -0.128513, -0.611170, 0.398791, -1.197398, 2.587734, 1.115386, 0.248222, -0.541405, 0.695469, -0.054985, 1.283327, -0.503008, -0.815221, 0.288918, -0.016338, -1.156937, 0.943865, -0.086148, -2.560810, -3.653342, 0.645168, -0.428726, 1.355295, -0.089028, 0.211192, 1.044049, -1.145127, -0.581369, -0.503060, -0.159572, -0.427680, 0.020536, 0.222917, 2.737014, 1.056712, -0.578037, 0.391490, -0.457669, -1.100458, 1.139609, 0.217027, -0.357803, 0.274608, -0.385472, 1.185033, 0.171908, -2.707349, 1.588948, -0.157671, 0.199787, 1.033055, -1.212648, -0.694839, -0.671615, 0.172562, 0.036933, 0.697805, 0.414519, 0.667288, -0.557510, 0.857324, -0.709816, -1.602680, 1.324861, -2.269055, 0.470487, 1.208059, 0.177478, 0.171895, -0.872168, -2.186580, -0.493671, 1.867589, 0.752896, 1.095372, -0.244078, 0.848214, -1.318316, 0.848509, 2.486402, -1.020310, -0.942185, 0.945333, 0.156182, -0.301386, -0.064850, -0.273926, -1.253156, 0.273615, 1.317315, 0.642375, -0.086330, -2.033757, 0.551518, -1.083527, -0.590233, -0.314680, 0.926940, -0.533664, 0.402880, -0.689461, 1.061647, 0.127076, 0.636953, -0.690255, 0.489191, -0.574507, 0.245246, -0.381623, 0.539626, 0.000194, -1.758696, 0.508802, -0.257727, 0.292019, 0.463272, 0.346177, -0.556291, 0.474174, -0.408458, -1.146987, -0.111829, -0.240989, 0.825932, -0.626498, -0.242822, -0.369316, 0.008353, 0.638135, -0.074198, -0.656372, -0.080627, -1.274264, -0.515446, -0.446216, -1.189520, 0.563389, 1.399765, 0.915128, 1.117257, 0.236102, -0.675459, -0.220637, 0.959634, 1.419576, 1.021667, -1.504123, 1.247329, -1.317474, -0.682281, 2.163998, 0.130203, -2.267840, 1.081378, 0.194819, -1.282587, 0.035392, 0.006418, 0.295348, 0.424520, 0.021659, -1.040777, 0.788981, -2.446877, 0.126979, -0.950303, -0.376568, -1.154711, -2.149836, 0.077384, 0.463624, -0.095168, -1.097720, -0.164080, -0.221102, 0.401866, -1.569068, 0.411337, -0.317839, -2.064783, -1.769371, 0.181743, -1.359475, 0.502654, 0.361786, -0.209982, 0.282905, 1.697727, -0.340520, 1.452186, -0.532251, -0.203603, -2.009740, -0.361879, -0.418472, 1.030548, -0.213635, 1.010984, -0.620800, 0.444597, -0.202257, 0.438767, 1.602165, 1.679331, 1.025387, -1.797996, -0.415699, -1.049389, 0.213724, 0.519129, -0.766252, -0.200632, 0.268251, -0.789505, 0.675799, 0.145076, -0.958511, 1.324622, -0.525909, -1.418014, -0.548286, 1.263579, 1.072547, 0.828219, -0.137356, 0.894170, 0.316195, 0.380372, -1.382895, 1.615364, 1.053836, -0.560380, -1.522957, -0.779194, 0.605998, -0.056610, -0.177501, -0.690148, 1.145496, -0.189536, -0.499614, -2.384019, -0.267268, 0.795484, -0.433175, -3.018608, 1.147453, 0.643098, 0.830705, 2.097276, -1.155822, -1.713669, -1.105028, -0.062009, -0.923434, 0.743138, 1.121429, -0.180391, -0.576033, 0.704896, -1.288203, -0.845380, -1.152440, -0.320244, 0.875678, 0.600936, 1.819416, -0.174057, 0.141421, 0.860840, 0.122118, -0.163375, -0.949162, 0.113648, 0.523691, -0.363049, -1.160820, 0.605130, -0.147158, -0.716509, -0.778459, 1.519413, 1.636031, 0.162499, 0.135135, 0.659129, 1.639581, 1.036743, -0.454564, -0.191258, 1.083811, -1.926418, -0.158085, -1.708622, 0.132392, 0.541703, -1.130127, 0.686314, -0.900944, 0.496621, 0.619421, -0.253409, 0.160915, 1.728672, -0.320732, 1.064396, -0.517227, -1.421334, 0.064680, 0.114182, 1.748614, -1.084048, 1.243769, 0.389261, -0.099600, 0.829103, 1.819249, 0.404720, 1.032003, -0.024367, 1.097604, 1.085647, -1.367404, 0.466983, 0.001281, 2.846629, -2.019267, -2.680492, -1.226993, 0.307601, -0.383387, 0.547387, 1.100284, -0.685923, -0.312973, -0.137570, -1.107392, -2.088766, 0.767244, -0.806956, 0.649474, -1.061088, -2.317648, 2.402853, -1.322242, -1.402705, -1.672033, -0.246687, -0.200126, -0.211244, -0.867503, 0.434005, 0.014796, 0.162539, 0.347691, -0.641239, -1.731719, -1.434930, 2.642357, 0.544128, 0.850129, -0.729942, -0.893757, 0.416484, 0.669560, -0.396419, 1.478083, -0.858730, 1.618151, -0.790242, -0.107981, -0.960111, -0.220593, -1.635601, -0.259124, 0.501547, 0.087147, -0.309044, -0.347772, -1.212590, 0.841336, -0.721862, 1.516998, -0.006928, -0.494713, 0.833561, 0.451793, 0.837156, -0.254606, 0.089599, 0.911841, -0.740064, 0.620478, -0.642798, -1.569077, 0.123068, -0.434907, 1.568962, 1.555829, 2.127965, 0.351766, -1.284559, 1.359767, 1.442204, -0.840695, -0.463315, -0.723744, 0.806839, 0.143425, 1.381059, -1.010218, -0.795730, -0.121016, 0.375328, -0.162401, -0.633000, 0.747063, 0.085978, 1.816127, -0.501502, -0.507550, 0.924022, -0.746933, -0.033771, -0.283509, -0.447803, -2.295218, -0.276337, 0.524660, 0.569275, 0.274995, -0.682910, -0.205559, 0.895590, 0.297320, -0.300603, 0.503471, -0.525355, -0.754506, 0.650331, 0.602531, -1.774355, 0.310153, -0.453766, 1.702149, -0.123849, -0.835878, 1.328351, 0.579231, -1.104562, 1.098184, -0.709438, -1.300756, 1.331591, -0.029225, -0.191343, -2.165961, 0.341162, 0.186482, 1.035492, -1.458163, -1.042048, -0.084827, 1.635345, -1.058154, -2.515314, -0.774969, -0.873007, -0.337382, -2.764482, 0.396669, 0.026367, 0.977886, -1.675156, -0.295895, 0.961347, -0.193771, -1.232363, -1.395568, 1.228016, 0.169373, -0.607413, 0.846884, -0.230924, 0.216920, 0.369623, 1.028052, -0.188690, 0.469493, -0.206884, 1.072878, 0.821573, 0.978262, 0.107876, -0.558954, -0.310885, 1.942254, 1.565964, -1.059694, 0.306540, 0.813537, -0.389594, -0.480042, 0.887445, 1.002834, 0.185267, -1.269850, -0.858702, 0.117193, -0.960910, -0.438533, -1.158435, -0.021574, 0.410309, -0.254446, 0.480523, 0.456429, -0.935506, 2.015416, -0.587284, -0.151799, 1.086539, -0.429865, -0.549879, 0.101188, -0.009451, 1.517862, 0.550616, -0.179284, 2.432602, -0.299765, -0.104424, -1.147942, 0.440644, -0.434821, 0.081770, 0.470288, 0.707236, 0.199223, 0.146954, -0.524365, -0.425456, -0.994704, 0.366282, -0.121806, 0.122624, 0.845056, -0.919393, -0.359879, 0.956572, 0.291986, 0.103772, 0.551228}, - { 0.151411, -1.717748, 0.909832, 0.848680, -0.174213, 1.263088, -0.547166, -0.254465, -0.393627, 0.981863, -0.063628, 0.768435, 0.676767, -1.886077, -0.477599, 1.720591, 0.445139, 0.211770, -0.573490, 0.197628, -2.429413, 1.403641, 0.180901, -0.551383, 0.141266, -0.805328, 0.909336, -1.198049, -0.647150, -0.041898, -0.424140, -1.486209, 0.541744, -0.650204, -0.650450, -0.266668, -0.470350, -0.322348, -0.230794, -0.632877, 1.826589, 0.257119, -1.900059, 0.178371, 0.357649, 0.174800, -0.003306, 0.580129, 0.074534, 0.170380, -1.079589, 0.116693, 0.798690, -0.125644, 0.324565, -1.273186, 0.786542, -1.503500, 1.298266, -1.386859, 0.943515, 1.528456, -0.241123, -0.397135, -1.440818, 0.518590, -1.596600, 0.046940, -0.393789, -1.503666, 1.256149, -0.077771, 0.641385, 0.609378, -1.484205, 0.483218, -0.119101, -1.565513, -1.322506, 0.277597, -0.309835, 0.200702, 0.062800, 0.200795, -1.136239, -0.040700, 1.223090, -1.810949, 1.076914, -0.895120, 0.734914, -0.113220, -0.819583, -1.268599, 1.676691, -1.244039, 0.155282, 0.420703, -0.649007, 0.236376, 0.539776, 1.063199, -1.334928, 0.970890, -0.434281, 1.358534, 0.422500, 0.864670, 0.160401, 1.680198, 2.152479, -0.633744, 1.060115, 0.532378, -0.211181, -0.320317, 0.873093, 0.222334, 0.783755, -0.610613, 1.240386, -0.014305, 0.751334, -0.859434, 0.476986, -1.686807, -0.134107, 0.761968, 0.374331, 0.897440, -1.702061, 1.573867, -0.263693, -1.161328, 0.491045, -0.007748, -1.847060, -0.449268, 1.504047, -1.042101, -0.922779, -0.600547, -0.279846, 0.447892, -0.958392, -0.670416, -0.279738, 1.925528, 0.387071, 0.087156, -0.467199, -0.050457, -0.818867, -0.709160, 0.641431, 0.418357, 0.899433, -0.108944, 0.666666, 1.292046, 0.750602, 1.089446, -1.249858, 0.011890, -0.589511, 0.258431, 0.257665, 0.245017, 0.844059, 1.980735, 1.970554, -0.618476, 1.668040, 0.149042, -1.758637, -0.510663, -0.641908, -0.462898, -0.663343, 2.079369, 0.404049, 0.323880, 2.476227, 0.527205, -1.177533, -0.323164, -1.227292, 0.149659, 0.838142, -1.732197, -0.170381, -1.812745, -0.669329, 0.408222, 0.189581, 1.780860, 1.089348, -0.418127, 1.418004, -1.832505, -1.959258, 0.481414, -0.743271, 0.046968, -0.176478, 0.943366, 0.263546, -1.735088, -0.637229, -0.419577, 1.034221, 1.286572, 1.237679, -0.345898, -1.590086, 1.615048, 0.129258, -0.345910, 1.942529, -0.074625, -3.001926, 0.771956, -2.074967, 0.406719, -1.364377, -1.481638, 1.547148, -0.303939, 0.789367, -0.303160, -0.830100, 0.699050, -0.084270, 0.141094, -0.033963, 0.667123, -0.558370, -0.540293, -0.819283, 0.791856, 0.172812, 0.654527, -0.360412, -0.248002, 0.697636, 0.571203, -1.788391, 1.050033, 0.760023, 1.536373, -0.658803, 0.302729, -0.068964, -1.207751, 0.496216, 1.059681, 1.168080, -1.060535, 0.106893, -1.464354, -0.001107, -0.642644, -1.127898, -1.015904, 1.059593, -1.373190, -1.879398, 0.050528, 0.697422, -2.616667, 1.425313, -1.698050, -1.480625, -1.119680, 0.552761, 0.788110, 0.105646, 0.118271, 1.328090, -0.029821, 0.442615, -0.281911, -1.071998, -0.104038, 0.686019, -1.131257, 2.240062, 0.585562, 0.762856, 0.194447, -0.364963, 0.871979, 0.264676, -1.065846, -0.387478, -0.712954, -0.842447, -0.366122, 0.338344, -0.384794, -1.241136, 0.724946, -0.056380, -0.860886, 0.140001, -0.957593, -0.939671, -0.371561, -1.603250, 2.313947, -0.821044, -0.441503, -0.054414, 0.679068, -0.144911, 1.152604, -1.928547, 0.058827, 0.747229, 0.506935, -0.018938, 0.781106, -0.521051, -0.295060, -0.129451, 0.750224, -0.446751, 1.368930, 0.600666, -0.671634, 0.559674, 2.402524, 0.166724, 1.174885, -0.040720, -0.861511, -1.053058, -0.826144, 0.752826, -1.898661, -0.654893, 1.444387, -0.836840, 0.794659, -2.394781, 0.783784, 1.657255, -0.590490, -0.788307, -2.466543, 1.325715, -1.255886, 0.391333, 0.090129, 0.348212, 0.506921, -0.385958, -0.386371, 0.521172, 0.807283, 0.695138, -1.416977, 0.054994, -0.115045, -0.187976, -0.567175, -0.835807, -0.310370, 0.365322, 0.522698, 0.902349, 0.154241, 0.581073, -0.533368, 0.245366, -0.341671, -0.121553, 0.558985, -0.733360, 0.816843, 0.167325, -2.306233, 0.417114, -0.200217, 0.480988, 0.251917, 0.404310, 0.891883, 1.690375, 0.546723, -0.876896, -0.338794, -0.540062, -1.604896, -0.612307, 0.126879, 1.338179, 0.245178, -1.480240, 1.167861, -0.723366, -0.795922, 0.355822, -0.657796, 0.478914, 2.208684, 0.176199, 0.046182, 0.492262, 2.924647, 0.172192, -0.276907, 1.256889, 0.455354, -0.424214, -1.372728, 1.776020, 0.096437, 0.005136, 1.061714, 0.750409, 1.840798, 0.441672, 1.163914, -1.681555, 0.535777, -0.307737, 0.013793, -0.123096, -0.601400, -1.924240, 0.427502, -0.172043, 0.945961, -0.116054, 0.344066, -0.643068, -2.248785, 0.749512, 1.075832, -0.108083, -0.173580, -0.004179, 0.558725, 0.323521, -0.109937, 0.012161, 0.371929, 0.115105, 0.405723, -0.193953, 0.063962, -0.141861, -0.904359, 0.079636, -1.149282, -0.539980, 0.275770, 0.506583, 1.593730, 0.773776, 1.622363, -1.558430, 0.364846, 0.031692, 1.005553, 0.278902, 1.013664, 0.451349, 0.191254, -0.041452, -0.048874, -1.187084, 0.052611, 0.049112, -0.001410, 0.389143, -0.306156, 0.198004, -0.794664, -1.541766, 2.126101, -0.005947, 0.499504, 1.099975, -0.089918, -0.709029, 0.617582, 0.240173, -0.649476, -0.525474, -1.368807, -0.516472, 1.750974, -1.238836, -0.171003, 1.210672, -0.563741, -1.581995, -0.081798, 1.899172, 0.942788, 0.158433, 0.031942, -1.304583, -0.549445, 0.183839, 1.168524, 0.323713, 0.690414, -2.620455, 0.719986, -1.284407, -1.085863, -0.673512, -0.855604, 0.886289, -1.839884, -0.095656, -1.055911, 0.561473, -0.027664, 0.637259, 1.985378, -1.421781, -0.695649, -1.064844, -0.211294, 0.164986, 0.600754, 1.632375, 0.108151, 0.556854, -0.610899, -1.760017, 0.007612, 0.069061, -1.400032, 0.244703, -0.425351, 1.218782, 1.624288, -0.651544, -1.367540, 0.560642, 0.457432, -0.156185, -0.470208, 0.230932, 0.984577, 1.489733, 0.956965, 1.675116, -0.398476, -1.136057, -0.873072, 0.154516, 0.670271, -1.060664, -0.343741, -0.839005, 0.011171, 0.468217, -0.045388, 1.647911, -2.634171, -0.119654, 1.694921, 1.020362, -0.480585, 1.106553, -1.052089, -0.827536, -0.797181, -1.705137, -0.141706, 0.110189, -0.733175, 0.452065, 0.193283, 0.580296, -1.742185, 1.371229, -0.443629, 0.913306, 1.475769, 0.637729, -0.997708, -1.172737, -0.752628, -1.230406, -1.369031, -1.706926, 0.889519, -0.354097, 2.076213, -0.862332, 0.229544, -0.347855, -0.142503, 0.792251, 0.353264, 1.137731, -1.046314, -0.394459, 0.289608, 2.183617, 0.751338, -2.040767, -0.833179, 1.173618, -0.015052, -0.333850, 0.622007, 1.140466, 0.129555, 0.112669, 0.047143, 1.604949, -0.591861, -1.123969, 0.414655, 0.514866, 3.112215, -0.273679, -0.842384, 1.197500, -0.417470, -0.289272, 0.356553, 0.352176, 1.748755, -0.636332, -0.219431, -1.275768, 0.821800, 0.411276, -1.084816, -0.104831, 0.978778, -0.079374, -0.758707, -1.041703, -0.811885, 0.568468, 0.142328, -1.442846, -0.740809, -1.390610, 0.960397, 0.641545, -1.344895, 0.377551, 1.243359, 0.323164, 0.790334, 0.318971, 1.204926, 1.008813, -1.542042, -0.512339, -3.494940, 2.970196, 1.192351, -0.276281, 0.961766, -0.304817, -0.085067, -0.454574, 0.936839, -0.275225, 0.846893, -1.131632, 0.282077, -0.431800, 0.614265, 1.436056, 1.008387, -0.041871, -0.276271, 0.661478, -0.937777, -0.131313, -0.914097, -1.772589, -0.380764, 0.127636, 0.117399, -0.417521, 0.581392, -0.467899, 1.401995, 0.657828, -1.243287, -0.272136, -0.642235, -0.061544, 0.040024, -0.768779, 1.344888, 0.067408, -0.300552, 0.807090, -0.222115, -3.132678, 0.293319, 2.168084, -0.322691, -0.405317, 0.144908, 0.459925, -1.140171, -1.965270, 0.777280, -1.382744, -0.431707, -0.148028, 0.074589, -0.004128, -0.826741, -0.582074, -0.624106, -0.173735, 0.068894, -2.155122, 1.139436, 0.543527, 0.707311, 0.592831, 1.143589, -0.822057, 0.197751, -0.078761, 0.154831, 0.982708, -1.766908, 0.009547, -1.667241, -0.742033, -1.793160, 0.487551, -0.013998, 1.326609, -1.084921, -0.987654, -0.827264, -1.869796, 0.753557, 0.462206, -1.814811, -0.756156, 1.033233, 2.057476, -0.700060, 0.972193, -1.499863, 0.633563, -0.334775, -0.859817, -0.109452, -2.183742, -0.047591, -1.268293, 0.197528, -0.324231, 0.138681, 0.440655, 0.904167, 0.656299, 1.502257, 0.413361, 0.946684, -0.433837, -1.734954, 0.880230, -1.216196, 1.118854, 0.124125, 0.354108, 0.374823, -1.280332, 0.931735, 0.228874, 0.650582, -0.937241, 1.865271, 0.971699, -0.727175, 0.035941, 0.731710, 1.070928, -0.065731, 0.016068, -0.662763, -1.645852, 1.397150, -1.617731, -0.588975, 0.474534, -0.466399, 0.337945, 1.484585, 0.967136, 0.379582, -0.747725, 1.635987, -0.591135, -1.706094, -0.241856, -1.180214, 1.967696, -0.778538, -0.148619, 1.000589, 0.221945, 0.822229, 1.416634, 0.662530, 1.315496, 1.237587, 1.549368, -0.372054, -0.064328, 1.692919, -0.631261, 0.446827, 1.141682, 0.979634, -0.613424, -0.224099, -0.089788, -0.792563, 0.974030, -0.016820, -0.261279, -2.080174, 0.479287, -2.069013, 0.003997, -0.976067, 0.624864, -0.519404, -1.217811, -0.850128, -0.509212, 0.351246, 1.303975, 2.022148, 1.721668, -0.230513, 0.577073, 0.846752, -0.042613, 0.616684, 0.556806, 1.412769, -1.594928, 0.443138, -0.970708, 1.583317, -0.991293, -1.655646, -0.266952, 0.605215, 0.443863, -0.950010, 0.287517, 0.404037, 0.380938, -0.326422, -0.869853, -3.260942, -0.159687, -0.585286, -0.261134, -1.438933, 0.037016, 1.200218, 1.172841, 0.387065, -0.061019, -1.915791, 0.455611, -1.069905, 0.042978, 1.858740, -0.406357, -1.502004, 1.522375, 0.787929, 0.249217, 0.673623, -0.031704, -1.506824, 1.470130, -0.367733, 0.314551, 0.687389, -1.721909, -0.005205, -1.293143, 0.033164, 0.003959, -0.095525, 0.405336, -0.430537, -1.250442, -0.038731, -0.743131, -0.087768, -0.612557, -0.461694, -0.527271, 0.598197, 1.032024, -0.638948, 1.544323, -1.565819, 0.957444, 0.963946, 0.169234, 1.257271, -0.530528, -0.995093, 0.497244, 0.928703, -0.534419, 0.250136, 1.127726, 0.034000, 1.409479, 2.575508, 1.352108, -0.187183, 0.401729, -1.443765, 0.445160, 1.091486, 0.011641, 1.351885, 2.625031, 0.319238, 0.224033, -1.333030, -1.583303, -0.562586, -0.289074, -0.696948, 0.657639, 0.440769, 1.455085, 0.372165, -0.499469, -0.526737, -0.140814, 1.153398, 0.511900, -0.342377, -0.426796, 0.642356, -0.609915, 0.614446, 1.366688, 1.288403, 1.621620, -0.430891, 0.388362, 0.033079, 0.571725, 0.252109, -0.206039, -0.472932, 0.360900, 0.969026, 0.775988, 1.251063, -0.792086, -0.657904, -0.785394, -0.859467, 0.770422, 2.618583, -0.174329, -0.519848, -1.766748, -0.909019, -0.420667, 0.410109, -2.156502, 1.123483, 0.427932, -0.816809, 0.322442, -0.269481, 0.210848, 0.248341, -0.122163, -2.050081, 0.137063, 0.233837, -1.047623, -0.491513, -0.315777, 0.145143, -0.037840, 1.063247, -0.978406, 0.305909, 1.539615, -0.752591, -0.398933, 1.659417, -0.018650, 1.646190, -0.609482, 1.385304, -0.824717, -0.131073, -1.987740, -1.099530, -0.447858, -0.629929, -0.833090, -0.480943, -0.412576, 0.136583, -1.563759, 1.148288, 1.133531, -0.662231, 1.281733, 0.584244, -0.536365, -0.594761, -1.700221, -0.653790, -1.280973, -0.545295, -0.627708, -0.639827, 0.036035, -1.412439, 0.586826, -2.069422, -0.989662, 0.827684, 1.129696, -1.145765, -0.274429, 0.625112, -1.378652, 0.422372, 0.486646, -0.116105, 1.642007, -3.108084, -0.128004, 1.866247, -0.536782, -0.715783, -2.136161, -0.967485, 0.738615, 0.302135, 0.469361, 0.092477, -2.030030, -0.955164, -0.392793, 0.282041, -0.161461, 0.736598, 1.081146, 0.195199, 0.296319, -0.310317, 0.975533, -0.658177, 0.069021, -2.309853, 0.683427, 0.611843, 0.963657, -0.302502, -0.962839, 0.460535, 0.116526, 0.403433, -0.785807, 0.443634, -2.392590, 1.463112, -1.296747, 1.300816, 0.233674, -1.186041, -0.221624, -1.593640, -0.500959, -1.441307, 0.647307, 0.729133, 2.141546, -2.192402, -1.631594, -0.028676, -0.026518, 0.256730, -2.148918, 0.331072, 0.043211, 0.866198, -0.702177, 1.580596, 0.967649, 2.396077, -1.440056, 1.031600, -1.558440, 0.406638, -1.604346, -0.160178, 1.928732, -0.366455, 0.141204, 0.087810, -0.449940, 0.727186, 0.567865, 1.196789, -0.237623, -0.192799, -1.283107, 1.791807, -0.195901, -1.552035, 0.308000, 1.009992, -0.979088, 0.533651, -0.049448, 1.249945, -0.806597, -1.041868, -0.333245, -0.148971, -0.246378, 0.388508, 0.856653, 1.435465, 1.571309, 0.552882, -0.951065, 1.196831, 0.331941, 0.162156, -0.480830, 0.242210, 0.667292, 0.883026, 1.004992, 0.049473, 0.926830, -1.043784, 1.475257, -1.773553, -1.767515, 0.384970, 0.495985, 2.247873, -0.374780, -0.218050, -0.468893, 0.615404, -0.977824, -2.056118, 1.297835, 0.429678, 0.967748, 0.489354, -0.610881, -0.827885, -1.853078, 0.169790, -0.808598, 0.777790, 1.504687, 0.137396, 0.131500, 1.981949, -1.315479, 0.440040, 1.541188, -0.022851, -0.237974, -0.446490, 1.867827, 0.715977, -0.312434, -0.495572, 0.160176, 1.110181, -0.412859, -0.619237, -0.648672, 0.650035, 0.419362, 0.242858, -0.661244, -0.807327, -1.005424, -0.169603, -1.227158, -0.993891, 0.642803, 0.091784, 1.777272, 1.469906, 1.605859, 2.148476, -1.481710, 0.885544, 0.556107, 0.717349, 0.638232, 1.429017, 1.430840, -0.800737, 1.213299, 0.963803, 1.649853, 0.644943, 0.549690, 1.281436, 0.556080, 0.883845, 0.455709, 0.875176, 0.277336, 0.139173, -0.753061, -0.790369, -1.334549, 2.365704, -1.716735, -0.412343, 0.171138, -0.600431, -0.113580, -0.882063, 0.431266, 0.859805, 1.993720, 0.087134, -1.715291, 0.040891, 0.837202, -0.367401, 1.597178, 0.379371, -0.553276, -0.194361, -0.984573, -0.639560, -0.389002, -0.194963, -0.105979, -0.379813, 1.158879, -0.485009, -0.456443, -0.008478, -0.129951, -0.338005, -0.855485, 1.883083, -0.638328, 0.669338, 0.246320, -1.106300, -0.150586, -2.072219, 1.296040, -0.843536, 0.615161, -0.391371, 1.312287, 0.733162, -1.284450, 0.080678, -0.161425, 1.616953, -2.267587, 0.438457, 0.095850, -0.225857, 1.612563, -0.431626, 0.483272, -0.804529, 0.388065, -0.135878, 0.007941, 0.235628, 0.602654, 0.799109, -1.022514, 0.265781, -0.520996, 0.514748, -1.280793, 0.161540, -1.151901, 0.224632, -1.812074, -1.374196, 1.201244, -0.242333, 0.285198, -0.335799, 0.085939, 0.763735, 3.433781, 0.527806, 1.208293, 0.160437, -2.301588, -0.128577, 0.890675, 0.107967, 1.659151, 0.602907, 0.613666, -0.997615, 0.089766, 1.519357, 0.342457, 1.556242, -0.176575, 0.700751, 0.182382, 1.294153, 0.581194, -0.912300, 0.779013, -0.385988, 0.867294, -0.327932, -0.860455, 0.886136, 1.250238, -0.251386, 0.734639, -0.527928, 1.161993, 1.060575, 0.583822, -0.337176, -0.714339, -0.711807, 1.310879, 1.224313, 1.427658, 0.111986, 0.394926, -1.447911, -0.047932, 0.836130, 0.278535, 0.111044, 0.828804, 1.828083, 1.202710, -0.647944, 1.496136, -0.366991, 0.264564, 0.682456, -0.571595, 0.142886, -0.410068, 0.579050, -0.416605, 0.389008, -0.214005, 0.452105, -0.722499, 0.414563, -1.287882, 0.434400, 0.475414, 0.402408, 0.721134, 0.625279, -0.917812, 0.829910, -1.273280, -1.189002, -2.007599, 0.583396, 0.041159, -0.378034, -0.632247, 0.998427, 0.504902, -0.348200, -2.090777, -2.028949, 1.328310, -0.308476, -0.432006, 0.530076, -0.636010, 0.369604, 0.828290, 0.690999, -1.012520, 0.980470, 1.071087, 1.109447, 0.089277, -1.268561, 0.599024, 0.415327, 0.948014, 0.539933, -1.637851, -1.963205, 0.334902, -0.517138, 0.537172, 0.614998, -0.818838, 0.532011, -1.388921, 1.140687, 0.023902, 1.088440, 1.163957, 0.295457, 1.174157, -0.847500, -0.167534, 0.174948, 0.286844, 0.101167, 0.724233, -0.149970, -0.697497, 0.149954, -0.883345, -0.804444, -0.367836, -1.022286, 0.911859, -0.600642, -0.253286, 0.631167, -0.466737, 0.263938, -0.375434, 0.400988, -0.067286, 1.317547, -0.606815, -0.881476, -0.231443, -1.579414, 1.869892, -1.075857, -0.478123, -1.531588, -0.668871, -0.085817, 0.744501, -2.457935, 0.157192, 0.679550, -1.115324, -1.434248, 0.876260, -0.256425, 0.829779, 0.784787, -1.569260, 2.092673, -0.880518, 2.306137, 0.337120, -1.584850, -0.037218, -1.033442, 0.461906, -0.342428, 0.128699, -1.850643, -1.417094, -0.848967, 0.940517, 1.061747, 0.586150, 0.369965, 0.292287, -0.871249, -0.379161, -0.949885, -0.316175, -0.363976, -1.103951, 0.638532, -1.631902, -0.655155, 1.048806, 2.264644, 0.171992, 0.259937, -0.866850, 0.455053, 1.079436, 0.469649, -0.862083, -0.772503, -0.311175, 0.290997, 0.084981, -0.794329, -0.848558, -0.443129, -0.855902, -0.744235, 0.283389, -0.977369, 0.018512, 0.308764, 1.742928, -0.771883, -1.044350, -1.180114, -0.807714, -0.712354, -0.009066, 1.756420, 0.911586, -0.536005, -1.423157, -1.000850, 2.008628, -1.011761, -1.969266, -0.239706, -0.933498, 1.007841, 0.928734, 0.985839, -1.013609, -0.569648, -1.840642, 1.422121, -0.182127, -1.804075, -1.747769, -1.180761, 0.674315, -0.777466, -1.195624, -0.199987, -1.605712, 2.825786, -0.676643, -0.736513, -2.855901, 0.972451, -1.313022, 0.942516, 0.093836, 1.984980, 1.383736, -1.199409, 0.468913, 1.012416, 0.931257, -1.298579, 0.428848, -0.220732, -0.095419, -1.019085, -0.578292, -0.834442, -0.553882, 1.164513, 1.830658, 0.738826, -0.041141, 0.010243, 0.684312, 1.065866, -0.034941, -1.622813, 1.101196, -1.447571, 0.179526, 0.122613, -0.900722, 1.546346, -0.393113, -0.770695, -0.701626, -1.229136, 0.540753, -0.824223, 1.833744, -0.302885, 0.124438, 0.617691, -1.463573, -1.183290, -0.605214, -0.459372, -0.700457, 1.110836, 0.466711, -2.236424, -0.750774, -0.481110, -1.252076, 1.101128, -1.650520, -2.257799, 0.562575, -1.714915, -0.138821, 0.821182, -1.592103, 1.197915, -0.898488, 0.302395, -0.708149, -1.498478, 0.881304, 0.700794, 0.345286, 1.014741, -1.593535, -2.013865, 1.728748, -0.135692, 0.930107, -0.820617, 0.026874, -1.930124, 2.700151, 0.891432, -0.145520, -1.069120, 1.274816, -0.492449, 0.306325, 0.418526, 1.218977, -1.276043, -1.263130, -0.753779, 0.389440, -1.015473, -1.587723, -0.089625, -0.084135, 2.111999, 0.160373, -1.461246, -0.644928, -0.728250, -0.121916, -1.254095, 0.475542, 0.486681, 1.500584, -1.211749, 0.431825, 0.363983, 1.414814, -0.863432, -0.362260, -1.629633, 0.313051, -0.778438, -0.938155, -2.192276, -0.339102, -0.805492, 1.086519, -0.747436, 0.261136, -0.497273, -0.305034, -0.300747, -1.828027, 1.639252, -0.808834, -2.095942, -0.386181, -0.074562, 0.739828, 1.030871, 1.048177, 1.076433, -0.807230, -0.951388, -0.385629, -1.668718, -0.511549, 0.180240, -0.188116, 0.950435, -1.735661, -1.275971, -0.162901, 0.772043, 0.660407, -0.711768, 1.989772, 0.304233, 2.586478, -0.967929, 0.642407, -0.681358, -1.026007, -1.144058, -0.399421, 0.207902, 0.760064, 0.712910, 0.198871, -0.646294, 1.095235, 0.327370, -0.901982, -0.445791, 0.935103, 2.652765, 0.554392, 0.590205, -0.627425, 0.904969, -0.000319, -0.363271, -0.783494, 0.678674, -1.262784, -0.289933, -0.473156, 0.876313, 0.885079, -0.985610, -1.154753, 0.046831, 1.662890, -1.920565, 1.396757, 0.414372, 0.530894, -0.131706, 0.603347, -1.264205, -0.744141, 1.897450, -0.951547, 0.179549, -1.100138, -1.318228, 0.470643, -1.870068, -0.572832, -1.048198, 0.953842, 0.711492, 0.459256, -0.031690, -1.226675, 0.315429, -0.999329, -0.274379, -1.416304, -0.443469, 0.078901, 0.002862, 0.729578, -0.376021, -0.603748, 2.383315, -1.025854, 0.194282, -0.067048, -0.984640, 1.169043, -0.251019, -1.532545, -0.746885, 1.410087, -0.443665, -0.175857, -0.273662, 0.863418, 0.862249, 0.802349, 0.703123, 0.971407, -0.577774, -0.757201, 0.083554, 0.042557, -1.039913, 0.259161, 2.039142, 1.390831, 0.670925, -1.484718, 0.824163, 0.476919, -0.217069, 1.442253, -0.712988, 0.637698, 0.864159, -0.092024, -0.564178, -0.484391, 1.253750, 0.695249, -1.395388, 0.932556, 0.159658, 0.441510, -0.416482, -1.163350, 1.897362, -0.644310, 1.599509, 0.312932, 0.008405, -0.871520, -1.471825, -0.672398, -0.338637, 0.148145, 1.280103, -0.755753, -0.046272, -0.765933, 0.031676, 1.347214, -0.995345, -0.697547, -0.249083, -1.171885, -0.656948, -0.730077, 0.177574, -0.509384, 0.955700, 1.031737, 0.387011, -0.477425, -1.118183, -0.339461, -0.849151, 1.244257, 0.366522, 0.890652, -0.023558, -0.696376, 1.598487, -1.256609, -0.423351, -0.391514, 1.230060, -0.710916, -1.315505, -0.587783, 1.954795, -0.395267, 1.210412, -0.066768, -0.097469, -0.425310, 0.299495, 0.679480, -1.247764, 0.325933, 0.206238, 0.752360, 0.189645, -0.866352, -0.354004, 0.817780, -1.962675, -0.866930, 0.558272, -0.542197, 1.047554, -0.324633, 0.086634, -2.251025, 0.977707, 0.871280, -0.847600, -1.259875, -0.869461, 2.245332, 0.515240, 0.530367, -1.700662, 0.825771, -0.357679, -1.941503, 0.954512, 1.176670, 1.406952, -0.912146, 0.752518, -0.779604, 0.210123, -1.917050, -0.161643, -0.530571, -0.310055, 0.904637, -0.764179, -0.593298, 1.261778, 0.126367, 1.195165, -0.760148, 0.240767, 0.317241, 1.506749, -1.051724, 0.771141, -0.345891, 1.254328, -0.786451, 0.427449, 0.005480, -1.257814, 0.027594, 1.751105, -1.673667, 1.829800, 1.009611, -0.322554, -0.759592, -0.185050, 0.235965, 0.295082, 0.412257, 1.453477, 0.747958, 1.578566, 1.838969, 0.439152, -1.850550, 0.843941, -0.419722, 0.535404, 0.245631, -1.279973, -1.415028, 0.295772, 1.134589, 0.845489, 1.857125, 0.546686, -0.494079, -0.741180, -0.740906, 0.282494, 0.514529, -0.817479, 0.606780, -1.769198, 0.334035, 1.484747, 2.013929, 1.141725, 0.345475, 1.587229, 0.542341, -1.307993, -1.001196, -0.115745, 1.097439, -0.416687, -0.957713, 0.984779, -0.882273, 0.227464, 1.948078, -0.594893, 0.273279, 0.150351, -0.291597, -0.581576, -0.314636, -0.506804, -0.198655, 0.488624, -0.490262, 0.615736, 0.358045, -0.468407, -2.010782, -0.241800, 1.026380, 0.406348, -0.229901, 0.507281, 0.187209, -0.123368, -1.006037, 0.675560, 0.844457, -0.181800, -0.209714, 0.786588, -1.318712, 0.478101, 0.251958, -0.322600, -0.252246, 1.048908, -2.297730, 0.126493, 0.024182, 1.411635, 0.740772, -1.391004, -1.270932, -0.219291, 0.395338, 0.817734, -0.122590, -0.833913, 0.720808, -0.528876, -0.043212, -0.604210, 1.175467, 0.951279, 2.458029, 1.474258, 0.430827, 0.805542, -0.397151, 1.631890, -0.551148, 0.539333, 0.946067, 1.177141, -0.343673, 0.445176, 0.999059, 1.667819, -0.096370, -0.344939, 0.097185, 0.054085, 1.037682, -1.665685, 2.161103, -0.103231, 1.970680, -0.883356, 0.012482, 0.008825, -0.210454, -0.219952, -1.555556, 1.161943, -1.176715, 0.849836, 0.641285, -1.106487, 1.429574, -0.983895, 0.652997, -1.130564, -0.653551, 1.123931, -0.145873, 1.632911, 1.889780, -0.792106, 3.456667, -0.221773, 0.136027, 0.801799, -0.944674, 0.016617, -1.219484, -0.231857, -0.127880, -0.222590, 2.182716, -0.428782, -0.108217, 0.342682, -1.094192, 1.169059, -1.166684, -0.570844, -1.349328, 0.286315, -0.131264, 2.031071, -0.023460, 1.540360, -0.158389, 0.911663, 0.777800, -0.227047, 1.892958, 0.065559, -0.367824, -0.363732, 0.864146, -0.083803, -0.599298, 1.012201, -0.333190, 0.316313, 0.690091, 0.019004, 1.718525, 1.370958, 1.684054, -1.092116, -1.554388, -0.675437, 1.160529, 1.698653, -0.351412, 0.133481, -1.242962, 1.243482, 0.391904, -0.074800, 0.060452, 0.644271, 0.291430, 0.434484, -0.474073, -0.995153, 0.449744, -0.399056, -0.877778, 1.176558, -0.255713, -0.363824, -0.749723, 2.022985, -0.497326, 0.396572, 1.266560, 0.835956, 1.743168, 0.503253, -0.978647, -0.482949, -0.603436, 0.493102, 0.510286, -1.039662, -0.641933, -0.106287, -0.582589, 0.579312, 1.523883, -1.706522, 1.513031, -0.920179, 0.150480, -0.422607, -0.417221, -0.312149, 0.542253, -0.349362, 1.441691, 0.685114, 1.525167, 2.009351, -1.868999, 1.704044, -0.223708, 0.168386, 0.969190, -0.248081, 2.193197, 1.560844, 0.386640, -0.213051, -0.184968, 0.762360, -1.463792, -0.922307, -0.288376, -0.196009, 0.156046, 2.172352, -0.848300, 1.220320, -0.792702, -1.136692, 2.215691, -0.153864, 0.286069, -0.812594, 0.298075, -1.202469, -0.236214, 0.705619, -1.564377, 1.530232, 0.414244, 1.805495, 0.105598, -1.559564, -0.568114, -0.424235, -0.982380, -1.540543, -0.311166, -0.072925, -0.310368, 0.221844, 0.570143, -0.243554, 1.697498, 0.154711, -0.020639, -1.390434, -0.771523, 0.200474, -1.208269, 0.051736, -0.304022, 0.268504, 0.866436, -1.364017, 1.201893, -0.761123, -2.406745, 2.427450, 0.864836, -0.472625, -0.074018, 0.948955, 0.271959, -0.149228, -0.011204, -1.012391, -0.351132, 1.311660, 2.006977, -0.471588, 1.159881, 1.105405, -0.087754, -1.319337, -0.243051, 0.005901, -0.018347, 1.414414, -0.732186, -1.197505, -0.772784, 0.104032, -1.161635, 1.105085, 1.020762, 0.113826, -1.067081, 0.611506, -0.955578, -1.317364, -0.269073, -1.401878, 0.465963, 1.405141, -1.050770, -0.979611, -0.982172, -0.564593, 0.990537, -1.177681, 0.533569, -0.989890, -0.301936, -0.793206, 2.938584, 1.389317, 0.826620, 1.308187, 1.630329, 2.015947, 0.800719, 0.561168, 0.361277, -0.889396, -1.412912, 0.547316, 0.530411, -0.586274, 0.990522, 0.779570, -2.305222, -1.747106, 0.242689, -1.076374, 0.011981, 1.200388, 0.767312, 0.273618, -0.377952, -0.237595, -0.615989, 0.001210, 0.835875, -2.594476, -0.605346, -2.689341, 0.290512, -0.441304, -0.657569, 0.665092, 0.288459, -0.877329, -0.369063, 1.771894, -1.892782, -0.064206, -0.743726, 0.506057, 0.329482, -2.479336, -0.009460, -1.408758, 0.260391, 1.044970, 0.578361, 0.190446, 1.581922, 0.446682, -1.233211, -0.243590, -1.762073, -0.631644, -0.358745, -0.963416, 0.881225, 0.262626, -1.100581, 0.913802, -0.172814, -1.403307, -0.601189, -0.284063, -0.266015, -0.648676, -0.149352, -1.739343, 0.093857, -0.991921, -1.045012, -0.145028, -0.626844, 1.402895, -0.498727, -0.602846, 0.069445, -1.037642, 0.269368, 1.276272, 0.895059, -1.095688, 1.328289, -1.504636, -1.740054, 1.146310, 0.079384, -0.145240, -1.118396, -1.519803, 0.738284, 0.575878, 0.289376, -0.397021, -0.231209, -0.613804, -0.572289, -1.420430, -0.771788, -0.457950, 1.497076, -0.936089, -1.090223, 0.142812, 0.739109, -0.521376, 1.921055, 2.074366, -0.780748, -0.740247, 0.263445, -0.702362, 1.251071, -0.254546, 0.064331, -0.653332, 0.686888, -0.402335, 0.137843, 0.317650, -0.674416, 1.089572, -2.001667, 0.261383, -2.432359, -1.073638, 0.924505, -0.611932, -0.016329, 1.397536, 0.633203, 1.861943, -0.345041, -0.533164, 0.092839, 0.863224, -1.178895, -0.661153, 0.094856, -0.238199, -0.786736, 2.116413, 0.202473, 1.559708, -0.385741, 0.393182, 0.624726, 1.192813, -0.558253, -0.002165, 2.342285, -1.334071, 0.778868, 1.551653, -0.310800, 0.629938, 0.403468, -0.818397, -1.650094, 0.786572, 0.708272, 0.172408, -1.151766, -1.494061, 1.569803, 1.020125, -0.352174, 0.426373, 0.245647, 0.030273, -0.342831, 0.320092, -0.624147, -1.586880, -0.169697, -1.221789, -0.009831, -0.527457, -1.079567, 0.838521, -2.387399, 0.644446, 1.144450, -0.891460, -1.048637, -0.762541, 0.162508, 1.282670, -0.866938, -1.618321, 0.787862, 0.539111, -1.129999, 0.210551, 0.464914, -1.056394, 1.151830, -0.774927, 0.689434, -1.768079, 1.548977, 1.405319, -0.806634, 0.575779, -0.279608, -0.018987, -1.263172, -2.508953, -0.646288, -0.209856, 1.785247, 0.544763, 0.748403, 0.220679, 0.653000, 1.398443, -1.383224, -0.508613, -0.245704, -1.042482, 0.758246, -0.144704, -1.094316, 0.401564, -0.485318, 0.374911, -1.135903, -0.912331, 1.044561, 0.159319, -0.513296, -0.467447, -1.043929, 0.166430, 1.407784, -2.331405, 0.280403, -0.185867, -0.822492, -0.097974, -1.790011, -0.510001, -0.091132, -0.252083, -0.226109, -0.927753, 0.793726, -2.979017, -0.866686, 0.524403, 0.265168, 0.069603, -0.385337, 1.995853, 0.722967, -1.061317, 0.166409, 0.811243, -1.101861, -1.492604, 0.061583, 0.491642, 1.291859, -0.093255, -0.619405, 0.866374, -0.005581, -0.537852, -1.836536, -1.205672, -2.186145, 0.056309, -1.003451, -1.042287, 0.790675, 0.658007, 0.041673, 0.642420, -0.491615, 0.328487, -0.664859, -1.245280, 0.301240, -1.306553, -0.066193, -1.213869, 0.719663, -0.643859, -0.703544, 1.629364, 2.064773, 1.101099, -0.897925, -1.757104, -0.333312, 1.045076, 0.196017, -0.411733, 0.382502, -0.521659, -0.232099, -0.640783, -0.511079, 0.102373, 0.045885, -1.528029, 0.722745, 1.749604, -1.119098, -1.872649, -0.131637, -2.709226, 0.853861, -0.172975, 1.625835, -0.183188, -0.835186, -1.079809, 0.819302, 0.230010, -1.120481, 1.469655, -0.155382, 0.342588, 1.341278, 1.198541, -1.286344, 1.414655, -1.719334, 0.346972, -0.558216, -1.274028, -1.233183, 0.181575, 0.446731, -0.100768, 0.144525, 2.534137, 2.161174, 0.239755, -0.687516, -0.544302, -0.452608, -2.161171, -0.404217, -1.442052, 1.055937, 1.385595, 0.330517, 1.209594, -1.773843, -0.265697, 0.510686, 0.649864, -0.030004, 0.081175, 0.018087, -0.983806, 0.422140, 0.066382, -0.620888, 1.182440, -1.047266, -0.518283, 1.311202, -0.087449, -1.145394, -0.225852, -0.308846, 0.179881, 0.381322, -0.283433, 0.509216, 0.935401, -1.246283, 0.118730, -0.792394, -0.376052, 0.495221, 0.856845, 0.218540, 0.019177, -0.346142, 0.115038, -1.376661, 0.279173, 0.680174, 0.684273, -0.165061, 2.111520, -0.528467, -0.153781, -0.756672, 0.332011, -0.621013, 0.978311, 1.432107, -0.191389, 0.008522, -0.009679, 0.609842, 1.520530, -1.849660, -1.212649, 0.955747, 1.135381, 0.825120, -1.131539, 0.452970, 1.008738, 1.031992, 0.027258, 1.180806, 0.103556, -0.784741, 0.853868, 1.114400, 0.058112, -1.399769, 0.094442, 0.927654, 2.518733, 1.067027, 0.267126, 1.309944, 0.739296, 0.284874, 1.724814, -0.169933, -0.222427, 0.371626, -0.794669, 0.187498, -0.157563, -0.211124, -1.571893, 1.503285, 1.198647, 0.197554, 2.445324, -0.844976, -2.397839, -0.914768, -1.062317, -1.127955, -0.776150, 0.450738, -0.594436, 0.225415, 0.911002, 0.453230, -0.055719, -1.532305, 1.613091, 1.181698, 0.033698, 0.540565, 1.604182, -2.461747, -0.641758, -2.294108, 1.298015, -0.023356, 1.030994, -0.678340, 0.981366, 1.432154, -0.650748, 0.235064, 0.545277, -0.665721, 1.258673, 0.787439, -0.219782, 0.414722, 1.058879, -1.526954, 0.389662, 0.835126, -0.244341, -0.181120, -0.282465, -0.237960, -0.448095, 0.240473, -2.019550, 1.215445, 0.917394, 0.682809, 0.196404, 0.264810, 0.735857, -0.945449, -0.749155, 0.390339, -0.940055, 0.885428, -1.581938, 0.430305, 0.734262, 0.321065, -0.822185, -0.508717, -1.758075, -0.992771, 0.110887, 1.982504, -0.265591, 0.532067, 1.443049, 0.682858, -0.722571, -2.386502, 0.677531, 0.269185, -2.310928, -0.646305, 0.924777, 0.089968, -1.267526, -0.631512, -1.116758, 0.879311, -0.175255, -0.165420, -0.076605, -0.263711, 1.040763, 0.320610, -0.009111, -2.704354, -0.920989, 0.394061, 0.520989, -0.841979, 1.923000, -0.785580, -0.894170, -1.424044, 0.236100, -2.076398, 0.138102, -1.759288, -2.242007, -0.029073, -0.376265, 0.065345, 2.229038, 0.915596, 0.170163, 1.126333, -1.067145, 0.867874, 0.591567, -1.152743, 0.018452, 1.837813, -0.456632, -0.375272, 0.668393, -0.707088, 0.005215, 0.662197, -1.281470, 0.616371, -1.548159, 0.614109, -0.838712, -1.078140, 0.619929, -0.478218, -0.892017, 0.511257, 0.351496, -0.661438, 0.994830, 0.343127, 0.399570, -2.255618, -0.891183, 0.224357, 1.166913, -0.984331, -0.237528, -0.084211, -0.312791, 0.738695, 0.505534, -0.361105, -0.774845, 0.449362, 0.686842, -0.074726, -0.573097, -1.121618, 0.487796, 0.506624, -1.006478, -0.319570, 1.283556, 0.359863, -0.479214, 1.065949, 0.242687, -2.413052, -1.216309, -0.342408, 0.865650, -0.099093, 0.741506, -0.307273, 1.849183, 1.132783, 0.487726, -0.235739, -0.592223, 1.536129, 0.460119, -0.344256, -0.926101, 0.205493, -1.565211, -0.024959, 0.464632, -0.882805, -1.092168, 0.710675, 0.228911, -1.974638, 0.073848, 0.412322, -0.541086, -0.853606, 1.308633, -0.338823, 1.230099, -0.264220, 0.275475, -0.016036, 0.432542, -0.319475, -0.202673, -0.017780, -0.770686, 1.368987, -1.068532, -0.392750, 0.241542, -0.144577, 0.755571, 0.087072, 0.920798, 0.669974, -0.452926, 1.942625, 0.698457, 0.157775, 0.176277, -0.023245, 0.444727, 0.702609, -1.604793, -0.665528, 0.065817, -2.200923, 1.897056, 1.565023, -0.071902, -1.532262, 1.631939, 0.459703, 0.288098, -0.305391, 0.821389, -0.028443, -1.068733, -0.227022, 1.532375, -0.655598, 0.770167, -1.019297, -0.315878, -0.905381, -2.429273, -0.708607, -0.755812, 1.564258, -0.040460, 0.573597, 0.775374, 0.805886, 0.657319, -0.424278, 1.705134, 1.582858, 0.509584, 0.577701, -0.071238, -1.191738, -0.205205, -0.662737, -0.502952, 0.973007, 1.643171, 0.163531, 0.448876, -0.183908, 0.301271, 1.090201, -0.299617, 0.567865, 0.067040, 1.159666, -0.115703, -1.337157, -0.661583, 0.996431, 1.780476, 0.227577, -1.523239, 1.454205, 0.179445, -0.706854, 0.019392, 0.782142, 0.773142, -0.338253, -0.170509, 1.285505, 1.362626, -0.741832, 0.325562, -0.087308, -0.511782, -0.828990, 0.254954, -0.393790, -0.047856, 0.528034, -1.835352, 0.791679, -0.606320, -0.757543, -0.221997, -0.775215, -2.018602, 2.065582, -0.669218, -0.305895, 0.626561, -2.138089, 1.201468, -0.653646, 0.412434, 1.172744, -0.609076, -0.603106, -0.796588, 0.124110, 1.944400, 0.929674, 0.111112, -0.435089, -0.548048, -1.176471, 0.708067, -0.703525, 0.872202, -1.359382, -0.833910}, - { -0.366051, 1.090044, 0.866319, -1.157692, -1.128796, 1.541931, -1.350312, 1.333806, 1.694647, 0.457108, -0.111000, -1.172261, -0.753790, 1.331515, -0.027152, 0.747205, -0.658500, -0.038192, 1.525249, -0.759295, 1.250606, -0.340413, -1.127007, 1.406623, -0.706422, 0.292796, 1.631768, 2.215634, 0.073980, -0.385112, 0.506362, -0.202795, 0.755789, -1.867381, -0.273771, 0.503473, 1.508404, -0.468469, 1.668037, -0.251509, -0.785674, -1.111004, -0.960976, -1.322358, -1.545723, 1.471144, -0.506242, -0.588949, -0.313601, 1.139427, 1.579125, 0.652714, -0.901777, 0.656510, -0.288514, 1.452325, -0.302991, 1.330756, 2.886968, 0.023464, 0.835104, -0.885361, 1.157006, -2.515794, -0.574478, 0.328060, -1.709359, -0.494329, 0.598770, -0.747478, 1.011745, 1.327282, -0.326995, -1.018029, 0.869699, -1.157081, 1.163211, 0.984707, 0.297095, 0.329330, -0.890085, 0.029351, 0.399321, -0.042496, 1.026399, -0.837723, -0.190327, 1.047189, 0.184283, 0.411270, 0.301015, 1.419925, 0.110397, 0.315591, -0.981933, -0.170388, 0.612171, -1.051599, -0.060530, 0.390152, 1.361701, -0.939189, 0.894472, -0.715243, -0.510507, 0.025623, 1.553985, -0.040116, 1.079201, 0.386709, -0.336056, -0.869779, -1.411344, 0.096694, -1.483401, 1.776198, 0.237811, -0.026078, 0.857311, -0.718028, -0.124715, 0.040444, -1.939897, -0.006549, 0.231204, -1.953128, -0.552907, 1.079684, 1.235623, 1.523048, -0.308990, 0.989936, -1.130399, -0.647225, -0.647576, -0.964932, -0.558924, -0.038719, 1.105535, 0.149483, 1.006351, -1.314417, 0.389194, 1.346200, -1.696851, 0.970115, -0.137362, 1.871246, 1.547609, 0.802342, -0.763129, -0.293492, -0.091770, -0.473747, -0.245311, 1.169244, -1.430883, 0.049332, -1.836761, -1.351445, -0.212866, -0.182219, 2.134880, -0.518474, -1.587803, 0.309249, -0.367516, -0.191881, -0.503828, -0.679150, -1.493666, -1.162391, 0.832011, 1.911391, -0.162675, 1.017089, 0.032120, -0.107554, -0.088736, 0.275411, -0.678826, 1.432165, 0.365810, 0.622105, 0.506559, -0.318611, 0.971903, 0.525363, -0.445594, 1.876652, -1.149562, -0.463688, 2.733772, -0.764278, -0.449677, 0.302581, -0.240802, 0.190044, 1.008196, -0.278168, 1.065394, -0.650817, -0.101829, 2.310449, -0.039349, -0.503874, 1.112140, -0.235511, -1.212259, -1.348459, 1.387797, -0.952093, -0.180724, -1.222137, -1.093086, -0.178448, 1.269866, -0.190811, 0.650464, 0.778309, -0.050321, 0.380407, 0.161355, 1.421648, 2.433857, 2.583800, -1.573436, 0.448591, 0.110533, -1.603465, 0.740921, 0.289418, -1.414146, -0.624459, -0.593682, 0.916803, -1.701631, 0.241922, -0.543003, 1.188700, 1.906490, 0.481122, -0.768427, -0.953898, 2.102781, 0.618356, -0.336548, -0.572326, 0.606568, 0.491024, 0.380272, -0.022026, 0.523972, -0.954023, -0.877209, -0.224495, 0.432683, -0.254900, -0.774008, -1.607907, -0.720620, -0.604274, 1.678520, 1.913163, 0.159356, -1.410313, 0.197388, 1.169798, 0.903142, 0.039011, 0.144807, 2.458497, -1.001692, -0.505731, 1.414980, 0.832307, 0.554467, 1.206977, -1.397985, -0.592895, 2.600739, -0.416195, -0.033741, 0.451166, 1.512583, 1.053435, -1.479246, -0.142051, 0.975982, 0.311530, 0.487769, -0.323924, 0.348971, 0.799994, -0.060661, 1.669826, 0.582834, 0.011219, -1.827596, -0.489834, -0.820367, -1.095741, -0.967043, 1.146245, -0.020773, -0.041144, 0.815911, 0.721984, 0.252552, 0.870835, 0.255693, 1.718572, -1.245382, 0.587540, 0.357072, 0.060316, -2.369084, 0.227770, -0.223617, 0.033238, 0.292996, -0.595448, 0.075100, 0.349034, -0.580471, -0.636505, -1.066613, -1.429018, 1.742048, -0.667394, 0.679725, 1.340292, 0.490123, -0.563744, -0.495447, -0.463659, 0.680997, -0.267053, 0.958029, 0.013707, 0.709109, -0.390414, 0.719052, -0.423561, -0.090128, -0.733675, 0.132490, -1.410537, -0.524790, 1.193208, -1.036264, 0.011977, -1.313109, -1.323276, 1.121715, 0.418580, -0.880143, 1.663108, 0.355192, -0.326285, 1.055457, -0.800780, -0.133384, -0.212181, 0.272341, -0.555156, -1.064138, 0.755548, 1.491287, -0.501005, 0.305670, 2.249164, 0.729153, -0.542153, 1.753567, 0.403875, 1.621784, -0.150918, -0.949804, -0.820128, -0.497204, -0.082337, 0.106560, -0.031992, 0.430473, 0.103075, 0.383675, -1.641249, 0.462108, 0.095299, -0.188685, -0.489998, -0.470622, -0.400630, 0.950855, -1.671221, -0.851781, -0.962811, -0.323219, -0.772624, 0.288847, -1.147847, 0.541159, -1.650323, 0.930566, -0.537825, -0.194494, 0.067336, 0.530044, 0.415645, -1.302154, -0.638851, 0.251781, 0.447008, 1.781901, 0.609136, -0.342385, 0.262713, 0.939617, -0.111206, 0.130623, 0.921171, -0.454378, -0.931573, 0.291690, 0.132114, 0.346790, 0.083356, -0.086598, -0.154961, -1.116497, -0.499442, -0.844005, 1.524551, 0.680117, -2.055838, 0.434303, -0.104819, -0.839391, -0.089037, 1.341437, 1.073892, 1.198432, -0.211229, 1.516555, 0.491887, 0.397480, 0.602591, -0.199075, -0.464708, 0.123884, -0.285974, 1.035733, 1.375628, 0.868683, 1.118244, -0.196603, -1.484560, 0.413828, 0.221042, -0.212243, -0.358806, 2.159950, -1.081131, 0.734749, -0.967876, 0.483122, 0.331686, 0.160346, 2.498008, 0.958881, 1.340358, 1.147135, -0.450397, 2.073919, 1.004491, -0.386724, -0.382245, 0.865120, 0.970890, 0.188061, 0.254678, 0.097065, -1.364824, -1.984393, 1.262353, 0.615119, 1.384209, -1.461402, -0.175372, -0.183393, -1.903769, 0.072977, 0.767290, 0.200107, -0.096740, -0.602840, 0.824492, -0.355718, -0.789418, -0.371401, -0.483612, -1.464046, 0.158438, 0.039026, 1.439314, 0.183182, -0.261420, -1.548254, -0.193097, -1.471828, 0.202734, -0.491591, -1.269838, 0.316289, -0.517476, -0.569726, -1.944641, 0.402780, 1.515877, 0.506689, -0.443737, -1.154531, -1.311475, 0.366058, 0.246239, 0.455154, 0.631679, -1.170954, -0.380020, 0.486398, -1.016393, -0.519378, -0.424926, -1.790598, 0.473614, 0.051159, -0.173950, 0.852429, 0.571114, -0.756598, 0.874593, 0.588289, -0.007917, -0.465132, -0.473911, -1.321447, 0.527671, 1.465970, -0.607841, -1.685049, 0.023688, 0.472908, -0.240533, 0.106455, -0.234273, -1.186065, 1.037140, 0.143860, -0.567111, -1.168850, -0.076105, 1.113482, -0.642468, 0.548264, -0.904635, 0.772669, -0.863736, 0.200474, -0.829202, 0.979016, -0.486663, 0.332465, -0.583737, -0.044128, 0.276428, 0.954208, -0.068546, -0.832858, -1.270139, 2.136811, 0.590467, -0.624761, -1.480334, 1.382104, -1.602011, -0.793466, -0.906890, 0.376001, 0.492588, 1.071393, -0.067113, -1.398913, 1.175812, 0.946857, 1.774585, 0.401990, 0.255106, -0.942760, 0.469706, -0.464059, -1.150043, 0.255540, 1.469347, -2.037062, -0.373867, -0.650264, 0.552214, -0.664573, 0.533174, 0.321023, 1.534882, -0.680650, 2.482328, -0.481479, 0.448310, -0.581476, -1.514262, 0.277445, -0.838904, -1.476984, -0.430568, -0.220664, -0.944887, -0.818019, -1.135972, -0.026249, 0.958074, 0.617705, 0.494235, -0.423978, 2.756689, 0.253280, 0.065789, 0.473021, -0.459397, -0.142948, -1.815069, 0.322057, 0.518124, 1.449641, 1.918943, 0.062592, -0.075669, 1.611980, -0.860131, 0.147282, -0.447477, 0.875886, -0.762018, -1.701572, 0.272824, 0.905363, -2.514226, -1.389881, -1.206337, -0.196696, -1.372550, 1.582245, 0.140760, -0.689306, -0.659299, -0.258320, 1.030984, -2.551895, 0.679386, 0.165588, 0.561277, 0.173679, 0.260028, -1.245822, 0.925928, 0.988071, 0.097116, -0.051939, -0.539584, -1.237677, 1.125789, 1.874041, 1.241448, 0.989269, -0.217760, -1.631286, -1.552263, 1.123045, 0.860963, 0.920692, 0.377092, 1.325692, 1.106578, -0.508420, 0.592198, 0.992600, -0.393067, 0.206730, 0.752042, 0.851183, 0.866981, -0.305114, 0.694478, 0.606522, -2.346379, -0.607023, -1.474387, -0.494714, -0.539259, -0.999210, 1.528820, 0.166750, -0.131750, 0.478981, 0.930009, 0.214593, 0.692389, 0.086775, 1.497250, 0.858509, 0.861626, 0.649618, -1.482740, -0.656958, 2.416242, -0.493451, 0.177911, 0.505277, -0.130259, 2.379736, -0.576178, 1.187565, -0.576931, -1.132377, 0.395463, -1.151024, -0.920281, 1.260511, -1.110756, 1.529079, 0.458472, 0.830109, -0.039647, -0.080383, 1.122112, -0.274819, 1.092939, -1.546443, 0.255672, 1.235009, -0.380847, 0.321383, -0.443796, 0.286741, -0.312062, 0.946869, 1.277352, 0.149270, 1.595581, 0.559365, -0.290963, -0.664620, -1.175728, -0.059714, -0.332855, -0.401577, 1.317238, -0.548539, 0.263354, -0.275134, 0.482188, 1.430070, 0.069831, -0.538429, 0.360160, -0.529170, -0.980606, -1.526071, 2.679397, -1.235846, -0.669099, -1.724909, 1.029704, 0.098813, 0.335976, -0.945628, 0.394371, 0.233446, 0.835115, 0.588741, 0.393339, -0.093629, 1.026724, 0.742848, -0.703165, 1.227853, 1.734061, 0.770439, -0.266471, -1.082233, -1.157477, -0.866743, 0.229048, 0.893650, 1.320832, -0.858671, 0.141810, 0.796965, -0.577622, 0.551456, -0.917431, -1.122053, -1.237289, -0.651291, -0.461301, -0.703822, -0.056861, 0.977100, 0.540449, -0.347926, 1.112978, -1.307661, -0.381739, 0.954460, -0.055147, -2.145001, -0.296021, 0.389547, -0.158820, -1.297863, 0.583484, 1.466881, 0.509633, -1.163055, 0.825659, 0.644911, 0.082810, -1.322625, 1.326049, -0.805257, 0.835166, -0.827975, 0.767160, -0.023294, -0.095388, -0.777284, -0.113734, 0.504145, -2.348214, 0.358429, 1.453401, 0.157792, 0.375178, -0.494533, 1.136741, -0.172614, -1.308590, -1.240380, -0.293492, -1.762733, 0.499742, 0.648316, -0.306742, 1.064501, 2.588493, 1.534481, -0.068430, 0.628313, -1.202221, 0.751400, -0.611287, -0.285582, 0.621840, 1.118552, -1.304569, 0.338408, 0.634245, 0.727070, 1.351708, 1.906642, -1.245493, 0.544085, 0.023567, 0.822136, -0.225659, -0.554759, 1.078285, -0.487821, 0.350217, -1.328078, -1.516463, 0.379319, 0.841175, -0.803244, -2.133249, 0.043919, -1.727119, 0.712188, 0.048582, -1.138496, -0.441502, 0.470729, 0.101948, -1.268373, 0.462844, -0.536101, -0.483177, 0.209565, -1.645566, -0.102030, 2.304646, 1.200114, -0.418676, 1.505637, -0.294857, -0.202662, -1.222147, 0.313015, -0.161851, -0.029240, -0.023564, 0.067814, -0.741534, -0.666548, 0.490464, 1.407186, 0.510670, -0.308920, 1.162411, -1.660865, -0.167916, -1.449202, 2.360460, 1.179640, 0.216388, -0.157080, -0.657975, 0.374985, -0.607038, -0.140700, -0.855956, 0.199556, -2.110195, 0.438510, -0.377595, 0.290620, 1.005258, -0.731770, -1.205673, -1.022828, 0.060198, -0.478521, 0.387020, 0.073045, -0.462466, -0.718821, -2.020948, 0.417627, -0.594171, -2.159554, 1.438150, -0.285563, 0.648363, 0.804517, 1.167873, -0.232250, -0.115185, 1.163859, 0.298022, -0.658288, -0.080099, 1.090074, -0.016892, -1.086784, 0.392383, -0.727807, -0.297935, 0.597663, 0.559123, -1.673050, -1.948834, -0.387070, -1.171286, 1.993822, -0.180595, -0.144192, 1.357437, 1.454872, 0.661677, 0.483265, -0.397517, -1.225479, 0.020337, 0.212672, 0.518673, 0.767580, -0.626396, -0.152479, 0.277082, -0.454873, -1.132728, -0.827887, 0.819189, -1.517897, 1.019129, 0.540812, -0.869711, 0.364573, 1.069084, -0.558590, -0.990351, -1.591637, -0.871694, 0.545562, -0.461599, -0.102648, 0.222724, 0.999675, 0.292247, 1.179970, 0.776466, 0.112242, 0.104970, 2.314705, 0.021268, -2.368748, -0.958900, 0.297815, -0.003677, 1.566647, -1.432305, 1.204170, -1.282670, -0.649383, -0.613923, 1.684349, -0.139662, 0.792151, 0.632381, 2.151388, 0.849497, -0.041654, -0.183858, -0.691740, -0.197847, -0.838188, 0.802003, -0.530760, 1.746419, -1.270005, -1.765993, -2.016589, -0.324317, -1.108419, -0.088983, 1.474725, -1.020524, 0.675191, 1.354876, 1.363179, -0.522103, -0.169038, -1.379544, 0.261470, 0.213237, 0.179582, 1.214208, -0.607320, -2.186980, -0.733379, -2.372892, 0.959630, -0.993857, 0.176890, 0.260644, 1.411645, 0.393456, 0.257266, -3.124489, -0.235843, 0.588131, -1.340846, -0.332305, -0.440792, 0.171715, 0.069795, 0.650910, 1.528987, 1.849215, 0.077807, -1.100648, -1.817446, 2.365149, -0.220911, -0.411025, -0.001701, 1.012689, 0.099022, -0.162977, 2.378298, 1.187006, -0.295466, 1.683484, 0.364706, -0.571128, -1.760534, -0.122802, 1.857482, -0.143319, -0.230420, -0.214831, -0.308055, 0.118742, -1.022546, 0.952589, -0.430711, -0.185212, -0.190947, 0.051814, 0.060666, -1.445201, -0.841744, 0.594250, 0.418576, 1.577818, -0.641416, 1.060903, 0.294138, 1.013450, 0.627861, -0.281716, -0.982605, 0.361732, 0.248037, 0.756866, -1.069409, -0.120460, -1.677853, 0.019826, 0.648522, -0.808604, 1.144117, 1.187809, -0.397782, -0.149470, -0.590064, 0.882347, -0.834685, 1.555812, 2.235354, -0.555875, -0.769270, -0.285175, -0.284234, 0.119298, -0.612013, 1.969389, 0.367399, -0.474982, -0.914559, -0.129702, 0.494528, 0.682517, -0.919533, -1.472182, 0.180034, 0.692186, 0.702038, -1.051907, -0.776538, -0.074859, -0.264470, 1.543097, -0.542533, -0.131785, 0.240690, 1.611668, -0.151417, -0.017538, -0.271936, -0.437718, 0.022805, -0.669591, 0.267952, 0.694436, 2.424463, -0.201106, -0.239224, 0.817808, 1.117689, 0.960553, -1.468808, -1.203427, 1.087992, -0.376621, 1.581256, -0.893155, -0.207584, -0.273662, -0.677110, -1.035160, 0.560880, 0.636948, 0.859484, 0.137554, -0.626866, -0.080127, 1.076695, -0.071589, 0.664032, 1.024663, 0.547021, 1.001503, -0.261051, -1.086343, -0.003509, -0.375856, -0.938780, 1.226086, 0.046283, -0.526216, -0.588638, 0.753575, 0.133434, -0.149700, 2.103486, -0.560226, 1.007565, 0.844389, 1.625927, -0.494287, 0.849952, 0.226575, -1.008783, -0.036338, 1.705755, 0.478073, 0.045146, -0.682793, 0.749817, 0.297386, 0.783425, 1.397597, -1.056513, -1.257820, 0.522975, 0.206689, 0.530611, 1.156682, 1.122042, 0.801552, -0.167375, -1.126947, -0.610750, 0.459830, -0.491992, 0.536673, -1.537645, -0.029582, 1.316590, -2.018537, 1.373362, -1.074952, -1.185202, 1.268097, 1.255860, 0.623142, -1.060992, 0.659908, 0.405465, 0.401678, 1.122369, -0.694854, -0.353233, 1.594824, 0.189123, -0.014828, 1.288232, -0.446496, -0.615074, 1.409053, 0.373744, -0.346291, -0.104675, -0.451614, 0.481504, -0.549403, 0.327145, 0.430512, -1.504374, 1.352461, 1.232739, -1.324237, 1.043989, -0.534908, 1.035258, -2.174643, -1.415195, -0.951376, 0.473963, 2.701545, 0.286097, -1.050524, -0.536708, 0.758873, 1.366072, -0.501957, -2.033290, 0.826883, -1.037507, 0.461361, -0.997928, -0.290920, -2.213019, -1.442613, 0.130412, -0.746206, 1.416294, -0.522086, 0.514938, -1.197681, -0.430812, -0.084455, 1.562261, 0.404097, -1.615372, -0.281724, -0.281191, -1.548097, 1.133326, -0.814797, 2.129958, 1.279244, -0.566920, 1.509583, 1.358870, -0.302262, 1.040258, -0.350752, 0.962198, -0.138816, 1.136069, 0.530156, 0.389528, 0.796999, 1.296768, 2.940829, -0.362098, -0.291717, 0.933193, -2.060909, 2.170132, 0.205767, 1.031326, -1.197397, 0.434779, -0.630896, -0.224678, -1.784438, 2.383038, 0.891166, 0.223739, -0.299808, 0.328977, -0.022802, 0.524956, 1.829236, -0.453798, -1.107157, -0.636500, 1.033642, -1.019548, 0.799245, 0.398032, -0.786846, 0.419584, -0.128728, -0.916340, -0.637239, 0.262552, -0.507553, 0.433898, 0.610220, 0.148544, 1.100288, -0.816836, 0.712949, -1.028352, 0.262168, -0.949171, -0.333264, -0.721797, 0.852567, 2.276798, -0.753126, -1.294838, -0.619130, -0.666390, 0.530774, 1.989407, 1.869620, 0.912516, 0.627528, 0.452196, -1.422774, -0.194644, 0.010776, -0.440234, -0.505087, 0.206804, -1.849113, 0.871163, -0.096737, 0.093904, 1.282949, -0.026341, 0.068432, -0.208103, -0.575788, -0.606968, -0.892175, 0.144999, -1.256860, -1.361715, -0.728653, 0.053181, -0.059173, 0.901752, -0.151951, -0.162722, 0.399033, 0.208364, -1.056095, 0.476780, -0.027557, -0.235676, -0.198806, 1.485383, -0.561210, -1.411141, -0.300205, -1.002026, -0.784634, 1.266159, -1.090193, 0.649029, -0.234111, -0.082262, 0.356078, 0.321915, 0.015732, -1.184611, -1.899113, 1.490680, 1.392324, 0.283886, -0.353852, 2.057961, 0.981666, 0.848730, -0.253620, -1.137007, 0.404694, 0.065526, 0.085647, -1.038783, -2.569717, 0.701330, -0.414976, -0.842873, -0.298220, 1.891944, -0.804642, -0.768543, -0.478489, -1.091725, -0.170599, 0.112198, -0.726134, -0.246962, 0.965135, 1.139514, 0.419828, 1.208580, -0.066874, 1.945829, 0.162809, 1.297811, 2.202734, 1.741643, 1.511201, -0.751677, 0.617983, 0.273729, -1.775817, -0.859621, -0.268454, -0.651191, -0.321220, -0.047067, -0.043492, 0.369731, 0.062866, 0.444285, 0.815012, -1.235550, -0.121403, -1.554279, 1.588515, 0.088841, 0.296332, -0.815071, 0.408587, 0.947721, 0.542313, 0.334759, 0.027636, -0.437686, -0.660244, 2.208708, 0.602455, 1.435043, 0.972738, -0.578480, 0.766644, 1.074701, -0.844363, 0.283039, 0.174809, -0.285907, 0.269971, 1.571914, -0.680261, 0.014420, 1.316165, 0.833149, 0.523407, 1.883938, 0.983637, 0.623695, 0.309055, -0.690168, -0.769946, -1.424188, -1.022835, -0.391665, -0.725895, -0.537701, 0.715435, 0.279784, 0.723945, -1.073925, 0.655954, -0.114652, -0.576828, -2.374498, -0.920265, 0.550063, 0.871423, -0.417389, -0.660618, -1.771935, -0.894860, 1.397525, 0.097323, 0.554468, -2.250533, 0.337591, 0.464278, 0.510972, 0.267362, -0.177007, 2.532581, 0.592427, 2.865095, -2.399371, -1.158907, -0.466906, 0.880595, 0.179700, 0.598148, 0.080115, -0.402827, 1.002004, -0.344141, 0.198522, 0.296398, 0.090345, 0.551243, 0.462708, -0.528162, -0.549759, -0.018495, -0.648103, -1.150885, 1.193687, 1.445238, -1.602518, 0.419286, 1.923925, 0.993801, 0.080631, 0.681932, 0.523293, 0.094783, 0.872851, 1.055104, 1.328419, 0.447384, 0.508069, 1.121763, 0.164839, 0.825536, -0.917679, -0.794695, 0.184164, 1.579811, 0.432503, 1.097294, -1.257097, -0.146743, 0.632343, 0.873633, -0.156048, -0.012500, -1.466014, 0.105209, -0.743446, 0.756828, 0.109854, 0.962585, 0.037169, -1.495391, -1.055537, 1.542128, -0.972383, -0.450260, 2.811025, -1.481503, -1.342464, -0.118399, 0.675031, 0.781311, -1.309169, 0.257078, 0.303964, -0.277430, -0.468578, -0.266924, -1.589440, 1.171651, -1.062283, 0.469898, 0.806030, -1.440026, 0.805684, 0.891655, -0.023100, -0.062576, 1.327035, 1.009489, -0.899913, -1.173445, -0.682394, 0.748711, 1.804029, 1.652740, 0.959006, -1.492983, 0.158459, -0.904840, -0.421817, 0.387183, 1.827316, 0.672307, 1.019775, -0.287872, 2.863921, 2.185695, 0.995617, -0.605319, -1.932329, -0.334581, -0.025587, 1.131738, 0.857656, 0.112565, -0.203046, -1.130978, 0.092396, 1.355934, 0.403165, 0.803676, -1.441043, 0.502503, 1.159083, 0.763962, 0.031462, -2.548171, -0.252876, 0.735758, -0.132680, -0.236088, 0.352176, -1.417295, -0.090644, -0.678433, 0.486371, 0.444437, 0.570962, -0.512129, -0.560760, 0.346190, 1.682052, -0.565234, -0.776522, 0.488945, 0.627600, -0.167428, -0.130414, -0.010353, 0.879153, 1.337339, -0.585537, 0.727072, -0.141975, 0.533020, -0.885554, -0.499028, 1.047312, 0.075773, 1.098370, -0.192691, 0.721690, -2.273454, 0.509313, 1.157307, -1.005416, -1.772732, -0.942747, -1.645998, -0.336253, -0.146102, -0.824648, 0.409081, 0.118311, 0.709025, -1.624230, -0.227199, 0.618670, -1.040878, -0.408246, 1.277359, 1.462230, -0.100716, 0.926692, 0.572805, -0.194286, -1.763308, 0.378171, -0.436644, -1.110692, -0.198854, 0.546694, -0.314007, -0.476614, -1.257885, 0.661586, 0.295306, -0.487621, 0.220747, 0.877556, 0.508186, -0.324527, 0.832008, 0.321013, -2.623273, -0.558013, 0.268001, 0.907817, -0.509289, 1.995986, -1.079092, -0.357120, 0.692847, -1.594903, -0.810229, 0.766416, 0.458690, 2.388878, 1.237876, -0.482560, 1.621789, 0.460475, -1.521537, 0.398639, 0.488280, 0.814789, 2.039437, 1.104775, -0.081346, 0.693222, -0.675134, -0.376279, 0.148597, 0.349295, -0.826567, 0.015371, -1.211840, 0.133244, -0.201431, -1.035327, 1.334061, 0.333192, 0.840426, -0.241970, 0.518896, 0.260458, 0.739403, 0.211132, -1.336182, 0.729792, -0.448636, 0.685902, -0.518373, -2.049942, 0.840856, 0.369066, -2.713610, -0.956266, 0.844052, 1.454209, 1.751947, 1.118434, -1.199703, 0.300938, -0.622784, -1.080096, -2.325250, 1.183856, 0.204165, 0.879490, 0.600926, -1.200129, 0.161161, -0.411520, 1.622712, -0.394856, 1.465673, -0.513967, 1.573941, 0.823391, 2.499071, 1.684852, -0.002011, 1.494403, -0.637152, 0.413116, 1.138018, 2.299080, 0.912717, -0.582792, 0.011413, -0.944657, -0.355949, 1.198286, -0.096939, -0.521424, 0.769444, -1.009839, 1.116072, -0.939024, 0.866407, -0.501148, -0.485490, 0.117572, -0.349237, 0.036147, 1.289752, -0.109019, 0.417342, -0.223573, -0.964651, 1.336383, 0.487437, -1.142140, 0.160682, -0.516941, 0.450464, 0.556782, 1.838317, 0.019776, 1.806731, 0.942391, 1.137877, -1.031985, -1.228200, -0.309678, -0.477846, 0.409540, 0.988165, 0.028357, 0.449104, -0.880508, 2.038219, -0.253821, 0.697572, 0.581308, 0.167655, 0.900317, 0.243123, 0.011126, 1.016816, -0.493156, -0.038680, -0.534398, -0.383596, -0.153659, -0.417682, 1.920127, 1.356597, 0.109325, 0.431191, -0.605333, -0.429238, -0.518555, 0.665048, -0.915748, 0.420865, -0.749463, -0.301446, 0.787792, 0.732964, 0.251381, 0.649113, -0.482093, 0.783651, 0.281404, 0.116612, -0.584326, -0.581823, 0.507780, 1.304491, -0.175627, -0.987605, -0.503873, 1.329944, 0.600671, 0.905240, 1.522753, -1.067003, 0.841375, 0.324097, 0.428858, 2.241882, -0.421061, 1.350712, 0.293129, -0.571053, 1.726629, 0.902720, 0.481511, -0.011749, -0.229563, 0.129374, -2.467086, 0.627643, 2.151489, -1.269279, -0.822767, 0.374930, -0.959157, -0.312447, -0.679249, 1.333499, -1.231680, -1.098953, -1.968821, 0.077113, 0.467697, -0.628377, 0.643440, 2.182266, -1.666187, 0.485504, -0.590932, 0.832465, 0.153937, 1.060625, -1.246195, 2.416896, 0.093975, -0.152827, -0.071498, -1.175740, -0.059380, -0.954397, -0.834015, 0.166732, -0.254951, 0.122066, 0.556969, 0.543691, 0.126691, 0.998256, 0.096867, -0.861643, -0.324542, 0.327667, -0.797774, 1.269918, -1.753651, 0.764782, 0.298320, 0.897810, 1.019876, 1.022820, 0.891247, -0.038796, -1.212145, -0.893024, 0.486557, 1.370578, -0.266401, -1.755456, -0.347878, -0.665156, -1.322847, -0.175403, -0.882539, 0.602112, 0.035955, -1.623531, 0.954679, 0.549832, -0.578962, 2.896449, 0.048991, -0.113154, 0.267387, -0.312706, -1.668610, -0.072943, -0.803505, 0.148612, -0.551699, -0.716624, 0.097455, -0.583477, -0.981594, -1.847880, 0.717272, 1.327487, -0.819650, -0.439335, -0.321295, 0.192924, 1.327158, -0.035909, 0.460546, 0.249600, 0.814532, 1.230175, -2.268395, -1.422459, -1.662717, 0.261945, 0.779187, 0.971484, 0.435417, 1.203834, -1.185644, 1.292138, -0.853645, 0.334178, 0.584909, 1.466309, 0.004952, 0.080900, -1.349691, -0.934681, 0.219297, 0.988318, 0.034435, -0.743059, -1.299690, -0.218137, 1.656151, 0.083517, -1.588795, -0.949296, 1.221327, -0.433782, 1.248809, 0.436154, -1.000479, -1.023634, -0.991402, -2.607101, -0.659781, -1.795288, -0.541813, -0.490361, 1.207486, 0.185346, 1.141771, -1.647310, 0.503719, -1.671135, -0.342426, 2.029416, -0.475719, -0.452015, -0.127935, -0.490847, -0.364585, 0.217848, -0.106019, -0.043535, 1.579382, 1.230152, -0.211027, 0.645656, -0.283660, -0.618962, -0.691271, -0.002964, -0.415489, -0.341448, 0.888052, 0.589376, -1.698737, 1.497291, -0.831303, 0.395174, 0.589173, -0.810251, -0.312356, -0.131721, -2.374080, 0.565497, 0.111212, -0.253048, 0.390443, -1.207896, -0.041176, -0.077750, -0.812502, -1.104729, 1.385000, -0.132227, 1.027096, -0.555687, 0.852424, 2.050150, 0.625882, -1.497229, 0.810401, -0.139653, 0.456244, -0.671029, -0.188565, -1.159149, -0.656063, 1.103047, 0.422095, 0.572289, -0.381481, 0.924799, 2.061640, -1.345375, 0.801426, 0.383118, -0.529409, 0.239853, -0.762862, 1.156354, -1.894699, -0.530812, -1.060533, 1.058275, -0.410843, -2.197512, 0.589395, 0.039158, -1.001759, -1.310885, -0.624722, -0.077511, -0.500742, -1.190303, -0.531067, 0.286142, -1.023084, 1.246064, 1.492313, 0.445578, -2.706501, -0.563274, 0.294320, -0.073659, -1.531296, 0.667368, 1.289439, 0.403801, -0.719572, -0.352385, 0.841166, 0.949807, -0.098071, 1.275607, -0.106403, 0.430739, 0.001879, 1.051093, -0.374533, 0.892073, 0.332948, 0.592774, 0.473188, 0.607197, -0.461602, 1.542222, 0.100073, -0.499275, -2.910311, 0.144654, 0.567283, 0.237543, -1.226956, 1.702870, -1.412966, -1.094480, 1.470134, -0.483356, 1.221584, 0.578784, 1.718434, -0.492522, -0.313230, 0.822420, -0.116919, 0.485807, -0.045605, 1.742115, -1.378036, 0.212902, -0.898107, 0.841902, -0.621667, 0.180036, -0.646024, -0.156983, -1.445886, 0.337371, -1.055352, -1.888733, -1.340191, 0.214425, 1.523805, -0.471269, 0.380452, 1.209268, -0.710079, -1.087702, -1.709404, 0.040628, -2.360130, 0.001905, 0.195222, 0.738780, 0.890120, 1.599264, 0.441577, -0.103721, 0.165188, 0.173371, -1.600238, -1.713154, 0.000767, -1.887139, -0.105544, 1.522331, -0.325616, -0.441462, -0.911480, -0.520468, -0.964007, -0.155366, 0.750897, -2.228427, 0.144024, -0.177606, 0.199641, 0.659904, -0.527830, -0.451822, -1.356099, 1.321654, 0.744680, 0.335386, 0.850053, -0.986633, -0.010434, 0.255908, -0.093684, 1.473114, -0.406603, -0.307050, -2.153165, 0.155834, -1.160650, 1.216561, -0.373953, 0.473638, -1.267211, 0.022150, -0.091080, -0.757524, -0.055015, 0.426883, -1.715072, -1.246240, -0.148565, 3.192731, -1.636502, -0.052563, -1.086715, 3.090604, 1.472217, 0.522833, 1.762922, 1.141213, -1.487499, 0.496260, 0.216927, -0.804855, -1.929908, 0.570464, 1.097985, -1.896430, 0.633538, -0.086539, -0.647590, 0.239698, -0.534972, 0.235688, 0.862444, 1.389340, 0.417638, 1.300175, 2.024927, -0.701430, -0.088599, -1.126721, 0.294095, 1.685487, -0.555167, 0.024073, 1.572933, -0.280384, -1.185864, -0.373257, -0.591392, -0.392939, -0.146882, 0.483622, -0.191206, 0.174507, -0.798611, 0.966095, 2.029952, -0.921123, -0.332096, -0.440556, 0.193824, 0.574540, 0.824316, -0.839898, -0.296096, 1.903518, -0.833156, 0.030677, 0.607523, 1.514426, 0.868757, 1.555596, -0.935126, -0.143852, -0.169516, 0.629757, 1.030584, -0.992446, 2.211719, 1.261339, -0.214449, -1.055072, -0.870771, -0.341431, 0.287067, 1.439778, 0.678502, 0.658027, -0.056848, -0.013744, -0.933110, -1.167635, 0.166673, 1.355237, 0.964435, 0.909258, -1.019448, -1.345046, -0.306989, 0.289421, -0.184356, 0.629042, -0.747637, 0.147467, -1.991565, -0.865654, -0.660517, 0.687695, 0.464715, 1.234511, -0.155472, 0.368011, -0.798038, 0.303759, 0.258606, 0.380070, 0.133021, 0.798172, -1.369328, -1.947639, 1.618109, 0.228001, 0.488191, -0.066755, 0.566617, -0.175494, -0.019300, 2.298338, 2.490033, -1.538595, 0.779380, 1.156198, 0.711916, 1.682077, 0.279762, -0.312617, 0.178269, -0.397102, 1.879119, 0.062291, -1.939265, 1.662884, -1.012789, -1.386273, 0.910591, 0.108151, -0.795660, -0.358391, -0.856319, 1.412286, -0.330051, 0.280484, -0.273336, -1.535364, -0.168593, -0.493246, -1.447309, 0.707914, -0.260365, 0.823475, -0.909438, 0.634202, -0.188416, -1.165149, 0.735117, -0.905673, 0.084929, -0.112713, -0.735928, 1.121421, 0.004254, 0.941864, 1.846784, 1.325619, -2.147032, -0.117993, -1.383002, 0.757244, -0.606906, 1.602797, -0.399847, 0.019014, 1.644806, 0.813505, 1.086837, 0.438771, 0.348052, 2.024298, 0.402076, -0.813110, 0.695878, 2.035622, -0.465122, -1.492292, -0.878087, -0.973837, 1.812257, 0.153350, 0.913495, 0.711407, -0.598748, -0.354786, 1.431581, 0.260969, -0.680260, 0.510779, -1.604333, -1.336531, -0.489935, 1.665154, 0.090843, 0.975008, 1.975683, -1.561150, -0.124309, 1.122236, 1.016507, 0.565472, -0.645597, 0.205400, -0.101509, -0.085578, 0.397383, 1.803785, -0.995748, -1.382449, -0.738364, 0.779503, -1.365308, 0.029976, -1.368673, -0.529999, -2.022380, -0.063186, 0.582739, 0.199500, -0.517304, 1.031594, -0.510167, -0.085207, 0.012295, -0.985666, -0.798587, 0.977248, 0.230268, -0.788730, 0.100369, -1.348227, -0.013572, -0.693568, -1.639801, 0.244451, -1.257866, -1.120893, 0.029183, -2.198713, -0.445338, -0.702023, 1.927548, 1.705852, -0.656002, 0.953507, 0.882131, -0.275884, -0.848179, 0.232563, 0.451223, -1.448456, -1.182728, 1.777396, 0.847616, -0.803393, -2.077458, 1.638231, -1.673865, 0.345191, -0.367579, -0.387235, -0.728010, -1.154211, -1.253552, 1.137648, -0.339611, -0.744888, -0.274606, -0.827768, -1.514119, 0.714691, -1.152990, -0.681847, 0.095298, -0.546938, 0.992713, -0.992856, 1.013190, 2.518029, 1.411025, 0.472371, 0.889863, 1.839270, -1.104206, -0.730294, -0.561019, 0.713459, -0.670588, 1.753072, 0.169193, -0.070926, 0.613736, 1.534770, 1.686791, -1.337481, -0.320978, 0.260372, 0.006047, 0.206645, 0.553592, -0.902511, 0.796327, -0.325769, -0.025676, -0.352937, -1.178178, -1.706857, 0.413009, -1.179883, -0.814427, -0.009327, -1.040245, -0.571115, -1.056754, -1.301412, -0.591260, -0.763906, 0.470067, 0.828917, 1.469671, 0.156652, -1.542709, 1.333366, 0.967467, -1.270201, 0.866247, -0.811172, -1.176453, -0.475758, 0.315612, 0.682427, -1.250730, -0.384803, -0.144978, -0.937373, 0.917409, -0.395846, -1.952576, -0.178033, 2.320912, 1.109337, -0.307219, -1.173891, 0.115987, -0.030911, 0.746893, 0.477283, -2.128353, 1.796388, 0.151782, 2.482570, -0.872722, -0.112642, -2.086276, -0.140203, 0.111983, -0.939102, -1.055091, -1.329575, 0.215989, 0.255191, 1.029851, -1.249237, 0.618896, -0.213340, 1.197397, -0.320130, 0.000204, 1.480527, 0.062241, 1.254689, 0.728404, -0.213925, 1.611260, -1.022513, -0.365403, 1.018360, -0.154956, -0.140410, 1.903669, -1.108924, -0.276196, 0.528212, 0.884397, 0.558028, 0.512399, -0.840059, -1.408578, -0.829500, 0.499964, -0.500953, -0.284076, -1.326736, 0.003464, 0.528966, -0.580975, -0.656808, -0.516160, -0.531121, -1.755176, -1.214240, 1.152361, 0.224646, -0.351005, -0.872570, -0.736079, -0.426793, 0.438420, 0.449918, 0.956023, 0.098402, 1.567622, 0.219357, -0.697617, 0.714471, 0.928580, 0.486617, -1.446406, 2.453130, 0.112571, 0.465784, -0.744802, 0.656983, -0.168934, 0.470107, -0.733525, 0.315124, 1.488656, 0.066169, -0.999403, 2.117275, 2.542061, 1.607461, -0.113543, -1.263350, -0.327064, 2.413925, -0.731953, 2.089860, -1.106059, -0.126414, -1.037236, 1.243739, 1.479193, 1.071569, 0.460087, -0.699642, -0.410816, 2.493381, 0.350269, 1.426043, 1.808272, 0.866318, 0.592693, 0.439841, -0.649058, -0.349749, -0.045892, 0.458708, 0.782348, -1.158792, -0.267142, -2.656903, -1.460660, -0.410096, 2.535706, -0.632427, 1.336218, -0.204034, 0.830523, -1.253433, 1.034396, -3.423545, 0.087727, 0.824722, -0.012332, 1.407828, 0.120882, 0.926187, -2.292944, 1.133925, 0.070113, 0.058787, -0.714468, 1.357921, -0.477855, -0.451449, 0.213543, -0.749978, -1.322127, -0.142105, 1.090608, -0.684492, -1.045470, 1.028201, -0.441753, 1.948786, -1.496778, -0.958542, 1.428044, 0.903210, 0.756319, -0.521848, -0.848668, 0.275805, 0.669213, 0.492029, 0.957295, 0.108228, 0.762715, 0.293802, 2.436357, 1.070933, 0.011859, 0.362297, 0.102790, 0.031223, -0.965514, 0.835719, -0.569635, -0.440000, -0.331996, -1.274265, 0.069149, 0.121821, -0.144766, 0.514818, 0.071455, 0.864318, 1.478536, 1.551118, 1.691593, -1.299430, -0.971826, -0.883588, 0.578695, -0.042692, -0.238458, -0.728358, -0.076793, 0.893684, -0.219320, -0.469815, 0.855054, 1.703795, -0.425166, 0.270828, -0.696114, -0.110387, -0.682147, -0.525052, -0.227233, 1.005185, 0.803018, -1.195223, -0.621801, -0.284694, -1.812292, -1.373420, 1.239193, -1.030262, -0.614617, 1.015705, -0.504089, -1.243769, 1.839390, 0.925878, -0.834220, 0.058480, -1.357423, 1.806100, -0.190481, -1.537604, 1.057216, -0.901779, -1.764362, 0.839263, -0.296992, 1.116402, -1.322160, -0.878790, -0.170323, 0.862255, 0.377605, 0.069388, -0.819686, -0.952324, 1.892050, -1.370026, 0.128011, -1.345521, 0.509866, 0.578618, -0.328582, 0.434008, 0.827424, 0.631912, 0.777146, 0.944008, -0.341045, 0.442765, -0.239828, 0.457617, -1.610594, 1.089655, 0.567526, 0.066581, -0.181101, -1.022524, -0.062282, -0.418298, -0.130733, -1.085837, 0.437248, -0.297256, -0.299135, 0.080330, -0.100244, 1.805943, 0.645342, -1.559626, -1.494864, -0.893543, -0.166167, -1.360841, 0.576710, -0.838996, 0.380255, 0.408801, -0.087826, -0.049933, -0.725054, -0.717173, -0.902833, -1.784525, -1.308625, -1.109085, 0.043479, 1.053214, -1.268719, 0.350615, 1.358514, -0.608471, 0.092205, 1.656784, -0.484845, 0.857037, 0.399978, -0.386510, 2.922505, -0.152704, 1.061745, -0.112545, 0.998931, -1.606496, 0.172222, -0.511422, 0.496342, 1.337502, -1.879604, 0.411800, -0.223929, -1.404463, -1.344039, -0.674549, 1.401038, -1.527929, -1.194860, -1.458769, -0.154352, 0.520749, -0.778789, 1.923256, -0.212585, 0.066619, 0.932589, 0.247856, 0.516712, 0.652079, 0.783558, -0.709963, -0.439451, 1.346308, 0.520449, 0.707136, -1.004591, -1.595103, -0.197411, 0.770248, 1.577931, 0.364045, 0.348734, 0.193432, 0.612950, -1.068714, 0.130597, 1.301195, -0.064313, -0.010166, 1.057867, -0.454054, -1.446331, -0.440927, 1.147515, -0.569905, -1.606436, -0.233277, -0.337846, 1.559327, -0.705301, -0.390601, -0.233253, 2.039244, -0.055524, 1.032676, 1.096797, 0.808107, -0.831129, 0.261051, 0.432175, -1.195443, -1.214485, 0.485138, -1.894018, 0.552331, -0.324718, -0.297798, -0.152396, 0.578562, -0.291784, 2.964944, 1.262912, -1.947922, -0.279872, 0.667570, -0.449464, 1.085750, -0.147495, 0.640326, 0.581892, -0.288672, 0.858507, 0.769634}, - { -0.446141, -1.210392, 0.094219, -0.557681, 0.436657, 0.228910, 1.252416, 2.043364, -1.478110, -1.121050, -0.336387, 0.921460, 1.600388, 0.273376, 0.369098, -0.216870, 0.293653, 0.093288, -0.315925, 1.024815, 1.607015, 0.331540, -0.644598, -0.384692, 0.793121, 0.554271, -0.160999, -0.705313, 1.533538, -0.270805, -0.806331, -0.878109, 0.414090, -0.975189, -0.721478, -0.740868, 0.413678, 0.307196, -0.291252, -0.874170, -0.413169, -0.801347, -0.387322, 0.175434, -0.358407, 0.175792, 1.537106, -1.366534, 0.127411, -0.531498, 0.309365, -0.633223, 0.038436, 1.608587, 1.216289, 0.966547, -0.940614, 0.260128, -0.046390, 0.218279, 1.377278, -0.909145, -0.312771, -1.574051, -1.399544, 0.830134, -1.437980, -1.709561, -0.046496, 0.785499, -0.154449, -0.270460, -0.757634, -1.541992, -1.153731, -0.557437, -0.603239, 0.131191, 0.500166, -0.774932, 2.406299, -1.196631, 2.812135, 0.916448, -0.224696, 0.736269, 0.862351, 1.231325, -1.022823, 2.623466, 0.570176, -1.029176, -0.378922, -0.266084, -0.384895, 1.423834, -0.327209, 0.107326, 0.819384, 0.576725, 2.215786, 0.882954, -1.390015, 1.445607, 0.240494, -0.628055, 0.298740, 1.577986, -1.214902, -0.613802, 0.015900, -0.696121, -0.212482, 0.021852, -0.588263, -1.765785, -0.242829, 1.114169, 0.240581, 0.026022, -0.680217, 0.653857, -0.353656, -1.102200, -1.705480, 0.591669, -0.336889, -0.902929, -0.465316, 2.091608, -1.270120, -0.052219, -1.196578, 0.850167, 0.972194, -1.074584, -0.190712, 0.568203, -0.249897, 0.142745, -1.535993, -1.143525, -0.083874, 0.034206, -0.960949, -0.731398, -0.726418, -0.333815, -0.503958, -0.753630, 0.108086, 0.922474, -0.799391, -0.036553, -0.405910, 0.412070, 0.911691, 0.023563, 1.261712, -0.554661, 0.447849, -0.544578, 0.045700, 0.152466, -0.558616, -0.513727, 0.233723, 1.826665, -0.780652, -0.355041, 1.078478, 0.436535, 1.398195, -0.474950, -0.645210, -0.743973, -1.041770, -1.959302, -1.043802, 0.067097, -0.703509, -1.405768, 0.660438, 0.787347, -0.639357, -0.666745, -0.152164, 1.116144, -1.424079, 0.967490, 1.056660, 1.415114, 1.314055, -0.243241, 1.139438, -0.082025, 0.968934, 0.479145, -0.024864, -0.779569, -0.977431, 0.686902, -0.593170, -0.675872, -1.619608, 1.279747, -0.335923, 0.269279, -0.937178, -1.208609, 0.992568, 0.695028, -1.105799, 0.927952, -1.684321, 1.634138, -1.400518, -1.250819, 0.943713, -0.031745, -1.302454, 1.416210, -0.202708, 1.502852, -1.206511, -0.124401, -0.940610, -1.469399, -2.540128, -1.262995, -0.099491, -1.424507, -1.303037, -0.698715, 0.062110, 0.279796, -0.177974, -0.317407, -0.138447, -0.012450, 0.596504, 0.042038, 0.050103, -0.433508, -2.495116, 0.091227, -1.732235, -0.468762, 0.991366, -2.351202, -0.783182, 0.291866, -0.979966, 0.393041, -2.480963, -0.772810, 2.080607, 0.525421, 0.123914, -0.480173, -1.550547, 0.048052, -1.835748, 0.553664, 0.063805, -1.100559, 3.446845, -0.852350, -0.467030, 0.410166, -0.194240, 0.202805, 1.433094, 1.224726, -0.416480, -0.724887, 2.769052, 1.403896, 0.660202, -0.003159, -2.371689, 0.049895, 1.375257, -0.464955, -0.208232, 0.939234, 1.128009, -1.169787, 0.319712, -0.035626, 0.671597, 0.537344, 1.071998, 0.280105, -0.614814, -2.635823, -1.399584, -0.644652, -0.070286, -0.165058, 0.669348, -0.998436, -0.525984, -0.581191, 0.683227, -0.638211, 1.685337, -0.006282, 0.114373, 1.974528, 0.478892, -0.722630, -0.237007, -0.902797, 2.370870, 0.412595, 1.431702, 0.926747, -0.484398, 0.900348, 2.429795, 0.925609, -0.159553, 0.410469, 0.025081, 0.343449, 1.430452, -0.545778, -0.765048, -0.998648, -0.289317, 1.241272, 0.061870, 0.236501, -0.418772, -0.694165, -1.766784, 0.693774, 0.579161, -0.763132, 0.367919, 0.961925, 0.541355, -0.324157, -0.657522, -2.502346, -0.272414, 1.370539, 0.949403, 0.273473, -0.024612, 1.065152, -0.828448, -0.672163, -1.616722, -0.421403, 0.534220, 1.595581, -0.195502, 1.045425, -0.685853, 1.192971, 1.984577, 0.650806, -0.377276, 1.094375, -0.403471, -0.075159, -0.255198, 1.681054, 1.944447, -1.438875, 0.840908, 0.657407, -1.752547, 0.006515, -0.841336, 0.521484, 0.516114, -1.159483, 0.460769, 0.215958, 1.781620, -0.048160, 1.660577, -0.857293, -2.564554, 1.796085, -0.547359, 0.687766, 1.624727, -0.535832, 0.572046, -0.945929, -0.193370, 1.224158, -1.311220, 0.311782, 0.605605, -0.193145, -0.278250, -3.658919, 0.403704, 0.404384, 1.368461, 1.284870, -0.436480, -1.220091, 1.299401, 1.292838, 0.729332, 0.157103, 0.182794, 0.433962, -0.055412, 1.643416, -0.653841, -0.638076, -0.517528, -0.268725, 0.345496, 2.344105, 1.550088, -1.772326, 1.324335, -0.381126, -0.099604, -0.121997, 0.526893, -0.730422, 0.958076, 0.935883, -0.838423, 1.116673, -0.334116, -0.851061, 0.954896, -0.374372, -0.509291, 1.302573, -0.275123, 2.731643, 0.596128, -1.023311, -0.462351, -1.019602, -0.326637, -1.297941, 0.113197, -0.963061, -0.718921, 0.219356, -1.562385, 1.216211, -1.144206, -0.817539, -1.967238, 0.540856, 1.466174, -0.118227, 0.302811, 0.439032, 0.850916, -1.084990, -0.021943, -0.622396, -1.630962, 1.173403, 0.823379, -2.823348, 0.418398, -1.543780, -0.964064, 1.907559, 0.617970, -0.024240, 1.171446, 0.551308, 0.681897, -1.615708, -0.221638, -0.701041, -0.025396, -0.368484, 0.508377, 0.639249, 0.114605, -0.165839, -0.940582, 2.351082, 0.035705, 0.829055, -0.502812, -0.677675, -1.310192, -0.797597, 0.243285, -1.478060, -0.328561, 0.694011, -0.432826, 0.482477, 0.348017, -0.472264, 1.134552, 0.019681, -0.476172, 0.506533, -0.292244, 1.125679, 0.484756, -0.653510, 0.209859, -0.427151, -0.696327, 0.185218, -1.521126, -0.911026, 0.502900, -0.390106, 0.243244, -2.589114, 0.029117, -1.880720, -0.978946, -0.123460, -0.026018, 2.003708, -0.417247, -0.606338, -2.203148, -0.299681, 0.857204, 0.669025, -0.033031, 1.993445, 1.121462, 1.489567, -0.792721, 1.321249, 3.287674, 0.039978, 2.257282, -0.596910, -0.904084, -0.060831, 1.852228, -0.394250, 1.076742, -0.088779, 1.990819, 1.575973, -0.875746, 0.935243, -0.142373, -1.544067, -0.798184, -1.647026, -0.446503, -0.556194, -0.094823, -1.243152, -0.444310, 0.467968, 0.399205, -0.060037, 0.737509, 1.262869, -0.291744, 0.374143, -0.538086, -0.352159, -0.919840, -0.830125, 1.258766, -0.444388, -0.039515, -0.982017, 0.099574, -0.232459, 0.441622, 1.136831, 1.307288, -1.142611, 1.320275, -0.137082, -0.522428, 0.354475, -0.212742, -1.219617, -1.323455, -0.925323, -0.532090, 0.055700, 0.582188, -0.415970, -0.267777, -0.160409, -0.699211, 0.780755, -0.019053, -0.416226, 0.852242, -0.879459, 0.864873, -0.285035, 1.696672, -1.156139, 0.551668, -0.178533, 2.023559, 0.451505, 0.693827, 2.408724, -1.197408, -1.144532, -1.841984, 0.102629, -0.870780, 0.971014, 0.758096, -1.302410, 1.331574, -1.067407, 0.888551, -0.440135, -0.243960, -0.069688, 0.524089, 0.510248, 0.678675, -0.503941, -0.269883, 0.309343, -1.333543, 1.434367, 0.343710, 0.627966, 0.919017, 0.320214, 1.555699, 0.370422, -0.216896, 0.830845, 1.007234, 0.865942, -0.279575, 0.412968, -0.016744, -0.862565, -0.654119, 1.351336, -0.126698, -0.357484, 1.853302, -1.146398, 1.017704, 0.012111, 0.004532, 1.142388, -0.301353, 0.710716, -2.303437, -1.032544, -0.712598, 0.179395, -0.040338, 0.469312, -0.492587, 1.698872, 0.569610, -1.562738, -0.442351, 1.737054, 0.888248, 0.321939, 0.067555, -3.150903, 1.211434, -0.694621, -1.166631, 0.674787, -1.562673, 2.020095, -1.669268, -1.380439, 1.948567, 0.542762, 0.282922, -0.601764, 1.531809, -1.700210, 0.341407, 0.852302, -0.209636, -1.624373, -1.127225, 1.269550, -0.103038, 1.651492, 0.618350, -2.633832, -0.295681, -0.449540, -0.666863, 0.143359, -0.391018, 0.705137, -0.831514, 0.276024, -0.763468, -0.986429, -0.241679, -0.071228, 0.728637, -0.230996, -0.505861, 2.141447, -0.372561, 1.648217, 0.043915, -0.092758, 1.057734, -0.503727, 1.321368, 0.837929, 1.587352, 1.715464, -1.422310, -0.020518, 0.008739, -1.078361, 0.397731, -1.980927, -0.187061, 0.299474, 1.022242, 0.199321, 0.342044, -0.937396, -0.420654, 1.253513, -0.078981, -1.586322, 0.169338, 0.530134, 0.410973, 0.813272, -1.350585, -0.666748, -0.331275, -0.686260, -0.499302, -0.000044, -0.977710, -0.656167, -0.768596, 1.733302, -0.079052, -0.346658, 0.096327, 0.841091, -0.315183, -0.839269, -2.140824, -0.359397, 2.221610, -1.301760, -0.598627, -1.735286, -1.872575, 0.813143, -1.467547, -0.528693, 0.218145, 1.609319, -0.658192, 0.967179, 0.238065, -1.038087, -0.207714, -0.841926, 0.947855, -0.130279, 0.174131, 0.883826, -0.419099, -0.967372, 0.761288, 0.981953, -0.359883, 0.753609, -1.500355, -0.520319, -1.197064, 1.513532, 0.860780, 0.666633, 1.041298, 0.004386, 0.714703, 0.229556, -0.216078, 0.840362, -1.280668, -0.344227, 0.344951, -0.673442, -0.013362, -1.752267, -0.586495, -0.717530, -0.824820, 0.430992, 0.272602, -2.738847, -0.471658, -1.198649, 0.177874, -0.193200, -0.600226, 0.027271, -1.178977, -1.093141, -1.239101, -0.259333, -0.891018, -2.676815, -0.907779, -0.935048, -0.124212, 1.174635, 0.550149, 0.559368, -1.799957, -0.505144, 0.112778, -1.140728, -0.634454, -1.620463, 1.526477, -1.067722, 0.116412, 0.569839, 0.405507, -0.620982, 1.177512, 0.606144, -0.986064, -0.806452, -0.830298, 1.161623, 0.069136, 0.083446, 0.189402, 0.544366, 0.247521, -0.280109, -0.389948, -1.090912, -0.471813, 0.392270, -1.720454, -0.767628, 0.059358, -0.422489, -0.506465, -1.156613, -1.145879, 0.804165, -1.220138, 0.170382, 1.108635, 0.411932, 0.450980, 0.535838, -0.711227, 2.320272, 0.167431, 0.334435, -1.284517, 0.497193, 0.237820, 0.248187, 1.126811, 0.321656, -0.209959, -0.475940, -0.123368, 0.586065, -1.041429, 0.080635, 0.904398, 1.221692, 0.674461, -1.602378, -0.947158, 0.463225, 0.047817, 0.727373, 2.459499, -0.499435, -1.649660, -0.480932, -0.480671, -1.565757, -0.114405, -0.500959, -0.218963, 0.591839, -0.293382, -0.307010, -0.092244, 0.103991, 0.336101, 1.610582, -0.474613, -0.241045, -0.033939, 1.054386, -0.049949, -0.690444, 0.468956, -0.386165, 0.215304, -0.017411, -1.037090, 2.252476, -0.491806, -0.500134, 0.393323, -0.283288, -1.204652, 0.767447, 0.493748, -0.086166, -0.285800, 1.030640, -1.022789, 1.259587, 2.034420, -1.973225, -0.762105, -1.435689, 1.365192, -1.705812, 0.449765, -0.328552, 0.265051, -1.697729, -0.707277, 0.234218, -0.773856, -0.912006, -0.166873, 0.051667, 0.025463, -1.490499, 0.456520, 0.425073, 0.322660, 0.557358, -1.401553, 0.111372, 0.453538, -1.046866, -0.174962, 0.736238, -0.648843, -0.003033, -0.435132, 0.370903, -0.021760, 0.722180, 0.754289, -1.414281, 1.194376, -1.331880, 0.599586, -0.523404, -0.216311, 0.914822, -0.624846, -2.401973, -0.938374, -1.624680, 0.018817, -0.192222, 0.446812, 0.389115, 1.824083, 0.582707, 0.400384, -0.288843, 0.749932, -0.666039, 0.159979, 0.198359, 0.666465, -0.051678, -1.696895, -0.235981, 0.807859, -0.397621, 0.710416, 2.373339, -0.640758, -2.033137, 1.751621, 0.656582, 1.416959, -0.279052, 0.950150, -2.689174, 1.501816, 1.385151, 1.683736, -1.181550, -0.404841, 0.964289, -1.563548, 0.951038, 1.643929, 0.818829, -0.838240, 0.381745, 1.488796, 0.906678, 0.174485, -1.803264, 1.124696, -0.521030, 0.899754, -0.313955, 0.051011, 0.496224, 1.483602, 0.280978, -0.364142, -0.735290, 1.195915, 0.857992, 1.088294, -0.237888, 1.323349, 0.663563, -0.572019, -1.411892, 0.992652, 0.374297, -1.730578, -1.977532, -1.171868, 0.190380, -0.733338, -0.869219, 0.320860, -0.320629, -1.938333, 0.644916, -0.330957, 0.089404, 2.667076, -0.618697, 0.538995, -1.049373, -0.483203, 0.222957, 0.602879, 1.518159, 1.312011, 0.240724, 0.312942, 0.016548, 0.804627, -0.215487, -0.070350, 2.395401, -0.401617, -1.629328, 0.342011, 1.461568, 1.651165, 0.117328, -0.834897, -0.491209, 0.716263, 2.190310, -2.148557, -2.270317, 0.409657, 0.709858, 0.347907, -2.108005, 0.158791, -0.345897, -2.262116, 0.588110, 0.046187, 1.351409, -0.664474, -0.597898, 1.394780, 0.641260, -0.258377, 0.136114, 0.823687, 1.363242, 3.439775, 1.617981, -1.646194, 0.128569, 1.650145, 0.319518, -1.012957, 0.268470, -1.098947, 1.431943, -0.663953, 1.718181, 0.624597, -1.800449, -1.293489, 0.213967, 0.434459, -0.079043, 0.310608, -0.359487, -1.183261, 0.940411, 0.923592, -0.709424, 1.066285, 0.266538, 0.430066, -0.088058, -0.177222, 0.819176, 0.845407, -0.748718, -0.029168, 0.827872, 0.052027, -0.381804, 0.564166, 1.354404, -1.306232, 0.723687, 0.870526, -0.220860, 0.790302, -0.186600, 0.074201, -2.166533, -2.273407, 1.133012, 0.645846, 0.966419, 1.074592, -0.459058, 0.242128, 1.908521, 0.468770, -1.858908, -1.246853, -1.356026, -1.294007, 1.620808, 0.463578, 0.361025, -0.648444, 0.357304, 0.745018, -1.252231, 0.151168, 0.202886, 0.590535, -1.397871, 0.549766, 1.238488, 0.595643, -0.651399, 0.877461, 0.782148, 1.399870, 2.048492, 0.099181, -2.246459, 0.683973, -0.676091, -0.135451, 1.162140, 1.407187, -0.905008, -1.511314, 0.087068, 0.914302, -0.756188, 0.275242, -1.144871, -0.021468, 1.038210, 0.642838, -0.823455, -1.438072, -2.212510, -0.484091, 0.064781, -0.514886, 0.629395, -0.559574, 1.841261, 1.795308, 0.152935, -0.817745, -0.481893, -2.206189, -1.338947, -0.525755, 0.740094, -0.416779, -0.051866, -0.140477, 0.017618, 1.171270, -0.112944, 0.770969, -0.079365, -2.653403, 0.690962, -0.102426, 0.279748, -1.058547, -0.199440, 0.984328, 0.690577, 0.024463, 0.091067, 0.087766, -1.706997, 0.274208, 0.162120, 1.091740, 0.953491, -1.075488, 0.044124, -1.463790, -0.666671, -0.253198, -0.561357, 2.079484, 1.185174, 0.058381, -0.511077, -1.082725, 1.490712, 1.232394, 0.781866, -0.023443, 2.266195, 0.193585, -0.786550, -0.545396, 1.181188, -0.812983, -0.157701, -1.858308, 0.337817, -0.477675, 0.359082, -1.215441, -0.024789, -1.379870, -0.326473, 0.620439, -2.464179, -1.283189, 0.235084, 0.366635, 0.567713, -2.107439, -0.303396, -2.203341, 0.840917, 0.322022, 0.362500, -1.737180, -1.522420, 0.021842, 0.419844, 0.434122, -1.642678, -1.262137, 0.145526, 1.337236, -0.736673, -1.355035, 1.476444, 0.728436, 0.518101, -0.267837, 0.003450, -0.243332, -0.003724, 1.030590, -0.172128, -0.960096, -0.099848, -1.773236, -0.966497, -0.927741, 0.065720, -0.005882, 0.104078, -1.193369, -0.520395, 0.625481, 1.618574, 0.803512, 0.403388, 1.067878, -1.334064, -1.028568, 0.939435, 0.124328, 0.571436, 0.460883, 0.761510, 0.574544, 1.618679, 0.328977, 0.485560, 0.712269, -0.850522, -0.779295, 0.225514, 0.075165, 1.831840, 1.706226, 0.448230, -0.395654, 0.468570, -0.459502, 0.048035, 0.179132, -2.024933, -0.778500, -0.024910, -0.056727, -1.214309, 0.131670, -3.436132, -0.145698, -0.264020, -0.795006, 0.841062, 0.500850, 0.217002, 0.541395, 0.811649, 1.245669, -1.704844, -0.835023, -0.168562, 0.648449, 0.020506, -0.927047, -0.098575, 0.445402, -0.961005, -1.465036, -0.299606, -1.145907, -0.494920, 0.658173, 0.547647, 0.124272, 1.454487, -0.084514, 0.591658, 0.085791, 0.753019, -0.412343, 0.962956, 0.345324, 0.984944, -0.633104, 0.602216, 1.334843, 1.882075, 0.905569, 1.757971, -2.257653, 0.457052, 0.080640, 0.798912, -1.022106, 0.064268, 0.489815, -0.445142, -1.110424, 0.321831, -1.445311, 1.136440, 1.473968, 0.571615, 0.192500, -1.035779, -0.040952, -0.704274, -0.932392, 0.722393, -0.608450, -1.029114, 1.191816, 0.132940, -0.481317, 0.425302, -1.055051, 0.668526, -0.825673, 1.669327, -1.829270, -0.708688, 0.232800, -0.811107, -1.172361, -0.167843, -0.184392, -0.816665, 1.759415, -0.533338, -0.371980, 0.158019, -1.165513, -0.918423, 0.144973, -0.926433, -0.663851, -0.174384, -0.002755, 1.093738, -0.189765, -1.337472, -0.108016, 0.913185, -0.467128, 0.259404, 1.007114, 0.602602, -0.834486, 0.555008, -0.252861, 0.185505, 0.424650, -1.227661, 0.504833, 0.463041, 0.626737, 0.478988, 2.605762, -0.691744, 0.111355, 1.930495, -0.433300, -0.214195, 0.206447, 0.768025, 0.694181, -0.196893, -0.017800, 0.850052, -0.626554, -0.312351, 0.424742, -0.294981, 0.371840, 0.201778, -1.662085, -0.670763, -1.436557, -0.989866, 0.014246, -0.353222, -1.314465, 0.257601, 0.157545, -0.276880, 1.121192, -1.079425, 1.421701, -0.139736, 0.288998, 0.149853, 0.451022, -0.255929, 2.473699, -1.935864, 0.275262, 0.227057, 1.305209, -0.572205, -0.701282, -0.450194, 0.283811, 0.603841, -0.196456, 0.393825, 0.891817, -0.928144, 0.173677, -0.854916, 0.017298, -1.709470, 1.081188, 0.642668, 0.099382, -0.551329, -0.135934, 0.085002, 1.827900, 0.319468, -0.621182, 0.294935, 0.050096, 1.184690, 0.695027, -1.661383, -0.675256, 0.293675, -0.894962, 0.364993, -2.185117, 1.120482, 0.371708, -0.208926, 1.286989, 0.190499, -0.151986, 1.698366, -0.105807, -0.104150, -0.608793, -0.648537, 0.826642, -0.202067, 0.147459, 0.237840, 0.995962, -0.454075, -0.961237, -0.664703, -0.789917, -0.578240, -0.430844, 1.039731, -0.582424, 0.303336, 1.179450, -1.173943, -0.251944, 2.543380, -0.000361, -0.335361, -0.997128, 0.870367, 0.879212, -0.159846, 0.327563, -0.630535, 0.050660, 1.673423, -0.501462, -0.548337, -0.306690, 0.860757, 1.229051, -0.297141, 1.729393, 0.378090, 0.086725, 1.084410, -0.618156, -0.187147, 0.915609, 0.454319, 0.515985, -0.480904, -0.186053, 1.190614, -0.212529, 0.076557, 0.137305, 1.246531, 0.706390, -2.179899, -1.056889, -0.537744, -0.717311, 0.541335, 0.239253, -1.123087, 0.667909, -0.326050, 0.406693, 1.557978, 0.217068, -0.451278, -1.812463, -0.956705, -0.028343, -0.456260, -0.280023, -0.142329, 0.772370, 0.976835, 0.834154, -1.733778, 0.436757, -0.974528, 0.740157, 0.355817, 0.442890, -0.966332, 0.453354, -1.158812, -1.874002, 1.009193, -1.197822, -0.239135, 1.155273, -1.305068, 1.565502, -0.724722, -0.236354, -1.006594, 0.631630, 0.554990, -1.651237, -1.836109, 1.300771, -0.790947, -0.293778, 0.605217, 1.405822, -0.838216, -0.788291, 0.360449, 0.206337, -0.446441, 0.371946, -0.259371, 0.763149, -0.680418, 1.333118, -1.955045, -1.497629, -1.196057, -0.860041, -0.288517, 0.339154, -0.259594, -0.288091, -0.202422, -1.650398, 0.423918, -0.516505, -0.110272, 0.074489, -0.133430, 0.036547, -0.590237, 0.722538, -0.037500, 0.595687, 1.301194, 0.539928, 1.128537, -0.358490, -1.227859, -0.722765, 2.643561, -0.970520, 0.033205, 0.767576, 1.021219, 1.304549, 0.374458, -1.228257, 0.342329, -1.798144, -0.987245, 0.015354, -0.929431, 0.438887, -0.346891, -2.596802, -0.679138, 1.182198, 0.590559, -2.525620, -1.203413, 0.260832, -1.001964, -1.229975, -0.856638, -1.019879, 0.613295, 0.558500, -0.979434, 1.529143, 0.447377, 0.070981, 0.208336, -0.350994, -0.378125, 0.225485, 0.085846, -2.094957, 0.940803, 0.500764, 0.564195, -2.035375, -0.252716, 1.312252, -0.521089, 0.082993, -1.512125, -0.766039, -0.200841, -0.475572, -0.342635, -0.527794, 1.229254, 1.087417, 0.039528, -1.466036, -0.049562, -0.298546, -0.194214, 2.249053, -1.733147, -0.749027, 0.907167, -0.303794, 1.154468, -0.492397, 1.176597, -2.139882, -0.846601, -1.315356, 0.083957, 0.411948, -1.029262, 0.993368, 0.661559, 0.479303, 0.601968, -1.058455, -0.847930, -0.539022, 0.870900, -0.632048, 0.894153, 1.169579, -1.637062, -0.436101, -0.597073, -1.712859, -0.494227, 0.512825, -0.206363, 0.477942, -0.206988, 0.447719, 2.000844, 0.286922, 0.180665, -0.756903, -0.448216, -0.406262, -0.389148, -0.149763, 0.459565, -1.836488, 1.594942, 0.966956, 0.962436, -0.126136, -0.656063, 0.927969, 1.813925, 0.042279, 0.097526, 1.066342, -0.805341, 0.722017, 0.559700, -0.190941, -0.610061, 2.479445, 0.267855, 1.156298, 1.379365, -0.316955, -1.756286, 0.159540, -1.106407, -0.181472, 0.467779, 3.881110, -0.814203, 1.608217, 0.344177, 0.082127, -0.430388, -0.149025, 2.451355, 0.098491, 0.681260, 0.027154, 0.282680, 0.320790, -0.289530, 1.018455, 0.162355, 0.348521, -0.198541, -0.763682, 2.190094, -0.977213, -1.102529, -1.470571, 0.181197, -0.428577, 1.098092, 1.161511, -0.973632, -0.448085, 0.472705, -0.428430, -1.344962, -1.583909, -1.576940, -0.435805, 0.407975, 1.490834, 0.730605, -0.345826, 0.186474, -0.154189, 0.090265, 2.304704, 1.110534, -1.515135, 0.321071, 2.085183, -1.174536, 0.519364, -0.620756, 0.567592, 1.755693, 0.560803, -1.218727, -1.150374, -0.695434, 0.451208, 0.021597, 1.005622, 1.403142, -0.143760, 0.326634, 0.022159, 0.507346, -0.087080, -1.195422, -1.421005, -1.083555, 0.839680, 0.352635, 2.199085, 0.074103, 0.486078, -0.148642, -0.509557, -0.968089, -0.250414, -2.007255, -0.801105, -1.433822, 0.317556, 0.077305, 1.163333, 1.608155, -0.278336, -0.757547, 0.562108, 0.133409, 0.239736, 1.615835, 0.921984, -1.054160, 0.527437, -0.019235, -0.415810, 0.127529, 1.215723, -0.188579, 1.424086, -0.869814, -0.016905, -0.023514, 0.728225, -1.136655, 0.750249, -0.783698, 2.295655, -0.314712, 0.711048, -0.250175, 0.689027, -0.175198, 0.088792, 1.456216, 1.129938, 0.475921, 0.461332, 0.265873, 0.380694, 0.803964, 0.614613, 0.685253, -1.718335, -1.548663, -0.425401, 1.903354, -0.393637, -0.412113, -1.033301, -0.220704, -0.055682, 0.358420, -0.809632, 0.470875, 0.930339, 0.683889, -0.812060, -0.732151, -0.161283, -1.164674, 0.324832, -0.491132, 0.088382, 0.087759, 1.183327, -2.089491, -0.924842, -0.899455, -0.702532, 1.347476, 0.472719, -0.372256, -0.088009, 0.551401, 0.820686, -0.778259, -0.479046, 0.290712, -1.605729, -2.054033, -0.985330, 0.126094, 0.944302, 1.514579, 0.398192, 0.023832, -0.434487, 0.211508, -1.191953, -0.582206, -1.550084, 0.618390, 1.529920, -1.376608, -0.414920, 0.655581, -0.963969, 0.333718, 0.015383, -1.966964, -1.174084, -1.225493, -0.943407, -0.223336, -0.528854, 0.437253, 1.352952, 1.047220, -0.251061, -0.036292, 0.244074, -1.069586, 0.847027, -0.435766, 0.949762, -0.704220, 0.201354, 1.815198, 0.505352, -1.432503, 1.443172, -0.230671, 0.943893, -1.324637, -0.478135, 0.546274, 0.446037, -0.400259, 0.495547, -2.142255, -0.443077, 0.298823, 1.859633, -0.100873, 0.484910, 1.186559, 0.138411, -0.598286, 1.522516, -1.704385, -1.815140, -1.603270, -0.015421, 0.313613, 0.265704, 1.449335, 0.576547, -1.156029, 1.229269, -0.490391, 1.326358, 0.427033, 0.559796, -0.657581, -1.538901, 0.083866, 0.283154, 1.204485, 0.593475, -0.773003, 0.610722, 0.746327, -0.476278, 0.419826, 1.264418, 1.384579, -0.013489, -0.177310, -2.004258, 0.277125, -0.009929, -0.707654, 0.825506, 0.310478, 1.041541, 0.913745, -0.996904, 1.029685, 0.295205, -0.982660, 0.340363, 0.450080, 0.407264, -1.054481, -0.856208, 0.738255, -0.840641, 0.876804, -0.711741, -0.060818, 0.118416, -0.345675, -0.248558, 0.093787, 1.513708, 1.483183, -0.920291, -2.413891, 1.702751, 0.669388, -0.601417, 0.149959, -0.766311, 1.146601, -0.521395, 0.456303, -1.266070, -0.599791, 0.164256, -1.212297, -0.620560, -0.219233, -0.586247, -0.965135, 0.085903, -0.701241, 1.223255, 2.754263, 0.025770, 2.427701, -1.326918, -1.660621, -2.095936, 0.391506, 1.351208, 1.075658, -1.254910, -0.393265, 0.629043, -0.383695, -0.089478, -0.593946, -0.277314, 0.458572, -2.399272, 0.092314, -0.040334, -0.115827, 1.200069, 0.472518, -0.467431, 1.243162, -0.046362, -0.649520, 0.430953, -1.462685, -0.081381, 0.199664, -0.577394, -0.904788, -0.394129, -0.217192, -0.928855, -1.165942, 1.195081, -0.742787, 0.176280, -0.701140, 0.082035, 0.388457, -0.315915, -0.789743, -0.400897, 0.040482, -1.058031, 0.202164, -0.956372, -0.216798, 0.393916, -0.506817, 0.102799, -0.007515, 0.517083, -0.684058, 0.254546, -0.276274, 0.754356, 1.252259, 0.549741, 0.704992, 0.178287, 0.559461, -0.620493, -1.645242, 0.236592, -0.601707, -0.304022, -1.517820, 0.195804, 0.382050, 2.206743, 1.195746, -0.727297, -1.645774, -0.935245, -1.778180, 0.114269, -0.312176, 0.341870, -0.083056, 0.259290, -0.531841, -1.805558, -0.438805, -0.808322, 0.388300, 0.708307, -0.326327, -2.258091, -0.729833, 0.202822, -0.159538, -0.271626, 0.099357, 1.107187, 0.963453, 0.091113, 0.746645, 0.159999, 0.395720, 1.342128, -0.827157, 1.829368, 0.381451, -0.590199, -0.637061, -0.719347, 1.870901, 0.870605, -1.404343, -1.012266, -1.196259, -1.105421, 0.056348, 1.134959, -1.341503, -1.402547, 0.252173, -0.542601, -0.052357, 0.215905, 0.273448, -0.415359, 1.350430, -0.551576, -0.829563, 0.290155, -0.544392, 2.608920, 2.069528, -0.183427, 0.800053, -0.400553, 1.092986, 0.902542, -1.372536, 0.786001, 0.009701, 2.741430, 1.055390, -0.763248, -1.619555, -1.374887, 0.403051, -0.553829, 1.541312, 0.456185, -1.010896, 0.377097, 0.888638, 1.143983, -0.016352, 0.455733, -0.532150, 0.507680, 0.098419, 0.503790, 0.953540, -0.019465, -1.270815, 0.594566, -0.719709, 0.925514, 0.330566, 1.346135, -0.186297, -1.488876, 0.757388, 0.344839, -1.328167, 0.549608, -0.435079, 0.340575, -0.023966, 0.554511, -1.107000, -0.541496, -1.656070, 0.488550, -1.402533, 0.685209, -0.148812, 0.505720, 0.040675, 0.134768, 0.657028, -0.155591, 0.344543, -0.612301, 1.477145, 2.190825, 1.471012, -2.159504, -0.245524, -0.280004, 2.077043, -0.817895, 1.034295, -0.486051, -0.433361, -0.744326, 0.571373, -1.058170, -0.407768, -0.061269, -0.337884, 0.006545, -0.589535, 0.318917, -0.034954, -0.521962, 0.974166, 1.288732, 2.253136, 1.002043, 0.061397, -1.305229, -0.068759, -1.732967, -1.819716, 0.762548, 0.663048, 0.148795, -0.074821, -0.983635, 0.545044, 1.398136, -0.103645, 0.554306, 0.976471, -0.008717, -1.046914, -1.093441, 0.142877, 0.698689, 0.207773, 1.064010, -2.337609, 0.288057, 0.918415, -2.263501, 1.489176, -0.058540, -0.471190, 1.140931, -0.529683, -0.829426, 0.508744, 0.543767, -0.544351, -0.879347, -0.398541, 0.895050, -0.696186, -0.559710, 0.170483, 0.467215, 0.292191, 0.657371, 1.346734, 0.528605, -0.553434, -1.138393, 0.907399, -0.672679, 0.542048, 0.060942, -0.466661, -1.803535, -0.131198, -0.446043, -1.230124, -0.729890, 1.525117, 0.097931, 0.689816, -0.005315, -1.507717, -0.988605, -0.206080, 0.981274, -0.575240, 0.725074, 0.167128, 1.083990, 0.205176, 1.194026, 0.683780, -1.721597, 0.579266, -0.837492, -0.919477, -0.179042, -0.911529, 0.214047, -0.519153, 0.476155, -0.542609, 0.810156, -1.158795, -1.863170, 1.882912, -1.268012, 0.636504, 0.130003, 0.142362, -0.112926, -0.002706, 0.390669, -0.369251, -0.091393, 1.488014, -0.050778, -0.247821, -1.420317, -0.044913, 1.873265, -2.123026, -0.350182, 0.875381, -0.330496, -0.688645, 1.368454, 0.577202, 0.194538, 0.334533, -2.313260, -0.914488, 1.123789, -1.637715, -1.099386, -0.646859, -2.284147, -0.355657, 0.846270, 1.978013, 0.403829, 0.520546, -0.558465, -0.485159, 2.060744, -0.378916, 0.349144, -0.700467, 0.638671, 1.489930, 0.354398, 1.362643, 0.288038, 0.624081, -0.587916, -0.652340, -0.077268, -0.916258, -0.371227, 0.017455, -0.868597, -0.575030, -0.216748, -0.819772, -0.703140, -0.427428, 0.074671, -0.804929, 0.671625, -0.733333, -0.004246, 1.763025, -0.819370, 0.808329, -1.264302, 1.075212, -1.260927, -0.673946, -0.645416, 1.413717, -0.068014, -0.718522, 0.260425, -2.068432, 1.731001, 0.435510, 1.171530, 0.550506, -1.068483, 1.850538, -1.211278, -0.825417, -1.205693, -0.420082, -0.697188, -1.181914, 0.816290, 0.711240, 1.255630, 0.167932, 0.209640, -1.368034, 0.196686, 0.087783, 0.925538, -0.091152, 0.444935, 1.683163, -0.344514, 0.967196, 1.189317, -0.839257, -1.206727, 2.114550, 0.485974, 0.502732, -0.636945, -0.433245, 0.808100, -0.382502, 0.578872, -0.246123, 0.453423, -0.504004, 0.341060, 0.347787, -1.167599, -0.854375, 1.227634, -0.266398, 0.537972, -0.273573, -1.346838, -0.610977, -0.722934, 1.780737, -0.151951, 0.058041, 0.019867, -0.398723, 1.344600, 0.289544, -2.695957, 0.738540, -0.437836, 1.610160, -1.216753, -1.200065, -1.619791, -0.079505, -0.487144, -0.623184, 1.457724, 0.611235, 0.080989, -1.180624, 0.379649, -0.792693, -0.221676, 0.961535, -0.166750, 1.253906, 0.128487, -0.213935, -1.479114, 0.163525, 1.722353, -0.958783, 0.519339, 1.160076, -0.178481, 0.930287, 0.313077, 1.419353, 1.589867, 0.980998, 0.575129, 1.618510, -0.270627, 0.999790, -1.271539, -0.166624, 0.926740, 3.095187, -0.025565, -0.386711, 0.160217, -0.508267, -0.963144, -0.336637, -0.473495, -0.883264, -2.795036, -0.546304, -0.618398, 1.928046, -0.158577, -0.962569, -0.108699, 0.179481, 0.371330, 1.108388, 0.363148, -1.230862, 0.173506, -0.334006, 0.003449, 1.000635, 0.453458, 1.021398, -0.928917, -1.061935, -0.613701, 0.781315, -1.694132, 0.299375, 0.037343, 0.221270, 0.433471, -0.489390, 1.298061, 0.004571, -1.023451, 0.569854, -0.931506, 0.359970, -0.053870, 0.447212, -1.473702, -1.440793, -1.141564, 0.676373, 0.560454, 0.707826, 0.232312, -1.286593, 0.358502, -1.424928, -0.715896, -0.883201, -0.083736, -0.341216, -2.025370, 0.972403, -0.967026, -0.856227, 0.763017, -0.717609, 0.558452, 2.331326, -2.185278, 1.216678, 1.631824, -1.504144, -1.139019, 0.266957, 0.246443, 0.591120, 0.252712, 0.610343, 1.649399, -0.097235, -0.251809, -0.384961, 0.422768, 0.495394, -1.686420, 1.448270, -1.103798, 0.057818, 0.356002, -0.526546, -1.470494, 1.406152, -1.890332, -0.493580, -0.655663, 0.752019, 0.219506, -0.161001, 0.236042, -0.532814, -1.257640, 0.098143, -0.485976, 1.117989, 0.786840, 0.045533, 1.206549, 0.868139, -0.798071, 1.433796, 1.303382, -0.280311, 0.770341, 1.479689, -1.273691, -0.697336, -0.258092, 0.094683, 0.632330, 0.191849, -0.722923, 0.209976, 1.030248, 0.522288, -1.037337, -2.260973, -1.031154, 0.292078, 0.078886, 0.758000, 0.319038, -1.593856, -1.976969, 1.310682, 0.481242, 1.749868, -1.066534, -0.811970, 0.257715, -1.052848, 0.358879, -2.254643, 0.233903, 1.661126, -0.995321, -0.286914, -0.679149, 0.993148, -1.603131, 1.339072, -0.922202, -1.364625, 1.608158, -1.022875, -0.874026, -0.130917, -0.454188, 0.042340, 0.849575, 0.998991, -0.730997, -0.103818, 0.243063, -0.420793, -0.735103, 0.761837, 0.952681, 0.396939, 0.738157, -0.083109, 0.555429, -1.360230, 0.080543, 0.230652, -0.075967, 0.352418, 1.300434, -0.588970, 1.083194, 0.498871, 0.202697, -1.643582, 1.297346, 0.150473, 0.504489, 0.189814, 0.816378, -0.980351, 0.391268, -1.646284, 0.888691, 0.480824, -0.633339, -0.749756, -1.466434, 1.066277, 1.272800, -0.743119, -0.117425, -1.033807, 0.653002, -0.320177, -1.872822, 0.353430, -1.029850, 1.590908, -0.374817, 0.965611, -0.686057, 2.021948, -0.083724, -0.648622, -0.553703, 0.195509, 1.407376, -0.879802, 0.475200, -0.109079, -1.343161, -0.193221, -1.697834, -1.434656, 0.294200, -1.346909, -1.156519, 0.532181, -0.185759, 0.677221, 0.917804, -1.791535, -0.524742, -0.558835, -1.938489, 0.266458, -0.822866, -0.917252, 1.113242, -0.971488, 0.826269, -0.844720, -0.238222, -0.624487, -0.274190, -1.627537, -1.373102, -0.734495, -0.723230, -0.768714, 1.460737, 0.162085, -1.127694, -1.694918, 0.646904, 0.389383, 1.617150, 0.983095, 2.256056, 0.420384, -0.907838, 1.346546, 1.525255, 0.196363, -1.984704, 0.830593, -0.102054, 0.029580, -1.152183, 0.399252, 0.714363, 1.491191, 0.659142, 0.173175, 1.920284, 1.163907, 2.138160, -1.584565, 1.090690, 0.965141, -0.006876, 0.772702, -0.618607, 0.150329, -0.830562, 1.416519, 0.319361, 1.253456, 1.358354, -0.782575, 1.446175, -0.067706, -2.334882, 1.320798, -1.249280, 0.013475, 0.781691, 1.240064, 0.251174, -1.210035, 0.660143, -0.247212, 0.444268, -1.394792, 1.369103, 1.024364, 0.840645, -1.473354, -0.269432, 0.052182, 0.898879, 0.821979, -0.134890, 1.429582, -0.582538, -0.748151, -0.470300, -0.127761, -2.497673, 1.287354, -2.515359, 0.275239, 1.191146, 0.289007, 0.666490, 0.261252, 0.086265, -0.457872, 0.055435, 1.460266, 0.367337, -0.648796, -0.623580, 1.488212, -0.392563, -1.071432, -1.067981, 0.846690, -0.710225, 0.170723, -0.362508, -2.222969, -0.070669, 1.741746, -0.685610, 0.112340, -0.987062, -1.253738, 1.447612, 0.658723, -0.912477, 0.502209, -1.523860, 0.675125, 2.114939, -0.492966, -0.606301, 1.302855, 1.161463, 0.154469, -1.064928, 0.913568, -0.198968, -0.657884, 0.667496, -1.431701, 0.665475, -0.380523, -1.238291, 0.361883, -0.983519, 1.008972, 1.293861, 0.513494, -0.836726, -0.453269, 2.404221, 0.866311, -0.240651, 1.378030, -0.679602, -1.157365, -2.617810, -0.787232, -0.446120, 0.147320, 0.930046, -1.242281, 0.655075, -0.881162, -1.100827, 2.551022, -0.570225, 1.876579, 0.617867, 1.664603, -0.079147, 0.377650, 0.693702, -1.058116, 2.353161, -0.512432, 0.929362, 1.021207, -0.125068, -0.365395, -1.861506, -1.668203, 1.021039, 1.081496, 1.765793, 1.062593, 0.046025, -0.782797, 0.261323, -1.608353, -0.309767, -1.279847, -0.869277, 1.465411, -0.327114, -0.021511, -0.927904, -2.009585, -0.733882, -0.920428, 0.317701, 0.571201, 0.870829, -0.425450, -0.306367, 1.139129, -0.502143, 0.279263, 0.484645, 2.004383, 0.633851, -0.047023, 0.200902, 0.201886, -0.696526, -0.300595, 0.511508, 0.654121, -0.097666, -0.322094, -0.610046, 0.121770, 0.071631, 0.676976, -1.627126, 0.719690, 1.304001, -0.768672, 0.257296, -0.089022, -0.490937, 1.048144, -1.280689, 0.454322, 0.447600, -0.711054, -0.051485, -0.361274, -0.722115, -1.164260, -0.264290, -0.542931, 0.330004, 0.191781, 0.741959, -1.808822, -1.646506, 1.957869, 1.102139, 1.101276, -0.883624, -0.162952, 0.289146, -0.892247, -0.463600, -0.279927, 1.559605, -1.053084, -0.602776, 0.239181}, - { -0.546702, -3.479280, 1.281969, 0.204100, 1.813676, 0.490487, -0.757911, 0.372871, 0.197252, 1.444845, -0.096162, 0.679587, 1.275703, -0.553738, -0.712873, -1.005727, 0.639693, 0.402653, 2.190025, -0.096112, 0.135051, -0.192119, -0.564087, -0.070908, 1.437546, -0.650103, 0.479782, 0.649491, -0.381469, -2.525810, 0.610627, -0.877901, 0.172105, -0.874076, 1.064254, 0.384748, 0.709794, 0.852931, -0.475824, -0.816417, 0.253611, -0.082728, -0.836497, 1.426847, -0.192527, -1.648553, -1.531636, -0.333416, 0.151798, -0.890083, -1.065512, -0.679672, -1.122985, 1.362803, 0.269560, -0.822026, -0.241838, 2.159807, 0.214297, 0.266953, 0.169955, -0.792499, -0.804016, 0.728123, 1.767786, -0.184180, -0.034747, -0.868238, -0.524344, 1.211457, -0.248566, -1.203138, -1.234641, -1.392020, 1.760491, -0.575578, -0.065623, 1.757267, -0.746238, -0.889374, -0.718316, 1.611904, 0.865422, 0.689008, 0.215285, 0.564133, -0.617023, -0.432340, -0.221561, -2.667309, -0.109523, -1.117582, 1.575537, 0.241379, -1.533468, -2.880974, -0.456555, 0.827512, -0.278596, -1.409184, -1.525921, -0.803483, 0.296735, -2.118190, 0.445919, 0.940326, -0.416815, 1.986358, 1.433205, 0.635738, -1.271075, -1.253477, -1.740433, 0.326395, 0.364876, -1.942431, -1.406632, 2.480764, 1.167179, -0.276924, 0.892614, -0.779999, -0.981326, -1.274167, -1.555269, 0.664020, 0.848989, 0.244536, -0.654083, 1.135018, 1.096046, 1.189611, -0.157559, 0.124747, -0.126091, 0.896882, -0.697857, 1.199272, -1.212372, 0.615753, -1.292237, 1.974023, -0.044392, -2.420623, -0.533192, 0.568319, 1.029759, -0.999752, 1.841177, 1.284183, -1.573000, 0.937218, -1.994672, -1.801006, 0.335549, 0.968059, 0.128210, -0.154791, -0.908874, 1.292391, 3.102638, -0.713690, 0.705246, -0.358244, -0.813543, -0.789011, 0.238518, 0.630661, 0.423279, -1.107202, -1.379962, -0.279946, 1.362005, -1.570006, 0.805090, -0.352570, 1.461932, -1.523718, 1.334782, 0.435690, -2.180466, 0.640995, -1.130684, 0.764881, 1.175751, 1.360450, -0.108873, -0.358859, -1.354791, -1.782403, -0.587183, 0.176936, 1.988700, -1.805753, 1.527215, -1.310170, 0.237209, -1.042104, 0.011365, -0.083505, -1.313460, 0.440248, 0.011818, -1.581587, -0.868283, 1.138763, -0.281074, 0.509712, 1.105508, 0.564441, -1.108557, 1.348649, -0.507283, 0.750773, -0.388684, -1.544325, -0.007086, 1.354264, -2.308678, -0.663084, -0.267921, 0.011330, -0.017436, -0.572162, -0.819924, 0.225857, 1.723824, 0.380895, 1.586911, 1.954356, -0.236418, -0.197161, 0.127556, 1.509263, -1.728399, 0.093941, -1.688926, 0.165151, -0.600337, 0.119865, -0.787766, -0.206559, 1.574906, -0.187367, 0.263209, -1.411076, 2.901291, -0.308304, 0.254285, -0.629414, -0.479781, 0.146673, 0.946288, 0.967090, -0.217460, -0.018999, 0.047707, -0.671097, 0.908278, -0.543224, -3.080528, 1.168676, -0.556091, -0.096008, 1.158467, -0.351752, 1.146450, 1.960713, 0.490796, 0.009053, 0.588831, 1.038268, 0.013681, -0.760712, -1.341535, 0.811241, -1.001098, 0.738826, 0.899320, 0.317043, -0.519889, -0.695239, 0.685640, 0.053863, 0.386357, -0.075529, 1.597041, -0.311404, -0.399053, 0.773792, 1.103177, -0.599354, -0.236869, -0.088272, 0.257239, 0.348416, 1.001748, 0.565105, 1.043244, 0.281017, 0.717559, -0.444827, 1.439773, -0.507837, -0.314224, 0.455111, -0.729746, -0.270938, -0.083328, 1.116038, 2.165294, -0.143620, 1.244648, -1.017341, 0.720974, 0.714124, 0.607361, -0.416470, -0.415471, 0.114658, 0.643928, -1.607350, 1.734378, 0.933473, 1.277323, 0.551227, -0.560843, 1.069275, 0.568155, 0.499344, -0.674527, -0.473248, -0.106183, -0.714342, 1.486905, 0.822615, 0.392550, -1.412507, 1.320822, 0.918009, 0.828928, 0.173972, -0.937988, -0.346022, -0.414737, -0.095469, 0.910329, -0.384739, -0.570791, -1.272898, -1.042226, 1.457786, -1.079185, 1.087736, 0.126176, -1.041015, 0.783395, -0.194132, 0.518606, -0.592545, 0.860658, 0.658174, -1.814432, -1.255922, -0.612641, -2.107119, 1.660166, 0.668104, 0.456806, 0.582133, -1.299312, 0.811868, -0.516781, -0.108662, 1.156318, 0.176076, -0.464090, 0.206290, 1.730442, -0.405242, -0.239455, 0.270996, 0.891669, -0.239943, -0.254048, 0.495735, 1.004645, -0.772280, -1.074777, -2.310260, -0.391156, 0.612754, 0.178409, 1.109788, -0.000639, -0.399230, 0.671902, 1.169714, 1.531017, -0.219472, 0.780675, 0.575824, -1.181746, -0.628768, 0.654607, -0.073733, -1.096885, 0.740839, 0.990603, -0.485555, 0.517071, 1.280939, -0.799209, 0.053889, 1.088144, -0.418205, 0.953869, -0.309487, 0.538600, 0.806603, 1.122140, 0.223117, 0.837854, 1.060827, -0.711095, 0.835888, -0.600026, 0.484749, 0.208810, -0.255554, -0.108948, -0.404232, 0.641512, 1.228912, 0.881007, 0.997146, -0.745469, 0.099853, 1.126967, -0.759049, -0.982529, 1.672569, 0.000626, 0.884397, 0.136759, -0.640649, 0.333578, 0.078262, -0.492754, -0.048147, -2.078400, 0.153680, -0.621102, 0.745186, 0.433573, -0.853499, -0.754126, 2.523566, -0.519786, 2.478657, -0.320310, 1.390442, -0.579831, 0.575781, -0.877787, 1.759696, -0.082488, -2.198108, 1.634852, 1.086027, 0.028339, -0.515230, -0.182139, -1.419449, -1.480705, -0.136671, 1.531879, -0.589691, -1.309580, -0.163627, 0.024708, 0.734130, 0.873181, -0.272713, -0.548532, 0.183101, -0.497299, 0.809498, -1.450759, -0.117722, -0.219132, 0.292452, -1.904197, 0.143579, 0.116271, 1.214655, -0.640343, -0.630937, -0.209910, 0.340909, 1.171140, 0.636831, -0.616606, 0.008119, 1.572993, -0.334718, -1.800502, 0.156949, 0.405236, -0.724222, 0.483722, -1.819836, -0.691741, -0.279210, -0.388509, 0.668926, 0.889858, -0.150314, -0.543959, -0.176981, 1.987931, 0.855049, 0.529252, -0.845001, -0.989239, -1.421062, -1.327491, 1.673545, 1.458873, -1.592869, -0.822923, -0.883967, -0.376208, 0.320181, -0.471279, 0.549328, 1.529936, -0.167083, -2.698047, -1.965089, -1.552776, -2.073594, 0.240863, -1.637739, -0.491277, -0.879370, 1.112104, 0.544278, 0.613885, 0.737477, 0.839379, 0.321677, 0.769763, 0.893266, 1.722090, 0.167345, 1.445776, -0.629170, -1.240548, 0.678559, -0.581255, -1.027003, -0.207990, -0.396461, 0.452000, 0.127755, -0.443898, 0.297728, -0.931179, 0.967847, -1.298123, -0.906806, -0.218328, -0.312308, 1.082331, 0.397821, 2.220063, 1.565924, 1.189632, -0.713416, 1.600261, -2.119111, 0.282426, -0.460493, -0.236223, -1.518592, -1.512269, -1.084260, 1.143492, 1.390114, 0.516777, -0.111318, -0.194051, 1.032500, 0.327746, 0.286373, 1.096142, 0.686950, 1.591864, 0.373304, -1.226966, -0.990414, -1.138548, -1.688668, -0.655515, 0.937867, 0.691856, -0.747645, -1.283800, 0.647234, -1.248964, 1.903738, -0.838187, 0.189007, -0.333875, -1.432477, -0.439429, -1.051654, -0.745071, 1.493812, -1.260792, -0.880455, -1.807662, -0.215741, -0.610704, 0.419419, -1.032236, -1.052457, 0.665854, 0.977798, -1.088042, 0.841676, -1.244256, 0.699423, 0.458182, 0.074936, -2.040297, -0.406160, -0.134868, -1.317370, -2.233015, -0.488203, 0.187009, -1.416606, 1.812506, 0.388035, 0.865895, -1.469839, -1.644285, 0.843576, -0.790269, -0.302565, 0.436191, -0.514398, 1.184170, -0.656740, 1.712983, -0.052247, 1.106618, 0.550236, 0.792605, 0.006270, -0.719713, -0.830699, -0.333360, 1.245278, 0.641135, 0.246580, -0.308070, -0.565285, -2.584497, -0.362588, -0.074127, -0.213462, 0.075311, 0.166592, 0.859304, -1.146299, -1.166986, 1.688527, -0.738788, 0.600389, -0.128198, 0.344568, -0.741380, -0.731147, -0.144513, 1.368747, 2.399508, 0.886127, 1.358408, 0.118258, -0.094923, -2.378642, 0.755630, 0.854068, -0.936919, -0.625229, -0.677522, -1.245193, -0.335134, -0.252879, -0.211951, 0.055112, -0.783280, -0.618385, -0.958108, 0.536541, -0.136982, -1.311414, 0.619876, 0.620852, 1.744741, 0.261075, 1.440116, 0.631201, -1.079088, -0.108566, 0.746522, 0.998224, -0.513033, -0.671468, -0.155251, -1.946431, 0.560747, -0.379248, -1.062482, 0.127920, -0.649031, -0.126300, -0.574007, -1.324696, -0.421767, -0.274581, -0.281393, -0.552640, -0.864856, 0.672566, 1.154413, 1.374227, 0.980392, -0.084116, 0.512321, -0.876715, -1.144675, 0.122608, -0.103457, -1.369081, -0.637590, 0.053352, 0.962521, -0.776396, 0.223998, -0.428119, -1.305058, -0.783310, -0.120336, 1.644206, 1.971693, 0.866150, -1.486048, -1.154154, -0.506225, -0.068497, 1.708595, 0.005526, -0.375063, -0.139891, -0.573081, 2.406396, 1.469202, -0.024259, -1.061411, -0.376466, -0.632997, -0.792997, 0.162100, 0.133559, 0.166693, 0.108858, -0.380970, -0.086500, -0.476880, 1.254424, 0.454440, 0.290330, 1.407760, 0.673980, 0.395342, -0.258706, -0.159918, -0.775750, -1.237364, -0.786243, -0.852008, 1.120450, -1.504593, 0.005802, -1.107561, 1.345220, -1.322717, -0.435464, -1.431995, -0.042082, 0.339572, 2.011347, -0.046804, -0.781187, -1.353966, -1.042931, 1.096995, 0.547902, 1.946881, 0.090543, -0.101012, -1.008603, 1.171841, 0.221167, -0.671014, -0.507839, 0.126544, -0.476825, -0.274699, 0.097734, 0.940326, -0.130910, 0.086700, 0.829810, 0.269792, 2.239339, -2.085658, 1.075656, -0.076831, 0.629599, -1.209154, 0.329170, 1.237872, 0.551317, 1.178346, -0.971594, 0.780025, -0.090874, -0.765722, 0.097774, -1.403388, -0.029671, 1.349227, 1.450856, 0.947850, 2.015108, -0.111993, -1.781984, -0.308100, -0.110668, -1.158519, 0.517697, -0.216494, -0.220037, 0.081415, 0.630720, 1.338431, 0.510129, -0.146694, 0.310522, 1.418374, -1.442137, 0.428556, 1.363806, -0.708389, -1.698435, -1.183555, 0.243152, -1.359286, -0.384201, -0.029706, 0.173880, -0.192951, -2.630071, -0.130015, -1.469690, -2.610622, -0.785859, -0.181860, 0.861415, 0.193740, 1.702512, 0.683016, -0.365387, -0.648124, -1.846956, -1.122233, 0.185972, -1.352374, -0.830162, -0.446146, -1.758734, -1.780701, 0.041390, -0.471741, -1.055600, -0.546277, 0.369549, 1.965760, -1.042709, 0.708577, -0.526395, 0.601439, -0.064480, -0.445531, -0.753787, -0.523636, 0.715584, 0.652892, -1.463985, -0.477663, 1.417842, -0.619403, 1.111166, 0.156766, 0.211911, -0.665507, 1.150210, 1.769839, 1.136887, -0.633683, 2.066492, -1.130269, -0.705939, -1.626145, -0.008259, 1.435961, 1.238059, -0.346081, 0.307919, 0.491241, -0.783238, -1.284757, 1.430457, 1.210389, 0.477298, -0.089854, -1.227091, -0.363040, 0.623374, 0.589486, 2.275804, -0.417661, 0.228580, 0.859881, -1.235270, -0.274058, -1.626223, 0.604122, -0.688723, -1.128704, -0.209283, -1.419530, -0.734639, 0.690308, -1.668127, 1.950307, 0.721112, -0.058894, 0.874049, -2.387257, -2.382137, -0.660178, 0.152801, 0.835420, -1.307660, -1.214327, 0.661770, -0.242860, 1.219668, 0.208198, 1.456882, -0.965216, -0.028414, 0.187679, -1.010813, 1.849366, -0.221067, -0.914744, -0.416883, 0.767400, 1.495032, 0.305480, -0.218613, -0.081811, 0.305321, -1.253629, -0.293919, -0.901221, -0.118398, 0.070505, -1.150420, -1.264493, -0.630057, -1.105974, -0.123739, -1.019149, -0.720495, 0.540438, -0.345324, -0.379632, 0.344677, 0.328697, 2.748793, 0.620863, -1.034786, 0.875036, -0.097624, -0.575974, 0.794444, 0.220426, 0.543386, -0.645406, 0.053278, 0.076648, -0.379449, 1.190202, -2.009440, -0.959602, 0.448640, -0.086173, -0.776314, 0.737553, -1.246626, -1.980447, 0.243003, 0.369617, 1.024192, 0.358525, 0.887942, -0.094622, 1.187749, -0.083996, -0.862417, 0.190874, 0.119322, 0.294916, 2.645494, -0.859714, -0.825918, -0.179890, 1.293485, 0.798081, 0.384544, -0.783378, -1.062039, -1.795689, -1.247499, -0.187664, -0.021139, 0.196630, -1.827605, 1.761667, -3.147164, -1.070339, 0.481859, -1.844817, 1.024707, 0.374770, 1.535322, 0.347619, -0.337184, 0.697440, 2.658650, 0.348595, -0.122697, 0.109197, 0.596718, -0.078259, -0.776356, 0.488101, 0.923557, 1.018881, -1.088113, 1.134182, 0.718592, 1.836771, 2.024154, -0.870108, 1.244205, -2.087258, -0.388722, -1.795906, 0.711192, -1.373735, 0.449663, -0.783590, -1.143168, 0.135592, 0.083174, -0.931215, 0.987422, -1.575637, 0.446788, -0.654699, -1.318031, -0.647886, 1.402221, 0.123557, 2.230324, 1.797810, 0.300040, 0.343700, -0.537056, -1.600758, 0.595180, 0.118309, 0.997136, 0.836712, 0.283616, 0.433747, -0.729029, -0.943932, -0.227366, -0.057888, 1.183126, -1.320678, -0.380555, -1.309577, -0.485332, 0.604359, -1.330922, -0.148926, 0.456372, -1.140769, -0.609186, 0.467971, 0.299118, 0.174998, 0.422933, 0.754133, -0.732476, -0.928986, -0.728240, -1.178316, 1.000448, -0.814347, -0.203063, 0.443529, -0.174311, -0.251117, -0.644071, -0.153997, -0.082539, 0.674903, 0.472048, 0.897780, 0.660583, -0.177280, 1.068870, -1.446629, -1.546493, 1.366226, -2.288502, 1.794686, -0.420767, 1.332002, -1.373284, -0.862202, 0.927564, -0.494349, 1.181384, -1.125830, -0.074256, -0.378115, -0.839350, 1.499537, 0.235234, 0.014598, -0.546254, -1.289649, -0.349299, 1.089985, 1.066408, 0.764480, -0.164093, -1.693415, 0.692358, -0.162189, -0.730407, 1.673545, -0.980235, 2.001535, 1.398425, 1.558775, -0.702967, 0.211842, 0.624490, -0.964077, 1.120932, 0.542271, 0.030446, 2.327094, -1.554529, 0.269761, 1.903536, -0.443620, 0.649849, -1.664970, -0.677397, -2.872522, 1.307669, 1.335139, 1.673917, 0.013702, 1.398112, -1.606674, 0.772259, 0.056622, 0.024881, 0.241775, 0.243164, -0.384306, 2.792778, -0.587318, 0.375403, -1.237404, 0.488807, -0.760261, 0.144003, -0.173976, 0.095249, 0.010463, -0.937822, 0.410867, -0.770867, -0.603174, 1.632809, 0.597481, -2.215459, -1.109547, 1.750008, -0.189765, -1.519374, -1.467196, -0.853718, -2.225365, -0.363549, -0.446801, -0.189340, -1.228377, -0.626110, -2.156332, -1.151893, -1.283724, 1.213556, -1.590464, -1.458545, -0.366378, 0.354419, -0.720425, -0.717857, 0.047276, 1.240608, 1.548001, 1.007140, -0.523533, -0.388501, -0.536126, -0.806852, 0.169690, -0.508903, -0.418444, 0.337202, -1.508635, -1.104826, -1.402955, -0.067040, -0.888354, -0.705907, -0.010777, -1.053442, -1.156385, -0.484154, 0.139156, -0.387661, 0.016361, 1.634620, 0.566286, -1.416025, -0.753104, 0.293649, 0.093446, 0.107360, -0.293067, 0.130518, -0.823477, -2.274293, -0.315044, -0.750269, -0.028701, 0.308100, -0.523415, -1.280716, -0.741633, -0.354397, 1.317815, 1.384787, -0.026900, -1.451873, -0.454513, -0.084957, -0.115540, -0.466295, -0.634769, 0.022678, 0.742489, 1.386997, -0.385872, 0.029364, 1.027894, 0.457606, 0.582352, -0.592307, 0.053087, -1.333539, 1.020934, -0.078576, -0.999927, 0.003452, -0.765376, -1.563914, 0.088731, -0.153744, -0.709352, -0.044393, 1.113993, 0.921396, 1.111499, 1.210143, -0.341550, 0.042235, 1.429697, -0.632591, -0.300360, -0.680296, 0.436063, -1.175988, 0.489881, -1.205534, 0.338403, -0.566842, 0.131293, 1.421872, -0.841501, -1.294598, -0.115798, -0.039727, -0.980674, -2.606051, 0.920376, 0.057453, 0.111790, -0.710748, -0.076055, 0.189401, 0.214520, 2.321867, 0.232029, -0.246663, -1.359717, -1.459771, -2.334101, -0.652773, 1.191809, 0.904245, 1.032031, -1.547951, 0.115268, 0.328072, -0.761484, 0.838651, -0.649313, -0.781102, 1.574347, 0.856498, -0.632760, -1.187543, 1.517092, 2.353967, -0.278929, 0.978824, 0.733094, 0.378488, 0.479565, 0.897163, -0.123646, -0.310430, -0.759467, -1.885428, -0.209862, -0.517035, 1.719035, -0.125751, 0.172083, 0.320306, 0.208253, 0.910070, -0.178106, 0.898964, 0.740969, 0.118788, -0.216174, 0.956823, 1.711554, -1.084347, 1.123219, -0.703388, 1.820281, 0.497703, -0.563163, -0.739848, -0.791185, 0.889304, 0.602255, 0.129036, 0.705769, -1.268192, 0.885870, 0.727655, -0.218390, 0.627912, -0.161703, -0.426803, 1.357310, 0.469102, -0.356459, -1.209466, 0.642868, 0.247731, 0.451678, -0.644547, 0.335827, 0.338670, 0.982578, -0.195142, 0.035988, 0.102645, 0.887253, -0.269961, 0.833427, -1.889038, 1.841671, 0.987263, 1.191295, -1.441744, -0.632205, -0.825310, -0.294225, 0.727003, 1.412185, 0.082373, 0.236460, -0.038422, -1.959176, 0.649496, 0.733149, 0.454742, -0.814309, -0.183796, 0.399533, -2.887589, -1.032415, -0.147824, -0.197423, 0.710240, 0.995691, 0.800466, 1.632968, 0.404815, -0.515171, -1.026805, -0.667833, -0.114808, -0.924617, -0.018594, -0.157162, 1.403705, 1.766914, -1.192876, -0.793076, -0.703270, -0.150484, -1.000432, -0.820079, -0.728116, 0.881888, 0.353508, -0.644275, 0.387571, -0.943107, -1.719772, 2.067284, -1.283606, 0.555288, -0.538343, -0.232900, 1.706254, 0.501986, -0.310663, -0.115982, 0.778088, -0.401959, 1.209729, 0.495599, -0.565936, -0.050681, 1.109133, -0.178498, -0.255668, 0.514292, 1.742133, 1.016622, 2.226065, 0.070508, 1.948062, -0.686067, -0.756786, -1.386338, 0.751718, 0.128653, 0.402268, -0.456415, 1.721122, 1.888827, -1.109620, 1.753833, -1.272838, -1.750162, 1.393937, 0.414713, 1.458795, 0.432089, -0.271084, 0.305521, -0.184658, 1.029695, 0.623047, 0.674749, 0.500990, 0.108209, -0.948856, -0.378686, 0.737663, -0.225464, -1.255460, -1.450462, -0.795926, 0.982417, -1.564558, 1.008991, -0.486431, 0.148419, 0.506192, 1.829997, 0.298905, -0.800254, 0.596263, 0.476915, -0.985428, 0.307917, 1.044979, -1.276391, -0.539604, 0.012788, 0.269754, -1.937072, 0.509333, -1.337484, 0.302740, 0.899198, -0.448961, 0.272133, -0.503766, 0.245911, 2.004431, 0.224981, 0.455179, -0.247878, -0.344004, -0.455249, 0.393533, -0.224898, 1.226482, 0.431806, 0.478263, -0.125799, 0.664227, 0.148365, -3.023103, 0.499670, -1.476777, -0.873552, -0.129249, -0.369988, 1.592503, -0.232923, -0.781794, 0.027017, -1.195299, 0.544237, -0.006196, 0.814351, 1.837672, 0.740725, 0.782338, 1.642543, -1.126186, -0.678856, 0.778783, 0.177031, -0.947485, 0.266654, -1.085496, 1.010150, 0.936261, -0.012702, 1.476522, 0.937361, 1.499992, 0.130745, 0.648503, -1.299191, -1.086028, 0.909201, 1.125026, -0.780970, 0.983728, -0.380441, 0.049118, -0.472084, 0.364691, -0.014094, 1.124368, -1.017236, 1.946865, 0.904426, -0.002596, 0.662932, 0.777084, 1.227172, -1.312530, 0.202687, -1.106635, 0.982087, 0.686559, -0.555521, 0.997803, 1.287305, 0.504154, 0.601062, -0.529765, 0.060907, -0.217080, 1.027508, 0.698355, -1.581733, -0.311606, 2.707881, 0.279929, -2.959562, 0.744808, 0.390481, -0.421641, -1.209988, 0.829098, -0.961529, 0.581873, -0.383676, -0.289850, -0.574130, 0.034980, 0.473143, -0.435725, -1.287254, -1.904627, 0.086599, -0.423148, -1.621388, -1.089680, -0.559273, -1.095038, 0.588340, -0.025188, -0.351800, 0.347529, 0.858863, -0.712554, 0.147760, -0.214297, 0.009104, -0.384965, -0.635931, 1.756596, -0.162672, -1.604306, 1.238165, 2.014004, -0.294017, -0.367446, -0.486456, 0.664144, 0.709728, -0.571923, -0.087981, 0.825209, 0.036387, -0.174404, 0.775066, 0.115353, -1.207576, 1.807518, -0.024098, 0.341681, -0.015670, 1.784983, 0.954031, 0.662086, 0.300683, -0.179413, 0.478067, 0.115815, 1.101331, 1.619486, -0.126395, 0.579103, 0.649872, -0.724738, 1.269255, -0.609886, 1.398500, 1.367762, -0.976735, -1.324027, -0.223323, 1.541604, -0.762275, 0.375253, -0.255432, -0.330986, 0.427725, -0.598267, 0.411468, -1.609460, -0.845222, -0.890767, -0.618564, -0.492914, 1.182000, -0.882150, 1.296872, 0.762798, -0.434291, 0.586144, 0.623786, 0.918082, -0.154718, 2.277585, 1.085829, -0.692970, 0.784628, 1.298019, 1.881265, -0.840174, 0.974620, -0.731382, -1.292343, -0.354940, -0.091845, -0.276639, -1.940824, 0.273609, -0.419021, -0.590052, 1.534430, 0.416220, 1.963111, 0.079348, -0.769528, 0.002012, 0.291696, -0.687290, 0.138033, 1.423046, 1.273412, -1.372042, -0.710537, 0.029991, -0.425986, 0.857544, 0.650420, -0.144040, -0.920889, 0.721134, -0.152666, -0.432407, -1.201088, -1.503468, -0.403696, -0.807172, 0.304677, -0.511102, -0.400557, -0.859855, -0.454673, -0.239787, 0.488322, -0.083036, -0.366056, 0.156441, -1.079316, 0.318091, -0.301893, 0.609218, 1.204348, -0.753119, 0.980664, 3.796210, -1.133296, -0.823929, 1.843483, 0.321056, -0.461334, -0.329761, 0.899085, 0.459717, 0.222955, 1.485973, 0.080453, -2.049097, 1.155141, -0.520698, 0.820835, 0.136691, 0.112932, -1.095105, -0.998634, 0.089542, -0.316153, -0.023300, -1.007964, 0.536409, 0.006725, 0.219939, -0.376703, 0.689080, -0.449503, -0.362139, -0.154353, 0.469531, -0.342434, -0.105442, -2.228610, 1.862801, 1.382594, 1.457330, 0.400455, 0.440759, 1.119281, -1.617289, 0.753984, -1.110638, 0.532744, -0.718416, 0.645858, -0.719062, -0.851025, 0.707429, 0.161813, -1.549468, 0.771746, 0.624388, 2.346169, -0.387792, -1.854217, -0.454730, -1.006506, -0.923004, 0.482504, -0.912470, 0.206206, -0.096126, 1.291834, -0.902204, 0.156233, 1.674126, -2.063265, 1.283487, 1.681964, -0.019014, -2.968753, -1.540093, -0.523178, -0.899775, 0.387268, -1.555972, 1.078691, -0.376812, 0.570607, -0.409181, -1.527514, -0.302462, -0.758858, -0.702321, -2.181706, -0.658262, -0.190414, 0.595849, -0.052696, 0.366325, 0.745387, -0.443183, -1.264017, 0.099557, -0.547320, -1.805849, -0.729279, 0.016630, -1.876772, -0.152712, 0.371446, -0.476329, -0.401440, -0.733713, -0.700930, -0.193320, 0.393181, 1.774620, -0.446209, -0.987878, 0.762784, -1.162782, -1.899903, -1.230296, 0.043290, -0.285530, -1.926066, 1.460443, -0.813304, 2.036157, -0.331495, -0.898324, -0.138054, 1.786537, -2.049535, -1.403762, 1.111821, -0.706610, -1.149683, 0.188075, -0.795089, 0.207097, -1.437854, 0.416655, -0.048398, -0.366403, 0.531330, -0.509743, 0.503418, -0.118177, 0.576956, 1.225050, 0.599023, 0.597058, -0.831920, -1.826365, 0.205631, -0.255069, -0.867460, -1.312955, 0.445624, 0.762748, 0.305457, -1.054429, 0.442221, 1.359276, -1.469672, -0.431011, -0.024575, -0.131256, 1.775543, 1.582192, -0.225956, 0.479395, 0.401060, 0.417523, -0.178910, -0.721090, -0.395913, 0.812143, -1.583178, 0.160635, 0.252204, 0.246757, -0.047343, 0.213441, 0.157329, -2.080566, -1.066409, -0.454331, -0.080913, -0.816027, 2.353933, -0.729086, -0.273801, 0.779813, 1.288876, -2.506730, -0.379631, -0.566054, -0.923300, -1.346407, 0.133783, 1.209992, -2.567671, -1.108954, -1.296308, 1.736149, 0.605642, 0.192645, 1.158784, -0.550833, 0.372249, -0.850032, 0.414675, 0.399675, 0.189062, -1.007249, 0.053036, -1.751449, 0.581333, 0.468221, 0.737183, -0.404366, 0.268284, 0.799292, -1.747538, 0.638632, 0.536745, 1.030655, 0.676386, 0.223053, -0.439443, -0.034977, -0.787056, 0.632421, 0.552024, -1.511004, -0.001843, 0.063492, -1.246286, 0.288353, 0.742749, 0.370142, -1.056146, 0.099279, 0.309442, 0.419090, 0.424427, 1.164418, 1.614803, 1.053778, -1.155949, 0.391989, -0.862272, -1.709760, 0.096941, -0.179824, 0.857109, 0.297491, -0.686876, 0.779600, -0.925900, 0.705014, 1.330644, -1.095678, 0.091249, -0.011815, 0.614401, -0.438847, 0.789591, -1.818947, 0.334269, 0.583337, -0.795161, 1.684281, 0.504569, 1.035718, 2.778836, -1.849415, 0.477285, 0.145268, -0.111491, -0.426167, 0.492001, 3.055124, -2.202069, -2.545540, 0.400037, 0.580503, 0.653296, 0.828112, 0.193867, -0.896094, -0.579759, 1.152689, -0.066268, -1.058625, -0.746186, -0.408278, -0.218528, 0.660570, 1.196898, -1.079766, -0.078783, 0.173937, -0.201425, -1.201933, -1.832978, 1.581370, 0.294157, 1.219790, -1.326156, -0.395928, -0.392351, -1.588774, 1.398477, -0.111119, 0.462944, -1.118935, 1.722983, 0.318882, 0.199412, 0.586789, -2.430567, -0.130678, -0.064726, -1.561059, 0.862869, 0.670735, -1.050763, -0.254784, -0.366436, 1.807625, 1.906982, 0.227437, 0.617599, 0.054067, 0.615317, 0.854159, -0.550218, 1.501011, -0.346793, 2.994880, -1.850683, 0.042260, -1.954350, -0.690772, -0.691414, 0.568382, 0.767278, 0.939593, 1.221146, -0.843247, -1.857675, -0.438739, 0.366487, -0.012533, 1.062202, 0.678502, -0.698320, -0.589061, 1.392660, -0.014692, -0.254400, -0.389058, 0.455011, 0.955321, 0.288299, 0.361711, 0.918346, -0.234447, -0.643624, 1.085071, 0.850665, -0.823474, 0.425494, 0.747366, 0.400085, 1.234186, -0.828338, 0.800874, 0.366952, 0.818555, -0.558730, 2.379847, 0.138641, -0.226514, 0.623817, 0.109674, -0.011339, 1.054928, 0.216609, -0.089559, 1.018074, -1.068907, -0.082493, 1.418231, -0.508477, 0.248085, 1.029483, 1.469037, 1.855924, 0.604715, -0.490856, -0.506248, -0.191966, 0.862787, -0.385807, -0.962807, -0.531157, -0.033643, -0.918936, -0.723544, 1.008217, -3.676041, 1.566184, 1.144344, 0.075474, -0.921160, -1.456606, -0.746433, 0.424510, -0.427631, -0.491317, -1.840970, -0.842448, -0.757953, -1.465122, -0.859214, -0.551356, 0.041191, -1.440799, -0.797856, -1.521732, -0.147586, -0.327580, 1.125167, -1.516668, 0.527984, -1.627442, 1.337041, -1.218460, -0.038116, 0.463635, -0.801528, -1.118041, 0.170936, -0.070397, -1.166486, -0.978883, 0.046727, 1.815457, 1.212557, -0.129676, -0.244971, -0.707596, 1.111300, -0.951421, -1.216330, -1.143902, -0.662790, 1.633130, 0.017630, -0.040664, 0.893582, 0.026925, -1.332966, 1.548233, -0.172360, -0.205729, 0.734707, 1.341781, 0.191730, -1.474243, 1.834279, 0.488465, 0.664818, -0.251428, 1.145162, 0.218729, -1.355958, -1.918748, 1.431400, 0.025223, -1.276383, 1.296274, -0.821574, 0.923209, -0.885989, -0.238381, -0.698284, -0.950578, -1.470144, -0.299562, -0.974543, -0.447062, 0.479234, 1.250019, -0.703097, -0.053070, 0.827718, -0.668392, 0.309118, 1.442489, -2.221541, 1.423063, -0.724541, -0.497532, -0.964818, -0.901931, -0.988057, 1.025807, -1.284261, 0.183423, 0.664829, 0.285021, 0.671176, -1.884838, -0.899815, -1.345672, 0.045784, 1.661913, 0.662810, -0.947114, -0.793327, -0.113444, 1.442446, 0.068966, 0.270194, -1.933888, -0.383946, -0.643890, 0.358773, 1.581929, -1.189628, -2.155237, -1.458433, -1.345861, -0.816821, -0.529428, -0.671591, 0.206462, -2.649322, -2.134382, 1.064368, 1.038938, -0.136797, 0.200898, -0.867550, 0.315312, -1.602007, -0.434502, 0.289875, -2.001870, 0.536802, -0.838116, 0.899951, 0.759677, -0.707559, 0.121736, -0.575412, 0.675201, -0.380019, -0.134058, -0.295355, -1.484965, 0.450747, -0.134306, -1.213264, 0.287506, 0.788631, -1.494547, -0.235927, -0.134889, 0.307697, -1.351795, 0.536793, -0.503153, 0.928950, -0.195665, 0.933591, 1.506824, -0.712982, -0.550729, 0.097743, -0.387651, 0.610167, -0.554629, 0.865778, -1.172483, 0.002210, 0.379809, -0.727930, 0.209213, -0.649168, 0.411371, 0.455661, -2.212316, 0.941360, -1.418085, 0.067203, -0.399673, -0.848109, 1.077335, 0.491344, 0.249749, 0.340159, 1.674015, 0.877770, -1.089479, -0.179489, 0.707524, 0.126172, -0.352452, -0.241087, -1.445134, -0.726326, -0.787889, -1.053619, -0.962096, 1.614980, 0.097501, 1.273708, 1.157279, 0.535659, -1.102176, -1.632963, -1.864505, 0.306445, 0.023364, -0.063251, 0.446336, 1.449808, 0.934849, -0.643927, -1.684765, 1.529072, -0.702589, -1.373832, 0.421753, 0.305046, -0.915507, -1.350665, 0.676483, 1.602333, 0.531668, -0.697932, -1.342307, -0.089417, -0.389130, 0.067762, -1.802380, -0.156182, -0.211202, 0.554121, -0.439373, 0.723803, -1.589427, 3.060335, 0.413831, 0.867604, 2.219315, 1.446700, 0.546755, 1.494586, 1.203633, 1.394253, -1.150876, -0.029928, -0.372093, -1.840689, -2.210353, 1.283033, -0.645564, -0.021501, -0.077096, -0.732267, -0.948169, 0.054966, 0.236298, -0.726196, 1.129175, -0.602513, -1.423572, 0.519163, -0.668252, -1.891867, 0.578244, -0.455268, -0.517073, 0.332538, 0.811766, 0.858556, -0.002323, 0.180075, 1.286900, 0.067541, -0.661717, 0.093036, 0.467318, 0.033532, -1.225681, 0.376143, 1.782949, 0.016096, 0.682125, -0.052125, 0.624759, 0.981268, 1.184785, -0.163998, -0.694862, -1.702779, 2.202143, -1.805513, 0.169976, -1.976831, -1.719692, 1.790999, -0.224391, -0.899993, 0.541737, -1.801347, -0.430117, -0.276419, 0.909497, -0.066531, 0.059858, -1.641162, 0.551484, -0.365252, -0.052110, 0.386824, -0.535469, -0.283235, -1.726350, 0.899240, -1.000476, 0.080297, 1.286556, 0.997315, -0.199777, -1.021605, -0.239559, -0.518559, -1.701096, -0.378116, -0.265730, 0.325563, 0.047423, 0.734502, -0.417671, -0.188999, 1.214969, -1.195063, -1.318769, -0.597199, 0.833651, 0.614565, 0.439964, 0.298420, 0.916472, 1.488605, 0.459543, 1.836470, -0.601337, 0.189246, -0.110596, -0.885615, -1.223122, -1.028192, -0.038448, -1.463487, -0.302465, -1.708701, -0.033486, 0.447072, -1.510011, 0.818844, -0.818325, -0.071532, -0.456622, -0.080089, 0.578328, -0.353340, -1.761056, 0.692841, -0.764207, -0.174462, -1.323933, -1.750946, -0.872114, -0.904773, -1.859576, 0.101255, 0.104772, 1.444046, -0.921593, -1.464600, -0.202483, 0.165346, -0.193454, -1.245988, -1.884432, -2.006478, 0.766918, 0.923438, -0.428141, -1.048595, -0.885484, -0.385997, -0.062651, 0.126930, 0.260520, 0.809685, -0.740131, 1.019064, -1.063045, 1.316126, -0.769969, -0.449291, 0.313685, -0.008639, -0.804785, 0.690296, -0.039276, 0.200269, -0.632381, 0.395774, 0.552030, 0.107645, 0.055983, -0.608583, -1.023219, -2.211037, 1.298246, -1.809259, -1.371396, -1.125279, -1.282304, 0.373770, 1.508846, -0.861505, -0.105574, 0.305476, 0.863211, 0.613365, 0.508459, -0.322930, 0.978494, -0.955532, -1.478241, 0.206332, 0.799721, -0.411744, -0.721522, 0.402252, -0.627950, -0.267320, 0.034907, 2.154497, -0.698956, 1.318294, 0.633494, -0.696828, 0.561687, 0.348712, 0.560269, 0.948468, -1.191606, -0.013187, 0.004214, -0.108904, 1.191522, -1.278090, -1.321191, 0.352054, -0.456117, 0.762071, -0.445581, -0.045171, -0.586694, 2.537035, -0.114578, -0.878674, 0.319526, -0.280921, -1.869298, 1.048788, -0.344832, 1.342228, -0.536436, -2.081823, -0.068134, -0.449956, 0.908614, 0.969410, -0.243123, -0.404915, -0.123397, -1.281626, -0.364504, -0.620161, -0.747356, 1.021048, -0.524026, 0.033197, -0.861703, -0.507897, -0.063040, 0.378450, -1.381998, 0.342766, 0.742211, 1.285155, -0.628621, 1.163057, -0.448287, -0.935174, -0.265119, -0.252429, 0.616801, 1.237314, -1.431694, -0.076930, -0.434408, -0.551587, 0.317389, 0.151536, 0.168743, 0.039960, -0.532517, -0.413515, -0.914875, -0.557830, 1.741927, 0.508527, 0.014957, -0.143183, 0.027691, -1.073218, -0.281156, 1.049488, 0.842257, 0.245885, 0.717098, -0.167893, -0.154633, 0.363581, -0.888814, -0.436968, -1.205137, -0.573453, -0.335224, 1.937791, 1.854965, -0.888953, 0.011320, 1.019151, -1.062075, 0.708113, 0.186630, 1.264196, -0.635586, 0.203850, 0.916473, -0.122630, -1.049441, 0.375392, 1.013167, -0.195679, -0.236890, -0.630610, -3.797426, -2.581191, -0.306146, -0.534523, -1.046973, -0.571939, -0.140089, 1.133140, -0.313022, -0.398185, -0.271486, 1.333323, -0.592932, -0.154737, 0.244402, -0.989020, 0.651396, 0.627537, 0.440832, 0.144300, -0.084074, 0.150242, 0.858584, 0.479372, -1.088560, -1.612557, -0.596684, 0.078421, 0.825239, 1.382736, -1.951528, 0.039685, 0.274720, 0.247438, -1.503899, 0.147751, 0.550817, -2.378720, -0.468785, -1.506641, -0.196991, -1.449521, 1.142091, 0.853693, 0.946128, 1.663352, 0.759426, -0.166834, -0.925985, -1.078044, 0.340985, -0.322320, 0.856637, 1.045953, 0.019409, 0.925352, 0.026787, 0.464241, -0.501265, 0.433406, -0.498653, -1.533298, -0.616750, -1.890728, 0.700358, 0.404116, -1.025085, 1.437298, -1.368346, 0.033491, 0.891547, -0.057709, -1.209718, 0.086080, -1.778648, -1.112272, 0.440652, -0.219090, -1.673256, -0.937344, 0.877575, -0.057532, 2.474996, -0.619526, -1.010538, 0.492651, 0.256700, 0.364297, -1.080675, -2.380076, -1.472839, 0.029080, 0.148767, -0.133946, -1.402511, -0.161768, 0.738143, -0.655318, 0.094442, -1.930352, -0.192111, 1.908579, 0.011605, 0.330979, 0.088216, -0.658174, -0.168834, 1.379041, 1.768504, 2.178951, -0.420402, 1.045127, -1.233923, 1.738275, 0.659997, 1.847909, -0.899036, 1.492324, 1.007905, -0.482787, 0.480987, 1.493345, 1.205761, -2.325719, 1.652551, -1.758435, 0.140502, -0.999567, 1.540045, 1.510875, -1.195842, 0.061954, -0.802136, -0.503971, -1.780097, -0.183943, 0.803492, -1.863290, 1.002006, -0.048879, -0.222030, 1.477588, -0.921075, 1.733136, -1.932857, -0.318333, 0.488691, -0.880340, -0.069236, -0.232048, -0.110692, 0.047992, 1.804802, 0.477774, 2.737476, -0.325673, -1.101208, 1.411058, -0.208029, -0.516869, 0.461553, -0.558734, 0.546545, 0.101771, -0.103855, 1.977252, -0.332936, -0.088108, -0.169573, 0.870283, 0.845749, 0.370249, -1.241206, -0.288545, 0.363963, -0.894715, -0.244015, -0.467331, 0.608404, -0.465282, -0.587586, -0.463435, 0.427950, -1.561962, -0.274600, 0.320314, -0.010140, 1.806202, 0.715583, -0.943608, 2.586653, -0.372883, 0.869511, -0.940933, -0.096121, 0.936824, -1.068356, 0.733742, 1.095680, 0.452268, 1.414312, 0.023068, 0.591228, -0.208272, -1.081450, 1.525643, 1.385534, 0.323200, -0.130600, -0.990261, -1.198141, -1.471467, 0.003122, 0.021244, -0.877843, 0.879732, 0.519738, -0.301337, 1.454203, -0.414185, -1.481040, -2.923714, -1.019477, 1.224513, 1.813335, 1.165424, 1.418143, 0.877545, 0.285914, -1.824701, 0.257644, 1.017756, -0.949155, 1.287921, 1.331327, 0.561452, -0.410556, -0.101726, 0.512014, -1.425907, 0.030784, -0.431632, -0.274067, -1.942552, 1.303737, 0.103101, -0.739919, -1.333272, -2.271831, -0.739720, 0.365732, -0.758369, 0.336967, 0.712609, -0.003514, -0.685378, 0.164680, 1.310042, 0.106370, -0.371664, 0.512635, 0.824196, -0.322076, -0.228939, -0.298097, 1.988213, -0.519553, -0.864811, -1.094237, 0.865160, -0.889798, 0.244345, 1.215921, -0.357982, 0.172388, -0.090557, -0.076280, -0.212048, 1.376257, 1.038743, 1.037681, -0.428075, -0.597476, -0.117634}, - { 0.708783, 1.131935, -0.295111, 0.560741, -1.499676, 1.081983, -0.690776, 0.525180, -1.601818, -0.616921, -0.242050, 0.759504, -0.379464, -0.279613, 0.664757, -1.787720, -0.697258, 1.523226, 0.611804, -1.463266, 0.849166, 0.088049, -0.447639, -0.388767, -0.535561, -0.265597, 0.479666, 1.463904, -0.859864, -0.590982, -0.389156, -1.209902, 0.675350, 2.018850, -1.159406, 0.220304, -1.489899, 1.191158, -1.292296, 0.153147, -0.133125, -0.287782, -0.004898, 1.950939, 0.209956, 0.138637, 0.496528, 0.259788, 1.042857, -0.741759, 0.105329, 1.221935, 0.028468, 0.647793, -0.101484, 0.403082, -0.905254, 0.088542, -1.208114, -0.060249, -1.491535, -0.093152, -0.371890, -1.893254, 0.221821, -0.081192, 1.444038, -0.801182, -2.185120, -0.973081, -0.023747, 0.021040, -0.980092, -0.992898, 0.369225, -0.047475, 0.006548, -1.129992, 0.552777, -0.620558, -0.057711, -0.615504, 0.327934, -0.513624, 0.230786, 1.906838, -1.714362, -0.457335, -1.530945, -1.119984, -1.394583, -0.333806, -1.852323, 1.434235, -0.001954, 0.801129, -0.209600, -0.321322, 1.080321, 0.292868, -0.384614, 1.841074, 0.942635, 0.036071, 0.471805, -0.206541, -0.108269, -0.811337, -0.104313, 0.281255, 2.063791, 0.413419, -0.280447, -1.327779, -0.237347, 0.791644, 0.716968, -0.073074, -0.141110, 0.085230, -0.734374, 0.211454, 1.428895, 1.344210, -1.319227, -0.644868, 0.059260, 0.206288, -0.291656, 1.604446, -0.080070, -0.211077, -0.569330, -0.382248, -0.313883, 1.230755, 0.413608, 1.111011, -0.635720, -1.009620, 0.139370, -0.993196, -0.384125, 0.666090, 0.370512, 0.089801, 1.892409, 1.207692, -0.883599, -0.176089, 0.776208, -0.085987, 1.385221, 0.550568, 0.005757, -2.076656, 0.826924, -1.647033, -0.916374, 1.498019, -0.970140, 1.511093, 1.770226, -0.616552, 0.195096, -0.691112, -1.783100, -0.518952, 0.278854, -3.606590, 0.445351, 1.662397, 0.203867, -0.859219, -0.640424, -0.801028, -0.957140, -0.340679, -0.486475, 1.165515, -0.093376, 0.453099, 0.612810, 2.402252, 0.505980, 0.094312, -0.047279, -0.321894, 1.165823, 0.462745, 0.683448, 0.841891, 1.450980, -0.423997, -0.832682, -0.899674, 0.515106, 1.402015, 0.314088, 0.301954, 0.730656, -0.586608, 0.871775, 0.485957, 0.839787, -2.834916, 0.278115, 1.067752, -1.539503, 0.056001, -0.512996, 1.016016, -0.071151, -0.087622, 0.234122, 0.933980, 0.979977, -0.883593, 0.088170, -0.092845, 0.296885, 0.701235, 0.730355, -0.473992, 0.107071, 0.643496, -1.925743, -1.256873, -0.467933, 0.459772, -1.711960, 1.248433, -0.092724, -0.667556, -0.403970, 1.555986, 0.390680, 0.514482, -1.145920, -0.858101, 0.423414, 0.538179, 0.526019, 1.197701, 0.251989, -1.102216, -0.748797, -2.511522, -0.512188, 0.102921, -0.999759, 0.109989, 0.125927, -0.668349, 1.119345, -2.745840, 0.685110, -1.526561, -1.096721, -0.195785, -0.587867, -0.607784, 0.517398, 1.383988, -1.597097, -0.185422, -0.879120, -0.392037, -1.578199, -1.092373, 0.781641, 1.744911, -0.794079, 0.094724, 1.706743, -1.621872, 1.226963, -0.312499, 0.224023, -0.795788, -2.821457, 1.405811, 0.782254, 0.849403, -0.860183, -0.033286, -0.440938, 0.209138, -0.424008, -0.407860, 0.572749, -0.044453, 2.089242, 0.970522, 0.071075, -0.561079, -0.149891, -2.096178, 0.953075, -0.155065, -0.952863, -0.171341, -2.242267, -0.515147, 0.351991, -0.830646, 0.057314, 0.854155, 0.593755, -0.779534, -0.272688, 0.098291, 0.010552, 1.043192, -0.522208, 0.283379, -0.387422, 1.420241, -0.318580, -0.379524, -0.852458, 0.285222, 1.149735, -0.602556, 1.420953, 0.048348, 1.344053, -0.505761, -1.016052, 2.794708, -0.017095, -0.365163, -0.415444, -0.248113, -0.004596, -1.012876, 1.029564, -0.394855, -0.565477, -0.389074, -0.593390, 1.095759, 0.967193, 0.912609, 2.111502, 0.147812, 0.929306, 0.707837, -1.012529, 0.902632, -0.941679, 0.295134, -0.985402, -1.723683, 0.623728, -1.641349, -0.391337, -2.122866, -0.854087, 0.471879, 1.234227, 1.417337, 0.315503, -2.731246, -1.229849, -0.443165, -0.614513, -0.011028, 0.627780, -0.860820, -0.786275, -1.371742, 0.431615, 1.309274, -0.821439, -0.261070, 0.660963, -1.021590, 0.737661, -0.967164, -0.567304, -1.878290, 0.301515, 0.703598, -1.212648, -0.633017, 1.049533, 0.679983, -1.801228, -0.304252, 0.794838, -0.227056, 0.053731, 0.482792, -0.362529, 0.490980, -1.779794, -1.538623, -0.669362, -0.985563, 0.208736, -1.140189, 0.462613, -0.904050, 1.346461, 1.833743, 0.218386, -0.833870, 0.074306, 0.604061, 0.145064, 1.417419, 0.226484, 0.417399, -0.432708, -0.733680, -0.843887, -0.918953, -0.192292, 0.393638, -1.711711, -0.473351, 0.489287, 1.561650, 0.693495, 1.161966, 0.789446, 0.063996, 1.843614, -0.281329, -0.553190, 0.196177, 0.567370, -0.243443, 0.482495, 0.475805, -0.441379, 0.781558, 0.861086, -1.046042, -0.798552, 0.513558, -2.510005, 0.381886, -0.968730, 0.140252, -0.678966, 2.023665, 0.261010, -0.911110, -1.454500, -1.587311, -0.328139, 1.244102, -0.332306, 0.911721, -0.087873, -0.055848, -0.802268, 0.763254, -1.103382, 0.020909, -0.455271, -0.852488, 0.316453, 0.276279, -1.815327, 0.800250, -1.017426, -2.272913, 0.612606, -1.161582, -0.061645, 0.281389, -1.567569, -0.008614, 0.538856, 0.672268, -0.104056, 1.166358, 1.156220, -1.159910, -0.257655, 1.316906, -0.328530, 1.523268, 1.629131, -1.623196, -0.682277, 0.585485, -0.089381, 1.357037, 0.984276, 0.735384, -0.038241, -0.707370, 1.151447, 1.107831, -1.842378, -1.265742, 0.263936, 0.102341, -0.084405, 0.933076, 1.127442, -0.572159, 0.876765, 0.978203, 0.647516, -0.945423, 1.435292, -0.906254, 1.039659, 0.342019, -0.875323, 0.978208, 0.157310, -0.484039, -0.704315, -0.078572, -1.949494, 0.345802, -0.580714, 0.378368, -1.981530, 0.637888, 0.717339, -1.213921, 0.638917, -0.894838, -0.142790, -0.715257, -0.085941, -0.821184, 0.187698, -0.552810, -1.432310, -0.210969, 2.201425, -0.486477, -1.082860, 0.634123, 1.449477, 0.475435, -1.783162, 0.617213, -0.722758, -0.371557, 1.090877, 0.951445, -0.694444, 1.796125, -1.036446, -0.430737, 0.328300, 0.929586, 0.347734, -1.377510, -1.239483, -0.801675, -0.437528, -3.461172, -0.302192, 0.528891, -0.711603, -1.108593, 1.066750, -1.188587, -1.059012, 0.663690, 0.040034, 0.608568, 0.454871, 0.794065, -0.971437, 0.238552, -0.543488, 0.042982, 0.517756, 1.952041, 0.063691, -0.512967, -0.753432, -2.216880, -0.386219, 0.265224, 0.674330, -1.660889, -0.402902, -1.787134, -0.429136, -0.723789, -1.059645, -0.236633, 0.018241, -0.360183, -0.010409, -1.523919, -1.698465, -0.753349, 0.819740, -0.129334, -1.257056, 0.013637, 1.559490, -1.512570, 0.947234, 0.584164, -0.584677, 0.811991, -0.240677, -1.588282, 2.122699, 0.417049, -0.601947, 0.404843, -0.335719, -0.544009, 1.745651, -0.459741, 1.334987, 0.818579, -1.118451, -1.132396, 2.329793, -0.425327, -0.017306, 0.032811, 1.648383, -0.302620, 1.901765, -2.228271, -0.250386, 0.141197, -0.380903, 0.476301, 0.256102, -0.860988, 1.191412, 0.944407, 0.779560, -0.335404, 0.685976, -1.569387, 0.425596, 0.970912, -0.034067, -0.079353, 1.037693, -1.784057, -0.081923, 0.231672, 1.108519, 1.086204, -1.111977, -0.530177, -1.434375, -0.993360, -0.513587, -0.450060, -0.732586, -1.028164, 0.101072, -0.213878, 0.972663, 0.767658, 0.681991, 0.853132, 0.444208, -1.635366, -0.451921, 1.069521, 0.383732, -1.264748, -1.487448, 0.635811, -0.210745, -1.608362, 1.617636, 0.804067, -0.693396, -1.287541, 0.242406, -0.026155, 1.735577, 0.753563, -0.168854, -1.020591, 0.463787, -0.104122, 0.452049, 1.046777, 0.450804, -1.717804, -0.657638, 0.583266, -1.102787, 0.063473, -0.404023, 0.012863, -2.326316, -0.235964, 1.083867, 0.191824, 0.226641, 0.930682, 0.381416, 1.014651, -0.131427, -0.647924, -0.421400, 0.572816, 1.491196, 1.989454, -0.148600, 0.812966, 0.379139, -0.279552, 0.176965, 0.065485, -0.767939, 0.126027, 0.894322, -1.070340, -0.936561, 1.214715, -0.038613, -0.987703, -0.488730, 0.237719, -1.215890, -0.592992, -0.852683, 0.175095, 0.382086, -0.712164, 0.410872, 2.519297, -0.010222, 1.448691, 0.052917, -0.036129, -0.408312, 0.291248, 1.383008, 1.295629, 0.284923, 1.704845, -0.811940, -0.947025, 0.541476, -0.873773, -0.546245, -0.790850, 1.739208, 0.378770, 0.369373, 0.096654, 1.325830, -1.011438, 1.498456, -0.787938, -0.204658, -1.970884, -0.785674, 0.334507, -0.006849, 0.288259, -0.889448, 0.260965, -0.021076, 0.926514, 1.861692, -0.184410, 1.813177, 0.758889, 0.419489, -0.235667, -1.446277, -0.054368, -1.201142, 0.053574, 2.054008, 0.309834, 0.549717, -0.045640, 1.803070, -0.923470, 0.145422, -1.800137, 0.740683, -0.700675, 0.876768, 0.152040, 1.044051, 0.930561, -0.025134, 0.398516, -1.363957, -0.371047, 0.775333, 0.869320, -0.613075, -0.500593, -0.922937, 0.382785, 0.663527, -0.075489, -0.163457, -0.777183, 0.126770, 0.370944, -0.090181, 1.538654, -0.342371, -2.086604, -1.062219, -0.459145, 1.808433, -0.242851, 1.925723, 0.353727, -1.607992, 0.823269, 1.632794, 1.277753, -0.072690, -1.021996, -0.434252, -0.229004, 1.654361, -0.217209, 1.107375, 0.291197, -0.211560, -2.680941, -1.513223, 1.987350, 0.675766, 0.061566, 0.609669, 1.659219, -0.143818, -0.521891, -0.065786, 1.809595, 0.235327, 0.318794, 1.776339, 0.572445, 0.547691, 0.761784, -0.578851, -0.705522, 1.483314, -0.488039, -0.339615, -0.648529, 0.614061, 1.224037, 0.345048, -0.490206, -1.442397, -0.513060, 1.522905, 0.825607, -0.202273, -0.644566, 1.648473, 2.099079, -2.161117, 0.100382, 1.214772, 0.168741, -0.263650, -1.469705, 1.445583, -0.149081, 0.810306, -0.301803, -1.076094, 1.703752, -0.204445, 1.762732, 1.258543, 0.189436, 0.655702, -0.590395, -1.135584, -1.300514, -1.293575, 0.662891, -0.103278, 0.212895, -1.165949, 0.068801, -1.325531, 0.295257, 1.518204, 0.838905, -2.201095, 1.040052, -0.820645, -2.301049, 0.401953, -0.847265, 0.329253, 0.093634, 0.910239, -2.674407, -0.588052, -0.247402, 0.084656, -0.797835, 0.367538, -0.632283, 1.183055, 0.532847, 0.234936, 0.526328, 1.007877, 0.421336, 0.440152, -0.966936, 0.131112, 0.506426, 0.848045, 0.397182, 2.010851, 1.653456, 0.762043, -0.523068, -1.959751, 1.199433, 1.034749, -0.093455, 0.527419, -0.286049, -0.252117, 2.557612, 1.097466, 1.896780, -0.044213, -2.154786, 0.577846, -0.419661, -0.477373, -1.402643, -0.441083, 0.427644, 0.843171, -0.155438, 1.456292, -0.599841, -1.167560, -0.711564, -0.787738, -0.400101, 0.216151, -0.824283, 0.253830, 0.129838, -0.108665, -0.631168, -2.004545, 0.634663, 1.817165, -3.154556, -0.215724, -1.247239, 1.565945, 1.753121, -0.475211, 0.492487, -0.970476, -0.456154, -2.566685, 0.716637, 0.208429, -1.420813, -0.200903, 0.359249, 0.800354, -0.850517, -0.974716, -0.873156, -1.217397, -0.974080, 1.185673, -1.302780, 0.752932, 0.477511, -0.113374, 1.193936, 1.386391, 0.487053, 0.626455, 0.979204, 0.144087, 0.618837, -0.915846, 0.847579, -1.071476, -0.905240, -0.304847, -1.094229, -2.244907, -0.129893, -0.091618, 0.297645, 0.002954, -1.152765, -1.377643, -0.338424, 1.743286, -0.106450, 1.882329, 0.700705, 0.001774, -1.195052, -1.455451, -0.210710, -0.209847, -0.003937, 0.261315, -0.136313, 0.068152, -0.785696, -1.498705, -1.047939, 0.683687, 2.236852, -2.868035, -1.528828, 0.470485, -1.144369, 0.986557, -2.336719, -0.418403, 0.392418, 1.401742, -1.619507, -1.006960, -1.755103, -2.021513, 1.191523, 0.181305, 1.056016, -0.124409, -0.225067, -0.468114, 1.241338, 0.833449, -0.068948, -0.500600, -0.539498, 0.647499, -0.468473, 2.021611, -1.259210, 1.018135, -1.301108, 0.376175, 0.207747, -0.143717, -1.417392, 0.462506, -1.181129, 0.677035, -1.218897, -1.268872, -1.075806, -1.968396, 0.954570, 1.518407, 0.129180, -0.323935, 0.268383, 1.052229, 0.958581, 0.585700, 0.604379, 1.113128, 0.906509, 1.169143, 1.514989, 1.915938, -1.163027, -0.143198, -1.269730, 0.217194, -0.340224, -1.606367, 0.791992, 0.698760, -0.800437, 0.755093, 1.161269, -0.634486, 1.836917, 0.205004, 2.266139, 0.214470, 0.117777, 0.076466, 0.487443, 0.335646, -0.215083, 0.971279, -0.755210, 0.042678, 0.192247, 0.517439, -2.080281, -0.070046, 3.014903, -0.385104, -0.100109, 0.157686, -1.175000, -0.630059, 0.217591, 0.497044, 0.566156, -0.877102, 0.733514, -0.019660, 0.116846, 1.302198, -0.046347, -0.551955, 0.050225, -0.430873, -0.561943, -0.032391, 0.146036, -0.073279, 0.152867, -0.522217, 0.169728, 0.179095, 1.724164, -0.848381, 1.315573, -0.740631, -0.015174, -0.693068, -1.393070, -0.666124, 1.004668, -0.124415, -0.271737, 0.349935, -0.470412, -0.192005, -0.585248, -1.011934, 0.760964, 1.073940, 0.743015, -0.207310, 1.023408, -0.167480, 1.566051, 0.261208, 0.339419, 0.455521, 1.959921, 1.161396, -2.276122, 0.560243, -0.942577, -0.147583, -0.656534, 0.975898, -0.996467, 0.178349, -1.994014, 0.344181, 1.237171, 2.853831, 1.457706, -1.552338, -0.393172, 0.027771, 0.717165, 0.160037, -0.771897, 0.981289, -1.403879, -1.368525, -0.259766, -0.271188, -0.745841, -0.533897, -0.097575, 0.743683, 0.208026, -0.145799, -0.389443, 0.495146, 0.434669, -0.559898, 0.466921, -0.498495, 1.182764, -0.832134, 0.581413, -0.667433, 2.322467, -0.834069, 0.175124, -0.099992, 1.008935, -0.038363, 0.772624, 0.543907, -0.215115, 0.499525, -0.016072, 1.968121, -0.301446, 0.516615, 0.234111, 1.035307, -0.150692, -0.358657, -0.455789, -0.233801, -1.321209, 0.046611, -0.729213, 1.932957, -0.641451, -0.448544, 1.431167, 1.158927, -1.011171, 1.283346, -0.534970, 1.281953, -1.680819, -0.132364, -1.103789, -0.209977, -0.667237, -0.149222, -0.932948, 0.461611, -0.587159, -2.317579, 0.951777, 0.747088, -0.496006, -0.374035, -0.788433, 0.033388, 1.568819, -0.747561, 1.061348, -0.212648, 1.422512, 0.233423, 0.938357, -0.748446, 2.002812, 2.013757, 0.272567, -0.420266, 0.100979, 0.256087, 0.056224, -0.831795, 0.433841, 0.783670, 0.641306, -1.174226, 0.799980, -0.387608, 0.293853, -0.552242, -0.576566, -0.293922, -1.708010, -1.276985, -1.174848, -0.439052, -0.079684, 1.213085, -0.989846, 0.324038, -0.494202, 0.346739, 0.354266, -2.244685, -0.294579, -0.124311, 0.607728, 1.391258, -0.777902, 0.160388, -1.107819, -2.146373, 1.867712, -0.598419, -1.094269, 0.063570, -1.510888, 0.267768, -1.562781, 1.121093, -1.029435, -0.697393, -1.658601, 0.289499, 0.559251, 1.431551, 1.010358, 1.131345, -2.243953, 0.703263, -1.149005, -1.208348, -0.442921, 0.498112, -0.173916, -0.996931, 0.771683, -1.814528, -0.865800, 1.635986, 0.071434, 0.098347, -0.967076, 0.091300, -0.549585, 0.711056, 0.201949, -0.968158, -0.881849, 0.625632, -0.816407, -0.505341, -1.179712, -1.198211, 0.656119, -0.443758, 1.530951, -0.793081, -1.655444, 0.535918, 0.695796, 1.327776, 0.896813, 0.638356, -1.348884, -0.605608, -0.030374, 1.536290, -0.461844, 1.598852, 0.740421, 0.184102, 0.004534, -0.420276, -3.775936, 0.615149, -0.180679, -0.104208, 2.069957, 0.036684, -1.640943, -0.224451, 0.347034, 1.190766, -0.217378, 1.266515, 2.732118, -0.035116, -0.280604, 0.446426, -1.196549, 2.021227, -0.599959, -1.934169, -0.252879, 0.935582, 0.614091, 0.918940, 0.575268, -0.062814, 1.971872, -0.194930, 1.454373, -0.177024, 0.718098, 0.162333, 0.107799, 0.406323, 0.692544, -0.214666, 0.382505, -0.303283, -0.000004, -1.678700, -1.042923, 0.757273, -0.788994, 0.502537, -0.928597, 0.036140, 0.125434, 1.700459, -0.404908, -0.799559, -2.132322, -0.739251, -1.142471, 0.307323, -0.582195, 0.978744, -0.272702, -0.168873, -0.441313, -1.278041, -0.967008, -0.303607, 0.803348, 0.998592, -0.026216, 0.090860, -0.399516, 0.400405, 0.685109, -0.148773, 1.425048, 0.367699, -0.443374, -0.001402, -0.101446, -0.883891, -1.280140, -1.516819, 0.222853, -1.700484, 1.219625, -1.104200, -0.601984, 0.245309, -0.200794, -1.184545, 0.576360, -0.259759, -0.595587, -1.260062, 0.639379, 0.255320, 0.244079, 0.210897, -1.710904, 0.254088, -0.201201, 1.102207, 1.058988, -0.860352, -0.813508, 1.138582, -0.438929, -0.252130, 0.591775, -1.134048, 0.338100, -1.725649, 0.817531, -1.557500, 1.320288, -0.202630, -2.744391, -1.854540, 0.947890, -0.101627, 0.111267, 0.783809, 0.598773, 0.063634, 0.119405, 1.049782, 0.457089, 0.967330, 0.840304, -0.331636, 0.021403, -1.807151, 0.932683, 0.495923, 0.972064, 0.782607, 0.182051, 1.817574, -0.446915, -0.814193, 0.540782, -1.149318, 0.379813, 1.737623, -0.206147, -0.437966, 0.739693, 0.072204, 0.736797, -0.736724, -2.309374, -0.619207, 0.076818, -0.234613, 1.336893, -0.359210, -0.374327, -0.100724, -0.022705, 0.899557, 1.157371, -0.239246, 0.491779, 0.274765, 0.047113, -0.180513, -1.173371, 0.720154, 0.030805, 1.044155, -2.437276, 0.564685, 0.387637, 0.139276, 0.571655, -2.644007, 0.655646, 0.214159, -0.859752, -0.171598, -1.088565, 1.207238, 1.744248, -0.818447, -0.740909, 1.082618, -0.497130, 0.540493, 1.398981, 0.979698, 1.927763, -1.685656, -0.867991, 1.422571, 1.422396, -0.864200, -0.882726, -0.814746, 0.088473, 0.309067, -0.390118, 0.834455, 0.481358, 1.016767, 0.131616, -0.440436, 0.841581, -0.282526, -0.009268, 0.915465, -1.676770, -0.627810, -1.986961, -0.005086, -0.703968, -0.999500, -0.053510, 1.351457, -1.026525, -0.267850, -1.671978, -2.514673, 0.060628, 0.475831, 0.696310, -0.737327, -1.091706, 0.593200, -0.989760, 0.835159, -0.016573, 1.702667, 1.240535, -0.211041, 0.762622, -0.239163, 0.778149, 0.699726, 1.460417, 0.974107, -2.002186, 0.642081, -0.733757, -0.437317, -0.391378, 0.706077, -2.504125, -0.483491, -0.045388, 0.219927, 1.337155, 0.355076, 1.145113, 1.582176, 0.097630, -0.772145, 0.997015, 0.848897, -0.657182, 0.588524, 1.006684, 0.006797, -0.161742, -2.117253, 0.595568, 0.972976, -0.802742, 0.353470, 0.014403, -0.710539, -1.090961, 0.088054, -0.722678, 1.855594, -0.624042, 0.207865, 0.517991, 0.308141, -0.776324, -1.323474, 0.373148, 0.629893, -0.440437, 0.493736, -0.615343, 0.067697, 0.957327, -1.377166, -0.637131, -1.375413, 0.794745, 0.130934, -0.677133, 1.195006, -0.120089, 0.584505, -0.377536, -2.066050, 0.073052, 1.264842, -0.761266, 0.740730, -2.106899, -0.490092, 0.734132, 0.469079, 0.885761, -0.590054, -0.222871, -0.329867, 0.281156, -0.315888, 0.504387, -0.276015, -1.496044, -0.812262, -1.261299, 0.231281, -0.520836, -0.293410, -1.481559, -0.234330, 0.644913, 1.089500, 0.692390, -0.695060, 0.543120, -0.493768, 1.427880, 0.350250, -0.426626, -0.976689, -1.094803, 0.294674, -1.960852, 0.644651, -0.319988, -0.247933, -1.315308, 0.110447, 0.199359, 1.454688, 0.808697, 1.876743, 0.215491, -1.692950, -2.158695, -2.446392, 1.467720, -1.713316, -1.254796, 0.433777, 0.769078, 0.182882, -0.582465, -1.015637, -1.676156, 1.912483, -1.062583, 0.134960, -1.205183, 0.221049, -0.027670, -2.838072, -1.167933, 0.526512, 0.029290, 0.370569, 0.610331, 0.220973, -0.918698, -0.994198, -0.463759, -0.485319, 0.641089, 1.438944, -1.457755, 1.642534, -0.563240, -1.731279, -0.379839, -0.422516, 1.442983, 0.332743, 0.910398, -1.518553, -0.080022, -0.036954, 1.782836, -0.371990, -0.906857, -1.200207, -0.153080, 0.300412, -2.253697, -0.477115, 0.876884, -0.430015, 1.704056, -0.367081, -0.202096, 0.965252, -0.207618, 0.543992, 0.626124, 1.386042, -0.448936, -0.121288, 0.624913, -0.269462, 0.147147, -0.411019, -0.001077, -0.698755, -1.403367, -0.370426, -1.196122, 0.963834, -0.609958, 0.967324, 0.579803, 1.047097, -1.083893, -1.039541, 0.203753, -1.530811, -0.798662, 1.377033, 1.571949, -0.202068, -0.458525, 0.230252, 0.620853, -0.393020, 0.555077, 0.919033, -0.145801, -1.195776, -0.647152, -0.137312, 1.150590, -0.552855, -1.112145, -0.054473, -0.649617, -0.930187, -0.564733, 0.319892, 0.310940, -1.449609, 0.493095, 1.107935, -0.594554, -0.638914, -0.745973, 0.071228, -0.229151, 0.538838, -1.513546, -1.664930, -0.151964, 0.992643, 1.258767, -0.212244, 0.172939, -1.220083, 0.474661, -0.662429, 1.953721, 2.028428, -0.840603, -0.706121, 0.424239, 1.373669, -0.115287, 1.243967, 0.230934, 0.108965, 0.500382, -0.493032, -1.768642, -1.831999, 0.680699, -0.433222, -0.343478, -0.063561, -0.407894, -0.337301, 1.505116, -0.503338, 0.854579, 0.853577, 0.100918, -0.244675, -0.687647, -0.430688, -0.377183, 0.231285, -1.175950, -0.247943, 0.339170, -1.600798, -0.176845, -1.479477, 0.236874, 0.626177, 1.505770, -0.770012, -2.114407, 0.623652, -1.314032, -0.330420, -0.333859, -1.156241, -0.020154, -0.629661, 0.505709, 0.160653, -0.594685, 0.684685, 0.147119, -1.186042, -0.737334, -0.663655, -0.380978, 0.246711, 1.429014, -0.813295, -0.469303, 1.530426, 0.083783, 2.283578, -0.440811, 0.153641, -1.994563, -0.113092, 0.673811, 0.278523, -0.064428, 0.311196, -1.172663, 0.170517, -0.265356, -0.240079, -1.893958, -1.555528, -1.473602, 1.390364, 0.206262, -0.376287, -0.204225, -0.808917, 0.434866, 0.128708, -0.834139, -0.522531, -1.495054, -0.472214, -2.046021, -0.097179, 0.611934, 0.149320, -0.155795, -0.699014, 1.812708, -0.380693, -1.531832, -1.501103, -0.505107, -0.440358, -0.330089, 0.662129, 0.386070, 0.719918, 1.618352, 2.271817, -0.585044, -0.557983, 0.256632, 0.371570, 1.115593, 0.240944, -0.482222, 0.424249, 1.866534, 0.112457, -1.912134, -1.408136, -0.270786, 0.213478, 0.275910, 0.193539, -0.821919, -0.218701, -0.561665, -0.731643, 1.275021, -1.195094, -1.146271, -1.297975, -1.064659, -1.216077, 0.019750, 0.862540, 1.160000, 1.061147, -0.359017, -1.159709, -1.725240, -0.081177, 1.791176, -0.544092, -1.302456, 0.578454, -0.471508, 0.957030, 1.769753, -0.447506, 0.983422, -0.797989, 0.313344, 0.269792, -0.291720, 0.351048, 0.291720, 0.831762, -0.472174, 1.990913, -0.448281, 0.571469, -1.657209, 2.219289, 0.391895, -1.326217, -0.799724, 1.062865, 0.077003, -0.394465, -2.014228, 0.960624, -0.052382, 0.427999, 0.829132, 1.824228, -0.942617, 0.130003, -0.021216, -1.132668, -0.764480, -0.168317, 0.542009, -0.743538, 1.270127, -0.756051, 1.733923, -0.560529, 0.738706, -0.734347, 1.191859, -0.544475, -0.531002, -0.435642, 0.463298, -0.577453, -0.884873, 0.991549, -0.014787, 1.707005, -0.177656, 1.320256, 0.852346, 0.029179, 0.388952, 0.001214, 0.778902, 0.591060, -0.811046, 0.045138, -0.085700, -0.035947, 1.447445, -0.711864, 1.546175, 0.660268, 0.178785, -1.225910, -0.202902, -1.309570, -0.941544, -1.051241, -0.568102, 0.390526, -0.318775, -0.480995, -0.151700, -0.665801, 1.651919, -1.297311, -1.497219, 0.246051, 0.027980, -0.381259, -0.096496, 0.336593, 0.377474, -0.929134, -0.443390, 0.520992, 0.495616, -0.922747, 1.520333, 0.578975, -0.866779, -1.085083, -0.876301, 1.993435, -0.230642, 0.252497, -0.905853, 0.688914, 0.543399, 0.180796, 0.824395, 0.073473, 0.476318, -0.613852, -0.439388, 1.355090, 0.166045, 0.536982, 0.469985, -0.048755, -0.294727, 0.609849, -0.046467, -0.321711, 0.730090, 0.425333, -0.852045, 1.214055, -0.544183, 1.838341, -1.352140, -0.654177, 0.587597, 0.742248, 2.345422, 1.473246, 0.832384, -0.342482, -0.435296, 1.224726, -1.111674, 1.485851, 0.240692, 1.761109, -0.014812, 0.716981, 1.222787, 0.880383, 0.909171, 0.665432, 0.575952, 0.336958, 1.881233, -0.222176, 1.354084, 0.351983, 1.207625, 0.747890, 0.628315, -0.330402, 1.284507, -0.470285, 0.697321, 0.183700, -0.626254, 1.289507, 0.517543, -1.608273, 1.594269, 1.221232, -0.618983, 0.415829, -2.141238, 0.825824, 0.286059, -1.213876, -0.680148, -0.071152, 1.058983, -0.845437, -0.121986, 0.734735, 0.309429, 0.791152, 0.060309, -1.022482, -0.065292, -0.890690, -0.816982, -0.224750, -0.312293, -2.463507, 0.918836, -0.002766, -0.853330, 0.691479, 2.548060, 1.662875, 1.281481, 1.192384, -1.668728, 1.197271, -2.561043, -0.818045, 1.593016, 0.562422, -0.526390, 1.762856, -0.942641, -1.142883, -1.439171, 1.409799, -0.787457, 0.084346, 0.671073, -1.305605, 0.041719, 0.027947, -1.282344, -0.614877, 0.557972, -0.484545, 0.307055, -1.387719, 0.750837, -0.232357, -0.060302, 2.352957, -0.680309, 1.747138, 1.735462, -0.260374, -1.199807, -0.931617, -1.260124, 0.191057, 0.227775, 0.717956, 0.051507, -0.663618, -1.699819, 0.772083, 0.116074, 0.269528, 1.058718, 0.271781, 0.700454, -0.683089, -0.889771, -1.166380, -0.979262, -0.595590, -0.685031, 0.086396, -0.309137, 0.294647, -1.132182, -1.224713, -0.426167, 0.239401, -0.074422, -1.176917, 0.761504, -0.592092, 1.220193, -0.704952, 0.900330, -1.187115, 1.015277, 1.260328, 0.630759, 0.337086, -1.637037, -1.250887, -0.046244, 0.351012, 1.162703, 1.150783, -0.249596, -1.953360, 0.629796, 0.160021, 0.345435, -0.358604, -0.342182, 1.213068, -0.033285, -1.251203, -0.159532, 1.890477, -2.201049, -0.439369, -1.866833, 0.449565, -0.204963, -0.027061, 0.825855, -1.003936, -0.373730, -0.545592, 1.312993, 0.985734, -0.339904, -1.341486, 2.050744, 0.490695, -0.673395, 0.974742, -1.396954, -0.406220, 1.028341, -0.380791, -1.627941, 0.564498, 0.053585, -1.529011, 0.943052, -0.991974, 0.294961, -0.499441, -0.449205, 1.251343, 0.550672, -1.977557, -0.462537, -0.510048, -0.222570, -0.072122, 0.401795, 0.477539, -0.223796, 1.078521, -0.104216, -0.216351, 2.980346, 0.212210, -0.347051, 1.103283, -0.973977, -0.091906, -1.194948, -1.324068, -0.686148, -2.092883, -0.299725, -0.651615, 0.440757, 0.640896, 0.073936, -1.164134, -1.603124, -0.499967, -1.081707, 0.023060, -0.579270, 0.627162, 1.104206, -0.394959, 1.254341, 1.229849, 1.464544, -0.787255, 2.088690, 0.268317, -0.176671, 0.935363, -0.097528, 0.905709, -2.091727, -0.764231, 0.147602, -1.692849, 0.329625, 0.210824, 0.413842, -0.703150, 0.290575, -0.373624, 1.072074, 1.590044, -0.011098, -0.295778, -1.916385, 0.425863, 1.115587, -0.884150, -1.975061, 1.115142, -0.121910, -0.801070, -1.524780, -0.181539, -1.952306, 0.074099, 0.355984, 1.172167, 0.285742, -0.967368, 1.547725, 0.241363, 0.376294, 0.777375, 2.150656, 1.269447, -0.966940, 0.895154, 1.553089, -1.353565, 0.317414, -1.658024, 0.131210, 0.447766, 1.149270, -0.726143, -1.047662, 0.598937, -2.622374, 0.361292, -0.627217, 0.462003, -0.820914, -1.385032, -0.543391, -0.651033, 0.473652, 1.060030, 1.089290, -0.232707, -0.581574, -1.889386, -0.316232, -1.681675, -0.564388, 0.461721, -0.948041, 1.690737, -1.464870, -0.468923, 1.565980, 0.162193, 0.902060, 0.231960, 0.196544, -1.367489, -1.598355, 1.200245, -0.114907, -0.810665, -2.748205, 0.318397, 0.146189, 0.026515, -1.849053, -0.196421, -0.822007, 0.008800, -1.256302, 0.494497, 1.354630, -0.030437, 0.099759, -0.660408, -1.435886, 1.366652, 0.378395, -0.433806, 0.268213, -1.567660, 1.133083, -0.796908, 0.044007, 0.624935, 0.781938, -2.384001, -0.883944, -0.412282, 0.532039, 0.431680, -1.594455, -0.663647, 1.058619, -0.013506, 0.009430, 0.493425, -1.710809, -0.631013, -1.466743, -1.493666, 1.689222, -0.834457, -0.746000, 0.692569, -1.036528, -1.485559, 1.384641, -1.000880, 1.443378, -1.472724, 0.724241, 1.087035, -0.594183, -1.117496, -0.872940, 0.350575, -1.242299, -1.025891, -0.595510, -0.654109, -1.289483, -0.437963, 0.959762, -1.425600, -0.189526, -0.096574, -0.735357, -0.098364, -0.282179, 0.277333, -1.698693, -1.026274, -1.859616, 1.280709, 1.107630, 0.366714, -0.206731, 1.060439, -1.482345, -1.548095, -0.012150, 0.722960, -1.158424, 0.105970, 1.394348, 3.046782, -0.354777, -0.729711, -1.281821, -0.105941, 0.831699, 1.519280, -1.314499, 0.489699, 0.174280, 0.486346, 0.708480, 0.446263, -0.879907, 0.911321, -0.448688, -0.735250, 0.558877, -0.834808, 0.054606, -0.604025, 1.790700, 0.701780, 1.081597, 1.397038, 0.196167, 0.673075, 0.599177, -1.484322, -1.121878, 0.184109, 1.195012, 2.013672, 0.667431, 0.599075, 1.077761, 1.813283, 1.066733, 0.367799, -0.124027, 1.555833, -0.015501, -1.347968, -0.278393, -0.312188, -0.240902, -0.716975, -0.042055, 0.338791, -1.734295, -0.461806, -0.002199, 0.276333, 0.752315, -0.399386, 0.929151, -1.092084, 0.725405, 0.300048, -0.391791, -1.096537, 0.215750, 1.798887, 0.157250, 0.594140, 0.415319, -0.456318, -1.695612, 0.271293, 0.696550, -1.405797, 0.661278, 0.019871, -0.944030, 1.600450, -0.261134, -1.449033, 0.121161, -0.148174, -1.185630, 0.916849, -0.451785, 0.443782, -0.643874, -2.142756, 1.031946, 0.094791, 1.055416, -0.489772, 0.522096, 0.590583, -0.493730, 1.073362, 0.438470, 1.114725, 0.911463, 0.188750, 0.194026, -2.349844, 0.503381, -0.455779, -1.107854, -1.654007, -0.056787, 0.375075, 0.810279, 0.257563, -1.032017, -0.791398, 0.306248, -1.668664, 1.106578, -0.308333, -0.061347, -0.716246, 0.043694, -2.664642, 0.165933, -0.569305, -1.130321, 0.014818, -1.193625, -2.558975, 1.209673, -1.308552, 0.497828, -0.577165, 1.240122, -0.671491, -1.524447, 0.078845, -1.035162, 0.430997, 0.211118, -0.947431, -1.608624, -2.499677, 0.509606, 0.220807, -0.033407, 0.348785, -1.264089, 0.207985, 0.235428, 0.270213, -0.166078, 0.949293, 0.590414, -0.947417, 1.403686, 0.687735, 1.939620, -0.373550, -0.179192, 0.627942, 0.398082, 1.663881, 0.085032, 0.474552, 1.067727, -0.043090, 0.484359, -1.140734, -1.722180, -1.047131, 0.734981, -1.776549, 0.456546, 0.833221, 1.332094, -0.292974, -0.631470, 0.986630, 0.807160, -0.421844, -0.906703, -1.524314, -0.884961, 0.773813, -0.056224, -2.804894, -0.212021, -2.186188, 0.185168, 0.605095, 2.035573, 1.004994, 1.392565, 1.361826, 0.156013, 0.161859, -1.024986, -0.447405, -0.171627, 0.315249, -0.787671, -0.181170, -0.026413, -0.498584, 0.418506, 0.376051, -0.949235, -1.569050, -1.180816, -1.049186, 0.304624, 0.661499, 0.640647, 1.174068, -0.012980, 1.875226, -1.358592, -0.432857, 0.815015, -0.508514, 1.790620, 1.813254, 1.688286, -1.095797, -1.140081, -1.303969, 1.548848, -1.437009, -0.255111, -0.482938, -0.274057, 1.955011, 0.237579, 0.033106, -1.135437, 0.007997, -0.552407, -0.564556, -0.908291, -0.203505, -0.223886, 2.313686, -1.296150, 0.173047, 1.174642, -0.027618, 0.966112, -1.232341, -0.030021, 0.319345, -0.867316, 1.628688, 0.282115, -0.081837, -0.291943, 2.406225, -0.869033, 0.271478, -0.473470, 0.568712, 0.052486, -1.014068, 0.913277, 0.946116, 1.870558, -0.885653, 2.609202, -0.638170, -1.580420, -1.359998, -0.550428, 0.871026, -0.454592, 1.568905, 0.183420, 0.218032, 0.449081, 0.529819, 0.691667, 0.914314, -0.570691, -0.942717, 1.469307, 1.753446, 0.501274, -1.359289, 1.476548, 1.473579, -0.012772, -1.892825, 0.063961, -0.592712, -1.123340, -1.499180, 1.755900, -0.305570, -0.500008, 0.640259, 0.106659, -0.321709, 0.247622, -0.324294, 0.364693, 0.575975, 0.668081, 0.081487, -0.592634, 1.165543, -0.651593, 0.242221, 1.342605, -0.830809, -0.137402, -0.382577, -1.027506, -0.422159, -1.761258, -0.422151, -2.860012, -0.664354, 1.145643, 1.152274, -0.086790, -0.557334, -0.350401, -2.715869, 1.145399, -0.046305, -1.113063, 0.141446, -0.948094, 1.251514, -0.464634, 1.991717, -1.759475, 0.187250, -0.588845, -0.096897, 1.031954, -0.010983, -1.210836, -0.292367, 0.993226, -0.279766, 1.601228, -0.660018, 1.345602, -2.074330, -0.752992, 1.144754, -0.742113, -0.140973, 0.047565, 2.047986, 1.179597, 1.788643, 0.017517, -0.697401, 1.799644, -1.091265, -0.935038, -0.844248, -0.452513, -0.119383, -1.365369, -1.015774, 0.171709, -1.167867, 0.194328, 1.810815, -0.129176, 2.725054, -0.788264, -0.927312, -0.946441, -0.496364, 1.243024, 1.024506, 0.562848, 0.589838, 0.479749, 0.136996, -0.944042, -0.152060, 1.930022, -0.282871, -0.695311, 0.274246, -0.246845, 0.131488, -1.029550, 0.300943, 0.799786, 0.331031, 1.223035, 0.081338, -0.740517, 0.780400, -0.379134, 1.337830, -0.588383, 2.364855, -1.163512, -0.863333, -2.046914, -1.883221, 1.046481, -0.564863, -0.810783, 0.125107, -0.150420, 1.220828, -0.665786, 1.130897, -1.150583, 1.194396, 0.498175, 0.162533, -0.707772, -0.702160, 0.311338, -1.324532, 0.374260, -1.323376, -0.609845, 2.035053, 1.389781, 0.723652, -2.279142, -0.288361, 0.085226, 1.874953, 1.320637, -0.338955, 1.193596, -0.678438, -0.483073, 0.026244, -2.338474, -0.483945, 0.488448, 0.877052, -0.018941, 0.492654, 0.877401, -0.456127, 1.199011, 2.074968, -0.708163, -1.064971, -2.244940, -1.703277, -0.534902, 2.719121, -0.219594, -0.844682, 0.638311, -1.729821, 1.031287, 1.974255, 0.754476, -0.688918, -2.087400, -0.222865, 1.385236, 2.023902, -1.696369, 1.629374, 0.094709, -1.575130, -0.704024, -0.323777, -1.253347, 0.028220, -0.327787, 2.239171, 0.159214, 0.255986, 1.568137, 1.164667, -0.448553, -0.161874, -0.165116, -0.863914, -0.087248, -0.752135, 0.458988, -0.048843, 0.293023, 0.689064, 0.977558, -1.068183, -1.451527, 0.782900, -0.350966, -0.798630, -0.280156, 0.032969, -1.797270, 0.438362, -0.863720, -1.039436, -0.002582, 0.112121, 1.750200, 0.060635, -0.510870, -1.130957, -1.864740, -1.185236, 0.269304, -1.526858, 0.481251, -0.230015, 1.721428, 1.425563, -0.666982, -0.708053, -0.164187, 0.364004, 1.019813, -0.275744, -0.043833, -0.351696, -0.815910, 2.299315, -0.184153, -0.711866, 0.412405, 0.387801, -1.463612, -1.326164, 0.122705, -1.740566, 1.350249, -2.999928, -1.079476, 1.005848, 0.142793, 0.039284, -0.477083, 1.415027, 1.371689, -0.385313, -0.116608, -0.657543, 0.854438, -0.455091, -0.904413, 0.293285, 0.276513, 0.740920, -0.544586, -0.318606, 1.527447, -0.744004, 2.307922, 0.080305, 0.899518, -1.009716, 0.051442, -0.141423, 1.049850, 1.425351, -1.321564, -0.182069, 0.604354, 1.126124, -1.533391, 1.227905, -0.126778}, - { 0.518952, 1.162368, -1.798795, -0.867513, -0.902761, -0.569932, 1.536706, 0.312945, -0.816614, 0.205572, 0.557286, 1.119651, 0.312007, -1.449260, 1.340671, -1.158833, -0.514870, 0.213704, 0.684035, -0.227593, 0.547329, -0.761784, 0.832984, 0.210424, -1.092072, -0.171058, 0.150676, -1.223885, -0.657113, -0.060362, 0.254263, 0.091524, 0.520225, 0.614053, 1.012045, -0.227732, -1.318443, -0.302499, 0.960666, 1.510928, 0.440599, -0.084649, -0.958252, -0.120589, -0.164827, -0.057199, -0.413750, -0.634553, 0.237990, 0.877374, 0.298192, 1.856975, 0.764293, 0.874037, 0.595867, 0.619713, 0.562479, -0.210082, -1.543225, 0.892888, -1.696982, -0.457714, -0.363990, -0.326662, -0.877575, -1.438922, 1.143075, -0.949175, -0.304912, 1.096116, 1.484030, -0.459466, -2.622959, -1.018936, -0.187362, 0.120116, 1.243857, -1.462913, 2.256280, 0.555826, -0.417415, -1.905057, -0.476038, -0.113666, 0.424785, -0.090718, 0.788324, 0.332542, -0.300448, -0.147215, 0.855126, -0.278038, -0.923044, 0.851853, -2.458197, -1.167353, -0.766429, 0.710552, -0.059008, 0.416561, -0.505565, -1.711315, 0.501801, 1.093736, -0.675009, 0.418622, -0.478458, -2.445961, -0.574692, -0.510264, 1.222454, 1.416887, 1.881324, -1.224483, -0.192971, -1.474669, -0.087442, -0.066874, -0.246011, -1.135367, 0.344876, 1.153495, -0.458268, 0.234769, -1.622231, 0.963444, -1.598255, 0.061461, -0.605092, -0.986508, -0.343193, -0.545039, -1.456976, 1.274898, -1.221443, -0.180985, 0.055030, -0.120429, 0.689885, -1.329042, -0.556072, 1.558713, 0.751160, 1.339128, -0.236770, -0.373796, 1.831537, -0.259762, 0.434894, -0.532829, 0.246230, -1.464444, -0.108311, -0.456836, 0.195834, 0.277482, -1.266396, -0.849120, -2.061893, 0.808576, -0.555153, -0.147723, -0.474466, -0.239455, 1.341826, -0.106921, 2.065480, -0.441481, 0.664820, -1.277822, -0.299469, -1.420722, -2.099840, 0.343450, 2.540860, -0.926449, 0.197026, -0.726183, 1.050272, -0.737852, -0.166120, 0.664234, 1.013656, -1.165498, 1.007423, -0.172138, -2.029020, 1.141557, 0.353489, 0.081430, 0.830974, 0.418607, -0.351879, 0.602844, -0.721621, 1.802644, 0.996313, 0.761951, 0.926985, 0.095698, 0.359223, -0.636097, -1.235096, 2.180223, 0.394994, -0.495499, 0.021269, 1.310753, 0.005859, -0.104357, 1.083434, 1.059119, -0.743192, 1.719489, -0.101391, -1.267381, -0.189335, 0.718785, 0.931292, 1.437718, -0.372649, -0.907225, 1.282693, 0.876738, -0.484487, -0.464993, 0.141420, -1.199631, -0.378282, -0.437029, 0.438706, -1.180428, 0.783763, 1.490899, -0.392060, 1.161181, -0.311748, -0.440851, -0.665584, -1.500246, -0.492544, -0.379814, 0.880973, 0.157939, 0.679526, 0.511198, -2.105838, 0.889459, -1.276460, 0.658910, 0.844979, -1.096772, 0.005347, 0.604721, -0.840049, -1.615631, -0.828526, 0.975748, -0.212494, -0.554400, 0.478605, -0.031569, 0.346321, 0.945974, -0.363957, 0.598352, 1.038371, 0.328402, -0.025847, -0.878673, 0.478343, 0.486232, -0.483129, 0.506757, 1.444913, 1.168826, 0.568879, -1.174100, 1.370144, 0.473695, 0.390632, 1.383955, 0.448953, -1.017132, 0.900898, -0.144165, 1.053975, 0.869238, 0.049348, -0.285958, 0.418414, 0.148709, -2.446635, 2.775388, 2.740348, 0.437757, 1.014558, -0.815353, -2.009257, 0.100290, 0.289360, 1.888040, -0.352834, 0.865372, 0.437201, -0.589921, -1.570448, -0.215553, -0.958858, -0.706953, 0.234845, 0.497245, -1.274970, 2.069393, -0.871129, 1.539526, 0.884739, -0.035742, 0.675370, 0.450473, -0.631187, 1.459335, -0.085644, -1.735184, 0.214348, -0.827850, 0.375847, 1.232152, -0.271332, 0.612415, 0.789417, 0.403406, 0.857535, 0.158922, -0.101365, -1.006675, -0.631185, -0.545891, 1.155990, 1.145976, -0.241313, -2.518106, 0.696856, -0.538133, 1.962220, -0.762076, 0.104323, -0.097219, 0.371687, 0.219108, 2.737759, 1.210492, -0.316519, -0.265216, 1.067261, -0.287555, -1.928526, -1.241996, 0.530617, 0.361525, -0.132287, -0.302163, 0.951118, -0.308180, -0.533939, -0.085950, -0.685746, -0.398097, 0.974740, -0.106426, -0.464663, 0.511503, 1.210732, 1.329182, -0.796742, 0.764483, 0.132045, 0.690627, 0.804084, 1.056020, 1.336397, -0.120761, -0.715317, 0.086613, -0.825823, -0.120825, 0.975659, -1.217578, 0.688687, 2.081750, -0.225608, -0.148970, 1.357386, 0.529068, 0.614945, -0.491391, -0.916978, 0.980924, -1.400070, 0.864572, -1.112517, -0.398690, 0.284615, -1.496243, 0.746950, 1.531219, 1.471135, -0.805669, 1.094857, -0.707119, -0.332737, 0.613130, -0.181662, 0.706068, -0.314673, -1.696566, -0.857361, -0.885075, -0.670904, 1.288304, 1.556940, -0.336662, 0.658193, 0.685668, 0.684748, -0.610792, -0.832581, 0.396398, -1.636395, -1.008490, -1.153076, -0.580281, 0.982674, 0.248579, -0.473313, -0.537659, -0.469753, -0.669530, 1.390815, 0.725664, -0.327422, -0.746781, -0.180561, 0.566930, 0.971566, -0.848449, 0.186446, 1.574179, -0.166437, -0.677378, 0.518695, 0.058036, -0.594170, -0.126222, -1.123885, 0.258315, -0.161235, -0.962333, -0.781905, 0.189181, -0.038720, 0.451620, 0.483519, -0.298262, 0.075225, -2.605987, 1.057136, 2.736648, -1.141955, -0.257243, -0.173656, -0.933108, 0.759807, -0.596802, -1.919008, -0.552297, -0.985422, -1.124851, -0.225415, -0.141748, -0.027191, -0.846502, 0.331134, -0.318134, 0.072660, 1.562407, 1.505415, 0.321347, -0.432737, -1.128980, 0.529206, -0.957205, -0.547667, -0.444013, 0.008419, 1.270872, 1.264295, -0.623383, 1.515287, 0.530056, 0.042548, -0.848762, 0.186584, -0.916992, -0.718603, -0.848081, -0.074939, 0.621200, 0.161188, 0.260020, -2.182160, -0.623284, 0.045384, 0.100553, 1.081088, -1.354447, -0.689581, -0.559884, -1.357593, -0.724405, 0.119281, -0.689707, 0.798264, -1.369510, 0.292522, -1.468991, -0.049375, 0.233208, -0.388089, -0.581397, 2.366405, -0.534019, -0.620034, -1.769758, 0.148224, -0.847789, -0.093799, -0.218760, 0.031402, -0.002293, -0.862510, -1.420485, -2.427190, 1.692356, 1.410544, -0.507337, 0.444993, -1.362756, 0.371117, 0.953700, 0.817113, -0.495754, -1.039855, -0.743338, -0.938439, 0.764197, -0.111459, -1.091744, 0.143336, -1.302288, 1.620537, -2.143726, 0.985670, -1.346112, -2.598702, 1.063853, 0.584100, -2.284946, 0.655365, -0.617718, 2.051483, -2.214747, -1.657807, -1.936486, -1.612624, -0.991852, 0.161787, 0.284205, -0.463732, -0.254055, 0.154183, 0.371049, -0.183455, 0.825057, 0.745674, 0.419711, -1.132238, 0.607386, 0.102220, 0.321504, 0.038343, 0.053386, -0.762188, -0.259852, -0.487347, 0.760262, 0.631092, 0.724152, 0.132375, -0.828680, -0.076065, -0.908630, 0.021302, -1.200314, -1.190897, -0.710872, -2.418598, -0.078035, -3.683474, -0.704848, -0.431010, 0.248407, -1.495463, 0.342708, -0.262475, 0.806656, 0.188544, -0.959031, 0.674800, 1.520044, 0.193738, 0.069503, 0.639584, 0.453554, 0.830797, -1.056819, 0.537809, -0.014943, -1.737957, -0.628852, -1.712063, -0.871136, -1.728263, 0.360104, 1.834100, 1.003810, 0.083628, -0.779263, -0.428446, -1.430104, 1.330492, 1.003891, -1.258530, -0.696464, -0.226107, 1.041798, 0.696941, -0.535378, 0.849735, -0.477170, 0.087048, 1.424732, -1.008964, -0.132845, -1.348346, -0.291963, -0.024596, 0.128478, -0.389964, -0.415652, 1.068860, 0.214976, -0.790869, -0.567100, -1.682943, -2.070874, -0.221694, 0.047536, -1.352800, -1.357142, -0.371345, -0.834061, 0.394043, 0.222264, 1.974593, -0.191900, -0.394343, -0.058686, 0.122490, -0.399591, -1.600263, -0.741651, 2.010656, 1.803104, 1.233832, -0.086108, 0.492556, -1.691300, 0.522956, -0.013510, -0.722364, -0.772057, 0.187971, -1.026233, -0.474038, -0.483049, 0.572613, 0.757206, 0.212976, 0.202104, -0.498018, 0.402687, -2.021328, 0.570238, -1.341060, 0.464255, -0.640525, -2.269424, -1.054187, -1.048950, 0.124926, -0.316079, 0.072628, -0.269037, -1.325855, -0.640706, 0.626546, 0.090737, -0.203425, 0.613889, 0.346997, -2.027530, -0.603509, -0.806319, 0.615907, -0.331047, 1.438644, 0.778929, 0.016765, -0.559678, -0.520945, -0.252116, 1.309592, -0.546212, -0.624296, -0.556562, 1.426493, -0.383657, 0.790586, 0.247081, 1.097674, 0.061288, -1.297490, 0.562747, 0.150960, 0.821458, -0.855083, -0.488128, 2.214689, -1.440458, 0.146115, -0.369609, -0.482663, 0.997130, 0.063701, 1.775640, -0.536969, -0.512646, -0.211964, -0.867221, 0.302343, -2.250198, -0.422025, -0.385885, -0.062679, 1.040181, 0.580824, 0.468945, -1.299730, -0.502798, -0.313476, -0.368587, 0.666503, 0.336206, -1.104164, 0.871700, 0.913650, -1.407066, -0.070199, 0.033570, -0.589517, -0.081466, -0.732482, -1.047630, -0.324654, -0.905101, -0.479201, 0.361424, 0.452732, 0.662269, -0.454592, 0.478825, -0.237625, -0.313496, 0.615410, 0.647592, 0.369851, 0.069368, -0.919034, -0.312422, 0.273838, -0.873364, 0.764300, 0.811097, 1.020809, -0.160100, 0.164794, -2.264615, -0.415117, -0.241901, 0.858080, 0.895220, -0.344896, -0.975067, 0.056592, -0.172722, -0.121518, 0.258461, -1.854684, 1.286877, -1.175031, -0.315312, -0.386829, -0.589122, -0.770916, 0.060637, -0.958496, 0.699418, -0.529905, 1.527215, -0.732539, -2.085891, -0.902212, -1.380370, 0.290474, -0.131146, 0.758255, 0.621133, 0.102081, -1.255512, -2.000521, -0.233043, 0.372346, -1.068109, 1.092686, 0.060838, 2.045782, 0.046476, -1.491586, 0.895329, -0.395219, -1.134530, 1.044644, -0.795002, -0.942108, 1.361653, -1.059661, 1.599510, -0.189018, 0.735837, -0.024612, -0.026003, -1.962455, -0.614026, 0.676071, 0.269449, -0.367097, 0.092693, 1.042485, 0.689645, 1.511057, -0.383347, 0.012248, 0.208068, 1.113002, -0.475783, 2.185819, 1.365130, -1.026220, 0.550242, 1.030770, -1.392420, -1.157244, -0.679251, 0.991499, 0.805023, -1.630679, 0.860425, -0.525114, 0.096144, 0.471262, -1.540963, -2.159987, -0.115165, -0.830024, -1.702788, -0.509286, 0.278388, -0.556004, -0.588994, -1.034958, 0.502577, 0.550701, 0.303669, 0.277961, 0.635776, -1.315611, 0.457480, 0.472503, -2.357314, 1.579524, 0.404300, 0.490000, -1.658127, -0.596829, 1.187693, -0.506440, -0.307896, -0.822654, 0.688367, 0.949938, 0.077461, 1.409064, -0.209761, -1.562512, 0.624578, 0.708672, 0.678920, 0.398042, -0.572646, 0.041091, 0.952863, 0.402590, -0.430198, -0.746173, 0.535453, -0.247516, -0.786634, 1.601104, 0.354338, -1.085854, -1.620820, 0.521449, 0.553747, -0.590570, 1.447742, 1.380022, -0.682209, -1.510861, 0.515762, -1.471499, -0.944493, -0.103107, -2.276479, -0.596429, 0.282959, -1.816973, 1.091120, -0.156806, -2.721825, 1.657096, 1.099770, -1.357105, -1.775070, 0.044434, 1.667185, -0.455544, 0.771589, 0.440840, 0.028334, 0.455736, -0.456631, -0.547159, -0.859422, 0.858043, -0.723348, 0.986482, -1.284516, 0.169269, 0.365440, 0.314956, -0.616118, 1.294881, 0.588733, -0.677480, -2.082953, 0.570625, 2.075498, -0.585912, -1.080718, -0.357393, 0.428992, 0.868927, 0.326426, 2.012604, -0.332008, 1.389657, -0.409630, 0.388229, -1.535498, 1.618992, 0.213168, -0.043738, -1.846736, 0.217364, -0.367976, 0.327775, 1.840851, 0.305627, -1.110851, -1.853412, 1.952231, 1.140515, -0.605426, -1.251541, 0.060831, 2.050164, 0.021124, -1.082278, 0.827259, -0.476179, 0.767742, -0.699321, 0.293056, -1.175491, 0.382086, -2.160473, -0.889657, -1.271364, -1.256234, -0.251347, 0.329174, 0.125098, -2.608219, 0.221413, -1.944605, 1.225326, -0.583309, 2.196939, 0.844835, -2.086751, -0.979241, 0.752662, -0.739707, 0.895065, 1.514503, -0.710089, -0.292705, 1.188285, -0.087105, -0.818011, -0.827132, 0.512415, -0.022906, -0.002570, -0.344519, 0.096063, 0.602089, 0.081756, 0.603396, -1.927151, 1.238337, 0.349291, -0.013855, -0.609561, -0.628287, 1.083968, -0.704285, -0.619108, -0.459914, -0.532268, -0.750080, 0.612067, 0.206833, -0.637593, 0.706027, -1.663744, -0.467621, 1.113786, -0.273945, -1.189034, 0.136016, -1.201018, -0.761498, -0.316103, 2.708184, 0.278652, -0.527790, -0.396567, -1.543137, 3.163427, -0.388896, 0.356863, -0.159301, -1.031765, 1.149837, 0.390515, -0.028265, -1.912386, -0.928422, 0.312223, -0.838605, -1.298115, -1.718151, -1.908418, 0.226162, -0.121172, -0.826636, 0.732337, -0.531318, -0.944800, -0.479531, 1.122353, -0.719119, -0.612396, 0.012359, -1.525452, -0.614813, -1.311322, -0.070871, -0.816705, 2.685458, 0.001582, -0.604644, 0.187463, 0.760386, 0.503678, 0.794716, -1.067101, -0.495400, 1.289925, -0.140525, -0.197324, -0.114958, -2.012670, 0.541029, 1.358051, 0.219042, -0.988146, 0.756291, 1.003738, 1.282235, 1.501885, -0.991952, 0.379449, 0.307527, 1.091114, -1.361564, -1.000829, 0.017385, 0.605945, 0.844209, -0.092681, -0.850127, -0.099953, 0.320252, -0.465215, -0.002209, -0.687512, 2.112251, 1.318050, -0.479493, 0.696357, 0.217582, -0.340527, -1.000958, -1.265839, 0.558741, 0.882556, -0.295940, 0.568476, 0.530993, -1.805148, -0.552234, 0.767347, 0.327156, -0.191294, -0.226830, -0.079601, -0.780924, 0.225280, 0.118416, 1.519796, 1.026296, -0.641959, 0.000142, -0.932292, -0.594701, 1.622214, 1.483304, 0.909285, -1.129821, 0.829855, 0.940379, -1.644021, 0.251087, -0.708955, -0.407415, 0.616344, 1.168703, -0.309097, 0.156080, 0.092674, 0.820861, 0.541886, 0.595370, 1.291819, -0.156426, -1.128493, 0.071421, -0.532708, -0.066494, 0.883334, -0.384743, 1.456125, -0.627964, 0.204217, 0.437908, -1.400623, 1.102863, -0.424437, 0.675941, 0.318191, -0.059816, -1.077087, -1.737317, 0.389834, -0.635459, 0.443593, -1.044719, 0.262805, -0.324160, -0.084522, 0.511022, 0.944931, 0.883683, 0.106966, 1.232118, -0.653086, 3.262121, -1.081103, -0.590483, -1.405750, -1.013561, -1.070954, 0.890803, -1.113468, -0.265972, 1.056530, -0.148175, 0.076543, -0.511244, 0.576806, 0.386467, 1.862593, -0.034095, 0.403712, -0.696307, 0.150786, 0.311340, -0.382572, -1.692675, 0.581177, -0.307369, 0.725119, 0.451817, 0.825874, 0.860246, 0.747739, -1.010625, -0.470218, -1.530791, -0.509255, -0.297618, -0.838961, -0.403924, 0.041118, 0.915592, 0.902701, 0.510400, -0.799036, 1.867074, 0.207543, 0.341075, -0.519093, -0.429405, 0.669502, 1.041966, -1.189790, 0.146299, 0.027307, 0.012874, 0.895704, 0.590505, -0.651764, 0.304170, 1.008589, 0.194182, -1.255801, 0.091931, 0.052084, -0.310534, -0.552719, -1.362927, 0.925602, 0.739201, 0.994897, 1.563367, 1.734074, 1.276001, 0.713283, 0.899281, 1.366017, -0.417471, 2.122678, 0.950992, -0.662464, -0.188340, 1.946704, -0.037671, 1.233832, -0.656505, -1.505004, -0.990054, -1.917223, -0.934473, 0.497554, 0.069328, -0.012559, 0.310414, -1.577618, -0.022443, 1.571595, 0.233673, 0.912763, -0.619912, -1.155788, 0.435731, -1.695808, -0.028006, -0.424350, 0.600104, -1.219809, 2.666564, -0.324222, 0.359463, -1.317982, -0.407880, -0.232296, -1.341150, -2.263968, -0.207092, -0.538979, 0.259010, 0.089926, -0.170382, -1.470842, 0.299185, -1.026294, -1.477967, 1.123312, -1.300318, 1.508895, -0.042535, 0.726155, -1.360518, -0.381313, -0.505148, -0.301697, -1.141210, -2.459215, 1.747482, 0.114497, -0.251210, 2.288306, -1.244228, 0.422036, -0.623950, 1.864082, -0.284539, 0.280851, 0.372920, 0.218083, 0.083845, 0.194441, 0.660830, 0.416158, 0.836507, -1.044078, 0.776163, 0.716429, 1.580140, 1.161993, -0.237797, -0.784269, 1.262705, 0.101487, 0.244230, -0.477396, -1.838775, -0.641780, -1.284349, 0.306096, 1.288453, 0.379320, -0.237461, -0.503582, 0.693911, 1.371519, -0.571594, 1.009777, 1.348591, -0.136135, -0.530386, -1.172935, -0.037384, 0.446388, 0.874063, -1.681080, 0.417288, 1.628493, 0.545712, -0.233395, -1.594938, -2.608989, 0.905311, 0.917012, 0.725684, -0.221010, -1.368422, -0.284964, -0.092248, 0.847750, -0.784778, 0.193128, 0.104976, -2.567677, 1.336846, 0.094713, 1.668579, 0.174510, -1.161633, 0.829109, -0.896916, -0.182133, -1.193986, -1.835753, -0.741845, -1.472638, 1.368393, 1.376880, 0.103887, 0.148442, -0.872854, 1.825611, 0.163360, -1.304511, 0.492921, 0.193159, 0.085426, 0.041636, -1.022136, 0.462208, -0.174245, 0.306695, 0.542238, -0.141138, 1.265690, 0.644435, 0.940558, -0.697743, 0.727834, -1.693527, -0.775631, -0.697654, 1.637154, 1.466176, 1.254640, -0.534375, -0.849055, 1.520509, -0.100205, 0.606042, 0.108752, -0.973267, -1.401161, 0.362469, 0.328166, 0.836652, -0.799157, 0.816189, 0.009377, 0.038227, 1.025946, -0.333950, 1.357301, -1.475854, 1.884862, -1.529693, -0.046506, -1.097077, 0.482390, 0.511521, -0.402447, -0.736946, -0.649650, 0.854700, 0.260066, -0.872124, -0.124475, -0.370634, 0.852074, -0.338662, 0.285646, 0.951869, 0.546810, -0.088545, -2.398326, 1.964575, 0.070797, 1.055780, -1.395551, 0.963233, -1.943933, 0.632127, -0.008302, -0.926632, 0.372030, 0.216198, -0.064001, 0.829510, 0.366817, 0.107899, 1.754424, -1.911364, -0.671474, 0.242215, 0.015881, 0.198430, 2.276494, -0.622192, 1.139027, 0.724854, 0.240646, 1.727737, 0.479893, -0.458955, 0.818671, -0.407440, -1.332006, -0.522749, 0.683843, 0.865182, 1.060917, 1.246718, -1.180373, 0.024785, 0.458826, -0.152750, -1.435341, -0.406233, -1.632127, 0.050783, 0.961793, 0.205733, 0.178652, 0.359012, -2.210203, -1.090889, -0.206213, 0.525051, -0.642402, -1.009747, -0.731000, 2.133404, 0.577944, 0.143935, 1.092903, 0.079860, 0.999881, 0.305992, 1.011663, -0.685637, -1.838057, -1.961542, -0.945681, 1.778203, -1.242251, 0.911029, -0.328908, -1.453260, 0.185465, -1.984962, 0.572278, -0.438872, 1.773412, -1.227815, 1.838639, 0.473720, -0.660469, 0.131033, 1.125070, 2.302504, 1.220280, 0.829194, 0.315571, 1.005047, -1.701230, -0.334146, -1.382715, -0.579333, -1.249460, -1.283667, 0.170328, -1.078099, -0.631240, 0.581630, 0.189366, -0.683955, -0.467063, 1.295333, 1.238439, -2.091977, -0.582829, -1.187739, 0.214517, 0.648700, -0.539494, 1.023397, 0.557759, 1.390506, -0.307207, 0.722090, -0.095336, -0.705310, -0.110571, 0.791726, 0.275511, -0.133408, 0.166322, -0.369782, 1.329481, 0.087848, 1.567259, 0.953815, 0.278991, -1.169648, -0.550008, -1.287847, -0.621685, 1.804199, -0.456086, -0.432633, 0.309033, -0.047299, -0.988274, 1.153675, -1.207113, -2.682838, -0.554930, -1.424872, -0.502789, 0.939467, -1.569790, 0.521084, 0.864545, 0.115977, 0.672535, 1.420286, -1.367226, -0.442172, 0.894281, 1.217324, 0.200071, -0.748267, -0.357666, 1.762212, -0.842240, -1.771058, -1.863491, -1.181371, 1.321481, 0.566443, 0.282781, -0.150728, 0.091864, -0.542690, 0.630068, -0.947100, -0.173693, 0.076285, 1.002006, 1.068730, 1.581338, -0.446998, 0.417752, -0.709574, 0.092237, -0.254638, -0.702786, -0.859778, 0.268829, 0.845579, -1.046428, -1.536363, -1.111797, -0.265642, 0.828722, -0.656474, -0.314237, 0.087344, 1.014441, 0.131323, -0.339852, -0.235602, -1.261236, 0.896386, 0.636983, 0.270472, -1.885064, 0.453885, -0.989966, -0.377427, 1.263525, 0.358287, -2.027820, -1.132779, -1.467208, 0.538016, -0.301217, -0.180661, 0.425882, 1.114713, -0.075108, 0.471195, -0.666022, -1.316625, 0.955623, 0.336905, 1.989939, 1.292242, -0.601795, -0.899520, 0.115490, 0.295473, 1.465032, 1.153879, 0.276988, 0.162410, 1.676851, 0.892173, -0.620816, -2.132476, 1.500932, -1.362565, -0.981353, -1.533095, -0.212400, -0.550098, 0.894498, -0.817807, -0.661387, -0.294791, 0.180499, 0.401215, 0.264175, 1.453660, 0.449453, 1.149770, -0.342007, 1.081221, 0.096260, -0.803339, -0.509018, 0.345856, 1.261539, -2.024364, 0.121838, -0.711374, -1.856611, -1.437185, 0.751811, -0.496188, -1.455343, 0.639586, 0.131187, -0.952266, 0.222782, -1.536016, -0.866994, 0.342890, -0.228003, -0.899364, -0.722392, -1.676511, -1.744903, 1.100625, -0.803313, -0.109783, -0.461940, 0.563165, -2.052041, 2.191800, 1.334626, 1.400876, 0.077165, 0.265503, 0.511384, -1.375639, 1.917323, -0.139275, 0.008700, 0.727013, -0.084696, 2.686974, 1.206829, -0.309442, -0.904576, -0.596687, -0.922034, 1.482792, 0.172146, -1.208373, 0.693574, 0.440209, -0.188568, -0.526351, -1.947133, 0.809232, 0.871808, 0.742186, 0.863523, -0.166117, 0.498611, 0.310070, 0.381786, 0.653206, 0.148217, 1.407459, 0.828865, -0.038492, 0.524069, 0.170670, 1.474259, -1.341317, 0.523663, -0.613773, -0.326880, 1.107351, 1.651786, 0.372519, -0.848598, 0.110590, 0.614286, 0.080857, -2.643306, 1.039904, 0.244449, -1.229751, -0.779638, -0.730420, 0.567981, -0.051342, 1.841997, 0.166192, -0.463366, 1.037097, 1.218273, -0.495237, 3.471958, -0.434035, 0.159170, -0.798223, -0.270720, 0.101905, 0.267933, -2.383186, -2.051801, 0.481722, 1.028375, 0.821777, -1.022724, 0.385434, -1.809577, 0.412940, 0.236784, 1.583866, 0.548083, 1.054801, -0.434492, -0.856149, -0.505715, 0.529612, 0.114081, -0.269778, -1.009344, -0.067175, 0.152955, -0.357731, 0.612200, -0.840961, -0.887639, 0.174031, 0.483493, 0.396484, 0.086299, -0.695073, 0.218451, -0.107985, -0.172631, -0.207584, -0.190226, 0.846662, 1.330043, -0.198286, 2.321617, -1.316172, -0.138666, -0.343945, -0.189743, -1.452243, 1.068505, -0.341754, 1.641856, -1.650921, 0.061540, 1.300521, -0.347681, -0.795947, -1.436225, 0.961920, -2.052740, -0.407981, 0.653718, 0.107094, -0.710195, 0.315439, -1.354563, 0.221473, -1.041992, -0.581942, 0.357597, -1.890987, -0.597311, -1.473145, -0.350471, 0.125741, -0.930310, 0.428432, -0.967160, 0.464659, 1.154750, 2.018633, 2.011441, 2.208607, 1.491580, 0.647132, -1.108447, -1.935150, 0.597562, -0.665319, 0.523110, -0.263608, -0.328440, -0.703669, 0.260574, -0.748177, 0.294249, -2.041269, -0.472729, 0.295487, 1.122591, 0.630252, -0.205729, 0.850908, 0.984669, -0.955185, -1.373212, 0.731857, -2.157793, -0.560694, 2.006505, -1.977460, -1.125782, -1.352002, -2.219777, 0.169104, -0.062947, 0.489620, -0.285271, 0.088439, -0.834065, -0.295777, -1.560086, -0.855220, -1.547707, -0.364884, -0.767302, -0.506299, 1.899558, 0.883932, 0.496599, -0.558840, 1.739138, 0.761513, 1.850784, -0.896777, 1.096983, -0.904290, -0.465244, -0.159774, -0.336955, -0.011538, 0.062038, -0.199574, -0.485475, -0.908482, 1.029275, -1.103089, -0.798156, 0.089670, 0.886983, -0.911536, -0.059560, 0.412633, 0.576537, 0.030309, -0.540630, 0.904968, -0.252710, -0.090221, 1.798550, 0.796586, -0.900159, -0.250838, 0.156425, -0.839535, -0.502826, 1.170884, -0.014695, -1.967475, -1.683184, -0.539904, 0.550075, 0.594210, -0.896028, 0.287708, -0.414704, -0.705853, 1.379258, 0.319299, 0.602653, -0.742451, -0.224238, -0.717872, -0.004869, 0.102973, 1.409957, 0.194060, -1.358461, -2.182374, 0.045148, -0.225932, 0.162138, -2.042701, -0.883814, 0.120561, 0.242942, 0.039683, 0.340223, 1.912625, 0.372164, 1.877519, 1.025872, 1.630232, -0.450314, 0.068567, -0.876204, 0.665986, 0.993564, 0.390087, -0.838901, 0.694339, -0.644647, 0.714814, -0.015316, 0.890952, 0.305818, -0.898378, 2.137281, 1.023523, -0.520367, 0.778039, -0.634855, 0.192832, -0.003267, 0.706890, -1.062430, 0.164660, 1.276853, -1.287037, -2.170786, -1.850595, -0.291163, 0.846534, -0.928191, 0.428992, -0.016366, 0.789128, 0.481860, -0.252126, 0.571117, -0.068113, 0.934546, -2.053656, 0.962705, -0.733596, -0.211707, 0.708605, 1.137077, -0.213415, -0.048278, -0.897323, 0.132363, 0.250790, -1.034235, -0.944833, -1.042946, 0.082916, -2.184453, 1.254691, -0.726751, -1.099074, 1.012545, -0.311446, 0.330406, -1.104354, -0.254759, -0.273032, -1.518917, 0.572091, -0.764316, 0.994647, -1.288203, -0.684582, -0.047248, 1.256078, -0.828180, -0.612146, 0.036231, -0.705757, 0.155163, -0.845285, 0.106533, -0.412265, -0.649195, -0.081940, 2.552835, 0.143465, -2.234997, 0.895388, -1.601734, -0.301419, -0.677383, -0.333972, -0.234320, -0.359395, 0.279860, -0.063294, -0.982167, -0.756966, 0.249855, 1.191994, 0.506383, -0.616915, 1.036933, 0.707492, -0.443129, -1.001321, -0.620715, 0.523193, -0.194107, 1.046323, 0.062379, 0.760646, -1.235984, -1.075935, 0.815765, -0.166026, -1.371565, -1.142255, -0.202379, 2.748995, -0.496493, 0.750801, -0.177589, 1.295741, -0.167755, 2.037037, -1.736472, 1.080029, -0.090248, 0.539161, 0.427516, 1.077522, -0.847862, 1.218735, -0.611232, -0.922657, 0.572403, 0.241477, -1.948874, 0.461678, -0.372864, -0.083613, 0.359012, 2.352640, -0.256567, 2.212046, -0.925159, 0.210973, 1.804450, -1.367644, 1.252709, -1.741381, -0.600619, -0.796770, 0.106782, -0.267904, 0.211987, 1.162221, 0.098177, -0.621041, 1.214945, 0.283478, 1.050023, 1.125071, 1.847991, -1.501189, 0.609863, -0.133596, -1.307853, -0.080477, 1.529858, 1.449526, 1.388146, 0.557645, -0.247557, 1.022511, -0.497592, 0.980051, 0.778850, 0.106274, 0.655727, 1.657862, 0.099711, -1.074785, -1.122895, 1.199919, 1.200530, 1.353485, -0.491281, -0.025766, -0.012630, 1.908428, -0.821923, 1.323908, -0.509372, 1.227415, 0.190175, -0.205099, 0.229240, -0.090017, -0.361161, -0.134529, -0.330206, -0.997945, 2.027675, 0.078727, 2.084929, 0.158772, 1.135177, 0.598905, 0.942675, 0.499652, 0.666354, -0.525028, 0.218316, 0.251423, 0.740516, -0.394733, 1.461362, -0.521344, -0.285225, -0.487171, -0.288211, 1.173032, 1.369794, 0.618428, -0.185894, 0.278014, 0.042217, 0.752353, 2.211035, -0.103015, 0.725785, 1.203434, -0.077624, -1.284144, -0.520757, 0.299489, 0.704413, -0.193236, 0.708951, 0.941824, 0.682024, -1.956502, -1.578109, -1.029724, -0.764531, -1.279284, -0.216441, -0.441401, -1.623199, 1.100711, -0.320896, -0.770509, 0.040447, -0.113209, -0.789273, -1.220250, 0.579968, 0.502719, 0.441211, -1.171070, 0.166721, -0.260787, -0.816884, 0.298453, -0.001717, 0.006347, -1.434281, -1.151443, -0.538964, 0.703069, -1.276095, -0.226504, 1.161283, -0.160461, 1.421675, 0.086339, -0.657041, 0.052721, -1.251649, -0.330848, 0.561357, 1.317487, -1.088093, -0.492804, -0.761072, 1.537370, 0.569898, -0.336856, 0.247130, 0.070704, 0.198241, 0.533858, -0.235200, 0.224226, 0.184714, -0.226624, -0.624459, -0.397169, 0.536889, -0.978012, 0.406226, -0.950866, 0.982145, -1.159240, 2.134123, -0.048258, 0.098952, -0.643004, 2.364311, 1.164967, -1.290345, 2.078451, 1.038493, 1.394947, 0.880166, -0.488240, 0.192816, 1.065888, 1.274860, 0.193909, 0.992683, -0.303303, 0.653357, 0.643782, 0.046668, -0.752921, 0.260487, 0.560703, 0.119655, 0.588153, -0.212747, 0.653602, -2.152914, 0.453750, -1.864725, 2.294234, -0.845907, -1.291614, 0.074353, 2.837563, 0.380204, -0.057426, 1.592455, -0.167945, -0.660325, -0.004754, -0.791922, 0.239650, -1.180316, -1.986195, 0.148530, 1.083698, 0.613561, 0.655198, 0.796734, 0.185870, -0.343466, -0.402375, -0.251838, -0.959962, -1.641983, 2.184370, -0.143437, -0.748410, -1.258922, -0.147396, -0.738061, 0.901103, -0.331166, 0.415719, -0.397677, 1.153018, -0.905016, -0.721247, 1.413530, 0.665706, 1.015069, 0.513309, -0.134084, -0.267412, -0.180506, 1.182320, 2.139919, -0.454421, 0.563573, -0.602368, 0.249855, 0.074500, 0.018131, -0.563705, 1.108275, 0.153206, -0.983481, -0.601730, 0.513319, 0.695154, -0.554087, 1.150277, -0.089833, 0.822232, 0.176264, -1.125321, 1.209480, 0.847334, 1.323874, 0.341635, 1.569383, 1.733697, 0.380122, 0.957688, -0.381205, -1.540731, -1.627863, -0.741243, 1.899079, 0.447823, 0.862537, 1.070684, -1.019463, 0.535094, -0.433291, -1.527964, -2.490137, -1.196899, -2.771122, -0.309580, 2.066570, -0.986769, 0.398518, 0.727244, -0.802204, -0.762315, 0.681813, -1.358620, 0.258776, -0.175540, -1.263262, -2.350428, -0.239511, -0.219165, 0.224887, 1.504703, 2.227986, -0.377314, -0.277389, 0.639054, -0.471823, -1.098436, -1.402378, 0.286569, -1.350989, 2.114943, -0.016056, 0.470505, 2.548211, -0.972326, 0.687218, 0.037541, -1.579730, -0.224703, -0.941998, 0.728366, -1.275005, -0.928181, 1.393137, 0.543861, 0.308266, 1.487565, -0.538747, -1.112442, -0.306873, -1.573034, -0.399388, -0.216450, 0.817581, 0.960064, 0.127150, 1.121973, -0.716063, -0.603108, -1.044167, 1.322581, 1.640935, 0.921974, 0.885678, 0.608481, 0.515719, -1.197033, 0.790054, 2.601736, 2.103345, 1.349263, -0.188492, -0.269467, 0.668106, -0.256431, 1.547818, 1.710081, 0.719044, -1.149104, 1.248265, -1.453923, 0.755737, 1.125287, 0.537853, 0.210833, -0.208683, 0.272207, -1.320309, 0.888944, 0.550442, -0.825832, 1.499688, -0.330660, -0.006114, -0.553461, -0.359127, -1.390297, -0.117823, 1.100237, 0.539304, -0.486441, 0.151164, 1.864749, -0.456337, 0.585182, 0.400216, -0.262981, -0.064163, -2.276772, 1.261878, -0.333131, 0.464024, -2.034419, 0.132153, 1.741572, -0.522564, 0.595167, -0.001308, 0.339612, 1.312011, 0.552106, -1.444501, 0.664527, 0.415314, -0.135093, 0.594034, -0.015630, 0.698685, 1.435948, -0.584437, 0.222601, -0.532518, 0.014706, 0.693972, 1.523247, 1.604509, -0.669600, -1.344628, -0.702854, 0.093269, -0.418897, 1.285488, -0.658696, 0.467842, 1.399174, -0.590423, -1.046240, -2.131277, 0.268735, -0.719683, 1.167856, -0.420475, -0.964951, -0.181970, -1.235589, 0.223609, 0.702442, 0.367478, 0.637659, -1.675441, 0.625153, 2.062821, 0.474142, -0.036353, 1.168110, -1.941924, 0.041332, -0.908709, -0.583841, -1.148765, -0.700061, -0.685297, 0.763409, -1.170789, -0.112705, -1.769163, 0.971036, 0.750660, -1.372363, 1.698413, 1.468194, 0.516216, 0.323268, -0.307209, -0.872732, 1.120413, -0.293474, -0.883126, 0.007951, 1.654868, 0.391436, -0.342052, -0.983810, -2.380533, 0.526905, -0.022313, 1.153121, -0.925789, -0.357406, -1.008313, 1.856564, 1.675069, 1.376277, 0.071128, -1.378064, 1.885558, 0.101680, -1.527211, -0.366372, -0.267805, -1.579058, -1.641743, 0.711803, -0.337448, 0.896301, -0.961551, 0.890737, 0.370830, -1.477164, -0.381848, 1.174151, -1.845576, 1.459091, 1.454430, 0.247112, -0.187003, 0.418321, 1.498374, -1.117305, -0.050863, 0.232668, -1.087557, 1.768355, 0.386241, 1.319378, 1.860259, 0.530682, 1.493442, -0.098021, -0.519290, -0.411268, -1.791562, 1.038537, -0.570997, -0.870024, -0.712551, 0.484305, -0.634572, -0.853535, 0.518944, -0.944500, 0.297152, -0.375778, 0.392175, 0.480982, -1.125845, -0.451420, 0.536001, -0.647737, -0.417425, -0.156947, -0.374478, 1.773248, 0.381423, -0.868918, -1.492623, -1.209877, 0.085095, -1.469154, 0.626068, -1.549076, 1.052350, 0.798036, 1.772227, -1.597737, -0.160080, -1.152472, -0.922728, -1.316148, 0.314007, -0.397553, 0.883643, -0.646078, -1.542944, 0.474991, -0.617348, -0.022353, 2.978019, 0.746427, -0.402593, -0.247545, 1.105902, -0.666992, 1.448683, -0.025765, 0.601741, -2.030849, 0.634759, 0.113907, -0.747089, 0.117888, -1.396427, 0.074574, 0.379026, -1.242945, 0.152092, 0.361389, 0.440520, 0.012036, -0.479870, -0.339469, -0.885203, -0.563204, 0.317398, -0.806333, -0.135484, -0.016595, 1.693942, -0.981829, -1.148891, 0.268062, 0.505769, 2.405080, -2.082251, 0.557540, -0.634769, -0.296872, -1.909830, -0.608833, -0.398865, 0.864738, 0.444709, 0.446205, -0.755511, 1.951951, -0.841204, 0.491084, -0.426162, 1.004235, 1.043145, -1.084082, 0.264011, -1.423082, 0.560195, 0.017562, 1.187044, 0.769326, -1.060783, -0.921773, -0.761935, 0.055675, -0.313040, -0.561275, -2.042048, -0.179407, -0.937317, 1.343623, 0.300427, -0.873347, -0.011759, -1.632112, 1.140004, -0.480376, 1.779628, -0.715719, 0.629754, 1.145237, -0.598855, 0.108275, 2.888785, 0.386953, 2.658719, -0.075725, -0.399285, -0.943272, 0.777759, 1.978837, 0.947555, 0.067847, -0.324736, 0.070579, -1.546697, 1.366879, 0.588620, -0.282222, 0.614630, -2.092358, 0.418881, 0.609235, -0.130344, -0.097523, 1.506913, 0.052745, -0.116083, 0.442235, 1.566776, -0.644695, 0.351335, 0.041172, -2.033339, -0.397176, 0.872564, -0.474513, -0.619575, -0.205593, -0.116091, 0.518412, -0.016317, -0.336698, 0.904775, 0.664887, 0.815399, 0.048513, -1.559874, 2.754288, -0.011793, 0.699092, 0.117808, -0.393934, 0.505875, 0.808070, 1.077410, 1.075085, 0.148283, 0.849917, -0.124775, -0.522051, -2.162865, 1.016408, 1.493935, -0.613167, 0.603836, 0.110119, 0.578371, -0.581796, -0.899316, 0.984474, 1.162693, 1.221260, 1.647246, 0.019186, 0.956358, -0.202960, 0.554222, -2.802947, 0.446151, 1.071511, 1.293783, -0.402543, -1.290444, -0.119898, -1.843290, 0.461694, -0.369207, -0.264993, 1.556780, 0.325489, 1.228060, -0.100826, -0.084220, 0.691702, 0.766215, 0.309942, 0.693400, -0.093269, -0.157484, -1.280848, -0.530763, 1.025654, -1.540281, 0.157013, 0.922545, -0.987998, -0.940692, 0.405397, 0.082137, 0.104761, -0.575118, 0.808999, -0.360241, 0.216758, -1.084956, 0.747453, 1.955764, -0.189345, -0.543032, 0.718822, -0.644044, -0.330934, 0.418401, 0.565199, 1.310041, -0.455300, -0.510609, 0.794185, -0.373836, -1.605508, 0.097853, -0.320185, 1.408608, -1.390388, -0.538724, 0.145802, -0.757467, 1.591647, -0.583450, 0.163481, 2.645931, -0.229253, -0.825497, -0.149721, -0.103169, 0.838666, -1.172979, 0.734279, 0.915594, -1.177460, 0.119027, 0.177183, -2.405823, -1.642143, -1.708708, -0.101306, -0.163743, -1.926949, -0.006567, -0.097752, -0.784427, 1.047451, -0.248151, -0.022732, 1.592340, -0.829903, 0.845261, -1.037282, -0.953367, 0.077327, -0.984658, -0.276593, 1.886285, -0.459682, 0.130256, 0.041410, 0.536269, -0.806383, -0.519020, -0.055321, -0.217679, 1.443330, -0.696327, -0.294574, 0.902893, -1.150215, 0.013616, 1.229312, 1.795201, 1.574993, -1.292545, 0.534143, 2.656923, 1.403724, -1.041025, -0.964517, -0.315716, 1.302320, -0.060552, -0.883634, -0.501514, -0.427643, -0.231822, 0.464595, 1.644022, 0.417917, -0.282918, 0.367621, -0.327728}, - { -0.406468, -0.365057, 0.597241, -0.963384, 0.468242, 0.162815, -1.798851, -0.282942, 1.926839, 0.187841, -0.990895, 0.416849, 0.877864, -0.648915, 1.583707, -0.530586, 1.289275, -0.300843, -0.043793, -0.386670, 1.014606, 0.097312, -0.626041, -0.542674, 1.921894, -0.139604, 0.568860, -0.260140, 0.419980, 1.131792, 0.143581, -1.445115, -0.859116, 0.021160, 0.020419, 1.353125, -0.453110, 0.539750, -0.691671, -0.700413, 0.014173, 0.027873, 0.572080, 0.206089, -0.448775, 0.600117, -1.200543, -0.963716, 0.176836, -0.323267, -0.446048, -1.351900, -1.006603, 0.606469, -0.004117, -0.464407, 0.869106, 1.114791, 1.600351, 0.653638, 1.676764, -0.148909, 0.395486, 0.283424, 0.564011, -0.646501, -0.351129, 1.414086, -0.915920, 0.435346, 0.414801, -1.740013, 0.564108, -0.424704, -0.006933, 0.444198, -0.626687, 0.025097, -0.287651, -1.036991, -0.284438, 0.204398, -0.799633, -2.331408, -0.093658, 0.188885, -0.698944, 0.804218, -0.747071, -0.506996, -0.798443, -1.028703, -0.073629, 0.951085, 1.428918, 2.360682, -0.392841, 1.255247, -1.807375, 1.694760, -1.339607, -0.588851, 0.040053, 0.268924, -0.686937, 0.410683, -0.006103, -0.100148, -0.366536, -0.235112, 1.008025, 0.343076, -0.558086, 0.286246, -0.717089, -1.906361, 0.566072, 0.996611, -0.489689, 0.673680, -0.124255, -0.152901, 0.673218, -0.001344, -1.216590, -0.562838, 0.962074, -0.581380, -0.288032, 0.741669, -0.593664, -1.018684, -0.297349, -1.176695, -0.203766, 0.473981, 0.556438, 0.944548, 0.712051, 0.210379, -1.794086, 0.297498, -1.254568, 0.902893, -0.866551, -1.577222, -0.531548, 2.092106, -0.575074, -0.110176, 1.504110, -0.518778, 0.355393, -0.801812, 0.235125, 0.117631, -0.107405, -0.462904, -1.603790, 1.927497, 2.191435, 0.238668, 1.011266, -0.639768, 0.462078, 1.444878, -0.898090, 2.311769, -0.506508, 1.782247, -0.663961, 0.450903, -0.076780, -0.488982, -1.612017, 1.255842, -0.459528, 0.055312, -0.665984, 0.283830, 0.058986, -2.005889, 1.110387, 0.977519, -0.227215, -1.272269, -0.834723, -2.106870, -1.323220, -0.330791, 2.653687, 0.209834, -0.578994, -0.056921, 0.008863, 3.271777, -1.154689, 0.711307, 0.101732, -0.902282, -0.555710, -0.631138, -0.619637, 0.097667, -1.369606, -0.855141, -0.251135, 1.675182, -1.077526, 2.063405, 1.426003, -0.149372, -1.387733, -1.655074, 0.312748, -0.834636, -0.210825, -0.221048, 0.848495, -0.545513, 0.506935, 1.919146, -0.321572, 1.342337, -0.038625, -1.183764, 0.195506, -0.450266, -1.357680, -1.458466, -1.618047, -0.972546, 0.362747, -0.225409, -1.693150, 0.979390, 0.193112, -1.268898, -0.547307, 0.952950, -2.047787, -1.318950, 1.485277, 0.501556, -0.239314, -3.149474, -0.062519, 0.453764, 0.472629, -0.470235, -0.275218, -0.804016, 1.018439, -2.585617, -0.339461, -1.201731, 0.253317, -0.499498, -0.160565, -0.616867, 0.128782, 0.606420, -0.713193, -0.582815, 0.995971, -0.665680, -1.538404, -1.226090, -1.100394, -1.500038, 0.262429, 1.373822, 0.972318, -0.167317, 1.060992, 1.003259, -1.043173, 0.894478, 0.087678, 0.262319, -1.366780, 0.703388, 0.923383, -0.493396, -0.568345, 1.408210, -1.563138, 0.089805, 0.168082, -0.037214, -0.723589, 0.840348, 0.666864, 0.467143, 1.518542, -0.646734, -0.064256, 0.392097, -1.331105, -0.802394, 0.274659, -0.198273, 1.070325, -1.287854, 0.932486, -0.459115, 1.300467, -0.686518, -0.135831, -1.501052, 0.977043, 0.344008, 0.584928, -1.273679, 0.872673, 0.270420, -0.321429, 0.515701, -0.091082, 1.642456, 0.347802, -0.209354, -0.733974, 2.228736, -1.865011, 0.143932, 0.362588, -1.279297, -1.249130, 0.781288, 0.804844, 0.015832, 0.017303, -0.167162, -1.132812, -0.641970, 2.400760, 0.399719, -0.986007, -0.061530, 0.798438, -0.172927, -1.813524, -1.072456, 0.537532, -1.120123, -0.787208, 0.316349, -0.732543, 1.564227, 1.124341, 0.859728, 0.158561, -0.197376, 0.599204, 0.482985, -1.306450, -0.143630, 0.147203, -1.053556, -0.463211, 0.685317, -1.333367, 1.295151, -0.421591, 1.399507, 0.045936, -0.192254, 0.842519, 0.743713, -0.335369, -0.163486, -1.445692, 0.211799, -0.164727, 1.000108, -1.521852, -1.280649, -0.294810, 0.179966, -0.112759, -1.757522, -0.472785, -0.602000, 1.030993, 0.455416, 0.775487, -0.047498, 0.602244, -0.875585, -0.140058, 3.275847, 1.302661, -0.322593, -0.493948, 0.183973, 1.606791, -1.941916, -0.743365, 0.844753, 0.692284, 1.552531, 0.667258, 1.360232, 0.152084, -0.996113, 2.191667, 1.346821, -0.369673, -0.194913, -0.252180, -0.208716, 0.046470, 0.491133, 1.641221, -0.121306, -1.657650, 1.828078, -0.064448, 1.094953, -0.760442, 0.025336, -1.354822, 1.258587, 1.307206, -1.507555, -0.883043, -0.514430, 0.632000, -1.388132, -0.163171, 1.105909, 0.436512, -1.113544, 0.087129, 0.666920, -1.334040, -0.703989, -1.320381, 1.238646, -0.286670, -0.288271, 0.305155, -1.113500, -0.137761, 1.869549, 2.479349, -0.626884, -0.393559, 0.413428, 0.173851, -0.713130, 0.412676, -0.353355, 2.333463, 0.560384, 0.156283, 0.657191, 0.671582, 0.124373, 1.864296, 0.180495, -0.087415, -0.143829, 0.183196, -0.773594, -0.478594, 0.031756, 1.253657, -1.503867, -0.486741, -2.396816, 0.402792, 0.451413, -0.538706, 0.594532, 0.011250, 0.008682, -0.252546, -0.190114, -0.919804, -0.813059, 0.535400, 0.464503, 0.224138, 0.656899, -1.189306, -0.878884, -0.300770, -0.360323, 1.210252, 0.500266, 0.107874, -0.784057, -0.119357, 0.625247, 1.968287, -0.562140, -1.752138, -1.290463, -0.153740, 0.493097, 0.458951, -0.267861, 0.584230, 0.116383, -1.451924, -0.666567, 0.680205, 0.652880, 0.291001, -0.631543, -1.784194, -0.263254, 0.988923, -0.731957, 0.672977, 1.426194, 0.310817, -0.531299, -0.761460, -1.767070, -0.866708, 0.237591, 1.297507, 0.733228, 1.636519, 0.015092, 1.102568, 1.282674, -0.405458, -1.340220, 0.329330, 1.062319, 0.037963, 2.116057, -1.650487, -1.274937, 0.054449, -0.770531, 0.129880, 0.165700, 0.989725, 0.636512, 0.685477, -1.289200, 0.925239, -0.814277, -0.907037, -1.031544, 1.099652, -0.949617, 1.416019, -0.448473, -0.754543, -0.058473, 1.596451, -0.933824, 0.562584, -2.389839, -0.684192, 0.185644, -0.108062, -0.857809, 1.242899, -0.480496, 2.189663, 0.858043, -0.200968, 1.693915, -1.196794, 1.592965, 0.091841, -0.172567, -0.513637, -0.723757, 0.345762, 0.469300, -0.830485, 0.248202, -0.677153, 1.064555, 0.709279, 2.171458, 1.691104, -0.303637, 1.064757, 0.308908, 0.374307, -0.807925, 1.226659, -0.627498, 1.180085, 0.241683, -0.008952, -1.442318, -1.250514, 0.224200, -1.249030, -1.033518, -0.015128, -0.769184, -2.265702, 0.657685, 0.391878, -0.559987, -1.030730, -0.497953, 0.116829, 0.665867, -0.047166, 0.471871, -1.780302, 0.234891, 1.474528, 0.474255, -2.521239, -0.445469, 1.853918, -1.180532, 0.571184, -1.492830, 1.854272, -0.878059, 0.076240, -0.438071, 0.453710, -0.273160, 1.066663, -0.847786, 3.127259, 1.342705, -0.251027, 0.540692, -0.666649, 1.139145, -1.261988, 1.377206, 0.180713, 0.248917, 0.680635, 0.805239, -0.874402, -0.891547, -1.464762, 1.909882, -0.560268, -0.796543, 1.700378, -0.349600, -0.461750, -0.096434, 0.537761, -0.799122, -0.181014, -0.387946, -2.051841, -2.287463, 0.642675, 1.751290, -1.447666, -1.356728, -0.690176, 1.157448, -0.128633, -1.551042, -1.105166, -1.574512, 0.258396, -0.054202, 0.057885, -1.356813, -2.610289, -0.345650, 0.819189, -1.027992, 0.925931, -1.000288, -0.811576, 2.059559, 0.569935, 1.647736, -0.014369, -0.938087, 1.604069, 0.462123, 0.582675, 1.759614, -1.719389, 0.680925, -0.693605, 0.989517, 0.031058, 0.291677, -0.590878, 1.906436, -0.598627, -1.176984, 0.293686, 0.280523, 0.955669, -1.516574, 0.469994, 0.062413, 0.678846, -0.775084, 2.002544, -1.003839, -0.173063, -0.731172, 1.140475, -0.127201, -1.786448, 0.177480, -0.047648, -0.895553, 0.569750, -2.868160, 0.419723, -1.108614, 0.525144, 0.980685, 0.271644, -1.134562, 1.120831, 2.060712, -1.411138, -1.289436, 1.716802, 0.768466, -1.071004, 0.124706, -1.334314, 0.683175, 0.110427, 0.590573, -0.644159, 0.423661, -1.462781, -0.234598, -0.716409, 0.170097, 0.342129, 0.549406, 1.248006, 0.173548, 0.021924, -2.023530, 0.377129, -0.855406, 0.738041, -0.344279, -0.389226, -0.541200, 0.398816, 0.809971, -0.517599, -1.835558, -0.395012, -0.797962, -1.340762, 1.603437, 0.857996, -0.002159, 0.712849, -0.258669, -1.105638, 0.183898, -0.561262, -0.484531, -0.669755, -0.398090, -1.530870, -0.519626, 1.365397, -0.017795, 0.627677, 0.370884, -0.807559, -0.223457, -0.096272, -0.978555, -0.180315, -0.151533, 0.046199, -0.028220, 0.525393, -0.712728, 0.699668, 0.091549, -0.883363, 1.014451, 0.840313, -0.935581, -0.822299, 0.409609, 1.744240, -0.039787, 0.882294, 1.198668, -0.064957, -1.479674, -1.762894, 1.583332, -0.294342, 0.557081, -0.717986, -1.491499, 1.319759, 0.557004, -1.402948, -0.149134, 0.976089, 0.937032, -0.106868, -0.854570, -1.781579, -0.792879, -0.366036, 1.323650, 2.555737, 1.227880, 0.292694, 1.126642, -0.181210, -0.389203, -3.232716, 0.748369, -1.134446, -0.561532, 1.680062, 0.593843, 1.735434, -1.060379, -0.087503, -0.640505, -1.104373, 1.841985, 0.336545, -0.106145, -0.122830, 0.410170, 0.067522, 1.037194, -0.250460, 0.511080, -1.007815, 1.428172, -0.878694, 0.562377, -0.455986, -0.189975, 0.171312, -0.971539, -0.399392, 0.075889, -1.556407, 0.526123, -1.475662, 0.993950, 0.011876, -1.442463, -0.047092, 0.744630, -0.638076, -0.343080, 1.428011, -0.450641, 0.331645, 1.654822, -0.950845, -0.643413, -0.014288, 1.743920, 0.092840, 0.895650, 1.509748, 1.341443, 0.338540, 0.907330, -0.376868, -1.078227, 0.042255, 0.226201, 0.360208, -0.605466, 0.968499, 1.431797, -0.921544, 0.315659, -0.256213, -1.429460, 0.091766, 1.770358, 0.756846, 0.224588, 1.613540, 0.446077, -0.784914, 0.739155, 0.835684, 0.878251, 1.285831, -2.310294, -0.356622, -1.913146, -0.870067, 0.562963, -0.101310, -1.879325, -0.093701, 0.936658, -0.418884, 0.026779, 1.454802, 0.429302, -0.198892, 0.591640, 1.018650, -0.465515, -0.957694, 1.107289, 1.093368, 0.214955, 0.188758, -0.657759, -0.668446, -1.019573, -1.097866, 0.408089, 1.194084, -0.137262, 0.517485, 1.392941, -0.211832, 2.069592, 0.687874, -1.290541, 1.018855, 0.529679, -1.499467, 0.665105, 0.371907, 0.451066, 2.277218, -1.913767, 0.704111, 1.366875, 2.866656, 0.940889, 0.252956, -0.128458, 3.180509, 0.468433, -0.282350, 0.627048, -0.646344, -0.259248, 0.054573, -1.017478, 1.846370, -0.817583, -1.051370, -0.245170, -0.173399, 1.019417, 0.315563, 1.247490, -0.690307, 0.515575, 0.467928, -0.388324, 0.735909, 0.030597, 0.506710, -1.191672, 1.009759, -0.553440, -1.077032, 0.165895, 0.253513, -2.349923, 0.628529, -0.216724, -0.588570, 1.193728, -2.107257, -0.222867, 0.909580, 0.808902, 0.116927, 0.290311, 0.295843, -0.527296, 0.199396, 0.367194, -0.003397, -1.589023, -1.222446, -0.148172, -0.864601, 0.146541, -0.435049, 1.561154, 0.416958, 0.347068, -1.384918, 0.257929, -0.788887, 0.093189, -1.650009, -0.665659, 0.664007, 0.249292, 0.294210, 0.973764, -0.493717, 1.567738, 1.682037, -1.513476, 1.117336, -0.570056, 0.975398, -2.252530, -0.089434, -0.315956, 0.732453, 1.022141, -1.041310, -2.355721, -0.707041, 1.012606, -0.044438, -0.978465, 1.498494, 1.115269, -1.077721, 0.410779, -0.287947, 0.470311, -0.863949, 0.187757, 1.021498, -0.624577, 1.966630, 0.062544, -2.202236, 0.078476, -1.054308, 1.813082, -0.369070, 0.629143, -0.088215, 1.340759, 0.647080, 0.794593, 0.878580, -1.013451, 0.979106, 0.622499, -0.543778, 0.068688, -0.931662, -0.578983, 0.352615, 0.610382, -0.793257, -0.077706, -0.540909, -0.050348, -0.271217, 2.046692, -1.937235, -1.081329, -1.392283, -0.254534, -1.237023, 0.864616, -0.241888, -1.497972, 0.426860, -3.184020, 1.829987, -0.150108, -2.532937, -0.696043, 1.095071, 1.284768, 0.922124, 0.641639, 0.916526, 1.571525, 1.105264, -0.279900, -0.295197, -0.494245, -1.394263, -0.764266, -1.450999, -0.854092, 0.032585, 0.756926, 0.586853, 0.376092, -0.789892, 0.602740, -0.805774, -1.341582, 0.692253, 0.424803, -2.454445, 0.860276, 1.400603, -0.345318, -0.315355, -0.381468, 0.394866, -0.125473, 0.042189, -0.163197, -0.268920, 1.478979, 0.443604, 0.269591, 0.005241, 2.471152, -0.431033, -0.213088, -0.980578, 0.988233, 0.380966, 0.725471, -1.423143, -2.224652, 0.978976, 0.815932, 0.700834, 0.837131, -0.024787, -0.417686, 1.134339, -1.107843, 0.306380, 0.033667, 1.867317, 0.012471, -0.287572, 1.778533, 0.370135, -1.174634, 0.192555, 0.261137, -1.397272, -0.084362, 0.041274, 1.009914, -0.749546, -0.761334, 0.098064, -0.294881, 0.446405, 0.928836, -1.929282, -0.570285, -0.784546, -2.779403, -0.846695, 0.137031, 0.540867, 0.824389, 0.236472, 0.210313, -0.360871, 0.347146, -0.253956, -0.665773, -1.925257, -0.348763, 2.227881, 0.003805, 1.332039, -0.982287, 0.031008, -0.270740, 2.522820, -0.791248, -0.684459, 0.764983, -0.152321, -0.026215, -0.979252, 1.229182, 0.858369, -0.407767, 0.776863, 0.579153, -0.264932, -0.018016, -1.123752, -1.313664, -1.017174, 0.960427, -1.606437, 1.105650, 0.359138, 1.027496, 0.092651, -1.402268, 0.354990, -0.880036, 0.131442, 1.565317, -1.083326, 1.650765, -0.492004, -1.601428, 1.099451, -0.331004, -0.366546, -0.480666, -0.411154, -0.410900, -0.941763, -1.469652, -1.363842, -0.033438, -0.233233, 0.376351, 0.686400, -0.363033, -0.332623, -0.048890, 0.067551, -1.459144, 0.341030, -1.077012, 0.273593, -0.371357, -0.298692, 1.114963, -1.465033, 0.519586, 0.052964, 0.655276, -0.491731, 0.280850, 0.323244, 0.867395, 0.759899, -1.666730, 0.979111, -0.167920, 0.591915, -0.119927, -0.195404, -1.175960, 0.545832, 0.692513, -1.271827, -0.836648, 0.586593, 0.291112, 0.996090, -0.896535, -0.814722, -0.005518, 0.358933, 0.111271, 1.340262, 0.741738, -0.774394, -2.162559, 1.318474, -1.396477, -0.520804, 0.466399, 2.279527, 0.029293, 0.108531, -1.754407, 0.163995, 1.082599, -0.403398, -0.170029, -0.963065, -0.486390, -0.431780, 0.542583, -0.011153, 1.094012, -0.462220, -1.562649, 0.032236, 1.436180, 0.643423, 0.641089, 0.482134, 1.324782, -1.681461, 0.544893, -0.395092, 0.153287, 1.228124, -1.540012, 0.444108, -0.455420, -0.216309, 0.817343, -1.055369, -0.470671, -1.268143, 0.019048, -0.427014, 1.649644, 0.071607, -1.580412, -0.396234, 0.110895, -0.296831, -1.111292, -0.044197, -1.242487, 1.372200, -1.057536, -0.437267, -0.892935, 0.759907, 0.848724, -0.130426, -0.012477, 0.581111, 0.973880, -1.026649, 0.243048, -0.867487, 0.490193, -0.773725, -0.890799, 0.772237, 1.469286, 0.380690, 0.953945, 0.034076, -0.152651, 0.135191, -1.222980, 1.007377, -1.039381, 1.371140, -0.428279, -0.628594, -0.360490, -0.933866, -1.854327, 0.998097, 0.796403, -2.439250, 0.756891, -1.550121, -0.225330, -0.630589, 1.332149, 0.709854, 0.226034, 0.729615, 0.267521, -0.698030, 0.186030, -1.167110, -0.385187, -1.295860, 1.022553, 0.041222, 0.958232, -1.054944, -2.073357, -0.424499, -0.763159, 0.522001, 1.385108, -0.557294, 0.702881, 0.447902, 2.224815, -0.080233, 1.244975, -1.041720, 1.946191, -1.104801, 0.434410, 0.505597, -0.796234, -1.369856, -0.827263, -0.399050, -0.226377, -1.068695, 0.514542, -1.101633, -2.120940, -1.738808, -1.078760, 1.081354, -0.585005, -0.136036, -1.990163, -0.106920, 0.237565, 1.648598, -0.482580, 0.760493, 0.207137, -0.701255, 0.285121, -0.840918, 0.003624, 0.498518, 0.025036, 0.788528, 2.160563, -0.296655, -0.137203, 0.324651, 0.132233, -0.531125, 1.789201, -0.160457, -1.032517, 0.146514, -1.824918, 0.974990, -1.214175, -1.649340, 1.387548, 0.470395, 1.312280, 1.237932, -0.899659, -0.829653, -1.842418, -1.061287, 0.560200, -1.421208, -0.581494, -1.333445, 1.197808, -0.004378, 1.416499, 1.755505, 0.026544, 0.837454, 1.557874, -0.217017, -0.397989, 0.063063, -1.778829, -0.192884, 0.084211, 1.062490, 0.964407, 0.566962, 0.847083, -0.274809, 0.375254, 0.722517, 0.560678, -1.005988, 0.875064, 0.687439, -0.396946, 0.670352, 0.689516, -1.470827, -0.344292, -0.629194, 0.227307, 1.988977, -0.876211, -1.121046, 1.265790, -0.685251, -1.070367, -0.062884, 0.054505, -3.003368, -1.133793, -2.012723, -0.337795, 0.898864, 0.916570, -1.894812, 0.238004, 0.097478, -0.509694, -0.415274, -1.191918, 0.876687, 1.286826, -0.005971, 0.455453, 0.048425, -0.456403, 0.971292, -0.865462, -0.246155, -0.585692, -0.965737, 3.445901, -0.911199, 0.287442, 1.587792, 0.895560, 1.925481, 0.095547, 1.518426, 0.012224, 0.691692, 0.582198, -0.406868, 0.143958, 0.457494, 1.337578, 0.673886, -0.314307, -0.481295, 0.300115, 0.369252, -0.205887, -0.345503, 0.967452, -1.299286, -1.718308, 0.036918, 0.629148, 2.099278, -1.417399, -1.640476, 0.083439, -0.583210, 0.207945, 2.570730, -0.825374, -0.759509, 0.481104, 0.737747, -0.094216, -0.284510, -1.562090, 0.307287, -2.235996, -0.514724, -0.214082, 0.499416, -0.699206, 0.980064, 0.163693, 1.312642, -0.183776, 1.725256, -0.677991, -1.607041, -0.544693, 1.346919, -0.624496, -0.183641, -0.246156, -1.923805, 1.569831, -0.725646, -0.548008, -0.413044, 0.303991, -0.995683, -0.342037, -1.948194, -1.954113, -1.625112, 0.835255, -1.270998, -1.378510, 0.446086, -1.131451, -0.970990, 0.637331, 1.110468, 0.767603, 2.231873, 0.776787, 0.985546, -1.538532, -0.784095, -0.798493, 0.480797, 0.776444, -0.433342, 0.396399, 1.428377, -0.699219, -0.743212, -0.872042, 0.074149, 2.007679, 0.364113, 1.133289, 1.023652, 0.105856, -1.568905, 1.186232, 0.620150, -2.199017, -0.027987, 1.024930, -0.116677, 0.546419, 0.803328, -0.368815, -1.090368, -1.694118, -0.290254, 1.870361, 0.356535, 0.505162, -1.475733, -0.081447, -1.705330, 2.530515, 0.047912, -1.537741, -0.127411, -1.600267, -2.032078, -1.126504, -0.919711, 1.830218, -0.401305, 0.030775, -0.181328, -0.213574, 1.437745, -1.801430, 0.476875, -0.173328, 2.088142, -0.709095, 0.195275, 0.020651, -1.806825, 2.099104, 2.251518, -1.257256, 0.861375, 0.243513, -0.052754, -1.436298, 0.597827, 0.743081, -0.283839, -0.344512, 1.563187, -0.492882, 0.587774, -0.210253, 1.610632, 0.277828, 1.640443, 0.889563, -0.836606, -1.140817, 0.760634, -0.932450, 0.782050, 0.472036, -1.040960, 0.789785, 2.226307, 0.771765, -0.202860, 0.167792, -0.208109, 1.816401, -0.233837, 1.026439, 1.193812, 0.523899, -0.578994, 0.293049, 2.721322, 3.377675, -0.361687, -0.190383, -0.621579, 0.617469, -1.686794, -0.615522, 1.037010, 1.421817, 0.657378, 0.622055, 1.243860, 1.044273, 0.380579, -0.717023, 1.381899, -0.477302, -1.950422, -0.063410, -0.860567, -1.995309, 0.604878, 1.912790, 0.614260, -0.468318, -0.307680, -0.448515, 0.790912, -0.636104, -0.933446, 0.703913, 0.612134, 0.577703, 0.606643, -0.467727, 0.336145, -0.606091, 0.291353, 0.169330, 0.396521, 0.793152, 1.168300, -0.665320, 0.138893, -0.107689, 0.393695, 0.238294, -1.465343, 0.110672, -0.574389, 1.189659, -1.031656, 0.643544, -0.041721, -2.551744, 1.914617, 1.137613, 0.304502, 0.276137, -0.274812, -0.223629, -0.406222, -1.497671, -1.499371, 0.864943, 0.435871, 0.477636, -0.268209, -1.603217, -1.997199, 0.520067, -1.002440, 1.284171, 0.764931, 0.559257, -0.047788, -0.321588, 0.910385, 1.114308, -0.665325, 0.117723, 0.957186, 0.196895, 0.526333, -0.301807, 0.242643, -0.001410, -1.553406, -2.364246, -1.680157, 0.529280, -0.627928, 0.902765, -0.271188, 1.484785, -0.264528, -0.588892, 1.488094, -0.799257, 1.448272, 0.716505, -0.148467, -0.989003, 0.121459, 1.503392, 0.998178, 0.571938, -1.298588, 0.155219, -1.193553, -1.071987, 1.077364, -1.832231, 1.224635, 1.611362, 0.660337, -0.207882, -2.460820, 1.092116, -1.400597, 1.520125, 0.180947, -0.859572, -0.347017, 1.086482, 0.490368, 0.765541, -0.184343, 0.680209, -0.015803, 3.497202, -0.527242, 0.473355, 2.547523, -2.312729, -2.031398, -0.100175, 1.589728, -0.278581, 0.981250, -0.526498, 0.889400, -1.125171, 0.163059, 0.350926, -0.699345, 1.999035, -0.570082, 1.689954, -0.699827, -0.172210, -1.047179, 1.451014, 1.044453, 0.564037, 0.239588, 0.901849, 1.030170, 0.286149, -0.250285, 0.764806, -0.439759, -0.062761, 2.239625, -0.092694, -0.621294, 0.482468, -0.161406, -1.817209, -0.093881, 0.683814, 0.235213, 0.942230, 1.768518, -1.595445, -0.412542, 2.414057, -0.221852, -1.401115, -1.081049, 0.560190, 1.574262, 1.199254, 0.434372, 0.099117, -0.174399, -1.459759, -0.005484, -0.551779, -1.119167, -0.281815, -1.940759, -1.402559, 0.771613, 1.317510, -0.100837, 0.702263, -0.597209, -0.697992, -1.650409, 0.474231, -1.313327, 0.521745, -0.165005, 0.546684, -0.120657, -0.166847, -0.208339, 0.474709, -0.750711, -2.638392, -1.137997, 1.917294, -0.819974, -0.272673, -0.372066, 0.979130, 1.205399, -0.724035, 1.609277, 0.657708, 1.342834, 0.487934, -0.161034, 1.027104, -0.419074, -1.293546, -1.018050, 0.205267, 1.896128, 1.897688, 1.690139, -1.177716, 1.202312, -1.885657, 0.355356, 0.313285, 0.564464, -0.163197, 1.091237, -0.258534, -1.452792, 1.864626, 0.498763, 0.679449, -0.631617, 0.807204, -0.298873, 0.193351, 0.984876, -0.146170, -0.504643, 1.432000, 1.729161, -0.753104, -0.591432, -1.140864, 0.203559, 0.327622, -0.136095, -1.974707, 1.580811, 2.285019, -0.297325, 0.184706, 1.426637, 1.953744, -0.488535, -0.334653, -1.518712, 1.131937, -1.019480, 1.740277, -0.826970, -0.384879, 0.858003, -0.071758, 0.288566, 0.787778, -1.090148, -0.452980, 0.006704, 1.020528, 0.915000, -0.853892, 0.189906, 0.456827, -0.480919, -0.318714, -1.366240, -0.175973, 1.984203, -0.413025, 0.948677, 0.552726, -1.207447, 1.370577, 1.634290, -0.579001, -0.021489, -1.006015, 0.150176, 1.444833, 0.326589, -0.527912, 0.260466, 0.665954, 0.443388, 0.920201, 0.677774, -0.071644, 0.291383, 0.041140, 1.568847, -1.051342, 1.705840, 1.282443, -0.626896, 0.245023, 0.279548, -1.379793, 0.042161, 0.666386, -0.177372, -0.324910, 0.280091, 0.760060, -0.278312, 0.102068, 0.267269, 1.783802, 0.736309, 0.546462, 0.361672, 1.326330, 1.655277, 0.389296, -0.455793, -0.801484, 0.780402, 0.604900, 1.711794, -0.787858, -0.167967, -1.822423, -0.756842, 0.851663, 0.717867, -0.861421, -0.793650, 1.675991, -0.879387, 1.206216, 0.434068, -2.092479, -0.236197, -1.166878, -0.640330, -0.838333, 1.394272, -1.264509, -0.131953, 0.060700, 1.295685, 1.141973, 1.223570, -0.741256, 1.187025, -2.129549, -0.601442, 0.547206, -1.066923, -0.914791, 1.616775, -0.563487, 0.994912, 0.566428, 0.956240, 0.575268, -1.677340, -0.487066, 0.055881, -0.293810, -2.052553, -0.555956, -0.046646, 0.757924, 1.955607, 0.200750, 0.104535, -1.093402, 1.071051, 0.384958, -0.155126, 0.679061, -1.049670, -0.332638, 1.514032, 1.474860, -1.161727, -0.471283, -0.544551, -0.925896, -0.487798, 1.043943, -1.212793, -1.221603, 0.439309, 0.056897, -0.841054, 0.688809, -0.907617, -1.534107, -0.209263, -1.261547, 1.213918, 0.204049, 1.176109, 0.058943, -0.486168, -0.030294, -1.034265, 0.026252, 0.593023, -1.313981, -1.283513, -1.397177, -0.094894, 0.216503, 0.811026, 0.216309, 0.193855, 0.195588, 0.235502, 0.180204, 0.356665, 0.448827, 0.315331, -0.901124, -0.853701, -0.358370, -1.683556, 1.585802, -0.976706, 0.572273, -1.145183, 0.788685, 1.732736, -0.163302, -1.148025, 1.472582, -0.725925, 0.493901, 0.195637, 1.416335, -1.578705, 0.679016, -1.162408, -1.738871, 0.450091, -0.431112, -1.361769, -0.424566, -0.818903, -0.667462, 1.078311, -1.037617, 0.211673, -0.598206, 1.628288, -0.584240, -2.135561, 0.003673, 0.425412, -0.173806, 2.000998, -0.165833, -1.216102, -1.685431, 1.135099, 0.616347, -0.522370, -0.633687, 0.922370, 0.042586, 0.370329, 1.044347, 1.031333, -0.964225, 1.550728, 0.415130, -0.290246, -1.746478, 0.165117, 1.252110, 0.360803, -0.309422, -1.322469, -0.624928, 0.955354, -1.340895, -0.584127, -1.185284, -0.147229, -0.558655, 1.759923, -2.949292, 0.443495, 0.367090, 0.774458, -1.599032, -0.470594, -0.118633, 0.214576, -0.483837, 0.124889, 0.944012, -0.140600, 0.374726, -0.166974, 0.119375, -1.005208, -1.070203, 0.423589, 0.727111, 1.276022, -0.314949, 1.101866, 0.110812, 1.384848, -1.388079, -1.054257, -0.367673, 0.285534, 2.069403, 0.367170, 1.282821, 0.254568, 0.546672, 1.199001, -0.677695, 1.506406, 2.982727, 0.696974, -1.678491, -4.151894, -3.297700, -0.857486, -0.991400, 2.461016, -1.183123, 1.762707, -0.176799, 1.216201, 0.196540, 0.931717, 0.046761, 0.040873, 1.082963, 1.421519, 0.888768, 0.467386, -1.736140, -0.971011, 0.563802, -1.044710, 0.277508, -0.936257, -0.073800, -0.091419, -0.914668, -0.966835, -0.589521, 0.195878, 0.688218, 0.118125, 0.436079, -0.224403, -0.350996, 0.396244, 0.323399, 2.020873, 0.979554, -0.186838, 0.654945, -0.373061, 0.940205, 0.336659, -0.639526, -1.347858, 2.344529, 0.635626, -1.507473, 1.068242, -0.434148, -0.379054, -0.138890, 0.775494, 0.329572, 1.088699, 0.285666, 0.587611, -1.383103, 0.345279, -0.818008, 1.092961, -2.065354, -0.387811, -0.819153, 1.032752, 0.851679, -0.031117, 0.146819, -0.193887, 0.726719, 1.394476, 0.503921, -0.110971, 0.385437, -1.407887, -2.238863, 1.187161, -1.552516, -0.904590, -0.057329, 0.227120, 1.222442, 0.612752, -0.895316, -0.160224, -0.079172, -0.806369, 0.346452, -0.526111, 1.618522, 0.088905, 1.124405, 0.183307, -0.354512, -0.740697, 0.653895, 0.256393, -0.847359, 2.708672, -0.255305, -0.422605, -0.202106, 0.445192, 0.185425, -0.087221, -0.146694, -1.770923, -0.734755, -1.025807, 1.960358, -0.071322, 1.147608, 0.036726, -0.672309, 0.184585, -0.486843, 0.643202, 0.916453, 0.189262, -0.978815, -1.923698, 2.172878, 0.723617, 0.884473, 0.415043, -2.056983, 0.322004, -0.293319, 0.850476, -1.372263, 1.321481, 0.831174, 0.719995, 2.954501, -0.031278, 1.457523, -1.147279, -1.445839, 1.568239, -0.146302, -0.066091, 2.213844, -1.379027, -0.689201, -1.253020, -0.808258, 0.141012, 0.374659, 0.215204, 0.535278, 0.032940, -1.362946, -0.333833, 1.372702, 0.753440, -0.648282, 0.478611, 0.744250, -1.166623, 0.318440, -0.043213, 0.235775, 1.323689, 0.728217, -1.533827, -0.688402, 1.380060, 1.827214, 0.445192, 0.849957, 0.985162, -1.322424, 0.868099, -0.615620, 1.109362, 0.523907, -1.327580, 1.401171, -0.129338, 0.775905, 0.839810, 0.051850, 0.170181, 0.744342, 0.123146, -1.296641, -1.494909, -1.155625, -0.390187, 0.342067, -1.268486, 0.740022, 0.436035, -0.113239, 0.105586, 0.031501, 0.986141, 0.023656, 0.676581, 1.518381, 0.174162, 0.610272, -0.478724, 2.483743, 0.613921, -0.175590, -0.164017, -0.353660, 1.924063, 0.158569, -0.396594, 0.263665, -1.950628, 0.312195, 1.584783, 0.568914, -0.554711, 0.625919, -2.096829, 0.699644, 0.287566, 1.361564, 0.609404, -0.326094, 0.026283, 0.062417, -0.798742, 0.812903, 0.143822, -0.295422, 0.887376, 0.823198, -1.309627, 0.240108, 1.146784, -0.390646, -0.089727, -1.169366, 1.169567, 0.704836, 0.315145, -0.656186, -0.296418, 0.641698, 0.888014, 1.013918, 0.592271, -1.212218, 0.591033, -0.342076, -0.374229, 0.977258, -0.551950, -1.517663, 0.003719, 0.289068, -1.482010, 1.297532, 0.316068, -0.258420, 0.418935, -0.375836, 1.042954, -0.725554, -0.114071, -0.730602, -0.661055, 0.753532, 0.081824, 1.006013, 0.142167, -0.840237, 1.369744, 0.528675, -0.297089, 0.017474, -1.150734, -0.165743, -1.374017, -0.803858, 0.131781, -1.242277, 0.089559, -0.892897, 0.147872, 1.133479, 0.373783, 2.660564, -0.974752, 0.509270, 1.581726, -0.277729, 0.520943, 0.729095, 0.956977, 1.067660, 0.285560, 0.994783, 1.142687, -0.682838, -0.267087, 0.875598, 0.371457, -1.197628, 0.158424, 0.188489, 0.562693, -0.919669, 1.555412, -1.339534, -0.711500, -0.321229, -2.384288, 0.750795, -1.072228, 2.106545, -0.823336, -1.119585, -1.580754, 0.202609, -0.078508, 0.260435, -3.602984, -0.205322, -0.667775, 0.074963, -1.454056, 0.070495, -0.538768, -0.635445, 0.507923, 2.179662, -0.724869, 0.838785, 1.190526, 0.430776, -0.009086, -0.399675, 1.397246, -0.056698, -1.241325, 1.800117, -0.378219, -0.198953, -1.655862, -0.321080, -0.185884, 1.576458, 0.715399, -2.288547, -0.366786, -1.404334, 0.643486, -0.763561, 0.400271, -1.828620, 0.706079, -0.397933, 0.093705, -0.916302, -0.149977, 0.314115, -0.175625, -0.566566, -0.529712, -0.767276, 0.871735, -0.631191, -0.347633, 0.037088, -2.132443, -0.470657, -0.832965, -0.082984, -0.260987, 0.613843, 1.373040, 0.611550, 1.472924, -1.230582, 0.610818, 2.789570, 0.932315, 0.005373, 0.285894, -0.638099, -1.457272, 1.225715, -0.319766, 0.408211, -0.223554, 2.121467, -1.387489, 0.944122, 1.208687, -0.166073, 2.072319, 0.942278, -0.026106, 0.270373, -0.367620, 1.114116, 0.153176, -1.733128, -0.378857, -2.422843, 0.487516, -1.247803, 1.062849, -1.231253, 0.537975, 0.416658, 0.371592, -0.254977, -0.482217, 2.085400, -1.245060, -0.006724, 0.345644, -1.287915, 1.869092, 1.416436, -0.615393, -0.273593, 0.262973, 0.139038, 0.246117, -0.109790, -0.665548, -0.178864, 1.099355, 0.773782, 0.457826, -0.541601, 0.101499, 1.272108, 0.566388, 0.886247, -0.668834, 0.532492, -0.165506, -0.339198, -1.283437, -1.336261, 0.180136, 0.225786, 0.175028, -0.957114, -0.350541, -0.530105, -0.518899, 0.822877, 0.400293, 0.611413, 0.433421, -0.027002, 2.016738, -0.352167, -0.117694, -0.711349, 0.225743, 2.219947, -0.994911, 0.889493, -0.209501, -1.015048, -0.277007, -1.038744, -1.041999, 0.591231, -0.005852, 1.309783, -1.893955, -0.245225, -0.408309, 2.587780, 1.869129, -0.025926, 1.074801, 0.137144, 0.838392, 0.150895, 0.976174, -0.922213, 1.912812, -0.330382, 0.132859, 0.552352, 0.035093, 0.923648, 0.529371, -0.487117, -1.123653, 1.122107, -1.675823, -2.717964, -0.029215, -0.257208, -0.156907, 0.396118, 1.171553, -1.357970, 1.565213, -0.646594, 0.134291, -0.714868, 0.260105, -0.777921, -0.209907, 0.619322, 0.428472, -1.578512, -1.283865, -1.434614, -0.466454, 0.896150, 0.446782, 0.144509, -1.229224, -0.166965, 0.512940, 0.004475, -0.958409, 0.764049, 1.256500, -0.649258, -0.389592, -1.077574, 0.129926, 0.256995, 1.253581, 0.555203, 0.777111, 0.875996, 1.716907, 0.356880, 1.527518, -0.697347, 0.518405, -0.973775, 0.712326, -0.891095, 1.286977, 1.149621, 0.608203, -1.479573, 0.011016, 0.129004, -0.351740, -0.712967, -1.296240, 1.070677, 0.223133, -0.324454, 1.440688, 1.207998, -0.041205, -1.018669, 0.525927, -1.006325, -0.916148, 1.577374, 1.217416, 0.410817, 0.218878, 0.675492, 1.683384, 0.420540, -0.070093, -1.526976, -0.049730, 0.258250, -0.421714, -1.125409, 0.410102, -0.912545, -0.658720, 1.355603, 0.151928, 1.703582, 1.043317, 0.368780, 0.213015, -0.308952, -0.409541, -0.760363, 0.002532, -0.475296, 0.888988, -1.335275, 0.306037, -0.436678, 1.482922, 0.008808, -0.426924, -0.505520, -0.953012, -0.391128, 0.489408, 0.654015, 2.340253, 0.591200, -0.393732, -1.761934, 1.491361, -0.042439, -0.246911, -1.144422, -1.549792, -0.368030, -0.620258, 0.815402, 0.466840, -0.052885, -1.121396, 1.163027, 0.786450, 0.459861, 0.121936, -0.827918, 0.310432, -1.215373, -1.997813, 0.970187, 1.548958, -0.241756, 1.067134, 1.241846, 0.292035, -0.025637, 1.295865, 0.665144, -0.634091, 0.805057, -1.459196, 0.211142, -1.363085, 1.532381, 2.222022, 1.276336, 1.361636, 0.463343, 0.381781, 0.181735, 1.987398, -0.428641, 0.133009, 0.002244, 1.527644, 1.800537, 0.870477, 0.186963, 0.405588, 0.600083, -0.287867, 0.210746, -1.136290, 0.188915, 0.162045, -0.088737, 0.730083, 0.941827, 0.257603, 0.790213, 0.329960, -0.004840, 0.420102, 1.173649, -2.920959, 1.218269, 0.476052, -0.517790, -1.290314, -1.167549, -0.378205, -0.137183, 0.582925, 0.334868, 1.047304, 1.913719, -0.051452, -0.274991, -1.854406, 0.165857, 0.704543, 0.534597, 1.213684, 2.257795, -0.120105, -0.590144, 0.395352, -0.546918, 0.328898, 0.037597, 0.098501, -0.329587, -0.140080, -1.048393, -0.375590, -0.752983, 0.555698, -0.170252, -1.138621, 0.357078, 2.818563, 0.524365, 0.477222, 1.357011, -0.785911, 1.137909, -1.548372, 0.753165, 0.127490, -0.093429, 0.860062, -0.469682, 0.133400, -0.747741, 2.896087, 1.706991, -0.404538, -0.620125, 1.212147, 0.830912, 0.783276, 0.846542, -1.017339, 0.074176, -0.762677, -0.655850, 0.117499, -0.061440, 0.938407, 0.517412, 0.515201, -0.037050, 0.740538, -0.407951, 1.691379, 0.448729, -0.782644, 0.572763, 0.769657, 0.366590, -0.696918, -1.492572, 0.229683, -1.204435, 1.454218, -1.192827, -0.569249, -0.916316, -0.669248, -0.815297, -0.019228, -1.531656, 2.086796, 0.339776, -0.613002, 0.572677, -0.983079, 0.020470, -0.391727, 1.152144, 0.054703, 0.468952, -1.487208, 1.703593, 0.305286, 0.042353, -0.689477, 0.873410, 1.570843, 1.110810, -0.593906, -0.195274, -1.067243, 0.172106, 0.733817, -2.102313, -0.079578, 1.066478, -0.821053, 1.057245, 0.818666, 1.642676, -2.191774, -0.833900, -0.898218, -1.541927, -0.334863, 0.228567, -0.980666, 1.319623, -0.563599, 2.215149, -0.573370, -0.655100, 1.925586, 0.775449, 1.987317, -0.024107, -1.227130, 1.840700, 0.544468, 0.617473, 0.286865, 1.233046, -0.966232, -0.130745, -0.846207, -1.056782, 0.206412, -0.932630, 1.649964, 1.187164, 2.363065, 1.057166, -0.620550, 0.105152, 1.330918, 0.918073, 1.238703, 0.010992, -0.131588, 0.625348, -0.198732, -0.248347, 0.784598, -1.688911, 0.969951, -2.313670, 1.049869, 0.382715, -1.080427, 1.389851, 0.398404, -0.200757, -0.362412, 0.337427}, - { -0.404508, 0.163124, 1.154818, -1.483255, -0.581471, -1.058566, 0.641383, 2.127362, 0.336213, -0.192312, -0.054478, -0.005021, 1.330475, 2.266097, -1.180018, 0.294525, 1.199543, -0.356847, -0.556084, 0.487455, 0.820694, -0.159970, 0.448013, 0.563963, 2.589067, -0.834528, 0.657293, -0.707490, -1.366151, -0.018298, 0.025944, -0.021855, -1.867044, 2.082346, 0.618442, 2.509357, 0.436933, 0.903809, -0.386555, 0.399367, 0.377216, -1.353829, -1.603042, -0.213905, 0.838949, -0.134736, -0.403021, -0.710935, 1.393025, 0.522015, -1.981140, -0.415621, 0.323514, 0.009830, -2.003768, -0.308470, -1.964263, 0.800841, -0.621398, 0.328218, 1.063567, 1.439225, 0.499219, -2.981121, -1.731069, 0.269913, -0.529232, 1.720458, 1.250965, -0.035330, 1.279135, -0.619881, -0.680561, 0.470557, -0.480693, 0.350805, 0.950771, -0.575727, -0.827712, -1.094357, -0.711935, 0.619266, -0.275774, 0.365097, -1.269562, 0.545090, -0.849842, 0.652075, 2.324220, -1.214307, 1.209765, -1.472352, -0.312568, 0.462341, 0.068491, -0.466602, 1.075880, -0.227353, -0.268573, -1.017259, -0.836458, -0.056589, 0.608142, 0.232381, -1.741762, 1.519571, 2.653699, -0.242469, -2.101115, -2.916691, -1.049268, -0.438316, -0.700674, -0.266520, -0.307564, 0.399335, 0.720180, 1.592638, 0.609519, 0.456935, 1.233109, -1.625068, 0.425408, 0.407947, 0.701066, -2.322550, 0.006080, -1.076351, -0.273250, 0.297834, -2.361733, 0.030759, 0.042067, 0.915703, -0.594477, 0.498847, 0.548511, -0.096414, 0.124883, -0.830702, -0.439662, 1.213415, 3.037199, -0.063262, 0.043592, 0.904694, -0.389064, -1.473366, -0.679124, -0.011925, -1.603457, -0.627626, -0.752587, 0.508564, 0.978770, -1.251897, -0.333609, -0.611983, 3.116110, 1.078208, 0.275638, -0.322169, -1.409537, -0.919222, -1.451844, -0.131750, -0.821090, 0.350240, 1.071780, -0.107788, -1.036753, 1.961365, 1.591369, -0.805272, 0.190483, -0.650893, 1.430172, -0.046196, 0.441044, -0.857903, -0.806892, 2.119520, -0.295425, -0.141970, -1.489122, -0.355302, -0.958746, -0.098122, -0.749379, 0.731833, -0.396343, 0.288156, -0.073393, -1.549802, 0.461063, 2.178891, 1.713950, -0.116506, -0.453699, -0.034935, 0.414432, 1.500044, -0.179254, 1.677950, 0.798656, 1.965646, 1.368249, -0.034445, -1.090726, 0.230001, -0.303500, 0.073566, 0.112981, 1.334112, 0.505705, 0.446252, 1.438356, -1.289050, -1.059885, -1.017692, -0.025106, -0.580944, -1.570426, 0.545800, 0.054686, -0.272696, 2.062170, 1.243366, -0.857117, -1.023764, -2.610025, 0.202101, -1.318459, 1.326934, -0.978742, -0.378719, -2.040448, 0.087848, 3.576277, 2.020581, 0.759390, -1.055501, 0.413844, -0.164284, -0.387150, -1.048777, -0.286634, -2.008885, -0.663360, -0.085511, 0.384762, 0.945797, 1.021999, 0.192535, 0.452200, 1.535439, 0.231566, 0.041257, -1.212188, -0.704954, -0.547902, -0.690643, 0.106904, 1.415590, 0.078008, 2.307820, 0.401648, 2.167300, 0.088725, -1.372815, 0.047913, -0.183352, -0.246744, 0.443417, 0.650775, 1.903080, 0.990435, 0.779096, 0.088359, 1.578622, 0.564592, 0.659807, -1.636551, -0.159692, -0.094542, 0.805441, -0.450696, 0.611813, -0.340853, -0.340410, 0.741255, 0.076934, -0.793866, -0.093842, 1.340727, 1.438741, 1.637718, -0.433302, -0.249263, -0.492451, -0.258835, 0.374922, 0.072988, 0.977547, 0.651825, -0.705120, 0.399549, 0.425899, -1.546367, -1.572720, 0.549318, -0.002516, 1.683770, -0.981328, -0.947248, -2.099293, 1.055548, 1.459812, -0.004070, 0.373645, -1.218558, 1.644753, -1.314250, -0.072876, -0.155644, -0.238832, 1.118094, 0.615153, -0.223096, -2.320651, 1.032424, 0.407406, 1.095528, -1.669550, 0.250838, 0.852352, -0.415173, -0.428119, 0.440153, -2.988512, -0.095677, -0.795611, -0.297327, -0.615770, -0.826810, 0.264368, 0.310276, 0.330848, -0.441686, -0.379671, 0.826628, -0.603369, 2.074424, -0.897566, 0.430340, -0.601009, 2.024559, -0.448747, 1.117226, -0.766603, -0.188637, -0.940681, 0.188648, -0.141931, -0.333417, -0.213132, 0.204591, 1.754115, -2.303310, -0.331649, -1.645716, 0.009210, 0.256004, 2.828982, -1.129759, -1.959877, 1.521838, 0.229127, -1.887629, 1.440989, 0.239477, -0.852426, -0.598001, -0.356794, -0.393320, 0.195500, 0.662527, -1.955825, -0.293691, -0.814347, 0.131472, -1.358820, 0.782628, 0.576499, 0.056940, -0.729609, -0.497355, -0.024098, 0.088424, -0.015372, -0.175210, -1.751869, 1.800967, -0.203160, 0.464615, -0.620864, 0.769326, 0.298648, 0.335302, 0.325511, -0.680748, 2.471924, -0.078364, 0.204843, 1.351879, -0.022770, -0.700837, -0.020701, -2.780741, 0.548361, -1.162960, -0.704594, 1.270662, 0.586579, -0.288171, 0.064890, 1.599613, -1.727048, 0.997418, 0.511380, -0.296972, 0.001003, -1.354265, -0.720696, -0.346454, -1.473630, -0.358891, -0.571188, 1.729364, 1.010991, -0.128087, -1.202609, 1.860534, -0.304476, 0.926315, 0.828502, -0.540468, 0.760189, 1.051411, -0.562408, 1.522161, 0.735873, -0.677988, 0.418064, -1.079892, 1.237851, -0.358978, 2.535745, 1.601217, 0.374316, 0.447270, -0.501985, -0.164819, -0.835315, -0.218226, -0.178799, 0.726933, -0.265217, 1.085364, -0.211372, 0.122358, 0.511503, -0.519361, -1.180297, 0.193765, -0.320701, 0.237230, 0.219712, -0.815825, 0.653885, 0.090557, 0.277263, -0.058149, -1.041480, -0.889895, -0.690105, 0.768050, -0.333332, 0.322802, 0.154716, 0.457100, -0.911952, -0.965159, -0.346959, 1.333275, -0.502664, -1.223984, -0.082424, -0.164002, 0.490367, 1.336649, -0.862930, -0.964988, -0.994274, -0.622409, 0.458808, -0.704009, 0.021413, 0.198991, -0.852646, -1.097722, 0.907027, 0.138650, 1.046807, -1.213532, -0.935889, -0.036656, 0.594180, 1.491764, 0.321612, -0.240180, -1.862704, -1.449472, 1.097837, 1.244961, 0.270457, 0.176432, 0.584133, 0.524333, 0.830303, -0.441502, -0.551576, -0.078591, 0.285845, 0.885505, 1.308601, 0.123892, 2.324634, 0.767678, 0.668727, -0.174630, -1.100639, -0.274172, -1.027468, 0.721521, -0.454303, 1.721158, 0.351097, -0.297013, 0.120131, -0.870957, 0.615013, 0.203040, 1.539085, 0.206831, 1.905005, -0.798854, 1.674731, -1.020858, -0.591924, 0.723117, 0.132846, 0.635807, 0.191219, 1.239572, 0.207665, -0.634077, -0.208226, -0.757228, 0.066721, -0.489152, -1.189550, 1.196971, 1.224924, -2.146399, 2.093163, -1.263299, -0.019905, -0.751321, 1.119494, 0.976934, 0.765776, -1.182855, -0.038781, 0.546729, -0.590921, -2.810264, 0.259395, -0.032342, -0.037544, 2.333862, 0.660644, -0.055413, -0.419718, -2.054295, 0.413191, -0.839143, 0.509301, -0.813663, -0.544804, 0.248122, -0.104904, -0.472376, 0.982784, 1.444134, -0.197749, -0.110396, 1.024985, 1.062945, 1.153523, 0.599717, -0.625811, 0.499932, -1.739725, -1.246165, 1.393426, -1.170991, 1.420221, 0.146671, 0.691703, 1.770544, 0.410129, -0.277347, -0.496889, -0.282262, 0.161144, -0.003109, 0.391682, -1.913301, 1.702589, -0.905387, -0.948773, -1.219909, -0.274652, 2.029768, 0.054819, 1.631171, -0.312363, 0.316096, -1.737762, -1.139022, 0.363470, 0.070296, -0.205450, -0.141973, 0.790878, -1.675400, 1.016219, 0.862000, -0.704032, 1.555890, 0.653741, 0.199650, -0.866674, 1.089764, -1.806747, 1.496937, -0.910328, -0.384723, 1.436167, 0.501983, -0.918668, 0.122775, -0.393511, 0.796743, 0.298759, 0.541038, -0.602160, -0.773421, -0.228901, -0.656107, 0.074203, -0.770302, 0.538581, -0.303661, -0.666941, 0.939056, -0.193099, -0.806129, 0.171128, 0.135910, -0.889179, -1.507249, 1.433962, 0.086450, -1.557401, 0.693330, 0.511984, 0.709194, 1.243803, -0.010788, -2.162631, -0.462520, -0.690970, 0.149419, -1.870817, -0.593309, 0.051979, -1.094997, 1.062970, 1.069576, -0.552826, -0.472625, -0.110996, -0.485272, -0.035808, -0.470757, -0.905508, -0.404049, -0.250860, -0.809322, -0.920666, -0.858982, -1.024539, 0.304887, -0.829885, -1.763292, 1.248852, 0.310953, -1.086531, -0.408220, 0.533591, 0.574858, -0.036193, 1.158090, 0.501626, -1.657695, 0.628435, -1.812670, 0.586179, 2.386621, -0.196647, 0.058910, 1.350289, 0.913917, -0.228972, 1.635535, -0.578103, -0.636163, 0.628620, 0.365614, -0.450990, 1.035743, 0.325313, -1.552722, -0.507806, 0.673365, 0.497030, -2.422032, 0.206748, 0.077870, -0.695722, -0.171518, -0.482666, -1.231332, 0.169837, -0.197728, -0.250104, -0.501338, -1.109844, 1.353972, 1.741982, -1.546448, -1.193241, 0.863484, -0.764545, 0.299858, 0.903792, 0.168954, 0.434603, -0.256725, 0.204433, 0.255486, -0.569416, 1.111591, -0.589532, 0.772095, -0.277611, -1.584597, -0.039704, -0.311766, -0.806648, 0.748299, -0.186911, -0.095017, -0.857828, -1.855176, -0.749418, -0.537120, 0.906840, 0.728139, 0.431566, -2.200808, 0.298613, 0.404024, -0.554505, 0.039144, -0.190084, 0.307274, -0.635394, -0.330139, 0.047682, 1.484271, 0.435275, -1.464609, -0.641558, -2.197641, 1.172760, -1.126817, -0.721477, 0.891905, 0.384832, -0.257181, -0.534207, 0.718402, -1.737280, -0.562105, -0.083797, -0.187823, -0.144477, -0.310975, 1.526544, -0.371896, -0.599711, -2.007981, -0.039289, 2.547472, -0.402012, 0.702228, -0.135993, 0.854555, 1.608021, 0.646722, 1.691228, 0.784989, -0.361904, 0.789856, -0.738853, 1.317488, 1.484456, -1.020583, 0.754733, 0.929543, 1.457763, 0.531043, 0.456323, 1.113777, -1.733092, -0.039858, 0.323808, 0.310869, -1.110731, 0.948708, -0.659561, -0.221477, -1.910303, -1.348179, -0.035803, -0.739822, -0.867290, 0.135653, -0.133181, -1.231161, 0.161164, 0.004613, -0.944633, -0.380505, -0.636586, -1.335801, -0.523350, 1.081193, -1.612400, -0.957104, -0.397939, 1.674672, 1.736173, 0.800061, 1.575780, -0.054048, 0.503796, -0.927308, -0.032023, -0.006490, 0.735759, 0.988797, 0.832221, -0.451748, -0.072399, -0.731225, -1.107053, -1.348030, -0.849014, -0.044432, 1.592745, -0.321245, 0.418733, -0.860437, -0.041006, -0.426162, -1.199735, -0.685249, -0.692098, 0.665532, -0.446871, -0.803686, -0.336097, 1.185549, 1.640646, 0.920483, 0.362856, -0.747166, -0.878605, 0.065655, 0.891514, -0.676280, -0.238851, 0.570924, 0.982844, -0.897994, 0.378810, 0.617552, 0.624882, -1.365948, 0.237839, 1.612579, -0.722570, 1.295749, 1.883882, -1.010599, 0.450121, -0.103328, 1.325813, 0.850800, 0.361835, -0.843106, -0.252553, -0.089484, -0.713631, -0.771185, 1.010320, -1.066910, 1.249023, -0.356105, 0.365615, -0.359782, 1.356814, 0.144046, -1.598168, 0.341354, 1.400134, 1.131085, -0.431279, -0.231153, 1.323714, 1.464506, 0.416368, 0.844082, -1.398146, -0.569986, -0.346376, -0.088051, -0.299739, 0.099859, -0.718104, -0.317217, -0.083631, -0.615749, 0.749467, -1.649572, -1.043353, 3.296429, 1.228093, 0.424277, 0.460783, 1.009937, 1.066722, 0.897799, -2.256654, -0.281492, -1.606938, 0.099448, -0.792943, 0.652756, 0.257271, 0.773974, 1.227638, 1.856210, -0.526037, -0.441477, 1.461683, -0.321216, 0.857739, -0.232420, 0.374446, -1.558555, 0.759070, -1.210058, 0.101625, -1.188401, 1.634005, -1.912245, -1.268503, 1.326387, 1.682222, -0.700577, -1.293992, 0.130906, 0.747009, 0.336569, 1.525643, 0.293493, -1.085115, 0.307923, 1.760993, 1.602075, 0.679392, -0.688872, -0.335261, 1.068089, 1.150251, 0.001606, 0.807504, -1.238450, 0.438407, -0.530102, 1.539490, 1.248893, 0.550168, -0.496175, -0.343462, 0.807699, 0.749460, 0.604133, 0.523578, 0.939856, -2.223059, 0.348713, -1.583133, 0.590603, -2.207892, 0.205859, 2.845743, -0.601797, 0.515227, 1.462294, -1.278958, -0.450504, -0.729369, 0.257196, 0.906311, 0.925095, 0.235388, -1.027290, 0.770556, 0.008148, -0.166225, 0.530109, -0.481677, -1.027662, 2.646672, -0.403595, -0.112165, 2.280207, 0.618663, 1.492420, 0.249828, -0.994669, 0.134901, -0.098705, 0.485339, 1.411144, -1.451605, -0.737407, 0.016873, -0.370914, 2.376381, 0.203412, 1.183406, -1.245265, 0.853063, -0.142579, -0.341641, -0.404791, -1.237379, 1.192230, 0.468696, 0.177825, 1.423853, -1.353276, -0.364712, -0.654977, 0.375936, 1.102526, -0.905154, -0.064193, 0.519175, -0.132142, -1.612500, -0.536691, 0.705911, 0.049593, -1.340713, -0.306368, -0.415248, -0.386745, -0.036232, 1.288242, 0.364874, -1.954355, 0.026297, -1.167822, 2.342176, 0.625771, -0.709525, 0.664916, 1.534291, 0.558042, -1.796731, 0.312850, -0.524267, -0.941880, 1.338031, -0.413712, 1.677677, 1.012361, 0.288056, 1.020401, 0.579319, 0.644758, -1.409274, -1.177052, -0.842983, 0.390553, 0.036650, -1.080086, 0.455347, 0.421183, 1.202336, -1.717638, 0.295792, -0.630511, 0.609045, 1.459697, -0.402052, 0.762390, 0.490658, 0.047406, -0.413763, 0.959116, 0.485756, -0.155767, -0.513600, 1.262898, 0.236811, 0.167723, -0.950298, 1.003948, -0.136740, 2.595243, -0.232270, 0.230690, 2.147994, -0.165027, 0.077102, -0.008163, 0.606917, 0.506880, 1.434801, -0.087849, -1.097588, 0.413168, -0.008091, -1.127354, 0.505414, 0.145078, 0.544565, 0.595050, -0.038984, 0.164615, 0.061028, 1.689529, -1.358708, 0.537192, 0.552490, 1.110669, 0.513174, -1.633927, -1.320397, 0.750593, -0.419496, 0.234976, 0.599514, -0.196818, 0.473245, 0.427197, 0.636675, 0.437931, -0.847592, 0.635232, 0.608306, 0.544805, -2.151765, 0.660979, 1.358301, 0.220936, 0.979491, 0.550677, 0.924508, -0.544621, -0.088244, -1.228881, -1.166786, 0.586942, -1.213887, -0.291581, 0.656091, 0.871011, -1.888888, 0.321120, -0.083104, 1.313894, -0.480184, -0.019725, 1.083493, 0.136143, -0.116530, 0.337754, -0.596832, -0.182936, -0.400993, 0.137596, 0.186779, -0.290284, 0.855913, -0.568564, -0.322710, -0.127970, 1.078320, -0.381064, 0.195457, -0.479098, -0.257270, 2.063518, 1.182179, 0.172272, 0.200944, -0.997679, -1.705527, -0.538999, -0.293451, 1.967613, 0.585712, -1.039815, -0.696163, -1.991486, -1.750369, -0.112912, 0.421217, 0.164403, -0.929998, 1.275068, 1.256736, 0.347074, 1.593689, -1.577506, -0.338943, 0.528762, 1.139492, 0.080278, -0.747196, -0.644865, -1.386455, 1.417607, -1.017719, -0.825327, 0.621719, -0.199350, -0.533169, -0.229525, -0.988087, 0.185558, 0.518862, -0.466026, 1.035567, 0.762580, 2.280176, 0.018097, -0.194079, 0.223281, -0.753285, -0.479207, 1.156660, 0.615799, -0.467497, -0.507059, -0.773106, -0.436162, 1.782272, 0.089257, 0.093301, 0.493508, 0.444717, 0.062130, -0.624458, 0.173025, -1.055949, -0.311581, 0.649770, -0.203692, -1.662702, 1.382182, -2.119356, 1.264618, 0.941554, 1.589581, 0.008521, 0.648849, 1.201220, 0.486516, -0.412192, 0.259574, 0.562220, 0.587681, 0.473480, 2.242176, 0.168571, 0.448692, -0.247265, 0.043981, 0.193791, -0.674711, 0.787991, 0.304379, 0.853450, -0.306855, 0.453613, -1.064264, 0.678720, 0.345252, 1.264215, 0.778402, -0.446007, 0.174164, -1.892984, 0.338363, -0.141608, 1.193465, -0.306873, 0.063093, -0.976017, 0.909423, 2.153821, 1.216291, -0.217814, 0.792182, -1.364542, -0.311781, -0.609859, -0.004094, 0.864263, 0.503064, -0.357742, 0.250735, -0.465633, 0.271054, 1.093027, 0.752472, -0.401189, 0.702297, -0.833594, 0.376878, -1.206031, 0.619242, 0.789674, 0.280084, 1.699700, 0.335773, 0.522003, -1.388623, 0.364065, 0.246447, -1.377469, 1.622360, 0.853139, 1.281503, -0.588270, -1.924791, -0.081630, 0.664977, -2.220873, -0.507614, 1.455386, -0.023258, -2.616554, -0.783240, 1.275235, 0.210615, 0.668982, -0.341963, -0.133156, -0.188165, -0.761083, -1.865884, 0.264002, 2.011538, -0.502541, 0.794737, 0.040583, 0.717701, 2.750488, -2.099854, -0.236572, 0.434131, 0.280155, -0.096384, -0.814380, 0.689470, -0.097851, -0.536864, -1.792851, 0.362632, -0.605441, 0.928975, -0.059241, 1.250592, 0.231455, 1.537788, -1.756790, -0.805219, 0.599354, -0.601618, -0.071614, -0.690667, -0.585035, -0.993308, -0.038608, 1.260527, -1.694519, 0.898607, 0.326081, 1.111762, 0.208815, 0.295496, -1.093995, 0.330929, -0.345460, -0.547397, -1.199095, 0.447698, -0.536069, -0.184459, 0.095249, 1.918081, 0.902853, 0.147231, 0.283685, -0.478925, -1.013443, -0.524835, -2.012941, 0.557792, -0.440551, 0.796195, -0.236169, -0.231305, -0.346122, 0.031089, 0.175063, -1.407484, 1.476342, -1.454419, -0.094503, -0.968439, 0.453298, -0.248137, -0.085221, 0.684015, -1.239114, -0.220780, -0.297968, 0.547638, 0.160482, 0.605147, -0.411580, 0.238827, 1.420808, 0.176964, 0.111434, -3.013918, -0.014649, -0.219162, 0.555873, -0.653489, -0.174592, -1.757824, 1.057050, -0.500878, 0.088884, 0.408193, 0.584779, -0.424927, 1.067335, 0.716683, 1.136618, 1.250282, 0.943719, -0.444078, 0.353127, 0.474285, 0.697131, 0.301001, 0.070273, 0.295633, -0.118023, 2.213416, 0.673643, -1.809079, -1.053497, 0.940908, -1.111686, -0.485453, -0.442074, 0.616345, 0.773987, 0.401916, -1.426265, -0.828857, -1.160838, -0.498402, -0.502588, -0.390914, 0.408495, 1.042826, 0.259912, 0.397048, 0.366097, -1.187452, -1.266320, -1.409554, -0.198630, 0.336969, 0.236132, 0.688800, 1.160730, -0.794884, -1.127018, -1.898856, 0.430218, -0.580454, -1.182273, -0.008485, -0.664873, -0.154287, -1.855018, -0.315561, 0.594618, 0.156397, -0.990932, -0.285178, 0.030618, -0.597638, 0.309227, -0.124282, -0.483613, -1.000528, -1.254569, 0.296265, -0.734271, -0.258935, 0.314812, -0.323550, 0.203660, 1.067716, 0.454105, -1.533162, -0.868622, 0.457334, 0.422939, -0.905686, -1.128363, -0.308602, 0.356057, 0.037947, 0.813185, 0.139759, 1.032398, 0.511743, -0.701915, 0.811349, 2.197262, 0.107360, -3.144045, -0.438435, 0.632529, 0.634174, -0.934210, -1.015326, 0.660052, -0.020428, 3.063007, 0.151523, 1.664092, -1.170523, -0.051964, -0.418597, 0.286760, -0.120691, 0.610679, 0.488721, 0.140834, -2.026168, -0.683205, -0.952227, 1.095540, -1.272390, 0.165779, 0.143650, -0.177153, 0.776105, 1.718346, -0.622182, -1.368826, -0.226495, -0.375402, -0.600122, 0.551821, 0.256729, -0.834246, -0.235475, -0.430114, -0.141997, 0.246114, -1.319775, 1.234124, -0.055051, 0.931477, -0.815075, -0.485913, 0.599724, -1.355686, 1.889035, 0.371242, -0.213945, 0.644525, -0.854372, 0.033596, 1.431899, 0.827644, -0.074507, -0.853430, -0.039568, -0.201701, 0.274881, 0.774734, 0.604446, -0.388604, -0.304595, 0.832142, -0.047864, -0.590257, -1.596392, 0.095092, -0.499265, -1.437366, 1.102387, 0.943053, 0.921375, -0.298352, 0.310080, -0.855457, 0.457050, 0.627150, 0.621598, 1.062618, 0.172132, -1.004350, 0.350967, 0.438434, 0.506927, 0.568052, 0.035121, 0.126039, -0.869337, 1.251603, 0.389111, 0.413011, 2.273998, -0.173872, -1.347881, -1.397752, 1.070369, -1.369381, -0.933375, 0.130784, -0.256955, -0.492628, -0.457413, -1.313627, -0.916459, 0.379457, 2.024149, -0.377968, -0.511258, 0.380677, -1.490378, -0.216474, 0.453213, -1.654202, 0.500875, 0.313696, -0.218727, 1.294257, -1.052777, -1.162766, -0.329474, 0.443310, 0.926984, 0.734196, -0.313833, -0.536964, -0.850161, -0.073117, 0.269831, 1.137813, -0.896184, 1.569266, 2.288167, 0.480084, -1.403326, -0.723392, 1.285950, -0.978712, -0.682720, 0.349229, 0.307643, -0.622686, -0.635878, 0.907330, -0.833647, 0.929480, -1.659156, 0.670081, 0.099305, 0.605339, -1.338404, 1.164277, 0.085141, -0.897864, -0.007901, -0.348718, -1.552203, -1.411823, 0.629113, 2.019856, -1.655093, 1.015239, 1.213711, -0.646957, -1.280417, 0.731609, 1.273109, 2.982097, -0.501612, 0.149174, -1.361744, 1.007280, 0.041594, 0.623354, 1.959705, -0.365849, 0.255888, 1.180068, 1.222010, -1.247393, -0.384186, -0.799678, 1.312484, 0.885424, -0.099390, -0.296407, 0.093779, 1.155799, 1.224169, -0.125974, -0.447139, 0.067962, -0.671463, -1.827422, 0.534484, -1.683346, -0.871176, -0.216978, 0.735714, -0.607474, -0.562491, 0.372060, -0.546640, -1.482228, -2.381752, -1.157801, 0.580958, 1.862015, -0.989200, 0.699195, -0.344938, 1.063473, 1.035414, 0.102474, 1.946922, -0.030485, 1.672778, 0.870936, -1.104537, 0.716366, 0.331200, 2.079284, 0.883363, 0.700259, 0.428294, 0.943707, 0.612809, -0.305937, 1.784831, 0.324182, -1.264796, -0.039312, 1.297713, -0.308882, -0.004073, 0.605665, 2.284854, -0.094529, 1.471711, -0.491383, -0.435127, -1.271344, -0.432047, -0.323831, -1.183147, 1.045743, 1.255991, 1.267422, -0.176005, -0.067681, 0.310914, 0.552236, 0.296777, 0.604606, -0.698440, 1.316776, 0.583977, -1.606732, 2.056622, -1.177182, -0.698653, 0.595339, 0.670291, 0.230968, -0.494704, 0.991033, -0.953058, 0.346411, 0.155078, 1.240753, 1.177978, -1.357898, 0.845690, -0.055203, 0.308006, 1.287266, -0.987258, 0.491044, 0.509639, -0.312147, -0.986800, -1.413673, 1.572711, -0.992444, 0.027936, -0.792579, 1.021064, 0.160936, 0.215930, -0.326364, 1.538146, 0.200636, 0.545022, -0.392122, -0.496887, -0.371369, -0.779789, 2.514299, 0.983351, 0.986715, 0.884257, -2.172733, 0.915628, -0.279699, 0.425701, 0.795868, -0.093827, 0.293086, 0.053747, 0.249649, 0.087901, 0.074831, -0.358082, -0.914261, 1.733716, 0.332806, -0.920503, -0.509985, -0.703542, -0.448257, 1.115618, 0.179448, -2.387473, 0.473730, -1.543624, -0.884990, -1.667883, 0.261726, 2.138487, -0.140142, -0.702002, -0.323754, -0.843009, -0.245430, 0.197724, 1.492261, -0.555760, 0.526394, 0.197187, -0.864529, -0.331843, -0.853948, -0.832956, 1.181706, -0.981755, -1.714269, -0.780790, -0.269935, 0.916357, 0.186764, -0.555839, -0.531080, 1.581545, 0.712722, 0.597727, -0.524714, 0.309824, -0.165208, 0.995425, -0.546688, 1.138030, 0.195362, -0.870045, 0.982253, 0.023775, -1.197108, -1.472794, 1.135001, 0.051307, 0.440407, -0.611230, 0.467652, 0.701660, 1.321133, -2.055504, 1.041947, 1.050375, -0.203508, 0.730350, 0.354337, 0.976108, 0.718069, 0.254663, 1.092473, -0.445240, 0.808010, -1.110190, -0.498094, -0.635809, -0.068077, -0.134805, 1.675222, 0.893168, -1.097393, -0.925668, 0.255953, 1.715100, -0.436942, -1.633330, -0.802217, 0.444239, -0.330183, 0.741084, -2.005059, 0.159326, 1.075375, -0.288271, 1.121832, 1.096496, 0.357911, 0.596352, 1.291192, -1.297026, 2.837612, -0.408237, 0.569502, -0.648334, 0.088402, -0.130878, -0.685938, 0.736593, 0.503078, 1.236803, 0.682536, 0.077162, 0.201174, 0.622439, 1.359375, 0.752603, -0.277494, -0.089647, -1.602266, 0.172767, -0.591492, -0.650329, -1.543439, -0.550077, -1.475950, 0.920512, -2.752381, 0.176273, -1.041797, -2.095566, 0.787574, 1.202626, -1.095731, -0.319220, 0.190852, 1.358204, 0.421123, 1.090780, -2.017048, 0.526140, 0.004855, 0.088146, -0.957855, 0.304491, -0.922074, 1.251878, 0.476879, -0.747217, 1.117807, 0.196092, -1.440298, -1.399828, -0.326509, 1.539776, 0.754291, -0.435861, 0.433321, 1.181005, 0.363529, 1.908593, -0.261205, -1.803188, 0.690525, 0.013410, -0.662700, 0.448424, 0.599291, -1.829095, 0.232869, -0.349461, -1.469929, -0.098700, 1.435506, 1.647498, 1.027361, -0.721582, -0.565761, 0.709328, 0.000125, -1.099155, -1.107491, 0.454791, -2.261746, 1.149467, -0.476590, -0.702307, -1.006639, -0.521253, 0.788968, -0.155312, -0.381375, -1.101716, -0.141268, -0.660108, -0.679916, -1.320218, 1.479250, 1.507832, 0.968821, 0.285130, -0.353535, 1.703116, -0.427587, 0.563161, -1.350061, -1.148522, -1.651166, -1.109747, 1.211116, 1.148960, -1.704156, -0.582008, 0.238850, -0.310886, -0.169408, 0.055247, 0.719357, -0.058472, -1.575884, 0.465986, -0.965719, -0.838065, 0.361164, 0.522814, 0.076076, 0.954925, -1.603143, 0.700436, -1.245348, -0.079459, 0.561385, -1.219365, 1.994697, 0.758499, 0.240087, 0.064408, -1.727290, -0.751493, 0.072077, -0.708423, -1.014759, 0.067955, -0.047954, 0.790485, 0.420138, -0.743439, -0.529251, -1.221190, -0.892678, -0.065633, -0.798286, 1.419744, -0.529502, -0.062380, -1.028012, 2.046545, -0.336631, 0.100954, 0.319248, -1.584275, -1.824061, 1.673385, -0.772400, 1.028574, 0.327589, -0.549963, -0.640309, -0.530502, -1.560275, 0.886680, 0.006966, 2.382656, 2.359744, 0.564725, -1.166945, 0.394581, 0.441447, 0.551799, -1.454235, 0.335578, 0.588766, -1.163539, -1.159530, -0.652836, -0.633751, 0.128373, 1.437112, 1.501418, 0.527015, 0.232558, 1.456230, -0.503982, -1.043733, 1.738922, 0.518337, 0.664774, 0.966451, -1.251112, -0.380935, 0.362857, -1.606999, -1.476807, 0.367791, -1.101447, -0.151663, 0.007021, -0.830746, -0.252380, -0.290619, 0.004900, 1.306902, -1.156433, -0.505639, 0.931232, -0.443121, 0.094784, -0.706438, -0.910635, -1.259470, 0.029562, 2.076075, -1.921974, -0.068235, 0.001861, 0.996305, 0.340029, 0.440569, -0.240653, 1.008124, -0.155498, -0.429653, -0.430542, -0.668176, -0.482622, 0.159948, -0.768951, -1.483923, -0.485705, -1.473952, 0.127729, -0.401044, -0.955716, -0.827374, -1.175198, 0.851187, 0.737552, 0.558656, 0.344002, 0.572444, 0.910407, 1.489226, -0.659754, -0.503414, -0.565406, 2.420453, 1.024422, 0.734636, 1.819494, -1.382054, -1.016789, 0.100615, 1.888994, -0.482837, -0.145605, 0.592694, 0.481272, 1.359893, 1.665366, 1.386322, -0.787736, 1.263130, 0.461985, 0.234356, 1.404367, -1.192254, 0.512577, 1.704309, -0.827800, -0.506396, 0.914222, -0.503646, -0.313012, -1.508489, -0.651324, -0.973052, 1.036229, 0.901202, 0.852467, 2.172481, -0.374160, -1.923445, 1.033895, 2.930909, 1.677596, -1.025203, -0.003616, -0.130114, 1.888597, -0.981159, 1.903740, 1.212058, 0.022061, -0.349958, -0.651606, -0.572516, 0.274358, 0.268005, -1.687611, -1.171629, 0.499717, 1.017316, 0.367696, 1.568323, 0.778355, -0.315373, -1.356690, 1.037716, 0.062099, 0.687052, 0.984748, 0.470240, -1.122137, 0.350402, -1.587572, -0.211998, 1.098278, 0.364058, 0.670238, -0.156440, 1.102625, 0.760424, 0.211939, -1.002941, 0.168052, -1.057274, 1.454049, -1.411544, -0.098932, -0.308145, 0.241473, 0.745247, -0.314956, 0.450311, 0.117805, 0.492505, 1.545526, -0.038071, 0.033780, 2.010406, 0.120157, 0.957409, -1.032133, 0.458434, 0.962205, -0.236621, -0.684141, -2.161510, -0.782801, 1.179275, -0.396880, -0.235410, 0.802283, 0.730784, 1.013500, 0.372364, 0.821909, 1.047508, 0.902454, -0.646596, -0.876804, 0.176571, 0.467616, 1.985710, 0.656512, -0.139839, -0.680056, -0.066643, -1.185840, -1.813197, -0.277215, 0.018833, 0.657233, -0.069929, -0.393180, 0.187068, 0.824906, 0.567316, 0.132388, -0.308200, -0.899512, -1.765707, -2.908447, 0.803933, -0.899792, 0.151271, -0.246429, 1.332421, -0.386421, -2.262383, -0.631701, 0.319570, -0.116320, -0.914068, -0.312951, -0.496925, -0.891916, -0.784169, 0.297470, -0.658369, 1.004445, 1.245341, 1.975976, -0.980490, 0.265684, -0.255210, -1.107656, 0.546400, 0.785175, -0.145784, 0.616748, 0.465158, 1.590526, 0.352594, -1.015762, 0.270768, 0.205208, 0.795052, 1.519890, -0.375387, 0.574211, -0.370970, 0.222691, -0.349349, 0.192322, -0.594630, -0.907619, -0.190014, -1.185655, 0.272753, 1.587674, 1.161592, 0.462038, 0.484842, -0.019056, -2.118700, 1.443076, 0.593569, 0.424985, 0.062940, -0.095318, -1.146824, -1.959402, 0.829239, 1.633918, -0.280228, -1.063364, 1.249821, -1.000996, -0.359783, -0.412490, 0.570566, -0.633122, -0.288672, -0.407366, 0.350827, -0.757071, -1.522758, -1.751824, -0.448034, 0.454998, -0.830849, 0.103922, -0.761929, -0.008269, 0.566453, 0.938852, -1.981556, -1.155640, -1.524010, 0.963338, -1.123288, 0.774067, -1.511966, 0.737242, -1.091010, 1.052326, -1.910565, -0.069092, 0.785770, -0.862919, 0.161439, 0.191427, -2.172789, -0.710060, 0.273590, -0.687805, -0.883376, 3.162315, -0.882357, 0.520708, 0.779158, -0.780040, 0.651513, 1.741372, 0.617430, -1.170265, -0.911421, -1.470328, -0.128188, -1.159915, 0.573693, -1.241283, 1.303776, -0.210447, -0.209450, -0.472948, -1.231820, -0.325695, 0.143855, 0.626983, -0.777071, 0.179327, 0.667350, 0.203690, -0.891150, 1.014351, -0.830957, -2.101807, -0.012138, 0.710210, 0.717035, -0.622401, -1.728435, 0.280232, 0.077969, 1.631599, -0.748923, -1.951986, -0.400807, -1.448743, 1.533525, -0.889200, 0.450216, 0.641524, 0.497361, -0.285736, 0.004426, -1.513625, 0.833978, -0.916147, 0.098262, -0.532298, -1.330080, -0.975145, 0.457690, 1.377541, 0.519594, 0.339239, 0.647109, -0.119263, -0.556650, 0.218947, 0.021733, -0.143415, -2.344608, -1.879485, -0.056608, 0.955428, 0.553497, 0.422710, 0.490186, 0.753981, 1.167394, 0.250707, 0.867650, 0.863333, 0.554288, -1.674255, 0.675413, -0.480305, 2.972471, -0.833941, -1.543609, 0.810846, -0.349685, -0.384512, -0.563449, 0.580341, -2.219890, -1.988385, 0.610690, 1.716722, 1.159096, -0.032151, -0.423654, -0.416435, 0.593664, 0.119367, 0.891505, -0.747347, -0.767704, 0.288041, -0.653648, 0.421060, -1.150721, 0.085754, -1.950429, 0.356548, -0.396448, 1.233036, 0.452971, -3.246009, 1.235285, -0.698394, 0.216465, -1.061694, 0.846054, 1.215517, 1.615848, -0.853116, -0.449410, -0.224634, 0.857915, -0.292091, -1.847311, 1.700395, -1.396772, -0.099243, 1.029881, 1.371751, -0.235334, 1.182792, -0.273085, 0.065096, -1.143261, 0.918131, 0.794846, 1.175060, 0.051927, 0.536081, 0.486799, -0.453196, -1.587476, -0.741171, 0.486967, 0.360644, -1.026515, 0.033601, -1.044481, -0.412918, -0.598754, -0.759864, -0.093545, 0.292356, 1.159179, 0.706248, 0.637053, 0.551897, -1.014312, -0.217860, 0.205756, -1.028986, -0.893177, -0.564251, -0.487110, -1.071049, 0.488441, -0.792787, 0.097260, 0.024613, 0.755771, -0.155682, 0.086548, -1.127772, 2.521429, -0.934870, 0.322835, 1.277360, -0.262616, -0.882835, -0.092712, 0.934894, -0.530604, -0.278054, -1.500881, -0.208462, -1.672725, -0.941590, 0.569523, 0.159525, -0.046336, 0.201087, -0.472248, 0.168054, 0.800862, 0.370948, -0.482440, 0.455688, 0.539341, -0.862171, -0.516521, 0.822494, -1.090393, -1.484401, 0.411054, -1.096611, -0.964070, 0.437406, -0.104813, 0.834125, 1.472704, -0.608250, -1.273579, 1.518826, 2.321128, 0.263796, -0.776486, 1.435783, -1.324236, 0.434425, 0.524862, 1.556289, -1.938194, -0.914763, -0.535110, -0.508190, -1.915703, -0.725912, -2.292933, 0.558342, 0.518904, 0.323175, 1.178150, 0.426547, -0.213415, 1.436912, 2.432859, 0.736886, 0.571655, 0.645860, 1.231013, 1.582064, -0.765513, 1.402441, -0.191858, -1.064373, -0.377191, 1.079476, 0.401809, -2.481400, -0.186557, 0.835196, -1.405536, 0.049807, 0.686579, -0.675896, -0.585518, 0.491837, -0.596569, -0.802917, -1.266745, 0.394863, -1.372541, -1.586751, 1.038270, 2.055848, 0.365939, 0.997490, 0.084050, -0.570786, 0.913017, -0.486857, 0.376424, -0.468679, 0.231063, -1.763772, -0.507522, -0.115440, -0.288785, 0.522118, 1.427845, 0.307951, -1.287141, 0.203074, 1.057344, 0.316632, -0.222739, 0.073249, 0.756280, -0.070279, -0.822806, 0.470546, -0.808535, -0.146559, 0.863172, 0.076059, -1.089635, -0.216319, 0.826497, 0.988639, -0.521205, -0.985828, 0.747315, -0.522233, -0.864016, -1.357048, -0.151733, 0.475297, 0.977428, -1.331935, 1.315165, -0.776000, -0.136812, 1.138204, 0.316542, -0.531433, 0.636499, -0.214966, -2.318053, 1.425497, 1.993480, -0.552785, 0.396205, 0.163127, 1.241685, -0.026614, 0.761883, 0.765679, -0.120293, -0.423937, -0.527392, 0.164604, -1.067609, 0.248180, 1.256958, 2.436015, -0.878712, 0.357371, -0.935548, 1.663144, -1.207206, 0.009869, -1.113580, -1.754721, -0.263996, 0.778409, 0.517802, 1.117160, -1.042248, -0.497135, 0.149409, 1.000652, -1.546691, -0.803195, 0.527898, -0.631157, 1.325081, -0.946442, -0.137733, -1.937147, 0.617108, 3.198472, 0.186704, -0.940352, -0.717166, -0.993984, 1.206617, -1.400762, 1.439830, -0.602108, -2.109967, -0.206252, 1.614274, -0.154729, -1.360389, 1.503991, 1.762359, 0.303531, -0.938569, 0.431105, 1.798255, 0.154913, 0.477865, -0.092355, 0.772611, -0.984700, 0.043640, 1.838004, -1.271862, 0.030863, -0.511314, -1.516170, 0.596530, -1.240831, 0.197891, -1.164738, -0.712793, -0.429485, 0.134250, -0.734635, 0.622906, -0.058721, -1.100663, 0.070589, -0.949798, -0.985846, -1.554170, -0.362901, 0.938372, -0.584915, 0.461763, -1.020154, 0.147155, 1.543824, 0.084560, -1.022256, 0.171802, 0.127091, 1.966016, 0.567871, -1.531694, -0.151075, -0.332457, 0.676251, 0.167103, -0.046942, -0.580992, 0.644613, 0.252655, -0.011560, -0.568257, -2.229907, 0.822496, 0.874718, -0.577739, 2.658702, -1.602708, 1.255744, 0.887679, -0.390492, 1.933449, -0.110791, -0.801445, 0.110379, -0.501591, -0.606547, -1.247899, -0.805969, 1.536897, -0.911686, -1.685953, 1.916739, 0.018037, -0.506987, 1.048849, -0.542152, 0.021590, 0.453320, 0.137357, 1.007987, -0.994972, 0.124273, -0.370572, 0.339897, 0.418449, -0.540360, 1.110835, -0.184036, 3.009731, 0.099027, -0.160311, 0.287887, -2.697294, -0.386904, -0.292122, -0.375448, 0.003555, 1.566751, -1.586660, 0.525199, 0.782661, -1.211303, -1.578896, 1.212422, 1.848550, -0.053970, 1.108913, 1.378591, -0.408931, -0.928571, 3.326382, 1.086381, -1.121282, 1.336658, 0.945066, -1.078083, -0.577008, -1.033338, 0.134627, -0.129577, 0.790852, -0.664828, -0.789038, -0.789827, 1.154601, 0.460997, -1.739856, -0.914739, -0.904195, -0.724823, -0.474839, 0.102348, -0.202742, -0.495732, -0.599532, -1.092822, 0.335616, 0.302772, -0.218412, 0.719305, 0.772232, 0.006407, 1.654623, 0.298861, 1.688659, -1.701889, 1.016420, 0.111276, 0.506934, -0.951470, -1.685934, -0.670856, -0.324380, -0.704697, 0.121137, -1.329978, -0.870626, -0.234748, 0.596578, 0.958373, -0.037665, -0.029015, 0.003726, -0.024609, -2.114817, -0.577442, -0.907189, 1.015327, 1.954068, 1.123420, 1.059387, 0.836423, 1.836553, 1.086375, -0.254418, -0.454348, -1.492264, 0.477155, 1.025832, -1.230900, 0.368380, 1.676087, 0.310874, -0.185035, -0.827384}, - { 1.463083, -0.422593, 1.505463, -0.241554, -1.386515, 1.389130, -0.440076, 1.505432, 0.958819, 1.211946, -0.322813, -0.750994, -0.637774, 1.381052, 0.548066, -0.126064, 0.114053, -2.886009, 0.713456, 0.270889, -0.900964, 0.370406, 0.787951, 0.795966, 2.091825, -0.185672, 0.503710, -0.427298, 0.532776, -0.716808, -0.939205, 1.338161, 0.511368, -0.888458, -0.648905, -0.263224, -0.045437, -1.465338, -0.068484, -0.740758, 1.266954, 0.898594, -0.882261, 1.708467, 1.318245, 0.480261, -1.311324, 0.897457, -0.578851, -0.307869, 0.627017, 0.570234, -0.833623, 0.821154, 0.304229, 0.181848, 0.447362, -0.252302, -0.380384, -0.676538, -1.822435, -0.725242, 1.031374, 0.287982, 1.382733, 0.881184, -1.643013, -1.932599, -0.774044, 0.988825, 0.634622, 1.047978, -0.368218, -0.925052, -0.889416, -0.564578, -0.329989, 1.958383, -0.090536, 1.483940, 2.464303, 1.319231, 0.619170, 1.852278, 0.050779, 0.232170, 1.292224, 0.444277, 0.590187, 0.415396, 0.489940, 0.901527, 1.422432, -0.474115, 0.029114, -0.649494, -0.247114, 0.408029, -0.786675, -0.289705, -0.720719, -1.341870, -0.348053, 0.259016, 0.600257, 1.045258, -0.957419, 0.233949, 0.169548, 0.555418, -0.512321, 1.213751, 0.289889, 1.051731, -0.069820, 1.233996, 0.578051, -1.181372, 0.401675, -0.241136, -0.817625, -1.030486, -0.023479, -1.631710, -0.129691, 0.062273, 0.422137, -0.053258, 0.659542, 1.074164, -0.152984, -0.511226, 2.002754, -0.632309, -0.157530, -1.095414, -0.243000, 2.821108, -0.926469, -1.323251, -0.644178, -0.248875, 0.440220, 0.933944, 0.766253, -2.290784, 1.010032, 0.904588, -0.160255, -0.039046, -0.426556, -1.447706, 1.359287, 1.124437, -2.045364, -0.539780, 0.219376, -0.145057, -0.658676, 0.603524, -0.174178, 0.865665, -0.925947, -1.663678, 0.094041, 1.007999, 0.606139, 0.414910, -0.965923, -0.569209, 0.247629, 1.276643, 0.249693, 0.854798, -1.545011, -0.577943, -0.815316, 1.433076, -1.255241, 0.051703, 1.438666, 0.293192, -0.468189, -0.371958, 1.064451, -0.198575, 1.408245, -1.092882, -0.120101, -0.086920, -0.202087, 0.115138, -0.355783, 0.346410, -0.274547, -1.224545, -0.561715, 1.085639, 0.289547, 1.308980, -0.252044, -0.163348, -1.407008, 0.690892, -0.070317, 2.932163, -0.197223, 1.222656, -0.732611, -0.187020, -0.061772, 0.517078, -0.577477, 0.938540, 1.626285, -0.313158, -0.550513, 0.857280, -2.422043, -0.896528, 0.848986, 0.913259, 2.078492, -0.377817, 1.239886, 0.080463, -1.844394, 0.136906, 0.853955, -0.244380, 1.246057, 0.217663, -1.113694, -0.409519, 1.201081, 1.308154, -0.873689, -0.505884, -1.662602, -0.083540, -0.913006, 0.444960, 0.124471, 0.676250, 0.594916, -0.019401, -0.334825, 1.196333, 1.047678, -0.595635, -0.074054, 0.489929, 1.113536, -0.457328, 1.277865, -0.357117, -0.959804, 1.028927, 0.454104, 0.787294, -0.127688, -0.142912, -0.912191, 0.547964, 1.413468, -2.854172, 0.996276, -0.877576, 0.022095, 0.571744, -0.017863, -0.903361, -1.327670, 0.709660, -0.444917, -1.463766, 0.162170, -0.399070, -0.775082, 0.204557, -0.915662, -1.398666, -0.033778, -1.224466, -0.790206, 1.404809, -1.602560, -0.566840, -0.662185, 0.178099, 0.998191, -2.521236, 1.390752, -0.492537, -1.025408, -0.785105, -1.182054, 0.612622, -1.845123, 1.218117, -0.105511, 1.704905, -0.442944, 0.344820, 0.708059, -0.917305, 0.793661, 0.180332, -0.898945, 0.258629, 1.480507, 1.093272, 0.681000, 0.012193, -1.034033, -1.569363, -0.210513, 0.705476, 0.449104, -0.051273, -1.019887, 1.669025, -0.751012, -0.628909, -0.083270, -1.821194, 0.800022, 2.427250, 0.443614, 0.304541, 0.747911, -0.169420, -0.904272, 2.514867, 0.245856, 1.632448, -0.762919, -0.209119, 0.049385, -1.589729, 0.948483, 0.236501, 2.077460, -1.733226, -0.875441, -0.142843, -1.700648, -0.137395, 0.024392, 0.097358, -2.138648, -0.106727, 0.137434, 0.821791, 0.973994, 1.521879, -1.158079, 0.386975, 0.670921, 0.895037, 0.170402, 2.223875, -0.823823, -2.126691, -1.504934, -0.299998, 0.094464, -2.015715, 0.130019, 0.003191, -0.282077, -0.718410, -1.898619, -2.224198, -0.790712, -0.366862, -0.258817, -1.126168, 0.611796, 0.518503, -0.404919, 0.717330, -0.028573, -0.588446, -0.996154, -2.116879, 1.048993, -0.865295, -0.110260, -1.171131, -1.101144, 0.491418, 0.591424, -0.118359, 0.083128, -1.088060, 1.102987, 1.854937, -0.772271, -0.914412, -1.576852, -0.559847, -0.651418, 0.104693, 2.123291, 1.923983, 0.089423, -0.359738, -1.786474, -1.144172, 0.879001, -0.532192, 0.108946, 0.323678, 0.614816, 0.412863, -1.018183, -1.218906, 0.837569, -1.021422, 0.938307, 0.792073, -1.961305, -0.030533, -1.034175, 0.111338, 0.094186, -0.847779, 0.408266, -0.938794, 0.594150, -0.715830, -0.795749, 0.516614, 2.437080, -0.599323, -1.408864, -0.453664, 0.615877, -0.086873, -1.041776, -2.383410, 3.156408, -0.556290, -1.190379, -0.622245, 1.504269, 0.349749, -0.058662, -1.393360, 0.179862, -0.151126, -0.849941, -0.364632, -0.528944, -1.052577, -1.997191, 0.519329, 0.595623, 0.334534, 2.134766, -0.192607, -0.306883, 0.573016, 0.135832, 0.768289, -0.076635, -0.443870, 1.459083, -0.526757, -0.448050, -1.520194, -0.449561, 0.560005, -0.578036, -0.268174, 0.858826, 1.152279, 1.419171, -0.328678, -0.071260, -1.084192, 0.555109, 1.100901, 0.319228, -0.949782, 0.297357, 0.090072, 0.864504, 0.917468, 0.576084, 1.082713, 0.513510, -0.043335, 0.295377, -1.579695, -0.244816, 1.039186, 1.259287, -1.456241, 1.601870, 0.366654, -1.168208, 0.621312, 0.790020, -0.990963, 0.087922, -0.469035, 0.332328, 1.071768, -0.544952, 1.279473, 0.401712, -0.777214, 1.598492, 2.720704, -1.592220, -0.028937, -0.133522, -1.481804, -0.414559, -0.768919, -0.649499, -1.031639, 1.674990, -0.632441, -1.181652, -0.748845, 1.293687, 1.191815, -0.947192, -1.077136, -0.395310, -0.726435, 0.704260, -0.173239, -0.604234, 1.706261, 0.603246, 0.082911, 0.449418, 0.342870, -1.214765, -0.616459, -1.138420, -1.239462, -0.829734, 0.298012, -0.438737, 1.119083, -1.747199, 0.075827, 0.750317, 0.015959, 2.673993, 0.695316, -0.295101, 0.573259, 0.606363, 0.359317, -0.363445, -0.028387, -0.947399, -1.315650, 0.849546, -0.220756, -0.887965, 0.228625, -1.342103, -0.549175, -1.475137, 0.501268, -3.811178, -0.955225, 0.486296, 1.783510, 1.178837, 0.131082, 0.743665, -1.005692, -0.253365, 0.201155, -0.495085, 0.660715, 0.935911, 0.475713, -2.093667, 0.189219, 0.687746, -1.162282, 0.765370, -0.473079, -1.178207, -0.567789, 2.700521, -0.048847, 0.278716, -0.793269, 0.088162, 2.537305, -1.130521, -1.932532, 2.472336, 0.926509, -0.631188, 0.261391, 0.770591, 1.639942, 0.320703, 0.212401, -0.410104, 0.436704, -1.368510, 1.233343, -0.898163, -0.327058, 0.442677, -0.645411, -1.465860, -0.201130, -0.482415, -1.197139, 2.508349, 1.212023, 0.351047, 0.387545, 1.278681, 0.488864, 1.148973, -0.691036, 0.252424, 1.868212, 0.438444, -2.887588, -0.537036, -0.684071, -1.741831, 0.055706, -0.504995, 1.342336, 0.416253, 0.208315, 0.138326, 0.750489, -0.597545, -0.653041, 0.300722, 0.259019, 1.366061, -0.070968, -0.103294, -0.681356, 1.189079, 0.224627, -1.627360, -1.235841, 0.092197, 0.546120, 1.011409, -1.468901, 0.344382, 1.604989, 0.762395, -1.833910, 1.369965, 2.207117, -2.378839, 0.289389, -0.289958, 0.708922, 0.095479, 1.161928, 0.336401, -1.370665, 0.734498, 0.965329, -0.849018, -2.434349, 0.306106, -0.781257, 0.594293, -1.429602, 0.841641, 0.256158, -1.209145, 0.864806, -0.102022, -0.143145, 0.021417, 1.008262, 0.982015, 0.092831, 0.165202, -0.252263, 0.220545, 0.348633, -0.846917, -0.616212, -0.181726, -1.024299, -1.592690, 0.965261, 0.041398, 0.674359, -1.057345, -0.683720, 0.655972, -0.015530, -0.323909, 0.549081, 1.071910, 0.364225, -0.824464, -0.001709, 0.267600, 0.525355, 0.386475, -0.452447, -0.404434, -1.440732, 0.976957, 1.293394, 0.147899, -1.772454, -0.921953, 1.576577, -1.693166, -1.488782, -0.414513, -2.135588, -1.214201, 0.803253, -0.690416, -0.010669, -0.402725, 0.632358, -0.043319, -1.908834, -1.491129, 1.808186, -1.874046, -0.281751, -1.075587, -0.559680, 0.298088, 0.643733, 0.610926, 0.704458, 2.016152, -0.031613, 0.646952, 0.569395, 2.508410, -0.179675, -0.048824, 0.005606, 1.869785, -0.306183, -0.522185, 0.693429, 0.004549, 0.536186, 0.103252, -0.422090, -0.629959, 0.125014, -0.018577, 0.885319, 0.678065, 0.186344, 0.807778, 0.893964, -1.250961, -1.133031, 0.511445, -1.125194, -0.844051, 1.687765, -0.596102, -0.170204, 0.231324, 0.877110, -0.807087, -0.517076, 1.108176, 0.829449, 0.434158, -0.241738, -0.651427, 0.953202, -0.486286, 0.665821, -0.121909, -0.066174, 0.646312, -0.254029, 2.053112, -0.455520, 0.194909, 0.339175, -0.593663, -0.580708, -1.483420, -0.718239, 1.580834, 2.758743, 0.921026, -0.283677, -2.222538, 0.787170, -0.049637, 0.209295, 0.898605, -1.266989, 1.070821, 0.921603, -1.105286, -0.183823, -0.001298, 1.437060, 0.364263, -0.432373, 0.030635, 0.115497, -0.913457, -0.696298, -0.106767, -0.929542, 1.740185, -1.781696, -0.549155, 2.388424, -0.243142, 0.822746, 2.649969, 0.082938, -0.060588, -0.322106, -1.212368, 1.261406, 0.998801, 0.553030, 0.707387, 0.139253, -1.965311, -0.426487, -0.183201, -1.143024, 1.080709, -0.542438, 0.557808, 1.305462, -0.798548, 0.792202, 1.471583, 0.359012, -0.754083, -0.563582, 2.933185, -0.191811, -0.729754, -0.858562, 0.060986, 1.972915, 1.746027, -1.087005, 0.552130, -0.788223, -1.243806, 1.856027, 0.410151, 0.278261, -2.097281, -0.165141, 0.452122, 0.847627, -0.040394, -0.849300, 0.202366, 1.170092, -1.498406, 0.402975, -0.401223, 0.843738, 0.103140, -0.551512, -0.564725, 1.017490, -1.411059, 0.497527, 0.853076, -1.208954, -0.580804, -0.538174, 0.746502, -0.138976, -0.450661, 1.259247, -0.601191, 0.972999, 2.011034, -2.611481, -0.296053, 0.025581, 0.843127, 0.269563, 0.078695, -0.652477, -0.636561, -0.337333, -0.085627, 0.699060, -0.285203, 0.302345, -0.254838, 0.719321, -0.887386, -0.869428, 0.308216, 0.321839, 1.339406, 0.131548, 0.911953, -0.183639, -0.072973, 0.451839, -0.076615, -1.436176, -1.446560, -0.640161, 1.252679, -2.536145, 0.083403, 0.398960, -0.434442, 0.503598, -0.832421, 0.174327, 1.383598, -0.864221, -0.797381, 0.254484, 0.735936, 0.447760, 1.019576, 0.427179, -1.903720, -1.076532, -0.324483, 0.204516, -0.653492, 0.658674, -2.241488, 0.068427, -1.194480, -0.358988, -1.441842, -1.004456, -0.367884, -0.164342, 0.414830, -0.423650, -0.809400, -0.114740, 0.441052, 0.663330, 0.553117, 1.618080, -1.383428, 1.076929, 1.214673, 0.339496, -1.887393, -0.796113, 2.613801, -0.437388, -0.663248, 0.089296, 0.307271, -1.604505, -0.362615, 0.070389, -1.777228, -0.813626, 0.937207, 1.229573, -2.157619, 1.277535, -0.587399, -0.402635, 1.240281, -0.375889, 0.524737, -0.799339, 1.472952, -0.064894, 0.312903, -0.137374, -0.653612, 0.755019, -0.140038, -0.933827, -0.180902, 1.410203, 0.259619, -0.249711, -0.013147, 0.976021, -2.205953, 2.239404, -0.018998, 1.707275, -0.610730, 1.800240, -1.937084, -0.209935, 0.573138, -0.604941, 1.094679, 0.353792, -0.796537, -1.273211, 0.430803, -0.436417, -0.901275, -0.132341, 1.105824, 1.192633, 0.599159, 0.041933, 1.398376, 1.228992, 0.599179, 0.562203, 2.011279, 0.107998, -1.880693, -1.314182, 0.726995, -0.303783, -0.232535, 0.805236, 0.574284, 1.825219, 0.481046, 1.176469, -0.005005, -0.437182, -0.486515, 0.502299, -0.660077, 0.501681, -1.171856, 0.255944, 0.076300, 0.517341, 0.795345, -0.693783, 0.297741, 1.058407, 0.101764, -0.630923, 0.012331, -0.250903, -1.055991, -1.486803, 1.048219, 1.806489, -1.277031, 0.466303, 0.864901, 0.172281, -0.629937, 1.370061, 0.210752, -0.354053, -0.543032, -0.993002, -0.492207, 0.174437, 0.668512, -2.368764, -0.984693, 0.446388, 1.271209, -1.759257, -0.756024, 1.384092, -1.436662, 0.948225, -0.114060, -1.114640, 2.231575, -0.974306, 1.101864, 0.014861, 0.599672, -0.144135, -0.644954, -0.028306, -0.235662, 0.881458, 0.714558, -0.306181, 0.083978, -0.009850, 0.650500, -0.114353, -0.221029, 0.116231, -0.196612, 2.055438, -0.840273, -1.597501, -1.557035, 0.562234, -1.042682, -0.115944, -1.917445, -0.099277, 1.259935, -0.810861, 1.377141, 0.581891, 0.038066, 0.334035, 1.543489, -0.700360, 0.878012, -1.668910, 0.038807, 0.424636, -0.868011, 0.843123, 0.936123, -1.268251, -1.186098, -0.096058, -0.472553, -0.569291, -1.242718, 0.689243, 1.036445, -1.089426, -0.240963, -0.736780, -0.132270, -1.347308, 0.636797, -0.830018, -0.526198, 0.986368, -0.508480, 1.166948, 0.321075, 1.257057, -0.555575, -0.769797, 0.037234, -1.225849, -0.639776, 1.605412, -1.077925, 0.878783, 1.644148, -0.820132, 0.177052, -1.428467, 0.087647, 0.145735, -1.228402, 1.199574, -0.096729, -0.989056, 1.077607, -0.870894, -1.091914, 0.079661, 0.646102, -1.535019, 0.566583, -0.275144, 2.737974, -0.062092, -0.673603, -0.046880, -0.463211, 0.676774, 1.201957, 1.339307, -1.350206, 1.036885, 0.663826, 0.645678, 0.627826, 0.083337, 0.688757, -0.036833, -0.907979, -1.117299, -1.370532, -0.534487, -0.941965, 0.192248, -0.251242, 0.225042, 0.237043, 0.597010, 0.438869, 0.115549, -0.268917, -0.526161, -0.598611, -1.495332, -0.501398, 1.336285, -1.291725, -0.941537, 0.517032, 0.213226, 0.289392, 0.381262, 0.265248, 0.901984, -0.319072, 0.068068, -1.802063, -1.196775, 0.633367, 0.730634, -1.230875, -0.503543, -0.229085, -1.578917, 1.686321, 0.397693, -1.752010, 1.155558, 1.575457, -0.684211, 1.130759, -0.964391, 0.420251, 0.199125, -2.045601, -0.841773, 1.170935, -0.653584, -1.115931, -0.590874, -1.216702, -0.968169, 1.238557, -0.738332, -0.133324, -1.105106, -0.028404, 0.205197, 1.930414, -0.010985, 0.117392, -1.015451, -0.919056, -0.167054, -0.575321, -0.891431, 0.371902, -1.274686, -0.875438, -0.085740, 0.573097, -0.848063, -1.840711, -2.291004, 0.412596, -2.390139, -0.123728, 0.216096, -0.197863, 0.330312, 1.094169, 0.235412, 1.529485, -2.701128, -1.841991, -1.287154, -0.371125, 1.183016, -1.528058, -0.461995, -0.537688, -0.121660, -1.707710, -1.451806, 1.660011, -1.704213, -0.522591, 0.608624, -0.724401, 1.573601, -0.462104, -0.193030, -0.960701, -0.717931, 0.368174, 1.159395, -1.292301, -0.413960, -0.911137, 1.577433, 0.238658, 1.661173, -1.043789, -0.776631, 1.963089, 1.144360, -0.429729, -0.070165, -0.647949, 2.224191, 0.922051, -0.787452, -1.723117, 2.135242, 0.407912, 0.553191, -0.272019, -0.769199, 0.116071, 1.233337, -0.536483, 0.194698, -0.364801, 1.161344, -0.059902, -0.188744, -0.853891, -0.204065, -1.209451, -0.125752, 0.001065, -0.344748, -0.262156, 0.890443, 0.059319, -1.609535, -1.798127, 0.539802, 0.978540, -0.646831, -0.213446, 0.222421, 0.133444, -0.237710, -1.540541, -0.858681, 1.786379, -2.232934, 0.194050, 2.010475, 0.227545, -1.855255, -0.133707, -0.318903, -0.443642, 0.422335, 0.844548, 1.175377, -0.774183, -0.169814, 0.915640, 0.127368, -0.733243, -1.266528, -0.324577, 1.493544, 0.315125, -0.766478, -0.032213, -0.689888, -0.442525, -1.094400, 0.091220, 0.155211, 0.329433, 0.743409, 1.383190, -0.177790, -0.459259, -0.427564, 1.478410, -0.395987, 0.945209, -0.773267, -1.644360, 2.007200, 1.140567, 0.654914, 1.271676, 1.691442, -1.017013, -0.090082, -0.676001, 0.818901, -0.692404, -0.267801, -0.210212, -0.810789, 1.194384, -0.026008, -0.446139, -0.280835, 0.665835, 0.552424, 0.975960, 0.533602, 0.921817, 1.162899, 0.056587, 0.838081, 1.018484, 0.737541, 0.235971, -1.715205, -0.010786, -0.451838, -0.478264, -0.298536, 0.458548, 0.896740, -0.475461, -0.107050, -0.160684, -0.046708, -0.341063, -0.636934, -0.872002, 0.741325, -0.265641, 0.174669, 1.535938, 1.074105, 0.248771, -0.506019, 0.812500, 0.561394, -1.249885, -0.805145, 1.019588, 0.929492, -0.117274, -0.475864, 1.645770, 0.453032, -0.203403, 1.656491, 0.105410, 0.287933, -1.658475, -0.125998, -1.520977, 0.408257, -1.023742, 0.340135, 1.375705, 0.159702, -1.274662, 1.188079, -0.248499, 1.046080, -0.278688, 0.656228, -0.940407, -1.010099, -0.425974, 0.706940, -0.499998, 0.941889, -0.043274, -0.769265, 0.232247, 1.635775, -1.109666, -1.983417, 0.417748, 0.993060, 1.512461, 1.112705, 0.444797, -0.176426, 1.170116, -0.679821, 1.344172, -0.703345, 0.516566, 0.361846, 0.470657, -2.229069, -0.996538, 0.583824, 1.501572, 1.711949, -0.241647, 1.389133, -0.117338, 0.073266, -1.904503, -0.446048, 1.769537, -0.758381, 0.361868, 0.333955, 1.043740, -1.385741, 0.899305, -0.384806, 0.708481, -1.621319, 0.298322, -2.598936, -0.567307, 0.728023, -1.142811, 0.205535, 0.092326, -0.150745, 0.324807, -1.620093, 0.393070, -0.782600, 1.465078, 0.787793, -0.472915, 0.065388, 0.776762, -0.020151, 0.935728, -1.816234, 0.519904, -0.250368, 0.179030, -0.013762, 1.466377, 0.363489, 0.649383, -0.868991, -0.189423, -0.055035, 0.063051, -0.096711, 1.768088, 1.840798, 0.793053, 1.429546, -0.749670, 1.432627, 0.088670, 0.578526, 1.517048, -1.326013, -1.285640, -0.350472, 0.214906, -0.162170, 0.722723, 0.292372, 1.507200, 2.804112, -0.162876, 0.076073, -1.168047, 2.137174, 0.674241, -0.213758, -0.386747, -0.920035, -0.363421, -0.496172, -0.590562, 1.251346, 0.281242, 0.132311, -1.369727, -2.456163, -0.413745, 1.028342, -0.099829, -0.058604, 0.559943, -0.348435, -0.489928, -0.569766, -0.164835, 0.535828, 0.794678, -0.409822, -0.433102, -0.659592, 0.182238, 0.122540, 0.385592, 0.436848, -0.134526, -0.376223, 1.282591, -0.539787, -0.126236, -0.117527, -0.762230, -0.690076, 0.381597, -0.127793, -0.167546, -0.392606, -0.731430, -0.948615, 0.064081, -0.068808, 0.224504, -1.883282, -1.975447, 0.891883, -0.652932, 2.024351, 1.087493, -0.023667, 0.246369, 1.025813, -1.812474, 0.600479, -0.782582, -1.741405, -0.188030, 0.402218, -0.410046, 2.091224, -0.259267, 0.698336, 0.242207, 0.268938, 1.394473, 0.469512, 0.933017, 1.488456, -0.341644, -0.791699, -1.446461, 0.393435, 0.833254, 1.334394, 0.470877, 0.070305, -1.497475, 0.345918, -0.844593, -0.399710, -0.088262, -0.598605, -0.666429, 1.275263, -1.876474, -2.077331, 1.157732, -1.546555, -0.569495, -0.808976, -0.490299, -0.360891, -1.341171, 1.493188, -0.234666, -0.544535, -1.969054, -1.551740, 0.240554, -2.232345, -0.455098, -0.836830, 0.915519, -0.852643, -0.794784, -0.679951, 1.942435, 0.261901, 0.588130, 0.429660, -0.465149, -1.421758, 0.885973, 0.655556, 0.613977, 0.352837, -0.220158, 0.898358, 0.909666, 0.387378, 0.971515, -1.215671, 1.364633, 1.370551, 0.328178, -0.923502, -0.347543, -0.419652, 1.314634, 1.690332, 0.523008, -0.592843, 1.688752, 0.296009, 1.137360, -0.699334, 1.162271, 0.610619, -1.902893, 0.365951, -0.286711, 0.028145, -0.460607, 1.327399, -0.026118, 0.861427, -0.038776, -0.864668, -0.483240, -2.043697, -1.142821, 1.361424, 0.773614, -0.875402, -1.052503, 0.917661, -0.263940, -1.008121, 0.159128, -0.059757, -1.277182, -0.293946, -0.624276, -0.373682, 1.307616, 0.691095, -0.492976, -0.772840, 1.105352, 0.338552, -2.942345, 0.445159, -1.320336, -0.605020, 0.953831, 0.469851, -0.354887, 0.953904, 0.371550, 0.092209, 1.085028, 0.236800, -0.237459, -0.181647, -0.449363, -1.229349, -0.915450, -0.775320, -0.255796, -0.752793, -1.772184, 0.270470, 0.992505, -0.094404, 0.484247, -1.121118, -0.454329, -0.910895, -0.650925, 0.502442, -0.265349, -1.841811, 0.028939, 0.831680, 0.227214, -0.367259, -0.397616, -0.503254, 0.270294, -0.174047, -0.392619, -0.687216, 0.031942, 1.310305, 0.441107, -0.552457, 1.908733, 0.345012, -0.521335, -0.234192, -1.005215, 0.756866, 1.031271, 0.149743, 0.538873, 1.449921, -1.685842, -0.885655, -0.087633, 0.291052, 0.048680, -1.336456, 1.102988, -2.929202, -0.878944, 2.933355, 0.845554, -1.270444, 0.567321, -0.194162, -1.075099, -1.249082, 2.066827, -0.742117, -1.074731, 0.084178, -0.507480, 0.614266, 0.091381, 0.357175, 0.417274, 0.915112, 0.596810, 1.082144, -1.424948, -1.263764, -1.366437, -0.368521, 0.406863, 0.203142, -0.513780, -0.874924, -0.025335, -0.746661, 1.911579, 0.822715, -1.161584, -0.862557, -0.495997, -0.246120, 0.380888, -0.604009, -0.613752, -0.004857, 1.542078, -0.495454, -0.526918, 1.497577, -0.657132, 1.825640, -0.189233, -0.305086, -0.929308, -1.991496, -1.480981, -0.586877, 1.996711, 1.383913, 2.029534, 0.932487, -0.743253, -1.654776, -1.288083, -2.358563, -1.283558, -0.614194, -0.850327, 1.185002, 0.332798, -1.282921, -0.783882, 0.051726, 1.774174, -1.503310, -0.243286, 1.337100, -0.029914, -0.591297, 0.598562, 0.185515, 0.395646, 1.237728, 1.038232, 0.337125, -1.235164, 0.305595, 0.033171, 1.209693, 0.273286, 0.967767, 0.402268, -0.053069, 1.983366, -0.700376, -0.808244, 0.368366, -0.594984, 0.278371, 0.520705, 0.690706, -2.079627, 1.235444, 1.445721, -0.394234, -0.956180, -0.783992, -0.749785, 0.169359, 1.001997, 1.588047, -0.309243, 0.657695, 1.419736, 0.080640, -0.998396, -2.284743, 0.014069, 2.527452, 0.464817, -0.655672, 1.331777, -0.351488, -0.373632, -0.265931, -1.533439, -1.339083, -0.806225, 1.903854, -1.300660, 0.963523, -0.556366, -0.111860, -1.145382, -1.180812, 1.645147, -0.859318, -0.262230, 1.746781, 0.062488, -0.142178, -0.319597, 0.805451, -0.524940, 0.771373, 0.295142, 0.331752, 1.243740, -0.348120, 0.990053, 0.226242, -1.431399, -1.715353, -0.193180, 0.189706, 0.929362, -0.204526, 0.824361, -0.935070, 0.795433, -0.740348, 0.033792, -0.368202, -0.059590, 0.914689, -0.729263, 1.809984, -1.817875, 0.373864, 1.135015, -0.860622, 0.855074, 1.251296, 0.430322, -0.770571, -2.330315, 1.057717, 0.639588, -1.106705, 2.263489, -0.298065, 2.495112, -0.544542, 0.658343, -0.291951, 0.145052, 0.212197, 1.751437, -0.317666, 0.477505, -0.760640, -1.854693, -0.916580, 1.387901, 1.297886, -0.439742, 0.972952, -0.207502, -2.016983, -0.372088, -0.293588, -0.890832, -0.577037, -1.368332, 1.546014, -1.235951, 1.128922, 1.226443, 0.057891, -0.235351, -1.826791, 0.013132, 0.575864, 1.989528, 1.171615, 0.262968, 0.269533, -2.110740, -1.248885, -0.684853, -0.749814, 1.548712, -0.493807, -0.476493, -0.600738, -1.346532, -0.422131, -0.572886, 0.280894, 0.488704, -0.476414, 0.606693, 0.627582, 1.177491, -2.801196, -0.345425, -0.539653, 0.239909, -0.715030, -0.947349, -0.156670, 1.545247, 0.461864, -0.156047, 0.815558, 0.069526, 0.155074, 0.249092, -0.018480, 0.306401, 1.199131, 0.317856, -1.451196, -0.540745, -0.483238, 2.387320, -1.395595, 0.614275, -0.257170, 1.247054, 0.624628, 0.869156, -0.372203, -1.099383, -0.469647, -0.866391, -0.644422, -0.022952, -0.296277, -0.652974, 0.942426, 0.460873, 0.501562, 0.664257, -0.481230, 1.693070, 1.346129, -1.485725, -0.368335, 0.489086, 0.218751, -1.056075, -0.256611, 1.026748, -1.062068, -1.277974, 0.741510, 1.437067, -2.722271, -0.140934, -0.756397, 1.395773, -0.721586, -1.032565, 0.502521, 0.045251, -0.767535, -0.570692, -0.521047, -0.918576, -0.420860, 0.060595, 0.285349, 0.330953, 0.890022, -0.947116, -0.038456, -1.067923, -1.307064, -0.065499, -1.282460, 1.358192, -0.207752, -1.414136, 0.193799, -0.504835, 1.304376, 1.052409, -1.840901, -0.957358, -0.469032, -0.345329, -0.133076, -0.142414, -1.045208, -0.358082, 1.320415, 1.286141, -1.593837, 0.112917, -0.209537, 0.014430, 0.454638, 2.396512, -0.360322, 1.222698, -1.800098, 0.358477, -1.020227, -0.951170, 0.184742, -0.242794, -0.356478, 0.747003, 0.685666, 1.773837, 0.037266, 0.092769, 1.761236, 0.982292, -1.517177, 1.323996, -0.547775, 0.523508, 1.681538, 0.031054, 1.032626, 0.248433, -1.953045, -0.475985, 0.085305, 1.102302, -0.606649, 0.010155, 0.845950, 0.838079, 1.440465, 1.111996, -1.081481, -0.821172, 0.812970, 0.561478, -0.879287, 0.355050, -0.673691, -0.100147, -1.136508, -0.227903, 0.608128, 1.192806, -1.940669, 1.759276, -0.525988, 0.582430, -0.010930, -0.642073, -2.441217, -0.227902, -0.005424, 2.134140, -1.466543, 0.397765, 0.384761, 0.154591, 1.174917, -0.533171, -0.586818, 0.279077, 0.515127, 0.375724, 0.237319, 1.909430, -1.355151, 0.616019, -0.867013, -0.366089, 0.771928, 0.900137, 0.709168, -1.813267, 0.593955, 0.689893, -0.304745, -0.880049, -1.791807, -0.061096, 0.348417, -1.961069, 2.457608, -1.537941, -0.594875, 0.360609, -0.865662, -0.470672, 2.225043, 0.261478, -0.944859, -0.391298, 0.531277, -0.136620, 1.126871, 0.110916, 1.521862, 0.447901, -0.404044, -0.861659, -0.863225, 0.291401, 0.580419, -0.610619, 0.264456, 1.529272, 0.340869, 0.079968, 0.726771, -1.585980, -1.458849, -1.096808, 0.819906, 0.519707, 0.741836, 1.293123, -0.385099, 1.209177, -0.751745, 0.584524, -0.527719, -0.792565, -0.913272, 0.919876, -0.650037, 1.445709, -0.237211, 1.211545, -0.262747, -0.255015, 0.301235, 0.440093, 0.045824, 0.658224, -0.692605, -0.011042, 0.502382, -1.487078, 1.597929, 0.575019, -1.313354, -1.287837, 0.024124, -1.765020, -0.642332, -0.569423, 1.935842, -0.805847, -0.567158, 1.862071, -0.632283, 0.925897, 0.865091, -1.158175, 0.848080, 1.077904, -0.721489, 0.045563, -1.621627, 0.264485, -0.354161, -1.472917, 0.344166, 0.286064, 0.535362, -1.473323, 1.226940, 1.582088, 0.210778, -1.060418, -0.185844, 0.288219, 0.745273, -0.462258, -0.523615, 0.940274, 2.251897, -0.429833, -0.392335, -0.425686, -0.609360, -1.651912, -0.520587, 0.623435, -0.549004, 0.347927, -0.565802, -0.165099, -1.067913, 0.993166, -0.520832, 1.385723, -1.644085, 1.859935, -1.200724, 0.275898, -0.403711, 1.330624, 0.321464, -1.101332, -2.070560, -0.011004, -0.876374, -0.351336, -0.364860, -0.297692, -0.624883, -0.012912, 0.553782, -0.119338, 0.009886, 0.233519, 0.850127, -0.382206, 0.006731, -1.033220, 1.357904, -0.152723, -0.112469, 2.413690, 0.132626, 1.020103, 0.486713, -0.467687, -0.882504, 0.149689, -0.882874, -1.622582, 0.889352, -0.589864, -0.060649, -0.554446, 0.162069, -0.874591, 0.376542, 0.202443, 0.952466, -0.095900, -0.532472, -0.305646, 1.297330, 0.615439, -1.037382, -0.843574, -1.443636, -0.654764, -0.788632, -1.122809, 2.107426, 0.020323, 0.056888, 1.449052, -1.414196, -0.778988, -0.180533, 0.764142, -1.276806, 0.143296, -2.166982, 0.703651, -0.561048, -0.541946, -0.530078, 0.342287, -1.453677, -0.524079, 1.688899, -2.740637, -0.509667, 0.422408, -0.167106, -0.135366, 0.607375, -0.056822, -0.278464, 0.175810, 0.047142, 0.139719, -0.175870, -0.953918, 0.772994, -0.629944, -1.023366, 0.619313, -1.187672, -1.899090, 0.622108, 0.016275, 0.191342, 0.999344, 1.811074, -0.857979, -1.246552, 1.060831, -0.193704, -1.016750, -1.346058, -0.635778, -0.009523, -0.783099, -0.904311, 1.544027, -0.219199, -0.343132, 0.200437, 0.871278, 1.444465, 0.078621, 0.565776, 1.639612, 0.486000, -0.964735, 0.638348, 0.217969, 0.852034, -0.507616, -0.510199, 1.711401, -0.326036, 1.563514, -0.885243, 0.870436, 0.254717, 2.287700, -2.298754, 0.754934, -0.578417, 0.003805, -1.013249, -0.434976, -0.366648, -1.690810, -1.400365, -1.799398, -0.166922, -0.383870, -1.644150, -0.547353, 0.343083, 1.923705, -0.014167, 2.022998, 0.470624, -1.251050, 0.327891, 0.047044, -0.210121, -0.569339, 0.088085, -0.069365, -1.615166, 0.476006, -1.070633, -1.074907, 0.467080, 0.929532, -3.156759, 1.506421, -1.880815, -0.346951, -1.181532, 0.648061, 0.919897, 1.731056, -1.351639, 0.408378, 0.125410, 0.675769, -0.714707, 2.282438, -0.396139, -0.088341, 1.372799, -0.796148, 1.598698, -0.126270, -0.184555, -0.977132, 0.000499, 1.735138, -0.003698, 0.579036, 0.595922, -0.165841, -0.248538, -2.112316, 0.850311, 1.271300, -0.022016, -0.704498, -0.862125, -1.581099, 0.578850, 0.133288, -1.701191, -0.162391, -0.660779, 2.140408, -0.325340, -0.137418, 2.232680, -0.429467, -1.339041, 0.071368, -0.449927, 1.119734, 0.127143, 1.738726, 1.483393, 1.537228, 0.606993, -1.142145, -0.661106, -1.149435, 0.265388, -0.003494, -0.420078, 0.283040, -0.949344, 0.215587, 2.042361, 0.339736, 0.891741, -0.687083, -0.930214, 0.750795, -0.036799, 0.558241, 2.273839, -0.858486, 0.764074, -0.812920, 0.600766, -0.521684, -0.483988, 0.950648, 0.288961, -0.602028, 0.395486, 0.468387, -1.121386, 0.153346, 1.960969, -0.832749, -0.553379, -0.070432, -1.766545, 0.223817, 0.924911, 0.132025, 0.293018, -0.841991, -0.759261, 0.156097, 1.824270, 0.442088, 0.369182, 0.545297, -1.029404, 0.161976, -0.774115, 1.896997, -0.288786, 2.868966, -0.453227, -0.748355, -0.179113, 1.544831, 1.177246, -0.076462, -0.660397, 0.164740, 0.605049, -0.619821, 0.185744, -0.330927, -0.755785, 2.599649, -1.054843, 0.991248, 0.539744, 0.055856, 1.565438, -1.097893, -0.942495, -1.055256, 1.389776, -0.240882, -1.507133, -0.687058, -2.071292, -0.979288, 0.563581, 0.116064, 0.472714, 3.213935, -1.584408, -0.352646, 0.355476, -0.658932, -0.210192, -1.214172, 1.075653, -1.088650, -0.043784, 0.535475, -0.640050, 0.199752, 0.468976, -0.785657, -0.546611, 0.122064, 0.478130, -1.036023, -0.755880, 0.155422, 0.513236, 0.691126, 1.256833, 0.626945, 0.016682, 1.877082, 0.951315, 0.106614, 1.812980, -1.418978, -1.054206, -3.766232, 1.562666, -1.031741, -0.322059, 0.255045, -0.387456, -1.496626, 0.373927, -0.711483, 1.854483, 2.231693, -0.423563, 1.403533, -0.245240, 1.318003, 0.123900, 0.576964, 0.330390, -0.481879, -1.953678, 1.514428, 0.924915, -0.989652, -1.869557, -0.982227, -0.662445, -0.070981, 1.455798, -0.075602, -0.786357, -0.288142, -0.219662, 0.523849, 0.193546, 0.582365, 1.089134, -0.714587, 0.334265, 0.444925, 2.322851, -0.337789, -0.702793, -0.144651, 1.224411, 1.983358, -0.552469, 0.705136, 0.506410, 0.959816, 1.383263, -0.326959, -0.433267, -0.540196, 1.807512, -1.669181, -1.224687, 1.005663, 0.702418, 1.867239, 0.541549, 0.627350, 1.333296, 0.187384, 0.811994, 1.018183, 0.388560, 0.536788, 0.300297, 1.563462, -0.194205, -3.128213, -0.822981, 0.766540, -0.066628, 0.003206, 0.367780, -0.597985, -0.667215, -0.644542, -0.551451, -0.479872, -0.586707, -0.570213, -1.925813, -0.028536, 0.535480, -0.797823, -1.295007, 0.159830, 0.057236, -1.554901, -0.307504, -0.712608, 1.167013, -1.738344, -0.971677, 1.204613, 0.106029, -1.877151, 0.391886, 0.528367, 0.052115, -0.102760, -1.567323, 1.838017, 1.249596, 0.179481, -0.383866, -0.090253, 1.304052, -0.161480, 0.483888, 1.288125, 0.604101, 0.674167, 1.628358, 0.014852, -0.397877, 0.365309, -0.470127, 0.246585, -0.186759, 1.284288, -0.176388, -0.950532, 0.321164, -2.163353, 0.539121, 1.867412, 0.648317, -0.123808, -0.517718, -0.792213, 0.880620, 0.551274, -1.808916, 2.086421, 0.335664, -2.219135, 0.962106, -0.207895, -2.333500, -1.407179, -0.622660, -1.424839, -0.086229, 0.358851, -1.308627, -0.649546, 1.068496, -0.483379, 0.126967, -1.282642, 0.839874, -1.268759, -1.065768, 2.005949, -0.211119, 0.153472, 1.662807, -0.019418, 0.200090, 1.714539, 1.353242, -0.358513, 0.187577, 0.773466, -0.855890, -0.861594, 0.359504, 0.411255, -0.769070, -1.738123, 1.573117, -0.078092, -0.661866, -0.234847, 0.396102, -0.471627, -0.088574, 0.671115, -0.999868, -0.221710, 1.491389, 0.229180, 0.173040, 0.272029, 1.203908, 0.092473, -0.281171, -0.109384, -0.975183, 0.901354, 0.513457, -0.160654, 0.402768, -0.660327, 0.303535, 1.117784, 0.485947, 0.515723, 0.782757, -0.074019, 1.030108, -0.466344, -0.194823, 1.441207, -0.975607, -0.913399, -1.352420, -0.370035, 1.601166, 1.288876, 0.114441, -1.151028, 0.263603, 0.153332, 0.624335, -1.479842, 0.020963, 0.808672, -0.906042, 0.248293, -0.021158, 1.370549, -0.950165, -1.036264, 0.585385, -0.482130, -0.025522, -0.531609, -0.043222, 0.993441, -0.081617, 0.895453, -0.364794, -1.474611, 1.195128, 0.674430, 1.257755, -1.644022, 0.494655, 0.963351, 1.507737, 1.039567, 0.126597, 1.889974, 1.731468, -0.638741, -0.766588, 0.030216, -1.286082, -1.828354, 0.929998, -0.523241, 2.586178, 0.878027, 1.153037, -0.287350, -1.109406, -0.494986, 2.460140, -0.205843, 0.493466, -1.678755, 0.314163, 0.195331, 0.703069, -0.057609, -0.539983, 0.127497, -1.555147, 2.138376, -1.289191, 1.469042, -0.425057, -1.067938, -0.875001, 0.734767, -0.586066, 0.097748, 0.259414, -0.634032, 0.638393, 0.652704, 0.966738, -1.394442, -0.458809, 0.490610, 0.078989, -0.061240, -0.456531, -0.313961, 0.093462, -2.262106, -1.173555, 1.584624, 1.461880, 0.240500, 0.244433, -0.403860, 1.296627, -1.063269, 1.698649, -0.524105, 0.672055, 0.514395, 0.531764, -0.000265, 0.139968, -0.245186, 0.141470, 0.614968, 0.111478, -0.362837, -0.204204, -0.774353, 0.413180, 0.550001, 1.174743, -0.700053, 2.076198, -1.966833, 1.829741, -0.853565, 0.027412, 0.075143, -0.705977, 1.708960, -0.226091, 0.428000, -0.602931, -0.047956, 1.070031, 0.431004, 0.259456, 0.631039, -0.258942, 0.377124, 1.320863, -1.240855, -1.032171, -0.561787, -1.567561, -0.619509, 0.834249, 0.681737, 0.920760, -1.587442, -1.589726, 0.141200, 1.785309, 1.318002, 0.380344, -0.394539, 0.095370, 0.829402, 0.600756, -0.250432, 0.805039, -0.140533, -1.284124, 0.282088, 0.303095, -1.291561, 1.281391, -1.285778, -0.487627, 1.105829, 2.348415, 0.474058, 1.764227, 0.299071, -0.406762, 0.428571, 0.060480, -0.483345, 0.573609, 0.655257, 0.282541, 0.353255, 0.196703, 0.189110, 0.225442, 0.374092, 0.005193, -0.058010, 1.296705, 0.128158, -1.389723, -0.399257, 0.763417, -0.649399, -0.957718, 0.005112, 0.255308, 0.861744, -0.045855, 0.260832, -0.332917, 0.046643, -1.152128, 1.193023, -0.581263}, - { 1.543728, -0.592740, 1.695967, 0.893720, 0.364761, -0.740928, -0.747827, 1.241065, 0.316879, -0.390357, -0.668158, -0.373365, 0.244416, 0.454034, 0.427857, 1.433061, 1.297890, 0.269080, -1.568294, -0.141295, -1.522560, 0.693472, 0.838773, -1.673977, 0.012073, -0.511589, 0.445653, -0.820774, 0.486975, -1.186084, 1.381132, -1.380502, -0.105964, 1.572850, -0.978998, -1.523539, -0.178493, 0.827481, 1.991456, -0.647898, 1.029246, -0.745056, 0.415750, 0.704994, 0.103048, 0.271141, 0.661195, 1.377508, -0.795125, -1.094828, 0.019094, -0.927010, 1.236254, 1.507294, 0.027011, 0.629170, 1.318100, 0.672236, -1.487893, 1.078143, -1.095805, 0.279606, -0.432363, -1.124374, 0.958065, -0.405402, 0.108259, 1.833402, -0.828281, -0.489540, 0.897957, 0.124017, -2.709729, 1.112989, -0.402802, -1.592790, -1.281192, -0.787587, 0.714824, 1.485184, 2.065385, 1.607815, -0.073868, 1.410523, 1.038189, -2.721146, 0.659512, 0.794315, 1.327118, 0.692954, -1.012236, 0.477630, 1.072623, 0.518601, -1.142126, -1.049552, 0.804722, -0.112722, 0.256943, 0.819272, 1.061386, -0.611031, 0.347412, -1.259715, -0.454821, -0.322682, 0.701932, -0.906507, -2.106579, 1.115705, -1.297056, -1.841274, -0.663057, 0.534536, -1.145266, 0.933877, 0.551989, 1.202555, 0.604870, 1.098875, -0.553530, 0.369362, 1.139097, 1.032288, -0.189716, -1.354300, 0.670240, -1.142749, 0.412660, -0.606585, 1.108489, 0.158100, -0.359648, -1.284853, -1.154013, -0.937592, 0.912432, 0.914854, 0.360086, 1.013938, 1.098398, -0.230168, 0.615997, 0.327779, -0.093494, 0.328638, 0.002791, 0.476471, -0.684736, -0.405851, -0.897401, -0.246474, -1.640608, 1.985173, 0.422894, -1.220051, -1.194641, 0.629022, 1.035853, 0.393328, -0.483098, -1.158039, -1.074269, 0.066079, -0.805381, -2.268697, 0.553959, 0.528082, -0.996798, -2.549146, 0.949795, -0.197598, 0.937648, -1.261363, 0.193574, 0.532277, -0.945238, 0.639573, -1.016377, 0.526705, -0.614343, -0.677570, 0.379156, -0.977589, -0.281283, -0.006260, 1.177647, 0.530150, 0.309618, -1.041296, -0.804470, -1.277123, 0.066558, 0.403708, 0.871248, -0.434156, -0.689629, -1.606238, -0.603463, -0.613704, 1.450054, 1.305154, -0.276955, -0.006089, 0.383828, -0.734329, 0.231423, -1.275249, 0.739700, 1.029034, -0.030375, 0.206516, 0.580835, -1.427622, 0.961951, -0.461909, -2.196334, 0.435350, 0.410767, -0.719363, 0.119775, 0.912635, 0.187672, -0.036693, 2.110843, -0.397759, -2.439429, -0.755293, -0.830239, 0.396200, 1.645406, -1.735625, -1.018600, -0.396751, 0.516117, -1.293193, -0.907348, -2.241394, -1.361308, -0.325360, -1.343182, -0.951062, 0.330634, 0.065822, -1.597124, 0.761313, -0.878843, 0.008061, 0.104116, 0.061462, 0.818972, -0.513331, -0.349262, -0.035294, 0.925147, -1.370695, -0.325712, 1.954177, 0.191522, 1.221995, 0.654155, 0.421473, -0.082069, 0.273364, 0.330481, 0.460273, 0.409731, -0.876452, 1.396242, -0.431053, 0.285017, 1.196481, 0.328061, -0.318513, -0.882769, -0.934901, -1.205118, -0.422650, -0.908115, -0.654189, 0.018118, -0.040496, -3.229802, -1.040183, 0.710077, -0.518089, 1.267989, 0.442234, 1.314612, -0.315063, 0.518610, -0.346342, 1.366759, -0.030329, -0.092277, -0.587748, 0.977533, -0.462705, 1.291985, -0.738445, -0.099533, -0.967463, 1.747508, 0.786587, 0.371684, 1.445654, -0.488080, -1.219286, 0.079949, 0.272397, -0.057746, -0.743492, -0.002089, -1.037862, -0.498934, 0.920751, -0.069743, -0.858679, 1.057966, -0.191138, 1.720562, -0.697468, -1.830012, -0.296317, 2.912491, -1.274557, 0.116975, 2.255765, -1.431646, 0.251973, 0.981281, -1.347927, 0.053927, 1.292037, 0.179249, 1.458762, 0.661279, 0.721116, 0.819616, 0.332670, -0.957866, 0.094835, 1.709903, -0.540855, 0.743498, -0.329663, -0.927442, -1.913930, 1.342006, 0.934528, 0.145227, 0.808923, -0.963327, -0.764596, -0.883168, -0.732610, 0.366897, 1.577013, 1.240750, 2.570322, 0.903606, 0.711223, 3.539747, 1.309142, -0.629979, 1.458191, -0.968808, -0.263852, -0.637866, 1.346113, -0.204573, 1.997478, 0.472415, -0.385208, -0.027912, -0.115154, 0.621677, 1.951220, -0.819509, -0.993513, -1.194517, 0.793269, -0.307643, -0.345623, 0.583419, 1.238509, 0.370939, -0.212681, -0.959828, -0.363463, 0.685916, 0.262383, -0.488554, -0.582380, -1.638535, 0.351609, 0.385492, 1.217582, 0.175680, 1.304038, -0.171854, -0.886770, 2.139007, 0.618296, -0.067356, -0.882487, 0.762149, 1.250461, 0.623340, -1.158354, -0.633382, 1.565599, 2.030117, -1.223733, 0.050421, -0.003709, -0.494750, 0.994935, -1.427316, -1.829596, -1.261557, 0.623020, -1.143641, -0.629604, -2.117143, -1.033729, -1.482622, -1.421670, 1.579562, 0.871000, -0.077630, -0.661875, 0.765825, 0.077336, -1.131262, -0.529367, 0.389557, -1.686064, 1.719942, -0.425409, 1.239059, 0.746975, -1.781749, -1.298913, -1.741664, -2.016537, 0.772101, 1.085593, -0.235138, -1.609223, 1.385209, -1.833560, 1.267686, -0.438740, 0.977015, 2.023078, -0.947257, 0.485274, -1.401958, 0.668368, -0.881190, -0.520353, -1.509777, 0.076096, 0.311162, 1.883554, 0.689101, 0.499016, -0.428880, -0.274951, 1.329115, 0.540779, 0.206764, -0.318605, 1.242950, 0.238510, -0.090227, -1.554454, 1.513644, 0.643399, 0.783753, -0.510639, 1.259110, -0.086436, -0.138803, 0.282575, 0.646010, -0.923739, -0.402618, -0.507848, 1.077237, -1.004135, 0.316827, -0.730227, -1.772577, -1.618807, 0.271272, 0.061384, 0.665309, 0.291050, 0.255589, 0.158068, 1.815811, 1.301180, -1.002695, -0.566522, 0.146351, 1.300883, -0.542749, -0.407012, 0.258683, -1.088570, 0.271495, 0.641626, -0.275798, 2.262456, -1.355514, 0.058881, -0.388587, -1.295309, -0.331861, -0.436212, -0.487358, 0.044407, 0.218717, 1.569044, -1.160551, -0.007432, -1.828102, 0.018648, -0.387463, 0.248623, -0.572872, -0.965569, -0.133622, -1.053105, -0.215928, -0.029799, 0.807956, 0.591962, 1.592182, 0.081860, 0.798828, 0.486786, -2.040722, 0.188741, 1.516692, 1.616871, -1.163070, 1.261503, 0.836023, -0.448278, 0.125574, 0.265990, 0.166516, -0.067440, 0.554229, -2.293393, 0.118905, 1.277214, -1.042627, 0.157182, -0.695806, 0.977241, 0.355525, 0.425753, -0.492701, 0.046303, -0.503989, -0.917039, 0.426024, -0.657473, -0.458622, -0.233436, 0.440753, 0.860013, -0.184204, 1.654657, -0.661991, 1.296958, 1.181755, -0.840025, 0.157240, 0.014180, -1.749650, 2.040066, -0.150422, 0.692513, 0.218089, 2.155623, -0.151369, 0.658650, -0.431830, 2.046714, 1.848095, 0.257136, 1.363610, 0.457895, 0.919920, -0.175142, 0.133251, 0.808814, -1.162695, 0.492638, 0.185820, 0.961277, -1.201483, -1.013300, -0.943266, -0.641113, 1.328936, -0.443744, 0.487933, 1.370789, -0.475609, -0.145455, -0.546697, 0.316680, -0.447662, -1.038917, -1.453140, 1.059173, 0.239321, 1.009159, -0.234848, 0.643522, -0.620416, -1.123133, -0.548663, 0.080212, 0.165018, 0.432747, -1.164135, -0.141651, 0.945134, -0.833190, -0.606726, -1.354703, -1.622862, 1.104964, 0.734624, -0.146261, -1.532828, -2.046053, 1.204595, 0.708609, 0.181661, -0.077282, 0.477524, 1.099795, 0.876918, 0.862170, -0.279158, 0.926285, 0.099776, 0.893228, 2.105340, -0.159227, -0.991767, -0.461621, 0.408484, 1.136953, -0.068072, 0.617396, -0.831238, 0.070853, -2.906515, -0.538721, -0.979629, -0.036301, 0.394571, -0.806550, 0.687930, -1.145224, -0.272259, -0.901252, 0.053592, -0.123948, 0.120294, 0.325134, -0.440623, 2.502902, -0.169380, 1.144886, -0.045104, 1.003405, -0.054746, 0.641069, 0.008934, -0.421559, 0.809756, 1.224457, -0.210479, -0.322809, -0.469289, 2.156518, 0.238936, 0.303892, 1.370580, -0.591955, -0.063763, 1.176436, -0.218082, -0.129585, 1.252725, -0.253667, -0.600221, 0.051384, -0.179658, -0.832467, 1.262326, 0.336128, 1.222036, -1.494552, -1.847578, -1.492675, 1.352113, -0.647496, 2.100602, 0.723634, 1.731946, -0.159760, -0.537622, -0.356960, -0.268464, -0.521909, 1.182647, -0.307140, -0.685733, -0.289239, 0.613457, -0.006939, -0.914746, -0.331485, -1.059129, 0.813355, -1.146203, 0.084211, -0.822883, -0.034050, -1.500520, 1.719812, 0.622760, -1.842809, 0.306889, 1.744596, -0.136386, 0.659907, 0.926893, -1.885894, 0.052894, -2.744975, -0.185676, 0.678899, -0.647047, -0.620898, -0.354954, -1.235485, -1.799115, 0.531395, 1.091132, 0.453614, 0.681269, -1.137330, -0.381060, -0.279672, -0.807822, -0.007355, -0.985455, -0.522518, 0.047876, 0.017391, -1.098688, 0.586094, -0.476109, -0.585603, 0.441868, 0.431204, -0.809593, 1.045815, 0.906984, 1.200062, -1.673531, -1.427119, 0.617855, -0.033212, 0.228126, -0.790473, 0.250138, 0.394698, -1.031258, 1.323261, -0.227789, -2.154935, 1.041920, 3.963416, 0.474913, -0.359712, 0.683832, 0.752249, 0.271506, 1.295899, 0.031459, 1.317668, -0.166010, -1.027483, 0.485985, 0.466499, -0.200604, 1.620921, 0.823966, 0.155522, -1.038440, -0.814001, -0.562614, -0.171213, -0.809230, -0.665524, -2.168379, 0.941580, 1.118530, 0.540293, -0.515447, -0.181228, -1.346575, 0.476136, 0.956276, -0.634453, -1.641696, 0.774935, 0.996777, 1.012542, 1.091754, 1.451168, 0.499293, -1.695991, 0.473346, -0.444103, 0.097654, 2.108145, 0.376295, 1.593426, -0.403225, 1.227204, -0.732006, 0.295531, -0.616491, 0.475103, 1.523340, 0.950206, 0.000450, 0.434541, -1.327429, -0.437089, 0.472717, -2.357039, 1.665172, 1.442425, -0.399581, 1.477510, 0.682997, 1.687689, -0.442618, -1.147904, 0.663013, 0.119635, 0.098755, -0.385221, -0.102097, 0.624001, 2.115952, 0.020631, 1.488675, 0.512123, -0.998724, -0.160806, -1.652622, 0.346530, -0.807186, 0.266926, 0.914759, -1.162588, 0.326703, -1.000776, 1.170803, -0.933037, 0.864010, -1.953749, -1.069386, -2.243666, 0.338391, 1.479739, 0.212117, -0.786980, 1.778163, -0.481581, 0.302630, -0.548990, -0.465612, -0.890092, -0.101522, -0.393561, -0.745454, -0.355579, -0.804670, -0.340105, -0.577478, -0.802297, 0.038963, 0.228388, -0.154672, -0.945174, -1.064447, -0.054117, -0.390800, 1.305028, -0.186642, -0.184677, -0.007926, -0.117572, 1.180408, -0.016843, 0.139408, 0.083699, -0.279391, -1.804810, 1.685216, -0.431488, -1.023778, -0.661016, -1.839745, 0.360646, -0.355619, -0.467450, -0.905038, 0.507788, -0.311208, 1.126197, 0.268364, 1.847339, -0.018117, 1.077871, 0.000497, 2.859377, -0.701989, -0.587961, 0.065682, 0.714058, 1.072237, 0.785584, 0.340183, -0.942350, -0.965614, -0.723866, 1.179876, 0.521207, -0.748425, 0.563208, -1.039226, 1.493163, 0.493711, 0.759079, 0.176588, 0.957686, -0.249055, 0.273654, 1.883613, -0.095259, 0.658585, -0.490781, -0.616016, -0.206367, 0.631759, 0.611943, 1.605094, 1.381775, -0.077065, -1.059261, -0.897438, 0.704758, 0.518827, 0.202618, -0.783762, -2.408520, 0.713438, -0.834058, -0.318613, -0.564888, -1.720432, -1.114225, 1.764850, -0.588999, -0.862701, -1.043127, -1.531143, -1.415100, -1.181710, -0.075069, 0.362877, -1.013309, 0.482706, 0.526851, -0.756199, -0.301750, -1.191916, -1.026924, -0.180968, -0.495496, 0.076663, 1.391732, 0.126281, 2.131831, -0.134320, 1.802157, -1.013856, -0.439386, 0.529967, -1.045864, -0.437761, 1.380348, -0.780855, -0.004879, -1.264971, 1.340770, 0.162822, -0.178197, 0.592306, 0.253935, -1.220861, -1.044721, 0.887344, -0.933393, 1.291952, 0.248691, -0.821707, 1.311213, -2.030030, -0.121647, -1.279035, -0.953778, -0.021876, 1.045354, 0.340732, -1.665236, -0.406848, -1.910790, -0.160716, 2.399962, -0.199085, 0.328901, -0.525934, 0.920349, -2.120125, 0.274182, -0.945022, 0.392649, 1.714438, 2.159760, -0.669388, -0.138557, 0.303878, -1.393228, 1.112192, -1.189982, 0.188956, 0.186878, 0.018525, -0.506479, -1.437181, -0.572208, -0.474478, 0.397891, 0.543608, 0.705113, 0.889569, 1.460220, -0.097015, 2.224391, -0.720478, 2.011474, -0.014376, 0.258955, -0.692796, 0.009386, 0.190982, -0.352235, 0.436144, -0.167764, -1.034328, 0.576356, -0.265998, -1.378877, 0.409514, 0.447814, -0.305173, 0.598984, -0.340107, 0.068281, 0.803658, -0.255998, -2.108654, 0.765626, 0.311720, -0.251217, 1.577590, -1.729104, 0.118956, 1.895140, -0.651895, 0.908258, -0.970551, 2.316956, -0.502178, -0.858465, 1.587198, -0.935865, -0.384741, -1.185379, -0.946642, 0.266479, 1.790947, 0.744343, -0.110975, -1.700155, -0.233999, -0.303549, -0.484864, -0.300196, -0.220737, -0.575763, -0.899129, 0.236526, -1.946865, 0.624323, -0.826261, 1.145659, -0.382239, -2.105783, 0.111304, 0.090122, -0.090749, -1.827911, -1.005784, 1.272941, 1.058845, 1.168948, 0.780946, -0.872353, 1.340676, 0.966605, 0.471810, -0.817326, 0.825829, 0.093164, 0.726668, -2.335778, -0.222547, 1.926812, 0.893521, 0.193462, 1.309174, 0.239891, 0.143295, -3.614362, 1.869462, 0.262839, 0.745911, 1.763632, -0.805419, 1.632774, -0.651630, -0.513524, 0.013209, 0.904032, -1.066767, 0.246981, 1.080445, -0.105333, 0.280095, 0.148680, -0.328969, -0.306786, -0.427679, -1.156101, -0.424934, -0.834393, -0.700717, 0.286309, 1.121027, -0.727327, -0.479240, 1.241227, -1.509761, 1.328872, -1.549685, -0.328264, -0.549171, -0.206429, 0.156265, -0.266364, -0.596214, -0.487549, -1.399843, -0.175802, -0.553383, 0.123783, -1.160968, -1.718323, -0.039422, 0.168283, -1.222350, 0.812179, 1.375031, -0.457773, 0.563750, 1.907425, 2.366940, -1.315422, -1.503644, 0.103362, 1.249727, 0.263372, -0.055168, 0.452256, 2.843142, 0.445544, -1.008841, 1.253179, 0.551779, 2.332664, -1.765536, -0.528213, 1.922847, 1.421129, -1.408259, -1.024227, 0.712771, 0.619185, 1.078510, 1.620825, -1.810534, -0.238843, 2.642455, 1.088309, 0.696850, 0.024105, -1.332940, -0.722424, 1.018259, -0.782438, -1.252926, -0.655129, 0.270792, 0.023382, -0.490540, -0.398229, 1.731076, 0.149698, 1.356597, -0.053189, -1.017785, -1.630110, -1.171242, -0.079133, 1.106024, 0.678387, -0.794349, -0.188977, -0.923395, 0.751637, -1.344162, 0.349403, -0.382214, 0.751571, 0.240999, -0.348686, 0.366138, -0.972250, 1.242081, -1.681708, -0.679303, 0.756052, -0.510314, -1.051253, 0.990829, -0.150299, -1.320000, 0.241200, -0.287258, -0.639187, 0.868028, 0.099222, 1.555080, -0.584324, 0.353949, -0.303726, 0.498923, 0.766886, 0.769924, 1.851079, -0.620791, 1.223711, 0.497049, 0.999718, -1.428971, 0.891978, -1.633743, 1.145181, -0.071485, 0.641340, 0.101221, -1.809877, 1.348196, -0.581051, 1.630121, -0.564791, -0.150379, -1.163376, -0.341653, -1.724467, -0.469029, -0.887634, -0.154370, 1.752639, 0.792404, -0.918536, 0.923068, 1.999341, -0.737441, 1.792420, -1.806813, -0.514455, 1.465940, 0.148501, 1.211108, 0.539311, -0.437431, 0.656574, -1.309455, 1.363223, 0.916011, -0.443740, -0.515935, -1.053274, -0.891184, -0.149176, -0.052483, -1.611481, -0.536138, -0.710154, 0.109850, 1.190977, 0.038662, -1.475456, 0.420263, 0.453738, 0.123805, 0.209800, -0.758631, 1.380680, 0.407374, -0.675999, 2.225152, 0.517368, -1.733936, 0.307127, 0.167170, -1.621319, 0.661122, -0.432699, -0.074036, -0.765830, -0.951682, 0.424554, 0.295904, -1.337488, -2.093186, 0.245086, 0.154747, -0.330860, -0.227767, -1.186165, -0.842727, 0.243190, 2.228421, -0.364224, 1.185898, -1.108960, 1.370697, -0.836171, 0.806579, -0.404317, 0.663864, -0.499574, -0.844421, -0.201096, -0.200439, 0.206693, -0.417836, 0.132641, 1.434949, 0.834049, -0.186194, -0.177535, -1.720414, -0.306250, 0.570491, -0.916499, -0.020679, -1.460675, -0.075554, 0.512233, 0.651085, -0.548956, -0.064281, 1.214345, 1.005299, -0.427777, 0.495079, 1.579513, 0.820451, -0.605756, -1.023698, -0.186783, -1.345622, 0.843823, 0.476989, 1.685346, -1.876874, -0.963923, -2.281659, -1.296561, 1.208773, 0.770989, -2.878879, 2.181982, 0.761394, 1.760514, -1.286067, 1.320640, 0.140212, -0.840818, 0.815214, 0.843947, -1.923271, -0.875923, 1.287841, -0.795457, -0.626723, 0.786440, 0.493890, 1.503678, -0.693789, 0.188573, -1.074407, -0.219799, 1.288316, -0.117526, -2.090641, 0.102912, -1.715156, 0.266066, 0.772731, 1.387727, 0.741159, 0.695860, 0.411547, 0.562413, -0.369639, -0.017480, -1.283268, 0.780361, 1.198617, -0.291552, -0.114052, -0.126555, 1.469786, 0.733737, 0.251911, -1.535248, 1.172725, 1.307604, 0.428555, -0.592933, 0.999359, 0.098137, 1.063860, -0.764113, 1.456161, -1.045630, -0.802395, -0.203718, 0.123841, 1.156327, 1.290519, 0.473294, 1.119579, -0.984510, 0.404827, 1.864810, 0.005348, 1.034760, -0.676115, -0.498566, 0.176704, -0.629200, 1.265352, 0.046030, 0.633183, -1.390654, 0.289255, 1.864383, 0.568232, 1.353297, 1.334825, 1.308766, -0.882704, 0.592765, 0.065847, 0.853571, -1.491615, -0.222521, 0.781639, -1.906872, 0.115712, 0.739141, 0.051948, -0.208762, -0.519121, 0.117180, 0.503905, -0.364846, 0.030736, -1.470738, -0.186889, 2.120057, -1.095003, 0.465497, 1.086654, -1.278077, 1.222784, -1.155729, 1.723063, 0.386432, 2.238277, 0.691960, -2.142339, 1.465428, 0.456427, 0.722015, -0.976096, -0.085701, -0.447773, 0.646839, -0.198380, -0.242426, 0.644814, -0.928497, 0.204981, -0.667549, 0.928439, 1.042030, 0.444082, -0.301476, -0.675470, 1.255245, 0.471597, -0.684297, 0.980243, -0.005566, -0.787871, 1.189339, -0.443712, 0.070658, 1.239545, -0.332244, 0.344636, -1.002307, 0.618291, -1.905844, -0.486130, -0.416943, 0.212532, 0.716571, 0.896675, -1.129459, -0.650584, 0.024091, 0.017912, -1.670758, -1.597229, 1.230390, -1.310016, 0.588048, 0.788160, 0.060624, 2.222399, 0.307831, 0.551986, -0.315575, -0.005328, -0.432088, 0.029498, -0.596574, -1.285058, -0.320648, -0.766470, -0.464224, -1.009650, 1.540494, -1.997145, 0.706653, -1.014769, 0.707131, 2.051979, -0.652324, 1.343611, -0.184792, -1.483892, -0.878081, 0.910616, 0.765469, 0.181190, -0.427665, 0.112831, -0.590718, 0.315325, -0.960876, 2.109062, 1.078435, 0.700995, -1.058619, 0.033524, -0.062428, 1.721910, -0.438275, 1.999882, -0.621889, 1.545780, 1.162883, 0.732016, -0.720186, -1.623557, 0.311827, 1.266341, 0.745603, -1.704006, 0.759147, 1.057214, -1.859637, -0.626643, 1.383309, 0.854485, 1.235585, -0.619286, 1.145315, 1.532257, -0.361189, -1.481631, 0.616448, -0.086675, 0.850267, -0.607051, 0.210575, -0.914620, -1.009281, -1.199760, 0.225293, -0.356687, -0.107818, -0.026980, -1.129233, 0.033407, 0.877923, -0.075389, -1.201143, 0.083138, -0.471608, 1.656793, -0.146987, -1.438740, 0.855585, 1.424055, -0.456031, -0.914580, -0.073803, -0.414780, -0.324361, 0.817273, -0.788614, -0.525768, -1.575898, 0.207998, -0.931809, 1.425790, -0.011935, 1.069473, 0.411655, 0.469039, -0.801397, -0.036157, 0.078102, 0.036038, -1.608708, -0.539109, 0.312720, 0.709007, 1.198794, 1.262487, -1.433473, 0.761912, -1.133450, -0.534038, 0.990805, 0.958746, 0.487396, 0.377481, 1.335076, 0.951134, -0.522601, -0.058202, -2.136518, -1.516982, -2.720943, 0.246995, 0.203773, -1.943391, 1.046439, -0.359928, -0.703431, -1.693687, -1.298854, 1.617852, -1.069346, 0.976070, -0.669233, 0.917463, 0.340801, -0.678237, 0.353047, -1.146941, 0.068994, -2.129170, 0.098886, -0.905851, 0.769221, 2.073082, 0.488480, 2.643570, 1.439061, -0.130492, -0.136279, -0.286164, 1.345574, -0.310472, 0.475159, -0.987752, -0.417338, -0.564394, 0.324698, -0.837725, 0.578058, -1.493403, 2.406641, -1.769367, 0.596070, -0.695755, 1.188273, 1.781364, 1.366613, 0.709013, -0.923801, -1.829748, -0.191445, -0.325177, 0.570186, 0.584108, 1.480448, 0.059678, 0.976397, -1.085889, 1.142766, -0.851653, -1.326229, -0.580736, -1.349307, 0.982997, -0.382646, 1.058493, 1.158373, 1.804661, -0.147811, 1.965573, -0.524286, -0.431404, -0.445344, 0.401996, -0.128319, -0.372703, 1.165026, 1.118556, 0.309963, -0.646671, 1.735688, -0.935179, -0.322519, -0.310978, 0.907648, -0.407557, 0.088452, -0.526798, -0.633388, -0.745148, -0.802756, -1.482495, 0.687293, 1.244678, -0.169327, -0.594185, -0.090725, -0.623344, -1.198135, 1.330630, -0.263203, 1.356566, 0.075576, -0.397621, -0.787284, 0.903693, 1.317865, -0.295371, 0.827715, -0.328858, 0.036965, -1.089874, 0.585127, -0.734294, -0.550483, 1.713199, 1.949976, 0.088678, 0.322362, 0.997667, 0.460981, 0.519993, -0.141573, -0.804601, -1.060461, -0.026498, -0.541183, -0.594792, -1.239434, 0.726777, 0.625372, -0.858138, 1.507679, -0.299618, 1.001838, -0.227220, -0.644998, 0.748592, 0.841317, -1.732912, 1.576954, -0.578537, 0.576223, -0.170445, -0.208775, -1.069664, -0.548248, -2.018242, 1.256921, -1.421201, -0.618930, -0.178207, 1.396516, -2.629176, -0.291225, 1.317624, 0.612258, 1.281992, 0.305881, 1.084013, 0.760549, 1.323610, -0.649544, 0.466001, 0.197711, -0.883998, -0.070531, 1.014436, 0.245602, -1.158330, 0.914507, 0.044638, 1.860272, -1.320990, -0.341413, -0.903644, -0.615998, -0.229165, -0.025510, -0.117514, 0.582878, 0.470235, -0.360222, 0.321503, 1.254861, -0.478710, -1.504578, 0.616195, -0.695416, 0.130194, -0.980884, 0.782109, -1.028489, -0.544367, 0.980296, -1.125792, -0.979898, -1.148029, 0.609233, 1.755262, -0.818835, -2.397410, -0.792282, 1.898633, -0.178788, 0.744354, -0.555961, 0.302797, -0.479122, 2.263770, 0.757404, -0.575309, 0.333148, 1.055404, -0.871357, -1.038637, -0.302418, 0.648798, 0.285861, -1.366265, -0.132504, 0.070557, 0.085007, -0.088055, 0.751706, -1.608882, 0.078492, 0.361955, 0.825377, 0.238153, -1.323956, 0.076823, 0.402911, 1.572427, -0.289143, 2.055727, 0.303057, 1.004905, -0.172436, 0.058051, 0.189194, 0.642443, 2.411987, 0.557566, -2.448584, 0.109962, 0.173627, -0.346565, 1.755229, -1.645220, -0.338602, 1.870723, 0.467474, -0.259386, -0.595858, 1.543178, -0.321633, -1.258456, -0.356128, 1.759012, 0.235964, 0.069044, -0.144850, -0.901310, -0.478922, -0.893824, 0.627770, -0.133725, -0.886935, -0.420436, -0.926305, -0.652691, -2.928196, -0.180172, -0.274582, -1.143393, -0.606190, 1.095210, -0.275602, -1.462573, -0.445382, 0.379700, -0.311070, 0.137362, -1.308722, 1.046199, -0.462291, -0.493530, 0.136103, 0.341260, -0.193205, -0.205588, 1.243827, -1.365820, 0.150805, -0.322682, -1.931579, -1.390245, 0.553234, 0.284577, -1.159301, 0.184480, -0.773188, 1.494891, -0.716378, 1.142056, 1.692514, -0.298328, 0.120494, 0.517337, -0.572664, 0.604623, -0.121357, 0.206855, -0.881343, -0.723246, -0.829706, 0.493439, -0.643008, 1.279474, 0.154532, -0.443738, -1.788366, 0.318439, 0.009616, 0.144679, -0.234344, 1.540348, -0.191229, 1.801752, -0.735773, -0.316242, 0.319681, -0.279711, -0.553538, -0.362192, 1.940749, 2.273398, 0.678762, 1.246873, 1.639827, 0.393353, -2.211025, -0.449414, -1.217405, -0.058245, -0.379224, 0.134005, 0.106018, 0.409131, 0.626948, 0.536279, -0.459390, -0.727129, -0.076501, 0.270049, 2.220869, -0.898340, -1.255490, -1.112474, -0.986611, 0.242009, -0.454001, 0.996779, 0.590432, 0.079922, -0.485334, 0.567203, 1.303653, 1.027443, 0.524621, -1.521776, -0.784577, 1.347198, -1.020721, -0.024993, 0.118756, -0.507537, 0.361194, -1.262435, 1.033672, 0.131397, 1.373580, 0.063679, -0.661628, 1.618135, 0.135655, -0.714596, 1.084792, 1.073394, 0.944412, -0.836146, 0.831916, -0.404393, 0.078345, 1.577683, 1.265467, -0.086003, -1.714331, 0.861883, 0.283514, 0.321558, -0.944080, 0.247105, 0.235119, -0.685466, 1.267698, -0.620071, 0.169366, 0.730262, -0.527520, 0.381436, -2.715241, 0.348524, -1.583914, -0.738575, -1.156454, 0.167652, 0.670236, 1.612451, 0.627811, -0.515302, -1.993856, 0.220103, -1.054016, 0.294660, 1.241554, 0.332663, 1.781377, 0.058050, 1.060655, 0.519327, -0.008538, 0.975439, 0.709957, 0.260859, 0.666260, -0.321561, -0.750409, 1.307158, 0.411851, 0.989067, 0.018485, 0.112269, -0.667378, 0.980528, -1.676128, -0.811036, -0.475709, 0.930788, 1.534876, 2.764836, 0.825013, -0.394211, 1.129753, -0.182914, 0.382604, -0.390051, -0.656802, 0.599406, 1.833699, -0.789763, -0.669325, 1.222522, 0.953136, -0.045621, -0.727279, -0.619767, 0.863837, -1.935512, -0.383181, -0.286702, 0.577245, -0.579721, -0.699715, 0.720726, 0.658684, -0.909050, -0.015795, 0.447437, -1.765634, -0.184257, -0.827700, 0.323539, 1.285534, -0.020818, 0.396220, 0.291049, -0.798951, -1.782427, 0.213662, 2.169003, -0.145762, -2.652786, 0.755944, -0.094671, 0.918621, -1.575469, -0.096371, -0.159130, 0.787077, 0.000351, -1.289808, 0.562940, 0.633124, 0.764171, -0.243431, 0.571600, -0.491852, -0.065158, 1.003369, -0.100753, 0.377871, 1.425284, 0.895947, 0.851795, -1.064036, 2.073128, 0.318020, 1.408718, -0.019871, 0.861209, -1.112317, 0.391092, 0.118180, 0.335289, -0.212761, 0.894457, -1.067931, 3.365040, -0.236340, 0.168933, 0.783965, 0.547947, -0.085968, 0.289844, -0.089714, -1.772796, 0.090836, 0.339181, 0.227137, 0.220409, -1.153354, -0.436144, -1.012920, -0.005043, -1.118741, 0.443973, -1.191041, 1.760287, 0.463935, 0.550782, 0.454747, -0.989656, 0.711679, -0.340196, 0.689427, 0.484804, -1.099396, -0.639139, 0.057687, 0.182825, 0.347626, 0.038810, -1.548812, 0.094133, 0.876271, 0.082506, 0.763386, -0.019234, 0.590150, -1.364918, 0.167558, 0.985785, -0.818118, -1.039431, -0.519964, 0.847359, 0.024934, 1.791188, -1.930847, -0.672185, -0.668020, 0.118757, 1.201295, 0.229236, -0.008620, -1.005668, 0.815970, -0.207508, -0.173540, 0.129630, -0.633536, -1.846817, 0.180404, 1.069638, -0.118312, -0.437885, -1.183526, -0.558422, -0.593331, 2.025311, -2.249938, -0.731704, -1.546986, -1.633174, 1.871488, -0.695989, -0.235880, -0.365742, -1.030583, 0.379910, 0.976160, -0.257072, 0.187679, 1.958788, -0.420677, -0.450136, 0.034600, 0.163676, -1.560354, 1.996248, 1.515961, 1.036198, -0.320155, 0.806149, -2.007962, -0.428954, 1.035821, -0.320382, 0.336800, 0.729195, 3.036651, -0.740604, 1.065839, -0.687186, -0.017618, 1.918400, -0.707910, 1.045846, 1.828034, -0.089217, -1.791971, 1.131751, 0.398927, 0.379558, 0.441137, 1.673095, 0.596946, -1.446145, -0.260017, 0.047287, 0.468005, 0.963162, 1.187484, -1.308183, -1.862289, 0.350010, 1.454402, -0.586858, -0.245476, -0.465852, 0.267425, -0.237053, -0.252749, -0.328377, -0.667879, 0.047170, 1.813297, 0.465023, -0.603614, -1.159119, -0.444126, -1.740628, 0.129883, 0.968457, 0.031888, 0.366965, 0.222597, 0.745627, 0.074029, 0.464944, 0.780219, -0.636249, 1.304141, -0.211039, 2.233072, 0.450567, -0.672574, 1.293839, -0.982561, 2.075779, 1.160331, 1.689407, 0.228013, 0.385560, 0.223982, -1.645682, -1.797162, 1.273594, 0.314190, 0.586895, 0.556073, -1.086670, 0.318686, 0.433057, 0.680806, 0.020872, 0.413646, -0.563352, 0.979155, -1.047378, -0.277093, 0.773852, -0.299266, 0.578660, 0.323095, -0.180873, -0.070669, -1.428276, 1.826382, 0.215816, -1.860928, -0.004247, -0.799770, -0.584882, 0.378576, -0.500920, -0.752968, -1.088108, 1.636232, 0.558796, 1.367221, -0.143151, -0.222270, 0.019466, -1.754637, -0.583678, 0.301486, 1.177094, 0.348449, -0.158097, 0.067921, -0.768670, 0.904611, -1.406535, -2.466398, 0.851644, -1.573222, 0.544450, -1.168125, 1.718874, 0.049624, 0.068975, 0.399012, 0.351799, 0.066937, -0.289314, -0.358945, -1.083001, 0.668936, -0.047539, -0.261954, 0.576798, -0.991504, -0.684705, -0.494467, -1.337530, 1.538690, 0.356429, -0.933199, 0.788988, 1.658647, 2.345464, 1.698276, -0.157699, -1.515306, 2.683462, 0.544674, 2.023517, -0.042124, -1.487091, 0.573243, 0.346071, 0.931017, 1.544725, -1.621554, 0.779515, 0.851658, 1.209165, -1.237841, -0.856806, 0.833720, 0.377152, -1.440021, 1.123489, 1.833032, -0.642620, -0.075162, -0.930460, -0.636542, -0.521290, 0.657911, -0.579892, 0.077771, 0.145487, 0.514840, -0.127428, 0.949677, 0.130284, -1.245867, -0.634503, -0.012272, 0.668922, 0.370015, 0.227245, -0.839886, -0.554682, -0.394735, 0.136950, 1.976970, 0.560678, 2.096284, -0.622745, -0.427967, 0.222371, 1.647865, -1.126804, -1.191177, 0.004570, 1.411011, -0.103002, -0.424705, -0.231971, 1.389032, -0.178743, 0.296885, -0.766984, 0.709071, 1.397780, 1.211298, -1.619236, 1.379673, -0.545768, 0.200720, 0.644185, 1.399730, 0.762633, 1.293429, 0.798252, -0.397815, 1.762905, 0.824906, -0.969612, 0.413084, 0.528542, -1.805443, -0.557158, 0.956679, -0.321781, -0.431411, 0.049933, -1.645685, 0.076623, -0.496521, -2.686708, -1.341078, 0.146743, 1.145876, -0.522073, -1.418392, 0.642946, -1.116812, 0.334280, 0.410590, -0.869679, 0.996400, 0.307103, 1.423114, 0.261724, 0.064000, 1.054452, -1.988682, -0.423465, -0.301731, 0.523532, -0.247100, 0.745077, -0.437504, 0.147181, -1.716339, -0.542639, -0.137286, 0.244948, 1.150652, -1.612285, -1.163530, -0.440625, 0.551261, -1.096259, 0.342652, -0.443613, 1.118395, 1.121676, -0.944705, 0.889116, 0.245293, -1.317632, 0.374021, 1.628888, -0.806348, 0.989933, -1.611679, 0.133558, 0.077617, 0.165783, 0.943719, -2.274433, -0.667506, -0.740540, 0.086897, -1.900068, -0.779314, 0.370366, -1.250877, -0.259405, -1.824351, 1.324397, -0.080346, -1.099696, -0.753800, 2.011105, 1.141854, -0.421049, 0.385272, 0.164710, 1.928079, -0.654268, 0.487767, -1.256934, -0.424002, 0.939268, -0.240592, 1.008969, 1.094162, 0.771396, 0.657445, 1.042972, 0.752015, 0.913622, -1.964462, 0.003456, -0.893460, 0.150170, -0.490756, 0.181753, -0.194321, -0.901888, 1.787246, 0.608727, -0.522022, -1.403568, 0.535359, 0.968580, 1.314631, -0.311413, -0.391818, -0.852411, 0.660781, -2.188461, -0.629223, 0.448719, -2.448936, -0.275527, -0.882270, 0.715120, -0.932497, 0.865577, -0.781219, 1.768387, -0.188905, -1.910452, 0.423647, 0.968344, -0.213793, -0.559447, -0.940981, 0.831785, -1.727392, 1.143801, -0.040478, 0.338867, 2.382293, 1.218370, 0.175177, 0.573202, -0.630816, -0.258888, 0.200910, -1.413202, 0.046748, 0.924094, 1.779065, -0.970498, 0.102026, -1.778829, 1.318066, -0.071244, 0.293009, -0.255368, -0.596281, 0.436262, 0.698794, -0.568113, 0.162310, 0.910770, -0.598901, 0.653884, 0.139303, 0.159009, -0.353220, 0.533984, -1.087872, -2.193821, -0.583080, 0.335470, 0.524495, -0.354535, -1.252062, -0.586193, 1.127294, 0.214520, -0.508353, 0.743758, 0.703607, 0.807716, 1.874691, -0.758583, -0.222595, -1.804454, 1.282357, -2.403395, 0.480798, 1.581124, -0.697750, -1.549998, 0.580017, -0.026375, 0.731519, -0.663069, -0.380540, -0.048203, -0.477546, -1.648286, -1.503718, -0.504578, -0.222585, 1.695473, -0.441789, -1.567829, -1.325399, 0.014407, -1.082490, 0.451003, 0.455227, 1.038005, 1.817320, 0.666238, 1.613339, 0.377046, 0.065257, -0.939918, 0.191798, -0.148130, 1.811592, 0.383744, -0.724423, 0.057653, 0.178792, -0.072898, -0.730660, -1.425928, 0.334482, 0.873629, 1.736488, 0.470845, 0.593671, -0.329021, 1.150805, -1.215281, -1.692668, 0.676668, 0.962709, 0.907865, -0.230071, 0.547624, 0.674877, 1.062763, -0.038604, -0.262362, -0.840242, 0.134289, 0.943543, 0.731046, 0.492023, 1.856400, -0.413153, -0.160476, 2.140513, -0.081516, 2.380793, 0.336923, -0.850997, -1.609959, -0.520330, -1.718403, -0.359211, -1.544253, 0.068696, -1.548544, -0.269209, 1.465738, -0.526617, 0.114452, 1.056856, 0.710068, -0.205939, 1.720047, -0.218559, 1.148313, 1.879610, 1.457389, 0.467757, 1.417670, 1.435690, 0.588652, 0.499619, 0.108803, -0.240760, -0.277030, 0.820338, 1.442513, -0.119021, -0.385217, 0.770449, -1.288368, 0.896073, 0.500195, 0.416874, -1.027213, -1.376213, 0.435916, 1.931995, -0.346535, 0.478687, 1.574385, 1.277695, -0.250764, -0.090185, 0.167062, 0.419265, 0.113073, 0.168456, 0.662067, 0.419620, -0.767727, -0.868907, 0.926928, -2.215932, -1.145848, 0.472411, 0.549491, -2.490558, -0.896433, -0.779514, 1.349593, 1.019886, -0.725323, 1.106716, 0.403477, -1.199086, 0.652252, 1.758440, -0.141009, 0.224586, -0.476162, -0.765149, -0.416930, -0.318392, -1.028949, 0.406502, -0.795865, -0.764368, 0.179148, 0.807350, 0.236810, -0.068248, -0.820587, -0.239689, 1.509459, -0.135415, -1.338417, 0.722335, 0.332395, 1.920353, -0.169373, 1.007726, 0.631101, 0.832534, -0.848295, 0.399311, -1.699135, -0.702458, -0.078420, -0.785380, -1.364508, -0.697801, 1.877405, 1.225579, 0.164045, 0.896188, -0.958080, -0.510882, -1.755142, 1.142440, -0.400417, -0.018623, -0.078627, -0.722265, -0.529349, 0.523017, 0.398174, 0.032965, 0.066418, 1.351563, 1.041406, 0.740933, 0.423004, -1.591579, -0.032365, 0.297035, -0.217560, 1.219674, -1.117245, -0.663576, 1.122866, -1.987687, -0.760112, 0.673831, -0.549768, -2.619705, -0.733679, 0.189459, 0.246954, -0.457686, -0.576197, 1.494833, 0.191348, 0.218545, -0.307411, -0.159803, 1.328122, -0.806005, -1.027288, 0.726105, -0.601921, -0.247215, -0.345861, -0.835606, -1.161098, -1.362822, 0.510777, -0.179698, -0.730879, -1.089370, -1.597180, -1.515867, -1.618301, 0.606443, 0.479950, 0.048039, -0.866761, -0.971359, -0.802361, 1.424969, 1.140857, -0.451990, -1.221995, 0.144134, 1.230056, 0.410692, -0.497828, -2.025460, 1.576786, -0.006840, -0.928410, 1.770164, 0.161853, -0.509058, 0.119925, -0.718424, -1.650275, -0.243898, 0.421852, -0.108430, 0.721182, 0.193983, -1.617668, 0.058490, 0.067884, -0.564173, -0.893146, -0.126036, 0.788910, -1.219243, 0.594939, -0.975989, -0.284461, -0.176849, -0.657271, 0.464606, -1.228317, -0.077306, -2.044564, 0.211119, -0.048180, 0.359618, 1.877659, -2.765362, 0.316579, 0.284979, 1.127269, -0.715882, -1.055688, 1.266683, -0.706145, 0.890804, 0.074912, 0.885699, 0.712331, 1.156186, -0.927811, 0.150206, 0.466549, 1.222076, 0.240960, -0.175015, -0.095842, -0.324176}, - { 2.862805, -0.055079, 0.774972, -1.141454, 2.260701, -1.679269, 0.752509, 2.256575, -1.337693, -2.347305, 1.380400, -0.571524, -1.019575, 0.815122, 1.200709, -1.203387, -0.199704, 0.222750, -0.615129, 0.230635, -0.128402, 1.470511, -0.181106, -1.139594, 0.534922, 0.761732, 0.422224, 0.916319, 0.650734, -0.339850, -0.840332, -0.598169, -0.429579, 0.474558, -0.809438, -0.662010, -0.086837, -1.189614, 0.160609, -0.816881, 0.262597, 0.907053, -1.438818, -0.017621, 0.088128, 1.545372, -0.661200, -1.090389, 0.173265, 0.987569, 0.053265, -1.845255, 0.424057, 0.579740, -1.934206, 1.374182, -0.060964, 1.089683, -0.460019, -1.028916, -0.266322, 1.775652, -0.488248, 1.106367, -0.880685, 0.464462, 0.300249, -1.568923, -0.280548, 1.423567, -1.102395, 0.078975, 0.392307, -0.032044, -0.025634, 0.754589, 0.149412, -2.203666, 0.582953, -0.615667, 1.451294, 1.560304, -0.082468, 0.081205, 1.781244, 1.602240, 0.938815, 0.810498, 0.636674, 0.060805, -0.203021, -1.225802, -0.553038, 1.160696, 0.130256, -2.402325, 0.046702, -0.014695, -0.092477, -1.744948, 0.741617, -0.346356, -0.271222, 1.014599, -0.776657, -1.541217, -0.387776, -2.296592, 0.452384, 0.581440, 0.351426, -1.791589, -1.019302, -0.083217, 1.486979, -0.254389, 0.239009, 0.858489, -0.946351, 1.416381, 0.192624, -1.731287, -0.489328, 1.057223, 0.937465, 2.255023, 0.594830, -0.398539, -1.413300, 0.228512, 0.052861, -1.335543, -0.235630, -0.191580, -0.168652, 3.024351, 0.921437, -1.435274, -0.504809, -1.340963, -0.144373, 0.664876, 1.411939, -0.610662, -0.968175, -0.321519, 2.531991, 0.713780, 1.892886, 0.717247, 0.378514, 1.041009, 0.344396, -1.208437, 0.020119, -1.106887, -1.509934, 0.038878, -1.517905, 1.334812, -0.119707, -0.322456, 0.429299, 1.139497, -0.239490, -0.063916, 0.212850, 0.433074, 0.168506, -0.547503, -1.246065, -0.296375, -1.520586, -0.443032, 0.564153, -0.395164, 0.418155, -0.392422, -1.171012, 0.047384, -0.045579, -0.275369, -0.167096, -0.271397, -1.736368, -0.055999, -0.412097, -1.940842, 0.801939, -0.390747, -0.021345, -2.242039, 0.759023, -0.401233, -0.008906, 0.086761, -3.148546, -0.014633, -1.255185, -0.197963, 0.499904, -1.015338, -0.553288, -1.999196, 0.535317, -0.119758, -1.879797, 0.126412, 0.900693, 0.265815, -0.046969, 1.927617, 0.665195, -2.027726, 0.914742, 2.230643, -0.363767, 0.392706, 0.211937, -0.775902, -1.322912, 0.097276, 1.205778, 0.024985, 0.872575, -0.595012, -0.463374, -0.237647, -1.705612, -0.314946, -0.163237, 0.022840, 0.441292, -0.441778, 0.406889, -0.732251, 0.290748, 2.540212, 2.467465, 1.609549, 0.269302, 0.221839, -1.019998, 0.015061, 0.332426, -0.057717, 0.506807, -0.863995, -0.155699, -0.534986, 0.602320, 0.777991, -0.542535, 0.036304, -1.298724, 2.003386, 0.873659, -0.442744, -0.554913, 0.187128, -0.875161, -0.659138, 0.960926, 0.681407, 1.883780, 0.755181, 1.806294, -0.760921, -0.249610, 0.226731, 2.379432, 1.480653, 0.793411, -1.645328, 2.100164, -0.564429, 0.873865, -1.423064, 0.591655, -0.580871, -0.342766, -0.100122, -1.092930, 0.861609, -0.615473, 2.219130, 1.384670, 0.394472, -0.913598, 1.667843, 0.078286, 0.458539, -0.297759, 1.147536, 1.412255, -1.633393, 1.758834, 1.830703, 1.406932, 0.581100, 0.872086, 0.603528, -0.683173, 0.010625, -0.350921, 0.109371, -0.288944, 0.302430, -0.194304, 0.515730, -0.869603, 0.300686, -0.764533, 0.916653, 0.764045, -0.349414, -0.980539, 0.325174, 1.276384, 1.459703, 1.723923, 0.223135, -0.736426, -0.494964, 1.084544, -0.875419, 0.663341, 2.468405, -0.510039, 0.420929, -1.184971, -1.190352, 1.598543, -0.686843, -0.484498, 1.777436, -0.847051, -0.702192, -1.421314, -1.169702, 0.168704, 0.628094, 0.565972, -1.303828, 0.512755, 0.710569, -0.049343, 0.256436, -0.696881, -0.631460, -0.773008, 2.177222, 0.366149, 0.572048, 1.140816, -0.106071, -0.652278, -1.051734, -0.857246, -1.911447, -1.696203, 0.907827, 0.167587, -1.865878, 1.172057, 0.291157, 1.547794, 0.216062, -0.181774, -0.342360, -1.325443, -1.295936, -1.359779, 1.111858, 0.614708, -0.582072, -1.220280, 0.868146, -0.733827, -1.111499, 0.191788, -1.034563, 0.124301, -0.643812, 1.507305, 0.702366, 1.508669, -1.902196, -1.304462, 0.622312, -1.261340, -1.527987, 0.120765, -1.258952, -0.443027, 0.120529, -0.465950, -1.770310, 1.411059, 1.609665, 1.048655, -0.344639, 0.976127, 0.875106, -0.062123, -0.230796, -1.191762, 0.004565, 1.294138, 0.418975, -0.211644, 0.233567, 1.076954, 1.740858, -0.879942, -1.103942, -0.946459, 0.832112, 2.694114, -0.445494, 0.030589, 1.271202, 0.635328, -0.133948, 0.631263, -0.278569, -0.793820, -0.075490, 0.068365, 0.289050, -0.053216, 1.453635, 0.906594, -0.114293, 0.262725, -0.111293, -1.948131, -0.616846, 1.130461, -0.553615, 1.466176, 0.857891, -0.000997, 0.067258, 0.964116, -0.439870, -0.757706, -1.457814, -1.903937, -0.722237, -1.277658, -1.931439, -0.830236, -1.646871, -1.755909, -1.479482, -0.227277, 0.666450, -1.047559, -0.883259, -0.068015, 0.382690, -0.485674, -1.142806, -1.315928, 0.300477, 1.929442, -0.210759, -0.807326, 0.640901, -0.519791, -1.584384, 1.483121, 0.483392, -1.028480, 0.438399, -1.905260, 1.190767, 0.090708, -0.154290, -1.251500, 1.448276, 0.147552, -0.375751, -1.930549, -2.220884, 0.350261, 2.006223, -0.228996, 0.912132, -0.177234, -1.326807, 0.125387, -0.573912, -0.345648, 0.001936, -0.259999, 0.460897, 0.256703, 0.136170, 1.366553, -1.866073, -2.285827, -0.396193, -0.560098, 0.250766, -0.355867, -1.168230, -1.002328, 1.488727, 0.511628, 1.278041, 2.516599, 1.533667, -1.196795, 1.574384, 0.508368, 0.021525, -0.719401, 1.738884, -0.439220, -0.271159, 0.073705, -0.423357, 2.769957, 0.580262, -0.129949, -0.130834, 0.026926, -0.392453, 0.203452, -0.654698, -0.833765, -0.470109, 0.103617, 0.613531, 0.066534, 0.785086, 0.263243, 0.418203, -2.083832, -0.852046, 0.514020, 0.437121, -0.848208, 0.586873, -0.964896, -0.540749, -1.345254, -1.021527, 1.737145, -0.611362, -0.915631, 1.694011, -0.927213, -1.409397, -0.532347, 0.394334, 0.617731, 0.267884, -0.029301, 0.816691, 0.687833, 1.832307, -2.631804, -0.058050, 1.959118, -0.242166, 0.991681, 0.389693, -0.873272, 0.163788, 1.168925, -1.120898, -0.746679, -1.547816, 2.560863, 2.585150, -0.305598, -0.850272, 1.964402, -0.291312, 0.513924, 0.986040, -0.213317, 1.022909, -1.212145, -0.177395, -0.568466, -0.759776, 0.021262, 0.490976, 0.185360, 0.935610, 1.128509, 0.596774, -2.126489, 0.559761, -0.206284, -0.642376, 0.427731, 0.134940, 0.984933, 0.698331, 2.624682, -0.096881, -0.692019, -0.306763, -0.861633, 0.379541, -0.060453, -0.791853, -0.832291, -0.480630, 0.867301, 1.003000, 0.591348, -0.661784, 0.822656, 1.991155, 0.334843, 2.080361, -1.482000, 0.653798, -0.141131, 1.561272, -0.093648, -0.851876, 2.193886, -1.430538, 0.738648, -0.345708, 0.883874, 0.020108, 0.443615, 1.583616, -0.605803, -0.895959, -0.950299, -0.452716, 0.183693, -1.550778, 0.463577, -0.176291, 0.208889, -0.838101, -0.897683, 0.818201, -0.622000, -0.223191, -0.385666, -0.502974, 0.420750, -1.664967, 0.124552, -0.505393, -0.626531, 0.301995, -0.915321, -0.275556, 1.460275, -1.357400, -0.984554, 0.346813, 1.985741, 0.494134, 1.045418, 1.256769, 0.000185, -1.341024, 0.459769, -0.120296, 0.978980, -0.024539, -0.399059, -0.925712, 0.449016, 0.816990, -0.317828, 1.112426, -0.474662, 0.189146, 0.263294, 0.460553, 1.202794, 0.349841, 0.902893, -0.833658, -0.673319, 0.335607, -0.696796, -0.306836, -0.334021, -0.467778, -0.138161, -2.886442, 1.347498, -1.270764, 0.008506, -0.024363, -0.161631, -0.733965, -1.019645, -0.365329, -0.838168, 0.597280, 0.014726, -0.238466, 1.032355, -0.744688, 0.579447, -1.031236, -0.653502, -0.338192, -0.885247, -0.176712, 0.219319, -1.249782, 1.065476, 0.178734, -0.764397, -0.988028, -1.586403, -0.747845, 0.097808, -1.282020, -0.111575, 1.326760, 1.682221, -0.730144, 1.934580, -0.936550, 0.160623, -1.050134, 1.086140, -0.189244, 1.267710, -1.228234, 0.337209, 1.113505, 0.875612, 1.622142, 0.325386, 1.183146, -0.581733, 0.127758, -0.331038, 0.719606, 0.201163, 0.077440, -0.487119, 0.969083, 0.551454, -1.585530, 1.089882, -1.111997, -1.694835, 0.874081, 0.094421, -0.334199, -0.712513, -0.113034, -0.098136, -0.629828, 0.260838, -0.034882, -0.172363, 0.790472, 0.342020, 2.247909, -0.885511, -1.810432, 0.815043, -0.378366, 0.826734, 0.667323, 0.771799, 0.471999, -1.842455, -0.692768, 0.127668, 0.908567, -0.143098, 0.742829, -0.804314, -1.205628, -0.047181, 0.385129, 1.857316, -0.130419, 0.450560, 0.173261, 0.460997, 1.338095, 0.995024, 1.698022, -1.751673, 0.511225, -0.726934, -0.123440, 0.697253, 0.452341, -0.503362, 0.017144, -0.701327, 1.058353, -1.357485, -2.110110, 0.081862, 0.753633, 1.432027, -0.468055, 2.192409, -1.640586, -0.043345, -0.807122, -1.213998, -0.125547, -1.036359, -0.740362, -0.292852, -1.051465, 0.004406, -1.180191, -0.245046, -0.343697, -0.782793, 1.177590, -1.064535, 0.102157, -0.175939, -0.147807, -0.840903, 1.037740, 1.342594, -1.374074, 0.886953, -1.342092, 1.462907, -0.028353, -0.278185, 0.008560, 0.914976, -0.740753, -0.221450, -0.719429, -1.229256, -0.175923, 1.178092, 0.970058, -1.291418, 0.042490, -0.831705, -0.372105, -0.747072, 1.205138, 2.120681, -2.040428, 1.943062, -0.645126, 1.662537, -0.201962, -0.307762, -0.719362, -0.356205, -0.058687, 1.033868, -0.313321, -0.201639, -0.873468, -0.098231, 0.605892, 1.532150, -0.510630, 0.950387, -0.007952, 1.844554, -1.680704, 0.526797, -2.300790, -0.026488, 0.434504, 0.276499, -0.998025, 0.683560, -1.254076, -0.636350, 0.800286, -0.661681, 0.572905, -1.405699, 0.501224, 1.151534, 0.706235, -0.347593, 0.234619, -0.713301, -0.693937, -1.477237, -2.317165, -0.217108, 1.200441, -0.086572, 0.360917, 0.080780, -1.251565, -0.074402, -0.757023, -0.101102, 1.161566, -0.254443, 1.102280, 0.910695, -2.103535, -0.511631, 0.245754, 0.450443, -0.463173, 0.087945, 0.232899, 0.714814, -0.690347, -0.463652, 0.021526, -0.937332, 0.349170, 0.376947, -0.329737, -1.261278, -0.284626, -0.588387, -2.462261, 0.999957, 0.268277, -1.951380, -0.028624, -2.679152, 1.933939, -2.231595, 0.894605, -0.183204, -1.305088, -0.897796, 0.314671, -0.408532, -0.376586, 0.645120, -0.900563, 0.514326, -1.362231, 0.871704, -0.790682, 0.376796, 1.560026, 1.869531, 0.230525, 2.088380, 0.902482, -1.113357, 2.679903, -0.926810, -1.343108, 0.755159, 2.869156, 0.215346, 1.860007, -0.438254, -1.347817, -2.556280, -0.838292, -0.184814, -0.418817, -0.170908, 0.052636, 1.348364, 0.311738, -0.205501, -0.916612, -0.035586, 1.166911, -0.600343, 0.286783, 0.444816, 1.207589, 1.721134, -0.406469, 1.036417, 0.550735, -1.056240, 1.971313, -1.008518, 1.723208, -0.578401, 0.843169, -1.028315, -0.354688, 0.360194, 1.192937, -1.506496, -1.926531, -0.040319, -0.401523, -1.228902, -1.368721, -0.785987, -0.458260, -0.802843, -1.099481, 1.047103, -0.518483, -0.802057, 0.421114, -0.856605, 0.290831, -0.815047, 1.072205, 0.154842, -1.861768, -0.086060, -0.399813, 0.836449, 0.268635, -0.959067, 0.959501, 0.596188, 1.909470, -0.136188, 0.376333, 0.366699, -0.119023, 1.424368, 0.712188, -0.177106, 0.336395, -0.327290, 0.967748, -0.386259, -0.520617, -0.027060, 1.099961, 2.096384, -0.119895, 1.678726, 1.894531, -0.921799, -0.994215, 1.323987, 0.110405, -0.982346, 0.615777, -0.341347, -0.116174, -1.715772, 0.340282, -0.213124, -0.315225, -1.199234, 2.784106, 1.245832, -0.531107, 0.205862, -0.171456, 1.083205, 0.039168, 1.018793, -0.433841, 1.800553, 1.158686, 0.237026, 1.897689, 1.338294, -0.811174, 0.804326, -0.255533, 0.109783, 1.104240, 0.399912, 1.526089, 0.130539, 0.906667, 0.065359, -0.715042, 0.294772, -0.099880, -0.071202, -0.419434, -0.430633, 1.195527, -0.218813, -1.473798, 0.192561, -0.698243, -0.065420, 0.550605, -1.053325, 0.753022, -0.996681, 0.843815, -0.730883, -0.163559, -0.887160, 1.224710, 0.868163, 0.729518, 0.568670, 0.470305, 1.414411, 1.361466, -0.576445, -0.335978, 0.171132, -0.357712, 0.285636, -1.376695, 0.879784, 0.129563, 0.936618, 3.338324, 1.229329, -0.620441, 0.030631, -1.243033, -1.018620, -0.884635, 0.315199, 0.696165, -0.147759, 0.063326, -0.341085, -0.139851, 0.339181, -1.633720, 0.259913, -0.783926, 0.373557, 2.782969, 0.715170, -1.030379, -0.617391, 1.689720, -0.869971, -2.268611, -0.142380, -0.671752, 0.824527, 3.014240, 0.231811, 0.893429, -0.447364, 1.115379, 0.866379, 1.585907, -0.550756, -0.131154, 0.689210, -1.009183, 0.152085, 0.475368, 0.293765, -1.266501, -0.308494, -1.596751, -0.278467, -0.816446, -1.006395, 0.166213, -0.601790, 0.074295, 0.634215, -0.052263, -0.301493, -0.535001, -1.654554, 1.001408, -0.581678, -0.592085, -1.320397, -0.045455, -0.407639, -0.151382, -0.864388, -2.185694, 0.540270, 1.331660, 0.740703, 1.824002, 0.985745, -0.040701, -0.910375, 0.111393, -0.072399, 0.456052, -1.159282, -1.134065, -0.641860, 0.168773, -0.230211, -0.219429, -0.414769, 0.077143, 0.602705, 1.681179, -0.032419, 0.470832, 1.588859, 2.191808, 0.004546, -0.465359, -0.973584, 1.659499, -0.840540, -0.124305, 0.374858, -1.342901, 1.692369, -0.772489, 0.184488, 0.685559, -0.585160, -0.501749, 0.673514, 0.040315, 0.655502, 0.121983, -0.485158, -1.552336, 0.137731, -0.658367, 0.550480, -0.220314, 0.072114, -0.557420, -0.850528, -0.815940, -0.652968, 1.029018, -1.281104, -2.678572, -0.497858, -1.502676, 1.098647, 0.097932, -0.918647, -0.366060, 2.446311, -0.494477, -0.130439, 0.246458, 0.650712, -1.615144, 1.350366, 1.502006, 1.926232, 0.050450, 0.306973, 0.475758, -0.640836, -0.895342, 0.306525, 2.634925, -0.033872, -0.052714, 1.641928, 0.553396, 0.764828, -0.444489, -0.281146, 0.132946, -0.169099, -0.128860, -0.202719, 0.419785, -0.070600, -1.123784, 0.138541, 0.970354, 1.049334, -0.300716, 1.267099, -1.075961, 0.760648, 0.011874, 0.409402, 1.810170, 1.113363, -1.079479, 1.027708, 1.664792, 0.489676, -0.988489, 0.076389, 1.259863, 0.160376, 0.629402, 0.934830, 0.221643, 0.241225, -1.761224, 0.852538, 0.341221, -0.332156, 1.174370, 1.867658, -0.121777, -0.711688, -2.295488, -1.770757, 1.601328, -0.353370, -0.935510, 0.385809, -1.124324, -0.939126, -2.225066, 0.373015, 0.715532, -0.248635, -1.213359, -1.099519, -0.120215, -0.517905, 0.709855, -1.488343, 0.033749, -0.301047, 1.610517, -0.959937, -0.549391, -0.168589, -0.297758, 1.401289, 0.378295, 1.463036, -1.022264, 0.478984, 1.226555, -1.049750, -0.003447, 0.598199, 0.927658, 1.004276, -1.673355, -1.463935, 0.249271, -0.533080, -0.677964, 1.921044, -2.073379, 1.254481, 1.798632, 0.791922, -0.314163, -0.387631, -1.216206, 0.614247, -1.706924, 0.557358, -0.886043, -0.518478, -0.970963, -0.229862, 0.006838, 0.398514, -0.204490, 1.241636, -0.056705, -0.235172, 1.383050, -0.344179, -0.397473, -0.539577, 0.167826, 0.340591, -1.958424, 1.504309, -0.522636, 1.062583, 0.661992, -1.873474, 0.126089, 1.363839, 1.617063, -0.112732, -0.937516, -1.812903, -0.032315, -1.374682, -1.366695, -1.111225, 0.125841, -0.664806, -0.513175, 0.512025, -0.548643, -1.352860, 0.805216, 0.933328, -0.111566, -1.938313, 0.543197, -0.252600, -0.039377, 1.446332, -1.783591, -0.526295, -1.361761, 1.272745, 2.068490, 0.836975, 1.145567, -0.517356, 1.294285, -0.213064, 0.186970, -0.628233, -1.341362, 0.959694, 0.797501, -0.439631, 1.718707, -1.464268, 1.538225, -1.830225, 1.157263, 0.328792, -1.815510, -1.002149, 0.267550, -0.545501, 0.517463, 1.682639, 0.845633, 0.892939, -0.804660, 0.862171, -0.373519, 0.661528, -0.771302, -0.427637, -0.834072, 1.348785, 0.491987, 2.190373, 2.457416, 0.445713, -0.951053, 0.232683, -0.272204, -0.583218, -0.392077, -0.628063, -0.084245, 0.333291, -0.147265, -0.945695, 0.712070, 0.765837, 0.765508, -0.079538, 1.051033, -1.776370, -0.035073, 0.246485, 0.242234, -0.740224, 0.297872, 0.890660, -1.342553, -0.363605, -1.579738, -1.372061, -1.519058, 0.320677, -2.003026, 0.091183, 0.885303, 0.775565, -2.160908, -0.119447, 0.667350, -0.357806, -0.640622, -2.189891, 0.159689, -2.394003, -0.879651, -1.084957, -1.730756, -0.308818, 0.540626, -1.173607, 0.787882, -0.224947, 0.111080, -0.092843, -0.604165, 0.877154, -0.775970, -1.299013, 0.207478, -0.563260, -0.637041, -0.868930, -0.798841, 0.424707, -1.323236, -1.863457, -0.152687, -1.562774, -0.716138, 0.001507, 1.902444, 1.099069, -0.483896, 0.057232, -0.565703, -0.047181, 0.764037, -0.679941, -0.049898, -0.282916, -1.423038, -0.701279, -0.702325, -0.851669, -1.092972, 1.132937, 0.862394, -1.574666, 0.005616, -0.280045, 0.052933, 0.114316, -1.885117, 0.084470, 0.689191, -0.642140, -0.260015, 0.294884, -1.221358, -1.563230, 0.930023, 2.331087, 0.682631, -0.507299, -2.176593, 0.127847, 1.250863, 1.049228, 0.760307, 0.290862, 0.913321, -1.275750, 0.630891, 0.889809, -0.698100, 1.031630, 0.176767, 0.896319, -2.166147, -0.042406, 0.816935, 0.085425, -1.291574, 0.715948, 0.785372, 0.032003, -0.008905, -0.775458, -0.782831, -0.019636, 0.739469, -1.555600, 0.727035, -0.789567, 0.443105, -1.375318, -0.189659, -1.898896, -0.640718, -1.089822, 0.255329, 0.105308, 1.490597, -0.093684, -0.539996, -0.002446, 0.568707, 1.025302, 0.172220, -0.767021, -0.196065, 1.727901, 2.270144, -0.240150, 0.307770, 0.138438, -0.417119, -0.099015, -0.074702, -0.051139, -0.230765, 2.143932, 0.468362, 1.049745, -0.231191, 0.488994, -0.384419, -1.434802, -0.529508, 0.397596, 0.603413, -1.747145, -0.607655, -0.424843, 0.996237, -0.012519, -0.645429, 0.403621, -1.370830, 0.010921, -0.367657, 1.519422, 0.617146, 0.564209, 0.948729, -0.385076, 0.304248, 0.713241, 0.979505, -0.819220, -1.232091, 1.468559, 1.406151, 0.586226, 1.453624, -0.696577, 0.136521, 0.257013, 0.007892, 0.376690, -1.598682, -1.080180, -0.701879, -0.614127, -0.047640, 1.079236, -1.398191, -0.120676, 0.192088, 0.805822, 0.367607, 0.444702, 0.056774, 0.418836, -0.816752, -0.113807, 0.768314, -0.839684, 0.325392, 0.432421, -0.728848, -0.121026, -0.092131, -0.848049, 1.082806, -0.502087, -1.155917, 1.121064, -0.342943, -0.375877, -1.406312, 0.387267, 0.424086, 0.826730, -0.326574, 0.467242, -1.264390, -0.480366, -1.091095, 0.043079, 2.174098, -0.082880, 0.072349, 1.286701, 1.059599, 0.751107, 0.350151, -0.668868, 0.105018, -0.261374, -0.716429, 0.942878, -1.152659, -0.873781, -1.957849, 0.757286, -0.092357, -1.478378, -1.032509, -0.427794, 1.061623, -0.990963, 0.711382, 0.569579, -0.429175, -0.022602, 0.886366, -1.328673, -1.225251, 0.984478, 1.505840, -0.533593, 0.668489, -0.801922, 1.400971, 1.451241, -1.881531, -0.855081, 1.404101, 1.979957, 0.040533, -0.126944, 0.014807, 0.267048, -0.454474, 0.178847, 0.506511, -0.378687, -1.028255, 0.571825, 0.419263, 1.184437, 0.353132, -1.798233, 0.972242, 0.375284, -0.258490, 1.441418, 0.679235, 0.610537, 0.555688, 1.167421, -2.099960, -0.121467, -0.093931, -1.122853, 0.235235, -0.072288, -0.605430, 0.126359, 1.146718, -0.089143, -0.085058, -0.223924, -1.632909, 2.035854, -0.276491, -0.390018, -0.845120, -0.110919, -1.213067, -0.310876, 1.276559, 0.979004, -0.478605, 0.457094, -1.568804, 0.389232, 2.107067, -0.277936, -1.038638, 0.631440, -0.000560, 1.131747, -0.128699, -0.043246, 0.000567, -1.301971, -0.772563, 0.221700, -0.742065, 0.947594, -1.605278, -0.111451, 1.353028, -0.600437, -0.346771, 1.399873, -1.345483, -0.853759, 1.732354, 1.147301, 1.468050, 1.263324, -1.332458, -0.877993, -2.130314, 0.351732, 0.236944, -0.434476, -0.848425, -1.396123, -0.405136, 1.422360, -1.966814, -0.266577, 0.176106, -0.940655, 0.438934, 1.116838, 0.317558, 0.664408, -0.130431, 2.069849, -0.040232, -0.289653, -0.672048, -0.340405, -0.084344, -0.474162, 1.085321, 0.820224, 0.991162, 0.415528, 0.577902, -0.100700, -0.764808, 0.547872, 0.892877, 0.101686, -2.232623, 0.218407, -0.107334, 0.053125, -0.034452, -0.430041, -0.774613, 1.318963, -2.707061, 0.244324, -0.423788, 0.101224, -1.487005, 0.637713, -0.850520, 1.389812, 0.336309, -2.611636, 1.097802, 0.447583, -0.838241, 3.420436, -1.068536, 1.389419, -0.241273, 0.904938, -0.818239, -0.221534, 0.172794, 1.878394, -2.369473, 0.538834, -0.969446, -0.371926, 1.024396, 0.454268, -0.010175, 1.166771, 0.742516, 0.214392, -1.569085, -0.043797, -0.308736, 0.464072, -0.134790, -0.113056, -0.500300, 0.972351, 0.357009, -0.778562, 0.747917, 0.713485, 1.530468, 0.190826, -0.134805, -1.745339, -2.060433, 0.521381, -0.268538, 1.578888, 0.005915, -1.441188, -1.352721, -0.018647, -0.930117, 1.206810, -0.902351, -0.163161, 0.410921, 0.264951, 1.330335, -1.040025, -0.803937, -1.503077, 0.453019, -0.396428, -1.107746, 0.513104, 0.373658, -0.224492, 1.002628, 1.242675, -2.210689, -1.162366, -1.571850, 0.079017, -0.230274, -1.339020, 0.096714, 0.618877, -0.430763, 0.101277, -0.806072, -0.032787, -0.321225, 0.649279, 1.782410, -0.941268, -0.429839, 1.330861, 1.447174, -1.025736, 1.726171, -1.571461, 0.312726, -0.082246, 0.724114, 0.885492, 0.032952, -0.921404, 0.803974, -0.972846, 0.682970, 0.869749, -1.456824, -0.996198, 1.412127, -1.271357, 0.052844, -0.592720, 0.449044, 0.543283, -1.543620, 0.770803, -0.075263, 0.317279, -0.372157, -1.050912, 1.144678, 3.093191, 1.662531, -0.121094, 0.225683, 0.806632, 2.977509, 0.896518, 1.498224, -0.487309, -2.033720, 0.911177, -1.171702, 0.949133, 2.079720, 0.253759, 0.911926, -0.998689, 2.242846, 0.639870, 0.558231, 1.165567, -1.413233, -0.184249, -0.129191, 0.050413, 0.460122, -2.127116, 1.026417, 0.711223, -0.601544, 0.585046, 0.937544, 0.555648, 0.043097, -0.748606, -0.021981, 1.002368, 0.696589, 1.839437, -0.653013, 0.298310, 0.337771, 0.422614, 0.250487, 0.483169, -0.138281, 1.491554, 0.310236, -0.133642, 0.268060, -0.656293, 0.856722, -0.381889, -0.179795, 1.031471, -1.068985, 0.480502, 0.879212, -0.383312, 0.530000, -0.000189, 1.158521, -0.203352, -1.745895, -1.141183, 0.541767, 0.173407, 0.028366, 2.033123, -0.449244, -0.025609, 1.186347, 0.410037, 0.557129, -0.723942, 1.098324, 0.689513, -0.333536, -1.875729, 0.932217, 0.913292, 1.808887, -1.012943, -0.530243, 0.352510, 0.908005, -0.268952, -1.580704, 0.501765, -1.292741, -1.230967, 0.275808, -0.906487, -0.495648, 0.027220, 1.114617, 0.094763, -1.080792, 1.523810, -0.774519, 2.496188, 0.066431, 1.488420, -2.105661, 0.661336, 1.677653, -0.274637, 0.758960, -0.283874, 0.848195, -1.100285, -0.101953, 0.306504, 1.485316, 0.589264, -0.784468, 0.615491, 1.348166, 1.164209, -0.038890, 1.232857, 0.304724, -2.331403, -0.461512, 0.006976, -0.608258, -0.882697, -0.866727, 0.569431, 0.717090, -1.685648, 1.007488, 0.708607, -0.337872, 2.451992, 0.971709, -0.156814, -0.686672, 0.126982, 0.829377, 1.049799, -0.890542, -0.085022, 0.118800, -1.823866, -1.169456, -0.723808, -0.511440, 0.854272, -0.009668, 0.209245, 0.013302, -1.020211, -0.502164, 0.222711, -1.119974, -1.278024, -1.649244, -0.548986, 0.665538, 0.662380, 0.405251, 0.282164, -0.002029, -1.246852, -0.370449, 0.393767, 1.644471, 0.426126, 0.387291, -0.674875, 1.038076, 0.600103, -0.096612, 0.325958, -0.818657, 0.477243, -1.199837, -0.869795, -0.881705, 1.958618, -0.671609, -0.147153, 0.010151, -0.237564, -0.394377, 0.250500, 0.149292, 0.158081, 1.008671, 1.309021, 1.472144, 1.343242, -1.130392, -0.682410, 0.329447, 1.598609, -0.166066, 1.833190, 0.057439, 0.559181, 1.442972, -0.228773, 0.252063, 0.639607, 0.739787, 0.291796, 1.093051, -1.457751, -2.159760, 0.564411, 1.146052, 0.776249, -0.149219, 0.112510, 0.492335, 0.130283, 0.859809, -0.033366, 0.409701, -0.654081, 0.145960, -0.335490, -1.190467, -0.088920, 0.606310, 0.853640, 0.853195, -0.132278, 0.864953, 0.188628, -0.212323, -1.115402, 2.274409, -1.021911, 0.431413, 0.465923, 0.999762, -0.142977, 0.521905, 1.040826, -2.057496, 0.888147, -0.285624, 0.887932, 0.525930, 0.352817, -2.100249, -0.357368, -1.235392, 0.243378, 0.925334, 1.633089, -0.461984, 1.062828, 0.602230, 1.559014, -1.126593, -0.497828, -0.172161, -0.569687, 0.919834, 0.378514, 0.663484, -0.168105, 0.076585, -0.004925, 0.615745, -0.278400, -0.018738, 2.383155, 1.126474, -1.967811, 1.885509, -0.882970, 0.376107, 0.095518, 0.682775, -0.627919, 2.030618, -0.905891, -0.079417, 0.811254, 1.487391, 0.541125, 0.117364, 0.246623, -0.910617, 1.431684, 1.106386, -0.190946, 2.436257, 0.572403, -0.859946, 1.280817, 0.151598, 0.120387, 2.086688, 1.870306, 1.395172, -0.454404, -1.043979, 0.072510, -0.666675, -0.214606, -0.692866, -1.039563, 0.759397, -1.210571, 0.066885, 0.102654, -1.494836, 0.581090, -1.387127, -0.764526, -1.374681, -0.359010, 0.016068, -0.388888, 0.379490, -0.519102, -0.648704, -0.171610, 2.618532, 0.354210, -1.646865, 3.792551, -1.509512, -0.146837, -1.116581, -1.173348, 1.261452, -1.041687, -0.680098, -0.047130, 0.697685, 0.868387, -0.737022, -0.706824, 1.150055, -1.637254, -0.951927, -0.049012, -0.065075, 0.752924, 0.228552, 0.934360, 0.734150, -1.679047, 0.865402, -0.239389, 1.022948, -0.023258, -1.256358, -0.451178, 1.281918, 1.153275, -0.779462, 1.072035, -0.273102, -0.920331, -0.355805, 0.335196, 0.235106, 2.064071, -0.875029, 0.835588, 0.239502, 0.756748, -0.033295, 1.439518, 0.024978, -0.519161, -0.320650, 1.141891, 0.252935, 0.267547, 0.323698, 1.046774, -0.716241, -0.592586, -0.202480, -0.404383, -0.684366, 0.301782, 0.266524, -0.550650, 1.528382, 1.130170, 0.930979, 0.068278, -1.126034, 1.169483, 0.613790, -1.154997, 1.973570, -1.029345, -0.672124, 0.448635, 1.015372, -0.565159, -1.970106, -0.019809, -2.075485, 2.179176, 1.422725, 0.543414, -0.659533, -0.731586, -1.741046, 0.252042, 2.565730, -0.725135, -1.101690, 0.800728, 0.249890, -0.167670, -0.829689, 0.101905, -0.318666, 1.612459, 1.237428, -0.065305, 2.497023, -1.636741, 0.341558, 0.138401, -0.168568, -0.576635, 0.398949, 0.906522, -1.053750, -0.545998, -0.455266, -0.301569, -0.722599, -0.928884, -0.565834, 0.354239, 1.863500, 0.194206, -0.626001, 0.108146, -0.183907, -1.208546, 0.425658, -0.237187, 0.223028, 1.489504, 0.011653, 0.128550, -0.988395, -3.144665, 0.304450, -0.833752, -0.414852, 0.331433, 0.519535, -0.423061, -2.283350, -0.194664, 0.530827, 0.995349, 0.740034, -0.424981, -0.062494, 0.623986, -2.199912, 0.477567, 0.090832, -0.058796, -2.214593, -0.103925, -0.642611, -0.567072, -2.074737, 0.166583, 0.977425, 1.216104, -0.340520, -0.309287, -0.119129, -1.270854, 0.521910, -0.453469, 0.343665, 2.659389, -0.675041, 1.098605, -0.327029, 1.148319, -1.096467, -1.500800, -0.510577, 0.002896, 0.772490, 0.343863, 0.548228, 1.411542, -0.548003, 0.720387, 0.311559, 0.618695, -0.365211, -0.854787, -0.543796, 1.076430, 1.248507, 1.247313, -1.063489, 0.000537, 1.423668, 0.282096, 0.673822, -0.346888, -1.641023, 0.947132, 0.946999, -0.187692, 0.207640, -0.717608, -0.640428, 1.649142, 3.159801, 0.285131, -1.311685, 0.119217, 1.482214, 1.330941, -0.911981, -1.974984, 0.509698, -1.960800, -0.530067, -0.222100, -0.738781, 0.520870, 1.291059, -0.700075, -1.014312, 0.904651, 0.655815, -0.255718, 0.568737, 0.304345, 0.236863, -1.219295, -1.867410, -0.947376, -0.681295, -0.462702, 0.186486, 0.026183, -0.390831, 1.819933, 1.258341, -0.591996, 0.526669, -0.531385, -0.642068, 0.761622, 0.620042, 0.511969, -1.287185, -0.114275, 2.074829, -1.011105, 0.596614, -0.192250, 0.749897, -1.029901, -1.697172, 1.666424, 1.808855, 0.248349, -0.317729, 0.797614, -0.210340, -0.341758, -0.155299, 0.463231, -0.337337, 0.257532, -0.068504, 0.072096, -0.418420, 0.922894, 0.006238, 0.781892, 0.819916, -1.920365, -1.912882, 1.231657, -1.238131, -0.290771, 2.131539, 1.092803, -0.132217, -1.923079, 1.299205, 0.141758, 0.476004, -0.765585, 0.792254, -0.815881, 1.038379, -0.167990, -0.248769, -0.207054, 0.164219, 0.953176, 1.602046, 0.609283, -1.216488, -0.922205, -0.878825, -0.351528, 0.261810, 0.729205, -1.651948, -0.227139, 1.172439, 0.423959, -1.807261, 1.721888, 0.396506, -0.909818, 0.656211, -1.566248, -0.028559, -1.745553, -0.772742, -0.039189, 0.483067, -0.038710, -0.015212, -0.710726, 0.828592, 0.817550, 1.558603, 0.527466, 0.604988, 0.366180, 0.756422, 0.626611, 2.025416, 0.586196, -0.472802, -0.368451, 0.879758, -0.238057, 0.602645, 0.425327, 0.931699, -0.260955, -1.290241, -1.608891, -0.632699, -0.044485, 0.413085, 1.772271, -0.669894, -0.270458, -1.251951, -1.431843, 0.857855, -1.269060, 1.176613, 0.728619, 0.409170, -1.354803, 0.582349, -0.446751, 2.366971, -0.803819, 0.195972, 0.961223, 2.374263, -2.270042, 0.048770, -0.095595, -0.958647, -1.572495, 0.937178, -0.197178, 0.159942, -1.632320, 0.416667, -0.470423, -1.287511, -0.860495, -0.025828, -0.521682, 0.148001, -2.016367, -1.125534, -0.319210, -0.285365, 0.469781, 0.213533, 0.520304, -1.046704, -0.255014, 0.161978, -0.657301, 0.380386, 1.000481, -0.102816, -0.153629, -0.856587, -0.839705, 1.076588, 0.734051, 0.344115, -0.870206, -1.109691, 0.479125, -0.971326, -0.058429, 0.789344, -0.832048, -0.429643, -0.329592, -0.909379, 0.039007, -0.660611, 1.404685, -1.627092, -0.461628, -1.757714, -0.382550, -1.125911, -1.319679, 2.377537, 1.954415, -0.797256, 0.310238, 1.390780, 2.174498, 0.954718, -0.202962, -1.009577, -0.049587, 0.950558, 1.350130, 0.704795, -1.084015, -1.276809, -0.532805, -0.035503, 0.712197, 0.932244, 0.697259, 0.168265, 0.968257, 1.087720, 0.988724, 1.226741, 1.133746, -0.437888, -0.340066, -1.382146, -0.365589, -2.092942, 0.515507, 1.045868, 0.622470, -0.053105, -1.261211, -0.451578, 0.473949, 0.265230, 0.441864, 1.005170, -0.655958, -0.607974, -0.298242, 0.129913, -0.012558, -0.632721, -0.059729, -2.696762, 0.528190, -1.169908, 0.325504, -0.513270, 0.893848, -0.067951, 0.589883, 1.199512, 0.965997, -0.987544, 0.293924, -0.654640, 0.627130, -2.008244, 0.309519, 0.437324, -0.718098, -0.852222, 2.095732, -1.263327, -0.417234, 1.220132, -0.046950, 0.590005, 0.016060, 0.395953, 0.533061, 0.458756, -1.562384, 1.702298, -0.046271, 1.093901, 1.135716, 1.269514, 0.558460, -1.702426, 0.218106, -1.133291, -1.192282, -0.357392, -0.869045, -0.100981, 2.829987, -0.280654, -0.711372, -0.586914, -1.006115, -0.826143, -1.003669, -0.584428, 0.938065, -0.759953, 0.236500, 1.679802, -0.867175, 2.012593, -0.722134, -0.499972, 0.666206, 0.512912, 0.627820, 0.352293, -0.159099, 0.975979, 0.125898, 1.000830, 1.527902, 0.108561, -0.899555, -0.859858, -0.056013, 0.440500, 0.097085, 1.016263, -0.986517, -0.567086, 1.366657, -0.064835, -0.069338, 0.220429, 1.188672, -0.592164, -1.580132, -1.040111, 0.994207, 1.529301, 0.965583, 0.614241, -0.399527, -1.605185, -0.505716, 1.130069, -0.864777, 0.377398, -0.339196, -0.080936, -1.119905, -1.634312, 0.090257, -0.222013, 0.231535, 0.284000, -1.734604, 0.532429, 1.045926, -2.357142, 0.301438, -0.825032, 0.998986, 0.273277, 0.418926, 1.032511, -0.139835, 0.641192, -0.471333, 0.438997, 0.540514, 0.393357, 0.927158, -0.799381, -1.044712, 0.198402, 1.062615, 0.646373, -0.699645, 1.147951, -0.666869, -0.192050, -0.534210, 1.395654, 0.774890, 1.235580, -0.471644, -0.279599, 0.712804, -1.111780, -0.819664, -2.560734, -0.517164, -0.556769, -1.290907, 0.068988, -1.069552, -0.495076, -0.389549, 0.431265, -0.042560, 0.167036, 0.106089, -1.094591, 0.260762, 0.822045, 0.515592, -0.450003, -1.045584, 0.884711, -0.501255, 1.925481, -0.235619, -0.259887, 0.365682, 0.196290, 2.061564, -2.213679, -1.301811, 0.706507, 1.741559, -0.168855, 1.101588, 0.820364, -0.400482, 0.335451, 1.928191, 0.505874, 0.269808, -0.961020, -1.788782, -1.860919, 0.250914, 0.898241, 0.274327, -1.045911, 1.274394, -1.807915, -0.061733, -0.482906, 1.091731, 0.399684, -0.309442, 0.326899, -1.238159, -1.200043, -1.057403, 0.167390, 0.255546, -0.527346, 0.233485, -0.242632, 0.621511, -0.616150, -0.087503, 2.285100, 0.490702, -0.944267, 1.779703, -0.236308, 0.633502, -1.437012, -0.817187, 1.681853, 0.525203, -1.434373, 1.777332, -0.163298, 2.196878, 1.181907, 0.019409, 1.894870, -0.518821, 0.609485, 0.023724, -2.062161, 0.491855, -0.167027, -0.600150, 1.547984, -1.543012, 0.858477, -1.549856, -0.005683, 1.892737, -1.062547, 0.992437, -1.710650, 2.435537, -1.136351, 0.074013, 0.097661, 0.947000, -0.311775, 1.259216, -0.964017, 0.293518, 0.248293, 0.578923, 1.331232, -0.459472, -0.993607, -0.793864, 0.251094, 0.224123, 0.525135, -0.362432, 0.203711, -0.500895, 0.722426, -1.332972, 0.787980, 0.071593, -1.053839, -2.256763, -1.512497, -0.645520, 0.181726, 0.897512, -1.224698, -0.788861, 0.754809, -0.332596, -2.458709, 0.067840, -0.508277, 1.499413, -0.242588, -1.677294, 0.140744, -0.942304, 0.887287, -1.163477, 0.379646, -0.479302, -1.977065, 0.862756, -0.052980, 0.785963, -0.827198, 0.992470, 0.472990, 0.956368, 0.489755, -1.580649, 0.205854, 0.474053, 0.714326, 0.617675, -1.763684, -0.988593, 0.218481, -0.612592, 0.078888, -1.140073, 0.385045, 0.234892, 0.100009, 1.174751, 0.728539, -0.138349, 0.871923, -0.131383, -0.811907, 1.869395, 0.922524, -1.883221, -1.027480, -0.785759, 0.035490, -0.942084, 0.858385, -1.981633, 1.717108, 0.968860, -0.022463, -0.015047, 0.304365, -1.171236, -0.164107, -1.098171, 1.562056, -0.561641, 0.322561}, - { 1.633750, -0.208713, 0.399191, 1.253653, 0.522533, -0.039824, -0.062544, -1.552716, 0.423759, -0.464100, -0.214870, -0.644192, -1.337064, 0.208001, 1.737733, 0.373052, -0.871952, 0.252082, -0.477625, -1.117553, -1.525211, -0.489079, 0.502528, 0.252908, 1.009426, 0.284869, -1.344518, -0.339331, 2.074620, -0.238306, -1.003521, 1.910421, -0.086106, 0.175206, -0.996218, 0.408523, -0.129474, -0.119925, 0.030628, -0.633376, 0.031295, 0.933010, 1.026730, -0.032987, 0.330262, 1.420750, -0.453519, 1.017246, -1.605942, 1.047615, 0.284744, -0.917644, 0.064100, 2.207553, 0.486901, 1.234834, -0.427063, -0.342868, 0.260631, 0.636631, 1.148085, 0.837837, -0.013621, -0.856720, -0.209332, 0.695650, -0.695866, -0.365854, -1.413842, -0.064040, 0.679539, -1.365736, 0.287881, 1.291652, -1.551638, 1.049225, -0.867760, -1.073091, -0.637155, -0.300112, -0.735298, 0.313950, -0.509098, -1.229489, -2.117709, -0.259286, -0.775823, 0.130260, 0.530175, -1.051084, 0.309872, -0.354903, -0.618703, -1.420003, 1.326202, 0.804056, 0.752575, -0.092148, 0.538921, -0.943075, -0.577259, -0.141735, -0.006229, 0.529762, 1.183064, 0.285579, -0.023202, 0.743896, -0.201692, 0.261179, 0.569031, 0.637282, 0.676452, -0.671401, -2.405885, 0.730172, 1.121383, -3.309620, 0.853111, -1.601336, 0.710432, 1.408769, -0.562655, -1.325458, -1.266071, -1.821650, -0.924012, -0.711459, -0.314324, -1.237956, 1.337198, 0.451297, -1.264170, 0.907615, -0.677598, -0.650538, 0.941084, 0.862619, 2.330709, -0.097281, -0.186912, -0.457176, -0.833505, -0.281472, -1.080566, 0.298360, -0.294453, -0.340458, -1.778879, 0.020224, -0.309792, 0.209083, 1.183815, 0.693163, -0.236959, 0.778133, 0.930881, 0.734484, 0.239085, 0.387471, -0.342709, 0.366404, -0.557924, 1.274958, -0.068736, 1.677438, -0.220889, 0.122682, -0.020607, 0.409848, 0.195760, -0.937147, -0.596844, -1.313521, 0.612754, 0.529698, -1.054632, 0.724131, 0.460957, -0.754743, -0.861633, -0.560756, -0.154731, -0.673748, 0.296609, 1.959714, 0.342447, -1.064095, -1.457826, -0.334593, 0.045409, 0.075224, -0.906822, 0.988956, 1.553525, 1.230527, 1.918521, 0.623294, -0.729148, 1.030785, 1.039954, 1.876015, 1.092184, -0.834752, -0.480642, -1.629364, -1.310089, 0.680235, 0.178461, 0.401326, -0.672326, -0.889948, -3.649967, 0.162014, -0.267152, 1.590234, 0.559631, -0.266849, 0.561170, -0.113994, -0.731860, 0.020557, -1.703906, 0.014522, 0.962914, 0.530414, -0.036976, 0.754626, 0.423748, 0.255248, -0.545737, 0.984911, 0.979411, -1.627167, -0.438461, -0.351980, -0.420869, 0.968233, 0.654434, -0.110182, 0.292363, 1.535228, 0.247893, -0.216707, 0.223417, -0.580980, 1.680820, -1.473914, -1.728161, -2.846628, 1.703498, 0.905023, -0.055205, 0.644903, 0.059472, -0.021520, 1.307315, 0.129105, 0.829307, 0.241402, 0.640167, -0.287598, 0.661523, 0.297522, 0.175122, -2.226186, 1.053222, -0.750790, 0.846055, 0.162030, -0.785390, -0.135707, 0.825747, 0.613240, -1.153278, -0.036000, 0.542754, -1.363815, -0.238604, -1.203685, -0.274608, -0.516469, 0.478228, -0.457582, -1.391683, -0.574425, -1.163558, -0.674418, -0.896201, 0.025810, -0.790252, 0.112435, 1.379806, -0.497981, -0.897507, 0.337331, -0.295900, 1.115004, -1.050576, 0.605156, -0.243328, -0.602567, 1.386620, 0.901985, 1.837772, -1.421034, 0.442711, 0.102661, 0.401064, -0.200605, -0.627958, -0.354933, -0.383843, -2.264190, 0.242871, 1.472131, 0.141329, -0.527888, -0.777231, -0.164998, -0.452741, -0.693049, 0.711089, 2.490709, -0.788117, -0.524690, -1.019957, 0.717529, 0.896247, 0.437873, 0.283121, -0.783064, 1.531208, 0.418761, -2.144156, -0.898897, -0.497084, 0.509069, 1.053628, -0.508083, -0.873839, 1.432240, -0.165618, 0.427544, -0.950999, 0.662171, -1.261790, 1.978793, 0.773338, -1.150344, -0.027884, 0.301079, 1.149162, 0.588662, 0.266859, -0.782330, -1.660377, 2.431033, 1.045701, -0.308218, -0.058655, 1.089296, -1.893408, 0.373400, 0.243236, -1.034705, -1.024672, 0.709247, 0.697017, 1.619847, 1.637518, -1.299040, 0.022054, -1.491282, -0.081951, -0.874380, 0.983287, 0.746610, -0.191663, -0.708996, -1.430509, 1.764003, 0.078192, -1.029045, 0.846876, 1.875717, 1.613536, 0.320372, -1.045241, -0.408077, 0.204712, 0.325098, 0.355421, 0.418502, 0.191755, -2.691741, 0.369223, 1.289988, -0.741753, -2.137399, 2.270844, 0.510796, -0.357066, 0.707755, -0.545343, -0.007768, -0.429650, 0.061762, 0.132509, 0.141634, 0.748732, -0.464731, -0.885414, -1.705251, -0.584072, -0.886061, -0.470548, -0.736594, -0.853768, 0.456509, -0.116781, 0.486840, -1.116497, -0.987260, 0.033038, -0.985664, -0.715243, 0.725018, 0.379021, 0.128903, -0.001089, -0.779351, 0.901212, -1.055266, 2.453246, -0.130311, 1.584739, 0.339338, -0.550722, -0.060897, 1.743678, 0.325652, -0.364703, 1.152421, -0.080858, 0.736350, -0.898815, -0.372582, 1.388357, -0.721409, 0.432581, 0.565466, 0.417503, 0.693891, 1.103736, -0.582973, 1.303014, 0.094902, 0.368089, -1.440522, -3.318128, -3.033506, 1.248998, -0.578987, -0.194126, -0.293621, 0.026287, 1.420831, 0.563118, -1.286652, 1.217494, -1.137671, 0.007186, 0.678262, 1.535446, 0.641297, 0.088899, 0.014675, -1.594144, -1.793008, 1.365244, -0.264220, 0.619684, 1.233654, 1.174579, 1.205239, 0.819907, -0.324365, 0.868136, -1.124120, -0.476948, -0.603176, 0.882191, -0.648951, -1.239904, 1.115651, 0.937624, -0.401641, -0.707858, 0.744260, 0.357113, 0.447538, 1.580977, 1.226947, -0.996384, -1.117138, -0.762098, -1.227928, -0.485494, 0.894387, 0.548534, 0.618259, -0.177832, 1.057126, 0.592931, -0.390809, 2.060658, 0.746119, 0.641473, 0.731166, 1.399154, -0.409176, 0.493299, 0.038713, -0.588700, 0.254130, -0.462193, 1.710925, 0.180509, -0.875857, 0.343971, 1.428961, 1.085704, -0.746196, -1.085817, -0.138197, -1.737607, -1.864121, 1.638507, 0.496783, -1.379151, -2.465451, -2.010220, -0.590529, 1.340768, 1.266440, 0.487798, -1.146695, 1.090023, -1.051142, 1.055251, 0.428708, -0.282754, -1.932825, 0.367059, 0.646246, -0.729363, -0.010475, 0.098721, -0.803355, -1.877876, -0.037373, 1.420762, 0.985746, -1.145910, -0.998906, -2.332280, 0.718753, -1.990264, 0.386594, -0.068702, 0.301434, 0.208538, 0.541167, -0.402673, -2.372978, 0.668457, -0.305221, 0.022876, -0.047997, 0.228780, 1.448882, 0.613885, 2.316437, 0.557050, -0.120061, -0.711957, 0.948075, 0.578252, 0.394816, -0.573451, -1.331556, -1.650743, -0.387161, -0.352094, -2.620109, -1.839176, -1.398458, 0.530359, -0.228919, -0.709150, -1.321736, -1.554870, -1.154367, 0.777909, -0.338027, -1.703837, -0.169670, 1.187202, -0.797484, -0.487479, -0.620582, -0.317494, -2.403142, 1.641730, 0.830646, 0.028302, -0.306692, -0.841741, 0.794381, -0.208205, 1.242679, -0.775001, 0.488870, 0.107544, 0.471582, -0.459891, 0.426136, 1.593878, 0.328127, 1.104565, -0.359778, -0.577892, 0.058231, -0.623665, -0.161381, -1.005802, -1.618271, 1.022667, -0.755539, -0.832205, 0.323845, 0.398462, -0.090320, -0.688794, -1.712452, 2.079621, 1.494959, -0.510339, -0.526962, -0.501123, -0.354679, -1.610059, -1.378104, 0.962394, -1.212246, 0.221910, 1.543822, 0.805893, -0.012619, -0.934039, -0.153445, -0.218897, -1.094587, -0.092891, 1.151209, -0.916165, 0.611519, 0.234915, -1.399976, -0.121571, -1.400179, -0.318803, -0.796265, 1.210998, -1.284524, 1.836117, 1.221768, -0.895479, 0.357193, -0.094953, 0.071924, -0.553556, -1.427475, -0.918901, -1.290555, 0.593505, -0.100715, -0.354592, -2.417863, 1.183628, 0.011129, 0.582654, 0.868006, -0.149553, -0.144259, 1.195877, 0.531090, -0.713784, -0.416895, -0.836029, -0.595415, 1.035148, 1.277334, 1.991471, -1.390341, 1.206723, -1.761687, 0.991444, -0.236374, -0.039019, 0.214836, -0.076213, -1.160952, 0.319922, -0.595001, -0.393744, 1.070738, 0.894406, 0.056887, 0.187049, -0.698885, 2.283896, -0.568464, 0.772052, -0.014354, 0.756618, -0.221157, 2.514338, 1.008293, 0.241202, -0.643674, -0.891454, -2.483161, 1.175247, -0.041734, 0.514728, 1.947805, -0.440595, -1.519470, 0.765724, 2.941120, -0.590583, 0.089716, 1.528522, -0.555414, 1.928398, -0.322762, 1.302254, -0.184784, -1.475408, -1.226543, -0.453656, -1.421057, -1.786358, 0.016994, 0.875315, 0.054692, -0.383463, -1.505522, 0.284490, 0.286418, 0.426409, -0.147629, -1.785765, 0.242645, 0.887664, -0.443890, 1.294186, -1.116554, 0.588321, -1.547927, -0.417077, -0.877472, -1.835423, 0.579669, -0.047314, 1.834026, 0.258689, -0.826290, 0.896961, -0.520304, -0.392979, 0.680968, 0.716352, 0.759695, 0.806670, -1.709324, 0.986569, -0.150820, 2.394736, -0.526361, 1.147990, -0.377885, -0.995814, -0.454191, 1.149842, -1.597380, -1.253091, -0.823041, -0.149331, 1.745578, -1.148569, 0.571836, 0.817219, -0.758259, -0.853601, 0.387564, 1.538011, -0.264415, -0.505284, -0.624930, 0.951168, 0.170791, 0.557038, 1.272419, 0.544148, 1.045817, 0.400600, -0.654041, 0.697929, -1.196383, -1.535388, 1.060852, 1.066159, 0.287956, 0.334259, -1.680188, 1.567870, 0.439922, 1.822707, 0.419450, -0.407702, 0.961808, -0.811965, 0.307355, -0.724728, -0.319510, 0.224332, 0.459586, -1.558644, 0.163701, -0.781339, 0.576898, 1.949665, -0.359467, 0.391569, -0.757351, -0.056237, -0.912369, -0.636153, 2.697446, 0.129310, -0.321593, -0.503454, 0.328496, -0.600949, 0.697004, 0.079186, -1.347811, -0.008307, 0.672211, 0.004851, -0.737647, -0.956546, -0.855895, -0.829822, 0.342103, 1.323590, 0.776070, -1.450975, 1.112189, -0.975869, 0.723694, -0.264351, -1.131781, -1.039118, 1.144766, 1.590171, -1.645773, 0.605682, 2.081909, 1.327569, 1.860834, -1.096128, -0.861132, 0.469649, 1.001297, -0.897849, 0.180405, 0.078134, 0.133203, -0.639073, -0.880966, -1.747314, -0.483171, -2.581299, 0.899836, 1.158479, -0.191164, -0.627105, -0.292247, 0.463476, -0.955252, -1.985927, -0.604326, -0.375043, -1.538616, -0.890549, -0.047283, 0.321275, 0.715675, -0.244068, 0.568941, -0.316806, 0.611571, -0.016223, 1.197703, -1.735856, -0.092698, -0.388257, -1.387805, -0.980568, 0.353355, 0.487100, 1.738975, -1.383981, 0.568930, 0.294583, -0.234555, -1.582574, 0.060271, -0.515729, -0.510794, -0.595208, 0.450997, -0.793106, -0.567710, 0.161472, -0.343068, 0.202998, 0.456116, 1.897815, -0.586535, 0.656231, -1.950023, -0.174002, 1.905020, -1.341272, -0.121645, -0.042592, -1.626775, 0.929624, 1.238821, -1.382462, 0.577146, -1.141178, 1.300768, 0.957444, -0.416143, -0.815185, -0.245639, 1.066428, 0.301353, -1.834014, 0.508083, -0.218429, 1.410184, -0.928468, 0.682718, 0.676148, -1.543971, -0.060714, -0.339981, 0.815538, -0.946027, 0.324797, -1.167691, -1.472364, 0.265806, 0.103860, -0.370767, 2.346980, -2.107459, 1.333538, 1.068658, -0.334790, -0.666444, -0.841996, -0.009787, -0.986844, -0.273349, -0.550526, -2.235348, 1.556056, -0.870163, -0.480603, -0.950090, -0.409188, -0.219105, 0.605144, -0.438438, -1.428007, 1.002174, -0.481445, -0.773959, 1.265860, 0.079983, 0.512249, 0.002601, 0.532775, -0.036385, -0.940858, 0.087740, -0.861109, -1.306606, -0.495964, -0.930104, 0.810205, 2.009219, -1.156137, -1.117500, 0.824882, -0.075308, 0.003569, 1.478544, -0.171117, 0.263368, 1.077015, -0.818754, 0.789243, -1.324375, -1.042110, -0.111810, 0.855312, 0.710417, 0.207374, 0.051069, -1.859863, 0.471250, 0.343095, -0.329158, 0.658307, 0.881425, 1.025847, 0.695186, -1.106904, -0.674593, -0.643316, -1.266535, 0.880324, -0.472249, -0.166647, -1.374939, 0.571644, -0.151005, 1.443033, 0.141320, -0.799235, -0.457068, 0.406124, -0.599292, 2.921068, -1.439711, -0.754839, -0.124090, 0.526196, -0.278004, -1.129980, -1.537265, -0.964287, -0.983896, -0.287749, -0.024299, 1.370456, 1.060111, -0.027980, 0.260603, -0.689702, 1.881503, 0.291090, -0.503172, 0.667621, -0.945277, 0.446048, 0.047110, -1.175890, -0.144072, -1.009388, 0.656667, 0.771593, 1.179139, -1.774420, 0.231202, -0.186975, -1.053716, 0.446150, -0.920796, 0.354669, 0.182790, -0.694951, 0.950916, 0.556538, -0.962969, -0.120720, -0.268164, -0.415330, -0.093160, -0.765481, 0.277226, -0.116567, -0.462237, 0.141419, 0.158317, 0.702666, 0.928361, -1.534021, -0.270447, -0.710651, 1.374264, 0.689749, 3.566372, -0.124516, -0.850984, 0.504751, -0.657685, 0.377078, -1.228175, -0.571974, -0.332468, 0.979415, 1.531067, -1.018866, 0.067803, 0.844257, 0.206362, -0.245772, -0.718637, 1.024969, 0.090588, -0.134815, 1.020640, 1.244755, 0.635519, -0.734049, 0.698059, 0.668903, 0.483132, -1.921140, 0.299685, -0.930194, -0.419870, 0.388393, -0.270623, -1.357992, -0.782030, 0.463358, 0.421239, 0.721031, 0.427722, -0.209575, -2.337184, 1.262822, -0.198376, 0.231690, -1.413114, -0.325461, 0.192994, -2.332793, -0.293004, 1.399074, -0.192769, -1.724912, 0.584437, 0.353184, 1.887444, -1.272124, 0.641172, -1.375394, -0.163449, 2.821177, -2.477411, 1.326315, 0.061564, 2.301966, -0.810142, -0.402372, 0.540343, 1.249783, 0.591069, -0.138611, 0.594662, -0.592522, -1.065648, -1.288335, 0.447361, 0.391887, -1.329378, -0.704860, 0.742442, 0.216348, -1.553384, 0.375023, -1.646798, -0.684800, -0.435528, 0.810629, 0.130634, 1.907418, -1.790417, 2.624369, -1.096402, 0.250215, -0.484635, 1.218256, -0.669078, -0.250831, 0.403899, 0.242680, -0.857059, 0.169672, -0.220225, 0.067639, -1.853691, -0.268161, 0.324559, 0.593420, -1.279758, 1.402079, -1.714236, -0.992492, 1.534076, 0.767370, -1.977483, 0.836829, -0.619616, -0.292617, -1.310797, -0.055676, -0.050530, 0.610245, 0.052250, -0.318296, 0.537661, 0.100220, -0.263842, 1.251635, 1.863941, 0.269421, 0.496513, 0.399314, 1.240574, -0.772145, 0.239661, -0.183467, 0.451664, -0.587029, 1.506752, 0.015199, 0.542490, 0.548581, 0.595628, -0.318247, -0.850087, -0.950729, 0.465935, 0.193024, 0.020382, -0.311754, -0.787446, -0.784583, -0.332131, 0.336644, 0.022421, -1.215302, 0.562622, 0.297452, 0.479337, -0.858014, -0.211506, 0.877656, 0.407259, -0.919139, -1.412689, -0.461445, -1.443547, -0.636703, -1.569800, 0.909720, 1.430994, 0.190290, -1.104897, -0.288245, 0.876744, 0.750762, -0.996442, 0.353068, -1.722070, -0.559863, -1.196862, 1.471921, 1.386451, 0.833152, 1.451712, 0.058966, 0.163522, -0.341077, 0.014160, -0.634544, -0.258101, 0.300472, -0.630895, -1.034697, -1.514110, -0.660259, -0.053732, -0.734900, 1.353045, 1.282121, 1.382260, 0.386143, 0.956780, 1.204682, 1.846641, -1.206605, -0.909605, -0.003157, -0.000223, 0.521086, 0.567327, -1.285228, -0.211982, -0.268097, -0.114335, 0.690258, -1.906635, 0.604761, -0.114527, -1.106542, 1.201965, -0.968681, -2.255752, -0.227271, -0.110396, 1.132923, 0.916561, -0.901203, -1.879336, -0.339645, -0.248529, -2.381851, -0.160403, -2.859949, -0.029038, 0.212314, -0.102780, -0.107117, -0.477585, -0.416467, 0.342099, 0.315275, 2.240185, 0.530741, 0.426599, 1.232352, -1.765914, 0.444683, 0.840785, 0.899599, 0.625559, 1.742596, -0.578144, 0.767301, -0.689044, -1.033367, 0.492182, 1.343905, -1.166665, 1.475574, 1.324724, 0.097573, -0.349052, -0.632507, -0.557486, -0.121150, -0.772417, 0.255336, 0.246395, -0.222814, 0.304945, -0.572913, -0.774187, -0.713108, 0.873850, -0.909453, 0.217430, -0.579697, -0.908699, 1.522127, -1.209194, -0.151111, 0.484549, 0.275886, -3.351374, 0.563630, 1.261956, 1.188991, 1.812187, -1.076403, -0.445590, -0.243309, 0.833002, -1.602767, 0.017407, 1.006989, -1.309355, -0.140950, -0.447749, -0.391930, 1.213382, -0.466735, -1.027094, 0.175498, 0.224055, 0.171565, -0.551237, -0.696875, -1.375890, 0.008595, 0.124405, -0.405735, -0.654242, 0.609839, -0.482171, -0.721600, -1.076034, 0.949154, -0.274354, -0.605726, 0.529019, 0.409802, -0.370848, -0.323477, -2.013690, -1.914146, -0.553442, 0.489118, -0.166612, -0.904206, 0.365733, 0.284435, 0.581881, 0.293662, 1.940614, -0.053730, -0.562597, 0.166204, -0.034657, 0.232666, 0.567458, -0.274676, -0.673414, 0.583490, 0.019225, -1.019031, -0.192786, 0.041915, 0.819685, -1.655979, -0.923991, -0.536494, 1.023249, 0.875873, -0.349267, 1.154426, 0.675045, -0.271128, 0.919425, 1.606050, -0.383332, -1.730164, 2.083037, 0.682875, 0.642460, 1.246917, 0.796925, 0.587290, -0.067455, -0.049825, -0.660855, 1.221030, 0.599741, 0.155987, 0.236603, 1.643773, -1.434235, -1.240380, -2.358667, 0.421722, 0.571980, 1.592563, 0.689440, 1.346162, -1.235697, -2.307466, 0.249661, 0.795872, -0.199412, 0.067574, 0.050926, -1.338267, -0.062789, -1.517283, 0.171240, 0.943095, -1.129775, 1.128675, 1.021400, 0.865726, 0.019756, 0.358419, -1.601556, 0.175556, -0.186374, -0.603905, -0.221676, 0.399662, 0.770635, 0.650266, -0.191853, -0.705799, 1.303510, -0.790246, -0.355699, 1.120368, -0.966970, -0.346966, 0.807937, 0.182099, -0.643863, -1.339869, -0.517419, 1.090229, 0.113312, -1.191045, 0.570374, -0.282560, 1.767856, 1.239000, 0.495570, 1.067907, -0.522559, 1.208784, 1.908317, -0.459265, -0.355194, -0.326420, 0.192193, 0.016200, 0.247967, -1.445105, -0.531461, 0.233343, -0.603176, -0.101607, 0.492800, -0.956807, -0.197843, 0.712930, 0.415724, -0.777211, 1.608439, 0.248479, 1.764533, 0.946165, -1.287674, -0.706395, -0.538102, -0.280893, 0.864306, -0.004605, -2.642781, 1.515160, -1.041577, -0.219260, 0.652457, 1.184279, 0.908110, -0.430675, -0.421237, 1.249938, -0.628080, -1.319272, 2.587377, 0.349025, 0.559089, -0.510717, 0.282395, -1.050557, -0.996782, 0.535615, 1.979846, -0.742469, -0.766504, 0.600828, 0.078082, 0.808693, 0.085032, 1.220272, -1.229239, 0.799452, 1.259958, 0.100966, -2.091216, 1.605515, 0.861368, -0.004704, -0.356753, 0.544389, 1.018540, -0.611060, -0.045048, 0.746918, -1.125080, -1.736697, 0.361980, 0.687073, 1.113403, -0.778031, -0.674569, 0.138886, 0.949562, -0.096342, 2.890121, -0.167693, 1.243153, -0.594972, -0.464512, -0.599216, 0.816519, 1.626926, -0.568935, -2.240093, -1.415238, 1.143895, 2.219984, -0.704653, -0.923683, 0.311847, 1.878664, 0.977680, -1.299896, -0.071292, -0.407952, 0.133068, -1.083324, 0.048283, 0.402467, 1.755934, -0.511331, 1.667513, -0.953648, -0.389607, -0.677363, 1.283248, 0.167665, -0.373921, -0.108647, 0.902080, -0.591049, -0.402724, -0.618408, -0.325697, 2.157628, 1.176920, -1.025583, 0.528410, 1.918578, 1.149557, -0.493612, 0.006497, 0.626100, -0.103714, 1.320319, 0.734537, -0.820399, -0.484145, -0.262889, -2.122679, 2.250782, -1.246572, 0.537250, -2.221998, -0.162213, 1.259681, 0.814287, 0.184985, -0.962400, -1.034561, -0.518209, 1.485556, 0.157694, -0.016542, 1.446635, -0.792916, -1.111207, 0.357275, 1.993596, -0.091866, 1.784798, -1.218022, -0.774211, -0.565065, 0.751498, -1.198581, -2.168022, -0.556857, -2.152738, 1.769687, 1.226500, -0.979712, -0.133655, -0.604645, -1.233752, -2.574555, 1.010375, -0.527131, 0.526848, 0.792683, -1.827865, -0.286715, -0.173819, 1.723965, 0.069501, -0.017190, 0.180904, 1.723890, -0.158595, 1.716092, -0.816275, -0.431658, -1.126670, 0.082952, -0.253298, -0.396215, 0.817629, 0.924884, 0.882107, -0.598875, 0.340469, -0.651711, 1.465118, -0.193488, 0.231429, 1.478785, -0.550179, 0.058062, -1.127797, -0.472308, 0.293994, -0.765727, -0.084414, 1.488963, -0.717431, 0.559346, -1.172878, 1.077000, 0.992306, -0.354559, 1.657768, 0.917916, 0.130025, -0.824396, -0.339309, 0.443658, 0.241693, 0.150563, 0.579415, 0.734368, 2.067839, 0.024940, 0.613714, -0.489831, -0.017854, 0.463202, 0.837997, -1.523380, 1.166797, 0.705606, -1.274280, -0.608049, -0.093057, 1.247089, 0.548793, -1.499837, -0.419736, 0.642094, -0.222377, -1.006101, 0.265313, -0.972350, 0.100818, 0.167672, 0.916850, -0.005351, 0.151749, -1.477119, -1.595987, 0.007490, 0.247580, 0.676573, -1.048314, 0.873673, 0.543851, -1.890718, -1.556902, -0.651022, 2.266067, 1.111217, -1.512944, -1.039097, 0.561027, -2.022777, -2.267170, 0.559551, -0.181163, -0.380800, 2.568506, -0.048274, -1.532602, -0.711214, 0.456754, -0.298552, -0.852297, -0.673568, -0.025357, 1.506788, 0.729719, -0.627132, 0.704863, -0.771358, -0.234923, 0.512881, 0.098700, 1.558895, 0.626332, -2.404042, -1.593118, -0.910586, -0.073949, 1.369000, 0.777692, 0.618456, 1.555888, 1.080292, -1.575631, -0.177454, -0.056923, -0.111512, 2.395575, 0.822964, 0.508957, 1.777427, -0.617741, 1.529521, -0.342464, 0.931729, 1.419697, -1.781377, 0.633057, -0.644221, 1.926503, 0.085201, 0.120767, 0.280810, -0.435773, 0.623020, -1.141157, -0.742953, 1.233315, -0.863444, -0.078697, 0.942146, 0.470585, -0.530560, 0.064825, 0.556514, 0.385438, -0.043630, 0.443434, -0.324671, -0.091268, 0.262365, -0.691050, -1.211713, -0.382227, -0.142457, 0.619695, -0.463709, 0.324579, 0.979687, 1.240082, -0.511788, 1.195837, -1.035440, -0.279212, 0.101900, -0.598191, -1.541087, 0.580573, 1.591929, 0.057784, 0.869312, 1.930244, -0.880732, -1.985414, -0.506545, 0.782657, -1.185044, -1.264253, -0.595761, -1.051046, -0.484551, 1.632064, 0.313763, 0.621775, -0.143035, -0.888251, -2.920872, -0.155119, -1.318960, -1.583609, -0.510871, 0.531714, -0.469161, 1.473488, 0.490432, -0.975485, 0.960669, 0.174642, -0.097040, -1.036655, -0.079122, -0.740911, 0.062468, -2.204673, 1.467913, 0.477918, 0.116096, -0.942733, -1.106317, 0.072211, -0.547503, 0.904341, -1.249585, -0.860086, 0.669360, 1.599892, -1.603413, -0.014208, -0.049093, 0.330523, -1.828221, 0.016778, -0.011054, 1.537207, 0.029996, -0.083702, -0.295712, -0.195850, -1.196717, -2.485331, 1.934735, -0.848199, -0.046871, 0.696282, -0.669326, 0.542737, 0.172240, 1.392935, 0.294058, 0.681605, 0.547594, -0.046375, -2.416908, 0.480014, -1.272707, 1.061551, 0.118739, -0.383038, 0.283612, -1.184908, 0.794572, -0.573631, -1.189312, -0.696585, 0.240662, -1.318323, 1.536712, 1.805373, -0.789958, -0.616833, 1.583329, 1.025888, 1.315872, 0.290487, -0.310958, 0.598684, -0.497681, -0.730004, 0.281990, -0.920312, 1.393849, -1.354705, -0.545094, -0.301724, 0.889377, -0.250373, 0.726920, -0.027046, 1.059530, -0.777431, 0.373186, 0.815229, 0.131231, 2.739349, 1.512660, -1.553339, -2.415697, 1.217249, -0.894998, 0.090184, -0.136636, -0.906759, -0.281050, 0.568048, 0.065008, 1.863625, -1.438105, 1.686268, 0.011170, -0.015524, 0.223378, -3.682401, 1.938639, -0.579236, 0.218250, 0.100543, -1.178987, -0.812673, -0.420874, 0.188755, -0.096524, 1.276729, -0.726908, -1.244621, -0.481897, 0.068780, 0.079879, 0.884271, 0.943349, -0.882118, -0.662946, -0.829145, 1.138314, 1.519584, 0.182805, 0.176011, -0.926139, 0.149675, 0.430039, -0.136137, -0.461944, -0.990307, 0.680911, -2.666276, -0.251063, 1.714038, 0.000528, -0.164745, -1.389129, 0.239693, -0.505532, -0.685435, -1.139819, -1.226522, -0.778057, 0.418442, 0.243463, 0.186250, 1.187090, -1.001649, 0.203274, -0.734418, 0.060924, 0.265017, -1.721533, 0.053766, 0.964496, -0.114929, -0.492270, -1.406500, -1.670267, 0.962184, -1.978659, 0.919970, -0.209585, 0.783528, -0.253345, 0.360200, -1.625606, 1.290281, 0.252339, -0.377120, 0.638660, 0.257796, 1.001119, -0.862327, 0.713054, 0.799897, -0.818112, 1.384802, 0.485443, -0.316917, 0.582256, -1.315596, -0.805507, 0.522336, 1.604858, -0.067545, -0.053981, -1.074190, 0.844104, -0.774598, 1.165458, -0.887537, 1.515639, 1.234961, -0.064688, -1.747003, -1.064277, -0.822226, 1.288767, -0.231767, -0.666388, 1.833640, -0.600576, 1.066921, 0.404157, -0.278544, 0.385754, 1.607612, 0.437911, -0.874871, -0.627339, -1.109766, -0.280439, 0.119296, -0.007002, -0.984769, 1.026550, -1.459203, -0.326416, 0.416399, 1.703338, -1.007679, 0.848175, 0.455717, -1.595431, -0.442700, 0.353559, 0.507432, 0.149295, 0.348113, 0.406490, -0.269495, -0.246989, -1.733033, 2.018522, -0.161838, 1.063041, 0.309429, -0.528215, -0.017913, 0.420652, 0.202227, 0.124760, 1.433776, 0.623397, 1.201888, 0.067524, -0.569915, -0.359513, 0.674693, -1.025972, -0.695277, 1.009998, 0.539813, -1.531212, 0.427138, -1.141468, 0.929636, -1.833895, -0.324264, -1.029380, 0.199336, -1.374692, -0.178120, -1.524448, 0.376529, -0.973059, 1.014021, -1.021638, 0.735416, -0.982157, -0.257728, -1.088956, -0.398297, 0.245894, -1.068539, -1.335821, 0.590254, -1.841388, 0.853449, -0.166978, 0.521762, -0.934798, -0.606380, 0.108287, 0.165368, 0.164867, -0.188175, 0.234334, -0.024971, 1.002810, -0.513853, 0.251096, 0.811551, -1.033139, -0.337163, 0.074256, 0.812788, -0.308629, 0.727529, 1.678787, -0.490280, 1.158648, 1.257843, -0.475275, 0.933952, -0.429669, 0.614773, 0.791100, -1.352786, -0.655306, -0.243674, 0.251224, -0.159287, 2.073973, -0.737046, -0.359113, -1.931410, 0.166243, 0.369443, 0.878593, -0.058655, 0.829478, 0.019447, 0.601612, -1.290487, -1.890475, -0.047548, 0.259433, -0.866423, 0.150654, 0.186377, 0.259943, 0.089656, 0.266525, 0.144123, 0.370112, 0.515036, -1.878658, -0.388458, 0.631420, 0.204711, -1.355232, -0.485703, 0.543544, -1.383837, -0.360198, 0.315029, -0.606659, -1.953218, 1.733009, 0.360952, -0.190250, 0.774334, -0.647306, -0.455031, -1.432304, -0.785049, -1.362015, -1.510486, 0.496864, 0.874012, 0.601608, -0.099109, 1.185074, 0.351491, 0.893622, -0.924807, 0.293802, -1.333382, 1.777036, 0.894637, -0.671921, -0.109275, 0.969962, 0.818597, 0.237727, 0.068312, -2.738088, 1.122171, 1.638367, 1.128013, -1.855811, -2.681514, -0.578662, 0.709713, 0.915581, -0.072399, -2.672323, -1.280883, 0.122200, 0.330349, 0.426564, 0.314308, -1.287656, -1.414885, -0.217733, -0.148653, 0.001236, 0.323342, 1.336801, -2.493625, 0.386531, 1.045336, 0.849905, 1.016614, 0.498010, 0.686612, -1.627360, -0.185732, -2.644802, 0.494976, 0.478756, -0.659601, 1.127595, 0.755228, -0.411988, -2.002324, -0.077832, -1.910361, -1.358753, -0.526233, 0.378215, -1.813978, -1.056407, -0.337642, -0.111258, 1.157851, -0.702469, 0.556684, 2.329823, -1.590054, 1.224630, -2.586228, 0.480409, -1.451962, 0.066625, 1.402556, 0.126443, -0.264330, 0.397438, -0.641968, -1.748626, -0.839023, -1.681687, 0.063233, -1.585335, -0.327108, -1.748593, -1.245650, -1.254503, 0.559760, 0.499524, 0.151041, 0.108908, 1.155472, -0.306974, 0.000008, 1.204290, 1.042811, -0.484477, 0.161314, -1.195788, -1.522152, -0.912986, 0.245539, 1.147408, 1.046286, 0.650705, -1.207048, 0.520155, 0.077060, -0.821887, -1.277221, -1.277611, 0.505813, 0.262927, -0.798607, -0.192001, -0.531348, 0.189674, -0.746132, -0.238311, -1.049643, 0.341352, -0.016731, 0.153244, -1.274906, 0.655110, 0.304696, -0.990771, 1.243637, 1.536615, -1.496360, 0.555788, 1.364899, 1.324265, -0.841493, -0.020034, 0.020804, 1.078908, -1.607777, 0.521991, 1.540082, 1.771276, -1.506030, 2.391822, -0.063433, -0.642624, 0.648083, 0.479580, 1.275694, -0.486507, 0.295045, 0.195243, -0.273266, -0.521213, 2.167773, -1.726145, 0.327934, 0.340251, -1.401374, 2.124880, -2.736233, -0.055937, -1.314996, -0.073534, -0.242145, 0.704445, -2.086684, -0.377609, 0.474527, -1.075452, 0.901716, 2.481947, 0.613740, -0.385028, 0.279409, -0.434681, 0.389564, -0.226906, -0.254633, -0.344485, 0.875618, -1.305035, -0.067206, 0.115238, -0.602964, -1.365619, -0.793519, -1.421518, -1.686223, 0.868426, -0.075620, 0.187770, 0.500019, -1.183785, -0.554093, 0.410298, 0.248384, -1.209803, 0.347289, -0.607527, -1.879776, 0.499848, 0.394923, -0.791489, 0.057770, 0.483823, 0.725299, 1.610743, 0.350216, -0.625830, 1.807428, -1.300791, -1.182112, 1.775072, -1.057363, -1.054361, 0.223574, -2.268362, 1.235084, 0.157384, -0.244367, 0.269035, -1.493075, -0.551766, -0.987267, 0.705870, -0.660668, -0.267143, 0.079441, -0.297206, 2.527272, 0.450978, 1.075417, 0.258671, -0.882825, -1.065761, -1.019956, 0.348216, 0.918903, -0.037242, 1.573264, -1.824575, 0.885571, -0.350550, 0.267107, -0.558293, 0.622606, 0.654009, 0.311606, -0.417481, 0.233355, 0.898318, -0.280748, 0.042886, 0.553107, -0.035012, 0.604172, -1.676463, 0.464258, 1.345130, -0.914248, 0.771627, 0.599052, 0.369347, 0.039828, 1.913054, 0.115794, -0.333005, 0.388211, 0.034640, -1.454868, 1.417892, -0.408058, -0.023750, -0.809546, 0.049693, 0.025758, -1.060712, -0.847160, 0.181399, 0.007704, 0.600926, -2.199770, 0.525866, 0.066014, 0.957553, 0.171163, -0.760040, -1.057865, -0.830235, 0.620080, -0.258280, 0.966446, 1.570896, -1.349868, -1.051303, -1.137575, 0.902306, 0.663752, 0.193472, 0.469840, -1.394843, 0.315379, -0.249377, -0.945033, -0.214055, 2.474652, 1.151416, -2.415019, 0.024142, 0.567270, 0.420534, 1.194394, 0.980156, -1.477530, -0.959148, -0.101663, 0.244513, 1.371840, -1.405291, -0.598239, -1.557347, 1.974495, -1.046803, 0.283064, -1.296190, -1.329806, 0.195923, -0.784332, -0.736884, 0.093060, -0.628140, 0.215582, -2.574977, -0.692938, -0.075386, 0.722974, -0.265588, 1.315609, 1.842344, -0.796084, 0.245694, -2.208225, -1.989527, -0.030960, -0.295254, 1.439740, 1.293115, 0.891453, 0.609592, 1.063672, 0.580866, 0.720560, 0.453012, 1.712947, -0.438473, -0.762288, -0.978849, -0.836594, -0.331646, 0.546199, -1.508737, -0.021978, 0.021797, 0.426111, -0.372302, -1.452032, 1.611955, -0.321101, -0.343407, 0.664393, -0.843408, 0.392098, -0.725719, 0.619115, -0.297802, -0.557919, 0.474588, -1.003598, 1.858999, -1.768684, -0.982831, 0.732087, -0.877866, 0.659654, 1.088830, -0.254189, -0.448058, -1.310799, 0.389760, -0.568225, 2.433622, 1.120165, 0.354420, 0.292455, 1.762908, 0.483878, -1.029045, -1.078053, 0.864249, -0.157014, 1.081915, 0.883869, 0.027515, 1.206630, 0.278725, 0.855335, 2.081568, -1.820438, -1.305863, 0.787106, -0.903417, -0.619301, 0.272339, -0.033205, -1.561786, 0.285119, 0.033807, -0.534207, -0.933991, 1.073474, -1.256944, 0.656181, 1.290542, 1.487641, -1.361090, 0.284984, 0.974329, 0.044320, 1.489390, 0.239720, -1.137258, 1.024203, -0.119976, -1.039401, -2.044515, 0.986866, 0.162736, 0.625868, 0.567982, 0.289892, 0.138536, 0.904712, 1.328434, 2.760732, 0.616492, -0.843869, -0.594300, 0.446717, 1.910433, -0.826255, -0.831555, 0.190951, -0.031685, 1.421889, 1.418121, 0.945533, -0.747575, -1.226137, -2.004908, 1.200339, -0.468928, 0.102181, 0.569318, -1.644788, -1.210173, -0.692440, -0.374328, -0.952120, -0.418467, 1.268093, 0.499477, 0.183173, -1.359025, 0.511653, -1.724588, -1.680592, -0.201966, -0.741051, -1.055664, 0.517904, -0.391775, -0.231744, -0.797944, 0.482491, 0.019750, -0.894941, 0.531607, 0.871080, 0.342641, -0.054020, -0.602271, -0.842157, 1.632911, -0.432607, -1.248215, -0.764442, -0.519356, -2.138398, -0.372431, -0.584854, -0.734228, 0.245743, -0.158299, 0.640930, -0.558029, 0.320241, 0.627393, -0.479089, -0.912147, -0.862956, 0.257970, 0.420449, 1.037621, -1.107136, -0.906982, -0.875634, -0.965965, 1.225511, -0.887498, -0.837290, -0.872077, -1.066723, 1.084193, -0.151992, -1.422060, -1.106786, 0.160547, -0.124578, 1.003830, 1.289142, -0.089685, 1.023673, -0.727708, -0.255453, -1.686007, 1.116712, 0.151654, 0.358602, -1.289897, -1.416274, 0.016376, 0.031421, 0.465881, -1.116616, 0.520704, -0.328395, 0.101971, 0.720823, 1.214356, 1.010513, -0.375697, -1.034463, 1.262545, 1.610214, 0.369468, 0.472429, -0.884633, 0.105961, 0.488407, -1.104202, 0.487092, -0.953297, -0.139094, 0.321016, -1.124990, 0.163159, 0.202292, 1.047819, -0.839838, 1.626517, 0.029983, -0.482763, 0.159358, -0.283699, -0.969671, -0.979734, -0.101481, 0.273784, -0.821945, -1.040035, 0.758046, 0.832477, 0.182040, -0.520007, 0.283280, 0.315367, 0.042447, -1.286729, 1.034373, 1.260660, -0.163208, 0.572441, 0.185302, 0.832071, 0.013702, 1.436937, 0.434320, -0.485199, -0.207363, -0.697035, -1.551334, -1.096316, -0.305565, 0.753113, 0.000740, -1.591918, 0.024043, -0.093740, 1.414343, -3.046657, -1.062601, 1.035958, -1.223915, 0.182023, 0.476589, 0.137829, 0.933349, -1.563596, 0.115677, 1.116658, -0.333039, 2.049627, 0.410208, 0.427318, -2.297213, -0.648292, 1.509938, -0.418864, -0.871677, 0.428514, 0.604498, -0.006634, -0.282755, 0.000462, 1.506937, -0.867303, 0.406387, 0.736304, -1.699937, 1.087410, 0.248186, -0.940611, -1.007897, 0.788702, 0.830100, -2.035216, 0.324135, 0.388196, -1.056560, 1.193073, -1.286124, -3.005216, 0.099085, 0.737121, -1.874100, -0.067278, -0.896329, 1.612255, 0.033986, 0.757249, -0.655228, -0.137359, -1.115782, -0.462071, -0.252107, 1.182235, -0.487541, -0.958497, 0.411339, 0.231504, 0.085546, -0.486534, 1.213459, 2.382589, -0.800908, 0.414941, 0.342301, 0.769013, -0.314359, 0.660638, -0.513393, 1.978124, 1.019556, 1.938659, -1.017823, -0.373283, 0.164167, 0.807838, 0.914389, -1.220229, 1.611372, 1.119381, 0.617338, -1.312344, 1.129519, -0.743040, -0.933772, 0.142526, 0.825024, 1.085350, 1.147821, 1.649266, -1.081058, -0.204253, -1.518060, 1.461462, 1.868728, -0.811507, 0.207322, 0.830685, -0.665853, 0.606187, -0.977479, 0.093364, 0.335359, -0.555046, 0.527579, 0.010167, 1.584423, -0.163144, 0.040270, -1.434839, 0.003488, 0.856132, -0.290849, -0.808032, 0.073972, -0.795282, -0.498944, -1.720397, 0.712346, -1.250164, 0.940977, 0.023570, -1.137335, 2.019404, 0.339481, -1.479596, -0.238442, 0.571046, 0.582649, 0.140382, -0.279423, 1.017947, -1.074007, -0.816864, -1.927785, -0.139165, -0.244850, 0.922583, -0.605840, -0.461828, -0.771518, 1.050515, 0.394693, -2.019184, -0.548718, -1.481882, -1.644873, 0.836751, -2.658554, 2.080260, 1.093618, -1.370649}, - { -0.000310, -2.254341, 0.192980, 2.166330, 0.280113, 2.722518, 0.122598, 0.110828, -0.761507, -0.830603, -0.916333, 0.113737, 0.417542, -0.201436, 0.382437, -0.850212, 0.080061, -1.093722, -0.320704, -1.500217, -1.844268, -1.029253, -1.269302, -0.865891, -0.281235, -0.412290, 0.021324, 0.601537, 1.049948, 0.024785, 0.001166, 0.426808, 1.014524, 1.784908, 0.502277, -0.163223, 1.848508, 1.100986, 0.756790, -0.253453, -1.849426, 0.303309, -0.165562, 0.152136, 0.851701, 0.522452, -0.172650, 0.439039, -0.697742, 1.942938, 1.171037, -1.411139, -0.465668, -0.631027, -0.287570, -0.423506, 1.852656, 0.467709, 0.400184, 0.887489, -2.515809, -0.338843, 1.303496, 0.324393, 0.377758, 0.901332, 0.861529, 1.092245, -0.735848, 0.214655, 0.486631, -0.640094, -0.135141, 0.567322, 2.144436, 0.003306, 0.724213, -0.272420, 1.422234, -0.025224, -0.176690, 0.024369, 0.800785, -1.642951, 0.219705, -1.288142, -1.277395, 2.323225, -1.145463, 0.285171, -0.311220, -0.010112, 1.207432, 0.060215, 0.653854, -2.443783, -2.100994, -1.240467, 0.547455, -0.905534, 1.954185, 0.224623, -0.342548, -0.169007, 0.664925, 0.729596, -0.389150, -1.246218, 1.943540, 1.417720, 0.051201, -0.961834, 1.607948, -1.399987, 0.171691, -0.824878, -0.802034, -1.603430, 0.013929, 1.749551, 0.806785, 0.025550, -1.289084, 1.869064, 0.940643, -0.195537, 0.298603, -0.644777, 0.390768, -1.750719, 0.149475, 0.159136, -1.802934, 1.284242, 3.316486, -0.547470, -1.606467, -0.024866, -0.768577, -0.614419, 0.953520, -0.826602, 0.156388, 1.351367, -0.432129, -1.146784, 0.365479, -0.033215, -1.208993, -0.558763, -0.391575, 0.945154, 1.511761, -0.986548, 0.344420, 0.026770, 0.122261, -0.169569, -0.961570, -0.229895, -0.065659, -0.354003, 1.162992, 0.282575, 0.252367, 1.752530, 1.380168, 0.593829, 0.798639, 0.718137, -0.430411, 1.770759, -1.341644, -1.888259, 0.194859, -0.385078, -0.488580, 0.348512, 0.075598, -1.922167, 1.726508, -1.141093, 0.334279, 1.802214, -0.310679, -1.390956, 1.001809, 0.104068, -0.279258, 0.073496, 0.355229, 0.154822, -0.208181, -0.448308, 0.405660, -0.550933, -1.098098, 0.667744, -2.560996, 1.374638, 0.445228, -0.141108, -1.507488, 0.897757, -0.085095, 0.008599, -1.406541, -0.063909, -1.576006, 1.046169, -0.824641, -2.828520, -2.597629, 0.115049, -1.301652, -0.178861, -1.106649, 1.735302, 1.408074, -0.823765, 0.388329, 1.643086, 0.015766, 0.065565, -1.460327, -1.008793, -0.732402, -1.409500, -0.145527, 0.014432, 1.844391, -1.806123, 1.207694, 0.423199, -0.530191, -0.283025, -1.235478, -0.594571, 1.241493, 0.445791, -0.243026, -0.511689, -0.812748, -0.538452, -1.436681, 0.801784, -0.572142, 0.079077, 0.110129, -0.791548, -0.650440, -0.775674, -0.069399, -0.614946, 1.250918, 0.486805, -0.289950, -1.314598, -0.208929, -2.015739, 2.261823, -0.482761, -1.168523, -0.813381, -1.609539, -0.235460, 0.643777, 0.385749, 1.384014, -0.265247, -0.005141, 0.436923, 0.660392, 1.534517, -0.156140, 0.861179, -0.528399, 0.651150, 1.068477, -0.114685, 0.320244, -1.504362, -1.100460, -1.759216, 0.623329, 0.841217, -0.541164, -0.518918, -0.608208, 1.904872, -1.492140, 1.221777, 1.129945, -0.831613, -1.310756, 0.756814, 0.665587, 2.051020, 0.691275, -0.147981, -0.437783, 0.796797, 0.428475, -0.362813, 1.433885, -0.418667, 0.500934, 0.714548, 1.619893, 0.339898, 0.142668, -1.688881, -0.891034, -0.434887, -0.630537, -1.382409, -0.428532, 0.584433, -1.212957, 0.945173, 1.475790, -0.520063, 0.098473, -0.651966, 0.618462, -2.070633, 0.438099, -0.068014, -0.069458, -0.026244, 0.654294, -0.164176, 0.945954, 1.061919, -1.948817, 1.275566, 0.866113, 0.410182, 0.402404, -0.986702, 0.520901, -0.484788, 0.464423, 1.161656, 0.270617, -0.871927, -1.098362, 0.334317, -0.443763, -1.462931, 0.426137, -2.322070, -0.250007, -0.209609, 0.399659, -0.360925, 0.732977, -1.076719, 0.056535, -0.678952, 1.241538, 1.471976, -1.010313, 1.495800, -2.449194, -0.810481, -0.695549, -0.733878, 1.534990, 0.586674, 0.729854, 0.390113, 1.288194, 1.304325, 0.779686, 0.424013, 0.244490, -0.494871, -0.501781, -0.227255, -0.444454, -1.617900, 0.147244, -1.093506, -0.737736, 0.111506, 1.321203, -0.728688, -0.097831, -0.596117, 0.550638, 0.978121, -1.271338, 0.110187, 0.763669, 0.437025, 0.650818, 0.871548, -0.253076, 0.443113, -0.668316, -0.055860, -0.176602, -0.147981, 0.925539, -0.516877, -0.174672, 0.995183, -2.216053, -1.041371, -0.175467, 0.169170, 2.190169, 0.416535, -0.945989, -0.436305, 1.483174, -0.734064, 1.237494, -1.366030, -1.252090, -1.134828, 1.159807, -1.235594, -0.459376, 0.978717, -0.010540, -0.689567, -1.661429, 0.501941, 1.008219, 0.044239, 0.885596, -0.388228, -0.002249, 1.344049, -0.353879, 0.661322, 0.190633, -1.375905, -1.167869, -1.485361, -1.100886, -0.840231, -1.804455, -0.044461, -1.010893, 0.086509, 0.257084, 1.912327, -1.093373, 0.503289, 1.190409, -0.155940, 0.068600, -0.476641, 0.231294, -1.257760, -1.818569, 0.627606, -0.758381, -1.043462, 1.299260, -0.793737, -0.052611, -3.366881, -0.256570, 0.811687, 1.144203, 1.267074, -1.224903, 0.653482, 0.697111, -0.038015, -1.976700, 0.427569, -0.858028, -0.869722, -0.481895, -0.574310, -0.294258, -0.763877, 0.835772, 0.347611, 0.402093, -0.865398, -0.433433, -1.782931, -1.005681, -0.289996, 1.315005, -2.146737, -0.140296, 1.498453, 0.477140, 0.506560, 0.087171, 0.200461, 0.913853, -1.298919, -0.417357, 0.659791, -1.262264, 1.138160, 0.139477, 0.430436, 1.308126, -1.663393, 0.206676, -1.053060, 0.928127, 0.848650, -1.403534, -1.479429, 0.351608, -0.126559, -0.058183, 1.363872, 0.511943, 0.382296, -0.802274, 0.167611, 0.114009, -0.156027, 0.337398, 1.888498, -1.142142, -0.190050, -2.309773, 1.882275, -0.908648, 1.156070, -1.083581, -0.260234, -0.264256, 0.181673, 0.998001, 0.708337, -0.820202, -1.056552, -0.549025, -0.937117, -0.607025, 1.091182, -0.349356, -0.474430, -0.095454, 1.996152, -0.563996, -0.316541, -0.524540, 0.944083, 0.770946, 0.190239, -0.540259, 1.345416, -0.275899, -0.350663, -0.323367, -0.948036, -0.512628, -0.154243, 0.342741, -0.486023, 0.453986, -0.626529, -0.413604, -0.850539, 0.825574, -0.248336, 1.645465, -0.731914, -1.110464, -0.262465, -0.919119, 0.684329, 1.452496, -1.107936, 0.472311, 0.717388, 1.081823, 0.722107, -0.309873, -1.778788, 0.012027, 0.343833, -0.711979, -0.382678, -1.215450, 0.927912, -1.280086, -0.286294, 0.927771, -1.284849, 0.044937, 0.987196, -0.600440, -0.764728, 1.223866, -1.749675, 0.558138, -0.225351, 0.291901, 0.763121, -0.186465, 1.231005, -0.220323, -1.375887, 1.737642, -1.032664, 0.127659, -0.555420, 0.871373, -1.408172, 0.894561, -0.666330, 0.694927, 0.399955, 1.549409, -0.258027, -0.439352, 0.325821, -0.649380, -1.091650, -1.808038, -0.820617, -0.754702, -0.118449, -2.884336, -0.779339, -0.695485, -0.277610, -0.826338, -1.634652, -0.785844, -0.657514, -0.162834, 0.849195, -0.717902, -0.260639, 0.446192, 1.350384, -1.417821, 0.763972, -1.055862, 0.203728, -0.637896, -0.983660, 0.307930, -0.700155, -1.151881, 1.232924, -0.087471, 1.178497, 0.772805, -0.506379, -1.249147, -0.657724, 0.649312, 0.210307, -0.568956, -0.324855, 0.127071, -1.010271, 0.652170, 0.561438, 0.355418, 0.124805, -0.957488, 0.006968, 0.959223, -0.126700, -0.361955, -0.789080, 0.544005, 0.913224, -0.785589, -0.155600, -0.203003, -1.537046, 0.595913, 0.786441, 0.728597, 1.584259, 0.518694, 1.098688, 0.008041, -1.614629, -0.568905, -1.835487, -0.020016, 0.578924, -0.401919, -0.023403, 0.041107, 1.406335, 0.932857, 0.739902, -0.822920, -0.126282, -0.256550, 0.518091, -1.246217, 0.357496, 0.081969, -0.030353, -0.538042, 0.431942, 0.806271, 0.993471, 1.292731, 0.268364, 0.422041, 1.516722, 0.637980, -1.070699, -1.430245, -0.174343, 0.974864, 0.083185, -2.647842, -0.018127, -1.379291, -0.462449, 0.168273, -1.074682, -1.200976, -0.897146, 0.420637, 0.226442, 1.210052, 0.158170, 1.339542, -0.228302, -1.201164, 0.678916, -0.152949, -0.231727, 0.101638, 1.086831, 0.114915, 0.193390, 0.520851, -0.716967, -0.158356, 1.396594, -1.226498, 1.333604, 1.218269, 0.591765, -0.293817, 0.662191, -0.509264, -0.387811, 0.641513, -0.212842, -0.630714, -0.787177, -0.747907, -0.394068, -1.181964, -0.926449, -0.908128, 1.057537, 2.377935, 1.040726, -2.002921, -0.658259, 0.322599, 0.325795, -0.681271, -1.610763, 0.214933, -0.195344, -0.732711, -0.196677, -0.922687, -1.114889, 0.046415, 0.575205, -2.371344, 0.490256, -1.504221, -0.852711, -2.226125, 0.189895, -0.396921, -0.741804, 1.258941, 0.903288, -0.578421, -0.746789, 0.480031, -1.495332, 0.084609, -0.185206, -0.741113, 0.488575, -0.124369, 0.520563, 0.440869, 1.854863, 0.065226, -0.070361, 0.395258, -0.548170, 0.194915, 0.627369, -1.071900, 0.835065, -0.487628, -0.426167, 0.284812, 1.229825, -0.472712, -3.471420, 1.958858, -1.978104, -1.062547, -0.810515, -0.151313, 1.282813, 1.676740, -0.701179, -0.665178, -0.641462, -0.145278, 0.866631, 1.017982, 0.839669, 0.090788, 0.010057, 2.160164, -1.868641, -0.777389, 0.284229, 0.945118, 1.133554, 1.594268, -0.929536, 0.976802, -1.153779, -1.102439, -0.545499, -0.803905, -0.917282, 1.018876, -0.016141, 0.400464, 1.175557, 0.618795, 0.257319, 0.353386, 0.755966, -0.918343, -0.112120, -1.957283, 0.358920, 0.291256, -0.449399, -0.765446, 0.623519, 0.377403, -0.405677, -1.255373, 0.470263, -0.510526, 0.455812, -0.405665, 0.395529, -0.039041, 0.420992, -0.455029, 0.922937, 0.960143, -0.174892, -1.491710, -0.878063, -0.041892, -1.542657, -0.586673, 0.673121, 0.278594, -0.744022, 0.400989, 0.141963, 0.528980, 0.782551, -0.765592, -3.077056, -0.176554, 0.189274, 0.928752, -0.143396, 0.308576, -0.930744, 0.011027, 0.767563, -0.422409, -0.024158, 0.132172, -1.070852, -0.892882, 0.936342, 0.330952, 0.425262, -0.088240, -0.352334, -0.327625, 1.104257, -1.595690, -0.575914, -0.503969, 0.452161, -1.102836, -1.181777, 0.599525, -0.212906, 0.135153, 0.953362, 0.290967, -0.497606, -0.630167, -1.904923, -0.193714, 1.430350, 0.579384, 1.151465, -0.371174, -0.206153, -0.126312, -1.265094, -1.109821, 0.976947, 0.663322, -1.565278, 1.997962, 1.974330, -0.758936, -0.128314, -0.568111, -0.096106, 0.102235, 0.508888, -0.186083, 0.621621, 0.558730, 0.487501, -1.159593, 0.589362, -0.658880, -0.068941, -0.408277, -0.327204, 0.767794, -0.665051, -0.106410, 0.717532, -0.075429, -0.783067, 0.328551, -0.911251, 0.301051, 2.248267, 0.280039, -0.128141, 0.337225, -1.861028, 2.074609, 1.304927, 0.692123, -0.384749, -0.255998, 0.207496, -0.682414, -0.466749, -0.644177, -0.464388, 2.079644, -0.031801, -2.459670, 0.602536, 0.587000, 0.145167, 0.601113, 0.418047, -1.533176, -1.398823, 1.332788, -1.320762, 1.386994, -1.951933, -0.197956, -1.281009, 1.017715, 0.968581, 0.847523, 0.344410, 0.702560, -0.716600, 1.034190, -0.683654, 0.441521, -0.501335, -1.428623, -0.164273, -1.251855, 0.936645, -0.179842, 0.038877, -0.074363, -2.411149, 1.683910, -0.329958, 0.068716, 0.001927, -0.871787, -0.055828, 0.519028, -0.976447, 0.284948, 0.174078, 0.405544, -1.266704, -0.290867, -0.491148, -1.137185, 0.243461, 0.820727, -0.281501, 0.357176, 1.026953, 1.380192, 0.026565, -2.035794, -2.683347, -0.793371, 0.247048, 0.436278, -1.463137, 0.510608, 0.408506, 0.680546, -1.269389, -1.674156, 0.055552, -0.214216, 2.546355, -1.356142, -0.225836, 0.233195, -1.396419, -1.372800, 0.698696, -1.345543, -1.160208, 0.375353, -0.321001, -0.098894, -0.746127, -1.188361, 0.241601, 0.213069, -0.687789, 0.000259, -1.697009, -0.392925, 0.550013, 1.049769, -1.220510, 0.986781, -0.504827, 1.138408, -0.081807, 0.527459, -0.642788, -2.293021, -1.063609, 0.995131, 1.072966, 1.894066, 0.590662, 0.416504, -0.013372, 0.141664, -0.072102, -0.536056, -0.306425, -0.288491, -2.726400, -1.362125, -1.095878, 1.260155, -2.240189, -0.783740, -0.736593, 2.082050, 0.206090, 0.683437, 2.472804, 0.500268, 0.921836, 1.087455, 1.083292, 2.150990, 0.669659, -1.055766, -1.008252, -2.406810, 0.158756, -1.346463, -1.226624, 0.234445, 0.372226, -0.395401, -1.031653, -0.073567, 0.028250, -0.517777, 0.920520, 0.401587, -0.561708, 0.783198, 0.612223, -2.623595, 0.267330, 0.833980, -0.668182, -0.846267, 0.164838, -2.062011, -0.267630, 1.234690, 1.486353, 0.804720, -0.261752, 0.854011, -0.340968, -0.080165, 0.045658, -1.077075, 1.101985, 0.508550, 1.267486, 0.129629, 1.098764, -0.080763, 1.326010, 1.075671, 1.177864, -1.958402, -1.406060, -1.044418, 2.197954, -0.070487, -1.178608, -0.729226, -1.684683, 0.588851, 0.607503, -0.758390, -0.037811, -0.903945, -0.908954, 1.296130, -0.858210, -0.336361, -1.514495, 0.418092, -1.448387, -0.037263, -0.730364, 0.767328, -1.039257, -0.187513, 0.250304, -1.167844, 0.905511, 1.225566, 0.773329, 0.590053, -0.395775, -0.967780, -0.449805, 0.066671, -0.911307, -0.146448, -0.650075, -1.733644, 0.202639, -2.096868, 0.777623, 0.139698, -0.666559, -0.348310, 1.583402, 0.597975, -1.362816, 3.044469, -0.970940, 1.108881, -0.033359, -1.906896, -0.126966, 0.989336, 0.535150, -2.518695, -0.988642, 0.882000, 0.148014, 1.550435, 0.454611, -0.467841, -0.539649, -2.464569, -0.438146, 1.604214, 1.055978, -0.347897, 0.594906, 0.276337, -1.195851, -0.094712, -1.940078, 0.261595, -0.559067, -0.175453, -1.062460, 0.529136, 0.628452, -1.994576, 0.447600, -2.157587, 0.028968, 0.585512, -0.665303, -0.438573, 0.692657, 0.237587, 0.519565, 0.536739, 1.012157, -0.375979, -0.244076, -0.221519, 0.641126, 0.435968, 0.309686, -1.694985, 1.194197, 0.791178, -0.025695, -0.380001, 2.650587, 0.991207, 0.676633, 1.975837, -0.032809, -1.581086, -0.776096, -0.873394, -0.691602, 1.384972, -1.586605, -0.106223, -0.509311, -1.260914, -0.270195, -0.447073, 1.718911, 1.288213, -0.409454, 0.161570, -0.510411, -1.414662, 0.237212, -1.137569, -0.580576, 0.981392, -1.552203, -1.030880, 0.597492, -0.736982, 0.244241, 2.098681, 1.353868, 0.189834, 0.063874, -0.322596, -0.875432, 1.856609, 0.978770, 0.567828, -0.673501, -0.051392, 0.590863, 0.358643, -0.510432, 0.233621, -0.311325, 0.285921, 0.145806, 0.366766, -0.318504, -1.333216, 0.109532, 2.276802, 0.056999, 0.787855, 0.001969, 1.462392, 0.781060, -1.399222, 1.000759, -1.229889, -0.943922, 1.011972, 0.119094, 0.579928, 0.445671, -1.600450, 0.351057, 0.000005, -1.258211, 0.438742, 0.384129, 1.257095, 0.243613, 0.732215, 0.563773, 0.558158, -0.005431, 0.498690, 0.473708, 1.018654, 1.121101, -0.939852, -0.213199, -0.276401, 0.004909, -0.949371, -0.208996, -0.621509, -0.006088, 1.047576, -0.261587, 0.758026, -1.042452, 0.173167, -0.974808, 0.720904, 1.928434, -1.007969, 1.151387, 0.757279, -1.141207, 1.184501, -1.205198, -0.118223, 1.152584, -0.492933, -1.082554, 0.817773, 0.859660, 0.556207, -1.495700, 0.487703, -0.101187, 1.572150, 0.046708, 0.286033, 1.192786, 0.325252, -0.565112, 0.308252, -0.056969, -1.307379, -0.494229, 0.158643, 1.466922, -0.058740, -1.426654, 0.952023, 0.762363, 0.025910, -0.528175, -0.129232, -0.526779, -1.018734, -2.172885, 0.139164, 0.487541, -0.489762, 2.567008, 1.174187, 0.825296, 1.117466, -0.618133, -0.327267, -0.986281, 0.802568, -0.465938, -0.165495, 1.190362, 0.069215, -0.516492, 1.365286, 0.138378, 0.791981, -2.196522, -1.192415, -0.981542, -2.380377, -0.395878, -0.332126, 0.777393, -2.312853, 0.048237, 1.096405, -0.483414, 0.503911, -1.002781, -0.349081, -1.282461, -0.237205, 1.726126, 1.000734, -0.580431, 0.517764, -0.694245, 0.636223, 0.745810, 0.184304, -1.064833, -0.628694, -0.161844, 2.561419, -0.140944, -0.225927, -1.255550, 0.842041, 1.484609, -1.189823, 0.262127, 0.212034, -0.522273, -1.540660, -0.164170, 0.900511, -3.637427, -1.484830, -0.337817, -0.585816, 0.829291, -0.021735, -0.295395, 0.350354, 0.127400, 0.868848, 0.628189, -0.071356, -0.302068, -0.460823, -0.493332, 1.326903, -0.473122, -0.627086, -1.001637, 1.190783, 1.395118, 0.356406, -1.904800, 0.510484, 0.270202, -0.409133, -1.631714, -2.028938, -1.084906, -0.669172, -1.643011, 0.195874, -0.874741, -0.026854, 0.145770, -0.426812, 1.062227, -0.389446, 0.383789, 0.256626, 1.762084, 0.038312, 0.160966, -0.156655, -0.018273, -0.222940, -1.145909, -0.134850, 0.585524, 1.047425, -1.073503, -0.512874, -0.101105, -0.792661, 1.011243, -0.208642, 0.289026, 0.475198, 0.652303, -1.646680, -0.663122, -1.672177, 1.300855, 2.351508, 0.284167, 0.357206, -1.219270, 0.016459, -0.216782, 1.872439, -0.623918, 0.435119, 1.484990, -1.191152, 1.053817, -0.299299, 0.335644, -1.055210, 1.885218, -0.701890, 0.071460, -0.654747, -0.693071, -0.062382, 0.515474, -0.771797, 0.206875, -0.436573, -1.176895, 0.411175, -0.890135, -0.286007, -0.994778, 1.109493, -0.374172, -1.295705, 0.743912, -0.409898, 0.795929, 1.708612, 0.146927, 0.056893, -1.662144, 1.897628, -0.381825, 0.886572, 0.765283, -1.643459, -0.209627, 0.538402, -0.107180, 0.235326, -0.990710, -0.796664, 0.151547, -2.397212, 1.466284, 2.423258, -1.319225, 0.433650, -0.001136, 0.233109, 0.211764, -0.924049, 0.067780, -0.539493, -0.926936, -0.238775, 2.290321, 0.781045, -0.418014, 1.861555, -0.274531, -0.724386, 1.029387, 1.338853, 1.118110, 0.045584, 0.915301, -0.677501, 0.658590, -0.117179, 1.947100, 0.008935, 0.126832, 1.178329, -0.803223, 0.579354, 1.907056, 1.757846, 0.323214, 1.765478, 0.364182, -0.233604, -1.712457, 1.166000, -0.061417, -0.808175, -0.246385, -0.218994, -1.494620, -1.897371, -1.055054, -0.065949, 0.915990, -0.600269, -2.418455, 1.109551, -0.101269, -0.865274, 0.905284, 1.340405, 1.564946, 1.136933, -0.226384, 1.195632, -1.625775, -0.142709, -0.582714, 1.018635, 0.239187, 0.254904, -1.388055, 0.273447, 0.033671, -0.137348, 0.715405, -1.116788, 0.867256, -0.092840, -1.423702, 0.496947, 0.820572, -0.022488, -0.295736, -1.494535, 1.120374, 1.626204, -0.758905, -0.788870, 0.930361, -0.790291, -0.518069, -0.011004, 0.037606, 0.353431, 1.263922, 1.318524, -1.215041, 0.710435, -1.273998, -0.811268, 1.456560, -1.112965, 0.070197, -1.370241, -0.774796, -0.477639, 0.062192, -0.175403, 0.326411, -0.893677, 0.293676, -1.073488, 1.589946, -0.990054, 0.510195, 0.322609, 1.139129, -0.740678, 1.049678, 0.069499, -0.695848, -0.176900, 0.392683, 0.816067, 2.343448, 0.342424, 0.077515, 0.011839, 1.060618, 0.190697, -2.109954, -1.005106, -1.076016, 0.054223, 1.909171, -0.927378, -0.278525, -0.283782, -0.591413, 0.411979, 0.178880, 0.545758, 0.314061, 0.343164, -0.024496, -0.076241, -0.418832, -0.629426, 0.458747, -0.039186, 0.013764, 0.534525, -0.038161, -0.006657, -1.233315, -0.459750, -0.290533, -0.187723, 0.874260, -0.741724, -0.322112, -0.155293, 1.034464, 1.227990, 0.461718, -2.522946, 0.140447, 1.917121, -0.230219, 0.084232, 1.195831, -0.465479, -0.069053, 0.768489, 0.733076, -1.273126, -0.686845, 0.421374, -1.496670, -0.890413, -1.312735, -0.905685, -2.223762, 0.557832, -0.677297, -0.669101, -0.539208, -1.150457, -0.321102, -0.004650, 1.299911, -1.653696, -0.509951, -1.803900, -2.061029, -0.286209, -0.030529, -0.820282, 0.776440, 0.684709, 0.354456, -0.183622, -1.084615, 0.454193, 0.955770, 0.014660, -0.013150, 0.022208, 0.475078, 1.801752, -0.679029, -0.991057, -2.257233, 0.458207, 1.017008, 1.708871, -0.881148, 0.599051, -0.055908, 0.180152, 0.941960, 0.361025, 0.265645, 0.406258, 0.332640, -0.372810, 0.229761, 1.569845, -1.622195, 0.846943, 0.452573, -2.374628, -0.412241, -1.306029, 0.667033, -0.188091, 0.602733, 0.364158, 0.626955, -2.093137, 0.476072, 1.150041, 1.245420, 1.500910, 0.245463, 0.001392, 0.167791, 1.044601, -0.675887, -0.981063, 1.129331, 0.995739, -1.309379, -0.530822, -0.144421, -1.398133, -1.559309, -1.142807, 1.199523, -0.994016, -0.398398, -1.941531, 0.329216, 0.683361, -1.098504, 1.897109, -1.013998, -0.209602, -1.138555, 0.263112, -0.588895, 0.534464, -2.329653, 1.240660, -0.838349, -1.303276, -1.106231, -1.546260, 0.056579, 0.144556, -0.983626, -0.087649, -0.167575, 0.600193, 1.822821, -1.045258, 0.970930, 0.852403, -1.764350, 0.599596, 0.219811, -0.443530, 0.672631, -0.248273, -0.661209, 0.717856, 0.880369, -0.340855, 0.705535, -0.371386, 0.595894, -1.620608, 1.771393, 0.050063, 2.552893, -0.815177, -0.463815, -0.419730, -0.403656, 1.164727, -1.031374, -2.146148, -0.756977, -1.129535, 0.089393, 0.076610, 0.193511, 0.795068, -1.486254, 0.887222, 2.135152, -0.863207, -0.408982, -0.359638, -1.173769, 0.197693, 1.384118, 0.759013, -0.888398, 1.655151, 0.537808, 0.978626, 0.448329, 1.911075, -0.214059, -0.472554, -0.012441, 0.306431, -0.726796, -1.405204, -0.475013, 1.127137, -1.236143, 0.716715, -1.490087, -0.527281, 1.513673, 0.400385, -0.628402, -1.684841, -0.073905, 2.295146, 0.715512, -1.431172, -0.266330, 0.245475, -1.383456, 1.014582, -0.029370, 0.389303, -0.295882, -0.825704, -0.888124, -0.562533, -0.425604, 0.744794, 1.334797, 0.434175, 0.024609, 0.293229, 1.192807, 0.560325, -0.317291, 0.987226, -1.404189, -0.666735, 0.528517, 2.326823, 1.074562, 0.442010, -0.345489, -1.233982, -0.530251, 1.364220, 0.927370, 1.124556, -0.746726, 3.027888, 0.479960, 0.146034, 1.741444, -0.214056, -0.681461, 0.313598, -0.125564, 0.927843, 0.321219, 0.327717, 0.524398, 0.257596, 1.138793, -0.522281, 0.685992, 1.212762, 1.429589, -1.336824, -1.535577, -2.141625, 0.371031, -0.564663, 0.778991, 0.660521, 1.092923, 1.387850, -0.912745, -1.126989, 0.671569, 1.033428, 0.255001, -1.020624, 0.508126, -2.537246, -1.206881, 2.143155, 1.217432, -0.103698, 0.134533, -1.288910, -0.702015, 1.031837, -2.216333, -0.232174, -0.482767, 1.467776, 0.511015, 1.720150, -1.607136, -0.754607, -2.980773, 0.053542, -0.224538, -1.186255, 0.107825, 1.015998, 2.044798, -0.962822, 0.768290, 0.377811, 0.989644, -0.573371, -0.573764, 0.581537, -0.162456, 0.020037, -0.095484, -0.548828, 0.707258, 0.145471, -0.550174, -0.879973, 0.662598, 0.527053, 0.164336, -0.868319, 1.371678, -3.331736, 1.054190, -0.459952, 0.111668, -0.365330, 2.178210, -1.157461, -0.367150, -0.496674, 0.738479, -0.524752, -0.665053, 1.082217, 0.676992, -0.329835, -1.281568, 1.308636, -0.773786, 0.167909, 1.263999, -0.921950, 0.557877, 0.061439, -0.644029, 0.225120, -1.029846, 1.356338, 0.845113, -0.440693, 0.764361, -1.709079, 0.520657, -1.047641, -0.194259, 0.333679, 0.410957, 1.324033, 1.467328, 0.761615, 0.023882, 1.621456, -0.441009, 1.019255, -1.154135, -0.487367, -1.418002, 0.143929, 1.530343, 1.908421, 1.034541, 0.516334, -0.605141, -0.408537, -1.408641, 1.786848, -1.636864, 0.536098, -0.439890, 0.519830, -1.037863, 0.288615, 0.364682, 0.310926, 0.094643, -0.076550, -0.896334, -0.781903, 0.773831, -0.006851, 1.888107, -0.395528, -1.977861, -0.021403, 0.044674, -1.806692, 0.636308, -1.089045, 1.162437, -1.058922, 0.121448, -0.095135, -1.366638, 0.904716, -1.028959, 1.188603, 1.545438, -0.762388, 0.073392, 0.514723, 0.108277, -0.300074, -0.014929, 0.637609, 1.966302, -0.489263, -0.555309, -1.212615, 0.590619, 1.404817, -2.374523, -0.813090, 0.041592, -0.624261, -0.309411, -1.485190, -1.400385, -0.460758, -3.248042, 0.799233, 0.830464, 1.088285, -0.004690, -0.965094, 0.463383, 1.004339, 0.897590, -0.548591, 0.470458, -0.216502, 0.155910, 0.674579, -0.804897, 0.169923, 1.423382, -1.386097, 0.264713, 0.758326, -0.875114, -0.175062, -1.672930, -0.422078, 0.760608, -0.166908, -0.111036, 1.233218, 0.265164, 0.654944, -0.357084, 1.243490, 0.411791, -1.413935, -2.070543, 1.287142, 1.420768, -0.439515, 1.422767, 2.404319, -1.830192, -0.392318, -2.096961, -0.926867, 1.421650, -0.536812, -1.621780, 1.142596, -1.525986, 0.777854, 2.262506, -1.915564, 1.200449, -0.330272, -0.058940, -0.356124, -0.060913, 0.228493, 0.127902, 1.602695, -0.765264, -0.569040, -0.205218, 0.201786, 0.385277, 0.521777, -0.580311, 0.070717, -0.419210, -0.008011, -0.905166, 0.816212, -0.698387, 0.525203, 0.844407, -0.370375, 1.393425, 0.537902, 1.562649, 0.024912, 0.832647, 0.207483, -1.302135, -0.069374, 0.534695, -1.648680, -1.537451, 0.711174, 0.182759, -0.229749, 0.499966, 0.211740, -0.577806, -0.020320, -0.670744, 0.261563, -0.192689, -0.385004, 1.492509, -0.195899, -1.046078, 0.621155, 0.813167, -2.581225, -0.016883, -2.062985, 0.537845, -1.083806, 1.918472, 1.496444, 0.178091, -1.589480, -0.483474, -0.544916, -0.488579, -0.435137, -2.074032, -0.408304, 1.868456, -1.034542, -2.049857, -0.613862, -1.176885, -0.188859, 1.240873, -0.149484, -1.683366, 0.704676, 0.081753, -1.221354, -0.255223, 1.037273, 0.878709, 0.178451, -0.131728, -0.495844, -0.941290, -0.577240, 0.772213, 2.023265, 0.175766, -0.851853, 0.328859, -0.126748, 0.375021, 1.173086, 1.218199, 0.627246, -0.914798, -0.491524, -0.825908, 0.441356, 0.868793, 0.543873, -0.669288, -0.182742, 1.264376, -0.166431, -0.457383, -0.052764, -0.137540, -0.534472, 1.595176, 1.023789, 0.207692, 0.406993, 0.144197, -0.747123, 0.775069, 2.253808, -0.965658, 0.105241, -0.789178, 0.328050, 0.299749, 0.203777, 0.740311, 1.205186, 0.808269, 0.660498, 1.499956, -1.296732, 0.806671, -1.704128, 0.388678, 2.108604, 1.343242, -0.726507, 0.113946, -0.522061, -0.965185, -1.216846, -1.104517, -1.731349, 0.150635, -1.113899, -0.278155, -0.028369, -0.413708, 0.813491, -1.307175, 0.974120, -1.371080, 0.534954, -0.634996, 0.188443, -0.664846, 0.154796, -1.536029, 0.149593, -0.890506, 0.087411, 2.033621, -0.067087, -0.921834, 0.273096, 0.923246, -0.744569, 0.400070, 1.506722, -0.680955, 1.364513, -1.115461, -0.173959, 0.698572, 0.617989, 1.457048, 0.630312, -0.250400, 0.059322, 0.035183, 1.030191, -1.758636, -1.395863, -0.416439, -1.713644, 1.153913, -0.680888, -2.140296, 0.533423, -1.317319, 1.443944, 0.522052, -0.668387, 1.409010, 1.062778, -0.153992, -0.995280, 0.244128, 0.102486, 1.438015, 0.389648, -0.759850, -2.193407, -0.647245, 0.976636, -1.037196, -0.868317, 0.835487, -1.068519, -0.519246, -2.957297, 1.077279, 1.769498, -0.614078, 0.378078, 2.003561, 0.873780, -0.574898, 0.128163, -0.711513, 1.277697, 0.305506, 1.021701, 0.400921, -1.110662, -0.497890, 0.670184, 0.428333, -0.126721, -0.561361, 0.045325, 0.946227, 1.015976, -0.537224, 0.059706, -2.225138, -1.084943, -1.220230, 0.628870, -2.296038, -0.352603, -1.319604, -0.788189, 0.459657, -0.254966, -1.729455, 0.218156, 0.255304, -0.960920, 0.369279, 0.109987, 0.390617, -0.434143, -0.344420, 1.335274, 0.516238, 0.920420, 0.319163, 1.259682, 1.342145, 0.291877, -0.466280, 1.299461, -0.778515, -0.086451, -0.126161, 0.545852, 2.344039, 0.022464, 0.910875, -0.163497, -0.824642, 0.518829, -0.882440, 0.754235, 2.921510, -0.625728, -1.772397, 0.244208, 0.840326, -0.686593, -0.713995, 0.035016, -0.176128, 0.837513, 0.380781, 1.277744, 1.274880, -0.689568, -2.461069, 0.606377, 0.614865, 0.816461, -0.804323, -0.219512, 0.407730, -0.344659, -0.248791, -0.982725, 0.780997, 1.402391, 1.330452, 1.416616, -0.292092, 1.367476, 0.305092, -1.249481, -0.118244, -0.509569, 1.092765, -1.532226, 0.468123, -1.473631, 0.765450, 0.018377, 1.393742, 0.566176, -1.265004, 1.754520, 0.150977, 0.475002, -0.986099, -2.299563, 0.713028, -0.530039, 1.498114, 0.798058, 1.245707, -1.568818, 0.235977, -0.982765, 1.495870, 1.850370, -2.151290, 0.381170, -1.062618, -2.211775, -0.215818, 1.538430, -0.515485, 0.028823, -0.182478, 0.805574, 1.001918, -0.229076, 1.273700, -0.885725, -0.656375, 0.459569, -0.101639, 0.476273, 1.167392, -0.078054, -0.728122, -1.091858, -1.854604, 1.358527, -0.840585, -1.374798, -0.036451, 0.261735, 0.297810, -0.619712, -1.524847, -0.010313, -1.107097, -0.563682, -1.289894, 0.307475, 1.871719, -0.522393, -0.476331, 1.219988, 0.454503, -1.463731, 0.670449, -1.193137, 1.489244, -0.600564, -0.897661, 0.233121, 0.423109, 1.164782, 1.268565, -0.013568, 0.633664, 0.515230, 0.069607, 0.364814, -0.862776, 0.702784, -1.287990, 0.984797, 0.029380, -0.591267, 0.181596, -1.573559, 0.427657, 1.151090, -0.560231, -0.708282, -0.077540, 0.757293, -0.863328, -0.405586, 0.467488, 1.316945, 0.051356, -0.605329, -0.946038, -0.487128, -0.695447, -0.767863, -0.448410, 0.467812, 0.178234, 1.199300, -0.394791, 1.040377, -0.590940, 0.624627, -1.177059, 0.943141, 1.224928, -2.564818, -0.917116, 0.006129, -0.137459, -0.682247, -0.766574, -0.266086, 0.189102, -0.280712, -1.975430, 0.158623, -0.524612, -0.525051, -0.272309, 0.731790, -0.149989, -0.528814, 2.040383, -0.490866, 1.025444, 0.899046, 0.181572, -2.503881, -0.879355, 0.136117, -0.623299, -0.031818, 0.608262, 0.716097, 0.809596, -1.128883, -0.206919, 1.426786, 1.182781, -0.347721, 0.011850, -0.413692, 1.522095, 0.056633, 1.062480, -0.311103, -0.225509, 0.180495, -1.514922, -1.598528, 0.472770, -0.744521, 0.203204, -0.947682, 1.236539, -1.413674, 1.407265, -1.143383, 0.846190, 1.266048, 0.337357, -0.531640, 0.391677, -1.482473, 0.074738, -0.171645, 0.943227, 1.578277, -0.801293, 1.404288, -0.796159, 1.843699, 1.555386, -0.231791, 0.335094, 2.273644, -0.019973, 0.173681, -1.692660, 0.552380, -0.735319, -0.446340, -0.640911, 0.357761, -0.719498, -1.201513, -0.719392, -0.908473, -0.068960, -2.447026, 0.535716, 1.383769, -0.811539, -0.002266, 0.039036, -0.305835, 2.950330, 0.968391, -1.878978, 0.321949, 1.498647, -0.842371, -0.094631, -0.575112, -0.196278, 1.484954, -1.742943, 0.288457, -0.339258, 0.488971, 1.281911, -1.881498, -0.697992, -0.833360, 0.476382, 0.639601, 0.111668, 0.324967, -0.551196, -0.426131, -0.130189, 1.687247, 0.205408, 0.928738, -0.567229, 0.568569, -0.651737, 0.525725, -0.481928, 0.180353, 1.976725, 0.224682, -0.685856, 0.460505, 0.985929, -0.564463, 1.850798, 0.291648, 1.944833, -0.018750, -1.301178, 0.002357, 0.142204, -2.720066, -0.955542, 1.815485, 1.612705, 0.991859, -0.992540, -0.118520, -0.328558, -1.529873, -1.274480, -1.158208, -0.940421, -1.770243, -1.382514, 0.257653, -0.275606, -0.750199, 0.299383, 0.301661, 1.167439, 0.698270, 1.387517, -0.319246, -1.928700, -0.587553, -0.098688, -0.321227, 1.037314, -1.590071, 1.040218, -2.178633, 1.563898, 0.205430, 0.162899, -1.046752, 0.481032, -1.865969, -0.844391, 0.339693, -0.069438, -0.172556, 0.009437, 0.730881, 0.626576, 0.561216, 0.795005, -0.984620, 0.763857, 0.524705, 0.921103, -1.168306, 0.455283, -0.803693, -1.097694, -2.696414, -0.872541, 0.793090, -0.655998, 1.795083, 1.077597, -0.966245, 0.068323, 0.065834, -1.416327, 0.707290, 0.217629, -1.395185, 0.032182, 0.449863, 1.138087, -1.017296, 0.271398, 0.499431, -0.824357, -1.829923, 1.133071, -0.133135, -0.775079, 0.553755, -1.270237, -2.807444, 1.389330, -0.481400, -1.295476, -0.658587, -0.806946, -0.215979, -0.885361, -1.678919, 0.809544, 0.130433, 0.581982, 0.445199, -0.504430, 2.000309, -0.280986, -1.367024, -0.213127, -0.167787, 0.389315, 0.548861, 0.099962, 1.259349, 0.765502, 0.358491, -0.226796, 1.252579, -0.324868, 1.527196, 1.413068, 0.059970, -0.270739, -1.771325, -0.616667, 0.527772, -0.704382, -0.179962, 1.299003, 1.739202, 0.425919, -0.616951, 0.807707, -0.614526, -0.716142, 0.962665, 0.749817, -1.684482, 0.408924, -0.136152, -0.371511, 0.071161, 0.192823, 0.727198, -0.898847, 1.023885, -0.670586, 1.448870, 0.012729, -0.150810, -0.998492, 0.307383, -0.863216, 0.806692, 0.075159, -0.660596, -2.125418, -1.418760, 1.119131, -1.119449, 0.922850, 0.075777, 0.213148, -0.697288, 0.148061, -0.993936, 0.743661, 1.360856, -0.779395, 0.888504, -0.289549, -0.216585, -1.393080, -0.502423, 0.203002, 0.834382, -0.655577, 0.736628, -0.019219, -0.780101, -1.041887, -0.756728, -0.931357, 0.413574, -0.305103, 1.683607, 0.269872, 0.196835, 0.682081, 2.138652, 0.114750, -0.311360, 1.293819, 0.534967, 2.789615, -0.039556, -0.564443, 1.713231, -0.075218, 0.363816, -0.651924, 0.330490, 0.027153, -1.917235, 0.305972, 1.319533, 1.176569, 1.320974, -0.646705, 0.835317, 0.852545, -0.179670, -0.980183, 0.428760, 1.058230, -1.810070, 2.982350, -1.240475, 0.327879, -0.455246, 0.655701, -0.993868, 1.133957, 0.243906, 0.011547, -0.586280, 0.168710, 0.637136, 0.219325, -1.501144, -0.297462, -1.342997, -1.355173, 1.745832, -0.271187, -1.405792, -0.805623, 0.223954, -1.833553, 0.788405, 0.038174, 0.032714, -1.057884, -0.609131, 0.747145, -0.562963, -0.368341, -0.149903, -1.566744, 0.118407, 0.990306, -0.581408, 0.384902, -0.222697, -0.286243, -0.837053, 0.379071, -1.694925, -0.148237, -1.001655, -0.939039, 2.387693, -0.014405, 1.235432, 1.215446, -1.041025, 0.739508, -0.459189, -0.652104, 0.090923, -2.610963, -0.003515, 0.430477, -1.491210, -1.313053, 0.209521, 0.502622, -0.451813, -0.428683, -0.352735, -0.924562, -0.247310, 0.016196, -0.403586, -0.181668, 0.296905, 0.423232, -0.896659, 1.017795, -1.011217, -0.256690, -0.509200, -0.182072, 0.628494, 0.165698, -1.358746, 0.688697, -1.117446, -0.109065, 0.002494, 1.320109, 0.150718, 0.106386, 1.517647, -0.731118, 0.390780, 0.744664, -0.005848, 0.972631, -0.165890, -1.411382, -0.663857, -1.132520, 0.357000, 0.765752, -1.421924, -0.435078, -1.222755, -0.314333, -1.109803, -0.353260, -0.505041, -0.748299, 1.898498, 0.835924, -1.412722, 0.673801, 0.238783, 0.700651, -0.122296, -0.065642, 0.863425, -1.393089, -0.241399, -0.717085, 1.417435, 1.291105}, - { 0.397165, 1.013243, -0.580456, -0.539900, 1.492228, -0.991986, -0.183508, 0.300911, 0.694721, -0.513061, -0.737393, -1.375032, -0.360335, 0.210935, 1.674464, 1.452875, 0.521385, -0.418202, 0.830911, 0.574499, -0.884327, -1.301128, 0.423649, 0.888449, 0.125116, -2.051598, -2.137657, 0.452855, -0.705826, -0.926460, -1.432225, 0.228289, -1.674709, -0.496074, -1.128256, -1.518343, -0.245230, 0.905738, -0.807916, 0.458934, -0.166920, -0.296758, -0.533006, -1.565342, 1.382351, 1.670604, 0.352162, -0.536369, 1.130132, -0.557981, 1.109414, 1.716403, -0.578993, 0.190693, -0.294384, 0.379111, -0.260579, -0.119545, 0.858231, 0.653759, -0.664195, 0.067498, -0.086708, -0.158172, 1.139665, -0.597605, 1.733270, 0.437946, 0.411139, -1.214143, 0.774154, -0.671738, -0.588775, 1.213029, -0.536960, -1.835787, -0.886063, 1.591681, -0.172947, 0.523314, -0.593065, 0.607766, -1.194639, -1.215624, -1.564887, 0.225557, -1.676564, 2.316875, 0.056636, -1.134164, 0.065339, 0.936080, -0.392343, 0.247315, -0.766660, -0.513602, 0.172231, -0.243505, -0.090825, 0.037499, 0.592879, 0.012768, 0.333559, 1.794526, -0.490554, 0.364454, -0.091941, -0.131372, -1.434565, -0.007194, -0.357630, 0.638191, -0.405450, 1.688971, -0.294326, -1.508083, -0.075706, 0.221664, -0.952836, -1.489164, -0.979668, -0.634263, -0.543435, 1.046351, 0.726939, 0.899171, -0.296379, -0.922750, -0.001154, -0.098650, 1.506151, -1.300368, -1.088969, 0.014904, -0.474047, 0.275806, -0.506889, -0.706342, 0.210445, -1.053886, -0.077953, -0.005184, 0.246824, -0.723736, 0.927091, 0.044494, -0.036872, -2.366461, 1.714686, -0.995875, -1.138391, 2.401925, -0.679129, 2.020354, -1.048464, -0.787486, -0.225321, 0.130664, -0.247893, 1.134072, 1.306830, 2.379118, -0.220800, 0.550274, 1.569736, -0.529171, 1.708259, 0.736169, -0.009291, 1.325264, 0.849111, -0.736453, -0.237229, 0.022160, 0.208047, 0.278328, -1.580354, -1.704031, -0.030604, 1.337086, 0.906555, 0.394265, 0.278084, 0.801610, -1.033360, 0.151163, 0.358357, 0.234279, -0.720662, 1.106666, -0.119077, -0.141364, 0.621292, -0.459466, -0.529440, 0.455796, 1.065438, 2.173995, 1.051766, 1.093550, -1.714514, -0.024252, 0.113096, -0.145251, -0.018128, 0.983392, -1.741264, -0.175012, -1.304080, -0.790993, 0.638753, 0.247880, 0.187980, -0.562990, -1.892071, 0.670358, 0.348319, 0.011634, 1.657741, -1.714747, 0.962067, 0.417057, 0.434243, -0.581941, -0.965226, 0.846370, -1.350911, -0.334557, -0.911635, 1.569505, -0.810260, 0.304121, 2.262833, -1.036997, 1.334691, 1.047509, 0.187256, 0.472405, -0.623094, -0.758513, 0.539508, -0.523055, -0.576230, -0.156583, 1.374668, -0.153779, 0.162651, 0.057473, 0.165653, 0.450271, 0.980888, -0.153102, 1.848653, 0.268405, 1.130774, -0.431838, 1.160608, -0.014931, -0.948217, -1.061217, -1.039321, -0.013790, -0.691267, 0.367589, 1.939296, 0.180247, -0.254123, -0.754973, -0.280432, 1.815686, -1.466435, -0.177793, 0.627913, -0.010726, 0.464367, 0.324016, -0.192304, -0.093668, 1.517820, -0.541341, -1.508760, -0.677816, 0.102409, -0.864010, -2.444298, -0.000053, 0.679846, 0.439393, -0.216990, 0.857101, 0.317781, -1.148404, 0.047849, -0.229306, 1.364337, -0.688216, 0.287174, -0.374897, -0.484994, 0.473971, 1.060714, -0.998795, 1.164440, 0.982305, 0.706425, 1.672443, -0.118692, 1.201890, -0.800778, 0.618435, -0.694790, -0.584943, -0.054823, 0.771585, -0.636139, -0.835438, -0.373417, -0.420539, 0.090531, -0.046146, -0.924013, 1.529983, -1.187986, 0.318064, -1.675146, 0.294715, 0.458003, -1.444916, -0.953439, -0.342391, -1.046806, 2.108878, -2.556422, -0.027927, -2.210886, -0.408940, -0.431539, 0.217322, 0.840138, 1.581377, 0.488810, -0.710729, -1.928737, 1.035245, -1.338092, -0.374711, -0.468776, 0.311324, -1.195143, -1.406755, -1.579034, 1.119445, -1.010654, 1.696116, 0.383855, -0.093121, -0.132160, -1.259138, -0.929384, 1.112618, 1.032500, -1.414062, -1.175238, 0.802387, -0.956024, -0.111402, -0.583350, -0.008058, -1.381822, -0.243236, -0.529014, -0.331936, 0.457004, -0.600269, 0.983720, 1.166432, 1.167615, -1.084497, -1.382124, -1.259676, -0.343323, 0.423589, 0.746341, 0.750604, 1.381899, -0.550310, -0.274333, 0.183110, 0.215127, 0.726726, -1.316570, -0.053437, -0.496814, -0.609472, 1.555306, -0.663982, 0.476021, -0.350185, -0.392853, 1.233200, -1.820066, -0.858947, -0.517410, -0.849511, 2.610362, -1.027193, 1.425857, 0.076560, 2.085185, -0.666659, 0.011869, 0.242314, -1.503478, 0.725732, -1.024908, -1.960281, 1.133102, 1.180238, 0.293429, -0.202228, -0.961507, 1.176178, -2.093014, 0.844525, -0.535320, 0.398338, -0.616420, -1.085451, 1.594190, -0.982022, 0.330121, 1.076506, -0.189050, -1.937682, 1.411678, -0.320164, -0.112501, 2.124958, -0.792276, -2.395392, -0.622417, -0.785656, 0.521785, 0.272260, 0.017130, 1.129384, 0.005096, 0.388710, -0.769363, 1.334164, -1.543026, -1.182599, -1.190754, -1.085749, 0.183249, 0.687015, -0.060892, -0.662871, 0.585874, -0.624947, -0.403026, -0.184735, -0.874062, 1.476311, -2.057559, 1.515078, -0.134726, 0.381779, -0.117573, -0.165749, -0.586940, 0.071684, 0.565734, -1.325014, 0.518892, 0.045777, 0.133149, 0.800403, -0.232123, 0.397268, -0.740767, -1.184987, -0.134066, 0.078891, -1.256274, 0.465483, -1.128717, 1.133862, 0.386876, -1.451837, 0.733721, 0.690130, 1.425783, 1.534748, 2.247993, 0.697512, -1.387960, -0.476790, 0.229547, -0.120366, -1.174757, -0.699294, -0.013259, 2.380414, 0.135271, 0.496015, 1.201388, 0.587390, 0.186619, -0.403154, -0.824730, 0.264890, 1.573664, 2.609306, -1.019358, -1.044406, 0.651605, 0.989380, -0.176321, 0.773894, 0.468863, 0.254116, -0.169025, -2.347446, -0.099215, 1.330931, 0.655789, 0.776291, -0.932055, 0.719848, 0.473719, 1.326288, -0.614428, -1.876394, -0.489932, -1.723081, 0.068322, -1.093716, -0.135400, -0.797543, -0.109965, 0.233379, 0.203365, -0.129450, -0.592535, -0.267019, 1.346790, 0.862872, -0.489456, -0.420004, -1.756073, -1.071652, -0.133473, 0.039600, 2.074240, -0.484601, 0.855653, 0.197005, -0.991124, -1.629591, -0.622496, 2.100167, 0.284515, -0.504327, -0.851226, -0.253184, -0.713808, -0.894247, -1.072590, -0.201595, 0.421528, -0.236077, -0.712958, 2.043358, -0.043320, 0.413787, -0.019062, -0.847061, 0.732291, -0.210591, -0.151418, -0.006481, -0.983195, -0.815408, -1.361210, -0.639488, -0.497659, -2.015811, 1.400416, 0.378386, -0.756485, -0.032055, -0.182408, 0.306899, -1.073931, -0.787714, 1.584902, -0.674140, -0.068315, 1.411891, 0.940210, -0.040609, -0.630662, -1.148931, 0.923472, -0.545150, 0.981498, -0.895652, 0.482536, 2.033854, -0.244415, -1.315528, 3.225701, 0.352066, -1.023610, -1.511474, 1.913982, 0.758779, -0.443437, -0.529319, 0.319506, -0.067334, 0.381064, 0.290573, 0.456645, 0.280961, -1.807991, 0.884565, 1.034516, -0.608102, 1.190114, -0.296458, -0.845326, 0.036126, -0.449852, 0.717928, 0.097068, -0.188536, -0.858467, -1.598724, -1.093997, -1.687368, 0.895467, 0.089667, 1.200765, -2.037735, 0.889267, 0.286117, 0.073212, -0.140695, 0.689518, 0.137357, 1.082286, 0.470574, 0.361196, 1.206347, -0.351229, 0.170791, 0.287571, 0.178035, -0.180093, 0.534996, 0.263364, 0.724114, -0.581904, -1.371533, 0.237724, -0.004415, -0.683002, 2.578116, -0.252388, -1.191188, 0.549791, 0.135916, -2.070560, 0.983012, 0.881802, 1.204644, -0.047328, -0.324176, -1.098115, 0.048772, -0.949597, 2.135715, 0.712094, 0.932682, -0.503885, -0.363873, -1.420392, -1.067636, -0.716267, 0.661703, -1.327474, 0.673860, -0.371546, -0.804773, -0.430799, -0.951913, -0.735669, -0.911689, -1.102980, -0.641041, -0.285290, 0.867187, -0.667877, 0.180071, 1.008283, -2.849576, 1.265435, 0.081812, -0.710423, 0.085976, 1.422108, -1.281950, 0.318320, 1.214755, -0.498410, -0.497919, 0.578317, -0.835989, -0.442451, 0.476271, -2.028645, 0.385499, -0.493140, -0.189132, 1.428288, 0.873565, 0.271294, 1.161797, 0.375750, -0.285562, -0.917284, 0.226130, 0.701356, -0.832818, -0.109478, 0.907364, 0.543434, -0.585035, -0.473771, 0.876048, -0.053585, -0.029816, -0.910200, -0.048843, -0.737399, 0.766513, 0.124387, -0.802724, 0.793690, 0.066668, -0.115733, -1.508182, 1.120544, -0.805954, 0.030200, -0.667911, 0.233937, 0.747659, -0.098865, 1.182375, 0.062250, 0.027103, -0.828543, -1.808298, 0.041475, -0.938712, 0.029264, 0.813584, 1.077040, -1.577606, 0.569054, -1.955849, 1.349359, 0.986165, -0.342974, -0.772643, -1.081286, 0.146076, -1.646757, 0.005101, -1.170061, -0.378279, -0.660019, 0.211732, 0.424259, -1.801814, 1.071551, -1.497200, -0.865461, 0.435804, -0.441309, -0.347799, -0.570818, -0.176797, -0.772572, -0.812724, -0.164012, 1.136114, 2.038723, -2.060178, 1.592079, -0.628180, 1.204005, 0.266001, -1.183349, 0.109093, 1.239659, 1.413736, -0.140175, 0.051579, 1.682037, 0.700888, 0.094187, -0.599841, 0.789042, 0.483594, -1.816020, -1.927299, -0.022867, -1.062248, -0.669560, -0.366063, 1.510807, 0.440085, 0.852795, -0.959855, -0.471377, -1.305850, -1.255451, 0.194569, 0.854528, 0.352462, 1.248448, 1.181572, -1.424885, -0.067211, -0.261307, 0.071001, 0.002598, -1.015030, 1.063262, 0.407647, -0.337667, -0.138938, 0.237099, -2.365273, 1.418566, -0.083945, -0.622927, -0.120568, 0.324560, -0.811707, 1.045303, 1.595960, 1.664763, -0.304785, 0.634798, 1.116530, 0.872638, 1.739248, 1.318437, 1.394335, 0.282168, 0.559300, 1.658901, -0.673098, 0.034962, -0.843634, -0.093505, -1.760403, 2.791938, -1.345091, -1.507774, -0.946118, -0.083032, 0.985762, -1.721708, -0.138330, 2.019631, -1.068158, -0.564243, -0.240727, -0.661027, 1.258696, -0.384826, -0.006633, -0.621674, 1.863888, 0.018377, -1.075452, -1.131522, -1.098377, 1.511057, -1.895211, 0.552905, 0.147495, -0.579017, -1.164777, -1.192730, -1.622515, 0.929313, 0.496331, -0.898122, -1.924117, 1.083638, 0.062886, 0.666875, -0.994803, 1.523607, 1.954164, -0.604461, -0.026265, 0.038715, 1.022189, -1.857650, 1.228304, -2.105043, 0.656992, 1.374356, -0.687370, -1.589268, 0.056068, -1.147126, 0.800845, -1.522622, 1.426880, -1.543379, 1.332054, -2.539925, -2.665321, 1.244479, -0.200120, -0.694736, -0.076692, -1.157592, -0.070607, -1.245970, 0.729948, -1.986842, -1.214955, -0.359448, 0.487568, -1.317303, -0.015963, -0.595365, -0.677435, -1.477851, 1.025504, 0.186488, -0.508259, -0.287635, -1.015793, -1.913439, -1.178704, 0.674931, -1.658258, -0.869825, 0.826468, 0.521938, -1.335775, 1.503503, -0.485949, -1.138972, -0.831556, -1.864080, 0.066715, 1.204529, -0.674494, -0.920612, 0.990302, 0.000057, 2.147314, 0.993250, -0.004424, -1.088735, 0.221127, -0.658918, 0.933950, -2.810119, -0.664787, 1.119514, 0.022332, 0.918084, -0.770271, -0.464918, -0.576764, -1.753612, 0.109423, -0.783739, 0.629155, -0.012059, -0.077541, 2.432145, 0.349570, 0.324868, -1.072159, -0.203559, -1.378302, 1.341603, -1.145280, 0.897667, 2.348561, 0.493341, 0.445898, 1.194975, 1.280826, -0.969170, -0.646426, 0.358792, 1.906271, 0.363987, 0.175523, 1.460580, 0.431918, 0.635002, 0.214738, 0.230721, 1.143089, -0.223680, -0.429203, -0.746523, -1.342414, 0.423669, -0.527728, -1.354080, -0.164750, -1.479178, 0.073326, -1.214989, -1.069311, 0.805245, 1.184325, 1.851132, 2.032746, 0.315416, 0.838836, -0.775030, 1.149079, 0.031178, -1.076797, 1.026517, -0.060305, 0.914207, -0.275591, 0.967725, 0.250999, 1.815894, 1.889946, 0.539597, -1.527363, -1.693071, 0.213160, 0.773761, 0.928913, 0.021693, 0.440817, 0.403192, -0.881883, 0.298685, 0.928666, -1.783505, -0.030726, -0.092533, 0.822809, 0.530357, -0.287657, 0.473233, -0.000458, -0.617272, -0.767754, -1.092669, -0.727288, 0.583267, 1.940487, -0.763870, 0.068994, -0.721327, -1.283543, -1.122680, -0.787161, 0.485245, -0.247060, 0.276673, -0.608908, -1.152376, -1.694388, -0.737618, -1.863922, -0.619567, -0.077332, -0.052195, -0.659540, -1.109050, 1.040345, 0.369637, 0.360629, -0.494231, -2.585324, 1.636622, 0.396589, 0.844310, -0.647005, 0.950636, 0.015331, 2.168065, -0.061672, -0.621585, -0.751694, -1.511472, -0.203541, -1.054258, 0.568334, 0.948488, -0.014217, -0.050380, -0.770955, 0.745348, -0.798678, -1.770285, 0.210004, -0.609788, -0.187561, 0.178575, -0.043360, 0.492854, -0.493384, -0.235027, 1.704422, 0.661987, -1.341384, -0.206832, 0.710416, -0.459237, 0.602122, 0.087450, 0.398596, 0.102924, -0.940552, -0.638300, 0.833441, 0.035435, -0.120362, -1.554961, 0.883311, -0.761279, -0.322088, -1.181379, 0.611799, 0.447693, 1.284874, 0.711726, -1.473228, -0.134845, 1.678077, -0.514873, -0.317416, 0.929697, -0.202839, -1.335955, -0.180716, -1.851322, -1.281358, -0.161038, -1.068422, -0.508089, -1.734120, 1.755854, -0.118352, -0.729091, -1.097951, -0.899883, -0.141881, -1.849814, 0.855135, -0.245930, -0.349054, 1.607943, 1.259316, -0.041316, 0.651590, -0.603995, 0.326055, 0.410159, -0.270400, 0.463104, 0.808764, -0.436575, 0.982555, -0.704839, -1.112785, 0.050886, 1.234191, 0.119707, -1.391682, 1.142380, 0.623903, 0.175978, 1.363032, -0.201635, 0.698795, -1.450035, -1.788043, -0.429758, 0.876772, -2.337312, -0.819558, 0.151950, -1.436024, 0.473987, 1.010934, -0.700244, 0.225473, -1.311483, 0.082341, -0.405167, 1.529808, -1.189607, -0.472468, 0.182775, -1.311952, -0.600972, 0.577411, -0.009055, -0.037942, 0.919991, 1.485913, 1.888338, 1.141237, -0.319185, -0.943602, 0.743923, -0.618982, -0.683383, -0.108076, 0.527764, 0.003615, 2.172374, -0.409060, 0.579223, -1.292404, 0.457985, 0.373857, 0.156080, -1.341538, -0.855673, 0.406710, -1.492688, 0.602127, 0.144247, 0.774026, 0.373067, -1.788833, 0.402933, -0.308195, 1.348921, -0.384136, -0.920051, 0.098612, -0.720738, -0.002986, 0.568578, 0.908365, 0.586925, 1.034261, 0.533148, -0.436075, -1.683587, -1.082477, -0.313418, 1.651783, -0.592197, 0.396849, -0.092580, -1.195874, 0.403448, -0.485698, 0.523988, 0.549782, -0.587060, -0.055816, 0.901204, -0.730951, -0.493023, 0.197538, 1.637919, -1.178621, 0.247565, -0.675938, 1.103452, -0.740748, -0.280723, -1.433761, 0.111209, 1.425659, -0.983491, 0.225714, 0.802251, -0.733176, -1.118379, -0.936064, -0.250265, 0.940377, 0.392265, 1.377372, -0.572520, -1.142183, 0.465204, 1.611640, -0.265715, 0.518948, 0.067850, 0.710987, -1.036429, 0.382771, 0.129837, 0.587012, -0.950874, 0.536973, -1.436531, -0.689113, -0.058135, -1.041584, 1.654180, 0.392586, -1.027425, -0.967038, 2.557432, -0.291319, 0.653046, -0.235383, 1.275973, 0.065896, 0.730570, -2.448999, -0.329564, 2.004240, -0.372871, -1.073615, -0.511041, -1.684215, -0.443890, -1.226017, 0.316717, 0.178127, 0.487975, -0.282163, 0.523434, -0.131077, 0.444634, 0.837972, -0.157197, 0.579473, -2.547596, -1.285968, 0.532960, 1.921268, -0.135470, 0.967439, -2.038306, 1.293984, -0.158821, -0.027326, 2.278564, 1.144071, -0.200812, -1.256030, -0.318251, -2.005130, 0.242267, -1.069012, -0.284217, 0.199585, 0.896775, -0.514176, 2.167861, 0.614264, -0.936390, 1.178507, 0.270925, -1.824308, 0.188437, 0.782127, -0.493720, 2.223413, 0.354851, 2.018176, 0.570242, 1.219917, -0.249343, 0.622620, -0.346390, -0.399315, -0.548299, -1.022983, -1.155953, -0.130904, 0.273317, 0.978461, -0.608401, -1.647908, 0.184279, 0.810287, -0.787266, 0.661509, 1.605829, 1.016966, -0.133203, 0.279700, -0.235610, 0.361927, -0.584311, 1.093198, 0.008754, -1.532752, -0.270824, -1.262523, -0.988209, -0.179451, -1.018919, 0.828744, -0.573839, 1.684596, 1.392579, 0.439995, -1.765784, 0.435890, -0.889822, 0.151531, 0.262388, -1.012277, -0.059778, 0.840136, 0.799204, 0.208205, -1.671962, 0.502075, 1.229162, -0.125882, 0.845284, 0.069196, -0.382556, 0.252484, -0.440008, 0.047510, 0.675985, 0.563107, -1.091485, 1.112734, 0.266755, -0.518919, -0.167283, -0.417478, -0.914600, -1.423158, -0.333006, 0.048717, 0.193935, -0.705966, 0.914987, 0.834823, 0.256370, 0.797875, -1.306289, -0.295400, 2.244984, 0.644642, -1.072073, 0.620122, -0.016667, -0.504186, 1.385618, 0.731098, -0.463120, -1.540487, -1.093301, 0.166048, 0.147985, -0.718910, -1.016870, 0.555133, -1.271938, -1.925448, 0.101491, -1.029753, -0.075627, 0.404883, 1.251100, 0.644834, -0.567768, 0.284192, 2.107924, 0.550819, -0.552165, -1.192165, 0.554937, -1.014702, -0.733524, -0.081792, 0.515482, 0.634166, -0.364457, -0.238577, -0.268734, -0.041544, 0.135510, -0.417914, 2.916407, 0.015797, -2.192772, 0.515619, 1.630348, -0.791589, -0.197421, -0.195284, 1.476410, 0.434930, -0.333828, 0.053909, -0.970011, 0.414807, 1.480048, 1.393122, 0.802339, 0.854854, 0.895922, -0.303554, 0.899648, -0.975613, -0.308197, 0.219391, -0.230040, 0.186740, 0.925866, 0.417965, 0.597649, -0.713923, 1.167621, 0.328905, 1.448967, -0.112932, 1.170066, -1.404335, -0.800320, 1.793739, 0.426801, -0.100557, 0.275142, 1.197628, 0.051983, 0.448278, -0.749623, 2.354262, 1.109195, -0.473079, -0.698012, -1.613571, 1.563238, -0.685555, 0.882413, 0.974648, 0.163695, -1.112031, -1.627131, 0.927566, 0.176114, -0.885563, 2.418413, -0.723907, -0.560105, 0.479165, -0.091062, -1.156969, -0.876483, -1.177464, 0.263696, -1.976069, -1.209861, -0.305374, -0.242932, 0.430786, -0.640024, -0.220310, 0.225922, 0.346959, 0.067511, 1.284607, 0.366528, -0.707390, -0.088889, 0.384762, 0.975804, 1.609133, 0.619673, -0.137634, 0.562913, -0.230148, 0.556894, 0.902223, 0.357592, 0.728751, 1.268838, 0.803898, -0.079388, 0.079856, 0.375413, -2.509264, 0.507776, -0.287254, -1.004033, -0.125700, 1.923997, -0.794907, 0.098509, -1.323465, 1.145717, -1.282874, -0.766311, -0.867325, 0.780057, 0.943058, -1.354061, -1.248836, 2.628673, -1.188433, -0.011985, 0.281432, 0.730555, -0.892609, -0.482564, 0.324827, 0.658382, -0.753904, -1.639422, 0.068105, 0.490382, 2.244291, -1.918844, -0.148750, -0.684208, 0.374435, 0.340328, 1.161137, -0.071882, 0.518898, -0.703716, -0.110852, 2.509352, 2.093817, -0.449572, 1.187744, -0.728107, -0.249509, 0.987956, 0.339305, 0.958742, 0.303890, 0.320119, 0.423103, -0.775123, 1.212366, -0.351111, 1.016296, -0.674091, -2.501006, 2.446033, -2.278802, 1.842239, 0.788251, -0.565050, 1.125615, -0.388716, -0.522565, 2.491460, 0.822352, 0.141667, -0.750588, 0.611911, 0.449374, 1.380384, -0.274680, -0.539762, 0.512576, 1.645470, -1.534226, -0.922108, 1.110062, 1.334627, 0.115820, -1.647299, -0.195381, -0.458523, -0.252955, -0.933064, -0.503764, 0.986628, 1.260784, -0.759830, -0.071975, 0.876477, 1.441792, -0.349743, 1.870463, 0.548576, 0.287054, 1.354089, -1.717919, -0.170754, -1.016045, -0.447286, -1.976991, 0.548402, -0.549829, 0.089444, 1.218849, 0.370793, 0.951227, 0.588013, -0.580036, -0.643248, -0.910640, 1.438594, -0.505967, 0.687048, 0.366989, -0.085095, -0.101571, -1.328757, 0.070949, 1.513642, 1.239131, 0.968287, -0.938592, -0.116198, 0.287351, 1.557072, 0.380167, 0.330294, 0.751386, -0.323665, -1.640435, 0.261170, -0.547946, 0.182125, 1.234738, 0.567418, 0.380160, -0.131957, -1.292398, 0.790147, 0.735507, 0.138818, -0.915601, 0.120142, -0.962137, 0.896186, -0.578152, -0.472585, 0.138948, -0.763740, 0.022882, 0.166726, -0.702651, -1.476695, -0.257259, 0.116727, 1.730281, 0.199988, -0.708443, -0.333589, -1.665536, -0.149149, 1.834016, 2.151336, 1.127975, 0.308087, 0.373495, -0.303064, 1.440773, -0.630913, -1.334871, -1.129584, -1.029689, 0.079386, -0.428245, 0.555001, -1.259533, -1.009153, -0.059438, -0.063241, 0.591327, -1.890788, -0.590260, -0.460150, 0.102828, 1.372895, -0.884909, 0.671261, -0.629259, -0.147019, -0.483911, -0.693447, 0.308495, 0.089822, -0.408924, -1.077792, -0.530027, -0.304773, 1.260625, 0.396429, 0.284699, 1.333392, -0.493525, -0.710373, 1.894289, -0.437894, 0.948040, -2.273871, 0.658644, -0.238045, -0.313590, -0.812465, 1.468542, 0.575877, 0.360305, 1.795106, 0.169486, -0.432028, -0.843700, 0.120695, 0.578715, 0.065451, 1.331402, -1.231441, 0.051677, -0.050893, 0.874599, 0.102771, -0.114611, -0.805531, 0.411342, 0.291069, -0.183424, 0.652902, -0.015211, -1.163806, 0.679734, -0.604136, -1.209186, -0.488448, 2.071763, 0.258051, 2.313012, 0.664351, 0.086171, 0.529126, 0.734480, -1.820898, 0.543178, -1.132422, 0.812873, -1.154533, -0.973957, 0.872888, -0.867346, 0.104281, -0.683787, -1.287753, 0.203521, -1.466883, 0.726687, -0.669409, -1.642887, 0.243638, 0.404730, -1.579346, -0.467921, -1.608945, -1.565189, 0.010344, -0.881127, 0.562881, 0.336656, 0.611620, -1.476012, 1.326930, -0.645465, 1.143072, 0.034473, 1.350514, -1.020672, 1.613501, -1.186017, 0.483309, -0.130746, 0.530022, 0.634901, -1.356251, -1.144554, 0.501416, 0.572082, 0.613286, 0.238656, -0.832476, -0.414336, 0.731217, 0.118715, -0.118858, 0.672333, 0.190017, 0.048240, 0.567320, -0.582577, 0.414128, -1.379102, 0.790471, 0.651375, -0.733238, -1.363121, 1.439715, 1.584037, -0.277708, -2.554428, 1.306954, -0.437707, -0.504707, 1.220431, -0.152823, 1.595543, 0.126981, -1.180687, 0.249681, 0.647380, 0.630621, 0.313623, 0.765850, -2.900500, -3.303523, 1.185714, 0.054460, -0.165652, -2.375898, -0.804519, 2.098995, -1.415622, -0.216533, -0.935896, 0.327855, -1.109653, 0.293332, -0.518584, -0.545300, 0.692576, -0.948004, 0.561145, 1.683479, -0.016410, -0.484285, 0.677927, -1.131978, -0.017695, -0.673110, 0.132621, 1.291736, 0.236017, 0.842079, -1.593563, -1.514015, 0.478058, 0.738149, -1.350765, 1.839759, 0.263632, 0.485873, -0.764458, 1.209548, -0.232850, -1.212482, 0.160941, 0.221139, -0.313204, -1.177407, -0.071451, -0.490443, 0.294966, 1.225241, -0.194419, -0.351101, 0.406079, 0.098960, 1.390620, 0.512852, -0.046521, 0.074328, -1.286073, -0.779270, 0.416905, -0.353483, -1.259813, -0.231825, -1.324767, -0.157746, -0.858386, 0.081216, -0.741442, -1.581220, -0.088274, -0.648006, -1.285647, 0.329954, -0.152852, -0.010646, 0.886167, -0.888970, 0.719218, -0.340030, 1.466504, 0.256619, 0.139483, 0.229837, -0.090738, -0.803683, 1.310234, 0.206572, 0.696312, -0.507660, -1.233633, -1.417408, 0.094465, 0.240760, 1.236947, 0.206237, -0.913517, 0.089803, -0.463440, 0.345613, -0.276818, -1.003987, 1.194634, 0.846662, -2.277870, 0.496492, -1.462631, 0.618247, -0.343449, -0.307712, -0.149370, -0.189576, -0.018098, 1.068241, -0.501542, -0.076766, 0.453663, -0.618614, -0.680308, -1.692198, -0.485179, -0.149138, 0.737073, -0.168336, -0.904415, 0.294250, -0.939049, 0.173665, -0.250626, 0.158001, 0.274539, -0.317398, -1.310713, -0.545455, -0.150464, 0.390347, -1.169685, 1.398452, 0.990622, 0.189081, -0.537010, 2.337118, -1.257338, 0.957166, -1.496867, -0.741272, -2.348381, 1.192102, -1.212610, -0.374928, -1.058540, 0.327936, -0.433567, 0.505167, -0.427829, 0.661485, 0.222501, -0.670071, 0.237348, -1.540000, -2.061018, -0.033358, -0.728823, -2.328176, -0.051036, -0.459774, 1.228559, 2.416640, -0.107654, 0.748115, -0.781208, 1.670915, 0.132010, -1.015404, 0.999682, 2.384465, 1.301584, -0.785052, -0.417741, -0.672693, -0.029084, 0.094555, 0.623491, 2.728020, 1.502916, -0.877483, 0.155415, -0.015707, -0.405176, -0.236822, -0.631064, 0.319606, 1.297784, -1.087908, 0.174124, -0.076167, -0.505147, -0.809030, -1.943043, 0.136739, -1.046144, -0.423037, 1.202147, -0.092956, -0.175132, 0.899443, 1.396401, 1.076323, -0.388606, 1.378765, -0.219231, -1.281035, -1.695118, -0.015007, 0.010439, -2.456599, -0.506445, 0.850283, -0.138269, -0.785406, -1.031753, 0.582159, 2.462929, -1.659679, -1.155389, 0.545949, -1.245920, 0.310823, 1.080250, -0.031741, -0.413151, 0.614000, -0.358160, -0.235399, -0.112365, -0.683979, 0.832791, 0.193398, -0.607660, -1.340490, 1.047581, 0.596241, 1.467915, 0.939091, 1.120401, -1.352468, 1.215207, 1.436960, -0.732410, -2.654247, 0.008885, -1.138698, 1.465157, -0.825924, 0.685024, 0.644868, -0.860580, -0.267594, 0.379159, -0.429768, -0.087730, -0.279403, 1.489474, 0.759342, 0.239830, -1.974403, 0.085981, 1.437545, -0.253262, 0.886746, 1.880575, 0.208539, 0.664334, -1.451539, 0.509580, 0.931895, -1.149280, 0.786774, 1.157106, 0.816212, -0.281738, 0.127584, 2.339799, 0.509222, -1.033789, 0.586580, -0.942695, -0.084261, 0.167013, -1.570451, 1.143556, -0.660218, 0.983057, -0.189598, 0.079672, -0.380039, -0.443600, -2.537944, -1.514686, -0.398951, -1.194957, 0.494843, 0.043024, 1.017436, 0.379102, 0.340251, -0.319400, 0.329107, -1.295414, 0.939502, 0.662077, -0.074217, -0.321973, 0.499451, 0.074870, -1.569448, -0.626595, 0.533295, -0.136236, -0.087578, 0.302762, -0.412854, -0.073030, 0.580241, 0.447351, -0.121875, 1.146031, -0.521349, 0.159193, -1.436947, -0.028461, 0.068828, -0.626219, 0.564983, -0.906080, 0.952413, 0.259524, 0.006516, 0.603829, 0.025686, -1.783251, 0.448770, -0.734675, 0.107121, 1.272138, 1.174165, 0.236960, -0.876997, 2.361819, -2.682853, 0.117541, -0.023641, 1.379353, 0.803803, -0.621744, 0.598930, -1.471486, 0.474012, 0.543439, 0.685675, 0.661789, -0.158290, -0.938646, -0.670896, 2.212399, 0.839741, -0.044773, -0.671575, 0.365275, -2.146453, 1.198179, -1.153192, -0.549083, -0.036929, -0.983908, 2.293072, 1.735079, 0.628446, 0.721753, 0.600133, 0.582798, -0.523204, 0.032583, -1.221926, -1.215665, 0.402089, -0.481074, -0.028942, -0.233776, -0.497505, 0.462949, 0.745113, -0.100864, -0.267948, 0.390793, 0.893291, 1.332542, -0.012540, 0.226293, -0.488826, -0.623131, 0.857024, 0.809355, -0.370802, -0.299769, 0.538008, 1.217249, -0.825350, 0.072128, 0.981082, 0.943361, 0.746459, 0.007035, 1.689610, -0.328155, 0.885951, 2.316369, -0.082614, 0.600612, -1.688602, -1.818172, 0.627140, -0.781718, 1.979232, 0.819654, -1.665447, -0.230631, 0.019247, -2.400888, 0.023960, -1.203340, -0.758735, 0.174163, -0.146234, 1.236742, -1.110132, -2.412550, -1.796617, -0.014729, -0.680455, -1.695064, -0.589239, 0.384307, -0.896246, -1.276065, -0.866761, -0.140503, -0.540092, 0.283740, 0.172720, -0.282033, -0.024479, -0.418907, -0.580290, -0.503915, -0.317764, -0.147941, -0.665039, -1.562225, 2.212594, 0.772808, -1.401726, 1.405759, -0.708724, -0.562863, 2.164387, -0.800690, -0.576602, 0.588868, 0.860081, -0.570663, 1.619220, -0.665632, -1.350726, 1.665801, 0.430768, -0.447337, -1.031981, -0.079927, -0.942012, -0.532382, 0.075355, -0.064279, 0.132681, 1.068462, 1.926675, -0.246771, -0.492698, -0.676899, 0.193022, 0.765448, 1.162647, -0.881228, -0.340151, 1.496364, 1.205763, 0.614682, 0.770093, -1.113256, -1.224761, -0.636850, 0.660647, -0.759184, 0.560615, -0.226773, -0.273978, -0.507550, -1.201339, -0.798108, -0.485434, -0.375008, 1.123249, -0.378017, 1.126276, -2.837037, 0.881684, -0.935741, -1.849805, -0.380961, -0.864460, 0.617076, 0.280093, -0.190078, 1.073084, -0.531239, -0.889670, 2.110510, -0.050891, 1.436276, -0.638693, -1.379672, 0.277191, 0.269296, -0.281233, -1.393950, -0.230429, -0.290333, -0.091841, 0.625541, 1.671257, 0.332189, -0.161260, 0.021590, 1.047973, 1.520658, 2.099310, -1.861004, 0.981232, 1.692147, -0.814497, -1.966067, 2.169220, 0.072916, 1.505243, 0.763117, -1.551761, -0.542919, -0.850673, -1.230988, 0.161452, 0.533740, -0.135508, -1.046377, -0.709611, -1.672621, -1.295074, 1.273690, 0.314765, 1.272708, 0.395974, 0.653686, 1.431843, -0.971168, -0.965527, -0.835438, 0.496336, 0.102767, 0.579225, 1.101141, -1.260901, 1.895400, -0.783972, 1.412787, 1.895628, 0.872840, -1.515590, 0.443156, 0.331600, 2.325603, -0.405547, 0.224604, -0.522058, 0.669011, 0.291745, 1.442230, 0.645074, -1.203986, -0.499406, 1.709448, -0.975612, 1.240354, -0.579431, 1.117174, 1.524427, -0.832680, 1.030992, 0.881017, -1.818458, -0.147766, -0.044665, -0.932805, 0.380122, -0.826019, 1.176583, -0.113659, 0.233640, 1.367826, -0.263428, -1.081921, 0.769340, 0.061917, 0.114528, -2.185859, -1.454126, -0.727477, 0.400318, 0.279792, -0.116409, -1.629704, -0.405234, 0.010474, -2.448582, -0.043404, -0.310471, -1.268816, -0.984170, 0.302353, -0.926017, -0.868598, 0.053239, -0.542015, -0.401421, 0.077799, -0.200145, 1.062340, -0.111325, -0.955607, 0.248791, 0.385922, -0.610505, 0.983054, -0.069882, 0.441888, 0.652133, 0.448182, -1.255545, 0.008112, -2.038255, -0.344128, -0.549804, 0.339182, -0.615087, -0.191508, 0.137452, 1.165776, 0.097682, -0.743089, -0.062058, -0.717742, 0.196693, -1.069627, -0.636575, -0.997994, 1.042843, -1.000091, -0.347453, -0.836343, 0.556808, 0.903287, -0.732237, -1.217378, -0.110155, 0.328476, 0.094987, 1.579063, 0.130745, -0.196275, -1.540321, 0.314876, -0.534833, -0.122595, 0.164125, 1.141626, 0.106168, 1.197337, -0.190700, 0.497927, 1.258429, 0.200880, 0.639565, 0.966567, 1.734824, 0.050708, 0.605365, -0.456036, -0.193784, 0.289869, 0.406997, -1.677760, -1.256517, 0.242973, -1.295178, 1.225694, -2.530927, -0.152172, -1.933035, 0.414754, 0.288575, -0.570761, 1.624921, -0.707886, -0.439120, -0.763228, 1.129255, 0.494880, 1.346285, -0.095113, -0.088143, -0.434238, 0.018755, 1.096819, 1.013867, 0.595391, 0.517538, -2.005412, 0.918430, -1.970405, 0.604673, 1.216764, 0.041556, 0.273192, -0.393882, -0.272409, 0.220257, 1.121026, -0.240540, 0.403301, 0.873845, -1.265651, -0.474487, -0.349072, -1.630702, 0.713711, 0.845071, -1.640876, 0.096995, -1.172894, -0.820825, -0.448604, 1.087055, -0.095377, -1.736098, 0.347036, -1.006678, 1.328835, 0.270501, 0.863969, -0.742108, 0.862811, 1.961977, -0.179190, 0.838324, 1.884084, 0.572505, -0.502721, -0.554854, 0.365675, -1.065485, 0.201362, 0.656517, -1.731796, -1.856655, 0.066540, 2.191710, 0.449745, 0.031513, 1.716506, 1.332202, -0.737949, 0.114851, -0.016051, 1.028060, 0.916967, -1.232769, 1.091492, 0.840699, -1.289351, 0.981032, 1.535006, -0.862765, -0.609101, -0.159624, 0.396094, -0.858998, 0.659323, 0.386074, 0.999655, -0.734986, 0.635846, -1.264374, -0.326362, 0.538521, -0.596312, -1.396536, 0.578547, -1.244717, 0.249707, 0.019738, 0.726646, 1.341496, 0.693245, -0.764104, -0.579150, -0.597454, -0.435730, -1.016227, 0.385477, 0.323094, 0.850710, -0.566080, 2.462378, -1.442009, -0.692983, 0.099039, 1.269528, 2.072926, 0.340807, 2.159814, 0.287166, -0.002212, -0.253869, -0.828347, -0.533333, -0.742308, 0.604367, 1.363179, -0.301418, -0.614678, 0.111863, 0.773280, 0.406986, 0.937791, -0.855776, 0.176260, 0.646559, -1.987868, -0.344742, 0.300434, -1.263957, 0.784390, 0.326909, -0.054248, 0.139724, -0.374451, -0.312420, 1.349540, -0.092197, -0.450479, 0.984307, 0.286306, 0.045054, 0.069429, -1.209063, -0.584471, 0.040896, -0.844330, -0.539930, -0.699213, 0.794677, -0.423521, 0.350182, 0.067849, -0.448465, -1.406314, 0.488233, 0.199481, -0.203344, 0.175522, -1.595010, -1.831918, 1.945528, -0.455928, 0.932654, 0.517514, -1.124600, -2.291537, -0.669505, 0.331033, 1.621062, -0.147579, 0.161541, -0.811083, -0.204189, -1.272435, 0.448533, 1.896475, -1.133960, 0.495441, -0.948400, 0.540013, 0.233433, 0.608463, 1.133013, -0.233525, 0.623912, -1.748656, -0.465469, -0.913890, -1.381276, 0.038838, -0.442184, -0.019918, 1.233026, 0.968645, 0.737109, 0.232598, -1.115302, -1.865655, -0.903959, 0.729599, 1.062438, 0.507872, 1.967925, -0.286403, 1.208560, -0.720140, -0.167629, 0.673381, -0.586803, 0.829526, 0.047502, 0.036207, 1.740825, 1.104409, -0.374411, 0.796347, 0.389891, -2.117978, 0.899245, -1.453943, 0.500538, -1.244588, -0.133989, -1.056114, -0.331852, 0.290895, -0.864773, -0.159921, 0.846899, 1.642079, 0.352519, 0.195101, -0.487219, 1.300938, 0.055601, 0.454052, -1.191289, -1.001641, -0.219728, -0.594717, -0.478197, -1.377474, 1.910553, -0.085079, 1.395549, -1.354383, 0.679572, -0.235601, -0.037421, -0.801886, 0.765023, 0.203645, 0.942272, -0.539130, 0.059268, 2.139118, -0.847996, 0.046247, 2.413610, 1.409484, 0.964430, -0.222640, 1.248723, -0.014154, 0.319524, 0.762013, 0.063606, -1.238826, 1.206852, 0.662122, -0.960769, 0.123010, 0.934355, -0.320293, -0.703127, -0.529595, -0.431325, -0.531930, 1.228471, -1.372110, 0.105589, -1.309925, -0.380860, 0.676895, 1.767930, 0.531131, 1.068405, 1.204329, -0.184111, -0.338321, -0.400304, 0.544788, -0.015787, -0.402434, 1.196565, -0.802071, -1.462558, -0.730348, 1.376692, -0.010214, -0.298392, 0.240798, -0.164863, -0.821951, -0.653595, 1.652045, 0.924946, -0.421356, -0.356883, -0.351145, 0.911578, -1.096141, 1.644679, 1.196682, -0.676876, -1.203089, -1.600585, 0.328852, -1.140360, -0.594403, 0.230661, 0.320870, -1.511643, 0.207653, 0.214748, -0.635145, -0.976731, 0.617397, 1.090502, 1.234640, 0.505767, 1.111139, 0.022716, -3.149945, -0.720575, -2.197897, 1.499600, -1.069327, -0.561402, -1.457112, -0.135610, 0.027123, -0.311725, -0.058628, 2.291447, 0.771153, 0.819679, -1.429604, -1.335327, -0.097726, -2.757061, -1.104743, 0.730313, 0.581257, -0.989072, -0.343689, -0.427930, 1.497801, 0.882999, 0.122588, -1.215907, -0.027390, -0.148392, 1.143721, -1.165282, -1.038509, 1.757744, -0.399405, 1.089612, 2.513361, -0.367846, -0.626835, -1.012237, -0.426295, -0.309423, 0.849768, 0.315756, -0.245734, 0.472882, 0.098225, -0.457671, -0.590318, -0.265516, 0.467979, -1.864364, -0.501889, 0.266760, -0.721410, -0.837682, -0.148171, 0.044028, -1.161403, -0.680787, -0.172898, 0.637237, -1.168705, -1.585799, 1.119484, -1.356566, -0.674577, -0.764301, -0.469159, -2.687289, 1.108895, -0.664008}, - { 0.332413, -0.090476, 0.111142, -0.105650, -0.492015, 0.563133, -0.308829, -0.996772, -0.710380, -0.639434, 0.741823, -0.587970, -0.431323, -1.459216, -0.628200, 1.121755, 0.310918, -0.027048, 0.484048, -2.768089, 2.414129, -0.286526, -1.069539, 0.042255, -0.970093, -1.056685, -0.290018, 0.323992, -1.961179, 1.377456, -2.746641, 0.655005, 1.514401, -0.858676, 0.453182, 0.470032, -0.393851, 0.599810, -0.727723, -0.485360, -0.296523, -0.335302, -0.001939, -0.390613, 0.692754, -0.297787, -0.683839, -0.245338, 1.014253, -0.334746, -1.176200, 0.919842, -0.858995, -0.485241, -0.372096, 1.224724, 0.261900, -1.241396, 0.666264, -0.508043, -2.133119, 0.285788, 0.770445, -0.512387, 0.331296, 0.674873, -0.023667, -0.494804, -0.433539, 0.620181, -1.186752, 0.430033, -1.021986, 1.048476, -0.542787, 1.510876, 0.674521, 1.156451, -0.922329, 0.613084, 1.168869, -1.414186, 0.548016, 1.877142, 0.538212, -0.062034, -0.394426, -0.764928, -1.339256, 0.797266, -0.531602, 0.347888, -0.606943, -2.260128, 1.040178, 0.898863, -1.368123, 0.261365, 1.016327, 0.260189, 1.498519, -0.255452, -1.379712, 0.500720, 0.484281, -0.274261, 0.151794, 0.077884, 0.539540, -1.176680, 0.428913, -0.277737, 0.331718, -1.256974, 0.128732, 0.838281, 1.414778, 1.033964, 0.201801, 0.948353, -0.715105, 0.341861, -0.401363, 0.678465, 0.156881, -1.388737, 1.729869, -1.264426, 0.436415, -0.543501, -1.489277, -0.537544, -1.011361, 1.954747, -0.072545, -0.015704, -0.147238, 0.535290, -0.892774, 0.536171, 0.407434, -0.203392, -0.240277, 0.354210, -0.802281, -1.031150, 1.487040, 0.308466, -0.642546, 0.071923, -0.763645, 1.384431, -0.016321, -1.970340, -0.443420, -0.584331, -0.718848, -0.123439, 1.040007, 0.718988, 0.222775, -0.581023, 0.213477, 1.744051, -0.341766, 1.107654, -0.832242, 0.478139, -0.120128, 0.893301, -1.433044, 0.364631, -0.707983, 1.481024, 1.076907, 0.152833, 0.316878, -1.092690, -0.257177, -0.772108, 0.242734, -0.847114, 0.373323, 0.799211, -0.046355, -0.358662, 0.069984, -0.651776, -0.098871, 0.553035, 0.184604, 1.720749, 0.157912, -0.533023, -0.031688, 0.658297, 1.102183, -0.668551, -0.351309, -0.116471, 1.710932, 1.060462, -0.333532, -0.095624, 0.327515, 0.444750, -2.349119, 1.673249, 1.056736, -0.396374, 0.220611, 2.504459, -0.554302, -0.213013, 1.830962, -1.107491, -0.598477, 0.045907, 0.129413, -0.263897, -0.597111, -0.435294, -0.701651, 1.376132, -1.023851, -1.784413, -0.241752, 0.209999, -0.381562, -0.223928, 0.995270, -0.552373, -0.965910, -0.954263, 1.138501, 0.473679, -0.189117, -0.540881, -2.493774, -0.060180, 0.543873, -1.284099, -0.659967, -1.443070, 0.145057, -0.895853, -1.782699, 0.206764, 0.718617, 0.447118, 0.544709, 0.160530, 1.044261, -1.168851, -1.715942, -0.426890, 0.440709, -0.710538, 0.590257, -1.481875, -0.941835, 1.017842, 0.490278, -0.618954, 1.846469, -0.576514, -0.120600, 2.045900, -0.548250, 0.715270, 1.510966, 0.594488, 0.239436, -0.392097, -0.518888, 1.207397, 0.215695, -0.409388, -1.146060, 0.391842, 0.420014, 0.741190, -1.642495, 0.038210, -1.403337, -0.777395, 0.052477, 0.439552, -0.337797, -0.222298, 0.655024, 0.585861, -1.219943, 2.736820, -0.551745, -0.982342, 2.268393, 0.091445, -1.707475, 0.058399, -0.692335, -0.321801, -0.550962, 0.385469, -0.341551, 0.027301, 1.866760, -0.846516, 2.269717, -1.072989, 1.770384, 0.083566, 0.272755, 0.942532, -0.250030, -1.875477, -0.457772, -0.340411, 0.738559, 0.000197, 1.213037, 0.849176, -0.269861, -0.072165, 0.102182, 2.261038, 0.073744, 0.148187, 0.502755, 0.663832, -1.226263, 0.363262, 0.447514, -0.216750, -0.247224, 0.566976, -1.420693, -0.053375, -0.733065, -0.130164, -0.780495, 1.490258, 0.928009, -0.980839, -1.922868, 0.757046, 2.360650, 0.371054, 0.476158, -0.906443, 0.312970, 0.766959, -0.704138, -1.163653, -0.670671, -0.689074, -0.671234, -0.125076, -0.134199, 0.839989, -0.460121, 0.935337, -0.008488, 1.019224, 0.759984, -1.377837, 2.028915, 1.826818, 0.613339, -0.193261, 1.451456, 1.298127, 0.270833, 1.214569, 1.296101, -1.962302, -1.450883, 0.197587, 0.448897, -0.355898, 1.518468, 0.809314, 0.539606, -0.049976, -0.923559, -0.371532, -1.147110, -0.817528, 0.183345, -0.223735, 0.915319, -1.547933, 0.445157, -0.747921, 0.377815, -0.713546, 0.904311, -1.161063, -1.090289, 0.178200, 0.826774, 1.079186, 0.297022, -0.203784, 0.310157, -0.831840, -0.283096, 0.412864, 0.827500, -2.221612, -0.182601, 0.819123, 0.190311, 0.194056, 0.207361, -1.169707, 0.644312, -0.486385, -0.365451, -0.941410, -1.367268, -2.307357, 1.664220, 0.442388, -1.655976, 0.326389, -0.046664, 0.874415, 0.140329, 0.085505, 0.980782, 2.339350, -0.500732, -1.198792, 0.845504, 1.272187, -2.992011, 0.272694, 0.352522, 0.906393, -1.504858, -0.065103, -0.843170, 0.161277, -0.260392, 0.538582, 0.853036, 0.196121, 1.077102, -0.226425, -1.895123, -0.313965, -0.572552, -0.587900, 1.045139, -0.986904, 0.412959, -0.176403, -0.321011, 0.499103, 0.444863, -0.948091, -0.373640, -1.000724, 0.314558, 1.382282, -0.455950, -1.283715, -1.248909, 0.512849, -0.887994, -0.397828, 0.240441, 1.121143, 0.334973, -0.961739, -0.457526, 1.809203, -1.619508, 0.166722, -0.844253, 0.209446, 0.187729, -1.444352, -0.612184, 1.054032, 0.558481, -0.149892, -0.203386, -1.326215, 1.697874, 0.307984, -0.329882, 1.599952, -1.173515, -1.728018, 0.553763, -0.398294, 0.122929, -0.477630, 0.780699, 0.733659, 0.962108, -0.766103, -0.637033, 1.722177, 0.217015, -0.345815, 2.161558, 0.061773, -2.496190, -1.338003, -0.991100, -0.558270, 0.391743, 0.422292, -0.179245, -1.653523, 0.533463, 0.727673, -0.860690, -0.378647, -0.448850, -0.988305, 0.212703, 1.025908, -0.065756, 0.279577, 0.413206, -0.439237, -0.312943, 1.316437, 0.223352, 0.130142, 0.087801, 0.102658, 0.673192, -0.712053, 0.661451, 0.829606, -0.582947, -0.247915, 0.425853, -0.485600, -0.734955, -1.370681, 0.820578, 1.265371, 2.209562, -0.269679, -0.012571, 1.065734, 0.887827, 1.435880, -0.199550, -1.667014, -0.367064, -0.134792, -1.748803, 0.481537, -0.479872, -0.624758, -1.574703, -0.147887, -0.886725, 0.369281, -0.232004, 0.012470, -2.083078, 0.723738, 0.837940, 0.473451, 0.262049, -1.161261, -0.722633, 0.835566, -0.439135, 0.521020, -0.601784, -0.794508, 0.127931, -0.816449, -1.080561, -0.391566, 0.321305, 1.566316, -0.060631, 0.125768, -0.011606, -1.129203, -0.437153, -0.668726, 0.583097, -2.083591, 1.157958, -0.254565, -0.572011, -0.207830, 1.178302, -0.625917, 0.149176, -0.272977, 0.963374, -1.584610, 0.543515, -0.554689, 0.473338, -0.272569, -2.171537, 0.016032, -0.153908, 0.595323, 0.012496, 0.826651, -1.279603, -0.379394, -0.536605, -1.366260, 0.444574, 0.155408, 1.794734, 1.679658, 0.756814, -1.175797, 0.658997, 0.750576, -2.226382, 0.612725, 0.212362, 0.008456, 0.405550, -0.306795, 0.625620, -0.267137, 0.100022, 0.067766, 0.558592, -0.640202, -0.654459, -1.689198, 0.794818, -1.365268, -0.312364, 0.279432, 0.821647, 0.254142, 2.284136, -0.261828, -0.078930, 0.693253, -0.170263, 1.256426, -0.797634, 0.911959, -0.517969, -0.903680, 1.695689, 0.443434, 1.590053, 1.620189, -0.024819, -0.626617, -1.283893, -1.054684, -0.112331, -0.034263, 0.004174, -1.733980, -1.051281, 0.048925, -0.596698, 0.325219, 1.279105, -0.937609, 0.674835, -0.455320, 1.604386, -0.606526, -0.623002, -0.322564, -1.268396, 0.586967, 1.518035, 0.217431, 0.151262, -0.644681, 1.697620, -0.921071, -2.291254, 1.072662, 0.427007, 1.902025, -0.460736, 0.384503, -0.889487, 1.261442, 0.314857, -1.082276, 0.171244, -0.249381, 1.581279, -1.637765, 0.121682, 0.808878, -0.357868, 0.209678, 0.647120, -0.009759, -1.685765, 0.617450, 2.305940, 0.056446, 0.767286, -1.771028, -1.283960, 1.342832, 0.623596, -0.066315, -0.199515, 0.650273, 0.264588, -0.744608, -0.746418, -2.124202, -0.146926, 0.392638, -1.538700, -0.271547, 0.301499, -1.651731, -0.146944, -1.121951, -0.784411, -0.412355, -0.524026, 0.943538, 1.620827, -0.404759, -1.057480, -0.998717, 0.858370, -1.998713, 0.333596, -0.995064, -0.561418, -1.615057, -0.519505, -1.148545, -0.835220, -1.434511, -1.620710, 0.838094, 0.952118, 0.549566, 0.564244, -1.288459, -1.798690, -0.434689, -1.026014, 1.312105, 0.335384, 0.532218, -1.385370, -0.708757, 0.548970, -0.060770, 0.617430, -2.796243, -1.091676, 2.088774, -0.491811, -0.424752, 1.466917, 1.043665, 0.107828, -0.408104, 1.422861, 0.046745, 0.489890, -0.076826, 0.933259, -0.821984, 0.549958, -0.354484, -0.622192, -0.610304, -0.459022, 0.470213, 0.913912, -0.078251, 1.460776, -0.078061, -1.562451, 0.741141, -0.803167, 0.043003, 0.697627, 1.377150, -0.061913, 0.100843, 0.146320, 0.722686, -1.073459, 0.739537, -0.157894, -1.467302, 0.357267, -0.953141, -0.423063, -1.740439, 0.607853, -0.503574, -0.271799, -0.206298, 0.567419, -1.183112, -1.500188, 0.810370, -0.298685, -1.009744, -0.600005, -1.279845, 0.552013, -1.612481, 0.292148, -0.749283, -1.314620, 0.941991, -0.930493, -0.060125, -0.241817, -0.531869, 0.061162, 0.647767, -0.901355, -0.184766, 1.702293, 0.420983, 0.491773, 0.859071, 0.760141, -1.033019, -0.383732, -0.978214, -0.612003, 0.703203, 0.518546, -1.418451, 0.003646, 0.616851, 0.915675, -1.169185, -0.050293, 1.333933, 0.862519, 0.402817, 0.795916, 0.796625, 0.740740, 0.349167, -0.529555, 1.702156, 1.571571, 0.558439, 0.677786, -0.038789, 0.406366, 0.719938, -1.509139, 0.779539, -0.452586, 1.512160, 0.793720, 0.289071, 0.882045, -0.223399, 2.227741, -0.803339, 2.033337, -2.107007, 0.947627, 1.315363, -0.920506, -0.168807, -0.015158, -0.314552, -1.276389, 0.883355, 0.705430, 0.536489, 1.409183, -0.533939, 1.127232, 0.562946, -0.924352, 0.066195, -1.071521, -0.494558, 0.839034, -0.916701, -0.557743, -0.453364, 1.580799, 0.980236, 0.377979, 0.208521, -0.645774, -1.129338, 1.044617, 0.692552, 2.159659, 1.368088, -0.199366, -1.249165, 0.080794, 0.483180, 1.287076, -0.110163, -0.531105, -0.498655, -2.068255, -1.393150, -1.710954, -1.461273, -1.013984, -0.237610, 0.892408, -0.237737, 0.756205, 1.966613, 0.991563, 0.262238, -1.139088, -0.318029, 0.022481, 1.152952, -0.368783, -0.582549, -0.471548, 0.156034, 2.334373, -1.017766, 1.290749, 1.638450, -0.850097, -1.181241, 0.250034, 1.317944, 0.542569, 1.383254, 0.238320, -0.485503, 0.751033, -2.136729, -0.444880, -0.443161, -0.617829, -2.419981, 0.445541, 0.951887, -1.128313, 1.678103, -0.091826, -0.417388, 0.492196, 0.968676, 0.091234, -0.446133, 1.349090, 0.630067, -0.769798, 1.263931, 0.904641, 0.195466, -0.380730, -1.278928, 0.016286, -0.754500, -0.013241, 0.626080, 1.581112, -1.354169, 0.625483, 0.216052, -0.667792, 1.794916, 0.085767, 0.205481, 0.453476, 0.079927, -1.572281, 0.362329, 0.501201, -0.882164, 2.152445, -2.434957, -0.470505, 0.997812, -1.266957, -0.033494, 1.440470, -1.014112, -1.574884, -1.623940, -0.935002, -0.654050, 0.687626, 0.162400, -0.960659, -0.676304, -0.454858, -0.522163, -1.435989, -0.021196, -0.911292, 0.205341, -0.531980, -0.280608, 1.366761, 0.249688, -0.553740, 0.482486, 1.687059, 1.010648, 1.688699, -0.076617, 1.131603, 0.892899, 0.276267, 1.156595, 0.492346, -0.174117, 0.566770, -0.399723, 1.458423, 2.129884, -0.867126, 1.322380, 0.707254, 0.491617, -0.317481, -0.086859, 0.005343, -0.231006, 2.020493, 0.318070, 0.149524, -1.174234, -0.576451, -0.660870, -1.011631, -0.805260, 0.129546, -0.869773, -0.278761, -0.632811, 1.893211, 0.514338, -0.206982, -0.486175, 0.502145, 1.224112, -1.714737, 0.245386, 1.045557, -0.276084, 2.507840, 0.163897, -1.261247, -2.472059, 0.708976, 0.795227, -1.762789, -0.220855, 0.229522, 0.257277, 1.059348, 1.519520, -0.009878, 0.210398, 1.013724, 2.126493, 1.285697, -0.182820, -0.172843, -0.288383, -0.540512, 0.363419, -0.604089, -0.398068, 1.016660, 0.688912, -0.564958, 0.270841, -1.941296, -1.524301, -0.738495, 0.552349, -1.434486, -1.404625, -0.780554, -0.302889, 0.144368, -0.113578, 1.625405, -2.288239, 1.287383, -0.510163, -1.497400, -0.705719, 1.024657, -0.610147, 0.668245, -0.324842, -0.814347, 0.889092, -2.608135, -0.059007, 0.947085, -0.346749, -1.001543, -0.619302, -2.843781, -0.062318, 0.135680, 0.466214, -0.434046, 0.335925, -0.309873, -0.960881, -0.142906, 1.002613, 1.106483, 0.228058, 2.442204, -0.565412, -0.444695, -0.456349, 0.225989, -0.312006, 0.390162, 0.951283, -0.595653, 0.850771, -0.132953, 0.807768, 1.646481, 0.010370, 0.323289, -0.514807, 0.696271, 0.214713, -0.797228, -0.590987, -0.050820, 0.667784, 0.105420, -1.204762, -0.687476, 0.875144, -0.227006, 0.810107, -0.447727, 1.187477, 0.955497, -1.410668, 0.274056, -0.453666, 0.709610, 0.325851, 0.264748, 1.582527, -1.397160, 1.528939, 0.049409, 0.392065, -0.605957, -1.376246, 0.779464, 0.168978, -0.731870, 0.440385, -0.173564, 0.730714, 0.831391, 1.609627, -1.223613, 1.708416, -0.711428, 0.395162, -0.662251, 0.904203, 0.681037, 1.392846, 0.112167, 0.264960, 0.628740, 0.431578, 0.287971, 0.823200, 0.116816, -0.261785, 1.426073, 0.903004, 0.116679, 2.135556, -1.252390, 1.075709, 1.376183, -0.130948, -1.793751, 0.531978, -1.092502, 1.211683, -0.923700, -1.724505, 0.234736, -0.473431, -1.960848, -0.282608, 0.807219, -1.688597, -0.138767, 0.285142, 0.075576, 0.490162, -0.204860, 1.458962, -1.017185, -0.354230, 1.201092, -0.474558, 0.904509, 0.339038, 1.077130, 0.846492, 0.188238, -0.923617, 1.346188, -1.017959, -1.206872, -0.682074, 0.210293, -0.183542, 0.465513, 0.286795, -0.216632, -0.058660, -1.343618, 1.793348, -0.292750, -0.009871, -0.351329, -0.176400, 0.878920, 1.223189, -1.226511, -0.340374, -0.872841, -0.668045, -0.454802, 0.140583, 0.247231, 1.850850, 0.816583, -0.642174, 0.125794, -0.643081, -0.526527, -0.603531, -0.986176, -1.139736, -0.620508, 0.558131, -0.051135, -1.269712, 0.852580, -0.393241, 1.157152, 1.127215, -0.122800, -0.795520, -1.568631, 0.691127, -1.110720, -1.579454, -0.367857, 0.063579, 0.951263, 0.168815, 0.984382, 0.985160, 2.020338, -0.041965, 0.683118, -0.295213, -0.379882, 0.866387, 0.019367, 0.733344, 0.160788, 1.634291, -0.043567, -0.030991, -0.165895, 0.276940, 0.063929, 0.002003, 0.799766, 1.276322, -0.175220, -0.328382, -0.120359, -2.769161, -1.479419, -0.925248, 1.178652, 0.251587, 0.295968, -0.557262, 0.274799, 0.983573, 0.945575, 0.258738, 1.850200, 0.773688, 0.925497, 0.278006, 0.476557, -0.333587, 0.658399, -0.226439, -0.563261, 1.423737, 0.292970, 0.422005, 1.331200, 0.873546, -0.594567, -1.040073, -0.004369, -1.233165, -1.243156, -1.477960, -0.873411, 2.010043, 0.398684, -0.351185, 0.237653, -1.022324, -1.269352, -1.265228, 0.969638, -0.277355, -0.530677, 2.626909, -0.163811, 0.318196, -1.394060, 1.930060, 0.261448, -1.647303, 1.056629, -1.129607, -0.486615, -0.802456, 0.323884, 0.671083, 0.985620, 0.267940, 0.873013, -0.850153, -0.371616, 1.240962, 0.576713, -0.666320, 1.318217, 1.646316, 1.216780, 0.470782, -1.346875, 0.387081, 2.100512, -0.128241, 0.754347, 0.187386, 1.479303, -0.414287, 1.468910, -0.372294, 0.903044, 0.848381, -0.576310, -0.258010, -0.708103, 1.098543, -0.794369, 1.326326, -1.158041, -0.027106, -0.225750, 0.585936, 0.018906, -0.077030, 0.798248, -0.349698, -0.682187, 0.952738, -0.239098, 0.920637, 1.208988, 1.162882, -0.011993, 2.127491, 0.581514, 1.422003, -0.135716, -1.010212, 0.039345, 0.045045, 0.696660, -0.130550, 1.944229, 1.502976, 0.613750, -0.307565, -0.091203, 0.633993, 0.118580, -0.813341, -0.767566, -1.079818, -0.282050, 1.553281, -1.086964, 0.510802, 0.919374, 0.879507, -0.302522, -1.034653, 0.151852, 1.361147, -1.038318, -1.750124, 0.101119, 1.747966, -0.372003, -0.613706, -0.591185, 0.950532, 0.307471, -0.476075, -0.040320, -0.618066, -1.720594, -0.597755, -0.297946, 0.347925, 1.305076, 0.769385, 0.175688, -1.583593, 1.324695, 0.915440, -0.897743, 0.764686, 0.378435, 0.827679, 0.765396, -0.265554, -0.127362, -1.099631, 0.410024, 0.419753, -1.030247, 0.398574, -0.930050, -0.187034, 0.896231, 0.347772, -0.738487, 1.125493, 0.159707, -0.296675, -0.736772, 1.444376, 0.708270, 1.301820, -0.613415, -1.131274, -2.425478, -0.210039, 0.859825, 0.087560, -0.288042, -0.286937, 0.189502, 0.421060, 2.704326, 0.869582, -0.789697, 0.394062, 2.060898, -1.384599, -0.975317, -0.959449, 1.630341, 0.710030, 0.138189, -0.425804, 0.323462, 1.558027, 0.218489, 0.186915, -0.188354, 0.875418, -0.631404, 2.515853, 0.888233, -1.138928, 0.931494, 0.791801, -1.934849, 0.330313, -0.191361, 0.034512, -0.845609, 0.811131, -1.122497, -1.563081, 0.355550, 1.042817, -0.358564, -0.836795, 1.096931, 0.821378, -0.843018, 0.949655, 1.483863, -0.213964, 1.712181, -1.595074, 0.962693, 1.015877, 1.857027, 0.856355, -1.293958, -0.458723, 1.342438, 1.857567, 0.681817, 0.149496, -0.488124, -1.522765, -2.437259, -0.469027, 1.695409, 0.695268, 1.503875, 0.930953, -0.553585, -0.494742, 1.336754, -0.309437, -1.474055, -0.910071, -0.493953, 0.919408, 0.487805, 0.372066, -1.334930, 2.768972, -0.739934, -2.537957, 1.993227, -0.481223, 0.579137, 0.097511, -0.266998, -0.782373, -0.348708, -0.612770, -0.081083, 0.638289, 0.097007, 0.069784, -0.013636, -1.983485, -0.483091, -0.338076, 0.131448, 1.162878, 1.169703, 0.386729, -1.077208, 0.450685, -0.674963, -1.117238, 0.094733, -1.453760, -0.639298, -0.439775, 0.079282, -0.498095, -0.520192, 0.344522, 1.245484, 0.636502, -0.879362, -0.682212, -0.201300, -1.042150, 1.128293, -0.645169, 0.073426, -1.120832, 0.895656, 0.125561, 0.194086, 1.552879, 0.352898, -1.841795, 0.387979, 1.341562, -0.935230, 0.772880, -0.069439, -2.171020, -1.729386, -0.481882, -1.099033, 0.659894, -0.138947, -1.027644, -0.059817, -1.503294, -1.371742, -1.052331, -0.235903, 1.609249, 0.581964, 1.721283, -0.243545, -1.947487, 0.014905, -1.370168, 0.080897, -0.813126, 0.046892, 1.212364, 2.142939, 0.923298, 0.015547, -1.076693, 0.181366, 1.364048, 1.086883, 0.904162, -0.607959, 0.397086, -0.125301, 0.679773, -0.193204, 0.315042, 0.154997, 0.059522, 1.464326, 0.121211, -1.014883, 0.763274, 0.851236, 2.298345, -0.030669, 0.048745, -0.432413, 1.535197, 0.689044, -0.904760, -1.249941, -0.505129, -1.011775, 1.495330, -0.558128, -1.383847, 0.142089, -0.017155, -1.568275, 2.043560, 0.011999, 0.126786, -0.162554, -0.043844, -1.379454, -0.500392, 0.254474, 0.707366, 0.816757, -1.226395, -0.666966, 2.009572, -0.233156, 1.147893, -1.728117, 1.635403, 0.931182, -0.982141, -0.569492, -1.384807, -0.005323, -0.461772, 1.005790, 0.044195, -0.942073, -0.783637, -0.695629, -0.041599, 1.590665, 1.222531, 0.303378, 1.409049, 0.095492, -1.089426, 1.286694, 1.688999, 2.117612, 1.059940, 0.672189, 1.007068, 1.132985, -1.102660, -0.196325, 0.139877, 1.946525, 1.016517, 0.114356, 0.354442, -0.483027, 0.355104, 1.830137, 0.287580, 0.592634, 0.916866, -1.576712, 0.383925, 0.578369, 0.515323, 1.230483, -0.574325, 0.368397, 0.189826, -0.489736, -0.394374, 0.809553, -1.453355, 1.350374, -1.291178, 0.654567, 0.090665, -1.883666, -0.651559, -0.748650, -0.468110, -1.007841, -0.313019, 0.612921, 0.618019, 1.055759, -0.287164, -1.423864, 0.584640, 0.032046, 1.088973, -0.357387, 0.748128, -0.435306, 1.527493, 0.443135, -0.880351, 0.521328, -0.346296, 1.686460, -0.512587, 0.601966, 0.436588, -1.314965, -0.319078, -0.880068, -0.092162, -1.035020, -1.259117, 0.503484, -0.171935, -1.232785, 0.368860, -1.345035, 0.027177, 0.951496, -1.295035, 0.810210, -0.176469, 0.748114, 0.490939, -0.982091, -0.212023, 0.109433, 0.227544, -1.969052, -1.046004, -1.190753, -0.632195, -0.897640, 0.844773, 0.176071, -2.254886, -0.828966, 0.380993, -0.314232, -1.485790, 0.338232, 2.849200, -0.244255, -0.014193, 0.808252, 1.154426, 1.759918, -1.070352, 0.184412, -0.551133, -0.067449, -0.206060, -0.721926, -0.614675, -1.057866, 1.288226, 0.546093, -1.819086, 0.875635, -1.186228, -0.706844, 0.420428, 0.464173, -1.970815, 0.040265, 0.979257, 0.722564, -0.083365, -0.993187, -0.332314, 2.124213, 0.385350, -0.943470, -2.423453, 0.484566, 0.982158, 1.116549, -0.236137, -0.605190, -0.956017, -0.344289, -1.984211, -0.717507, 1.357101, -1.764415, -1.494770, -0.020111, 0.142458, -1.385483, -0.225463, -1.223360, -0.144176, 0.472324, 0.155263, 0.641433, -0.124007, 1.400785, -1.247499, 0.462295, -0.237960, 0.932353, -0.156990, 1.854269, 0.601584, -0.534695, -2.231608, -0.702490, -0.475160, -0.955694, -0.904631, 0.310338, 0.277823, 0.781322, 0.121412, -0.232620, 0.645961, 0.368690, 0.381196, -1.088444, -1.693116, -1.111578, 0.295593, 0.045498, -0.085718, -0.640119, -1.212959, -0.516827, -0.469387, -0.039691, -0.649467, 0.859894, 0.308341, 1.593292, -0.251972, -0.880161, 0.072534, 0.082881, 2.164468, 1.075309, -0.340336, 0.691023, 0.235370, -0.431032, 0.850657, -1.539289, -0.746202, 0.790461, -0.911253, -0.108639, -2.308335, -1.161708, 0.278767, -2.033837, -0.504813, 1.063949, 3.009235, -0.837237, 0.865540, -0.382273, -0.507635, -2.082772, 1.776487, 0.338300, -0.641904, -1.568420, -0.560583, 0.085281, -0.262701, -0.087924, 0.182183, -0.125335, -1.403393, 0.921833, 1.590404, 1.160873, -0.848099, 0.901084, -0.568654, -0.021222, 1.820698, 0.685168, 0.923379, 0.252517, 1.588853, 1.191792, -0.279060, 2.825582, 1.190414, -0.533850, 0.365552, 0.241109, 0.996154, -0.721186, 1.446907, -1.013355, -0.718090, -0.233487, 2.684663, 0.993903, 0.660959, -1.915303, -0.986402, 0.110624, -0.523912, -0.155422, -0.945023, 1.446938, 0.347144, -0.319638, -0.529896, 0.818895, -1.314871, 0.304520, 0.233512, -0.837869, 0.919282, -0.019769, 1.741808, 1.532410, 0.516846, 0.505614, 0.838958, -0.648456, 0.864061, -0.708655, -1.448713, 0.160097, -0.122849, 0.152219, 0.062212, -1.648547, 0.667071, 0.536972, -0.264216, 0.789347, -2.212946, -0.479004, 0.584909, 0.851930, -1.355208, -0.519634, -1.066701, 0.579433, -0.275726, -0.172861, -0.029156, 1.548625, -0.112870, -0.374078, -0.489253, 0.844263, 1.116492, -0.571217, -0.764394, 0.615710, 1.423027, 0.166701, 0.080406, -1.555876, 0.446003, -0.120918, -0.431988, 1.063977, 0.312575, 1.983829, -0.596960, 0.083516, -0.597356, 3.026318, 0.603033, 0.062867, 0.381198, 0.882725, -0.098218, 0.780584, -2.143364, -0.017192, 0.834249, 0.907809, 1.280190, -0.853680, 0.631535, -0.219623, 1.462403, 0.309000, 1.357172, -1.254189, -0.403433, -1.475000, -2.061593, -0.714903, -0.361631, 0.893654, 1.362963, 2.086599, 0.211993, 1.341075, 1.747539, 0.507176, -0.335751, -0.822882, -0.950875, 1.540854, 0.873600, 1.197219, 0.168600, -0.485274, -0.614645, -0.934519, -0.454649, 0.838339, -1.181235, 0.275976, -0.540647, 0.672620, 0.083545, -1.491835, 0.468006, 1.074482, -2.561683, -0.452692, -1.117312, 0.168179, -0.408032, -0.505593, 0.817083, -0.442046, -0.131498, -1.126604, -1.569494, 0.355053, 1.131362, 0.713010, 2.154716, -0.139501, -0.598514, 0.943933, -0.542753, -0.382539, -0.563194, -1.705040, 0.886024, -0.379644, -0.140228, 1.120338, -0.924376, 2.414372, 0.524540, -2.293547, -0.559688, -0.070296, 0.750848, -0.406359, -0.254353, 0.344181, 1.013552, -0.007486, 0.746620, -1.535494, -1.486353, 0.004643, 0.956255, -0.748508, 0.459997, -0.531270, 0.070060, -0.053732, 0.734850, -0.181851, 1.037690, -1.404738, 1.968833, -0.505541, 1.692548, -0.421221, 0.948021, -1.858878, -0.955996, -1.863547, 0.476828, -0.702769, -0.124104, 0.170128, -1.936151, -0.858897, -2.853552, 2.323096, -0.617532, 1.485035, -0.256558, -2.372216, -0.653720, -1.247326, -1.109409, -0.566794, -0.137462, 1.509960, -0.414510, 0.994967, -0.876768, 1.515747, 0.612384, 0.002270, 1.729010, 1.317656, -0.369445, 1.199532, 0.245638, -0.150042, 1.365083, -0.289579, 2.121218, -0.077187, -0.147791, -0.808945, 1.310684, -0.310651, -0.185196, 1.118677, -0.454398, 1.563441, 0.886451, -0.924288, 0.238867, 0.649060, -2.260550, 0.620375, 0.320366, -0.414299, 0.852355, -0.050526, 1.230372, 0.087838, -1.496737, -2.252890, -0.872837, -0.033618, 0.432355, -0.326513, -1.256874, 0.865369, -1.200442, -0.172117, 0.678513, -1.892742, 0.378145, -0.634113, -0.497496, 1.057485, -2.047675, -1.678784, -0.090789, 0.095704, 0.183354, -0.055582, -1.294250, -1.289254, 3.114116, 0.103514, 0.666552, 0.637755, -1.813854, -0.517618, 1.734209, 0.072069, 0.977124, 0.116245, -0.841680, 0.801202, -2.088752, 1.338923, -0.293964, 0.258428, -0.739118, -0.542725, -0.452166, 0.090850, 0.882999, 0.713458, -0.362415, 2.440426, -0.536291, 0.016272, -1.744044, -0.110782, 1.313432, 0.264208, 0.552443, 0.197899, 0.739995, -0.449176, -0.905973, 0.429931, -0.419163, -0.600859, 0.272287, 0.759419, -0.392657, 1.017944, -0.162004, -0.328590, 1.680606, 1.139587, 0.641349, 1.715772, -2.174243, 0.008907, -0.158503, -0.209823, 0.093558, 0.620487, -1.483951, -2.298613, 2.090426, -0.479152, -0.372819, -1.676218, 1.556108, 0.294399, -0.199987, -0.503534, 0.974420, -0.891336, -0.181579, -0.303365, 1.247258, -0.304895, -0.330361, 0.749201, 0.726542, 1.033187, -0.426316, 0.686416, 0.588549, -1.046024, -2.265826, -0.569353, -0.974339, 0.790326, 0.301721, 0.051718, -0.408592, -0.497722, 1.313081, 1.564986, 1.936315, 0.901129, 0.331794, 0.263559, 0.396322, -0.878191, 0.420524, -0.614101, -0.048997, -0.834269, 0.705883, 0.250932, 0.302256, 1.503717, 0.533281, -0.085617, 0.068483, -0.982903, -1.700810, -0.308505, 0.654750, 0.127592, -1.526186, -1.279243, 0.689861, 1.368979, 0.482244, 1.852208, -0.370026, 1.246650, -1.487595, -1.333163, 0.708514, 2.147604, -0.584943, -0.212347, 1.200645, 1.572517, 0.193984, 0.064371, 0.439960, 0.220258, 0.294378, 1.689126, -0.863359, 0.906264, -0.163464, -0.094013, 1.055880, 2.419452, -0.010445, 0.954804, -0.708368, -0.488587, -0.187337, 1.789069, 0.251934, -0.636422, 1.745223, -2.032678, 0.587446, 0.389559, 1.229073, 1.070143, 1.737303, -0.256530, -0.323728, -1.016176, -2.597538, -0.439331, 2.120449, -1.636866, 1.661878, 0.174542, -0.609478, -1.462647, 0.138561, 0.475717, 0.761625, -2.056225, 0.519877, 0.520113, -0.058895, -0.223880, 0.487315, -0.600184, 0.111154, -0.520312, -0.740846, 1.001395, 0.269978, 0.061772, 0.795532, 1.153259, 1.945393, 0.386760, -0.194931, 1.117340, -2.547908, 0.275350, -0.291035, 0.121162, 1.168407, 3.004040, 1.206682, 1.860609, -0.553566, 0.436475, 1.509270, -0.079995, 0.648278, 1.520170, 0.654764, 0.642654, -0.103263, 1.431932, -1.672136, 0.675699, -0.358547, -0.368306, 0.465448, 0.850044, 0.548496, -1.096597, -0.154846, -0.588313, 0.500140, 1.866052, -0.722612, 0.694591, 0.342565, -2.186830, -0.268416, -1.208641, -0.252158, -1.056763, 0.726534, 0.720627, 0.528133, 1.618752, -0.471104, 1.252454, -0.255487, 1.021059, -0.093140, -1.126807, 2.117621, 0.861237, 0.464975, -0.611850, -0.340385, 0.272237, 0.949431, 1.179052, -0.367280, 1.360045, -2.030464, -0.575869, 0.553540, -0.858014, -1.017025, -0.675501, -0.547098, 0.523372, 0.772294, -0.304150, 0.586481, -0.530548, 1.554712, -0.108600, 1.136066, 1.108995, -1.031884, -0.009019, 1.093613, -1.632689, 1.833036, 0.476835, -2.287449, -1.048623, -0.890507, 0.350744, -1.675494, 0.005564, 0.502717, 1.097235, -0.486465, -0.191010, 0.305804, 0.368751, 1.427304, 1.539862, -0.179160, 1.119569, -0.038261, -0.889175, -0.835013, 0.045541, 0.075318, 1.266535, 1.736014, 1.063173, 0.626145, 0.333170, 0.255021, 0.031490, -0.641407, -0.198054, -0.420347, 0.534582, -1.828737, 0.079254, 0.020063, -0.101433, -0.231313, 0.563658, -1.594141, 2.160435, -0.816095, -1.346262, -1.275690, 0.755728, 1.756966, 1.766581, -0.440514, -0.720601, -0.200484, -1.164140, 1.138163, -1.487541, 0.623498, 0.322107, 0.567950, -3.297139, 1.047993, 0.016092, 1.125722, -0.452980, -0.745867, -1.266897, -0.358085, 0.168158, 1.054676, 0.092128, -1.170075, -1.726595, -1.283115, 0.045051, 1.534116, 0.196328, 0.590823, 2.194469, -1.296712, -0.988617, -1.626554, -0.902247, 0.615704, 0.291430, -0.111737, 0.312272, -1.681273, 0.581683, 0.273723, -0.823948, -2.025354, 0.405095, 1.725184, -0.288222, -0.722230, -0.128972, 0.883248, -0.825437, -0.458363, -0.131714, 1.339205, -0.840309, 0.149015, -0.497098, -0.403865, 1.003031, -0.946653, -0.545340, 0.030427, 0.916683, -0.904023, 0.182776, 0.677697, -0.083794, 0.984866, 0.463448, 1.186617, 0.311456, 1.690295, -0.111194, 1.911908, 0.164051, -0.945799, -0.228923, -0.373503, -0.399616, -0.307168, 0.458569, 1.050193, -0.596638, 0.873968, 1.337634, -0.428005, -0.573460, 0.318270, 1.244357, 0.855243, -0.287462, 0.136807, 0.891417, -1.137386, 1.848981, -0.979447, 0.892591, 1.767642, -0.529270, -2.029587, 1.249933, -0.215381, -0.217828, 0.159267, 0.411966, 0.686067, 0.760065, 2.328399, 0.711063, 0.545938, 0.081809, -0.765622, 0.467794, -0.890438, 0.082604, -0.755636, -0.505535, 0.512611, 0.276619, -0.186899, 0.190696, -0.196591, -1.168548, 0.881956, 1.345716, -0.601134, 0.435059, 0.509830, 0.513517, 0.514264, 0.901260, 0.045446, 0.063921, -0.034987, -1.735626, -0.563004, -1.697156, -0.288659, -0.616832, -1.328834, 1.049242, 0.189247, -0.222868, 2.113902, 0.614681, -1.008804, -1.107196, -0.189478, 1.963143, -0.750138, 0.170991, -0.204833, -0.091046, 1.044515, 0.744053, -1.841359, 0.612544, 1.076216, -1.005134, -0.679932, -1.677453, 0.089280, -0.332413, -0.453023, -1.385983, 0.125332, -1.633041, -1.896588, 0.448557, -0.013762, -1.760384, -0.524433, 0.557467, -0.266541, 0.072338, 0.118336, 0.609771, -0.027556, 1.407273, 0.831244, -0.687850, 1.681442, -0.097458, -0.614217, -0.881784, 0.217327, -0.417206, -1.255519, 0.813493, -1.480549, 0.375462, 1.831120, -0.710142, -1.009675, 0.391348, 0.406062, -0.297669, -0.371393, -0.307198, 1.349222, -0.343637, -0.202090, 0.537860, 1.055116, 1.315835, -0.844899, 0.264139, -0.593706, 0.609911, 0.570792, 1.552975, 0.653723, 1.001575, 0.446941, -0.189771, 0.677163, 0.104507, 0.525414, 1.317384, -1.440901, -0.112591, -0.371190, 0.378998, -0.071970, 0.541138, -1.696789, -0.348236, -0.652484, -0.377636, 0.573607, -0.506238, -2.064206, 2.449420, -0.716128, -0.364978, -1.081102, -0.315148, -0.468687, -1.144765, -1.122754, 0.024735, 0.145602, -1.032534, 0.076636, -1.741415, -1.211276, 0.532220, -0.448361, 0.164402, 1.486762, 1.178449, -1.921136, 1.082708, -1.011338, -0.891680, 0.753722, -0.916344, -1.823174, -2.347032, 0.365740, -0.819248, 0.234528, 0.511664, -0.056260, 0.513134, 0.908545, 0.235031, -0.682080, 1.233327, 0.582038, 0.406516, 1.459117, -1.081929, 0.651435, 1.182063, -0.598188, -0.006139, 0.316261, -0.918778, -1.112414, -0.646592, 0.178023, 1.338533, 0.711151, -0.474747, -0.112315, -0.798427, -1.162901, 0.457819, 1.741466, -0.180283, 0.315345, -1.688611, 2.574100, -1.171745, 0.392363, -0.026236, 0.895544, -1.343784, 0.512195, 0.451340, 1.112745, 0.798560, -1.048851, -1.389675, -1.462066, -2.488136, 0.417974, -1.436160, -0.004976, 0.455494, -0.005369, -2.055607, 2.736575, 1.002447, -0.428647, -0.650870, 0.645672, 1.605069, 0.802797, 2.566659, -0.721702, -3.715870, -0.161722, 0.063394, -1.053157, -1.069728, 0.014219, 0.183666, 0.808778, 0.657955, 0.689469, 0.964673, 0.146299, 1.118653, 0.950320, -2.009126, -0.252710, 1.252590, -0.026809, 0.534395, 0.607846, -2.124931, -0.336858, 0.246401, -1.309629, -1.849358, 0.327338, -0.187302, 0.702739, 0.259581, 0.246545, -1.555428, 0.243621, 1.375778, -0.851046, -0.013468, -0.184796, -1.976612, 1.069405, -0.794829, 0.660585, -1.459874, 1.347781, -1.181936, -2.609951, -1.077556, -0.468379, 1.438542, 1.189707, 0.745681, 1.139844, -0.336271, 1.190919, -1.034352, -0.366102, -2.191987, 0.236598, 0.486523, 1.556511, -0.219674, 1.470187, -0.854409, 0.267112, -0.377824, 0.520864, -0.056385, -0.798936, 2.074886, 0.032204, -1.217375, -2.063449, -1.285310, 2.097838, -0.940798, 1.610754, 0.304585, 0.457574, -0.190280, 1.142872, 0.824898, -1.373873, 1.054125, 2.023367, 1.372094, 1.033876, -3.208257, -1.014925, -1.688032, -1.700707, 1.261731, -0.727562, 1.071518, 0.593905, -0.314304, 0.716525, -0.441557, 0.115823, 0.189055, -0.435241, 0.104709, -0.392234, 0.542895, -1.655906, -0.570715, -2.399701, -1.575283, -2.348050, 1.250436, -0.182142, 1.184673, 0.310305, 1.541319, -2.274974, -0.026447, 2.122438, -0.471230, 1.222152, -0.289662, -1.055175, 1.879468, -0.428710, 0.031256, 0.339502, -0.228955, -2.475960, 1.110290, 2.435115, -0.272329, 2.677902, -0.005717, -1.316622, -0.951097, 1.510561, -0.963104, -1.506390, 0.210581, 0.879858, 1.406979, -1.301724, 1.836559, 0.419276, -2.014292, -0.982244, 0.225676, -0.119721, -0.658737, -1.212684, -0.284910, 1.108327, -0.807252, 0.419883, 0.924399, 0.419658, 1.649688, 0.579223, 0.999730, 3.067601, 1.383958, -0.454842, 0.267337, -1.908974, -0.351093, -1.831236, 1.108781, 0.711495, -0.840474, 0.951482, 0.466303, 0.694084, 0.770827, 0.003384, 0.262934, 0.242803, -0.585688, -0.695810, 0.317708, -1.713778, 0.132656, 1.782296, 2.769799, -0.937690, 0.758895, 0.455591, -0.273472, -0.929014, 0.483657, -0.849874, 0.942370, 2.475276, -0.772635, -0.333510, 0.665444, -0.226170, -1.101538, -1.030999, -0.929564, 0.722965, -0.021152, -0.030918, -0.150515, -2.408038, -0.285652, -0.744000, -2.462561, 0.389895, 0.315245, -0.601865}, - { 2.337321, -0.429642, 1.022885, 0.253261, -1.401816, -0.989984, 0.830947, 0.597094, -0.571317, 1.690383, 0.315999, 0.009381, -1.025589, 1.024117, 0.108649, -0.092137, 0.346022, -2.055616, 0.457025, 0.353586, -0.729094, 0.597740, 1.496967, -0.055598, -1.501531, -0.899054, -0.825994, -0.128391, 1.115745, 0.324774, 0.563254, -0.099426, -0.225081, 1.297083, -0.147710, -0.171278, 1.274669, -1.084272, 0.580317, 0.631473, -0.060033, -1.063733, 0.774318, 1.144561, -0.691132, -0.717214, -2.486493, 1.636143, 0.152745, 0.433073, -0.154226, -0.384905, -0.399353, 1.216924, 1.193847, 0.839150, -1.136556, -0.242710, 0.323263, -0.641451, 1.390098, -1.462946, 1.447529, -0.751584, 1.055429, -0.635006, -0.490759, -1.512379, -0.976371, -0.698039, -0.573942, -1.526660, 0.466892, 0.045109, -0.020500, 0.600991, -0.097354, 0.780374, 0.450068, -0.551631, 1.366202, 2.039244, -0.558707, 0.804681, 0.341823, -0.149477, -0.635017, 0.170413, -0.756009, 0.463339, -1.288935, 0.313820, -1.007160, 0.311133, -0.298115, 2.501487, -0.752617, 0.344394, 0.233995, 0.735958, -2.328878, -0.662946, -0.448013, 0.422403, 0.160125, -0.366557, -0.233235, -0.379479, 0.176164, 0.161456, -1.362242, -0.682515, 0.758324, -1.012404, 0.262362, -0.887453, 0.346873, 0.714343, 0.975859, 0.318502, 0.144590, -2.413029, 2.009182, 1.155543, 1.038931, 0.905366, -0.583997, 0.211819, 0.978822, -0.622996, -0.255847, 0.240733, -1.912822, 0.054255, 0.583236, 0.240213, 0.636038, -0.278756, -0.014958, -1.188565, -0.401841, -0.698944, -0.772357, -1.315150, 0.793620, 1.407082, -0.289240, -0.178556, 0.337260, 1.258786, 0.612380, 0.707650, -0.770249, 1.522771, -0.689677, 1.667840, 0.223367, 0.366234, -0.661446, -0.454998, -1.666422, -0.644142, 1.769614, 0.884764, -0.655267, -0.318731, 0.034353, 1.389980, -0.816701, 0.283389, -1.483604, 2.045331, -0.690412, -0.316124, 0.595790, -0.607315, -1.721786, -0.307827, -0.206785, 1.276525, 0.440553, -0.129481, 0.789993, 0.783763, 0.004633, 0.666672, 0.963664, -1.313744, -1.027659, 0.260147, 0.776592, 0.552861, 0.239684, -1.050638, -0.818517, 0.241157, -0.512810, 0.338181, -0.181470, 0.718335, -0.052284, 1.379860, -0.213368, -0.533347, 0.200093, 0.115612, 0.475863, -1.172010, -1.116714, 0.261349, -2.293406, 0.150527, 1.015968, 0.521186, -0.314344, -0.306312, -0.306492, -0.830002, -0.595450, 1.167307, -1.905297, 1.567927, -0.236749, 1.434784, 0.568149, -1.684704, 0.791314, 1.505137, 0.674921, 0.946931, 0.467427, -0.018506, -0.966801, -0.395042, 0.927785, 0.304687, 1.248909, 1.594708, -0.046561, 0.629306, -1.351146, -0.447544, 0.703029, 0.223122, 0.069064, 1.788974, 0.572610, 2.200482, 0.750343, -0.561570, -0.023846, -0.112072, 0.568679, -0.412031, -1.032621, -1.124866, 0.128356, -1.569295, -0.683512, -0.191803, -0.582371, 0.231644, -0.663476, -1.257372, 0.197796, -0.124597, -0.781056, -0.682931, 0.107269, -0.783870, 1.185933, -0.611333, -0.789881, -0.733025, -1.447164, -1.196054, 1.248218, -0.440393, 0.865784, 0.803660, -0.063488, 1.356028, -0.682631, -1.229464, 0.830787, 0.727385, -0.316417, 0.663418, 0.728818, -2.299477, 0.136863, -0.363375, 1.034682, -0.620474, 1.326379, 0.270204, -2.776911, 0.486999, -2.130793, -0.188870, -1.056379, -0.318623, -0.236779, 0.523245, -3.162778, -0.858741, -0.214063, -0.977505, -0.522633, 2.856750, -0.276034, -1.303678, 1.594225, 0.394365, 0.250256, 1.200605, 1.082268, -0.790061, 1.730090, 0.901963, 0.839747, -0.950800, -0.748706, -1.134237, -2.807783, -0.529764, 0.032603, 1.539907, 0.172095, -1.310192, 1.184743, 0.882632, -0.492173, 0.639595, -0.326997, 0.948140, 0.477311, 0.913643, 0.297693, 0.475666, -0.695050, -0.024084, -1.119196, -0.601025, 1.121040, -1.262033, 0.446357, 2.282216, 0.081291, 0.119609, -0.373797, -1.017148, 0.800049, -0.031418, -1.502287, 1.101358, -0.141934, 1.518922, -1.424444, 0.703141, -1.639117, 0.136443, 1.580298, -0.483121, 0.615801, 0.286080, -0.619201, -0.097993, -0.212469, 0.646424, 2.298681, 0.616037, -0.837003, 1.006855, -0.789321, 0.995552, -0.932525, 2.413934, -0.696568, 0.326732, -1.234243, -1.503443, 0.495643, -1.012682, -0.739202, -1.221918, -0.588920, 1.370122, -0.899400, 0.266930, -0.675903, -0.326139, 0.494237, 0.874463, 0.755183, -0.454865, -0.226878, -1.308440, -0.625731, 0.554561, 1.210104, 1.836121, 1.602161, -0.384816, 0.416116, 0.538585, 1.821518, -0.674960, -0.223768, 0.616469, -1.719513, -0.849342, 0.335311, -0.612269, -0.226553, 1.073756, 0.898078, 0.119732, -1.082833, 0.926120, 1.179485, -1.296953, 0.570058, 1.113874, -2.337205, -0.109157, -1.309326, 1.949279, 0.758534, 0.853436, -1.676574, 1.030386, -0.580712, -0.111418, 0.646851, -1.247590, 0.668359, -0.657181, -0.278512, -0.068827, 0.415229, 0.072938, 0.974019, 1.259461, -0.860292, 1.560038, -2.188347, 0.024952, 1.124708, -0.824320, -0.206617, -1.104815, 1.440700, -0.391468, 0.002453, -1.089736, 0.175172, 0.321380, -0.456327, -1.445622, 1.289299, -0.726865, 0.799226, 0.610885, -0.713832, 0.264918, 0.817193, 0.487894, 1.106671, 1.101234, -0.861417, -0.929515, 0.878256, -0.320935, 2.118629, -0.726715, -0.654006, 0.945171, -1.432403, 0.862277, 1.391376, 1.644486, 0.287776, 0.719214, -0.849583, 2.174733, -0.551402, 0.192006, 0.498672, -1.474928, 1.122795, 1.177434, -0.709894, 0.923292, 0.436570, -1.410601, -0.177633, -0.970618, -1.574714, 0.201337, -1.850994, -0.783539, -1.157923, -0.093120, 0.938570, 0.694793, -0.079145, 0.510301, -0.690793, 1.575756, 1.566558, 0.914585, -0.894977, 0.890755, 2.222937, 1.047762, 0.509610, 0.542679, 2.371725, 0.495608, 0.300535, 1.889379, -0.121741, -0.602924, 0.213294, -0.724996, -0.103625, 0.630649, -0.162416, -0.333412, -0.838966, -0.743999, -1.084867, -0.623715, -2.491511, 0.321634, 0.529571, -0.512949, 0.256535, -1.022361, -0.164604, 0.742861, 0.074424, -1.085390, 1.461042, 1.064877, -0.246287, 0.365011, -0.307663, 1.471597, -0.823815, 0.725668, 1.387396, 0.600747, 0.340903, -2.032868, 1.069347, 0.709754, -0.785682, 0.603405, -0.604338, 0.789145, -2.402350, -0.523082, 0.919431, -0.502538, 0.499267, -0.549267, -0.911869, -0.817622, 0.317639, -1.664974, -0.887097, 0.677589, -1.734020, 2.158098, -0.430523, 0.288381, 1.376042, 0.763767, 0.560009, -1.957066, -1.401013, -0.662786, 0.276718, -0.804756, 1.779442, 0.599400, 0.553277, 1.596515, 0.006540, -1.567768, 1.041983, -1.629491, 0.321437, -1.409779, 1.185767, 0.912439, 2.374876, 0.138722, 0.456927, -0.172241, 1.293443, 0.629052, 1.073823, 0.056340, -0.369837, -1.225499, 0.571907, 0.243497, -0.392084, 0.569672, -1.798851, 0.890656, -0.397324, -0.460420, -1.320661, -0.500095, -1.078627, 0.613826, -1.844196, 1.436031, 0.191424, 0.530001, 1.573679, 0.866405, 1.942565, 0.030816, -0.011407, 0.761531, -1.340256, -1.159396, -0.889301, -1.300884, 0.118318, -1.315428, 1.032377, -1.105590, 1.810786, -0.989522, 1.804072, -1.022186, -0.347826, -0.514250, 1.221926, 0.133439, -2.079883, -0.717786, 1.511328, -0.379740, -0.380572, -0.505603, 0.431337, 1.252299, 0.270988, -0.046979, -0.355069, 2.473226, 0.846595, 0.718346, -1.879829, 0.080713, -0.755893, 1.760165, -0.520634, 1.656699, -0.445971, 1.440244, -1.380322, -0.746312, 0.307394, 1.806878, -0.388290, 1.842725, 0.008189, 0.140959, 1.498083, 0.680799, -0.081033, 1.064467, 0.534554, 0.056568, 0.610494, -0.189906, 0.919225, 0.124473, 0.397768, 0.222131, -0.530405, -0.534905, 1.285193, 0.216817, -1.484064, 0.997613, -0.371304, -0.564347, -0.583328, 0.295586, 0.932263, -0.488946, -1.282254, 0.993959, -0.336857, -0.919027, 0.819810, 0.035947, 0.063231, 0.489200, 0.197019, -0.493031, -0.235046, -0.757889, 0.501891, -0.415803, -0.054793, 0.343577, 0.427378, -0.731412, 1.099909, 0.130547, -0.220202, 0.422688, 0.475404, 0.931095, 0.850869, 0.485613, -0.494174, 0.161418, -1.744393, -1.432208, -0.879628, 0.668269, 0.061123, 1.427379, 0.225026, -1.486358, 1.530060, -0.386450, -1.057191, 0.840078, -0.058422, 0.877481, 2.424463, 1.008270, 0.466672, 1.358038, 0.432555, 0.598824, 1.386900, 0.131249, -0.453416, -1.296126, 0.307389, -1.494215, 0.007374, 0.140258, -0.811115, 1.166673, 0.195288, -0.073003, 0.030724, -2.310006, 1.082711, 0.319241, 0.813020, 1.163267, 1.365047, -0.679640, -0.408458, 0.709043, 0.934761, -0.762984, -0.353049, -2.097398, -0.380858, 0.711225, 1.093737, 0.297980, 0.114900, 1.331322, 0.151485, 0.277899, 1.581151, -0.540481, 0.404399, 0.031727, 0.928761, 1.215576, -0.204593, -0.687389, -1.608054, 1.310789, -0.576096, -0.547321, -1.716152, -1.225451, 0.687603, 1.491284, -0.379756, -0.272250, 0.588670, -0.134009, -1.644295, -1.506580, 2.100574, -1.813766, 0.581243, -2.028589, 1.740500, 0.124687, -1.231534, -0.397662, 0.192855, -0.203508, 0.431811, -0.073801, 0.231442, -0.260371, -0.033429, -2.712549, -0.603544, -1.223501, -0.690803, -0.508083, -0.510098, -0.395079, 2.147952, 0.021111, -0.210939, 1.638807, 0.575649, 1.573715, -1.738951, 0.091762, 0.750087, -0.218003, 0.454105, 1.539915, -0.818788, -1.760430, -0.068426, 0.803904, 0.757246, 0.538695, 0.479820, -0.099385, 0.845498, 1.501157, -0.186469, -0.368612, 0.784137, 1.210680, 0.398826, -1.131553, -1.035259, 0.084524, -0.049281, -2.350477, -0.040466, 0.273124, -0.553475, -0.061309, -0.386347, -0.780559, -1.228210, -1.391829, 0.636955, -1.065650, -0.810598, -0.286551, 0.724075, -0.402721, -0.813249, -0.908731, 0.702894, -0.360384, 0.360834, 1.265617, 0.204800, 0.255212, 0.612234, 0.570753, -1.412055, 0.516077, -0.841101, -0.197013, 0.016379, -0.624348, -0.615172, 0.102823, -1.168953, 0.431213, 0.548992, -1.734129, 0.126447, -1.634678, 0.024652, -1.573408, -0.187511, -2.404755, -0.763747, -0.649742, -0.045887, -0.565708, -0.058954, 0.297171, 0.380098, -1.183756, -0.606955, -0.008728, 0.186181, -0.697559, -0.517029, -0.464703, -0.576450, 0.252155, 0.470797, 0.636928, 0.495456, 1.797270, 0.344770, -0.201348, 0.023758, 0.544238, -0.612164, -1.062438, 0.393221, -0.556455, -0.426737, -2.385365, -1.783350, -0.049841, 0.998854, -0.680402, 0.654772, 0.066051, -0.358309, 1.452866, 0.760396, -0.553823, 0.800856, 0.268226, -2.298603, -0.600403, 1.625617, -0.729883, -0.571470, 0.350084, 1.074134, 0.441901, -1.052797, -1.486979, -0.248057, 0.402044, 1.450524, 1.145233, 1.872856, -0.098155, 0.812803, -0.195954, 1.111301, 0.225480, -0.595420, -0.153507, -0.466690, -0.147112, -1.409886, 0.964076, -0.008608, -0.333793, 1.620728, -1.297296, -1.415798, -0.120328, 0.370372, -0.344065, -0.804285, -0.545166, 0.278901, 0.428088, 0.804216, -1.340802, 1.529643, 0.511443, 2.096251, -0.730065, -1.099222, -0.383207, -0.326167, -0.339220, -0.634407, 1.162708, -1.357094, -1.107000, 0.917948, -2.217138, 1.710681, 1.308535, -0.578724, -0.704699, -0.426887, 0.474662, 0.192386, -0.267459, 0.420074, 0.891192, -0.156662, 1.676879, 1.155494, -1.543697, -0.514005, -0.290645, -2.482641, -0.977817, 0.211063, 1.080310, -1.525141, -0.975746, -0.167437, 0.446044, 0.715109, -0.420494, -0.125401, -1.964485, -0.579513, 0.094948, -0.991441, -1.844664, 0.003524, -2.398522, 0.833129, 0.778418, 0.551808, 0.231208, 0.429461, -0.967061, 0.608647, -0.550590, -0.075546, -1.479476, -0.790243, -0.482673, -0.130046, 0.394731, 1.271709, 0.042652, -1.001688, -0.056332, -0.922544, 2.118864, 1.257020, 0.181695, -1.032997, 0.126754, 0.826033, 0.302006, 0.909620, 0.080874, 1.021271, 1.369756, -0.445704, 0.206247, 0.954408, 2.470907, 1.128335, 1.383718, -2.566099, -1.310874, 1.026216, -0.314611, 1.173787, -0.466753, -0.435593, 0.066783, 0.598932, 1.032431, 0.275150, 0.941341, -0.434451, -0.863127, -0.295369, 1.178574, -1.189132, -0.175474, 0.916099, 0.141379, -0.231113, -0.890694, 0.101240, 1.208490, 1.350077, 0.660477, 0.658927, -2.028459, 1.418370, -1.550030, -0.295267, 0.889128, 1.355873, -0.068606, -0.538045, 0.279554, -1.727978, -0.743827, -0.897655, -1.328401, -0.126542, -1.525852, 1.227469, 0.150458, 1.415622, -0.012257, 0.290056, 0.026198, -0.292829, -1.429574, 0.344230, 0.341810, -2.266376, -2.576846, 0.902459, -0.436512, 0.933507, 1.917352, 0.945201, 0.250917, 0.456884, 0.183620, -1.049254, 0.693598, 1.817713, -1.036500, 2.400206, 0.259345, 0.442620, 0.175754, 1.658759, 0.138920, -1.376477, -0.599400, 1.272190, 1.758249, -0.678446, -1.634041, 0.084095, 1.029800, 0.143942, -0.017404, 0.661647, 1.517825, 0.670393, 0.111843, 0.886456, -0.050147, 1.027175, 0.347071, -0.585977, -0.652695, 1.971019, -0.453835, -0.069338, -1.066374, 0.538143, 2.486785, -0.221029, -2.855516, 1.083413, -0.094926, 0.992624, -1.447707, -0.789263, 0.970770, 0.833354, -0.776701, 0.032213, -0.396014, -0.529892, 1.282085, -1.079443, 1.724205, 0.174257, 0.287573, -1.304453, -1.984681, -0.418989, 0.011623, -0.344416, -0.789973, -0.087867, 0.657060, -0.061899, 0.215290, -0.265279, 0.682898, -0.111481, 1.204260, 0.289406, 1.146346, -0.528698, -0.720130, 1.312930, 0.102885, -0.951324, 0.951512, -2.146751, -0.203992, 0.541870, -0.399778, 0.074750, 0.985756, 0.179078, -0.301136, 0.801063, 0.146744, -0.308101, -0.483415, -1.380962, 0.966106, -1.267782, 1.422076, -0.603380, 0.019685, 0.157202, 0.207634, 0.848262, -1.409720, 1.416172, -0.636828, -1.261609, -0.447447, -0.598303, 0.481499, 0.464817, 0.449004, -0.691535, -1.536119, -1.522704, 0.100555, 0.113137, 0.200304, -0.889312, -0.628678, 0.692131, 1.106729, -1.553656, 0.217747, 0.468230, -0.932723, 1.212490, -0.119017, -0.620863, -1.593825, -0.546864, 0.299546, -0.166665, 0.139376, -2.420699, -0.298823, 0.282376, 0.487424, 0.695375, 0.245474, 1.214752, 1.469679, 0.194764, -0.256458, 1.392414, -0.710740, -0.135991, -0.123997, 0.169090, -0.211564, 1.987177, 1.186389, 0.669096, 0.278585, 0.165244, -0.740898, 1.019153, 0.328208, 0.622638, -0.296367, -0.055395, 0.099994, -0.066102, 0.391168, -0.448941, -0.888406, -0.136045, -0.056270, -0.556481, 1.328168, 0.609558, 0.719651, -0.409704, 0.203235, -0.305441, -0.860099, -0.666724, 0.025255, 0.813551, -2.501951, -1.565365, -0.502628, 0.116062, -0.358196, -1.047267, 0.592956, -0.390446, -0.537152, 2.115666, 1.850178, -0.683411, 0.949092, 0.945504, -0.581107, 0.162778, -1.026385, 0.472740, -0.542002, -1.189987, -0.394594, 1.626510, -0.137411, 1.201380, 1.281823, 0.220592, -0.841141, -0.401837, -0.856686, -1.291859, -0.868320, 1.924099, 0.845186, 1.623691, -0.811372, 0.481019, -0.062247, 0.907551, -0.127700, -1.415445, -1.055489, -0.146444, -0.700324, -1.383776, 0.764403, -1.757550, 0.539115, -0.981633, -1.354591, 0.078507, -2.038376, -0.260321, -0.085519, 0.320232, 0.327691, 0.896029, 0.975088, 1.631637, -0.038244, 0.022490, 0.333272, 1.392911, -1.276611, 1.475053, -0.769214, -0.377429, -2.101652, 0.563609, 1.491664, -0.812217, 0.622315, -0.438700, 0.337666, -0.159724, 0.113132, 0.526749, -1.285028, 1.345688, -0.531400, -0.627879, -0.806850, 0.183946, 0.808020, 1.255426, 0.063634, -0.073541, 0.061484, -1.427283, -0.414262, -0.005928, -2.114137, 1.039634, -1.098348, -1.193100, -0.115714, 0.513226, -1.218873, -1.411105, -1.893552, 0.846973, 0.557617, 1.001456, 0.927174, -1.292722, 0.604694, 0.988577, 0.046540, -0.047261, 0.042047, -0.654911, 1.306546, -0.304858, -0.711578, -1.119506, 0.661724, 0.545685, -0.780966, -0.266064, -1.324155, 0.397588, 1.501832, 0.166289, 0.119722, -1.188676, -0.897802, 0.529741, -0.171552, -0.334154, 0.454006, 1.041604, -0.563954, -0.839368, -0.387785, 0.898141, -1.988665, -1.541027, 1.379989, -0.326937, 1.773371, -0.238887, 1.326586, 0.889331, 0.005116, -0.818425, -0.580137, -0.199222, -0.382124, 0.865301, 1.781277, 1.899323, 0.180215, 0.546872, -1.517506, -1.020935, -1.223293, -0.196383, 0.453334, 0.118396, 1.609957, 0.730833, -1.171495, -0.026998, -0.994484, 0.194044, 0.973798, 0.600814, 0.502009, -1.316637, -0.579674, -0.567247, -0.609395, 0.282480, 0.917098, -0.976205, 2.022152, -0.041731, -2.273989, 0.598804, 0.360459, 0.835917, 0.602479, -0.551306, -0.386744, 0.812365, -0.242564, -0.180443, 0.033147, 0.730494, -1.693939, -0.888748, 1.651093, 0.796182, 0.830769, 1.061931, 0.029416, 2.044190, 0.250542, -0.129687, -1.941208, -0.452015, 1.206932, 0.577087, -0.071705, 1.070593, -1.181535, 0.163789, -0.109606, 0.664772, 0.180033, -0.041965, -0.187775, 2.821750, -0.482416, 1.165064, 0.600523, -1.064752, -1.348082, 0.342328, -0.812475, 0.080418, -0.148392, 0.135378, 0.352195, -0.177678, -1.196766, 0.559897, -0.101411, 0.987495, 0.780272, 0.100704, -1.698699, 0.558652, -2.011813, 0.592350, -1.214767, 2.044935, 0.305423, 0.835033, 0.254961, -0.474358, 1.002370, 0.032339, 0.638184, 0.114983, -0.510858, -0.296111, 0.571823, 0.526870, 0.196629, -0.624577, -0.393288, -1.357331, -0.588913, 0.183936, 1.379487, 1.951461, -1.659723, -0.254270, -0.895240, -0.641061, -0.313766, 0.565115, 1.292762, -0.662481, -1.541751, -0.034034, -1.265074, 1.021332, -0.298506, -0.283800, 0.405626, 0.864383, -0.109579, 1.103939, 0.995116, -0.203334, 1.358686, 0.491537, 1.143836, 0.605545, -0.251426, -0.712209, 0.413200, 0.637253, -0.508847, -0.655313, -1.499713, -0.411762, 1.338043, 0.138139, 0.306510, 0.594452, -0.112470, 0.952769, -0.645435, -1.620871, -0.007091, 1.557873, -1.017056, -1.152281, -0.685774, 2.309696, -0.044065, 0.333794, -0.127069, -0.721280, -0.137304, -0.357416, -0.480051, -0.540229, 1.053912, 0.280259, 0.115400, 0.036530, -2.211189, -0.424118, 1.006836, 0.007730, -0.329704, 0.203536, 1.272295, 1.315288, 0.422243, -0.702801, 0.149187, -0.261542, 0.175932, -0.068840, -0.737637, 1.139817, -0.053294, -0.089320, 0.273616, 1.076978, 0.229117, -1.258126, 1.130884, 0.637562, 0.607254, 0.399422, -1.722241, -0.173765, 2.150429, 1.203504, 1.521091, 1.389685, -1.440625, -0.337699, -0.938218, 0.087945, -1.447592, -0.194270, 1.811361, 1.132370, -0.161499, -1.163924, 1.735122, -0.810205, 0.901750, -1.209394, -1.813556, 1.056213, -0.323949, 0.587373, -0.937907, -1.586931, 0.602325, 0.401392, -0.912441, -0.123792, -0.432919, 0.336108, 2.990385, 0.272254, 0.234251, -0.567431, -0.261765, -1.385036, 0.844094, 1.873353, -1.308163, -0.408481, 0.357132, -0.244698, -0.355869, -0.976017, 0.542101, 1.593482, 0.040864, -0.161650, 0.398971, 0.818368, 0.269653, -0.755855, -1.535921, -0.118250, 1.019890, -0.301912, -0.380386, 0.873417, 1.084054, -0.390738, -1.258494, 0.002491, 1.207142, 0.480992, 0.680139, -0.597136, -1.036691, 0.656762, 0.350350, -0.276681, 1.346050, -1.729424, -1.245797, 0.888917, 2.327298, 0.815871, -1.208760, -0.153598, 0.624110, -1.539308, -0.843046, 0.510037, -1.772225, -0.902356, 1.037893, 2.179618, -1.762733, -0.645342, -0.192162, 2.306712, 1.654580, -0.077402, 2.270077, -0.572328, -0.968494, 0.058736, -0.116642, -1.575883, 0.379552, -1.568017, 1.179160, 0.262279, -0.783473, 0.176868, -0.548986, -0.958939, -0.196162, 1.142816, -0.705500, 0.974784, -0.956845, -0.716899, -0.835447, 1.214828, -0.029038, -1.163843, -1.907094, 0.603734, -0.277778, -0.145618, -1.909977, 0.369054, 0.189050, 1.772111, 1.177750, -0.040812, -1.726328, -1.158213, -1.068445, -1.324851, 0.809749, 0.039073, -1.181564, 0.174043, 0.159514, -0.283734, -0.978429, 0.743818, -1.130116, 1.020955, -0.048145, -0.759333, 0.082637, -1.232824, 0.021998, -0.488922, -1.165545, 1.334511, 0.040569, -1.336519, 0.441303, -2.775804, 2.753315, 0.568175, 0.385026, -0.235911, -0.829583, -0.618092, 0.396525, 0.677902, -1.337664, -0.121260, -0.901623, -0.240343, 0.448279, -0.923447, 0.794892, 0.538327, 0.345790, -0.062513, 0.799774, -1.634726, -0.743072, -0.430742, 0.441155, -0.307373, 0.377395, -1.265424, -1.804054, 0.307356, 2.090777, -0.579687, 0.497116, 0.475884, 0.301702, -0.131968, 0.223842, 0.411614, -0.909693, 1.274521, 0.101692, -0.303937, 0.048006, 2.029197, -0.297846, 0.141886, 1.405218, 0.063074, 1.205843, 0.305091, 1.142042, 1.841808, -0.545226, 0.054520, 1.035448, -0.499729, -1.500200, 0.024222, 0.814562, 2.019871, -1.419313, 0.588187, 0.053406, 0.431949, -1.519240, -0.436522, 0.001030, -0.977111, 0.614273, 1.778556, 1.212511, 0.549569, 2.292150, 2.548867, 1.968001, -0.552600, 0.768683, 0.767008, -0.337174, -1.285877, 0.018756, -1.162546, -1.150093, 1.344816, 0.843367, 0.972694, -0.204638, -0.186812, -1.099346, 0.228246, 0.208569, 1.117484, -1.225010, -0.320824, -1.120242, -0.324640, 0.186273, 0.411510, -2.439716, -1.811920, -0.226029, -0.745188, 0.346466, 0.071804, 0.202311, 0.193766, -1.322464, 1.069883, 0.996225, 2.069744, 0.569761, 1.665580, 0.695051, -0.199248, 0.365181, -0.154958, 0.826970, -0.594454, -2.165781, -1.286016, 0.682984, -1.480096, -0.945478, -0.097643, 0.279409, 1.349391, 0.664588, 1.322224, -0.308967, -0.425171, 1.142148, -0.269634, 0.033033, -1.502666, -0.144860, 0.342433, 0.279948, -0.490003, 1.182682, 0.518806, 1.272059, -0.336806, -1.763621, 0.660457, -1.254211, 0.927523, -0.908643, 1.941743, -0.650633, 0.570980, -0.217424, 2.470276, -1.388080, -1.062049, -0.482329, -0.017493, 0.732136, 1.110228, -0.208070, 0.067397, 0.147108, 0.805427, -0.221335, 0.531873, -0.376170, -0.334584, -0.508250, 0.838202, 0.513136, 0.335641, -0.242168, 0.133115, -0.038480, 0.968687, 0.409966, -1.527608, -0.821672, 0.741504, -0.331534, -0.857009, -0.666070, 0.808734, -0.127306, -1.606196, 1.635141, -0.433875, 0.191642, 0.551458, 0.644394, -1.329646, -1.252648, 0.505464, 0.491045, -1.287335, 0.205115, -0.841172, 0.944374, 1.567995, 0.773059, -0.388563, -0.505790, 1.465967, 1.178371, -0.188458, 0.079023, 2.008720, 1.558475, -0.577614, 1.135190, -0.274885, -1.221427, 0.327277, -1.109987, 0.848868, -0.253314, 0.385213, 0.442159, 0.662485, -0.280208, -0.049472, 0.611953, 0.595696, -0.063058, 0.324326, -0.027238, -0.449977, -0.124632, -0.975559, 0.932067, 1.332589, -0.063669, 0.438703, -0.014451, 0.074019, -0.652450, -1.748431, -1.750819, -0.392305, 2.392938, -1.506794, -0.909862, -1.147870, -0.171357, 0.573011, -1.228293, -0.431223, 0.202150, 0.777781, 1.021711, -0.760631, -0.127896, -3.050420, 0.889932, 0.735254, 0.994213, -0.552587, 0.040101, -1.708068, -0.821301, 0.995809, 0.020052, -0.993222, 0.698404, 1.328444, 2.409936, 0.469440, 0.060884, -2.240183, 0.001344, 1.184458, -1.056726, 0.400141, -1.012722, 0.064867, 0.700708, 1.336551, 0.772083, 0.463771, 1.344587, -0.543434, 0.041066, 0.873260, -0.381723, 1.235718, 1.369374, -0.219139, 2.391607, 0.615882, 1.125247, 0.158113, -0.562384, -0.389481, 0.566891, 0.196858, -0.914084, 1.175169, -0.799879, 0.375137, 1.100522, 0.251029, -1.182291, -0.603581, 1.653578, -0.221729, 0.564430, 2.940118, -2.783894, -0.236153, 0.672090, -0.826953, 0.020477, 0.949128, 2.785620, -0.559512, -1.104733, -0.227439, 1.580999, -1.163081, -1.277595, 0.539420, -0.560134, 1.546984, -0.920192, -0.695273, 0.569854, 0.015180, -0.284372, -2.317827, 0.460737, 1.144355, 0.609845, 1.629190, 1.424549, -0.816671, -0.173394, -0.811929, -0.331061, 1.104648, 0.066671, -1.042079, -0.239444, -0.277354, 0.085307, 1.549487, -1.413354, 1.185043, -0.153456, -0.515145, -1.619401, -0.477406, -2.445794, -0.824893, -0.773923, 1.103589, 0.883857, 0.083177, 1.538264, 2.019186, -0.274504, -1.795399, -0.545986, -1.291566, -0.833493, 0.993431, -0.396669, -0.463256, 0.096744, 0.703135, 3.552240, 0.216525, -1.411490, 0.938509, -2.191708, -0.716620, -0.823003, 0.647138, -0.319533, -0.253833, -0.780221, -0.003684, -0.724654, 1.690283, 0.458092, -0.313810, -1.345472, -0.199287, -0.232094, -1.130306, 0.838793, -0.283346, -0.335152, 0.571746, 1.497499, -1.096485, 0.829887, 0.234547, 0.158165, -1.081282, 1.389917, 1.098423, 0.514658, -0.199515, 0.251525, 0.259846, -0.053847, -0.911876, -0.299442, -0.594997, 0.807815, -0.787464, 0.935289, -1.103569, 1.838220, -0.132290, -0.470690, 1.189230, 0.494170, 0.098396, 0.364323, -0.301090, -0.655580, -0.155590, 0.009020, -1.631864, -1.837839, 1.805411, 0.092938, 0.039264, -0.646894, -1.755163, 1.969680, -0.686045, 1.239874, -2.358355, 1.654864, -0.575178, 1.462620, -1.478345, 1.794142, 0.809319, -2.622436, -0.081788, -0.231781, -0.963525, -0.142167, 1.081190, -0.573969, 2.047837, 0.907229, -0.980996, 0.014572, 0.582906, 0.109952, 0.490715, -2.735213, 0.644402, 0.994016, -0.069736, -0.231141, 0.428238, 0.374348, -0.210908, -0.947164, 0.852818, 0.100060, -0.928290, -0.504841, -0.096397, -0.569812, -0.704950, 0.484203, -0.638470, -0.706065, 0.286929, -0.583222, 1.437547, -0.616605, -0.714727, -0.210975, 1.154438, 1.380778, 0.110943, -0.525935, -0.629929, -0.063200, -0.811830, -0.587717, -0.616391, 1.239408, 2.513326, 0.234783, -0.522457, 1.474645, 0.765152, -0.014460, -0.121283, -2.569939, -0.951613, 0.809743, -0.992645, -0.956978, 0.891274, -1.603748, -0.371628, 0.512550, -0.280094, 0.112762, -0.905441, -0.256569, -0.493107, 0.320867, 0.403879, -0.846265, -1.781576, 0.034394, 1.176455, -0.689019, 0.815652, 0.884577, -0.408083, -0.770426, -0.912780, -0.374160, -0.013787, -0.210866, -0.511547, 0.559603, -1.240296, -2.085399, -0.476032, 0.577643, 0.116426, 0.308831, -0.830472, 0.474210, -1.292696, -1.172786, -0.991903, 0.349414, 0.175821, -1.651981, -1.822134, 1.006879, -0.587992, -0.172485, 1.018614, 0.825054, 1.233370, 0.080930, -0.554872, 0.679574, 0.069067, -0.086249, 0.195186, -0.945392, 0.559540, -0.130113, -0.698305, 1.119101, -0.515235, 0.100845, -0.775317, 2.087920, 1.176912, 0.638982, -0.148675, 0.719341, -0.827719, -0.935615, -0.235936, 0.894834, -0.056800, 0.758836, 1.030296, -1.049039, 0.667220, -0.001771, 0.477004, -0.673390, 0.887366, -0.377699, -2.900163, -0.097763, -0.753570, -0.361869, -0.355244, 0.391835, 1.440275, 1.051138, -0.505081, -0.292809, -0.736172, 0.976628, 0.692954, 0.688101, 0.102961, 0.715891, 1.825440, 0.556489, -0.337208, 0.299549, 0.337673, -0.368853, 0.162805, 0.715536, 0.930330, 0.016777, 1.372411, 0.291119, 0.125316, 0.665695, -1.142696, -0.927675, 0.363100, 0.487848, -0.188682, -0.520067, -0.166539, -0.183153, -0.696270, -0.471364, -1.737812, 2.005301, -1.079466, -0.056970, 1.390907, -0.304624, -0.300941, -1.852622, 1.073252, 0.150073, -0.086175, 0.169735, 1.811229, 3.174985, -1.134058, -1.302898, -0.142359, -0.243731, -1.438662, -1.243708, -0.084375, 0.786929, 0.617991, 0.641978, 0.943103, 0.290617, -0.007560, 1.692582, -0.147972, 0.158467, 1.181921, 0.548755, 0.967098, 0.170285, 0.932408, -0.976638, 1.923063, 1.374870, 1.007909, -1.184207, 1.156023, -0.138481, -0.352115, -0.165230, 0.340586, -0.324497, 0.984567, -0.370267, 1.415006, 1.629476, 0.151080, -0.682174, -2.390866, 0.226890, -0.933820, -0.931362, -0.417865, 1.094627, -0.681261, -1.201641, 1.637456, 0.182476, -0.882310, 1.061036, -2.130762, -1.109142, -0.007399, -2.177727, 1.195377, -1.763817, 1.173323, 0.806390, 0.976779, 2.319091, 0.692855, 0.561399, -0.010128, -0.485452, -1.175547, -0.270605, 0.361076, 0.219290, 0.684318, -0.779013, -0.321915, 1.108012, 0.338861, 1.469638, -0.003356, 1.052430, 0.610195, -0.494343, -1.811070, -1.035314, 0.339320, -0.537407, 0.698484, 0.055934, 1.151257, -0.598374, 2.721496, 1.228932, 0.827922, 0.285264, 1.934264, -0.012394, -1.042898, -0.202276, 0.688050, 0.088320, 0.249200, -1.333165, 1.536338, 0.748816, 0.747077, -0.945105, 0.495136, 0.931299, -0.104341, 0.179619, 0.282522, 0.763397, -1.412177, 0.288321, -0.114031, 0.100627, 0.010345, 0.003131, 0.076089, -0.336673, -0.256276, 0.993024, 0.008089, 1.296678, 0.406845, 1.261078, -0.116565, -0.438248, -0.050055, -0.142456, 0.599522, -0.482074, -0.772793, 0.174188, 0.765013, 1.549270, -0.326966, -0.363881, -0.231502, 1.793247, -0.645320, 0.439428, 0.474547, -1.694857, -3.386497, 0.952501, 0.948442, -0.676680, 0.606416, -1.977418, -0.094843, 0.307231, -0.607186, -0.470207, -0.331358, 0.325289, -1.131281, -0.231434, -0.433763, 1.300479, -0.280185, 1.252363, 0.815856, 0.464310, 0.728566, 1.485649, 0.546781, -1.396667, 0.338572, -1.655903, 0.420377, 0.281311, -1.111173, -0.140033, -1.507939, 0.644368, 1.080768, 0.397577, 0.817869, 1.709339, -0.004625, 0.112178, -0.662504, -0.947122, -1.539480, -1.130573, -1.252391, 0.297672, -0.293719, 0.506604, 0.150008, -1.309252, 1.521718, -0.206846, 0.746323, -0.447425, 0.078452, -0.299725, 0.618614, -0.814651, -0.460175, 0.178950, -0.505777, 0.569298, -0.752216, 1.454532, 0.410511, -0.213430, -0.560482, -0.815947, 0.527645, -0.192652, -0.044070, -0.134091, 0.179687, -1.632031, -0.681558, 1.229445, 0.266362, -0.722924, -1.759851, 1.549819, 0.757948, 1.168719, -0.389137, 0.418914, 0.391587, -0.613770, -1.356007, 0.398750, 0.174487, 1.369844, -0.567837, -0.026973, -0.025800, -1.823879, -1.341706, -0.918892, 0.605371, 0.151341, 0.562000, -1.813912, 0.518735, -1.256922, -0.984604, -2.266686, 1.601562, 0.759092, -1.347905, 1.957820, -0.870879, 0.378215, 0.437680, -0.628609, -0.629912, 0.093632, -1.754365, -1.231373, 0.109443, 1.551882, 0.348643, 1.728756, 0.783940, -1.189103, -1.579136, 0.197554, 1.005385, 0.260297, 0.961543, 0.467555, -0.153463, -1.545000, 0.299656, 0.909066, 0.153681, -0.377016, 1.370693, -0.618686, -0.407515, 1.216128, -0.118453, -0.301039, 0.401727, -1.525915, 0.275522, -0.603595, -0.413420, -2.582762, 0.303243, -0.681313, 1.070565, 0.395349, -0.583501, -1.229236, 2.011695, -0.724282, -0.520835, -0.664947, 0.966854, 1.295172, -0.173344, -0.820058, 0.717728, 0.417631, 0.620602, 1.655718, 0.533786, -0.465954, 1.254768, 1.368894, -0.219607, -1.499260, 0.332906, -0.417570, 0.437638, -2.166195, -0.081047, -1.226050, -1.467537, -0.468164, -1.339766, 0.251649, 1.286700, -0.124942, 0.576080, -0.390990, -0.919239, -1.405808, -0.620938, 1.011732, 1.073943, -1.022089, 1.228517, -1.313493, 0.329991, 0.325891, 0.441823, 0.533469, 0.168244, 0.488010, 0.073313, 1.458532, 1.205154, 1.824760, -0.687414, -0.500318, 1.507036, -0.042392, 1.512058, -1.547461, -0.343478, 0.259748, -0.515998, 0.523989, -1.911554, -0.348326, 1.156765, 0.440582, 1.001312, -0.800922, -0.150718, -0.432235, -1.305117, 0.339569, -1.583480, 1.336014, -0.858737, 1.431749, 1.144301, 2.021197, 0.587902, 0.634428, -0.135424, 0.611055, -0.570803, 1.200229, -1.145424, -0.607091, 0.513574, -1.134279, -0.701436, 0.659436, -0.126769, -0.722253, 0.312852, 0.851066, -0.550953, -1.035056, -0.178996, 0.794292, 1.345476, -0.210195, -1.054664, 1.044173, -1.050228, 1.031430, -0.892830, 1.214891, -0.167253, 0.545731, 0.293455, -0.584334, -0.197853, 1.698795, -1.086416, -1.396709, 0.388075, 0.928634, 1.193052, 0.542530, 2.174764, 0.239803, 0.971829, 0.021349, -0.210745, -1.307224, 0.530507, 1.158654, 0.779241, 0.438243, 1.113252, 1.482862, -0.982382, 0.888396, 0.657061, -0.091891, 0.850659, 1.621601, 0.950529, -0.605095, -0.961948, 2.756418, -0.804598, -1.133715, 0.420542, 0.707231, 0.441337, 0.019870, -0.412532, -0.020664, 1.224954, 0.129117, 0.692995, 0.588245, -0.587636, -1.682081, 0.152476, -0.395927, -0.051541, 0.867257, -0.825371, 2.508079, -0.541376, 1.242906, 1.081817, -0.381739, 1.007005, -1.397104, 2.049309, -0.566978, -0.687564, -0.468995, -1.287895, -0.198237, 0.422649, 0.239427, 3.274068, -0.549394, 1.091445, -0.063481, -1.109790, -0.092825, 0.228454, -0.275759, -0.069295, -0.568130, 0.839787, -0.131585, 0.856314, -0.177739, -0.744406, -0.554781, 1.133109, -0.720532, 2.679416, -0.065719, 0.750548, -1.681082, 0.402632, 0.161070, 0.773558, 2.388589, 0.537458, 0.144391, -1.162200, -0.243017, -0.209331, -0.738535, 0.494306, -0.031733, -0.113754, 0.076761, 0.831861, -1.190671, 1.039350, 0.691202, 0.861462, 1.023810, 0.700740, -0.359189, -0.571197, 0.647437, -0.494145, 0.688758, 0.248115, -0.300279, -0.092851, -2.463564, -1.275104, -0.765320, 0.346337, -1.245937, -1.062869, -0.051069, 0.901298, -0.744129, -0.598520, 0.617659, 0.035656, -0.573097, -1.796183, 0.200496, 1.901870, -0.080139, -0.668790, -0.091314, 0.067770, -0.401100, -1.190672, -0.267438, -0.297945, -0.089070, 0.671168, -0.785190, -1.236640, -3.077630, 0.829355, 1.039796, 2.058157, 1.434751, -1.002031, -0.680382, 0.828008, 0.714094, 2.441755, 0.069451, 1.193988, 0.061189, -0.445449, -0.886332, 1.043918, -1.112944, 0.771895, 2.891960, 1.104239, -0.072483, 0.406584, 0.719894, -2.093123, -1.813807, 2.245861, -0.412736, 0.022196, -0.372102, 1.781085, -1.330432, 1.457060, 1.634151, 1.701577, -1.300448, 0.753790, -0.837953, 0.413695, -0.156132, -0.536231, -1.643046, 0.074195, 1.403474, -1.024449, 1.060438, -0.659555, -0.494227, 0.768915, -0.262128, -2.380972, 0.532851, 0.808966, -1.090259, 0.405008, -1.411347, 0.015488, 0.462615, 1.112488, 0.319696, -0.617976, -1.029672, -1.899080, -1.073926, -0.617877, 0.898976, 0.690574, 1.870248, -0.147114, 0.930937, 0.431637, -0.580698, 2.058217, 1.171048, -1.206165, 0.486984, -1.695516, 1.033344, -0.272659, -0.527465, -0.952022, -0.461038, 1.244217, 0.216961, -0.821916, 0.283711, 0.238485, -1.249147, 0.171838, -0.065925, -0.156381, -0.554742, -0.972072, -1.528020, -0.355954, 0.270998, 0.139556, 1.812417, 1.801546, 0.624538, -0.787086, -0.184569, 1.530320, 0.143045}, - { -0.460127, 1.003686, -0.756425, 0.948514, 0.243031, 1.061145, 0.037331, 1.278928, -0.372089, 0.717820, -0.892170, 1.527757, 1.448706, 1.676767, 0.063852, 0.254324, 1.676828, -0.320170, 1.569841, -0.673816, 0.228773, 2.254672, 0.475782, 1.376060, 1.188919, 0.456734, -1.462780, -0.404180, 0.876127, 0.224036, 1.209959, 0.615370, 0.333324, 1.172845, -0.432864, 0.433496, -1.064113, 0.466705, -0.658574, -0.038656, -1.141713, 0.183697, 0.721033, 0.118445, -0.112179, 1.902772, 0.813864, 0.327133, -0.906739, -0.323852, -0.821924, 0.642731, 0.605088, -0.696286, -0.427675, 0.262865, -0.959123, -0.845785, -0.225202, -0.429458, 1.781495, 1.492720, -0.018856, -1.889690, 0.538864, -0.300831, 0.488659, 0.715193, 0.018927, -1.468770, 1.783636, 1.825216, -0.480296, 0.003911, 0.247482, 0.912840, 0.836604, 0.417612, -1.233762, -1.355279, -0.119523, 0.946241, 0.063261, -0.163813, -1.811143, 0.425394, 1.215904, -1.432267, -0.470739, -1.593512, 2.271159, -0.697805, -0.050870, -1.305174, -0.999425, 2.055721, -1.623457, -0.526404, -0.460731, -1.507115, 3.133274, 0.247029, 3.504288, -1.377407, -0.198749, 0.866587, -0.853861, 0.870844, 0.229323, 1.238467, -0.888205, -0.492117, 0.134792, 0.087148, 0.795628, 0.701015, -1.908604, -0.720976, -0.916969, 0.293436, -1.200093, 0.184176, -1.704998, -1.277669, 0.609335, 1.407192, -0.141481, 2.205840, 3.290139, 1.811724, 0.744099, -0.366326, -0.634037, 0.642487, 0.340081, 0.639567, -1.243038, 0.920221, -0.854984, -1.609432, 1.352153, -0.697336, 0.233935, 0.881627, 0.219395, 1.241279, -1.294647, -0.125217, 1.009194, 1.065202, 0.424949, -0.659179, -2.039154, 0.251962, 1.437868, -0.336978, -0.087106, 1.876559, 1.656252, -0.089746, -1.391716, -0.462172, 0.630620, -1.975464, -0.250392, -1.206013, -1.360507, -0.446080, -0.174210, 1.275199, 0.265648, 0.916949, 1.054683, -1.845755, 0.410997, 1.719696, 0.000758, 0.272884, -0.334283, 0.216386, 0.558240, -0.577344, 1.587096, 0.581770, 1.099519, -0.496223, -0.161820, -0.731210, -1.493183, -0.055015, 0.125838, 0.853131, -0.372956, 0.554524, 1.056030, -0.477273, 0.139485, -0.231218, 0.444733, 1.357238, 0.536535, -0.831062, 0.631846, -0.043652, 0.020603, -0.618144, -0.847457, 0.158231, 0.851819, -1.097051, -1.187936, 1.025259, 0.757621, -1.385510, 0.044439, -0.732928, -0.312060, -1.074313, -1.748183, -0.470906, -0.400687, -1.642419, 1.445314, -0.261139, 0.891566, -0.438451, 1.736373, -0.118390, -1.152047, -0.232348, 0.689129, -0.517057, -1.450817, -0.950483, -1.494099, -0.763745, 1.022427, -0.160285, -2.680851, 1.476271, -0.185754, 1.972785, 0.780818, 0.562580, -1.108786, 1.343296, 1.330739, 0.272110, -0.589423, -2.458832, -1.120480, -0.438154, 0.614543, 0.310643, 0.071726, 1.835829, 0.332506, 0.153416, 0.697628, 0.283001, 0.814715, -0.296614, -2.341450, -1.371490, -0.628172, 0.593308, 1.542751, -0.697052, 0.385552, 1.008544, 0.415322, -0.363613, 0.410209, 0.741077, 0.503613, 0.080042, 0.070777, 1.069959, -0.030066, -0.872705, 1.446193, 1.300552, 0.004272, -0.508644, 1.821110, -1.124357, 1.812700, 0.355085, 0.101891, -0.218965, -0.416687, -0.267793, -0.779310, -0.099090, 0.826203, -1.963421, 0.567766, -1.057421, -0.545433, -0.726329, -0.522214, 0.007095, -0.368573, -0.696462, -2.421234, 0.759457, 0.671386, -0.226851, 0.631842, 1.140173, -0.200253, -0.838181, -1.389659, -1.379359, -0.038064, 0.263635, -0.614666, -1.604632, -1.369720, -0.031672, -0.562532, -0.280005, 1.134341, 0.698787, -0.917519, -0.754584, 1.770137, -0.538803, -3.146376, 0.283692, 0.282129, 0.375359, -1.619927, 1.382256, 0.761313, -0.749871, 0.266723, -0.820136, -0.543952, 0.256631, 0.761141, 0.435913, -0.203392, 0.067976, 0.694728, 0.577919, -1.394714, -2.173885, -1.687474, 1.634344, 0.010458, -0.075337, -0.346201, -2.189259, -0.197817, -0.239190, 0.332313, -0.672594, -0.022500, 0.814103, -0.300997, 0.160148, 0.102091, -0.809444, -0.565075, -1.041961, 1.527980, -0.483138, -2.119360, -1.147871, 0.321149, 0.733275, 0.398588, 0.300104, -0.895803, 1.249333, -0.429273, -0.191192, -1.331521, -1.529801, -0.292818, 1.614285, -0.510469, 1.436781, -0.022407, -1.348137, -0.701011, 2.970067, 0.297123, -1.251790, -1.084230, 2.221634, -2.581867, -0.760592, -0.192657, 1.247464, 0.009426, -1.998624, 0.459647, -0.221443, 0.165015, 0.358107, 1.102837, -0.248085, -1.821544, 1.044854, -2.283337, -0.487460, -0.169743, -1.030411, 0.842757, 1.061848, -0.986291, 0.272628, 0.077178, 0.001695, 0.564364, 1.674997, 0.023513, -1.009305, 0.361827, 1.756204, 0.049040, 0.967914, -0.034218, -0.551311, -0.741045, -0.183406, -0.333160, -0.595086, -0.154153, -1.187447, 0.013791, 0.600637, 0.496078, 0.425958, 0.949856, 0.669755, -0.130918, 0.119474, -1.019704, 2.202222, -0.213286, -2.135757, -0.680348, 1.322261, -0.573732, -0.666441, -0.123670, -2.056307, 1.359813, -0.356080, 1.334991, -1.413171, 1.008093, 0.805808, -0.539764, 0.725935, -0.498486, 0.502211, -1.046462, 0.835032, 0.442036, 0.661102, 0.371917, -1.580378, 1.456512, -0.599743, -1.262098, -0.977225, -0.420424, -1.095705, -0.102750, 1.287607, -0.665565, 0.445280, 0.559933, 0.396172, 1.098799, -0.917427, 1.063693, -1.710001, -0.613000, 0.090681, -2.390242, 0.361528, 0.423764, -1.117324, -0.541464, 0.157672, 0.061289, -0.980778, -1.624991, -0.919228, -0.198608, 0.407426, 0.531641, 0.782352, 0.308421, -0.595577, 0.133041, 0.117609, 0.877921, 0.693231, 1.618490, 0.879163, -1.847283, -0.225096, -1.908849, 0.429856, 0.178704, 1.206298, 0.343299, 2.096951, 0.101621, 2.304997, 0.906440, -1.114701, -2.056771, -1.200813, -0.605093, -0.639085, -0.350566, -0.047783, 0.209551, -0.484639, 0.215818, 1.547066, -0.306745, -0.480952, -1.382057, -0.676212, 0.767382, 0.149698, -0.466264, 0.452004, -0.580517, -0.294788, 1.659517, -0.367299, 1.934540, 1.202956, -0.243328, 0.101271, -0.496497, -0.974175, 2.136533, -1.673039, 1.693513, 1.307232, -0.726413, 0.228218, -0.732515, 1.233824, 1.007473, -0.292153, 0.353034, 0.003874, 1.672240, 1.639677, -1.871337, 0.334767, 0.244204, 2.069188, -2.315363, -0.944928, 0.832698, -0.058052, -1.055999, -0.086511, -0.443908, -0.951020, -0.714940, -0.213177, 1.270883, -0.380284, 2.978762, -0.264423, -1.238350, -1.892415, -1.501531, 0.822271, -2.150519, 0.466668, -0.306070, -2.966870, -0.381999, -0.802675, -1.209628, 0.467249, -0.528363, -0.498916, 0.383031, 1.514718, -0.371822, -0.817617, 1.015537, -0.462773, -1.055026, -1.753604, 1.091346, -0.388252, 1.623948, -1.569725, -0.676217, 0.896353, -0.767891, -0.928214, 0.330030, 0.741161, -0.822675, -0.261115, 0.314503, 0.813945, 1.167133, -0.707453, 1.483614, -0.150487, 1.463426, 0.304343, 0.934806, 0.186697, -0.151715, 0.060116, 0.093067, 0.271059, 0.494908, -1.533333, -1.318730, -0.432558, -0.624556, -0.964479, 0.423987, 0.291118, -0.621755, 0.409638, 0.417397, 0.742512, 0.207273, 0.599914, -0.147224, -1.028698, -0.327382, 0.670668, -0.325864, -2.105638, 1.305043, 1.551883, 1.743432, -0.765596, -0.468690, -0.387992, 0.422004, -1.757832, -1.708843, 0.404366, -0.221322, 1.703687, -0.368459, -1.027810, -0.308806, 1.636001, -1.099645, -0.652451, 1.037503, -0.162773, -1.326930, 1.089659, -0.598857, 1.726949, 0.792473, 0.371111, -0.699452, -0.348475, -0.162744, -0.497017, -1.468268, -0.050597, -0.582526, -0.839777, -0.455032, -0.560429, -1.316616, -0.553797, -1.003100, -1.305462, -0.440936, 0.177445, 1.095493, -2.221320, -2.301556, 0.062108, 0.009978, -0.707175, 0.031874, -0.033571, -1.308939, -1.013934, 0.845773, 0.112552, 0.670863, 0.164866, -0.953538, 2.902723, 0.691702, -0.415291, -1.569011, -1.148232, 0.168929, -3.251531, -0.042419, -0.556035, 0.617929, 0.817292, 0.906200, 0.022940, 0.104165, 1.902683, 0.310831, -1.820452, 0.482757, 0.114034, -0.530148, -0.264628, 0.429445, 1.635688, 0.710741, 1.407302, 0.959449, -0.828725, -1.773984, 0.337037, -0.022428, -0.529695, 0.974009, 0.214441, 1.666152, 0.305561, 0.615461, -0.776867, -0.396863, 0.839819, -0.321920, -0.563034, -1.686524, 0.182866, 0.725401, -0.458807, -2.629012, 1.511413, 0.623160, -0.230702, 1.277348, 0.632634, 0.629001, 1.020781, -0.354234, -0.748805, 1.494922, -0.799784, -0.371394, 1.068750, 1.074057, -2.450619, 1.170448, -0.417757, -0.689442, 0.542454, 0.283593, 0.185500, -1.681825, 0.048866, -0.601730, -0.601606, -0.311057, -0.862420, -0.688702, -0.180382, -0.371591, 0.545398, -1.666141, 0.888943, -0.392656, -1.109465, -0.597225, 1.054845, 1.534163, 0.075385, 0.831754, -0.666996, -0.524153, 0.537369, 1.312377, 0.193846, 1.520482, 1.534900, -0.001184, 1.861824, 0.192030, 0.562351, -1.285117, 0.863550, 0.655581, 0.640489, -2.459357, 1.187551, -1.625427, -0.531603, 0.186476, 0.714236, 1.447022, 0.876043, -0.290773, 0.327438, -1.401845, -0.613483, -0.153764, 1.217052, 2.746966, 1.167980, -0.713606, 1.654671, 0.842773, 1.128916, -0.416414, -1.430610, -0.389778, -1.000029, 1.014183, -0.576937, -0.120991, 0.423789, -0.756631, -0.304002, -0.033811, -1.315093, 0.851053, 0.921874, 0.997267, 1.040307, 0.806320, -0.194278, -1.627184, 2.272241, 1.362953, 0.175077, 1.171183, 0.229712, 0.218339, -0.793814, -0.549368, 0.420265, 0.554025, 0.656061, 0.336746, -0.914611, -0.307540, -0.300180, -0.107534, 0.209184, 2.226789, 0.218972, -0.953432, -0.617711, -1.514611, -0.779318, 1.288303, -0.278332, -1.143272, 1.148163, 1.549711, 1.274650, 0.430797, 0.540928, 0.112877, 2.015429, 1.414303, 1.076198, 0.660798, -0.117721, -1.438394, -1.102855, 2.052195, -0.116849, 1.251255, -0.306534, 0.476674, 0.877963, -1.397614, -1.771317, 0.233993, -0.612836, 0.175866, -1.558213, -0.706391, -0.152991, 1.262000, -0.195060, -0.831798, 0.595490, -0.118716, -1.161827, -0.522823, 0.158574, 0.305202, -0.565093, 2.323268, -1.102309, -0.381197, -2.280344, 0.930895, 1.981037, 1.245296, -0.594346, 0.658396, 0.324573, -1.300188, -0.764594, 0.277831, -0.299987, -1.387957, -1.298643, 1.689250, -1.284189, 0.010215, -0.777559, -0.415292, 0.354229, -1.524945, -1.123124, 0.297385, 0.783419, -0.220291, 1.547140, 0.779848, -0.809523, 1.754017, 0.183005, 0.711752, 0.315054, 0.131111, 0.456546, 0.678837, -0.832297, 1.027259, -0.538304, 0.629587, 1.003817, 0.312869, 0.184614, -1.878231, 0.707187, -0.094790, 0.193750, 0.891292, -0.986080, -1.019000, -0.779440, 1.499748, -1.339226, -0.708884, 0.731531, -0.540700, 0.251360, -1.334844, -0.257135, -0.153748, -0.770354, -0.425155, 1.227461, 0.045296, 0.521973, -0.217285, -0.368843, -1.065089, -0.544799, -1.554330, -0.250957, -0.388296, -2.032221, -0.581011, -0.712709, -0.435894, 0.257655, 0.988901, -1.363770, 0.330631, -0.128041, 1.838787, 1.595853, -0.956498, -0.064633, 0.379057, 0.269867, -0.367822, 1.399137, 0.393367, -0.783889, 0.602803, 0.589280, 0.236859, -0.508539, 1.400119, 0.106359, -0.471102, 1.155166, -1.061007, 0.306934, 0.151076, -0.250156, -0.788735, -0.401488, 0.280954, -0.308704, -1.149645, 0.882630, -0.687931, -1.083163, -0.749782, -0.974116, -0.363012, 0.716242, -1.055983, -1.713683, -0.041937, 0.044253, 0.761031, -0.598520, -0.305064, -0.007800, 0.930536, 1.335585, -1.537282, -1.459065, -0.778544, 0.600995, -1.563390, 0.948600, 0.813824, 1.489932, 1.849583, -0.411338, 0.926548, -1.313667, 0.119911, 1.266238, -1.010870, -0.401707, -1.450872, -0.213465, 0.339255, -1.586570, -1.897717, -0.193966, 0.956260, -1.416980, 0.928067, -0.633256, -0.594525, -0.038643, -0.038918, -0.769292, 0.234031, -0.262888, -0.289003, 0.464379, -0.949744, 0.498933, 1.336079, -0.428263, 1.009727, 0.649546, -1.716143, -0.005567, 0.912852, -0.190231, -0.089660, 0.966192, 1.083718, 0.528760, -1.597066, -0.879471, 0.673324, 1.050413, 0.293257, -0.196932, -0.529742, 1.021324, -1.483219, 1.078110, -1.624242, 0.400077, 1.119824, -0.099644, -0.270496, 0.011287, -0.127041, -0.584701, 1.088290, -0.241049, -0.227215, 0.578478, -0.304468, -0.140260, -0.427711, 0.347765, 0.604143, -0.250825, 1.027923, 0.568952, -2.199576, -1.163435, -0.939665, 0.185874, -1.796223, -0.250312, -0.224372, -0.336193, -0.947016, 0.848199, 1.479376, 1.253693, -0.058175, -1.666420, -1.042481, -0.640337, 0.161516, 0.868397, 2.155574, 2.614828, -0.092077, 1.989316, 0.811289, 0.852831, -0.702118, 0.273574, -0.143411, -0.997001, -1.091719, 0.193527, 0.372442, 0.107208, -0.643985, 1.106882, -2.019802, -1.685648, -2.106049, -0.383486, 1.552847, 1.460692, 0.300521, -1.094292, -0.323477, 0.283936, -1.737739, -1.313097, 0.959102, 1.180247, -0.493558, -1.211564, 0.513725, 0.034380, -0.480539, -0.683817, 1.854518, 1.771158, 1.147035, -0.478712, -0.528136, 0.330276, -0.645434, -0.845557, 1.748666, -2.156501, 1.103902, 0.572898, 0.088537, -0.731132, -0.732680, -1.467669, -0.764881, 1.471951, -1.138447, -0.083471, 0.463466, 0.249519, 0.614139, 1.137557, 0.404978, 1.752942, -1.535458, 1.239562, -1.419405, -0.614561, -2.103364, 0.382886, -1.476316, -1.061570, -0.453045, 1.406648, -0.364104, 0.205290, 0.565590, -0.717351, 0.376465, -0.338862, 2.208793, -1.019191, -0.524118, -2.713258, -0.539275, 1.168560, 0.004871, -0.528000, -0.070925, 0.281167, 0.242310, -0.478782, -0.033544, 0.272859, -0.383578, 0.053074, -0.219432, 0.134538, 0.749099, 0.214965, 0.984827, -0.077053, -2.026097, 0.861673, 0.020702, -2.141807, 0.441566, -0.974873, 1.817576, 0.472948, 1.352965, 0.416758, -0.379396, 0.755273, -2.611532, 0.837089, 0.330657, 0.451105, 0.184757, 0.773917, 0.158940, -0.071377, -0.420284, 0.920147, -0.542458, 0.770142, 0.245097, 0.383741, -1.408619, -0.468930, 0.255804, -1.139607, 0.153167, 0.148747, -0.287015, 0.464924, -0.410319, 0.436592, 0.558055, -0.100770, 1.184754, -0.370387, 0.249615, 1.891655, 1.082222, 0.673851, -1.087310, 0.524273, -0.866514, -1.215565, 1.025637, 1.736586, -0.578976, -0.317209, -0.998804, 0.576247, 0.838931, -1.872715, -0.406934, 1.214934, -2.815383, 0.960484, -0.989856, -1.253224, -1.064002, -0.314727, -0.634642, 2.032980, 0.433594, 0.167152, 0.233060, 0.088761, -0.426107, -1.026667, 0.540443, 0.301716, 1.437619, -2.185498, 1.027729, -2.297431, -0.514056, -1.688482, 1.339633, -0.019552, 0.512803, -1.106839, 0.716364, -0.798406, 1.169102, 1.578032, 0.767276, -0.381469, -2.297286, 0.210627, 0.359618, -0.805861, 0.600629, -0.188226, -0.081408, 0.900425, 1.088347, -0.835499, -0.129629, -0.903928, -0.027371, -0.239630, -1.089051, -0.313082, 0.097719, 0.637898, 0.535474, 0.030471, -1.128241, 0.006214, -0.416076, 0.429710, 0.358826, 1.695234, 0.928487, -0.541833, 0.053114, 1.109861, 1.677476, -1.718037, 0.151014, -0.068746, 0.054103, 0.305922, 0.294338, -0.551724, 1.398524, 0.312540, -2.500440, 1.104085, 0.495325, -0.212927, 1.173268, -0.108843, 1.048015, -1.607806, 1.660228, 0.340836, -1.270303, -1.865348, -2.217036, 0.847054, -1.427358, 0.458143, -0.330194, 0.955491, -0.988231, -0.002164, -0.061773, 2.525695, -0.700693, 1.121545, 0.616855, -0.380676, 0.134950, -1.148246, 0.615436, -0.019544, 0.878479, -0.923966, -0.412371, -0.161045, -0.210234, -1.330746, -0.183609, -0.741830, 0.527310, 1.861954, 0.094060, -1.174285, -1.077550, -0.923288, 0.026420, -1.048188, 0.290261, 1.250046, 0.765301, -0.439468, -1.000468, -1.277766, 1.236733, 1.002172, -0.324927, -1.096115, -0.888198, -2.813093, -0.427218, 0.097118, -1.501858, 1.398967, 1.336252, -0.387932, 0.730351, 2.137025, 0.002162, 0.045108, -0.690897, -0.752493, -1.084980, 0.008142, 1.223110, 1.346244, -1.197635, -1.421213, 0.808973, -1.289689, 1.536845, -1.297303, 0.530056, 0.385125, -0.526596, 0.855535, -1.505588, -0.120820, -0.921401, -0.020914, -1.912856, -0.356736, -0.768164, 0.402606, -0.798361, 0.535054, 0.893569, 2.822687, -1.156008, -1.707941, 0.261164, 2.136239, -1.874312, 1.327378, -0.026164, 0.875560, 0.811467, -0.960811, 1.037861, 0.244615, -1.569308, 1.578202, -1.705731, -0.610333, -2.049166, 0.423059, 0.857732, 0.380744, -0.352497, -0.056508, -0.131958, -1.073322, -0.552628, 0.655303, -0.116707, -1.895882, 0.392583, -1.313690, 0.446411, 0.854990, -0.110171, -0.598494, -0.769743, -0.735906, 0.256968, 0.438337, -0.017192, 0.196971, 0.005429, -0.412713, -1.778308, -1.626895, -2.556644, -0.557423, 1.429147, 1.317958, -0.272412, -1.997762, -0.412014, 0.207046, 0.091528, 1.029461, 0.392073, -0.360402, 0.263296, 0.007679, 0.688636, -1.461056, -0.498714, -0.123136, 0.541819, -0.203342, 1.457311, -0.298898, 0.320689, -0.663462, 1.652018, -0.605751, 0.604200, 0.513283, -0.368368, 1.583899, 0.810617, 0.119517, 0.837004, 0.059768, -1.602970, -1.577403, 0.893168, 0.723299, -0.385209, 1.508668, -0.252255, -0.366260, 0.681794, 1.686389, -1.165793, 0.320963, -0.430081, -0.038649, -0.308567, 0.036590, 1.122722, 0.048741, -0.135754, 0.516635, -1.231476, -0.447443, -1.480494, -2.451374, 0.561484, 0.454587, 1.098504, 1.391837, -0.674490, 1.235758, -0.435294, 1.098033, -0.144558, 0.299068, 0.331817, 1.535231, -0.939641, -0.575641, -0.495885, -0.382201, -0.139062, -0.191463, -0.792406, -0.498657, 0.524347, -1.747684, 1.232142, 0.975641, 0.385176, -1.097543, 0.119217, -0.135694, 0.147636, 1.214422, 0.806165, 1.073523, -1.236115, 0.520459, -0.280590, 1.482984, -0.117114, -2.284737, 0.898133, 0.047222, -0.996471, 2.130027, -1.694979, -0.388737, 0.919940, -1.719153, -0.824066, 0.881522, 0.152820, 0.869025, -1.091750, 1.479048, 0.655650, 0.170395, -0.663266, -1.659735, -0.786320, -2.301705, 0.545086, -2.005278, 0.815195, 0.329112, 0.228623, 0.076280, -1.078630, -0.802740, 0.543220, 0.063845, 0.098803, -0.661656, 0.328535, 1.262038, -1.335194, -0.169918, -0.780838, 0.247596, 0.876238, 0.988235, -0.636862, 0.780007, 1.871358, 1.945739, 0.273834, -0.310227, -2.233140, 0.365314, 1.783842, 0.970665, -0.761365, 0.074050, -0.306699, -1.098931, 0.747549, 1.067148, 0.444665, -0.138257, -1.594882, -0.829342, 1.002088, -0.721500, 1.865535, 1.641823, -0.120323, 1.393750, -1.077341, -0.432658, 1.998170, -1.725053, -0.778972, -0.629184, 0.374935, 0.192343, 1.266788, -0.513878, 0.303059, 0.045581, -1.911639, 0.686257, 0.535665, -0.527754, 0.708004, 0.374473, -1.361073, -0.352251, -1.384254, -0.942638, -1.197450, 1.442708, -1.974799, 0.313157, 0.368601, -0.083686, -0.249148, -0.952801, 0.371928, -0.024723, -1.143071, -1.118189, 0.049285, 0.126165, -1.335896, -0.219705, -0.291263, -2.121511, -0.291382, 1.850680, 0.476760, 1.247241, -0.087863, -1.046360, 2.259291, 0.168069, -0.092744, -0.682702, -0.285360, -0.826405, 1.897377, -0.243227, -0.895938, -2.812734, -0.957191, 0.440902, -1.748986, -0.219954, -0.147822, 1.799295, 0.083995, -0.333598, 0.715928, -1.555834, 2.146025, 0.344664, 0.395177, -1.218415, 0.179764, -0.640256, -0.512391, -1.018745, -0.026495, 1.479803, 0.100398, 0.569789, 2.984483, 0.455847, 0.775229, -1.191186, 1.494525, 0.039490, 0.973096, 0.117687, 1.987833, -1.201655, -0.432377, 0.423500, -0.947241, -0.703787, -0.378355, -0.238298, 1.048637, -0.108448, -0.189550, 1.425745, -1.224025, 1.173662, -1.480149, 1.032398, -0.621018, -2.563157, -1.337667, -0.497966, 0.907651, 0.465285, -0.444220, -1.188333, -1.657029, -0.513727, 0.028864, 0.354932, 0.462056, 1.403895, 0.076440, -0.065871, 0.929640, 0.477340, -1.596119, -1.363667, 0.527460, 1.277548, 1.611359, -0.361237, 0.778678, -1.513739, -0.924164, -0.008992, 1.457408, 0.856956, -0.928712, -0.467367, -0.454358, 0.744409, 2.005465, -0.857244, -1.683828, 1.327874, -0.911610, -0.491271, 1.119046, 0.031979, 0.571739, 0.528408, 1.138054, -1.757774, 0.267759, -0.356016, -0.468771, 0.997002, -0.159926, -0.727595, 1.736470, 0.777707, -1.167369, -0.485608, -0.912983, 1.217748, -0.212528, -0.853817, 0.228232, -2.686566, 1.646836, -0.829939, 1.656828, 0.584317, -0.044585, 1.709128, 0.465919, 0.879865, 0.900781, 0.794212, 0.040205, 1.335361, 0.310787, -1.778060, -1.557740, -1.042201, -0.633923, 0.518643, -0.184673, -1.650661, 0.097356, 0.810173, 1.325395, 0.209772, 0.023602, 1.879506, 0.348412, -0.783215, 0.650815, 1.226574, -1.368783, 0.074729, -0.696541, -1.579727, -0.092673, 0.303608, -0.774157, -0.416064, 0.318807, 0.488902, 0.699349, 0.732327, -0.368440, -0.520668, 1.681365, -0.856613, -1.234067, 0.466894, 0.553546, 1.315115, 1.065340, 0.376892, -2.466966, -1.202604, 0.701714, -1.464124, -1.209327, 0.652410, -0.816180, -0.795581, 1.686028, 1.478356, -0.798279, -1.843620, 0.679247, -1.275601, -0.790941, 0.670378, -1.458036, 1.727090, 0.477588, -0.158130, -1.124077, -0.556039, -1.370806, 0.214565, 1.016246, 0.225832, -0.021422, -0.350025, -1.120753, 0.515995, 0.124096, 1.266541, -1.119876, -1.189570, -0.222849, 1.618944, -0.174155, -1.634841, -0.397830, 1.431442, -0.240132, -0.404971, 0.214981, -0.883910, -0.019745, 0.130105, 1.131841, -1.318661, 0.278383, 0.888417, -0.157396, -0.250962, -0.692790, -1.671236, -0.923920, 1.626840, -2.566907, -2.588068, 0.232606, 0.836610, 0.238575, -0.125011, 2.108894, -0.703887, 1.114850, 0.661141, -0.679078, -0.017136, -0.347517, 1.998961, 1.395852, -1.657131, 0.198214, 0.418952, -0.129545, 0.236703, -2.043975, -1.517588, 1.111415, 0.483752, 0.758357, -0.943970, 0.429716, 0.158237, 0.309731, 0.789247, -1.138120, 0.809174, -0.451380, -0.935289, -0.135627, -0.422931, 1.442118, 1.034704, -0.561760, 0.465344, 2.401720, 1.786758, 0.170343, 0.338543, -2.443328, 1.003269, -1.005822, -0.673231, 1.541393, -0.389642, -0.033440, 0.360302, -1.182644, 1.425322, 0.892098, 0.445260, -1.370936, -0.819729, 0.847646, 1.353911, 1.480346, 0.407400, 1.186540, 0.411670, -1.731507, -1.535358, -0.537789, 0.149704, 0.602993, -0.539579, 0.743468, -0.173620, -0.827505, -0.070082, -1.364710, 1.053678, 0.032004, 1.397939, -0.509007, 1.020534, -0.882641, -2.461971, -0.139934, -0.501535, 2.737041, -0.172967, -1.000719, -0.393973, 0.181018, 1.114432, -1.784666, -1.147407, 0.428242, -1.323928, -0.563387, 0.047199, 1.505847, 1.022790, 0.531492, -1.311868, -1.688057, -0.283533, 1.705258, -1.434736, -0.123833, -0.053399, -0.401082, -1.534600, 0.958491, -1.395615, 0.285766, 0.698597, 0.537141, 0.427874, 0.306182, -0.793907, 0.515062, 1.136896, 1.217577, 0.042965, -0.446491, -0.597166, 0.898667, -1.027492, 0.321593, -0.554625, 0.232704, -0.577013, -2.243983, -1.186248, -1.401031, -0.340130, 0.599001, -0.222372, -1.715254, -1.187863, 0.867853, -0.536196, -0.363334, 2.839114, 0.161027, -2.580624, 0.422206, 0.697330, 0.036202, 0.500172, -0.302983, 0.504722, 0.840128, -0.079271, -0.404204, 0.002550, -1.729103, -0.191667, 1.036394, 0.805130, -0.914922, -0.366015, -0.167713, 0.888280, -1.909882, -0.146108, -0.226232, 0.265654, -1.156625, -1.848921, -0.362236, 0.746349, -0.799636, -0.488419, 0.195167, 0.430818, -0.444170, 0.462885, 1.613835, 0.973877, -0.654531, 0.236141, 0.137921, 3.056623, 1.960802, 0.897377, 0.677855, -0.618055, 0.710570, -1.106110, 2.053565, 1.068726, 0.977257, 0.937141, -0.870400, 0.476741, -0.747218, 0.293541, -1.313276, 0.019568, 0.137206, -0.045241, -0.330578, -0.319572, -2.346273, -0.135398, 0.032833, -0.077535, -0.067603, 0.158025, -1.442539, -1.360395, 0.043443, -0.058617, -1.397903, 0.590425, 0.238533, -1.020523, 1.001650, 1.473927, -0.247317, -1.598878, -0.323764, 0.214676, -0.108777, 0.761382, -2.263814, 2.318521, 1.701192, 0.042167, 1.670401, 0.194657, -0.292212, -1.012950, 1.264882, 2.735009, 2.110200, -2.634526, -0.561011, 0.232000, -0.964361, 1.712467, 0.597691, -0.658657, -0.388905, -0.075787, 0.668499, 0.522251, -1.408303, -0.792395, -0.350595, -1.195469, 0.078201, 0.494205, -0.700705, -0.889148, 1.318351, -1.293320, -0.047690, -1.013899, 0.832235, 0.507639, 1.407132, 1.552927, -0.267982, 0.191241, -0.020907, 2.279176, -2.100779, -0.354733, -0.135324, -0.557411, -0.752948, -1.237666, -0.303388, 0.378294, 0.560515, -0.629500, 2.192942, 0.601050, 1.451738, -1.677551, -0.414675, -0.849750, 0.811348, 0.923301, -1.506332, -0.718640, 2.118806, 0.704622, 0.224871, -0.162316, 1.759398, 0.382982, -1.351945, -0.664156, 1.139768, 0.701458, -1.418082, -0.180974, -0.754276, 0.082166, -2.978314, -0.066740, 0.524941, 0.937907, 1.034182, -0.742407, -0.380772, 0.617936, -1.447057, 1.270606, -0.061085, -0.699317, -0.072457, -0.495823, 0.114930, -0.048082, 0.903273, -0.988056, 0.571635, 0.617258, -0.657946, 0.785370, -0.864442, 0.262980, 1.356200, -0.086928, 0.095905, -0.324154, 0.157737, -0.734009, -1.356705, -0.132498, 0.262931, -1.324065, -1.001462, 0.184577, -1.882876, -0.457107, -0.257052, -2.855753, -1.189063, -2.357385, 0.530384, -0.492212, 0.235899, 0.672286, 1.995016, 0.958052, -0.143548, -1.385804, 0.664588, 1.212745, -0.335203, -0.198949, -0.275492, -0.490069, -0.851467, -0.502646, -0.694880, 0.923471, -0.559223, -0.380421, -0.219620, 0.012877, 0.689580, -0.471939, 0.311016, 0.504561, -1.043829, -0.020220, 2.053994, 1.013544, 1.279639, 1.130872, -1.200121, -0.217655, 0.640824, 1.045799, 0.856022, -1.346486, 0.553904, -1.952512, 0.571606, -0.937547, 0.049423, -0.418254, 0.063134, -1.396424, -2.132203, 0.717884, 0.795285, 0.896249, -0.420277, 0.252718, -0.856409, 1.427481, -0.071945, 0.896435, 0.250425, -0.511987, -0.128263, -0.379123, -2.497279, -1.448742, 0.590759, 1.020750, 0.290560, 0.900000, -0.731517, -0.043071, -0.961972, -0.090615, 0.109040, 1.149593, 1.544301, -0.071802, -0.558318, 1.305153, 1.637421, 2.264952, 0.130616, 0.431076, -1.209006, 1.402684, -0.668752, -0.221807, -1.546151, -0.083456, -1.623347, -0.592305, 0.359295, 1.320567, -0.425641, 0.656586, -1.012107, -0.224462, 0.153299, -0.380884, -1.655461, -0.056466, -0.684801, -0.901707, 0.441577, 1.001029, 1.092942, -0.431821, 0.648963, 1.011888, 1.676885, 0.288997, 0.752124, 0.692520, -1.605333, 1.552947, 2.164627, 0.921668, 2.019550, -0.764689, 1.174913, -0.301513, 1.746088, -0.600233, -1.558868, -1.391118, -0.078036, 0.634661, 0.803007, -2.076390, 1.138397, 1.478810, 0.125583, -0.084874, -0.178028, -1.695460, 0.043467, 0.023199, 0.809294, 0.086988, -1.924860, -1.579145, -0.409714, -0.164653, 0.612002, 1.310575, -0.563238, -0.418663, -1.650137, 0.670620, 1.866522, 0.454617, -0.412714, -0.193111, -1.242559, 1.447700, 0.088401, -0.091978, -0.861586, -1.051563, -0.558869, -0.487938, -1.399271, -0.267957, 1.803463, -0.473809, 1.161841, -0.129115, 0.612919, -0.674868, 1.261652, 0.200186, 0.340698, -0.614918, -0.511643, 0.908601, 0.212593, 0.105513, -0.961226, -0.032471, 1.131521, -0.653440, 2.310886, 0.353983, 0.031698, -0.763686, 0.449569, -0.276229, -2.123323, 0.128279, 1.356084, -1.287503, -0.241321, 1.132242, -0.279019, -2.384415, -1.074451, 0.517315, -0.731740, 0.972761, -0.131102, 0.337756, 0.563182, -0.410807, -0.064794, 1.135653, 1.690900, 0.939669, -0.113825, -0.539701, -1.086950, 1.644704, 1.399096, -0.625296, -0.854620, 0.903969, 0.848095, 0.299563, -0.975841, -1.526702, -0.796246, -0.237315, -1.378751, -0.831317, 0.678987, 0.166800, 0.550731, 0.520348, 1.586275, -1.438124, 0.633987, 0.786819, -2.263108, -0.198172, 0.689654, -1.391703, -2.278003, 0.118253, -0.816900, -0.287264, 3.095044, 0.109221, -0.580659, -0.084627, 1.776584, 0.225332, -0.001302, 0.567379, 0.242299, -0.237595, 1.694363, 0.818192, -1.444533, -1.027250, 0.282616, 0.168056, -0.095744, 0.294696, -0.793423, -0.500340, 1.255089, 0.667295, -0.990263, -0.313284, 1.634145, 2.045603, -0.397491, 0.895575, -1.087639, -0.664247, 1.486223, 1.796901, -1.206272, 2.581736, 0.103573, -0.942171, 0.014846, -0.809061, 1.677650, 1.583868, 0.886975, -0.329620, -0.097984, 0.984680, -1.266871, 0.293181, -1.106914, -0.234667, 1.398514, 0.528137, -0.208673, 0.623864, 1.479432, -0.329066, -0.662143, -0.920478, -0.758427, 1.027275, -0.367316, 0.216995, 0.471766, 0.348626, -0.510669, 0.559080, 0.243859, -0.732129, 1.396524, -1.670792, -0.924896, -0.617247, 0.334616, -0.133530, 0.489357, -1.860342, -0.088433, 2.155739, -0.521377, 0.221571, 0.729437, -1.396086, -0.809406, 1.910963, -1.737371, 0.639834, 1.094103, 0.706392, 0.842431, 0.055056, -0.758441, 1.306328, -0.160315, 1.563492, 1.674290, -0.289177, -0.145390, 0.863856, 0.293987, -1.409617, -1.525968, -1.673670, 0.228570, -0.685251, -0.058514, 0.590290, -0.926575, 0.497276, -0.537877, -0.922598, 0.244252, -1.221544, 0.534330, 0.574443, 0.818631, -0.160861, -0.332849, -0.125453, -0.555368, -0.391375, -0.917852, -0.040597, -0.398755, -0.165739, 0.728188, -0.013323, -0.269718, -0.927593, 0.115815, 1.041997, 1.203235, -0.023060, -0.548096, -0.306546, -0.485716, 0.916325, -0.010977, -0.619848, -0.290108, 1.186900, 0.606395, 0.247572, 0.507181, -0.169942, -0.464613, 0.473423, -1.733135, -0.235441, -1.255373, -0.068000, -0.330165, -1.273669, -0.675735, -0.458130, 0.385640, -0.459476, 0.002494, -2.021896, 0.233749, 0.082650, -0.679421, 0.377349, 0.906724, -1.779633, -0.644556, -0.988552, 0.974903, 1.764214, -0.700996, -0.834675, -0.406012, -0.682128, 0.921497, -0.420999, 0.521205, 0.071171, -0.586911, -0.209439, -0.448225, -0.063897, 0.117296, 0.072199, -0.677744, 0.389345, 2.378861, -0.535726, -0.190938, -0.826828, 1.003668, -0.746230, -1.048332, 1.241239, 0.765582, -0.804895, 0.369499, 0.318621, 0.599119, -0.006593, 0.350569, 0.666746, -1.656896, -1.903021, 0.986369, 0.511390, -0.189952, 0.308307, -0.996068, -0.089601, 1.069018, -0.126349, 0.380309, -0.865276, -0.585415, 1.239317, 0.736387, 1.051951, 0.934849, 0.995329, 0.808413, 1.155529, 1.447031, -1.930672, 1.035716, 1.172179, -0.728335, -0.104805, -0.037834, -0.729220, 0.372757, -0.159015, -0.109594, 1.265020, 1.237076, -0.065003, -1.152987, -0.461774, -0.364159, 1.541643, 0.957010, -0.344586, -2.358160, -0.790391, -0.607555, 1.538420, -1.372096, 0.072371, 0.856346, -1.498535, -0.221621, -2.082298, -1.010648, 0.221475, -1.466796, -1.206395, -0.251086, -1.396536, -1.781803, 0.273257, -0.748576, 0.299583, -0.680965, 0.289423, 1.772624, -0.858616, 1.632509, -0.284707, 0.307929, 1.763190, -0.750607, 1.044618, -0.197139, -1.723933, 1.567291, 1.038435, 1.745584, 0.646050, -0.162987, 0.087712, 0.391903, -1.049266, -1.548435, 0.866564, -1.621533, 1.007046, -0.742802, -1.033276, -1.150603, -1.652577, -0.131726, 0.260123, 1.495665, -0.352085, 0.623138, -0.353350, 0.087244, -0.736134, 1.238344, -0.041214, 1.095795, -1.488932, -0.161193, -0.505619, 0.914654, 0.055426, -0.044992, 1.720750, -0.457668, -0.983800, -1.723600, -0.636806, -1.164193, 0.462513, -0.860992, -0.164273, 0.681077, -0.110177, -0.537707, 0.603519, -0.266059, 0.504533, 0.433605, 0.915886, 1.241662, -0.041667, -0.929604, -0.077104, 0.829837, 0.180254, -0.103175, -0.349059, -0.401627, 1.311219, -1.005952, 0.656179, -0.747920, -0.442702, 0.104443, 0.106547, -1.724398, -0.632760, -1.529638, -2.244247, 0.989368, -3.336382, -1.350338, -0.603344, 0.630625, -0.872442, -0.783113, -0.349187, 1.298522, -1.409600, -2.199073, 0.981876, 1.592892, -0.982872, -1.141727, -0.847958, -1.895387, 1.085180, 1.389628, -0.978664, -0.481784, 0.905256, 1.168037, -1.296850, 0.581523, 0.995853, 0.896719, -0.783906, 0.231347, 1.008441, 2.127912, -1.707786, 1.492285, 1.735123, -1.003856, -1.235369, 0.343662, -0.525784, 1.272984, 1.215477, 0.068538, -1.629287, 0.885230, -1.293337, 0.534836, 1.051891, 0.526262, 0.290800, -0.088116, 0.259985, 1.541642, -0.166631, 2.222610, -0.999406, -0.991624, -1.005903, -0.431585, 2.045624, 0.648656, 0.176206, -1.415487, -1.594633, -0.214653, 0.501200, -3.327731, 1.517336, 0.848982, -1.001623, -0.787282, 0.131969, 1.969494, -0.900655, 1.510213, -1.719401, -0.929965, 1.167598, -0.715518, 0.998474, 0.338846, -2.247123, -0.408650, 0.537860, 0.576059, -0.397243, 1.428192, -0.569604, 1.455349, -0.659593, -0.213955, -0.190803, -1.380952, -2.029932, -0.575588, 0.541320, -1.072692, 0.710900, 0.438037, 1.672603, -0.392935, 1.289105, -0.166177, 0.765185, 1.093274, 0.391209, -0.724611, 1.241976, 1.100951, 0.162936, 1.324800, 1.340981, -0.119059, 0.289924, 0.778601, -0.114449, -0.219532, -1.062508, 0.292518, 0.858824, 0.742692, 1.611511, 0.786399, -0.356337, 1.187334, 0.010011, -0.828134, 0.971600, -1.144033, 0.839095, 0.739268, 1.115781, -1.715256, -1.836031, 0.120095, -1.295809, 0.440537, 0.854153, 0.574895, 0.207010, 1.098320, -0.031349, 0.191757, 1.649910, -0.178384, -1.132087, 0.026814, 0.116890, 0.112190, -0.213210, -0.686657, -0.121402, 0.271115, 0.649215, -1.060759, 0.380043, 0.954294, -0.310485, 1.398980, 0.672790, 0.509533, 0.494445, -0.436814, 0.846024, -0.482637, -0.105292, -0.035994, 1.715719, -0.136960, -1.179144, -1.284762, -0.220238, 1.368714, 0.902943, -0.388232, 0.031580, 0.422140, -0.911638, -2.082842, 0.767382, -0.015357, -1.002030, 0.291683, -0.929051, -0.444473, 1.966432, 1.324635, -0.008277, 1.065126, -0.345606, -0.319761, 0.319571, -1.260517, -2.011234, -0.726480, -0.385305, 0.610081, 0.047508, 0.711275, 1.122808, 0.099380, -1.853627, 0.039971, -1.002162, -0.544880, -0.969894, 0.796295, -0.856615, 0.895616, -0.431071, -1.915083, -0.490952, 1.259932, 0.720270, -1.102404, 0.111825, -0.752200, 1.402974, -0.101218, -1.230960, 1.612375, -0.408381, 0.884101, 0.199093, 1.464220, 0.330789}, - { -1.528585, 0.983889, -0.499150, -0.223014, -1.232690, 0.291085, -0.223805, 0.411602, -0.365022, -0.031481, -1.021595, 0.660676, -0.626015, 0.130819, -0.630870, -0.740446, -1.313422, 0.228579, 1.312049, 0.016274, -0.505344, 0.281289, -0.891910, -0.294884, 0.740594, 0.068537, 1.222148, 0.250725, -0.040261, -0.639984, 0.325639, 1.329382, -0.749008, 0.054584, 0.032407, 0.758772, -0.574755, 0.231966, -1.063649, 0.567060, 0.759600, -0.749698, -0.585125, -0.706897, 0.819961, 0.727940, 0.651822, 1.054664, -0.367186, 0.902286, -0.015268, -2.132958, 0.203087, -0.539434, 0.549908, 0.240788, -0.878165, -0.763983, -0.101119, 0.716684, 0.062846, -1.060311, 1.196181, 0.077812, 0.404531, -0.956294, -0.070990, 1.106855, 0.618609, 0.268663, 0.081558, -0.787187, -0.135513, -1.286443, -0.925321, -0.161293, -1.233489, -1.080396, 0.465980, 0.880576, 1.187566, -0.164665, 0.197257, -1.487821, 1.134653, -1.302039, -0.001199, 0.815884, -1.011536, 0.699102, -0.404277, -0.865818, 0.380316, -0.002470, 0.737019, -0.114187, 1.361345, -0.120122, 0.566841, -0.732340, 0.116799, 0.812616, -0.222168, -0.302839, -0.390154, -0.062397, 1.022505, -1.273622, 0.958283, 0.527289, 0.787099, 1.789362, -0.830767, -0.061116, -0.715143, 0.989719, 1.312024, -0.103241, 0.922628, 0.546323, 0.422251, -0.533996, 0.059773, 0.304350, 0.134255, 0.745131, -0.640739, 0.867087, -0.560230, -0.720101, 0.562605, -2.018087, 0.839341, -0.097239, 1.174193, -0.842501, 0.740018, -0.719852, -2.051198, -0.436773, -0.107546, -0.364597, -1.384249, 0.117560, 0.808674, 1.892442, 1.394951, 1.382266, 0.320015, 1.061469, -1.580091, 0.533058, 1.295875, 1.250858, 0.867692, -0.669411, -1.728438, 1.721880, -0.424780, -0.242200, -1.429870, 1.950367, -0.019456, 0.174931, 0.512401, -1.007260, -0.007698, 1.030953, -0.785095, 0.587675, -0.139587, 0.303261, -0.185171, 1.078003, 0.141341, -0.325681, 0.409251, 0.884302, 0.378858, 0.343696, -0.007463, -0.952749, 0.982318, -0.458325, 0.431066, -0.488515, 1.285079, 0.649887, -0.795097, 0.047880, -1.246803, 0.097538, 2.380083, -1.450382, -0.934113, 0.742989, -0.619603, -1.961643, -0.155840, -1.044392, 1.315420, -1.255346, 0.562373, 0.474025, 0.364615, 0.671960, 0.858578, 0.127014, -0.817039, 0.840599, -0.855353, -1.283971, 0.606666, -1.254695, -1.001443, -0.076443, -1.637390, 0.318139, -0.875271, 0.721107, -0.209753, 1.465423, -0.397503, -1.173907, -0.434882, -0.723125, 0.298049, 0.415903, -0.214813, -0.779666, 0.094826, -0.650036, 0.542699, 0.349991, 0.125594, -2.033349, -0.763235, -1.039107, 0.900361, 0.009362, -0.567164, 0.885626, 0.064476, 1.579943, 0.075857, -0.519321, -0.373023, 1.156549, -0.737498, 0.644146, 0.772759, -2.125074, 1.231560, -2.683326, 1.039456, 0.056548, 0.517283, 0.136986, -0.678799, 1.098678, 0.882830, -2.102855, 0.851283, 0.504098, 1.207004, 0.931283, -1.264617, 0.011476, 0.591821, 1.184969, -0.961212, 0.139644, -0.660831, 0.305168, -1.208051, 0.233318, 0.700095, 1.283509, 0.324108, 0.495576, -1.061230, -0.206965, 0.761801, 0.033181, 0.440214, 0.040518, 0.616313, 0.295511, 0.407930, 0.362573, 0.937340, -0.568489, -1.071635, -1.001128, -0.457268, 0.543761, 0.693154, -0.450404, 0.887739, 0.287612, 0.443296, -0.193653, 0.141570, 0.527235, -0.069596, -1.478696, -1.300620, -0.504491, 1.885707, -1.164754, 1.395041, -0.853243, 0.015204, 0.661630, -1.987414, -1.101709, 1.851813, -1.306159, -0.153740, 0.587134, -0.089961, 1.104270, -2.328705, -0.660836, 1.146453, 0.995669, -1.967991, 0.980982, -1.073565, 0.957437, -3.022399, 1.317716, -0.500597, -1.266898, 1.063934, 1.659208, -0.272537, 1.691416, -0.879670, -0.323290, -1.739418, 0.694532, -0.048980, 0.897082, 2.157368, -2.802532, 1.128118, -2.115752, -1.108553, -0.005655, 1.175860, 0.059270, -0.419094, 0.726087, 0.517184, -0.160207, -0.966914, 0.618487, 0.179462, 0.359682, 0.867037, 0.032544, 0.500492, 0.307941, 1.771790, 0.378537, 0.427005, 0.192290, -1.042917, -1.159638, 0.787267, 1.327091, -0.884519, 1.230271, 0.840701, 1.639742, -0.886961, -0.891833, -1.506473, 0.925444, 1.819988, 0.404576, 2.119494, 0.214463, -1.297772, 0.750829, -0.840742, 1.428026, 1.289873, -1.149179, 1.108338, -0.172330, 1.996234, 0.932108, 0.845619, 0.813612, -0.973436, -0.029861, -0.939469, -0.344599, -1.151640, -1.229235, -0.607299, 0.482107, 0.479467, -0.676827, -1.689713, -0.704264, -0.245207, 1.423006, 1.950386, 1.388501, -1.342137, -0.874730, -0.463435, -0.861913, -0.342778, 0.581104, 1.525678, 0.244771, -0.615707, -0.444179, -1.594297, -0.471480, -1.005503, -1.057680, -2.527761, -0.589943, 1.294116, 1.309565, -1.234291, 0.198335, -1.659408, 1.719685, -1.308810, -1.518271, -0.049223, -0.554038, 0.082067, -0.361201, 0.199725, -0.925516, -0.359935, 1.522369, -0.551894, -0.314783, -0.326453, 2.377429, 0.242672, -0.144021, -0.234333, 1.753826, 2.452723, 1.208959, 0.929866, -0.148051, 0.258894, 0.348292, -0.486527, 1.030207, 0.523697, 0.175798, 1.421702, -0.035517, -0.583522, -1.052002, 1.663021, 2.464565, -0.457331, 1.393666, 0.555865, 0.834828, 0.752192, -0.942726, -0.942907, -1.369926, 1.556373, -1.242350, -0.596377, 0.792980, 0.422691, -0.439911, -0.394794, 0.626970, 0.169234, -0.676422, 0.695020, 0.680034, -2.073834, 0.318893, -0.749351, 0.281616, -0.730610, 1.536807, 1.269386, 0.096238, 0.432480, -0.039462, 1.531014, -0.176188, 0.234875, -0.190344, -0.178197, -0.494622, -0.260476, -0.276411, -0.978293, -2.050851, -1.613448, -0.060035, -0.341560, 0.573924, -0.198949, -0.751478, 0.355465, -1.102729, -1.231928, 0.249779, 1.044406, -0.746747, 0.562755, 0.150071, -0.815148, 0.066598, -0.138239, 1.270939, 1.225537, -0.592050, 0.260800, 0.775360, -0.026105, 1.237430, -0.986776, -0.793640, -0.714291, -2.248067, 0.842684, 0.115358, 0.073554, -0.789709, -0.191683, -0.098856, 1.457245, -0.237845, -1.525437, -0.138134, 0.829068, -0.021182, 0.043200, 0.501391, 0.656386, -0.876930, 0.365267, 0.112038, -0.824848, 0.275731, 0.528305, 0.385697, 2.044291, -0.439301, -0.720467, 0.991971, 2.273851, -0.112329, 1.085626, -1.321414, 1.550636, -0.735019, -0.159269, -0.693036, 0.531851, 1.242950, 0.590082, 0.032854, -0.268367, 0.431621, -0.364190, 0.911184, -0.190646, 0.407714, 1.347691, -0.304216, 1.128748, 1.501841, -0.485426, -1.622365, 0.000178, -0.280583, -0.055016, 0.432168, -0.821051, -0.447986, -0.333291, 0.814798, -1.691841, 1.703749, -0.303899, -0.694030, -0.866316, 0.110702, -1.298241, 1.173338, 0.216280, -1.245771, -0.487252, -0.846584, 1.178957, -0.849830, 0.898420, 1.768309, -0.971616, 0.899211, -1.711004, 0.297717, -0.936116, -1.231106, -1.367456, 1.959779, 0.502142, -1.136966, 0.829877, 0.241248, 0.654624, 0.458409, 0.652497, 0.193033, -0.346301, 0.187575, 1.837667, -1.250660, -1.101345, -0.501435, 0.220304, 0.215576, -1.331960, -0.119991, 1.842534, 1.017017, -0.006387, 1.070005, -0.607425, -0.116607, 0.338258, -0.121515, 0.497692, -0.796940, 0.419743, -0.267430, -0.211368, -1.204600, -0.500376, -0.615469, 0.160066, 1.581782, 0.665352, 1.656134, 1.238711, 0.605496, -1.002582, -0.235327, -0.061581, -0.296004, -0.176150, -0.339779, -1.384267, -0.068234, 2.465667, -0.950088, 1.951808, -0.838449, 0.876152, 0.299702, 1.169416, 0.673109, -0.504274, -0.356379, 0.914782, 0.182470, 0.959500, 0.789742, -0.360650, 0.196019, -0.094375, -0.014411, 0.973703, -1.121771, -0.938480, -1.518121, -2.009377, 0.733018, -1.140728, 0.161206, 1.855261, -1.117708, 0.838412, -1.198984, 1.069933, 0.677694, 0.808772, 0.914989, -0.784941, -1.604322, 1.134299, 0.979655, 0.777888, 0.236527, -0.431617, -1.454105, -0.343640, 3.459868, 1.130261, -0.633418, 0.610709, 0.607167, -0.478187, 0.921286, -0.029543, 0.337618, -0.662517, 0.721575, -1.019280, -0.710560, 0.989958, 0.508684, 0.387299, 0.266558, -1.125065, 0.993325, -0.744718, 0.219002, -0.601113, 0.981536, 0.471479, 1.490893, 0.505233, 1.372832, 1.168632, 1.209643, -0.087622, 1.005157, 0.271731, 0.066910, -1.398496, 0.666050, 1.005273, 0.137496, -1.147869, -0.427714, -0.303376, 0.561293, -1.749500, -1.710384, -0.727001, 0.290281, 0.807080, 2.769151, 0.349665, -0.497446, 0.645310, -1.513402, -0.689239, 0.020332, 0.117334, 0.765119, 0.654459, -0.762251, 0.446873, -2.204895, -0.202944, 1.008021, 0.305674, -0.096879, 2.308195, 0.462794, 1.080449, -0.345487, -1.291574, -1.122318, -1.116160, -1.027598, 0.318204, 0.502638, -1.964715, -1.227736, 0.836005, -0.692966, 0.097658, 1.309985, 1.277795, -2.291872, 2.121365, -0.059751, -0.274984, -1.495993, 0.507968, -0.936313, -2.095466, -1.224858, -0.355179, -0.423306, 1.182399, 0.320705, 0.104190, -0.886878, 0.345382, -0.539444, 0.012004, -0.934699, -2.010979, -0.511383, 0.262882, 0.531387, -0.117243, -0.605265, 0.077045, 0.373672, -1.378241, 0.151214, 0.620699, -0.265486, -0.472592, 0.541416, 0.309113, 0.705576, -0.914884, -1.239032, 0.122652, -0.614573, 0.798384, 0.328963, -0.640977, 0.109637, -1.178576, 0.381937, 0.311826, -0.202689, 0.280572, 0.671444, 0.211392, -1.290677, -0.572104, 0.329893, -0.887881, -0.340961, -0.051399, 1.494626, 1.320413, -0.884367, -0.393779, -2.054686, 1.501561, 1.262307, 1.588740, -0.342659, -0.380298, -1.933367, 0.937726, -0.202528, -0.454612, 1.110017, 3.187464, 0.898520, -0.313109, 1.746430, 0.697926, 0.346989, -0.273153, -0.587579, 1.411395, -0.660513, 0.781252, 1.503714, 1.087576, 0.980184, -0.155311, 0.309774, 0.532134, -0.208186, 0.351331, -2.078174, 0.423882, -1.485632, -0.149048, 1.942785, 1.592063, 0.940881, -0.540367, -1.225420, -1.449740, -0.075467, -0.482278, 0.232206, 1.472012, -1.018986, 0.299885, -0.098323, -0.201997, -1.640178, -0.525716, -0.425520, -0.121648, 1.609431, -1.167719, 0.056033, 0.829050, 0.556802, -0.358564, 1.644239, -2.916266, -0.831095, -0.875454, 0.703638, 0.217085, -0.886764, -0.034779, 0.367953, -1.330590, -0.160373, 1.666811, -0.879484, 0.907697, 0.204346, -0.493201, -0.892093, -1.970825, -0.560274, -1.584238, -0.363948, -0.764422, 0.675614, 2.314371, -0.795333, -0.512759, 0.109625, 2.694571, -0.320923, 0.231863, 0.269594, 0.730260, 1.031615, 0.614924, 0.118755, -1.130206, -1.074651, 0.716812, 0.327547, -1.305955, 0.268753, -0.446093, -0.805593, 0.330870, 0.908739, 0.119853, -1.909271, 1.019081, 0.650978, 1.178185, 0.479770, 1.506427, 0.548287, -0.137846, -0.173857, 0.569479, -0.771818, -1.510230, 0.094363, 1.235422, -1.171559, -0.669253, -0.888831, 1.342733, 0.306569, -0.110335, 0.787696, -1.311203, -1.631160, -0.698563, 0.763609, 0.165298, -1.540938, -0.579769, 1.362025, 0.489529, -0.168974, 1.363089, 1.360016, 0.158731, 0.569206, -0.433700, -1.434596, -0.781457, 0.938912, 2.450022, -0.181041, 0.254620, -0.617511, 0.363047, 0.687670, 1.141103, -0.631924, 0.206880, -0.206839, 0.619732, 0.466541, 0.648561, -1.170062, 0.890412, -1.287486, -0.573536, -0.138101, -0.049675, 0.432492, -0.918957, 2.133202, 0.385154, -0.503877, 0.927895, 1.455049, -0.019818, 0.950322, 0.842331, -0.513541, 1.565555, 0.385097, -0.041971, 0.527205, -1.751739, -1.137310, 2.281250, 0.090714, 0.029891, 0.648132, -1.375468, 1.399584, 0.664215, -1.034558, 1.376278, -0.923505, -0.919619, -0.877759, -0.063351, 0.449556, -2.321961, -0.193347, 1.519354, 0.438511, -0.781446, -0.458336, 1.087979, -0.584879, -0.464355, 1.883744, 0.358777, -1.719022, 0.062937, -0.882190, -0.545765, -0.298924, 0.006025, -0.241737, 0.150216, -0.445682, 0.125215, -0.576941, -1.455831, -1.707092, -0.237061, -1.077043, 1.737693, -1.007069, -0.039801, 0.444028, 0.302103, 0.984256, 0.871039, 1.223249, 0.773058, 0.612394, 2.176614, -1.363910, -0.826080, 0.469314, -0.702826, -0.687872, 0.178542, 1.279566, 0.946444, -0.142691, -1.782523, 1.158043, -1.970165, 0.292134, 0.920224, 1.291350, 0.919516, -1.355353, -0.406332, 0.877542, -0.893353, -0.078881, 0.939628, 1.465891, -1.120725, -0.112671, 1.945407, -0.593268, -1.324380, -1.776101, -1.000620, 2.129123, 1.176679, -0.528812, 1.738531, 1.893578, 0.466419, 0.871072, -1.100719, 1.515462, 0.231334, -0.893359, -0.071043, -0.170108, 0.900216, -3.052384, -0.165906, -0.155277, -1.021669, 0.271065, -0.388483, 1.510968, 0.835928, 0.052915, 0.809890, 0.234164, 0.579433, 1.367598, 2.089753, -0.951635, 0.421135, 0.886154, 1.848532, -0.686448, 0.243487, 0.362641, 0.115117, -0.082868, -0.645830, -1.022738, 0.352840, -0.229888, 1.479145, -0.439949, 1.118345, -1.503363, 0.520115, -0.690661, -0.755765, 1.547948, -0.791662, -2.124136, -0.493485, -0.820498, 2.755218, 1.161979, 1.090863, -0.577151, -0.322706, 0.088857, 1.121680, -0.426547, -0.783499, -1.832231, 0.223444, -0.697123, -1.023059, 0.332343, -0.718873, 0.065334, -0.382100, 0.303974, -0.285433, -0.086163, 0.905434, 0.322978, 0.012016, 0.181630, -0.424428, -0.167205, -0.023544, -0.763481, 0.675475, -1.534944, -0.794864, -1.048670, -0.810172, -0.268000, -0.582463, -0.233772, 0.207003, 1.202341, 0.502748, 0.620330, 0.834388, 0.705962, 0.828964, 2.651482, -0.494951, -0.402799, 0.358528, -1.307880, 0.270489, -0.170392, 0.970555, -0.635788, -0.481298, -0.247181, 0.564859, -1.316783, -1.576614, -0.734073, -0.019462, -0.734920, -0.482825, -1.978248, -0.658912, 0.414963, -0.417249, -0.542582, 0.866367, 0.185913, 0.057066, 0.306508, -0.559185, 0.605736, -1.289379, -0.080138, 0.653721, -1.654405, -0.057272, 0.524817, -0.864102, -0.093709, -0.419917, -0.703324, 1.023497, -0.864964, -1.767865, 0.834885, 1.222555, 2.399563, 2.671062, 0.109732, 0.001551, -1.839303, -0.487816, 1.525771, 0.847283, 0.028712, 0.438563, 0.630743, -0.033405, -0.349438, 2.250763, -0.117097, 1.115419, 0.389861, -0.898892, -0.282474, 3.583772, -1.294503, -1.729502, -1.014405, -0.826274, 0.587948, 0.110012, -1.092119, -1.320275, -0.024286, -0.592236, -0.107409, 1.111784, 0.215014, 1.060520, 2.374489, 0.236474, 0.330240, -0.568462, -1.423505, 0.918966, -1.150645, -2.148659, 0.582162, -0.066176, -2.216145, -1.765604, 1.199772, -0.181152, -0.267626, -1.162830, -0.226987, 0.968930, 0.023551, -0.341542, -0.345462, 1.382537, -0.497282, -0.388321, -0.402356, -0.644338, 0.455277, -2.182575, 0.089198, -1.772338, -0.000660, -1.046146, 1.257459, 0.895967, 0.501054, 0.526309, -0.057557, 0.763205, 0.392618, 0.276458, -2.100098, 0.638827, 0.060878, 0.967597, -1.231212, -1.270514, -0.517227, 1.319060, -2.882717, 1.049116, 0.302717, -0.463908, -0.523161, -2.544879, 0.154400, -1.412090, 2.298742, -0.327199, 0.700055, -1.943167, -0.700067, 0.678387, -1.053528, 1.643977, -0.605584, -0.470350, 0.735526, 1.191442, -0.863388, -0.476405, -0.789407, -0.226346, -1.081931, 0.399712, -0.137068, 0.997717, -0.715762, 0.235580, -1.987720, -0.382658, -0.988794, 0.559362, -0.534062, -0.156940, 0.106919, 0.419229, 0.040150, -0.003779, 0.688930, 1.153102, 0.594382, -0.837748, -1.765744, 0.367585, 0.588306, 0.408373, 1.984601, 0.950195, 0.426315, -1.369355, 0.493131, 0.324156, 1.470709, -1.070800, 2.072244, -0.312206, -1.017098, -0.167271, -0.696898, 0.662766, -0.192963, 1.185682, 1.477660, -1.793925, -0.269673, 0.718329, 1.677384, 1.758613, -1.151400, 0.184560, -0.721552, 1.477232, -1.881326, 1.417519, -0.442435, 1.212926, -1.072967, -0.571987, -0.085972, 0.792840, -0.783953, 0.256891, 1.230065, 0.187942, -0.287036, 0.557629, -0.449196, 0.109029, -1.788605, 0.356428, -0.770316, -0.995052, 0.470117, 2.135684, 0.605431, -1.527643, -0.159648, 0.294380, 0.478385, -0.561767, -1.320838, -0.122328, -1.771967, -2.158499, -0.208400, -2.204410, 1.003141, 0.191853, 1.151517, 1.097687, -2.351511, 0.511501, 0.085975, -0.269222, 0.449182, 1.910237, -0.785736, 0.159857, 0.902128, -1.256713, 0.464155, -0.291090, 0.851108, -0.022040, -1.985589, 1.105326, -0.113510, -0.694997, -0.127669, 1.219421, 0.137831, 1.343930, 0.365153, 0.588763, 1.399833, 2.102851, 0.837034, -0.884078, -2.390311, 0.138392, -0.720619, 1.718100, 0.714324, -0.781631, -0.430011, -0.535043, -0.430427, -0.736778, 0.376045, -1.460084, -1.079509, 0.078949, 0.716019, -1.282196, 0.756377, 2.080098, -0.376698, -0.176397, 0.196263, 1.493241, -0.090407, -0.387091, 0.001574, 1.141896, 0.743660, -0.249028, -0.856038, 0.189112, -1.409181, 0.121464, -0.603531, -1.099870, -1.110393, -1.729090, -0.843713, -1.018568, -1.115646, 1.041194, -0.174135, -0.020532, -0.535761, 1.399954, -0.642887, -0.218689, -0.143871, -1.691505, -0.813948, -1.145295, 0.284046, -0.892825, 0.500233, 1.618757, -0.079692, 0.337978, 1.116847, 0.458130, -0.859034, -1.686366, 0.326221, 1.888409, 0.801365, 0.258755, 0.205952, -1.619214, 0.567957, -1.566846, 0.346348, -1.012133, -0.459450, 0.780378, 0.946504, 0.467132, 1.059346, 0.493902, 1.341746, -1.847809, -0.202963, -0.197429, -0.687122, -0.048360, -0.113354, -1.731887, 0.512575, 1.837881, 0.175318, 2.186043, 0.597855, -0.041992, -0.898142, -1.138501, -0.024333, 1.746508, 0.628893, -0.280222, -0.245546, 0.227325, -0.321241, -0.813965, 0.185174, 1.981893, -1.022425, 0.861642, 0.921106, 1.319623, -0.541254, 1.014444, 0.485936, 1.922689, 0.626055, -0.599521, 1.135721, 1.506574, 0.658685, 1.699535, -0.416711, -0.654532, -0.905258, 0.628929, -1.985545, 0.227078, 0.802870, -2.339376, -1.499863, -0.364073, 0.526038, -0.108919, -0.971868, 1.410155, -0.078556, 0.712502, 2.422457, -1.233539, -0.820402, 0.521904, -0.733994, -0.537726, 1.184515, -1.286666, -0.796158, -0.042814, -0.966719, -1.614149, 0.063807, 0.464472, -0.619940, 1.571774, -0.327949, 0.097984, 1.231742, 0.091925, -1.760101, 1.537127, 0.318143, -1.745130, -0.303384, 0.749363, -0.589891, 0.529616, -1.275960, -1.209775, -1.210734, 0.903262, 1.748601, -0.765602, -0.557330, 1.277058, -1.225612, -1.518502, 0.814991, -0.732192, -0.985354, -0.782027, 0.452752, -2.199778, 0.032920, 0.681395, -1.069107, -1.686328, 0.713696, -0.644675, -2.093954, 0.156607, 0.779505, 0.622691, -0.714057, -0.397631, -0.508838, 0.038750, 1.109007, -1.173785, 0.798940, -0.020201, 1.716624, 0.017457, -0.010392, 0.498961, 0.776702, -0.670577, 0.382525, 1.285087, 0.140380, -1.598527, 0.090192, -1.013058, -0.366242, 0.468154, -0.563420, -0.393789, -0.709936, 0.339879, -1.115827, -1.774862, -0.696465, -1.889685, 0.999033, -0.011001, 1.485419, 0.499569, -2.086567, 1.009328, -0.240072, 0.266270, -0.670775, -0.983899, 0.299479, 1.966244, -0.506120, -0.385772, -0.902780, 0.344977, 0.223756, 1.747575, 1.169546, -1.183115, -1.244027, 0.019229, -0.054524, -1.240984, -0.114923, 1.985210, -1.474623, 0.188086, 0.331104, -0.383971, -2.269053, -1.218064, 1.578689, 1.607582, 1.295578, -1.273219, 0.799678, -0.346555, -0.517814, 0.795277, -0.310816, 0.682858, -0.952981, 0.773351, 0.436191, 0.218122, -0.263510, 0.182157, -1.309551, -0.339335, 1.325562, 0.389754, -0.608204, 0.950066, 0.578611, 1.284821, -0.287538, -0.317484, -0.561101, 0.933934, 0.790470, 0.014033, 0.590689, 0.881719, -1.750510, -0.249412, -0.685764, -0.066026, -0.636797, 1.053769, 0.299484, -0.231829, 0.561249, 0.869148, 0.202172, 0.080943, -0.528707, -0.478519, 0.681365, -1.686774, 0.313141, 1.404471, 0.261180, -2.688293, 0.571477, -1.464012, 1.330193, 1.285232, 0.554151, 1.177779, -0.146309, -0.032118, 0.315050, 0.092767, -0.915070, -0.711547, -0.167576, -0.795963, 0.513571, -0.317327, 0.884622, 0.439754, 0.769976, 0.148264, 1.004959, 1.108967, 0.230922, -0.591919, 0.186186, -0.091849, 0.317977, 0.422849, -0.594294, -0.049926, 0.349251, -0.622254, 0.054652, 0.258810, 1.025522, 0.847407, 2.027513, -1.131926, 0.255720, 0.056681, 0.294379, 1.477588, 1.795593, 2.841332, 0.638452, -0.089822, -1.282307, 0.460536, -1.292814, -1.674175, 0.736287, 1.194580, 1.362381, -0.248177, 2.763866, -0.468855, 1.684889, 0.634313, 1.224679, 1.202680, 0.366497, -0.502832, 0.114326, 0.775692, 0.707094, -0.624075, -0.998042, -1.465682, -1.608948, 1.983278, 0.961374, 0.850991, 1.096858, -0.058059, -0.824958, -0.272354, 0.377622, 0.727791, 0.756043, -2.167806, -0.079379, 0.061938, -0.525084, -0.025080, -0.971132, 0.045147, -0.024153, -0.747360, 0.031440, -1.138494, 0.872990, 0.038219, 0.583900, 0.232242, 1.101989, -1.021581, -0.979162, 1.278852, -0.369428, -0.640907, 0.095700, 0.589268, 1.462978, -1.173309, -1.204658, 0.040882, 0.721503, -0.738608, 0.919856, -1.008912, 2.737592, -0.040306, 0.272736, 0.377199, 0.882150, -1.215659, 0.796941, 0.949407, -2.041494, 0.851782, 0.861940, 0.247230, -0.026049, -1.209143, 0.058386, -0.444750, 1.224392, 0.350707, 0.109906, 0.542535, -0.111448, -0.020867, -0.074601, 0.307063, -0.526339, -0.307027, 2.723751, 0.565074, -0.822591, 1.632062, -1.879461, 0.485291, 0.181420, -0.071550, 0.419082, 0.856462, -0.994900, 0.400743, 1.426447, -0.274386, -0.940943, 0.281320, -0.557610, 1.678154, 0.647064, -1.602059, 0.609542, -1.623300, -0.762362, -1.225789, 0.245500, -0.183086, -1.364244, -1.653740, -0.264367, -1.788992, -0.262011, -1.836511, -0.782024, 1.198095, -0.248391, 1.396536, 0.634534, 0.972823, 0.389440, -0.271680, -0.654720, -1.507218, -0.206504, -0.097122, 0.948816, -0.997981, -0.027403, 0.266805, 0.298522, 1.468453, -0.152491, 0.304746, 0.314058, -1.214896, 0.385605, -0.167446, 0.782445, 0.484027, -0.883636, 1.501691, 1.013091, -0.411673, -1.068320, -0.057948, -0.157156, -0.782577, -0.773749, -1.133051, -1.512232, 1.307226, -2.168643, 2.572652, 0.543628, 0.327899, 1.151732, 0.468286, -2.877307, 1.404967, 0.929544, 0.765332, 0.718172, -0.377178, 0.763952, -0.803518, 1.800803, -0.278450, 0.856337, -0.840829, -1.082801, -0.845616, 0.687720, 0.500876, -0.597365, -0.966749, 0.096001, 2.079226, -0.061015, -1.317970, -1.002767, 0.425700, -0.398979, 1.884185, 1.884861, 1.360654, 0.659405, -0.603464, 0.883154, 1.818174, -0.413203, -0.650124, -1.298272, 2.009307, -0.373009, 1.249636, 2.480514, -0.928376, 1.026510, -1.066687, 2.541660, 1.391439, -1.240591, 0.586530, 1.252458, 0.768471, -1.509367, -3.308151, 0.732625, -0.904178, 0.416392, 1.157591, 0.697177, 0.429230, -0.285792, 0.784580, 1.196368, -1.233490, 0.484277, 0.926323, -0.957258, 0.369791, -0.011751, 0.451592, -0.577674, -1.352895, 0.333098, 1.172874, 0.894371, -1.972156, -1.100095, 0.834811, -3.378958, -1.120840, 0.909981, -0.307710, 1.381929, -1.249995, -1.645711, 0.124190, 1.066230, -0.064364, -2.254793, -0.476843, -0.255272, -0.415886, -0.356953, -1.497092, -0.358461, -1.297569, 0.419586, -0.076843, -0.854961, 0.489938, 1.317750, 1.213654, -0.140617, 0.702249, -0.431305, -1.432142, -1.363430, 0.070399, -0.533741, 1.101233, 0.628667, -0.262804, -0.346103, 1.245095, -0.697738, -1.283746, -0.430597, -0.342252, -0.608680, -0.368261, -0.987953, -0.968276, 1.210413, -1.619188, 0.220922, 0.220923, 0.917857, 0.417097, 2.710490, 0.204958, 1.208441, 0.297487, -0.632739, -0.077616, -1.625751, 0.811498, 0.844976, -0.930670, 0.320973, -1.466641, -0.802738, -1.229581, -0.527568, -0.388481, -0.600942, -0.812925, 0.089037, 1.042331, 0.697095, 1.041976, 0.841200, -0.372665, 0.406444, 0.313035, 0.109032, -0.627312, 0.567023, 0.499543, -1.056905, -0.109263, -1.505852, -0.500190, -0.548058, -0.576000, 0.587096, -2.107601, 2.107384, 0.537675, 0.233174, -0.962088, 1.929356, -1.144698, -0.193284, 0.195559, -1.243746, -1.483192, -0.413679, 0.297511, 0.949318, 0.477355, -1.176845, 0.824522, -1.294444, -0.640632, -0.113315, -0.368979, -1.632090, -0.040953, -0.079079, 0.336914, 0.807373, -0.022013, -0.709087, -1.204680, -0.294800, -0.422151, 1.158776, 1.205850, -0.634409, -0.028611, 1.966007, -0.686278, 0.159568, -0.871935, 0.804221, 0.539248, 0.117476, 2.153937, -1.068275, -0.092336, 1.098936, -0.018917, 0.663683, -2.043938, -0.051607, 0.894947, 1.288743, -1.553334, -0.840564, -0.030582, -0.927625, 0.325786, -0.825303, -0.947226, -0.934414, -0.035233, -0.660939, 1.198237, -0.754666, 0.231794, 0.305097, 1.059796, -1.033747, -2.306097, 1.326420, -0.519798, 0.222648, 0.565705, 0.230763, 0.488902, -0.738702, -0.364718, 0.506710, 0.600007, -0.410848, 0.664878, -1.178469, -0.383114, -0.946326, 0.300169, 2.220961, 0.533516, -0.318731, 0.992646, -0.441359, -0.131924, -0.679874, -1.463736, 1.483412, 1.147133, 0.065517, -0.428697, 0.821423, 1.273124, -2.420859, 0.831836, 0.782240, 2.203317, -1.847485, -0.556955, 0.004232, 0.494900, -0.562387, -0.191073, -1.956669, 0.841326, -0.750666, 0.388986, -0.548745, -0.017945, -1.478740, -1.182418, -1.291775, 0.404558, 0.567286, 2.445512, 0.386242, 0.110538, 0.204758, 2.170424, -2.423923, 1.324845, 0.249030, -1.362698, -0.286939, -0.598709, -0.355531, 0.611480, 1.446425, -0.296740, 1.626581, -1.383874, 0.699978, 1.171134, -1.396132, 0.018977, 0.087834, 0.254935, -0.741557, -0.760367, 0.264579, -1.459191, -0.751511, -0.203004, -1.046629, -0.677089, 0.201595, -0.544643, -1.909872, -0.590559, -0.196011, -0.492940, 0.344565, -0.316514, -1.044959, -1.595267, 2.276252, -0.945386, 1.910003, 0.301038, 0.413702, -0.219719, -0.312500, -0.361788, -1.390893, -1.306150, -0.288764, -1.294673, -2.381541, -0.580185, 0.273662, 2.304983, 0.271498, -2.192776, 1.540305, 0.327031, -1.357126, -0.602209, 0.596791, 0.038069, 0.204363, -0.461752, 0.824995, 0.491174, -0.379742, 1.262923, 0.958812, 0.526484, 1.814628, 0.664224, 0.696281, -1.084509, 0.681001, -0.550351, 0.626911, 0.681214, 0.525382, -0.008102, -1.360859, 0.697379, -0.752416, -1.226350, 0.333848, 0.159440, 1.526454, 0.910317, 0.714478, -0.318017, -0.523722, 0.308214, -1.305772, 0.557538, 0.164972, -0.704804, -0.816602, 0.915265, 0.032985, 2.407387, 1.039023, -0.961177, 1.020939, -0.726604, 0.919537, 0.641625, 0.515392, -0.064317, -1.971238, 1.140480, -1.555529, -0.582825, 0.459114, 0.914118, 1.403499, -1.032463, 0.604782, 0.746903, -0.067092, 0.263470, -1.837725, -0.850796, -0.943436, -1.938775, 0.930313, 1.637621, -1.248867, -0.144989, 1.335036, -0.369851, -1.430273, -0.396013, 0.428406, 1.428915, -0.714920, -1.860152, -0.887155, -0.951437, -0.931176, 1.390014, -0.385535, 1.474930, 1.906364, -0.460858, 1.174290, -0.540534, 0.088838, -0.989319, 0.942682, -0.396803, -0.038699, 0.268658, 1.498614, 1.196952, -1.030894, 0.329766, 0.482987, -0.282981, 0.671319, -1.349140, 0.221897, -0.573209, -0.472648, 1.799908, -0.537823, 0.518324, 0.962883, 1.339337, 0.542371, 1.766081, 0.082193, 0.185839, -0.300633, -0.137414, 0.026367, -1.123260, -1.089690, 0.115906, 1.892611, -1.485620, -1.152223, 0.435520, 1.028936, -0.915916, 2.479481, -1.782195, -0.417469, 0.008988, -0.070528, -1.265108, 0.298844, 0.477083, 0.607140, 0.194186, 0.641839, 1.256154, -0.161047, -0.318711, -0.327091, -1.201591, -0.419389, -0.090740, 0.474517, -0.170993, 0.432529, 0.129556, 0.750366, 1.314587, 0.547982, 1.021444, 1.069203, 0.709449, -1.803092, -0.378879, -0.088747, -0.664312, 0.494705, 0.108875, 1.582420, 0.605303, 1.097416, -1.136252, 0.962630, -0.114604, 0.301794, 1.292046, -0.271193, -0.304249, 0.401568, -0.580388, 0.312145, 0.303372, 1.903849, -0.586008, -0.423948, 0.265597, -0.376417, 1.178659, 1.479222, 1.619156, 1.044988, -1.093583, -0.435230, -1.283998, 1.023035, 0.196204, 0.050877, 0.637643, -1.600393, 0.875355, -1.841498, 0.119382, 0.251772, 0.707243, 0.342991, 0.539560, 1.652902, 0.319593, 0.547184, 1.784397, 0.716315, -0.969803, -0.769177, -1.030999, -0.302631, 0.939049, -2.591128, 0.614226, -0.550341, 0.776557, 0.053298, 2.424106, 1.696358, -1.320649, 0.104384, -0.692818, 1.348013, 0.468785, 0.280820, 1.171937, -0.007780, 0.226824, -0.787666, 0.915156, 0.723561, -0.186396, 1.431703, 0.854399, -0.779900, -1.234929, -0.329158, -0.780113, -0.143752, -0.880068, -0.027821, 0.923269, 0.606137, 1.221400, -0.794988, -0.639636, -0.758908, -0.843589, -0.855502, 1.415207, 1.326428, -0.825090, -0.354446, -0.658662, 0.932430, -0.498781, 2.317732, 0.521507, 0.493516, 1.306170, 0.080151, -1.719056, -0.705620, -1.533758, -0.472610, 1.495312, 0.051000, -1.559097, -0.359741, 0.804364, 1.057133, -0.289193, -0.378599, 1.653079, -0.400758, 1.918728, -0.292730, -1.371060, -1.646813, -0.094614, -0.421445, -0.458133, -0.418669, 0.956764, 0.309983, -0.896957, -0.019367, -0.584378, -1.590409, 0.301317, -0.332146, -0.081008, -1.616112, -0.598941, 1.291263, -1.065026, -1.024502, 0.373389, 1.465848, 0.890238, 1.234847, -0.199647, 0.948799, -0.500763, -1.036588, -0.745491, -1.830129, -0.140807, -0.168522, -0.217274, 0.330723, -0.255682, -1.478547, 0.284352, -0.043808, -1.120008, 0.707696, 0.316642, -0.692405, -1.950322, -0.570129, 0.004717, -1.857131, 0.118761, -0.086331, -1.332689, -0.677188, 1.336037, 0.692782, -0.365467, 0.194880, 0.567802, -1.737232, -1.250864, -0.114982, 0.747633, -0.819854, 0.201411, 0.010733, 1.343882, 0.524695, 0.436572, 0.520546, 0.847821, -0.320379, -0.601157, -0.868980, -0.387812, -0.103090, 0.974453, 1.398122, -0.954004, 0.592015, 1.261457, -0.347106, -0.145252, 0.531946, 0.901868, -0.139857, 0.838785, -0.239271, 0.407745, -1.222600, -0.814237, 1.247454, -0.528840, 0.738049, 0.306092, 2.055893, 0.016198, 0.725570, -0.693108, -0.040687, 1.086423, 1.753733, 2.635598, -2.124676, 1.316912, 0.882211, -0.182426, -0.097462, 0.137660, -0.463837, 1.234253, -0.089568, 0.158560, 0.199999, 1.499169, -1.945089, 0.655442, 0.108171, 1.447518, 1.636001, -0.541791, 0.593860, -0.586946, -0.750874, -0.985495, -0.023771, 0.762704, 0.568701, -1.129595, 1.983391, -0.345783, -0.912326, -0.812670, 0.597849, -0.906531, 1.327343, 0.421508, -1.029603, -0.607250, 1.246089, 0.068783, -0.270205, -0.526293, 0.122160, 1.385993, 1.352670, -0.903220, -1.071225, 0.583900, 0.443493, -0.090107, 0.126837, 0.538319, 0.255468, -0.132981, -0.206274, 1.128867, 0.176533, 0.509580, -0.607686, 0.139552, 0.120067, 0.712809, -0.856388, -1.215834, 0.456864, 0.708185, -0.897323, 0.230488, -0.080045, -1.814398, 2.256569, -0.816994, 1.973039, 0.240091, 1.106864, -0.095830, 0.399104, -0.147433, -1.134093, 0.566147, -0.410151, 1.410062, -0.829393, 0.520929, 0.239539, 0.134553, -0.746424, -0.486461, -0.438764, 0.029918, -1.046096, -1.015934, -0.139520, 0.987163, -0.278789, -1.531670, -0.313904, -0.958798, 0.492169, -0.779903, 0.643487, 0.385838, -1.249967, 0.737050, -0.713977, 0.346928, 1.091906, -0.338772, -0.304467, -0.988710, 0.619985, 0.502091, -0.150041, 0.808100, 0.889905, 0.834058, 0.775391, -0.512836, 1.658357, 0.416369, -0.842851, 0.238922, -0.462182, -0.404107, -0.741630, 1.556167, -0.869417, -1.534832, 0.382278, -0.335983, -0.031708, 0.351079, 0.134860, -1.445333, -0.428648, -1.266075, 0.292787, -0.813467, -1.425180, -1.398613, 1.532351, 0.203353, 1.377867, -1.052320, 0.542145, -2.079486, 0.526751, -0.435422, 0.112951, -1.243429, -0.863001, 0.383318, -0.655635, 0.364293, -0.643945, -1.648842, 0.446640, -2.328080, 1.435825, -0.685255, -1.217336, 0.123734, -0.370162, 0.326280, 0.798418, -0.372092, -0.714970, -0.145333, 1.610793, 0.356216, 0.457596, 0.712985, -0.444310, 0.733337, -0.892675, 1.111201, -0.252817, -0.837535, -0.788782, -0.412233, 1.075867, -1.373759, 0.794280, -0.240515, 0.724207, -0.067016, 2.118749, -0.060322, -0.402310, 0.732265, -0.274063, -0.646122, -0.611973, 0.430229, 1.054136, -0.040591, -0.605241, 2.110096, -0.361311, 0.423276, -0.258559, 0.859665, -0.926667, -0.250056, 0.898539, 1.073115, 0.169196, -0.917704, -0.229519, 0.622024, 0.308891, 1.575428, -0.032481, -0.796108, 0.691449, -1.320437, -0.348208, -1.271779, 0.797208, 0.720069, -0.110669, -0.037529, -0.440502, -1.029599, 0.004869, 0.699893, 0.715856, -0.321253, -0.126482, -0.355601, -0.532923, 1.111016, 0.898301, -1.254499, -0.253172, -1.109582, -0.271897, 1.916230, -0.513085, 1.655011, -0.606123, 1.990858, -0.641791, 0.248544, -1.420572, 1.058592, 0.125604, -0.254184, -1.343229, 1.680490, 2.308031, -0.532147, 0.212972, -1.186526, 0.052062, -0.641231, -1.408659, 1.071984, -1.214022, 1.581080, -0.359345, -0.037057, -0.140944, -1.817753, 1.165446, 0.684604, -0.389373, 2.693231, -0.316605, -0.349264, -0.233301, -1.889239, 2.026427, -0.588344, 0.737319, -1.876171, -1.890059, -1.316698, 1.585736, -0.150989, 1.347198, -0.226498, -1.726410, -0.708460, -1.324823, -0.440005, 0.180751, 1.804125, -0.220699, 0.662965, 1.005750, 0.123058, -0.510027, -1.534929, -0.817585, 1.805377, -0.299890, -0.329219, -0.342869, 0.114420, 0.818482, 0.640968, 1.525861, -0.314798, -0.291423, -0.454683, -0.432605, -0.248657, -1.156749, -0.179876, -0.141269, -1.215492, -0.286250, -0.051652, 1.191510, 0.467788, 0.255979, 0.223685, 0.203502, -2.474592, 0.234127, -0.180483, -0.672638, 0.785141, 0.066506, -0.865789, -0.831114, -0.475468, 1.275852, -0.910007, -0.768915, -0.332906, 1.186434, 1.370451, -0.582893, -0.241000, -1.222048, -0.947822, -0.801871, -1.245451, 1.837009, -0.326227, -0.217278, 0.938735, -0.202878, 0.431085, 0.215665, -1.594189, 0.652198, 1.375565, 0.454405, -1.349134, -0.620641, -0.202386, -0.079880, 0.416635, -0.788078, 0.419681, -0.885545, -0.427404, -0.901947, -0.309603, 1.948034, -1.221698, 0.372437, 0.925543, 0.825739, 0.389059, -2.178058, 0.398005, 1.655316, 1.895604, -0.592197, 1.182354, -0.628639, -2.492349, 2.437147}, - { 2.339887, 1.620140, -1.397717, -1.792415, -1.651464, -0.417458, -1.515943, -0.727748, 0.658773, 0.030530, 1.420214, 1.112668, 0.126961, -1.828202, -0.108042, 0.294892, 0.499983, -0.975588, -0.202786, -0.988190, -0.396316, -0.440190, -1.204370, -0.185122, 0.848085, 0.016918, -0.559986, 1.217533, -1.266320, -0.389045, 1.403836, 0.186828, -0.552412, -0.277355, -0.077300, -0.818491, -0.036863, -0.031269, -1.104384, -0.217681, 0.108529, 1.483026, 2.700808, 1.323355, -1.429389, -0.359832, 2.384762, 0.109584, -1.614355, 0.318306, 0.218195, 0.054861, -0.381109, -1.406280, -1.633760, 0.220129, 0.244932, -0.495095, -0.697085, -0.721289, 0.558541, -0.426999, -0.810297, 0.558341, 1.019244, -0.279632, -0.092744, -1.030451, 0.184251, -1.528850, -0.294207, -1.761215, -1.603183, -0.801045, 1.265873, 0.402463, -0.406751, 1.189645, 0.065515, -0.191021, 0.722818, -1.718461, -0.880315, -0.769453, -0.182268, 0.066402, -0.550959, 0.339106, 0.818443, -1.963967, -0.035421, -1.949418, 0.449765, -0.369531, -0.342174, -1.042240, -0.845946, 1.873936, -1.217835, 0.389689, -0.546089, 0.872542, -0.086338, -0.190501, 0.615653, -1.194026, 2.453911, -0.559747, -0.720787, -0.265108, 0.772782, 0.802450, -1.430144, -1.146555, -0.154464, -0.636835, -0.585239, 0.266004, 1.499096, -0.981671, 0.200274, -1.367797, 0.137719, 0.486250, 0.239502, -1.270316, 1.105726, -1.420166, -0.603872, 1.408102, 0.017191, 0.552936, 0.468244, 1.155060, 0.344181, 1.215376, 1.220017, 0.392431, 0.326882, 0.933896, 1.356346, 0.627984, -1.284024, 0.770552, 1.302408, -0.310756, -1.280897, -0.361148, 1.437473, 1.226935, 0.349923, 0.657697, 1.309943, 0.121834, -0.574194, -0.193201, 0.865346, 0.366080, 0.552767, 0.590743, -1.737379, -0.998452, 2.580730, 1.805921, 0.462659, 0.075984, -0.092635, 0.337560, -0.817497, 2.122266, -0.161357, 0.508321, -1.330348, 0.348236, 0.419723, 0.556637, -0.295095, -1.626863, 0.645254, 0.117203, 0.653968, -0.859729, -0.188552, -1.654380, 0.905129, 0.565809, -0.665582, 0.231161, -2.048409, 0.776696, -0.179701, -1.672784, 1.253463, 0.821780, -0.794204, 0.857018, -0.330969, -1.396939, -0.606409, -0.270470, 1.766844, -0.436703, 0.547275, 1.701216, 0.707859, -0.651268, -0.140109, 1.094223, 0.008815, 0.177185, -2.736145, -1.386136, 1.936002, -1.028178, -0.288759, -0.091952, 0.105270, 0.002987, -0.659165, -0.322631, -1.241251, 0.378708, -0.679698, 0.471250, 0.091925, -0.711658, 1.044602, 1.463665, 0.948397, -1.512430, -1.473283, 1.258366, 0.476375, -0.693492, 0.817557, -0.293565, 1.395796, -1.226122, -0.261127, 1.042383, -1.525834, 0.466103, -0.990431, -0.066383, 0.662328, 1.560231, 1.446582, -0.420327, 0.093900, -0.616068, -0.396922, -0.161616, -0.361351, -0.726517, 0.931897, -0.110255, 0.029895, 0.702895, -0.486218, 1.500088, -0.911554, 0.192895, 0.610582, 0.107673, 0.221257, -0.347135, -1.265169, 1.056425, -0.005606, -0.162892, 0.247074, -0.818270, 1.127262, -0.514588, -1.269626, 0.043387, 1.890463, 1.899805, 0.106100, 0.876978, -0.420545, 0.397927, -0.519026, 2.251690, 0.384642, -0.857362, 0.072714, -2.513459, 0.528260, 0.526779, 1.809626, 0.160605, -0.256846, -0.046370, -1.070561, 1.000023, 1.813775, -0.715343, -0.494603, 0.369020, -1.940010, 1.296672, 0.303521, 0.124397, 1.046138, -1.526003, 0.092771, -0.872271, 0.765671, 0.511123, -0.386684, 0.753641, -1.156579, 0.474385, 1.213263, -1.078144, -1.280978, -0.968109, 1.120123, -0.610951, -0.812206, -0.451754, -0.437373, 0.162306, -0.982819, 0.916856, -0.614820, -0.097352, -1.845380, 1.609066, 1.472736, -0.727985, 0.079987, -1.351291, -0.912343, 0.694572, 2.532907, -0.642715, 0.582071, 0.724823, -2.349295, -0.955874, -0.400967, 0.430401, -1.173242, 1.219665, 0.753479, 0.536411, 0.522888, 0.134859, -0.940140, 0.236503, -0.292762, 1.779085, -0.504632, -2.624163, 0.353690, 1.959040, 1.016121, 1.830055, 0.667395, -0.135537, -0.438823, -0.604406, -0.523737, 0.999362, -0.965137, 0.675641, -0.157534, -1.120798, -1.375923, -0.745494, -0.902841, 0.390616, -0.302744, -0.559256, -1.318172, 1.585740, -0.466179, 0.041782, -0.068003, -0.591694, 1.065515, 0.199168, 0.301454, 1.178663, 0.343721, 0.578013, 2.006254, -0.292315, -0.027169, 1.169843, 0.281810, 0.510632, -0.327149, 0.929928, 0.271907, -0.230353, 0.199114, -0.542152, 0.173365, -3.248751, 0.453610, 0.527880, -0.793493, 2.061254, -0.841321, 0.445838, 1.355060, -0.341512, -0.311967, 1.683860, -0.986819, 0.727597, -1.283289, -0.170094, -0.809002, 0.180786, -0.124404, -1.220071, -1.146966, 0.071316, 2.213066, -0.584928, -1.348610, 0.874946, -0.598879, 0.868833, 0.273724, -1.445279, 0.167242, 1.686287, -0.066773, -0.193377, 0.431002, 1.831211, 0.697474, -0.544411, -0.289762, 0.392250, 0.659892, -0.388241, 0.638402, -1.022027, -0.628311, -0.563202, -0.181183, 0.482651, -1.029940, -0.967300, -0.484850, 0.682934, 0.038888, -0.498950, 0.371687, 1.950650, -1.533247, -1.271800, 1.922040, 1.266094, 0.006514, -1.202719, -1.549649, -1.111651, 1.145107, -2.336985, -1.227338, -0.485622, 1.309206, -0.029743, -0.459101, -1.083666, -0.084536, 1.232778, 0.069419, 0.289925, 1.440014, -0.616036, 0.472039, 1.235283, -0.098531, 0.992890, -1.023179, -0.224086, -0.804266, -1.763057, 0.277883, 0.570709, -0.239120, -0.705175, 0.077777, -0.851741, -1.382025, 0.999434, 1.300331, -2.517501, -0.483995, -0.435277, 0.304834, 0.240393, 0.463540, -0.271114, 0.476971, -2.117063, -0.825701, -0.208910, 2.078837, 0.874864, -0.460237, -0.150332, 1.837842, 0.270703, -0.650420, 0.865180, 0.083523, 0.230363, 1.365837, -0.590013, -0.347006, 0.184882, -0.296471, 0.624956, -1.346022, -0.047095, 0.964943, 0.365237, 0.795534, -0.775335, -0.447820, 1.092894, -0.717920, 0.794327, -0.264046, 0.105361, -0.213335, -0.831172, -0.689261, -1.185437, 0.555137, 0.942949, 2.394449, 1.151925, 0.379334, 0.616034, 0.672809, 0.673535, 0.146411, 0.284025, -0.007156, 0.113903, -0.316693, -0.221654, 0.362333, -1.738374, -0.590817, -0.318511, -0.247263, -1.059371, -0.108953, 0.141335, 0.203960, 0.738039, -0.104707, -0.042683, -1.611838, 1.544860, 0.481808, -0.598356, 1.230854, 0.302006, 0.012926, -0.775176, -1.045218, 1.185867, 1.272498, 0.439803, 0.550516, 0.064741, -0.120913, 0.696555, -0.158317, 0.789790, -0.307472, -1.034022, -0.230170, 0.390069, -0.509312, -0.999874, -0.325439, -0.409116, -0.665791, -0.804070, 0.023495, -0.472189, 0.260459, -0.359123, 0.771365, 0.271621, 1.441185, 0.332482, 0.013846, 0.366242, 0.697469, -0.729197, -0.383513, 0.589389, 0.101290, 0.951068, -0.510345, 0.624408, -0.348682, -1.098903, -0.848618, 0.060044, -1.885940, -0.035841, 0.029267, 1.557899, 0.995270, -0.790554, 0.436663, -0.848539, -0.303771, 0.172670, -1.356799, 0.445098, 0.137210, 1.243937, 1.171611, -0.056864, 1.110676, -0.932160, 0.533369, 0.560239, 0.124944, 0.505434, -0.494534, 0.096916, -0.728359, -0.625288, 0.235163, 0.373002, -0.540880, 1.202525, -0.014339, -0.824045, -1.873509, -0.077882, 0.748897, -1.710542, 1.216395, 1.084436, -1.090989, 0.793859, 0.818533, 2.062217, -0.411011, -3.375772, -2.021983, 0.366885, -2.691701, -1.665082, -0.995476, -1.409712, 0.023805, -0.592694, 0.007838, -0.466110, 1.046834, -2.271525, 1.912326, 0.049592, -1.393038, -0.172442, -1.185794, 0.286987, -2.622704, 0.900961, -0.695789, -0.163837, 0.297264, -0.372835, -0.069932, -0.135428, 0.075737, 0.639942, 0.512228, -0.070645, 0.091322, -0.958377, 2.135288, -0.142732, 0.597814, 1.180662, 0.669671, -1.303432, -0.212500, 0.573757, 0.413966, -0.308574, -1.186860, -0.070545, 0.642519, -0.462130, -0.484110, -0.886547, -0.600770, -1.290298, 0.358749, 0.114589, 0.125301, 0.285748, 0.229389, 1.783901, 0.305419, 1.227210, -0.376675, -0.912810, 0.529526, 1.147198, -0.354719, 0.301027, -0.262007, 1.349041, 0.460054, 0.323833, -0.535417, 0.398359, 0.285918, 0.199553, 1.608457, 1.080666, 0.531422, 0.265556, 2.468230, -1.120097, 0.299419, -0.009829, 0.798856, -0.900978, -0.595015, -1.118382, 1.352308, -0.765283, 1.022837, -0.081662, -0.614206, -0.462349, 0.947365, 0.546488, 0.262596, -1.383535, -0.850644, -0.272334, 0.331986, -0.690244, 0.657941, 0.962619, -0.250746, -0.790014, -0.421113, -0.882083, 0.026295, -0.029447, 0.678367, -0.018902, 0.857854, 0.673230, -0.492088, 1.239871, 1.082987, -0.759082, -0.171095, -0.463199, -2.026721, -0.877298, 1.562342, -0.398282, -2.328192, 1.684431, 0.495766, 2.162920, 0.437524, 0.465590, 1.120987, -1.355737, 1.361169, 0.263885, 1.814896, -0.697334, 0.674721, 0.622827, -0.029780, 0.255792, -3.248760, 0.733671, -0.650071, -1.415894, 0.476000, 1.031410, -0.343213, 1.274329, 1.857819, -0.978104, -0.006329, 0.312723, -0.663103, -0.417864, -1.053870, 0.693769, -0.836607, 1.471947, 0.259804, -0.765705, 1.440222, -0.252867, 0.494024, 0.919247, 1.650520, -2.201987, -0.432168, 1.822201, -1.368991, 1.076670, -0.496645, -0.446964, 0.027530, 1.093180, -0.188253, 0.365788, -0.318026, 0.343727, -1.677257, -0.248994, -0.618624, 0.906792, 0.692152, -1.261671, 1.263207, 1.468797, -0.902294, 0.580883, -0.519553, 1.189655, -0.037853, 1.118424, 1.806509, -0.618764, 0.041535, -0.917750, 0.065988, 1.511952, -0.866867, -0.987826, 0.706596, 2.274445, 1.829628, 1.546664, -0.364162, 1.721251, -1.137282, -0.035184, -0.532842, -0.832020, -0.322955, -0.661472, -0.357880, -1.102991, -0.188798, -0.070132, -0.574109, 0.938241, 1.105883, -0.245666, 0.899721, 0.539366, -1.078748, 0.939915, 0.682323, 1.080436, -0.346673, -1.537215, 2.056692, 0.406541, -1.328311, 0.133209, -0.810740, 1.227201, -2.066248, 0.390462, -1.305965, -0.867083, -1.212793, -1.917906, 0.700318, 0.175547, -1.759913, -1.823506, -0.550040, 2.111104, 0.658175, -0.317664, -0.647261, -0.847860, -2.200311, 1.336159, -0.393175, -0.162713, -0.843201, -0.121724, -0.644852, 0.610801, -0.398535, -0.512464, 0.839095, -0.103021, -0.367010, 0.716079, 0.659539, 0.056364, 1.293032, 0.344292, -2.261811, 1.223168, 1.213226, -1.657508, 0.952406, -2.438802, 0.783962, -1.482991, -0.746309, -0.336616, -1.755589, 1.977362, 0.630243, -0.317651, 0.701011, -1.645657, 0.425999, -1.170024, -0.536810, 1.116719, -0.983931, 0.159605, -0.461658, 0.085128, 0.857067, -0.038479, 0.250132, -0.146855, 0.325708, -0.927673, 0.623058, 0.878201, 2.328608, 0.139591, -1.123887, -1.885152, -1.103027, -0.690594, 2.081377, 1.039609, 0.631083, -0.047167, 0.768900, 0.973730, -0.730071, -0.795100, 0.945922, -0.593393, 0.060149, -1.197378, -0.642757, -1.422758, -0.270091, -1.918196, 0.019016, 0.553899, -0.725723, -0.049975, 0.730480, 0.194865, 1.583288, -0.793429, -0.438834, -0.130464, -1.644154, 0.702824, -1.913531, 0.106694, 1.126528, 0.420040, -0.445293, 0.571887, -0.157531, -0.692041, 2.587095, 1.337007, 0.960686, -0.689337, 0.388421, 1.068272, 0.515389, 0.653977, -0.564628, -0.468683, 0.653606, -0.090175, -0.186334, 0.908691, 0.578606, -1.851776, -0.548075, 1.548749, 0.651764, 1.360624, 0.337582, -0.691879, -1.418431, 0.807978, -0.297172, 0.034912, 0.410237, -0.942554, -0.439214, 0.457965, -2.145832, 0.351105, -1.170805, -2.719146, -0.158314, -0.614586, 0.424879, 2.754127, 1.054044, 0.601622, -0.040545, -2.170149, 0.147270, 0.560472, 1.528347, 0.567829, -0.018008, -0.381658, -0.732215, 0.266872, -1.043024, 2.575083, 0.539466, -0.841671, -0.771651, -0.414010, 0.649392, -0.257237, 0.909045, 1.078043, 0.015821, -0.891975, -1.375473, -1.265283, -1.001856, 0.352868, -0.153865, 0.551990, 1.297729, -0.827339, -0.590362, 0.572605, 0.537236, 1.780803, 0.044854, -0.722309, -0.412978, 0.495463, 1.357161, 0.880735, 1.548529, -0.512789, 1.093130, 0.607201, -0.940269, -1.346058, -0.662537, -1.630921, 1.736744, 0.376064, 0.588518, -0.731392, 0.320002, 1.897495, -0.561855, -0.043211, 0.329067, -1.597663, 2.937750, 0.631671, 0.539890, 0.283874, 1.965470, -0.989744, 0.570398, -1.568765, 1.025972, -0.541943, -0.373208, 0.230093, 0.262655, 0.505942, -0.944142, 1.283452, -1.192868, -0.744110, 0.659878, -1.000340, 1.589922, 1.655994, -1.167801, -0.269138, -0.363151, -0.871481, -0.420680, 1.040005, -0.431508, -1.281230, -0.512318, -0.218924, 1.348046, 0.633733, 0.088889, -0.245016, 0.591242, 1.132514, 0.712195, -1.296513, -0.934248, -0.302543, 1.436858, 0.531896, -1.867159, -1.236130, -0.408434, -0.050282, 0.672589, 1.029602, 1.393088, 0.531739, 0.930622, -0.317769, -0.467297, 0.197542, -0.647020, -1.307058, 1.416776, 0.176016, 0.828286, 0.079681, -0.687654, 1.595828, 0.602707, -0.151113, 0.031936, 3.166681, 0.867356, 0.539911, 0.951033, -1.111953, 1.312779, 2.140893, -0.365097, -0.756451, -1.587729, 0.045646, 0.901133, 0.421425, -0.813058, -0.985248, -0.318459, 0.445675, -1.065751, 0.510675, -1.183406, 0.083105, 0.975794, -0.009505, -1.976220, -0.032721, -1.863482, 0.183437, -1.450258, 0.571176, 0.171300, -1.051524, -0.025137, -0.364907, 1.242000, -0.011513, 1.700560, 0.015861, -2.547197, 0.888665, 0.973877, -1.753945, -0.604646, 1.240845, 0.276626, 0.835803, -0.079542, 0.050746, -0.508911, -1.665020, 0.730793, -0.072332, 1.024210, -1.746898, 0.687907, 0.378025, 1.605892, 0.315604, 2.206854, -0.138711, -1.412615, 0.413787, -0.060648, 0.664999, 1.597237, 0.382786, 1.500695, 1.860595, -0.080737, 0.256487, 1.162947, 0.502315, -0.136137, 1.601147, -0.151200, 0.765266, -0.281051, 0.685311, 1.023502, 0.317818, 0.086314, -2.154653, 1.258030, 1.145675, -2.078759, -0.397960, 0.402890, 0.967976, -0.169267, -1.980233, -0.786104, 0.329992, -0.388028, 1.173585, -1.063861, 0.061067, -0.339741, 0.671392, 1.254569, -1.409940, 0.937403, -0.066188, -0.379947, -0.446582, 0.000128, -1.019786, 0.526527, -0.689360, 0.014842, -0.379158, 0.998085, -0.359716, -0.278478, -1.638923, -0.355024, 1.221687, 0.380838, -0.580778, -0.991513, -0.774157, 0.831976, -0.985778, -0.795102, 0.415400, 0.739446, 1.854077, 1.745931, 1.129811, 0.892184, 1.015465, -0.667754, 0.254367, -0.269651, 0.844039, -0.282847, -0.131188, 1.069626, -0.924020, 0.187840, 1.515246, -1.576336, -0.435936, -1.962785, 1.219529, -0.188467, -1.479822, -0.106636, 0.757747, 0.444520, 0.151669, 1.308655, -1.848307, 0.819246, -0.691925, 1.042457, -1.889494, -0.008251, 0.352980, 0.310005, 0.601249, -1.275811, 0.532965, -0.220867, -0.352776, -0.009527, 0.542688, 0.321655, -1.459785, -0.524239, 0.921200, 1.428630, -2.049950, 0.196952, -0.182161, -0.598679, -0.272160, -0.624831, -1.142742, 0.400120, -0.235473, 0.615551, -0.407898, -0.951401, 0.380072, 1.085257, 1.212558, 0.185780, 0.733815, 0.574640, 0.457952, 0.096082, 0.732680, 0.082707, 0.151700, 0.183100, -0.863619, 0.300097, -0.718123, -1.010734, 0.124748, -0.815479, 0.099243, -0.476195, -0.536010, -0.538039, 0.292785, -2.351339, -0.276826, -2.499783, -0.075705, -0.897374, -0.285535, -0.953430, 0.198136, 0.343154, 0.556603, 0.561553, 0.817719, 0.668316, -1.485080, -1.068298, -0.672301, -1.348186, 0.711111, 0.724554, 0.581014, -0.783041, -0.397042, 1.331664, -1.117222, 0.932444, 0.030756, -0.240641, 1.513190, 0.263395, 0.351389, 0.275304, -0.524006, -1.127194, 0.087733, 0.409534, 0.583871, -0.527440, -0.322752, 0.190587, -0.001396, -1.250543, 0.029237, 0.723774, -0.083851, 1.350279, 1.790519, 0.939365, 0.117923, 1.680303, 2.099375, 1.932916, -0.253220, 0.171509, 1.406413, -1.611971, -0.258640, 0.265394, 0.438333, -1.194541, -0.082098, 2.485423, -1.182706, -0.961690, 0.857870, -2.231763, -0.427951, 0.753440, -0.523252, -1.658902, -2.181081, -0.334577, -1.863257, -1.112460, -0.177234, 1.244737, -0.526643, 1.151306, -0.847277, -0.244868, -0.380532, 0.563493, 0.750466, -0.253092, -1.519646, 1.114412, 1.327542, -0.111753, -0.592570, 0.548212, -0.147598, -0.032017, -0.226827, 0.142878, 0.320832, 0.206300, 0.741409, -1.920498, -1.415332, 2.787690, 0.570796, 1.923239, 0.294151, 0.439956, 1.353512, -1.158930, 0.383895, 2.496787, 0.468525, -1.985228, -2.319000, 0.365258, -1.219664, 0.195127, 0.513665, 0.941101, 0.812753, -1.895636, 1.644525, -1.085889, -1.145886, 1.011864, 0.318452, -0.590919, -0.622030, -0.242061, 0.363680, -0.568791, 0.380872, 0.606028, 0.285046, 0.886551, -0.498485, -0.485802, 0.022500, 0.117547, -1.683159, -0.369969, -0.055681, -0.301956, -0.273704, 1.196988, 1.414362, 1.216099, 2.016447, -0.174947, 0.502012, 0.677855, -1.238375, 0.624047, 0.606496, -1.800062, -0.639483, -0.273268, -1.547553, -1.279794, -2.296775, 0.765019, 0.818297, -0.275762, 1.211393, 1.656740, 0.368837, -1.373180, -0.794637, -1.116343, -0.538595, 0.297590, 0.059933, -2.512983, 0.919144, 0.349269, 0.378733, 0.005685, -1.829413, 0.843867, -0.221340, -0.184708, -0.627133, 0.617322, -1.198811, -0.273261, 0.081787, -0.282785, -1.706555, 0.198147, 1.591000, -0.207255, 0.242216, -0.319243, 0.196243, 0.643825, -0.017535, 0.256174, -1.122043, -1.845724, -0.811015, 0.776274, -0.157725, 0.345995, -1.101322, -1.583710, 0.034840, 0.148482, -1.707850, -0.518058, -0.311283, 0.172524, 1.230821, 1.186505, 0.903200, 2.211017, 2.414472, 1.017153, -2.192178, 1.164859, 0.155565, -0.286887, 0.561347, 1.423541, 0.265095, -0.281437, -2.627453, -0.570023, -0.174361, 0.477104, -1.493228, 1.559336, 0.926887, -0.388126, -0.284381, 2.548079, 0.322448, 0.310619, -1.772152, -0.977292, 0.484613, 0.691650, -1.045605, 0.164643, -1.343724, -0.528016, 1.203277, -0.049976, 0.577042, -0.061830, 0.232674, 1.557687, -0.263098, -1.530672, 0.425431, 0.643476, 0.943443, -0.329490, -0.573549, 0.938394, 1.291568, -0.182664, -1.102386, 0.065628, 0.259166, -0.560332, 0.727604, 1.239912, 1.893412, 0.454215, 1.576560, -2.452963, -0.520614, 0.757300, -0.957798, 0.650079, 0.102533, -0.005347, 1.846959, -0.531347, -0.315259, -0.446454, -0.023414, 1.373055, -0.609325, 0.475658, 0.708969, -2.476679, -0.245944, 1.053382, -0.972497, 0.068844, -0.318367, 0.766286, -0.943124, -0.722381, 0.908176, 0.556848, 1.280472, -1.045132, 1.333220, 0.771205, -0.230906, -0.914635, 1.491213, -1.568861, -0.818916, 1.520769, -0.950524, 0.185209, 1.639798, 0.609398, -1.239409, -0.911419, 0.760996, -3.508370, -1.098161, -1.057860, 0.705982, -0.437876, -0.133774, -0.058981, 0.186572, 1.259757, -1.602921, 2.097763, -1.016769, 0.294787, 0.549145, 0.002455, -0.531612, -0.347243, 0.782148, 1.936902, -0.870336, 0.951023, 1.037518, 1.202069, 0.732683, -0.548064, -1.281353, 0.928252, 0.404610, 0.237788, 2.432759, -0.207768, -1.170613, 0.120114, 0.943097, 0.611571, 0.685156, -0.135865, 0.531529, -0.475724, -1.103788, -1.209592, -0.316528, 0.860905, 0.566027, -0.042948, 1.582790, 1.057178, 0.017846, 0.525677, 0.234745, 0.765340, 1.234892, 0.038759, -0.231228, 1.453337, -0.151583, -0.477912, 1.140651, 0.841136, 1.822284, 0.205754, 0.160168, 1.365118, 1.131590, -1.180762, -0.145345, 0.407859, 0.302355, 0.147690, -1.465125, 0.805820, -0.468216, 0.479170, -0.469572, -0.446155, 0.611474, -0.895492, 0.329113, -2.051262, 0.638840, 0.120678, -0.862247, -0.675172, 0.459009, 0.566021, -0.694903, 0.205265, -1.347968, 0.211785, 0.683769, 0.046369, 1.587299, -0.137911, 0.310909, -0.182222, -1.263354, -1.434873, 0.713546, -1.028692, -0.113286, 0.783760, 1.414144, -1.372740, 0.907109, -0.547061, 0.531404, -0.473709, 0.054894, 0.135392, -0.032126, -0.901858, -0.259162, -2.267479, 0.344289, -0.717041, 0.199426, -0.677745, -0.060331, -0.685787, -1.073391, 2.143624, 1.291589, 0.322839, -0.332561, -1.260504, 1.624500, 0.236125, 1.020439, 0.962793, -1.640325, 0.890086, -0.200777, 0.829336, -0.653676, -0.412580, -1.160139, -1.178952, -0.633673, -0.294256, -0.272505, 2.013521, -0.198038, 0.088963, -1.513950, -0.294601, 0.572533, 0.674166, -2.256508, 0.871453, -1.659994, 1.564678, 1.263049, 0.188872, -0.029460, -2.161498, -0.844293, 0.073321, -0.217361, -0.668902, 1.620032, -0.282229, -0.098374, 0.587284, 1.195532, -2.639980, -0.776069, -1.118495, 1.685807, -0.566415, 0.417830, -0.186634, 1.118239, 0.286706, 0.336966, -0.934391, -0.356628, -1.069422, -1.382757, -1.614739, -1.081746, 0.697923, 1.925684, -0.781039, 0.216922, 1.196330, -0.749097, -0.509502, -0.883495, 0.057129, -0.050837, 0.966182, -0.433586, -0.595828, -2.018313, -1.042086, -0.092144, 0.091934, -1.251020, 0.059435, 0.278959, -0.669808, 0.522188, 0.828343, 1.066447, -2.211732, 0.077299, 0.090529, -0.583485, -0.926748, 0.791708, 1.007578, -0.938377, 0.390635, -0.016530, -0.567840, -0.617223, 0.641829, -0.601339, 1.705307, -0.688337, -0.391470, -0.616910, 0.484435, -1.560051, -0.172858, 2.281009, 0.403052, -1.373667, -0.830165, -1.532637, 0.449668, -0.924330, -0.188391, 0.765738, -0.294488, 0.620307, 0.277731, 1.227256, -0.380445, 1.248724, -1.697083, -0.847337, -0.796181, -0.828789, -0.174957, -0.259475, -1.968412, -0.183483, 0.293268, -0.240115, -0.342797, -0.752306, -0.741280, 0.763456, 0.366529, -0.846331, -2.265886, -0.067053, 0.466130, 0.490662, 1.096581, -1.764215, -0.601576, -0.252311, 0.182608, -0.520276, 0.076030, -0.341519, -0.383581, -1.431756, 1.330467, -0.908274, 1.329367, -0.534607, -0.039371, -0.085676, -0.269648, -0.787234, 0.007173, 1.326513, 0.446413, 1.612812, 0.349147, -0.580131, 0.011947, -0.830780, -0.953301, -0.952242, -0.336505, -0.012668, 0.036008, 0.871640, -1.142907, 0.306253, 0.584759, 0.830233, -2.252978, 0.099714, -0.274381, 1.314918, -1.690409, -0.604197, 0.047075, -0.512890, -1.050812, 0.372193, -0.685270, -0.403895, -0.417881, 0.284571, -0.048282, -0.019376, -0.676599, -0.172166, -0.541573, -0.023006, 0.071876, 1.397583, -0.312360, 1.877012, 0.576752, -0.777600, 1.591267, 0.366755, -0.805977, -1.019038, -0.110027, -2.543164, -0.496476, -0.147449, 0.037518, -0.249998, 0.690148, -0.509130, 0.580286, -1.109549, 0.433471, -0.080534, 1.994791, -1.416895, 0.264197, -0.973871, -1.346378, -1.070348, -0.602265, 0.885242, 0.030756, -0.612280, -0.516690, 0.944415, 1.336945, -1.595313, 0.026528, -0.250100, 0.893869, -0.253728, -1.650977, 1.398246, 0.513745, -1.188211, -0.442091, -1.060550, 0.918336, 0.952847, 0.794229, 0.811815, 0.212550, -1.724803, -0.225094, 1.111234, 0.597199, -0.144270, -0.079793, -0.997074, -1.086010, 0.490363, -0.854987, 0.130572, 0.359305, 1.822808, 2.617574, 0.444795, -1.081134, -1.713222, -0.444533, -1.869120, 1.698570, 1.231275, 0.466171, 0.689414, 1.006129, 1.445567, 1.146741, 0.758339, 0.394512, -1.986660, 0.186819, -0.510688, 0.932882, 0.555146, 0.707300, -0.808208, -0.723499, 1.832024, -1.905344, 0.643497, -0.019097, 0.161381, -0.004972, 0.995444, 0.637443, 2.931123, -0.166906, 1.105529, 1.100713, 0.140412, 0.841600, 1.674908, -1.822820, 0.390012, 2.297440, -0.312916, 0.457927, -0.115662, 0.433671, 0.824154, 0.482680, -0.893767, 0.038397, -1.266835, 0.912249, -0.887309, -0.037484, 0.084544, -0.839360, 1.735897, 0.154937, 0.537164, 1.549364, 0.425318, -0.718091, -0.127856, -0.745922, 0.153830, -0.232807, -0.518767, -0.991916, -0.663041, -0.144539, -0.281017, -0.937514, -0.317277, -0.320038, 0.025055, 2.570044, -1.482317, -0.717633, -1.085678, -0.471183, -0.224776, -1.099564, -0.571303, 0.829553, -0.155893, 0.156793, -1.194801, -0.220895, -0.368922, -0.675315, 1.676874, 0.818077, 1.552793, -0.215783, -0.763735, 2.724967, 0.190431, 1.077808, -0.690782, -0.339568, -1.099323, 0.121236, -2.092776, 0.264752, -0.088903, -0.257739, -0.537163, 1.041136, -0.018238, 0.735731, -1.281614, 0.592891, 0.593413, -0.156507, 0.356066, 0.421609, 0.399154, -1.299910, -1.107248, -1.252386, 0.214870, 0.773377, 0.280858, -0.020667, -0.152196, 0.168648, 0.833699, 0.058437, -0.371987, 0.637980, -0.217940, -0.291812, 0.042399, 0.694663, -0.311074, -0.748296, -0.893546, -0.008895, -0.018246, 1.643986, 0.090306, 1.597983, 0.153118, -0.640786, 1.109137, 0.996771, 0.653828, 0.066764, 0.346753, -0.789985, 0.162597, 2.254294, 1.425568, 0.646100, -0.533868, 0.890136, -0.379934, -1.726412, 0.505541, -1.631099, -0.578253, 2.055353, 0.760786, -0.602107, -0.738184, 0.046679, -1.329390, -0.922382, 1.411517, 1.405269, 0.628556, 0.439620, -0.011662, -1.029384, 0.076170, -0.455761, 3.042590, -0.083860, -1.809582, 1.139211, -0.976658, 1.023288, -1.821213, 0.122494, 0.632407, 0.807095, -0.108281, -0.286565, -0.090761, -0.227396, -2.005785, -0.150380, 1.444135, -0.782624, 0.236282, 0.937521, -1.349104, 1.532143, 1.021212, -0.582009, 1.149779, 0.792034, -0.097042, -0.056904, -1.543658, 0.700936, 1.195743, 0.356991, -0.534177, -0.818301, 0.811975, 1.300884, -0.057174, 0.533409, -0.024578, 0.747383, -0.140990, 0.012016, 0.510459, -1.704202, -0.531843, 0.488358, 0.020743, -0.843652, 0.430010, 0.735691, -0.029030, 1.870751, 1.196554, 0.578918, 1.068060, 2.301197, 0.806130, 1.542723, -0.657610, 1.219884, -0.407545, -0.631783, 2.917728, 1.102480, 1.059211, -0.250046, 0.160946, -0.190146, 1.708230, -0.372174, -0.346686, 0.677688, -0.660339, -0.160757, 1.590138, 1.086151, -0.630868, -1.512951, -2.307979, -0.285702, 0.414328, 0.844063, -1.172826, -1.703214, -0.513180, -0.139610, -0.498324, 1.984058, 2.193488, 0.038102, 0.007519, -0.174715, 0.876993, -0.145233, -0.902617, 0.587381, 0.494300, -0.235182, -3.053974, 1.371978, 0.804059, -1.783810, -0.136912, 0.376198, -0.436949, -0.995726, -0.024736, -2.339851, 0.250048, -0.039450, -0.298911, -0.271579, -0.510332, -0.181264, -0.666547, 1.183405, 0.135117, -0.383399, -0.472141, 0.074341, -0.774374, 0.088133, -0.495193, 0.091177, 1.542859, -0.842349, -0.015065, 0.564222, 0.013059, -1.105840, 0.164683, -0.687384, 1.465354, -0.938458, -0.130631, -1.513411, 1.216604, -0.764995, -1.130777, -1.162234, -1.797466, 0.014359, 0.294896, 1.093679, -0.689184, -0.541962, -0.331089, -1.895172, 2.511445, -1.048767, 0.424427, 1.325798, 0.642216, 0.223989, 1.759172, 0.392975, -0.170945, 0.041169, 0.206289, -0.386149, 1.219702, -1.301169, 0.048387, -0.833263, 0.497843, -1.353330, -0.164616, 0.916817, 1.832351, 0.330548, 1.878273, 0.909365, 1.919446, 1.105769, -0.320675, 0.413568, 1.014741, -0.953961, -0.327467, 0.808275, 1.088393, 0.255993, -0.391291, -1.659907, 1.293995, -0.663314, 1.096924, -0.858102, 0.726580, 0.409432, -0.597511, 0.512230, -0.283823, -0.108287, -0.104364, -0.408240, 2.646028, 0.329585, 0.385602, 0.744607, -1.404503, -0.774725, -1.090793, 0.533799, -0.246337, 1.802539, 1.403776, -0.646599, -0.050306, 1.064913, -1.606383, 0.200212, 1.118009, -0.150026, 0.042371, 0.246243, 1.424385, 0.944149, 1.994377, 1.511456, -2.229374, -0.041016, -0.439311, 0.279010, -0.333640, -1.527750, 0.041591, 0.068428, 0.824794, -0.091369, 0.024561, -1.579225, -2.206697, -0.656816, -0.730981, 0.871948, 0.410183, 1.466418, -1.191390, 0.055316, 0.315366, 1.068758, -2.021178, 0.479162, -1.920746, 1.265739, -1.192487, 0.699744, -0.294441, 0.327163, 0.336695, -0.251148, -0.014699, -0.552606, -0.034257, -0.412130, 0.148108, 0.242689, 0.254666, 0.916913, -0.118230, 0.944449, 0.850491, -0.549134, 1.252050, -0.896338, -0.038419, -0.102139, 0.230073, 0.707243, -0.285361, 0.897815, 0.083996, -0.307050, -1.310556, -1.297087, 0.285785, 0.119637, 0.153944, -0.572136, -1.948030, -0.974255, 1.887546, -1.534551, 0.376188, -0.847022, -1.221058, -1.239111, 1.393376, 0.714988, 0.508397, -0.463747, 1.675715, 0.938767, -0.469509, -0.210144, -0.567250, -0.620194, 0.327048, -0.189579, -1.150585, -1.837289, 0.574851, 0.756407, 0.649215, 0.952602, -0.064761, 0.780440, 0.006990, -0.107420, 0.727935, -1.498537, -0.149461, -0.640389, -1.151963, 0.603294, 1.301707, -0.423346, 0.193280, 0.249339, 1.910752, 1.252278, -0.478919, -1.263717, -1.108649, 0.522311, -0.511481, -0.750591, 0.580339, 0.038164, 0.448575, -0.516887, 0.035124, -0.321898, 1.601525, -1.010123, 1.172648, 0.789511, -0.305779, 0.439665, -0.943016, 0.247185, -1.647035, -0.268741, -0.641794, -1.704705, -0.076981, -0.148799, -0.665378, 0.423781, 0.090921, 0.009669, 3.541343, -0.205583, 0.738723, 0.234074, -0.404066, 1.688074, -1.428720, 0.086502, 0.237412, 0.629870, -1.292386, -0.286201, -0.669892, 1.320607, 0.427025, -1.290679, 0.235515, 0.121102, 0.624778, -0.339407, -0.001385, -0.282990, -0.185826, 0.170417, 0.790935, 0.509584, -0.736652, -0.740857, 0.421731, 0.148217, -1.188031, 2.061238, 0.467243, -1.137715, -0.501910, -1.575161, 0.491508, -0.871432, -0.036674, -1.531741, 1.670511, -1.100657, -2.379087, -0.894878, -0.893180, 0.743243, -0.150717, -1.123804, 1.852202, -0.406196, 0.456710, 2.020704, -1.742501, -0.793925, 2.386906, 2.307486, 0.443800, -0.119997, -0.076891, -1.659879, -0.889457, -1.126572, -0.249529, -0.593989, 0.040010, -0.240714, -0.715490, 0.554864, 0.795180, -1.442297, 0.052936, -0.078661, -0.597622, 1.051704, -1.071692, -0.223727, 2.197487, -1.612193, -1.712826, -1.049223, 0.373528, 2.014923, 0.005137, -0.339615, -1.464633, 0.775138, 0.582145, -0.074322, -0.039339, 0.849471, 0.970710, 0.563671, 0.296999, -0.233129, 0.470533, -1.027807, 0.873032, -0.990216, -0.344579, 1.991051, -1.243288, -0.773937, -1.275050, 0.688596, 0.709540, 0.739236, -0.509480, -0.944733, -0.829581, -1.459611, -0.372639, 0.138818, -0.877355, 0.625201, 1.679233, 2.587234, -0.724007, -0.063282, 0.543582, 0.400430, -1.418028, 1.380224, 0.326421, 0.066983, 0.167199, 0.475089, -1.813861, 3.863454, 1.073374, -2.143927, -0.872554, 0.615910, -0.798730, -0.294456, 0.348628, -0.091481, 0.109117, -0.269258, -0.346607, 1.694899, 0.030356, -1.116183, 0.986291, -0.276175, -0.776995, -0.478483, -1.746669, -0.769572, -0.561910, 1.534938, 1.124556, 2.106205, -0.465798, 0.045801, 0.302923, -0.612048, 1.678691, -1.837787, 0.538586, -1.294816, -0.819512, 0.389817, 1.618784, -1.748587, 0.811226, -0.944471, 0.257045, -0.257264, -0.590760, 0.943640, 1.442463, 1.421987, 0.125691, -0.936226, -0.744296, -1.298571, 0.503492, -0.308758, -0.465410, -1.531818, -1.183236, -1.071456, -1.544564, -0.244067, 0.556960, -0.082094, 0.799349, -0.904100, -0.317398, -0.365474, 0.008497, 1.167893, -2.393731, -0.089081, -1.607118, 0.319808, -0.245479, 1.544748, 0.199089, -1.733975, 0.216595, -0.862683, -0.145294, -1.028413, 0.084622, -1.060423, -2.092094, -0.240342, 1.188253, -1.615954, -1.358371, 0.879228, -0.023069, -2.407970, 1.552391, -1.072367, 1.003362, -1.643287, -1.803301, 0.656959, -0.507439, 0.557726, 0.067385, -1.834729, 1.011635, 1.004941, 0.527291, -0.029220, -0.881374, 0.431512, -0.389514, 1.000413, -1.430431, -0.432264, 2.279686, 0.478093, 1.150904, 1.233045, 0.040604, 1.723720, -1.932611, 0.069839, 0.177436, 0.644337, 0.138893, 0.811589, 1.318610, -0.764301, 1.222897, 0.435160, -0.500890, -0.956888, 1.042668, 0.406103, -0.920406, -1.319111, -0.644290, 0.142344, 2.281816, 1.089299, -0.089849, 0.068527, -1.626372, 0.575032, 0.363485, 0.281475, -0.342292, -0.460887, -0.206568, 0.119601, 1.010891, -0.589126, -1.207114, -0.679484, -0.164767, 1.188464, -0.433478, -0.405101, 0.388493, -0.398345, -0.739965, -0.368103, 1.494972, 0.452187, 0.345183, 1.209138, -0.487715, 0.970376, -0.248573, -1.562223, 1.440107, 1.230554, 0.653765, 1.069575, -0.323912, -2.215181, -1.011182, -0.115525, 0.012882, 0.047552, 0.783577, 0.294569, 2.004042, 0.162805, 0.283400, 0.695328, 0.796394, 0.027858, -1.512262, 0.748944, 1.294560, 1.038944, 0.635624, 0.665665, 0.771893, 1.920399, -1.047048, 1.028800, -0.659706, -1.084620, -0.567912, 0.174250, 0.249991, -0.791014, -0.760536, -0.749136, 1.555948, -0.580161, 0.845206, -0.926180, -0.906502, 0.487650, 0.332809, -0.579900, 1.205110, 1.287482, 0.364265, 1.583727, 0.112548, 0.051445, -1.189313, 0.872642, 0.310576, -0.088811, 0.344399, 1.320516, 1.215312, 1.235190, -1.629074, 0.813127, -1.010859, -1.643796, 0.158955, 0.139451, -0.357437, -1.579448, 0.161483, -0.228034, -0.317106, 1.931907, -1.722057, 0.196683, 0.116167, -0.658469, -2.491604, 1.023589, -1.249266, -1.226009, -0.150899, 0.336420, -0.841573, -0.719314, -1.546988, 0.696434, -0.362489, 1.359999, -0.484196, 0.368057, -0.177900, -0.341715, 1.894156, -0.243240, -0.255521, -0.790302, 0.562681, -0.375213, -1.206545, 0.229697, -0.841389, 0.909753, -0.991210, -0.594636, 0.059072, 0.555166, -1.362246, -0.349571, 1.230701, -0.356377, 0.932467, -1.165115, -0.839346, 2.457175, 0.191253, 1.599424, 1.003718, 0.663725, 0.338212, 0.942617, 0.988647, 0.165321, -0.464729, 1.979742, -0.872464, 1.571884, 0.607541, -0.302177, 1.640315, -0.420163, 0.453161, 0.400100, 0.282997, 0.769928, -1.912038, -0.157296, 0.401561, -0.732490, 0.026293, 0.737686, 0.087095, -0.507333, 1.907895, -1.874615, 0.458992, -0.154443, 1.769705, 1.985668, -0.225467, 0.542504, 0.936257, 0.033905, 1.457578, -0.088986, -1.168413, -1.355266, -1.840697, -0.152484, -0.534739, -0.547411, -0.693715, -0.164172, 0.298906, -1.306754, -0.111398, 1.443232, 0.876508, 2.276819, 1.654638, -0.440680, -1.122580, 0.873657, 0.246780, 0.699443, 0.954755, 0.892463, -1.270546, -0.306003, -0.267748, -0.857556, -0.805911, 0.325010, 0.425770, 1.254828, -0.624817, -1.070832, 0.655255, 0.939468, 1.943613, 0.539540, 0.148576, -0.119474, -1.293726, -0.715895, -0.012675, 0.691287, -1.104951, 1.323809, 0.737486, -0.074661, -0.754728}, - { 0.023396, 0.136202, -0.429582, 0.913338, 1.063412, -0.576345, 0.285503, -1.278941, 0.502903, 1.722815, 0.692577, -0.011685, 0.316799, -0.966577, -1.228344, -0.016515, 1.389067, 2.539372, 1.007168, -0.479410, 0.100582, -0.439411, -0.270432, -0.622462, 0.078918, -1.170713, 1.862006, -0.287125, 1.183094, 0.045484, -0.589916, 1.155468, 0.638269, 1.363820, -0.470962, -0.076511, -1.185386, 0.361495, -0.171536, 0.001601, -0.931906, 1.387370, 1.151270, -0.987457, -0.668102, 0.399541, -0.695934, 0.016185, -0.481527, -0.185139, 0.539298, -0.199924, -0.638359, 0.593280, 0.331584, 0.411655, 1.064039, -0.089867, 0.396282, 1.144994, 1.540412, -0.210733, -0.640321, -0.575352, 0.917385, -0.991393, 0.986518, 1.862033, -1.580919, 0.453481, -0.263275, 0.511648, 0.159256, 0.931962, -2.609276, 0.968629, -0.914541, 1.700993, -1.256050, 0.698150, 1.823422, 0.037138, 1.438278, 0.986441, 0.589477, 0.188192, -0.849313, -0.089171, -0.590156, 0.770045, 0.299019, -1.537151, -1.476206, -0.379538, -0.930985, 0.245125, -1.023723, -0.599459, 0.166164, 0.935795, 0.410261, 0.037563, 0.909495, 0.828077, -0.075983, 0.094554, 0.535356, 0.619143, 1.248614, 0.335082, -1.496190, 1.100331, 0.200583, -0.355275, 0.763333, 0.111904, 1.534498, -1.359010, 0.639630, -0.479338, 1.012974, -0.136755, 1.095541, -0.578645, -0.620133, -0.775549, 0.948693, 1.549242, 1.603935, 1.593606, -0.540264, 0.027972, 1.075918, -0.787919, -0.034328, 1.928163, -0.719574, 0.056106, -0.620823, 0.133577, 0.955915, -0.149810, 0.496379, -1.087988, 1.085755, 0.660878, -0.538073, -3.163423, -1.515447, -1.059159, 2.464664, 1.544105, 1.475011, -0.179892, 0.444121, 0.019551, -1.734134, 0.416269, 1.646693, 0.147408, -1.700392, 0.650383, 1.484545, -0.914398, -1.126786, -0.479859, -0.873992, -0.585683, 1.547714, -0.222915, -0.348313, -2.355119, -0.827512, 0.784104, 0.774014, 0.412664, 0.100520, -0.358616, 0.938329, -0.694108, -0.499660, -0.172609, 1.805564, 1.917629, 0.982360, 0.279026, 0.293680, -1.320559, 0.052307, -0.695806, -1.412588, -0.308135, 0.142306, 1.801622, 0.383280, 1.175307, -2.158855, -1.340408, -0.295171, -1.230048, -0.003015, 1.181270, -1.630008, 0.167344, -2.170366, -0.164818, -0.555085, -0.149506, -0.212877, -0.686107, -0.595363, 0.615896, 0.675775, -0.260188, 0.450867, 1.341536, 0.339737, -1.379795, -0.227748, -1.122836, -1.095426, 0.906579, -0.200616, 0.194321, -0.029463, -2.104260, 2.849089, -0.738285, -0.485243, 0.043431, -0.637024, -0.734241, -1.437636, -0.435481, -0.416616, 0.689810, 0.000750, -1.139425, 0.490150, 0.747990, 0.583617, -0.075871, 0.177548, -0.135455, -0.815996, 0.411479, 0.383300, 0.383438, -0.480760, 0.209615, -0.161971, -1.145064, 0.711789, 0.645693, 0.246839, -2.123575, 1.365329, -1.192479, -2.123606, 0.548126, -1.809798, 0.650713, -0.344736, -1.962180, -0.121258, -0.769894, -1.552530, 0.939334, -0.631442, 0.739776, -1.375123, -1.197881, -0.229284, -1.298046, 0.012158, 0.107446, 0.536967, -0.125645, 0.620862, 0.844765, 0.936687, -0.164700, 0.536514, -1.171764, 0.005685, 3.069013, -0.781457, -0.660789, -0.556477, 0.120636, -0.400644, 0.803014, -1.447217, -1.888079, -1.035434, -0.000928, -2.431988, 0.784379, 0.406500, 1.668838, 1.741555, 0.341899, 0.718951, 0.514285, -0.039132, 0.652041, -0.240598, -1.178798, -0.049775, 1.927445, 0.729182, 1.210293, 0.150680, 0.185572, -2.233253, -0.916818, -0.711040, 2.288300, -1.408745, 0.116266, 1.467862, 1.913262, -0.873837, -0.458748, 0.113203, -0.383492, 0.955173, 1.556695, 0.145952, -0.812308, 0.146506, 0.291714, 0.260976, 0.383008, -0.604277, 0.228192, -0.355675, -0.260216, -0.573225, 0.746543, -0.371543, 1.146025, 0.242753, -2.011811, -0.034918, -1.525353, 1.786344, 0.542949, -1.075736, 0.764883, -0.107344, 0.477887, -1.542614, 0.235825, -2.035392, 0.745100, 0.861146, 1.236777, -0.553279, 0.195349, -1.317107, 0.300353, 1.147936, -0.529671, 0.699617, 0.665240, -1.009567, 1.284010, -0.639980, -0.133205, 2.781936, -0.575966, 0.701617, 1.406198, 0.990971, -1.274519, -0.485819, -1.769011, -1.266016, -1.157594, -0.015350, 1.376591, 0.717823, -0.389252, -1.065609, -0.761590, 2.085528, -0.481505, 0.654658, 0.319602, -0.467775, 1.008235, -1.182734, 0.019898, 1.823496, 0.891406, 0.311727, -0.756121, -0.417514, -1.602144, -0.986891, -0.407536, -2.256386, 1.501703, -0.710940, 0.447161, 0.095935, 0.496833, 0.121473, -0.049569, 1.514407, 1.342386, 0.426697, -0.275161, -2.898398, 0.351934, -1.170406, -0.546121, -0.724105, 0.082377, 0.165756, -0.756541, -1.211714, -0.695398, 0.641392, 0.034928, -0.068623, 0.565727, 0.089366, -0.004400, -1.106687, -0.334159, -1.375906, 0.055428, 1.831604, -0.176211, 0.375893, -1.187470, 0.013412, 0.338437, 0.171244, -2.284080, -1.666911, -0.889876, 0.666289, 0.100840, -0.297562, 0.561714, -0.289711, -1.973596, -0.739113, 2.448843, -1.330409, 1.798531, 2.261751, -1.111721, -1.336240, -0.855474, -0.263598, -0.595948, -1.601381, -1.073619, 1.129543, -0.590523, -0.833244, -1.449385, 0.166006, 0.420519, -0.276540, -0.583456, 1.281674, 1.338733, 0.245928, -0.717386, 0.027444, -1.103373, -0.284910, -0.461207, 1.350333, 0.647286, 0.862684, 2.205029, 0.424601, -0.386721, 0.661946, 0.161695, 0.704428, -0.057529, -0.219743, 1.232696, -0.516243, -1.700123, 0.776517, 0.690183, 0.737384, 0.422231, 1.241127, 0.214493, -1.161830, 0.507126, -0.370957, -0.596948, 1.951120, 0.294149, -1.613676, 0.670852, -0.628501, -2.113212, -1.230546, 0.652650, -0.666821, -1.097989, -0.033759, 1.096087, 0.554365, 0.098416, -0.744607, -0.541579, 0.200043, -0.482690, -0.436143, 0.927082, 1.151850, 0.117516, -0.297776, -0.828680, -0.143217, -0.546180, -1.568938, 0.487001, -2.863392, -1.249782, -0.527590, 0.735020, 0.987866, -0.317457, 0.051409, 0.684666, 1.539859, 0.641157, 0.634615, -1.505125, -2.249882, 1.209540, 0.579772, -1.084018, -0.029828, -0.390837, 0.537237, 0.086474, 0.536605, 1.084405, 1.973039, -0.772143, 0.705911, -0.517773, 0.845810, -1.058857, -0.457516, -0.333350, -0.263789, 0.837664, -0.463301, 1.029478, 1.382064, 0.259793, -0.225372, -1.509245, -0.020093, 1.321944, -0.243838, -0.376126, -1.575089, 1.517300, 0.155765, -0.477722, 0.410828, -0.443794, -0.936263, -0.029884, 0.409627, 0.228721, -1.515066, -0.294576, 0.840850, -0.833279, 1.553635, -2.003227, 1.237115, -0.542041, -0.377088, 1.485181, -0.528614, 0.816891, -0.572198, 0.349043, -0.853648, 0.778541, 1.635181, 0.840294, -0.305631, 0.254761, -0.043400, -2.622454, 2.061213, -0.164515, 0.039771, 0.484052, -1.265441, 0.350750, 0.131981, -2.120834, 0.481874, 0.823938, 0.980490, 0.192810, -0.450139, -0.824210, 1.621638, -0.574655, -1.278036, -2.015663, 0.335195, -1.713358, 0.853229, 0.900498, -0.388422, -0.172883, 0.887181, 0.750917, 0.094901, -0.610523, 0.178098, 2.032655, -0.841524, -1.939480, -0.780872, -1.066457, -0.843065, 1.679981, 0.227205, -0.555315, -0.370237, 0.117430, 0.551519, 1.526129, 0.636538, -1.462909, 0.685438, -0.734647, 0.101999, -0.588277, 0.309043, 0.333314, -0.278448, 1.088099, 0.784948, -0.910614, -0.420306, 0.836462, -1.010417, 1.035466, -0.221405, -0.085495, 1.395105, 0.391818, 0.401208, -0.092298, 0.827388, 2.522956, -2.014271, -0.161012, 2.864902, 0.408847, 0.069922, -0.433092, -0.000868, 1.083471, -0.228456, 1.120465, 0.211148, -0.907982, -0.343534, -0.393809, 1.009895, -0.664715, -0.913141, -0.428409, -0.720020, 0.165634, -0.932413, -1.008384, 0.357105, 0.026722, 0.295190, 1.136801, -0.559688, 0.034592, -0.376112, 0.727929, 0.036997, 0.884449, 0.494009, 2.446481, -0.840208, -0.419960, -0.717282, -1.224830, -0.545034, 1.448973, 1.006176, -1.266416, 0.692259, 2.476227, -0.563591, -1.948613, 0.338439, -0.737522, -0.007381, -0.775368, -0.116046, 0.556389, -1.886169, -0.337153, -0.694164, 0.836965, -0.172066, -0.351394, 0.901425, 1.480408, -1.216691, -0.475046, 0.698097, 1.554528, -0.284628, 0.840685, 0.872275, -0.366342, 0.835962, 1.506416, 0.495956, 1.017693, -0.807007, 1.004605, 0.086903, -1.419050, -1.585328, -0.331168, 0.646487, -0.041309, 1.538866, 0.084962, -0.791234, 1.169489, -0.150808, 1.008338, -0.480815, 0.662092, -0.997507, -0.169619, 1.786960, 0.925473, -0.596759, -0.234993, -1.215669, -1.686875, -0.562187, -1.172172, 0.197798, 1.799606, 0.636350, 1.669752, 0.440029, -0.667044, 0.761192, -0.671475, 2.913899, 1.551982, -0.163438, -0.876546, 2.158285, 0.012670, 0.376451, -0.057048, -1.525455, 1.677993, 3.204739, -0.806465, 1.409802, 1.163384, -0.775699, 0.132773, 0.095906, -0.627838, -0.607660, 0.751566, -0.890520, 1.028551, -0.162412, 0.571988, 0.309722, -0.260316, -0.286815, 2.647392, 0.496323, -0.261767, -0.225460, 0.353017, 0.356193, -1.002605, -0.149120, -0.829185, 2.084265, 1.920257, -0.967502, -0.673418, -0.282719, 0.658458, -0.220914, 0.012291, -1.436628, 0.966705, 1.111947, 1.886631, 0.641276, 1.333091, 0.101900, 0.248207, 1.781667, -1.317881, 1.367503, -0.467715, -0.001462, 0.188514, 0.410630, -0.256085, -1.549796, 0.540346, -0.431244, -0.576367, -0.141862, -0.124181, -1.455504, -0.151082, -0.190830, 1.158185, -0.412450, 2.146508, 0.719205, -1.432673, -0.315998, -0.466829, -0.761943, 0.515085, 0.538625, 1.379972, 0.155460, -0.720756, -0.165366, 1.393689, -1.286890, -0.829596, -0.471441, 2.188738, 0.034887, -1.816133, -0.126200, -0.161840, 1.403793, 0.696582, -0.774912, -0.300883, 0.439844, -0.913951, -0.068064, 0.249758, 0.145267, 0.393304, -0.567440, 0.911235, 0.996696, 0.481671, 0.241562, 0.395446, 0.971160, 0.058329, 0.915646, 0.659591, 0.722111, -1.827426, 0.533718, 1.039158, -0.468198, -0.818465, -0.595275, -0.419400, -2.270205, -1.218343, -0.953830, -1.663903, -2.222436, 0.286854, -0.063987, 0.594184, -1.423526, 0.086622, -1.888888, -1.348979, 1.264271, -0.305135, -0.741713, 0.431745, -0.100344, -0.082734, -0.329502, -0.167831, -0.713032, -0.639203, 0.830372, 0.134868, -0.226451, -0.080555, 0.254751, -0.903663, -0.416320, -2.049183, -0.753678, -0.562997, -0.640196, -1.117323, -0.695391, 0.621921, -0.689532, 0.138901, 2.714519, 0.863851, -0.071293, -0.025773, 1.226162, -0.184486, 1.172223, 1.653256, 0.360200, -0.095637, -0.631009, -0.897069, -0.715706, 1.184576, -1.666696, -0.592545, -0.954167, 1.027020, -0.080999, 0.211218, -0.060247, -1.106066, 1.721754, -0.688572, -1.257614, -0.531225, 0.811394, -0.257033, -0.613901, 1.008222, -0.350364, -1.112902, -0.221605, -1.100273, 0.490632, 1.063217, 0.507124, 1.221259, -0.088082, -0.590366, -0.134465, -1.954293, -0.019045, 0.656908, 0.086825, -0.913736, -1.394168, -1.267404, 0.168277, 0.315333, -1.051621, 0.086617, 0.082980, 2.832044, -0.595429, -1.056764, 0.889832, 1.419938, 0.421057, 0.973185, -1.183331, 2.182572, -1.446946, 1.025428, -0.813468, 0.313637, 0.134514, -0.350835, -0.977275, 0.180079, 0.502391, -0.893320, -0.639823, 0.016668, -1.182340, -0.177489, 1.205509, 2.025180, -1.730964, -1.145808, 1.260928, -0.941486, -1.709951, 0.238115, -0.700688, 0.798015, -1.303748, 0.532478, 0.079181, -0.711292, 1.404005, -0.203665, -0.360464, -1.992930, -1.941063, -0.692722, -1.742797, -0.289899, 0.273530, 2.180192, 0.841466, -0.284565, 0.152140, -1.385026, -0.402354, 1.203714, 0.377931, 0.614887, -0.408598, -0.206427, 1.058361, -0.375093, -1.930014, -0.345484, 0.083174, -1.745501, -0.950120, 3.047193, 0.297606, -0.062777, -0.851934, 1.205954, -0.918285, 0.267098, 1.353393, 0.400963, -0.119559, -1.653386, -0.198842, 2.248121, 1.041785, 1.014294, 0.383287, 0.276750, -0.211980, 0.342658, 0.512542, -0.010094, -1.807120, -0.430656, 0.907290, -0.378878, -0.641071, -1.916796, 0.051669, -1.970603, 0.383354, 0.647800, 1.094354, -1.222950, -1.010545, -0.143197, -0.680824, -0.911992, -0.917259, 0.286051, -1.664072, 1.747371, -0.494345, -1.214253, 0.502453, 0.140978, 1.845221, 0.648643, 0.328889, -0.835324, 2.105606, 0.282061, 0.249482, -0.142112, 1.758234, 0.593565, 1.924294, -0.839981, -0.062827, -0.162460, -1.064456, 1.687495, 0.501683, 0.248259, -0.300597, 0.850652, 2.149653, 0.408587, 0.255087, 0.372499, 0.881041, -1.065238, 0.392307, 0.629002, 0.645496, 1.253061, 1.097165, -0.519285, -0.585461, -0.228177, 0.529624, -0.707921, -1.102816, -0.665820, -0.640109, -1.563945, -0.336420, -0.757577, 0.035822, -0.879846, -0.681074, 2.558469, 0.292831, 0.446808, 0.984800, 0.477661, 0.933916, -0.124349, -1.929640, 0.592342, -1.240870, -0.005897, -0.072176, 0.109916, 0.532631, -0.909844, 0.236485, -1.247307, 0.719336, -1.187424, -1.873172, 0.049507, -0.997982, -0.008136, -0.179615, 0.943116, -0.506585, 0.610124, -1.790382, -0.637380, 0.038062, -1.475242, 0.960402, -0.197653, 0.825991, -0.871621, -0.145996, -0.298579, -0.927108, 0.921059, -1.120398, 0.643286, 0.631341, -0.441900, 0.139579, -0.529644, 0.495942, 0.124820, 0.972268, 1.533504, -0.753933, -0.195907, -0.658978, 0.812300, 0.348258, 1.782634, 0.525831, 0.592842, 0.075061, -0.638511, -0.145393, 0.758065, 0.310227, 0.580242, -1.017672, 1.669101, -0.149095, 0.984941, -0.370344, 0.067022, 1.483523, -0.652811, -0.735169, -1.566261, -0.754629, 1.827685, 0.280319, -1.807789, -0.957124, -1.342365, -0.890650, 0.700651, -0.960648, -1.253373, -2.016371, 0.781377, -0.562471, -0.581897, -0.149032, 0.996386, -0.629304, -0.261598, 1.114246, -0.167003, -0.681592, -1.206486, 1.502084, -0.370617, -0.655498, 1.313512, -0.738096, 1.227427, 0.133845, -1.593000, -0.171006, 0.016812, -0.035712, -1.179992, 0.444235, 0.679518, -0.097178, 0.452263, -0.231834, -0.061905, 0.016916, 0.661035, -0.321204, 0.585605, -0.301141, 0.730228, 0.725004, 0.507197, 0.929350, -0.862366, -0.130783, 0.038461, -0.866809, 0.270279, 0.318924, -0.069209, 2.193380, 1.306020, -0.691564, 0.303712, -2.144057, -1.672164, -1.851207, 0.839100, 0.147435, -0.721411, 0.329681, 0.794595, 0.324947, 0.690088, 1.942982, -0.097080, 0.538811, -0.951701, -1.267461, -0.686057, 0.308640, 0.700485, 1.251595, 0.288085, -1.333523, -0.436340, 0.993456, 0.336283, 0.060835, 0.638902, -0.208971, -0.875483, -1.436833, -1.259909, 0.159208, -0.624529, 1.235453, 1.960668, 2.265294, 0.722880, 0.272373, 0.471477, -0.028523, 0.260190, 1.260779, -1.171038, 0.136264, -0.591812, -0.085109, 0.487100, 0.453191, 0.420659, 1.089847, 0.904808, -0.545982, 0.490919, -1.167096, 0.814976, -0.060983, -0.128147, -0.625799, 1.166360, 2.554266, -1.097533, -0.037161, 0.752021, 0.898231, 0.397827, -0.506452, -0.112521, 0.000972, 0.950549, -0.192429, -0.908271, -1.263897, -0.111690, 0.479676, -0.623469, -1.654686, -4.138679, -1.835954, -1.140800, 0.794125, -2.149392, 1.228026, 0.021392, 0.604759, -0.860049, -0.844000, 0.558011, -0.394070, 0.561034, 1.221802, 0.972518, -0.611841, 0.330582, 0.209986, -0.560274, 0.525795, -0.867395, -0.105653, 0.063049, -0.916626, -1.104079, 2.005839, -0.732364, -1.463147, -1.206511, -0.522068, 1.783362, 1.380923, -0.330792, -0.911438, 1.912133, -0.058340, -0.894592, 0.374959, 0.469848, -1.110191, -0.127004, 1.740126, -0.662971, 0.364398, -1.175958, -0.845267, -0.617404, -0.106894, -0.957731, 1.083887, 0.182848, 0.097826, -1.756164, 0.361191, 0.849373, 0.862155, -0.289951, 1.126485, 0.992069, 1.404981, 2.283494, -0.001340, -0.216360, 0.685055, -0.770735, -0.399487, -0.441503, -1.101333, 0.205113, -0.364961, 0.195312, 1.356274, 0.367577, 0.684025, -1.933821, 2.020367, -0.966925, 1.876325, 0.250455, -1.182922, 0.838751, -0.848364, -0.391268, -1.648649, 0.270056, 0.386856, 0.896792, 0.443080, 0.421881, 0.220919, 0.775188, 0.274056, 1.136434, -0.914596, -1.105468, 1.960688, -0.738037, -1.184684, -0.411563, 1.661435, 0.032150, -0.236232, -1.315447, 1.590860, 1.538563, 0.874176, 0.576845, -0.227200, -0.882198, 0.361813, -0.148709, -0.062594, -0.841737, -0.756088, -0.025333, 0.030301, -0.456330, -0.014243, -1.125299, 0.791257, 0.161927, -0.579588, -1.875176, -0.826973, -0.119252, 1.101134, 0.024724, 0.419482, 1.107122, 0.672548, 0.574127, -0.171276, 0.371989, 2.638032, 1.746879, 0.243066, -0.230460, 0.310734, -1.275956, -0.116330, 1.868599, -0.388425, -0.447892, 0.786226, -0.275765, -0.352552, -0.417905, 0.030294, -0.096711, 0.931218, -1.520796, -1.406463, -2.432984, 0.614980, 1.507652, -0.411919, 0.999595, -3.266768, -0.167305, 1.549981, 0.840745, 0.394237, 0.887500, 1.337820, -0.733737, 2.117126, 1.276480, -0.427666, 0.098676, -1.084921, 0.605786, -0.129802, -0.450738, -0.012783, -0.039487, 0.383089, -0.422961, -1.339078, 1.425082, -0.707621, -2.178144, 1.540504, 1.128867, 0.487667, -0.247510, -0.866662, 0.520345, -1.173509, -0.674520, -1.229432, -0.527746, -0.144087, 1.340454, 1.774964, -0.752070, 0.471210, 1.772466, -0.035121, 0.933138, -0.027395, -0.093178, 0.362352, 0.355558, -0.930105, -1.704352, 0.929236, 1.116125, -0.935670, -1.820729, -0.997073, -1.869467, 0.690508, -1.458757, -0.268961, -0.644186, -0.971382, -0.207644, 1.050033, -1.079602, -0.517690, 1.388563, -0.925280, -0.511390, -2.386877, 0.386431, 0.972395, -0.334688, -0.739947, 1.566245, 0.413413, 0.630930, -0.375925, 0.421686, 1.829775, -1.093943, -0.885953, -0.451536, 1.401307, -0.116740, -1.472080, 0.230120, 0.041125, -0.522304, -0.109951, -0.380358, -0.474135, 0.186144, -1.068480, -0.349949, -0.058732, -0.101279, -0.624958, 0.421238, 0.079521, 0.226451, 0.330446, -1.515795, -0.375161, -0.841313, 2.106468, -0.873785, -0.407179, -0.152398, -0.429888, 0.148620, 0.862050, 0.138762, -0.170486, -0.971400, -1.765626, 0.206401, 0.627441, -0.656111, 1.786710, 1.703382, 1.165944, -0.279779, -0.045727, -1.187223, 2.043474, 0.798026, 1.230852, -0.262742, 0.316060, -0.364685, 0.330564, -0.857027, -0.751561, -0.822463, -0.892342, -0.877937, 0.955756, 0.207628, -0.452704, 2.316229, 0.968874, -0.144562, 0.329772, -0.893142, 0.216800, -1.146238, -1.877710, -1.245870, -2.638468, 1.626978, -0.606653, 0.612692, -1.042984, 0.280351, 0.064535, 0.914523, 1.562372, -0.086492, -1.725664, 0.554311, 1.215640, -2.628251, 0.369850, -0.809344, 1.692258, -0.622908, 0.164238, -0.311946, 0.791535, 0.255095, 0.142770, -0.518972, 0.241471, 0.911635, -2.448279, -0.315110, 0.882662, -0.179064, 0.992140, 1.084295, 1.283118, -1.180928, -0.167381, -0.931014, 1.007953, 0.487981, 0.410414, -1.125248, 1.080264, 2.172207, -1.643838, -0.950704, 2.240215, 0.433282, -0.009187, -0.145634, -0.229556, 0.674855, -1.174463, -0.915577, 0.186573, 0.319737, 0.842539, -1.521999, 1.348312, 0.026901, 0.324622, -0.019784, -0.592992, -0.437450, -1.016367, -0.967641, 1.069485, 0.477719, 0.341111, -1.873292, -0.865953, -0.775751, 0.712023, -0.329089, -1.488686, 1.256587, -0.636032, -1.793551, -0.311343, -1.145982, -0.054065, 0.677109, 0.037941, 0.080239, 0.731041, -0.199110, 0.444112, 1.162807, 1.911987, -0.645764, 0.787155, 1.836814, -1.095626, 1.029598, 0.251865, 0.126167, -0.086977, 2.741215, 0.719721, 1.000606, 0.458922, -0.024610, 0.698153, -0.359651, -0.237589, 2.351208, 1.470371, 0.515687, 0.869332, 0.126476, 3.883470, 0.186592, -1.089796, -1.779546, -1.353610, -0.936374, -0.370747, -1.225460, 1.307343, -0.396353, 1.237037, -0.310230, 1.998615, 0.014708, -0.662009, -0.466426, 0.202250, -1.620504, 1.253677, 1.443136, 0.692793, 0.399387, -0.478853, -1.461639, -0.345262, 0.200887, 1.786089, 0.683155, 0.628412, 1.344692, -0.595442, -0.847524, -1.326938, -0.150335, -1.955917, -2.806731, -2.014990, -0.104551, 0.718086, -0.169799, 1.045719, 2.108074, 0.296045, -0.094833, 1.921723, 0.224170, -0.762066, 0.371275, -0.114867, 0.635206, 0.488845, 0.588798, 0.935705, 0.927778, 1.811801, 1.283815, 0.849260, 0.239599, 0.125858, 0.305383, 0.142462, -0.023465, 0.615983, -0.148336, -0.520158, 0.865752, -1.586879, 1.220383, -1.075337, 1.284307, -1.342182, -1.484263, -0.377195, -0.746626, 0.128483, 0.531477, -0.262316, 0.639651, 1.256555, -0.802813, 0.354839, -1.439367, 2.038917, 0.115188, -0.002961, -0.100520, -2.249591, -0.651391, -2.083083, -0.099053, -0.439976, 0.060259, -1.600097, 0.291175, -0.303681, -0.704441, -0.585825, -0.875529, 0.611901, -0.920216, 0.470516, -1.147290, -1.417867, -0.290078, 0.225656, 0.116712, 0.748802, 0.950469, 0.473076, 1.286392, 0.304649, 0.563091, -0.521579, 1.106358, -1.009653, 0.559653, -0.176687, -0.272426, -0.335814, -2.104688, 0.144299, -0.118132, 0.766873, 0.432370, 0.112561, -0.366071, 0.127473, -2.149837, -0.220517, 1.291354, -0.234275, -0.612614, -0.252934, 1.457823, -0.748966, -0.852400, 1.444541, 0.330739, -0.726693, 1.837498, -0.089930, -1.036981, -2.828063, -1.612210, 1.075947, -2.108839, -0.006844, -1.137033, 0.776847, 0.536834, -0.051561, -1.423991, -0.481238, 1.833058, 0.433326, 0.844904, -1.314044, 1.123624, -1.663119, 0.639671, -0.130581, -1.754453, -0.161802, 1.429815, 0.559547, -1.581161, 0.266619, -0.504975, 0.620295, -0.636545, 0.737502, -0.571106, 0.524705, -0.229171, -1.054068, -1.439171, -1.209349, -0.943157, 0.553638, -0.891821, -0.251170, 1.020892, 0.334475, 0.084033, 0.262309, -0.167865, -1.264099, 2.333211, -0.539337, 1.985914, 2.077649, -0.581791, 1.739788, -1.341000, 0.650356, 1.384642, 0.753769, 0.042600, -0.875205, 0.276566, 0.776265, 1.795568, -0.138639, 0.258949, -1.395009, 1.032450, -0.033395, -1.017449, 0.197769, -0.331667, -0.406614, 1.763131, -0.390460, -0.000224, -0.536840, 1.721577, 0.390280, -0.649278, -0.358400, 1.017267, 0.359298, 3.036785, -0.255413, -0.088337, -1.027438, -0.836069, -0.574555, 1.323916, 0.781015, -0.359389, -1.024314, -1.218595, -0.387437, -1.064479, -0.276786, -0.815232, 1.460104, 0.303738, -0.326294, 0.391765, -1.133664, 1.095642, 0.466745, 2.757904, 0.046717, 1.673245, 0.164456, 1.075585, -0.824465, 0.830461, -0.281511, -0.603690, 0.795431, -0.400389, 2.321805, 1.553955, -1.253872, -0.920605, -0.200004, 0.092007, -0.545655, -1.495432, 0.392425, 1.911075, 1.806849, 0.891840, -1.879598, 0.548018, 1.412529, -0.201651, -0.534491, 0.444701, -1.397474, 0.650712, 0.026161, -1.040076, -0.336743, 1.104062, 2.362363, -0.303084, -0.497921, -0.026604, 1.776820, 0.722540, -0.356284, 1.236339, -0.162178, 0.328618, -0.611726, 0.099263, 0.538875, -0.556045, 0.524705, -0.429823, 1.560737, 1.759803, -1.162496, -0.928441, 1.378210, 0.995570, -0.125118, -0.158362, -1.040534, -0.646810, -0.526419, 0.088274, 1.096575, 1.375384, 1.005730, -0.730378, -0.590933, 0.670546, 0.748929, -0.937335, 0.240316, 0.027845, -1.099000, 2.503979, 0.516242, 0.601423, -0.029485, 1.047600, -0.778150, -0.208256, 2.087371, -0.109030, -0.550065, 0.268740, -1.592542, 0.165544, 1.303491, 0.503488, 1.620395, -1.384388, -1.442777, -0.219532, 0.586025, 0.179573, -1.047919, -0.406106, -0.670253, -0.454711, 0.086696, -0.221635, -0.107341, 0.096905, 0.501375, 0.389902, -0.718962, 0.369154, -0.545792, -0.903070, -2.083394, -0.464496, 1.229965, -0.796925, 0.112636, -0.412816, 0.386996, -0.566717, 0.283490, 0.764420, -0.328507, -0.952816, -1.216502, -1.342917, -0.488431, -1.182830, -0.108431, 0.067645, -0.515138, -0.942595, 2.122972, -0.560578, 0.901717, -0.250907, 1.835881, 0.140618, -1.529766, 0.393592, 0.320063, 0.321391, -0.576975, 1.229006, 0.982869, -0.244458, 0.199389, -1.160916, 0.909540, -0.932892, -0.527376, 0.539332, 0.401679, -0.986540, -0.430322, 0.519027, 1.071460, -0.397876, -0.038977, 1.359983, 1.196802, -0.789126, 2.101725, 1.374994, 2.572261, 0.841499, 0.397886, -1.562937, -0.112234, 1.381675, -0.962275, 0.170141, -1.798316, 0.084803, -0.541409, 0.670020, 0.606919, 0.595105, 0.107764, -1.355153, -1.697404, -0.696932, 0.491681, -0.014179, -0.624061, -1.099836, 0.409383, -0.480916, 0.531477, 1.038150, -1.146378, -0.130510, -1.692715, 0.042282, 0.372224, -0.962810, -0.350911, 0.716214, 0.364914, -0.632124, -0.340206, 0.967126, 0.728422, -0.388158, 0.282732, 0.789648, 1.134498, -0.657309, 0.527860, -1.792478, -0.167761, 0.862983, 0.195331, -0.080791, 0.519439, 0.002223, 0.805881, 1.104132, 1.831897, 0.621113, 1.238027, 0.741433, 0.908927, 1.305232, -0.215425, -0.877278, -1.341962, 0.939129, -0.783505, -0.272113, -1.947798, 0.122060, 0.360423, 1.147790, -0.277303, 1.989759, -1.446570, -0.140685, 1.378022, 0.788467, -1.021896, 2.318402, -0.355808, -0.335638, 1.881346, 0.870179, 0.808606, -1.343580, -0.523407, 0.055494, -1.591607, 0.995959, -0.055108, -0.422898, 0.709051, 0.086386, -0.678440, 2.149417, -0.552571, 0.085744, 0.258830, 1.617742, -0.532514, -1.564692, -2.305881, -1.821433, -0.224066, 1.255261, 1.747371, -0.234119, 2.396160, 1.724551, 1.163899, -0.575704, -0.063996, -0.857813, -0.834383, 0.156127, 0.209251, -1.835095, 0.153471, -0.709798, 0.755863, -0.551625, 0.521749, 0.465330, -0.114019, 0.615403, 0.083398, -0.635300, -0.709101, 1.454262, -0.253375, -1.005333, 0.533846, 0.047658, 0.718758, -1.039533, -0.634423, -0.590114, -0.680550, -1.563773, -2.893270, -0.167443, -0.803513, 0.127553, 2.527076, -1.422707, -0.023917, -0.963830, -1.369666, 0.899698, -1.252324, -0.996970, 0.683784, -1.651099, 0.627126, 0.453215, 0.921522, 0.593216, -0.165564, 0.631765, 0.444843, 0.581436, -0.525560, -0.791064, 0.107712, -0.014528, 0.891228, 0.117661, 0.058619, 1.176974, 0.594804, 1.984418, 1.693246, 1.197847, -1.257990, 0.319728, -0.242894, -0.773885, -0.733213, 0.716193, 0.489327, -0.041426, -0.064122, 0.812000, 0.936097, 1.028832, -0.511751, 0.126844, 0.394735, -0.806154, -1.219645, 1.478149, -0.053347, -1.460086, -0.544855, 0.757115, 0.863290, -0.177337, -0.165244, 0.099941, -0.678255, 0.515679, -1.848812, 0.758705, -2.474852, -0.751650, -1.620979, -0.115591, 0.364014, -2.321833, -0.106576, 1.357903, -0.218782, 1.791901, 0.774550, -0.002739, -0.679866, 0.750094, 0.266076, 0.051728, 0.019607, 1.422822, 0.299407, -0.133841, 0.859156, -0.556310, -0.697764, -0.256397, -1.642769, 0.699025, -0.519203, 1.430415, -0.881879, 0.484044, 0.260979, -0.456964, 1.627451, 0.084798, -0.976754, -0.233288, -1.704769, -1.307735, 0.550205, 0.150518, 1.165306, -0.539539, -0.146413, 1.061992, -0.758994, -0.387400, -0.585005, 0.181850, 0.644809, 1.268177, 1.803598, -0.991733, 1.373247, -0.359128, 1.015682, -1.947214, 0.043234, -0.001575, 0.499111, 0.766251, 0.525607, -0.973818, 0.704956, 0.012079, -0.126757, -1.280846, -0.332524, 0.149346, -1.327154, -0.925653, -0.440199, -0.287511, -0.144319, 0.661769, -0.525487, -0.836026, 0.368588, 0.639568, 0.091057, 0.571375, -0.060304, 0.624023, 1.522227, -2.793682, 1.726238, 0.453593, 0.609008, 1.275096, 0.511909, -0.123992, 0.688722, 1.985337, -1.772211, -1.391257, -0.676280, -0.568636, 0.033752, -1.633726, 0.873640, -1.736304, 1.365991, 0.647976, 0.073811, -1.111422, -1.196441, -0.559148, -1.393399, 0.059698, 0.199888, 1.396459, -1.092758, 1.602782, -0.050815, 1.413520, 0.068559, -0.201873, -0.043918, 0.424163, 1.619497, 0.015525, 0.404375, -1.443340, -1.010655, 0.851043, 0.790057, -0.007258, -0.420197, 0.435869, 0.710429, 0.158712, -1.082040, -1.318776, 0.939401, -0.105110, 0.816477, 0.070874, -1.033731, -0.386181, -0.415002, 0.198960, 0.820321, -0.376434, 1.276832, 0.257271, 1.755904, -0.003458, -0.076208, -1.208352, -1.804682, 0.296609, 0.139085, -0.054245, -2.035319, 0.970683, -0.821253, -1.031936, -0.423794, 1.283106, -0.688766, 0.544404, -0.438124, -0.229161, 1.301568, -0.431928, 0.606393, -0.698200, 0.304180, 0.029147, 0.375599, -1.351105, 0.900150, 0.388963, 1.171193, 2.344635, 0.146096, -0.109335, 2.364451, 0.153040, -0.422118, 0.437701, -0.583745, 0.198210, 1.118482, -1.010813, 0.801799, -0.596312, -0.455718, -0.353311, -0.320657, -1.885875, 0.513365, 1.138190, -1.733481, -0.018697, -0.391343, 2.347297, 0.799943, 0.567006, -1.738736, 0.388259, -0.986021, 1.040145, -1.588279, 0.323288, -0.731162, 0.686939, 0.853229, -0.133099, 1.705233, 1.295698, 2.022754, 1.284511, -0.729735, 0.116994, -0.047425, -0.731509, 1.406151, -1.153381, 0.831360, 0.222853, -0.844304, 1.154945, 0.949023, -1.228280, -0.463307, -0.030382, 2.778160, -0.351958, -0.442141, 1.291833, -0.219402, 1.343892, -0.391316, 0.395417, -0.625134, 0.283384, 0.147260, -0.730574, 1.316147, 0.247630, -0.880871, -2.586325, -0.330452, 1.384132, 1.144669, -0.152467, -0.543281, 0.328366, 0.180502, -0.780289, -1.317479, -2.363408, -1.110674, 0.932573, -1.010301, 0.872992, 1.024715, 1.667442, -1.066682, 0.119430, -0.945889, -1.545491, -0.025987, 0.049981, -1.492102, 0.421168, -0.586291, -1.050972, 0.681141, -1.048661, -1.701894, -2.062698, -0.352608, 1.921850, -1.063272, -0.407018, -0.570105, -1.980815, -0.309899, 1.906693, 1.120801, -1.160982, 0.797542, -0.760950, -0.843239, 0.435394, 0.354210, 1.877023, -0.586401, 1.400299, 1.745194, -1.530511, 0.994616, 0.274656, 0.018746, 0.094474, -0.531335, -1.253052, -0.297966, 0.160572, -0.743083, 1.206007, -0.154767, -0.985291, 1.211778, 0.346420, -1.742407, -0.574992, 0.122642, -0.396825, -1.325173, 0.872692, -0.271627, -0.125470, 0.487571, 0.010896, 2.350114, -0.768109, 1.255751, 1.908855, 0.069097, -1.381469, 1.478807, -0.441334, -0.010916, -0.052461, -0.327332, -1.249091, -0.228497, 0.343493, 0.553302, -0.417947, 0.723268, -0.538031, -1.296249, -0.531707, -0.251323, -0.915976, -1.265807, -0.654067, 1.253991, -1.547182, -0.073863, -0.081396, 0.841072, -0.659733, -0.129227, 0.792806, 1.210451, 1.207397, 0.256145, -0.872489, 0.445668, 0.818113, 0.510363, -0.016008, -0.517783, -0.386557, -2.503783, -1.379900, -0.373364, 1.795172, -0.441774, -0.429443, 2.955632, -0.505453, -0.856440, -0.648766, -0.600016, 0.192899, 0.867814, -0.370865, 0.273610, -0.379328, 0.904703, 0.697574, 0.325614, 0.011099, 0.113809, 1.001025, 0.154618, 0.613886, -1.282622, -0.461135, 1.170904, 0.955175, 1.058246, -1.100014, -0.728870, -0.071626, -1.304059, -0.133545, 0.168848, -0.040810, -0.992738, 0.385104, 0.033290, 0.611137, -1.015726, 0.018826, 0.456307, 0.125846, 1.018402, -1.322706, 0.284526, -1.300949, -0.366066, -0.226848, -0.417287, 2.126517, -0.033296, 0.886329, -1.372018, -1.628435, 0.905553, 1.162221, 1.178142, 1.164123, 0.018303, -1.063177, -1.044765, 0.932888, -0.542540, -1.341149, -0.841944, 0.181666, -0.760307, 0.365638, 1.136443, 0.586827, -0.549936, -1.024233, 0.686019, 1.172436, -1.195500, 1.648444, -0.860789, 1.984140, -0.562530, 1.068550, 0.820052, 0.004925, -0.905243, -0.585923, 0.812571, -1.194839, 1.588908, 0.154142, -0.667513, -0.976715, -0.900715, -2.137851, -0.029275, 0.462374, 1.365431, -0.609242, 0.437064, 0.294196, -0.427206, -0.547533, 1.178134, 0.981524, -1.604185, 0.410802, 0.800596, 0.768629, -0.135316, -0.635364, 0.466460, 0.855248, -0.306327, -1.619158, -1.690005, -0.069627, 1.103687, -0.189757, 1.203529, -2.072472, -0.845851, -1.808120, -1.023832, 2.480781, 0.838583, -1.197654, -0.293655, 1.387628, -0.457815, 1.026479, 0.806395, -0.675611, 0.699221, 0.466378, 1.048193, -0.663246, -0.591728, 2.266394, -0.225591, 0.371992, 1.119077, 0.708802, 0.103001, -0.728260, -2.073881, 0.095259, 0.273308, 0.372303, 1.119573, 1.714306, -1.045988, 1.329805, 1.257593, 0.445072, 0.356109, 0.506070, 0.699784, 0.804387, -0.189716, 0.411811, 0.169152, -0.946946, -0.307675, 0.304744, 1.064546, -2.413297, 1.231530, -0.968764, 0.137263, -1.599090, 0.699505, 0.132318, -0.857124, 1.988155, 0.288182, 1.988706, -0.513385, -0.336860, 0.521630, -1.514936, -0.784927, 0.569918, 0.199542, -1.338082, 0.021224, 0.935326, -0.613849, 1.326967, -1.979565, -2.126448, -1.154053, -0.660659, 0.794577, 0.550259, -0.106965, 0.614137, 0.729337, -1.040217, -0.038715, -0.587294, -0.553673, -0.185759, 1.294328, -0.854042, -0.634073, -0.554527, -0.449931, 1.073679, -0.882607, -1.214780, 0.338811, 0.344038, 0.636910, -0.157353, -1.846560, -0.260070, 0.114208, 1.377726, -1.232429, 1.353148, 1.247317, -1.171763, 0.054241, 0.816722, 0.747489, -1.178158, 0.973666, -0.065321, 0.842525, 2.547061, -0.601756, 0.995048, 1.498048, 0.021633, -0.876766, -0.537411, 1.289243, -0.360377, -0.610149, 0.565972, 1.627097, 0.554024, -1.445850, 0.863185, 1.275448, -0.031643, -0.219922, 0.298120, 0.455954, -0.224557, -0.383242, -0.086660, -0.356925, -0.365605, -1.893211, 2.386007, -0.990333, -0.617024, 2.851954, 0.865904, -0.261912, 0.119204, -1.194053, -0.013219, -0.939413, -0.036556, 1.424709, -1.436188, -0.519601, -2.468373, 0.357839, -1.604210, -1.910444, 1.040246, -0.493924, -0.792191, -1.733001, -0.802755, -1.451472, 0.665547, -0.271514, -0.562422, -2.437899, -0.257995, 0.758206, -0.317461, -2.512169, -0.236062, 0.766459, -0.405509, 1.140516, -0.358089, -1.154601, 1.077104, 0.044310, -0.386322, -1.075785, 1.593582, -1.342062, -1.979064, 1.048067, 0.285462, -0.158958, -1.277652, 1.032558, -0.597342, 0.834443, 0.660360, -0.224562, 0.346085, -0.729058, -0.646485, 0.252244, 0.198240, 0.561815, -1.066799, -1.088456, 1.454345, 0.844808, 0.948891, -1.046167, -1.988542, 0.789948, -1.339330, 0.003825, -1.983165, -0.435328, -1.548316, 0.598547, -0.575229, 0.439156, -0.470693, 0.681816, -0.781323, -0.322944, 0.550436, -0.858773, 2.913545, -1.041819, 0.627729, 1.451136, 0.708537, -0.644942, 0.527231, -1.097292, -0.143870, 1.190734, -1.592114}, - { 1.121196, 0.913049, 0.224727, 0.295493, 0.521386, 0.013404, -1.444977, 0.159320, -0.538241, -1.485190, -0.168179, -0.148022, 0.244442, -1.098847, 0.927612, -0.459868, 0.558132, 0.112635, -1.883764, 1.447916, -0.790459, 0.438495, -0.197598, -1.250908, -0.909022, 0.565177, 0.818447, -0.727536, 2.383914, 1.743934, 1.012787, -0.830486, 0.594124, -0.914230, 0.546148, 0.739813, -0.101400, -0.128409, 0.030703, 0.949701, -0.918097, -0.533300, 0.909383, -1.407817, 1.170536, 0.997454, -2.253640, -1.772435, 0.283779, -1.077617, -0.708884, -0.995295, -2.091091, -1.598175, -0.180059, 0.717547, -1.494035, 0.676262, 0.649709, -1.000375, 0.808527, 0.317382, 1.849452, 1.449615, -1.522745, -1.345543, 0.332440, 2.538022, -0.994736, -0.157677, 1.415439, 0.486502, 0.660436, 2.549561, 1.040580, 1.802884, -0.661976, 1.653549, 0.029328, -0.623641, 0.156057, 0.235251, -0.479518, 0.606433, -0.229856, 0.530086, -0.551689, -1.561033, -1.039527, 1.227786, 1.003659, 0.187098, 0.336289, 3.351291, 0.219968, 1.023472, -0.140257, -0.999061, -0.859904, 0.640717, -1.186790, -1.451021, 0.236924, -0.158936, 0.592518, -0.138264, 0.017822, 0.283043, 1.372033, -0.993840, 3.012255, 0.412876, 1.245675, -0.586758, -0.014220, 0.820505, -0.325020, -0.743616, 1.222894, -0.168395, -1.063042, -0.424458, -1.017871, -0.653105, -0.826468, 0.989025, -0.490105, -0.641299, -0.620540, -0.584256, 0.155319, 0.282093, 1.107112, -0.688719, -0.112396, 0.429191, 0.629959, -0.674649, 0.299664, 1.482204, 0.382797, -0.550012, -0.356439, -0.433218, -0.572327, 0.955976, -0.656451, -0.643470, -0.809981, 0.870911, 0.150161, -0.762582, 0.940265, 0.792850, -0.104737, -0.003069, -0.501074, -1.032639, -0.065221, 0.833108, 1.758100, 0.212069, -1.146743, -0.345180, 0.862865, 1.761196, -0.158426, 1.628370, -1.251088, -0.404281, 2.564279, -1.290958, 0.095266, 0.680042, -0.599946, 0.690529, -2.186131, -0.156809, -0.603077, 0.915099, 1.988212, 0.410072, 1.027901, 0.980898, -1.174951, -0.459079, 0.020213, -0.427800, 0.862487, 0.503956, -1.553622, 0.437637, -2.044690, -0.425065, -1.992793, 0.588892, 0.340164, -1.734353, -0.681639, -0.200937, 0.175243, 0.518253, -0.785994, -1.568015, 0.050532, 0.093602, 0.912494, 0.172007, 1.979593, -0.115701, 0.520212, 0.015835, 2.218622, -0.617200, -0.387751, -0.461965, 0.008631, -1.208684, 0.299489, 2.273443, -0.394587, -1.143619, -1.214116, -0.314194, 2.746845, -1.313488, -0.935482, 1.086948, -0.973555, -0.089520, -0.509494, -1.439529, 0.951941, 1.350341, 0.364112, -0.194887, 0.663536, 0.394081, 0.736745, 0.466376, -1.445491, -0.877419, 0.626182, 0.112890, -0.430062, 1.319254, 1.584152, 1.635985, 0.028395, 0.379133, -0.858582, -0.460376, -1.470923, 0.957338, 0.358216, 1.388771, 0.559597, 0.693970, -1.453407, -1.997506, 0.123726, 0.103422, 0.831810, -1.821431, -0.334391, 0.286385, 1.075966, 0.714123, 0.182323, 0.695506, 0.659939, 1.157310, 1.543703, 1.129990, 0.756094, 0.782107, -0.206242, -1.264899, 0.344629, 0.127976, -1.050204, 0.149391, -0.342867, -1.167233, -0.896938, 1.079780, 0.469922, -0.945153, 0.628462, 1.616045, -0.503894, -0.131417, -1.007243, 0.998697, -1.284925, 0.315036, 1.131767, -0.598475, -0.763755, 0.069760, 0.797599, 0.708562, -1.249242, 0.818001, 0.128692, 0.247091, -0.161016, 0.686158, 0.323925, -1.270214, -0.664460, 0.408240, 0.935232, 0.352592, 0.463682, 1.127235, -0.255857, 0.566028, 0.568350, -0.035707, -0.402232, 0.640763, -1.002903, -0.565941, -0.150687, -1.431764, 1.168222, -0.509102, -0.312772, -0.195573, 0.323634, -0.654690, 0.389272, 0.155857, -1.737193, 1.244348, -0.736734, -0.944448, -1.500382, -0.393093, -0.541649, 1.129322, 0.293764, -0.162128, -2.096403, 0.673840, 1.430272, 0.925517, 0.604122, 0.389791, 0.382815, 0.018361, 0.223297, 0.364330, -2.222618, -0.572755, -0.179977, 0.623336, -0.243666, -1.402885, -1.614455, -0.254631, -1.538222, 0.708916, 1.932440, -0.730311, 1.712572, 1.178687, -0.018815, -1.741824, -1.379737, -1.002322, 0.611046, -0.895245, -0.862830, 0.007659, -1.065627, -0.128319, -0.061685, -0.626460, 0.664611, -1.477729, -1.893656, 0.902734, -0.953751, 1.232308, 0.275728, 1.545748, 1.189662, 0.226549, -0.770528, -0.281315, 1.421401, -1.417377, 0.337632, 0.011348, -0.614507, 1.882470, -0.546018, 0.398534, 1.540267, 1.324163, 0.059688, -1.873617, -0.155979, 0.521821, -0.608665, 0.236033, 0.087128, 0.576215, 0.595842, 1.078415, 0.734910, 0.507454, -0.214250, -1.077074, 0.153826, -1.014509, 0.692207, 1.311470, 0.697180, -0.249959, 0.028305, 0.094977, 0.131384, 0.708443, -0.992103, 1.153657, -0.529387, -0.204991, -0.135109, 1.270139, 1.937257, 0.402325, 0.561168, 0.365565, -0.110630, -1.036467, 0.589745, 0.323261, -1.579593, -0.115423, -0.175995, 0.427877, 0.457281, -0.053168, 1.933620, -0.318937, 2.805857, -0.503121, -1.276002, -0.608733, -0.038350, -0.532141, 0.288323, -1.279881, 0.454279, 0.885709, 0.384374, -0.707655, -0.115121, 0.250070, 0.466229, -2.334666, 0.416238, 0.410952, 0.817884, 0.311380, 0.021374, 0.594448, 0.362567, -0.593646, -0.647269, -1.014824, -0.853950, -1.033395, -0.578113, -1.763574, 1.064649, -1.042141, 0.721200, 0.820323, 0.504960, 1.753738, 1.471586, 0.146380, -1.068101, -1.173753, -1.038075, -0.010970, -0.544359, -0.290128, 0.870345, -1.061759, 0.377274, 0.558368, 0.006421, -0.294461, 1.165415, -0.118640, 0.500286, -0.227881, 0.235906, -0.260223, 0.879910, -0.376681, 0.125253, -0.960209, 0.507490, -0.589756, 0.961868, -0.696753, -0.409597, 0.130121, -0.112333, -0.366514, 0.255455, 0.615590, -0.630655, -1.317281, 1.046315, -0.317096, 1.438108, -0.625735, -2.762111, 1.120267, -0.811210, -0.570747, -0.487522, -1.156121, 1.547127, -0.006320, -1.003309, -1.464725, 1.315346, -0.241042, -0.189228, 0.509418, -0.417807, -0.274713, 1.553774, -0.223212, -0.460495, -1.340979, 1.415028, -0.776364, -0.171084, 1.042866, 0.356066, -1.366609, -0.169600, -0.417075, 1.463557, 0.465179, -0.250811, 1.173648, 0.550085, -0.641996, -0.360981, 0.723621, -0.026008, -0.795437, 0.990667, -0.364679, -1.277009, 1.364988, -1.587727, 1.266973, -0.255348, 0.152481, -0.959966, 0.027337, -0.051159, 0.871901, 1.549524, 0.153019, 2.086485, -1.313331, -0.365556, 1.254617, -0.000788, -1.098006, 0.118956, -0.542988, -1.173139, 2.228840, 0.533761, -1.155824, 0.291308, -0.248067, 1.389960, -0.651584, -0.714495, 0.006152, -1.216552, 0.929467, -0.218075, 0.477205, 0.115345, 1.178099, 0.717031, -0.063874, -0.578262, -0.884950, 0.166921, 1.020278, -0.659600, -0.720926, -0.031397, -0.561351, 1.540916, -0.985656, -1.143263, -1.552798, 0.679999, 0.892846, -0.431267, -0.207879, -0.306127, -0.763220, 1.235325, 0.382557, -2.203262, -2.477513, 0.835286, 1.464192, -0.301626, -0.043183, -1.526922, 0.212803, -0.674223, -1.200185, 1.150307, -0.250118, 0.428274, -1.722597, 0.216660, 0.944810, -2.706496, 1.567682, -0.263921, 0.941895, -0.856352, 0.534401, -1.927845, -1.365751, 1.465001, -0.898772, -0.333476, -2.192845, 0.673378, -0.428384, -0.356294, -0.232795, 0.580580, -0.021559, -1.838800, 1.250482, -0.393340, -1.522227, -0.703831, 1.136576, 0.588878, -1.167015, -2.628160, -1.430623, 1.751101, -0.274433, 1.493512, -1.183533, 1.045827, 0.464424, -1.009340, 0.064005, 0.859701, 2.187041, 0.357460, -1.603826, -1.619874, 0.071732, 1.234178, -1.068889, 1.671384, 0.232646, -0.462272, 1.158782, -0.009762, -1.572829, -0.027571, 1.139675, -0.552253, -0.777062, 0.242732, -0.062879, 0.651997, -1.719481, 1.141301, -1.648873, 2.165616, -1.075853, 0.266777, 0.285473, 0.486501, 0.459955, -0.643081, -1.165501, 0.578168, -1.086284, -1.348497, 0.431840, -0.103234, -0.164866, 0.219275, -0.324615, -1.534822, 1.432377, -0.022663, -0.985556, -0.272494, 0.217223, 0.451287, -0.674441, 0.459917, 0.813772, -0.925176, -0.738707, 0.057353, 0.151007, 1.341390, -0.541923, -0.045459, 0.552862, 0.774107, 1.100468, 0.537163, 0.171553, 0.703336, -2.126280, 0.838574, -0.841920, -0.625176, 1.784743, -2.616980, -0.832500, -1.508647, 0.675482, 0.829694, -0.072344, -0.743607, -0.065532, 0.587392, -0.478479, -1.095798, 2.689657, -0.148836, 1.262029, -0.568357, -1.287765, 0.629114, 0.746980, -0.025607, -0.313764, -1.055223, 0.328419, 0.864856, 1.254268, 0.689438, -0.091569, 0.891786, -0.424388, -1.088019, 0.636457, 1.027289, 0.489799, -0.181714, -0.278640, -0.768916, -0.199273, 0.142676, 0.706873, -1.396263, 1.488777, 0.266760, -2.435653, -0.369603, -1.484147, 1.643054, 1.062454, 0.117567, 2.345424, -0.166064, -0.527967, 0.236796, 0.778643, -0.681712, -0.702613, -0.148619, -2.182574, -0.087683, -3.125081, -0.452947, -2.737507, 0.721329, -0.237513, 1.894558, -0.454753, -1.437120, -0.027743, 0.845634, 1.426627, -1.124206, -0.698032, -0.580334, -0.413842, 0.015509, 0.833079, 0.014015, -0.525016, 0.186093, 0.007320, -1.956010, 0.724036, 0.709617, -1.766207, 0.057603, -1.738762, 0.031882, 0.793290, 0.347223, 0.169624, -0.017426, -1.647903, 1.867884, -0.390846, -0.571089, -0.183970, -1.394723, -1.360242, -1.316965, -0.804665, 0.135807, -0.813605, 0.985454, -0.534191, 1.579096, -1.093068, 0.415426, 0.341138, 2.885369, 1.025118, 1.125286, 1.630957, 0.104799, 0.083962, -1.529740, 0.720408, 1.222590, -0.182030, 1.592610, 0.574730, -1.588404, 1.019717, -0.581530, -0.243570, 0.112371, -0.190873, 0.346026, -1.322094, -0.442979, -0.679692, -0.367964, 1.120293, -1.440130, 0.416453, 0.098071, -0.671729, 0.873683, 0.773861, 0.459882, 3.254330, -0.136546, 0.330528, -0.324275, -0.560139, -1.012834, -0.017002, 0.711932, 0.474547, 1.243437, -0.434295, -0.149413, 0.927523, -0.931849, -0.427743, 0.449530, 0.281893, -0.231803, 0.983728, -0.618791, 1.330002, 0.531814, -1.305593, 0.485143, -0.096633, -0.216396, -0.327995, -0.067355, 0.364753, -1.815405, -0.067767, 0.348109, -1.173978, -0.944664, 1.124628, 1.485579, 0.501180, 1.690340, -0.062907, -1.477889, 1.277349, 0.812615, 0.102166, -0.834579, -0.112053, 0.957952, -0.544490, -1.690204, 1.434574, 0.065148, 0.239336, 1.002741, 0.051643, 0.283180, 0.210426, -0.320920, -1.146500, -0.368898, -1.581585, -2.168375, -1.226460, -0.988694, 1.147270, -0.384241, 1.554776, -0.625619, 0.234487, -0.799033, 0.142860, 0.605788, 1.203784, -0.542459, 0.853763, -0.434085, -0.582761, 0.627395, -0.237141, -0.211840, -0.319337, -1.659089, -0.575226, -0.924660, -1.193922, -1.265261, -2.004772, -0.297467, 1.494338, -0.557726, -0.013057, 0.641641, -0.366018, -0.208405, 1.699302, -2.425183, -0.657281, -1.137447, 0.225555, -0.924192, 0.770656, 1.989124, 2.022899, -0.755642, 0.871839, 0.941677, 0.095472, 1.740476, 0.808622, -0.331252, 0.190235, -0.773856, -0.727357, -0.330519, 2.319225, -0.496547, 1.347834, 0.222025, 0.672701, -0.586946, -0.113868, 0.794123, -0.100264, -0.733795, -0.505692, -0.430446, 0.424789, -0.462122, 0.988135, 0.593604, 1.969401, -0.448551, 0.203132, -1.155378, -1.473591, -0.955992, -0.534818, -1.308230, -0.331111, -1.875286, 0.213646, 1.251128, -0.238851, -0.592606, 0.224330, -0.508295, -0.705950, -0.920873, 0.832588, -1.870333, 0.128536, -0.525655, -1.838481, 0.537175, 1.144705, 0.958069, 0.227811, -1.503627, 0.216114, -0.165320, 1.426539, -0.275070, -0.148870, 0.728770, 1.084694, -1.115191, -1.007776, 1.419485, 2.484231, -2.552051, -0.581333, -0.476718, -0.735419, -0.378598, -1.437784, 0.001498, -0.015774, 0.067744, 0.522280, -0.943855, -0.270356, -0.634315, -0.644252, -0.944481, 0.957509, -0.173028, 0.080804, 0.327430, -0.190548, 0.623995, -2.375506, 0.446369, 0.599216, 1.092471, -0.357549, -0.995762, -0.008744, 0.644243, -0.296220, 0.066535, -0.629578, -0.270029, 1.668464, 0.370487, -0.600051, -0.387333, -2.213958, 0.585949, 1.118457, -0.341179, 0.331691, -1.987882, 1.183606, 0.625173, -0.354180, 1.063886, -0.394724, -0.146816, -0.647208, -0.921980, -1.202744, 1.706660, 0.514368, 1.196061, -0.710655, -0.093976, 1.085945, -0.001826, -0.737892, -0.724666, 0.351458, 1.401097, -0.821723, -1.673391, -0.090268, 0.977719, 0.072612, 0.197050, 0.783137, -0.821823, -1.405758, -1.092715, 0.181622, 0.240111, -0.778875, 1.103112, -0.171403, 0.965584, -0.194267, -0.832977, 0.797554, -0.186782, -1.302590, 1.428996, -0.156897, 1.887517, -1.068628, 0.142003, -0.377388, -0.848400, 0.736850, -0.172556, -0.020610, -0.499073, -1.266469, 0.476973, -0.807829, -0.077064, -0.288479, -1.075996, -0.840650, -1.149184, 0.645097, 0.885382, 2.280417, -0.922061, 1.538205, 0.939168, 1.020579, -0.162697, 0.395177, 1.973808, 1.241222, 0.777020, 1.071541, -2.087879, -0.102508, -0.620444, -0.937411, 1.200385, -0.534801, -0.127111, -1.342898, 0.180041, 0.803535, -1.111153, -1.952474, 0.756330, 1.090823, -0.039904, 0.890134, -0.479378, 0.583535, -1.809236, -1.051627, -0.516577, -1.105729, -0.143779, -0.206463, -1.377821, -1.766262, -0.716406, 2.225419, -0.193843, -0.791264, 1.082064, -0.970461, -2.031578, -1.704886, -0.403736, -0.199443, -0.057310, 1.697849, -0.228341, 1.296910, -0.122604, -0.842765, -1.598740, 0.411115, -1.765546, -0.223955, -0.538160, -0.092866, 0.360087, -0.344572, -0.604889, -0.436286, -0.479376, -1.074208, -0.544818, -0.205681, 0.321691, 0.605522, -0.405837, 1.585936, -1.380939, 0.114205, -1.241388, -2.392691, -0.613777, -0.577870, 0.102384, 1.017535, -0.272301, -1.872820, 0.285359, 1.045030, -1.215383, 0.403031, -0.033932, -0.177981, 0.355023, -1.753937, 0.879588, 0.242552, -1.513571, -0.695710, 1.550073, -1.467657, -0.512426, 0.736484, 0.744252, 0.342947, -0.830607, -0.441627, -0.358323, -3.871378, 0.507113, 0.653945, 1.018359, 0.323332, 1.478385, -0.526023, 1.571037, 0.523595, 0.127728, 1.916620, 1.313062, 0.104269, -1.557854, -1.321794, -0.104539, -0.784794, -1.241153, 0.034678, 0.144311, 0.466746, 0.491077, -0.217725, 1.016971, -0.547381, -0.319909, -0.965926, 1.756093, -0.842369, 0.100637, -0.395082, -1.182025, -0.435817, -0.381286, -0.607864, 0.370338, 0.479601, 1.305272, 1.003883, -1.356202, 2.013647, -0.921405, 0.320665, -2.040347, -0.387052, 0.145215, 0.068170, -2.016703, 0.413951, 0.796867, 0.968580, -0.084631, 1.169034, 0.409503, 0.808413, -1.164042, 1.589634, -0.257090, -1.002726, -0.908827, -0.546281, -0.281153, -0.784852, 0.042096, -1.331007, 1.825740, 0.415771, 0.207721, -0.493031, 0.438583, -0.365686, -0.057641, -1.332847, -1.023765, -0.596834, -0.441481, -0.454220, -1.816064, 1.215382, -0.423417, 0.391148, 0.647623, -0.046397, 0.411057, 1.191314, 0.096672, 0.457360, -1.797594, -0.050126, 1.915572, -0.622539, 2.071489, 0.528071, 1.086352, 0.393627, 1.396771, 1.680294, -0.854964, 0.220967, -0.529542, 1.099047, 0.446466, -0.468418, 0.880296, 0.535349, 0.770833, 1.068697, 1.772080, -0.193348, 1.597201, -0.304640, -0.810549, 0.998237, 0.180152, 1.509474, 0.124902, 0.323070, -0.335875, -2.889107, -0.880951, 0.587018, 0.330587, -0.259975, -0.395515, -0.652667, -0.511845, 0.593174, -0.038552, -0.449708, -0.918939, -1.599508, 0.431306, 0.264760, -1.311859, -0.709499, 0.715552, -1.396528, -0.925184, 1.163747, -1.176519, 1.415728, 0.890724, 0.346257, 1.222724, 0.854781, -2.068403, 1.246971, -0.552407, 0.715622, -1.149685, -0.619535, 0.068122, 0.169326, -0.570314, -0.419155, 1.684278, 1.843248, -1.593743, -0.024926, -0.408404, -1.909711, 0.649675, 0.120517, -1.104687, -1.918444, -0.210967, 0.003327, -1.244751, 0.668577, 0.828062, -0.354505, -2.118447, 0.604459, 1.321517, 1.294158, -2.776321, 0.127962, 1.041373, 0.159998, 1.101412, -1.309190, 0.342368, -1.025026, -0.664232, -0.890909, -0.215892, 1.790076, -0.174170, -0.288365, 0.136368, 1.120362, -0.125018, -0.949134, -0.162772, -0.021111, -1.709015, -1.476247, 1.561611, 1.748154, -1.321914, 0.044481, 0.725504, -1.275527, -0.259912, 0.410877, 0.215258, 0.339934, -1.181545, 0.439285, 1.376379, 0.261230, 0.675839, 1.388046, -0.803993, 1.465973, 0.967451, 0.189602, 0.401106, -0.522188, 2.158068, -0.892258, 0.164156, 0.812862, -0.495200, 2.831418, -0.738756, 0.697627, 0.728019, 0.252619, -0.458619, 0.946898, -0.250727, 0.508553, -2.280144, -0.640528, 0.859146, 0.941879, 2.335837, 0.150641, 0.800070, -0.630671, -0.802366, 1.043509, 1.023772, -1.111745, -0.878493, -1.027083, 0.403818, 0.104096, 1.506201, 0.772464, -0.458959, -0.075498, 0.187151, 0.935988, 0.404326, 0.793238, 0.241246, 0.065167, 1.197851, 0.871597, 0.140559, -0.028275, -0.147984, 1.930768, 0.188451, -0.258520, 1.724159, -1.088689, -0.431265, -0.457407, -1.678229, 1.480410, 0.967478, -0.319689, -0.115958, 0.013029, -0.977171, 0.901540, -0.898880, -0.657762, 0.542148, -0.471107, 0.134592, 0.627714, -0.124650, 0.318570, -1.487050, -0.110094, 0.075294, 1.244708, 0.346143, 0.419413, 0.111041, -0.524975, 0.472528, -1.106562, 0.301021, 0.644703, -1.910807, -0.058555, -0.656233, -1.272565, -0.544633, 0.185445, 2.272938, -0.554540, -0.810567, -0.161963, -0.959781, -2.409165, 0.229146, -0.635562, 1.388536, -0.327056, -0.927584, 0.357517, -1.630899, -1.698964, -0.032944, -0.912237, -0.800460, 0.393215, 0.491380, 2.598691, -0.512136, -1.022815, -0.253954, -0.050545, 0.583673, 0.347255, 1.358017, -0.281521, -0.029950, 0.589334, 1.032821, -2.113466, 1.129863, 0.853139, 1.352730, 0.495366, -0.250603, 0.084159, 1.366243, 0.398776, -1.622603, -1.255666, 0.797367, 1.767597, -0.973568, -1.554018, 0.240386, 2.094720, 1.256655, -0.580374, 0.243386, 0.350185, 0.186770, 1.524437, -1.602239, -0.537658, -1.856081, 1.056017, 0.202074, -0.441021, -0.992360, -1.330661, -0.326914, 1.075425, 0.829446, -0.851153, 1.071801, -0.036078, -1.020283, -1.052431, 0.413927, -0.854294, 0.815007, 0.235630, -0.755187, -0.014926, -0.150027, -0.326607, -1.008763, 0.473571, -0.611267, -0.500135, -0.392581, -0.037473, 0.959875, -0.175590, 0.297357, -0.223526, 0.210956, -0.901041, -0.222673, 0.820879, 1.307972, 1.193798, -1.364767, -0.071308, -2.201272, 1.543022, -0.378431, -0.325057, 0.311281, 0.501796, -0.546887, -0.600176, 0.808599, -0.545665, 0.332415, -0.252502, 0.357523, -0.619661, -1.973540, -0.903748, -0.759105, -0.678511, 1.020405, -0.579149, 1.277483, -1.251127, 0.596407, -2.665360, 0.566327, -0.409434, -0.206457, 0.544451, -0.603105, 0.322316, -1.617692, 1.284044, -0.187186, -0.154841, -0.571160, 2.100584, 1.034362, 0.322839, 0.459475, 1.444326, 0.446683, -0.772395, 0.570541, 0.799988, 0.422327, 0.685075, -0.017632, 0.290018, 0.607797, 1.071577, 1.348947, -1.111220, -0.587320, -0.236908, -0.827958, 0.113629, 0.396391, -1.065581, 1.094684, -1.842498, -0.052953, -0.271341, -0.962368, 0.267612, -0.557899, -0.394767, -2.320183, -1.192395, -0.049846, 0.936756, 0.785959, 1.123509, 0.991764, 1.186557, 0.386606, -0.303021, 0.324662, -0.996602, 0.489292, -1.780136, 1.020763, 0.887868, -0.415910, 1.380229, 0.740741, 1.112486, -0.545787, -0.861682, 0.612006, -0.428986, -1.192975, 0.930273, 0.888733, -0.019847, 1.590569, 0.234856, 0.388752, 1.055154, 0.979622, 1.329986, -0.605895, 0.307087, 0.526777, 0.932971, -0.798612, -0.326783, -0.542816, -0.934519, 0.483030, 1.370041, -1.397341, 0.471375, -1.152030, 0.303307, 0.204606, 0.182150, -0.207422, -2.227689, 1.397467, 0.191249, 0.560754, -0.588613, -0.477204, -1.066701, -0.915967, -1.317522, -0.898317, 0.244496, -0.459551, -0.830520, -0.515574, 0.357422, 0.711829, -0.652665, -0.326407, -0.080041, 0.019042, -0.351068, -0.834212, 0.720049, 0.625061, 0.265925, 0.447552, 0.053882, 0.462740, 1.807332, 0.473469, 0.685337, -1.137383, -1.751517, 0.568099, 0.673718, 1.417047, 0.456236, 0.072131, -0.053378, 0.193144, -1.255609, -0.466870, 0.975661, -0.084823, 1.106010, 1.277784, 0.039031, 0.952513, -0.398797, 0.706862, 0.946269, -0.765894, 0.679468, -0.291297, 0.060981, -0.976066, -0.996424, 0.286266, 0.375961, -0.863181, 1.607539, -0.976106, 0.208023, -0.946768, -1.445206, -0.117064, 0.347732, -0.374761, -0.005753, -0.795332, 0.368122, 2.128626, -0.755834, -0.366233, 2.082525, 2.119452, -0.025033, -0.323971, 0.023935, -0.274736, 1.380141, -0.327271, 2.001141, -0.746428, 0.390822, -0.846911, -0.746021, -1.313140, 2.098876, 0.533132, -0.416948, 0.457684, -1.240871, 0.144019, 1.280403, 0.270663, 0.560360, 1.519387, -0.966378, 0.616029, 0.291146, -0.990966, 0.860259, 0.177024, -0.412966, 1.339821, 0.144038, -0.280354, 1.848864, -0.449787, -0.418596, 0.415726, -0.417262, -0.641884, -0.457003, 1.738806, -0.255362, 1.041837, -0.461112, 0.869481, 0.523599, -0.614471, 0.319261, 2.547606, 0.776768, -0.384575, 0.448889, 0.998915, 1.090934, 0.351927, -0.932050, 0.068386, 1.473755, -0.105674, -1.303833, -0.601616, 0.771729, 0.443506, 0.576029, 0.034585, -0.164469, 0.646943, -1.095639, -2.160556, -0.997794, -0.441792, -0.421310, 0.294204, 0.416402, 1.822842, 0.729831, 1.104272, 1.114421, 0.135066, -1.836820, -0.647657, -0.318145, -0.986342, -0.680491, 0.960227, 1.050510, 0.394359, 0.372653, -1.029183, -0.698650, 0.935148, 0.872294, 0.404194, 1.323448, -0.704365, 0.126152, -0.300734, 0.375414, -1.089450, 0.504999, -1.135533, -1.050475, -2.429714, -0.041466, 1.565657, 1.631003, -0.127943, 0.045148, -0.675251, -0.350537, -0.003374, -0.003019, 0.725005, -0.925911, -0.534507, -0.665370, 1.739430, -0.016418, 1.200501, 0.261086, -2.512910, 1.110976, -0.912571, 1.024024, -1.158199, -0.185635, -0.161165, -0.241746, 0.998776, 2.398459, -1.300536, 1.573944, 0.396408, -0.643391, -1.421031, 1.676320, 1.247417, 0.435394, -1.159584, 0.458776, -1.376695, 0.081189, 0.827625, -0.257758, 0.572544, 0.247319, 1.585524, 0.557711, -0.982113, 0.355642, -0.072212, 2.208763, 0.547105, -1.445031, -1.308172, 0.634618, -0.132058, -1.413948, -0.781083, 0.182559, 0.199034, -0.809940, 0.008270, -2.018517, 0.220590, 0.729468, 1.008314, -0.015779, 0.276231, -0.818019, 0.910626, -1.002303, 0.108709, 0.799210, 0.278520, 0.579953, 0.410883, -1.446025, -0.377541, 2.220417, 0.912346, 0.376209, -0.648969, 0.427449, 0.667670, -0.839820, 1.720410, -0.091358, 0.636570, -0.327864, -0.004057, 0.129085, -0.741567, 0.239342, -0.898024, -1.428915, -0.258348, -0.474190, -0.138525, 0.591183, -2.566592, 1.252947, 1.226900, 0.379667, -0.490387, -0.340110, 0.891402, 0.339250, -0.537354, -0.059539, 1.083446, 0.287935, -0.226294, -0.227145, 0.740013, -1.662723, 0.215506, -0.094727, 0.422175, -0.219009, -1.579347, 0.044314, -1.530381, 1.127774, 0.913002, -0.371390, -0.312615, -0.867662, 0.331312, -1.062837, -0.137691, -0.801380, -0.930415, 1.222510, 1.729087, -0.328123, -0.943253, 0.487549, 0.836397, -0.903945, -0.278503, 0.867683, -1.602632, -2.514505, -0.318580, -0.530164, -1.543670, 2.227553, 0.721774, -1.436769, 0.072219, -1.892994, 0.099361, -2.172647, 0.065373, 0.981931, 0.740744, -0.231815, 1.376774, -0.295062, -0.602543, -1.515826, -0.078981, -0.502477, 0.032080, 0.726856, -1.734185, 1.108798, 0.773086, -0.477487, 0.099998, 0.173851, 1.127636, 0.890199, -0.181943, -1.216389, -1.604799, -0.558497, -0.232263, 0.324307, -1.855499, 0.038724, 2.097495, 2.074189, -0.000038, -0.781081, -0.269145, -0.649710, 1.400672, 0.974836, -0.627940, 0.482520, -0.115141, 2.671334, 0.582280, -0.033157, 2.010197, -0.014143, -1.245355, 1.448615, -0.788463, 1.039624, -0.746549, -1.998192, -1.038733, -0.718035, 0.506349, -0.665163, 0.447643, -0.419258, 0.202551, 0.299544, -0.982287, -0.735532, -0.263571, -0.272941, -0.894240, 1.746835, 1.557758, -0.423254, 0.802247, 0.852854, 1.019567, 1.020447, -0.043548, -0.200504, 1.084061, 1.114289, 1.729770, -1.267496, 1.336323, 0.449409, -0.158680, 0.228439, 0.928360, 1.304563, 1.777020, -1.223731, -0.746391, -0.561204, -0.328748, -0.940450, 0.585843, 0.076186, 0.914404, 1.714862, 0.827422, 0.010977, -1.976914, -0.841875, -0.547719, 0.346015, -0.317527, 0.282425, 0.325940, 0.197143, -0.874265, 1.766502, -0.068851, -0.279538, -0.445320, 1.018064, -1.249788, 0.906900, 0.222624, -0.743957, 0.170202, -0.471211, -0.652519, -0.525878, -1.117258, -0.174811, 0.536083, -0.564021, 0.097670, 0.683203, -0.504684, 0.518277, 0.084049, 0.469236, 0.401045, -0.558915, 0.360808, 0.587490, 0.464571, 0.219484, -0.588746, 0.563576, 0.088448, -0.464884, 0.053972, -0.444764, -0.465701, -1.257421, 0.371674, 1.463238, -1.102397, 0.614920, 0.545926, 0.766448, -0.033662, -0.474909, -0.402091, -1.182641, -0.715992, 1.218357, 1.090960, 0.248299, 0.850661, 1.543618, -0.422131, 1.259312, 0.478272, -0.280197, -0.455208, 0.799620, 1.217559, -0.063316, 0.204669, -0.339663, -1.743606, -0.514466, -0.691603, 0.685485, 1.251020, 0.298907, -0.343094, 0.721730, -0.033435, 0.031564, -1.388411, -0.413764, -0.440570, -0.210302, -1.108279, -1.140198, 0.843116, -0.316969, 0.639762, 0.546947, -0.915686, 0.049832, 0.535957, 0.217332, -0.181310, 0.330865, 0.016305, -0.906886, 0.106428, 0.126061, -0.631156, 1.886933, -0.721478, -1.385167, 0.220763, -0.683038, -1.242332, 0.878392, -1.836967, -0.723121, -1.158405, 1.410812, -0.280422, 1.664641, 0.508401, -2.083087, 2.110348, -0.483866, -1.294663, -1.021694, 1.658059, 1.551825, 0.721076, 0.518781, 0.201690, 0.427741, 1.488444, 1.802702, 1.077187, -1.208578, -0.710557, -0.084447, 0.060788, -0.686247, -0.208280, 0.560519, 0.137611, -0.092126, 0.148269, 0.117665, 1.653354, -1.197359, 0.269217, 0.851610, 0.779215, 0.158170, -0.432385, -0.761417, 1.630607, -0.760248, -1.420878, -0.028296, -0.213760, 0.070403, 1.322678, 1.730723, -0.613411, 0.471467, -0.454382, -2.905979, -0.854905, 0.415078, -0.340441, -0.287277, 1.582551, -0.749597, 1.181264, 0.097658, -0.871213, -0.887261, 0.038894, 0.715083, 1.293604, 0.992230, 0.417731, 0.220043, 0.580737, 0.761964, 0.207827, 0.716731, -0.586437, -1.440198, 0.643752, 0.251032, 0.641432, -1.851960, -0.088980, 0.902666, -0.730558, -0.601154, 0.693894, 0.155612, -1.090340, 0.057653, 0.813305, -1.193078, 0.564304, 1.042082, -1.233323, -0.012854, 0.119368, -0.529564, 0.966824, -0.354905, 0.524664, 0.589277, -0.440730, 0.186336, -0.308477, -0.589551, -0.534371, -0.802936, 0.319862, 0.729057, 1.037274, -1.271740, -2.216436, -1.079517, -1.158742, 0.027625, -1.004502, 0.656648, 3.252840, -2.368997, 1.352630, -0.453094, -0.074521, 0.536188, 1.298509, -1.091323, -0.191035, 0.782099, -1.392398, -2.005632, -1.707445, 0.267265, -0.296669, 0.147611, 0.499997, -0.445238, -0.736553, 1.209765, -0.614404, -1.053931, 1.720207, -0.188654, 2.502204, -2.670313, 1.438627, -0.029130, -0.219989, 0.060401, 0.153533, 0.275603, 0.703980, -1.933455, 1.202498, 1.056154, 1.090506, 0.636538, -1.883762, 0.095589, 0.993954, 1.524746, -1.017967, 1.727081, -1.491319, 0.373989, 1.356493, -0.900392, -0.437595, -0.944447, 0.617903, 1.028725, -1.434314, -0.554017, -1.451639, -0.320310, -1.004956, -0.885007, -0.056770, 1.593924, -0.636839, 1.499751, 1.665243, -0.805269, 0.084077, 1.433538, -2.883698, 0.674365, -0.038502, -0.505362, 0.780168, 1.039655, -1.154947, -0.024273, -0.349764, 0.007776, 0.395214, 1.373254, -1.385156, 1.818863, 1.387305, -0.432959, -0.102355, -0.125928, 0.523514, 0.210265, -0.979752, 0.379961, 0.141487, -0.283094, -1.893242, 0.045608, -1.535412, -1.098828, -0.632224, -0.222200, 1.855977, -2.307454, 1.100581, 1.173041, -1.341296, -0.908718, -1.277738, -1.664070, -1.166867, -0.162483, 1.814503, -0.494892, -0.485955, 0.734687, -1.708182, 0.678910, 2.294942, 0.095469, -0.451610, 0.037455, 0.556082, 1.835836, 0.094074, -1.521902, 1.607256, 0.231968, -0.164203, -0.676164, 0.655267, 0.094755, 0.736146, 0.085353, -0.501108, -0.277085, -0.562710, 0.075026, 1.496057, -0.342438, 0.083898, 0.559480, -0.804209, -1.183650, 0.660909, 1.136111, 0.562211, 1.137781, -0.344136, 0.470560, 0.107841, -1.927994, 0.341170, -0.513143, -0.383591, 0.769422, 0.952335, -0.041470, -0.698561, 1.257886, 1.786137, 0.267829, 1.603306, -0.427290, -0.922404, 0.741156, 0.056361, -1.667659, -1.493280, -0.975095, 0.336825, 1.407215, 1.007527, 2.168879, -0.549738, -0.324690, 0.643241, 0.130433, -2.029375, 0.273297, 0.356747, 2.454002, -1.501681, 1.689960, 0.807211, 0.680943, -0.223666, -0.095597, 0.415829, -0.010490, -0.446814, 0.080485, 0.222805, 0.498386, -0.339831, 0.820964, -1.249063, -0.000191, -1.332485, 0.325495, -1.556487, 0.728763, 0.338510, -0.541931, -0.349884, -0.735450, -0.045681, 1.253030, -1.315233, 0.236817, 0.953056, -1.000244, -0.435249, -0.325658, -0.362255, 1.309679, 1.161254, 0.374657, -0.641233, 0.717613, 0.493782, -0.517233, 1.211785, 0.708884, -0.503986, 0.658306, -0.092916, 0.812961, -1.927425, -1.315770, -1.485392, 1.108066, -0.748031, 0.723618, 1.056496, 0.698103, -0.632683, -0.132545, 0.109981, 1.825642, 2.133781, 0.078289, 0.407666, 0.525420, -0.319575, 0.307204, 0.365801, -2.361800, 0.010139, 2.296167, -1.247896, 2.137934, 0.192587, 0.953426, -0.071159, 1.821149, 0.654854, -0.911917, 0.043205, 3.556018, -0.048835, -1.999271, -0.093606, 1.777986, -0.823072, -1.121782, -0.048323, 0.758147, 1.690014, -0.108150, -0.653903, -0.122230, -0.005864, 0.183167, 0.406416, 0.555392, 0.061161, -0.848593, -1.072431, -0.167310, -1.807428, 1.321827, -0.670502, -0.092492, -0.296547, -0.262147, 1.455033, 0.097799, -0.151837, -0.282328, -0.263528, 0.329678, 0.430329, -2.021722, 0.118310, 2.376930, 1.257689, 0.388539, -0.305763, -0.147557, 1.695799, 0.322969, -0.068824, -1.008683, 1.111927, -0.803700, -1.568988, -0.772161, 0.795903, -0.525587, 0.683493, -0.543381, 0.750171, 0.373628, -0.580331, -0.403538, 1.649374, -0.675755, -0.902680, -0.545228, -0.536477, 2.341003, -0.955187, 0.896374, 0.560947, 1.041733, 0.888788, -0.385130, 0.354999, 1.001851, 0.000608, -0.979621, -0.252861, 1.359788, 1.030872, 0.347983, -0.234724, -0.792954, 0.673705, -1.826589, 1.214185, 0.661556, 0.227302, 1.009797, -0.500393, -1.073619, -0.503445, 0.769969, 0.547385, -0.558549, 0.883959, -0.591815, -1.774377, -0.676829, -0.783596, 0.040185, -1.252069, 0.653185, 1.057813, 1.179969, -1.660486, 0.071263, -1.590326, -0.520223, 0.243366, -0.303428, -0.368659, 0.247438, 0.143691, -0.147891, -1.499183, -0.318256, 0.474509, 0.549729, 0.199602, 0.762655, -0.081424, -0.152700, 0.006788, -0.569875, 0.910566, -1.093933, -1.138624, 0.819628, 0.168549, -0.964445, -0.076931, 1.486776, -0.027212, 1.540254, 1.576027, 0.347352, 0.331173, 0.957891, -0.956078, -0.241708, 0.050697, -1.897355, 0.199586, -0.641573, -0.305572, 0.820149, -0.670253, -0.544410, 2.720953, 0.814357, -0.136757, 0.908064, 0.468156, -0.553230, 1.314121, 0.207741, 1.729001, 0.024632, 0.502124, 0.151179, 0.190125, 0.637994, -0.192203, -0.687091, 0.589081, -0.942280, -0.176843, -1.591014, 0.543004, -1.810700, 0.072688, 0.047752, 0.943120, 0.711249, 0.525869, -0.952644, 3.026316, 0.294049, 0.316042, -0.047463, 0.805011, -0.728400, 0.672068, -1.567478, 0.371817, -1.256618, 1.649953, 1.757491, -1.375110, 0.686327, -0.518741, -0.065898, 0.578238, -0.190789, 1.101537, -0.320330, 1.113761, -0.815026, 0.950754, 0.616289, 1.483082, -0.139093, 0.318467, -1.013434, -1.125713, -0.295719, -0.460191, -0.149806, 0.218925, 0.179397, 0.775876, 1.266895, 0.437868, -1.243266, -2.401203, -1.301369, -0.305381, -1.250641, -0.056580, -0.605638, 0.965108, -0.131423, -0.430801, -1.395735, 1.193836, -0.928882, 0.059490, 1.525272, -0.486982, 0.108403, -0.446749, 1.058290, -1.550775, -1.017283, 0.612236, -0.396100, -0.205945, 1.412077, 1.940878, -1.612480, -0.737166, -0.016795, 0.163074, 0.952093, -1.243551, -1.402646, -0.132703, 1.507095, -1.040937, 1.638227, -0.872032, -0.447915, -1.615896, 0.460938, -0.051479, 0.761001, -1.064112, -0.773465, 0.171008, -1.585315, 0.317190, 0.426265, 0.096016, -0.134831, 0.611113, -0.513516, 1.012198, 2.164569, 0.785335, -0.021226, -0.857402, 0.615203, 0.333671, -0.090562, -0.630373, 0.642515, -0.193477, 0.278835, -2.117518, -0.094177, 0.027918, -1.555385, -0.895231, 0.484290, -1.633792, -0.472235, 0.496688, -0.365161, 0.021169, -0.637063, -0.614295, 1.978980, 1.064738, -1.215006, 1.212204, -0.183785, 1.227412, 1.615088, 0.460690, 1.195802, -0.004853, 0.610624, -0.526852, -0.233714, -1.040014, -1.414295, 1.504283, -1.042767, 0.192865, -0.121765, -1.895166, -0.858413, 1.110410, 0.383372, -0.040709, 0.974359, -0.343175, 2.623833, -0.310227, -0.460726, 0.317058, -0.050637, 0.758051, -1.638395, -0.885219, -1.583627, -1.729916, -1.320411, -0.639612, 1.237517, -1.124622, 0.883095, 0.499081, -0.352105, -1.807841, -0.148534, -0.437528, -1.918732, -0.406988, -0.044862, -1.680193, -0.973783, -0.137344, 0.108932, 0.856049, 1.657311, -0.088797, -0.149075, -1.872207, 0.618064, 0.356009, 1.728903, 1.092371, 1.096388, 1.003219, 0.322128, 0.115886, -0.314387, -0.718779, -0.280661, -0.580111, -1.252528, -0.672343, -0.283064, 1.301108, -1.110327, 0.293895, 1.048975, 1.417235, 1.071693, -0.283423, 0.762345, -0.413148, 1.258770, 0.958426, 0.248817, -2.867729, -0.429533, -1.440853, -0.004725, -2.747573, -0.000149, -1.635638, 1.391465, 0.193590, 0.912639, 0.113541, -1.330872, -1.109426, -0.362356, 1.498541, 0.625142, -1.032469, 0.485673, 1.560195, 1.074478, 0.360800, -0.306057, -0.718421, 0.230242, 0.575846, 0.283932, 0.249530, -0.549851}, - { 1.445878, -1.153404, -1.347448, 0.305017, -0.440671, 0.806448, -1.079683, 0.926655, 0.329365, -1.551180, 0.257936, -0.972706, -0.594141, -0.429774, 1.114250, -0.028421, -0.280229, 0.882109, -2.014124, -0.209030, -0.073471, 0.645325, -1.022775, 0.941586, 1.936961, -0.404889, -1.221021, -0.365694, 0.148017, -0.028792, 0.174588, -0.676786, -0.544345, 0.601942, 2.258660, -0.266347, 0.354713, -0.251010, 0.456281, 0.884348, -0.715440, -1.420931, 0.546884, -0.485314, 0.538638, 2.534471, -0.686796, -0.643060, -0.197028, -1.046019, 0.291568, 0.436794, -1.694804, 0.402359, -0.244680, -0.995186, -0.347196, 0.098246, -0.149989, 0.269873, 1.802804, -0.890788, -0.046884, 1.075207, -0.579103, -0.268169, 0.502712, 0.290053, -0.456541, 0.492425, -3.900337, 0.672933, 0.144460, 0.678548, 0.449949, 0.179061, -0.009189, 1.476751, 0.087654, 0.170521, 1.874514, 1.284834, -1.345358, -0.954525, -0.604920, 0.109046, -0.784499, -0.929101, -1.895046, 0.726950, 0.629010, -0.685238, -0.900277, -0.160485, -1.014806, -0.927278, 0.233648, -1.270706, -0.432125, 2.125514, 0.417094, -0.025090, 0.502936, 2.047265, -0.931638, 0.373710, 0.516571, -0.471993, -0.559333, 0.158313, -0.397506, -0.662793, -1.724745, 0.967956, -0.363435, 0.125383, -0.246155, -0.595702, -1.926290, 1.110588, 1.094532, -0.053557, -0.015955, 0.373040, 0.585275, 0.307375, -0.691688, -0.401179, -0.620476, 0.677718, -0.148984, 1.269450, 0.475302, -0.174330, -1.497995, 2.176656, -0.632907, 0.596434, 0.448456, 0.859072, -0.490460, -0.289769, 0.766390, 1.390458, 0.990721, 0.847977, -0.247489, 0.574135, -0.850138, 0.385047, -0.039051, -1.756013, 0.703411, -1.171415, -1.134622, -0.925045, -0.765665, -1.217760, 1.078613, 0.049954, -1.223075, -1.010076, 0.290746, 0.192686, -0.526872, 0.034041, 0.069892, -1.789311, 0.455032, -1.951374, 0.829116, 1.268676, 1.372467, 0.099725, 1.691981, 2.303865, 0.974602, 0.962250, 0.082994, -0.085947, 1.413079, 0.509017, -1.074048, 1.432899, 0.855333, 0.247454, -0.679830, -0.492880, 1.516360, 1.405052, 1.194610, -1.466114, -0.734689, -2.051556, 1.711480, 0.840688, 0.500472, -0.594809, 0.141823, 0.339711, 0.095554, 1.559376, 0.173766, 2.141702, -0.241774, -1.171111, -0.948250, -0.241611, 0.430771, -0.061400, -1.827723, 1.153868, -1.364451, 1.539632, -1.033055, -2.532132, -0.587324, 0.094311, -0.087582, -0.428135, -0.508224, -0.495107, -0.527555, -1.070018, 1.345576, -0.161459, 0.276211, 1.078374, 0.649261, -0.044851, -1.075560, 0.860353, 0.792199, 1.561125, -0.794710, -0.614556, -0.711378, 0.974510, 1.073188, -0.661040, 1.740524, -0.404540, 2.549045, -0.395893, 0.478689, -1.446073, -0.310178, 0.922011, -0.401212, -0.532888, 0.994831, 0.935235, 0.932221, 2.415759, 0.890311, -0.199644, 1.396311, 1.203319, -1.296300, -0.579395, -1.214036, -0.781735, -0.727096, 0.319765, 1.766963, 1.244860, -0.518977, 0.851801, 1.203117, 0.454831, -0.061583, 0.049594, 1.214203, -2.315344, -0.009081, 2.057796, -0.244133, -0.621256, -0.889616, 0.054333, -0.003834, 0.682400, -0.376140, 0.763399, 1.233212, 0.383580, 0.870310, 0.727702, -0.216463, 0.201789, 0.349845, -0.396659, 0.204239, 0.165616, -0.670854, -0.026341, -1.526084, 0.676545, 0.725743, -0.735024, 0.024316, 1.485975, -0.686044, 1.084372, 0.492585, -0.416047, -1.691110, -1.442311, -0.112236, -1.436000, -1.802774, -2.715462, -0.825917, 0.134522, 1.266901, -0.873940, 0.217819, -0.254873, 0.282692, -1.030686, 1.628011, 2.247546, -0.616220, 0.911976, -0.921060, 1.288879, -2.313259, -1.356885, -1.301401, -0.048696, 2.402251, 1.803344, -1.056626, 1.031969, 1.981173, -1.228319, -0.576411, 0.459674, 1.674162, 0.117805, -0.507165, 0.750993, -1.779005, -0.115435, -1.249933, -1.700320, -0.557525, -0.139691, -0.327086, 0.655643, 0.372350, -0.835172, -0.112556, 0.802429, -0.980341, 1.055814, 0.617398, -0.854967, -0.378789, -0.874647, 2.458466, -0.278636, 0.133361, -0.329878, -1.206929, 0.134123, -1.285118, 0.479978, -0.582012, 0.824857, 1.326357, 1.164052, 1.679818, 0.145928, -0.772258, -0.439204, 0.145476, -0.174995, -1.374434, 1.370729, -2.544913, -0.068993, 1.064449, 1.074943, -0.020449, -1.164251, 0.000147, -1.268503, 2.259234, 0.838961, -0.849405, 1.548443, -0.050061, 0.192104, 0.277567, -1.394846, 0.134627, 1.403075, 0.083257, -0.874855, -0.831723, 0.029991, 1.460216, -0.109155, 0.367692, 0.099343, 0.562794, -1.603554, 1.882065, 0.701068, -0.310228, -0.027310, 0.030068, -0.007992, -2.572325, 0.360223, -2.046148, 1.770009, -1.001512, 0.022836, -1.204051, -0.500673, -0.076921, 1.135418, 1.399207, 0.336369, 0.669069, -0.847984, 1.940379, 0.888616, 0.047719, -0.949595, 0.484441, -0.681751, -0.502073, -0.952895, -0.481816, -1.758726, -2.249141, 2.240258, -1.519791, 0.276030, 1.493310, -0.828283, -0.835919, 1.067592, -0.816069, -0.185530, 0.243930, 0.646326, 1.034546, 0.105733, 0.613944, -0.251969, 0.016134, 0.795639, -2.085402, -0.073273, 0.784215, 1.403300, 1.983825, -0.093670, -1.446773, -0.977233, -0.284726, -0.978045, 1.090934, 0.753919, 1.402181, -1.403830, -0.486421, 0.022386, 0.293832, 0.251224, -0.840964, 0.011598, 0.527242, -1.405420, 0.528879, -1.524043, 2.693897, 1.964418, -0.618410, -1.760569, 0.271973, -0.644478, -1.864942, -1.417632, -1.171880, 0.508640, -0.445576, -2.206789, 0.700132, 0.055449, 0.479266, -0.861374, -0.523969, -2.514698, 2.884320, -0.141660, 0.493465, 1.448575, -0.368884, 0.895272, -2.022848, -0.371147, -0.762157, 0.724423, 0.000632, -1.472586, -2.145993, 0.509658, -1.100799, 2.037550, -0.030838, -1.642309, 0.059672, -2.145102, 0.201849, 1.440369, -1.543698, -0.620525, 0.054981, 0.174542, -0.220284, -0.493669, -0.526783, -1.509185, 0.870887, 0.607571, 1.012222, 0.916924, 0.007647, 0.608187, 0.031303, 0.455663, 1.904885, 0.308364, -0.501683, -0.031251, -0.532867, 0.624922, 0.536999, -2.073922, -0.712389, -0.530082, -0.567442, -0.473482, -1.613380, 2.254854, -0.263207, 0.228206, -1.603097, -0.422174, -2.296063, -1.290501, -0.000306, -0.588576, 0.692976, -0.772463, -0.677064, -0.891043, -0.427711, 0.999369, -0.381043, -2.496277, 0.286278, 1.061493, -0.045618, 0.362297, 0.053577, 0.038727, -1.033030, -2.480068, -0.071916, -2.346870, -0.720956, -2.268023, -1.362230, 1.787987, -0.476512, -0.101211, 1.324137, 0.943349, 1.078447, 0.118854, 0.770366, -1.193833, -0.367265, -0.500106, 1.301874, -2.967685, 0.356651, -0.648178, -0.426463, 0.262725, 0.200186, -0.143672, 0.846501, -0.554227, -0.616980, 0.152405, 1.043791, -0.578798, -0.638802, 0.336362, 0.373879, 0.153266, 0.672794, 0.194320, -0.860738, 0.278241, 0.103870, -0.580067, -0.353376, -1.212309, -0.112465, -2.123861, 0.992953, -0.728173, 1.083234, 0.328505, 1.028873, 1.861616, 2.064939, 0.159350, 0.021609, 0.544600, 0.270359, 0.536928, -0.909901, 1.087295, 0.986036, -0.254323, 2.337223, -0.006943, -1.344993, 0.580163, -1.952369, 0.082064, -0.036298, -1.343212, 0.727863, -0.162286, 0.029464, 0.162842, -0.799874, -1.056747, 0.833814, 0.134844, -1.118677, -0.436813, -0.562499, 0.798897, -0.905940, -0.081855, 0.036804, 0.631758, -1.000018, -1.431025, -0.605098, 0.433321, -0.140503, 0.555798, 0.146847, 3.098494, 0.639041, 0.578047, 0.045875, 1.980888, 0.201611, 0.586022, -0.168470, 1.098512, -1.101562, 1.693121, -1.577849, 0.170135, -1.839869, -0.259598, -0.709178, -0.362120, -1.337304, 0.895300, -1.355301, 0.355837, 0.501127, 1.558426, -0.814382, -0.038242, -1.012112, -0.295919, 1.299866, 0.413587, -0.765181, 0.465328, 0.405994, -1.230131, -1.145746, 0.399011, -1.012683, 0.512436, -1.578689, -0.837886, 0.286517, -0.640052, 0.594537, -0.591718, -0.296320, -0.853815, -1.453710, 0.115383, -1.251630, 0.630109, -1.781728, -1.658568, 1.128720, 1.401028, 0.471056, 0.208022, 1.381117, 0.978134, 0.621731, -0.242621, -0.702126, 0.809973, -0.283203, 0.006568, 0.506866, -1.358537, 1.602270, -1.760713, -0.689920, 0.333085, -0.776697, 0.243554, 0.526293, 0.346399, 0.524242, -0.819067, 0.451115, -0.224127, 1.421279, -0.203831, -0.310645, -0.080758, -1.487143, 0.132954, -0.817798, -0.276728, -1.381409, 0.361193, 0.826664, -0.191501, 0.149485, 1.012286, 0.137638, -1.579508, 1.907856, -0.068117, 1.193749, 0.012082, -0.441415, -1.558757, 0.340720, -0.336053, 0.512452, -0.808854, 0.505327, -1.318607, -0.662507, 2.124665, 0.198654, -1.325215, -1.055187, -0.225919, 1.918304, 1.245448, -0.492155, 0.584636, -0.051435, -0.038909, -0.766640, 1.189574, 1.074386, 0.038923, -0.552708, -0.791404, -2.102924, 1.243834, -0.176737, 0.988904, 0.001887, -1.138628, 0.655166, 0.689219, -1.068118, 0.071497, 1.182791, -2.276159, -1.980099, -0.301682, -0.563683, -0.466798, -0.403073, 2.000631, -2.034698, 0.911706, 2.515705, 0.100625, -1.820012, -2.410285, -1.694563, -0.294195, -0.259823, 0.032802, 1.206347, -0.905119, -0.382288, 0.745441, 2.146027, 0.016916, 0.384411, 1.392841, 1.249994, 0.574305, 0.731421, -0.409960, -0.228842, -0.098290, -1.211139, 0.661980, 0.221090, -0.816563, 0.963277, -0.576507, 0.733060, 0.984764, -0.145955, 0.067886, 1.657861, 0.313329, -0.099410, 0.405850, 1.762721, -0.860729, 0.726259, 0.077359, 0.817281, -0.558199, 1.283626, 0.857264, -0.945140, -1.517548, 0.461868, 0.903003, 1.283873, -2.011617, 0.208627, -0.485004, 0.882732, -1.106171, 0.071196, -0.776512, -1.470160, 0.154992, 0.081455, 0.957467, 1.071938, -0.438079, -0.255139, -0.792766, 0.774025, -2.594587, -0.270122, -1.070901, 0.694631, -0.087158, 0.355952, -1.366365, 0.003772, -0.697868, 0.529343, -0.611981, 1.522156, 0.333333, 0.211235, -0.637178, -0.343758, -1.636135, 1.177861, -0.569098, 3.154523, -0.209397, -0.008943, -0.128288, 1.145759, -0.519034, 1.165727, -0.311096, -0.618593, 0.785813, 0.074809, 0.994766, -0.127246, -1.746814, 0.387183, -0.482415, -0.287753, 1.052193, -0.519901, 0.521261, -0.861219, -0.015601, 0.962613, 0.425137, -0.047285, 0.736226, 0.712643, 0.110858, 1.416148, 0.273101, -0.928043, 0.214218, -1.495943, 1.290998, -1.400726, 0.107801, -2.413357, -0.386938, -1.313831, -0.198308, -0.061144, -0.431770, 1.104473, 0.746422, 0.734854, -0.524572, -0.595458, -1.021297, -1.289311, -0.572096, 1.355332, 1.677921, 1.238052, -0.774562, -1.848666, -1.054565, -1.257056, -0.134498, -0.250960, -0.613751, 0.241470, 1.195145, -1.258458, -1.330850, -0.473559, 1.768993, 0.819546, 0.366686, -0.538243, 1.843841, -0.207378, 1.089240, 0.636419, -1.123379, 0.421832, -0.229213, -0.042125, -0.594566, 1.001839, -0.957464, 0.189837, 0.839253, -0.282606, -0.846882, -0.092460, 2.309315, 1.783314, -0.886147, 0.488740, -0.515526, 1.491636, 0.165564, -0.626713, 1.370350, 1.794849, -0.294135, -0.852971, 1.126994, 0.582751, -0.790822, 1.223058, -0.257741, -0.217691, 1.232362, 0.988957, 0.985936, -1.129247, 1.447109, 0.856996, 0.329489, -0.294781, -0.980087, -1.016482, 0.080147, 0.864893, 1.222993, -0.631762, 1.052825, 0.118711, -0.957856, 0.280851, -2.081139, 2.264651, 0.776026, -0.354918, -0.752622, -0.096698, 0.714008, -0.058546, -1.134247, 0.338414, 0.065089, 0.671823, -2.618449, 0.390237, -0.316486, 0.073727, 0.612050, 0.448733, 0.828760, -0.773294, 1.140253, 0.788548, 0.497853, -0.167452, 0.415024, 0.696575, 0.737419, -0.510957, -0.943749, -1.485806, 0.743654, 0.885451, -0.979126, -0.129692, 0.465834, 0.521984, 0.472002, 0.523411, 0.595531, 0.468864, 0.466730, -1.935643, 0.756004, 0.779738, -0.712963, -1.542519, -0.425311, -0.799680, -0.459723, -0.245527, 1.944350, -0.680717, -1.106237, -1.161151, -1.328652, 0.467008, -0.044305, 0.834786, -1.769436, -0.798979, -0.788291, -2.041142, -1.377897, 0.590437, -0.388760, -1.011400, -1.641078, 0.465024, -0.377515, 0.172375, 0.070100, 1.005353, 0.233367, -2.359110, 1.185444, -1.992456, -1.026218, 0.299536, -1.146825, -0.957047, 0.156981, 0.425066, 0.264555, -1.105111, -0.939757, 0.504264, -2.173117, -1.787363, -2.124336, 0.407641, -0.862385, 0.379518, -0.526299, 0.131501, 0.974673, -1.746555, -1.882231, 0.457771, 0.010667, 0.399494, 0.321440, 0.014335, 0.792109, 0.876979, -0.621218, -0.385652, -2.096714, -0.045627, -0.804331, -0.747119, 0.901866, 0.689527, 1.663365, 0.257031, -1.002461, 0.799718, -0.937882, -0.854503, -0.592234, -0.524662, -0.621843, -1.140951, 0.584310, 0.038813, -1.470078, -1.936687, 0.890226, -0.364588, 1.848425, 0.092649, 1.141333, 1.238706, -0.012324, 1.542213, 0.478569, -0.228915, 1.856716, -1.286935, -1.749136, -1.134471, 0.353998, -0.300030, -0.852554, 1.893020, -0.488954, 0.788738, -0.682781, -1.346383, 0.578874, -1.055630, -0.469718, 0.480464, 0.478809, 0.143301, -0.157060, 1.093253, 0.013790, 0.045398, 0.817879, 0.436478, -0.374400, 1.247243, 0.974508, -1.061473, -0.802337, -1.739467, 1.202816, -0.800699, -0.212090, -1.246045, 0.878399, 1.937476, 0.774467, -0.412735, -0.431189, -0.592552, 0.618597, 1.273284, -0.389298, -0.331136, -1.669941, -0.309636, -1.060411, 0.267804, 0.258484, 0.985102, 0.036699, 0.852751, -0.881758, 0.061668, 0.302037, 0.984412, 2.433500, 0.314994, -1.172470, 0.145765, 0.339028, 1.094783, -0.700224, 0.554395, 0.088303, 0.020124, -0.586101, -0.406107, 0.903605, -0.552346, -0.044920, -0.651689, 0.631133, -0.039250, 0.077330, -0.052979, -0.589840, 0.226316, 0.017117, -1.569285, -1.660040, 0.790741, -0.493214, -0.817252, -0.071556, 0.879265, 0.220500, -1.362072, -0.821721, -0.893879, -0.285960, 0.591661, -1.261318, -0.139320, 1.480864, -1.097870, 1.241279, -1.312366, -0.436979, -1.780004, -0.973736, 0.008130, -1.304813, -1.840999, -0.018527, -0.275999, 0.164639, 0.071105, -2.603786, -0.117169, 0.193069, 0.691771, -0.181560, 0.941892, -2.665065, 0.153665, 1.648044, -0.878485, 0.599662, 0.689234, 0.469526, -0.383136, -1.941005, 1.609894, -0.595429, 1.190960, -0.677375, 0.259134, -0.691219, -0.945556, -0.715011, 1.035063, 0.691194, -0.585446, -1.513598, -2.252725, 0.590215, 0.589299, 0.468561, -0.489192, -0.843571, 0.036755, 0.558377, -0.218065, 1.093366, 0.033951, 1.500338, -0.244685, 0.697016, 0.346960, -1.308292, -0.630726, -0.947245, -1.382738, 0.958116, -0.271659, -0.312971, 0.755967, -0.643033, 0.520284, -0.437097, -0.658830, -2.464483, 0.111090, 0.652069, 1.147780, 0.504869, -0.555438, 0.276184, -1.599944, 0.551443, -0.981722, 1.675783, 1.541959, 1.336423, 0.833846, -1.541762, -0.106859, 1.545038, 0.470696, -0.687676, -0.245142, -0.354097, -0.340305, -1.133738, -0.494704, -0.037961, -0.542957, 1.090288, 0.669981, -0.112974, -2.149533, -2.567313, 0.022211, 0.622177, 0.675456, 1.548440, 1.312422, 0.705999, -1.022604, -0.296220, 0.455238, 0.907594, 1.270214, -0.188816, -0.523784, -0.681960, 0.059391, -1.069098, 0.141260, 0.729023, -0.893024, -0.027340, -0.258746, 0.764789, 0.159774, 0.717958, 0.418429, 0.927309, -0.642906, 0.779509, -0.036791, 0.625419, 0.176836, 0.455563, 0.811083, 1.775023, 1.042372, -1.015771, -0.670545, 0.604258, 1.728841, -1.176441, 1.297163, 1.363795, 0.507072, -0.189291, -0.438652, 0.563053, 0.370747, -1.356802, -0.326555, -0.218144, -0.543234, -0.694333, 0.813888, -0.376174, -1.582473, 0.278176, -2.768347, -0.149618, -1.052262, -0.577840, -1.667192, -1.590756, -0.505258, 0.891414, -0.882795, -1.775072, -0.697125, -0.786689, 0.252967, -0.846728, 1.190171, 0.698226, 0.260440, 0.443175, 1.534225, 0.087254, 1.076434, 1.014424, 0.078347, -0.828276, -1.399128, -0.103146, -0.545514, -1.200009, 0.693565, -0.395498, -0.165109, -0.100170, 0.182079, -1.725678, 0.211010, 0.872491, 2.252470, -0.531972, 0.127976, 0.303588, 0.533679, 0.317770, -0.361794, 0.177811, -0.708930, 1.089841, 0.159592, 1.226858, 1.327751, 0.305839, -0.225380, -0.260482, -0.585931, 0.730637, -0.177406, -1.181018, -0.115982, -1.688593, -0.075485, 0.187623, -0.675044, -0.603963, 0.379843, -0.184067, -0.055203, 0.330050, -0.894833, 1.346753, 0.142222, -0.601389, -1.128970, 0.188972, -0.339969, -0.296915, 0.352941, 0.208294, 1.514102, -1.013716, -1.072190, -1.134873, 0.253436, 1.597881, 0.508698, 0.421960, 1.174715, -0.829048, -0.078092, 0.492492, 0.195454, 0.510990, 0.510931, -0.547970, -1.107379, 1.378254, -0.426946, -0.598017, -1.019473, -1.121591, -0.470034, -0.161299, 0.777704, 0.133550, -0.176712, -0.017245, -1.136618, 0.503033, -1.383096, 0.822830, 0.767124, -0.394212, -0.072871, -1.486160, -1.248963, -1.098783, 1.011385, -0.096264, 1.596422, 0.311931, -0.608054, -1.003826, -0.276000, 0.317606, -0.616738, -0.111589, -0.426557, -0.156491, 1.046178, 0.301068, -0.406941, 0.592703, 1.170197, -0.621346, 1.076189, -0.690729, -0.653794, 0.137487, -1.681101, 1.049646, 0.974250, -0.276612, 0.701129, 0.000073, 1.008310, -0.055469, -0.811403, 0.354254, 0.404483, 0.113488, 0.886757, -1.122117, 0.573557, 0.152809, 0.869570, 0.540475, -0.744713, -1.403445, -0.799318, -0.148949, -0.451342, -0.375073, -2.122394, 0.444708, -0.253525, 0.511109, 0.288856, 0.723743, 1.195659, 1.483389, 0.900642, 0.557568, 1.844038, 1.446887, -0.900760, 0.412387, 0.352154, 0.249417, -0.380304, 0.371409, 0.015859, -0.484620, 1.235436, -0.991896, -0.201952, -0.332216, 1.470934, -1.215860, 1.911471, -0.058955, -1.631309, 0.190916, 0.494214, -0.694264, -0.172629, -0.189199, 1.033014, -0.066433, -0.086447, -0.084709, -0.765858, 1.455836, -0.871300, 1.153582, -1.391816, -0.083953, -0.804606, 0.167428, 0.708695, -1.265433, 0.077239, -1.385458, -1.384990, -0.966568, -0.951444, 0.669548, -0.081712, -0.157855, 1.798506, 0.365181, 1.288837, 0.139012, -0.230281, -1.493319, 0.709174, -0.429123, -1.245065, -1.308375, 1.765934, -1.280438, 0.953191, -2.002581, -0.059504, 0.250909, -0.434838, -0.913996, 0.858250, -1.672356, -0.559490, -0.073074, -0.688652, -0.349716, 1.672270, 0.326728, -0.400196, -0.151915, 0.131303, 1.229596, -0.337570, -0.364297, 0.143851, -2.110772, -0.216460, -0.785227, -0.966416, 0.228919, -0.655878, 0.425781, 1.075376, -2.333562, 0.747387, -0.426350, 0.996513, 0.576166, 0.804368, -0.242826, -1.333834, 2.225008, -0.081637, -0.319407, -0.688550, -0.594026, -0.835645, 1.246157, -0.263571, 1.499822, 0.620200, -0.375359, 0.569909, 0.863126, 2.488399, -1.040870, 1.759261, 0.690760, -0.549890, -0.674254, -1.006409, -0.850728, -0.817637, -0.074383, -1.934837, -1.408224, 0.666523, 0.440452, -0.624849, -0.159652, 1.347591, -1.235264, 0.027476, -0.862414, -0.035395, 0.352772, 1.536579, -0.982456, 1.357662, -0.526373, -0.435963, 1.196760, -0.668849, -1.733436, 0.461897, -0.373559, -0.286465, 0.126122, 0.109977, 2.607158, -0.673400, 1.195237, -2.674417, 0.801229, -2.334320, -0.141863, -0.155911, 0.640583, -0.148753, -0.176968, 0.283673, -0.142229, -0.422912, -0.729475, 0.058195, 1.251332, -1.147403, 1.003693, 0.203539, 1.007680, -1.054713, -1.258304, 0.022741, 0.279031, -0.646290, 0.007242, 0.122230, 0.005335, -0.070718, 1.139077, -0.862658, 2.654759, -1.467608, 0.397219, -0.177086, 0.054445, -0.163696, 0.407321, -0.337311, -1.572161, -0.811477, -2.188338, 0.975030, 0.151107, -0.979411, 0.761313, 0.324981, 1.630455, -0.353466, -1.870614, 0.036722, 0.459064, -1.767113, -1.088662, -0.089991, -0.391338, 0.088666, -0.062723, 0.156676, -0.541697, 0.479613, 0.159846, -1.371737, -0.240278, 0.512148, 0.418020, 0.276277, 0.233816, -0.865647, 0.816679, 0.945361, 0.678430, 1.385612, 0.824466, -0.317020, -0.348200, -0.131583, -1.065984, 0.475807, -0.278988, 0.980412, -0.835238, 0.216817, -0.089599, 0.572101, -1.199417, -1.546205, -0.323231, 0.893758, 1.007979, -1.058063, 0.236106, -0.286649, -0.602894, -0.398447, -0.276907, 0.016497, 0.004466, -0.051873, 0.762708, 0.630312, 0.423975, 1.094360, 0.098453, 0.792257, -1.667375, -1.322439, 0.279260, -1.750137, 0.344612, 0.147661, -2.004397, -1.551376, -0.496435, -0.364173, 0.658206, -1.558175, -0.562632, -0.776092, -0.438708, 2.223034, 0.980798, -1.416691, -0.450680, 2.428056, -0.212674, -1.345158, 0.952446, -1.037897, 0.351591, 1.134075, 0.495699, 1.001154, -0.427729, 0.214008, 0.906830, -0.492925, -0.193309, -0.622169, 0.631036, 0.710502, 0.570168, 2.369327, 0.085146, -1.043402, -0.925901, -0.722714, 0.447564, -1.491313, 0.447358, 1.153646, 1.723652, -0.173053, 0.916250, -0.919389, 0.679481, -0.967282, 2.193140, 0.161831, -1.846651, 0.816943, -1.488651, -0.989658, 0.091616, 0.135305, -0.884996, 1.895018, -0.161328, 1.295919, -0.411948, -2.292483, 0.455828, 1.722775, -0.663751, 0.799423, 0.266761, -0.676759, -1.819405, 0.419935, 0.695112, -0.167231, 1.398538, -0.281679, -1.915891, 0.571918, -1.026022, -1.374756, -0.320512, 0.473417, -0.986940, 0.670181, -0.685333, -0.663446, -0.440841, -1.057449, -0.813059, -2.160205, -0.116324, -2.169278, 0.278242, -0.424217, 1.010652, -0.695913, -1.689736, -0.356101, -0.757239, 0.261743, -0.348220, 0.539287, 0.777627, -0.854419, 0.141046, -0.018495, -1.655357, -1.322328, -1.463209, 0.597183, -0.169191, 1.186155, -0.016749, 0.600300, -1.267830, -0.162760, -0.391157, -0.031393, 1.407815, 0.358288, 1.544473, 0.791551, -1.200400, -0.319555, 1.110689, -1.670973, -0.604412, -0.042999, 0.805568, 1.020209, 1.722845, -1.903789, -0.866146, -2.141925, 1.002298, -2.234771, -1.095119, -0.583331, 0.455447, -0.797967, -0.215524, -0.079590, 0.269621, 0.876168, 0.474345, -2.382275, -0.471721, 0.020067, 0.745750, -1.012550, 0.948646, -0.306364, -0.743376, -1.179639, -0.490955, -1.244462, 0.964408, 0.202930, 0.098909, -0.488945, -0.224141, 0.230170, 1.147823, 0.319292, 0.522719, 0.881532, 1.080810, -0.245851, 0.176343, 0.557230, 0.543837, -0.725560, 0.896106, 0.819442, 1.614644, 0.618036, -1.136842, 0.297906, -0.110686, -0.815925, -1.186612, -1.213115, 1.964087, 0.503936, 0.822970, -0.473160, 1.228587, -0.011199, -0.545849, 1.035540, -1.554967, -0.878720, 0.914881, -0.318073, -0.357826, 1.392044, -0.990761, -0.133545, 1.749936, 0.062444, 0.087049, -0.651763, 1.225484, 0.864372, -0.991448, 1.139257, -0.105412, 1.124114, 1.307879, 0.585158, 1.349531, 0.577072, -1.169216, -0.159612, -0.306705, -0.858280, -2.010714, -0.534007, -2.173468, -0.204237, 1.166223, 0.361621, 0.539108, -0.805112, -1.015777, 2.059971, 1.271596, 1.425568, 1.017355, -0.508501, 0.100404, 0.874458, 1.852387, 0.796929, 0.722705, 0.780477, -0.137631, -0.460351, 0.347021, 0.603658, 1.411721, -1.272589, 0.886577, 0.072505, -1.672949, -1.960906, -2.848154, -0.895101, -2.119036, -1.174544, -0.538957, -1.410134, -0.221534, 0.900302, 1.395551, -1.059181, 1.542288, 0.697789, 0.607866, 0.319514, 1.689381, -0.645638, -0.719593, 0.511458, 0.486433, -1.744721, -0.064272, -0.711403, 1.230375, -1.513271, 2.075876, 0.370495, -0.532843, -0.171948, 0.008393, 2.184876, -0.160692, -0.707834, -1.142801, 0.312959, -0.331968, -0.264170, -1.448145, 1.421661, 0.266381, -0.017792, 1.355882, 1.682565, 1.868037, -3.076073, -0.374865, -0.842945, 0.850653, -1.506346, -0.738771, -1.540656, 0.552432, 0.562392, 0.593412, -0.187969, 0.166893, 0.714517, 0.816390, -1.782228, 1.371503, -1.655736, -0.550219, 1.840159, 0.245365, -0.090806, 0.511241, -2.320465, 1.313888, -0.607975, 1.647739, -2.783837, -0.872146, 0.557682, -1.124446, 1.077002, -0.633590, 0.906387, 0.162231, 0.127604, -1.825788, 0.507563, 0.149004, 0.481442, -0.566950, 0.285794, -1.951490, 1.240610, 0.842461, -0.280273, -0.680668, 0.279997, 1.256521, 0.900380, 1.330421, 0.167963, -0.155769, 2.512261, 1.453015, -0.372736, 0.649509, 0.652601, 0.381735, 1.280074, 0.478309, -1.076764, 0.610907, 0.999313, -1.097063, -2.173566, -0.722954, 0.174051, -0.218577, -0.142822, 0.137032, 0.142682, 1.269699, 0.483088, 0.915366, 0.743598, -0.892581, 0.682828, -0.874223, 0.617007, 0.404190, 0.156124, -0.573231, -0.578045, 1.990808, -0.547045, -0.059656, -0.706795, 0.823791, 0.239120, 0.760238, -0.631524, 0.483145, -0.272599, 1.066651, 1.776854, 1.333696, 0.270038, -0.639615, -1.524093, -0.593235, -0.669937, -1.287344, 0.624233, 1.234175, -0.469339, -2.673773, 0.197788, 1.229611, -0.160598, 0.295828, 0.290539, 1.340376, -1.546628, 0.324714, -0.282165, -0.934606, 0.171220, -0.660123, -0.237934, 0.706449, 1.069371, -2.002259, -0.360696, 0.789479, 0.203824, -0.244098, -0.450729, -1.033425, 0.004591, 1.014519, -0.336808, 1.216950, -1.574796, -0.378562, 1.282009, -0.136177, -1.236178, -1.344107, 1.152737, -0.114498, 0.104634, 1.581375, -0.248600, 0.445797, -0.671835, 0.813808, -0.450572, 1.171678, -0.218566, -0.851262, 0.470281, -1.232525, -0.441207, 0.797514, 0.224421, -0.786897, -1.338343, 2.918136, -0.484288, 1.700449, -2.503681, 0.405204, -0.958056, -0.159268, -0.979951, 0.784583, 0.371375, -0.335393, -1.403690, -0.672031, -1.768612, 0.486015, -0.183907, 2.059938, 1.663091, 0.777940, 1.224331, 0.243463, -0.212734, 3.675434, 0.015961, 2.127998, 1.799297, 0.677596, 0.742624, 0.267620, -1.125191, 0.098975, 0.676437, 1.406714, -1.102403, 0.274027, -1.338014, 0.000497, 1.093379, 0.233855, 0.584885, -0.479394, 0.799204, 0.228711, 1.393660, -0.309822, -1.396516, 0.354881, 1.645507, -1.811889, 0.785144, -0.476500, 0.225611, -0.458132, -0.265379, 1.129122, -1.420787, 0.478497, -1.534723, 1.882321, -0.459904, -1.105561, -0.698393, 0.319162, 0.955874, 1.575655, 1.049060, 0.321607, -0.554712, 2.391111, -0.460636, 0.622923, 0.211547, -0.037155, -1.077355, 0.271574, -0.242270, 0.499386, 0.661349, -2.716219, -0.844623, -2.033322, -0.432095, -0.160874, -1.111089, 0.466569, 0.160188, -0.882351, 2.635583, -0.084218, -0.475544, -1.096698, 0.843347, -0.342527, 0.119832, -0.526319, 1.429026, -0.704974, -0.430196, 0.760298, 0.681345, -0.670249, -0.641111, 0.180972, -1.106293, 1.532891, 1.068363, 1.003581, 1.409564, -0.181188, -0.891836, 0.355961, 1.210890, -0.888511, -0.172888, -0.519026, -0.531364, -1.076281, 0.726658, -1.262809, 0.926454, 0.579979, 1.603911, -0.950228, -0.685054, -1.272782, 0.438027, -0.162733, 0.315365, -2.177338, -0.673697, 0.145284, -0.478879, 0.983600, 0.437519, 1.494868, 1.575354, 0.150170, 0.349174, 0.171159, -0.120737, 1.543509, 2.076893, -0.492403, 0.317766, 2.001430, 1.440680, 0.513666, 0.356342, -1.509140, -1.363681, 1.845136, 1.292002, -0.148575, 0.299693, 1.170144, -0.308276, -0.458720, 0.794473, -0.967977, 1.105097, 2.130901, -0.123496, 0.081986, 1.002645, -1.085919, -0.560473, 0.296005, 0.789353, -0.269847, -2.558980, 0.927275, -0.467784, 0.317143, 0.458393, 0.057566, -0.549560, 1.497769, -2.898894, 1.654285, -0.454681, -0.822528, -1.730295, 1.074960, 0.137918, 0.070625, -0.117567, -0.457990, -1.245347, 0.397462, -1.278753, 0.047606, -0.114704, 0.434614, -1.224872, -0.444581, 0.489287, -0.773125, -0.097111, 1.633667, 0.155354, -0.419924, 0.873116, -0.458484, 0.473671, -0.091978, 0.687364, 1.475949, 1.141860, 0.514919, -1.755532, 0.871819, 0.774535, -0.152756, -0.743990, 0.740205, 0.046770, 0.782677, 0.970344, -2.098977, 0.194778, 0.061838, -0.740884, -0.456557, -0.293963, 0.267428, 0.572115, -0.202906, 0.881771, -1.027140, 0.554616, 1.005625, 0.168106, 0.128437, 0.822852, -0.916728, 1.281431, 1.495535, -0.542165, -1.262006, 1.901224, -0.740243, 0.243219, -0.022770, -1.308703, 1.224213, -0.547377, -1.276179, -0.213497, 0.578068, 2.069428, -0.185776, 0.662663, 0.827051, 2.622462, 1.334861, -0.263207, 0.515121, -0.318664, 0.350667, 0.027830, -1.315444, 1.531451, 0.117391, 0.943620, -0.521673, 0.418379, 1.232737, -0.076268, -2.375868, 0.412047, -0.529878, -0.013168, -0.069190, 0.680694, -0.150145, -1.012116, -1.137958, -1.113784, 0.046429, 0.666767, 0.826792, -1.468080, -0.224615, 0.614530, 1.012420, 0.080754, -0.281168, -1.682514, 0.209661, 1.153289, -0.767129, -0.156860, 0.693448, -1.561837, -0.693193, -1.362141, -0.122263, 1.295253, -2.919127, 0.338436, 0.008621, 0.847522, 0.696990, -0.911289, -0.135180, -2.146954, 1.856832, 0.854619, 0.441767, 0.904763, 0.492492, -0.225177, -1.089328, 1.436821, 1.332541, 0.169813, -0.380365, 0.918262, -0.122714, 2.225160, -0.524163, -1.738663, -1.297546, 0.376041, 0.751986, -1.721446, -1.257990, 1.474788, 0.221108, -0.034420, 0.196502, 1.763677, -0.583232, 0.529788, 1.495535, 1.939037, 0.629916, -0.178530, -0.305083, 0.618505, -1.706171, 1.988135, 1.009309, 0.967654, 1.388601, -0.365528, 0.052859, -0.278418, 1.193452, 0.183563, -1.722935, 1.221311, 0.049304, -0.490819, -0.882158, -0.260450, -0.457841, -1.866920, -1.852402, 2.693872, 0.813261, -0.723892, -0.731183, 1.472821, -0.209544, -1.121239, -0.409280, -1.236758, 1.128726, 0.095525, -1.053991, 0.213046, 0.079628, 0.406784, -3.040499, 0.429716, 0.321059, 0.558590, 0.546992, 0.779609, 0.361150, 1.243232, -0.500127, 0.404494, 1.213458, 0.818050, 1.146753, 0.425089, 0.347603, 0.771793, 1.886813, 2.385094, 0.138731, -0.565796, 0.228482, -1.039877, 0.626217, -0.426960, 0.849791, -1.534972, 1.156831, -2.055622, 1.825672, -1.193715, -0.786140, 1.402654, -0.731370, -0.513543, -0.815725, -0.491834, 1.141321, -1.994267, -0.359238, 0.707577, -1.512396, 1.079465, 0.779846, 0.522513, 0.038271, 1.040546, 0.426121, 0.691500, 1.957886, 0.046700, 0.171883, 0.440433, -0.324818, -0.104945, -0.338009, -0.741593, 0.443820, -1.072987, -0.486312, 0.698410, -1.788811, 0.548017, 1.636410, -0.583240, -1.840856, 0.836300, -0.311252, 1.024664, 1.726619, 0.939556, 1.092871, 1.274347, 0.044603, 1.627977, 0.526698, 0.562974, 0.770625, 1.729979, -0.335287, -0.809198, -0.798831, -1.087272, 0.173590, -0.764288, 1.093196, -1.631967, 0.831555, 0.815566, -1.201740, 0.056949, -0.242331, -0.664453, 0.199122, -0.486558, -0.369147, -0.938483, -0.170820, -0.232570, -0.373860, 0.337351, -0.543332, -2.185735, -0.655946, 0.583809, -1.406502, 0.446971, 2.025558, 0.208933, -1.544937, 0.553311, 0.277827, 0.067365, 0.470603, 1.902130, 0.774395, -0.853265, -0.093092, -0.340810, -1.172868, -0.831302, -1.080708, 0.438944, -0.018013, 0.178382, -0.283502, -0.787116, -0.097087, 1.253211, -0.621756, -0.661305, 1.109090, -0.587551, -0.405241, -0.360644, -0.215994, -1.422710, 1.914675, 1.233941, 0.953655, -2.333509, -0.852149, -1.092351, -0.122103, 0.245731, 1.098201, -0.620078, -1.351882, 0.564537, -0.060079, 0.737816, -0.033493, -1.607410, -0.330491, -0.198336, -2.569172, 0.528342, 1.402853, -0.231471, -0.078697, 1.729009, 0.972393, -0.414298, 1.142034, 1.833913, -0.000931, 2.256407, -0.397234, 1.850523, 1.713857, 1.233649, 0.984719, -0.676883, 1.817221, 0.868478, -0.640646, 0.238347, -0.059560, 1.811211, -2.618336, 1.122434, -0.796594, 1.339990, 2.108393, 0.534400, 0.309782, -0.718498, 1.931625, 1.736116, -0.696786, 0.529123, -1.193905, -1.394558, -0.592851, -0.454381, 0.860722, 0.841657, 0.813063, -0.667401, 0.812944, 0.106251, -1.117467, 0.033939, 0.250135, -0.816481, 0.928864, 0.013776, 0.452166, -0.206403, 0.566231, -0.532754, 0.404865, -0.704484, 0.274989, 0.918509, 0.273510, -0.079340, 0.708396, 0.600842, 1.311511, -1.409819, 0.651257, 0.861284, -0.372855, -1.196844, 0.079627, 0.218136, -0.638536, -0.716781, -0.580369, 0.220091, -0.458735, 2.025766, 1.872406, -1.838942, 0.934212, 0.560095, 0.021847, -0.751025, 1.370176, 1.245168, -0.225636, 0.614243, -0.720625, -0.587507, -0.496351, 0.432425, 0.689731, -0.407020, 0.051499, -0.472184, 1.849107, -0.261673, -1.038411, -0.202875, -1.930506, 0.178573, 0.374921, 0.243520, -0.507939, 0.423253, -1.937319, -1.258062, -2.139528, 0.754162, -0.625140, -1.389137, -2.456294, -0.865122, 0.786545, -0.770523, -2.166260, -0.265189, -0.063571, 1.546956, -0.020055, -1.578166, 0.853399, 1.930560, 0.041061, -0.804233, -0.473942, -0.600621, -0.004090, -0.894100, 0.103983, 2.114091, 0.310964, -0.458724, -1.717477, 0.030133, -1.470110, 1.314874, 0.188732, 1.668664, -0.842384, 0.006351, -0.971833, -0.046344, 0.707342, -0.819759, 2.144530, -0.368451, 0.579973, 1.091115, -0.148887, -0.953607, 2.462977, 1.053506, -0.148519, 1.047693, -0.776454, 0.240340, -0.394486, -0.269879, 1.690862, 2.480855, 1.462525, -0.436915, 1.700310, 1.124181, 0.194222, -1.808197, 1.220469, -0.241741, 1.272436, -1.422537, -0.256838, -0.148264, -0.817898, 0.235552, 2.362523, -0.856592, 1.003373, 0.435978, -0.489512, -0.465575, 0.338367, -0.220975, -0.152091, 1.214347, 1.261436, -1.251009, -0.086733, -0.504145, -0.243082, 2.009960, 0.921300, -0.978197, 0.598189, 1.883382, -0.506925, -0.769491, -1.593715, 0.272125, -0.759615, 1.535015, -0.229567, -1.103737, -0.004963, 0.446512, -0.693396, 0.685065, 0.349876, 0.878389, -0.884863, -0.905856, 0.264667, 1.015236, 0.269646, 1.987148, -0.195984, 0.655919, -0.286911, -1.527199, -0.253445, 0.099677, -0.457202, 1.188869, 0.395030, 0.863017, 1.397443, -1.111201, -0.355992, 0.496056, -0.416801, -0.762257, -0.122733, 1.373750, -0.663248, -1.904706, 0.275297, -0.499703, -0.514021, 0.661685, -1.064008, -0.212920, -1.032474, 0.677715, 1.622868, 0.278875, -1.416016, 0.067039, -0.945162, 0.391698, 0.510546, 0.694056, -1.011924, -0.436370, -1.340288, 0.630691, -0.748382, -0.446044, 0.840428, 1.421828, -0.669901, 1.326642, 0.704730, 2.521558, 1.185718, -0.526917, 1.773685, 2.081829, 0.280450, 0.199858, -2.248677, 0.076981, -2.061315, 0.573030, -1.083415, 1.620533, 0.801992, 1.190638, -2.281225}, - { -1.306722, -1.206562, -1.975445, 0.487621, -1.274873, 0.202878, 0.370678, -0.888560, -1.218515, 0.286163, 0.296078, 0.055218, -1.126057, -1.310813, -0.241133, 1.089183, 0.126261, 0.031059, -0.853306, -0.129335, 0.258499, 0.355229, -0.672504, 0.743305, 0.655174, 0.768350, -1.781715, 1.070682, -0.723175, -0.222303, 1.410245, -0.044610, 0.924951, 0.349737, -1.506689, 0.948673, -1.085804, -0.748358, -0.268861, -1.814905, -0.852187, 0.246033, -0.534419, 1.304748, -0.317217, -0.157855, -1.325686, 0.501769, -1.928003, -0.134035, -0.163909, -0.827481, 1.939342, -0.410003, 1.201873, -0.766892, 0.701508, 0.142465, 0.181057, -1.062275, -0.014814, -2.698196, 0.426235, -1.134260, -0.398332, 0.121772, -1.764585, 0.534018, -1.659719, 0.306604, -0.185052, -0.595970, -0.988305, 1.676990, -0.109199, 0.569350, -1.305212, 1.130324, 1.015020, -0.003081, -1.283716, -0.447787, 0.815507, 1.732758, 0.936907, 1.911322, -0.158580, 1.110616, -0.779370, -0.530357, -0.668752, -0.467689, -0.848225, 0.075540, -0.668599, 1.742014, 1.656108, 0.343155, 2.500977, 0.700264, 0.963104, -0.502447, -0.477134, -0.387984, 1.345994, -0.716208, -0.873581, -0.610938, -0.336195, 0.527732, 0.427084, -0.217771, 0.425557, -1.457579, 0.554205, -0.395361, 1.045093, 0.605722, 0.092606, 0.588054, 0.977983, 0.919272, 0.785715, 0.434977, -0.010583, 1.408288, 0.519720, 0.310569, 0.051274, 0.351584, -0.726844, -1.156364, 0.936601, 0.099755, -1.120196, 0.472369, 1.015454, -0.039088, -0.419028, 0.255730, 0.890333, -2.615524, -0.776374, 1.457297, 1.480246, 1.050104, 1.454498, 0.800723, 0.212406, -0.435737, 1.430674, 0.295141, 0.114087, -0.373037, -0.059230, -0.492871, -2.134345, -1.199543, -0.346212, -1.268863, 0.296013, 0.074813, -1.235711, 0.324600, -0.460215, -0.435496, -0.399402, 0.465942, 1.850745, 0.448322, 0.688889, -1.395328, 1.361733, 1.317964, -0.388510, 1.015474, -0.604932, -1.072571, 0.557681, 1.925666, -1.068738, 0.362429, 0.082447, -0.129648, -0.318583, 1.558964, 0.522583, -1.245015, -0.520117, -0.080027, 1.916075, 0.322486, 0.958424, 0.956264, -0.746050, -2.040569, 0.731997, -0.037063, -2.346496, -1.146968, 0.694428, 1.581480, -0.614993, 0.025680, -0.272150, -0.871129, -0.428290, 0.016335, 2.165401, 0.494348, -0.025721, 0.817672, 0.643510, -0.100029, -0.616181, -0.015105, -0.125358, -0.164433, -1.054809, -0.864784, -0.069287, 1.415149, -0.821419, 0.448273, 2.280845, -1.986816, 0.225685, -0.523084, 0.500218, 0.749879, -0.272502, -0.740693, 0.091759, -1.942635, 1.364206, -0.789020, -2.040679, 0.993146, -1.073300, -1.465888, 0.164628, 1.163299, -0.394076, -0.009136, 1.305377, -0.025738, -1.079011, 0.913876, 0.214629, 0.974499, 0.077655, 0.114111, -1.108704, 0.288485, -0.273144, -0.629008, -2.068877, -0.735528, -0.009369, -1.236564, 0.349024, 0.766635, -0.791139, -0.703229, 0.020788, -1.397684, 0.807858, 0.068726, -0.363310, 0.195866, 0.938688, -0.282219, -1.403648, -0.975187, -1.954921, -1.077149, -0.069249, -0.091329, -1.112220, -1.679775, -1.232943, -3.163320, 0.832715, 0.142919, -0.890044, 1.466927, 1.995846, -0.800878, -0.040032, 0.998341, 0.443440, -0.307606, 0.479758, 0.880129, 1.060946, 0.571326, -0.046933, -1.270826, 2.193730, -0.811687, 2.159508, -0.756006, 0.835855, 1.486672, 0.105801, -0.228791, 0.633529, -0.935643, -1.406075, -0.844729, -0.441701, 0.783811, -0.700373, -1.240873, -1.482285, -1.311738, -0.372136, 1.269048, -0.799852, 0.544281, -0.248499, 1.516497, 0.467687, -1.121008, 2.002320, -0.208965, -1.454322, -1.324623, -0.598917, -0.193018, -0.270473, -0.872131, 0.371548, -0.705005, 0.556712, -0.361946, 1.279783, 2.166782, 0.765301, 1.753687, -0.191952, 0.169321, 0.892159, 0.569899, 1.343415, 1.986206, -0.555111, 1.458809, -0.899853, 0.119683, 2.017251, 1.215258, 0.836795, 1.848446, 0.042193, 1.198956, -0.791644, -0.705681, -1.428828, 0.954153, 0.160547, 1.464064, 0.325959, 0.581150, -0.271421, 2.047957, 0.176391, -0.456448, -1.773184, -0.887603, -1.664833, 1.066357, -0.189105, -1.556737, 0.909495, 1.856653, -0.907899, -0.308409, -0.239976, 1.028492, 0.572439, 0.051372, -0.008288, -0.783578, 0.773929, 1.521470, 2.229440, -0.881176, -1.457718, 0.637489, -0.235527, 0.954130, 0.292365, 0.036335, -0.168974, -1.450869, -0.210238, 0.638893, 1.673296, -0.240232, -0.020352, -0.668014, -1.336941, 1.639382, 0.762648, -2.364070, 0.443269, 1.448576, 0.945689, -1.091067, 2.389915, 0.693015, 1.088408, 1.168374, -1.758695, -0.086013, 1.013681, -0.090492, -0.044804, -0.828310, 0.510437, 0.701660, 0.558064, 0.549422, -0.536471, 0.201789, 1.422420, 0.784057, -0.036343, 0.205224, -0.000234, -1.192550, -1.566831, -0.729800, -0.108911, 0.137060, -0.298037, 0.328502, -0.378400, 0.388234, 0.742648, -0.180846, 1.231257, 0.800301, 0.875977, 1.408661, 0.135466, -0.329125, -0.986001, 0.986953, -0.575777, -0.424637, 1.081072, 1.550585, 0.170398, 0.240643, 0.883177, -1.665744, -3.635990, -0.137211, 0.363277, 2.063344, 1.131993, 1.311593, 0.927851, 1.413076, 0.438170, -0.970018, 1.312096, -0.779295, -0.310879, 0.259101, 0.250937, 0.940665, -0.285690, 0.580361, -1.237775, -0.508898, -0.348998, 0.596636, 0.599988, 0.630155, 0.889974, -1.476112, 1.060663, 0.634004, 0.799343, -0.401605, 0.621985, 0.589858, -0.991861, -0.724526, 1.300982, -0.287826, -0.658643, -0.476222, -0.557687, -0.449509, -0.699987, -0.019910, -0.147444, 1.709261, -0.749892, 1.567296, 1.291917, 1.009630, 0.768685, 0.384907, -0.199116, -0.957984, -0.378198, -0.155765, 0.510851, 0.444441, -1.130476, 1.707635, -1.042398, -0.286215, -1.216550, 0.666569, -0.017838, 0.295911, 0.087384, 0.965974, 0.822800, -0.569121, 0.768136, -0.117474, 0.741499, -1.866723, 1.204409, -0.520818, -0.898192, 0.484169, -0.841029, -0.356190, 0.196639, 1.632712, 2.416075, 0.022901, 2.814648, 1.113629, 0.524847, 0.164436, -0.070459, 0.708655, 0.671501, -0.649493, -0.459252, -0.401812, 0.241851, -0.785663, -0.102306, -0.109762, 1.360568, 0.966850, -0.744533, 1.114473, -0.706908, -1.753237, 0.993281, -1.377887, -0.074141, -1.371117, 0.648602, -0.333696, 0.000986, -0.279523, -0.020501, 0.127914, -0.481768, 0.461848, -1.183002, 0.896069, -1.159050, -0.787095, -0.891154, 2.070235, -0.219389, -0.912212, 0.615356, 0.349290, 0.859179, 2.019272, -1.799851, 1.385335, 1.281392, 0.710911, -0.284844, 0.000106, 0.282691, -1.863078, 2.113405, 1.339994, -1.174242, -0.317377, 0.156986, -0.475833, 1.165828, 1.467965, 0.093701, 1.154228, 0.193128, -0.076910, -0.967719, -0.123777, 0.823184, 1.170257, -1.430106, 0.074882, -0.537723, -0.297741, 0.826818, 0.326836, 0.711172, -0.103686, -0.038879, 0.792268, -0.637338, 2.041163, -0.571609, -0.186632, -0.858217, 0.218720, 1.065005, -1.220584, 2.136113, -0.624432, 1.583983, 0.963995, 0.194155, -1.578501, 0.923188, 0.394748, -0.849746, -0.229841, -0.764036, -0.372095, 1.127376, -0.895114, -0.005374, 1.908703, 0.042856, 0.422344, 0.816188, -1.504051, 1.077873, -1.082877, -0.845144, 0.711653, -0.203057, -0.559347, 0.126911, -0.029682, 1.123529, -0.770283, 0.592021, 0.790654, 1.171499, -0.705528, 0.326963, 0.239395, 1.614970, -1.878006, 0.914507, 1.060340, 1.464831, 0.279282, -1.921026, 1.760842, 0.103957, 0.563977, 0.482349, -0.714490, 0.079475, -1.052644, 0.671598, 0.593266, -0.625355, 0.316930, 1.771858, -0.929034, -1.400440, 0.675175, 0.138499, -0.340336, 0.194618, 0.497762, 1.230675, 1.512318, -0.026135, -2.557627, -0.707932, -0.219666, 2.103652, -0.559057, -0.743498, 1.089843, -0.937166, -0.093129, -0.121561, 0.335960, -1.261972, 0.639164, -0.852551, 0.419367, 0.011299, 0.612042, -0.713572, -0.567932, 0.401327, -0.541403, -0.153874, 1.252321, -1.245636, -0.181698, -0.146689, 0.020970, -0.755785, -0.386608, -0.068100, 1.382661, 1.712314, 1.095520, 1.285142, -0.848580, -0.052623, 0.930931, -0.438191, -0.588549, 1.465999, -2.008006, -0.636326, 1.136867, 0.461443, -0.321635, 2.135953, -0.335056, 1.226329, 1.564624, -1.237418, -2.732117, 0.373494, 0.322539, 0.017572, 0.573900, -0.312578, 0.644327, 1.134529, -0.662524, -1.844351, 0.559155, 0.101749, -0.297372, 0.560997, -0.530407, -1.665942, 0.277881, 0.861003, 0.080971, 1.217627, 0.212807, -0.815147, -0.355421, 1.937080, -0.907170, 0.754306, -1.994270, -1.028057, -0.375151, 1.151616, -1.040688, -1.280795, 0.874890, -1.661557, 1.149909, 1.119439, 2.150875, 0.529790, -0.555059, -0.082521, -1.635425, 1.088980, -2.092434, -0.780371, -0.592898, -1.073179, 1.641686, 0.597490, -1.233361, -0.652751, -0.225743, 1.180272, 0.073709, -1.551583, 1.000875, 1.089462, -0.525395, -2.644914, -0.658505, -0.490629, 1.755187, 0.939491, 0.225419, -0.662945, 0.647270, 1.171921, 0.158083, 0.907096, -0.220339, -0.793155, 0.033152, -0.604378, 1.159016, -3.269448, 0.128253, 1.239591, -0.570770, -0.865168, -0.389532, -1.546964, -0.182532, -1.373328, 1.313101, -0.784499, -1.741225, 1.430397, -0.775050, -0.329480, -0.654925, 0.139817, -0.511233, 0.852622, 0.650294, -0.456377, 1.054221, -0.508107, 0.207025, 0.644104, -1.316832, -0.009301, -2.487498, 0.550995, 1.231386, -0.190392, -0.090883, 0.228802, -0.644126, 0.505859, 0.545793, 0.773597, 0.968773, -0.238321, 1.779011, 0.578098, 2.167257, -0.873185, 0.153486, 0.792205, -1.219238, -0.308090, 0.915982, -2.219101, 0.518639, -0.729584, -0.714895, 0.188635, 1.313635, -0.942638, -1.566310, 1.202370, -0.558439, -1.035084, 1.216388, 0.852245, 1.195368, 0.527580, -0.087302, 0.145773, 1.314205, 1.288847, -2.048186, -0.165540, 0.803084, -0.384076, 0.034000, -0.336768, 0.998313, -0.160068, -0.282046, -0.202294, -0.039547, -0.065647, 0.228173, 0.359293, -1.796697, 0.446656, 0.235060, 1.419604, 0.507064, -0.503891, 0.372678, -1.159999, -0.023849, 0.659625, -0.265349, -1.015350, -0.649836, 1.119256, 0.683738, -0.223828, 1.532778, 0.201287, -1.579463, 1.459927, 0.367187, -1.075856, 0.908331, -0.611305, -0.300508, 0.505438, 0.153719, 0.701105, -1.064955, -1.170030, 1.374385, 1.882858, -1.300594, 0.108963, 1.743860, -1.213474, 0.985335, 0.688561, 0.097856, -1.186852, -0.355296, -0.635735, 0.325742, 0.213272, -0.809125, 0.819738, -0.601411, 0.014599, 2.264916, 1.102887, -0.005778, 0.303516, 0.546233, -0.121246, 0.387421, -1.188764, 0.248742, 1.064818, 0.636523, 1.061661, -0.890358, -0.298644, -0.376108, -2.351388, 0.893723, -0.605168, 0.030722, 0.252506, 1.251551, -1.558351, -1.211881, 0.597801, -1.222575, 1.752244, 0.352015, 0.848607, -0.979261, -0.104326, -0.056452, -1.364747, 0.401830, -0.911071, -0.418662, -0.201700, -0.485656, 0.859280, 0.460503, 0.203149, -0.554091, 0.451286, -1.981969, -0.518462, 1.552624, 0.043932, 1.641353, 0.130044, -0.170692, -0.563246, 0.727835, -1.075599, 0.569569, 1.787155, 0.407785, -0.787473, 0.682936, -2.238141, -0.281956, -0.092752, 0.612499, -1.461787, -1.112643, -0.061827, 0.259854, -0.049496, 1.440056, 0.660853, 0.563754, -1.475085, -0.733403, 0.122397, -0.853462, -0.485674, 1.179337, 0.095868, 1.012588, -2.189900, 0.434248, 0.419818, -0.606318, -1.337364, 0.661777, 0.941832, 0.630758, 0.274054, 0.613185, -1.555423, 2.208676, -1.226143, 0.192876, 0.382807, -0.507107, -0.676884, 1.297350, -1.838749, 0.502938, 0.489421, -1.449614, -0.220311, 0.236136, -1.689865, -0.406308, -0.727294, 0.098725, -0.464643, -0.884307, 0.013853, 0.236973, -0.164221, -0.674006, 0.131695, -0.617369, 0.643403, -0.543583, 0.772491, -0.492485, -1.052373, 0.107329, -1.207519, -1.182785, 1.328212, 1.204217, -0.804488, -1.140010, 0.097034, 1.217178, -0.031188, 1.321860, -0.154781, 1.694274, 1.895952, 0.486160, 1.679492, -0.372067, 1.200676, 0.092518, 0.023981, 0.341186, 0.106569, -0.371428, 0.048285, -0.598240, 0.555632, -0.113781, 2.258779, 1.139286, -1.561539, 0.120659, -0.818270, -1.615670, 0.231890, 0.818585, -0.282959, -0.619159, 0.425710, 0.107852, -0.495312, -0.922744, 1.618770, 0.611693, 0.209416, 0.061289, 0.383158, 0.403099, 1.544681, -0.247567, -0.226363, 0.282293, -0.162925, -0.150727, 1.665162, 0.417748, 0.247617, 1.095870, -0.724538, -0.947903, 1.287739, -0.572502, 0.410051, -0.294066, -0.973140, -0.620319, -0.176661, 0.734385, 0.257918, -0.003877, -0.283247, 0.398960, 0.234987, -0.888135, 0.780387, -0.883143, 1.528162, 1.369998, 0.440470, 0.311630, -0.217703, 1.169327, 1.152547, 0.001330, -3.111687, -1.161778, 0.579605, 1.354272, -1.816908, 0.289452, -0.715973, -0.227970, -0.266305, 0.237394, 1.558306, -0.287718, -2.105695, 0.163154, -1.389914, -0.859619, -0.589800, 1.022661, 0.295959, 0.104051, -0.036047, 0.606662, 0.164811, -0.957931, -2.492861, 0.030811, 0.920364, -0.360781, 0.139982, 1.133491, -0.300707, 0.336575, 0.507103, 0.600709, -0.211559, -1.394743, 1.478281, -0.076582, -1.096339, -0.712362, -0.432329, 0.579065, -1.488342, -0.910461, 0.337790, 0.849376, -0.628656, -0.201502, -0.813711, 0.780423, 0.809918, -1.017160, -1.816959, 1.215460, 0.227868, -0.206193, -0.006789, -0.011629, 0.823619, -1.465040, 1.220760, 0.915470, 0.424382, -0.406326, 0.788891, 0.597634, 1.024642, -1.627069, 0.524052, -0.118481, -0.861173, 0.228996, -0.789750, 0.704336, 0.196415, 0.265733, -0.902469, 0.667173, -0.543033, 2.697160, -1.522783, -1.799450, -1.411446, -0.694229, -1.156437, -0.470852, -0.056675, -1.736340, -0.594657, 0.048243, -0.819701, -0.876457, 0.358401, 1.267470, -0.306011, 1.039295, 0.601812, -0.564680, -1.104105, -0.722004, 2.312108, -1.349747, -0.892771, 0.151801, 0.315304, -0.725026, -0.418684, 0.111435, 0.596750, -0.555341, 1.611905, 1.272542, -0.023220, 0.206478, 0.134233, -0.203241, 1.350970, -0.342681, 0.164155, 0.863499, -0.050786, 0.163347, 0.337377, 1.452552, 1.332757, 0.263455, 0.735801, -0.546056, -1.579859, -1.580557, -0.910682, -0.440208, -1.036152, 0.108445, -1.348276, -0.778949, -0.273071, 0.307473, -2.107667, 2.899087, -0.154676, -0.825747, -0.116451, -0.112139, -0.695980, -1.997260, -0.559540, 1.374828, 1.355160, -2.918503, -0.828328, -0.525038, 0.515643, -0.221758, 0.441751, 1.314681, -2.328024, -0.728079, 1.614282, 0.403975, 1.075355, 0.200915, 1.638984, -1.247847, 0.443415, -1.155030, 1.513093, 0.715488, -0.617151, 0.333406, -0.399340, 0.069123, 0.446708, -0.502536, 1.180051, 0.102046, -0.739725, 0.923782, -1.826780, 0.179978, -1.952412, 0.328875, -2.264256, -1.558819, -0.846077, -0.163427, -0.943234, -0.386209, -0.235066, 0.077537, -0.187691, -1.501340, -0.627953, 0.086696, 1.407023, -0.848803, -0.072817, -0.934108, 0.496366, -0.241809, 0.135577, -1.307954, -0.245559, 0.165330, 0.486256, -0.852865, -0.208494, 1.770206, 0.396216, 0.270409, 2.037633, -0.064223, 0.064612, 0.445806, -0.957088, -0.919547, 0.215573, 2.278594, -0.416339, 0.161316, -0.379705, 0.696427, -1.197473, -0.152829, -1.201155, -0.067571, 0.744421, -1.273772, 0.091633, -1.153070, 0.745280, -0.126027, -0.463737, -0.596977, 0.259205, 2.094970, -0.055123, -0.817826, 1.679727, -0.550194, 0.547040, -1.468360, 0.047270, 1.728018, 1.251678, 0.785110, 0.782004, 0.635047, 1.491072, 2.374910, -0.857646, -0.037283, -0.443378, -0.145824, 0.398244, 0.444377, 0.530464, 0.507240, 1.838416, 0.608443, -0.627736, -1.815393, -0.918009, -0.795143, -1.268468, -0.493845, -1.959881, 0.927852, -0.144308, -1.515496, -0.416742, -0.535321, -1.690671, 0.558452, -0.723324, 0.658306, 0.673020, -0.282153, -0.087523, -0.101062, 0.806614, -1.397657, -0.783966, 0.148817, -0.191359, 0.763614, -0.075771, 0.395182, -0.512973, 0.043773, 1.161476, -1.136248, -0.033076, 1.855701, 0.050423, -1.782616, 0.618242, 0.857557, 0.586584, -0.538299, -0.824793, -2.081231, 0.100155, 0.599181, 0.895736, 0.393109, 0.761994, -0.856217, 0.345470, 1.175187, 0.859146, 0.222996, 2.730433, 1.045481, -1.602272, -1.120842, 0.797835, -0.450566, -0.107617, 1.004892, 0.271661, -0.356596, 0.652141, -0.538075, 0.288047, 0.064005, 0.596706, -0.630322, -0.028489, 0.717982, -0.065484, -0.084068, -0.041005, -0.434164, -0.064324, 1.172602, -0.958908, -0.388051, -0.745537, 0.329071, 1.650854, -0.487696, 1.476046, -1.464900, 0.466550, 0.874340, -0.330703, -1.517606, 1.086196, 1.399697, 1.433387, -0.911661, -1.107046, 1.151739, 0.815799, 0.556304, 0.891766, -0.728414, -0.320747, -0.307799, -0.922006, -0.494039, -0.888249, 1.540241, -1.377076, -1.067262, 1.358926, 1.151412, 0.606119, -1.699460, -0.427536, 0.360005, 0.606905, -1.545228, 0.198811, 0.959342, 0.601874, -0.334327, -0.377551, -0.858046, -0.225197, 1.816804, 1.034932, 1.434679, 0.654734, 0.940643, -0.739575, -0.840147, -1.789858, -0.942806, -1.079719, 0.531839, 0.511425, -0.326281, -2.296900, -2.334516, -0.341631, -1.482882, 0.443912, -0.037954, 0.876560, -0.614322, 2.335886, -0.647980, 0.578187, 0.858352, -1.668314, 0.025324, 0.745265, 0.482212, -2.352133, 1.739185, -0.514463, 0.009494, 0.296828, -0.643168, 0.148094, -0.157162, 0.973446, -2.404760, 0.085901, -0.389550, 0.464780, 1.203284, -0.505066, -1.465330, 0.113142, -1.268466, -0.171102, -0.740924, 0.711941, 0.021854, -0.155897, 0.376086, -0.476774, 2.088704, -0.002063, -0.190758, 0.527170, -0.521759, -0.447835, -0.512182, 0.024397, -1.028813, -0.436797, 0.896304, 1.074301, -0.242409, 0.598928, 0.560371, -1.604305, -0.870563, 0.444375, 0.577974, -0.353234, 0.215623, 0.345611, 0.260071, -0.468246, -0.544294, 0.228037, 0.269647, -0.586471, -2.052550, 0.615393, -1.272593, -0.882642, 1.036288, 0.011614, 1.805478, -1.691650, 0.430511, -0.193104, -0.794786, 1.579785, 0.023423, -0.202144, -0.429140, -0.244490, -0.192104, 0.496623, -0.370862, 0.591385, -0.008358, 0.916484, 1.391264, 0.205551, -1.391085, -0.158767, -0.116726, 0.463252, -0.202024, 1.366361, -0.005888, -0.659149, 1.385597, -1.283743, 1.090053, -0.235352, -0.342533, -0.490919, 0.637522, 0.735195, 0.437611, -0.195301, -0.771487, -1.933584, 1.398047, 0.530650, -0.367794, -2.613991, -0.934382, 1.128839, 1.119543, 0.755983, 0.432306, -0.838827, -0.187274, 0.300638, 2.112506, -0.336808, -0.568510, -0.809779, 0.556836, -0.115932, 1.509196, 0.116030, -0.004545, 0.918701, -0.098034, 0.774322, 0.548438, -1.185807, 0.576253, 0.818708, 0.820646, -0.043009, -0.112975, 0.294283, 0.646336, -1.411424, 0.415686, 0.283050, 0.289867, 0.781490, -0.721728, 2.004668, 1.198695, -0.840073, 0.463102, 0.030390, -0.550954, 0.450995, -0.432116, 0.485383, -1.210767, 0.267810, 1.040128, -0.049312, -1.319735, -1.100990, 0.257950, 0.640590, 1.264726, -0.706996, 0.343020, 0.604296, 1.061179, -0.349471, 1.181923, -0.096113, -0.684709, 0.371165, -1.888668, -0.219498, -2.005449, 0.828665, -0.212407, -1.690258, 0.913129, -0.719772, -0.291366, -1.193654, -0.960187, -0.031259, 0.566043, -1.808817, 0.350319, -1.122654, 0.429573, 0.141642, -0.796642, -0.951431, -0.358224, 0.286029, 0.900678, -1.077279, 0.949549, -0.551130, 1.014358, 0.628007, -0.190322, 1.064191, -0.235220, 0.634681, -0.996202, -0.440077, -0.273290, -1.646487, 0.976593, 1.111389, -0.139303, -0.916863, -0.154713, -0.310510, 2.885064, -0.731374, -0.446964, -1.068459, 0.093839, 1.414929, -1.631422, -3.345341, 0.672032, 0.130001, -0.273509, 1.300311, -1.251719, 0.732780, 1.013213, 0.877303, -0.626863, 0.255106, -0.327187, -2.106743, -1.437281, 0.347722, -0.598641, 0.554328, -0.448056, 0.289314, -0.795904, -1.723003, -0.420764, 0.392462, -1.488810, -0.252925, 0.673444, -0.116164, -0.006031, -1.194115, 0.120299, 0.494225, 1.817080, 0.861764, 0.896387, 0.558066, 1.276631, 1.114552, -0.214774, 0.728033, 1.309181, 0.551700, 0.253694, 1.834876, 1.335530, -0.357923, 1.334914, 1.778314, -0.928489, -0.661655, -0.218289, -1.267311, -0.679976, 0.142578, -0.325426, 0.448539, -0.536486, 0.552878, -2.199202, -0.820706, -2.662360, -0.559948, 0.590066, -0.386476, 1.715975, 0.605198, 0.101238, 0.653559, -0.813276, 1.363169, 0.107939, 0.682765, -0.174299, 2.433555, -2.343627, -1.172672, -3.199686, 0.592968, -2.778187, -0.277380, 0.205596, 0.256554, 0.674087, -0.092992, 1.284310, -2.514184, 2.086236, -0.305648, 0.499562, -0.518138, 2.015840, -0.104281, 0.433778, -0.406942, 0.832048, -0.202261, 0.981248, -0.257785, -0.805417, 0.123813, 0.990685, 0.125278, 1.472102, 1.003173, 0.671391, -1.311633, 0.686317, -1.238560, 1.333381, -1.819972, 0.014583, -0.069385, 1.019034, 0.255380, 0.614337, -1.088945, 0.003024, -2.198287, -1.246073, 1.118342, 0.282005, 0.211082, -1.116343, 0.497717, 1.689003, -1.494971, 0.361726, 1.177114, 0.065296, -1.165127, -0.460834, -0.278577, 0.558672, -1.228186, 0.194247, -1.579477, -0.569127, -0.595906, 0.346841, -1.467514, 0.457670, 0.558748, 0.207878, 1.939161, 0.973660, -1.635622, 0.028355, -1.065006, -0.142816, 0.550287, -1.079264, -0.870758, 0.447781, 0.841872, -0.476380, -0.240467, 0.102527, 0.969131, -0.094159, -1.471724, -0.080538, -1.081234, 0.892425, -1.398874, -0.198271, -0.421002, 0.891942, 0.834312, 0.006150, -0.381829, -0.055182, 1.618491, 0.244830, 0.106999, 0.214148, 1.454636, -0.592663, -0.163587, -2.039119, -0.619669, 1.506373, -1.397350, -0.092203, -1.430567, -1.311889, 0.866339, -3.163515, -1.292274, 1.078179, -1.385464, -1.102093, 1.252812, -0.638390, 1.065954, -0.434725, -0.758999, -1.726670, 0.558720, -0.263322, 2.281444, -0.848641, -1.647519, 0.448649, -0.434710, -0.734985, -0.731943, -0.829069, -0.262430, 0.545340, 0.004613, -0.645514, -0.178483, -1.701218, 0.605534, -0.939845, -0.342279, -1.642277, -0.479832, -0.145732, -1.621380, -0.474369, -0.940053, -1.435311, -0.678221, -0.617701, 0.013875, -0.618717, -0.238223, -1.695965, -0.795559, 0.525432, -0.790244, -0.673575, -1.325514, 0.333026, -0.244594, -0.278886, 1.209369, 0.529215, -0.250697, -0.322201, -0.499480, 0.873978, -0.612866, 0.119325, 1.493435, 0.474964, -0.662750, 0.845538, -0.589458, -1.823233, 0.001842, -0.399125, 0.505185, -0.575673, 1.380647, 0.301480, 0.870098, -0.033522, 0.486709, -0.288075, 0.718362, -0.678294, 0.534405, -0.406838, -0.511154, 0.467546, -1.045277, 1.365833, -1.880154, 1.498577, -0.709347, -1.310839, -0.039387, -1.146252, 0.617003, -0.619881, -0.746843, -0.138104, 1.431202, -2.176347, -0.935408, -0.669361, 0.880733, 0.957628, 0.268094, 1.026087, -0.310804, -0.064648, -1.343621, -0.749944, -1.189768, 0.560676, -0.006086, 0.647117, -0.143102, 0.366470, -1.459244, 0.207666, -0.050755, 0.159965, -0.200505, -0.020746, 0.854998, 0.652354, 1.290493, -1.107352, 1.213934, 0.182142, 1.050795, 0.694052, 0.819290, 0.022826, -0.875291, 0.548073, -0.212302, -0.538839, 0.162168, 0.315788, -0.683053, 1.502058, 1.609384, -1.261816, -0.685542, -0.684384, 0.007175, -0.110525, -0.869473, -0.425027, 1.686312, 0.659582, -0.298156, -1.348327, 0.489380, 1.783486, 0.916291, -0.737333, 1.249722, 0.514340, -0.510650, 0.530287, 0.250790, -0.736731, 0.181218, -0.609399, -1.763146, -0.497334, -0.770102, 0.095765, -1.833470, 0.925065, 0.506651, -0.567896, 0.583574, -0.652694, 0.126927, -0.351854, 0.652261, -0.436328, 0.391945, 1.146941, -0.434520, 0.529063, 0.861122, 0.339439, 1.227181, -1.659411, -0.013468, -0.860145, -0.876674, -0.323090, -1.342286, 0.985412, 1.335472, 1.285018, -0.414086, 0.706340, 1.217383, -1.440695, -1.289047, -0.901490, 0.064526, -0.976088, -1.134814, 1.058022, 1.333273, -1.043313, 1.321891, -0.109960, 0.415771, -0.555932, -0.218403, -0.272969, 0.012761, 1.984532, 0.607617, 0.254116, -0.836948, 0.008405, -0.437715, 0.925419, -1.637382, -0.340474, -0.840463, 0.789162, 0.651031, -0.740322, -0.042824, -0.835316, 1.587364, -1.205372, 1.065413, 0.206891, -1.447811, 0.218973, 1.567639, -0.069754, -0.592155, 0.493281, -0.486558, 0.280744, 0.024010, -0.244175, -1.648609, 0.398642, 0.853410, 0.841394, -1.058714, -0.362462, 0.114567, 0.793381, -0.883279, -0.650965, 0.746007, -0.115356, -0.482327, 1.628481, 0.236334, 1.122638, -1.048374, 1.581355, 0.506680, -0.692447, -0.609296, -0.172604, 0.241335, 0.686081, -1.350582, -0.115404, 1.202263, -0.633033, 0.831468, 0.726793, 0.957572, 0.287042, 0.682826, -0.378327, 1.541249, 1.235914, -0.271342, 0.884730, 0.517920, 0.573293, -1.544325, 0.568943, 0.392183, 0.010682, 1.129690, 0.402858, -0.785571, -0.034727, -2.560512, 0.188622, 0.745281, -0.321471, -0.854352, 0.548736, -1.234354, 0.925957, -0.348154, -0.514366, -0.318813, -0.078934, -0.679750, -0.641392, -0.780845, 0.292700, 1.477203, 1.252533, -0.487051, 1.386790, -0.283977, -0.414354, 2.309083, -1.303284, -1.817065, 2.495653, 0.570511, 1.004694, -1.787725, -0.109871, 0.772058, 0.354526, -1.424405, 0.351693, 1.292659, -0.805693, 0.709871, -0.064224, 0.006072, 0.584756, 0.345615, 0.680089, -0.002734, 0.929262, 1.790102, 0.403073, 0.035194, -0.128437, 0.348572, -0.019493, 1.196981, 0.015461, -0.814024, 0.578597, -0.338844, 1.393876, -2.222345, -1.074805, -1.098250, 1.403857, 0.239371, 0.242014, -0.168282, -0.834605, -0.169059, -0.441645, 0.674441, -0.058228, 1.028264, -0.642770, 0.243626, -2.634166, 0.475228, -0.785591, 0.396225, -0.374844, 1.215585, -0.801908, 0.236088, 0.706994, 0.545217, 1.517945, 0.192899, 0.501366, -0.631635, 0.236042, -0.540647, -0.263529, 0.237750, -0.053088, -1.466106, 0.455937, -2.141427, -0.836912, 0.588601, -0.975322, 1.501426, -0.488858, 0.361602, -0.299698, 1.375798, -0.829770, -0.992468, -0.744957, 0.585658, -0.994177, 2.133005, 0.604265, -0.996530, -0.465949, 1.118589, 0.851781, -0.144288, -0.101109, 0.137684, 1.061046, 0.593670, 0.726586, -2.675390, 0.410663, 3.586453, -1.170571, 0.761411, 0.570526, 0.058953, 0.334523, -0.317482, 0.765881, -0.984257, 0.277280, -0.645113, 1.966093, -0.054017, -0.355771, 0.317502, 0.375538, -0.572351, -0.784479, -0.759979, 0.617876, 2.447737, -0.611156, -1.340673, 1.201098, 1.263286, -0.695809, -0.849187, 0.489012, -0.593956, 1.253131, -1.305665, -2.177678, -0.331286, 0.656302, -1.700598, 0.379237, -0.432112, 0.602720, -1.667386, 0.433250, 0.815467, -0.539471, -1.729565, -0.670985, 0.587887, -0.535748, 0.569673, -0.046745, -0.316038, -1.027328, 0.329559, -0.438133, -0.490015, 1.594848, -0.810045, 0.152105, -0.370337, 0.507324, -0.490510, -0.619391, 0.738050, 2.072518, -0.701880, 0.737407, 1.642830, 0.444321, -0.056485, 1.961288, -2.354003, -0.072037, -1.669549, -1.858596, -1.504215, -0.187371, -1.909644, 1.805385, 0.474356, 1.042067, 1.114747, 1.282275, -2.188725, 0.916882, 0.557736, 0.231816, -0.232051, 1.619510, -1.054217, 1.125998, -0.969100, -1.266579, -0.670209, 1.139490, -0.745597, -0.210947, -0.861337, 1.652766, -0.788320, -0.743822, -1.602206, -0.541056, -0.435770, -0.921485, 0.298054, -0.194899, 0.297088, -1.667046, 1.158349, -1.590320, 0.414036, -0.432755, -2.415697, -0.659518, -0.910445, 0.927733, -1.120275, 0.467300, 0.314042, 1.976022, 0.219947, 0.078395, -0.305890, 0.632552, -1.611635, -0.042283, -2.069789, 1.824029, 0.656008, -0.195056, -1.214351, 0.264522, 0.542187, 1.487073, 0.789542, 1.059119, -0.075870, 1.013427, -0.477173, 0.269869, -0.652294, -1.358589, 0.979331, 1.116919, -1.049375, 0.310614, -0.407688, 0.020530, 1.320260, 1.443595, -0.748712, -0.857938, -0.717673, -1.553223, 1.203013, 0.642697, -1.534610, 0.789280, 0.175633, -0.374085, -2.547447, -1.186978, 0.375963, 1.387543, 0.124566, -0.516787, 1.271062, -0.065854, -0.847381, 0.903283, -0.780442, -2.487500, -2.253640, -0.094605, 2.027686, -1.033854, 0.266449, 1.438877, -0.728771, -1.543139, 0.433430, -0.635535, 1.145563, -1.158888, -0.290143, -1.062991, 1.411065, -0.402367, 0.471370, -1.789846, 0.517319, -1.047263, 1.051822, 0.521338, -0.347231, 1.102154, -2.125638, 0.331757, -0.536398, 2.839321, -1.337101, -1.270588, 1.618598, 1.558441, -1.472812, 0.978768, 1.095047, 0.878453, 1.522101, -0.169450, -1.881421, 0.041783, -1.933428, -1.272658, -1.099831, 0.698799, -0.912297, -1.302414, -0.967370, -0.062387, -0.578776, 0.323390, 0.067520, -0.656164, -0.334443, -0.177343, 0.539449, -0.386821, 1.444985, -0.566086, 0.779453, 0.262055, -1.547493, 1.821644, -0.087003, -1.189743, -1.263727, 1.172478, 0.740028, 0.984671, -0.244013, 1.409685, -1.013735, -1.044181, 0.894445, -0.094312, -1.005935, 0.617880, -1.153423, -0.741734, -0.645282, -0.585838, 1.003105, -0.323091, 0.961363, 0.592898, -0.338686, -2.720963, -0.033931, 2.024170, 1.681945, 0.326379, 0.083399, -0.803196, -1.157355, -0.842997, 1.711657, -0.408833, -0.470732, -0.591740, 0.085203, 1.794521, -0.383445, -0.516549, -0.873501, 0.910886, 0.068872, -0.265310, -1.044059, 1.075193, -0.896742, 0.162181, 0.465172, -0.075295, -0.028526, -0.453873, -2.491138, -1.103367, -0.410223, -0.491504, -0.620867, 0.100039, -1.076069, -0.328097, 0.751399, -0.429668, 0.966350, -0.511710, 1.301603, -0.823436, 0.910685, 0.649541, 0.257834, -0.036782, 1.671105, 0.120764, 0.982925, 1.131655, 2.069821, 0.236031, -0.870674, 0.081054, 1.590142, -0.501175, -0.566931, -0.516470, 0.209410, 0.205497, -0.705121, 0.985071, 0.759925, 0.781093, -0.428546, 1.261780, -0.083528, 0.920203, -0.312253, -2.609334, -0.286968, -0.500162, 1.315484, 0.891519, -1.018784, -1.285232, -0.523674, 0.528247, -0.174721, 0.384928, 1.811198, 0.517066, -0.059081, -0.801826, 0.752000, -2.036761, -2.350544, 0.212618, 1.330320, 0.024189, 0.418928, -1.608373, 0.199062, 0.441548, -0.525658, 0.105482, -1.362616, 0.953430, 0.748849, -0.677355, 0.584905, -0.634090, 0.233904, 0.982807, 0.509537, 0.458873, 0.173705, -0.444020, 0.445336, 0.041020, 0.544738, -0.153590, 0.117306, -0.317249, -0.024588, 1.244830, 1.156654, -1.606700, 0.742057, 2.044751, -0.405146, -1.185307, 0.249288, -0.366873, -0.274687, -0.569499, -2.202950, -0.546792, -1.745989, 0.123779, 1.312750, 0.288120, -0.107591, 0.808838, 1.379432, -0.849142, 0.815486, -0.251258, 0.466500, -0.850278, 0.503180, -0.218065, -1.253637, 0.835728, -1.202638, -0.245552, 0.062515, 0.886108, 1.236440, -0.530222, 0.410336, 1.243686, -0.183674, -0.039397, 0.451284, 0.481612, 0.508805, 0.461431, 0.539364, 1.497278, -0.276442, -0.327327, -1.008459, 0.690461, 1.445435, 0.451333, 1.488243, -0.894386, 0.296445, -0.082720, 1.071635, -0.125299, -0.603705, 2.131453, -0.596367, -0.884052, -1.093542, -0.342706, -0.020823, 0.674616, 0.004123, 1.739355, -2.153884, 0.555722, 1.068139, 0.274012, 1.681075, 1.163319, 0.478205, 1.945848, 0.130181, -0.408861, 1.495626, -0.954710, 0.009036, 0.743086, 0.622465, -0.646933, -1.070030, -0.929744, 0.951051, -1.284070, 0.378749, -0.120382, -0.253044, -0.119507, 0.724068, -0.888674, 1.712628, 2.459184, -0.636090, -1.982919, -1.283465, -0.716452, 0.426833, -1.473497, -1.381743, -0.259281, -0.170721, 0.772125, -0.643037, 1.138432, 0.479766, -0.787350, 0.369062, 0.808883, 0.890365, -0.831740, 0.420817, 1.128937, 0.801518, -0.331785, -1.538298, -0.965302, 0.486890, 1.091202, 0.382622, -0.801824, -1.565545, -1.012647, -0.232369, 0.425066, 0.465670, -1.097054, -0.969533, 0.565347, 1.632298, 1.021248, 0.351722, 1.441757, 0.099544, 0.417781, 0.482504, -0.857564, -0.297370, 0.428571, -1.386769, -0.125291, -1.034554, -1.681601, -0.461081, -0.877713, -0.753453, 0.989447, 0.216936, 0.941574, 0.683167, -1.290300, -0.735760, -1.719968, 2.398976, -1.124289, -0.498528, 0.642133, 0.787628, -2.198217, 1.260803, 0.156359, -0.154648, 0.451952, -0.748612, 0.571192, -0.697768, -1.085944, 0.245045, 1.922087, -0.275707, -1.384893, 0.311673, -1.741204, 1.487895, 0.213302, 0.415759, 0.751946, -0.896216, -0.148201, -0.118499, 1.131209, 0.645428, -0.976218, 0.086370, 0.274075, -0.365409, 1.200594, -0.550582, 0.842177, -1.025388, 0.594050, 0.230820, 1.576052, 0.704692, -2.029278, -2.054396, 0.684060, 0.190030, -0.217915, -0.656299, -0.565849, -1.333886, -1.810853, -0.030625, 0.646317, 0.248950, -0.469804, 0.998340, -0.450709, 0.702924, 0.033902, 1.492740, -0.535172, 0.873607, -0.002429, 2.179865, -0.139646, -0.385429, -0.452533, 0.457510, -0.374115, 0.604039, 1.235351, 1.300399, 0.684936, -1.011588, 0.600731, 0.689640, -0.828593, 0.290439, 0.908194, 0.654161, 1.024418, 1.720547, 1.083159, 0.929031, 0.998807, 0.360034, 1.057415, 0.509025, -1.591980, 0.763424, 0.350928, -0.084699, 0.073030, -0.956351, 0.252388, -0.204467, -0.370431, 1.356337, 0.465546, 0.430860, 0.710963, -0.995503, 2.361601, 0.113372, 2.022394, 0.474875, 0.634539, 0.143694, -1.129102, 0.355598, -1.301660, 0.242280, -0.466966, 0.616472, 0.954021, 1.104713, -1.493732, -2.318650, -1.043088, -1.207898, 1.286743, -1.384719, 0.668639, 0.185861, -0.123741, -0.048825, -0.232838, 0.450620, -1.225807, 1.468203, -0.150641, -0.327383, 0.554870, 0.881702, -1.404688, 1.050395, -0.350600, 0.800071, 1.189997, -1.175194, 0.814702, 0.984401, -0.504228, 1.619049, -1.002960, -2.215406, -0.131022, -1.318819, 1.603725, -0.226002, -1.365246, 0.030934, -0.573978, 1.222332, 0.595702, 1.050356, -0.454836, -1.099639, 2.134368, 0.526937, -0.748041, 1.670449, 0.034820, -1.542539, -0.017937, -0.861025, -0.702860, 1.125740, -0.701439, -0.536227, 0.080808, 0.583683, 0.457965, 1.273315, -1.112688, 0.070677, -1.064009, 0.185678, -0.329471, 0.647069, -0.367284, -0.287561, -0.506998, -0.700610, 0.198115, -0.506856, -1.778391, 0.111008, 0.771120, -0.970763, 0.346747}, - { 0.409908, 0.582276, 1.311964, -1.054459, 0.832528, 0.430378, 0.902869, 0.745239, 1.406766, -0.218227, 0.192160, 0.866107, 0.903709, -0.904399, 0.816803, -1.880733, -0.058023, -0.561100, 0.386290, -2.321174, 1.157113, -0.041630, -1.040663, -1.065882, 0.429965, 0.178342, -1.260052, -0.335775, 1.965138, 0.798680, -0.955848, 0.924315, -0.442087, 0.814785, 0.313010, -0.633068, 1.616825, 0.753163, -0.356732, 0.443112, -0.313713, -0.450178, -0.115374, -0.382737, 0.620388, -1.550437, -0.668137, -1.452407, -0.980949, -0.526877, -0.183260, 0.011653, -0.398501, 0.212189, -0.395186, 0.470114, -1.327988, 1.699219, -0.323491, 0.541221, 1.622500, -0.893206, 1.442624, 0.489302, -1.430065, -2.164297, 0.022938, 0.642795, 0.492310, -1.922054, -0.011958, -0.486573, 0.771746, 0.527452, 0.468845, 1.563627, 0.877346, 0.021083, 0.855523, 1.321551, 0.208227, -0.875822, 2.103915, -0.875871, 1.110955, -0.036753, 0.251333, -0.549615, 1.738173, -1.628670, 0.003033, 0.999710, 0.070975, -1.117468, -0.441240, -1.451016, 0.343559, -0.446525, -0.217744, -0.286274, -1.414481, 1.375340, -0.175890, 0.988623, 0.352310, -0.865454, -0.225763, 0.368764, -0.576945, -1.223433, -0.051848, 0.183470, -1.149368, -0.680321, 0.681218, -1.968300, -0.673023, -1.441279, 0.509003, -0.218171, -1.532217, -1.421965, -2.325474, 1.354197, -2.006501, -0.050293, -0.416419, -0.378692, 1.943797, -1.801330, 0.351420, 0.830723, 0.295423, -1.466302, -0.288266, -0.041113, 0.571690, 0.350977, 1.112760, -0.151946, -0.321354, 0.211343, 0.687454, -0.248542, -1.891091, -0.294927, -0.310695, 2.018778, 0.499433, -1.730709, 1.962916, -0.061949, -0.318423, -2.131998, -0.873665, 0.825859, 1.738037, 0.859827, -0.202625, -0.440882, -0.182377, 1.061060, 0.838909, 1.327776, 1.239482, 1.107943, -0.944877, -0.085000, -0.749307, -0.191363, -1.376120, 0.078277, -0.583651, 0.172937, -0.851299, 1.614857, -0.063964, 0.643686, -0.916212, -1.089560, 0.897349, -0.617896, -2.968133, 1.018177, -0.447699, -1.068597, -1.028228, 2.171334, -0.710245, -1.653350, -0.908564, 0.589236, 0.272454, -1.585294, 0.889527, -1.756469, -0.040843, -0.665333, 0.921856, 0.138165, 0.046379, 0.432372, 1.128069, 0.457529, 0.765237, 0.428574, 0.102245, -0.488000, 1.016622, 2.475426, -0.147162, 0.138517, -1.026236, 0.268533, -0.475233, 0.859584, 0.611671, 1.303325, -1.020380, -0.271066, 1.439291, 0.358347, 0.783648, 1.546133, -0.935960, 1.125614, 0.337609, 0.797714, -0.158297, -0.744851, 1.455745, -2.192103, -0.137178, -0.751323, -1.227651, 0.154032, -1.664935, -1.464460, 0.317755, 0.406277, -0.221770, 0.039205, 0.390808, 0.492500, 0.984675, -0.456647, 1.058132, -2.350466, 1.932157, 0.023220, 1.933352, 0.365043, 0.187923, 1.348667, -0.433540, 0.944000, 0.960082, 0.633741, 0.636765, 1.163002, 0.005239, -0.110356, -0.706302, 0.712455, -0.152990, 2.198596, -0.139108, 0.309379, -0.101794, 0.136156, 0.473504, 1.304105, 1.066694, 2.123196, 1.371330, 0.047305, -0.789470, -0.448335, 0.749722, 0.020230, 0.109932, 0.227158, -0.084740, -0.698813, 0.425909, 0.985717, 0.731053, 1.423869, -2.743297, -0.713958, 1.605817, -1.256965, -0.477088, 0.611421, -0.743723, 2.063783, -0.549955, 0.171991, 1.038456, -0.601226, -0.765831, 1.484166, 0.260612, -0.333062, -0.785957, 0.992547, -1.254646, -1.366816, 0.159724, -0.362946, 0.157405, -1.056875, 1.307636, 1.297363, 0.443354, -0.932141, 0.420463, 0.959388, 0.990643, 1.460794, -0.377268, 0.322756, 0.988900, 0.249897, 0.568699, 0.754652, -0.353719, -0.552106, -1.388044, -0.379368, -0.001216, 1.063109, 0.436455, -0.671526, 0.825799, -0.867047, -0.979883, -0.855629, 0.752914, 0.876888, -0.751172, 1.419129, 1.181724, -0.519659, 0.771543, 0.312507, 1.692175, 1.667514, 0.868514, 0.808562, -1.053951, -0.433701, 1.661352, -0.789852, -0.074643, -0.702685, -1.257512, -0.060645, -1.374826, 0.186024, 0.512602, 1.368699, 0.134232, -0.119482, -0.095966, 1.198072, -0.401850, -0.502141, -0.338209, -0.408769, 0.101234, 1.303797, -0.253414, -0.607334, 0.524647, -0.506240, 1.224115, 1.741701, -0.203538, 0.912607, -0.390335, -0.376619, -0.161206, -0.821843, -0.161002, -0.067802, -0.842999, 0.996339, 2.430216, -1.757152, -2.216976, 0.613652, 0.465190, -1.622498, 0.109849, -0.253659, 1.166501, 0.216974, 0.280325, -0.036942, 0.476497, -1.692178, -0.414191, -0.976745, 0.480581, -0.861702, -0.185718, 0.380361, -0.433831, 0.637417, 1.446664, 0.949438, -0.536184, -2.041553, 1.144063, 0.568712, -2.313628, 0.824426, -0.509415, 1.666306, 0.237994, 1.518234, 1.353820, -2.798833, -0.411048, -1.114572, -1.020491, -1.825579, -0.362038, 1.410702, 1.031929, -0.238968, -0.429286, 0.043428, 0.731514, -0.586612, 1.215725, -0.721166, -0.206342, 0.211199, 1.788225, -0.998786, 0.974485, -1.827374, -1.230705, -0.726955, 1.047457, -0.062208, -0.763971, -1.523687, 0.917158, -0.988424, -1.161427, -0.346879, -0.197039, 0.915261, -0.842068, -0.195400, -0.643502, 0.810626, 1.171615, 0.209699, -0.073442, 1.591856, -0.069389, 0.855879, 0.134319, 0.331897, 0.111074, -0.029078, 1.288100, -0.822784, 0.001466, -1.050695, 1.771848, 0.699176, -0.057512, 1.111084, -0.730493, -1.147402, 0.821703, -0.627277, -0.932667, -1.383188, 0.507898, -0.198115, 0.197719, -1.037032, -2.587059, 1.008726, -0.575790, 0.967026, 1.274888, 0.458998, 0.300344, 1.407893, -0.162172, -1.012545, -0.829946, 0.641104, -0.107428, 0.088596, -0.756541, 0.914786, 1.131351, -1.353161, -0.279496, -0.501996, -0.968373, -0.826646, -1.494472, -1.476189, 1.697711, 1.341249, 0.764334, 1.747088, 1.018852, 0.764046, 0.912349, -1.026535, 0.210337, 0.262009, 0.769123, 0.593756, -2.351957, 1.563581, -0.184778, 0.778475, 1.738240, -0.655113, -0.051285, -0.196781, -0.453700, 1.298487, 0.376126, 0.408739, -1.091744, -1.056242, -0.516689, -1.849846, -0.398093, -2.871715, 0.859495, -0.834490, 0.962508, -0.311433, -0.070967, 0.295410, 0.098015, -1.624880, 0.765971, 0.874205, -0.884845, -1.480019, 1.045536, -0.680949, 0.563561, 0.328462, 1.122605, 1.597750, 0.916032, -0.990478, 1.067310, 0.185697, 1.695216, -0.269176, 0.526356, 1.088921, 0.715407, -0.089960, 2.038435, -0.993667, 0.504213, 0.849560, -0.000506, 0.327816, 0.703210, -1.366296, -1.473948, -0.849526, 0.420181, -0.358080, -0.629695, -0.763295, 0.507746, 0.364476, 0.543309, -0.149095, 0.251752, -0.449275, 0.465961, 0.467304, 1.462359, -0.016500, 0.003094, 0.544809, -0.208563, 0.620111, 1.156103, -1.112897, 0.422560, 0.407092, 0.308105, -1.424698, 0.443183, 0.936462, -1.117379, 0.270196, -0.533629, 0.556330, -0.226714, 0.065734, 0.986329, -1.455766, -0.193962, -0.844694, -0.153923, -0.643141, 0.317480, 0.669921, 0.435803, 0.984172, -1.233417, 1.042071, -0.683324, 0.492866, 1.865027, 0.223998, 0.766854, -0.907247, 0.604806, 0.164331, -0.357828, -2.546036, 0.754787, 1.559605, 1.111737, 0.002199, 0.068542, 0.737030, 0.615009, 0.548836, 2.004968, -0.045482, -0.674021, 0.947873, 0.562988, -0.009845, 0.695911, -1.866241, 0.766797, 1.693043, 0.756199, 1.132172, -0.592413, 0.821245, 0.585884, -0.821381, -2.451530, 1.129947, -0.018487, -1.934286, 1.095247, -0.728015, -0.644095, -0.029135, 1.339558, 1.153280, 1.390428, 1.763259, -0.319450, 0.600169, -0.213737, 0.566028, -2.096532, 0.351959, -0.959853, -0.421023, -0.573212, 0.121546, -1.306578, 0.202237, -0.461886, 0.979022, 0.354086, 1.751630, -0.990077, 0.142234, 0.610291, -0.077412, 0.884330, -0.261357, 0.238653, -0.262235, 0.127551, 0.273313, -0.161901, -0.051417, -1.420711, 0.309665, 2.403347, -1.738069, 0.727519, -0.118253, -1.288735, -1.856929, 0.685709, 0.497439, 0.779481, -1.426642, 1.160802, 0.908459, 0.167577, -0.551309, -2.273783, -0.962705, -0.434608, 0.161123, 0.101692, -0.257972, -1.362912, -0.209996, -2.265794, -0.302804, 0.013763, -0.337076, -0.882852, -0.456577, 0.766380, 0.041471, -0.209193, -0.137195, -0.482485, 0.241742, -2.119477, 0.086744, -0.389172, 0.381749, 0.276606, -1.609915, -0.458701, -0.125407, -1.366648, 0.095588, -0.426226, 0.017309, 0.701474, 0.511645, 0.120088, 0.055152, -0.637502, -0.110142, -0.059958, 0.279743, -0.585360, 0.473218, 1.775236, 0.051215, -0.828190, -0.277455, 1.814895, -0.080994, 0.052288, -1.227556, -1.159643, -0.581847, -1.608744, -0.870961, 2.447831, -1.337726, -0.018584, -0.605042, 0.506109, -0.030980, 1.160748, 0.013513, 0.883104, 0.534186, -0.591840, 1.496500, -1.080726, -2.251199, -1.866547, -0.103390, -1.996742, 0.088564, -0.082176, -1.324550, -0.304280, -0.037279, 0.652834, -1.166344, -2.440400, -1.727440, -0.567315, 0.252025, -0.543111, -0.807048, 0.669629, 0.863753, 0.276462, -0.361700, 0.054160, -0.381928, -1.419399, 1.475271, -0.568859, 0.628991, -0.636045, 0.951173, 0.291302, 0.328473, -1.923165, 0.923573, 1.608702, -0.104370, -0.028099, -0.578809, 1.392398, 0.658191, -0.569352, -0.370081, -0.562134, -0.514905, -0.853603, -1.959628, 1.197784, -1.309368, 1.868159, 0.444414, -1.602523, 0.039608, 2.050299, 0.084641, -1.043518, -1.580193, 0.954352, -0.561920, -1.296435, 0.853176, 0.479274, 0.429846, 1.955928, 0.783883, 1.862621, 1.346323, 0.408807, 1.225363, 1.800576, 1.341598, 0.226735, -0.040664, -0.532752, 1.744666, -0.248951, 0.448418, -0.274410, 0.064832, -0.418159, 0.835974, -1.225230, -0.460793, 1.661070, 2.463482, 1.105623, -0.003208, 0.045564, 0.932880, 0.830632, -1.017872, 0.277654, 0.738355, 0.387206, -0.044935, 0.870232, -0.532378, 1.386862, 0.929535, -0.223404, 1.664861, 0.703730, -1.271831, 0.181517, 0.640966, 0.452324, -0.743603, 0.172865, 0.834765, 0.073203, -0.416488, -1.364738, 0.185006, -0.644653, 1.425682, -0.150555, -0.198282, -0.153871, -1.434271, -1.057852, -2.044396, 1.271546, -1.196192, 0.130081, 0.796638, -1.240782, 0.293070, 0.146253, -0.388991, -0.352213, -1.100912, -0.266669, -0.122873, -1.260185, 1.329920, -0.995664, 1.090963, 0.690916, -0.248645, -0.901379, -1.584774, -1.375311, -0.404270, 0.759930, 0.970213, -0.472302, -0.652358, 0.369275, 0.714357, -0.814169, -0.839337, 0.370494, -0.826943, 0.122689, -0.052145, -2.384148, 1.329444, 0.368395, -0.570344, -0.290844, -0.512962, 1.459268, -0.480818, -0.500475, 0.142581, 1.105771, 0.239673, 0.872124, -0.731333, 1.111738, -2.154590, 0.853989, -1.648155, -0.035936, 0.636597, 0.153739, 0.196882, -0.349101, 1.310808, 0.223587, -0.670855, 0.679243, -0.420429, 0.262063, -0.738886, -1.289061, -1.160561, 0.057189, 0.729912, -0.656857, -2.879934, -0.139869, -1.741828, 0.194913, 0.823664, -1.454858, 0.105603, -0.709284, 0.417254, 0.995143, 0.155165, -0.186902, 0.877764, 0.655356, 0.681621, 0.325412, 1.028397, -0.501824, -1.726635, -0.542467, -0.690013, 0.859538, 0.212175, 0.540866, -0.374412, -0.140377, 0.008116, 0.018931, -1.823062, -0.732869, -0.643282, 1.385137, -0.056922, 1.057391, -0.208040, -0.460406, -0.103935, 1.441333, -1.904379, -0.510183, -0.405419, -0.796754, 2.396399, -0.701381, -0.007511, 0.069492, 0.294715, -0.154859, -0.628436, -1.078077, 1.471869, 0.125116, 0.511088, 0.675188, -0.600438, 1.019678, -0.265204, 1.966701, 0.273941, -0.371851, -0.665726, -0.221919, 0.844087, 0.202418, -1.302562, 0.151592, -0.770936, -1.569476, -1.215336, -0.643915, 2.026972, -0.572566, -0.148806, -0.207398, -0.456646, 1.036585, -0.394498, -1.107204, -0.782402, 0.093280, 0.087486, 0.330014, -0.494551, 0.483321, 0.552614, -1.293930, 0.042798, -0.767029, -1.264153, 1.258960, -0.229014, -0.862555, 1.070873, -0.147420, -2.267936, 1.556768, -0.569368, -1.394505, 0.361904, 1.975332, 0.744779, -0.568325, 1.920954, 0.230437, 0.510206, 1.311355, -0.798712, -0.738229, -0.152801, 2.162214, 0.116923, -2.371498, 0.319140, 0.525487, -0.268055, -0.952228, 0.429581, -1.902514, 0.998997, -0.454208, -0.092029, 0.776615, -0.515946, -2.065968, 0.482177, 3.124551, 0.402158, 1.249676, -0.292114, 0.826194, -0.926607, 1.435737, -0.465372, -1.238300, 1.441703, -1.042321, -1.150746, -0.800118, -0.992408, -0.887902, -0.464058, 1.949114, -1.008783, 0.009846, -0.989970, -0.727241, -0.792080, 1.160738, -0.789825, 0.432581, -0.042803, 0.053161, -0.103631, 0.161133, -0.035112, 0.041306, -1.272356, -0.573906, 0.901059, 0.617861, 1.261514, 1.059692, 0.492684, 1.048386, 1.165794, 1.428501, -0.708478, -0.203454, 3.044986, -0.759792, 1.184809, -0.261273, -2.471827, -0.732997, -1.174680, 1.021537, 0.949185, 1.649647, 0.253847, 0.219320, 1.345048, 0.489831, -0.944415, -0.884002, -0.463005, -1.328959, -0.770863, 0.612242, -0.517209, 0.098078, -1.285115, 0.202710, 1.792981, 1.931767, 2.495579, 0.673623, -0.625698, -1.263043, -1.057640, -0.911959, 0.120750, -1.124592, 0.294848, -1.479637, 0.442893, 0.522740, -0.196854, 0.016869, 1.060562, -2.004514, -1.162747, 0.405720, -0.504936, 0.231156, -1.458659, -0.542273, 2.877477, -2.529186, 1.338650, 0.184364, -0.074516, 0.339198, 0.805550, 0.950739, 0.844520, -0.222403, -0.943756, -0.816075, 0.110591, 0.351606, -1.306264, 1.206411, 0.848837, -1.208389, 0.118189, 0.948697, -0.008606, -0.864731, 0.084665, -0.658165, 0.052586, 0.531414, -1.491343, 0.058960, 0.580589, -0.033685, 0.145493, -1.614268, -1.030610, -1.003680, 0.998129, -1.904596, -0.788919, 0.305760, 0.733143, -0.045289, 0.328297, -2.640179, -0.465894, -0.694010, -0.685013, -0.772948, 1.990243, -1.360419, 2.311902, 1.706670, -0.784185, -0.626436, 1.234494, 0.949730, 1.181579, 2.214518, -2.658259, 0.607514, 1.161113, 0.004014, -0.715428, 0.249958, 0.440261, -0.237998, 0.207727, 0.315768, 0.892851, -0.299258, 1.110276, 1.041579, 0.204965, 0.158738, 1.553742, -0.096950, -1.184076, -1.131238, 0.411929, 0.627084, -0.471571, 0.715773, -1.566883, 0.419095, -0.081388, -0.010002, -0.824814, 0.715507, -0.550462, -0.033819, -0.596240, -2.174700, -0.373795, -0.754979, -0.397065, -0.628341, -0.232232, 0.162759, 1.424263, -0.320755, 1.942092, -0.191240, -0.558674, -1.866335, 0.855271, -1.737952, -0.048434, -2.124802, -1.995343, -0.968727, 0.869197, -0.204666, 0.801081, 0.973553, 0.902717, 0.662450, 1.091432, 1.422639, 1.584685, -1.254415, 0.611742, 0.661950, -0.186852, 0.658488, -1.861050, -0.673881, -0.232343, 0.659785, 0.809494, 0.492537, -0.490473, -0.046470, 0.607086, -1.497652, 0.852324, 0.580567, 0.369048, -0.892198, 0.842151, 0.999987, 0.624302, -0.476671, 0.409741, -1.228167, 0.680385, 0.763556, 0.309534, 1.488309, -0.057464, -1.246628, 0.103089, 0.085377, -0.737745, 1.076242, -0.341761, 0.446436, 0.202747, 0.586349, 0.431602, -0.282113, -1.492004, 1.929537, 0.644536, -1.360248, 0.264344, 0.941803, 0.465146, -1.531090, -0.422117, -0.029534, 0.335762, 1.210280, -0.740087, -1.010148, 0.171750, -0.186299, -1.306489, -0.391162, 1.197327, -0.218154, 0.176300, 1.011836, -1.614053, -0.597980, -0.422629, -3.667158, 0.475690, -0.079081, 0.413093, 0.107142, -0.459022, -0.018302, 1.050148, -0.548957, -1.484306, 0.743450, 0.064349, 0.533538, 0.995779, 0.172829, 1.342288, 1.699744, 0.141162, -1.834983, 1.800669, 0.074626, 0.549243, -1.611536, 0.498372, 0.218540, -0.323981, -3.178814, -0.459279, -0.677585, -1.659007, 0.820648, -0.745100, 0.990579, 0.470108, 1.383495, 0.432831, 0.570695, -0.351455, 1.333411, 0.413521, 0.507380, 0.825225, -0.965419, 1.125373, -0.123128, -0.547582, 1.610770, 0.466908, 0.247782, 1.795272, 1.250457, -0.509169, -0.468864, 0.844996, -0.544065, 0.044920, 0.467544, 0.491336, 0.742394, 0.324425, -1.227934, 1.418629, -0.874595, 0.672965, -1.220739, 0.313679, -1.040592, -0.257430, -0.772283, 0.463976, 0.904858, -0.423706, 0.385976, 0.604603, -2.004493, 1.551156, 0.121624, 0.331786, -2.067015, 0.652161, 0.788975, 1.927251, -0.225069, 0.452049, -0.885968, -2.142622, -0.846300, -0.319797, 0.136102, 1.569549, 0.634689, 0.123892, -1.402743, -2.021199, 0.782764, -0.269002, -0.648824, 1.507893, -0.630665, 0.905849, 0.187648, -0.261251, 1.810144, 1.755072, 1.101681, 0.149522, -1.054558, -1.034126, 2.148272, -0.088384, 0.862755, 1.221365, 2.707767, -0.337489, 0.174368, 0.610173, -0.689638, -0.922347, 0.435131, 0.776709, -0.083182, 0.514931, 1.564222, -2.197662, -0.657233, 1.328955, 1.069213, -0.009906, -2.669116, -0.711315, 0.548057, -0.162152, -1.977780, 0.553921, 1.036759, -0.288389, 0.044865, -0.702101, 1.309726, 1.115567, -0.785533, -1.972265, 0.168054, -1.243447, -0.495334, 0.148568, -0.733246, 0.743215, -0.152734, -1.797134, 0.396027, 0.276630, 0.966303, 1.287967, -0.976340, 1.749413, -0.110938, -0.019896, 0.584480, 0.355363, 0.184050, -0.077445, 0.941078, 0.612535, 1.173607, -1.662167, -0.638423, 0.113256, -0.518196, -0.271571, -1.735027, -1.531056, -0.654158, 0.276913, 1.560259, -0.221700, 0.256295, 0.295537, -0.452999, 1.778863, -2.121970, 0.943871, 0.437470, -0.259539, -1.648516, 1.300949, 0.446061, 0.543300, -0.165318, -0.826390, 0.428316, -0.004020, 1.013720, -0.709328, 0.223167, -0.653403, -1.334720, -1.600439, 0.463415, 0.877650, 0.617488, 1.051636, -0.639861, 0.366620, -1.141826, -0.105428, -1.285914, -1.300432, 0.358487, -1.687059, 0.462028, 1.018915, 0.067261, -0.191407, 1.074653, 1.168162, -1.102372, -0.052091, 0.637730, 0.872907, -0.040146, 0.445956, -1.107931, 1.526318, 0.459798, -2.946011, -1.217983, 0.078830, 1.270399, -0.748558, -0.576561, 0.779715, 0.584619, 0.013830, -1.210514, -0.027580, -1.807974, -0.456713, -0.458049, -0.720396, 1.039488, -0.860417, 0.036037, -0.461158, 1.035521, -1.001936, 0.130038, 0.529139, -1.020486, 0.632074, 0.538288, 0.543854, -0.082418, 0.229474, 1.441192, -0.440683, -0.528633, -0.946281, 0.574937, -1.350653, 1.417111, -0.592676, 0.585583, -0.629327, -0.302990, -0.130880, -0.485316, 0.608659, -0.141166, -0.022518, -0.823123, 1.918916, 0.578723, -0.946158, -1.121146, 0.523028, 0.094182, 2.139039, 1.084628, -0.917830, 0.487059, -1.153683, 0.537627, 0.602483, 0.040463, -1.106338, -0.407211, -0.206168, -1.047935, -0.933324, -0.977305, 0.124895, 0.329349, 1.190209, -0.356925, 0.041560, -0.571548, -0.670069, 0.031941, 0.955461, -0.713299, 0.575203, -0.093773, 2.370248, 0.430387, 0.401182, 1.178465, -1.328911, -0.888919, 0.797758, 0.895399, 0.227654, -0.187122, -1.023527, -1.870704, 0.112649, 0.892239, -0.686195, -1.345789, -0.860501, 0.490847, 1.355903, 1.020884, -0.494607, -0.081408, -0.057327, -0.744093, -0.965186, 0.080116, -0.296318, 1.544589, -0.476115, 1.149629, 0.951937, -0.666262, -0.479717, 2.120382, -0.134276, 1.332451, 0.366706, -0.510412, -0.742801, -0.028845, -1.000236, 1.835363, -1.088735, -0.828760, 0.522453, -0.129309, -0.598309, 1.000706, 0.377525, 0.039448, -0.523312, -1.824308, 1.872520, 0.576642, 0.809912, 0.196899, 0.097899, -0.354616, -0.419256, -2.578992, 0.554784, 0.585974, -1.540522, 0.247351, 0.086522, 0.546667, 0.285098, 0.696017, -0.253081, -1.036311, 0.553189, 1.577065, 0.485141, 0.648711, -0.543137, -0.474990, -1.143757, 0.167411, 0.075843, 0.409480, 1.747821, 0.684071, 0.284654, 0.841381, -0.211101, 0.823529, -1.049302, -0.517072, 1.692124, 0.869145, 0.239133, 0.199064, 0.458765, -0.013959, -1.404379, -1.541075, -0.192709, -1.460834, -0.332605, -0.512000, -0.736037, -0.590613, -0.108542, -0.310183, 0.263520, 0.097274, -0.113724, -0.092447, -1.828712, 0.866176, -0.102630, -0.444198, -1.219638, 0.436178, 0.391617, 1.402147, -0.095805, -0.700699, 0.348281, -1.540495, 0.636827, -1.594618, 0.750606, 2.266292, -0.386748, -0.653216, -1.243844, 1.081604, 1.072713, -1.850210, -1.319571, -0.263392, -0.226455, -0.692015, 0.127820, -0.057971, -0.207502, -1.409770, -1.662455, 0.613139, -0.964735, -1.980929, -0.078326, -0.823761, 1.758926, -2.206006, -0.630918, 2.725513, 1.207699, 2.294445, -0.323073, 1.295129, 1.836318, 0.767836, 0.823158, -1.193238, 1.388575, 0.131033, -0.588449, -1.190456, 0.409403, 0.273267, 0.025923, 0.138258, -0.456856, 0.357802, 1.121624, 1.669294, -0.129766, -0.718741, 0.073804, -0.517092, -0.923800, 1.318870, 1.141014, -0.368112, -1.011178, 0.442000, -0.710108, -0.672207, -1.549274, -0.357643, -0.199480, 0.615497, 0.056127, 1.244722, 0.187644, 0.992484, -0.243646, -0.445814, 0.837329, -0.008620, 0.708263, 0.002427, -0.103403, 0.411539, 0.685910, 1.280423, 1.798157, 1.461707, -0.412000, 1.212925, -0.215652, 0.541920, 1.435713, -0.112401, 0.460620, -0.151056, -0.802218, -0.276820, -1.957677, -0.562285, 0.483330, 1.608138, -0.797055, -0.806208, 0.461564, -0.279414, 1.903172, -0.194894, 1.091832, 0.829155, 0.187533, 1.395448, -0.577424, 0.281364, 0.005707, 1.180715, -0.848642, -0.301686, 0.951069, 0.751389, -1.633530, -1.420491, -0.529104, -0.746879, -1.670086, 1.672752, 1.014968, 0.804239, -0.994983, 0.315173, 0.447472, 0.913812, -0.323893, -0.359815, 0.769932, 0.906364, 0.691448, -0.347187, -0.175564, -0.233813, -1.264912, -0.865740, 0.172687, -0.445773, -2.049300, 0.106705, 1.792337, -3.665341, -0.778988, 2.966446, 1.556617, 0.387379, 0.592753, -0.302357, 0.291061, 0.999850, 0.583821, 2.155150, -0.626317, -1.722364, 0.690279, 0.537445, -0.158910, 0.118709, -2.246937, 1.755380, -0.423828, 0.343284, 0.311337, -0.115495, -0.994300, 1.071191, -1.055478, -0.805971, -0.114500, -0.021049, 0.387179, -0.240022, -0.483178, 0.722824, 0.507512, 0.691859, 0.724036, 0.622953, 1.077205, 0.181433, -0.089315, 0.088336, -0.478451, 0.849445, -1.023472, -0.095473, -0.086135, 0.510974, -0.459358, 1.670642, 0.886358, -0.978037, -0.726355, 0.247664, 0.691848, -1.008873, -2.217548, 0.188466, -1.818923, -0.160442, -1.398494, -0.122519, -0.050452, -0.401744, -2.163526, -0.827769, 1.101792, -1.125293, 1.409684, -1.671424, -0.300942, 1.117012, -2.228336, -1.740987, 0.402005, 0.784012, -0.801696, -0.316528, -0.811788, 0.246557, -0.234621, -0.801615, 0.167257, 2.119712, -0.221417, -0.047351, -0.189222, 1.613068, 1.636210, 0.685715, -0.516699, -0.213599, -0.553549, -0.888756, 0.737929, -1.101802, 0.005246, 2.067143, -1.686015, -0.949071, -1.727706, -2.423165, -0.049259, 0.860079, 0.148229, -0.546433, 0.061150, 0.665753, -0.804987, 0.244624, 0.292000, 0.249504, 1.201744, -1.013017, -1.663149, -0.877380, 0.698365, 1.136918, 0.636454, -1.805283, -1.133555, 0.277548, -2.322622, 0.457944, -0.491023, 0.151145, -1.106310, -0.898816, -0.658722, 0.540531, 0.046465, 0.655948, -0.144029, 1.508065, 1.497873, 0.185633, -0.013334, -0.284433, -0.041058, 0.040584, -0.050920, 1.488357, -0.524972, 0.392220, 0.456376, -0.586975, 1.514470, 0.539379, -0.812665, -0.075820, -0.318283, -2.524642, 0.287843, -0.320077, -0.910446, -0.443321, -0.189764, -1.996705, -0.253930, -0.485380, -0.317542, -0.126975, -0.154770, -0.795014, -0.118819, 0.085182, 0.907587, 2.933667, -0.993867, -0.515402, -0.307139, -2.020423, 0.332003, -0.148085, -0.305949, -0.246181, 0.573859, -1.246347, 0.276580, 0.611091, 1.280634, 0.216831, -1.287218, 0.502973, 1.253250, -0.482459, -0.022266, 0.501955, -0.740931, -0.900384, -1.451999, 0.503417, -0.762641, -1.122747, 0.007921, 0.286881, -0.995577, 0.135746, 0.543202, -2.875395, -0.911700, -1.794683, -0.544209, 1.041134, 0.220555, -0.499457, -1.734496, 0.412618, -1.504440, 1.006639, -0.374822, -0.643926, -0.125553, 1.031112, -1.033592, -0.103100, 0.160041, 0.506835, 0.058250, -0.198635, 1.110444, -0.593552, 0.227931, -0.353608, 1.283954, -0.258871, -0.199200, -0.653583, -1.054071, 1.239713, -1.576850, 0.299727, -2.212698, -0.377730, 1.248124, -1.214777, 0.680168, 0.553584, -0.240581, -2.726274, 0.412623, 0.472051, 1.461790, 0.217575, 1.293905, 0.588733, -1.758441, -0.233244, -2.096284, -0.015905, -0.795065, -1.916619, 0.987294, 0.020390, 0.841724, -0.180508, -2.990319, -0.357509, -1.196907, 0.614966, 0.489917, 0.384808, 0.453433, -0.278196, -0.041060, -1.814359, -0.528122, 1.627915, 0.891587, -0.513199, 0.615605, -0.628466, -1.480839, -0.545546, 0.021031, -0.249409, 0.351905, 0.125160, 1.319289, 2.885963, -1.584917, 1.767448, 1.084315, -0.075906, -0.540620, -0.537823, 1.593324, 0.490269, 1.151786, -0.533839, 0.580015, -0.692773, 0.833477, 0.471162, -0.737824, -1.608178, 1.034056, -0.514485, -0.695534, -1.129559, 2.289706, 0.356947, -0.539843, 0.730864, -0.625221, 0.055393, -0.951180, 0.869108, 2.716173, -0.085236, -1.431136, 0.575196, 0.034871, -0.309255, -0.818256, 0.157864, 0.684726, 0.055435, 0.395131, -0.371312, 0.982282, 2.150376, -0.178971, -1.382915, -0.508982, 0.470960, 1.370558, 2.659153, -1.214218, 0.114449, -0.402863, 0.260132, -0.572302, 0.221952, 0.836981, -1.724980, 1.288078, -0.185098, -1.355861, 1.619084, 1.509799, 2.063221, -0.130688, -2.251188, -2.090113, -1.390004, -0.133834, 0.154282, -0.895175, 1.081765, -1.183564, 1.474015, -1.761061, 1.587969, 0.365549, 0.584966, 0.134219, 0.368632, 0.792163, -1.033457, -0.450743, -1.798299, 1.901788, 1.246052, 1.328756, -0.068326, -1.302918, -0.153546, 0.514339, 0.305672, -0.483576, -0.407502, -0.519386, -0.267904, 0.195310, -0.185515, 0.866269, -0.098234, -0.994464, 1.078858, -0.641451, 1.178820, -0.001568, -1.193502, 1.415377, -0.240063, -0.493790, -1.246133, -0.249450, -0.195963, -0.036979, -0.789731, -3.087571, 1.983571, 0.402336, -0.667327, -0.078972, 0.462409, 0.998281, 1.197227, 0.538010, -0.726448, -0.134830, 1.020894, 1.231268, -2.635929, -0.613555, 0.127693, 0.302578, 1.731020, -1.715139, -0.130483, 0.030843, 0.365248, -0.554934, 0.663166, 0.559675, 0.125114, -0.447443, 0.812026, 0.029807, 0.147547, -1.288833, -0.073839, -1.323809, 0.231902, 0.049239, 0.353407, 0.275080, 0.856087, -0.012627, -0.340888, -0.375095, -0.507527, -3.005246, 0.386116, 0.804089, -0.362912, -1.243788, -1.098779, 1.396344, -1.992447, 0.342131, -0.237291, 0.759136, 1.663015, 1.936556, -0.108096, -0.565458, -0.840033, -1.868953, -0.923677, -1.360096, 0.899575, 0.828752, -1.280237, -0.246941, -0.879568, -0.524936, 0.574475, 0.056647, -0.656588, -0.846348, 1.297738, -0.159086, -0.922158, -1.417051, 0.774624, -1.132103, -1.003555, 0.174483, 0.152541, 0.141909, -0.796339, 0.181261, 1.912393, 0.289870, 0.622188, -0.137299, 1.990555, -3.357899, -0.401449, -0.507281, -0.629694, -1.503431, -0.767024, -0.845583, -0.196736, 0.511571, -0.129206, -0.093948, -1.183299, 0.631649, -1.791430, 0.941840, 0.340284, -1.407593, -1.805891, 0.394421, 1.364787, 1.289190, 0.667517, -0.654983, -1.228638, 0.612461, -0.085692, -1.183587, 0.137986, 0.071179, -1.509668, -0.048832, -0.961314, 0.677184, -2.198377, 0.866412, 1.946396, -1.812240, -1.371658, 1.065631, 0.708248, 1.026466, -2.185796, 0.155759, 0.627243, -0.694300, -2.157135, -1.106958, -1.073769, 1.027928, 0.295696, -0.321099, -0.783209, -0.108778, 0.755394, 0.334285, 0.824537, 0.099246, -0.249522, 1.750268, 0.895380, -1.489290, -0.542535, -0.310710, -0.684408, 0.633089, 0.169119, 1.547565, -0.783359, -1.075074, 0.378470, 0.178139, 0.499142, 0.748060, -2.630377, -0.357123, -0.969912, -0.742085, 1.178812, -0.425549, 0.559456, 0.839398, -1.293111, 1.252398, -0.300757, -1.532060, -2.080168, -0.403346, 0.767518, -0.079658, -0.544107, -0.141154, -0.715125, 0.779383, -2.785085, -0.006201, 0.353557, 1.014186, -0.688996, 0.256286, 2.377080, 0.381699, -0.484811, 0.780898, -1.069872, -1.896658, -1.557389, 1.454643, 0.593980, -0.092602, -0.402235, -0.072375, -1.890350, -0.323946, 0.083504, 0.691071, -0.317551, -0.213195, -0.525421, 0.643218, -1.868246, -0.898146, -2.043587, -0.900370, -1.643555, 0.367005, -1.655811, 0.144727, 0.248493, 1.928740, 0.083588, -0.914077, 1.217681, 1.317644, 1.184488, 0.448175, -0.927184, -1.133090, -1.724598, -1.660006, -0.119470, 1.497947, 0.098622, 2.224697, -0.699031, 0.549962, 0.382962, 1.183204, -1.327720, -0.683649, -1.788433, -1.117517, -2.150321, 0.391026, 0.115026, -0.199847, -1.122606, 1.353484, 1.591893, 0.652944, -1.090579, -1.141491, -0.087466, -0.532302, 0.555955, -0.625897, 0.032483, -1.210230, -0.310558, -0.342910, 0.957504, 1.378972, -1.388557, -0.766600, 0.806288, -1.358127, -1.109585, -0.235514, 0.404152, -2.282993, -0.457933, -1.603416, -0.151905, -0.792843, -0.619267, 0.258786, -0.416315, 0.414033, -1.582190, 0.104414, 0.067284, 0.249154, 0.431743, 0.238847, 0.152662, 0.101024, -0.387129, -0.351210, -0.364984, 0.186458, -1.347073, -0.126981, -0.773176, -0.750469, -0.641040, 1.230933, -0.492362, 1.242481, 1.609718, 0.752667, -0.445522, -0.146777, -0.580538, -0.520101, 0.911250, 0.749584, 1.069617, 0.855657, 0.680945, 0.136725, 1.872044, 0.499782, 0.196481, -0.740416, -0.099934, 1.441439, 0.679013, -0.026579, -1.291594, 0.821814, -1.444613, 0.378002, -1.237264, 0.776617, 1.650559, -0.599831, -1.486651, 2.208962, 1.612762, -0.152083, 0.312454, -0.780365, 0.836352, -1.357335, 0.409555, 2.148610, 0.040995, -0.582008, -1.488098, 0.778950, -0.948026, -0.105779, -1.603354, -0.826412, -1.263508, 0.841681, 0.393536, -0.618987, -0.454573, -0.399477, 0.807182, 1.042100, 0.925306, -1.923373, -0.371112, -1.690097, 1.258905, -0.082998, 0.155621, -1.417452, -0.466420, -0.805716, -2.299913, 0.740507, 0.736747, -2.102597, 1.208312, -0.321116, 0.534798, -2.127077, 2.863468, -2.101935, 0.832168, 0.907185, -0.740861, 0.038978, -1.782803, -0.104133, 0.770151, -1.148970, 0.413161, 1.204063, 1.696370, -1.619192, 0.020373, -1.559261, 0.960475, 0.979535, 0.923266, -0.488058, 0.492934, -0.144024, -2.327816, 2.022524, -1.440611, 0.108279, -0.279674, -0.155505, 0.798701, -0.056014, -0.294278, 2.206000, -0.910635, 0.881155, 0.826537, 0.970949, -1.631114, 0.641060, -0.148350, -0.736448, -0.822219, 0.856293, -0.565143, 0.979652, -1.765983, -0.146638, -0.146924, -0.302271, -0.821319, 2.458336, -0.039127, -1.302429, 0.493974, -0.010817, 0.623926, 0.242641, 0.225246, -1.307361, -1.207909, -1.515617, -1.819017, 0.561071, -0.432049, -0.707660, -1.568873, 0.960589, -1.736133, 1.109109, -0.810065, 0.570154, 0.223099, -0.219678, -1.387539, 1.563754, 0.398388, -0.515691, -0.059579, 0.066663, 0.137895, -0.007136, -2.363673, 1.292044, -0.883938, 0.402916, -2.101223, -1.293249, -0.782252, 1.741922, -1.180961, 2.643937, 0.873179, -0.421559, -0.387711, 0.483488, 0.272855, 0.068270, -1.285595, 0.768579, 0.746763, -1.880166, -0.163995, -1.103554, 1.644326, -0.242998, -0.694097, -0.202326, 0.235676, 1.389961, -0.878601, 1.214517, 0.978233, -0.614626, -0.339939, 1.991670, 1.570582, 1.164850, 1.254028, 0.526178, -1.201949, 1.256997, 0.880162, -1.835717, -1.358657, -0.299310, -1.200479, -0.439876, -2.879921, 0.297092, -0.243779, -1.615714, 1.207358, 1.480990, -0.000176, -1.966240, 1.241313, -0.787065, -0.065835, -1.082595, 0.659999, -0.078458, 0.002960, -0.248386, 0.013503, 1.688254, 0.019804, 1.988132, -0.551538, -0.872949, 1.397220, -0.527877, 0.345855, 0.582937, 0.602458, 0.591416, 0.222826, -1.196631, -0.199450, -0.864577, -1.875637, -2.089008, 0.269194, 0.013410, 0.962869, -0.635835, -1.854655, -0.558910, -0.174547, 0.443956, -0.179187, 1.506913, 0.787906, -0.770978, -0.914367, 1.843023, -0.525664, -1.163644, 1.815685, -2.045644, -1.971285, -0.454759, -0.299318, -1.546627, 1.569486, -0.039063, -0.867976, -0.772743, 1.137805, 0.222620, 2.698856, 0.739607, -0.894983, -0.498391, -0.122941, -1.214579, -0.559240, 1.606550, -1.555603, 0.801038, -0.316427, 0.098728, 0.435727, -0.445676, -2.151925, 0.620124, 0.563274, 0.815215, -1.924090, -0.763942, 1.351880, -1.037696, -0.282910, -0.577423, -1.064838, 0.549606, -0.306820, -1.807750, -1.129748, -0.200598, 0.285173, -0.080972, -0.108569, 1.011825, 0.646562, 2.587377, -1.127719, 0.058741, 1.715399, 1.186736, 1.056106, -0.891992, 0.375106, 0.115689, 0.115049, -1.516074, 0.985668, 0.646881, 1.381310, 0.162735, 0.630620, 1.759756, -0.325400, -0.064484, -0.764386, 0.702778, 0.093406, 0.274499, 0.053771, 1.256388, -0.316700, 1.677390, 1.295013, 0.328956, 2.695897, 0.294012, 0.364170, 0.399002, -0.669916, -0.243286, 0.286304, -0.025567, -0.090067, 1.593134, 0.975813, 0.057530, -0.052480, -1.010988, 0.595204, -0.273142, 1.968936, -1.003460, -0.513743, -0.414154, 0.858540, -0.075493, 0.347344, -0.087578, -1.459482, 2.598408, 0.085175, 0.432063, -1.984317, -0.444593, -0.280373, -0.953162, -1.247448, 1.382244, -1.501154, -0.220791, 0.162217, -1.380368, -0.718552, -1.488998, 0.012630, -0.242820, 0.362484, -0.719212, -0.156390, 0.897794, 1.215247, 1.850641, -1.240722, 0.711088, -2.155905, 0.385672, 0.379773, -0.367983, -0.097212, -0.761376, -1.051372, 0.558224, 1.009418, -0.702509, 0.098717, -0.579659, -1.529299, -0.188772, -1.366829, 0.292776, -1.840204, 0.393781, 0.352524, 0.136623, 2.875350, -0.426938, 1.296896, 0.181012, -0.932693, 0.200156, -1.500470, -0.432169, -1.323778, 0.465284, -1.925291, 0.897134, 0.559693, 0.755321, 0.393539, -0.016400, 1.436149, 0.278063, 0.008358, 1.401231, -0.195222, 1.165173, 0.556411, 0.779170, 2.534855, 0.332789, 0.010363, -1.193108, 1.976624, -0.482135, 1.364415, 0.129918, 0.455798, 0.536617, 0.049097, 0.537206, -1.822129, 1.559727, 0.088116, -0.082443, -0.115912, -1.918898, 0.032354, 0.890131, -1.130087, 1.402009, 1.022251, -0.274734, -0.718177, 1.091370, 0.682092, 0.547391, 0.583889, -0.271413, -0.941980, -0.584171, -0.145908, -0.683017, 0.503695, 1.862961, 1.295420, -0.243690}, - { -0.983093, -1.504997, 1.689008, 0.852439, -0.052642, -0.226863, -1.682563, -0.516711, 0.024053, -0.423958, -0.498372, -1.387182, -0.092373, 1.346202, 1.228157, 0.176953, -0.292668, -0.007560, -0.729933, -0.213849, -1.360185, 0.957214, -0.775561, 1.299782, 1.010312, -1.364358, -0.332187, -0.874038, 0.158062, -1.655720, -0.126275, 0.280659, -0.245147, -0.799640, -0.174699, 1.544888, 1.106545, 1.490095, 0.981029, 1.147516, 2.028793, 0.696511, 0.499816, 0.572414, -1.410997, -0.439824, 0.976240, 0.658783, 2.363468, -1.360340, 0.948610, -1.433050, 0.988979, 0.630545, 0.467132, -1.881342, -0.534098, 2.063160, -0.531704, 0.232042, 3.310064, 0.418609, -2.377943, -1.255732, 0.948970, -0.916728, -0.074799, -1.274711, -0.503304, 0.820722, 1.316162, -1.173834, -0.139600, 1.431872, -0.484918, -0.824979, -0.243726, -0.236428, -0.636261, -1.040133, -0.168640, 0.609432, -0.070710, 0.679471, 1.503464, 0.395742, -0.955843, -0.149187, 1.876458, 0.985744, 1.576430, 2.534913, -0.224989, -0.679745, -0.534951, -0.557737, -0.255265, 0.782315, 1.196253, -1.377471, -0.677377, -0.477690, 1.541497, -0.907797, 0.835093, 0.747920, -0.988510, 0.764753, 1.362396, -1.786639, -0.077948, 1.828968, 0.832373, -1.464336, 0.013585, -0.532699, -0.500248, -0.578362, 0.246069, -0.515451, -0.315294, -0.339299, 0.067102, 1.289035, -0.096157, 0.763676, 0.005457, 0.290770, 0.199062, 0.676720, -0.801922, 1.250363, -0.493756, 0.454381, 0.278526, -0.520518, 1.099335, 0.902181, 1.691731, 0.560990, 0.669109, 0.571884, -0.629478, 1.189162, 1.121540, -1.351753, -0.502888, -0.379593, -1.125303, 1.628456, 1.911116, 0.329890, 0.160070, 0.607196, 0.313948, 0.672554, 0.034538, 0.986999, -0.073991, 1.216120, 0.872065, -0.736450, -0.241443, 1.776237, 0.837211, -0.032411, 0.235870, 0.303322, -0.696334, 0.058139, 0.423596, -0.801994, 0.475972, 0.078186, 1.687307, -0.655364, 1.148551, 1.584120, -0.183812, -0.240825, -0.462214, -0.538617, 1.165882, 0.495350, 0.779812, 0.857892, -1.163262, 0.305657, 0.378542, 2.370941, -1.621917, -0.346555, 0.339012, -0.411098, 0.204058, -0.523320, 0.160462, -1.358479, -2.612737, 0.470040, 0.407125, -0.257620, -0.793160, 0.488260, -0.299263, 0.143361, -0.428621, 0.310583, -0.836926, 2.055982, 1.483207, 2.152946, -0.934875, -0.123062, 0.341006, 0.471994, 0.205615, 0.362838, -0.171997, -1.464489, -0.726495, -0.405898, -1.146009, -0.718839, -0.897182, -0.742179, 1.481672, -1.073078, 1.530334, -0.337469, -0.158506, 1.132872, -0.560097, -0.850852, -0.145600, -0.769049, -0.906160, -1.239531, -0.214732, -0.732012, -1.048772, -0.407347, -1.235464, 0.200166, -0.163694, 0.012422, 0.896306, -1.642009, 1.233085, 0.173640, -0.287841, 1.098236, 1.133623, 0.568552, 0.289465, -0.001010, -2.022003, 1.477060, 1.272226, -0.132027, -0.007357, 0.123635, 0.501659, -1.566556, 0.159990, -1.693243, -0.052437, 1.549306, 1.020311, -2.348895, -0.457603, 0.193673, -1.505093, -1.641658, -0.687426, -1.349499, 1.551315, -0.716301, -0.046077, 1.567537, 0.739217, 2.318301, 1.074069, 1.035734, 0.749698, -0.284268, -1.311249, 0.861526, 0.060632, -0.482237, 0.492532, 0.511687, -0.586689, -0.198771, -1.384069, 0.397496, 0.153320, 0.454582, -1.036656, 0.292900, 0.831772, -1.091953, -0.387973, 1.277133, 0.624147, -1.059033, 1.292027, 0.320191, 0.943345, 1.068388, 0.560938, -0.913304, 0.182379, -0.024233, 0.736094, -0.617006, 0.666794, 0.436818, 0.803632, 2.981577, -1.355008, 0.534470, 0.305408, -1.299554, -1.547465, 0.146489, -0.393488, 1.081729, -0.518468, -0.818730, -0.908197, -0.494636, -0.302000, 0.061754, 0.186158, -1.455457, 0.946737, -1.479299, 1.322972, -0.385502, -0.304968, 0.186621, 0.496442, -0.265172, 0.491450, 0.650637, 1.684260, -1.086021, 0.252811, 0.604967, 1.302163, -0.354736, 0.396292, 1.420452, -0.921994, -1.250968, 0.828756, -1.766244, 0.085464, -0.208325, -0.657831, -0.022167, -0.145307, -0.155301, 0.824731, 0.138868, 0.134612, 1.319698, 0.709335, 0.213933, 0.288568, -0.265968, 0.792930, -0.475098, 0.960359, 1.208800, -0.291204, -0.826583, 0.299401, 1.075716, -0.535193, 0.306460, -0.860736, 0.015584, 0.553479, 0.593341, -2.125592, 0.883739, -0.285156, -0.195326, -1.736190, 0.267954, -1.065774, 0.006786, -2.461653, 1.879348, 0.824964, 1.494759, -0.133417, -0.335138, 0.374419, -0.672829, 0.316753, 1.775973, 0.712692, 1.293218, 1.237103, 0.615225, -1.324533, -0.752883, -0.077552, -0.566718, -0.480087, 1.376820, -0.653140, 0.094362, -1.558402, -1.366178, -0.638414, -0.236803, -1.504195, -0.546153, 0.301623, -0.779780, -1.079982, -0.062045, 0.211238, 0.249402, -0.194938, 0.236983, 0.895108, -1.142978, 1.403774, 0.653420, 1.900139, -0.522343, -1.101550, 0.385982, 0.632220, 0.815852, -1.039617, -1.144698, 1.494159, 0.047438, -0.856614, 0.858644, -1.619166, 1.664841, -0.541867, -0.195818, -0.586936, -1.779821, -0.309493, -1.766883, 0.420277, 0.487111, -0.206142, 1.039423, -0.075640, 1.325150, 0.060567, 0.258374, -1.071947, 0.665599, -1.951727, -0.867996, 0.128119, 0.574382, -0.144236, 0.032367, -0.221344, -0.495558, 0.391783, 1.337666, -0.469266, -1.365408, -0.245316, -2.075251, -0.736334, -0.876616, -0.899896, 1.075697, 0.345828, -1.298294, 0.296911, 0.309971, -0.616054, 1.004305, 0.889155, 1.877165, -0.248961, -0.081407, -2.515295, -1.471037, 0.024976, -0.945345, -0.172507, -1.401992, 1.010550, 0.302097, -0.615135, -0.424872, -0.911773, -0.363181, -1.505333, 0.019523, -0.309098, -1.411120, 0.127548, 1.057503, -1.249271, 1.256315, -0.071966, 0.735987, 2.067302, -0.773847, -1.151815, 1.615380, 1.054523, -1.326194, 0.646549, 1.749714, 2.170125, -0.593849, 0.974450, -2.046801, 0.389724, 1.074528, -0.619298, 0.085289, 2.492791, 0.475732, -0.627852, 0.519505, -0.032521, 2.125778, 0.416374, 2.674471, -2.293838, 1.172877, -0.328581, 1.510363, -1.037604, -0.756300, 0.656897, 0.285500, -0.644763, -1.202865, 0.423421, 1.596442, 2.694238, -0.383828, 1.469193, -0.711495, -0.757148, 1.399669, -2.110266, 0.521666, 0.449675, -0.713232, -0.376217, 1.499582, 1.552162, -0.707626, 0.298731, 1.503443, -0.351074, 0.202232, 0.979986, 0.111556, -0.934082, 0.347155, 0.068998, -1.204463, -0.347912, -0.144191, -0.512881, -0.323562, -1.041395, -0.562475, 2.433507, -0.056507, -1.302880, 0.633123, -0.943182, 0.347517, -0.563035, 1.008836, 0.950698, -0.553791, -0.333602, 0.271553, -0.880350, 1.332422, -1.453054, -1.457649, -0.251031, 0.150016, 0.002669, 0.929400, -0.383546, 0.049417, -1.106139, -0.143804, 1.401947, -2.304345, -0.569742, 1.034040, 0.486361, 0.548376, -0.468534, -0.100914, -0.443258, 0.850349, -1.027423, -0.194848, -0.445651, -0.142158, 2.481790, -1.459025, -1.410040, -0.987970, 0.965835, 1.526407, -0.049202, -0.356169, 0.849466, -0.077761, -0.924655, -0.155822, -0.711325, 0.249337, 1.228686, 0.677912, 0.467147, -0.412307, -0.501915, -1.272501, 0.139491, 1.039930, -0.097017, 0.065405, 1.153829, -0.793604, 0.370951, -1.792227, -0.412233, 1.158704, 0.907463, -0.817395, 1.615974, -0.247998, 2.978949, -1.638730, 1.371517, 0.951102, 1.409070, -0.953572, -0.783109, 1.258106, 1.698119, 0.032653, -0.955098, -0.172371, -1.603111, -1.456500, 1.565100, -1.083722, -0.158947, -0.347817, 1.385675, -0.077649, -0.562186, -0.456349, -1.631077, -1.438635, -2.848500, -0.779416, -0.392371, -0.770420, -1.289794, -0.695409, 0.038390, -2.190771, 0.086364, 1.318144, 0.025847, -0.261700, -2.079323, 0.520632, 0.197945, -2.525093, -0.608511, -0.826324, 1.197794, -0.720419, -0.676173, 0.412328, 0.952681, -0.291693, 1.401882, -2.279688, -0.100533, -0.605367, -0.231242, -0.542557, 0.981023, -1.143355, 0.120666, -1.959137, -0.459734, 0.895160, 2.435299, -0.673000, 1.075197, 1.499873, -0.637327, 0.451355, -1.637109, -1.574825, 0.747980, 0.114430, 0.022948, 1.529489, 1.682670, 1.416034, 0.033656, 0.622647, -1.030015, 0.289424, -0.049848, -0.733713, 1.445727, -0.850379, 0.672578, -0.498027, -1.800037, -0.414100, 0.809735, 1.752628, 0.660851, 0.704462, 1.064979, 0.026647, 0.152233, 0.299722, 0.453152, 1.605588, -0.222618, 0.833014, -0.181633, 1.274122, 1.063165, -0.487172, 0.141203, -0.655070, 0.672728, 1.118144, 0.963424, -0.478329, -0.276137, 1.363698, 0.953021, -1.878811, -0.920295, -0.636180, -0.518924, -0.450983, -0.790380, 0.503084, 0.091438, -0.068717, -0.680360, -1.190046, -0.518806, 1.868175, 0.593848, -1.148903, -0.504153, 0.358133, 0.407456, 0.093787, -1.988303, -0.254786, 1.074193, 1.212962, -1.161578, 1.146935, 0.335429, -0.035437, 0.310761, -0.323630, -0.753763, -0.943875, 1.315168, 1.157548, 0.033252, -0.113919, -1.384706, 1.118101, 2.138404, 0.536062, -0.057074, -0.070453, 0.580854, -1.109369, -0.311874, 0.119988, -0.879639, -1.448909, -1.119467, 1.080115, 1.340303, -1.221041, -1.630454, -1.124092, -0.549454, 0.182329, -1.032038, 0.064650, -0.631550, -1.149689, 2.590124, -0.382573, 0.411398, 1.595692, -0.581483, -1.920548, 1.036230, -1.294128, -1.550439, -1.825664, -1.136718, -1.004473, -0.408208, -0.515493, -0.141035, -1.243196, -0.389756, -0.153286, 0.590664, -0.259714, 0.588485, -1.338604, -1.672666, 0.646251, 1.897516, -0.848231, 0.442896, 1.390109, 0.455500, 0.147027, -0.733007, -1.039997, -1.109757, -0.520237, -1.656324, 0.862061, 0.897123, -0.215765, 0.579153, -1.774879, 1.339885, 0.656980, -0.683979, -0.776324, 0.075425, -0.624938, 1.188162, 0.029376, 1.999927, -0.694213, 1.641559, -0.139565, 0.977361, -0.440677, 0.716551, -0.713138, 0.542474, 2.190345, -1.427835, 1.279513, 0.123449, 1.333007, 0.170215, -1.459986, -1.115168, 0.024330, -0.499763, 0.743400, -1.116687, 0.169877, 0.253489, 0.001254, 0.496192, 0.419524, -0.336320, -0.738473, 1.057630, 0.455031, -1.144652, -0.211007, 0.066468, 0.309799, 0.282313, 0.602273, -1.140669, 0.724713, -1.215900, 1.597776, 0.437830, 0.950187, 1.470075, 1.236441, 1.003427, 0.299022, -2.007146, -0.593624, 0.169609, 0.609102, 0.420829, -0.390335, 0.853639, -0.690414, -1.440160, -0.431041, 0.153770, 0.449729, -0.191969, -0.303385, 0.832239, 0.748193, -0.103568, -1.759449, 1.482179, -1.963307, -1.975549, 0.664533, -0.232829, -0.640030, -1.462368, -0.683268, -0.736704, -0.529999, 0.387158, 0.432750, 0.649493, -0.088709, -0.803069, -0.899639, 1.428242, -0.454638, -1.029092, 0.037624, -0.708494, -0.351422, 1.421274, -0.372453, -0.157853, 1.814718, 0.585491, 0.919518, 0.334817, -2.671010, -0.771587, -0.395982, 0.082838, 0.859022, -0.356058, -0.540233, 0.654218, 0.098357, 0.078977, -0.169725, -2.216716, 2.321392, -1.263653, -1.639489, -0.161886, 1.797469, 0.796801, -1.759298, 0.046668, 1.317824, 0.318675, 0.457329, 0.124017, 0.526361, -0.342122, 0.957925, 0.297107, -1.101054, -0.096374, -0.766925, 0.993858, -1.519713, 1.198808, 0.136192, 0.350640, 0.771633, -2.391844, 1.691390, -0.432016, -0.583463, 1.281393, 0.001705, 1.768327, -0.389773, -1.929848, 0.181209, -0.236180, -0.727279, 0.396655, 0.735341, 0.516617, 0.739636, 0.439700, 1.041834, -0.932685, 0.797094, -0.594365, -2.089081, 1.232674, 0.952684, 0.421472, 0.320388, -0.905656, 0.064582, -0.472792, -0.520134, -0.113316, -0.448894, 2.523464, -1.101831, 0.271383, 0.090401, 0.201738, 0.211246, 1.631039, -0.427858, -0.089690, -0.744756, -2.058145, 0.155760, -1.241777, 1.393911, 0.660004, 0.680098, -0.026877, 0.648867, 1.162161, -0.293747, -0.753800, 0.218407, 1.240208, 1.058819, -0.687679, 0.775595, 1.421356, 0.111639, 0.300615, 0.590659, 0.142563, 0.527875, -0.047042, -0.063115, -1.396309, 0.698869, 0.969490, 0.648679, 0.683787, -0.238478, -0.255841, 0.804804, -0.421125, 0.715479, -0.893196, 1.526561, 0.466601, -2.522992, 1.958711, -0.631540, -1.062824, 0.894885, -0.117180, -1.646037, -0.396795, 1.682567, 0.873272, -0.300163, -0.488435, -0.600554, -1.618806, -1.552022, 1.563859, 0.176570, -1.075827, -1.608512, -0.421313, 1.102388, 0.766085, 0.374220, 1.082020, 1.032764, 0.247305, -1.712391, -0.387175, 0.296980, 0.673349, 0.652994, -2.267193, -1.027173, -1.491370, -1.300861, 0.641465, -1.447194, 0.921470, 1.494575, -1.738147, 1.029322, -0.238429, 3.944252, -1.858202, 0.965250, 0.111650, 0.492753, -1.078780, -1.064432, 0.202608, 0.103263, 1.468485, -0.783521, 0.998328, -0.294328, 1.243496, -1.174095, -0.241644, -0.477749, -1.094207, 0.111191, 1.652724, 0.270623, -0.389710, -1.990528, -0.371761, -1.342540, 0.025078, -1.171046, -0.209873, 0.574598, -0.400453, -1.333045, 0.297309, 0.536143, 0.175845, -0.125545, 0.532479, -0.226725, 1.124272, -0.122223, 0.376941, 1.594683, -0.096963, -0.620522, 0.503085, 0.714843, 0.136970, 1.543441, 0.286328, 1.754051, -0.031995, -0.239854, -0.439124, -0.375587, -0.573422, -2.523869, 0.370188, 0.355069, 0.312702, 1.373385, -0.705369, -0.186068, 0.635314, 1.257145, -2.306593, 0.532931, -0.520057, -2.123441, 0.770760, 0.131061, -0.580467, 1.107031, -0.136774, -0.814422, -1.011282, 1.364228, -0.564059, 0.196449, 1.071259, 0.286440, -0.998934, -0.659317, 0.170427, -0.124163, -1.919715, 0.694349, -1.344015, -1.627307, 0.264728, -1.180809, -1.600698, 0.910272, 0.668416, 0.591804, -1.444495, -0.100292, 0.170246, -0.620557, 0.254871, -0.595982, 1.607220, 0.496604, 0.456864, -1.013848, 0.570288, 1.238282, 0.059926, -0.804134, -0.229830, 1.313047, -0.036581, -0.645909, 0.849226, -0.841254, 0.637696, -0.006790, -1.117225, -1.223496, 0.532122, 1.437943, 0.313193, 0.777079, 0.523695, 0.143542, 0.462147, -0.428846, -0.859621, -0.416319, 1.290499, -1.228700, -0.528598, -0.513428, -0.329979, 0.845264, -1.828704, 1.289198, -1.389530, -0.525195, -0.627715, -0.694439, 0.683373, 0.331896, -1.636399, 0.062987, -0.357486, -0.330755, 0.155987, 1.124698, -0.097505, -0.008566, 0.834628, -1.509664, 3.011877, 1.167927, -0.032858, -0.346876, -0.511607, -0.643727, 1.146502, 1.060457, 2.279578, -0.685013, -1.105823, 0.226285, -1.405451, 0.589699, -0.198798, 0.769598, 1.560236, -1.135482, -0.946744, 1.080024, -0.942545, -0.125823, -0.140093, 1.518602, 1.550683, 0.670537, -0.979237, -0.135571, 0.691111, -2.179273, 1.522715, -0.902083, 0.169711, 0.748197, -0.401738, 0.711879, 0.146837, 0.166967, -1.012216, -0.386270, -1.474840, -1.029694, 0.238140, 0.572346, -1.084528, 1.181987, 0.338870, -0.415882, 0.978265, 3.052023, -0.460653, 0.447942, -0.825437, 0.579341, 0.210204, 1.498957, 1.393516, 1.065901, -0.341066, 1.313511, 1.469314, 1.839837, 0.763915, 0.101351, 0.159119, -0.804719, -0.671127, -0.846009, 0.103537, -1.127330, 0.340967, -0.331173, -1.106795, -1.611075, 0.873617, -2.482416, -2.017159, -0.090958, 0.199061, -0.851253, -0.468982, -0.846197, -0.010857, 1.247604, -0.112930, -1.173738, 1.097007, -1.362036, 0.461624, -0.887446, 0.266209, 0.786044, -0.505527, 1.521219, 0.027529, -0.161232, 0.035609, -0.137226, -0.576014, 0.375179, -0.089743, 1.770654, -0.246111, 0.631284, 0.368234, -0.079831, 0.706911, 0.263395, -0.176806, 0.126358, -0.353634, -0.495124, 0.204023, -0.727704, 0.245956, -0.706063, -0.813591, -0.224182, 0.136407, -1.388950, 0.098091, 0.504615, 0.658595, 0.720413, -0.379698, 1.908575, 0.947730, -0.217494, -1.050232, -1.191591, 0.017484, -1.248917, -0.159007, -0.752488, -0.763944, -0.750282, -0.385585, 0.269485, -0.026662, -0.720137, -1.077977, 0.157672, 0.760777, -1.601510, 0.013697, -0.032575, 0.931438, 1.239286, 1.396600, -0.052502, -0.114691, -0.134030, -0.842362, 0.391681, 0.892765, 1.568239, -0.126351, 0.758177, 0.724422, -1.336194, 0.535676, 1.556854, -0.154454, -0.313646, -0.454839, -1.012902, -1.139182, 0.735333, -0.050211, 0.948452, 0.438588, 1.340435, 1.069766, 0.642956, 0.242907, -1.151919, -1.251647, 1.331088, -0.579428, 0.334021, 0.122267, 0.068165, -0.964619, 0.428452, -0.050823, -0.002404, 0.041571, 0.405068, -1.233422, 1.260676, 0.094039, 0.307017, 0.151906, -0.027208, -1.007060, 2.334523, -1.264616, 0.356730, -0.535358, -0.762092, -0.275978, -1.702179, 0.030233, 1.046483, -0.584955, -0.836679, -0.006426, -0.390403, -0.083576, -0.981609, 1.930915, 0.510260, 1.647643, -1.071337, 1.382740, -0.228110, -0.277829, -1.409842, -1.575530, 0.718559, 1.423620, 0.656442, 0.095158, -1.461268, 1.772774, -0.063188, 0.879273, 0.828065, 0.046859, 0.459797, -0.582491, 1.411395, 0.530982, 0.582250, -1.730930, 0.627733, 0.785046, -0.999845, -0.547387, -0.419686, -1.621249, 1.620737, 0.715163, 0.709301, -0.497149, 0.873044, 0.005235, 0.064333, -0.231492, -1.151721, 1.434699, -2.263251, -1.223966, -1.371840, -0.583872, -0.066960, 0.095307, -1.494739, 1.547723, -0.592914, -0.549290, -0.768478, 2.203256, 1.172009, 0.520945, -0.737783, 0.032632, 0.560585, -0.157471, 0.441311, 0.637888, -0.347510, -0.854300, 0.468636, 0.326277, 0.037493, -0.627628, 0.368331, 1.217785, 0.471044, 0.586213, 0.417014, 0.610770, -0.523289, -2.253046, -0.082169, 1.246606, 0.652022, 0.032568, -1.690161, 0.784274, 0.187848, -0.016704, 0.180777, -0.536112, -0.624964, 0.317434, -0.777492, -0.066978, -2.195325, -0.291884, -0.880146, -0.083134, -2.587639, 0.272380, -0.323443, -0.701542, 0.685047, 0.192190, -0.965801, -0.560545, -1.679947, -0.557893, -1.030836, 0.267407, -0.262967, -1.179673, -0.298339, 1.599047, -0.244753, 0.107751, 2.064767, -0.296402, -0.471424, -0.153215, -1.991362, 0.624160, 0.582543, -1.285040, 2.206616, -1.725150, 0.770780, -0.816521, -0.886885, 0.723865, -0.874660, -1.764038, -1.496891, 1.192002, -1.447032, 0.932691, -0.995677, 1.105767, -0.102498, -0.568651, 0.594325, 0.732207, 0.739735, -0.219874, 1.695695, -1.483837, -0.909240, 1.747754, 1.800451, 0.354175, 0.670781, -0.432108, -0.276626, 0.012963, 1.732390, 0.132192, -0.885501, 1.517562, -1.904314, 0.051587, -0.669467, -0.285791, 0.342109, -0.139177, 1.684336, 1.228523, 0.016126, 0.229721, -0.982781, 1.346502, -1.035287, 0.241883, 0.186249, -0.725379, -0.162901, 0.087371, -1.917082, 0.710105, 2.211643, -0.582104, -0.618074, 0.204563, 1.226239, 0.563332, -0.908039, 0.564280, 1.755763, 0.644147, 0.314296, 0.408741, -0.394023, 0.186321, 0.731211, 1.043871, -1.683537, 0.232675, 2.661016, -0.007126, 0.071304, 1.941659, 0.778512, -0.121223, -1.590724, 0.771539, 0.688840, 2.668835, 0.099935, -0.789626, 0.110579, -1.199935, -0.704327, -1.075098, 0.743019, 0.067843, -1.819114, -0.965535, -1.885677, 0.512821, -1.058960, -0.139818, -1.075315, 1.209155, -0.224580, -2.634801, -0.152983, 0.103507, -1.012315, -0.601402, -0.502514, 0.921512, -0.307779, 0.390481, 0.222684, 0.538818, -0.724732, 0.512896, -0.341587, -1.628292, 0.311701, 1.300361, 0.003195, -0.716713, -0.905372, -0.218456, 1.245588, -1.620003, -1.169858, -0.848704, 1.669947, -1.617545, 1.274624, 0.032676, 0.085381, 0.095743, 1.019916, 1.243629, 0.890282, -0.896734, -0.936238, 0.446448, -0.294272, -0.839754, 1.447886, 0.522244, -0.301482, -1.253581, -0.281894, -0.566144, 0.725699, -1.826116, -1.757009, -1.132609, 0.683045, -0.400081, -1.174145, 0.632511, 1.124698, 0.218457, -0.832357, 0.696695, 0.116584, -0.471129, 1.437333, 1.646122, -0.301018, -1.540725, 0.608275, 1.267470, -0.880230, -1.784812, 1.072743, -0.432968, -0.403319, -0.094595, -1.290795, 0.079966, 1.536603, 1.105837, 1.804963, -0.555791, 1.120286, 0.180027, 0.325066, 0.815784, -0.253511, -2.012888, -1.089141, 0.341569, 0.350146, -0.054427, 1.785970, -0.109931, 0.892780, 0.228590, 0.595735, 0.905499, 0.493174, -0.945160, 0.415151, -0.046206, 0.358983, 0.170447, 0.591312, -0.696462, 0.025580, -0.714038, 0.074132, -1.808567, -0.311356, -0.951089, -0.716697, 0.906483, 0.503965, -2.401863, 0.078614, 2.144657, 1.752178, -1.248648, -1.558600, 0.101818, -1.114887, 0.947770, 0.109147, 0.201624, 0.137294, 0.627635, 0.474355, 0.024761, -0.199443, 1.163311, -0.752377, -0.133441, -1.042710, -1.591810, -0.911297, -0.802619, 0.336050, -0.341400, 0.585704, -1.797125, 0.913613, -0.286320, -0.529742, 1.485931, 0.290997, 0.419821, -0.663768, 0.680643, -0.057951, 0.066694, 0.095555, -0.878811, -0.796205, -0.201340, 0.092119, 0.044641, 0.544796, 1.484176, 0.740957, 0.451265, 1.266862, 0.739636, 0.086038, 0.766067, 0.522669, 0.264659, -0.120888, 0.216845, 1.741144, 1.826327, -0.479842, -0.888488, 0.422769, -1.184254, -0.789990, 0.419419, 0.935405, -0.379517, 0.840036, 0.533450, -0.031845, 0.537035, 0.073232, 0.199909, 0.138907, 1.424687, -0.047092, -0.833917, 0.038313, -0.789088, 1.286600, -0.748881, 0.543016, 0.846118, 0.634078, -0.450082, 0.273662, -0.127422, -0.159451, -0.631820, -0.438196, 1.538763, 0.425009, -0.045875, 0.467078, 0.351687, -1.209834, 0.236203, -1.877868, -2.454891, 1.362600, -1.057093, 1.204769, -0.254387, -0.716294, 1.846617, 0.918987, -1.564549, 1.344444, -1.662343, 0.728193, 0.486014, 0.932001, 0.096760, 0.341350, 0.528905, 0.091434, 0.614079, 0.089286, 0.441762, -0.890917, -0.162001, 0.934085, 0.276646, -0.396393, 0.193290, 1.736740, 0.022379, -1.862810, 0.379973, 1.280819, 0.542132, 0.520761, -1.270345, 0.795990, 0.458021, -0.071172, -0.145970, -0.017641, -1.136748, -1.082206, -0.745291, 0.048666, 0.943403, 0.263293, -0.115814, -0.419788, 1.952204, -0.925678, 0.683042, -0.167871, 0.003482, -0.213994, 0.411095, 0.315338, 0.275489, -1.889730, -0.698190, -1.541218, -0.471606, -2.830535, -0.564631, -0.181840, 0.735779, -0.663644, -1.367815, 0.267417, 0.228871, -1.236638, -0.575487, 1.681041, 0.596803, 0.180697, -1.794327, -0.605370, 0.573286, 1.022513, -0.558121, -0.063327, 1.731009, -0.849625, -1.096743, -2.294090, 0.090971, 0.188497, 0.520447, 1.124376, 0.352552, -2.517990, 1.561249, 0.229529, -0.631458, 1.316949, -1.552281, -0.481973, 0.419865, 0.561258, 0.193756, 0.891034, -0.525884, 1.029616, -1.546680, 1.916917, 0.240219, 1.109516, 1.019885, 0.049455, 1.995421, 0.379435, 1.694660, 0.959406, 0.817115, -1.023019, -0.235700, 0.825637, 0.028711, -0.343540, 1.032994, 0.619893, -0.110856, -0.385887, 1.068830, -0.927033, -0.297884, 0.410196, 2.540039, -1.499079, 0.279449, 0.399899, -0.494673, 0.213273, -0.088056, 0.740269, -0.911896, -0.030318, 2.038972, -0.778129, 0.975980, -0.304287, 1.270547, -1.203336, 1.452976, -2.167352, 1.264598, -1.598946, -1.566718, 0.183012, -1.101650, -0.519276, 1.846887, -1.403084, 0.681304, -0.300873, 2.311713, 0.957460, -0.218110, 0.837892, -0.265138, 0.691482, 0.548971, -0.607123, -0.935869, 0.173993, -1.251281, 1.820393, -0.903768, 2.422347, -1.753490, 0.464680, -0.487359, -1.103086, 0.219467, -0.577101, -0.568645, -0.743203, 0.539766, 1.691486, -1.534633, -0.182533, 0.456057, -1.124469, -1.243077, -0.399000, 0.000318, 0.792487, 0.596467, 1.306834, 0.652228, 1.489893, -0.194578, 0.606692, 0.134574, 0.763926, -0.624669, -0.202281, 1.960168, 1.204264, -0.069937, -0.925830, -1.378291, 0.932060, -0.303514, 0.935499, -1.914292, 0.385898, 0.166346, 0.581124, -0.245395, -0.143091, -0.199783, 0.923457, -1.394343, -0.560154, 1.361135, 1.745647, 1.139060, -0.689184, 0.978894, 0.463933, 2.011608, 0.064100, -0.289482, 0.946763, -1.234082, 0.156069, -2.149051, 0.140043, -1.220015, 0.360217, -0.737686, 1.120746, -1.259606, -0.532519, 1.284235, 0.233486, -1.149622, 0.804189, 1.523195, -1.778994, -1.222941, 0.233423, -0.305394, -1.422051, 0.438451, 0.384012, -0.044099, -1.716174, -0.344945, 0.692482, -0.928128, -0.052847, 0.122735, 1.691219, 0.112818, -1.107622, 1.452040, 1.280817, -1.999826, 0.833575, -1.229772, -0.231902, 0.610070, -1.173033, -1.112078, -1.217899, 0.103263, -1.860923, -0.713389, -2.234493, -0.318021, 0.605091, -0.046884, 0.351298, -3.238503, 0.599061, -1.590511, -0.382465, 1.499645, -0.368768, 0.059807, -0.810084, -0.082782, -1.323444, -0.157666, -0.079778, 0.408359, -0.829038, -0.751103, -0.962780, 2.193781, 0.269622, 0.149634, -0.156015, 0.125435, 0.643258, 3.274923, -0.348060, 0.002705, -0.647955, 0.020039, 1.109778, 0.258100, -0.907328, -1.103651, -0.484972, 1.024585, 0.741973, -0.226772, 1.020938, 0.499352, 0.235172, 0.738548, 0.787095, 0.625934, -1.327732, -2.086107, -0.832856, 0.079739, 0.268940, -1.238683, -0.634566, -0.477485, -0.367884, -1.242857, -0.312081, 0.681902, 0.882958, 1.254995, -0.167477, -1.217416, 0.754707, -2.367965, -0.626828, 0.225967, -0.727434, -0.592906, -0.117011, -0.691285, -0.524886, 1.873445, -0.182071, -0.728334, -0.201684, 1.053455, -2.344703, 0.946009, 0.672189, 1.083269, -1.311616, 0.706246, -1.444814, -1.758793, 0.109823, -0.419026, -0.736907, -0.639920, 0.536340, -0.622469, 1.568338, 0.099852, 0.969737, -0.263650, 1.022313, -0.130073, -0.326466, -1.499172, -0.242417, 1.174083, -0.970962, 1.283451, 0.206247, -1.647758, 1.773544, -0.041347, -1.246374, 0.753146, 0.189310, 0.879654, -1.303974, 0.850342, -0.097866, 2.855169, 0.690653, 3.597145, -0.645675, 2.275282, 2.264520, 0.256012, 0.066188, -1.094239, 0.336229, -0.635581, 1.835892, -0.651171, 0.325442, 0.769568, 1.284737, -1.369916, -0.163810, 0.458260, 0.867070, 2.114308, 0.129041, 0.815176, 2.130857, 0.547459, 0.552881, -0.384379, -0.111858, -2.414465, 1.347841, 1.459552, 1.395295, -0.740588, -3.384161, -0.086892, -0.674921, -1.607548, -0.696350, -0.893506, 1.198571, -0.550440, 0.816936, 1.016265, 0.842840, 0.570665, 0.418131, -0.621630, -1.677645, -0.045504, 0.634927, 0.232144, -1.731583, -0.509662, -0.422844, -0.171595, 0.762678, 0.748308, 1.197695, -0.186461, 0.367308, 0.853758, 0.680082, 0.614641, 1.889122, -0.371895, 0.390753, 0.106858, -0.964265, 0.538948, 0.684802, -1.049766, -0.742857, -0.621754, 0.558155, 2.393028, -1.520358, 0.846200, 0.044463, 0.229704, -0.445941, -0.487096, -1.317962, -0.007152, -1.669969, -0.009625, -0.965176, -1.363039, -0.334475, 0.328443, -1.676896, 1.676282, -1.089136, 0.587593, 0.483999, -0.007582, -0.056238, -0.110378, 1.203782, 0.612845, -0.350349, -1.334917, 1.244733, -0.817702, 1.244112, -0.951136, 0.215253, 1.241477, -0.546881, 1.018512, -1.255374, -0.097423, 2.260577, 0.124214, -0.248872, -1.441602, -1.050383, -1.293818, -0.362505, 0.804698, 1.775938, 0.499425, 0.777173, 0.737156, 1.096813, 1.070791, 0.507341, 0.106322, 0.608585, -1.446946, 0.477057, -0.121663, 0.795934, 0.947460, 1.375368, -0.849977, 0.715402, -2.200944, -0.489656, -0.884779, -1.025211, -0.788321, -0.023901, -0.789196, -0.042571, 1.239970, 2.379713, 0.171058, 0.103795, 0.606270, -1.608247, 1.416516, -0.909894, 0.657470, 0.960922, -0.746216, -0.806572, 0.033708, -1.369520, -0.266819, 0.090347, 0.509608, -0.248996, -0.735197, -0.693049, -0.024490, -0.301243, 0.102943, 0.199751, -0.132859, -1.159332, 0.573181, -1.068949, -0.498309, 0.772656, 0.153209, -0.657340, 0.050796, 0.759697, -0.829038, -0.434990, -1.133309, -0.492490, 0.654510, 0.773751, 0.538183, 1.220387, 1.099179, 0.725080, 0.029437, -0.881871, -0.551479, -0.204937, -1.757117, 0.698953, 1.542494, 0.644348, -2.115573, -0.065121, -0.400810, -1.694086, 1.878602, -1.538846, -0.551390, 0.638339, -0.481102, 0.458051, -0.714383, 0.176170, -0.760979, 0.231547, -0.596368, 0.343202, 0.772300, -1.267514, 0.314336, -1.219111, 0.295803, -0.396475, -1.032794, -0.545667, -3.286586, -0.111250, -1.313947, -0.209656, -0.788196, -0.721227, -1.037382, 0.432920, -0.114856, -0.601111, 0.384281, -1.375650, 0.754939, -0.148504, -0.445098, 1.452077, 1.804115, 0.028117, -1.838639, -1.339139, -1.836395, -0.763915, -0.291530, 0.884907, -1.124850, 0.568960, -0.650669, -0.750237, 0.822205, 1.472903, 0.242534, 1.462725, 0.764221, -1.074732, -1.071990, -0.865600, -1.456285, -1.096274, 0.184368, 1.719182, -0.862572, 0.087241, -0.197046, -0.457307, -1.823589, 2.627374, 0.783945, -1.003779, 0.206574, -0.953086, 0.532852, 0.619520, -1.378216, -0.311258, 0.865027, 0.909415, -1.387156, 1.212136, -2.209523, 2.773308, -0.345094, 0.558097, 0.590485, 0.072100, -1.097392, 1.134982, 2.153804, -1.291377, -0.923894, 0.948272, 1.942132, -0.014423, -2.059298, 0.278989, 0.323110, -1.113875, -1.952412, -1.006567, 0.416797, 1.050996, -0.228020, -0.736134, 0.561660, -0.356462, -0.742087, -1.084345, 0.503272, 0.418055, 0.420612, -0.571402, 0.270388, 0.315510, 0.125730, 0.329237, 0.111774, 0.281052, -0.659634, 1.253830, 0.447354, -0.385666, -0.648878, 0.192956, 0.213230, 0.619238, 0.654071, 0.400554, -0.657582, 1.565078, -0.555640, -0.680927, -0.658510, -0.123976, -0.528578, -1.994702, 0.660791, -2.069070, 0.885234, -0.971248, 1.789271, -0.167909, -2.129750, -0.885771, -1.051292, 0.393300, 1.457115, -0.833682, 1.303036, -0.318364, -0.476482, 0.269556, 0.618594, 0.195107, -0.171919, 0.928795, 0.528894, 1.630606, -0.050139, -0.615800, 0.195950, -0.289427, 1.308965, 0.517201, 1.058555, 1.262139, -1.019838, -0.166300, -0.022473, 2.282791, 0.534206, 0.049370, -0.612647, 0.605013, 1.926225, -0.823302, -0.026712, -0.574431, -0.344630, -0.000880, 0.760657, -0.630067, 0.155759, 1.086287, 0.085857, 0.738797, -0.038719, -0.570407, 1.515545, 0.144131, -1.134749, -1.231730, -0.624401, 0.451340, -0.805257, 0.400244, 0.011199, 0.323038, 0.552727, 0.165034, -1.218125, 0.092322, -0.463958, 1.317818, -0.657967, -1.594268, 0.861709, 0.820080, 0.420394, 0.725182, -0.298505, -0.389230, 1.384899, -0.219751, -0.371714, 0.822450, 1.201430, 0.100548, -0.278114, -0.399451, 1.761437, 0.948007, -1.071918, -1.346583, 0.215357, 1.370689, 0.123228, -0.308579, -0.823155, 0.359772, -0.172389, 0.626381, -0.144721, -0.388125, 2.482474, -1.486362, 1.987924, -1.403528, 0.421666, -1.435877, 0.602172, 0.011298, 1.577353, -1.658217, 1.176515, -0.013049, 0.492604, 0.832108, 0.416851, 1.720755, -0.783004, 0.051518, 1.233887, 0.950312, 1.295694, -0.630398, -0.230060, -2.085841, 0.206733, 1.777459, -0.712053, 0.263313, -1.367420, -1.661427, 1.633955, 0.264516, -1.469857, 1.233839, -1.562248, -0.285862, -1.329347, 0.288772, 1.087265, -1.244013, 0.270511, -1.001265, 1.442534, 0.222338, 0.403805, -1.801479, 0.836810, 0.032710, 2.184687, 1.424083, -0.584917, -0.283094, -0.679288, 0.837390, -1.477519, 0.947693, 1.108716, -0.242318, 0.418898, 1.129318, -0.043781, 1.010266, 0.587456, 0.552694, 0.485307, -0.911079, -1.474590, -1.444921, 0.144605, 0.859992, -0.140263, 2.144085, 0.571181, 0.668334, -1.261104, -1.505537, -0.142553, 0.905944, -1.783273, 0.203243, -3.049428, 1.109981, -0.119054, 0.363287, -1.209777, 0.850142, 1.103748, -0.578901, 0.202859, -2.602454, -1.219928, -2.222341, 1.699615, 1.315716, -0.835175, -0.319744, -0.704893, 0.639997, 0.582240, 0.268216, -0.116655, 0.177476, -0.497349, -0.064557, -1.221388, 0.915948, -3.019886, -2.781874, 0.296599, -0.645163, 0.019030, -0.610654, -0.932680, 1.662467, -0.433710, 1.201454, -1.602482, -0.771650, 0.542878, -0.059642, 0.110350, -0.365260, -0.659802, 0.667127, 1.412355, 1.405997, 0.126664, -1.412854, -0.431512, -2.119984, 0.099949, -3.022939, -0.802788, -0.065689, -1.133384, -0.332183, 0.870766, -0.450917, 0.353133, -0.292761, 1.191484, -0.718563, -1.851259, 0.862291, -0.374218, -0.452603, -0.642518, -0.597050, -0.626641, 0.584423, -0.025279, 0.280219, 0.776167, -0.483173, -0.705251, -1.432658, -1.022790, -1.392157, 0.584329, 0.138391, -0.889668, 1.316972, -0.199282, -1.158828, 0.343230, -0.673243, 0.110015, 0.925401, -0.811977, -1.964039, 0.208911, -0.366249, 0.762380, 0.129335, 0.656758, 0.554861, -0.558642, 1.217487, 0.895644, 0.909092, -0.382637, 0.055226, 1.157098, -1.363181, -0.036041, 0.023808, 0.634215, -1.296915, 1.087658, -0.068615, 0.173005, 1.056740, 0.510327, 0.208614, 1.262423, 0.897627, -1.711390, 0.499536, 0.040155, -1.240188, 1.314165, -0.920566, -0.446976, -0.216056, 0.155500, -0.015665, -1.546679, -0.995939, -0.763947, -1.796529, -2.409871, -0.029098, 0.271461, -0.745800, -2.008286, -0.927230, 0.065471, 0.359163, 0.789661, -0.876824, 0.200356, 1.039542, 0.235464, 0.258948, 0.060692, -0.116278, -1.737092, 0.780957, 1.266407, -0.180647, 0.505690, -0.133874, -0.737905, -1.284374, 1.043119, -0.350721, 0.674804, 0.710027, 0.624824, -1.050752, -0.387217, -2.484569, 1.038849, -1.280589, 1.643923, -0.248830, 0.908984, -0.731589, 0.644337, 0.570423, 0.239877, 1.495266, 0.424171, -0.448426, -1.386445, 0.492990, -0.293027, -0.141827, 0.003751, -0.957691, -1.462403, 2.250988, -0.973675, -2.951337, -0.305153, -0.941560, -1.183053, 0.611710, -0.376358, -1.106333, 0.300617, -0.721330, 1.101456, 0.431116, 0.563714, 1.399399, 1.130291, -0.552077, 1.061333, -0.092885, -0.490149, 0.339786, 0.356425, 1.881743, 0.091920, 0.575208, 0.363533, 0.352643, -0.285782, -0.262878, -0.809452, -1.608636, 0.467058, -0.011425, 0.239629, -1.127596, -0.318725, 1.258444, -0.404076, 0.383442, -0.088286, -0.353377, 1.171918, 0.470011, -0.402276, -0.372206, -1.297728, -0.870016, 1.614759, -0.675132, -0.373451, 0.888947, -0.820048, 0.942631, -0.859537, 0.956158, 0.414521, 0.219664, 1.466850, -0.151739, 1.715385, 0.102885, -0.629379, 0.795217, -0.049454, -0.910070, 0.942119, -1.212939, 0.451908, 0.264988, -1.374320, -0.928955, -1.289076, -1.261226, 1.122338, 0.151613, 1.084357, -1.247185, 1.355480, -0.496006, 0.202836, -0.279352, 0.061925, 0.075123, -0.010633, 1.665442, -0.259836, -0.194655, -1.194671, -0.155750, -0.569273, 0.441884}, - { 0.306053, 0.655023, 0.601022, 1.890180, 0.779185, 0.745997, 0.044883, 1.027930, 1.144791, -2.065500, -0.955389, 0.814198, 2.276800, -0.441706, -0.362342, -0.469636, -2.299112, 0.163438, 0.977913, 0.669896, 0.910154, 2.037225, 1.283853, 0.246283, -1.148569, 0.091599, 1.516956, -0.596582, -1.884530, 1.813483, -0.745703, 0.113068, -0.043826, 0.329446, 0.402982, 0.404139, 1.509598, -0.382893, 1.354240, 1.052974, 1.958785, 1.899341, -1.892131, -1.484339, 0.719642, 0.097261, 0.900479, 0.640860, 2.412882, -0.124725, 0.118307, -0.216208, -0.484342, -0.129433, -0.389852, -0.196844, -2.088548, -2.354909, 1.975723, 0.924680, 0.156747, 1.443496, 0.061418, 0.449164, -0.383296, 1.003783, 0.706093, 0.573518, -0.429927, -1.467220, 0.816274, -0.479154, -0.078750, -0.225255, 0.645629, 1.527311, 0.410746, -1.101803, -0.687578, 1.065136, -0.803712, -2.091181, 1.489167, -0.688606, 0.715771, -1.817188, -0.700249, -0.808454, 0.674843, -0.671634, -0.664611, 0.567812, -0.938628, -1.178422, 1.052407, 0.829454, 0.333921, 0.282373, -0.308495, -0.910188, -1.161811, 0.033027, -0.255470, 0.527855, 0.110178, -1.293394, -0.027141, 0.428618, 0.763337, -0.273234, 0.110821, -1.339046, -0.566313, 2.186830, 0.265084, 0.421920, -0.804885, 0.810508, -0.109380, 2.019528, 1.078617, -0.336461, -0.068866, -0.306429, -0.157813, 0.304983, -0.859182, 1.100367, -0.255995, 0.286705, -0.966163, 1.436331, 1.610193, -0.856852, -0.525730, 0.130290, -1.122079, 0.383032, 0.271746, 0.084785, -0.513179, 1.779457, -1.635670, 0.054635, -1.154547, -0.337266, -0.157128, -0.061562, -0.929907, -0.450199, 0.936423, 0.514459, -0.797071, 1.018977, -0.970956, -0.998577, -0.708840, 1.691755, 2.865524, -0.289743, -0.154794, 0.034562, 1.024701, -0.437260, -2.021700, -1.159751, 0.018421, -1.733001, 0.030119, 0.869922, 0.358805, 1.391150, 0.261041, -0.686678, -1.447936, -1.136542, 0.298334, 0.514408, -1.055912, -0.045991, 0.482677, -0.475100, 1.016389, 1.057067, 0.349636, -1.552275, -0.814456, 0.555771, -0.660684, -1.887382, 0.126537, -0.091373, 1.868438, -0.572924, -1.870499, 1.320623, -0.122809, 0.615067, 0.459421, 2.490492, -0.362870, -0.759327, 0.625597, 1.650055, 1.248910, -1.304209, -1.294328, -0.687407, -0.256605, 0.633505, 1.577451, -0.662092, -0.055807, 0.495282, -0.023324, -0.058662, 0.223044, 0.853134, -3.415582, 0.128022, 0.244949, 1.234014, 0.112954, -0.090850, -1.585292, -0.401207, 0.522009, 0.084580, -1.456277, 1.323341, 0.674555, -0.153379, -1.234390, -1.214318, 0.090031, -1.125700, 0.218534, -1.719167, 0.633274, -0.666644, -0.304681, -0.645550, 1.504749, -0.182104, 0.065711, 0.246883, -0.164804, 0.268317, -0.640890, 1.660100, 0.358457, 0.018721, 1.743414, -2.280760, -0.908194, 1.285988, -0.049298, -0.731913, 0.699607, -0.733625, 0.325894, 0.853100, -0.813906, 1.100766, -0.852223, 0.690548, 0.850760, -1.626735, -0.984735, 0.158065, -0.450318, -0.331243, -1.930876, 1.276435, 0.403233, 1.344207, 0.846544, 1.057964, 0.808760, 0.363174, 0.553183, -1.140975, 0.382838, 0.700096, 1.296091, -0.595758, 0.413251, 0.792074, 1.751483, -0.214396, 0.971786, 1.807642, -1.009961, -0.639061, 1.646864, 1.155533, 0.632300, 0.423940, 1.892590, 1.226112, 0.745218, 0.755596, 0.132462, 0.250986, 1.216284, 0.711294, -0.202593, -2.286238, -0.305076, -0.401009, 0.012228, 1.810427, 0.155617, 1.686397, -0.044485, 1.951637, -1.519003, 0.551804, 0.126369, -1.429462, -0.069943, -1.241395, -0.955524, 0.934578, 0.093011, -0.973420, 0.865429, 0.832059, 1.064513, -1.507699, 0.465209, 1.230847, 1.882538, 1.056649, -0.655764, 0.567414, 1.232247, -1.141623, 1.348975, -0.197116, 0.643541, 1.594372, 0.114432, -1.100444, 0.336552, -0.051833, 1.246019, 1.608885, 0.898541, -1.594947, 0.412246, 0.382335, -0.736582, -0.591782, -0.827465, 0.478101, 0.032613, 0.365402, 0.023524, -0.097985, -0.035388, -1.169961, 1.603616, 0.436716, 0.053037, -0.144850, 0.275561, 0.590071, 0.732637, -1.107710, 1.838093, 0.986445, -1.535011, 1.318522, -0.776602, -0.198342, -0.601804, 0.023683, 1.147958, 1.105458, 0.666450, -0.866823, -1.804991, 1.764135, -0.077409, 0.186713, 0.344493, 1.011144, 1.277187, -0.329106, 2.211274, 1.112371, -0.573875, 0.216939, 1.432820, -0.259644, 0.287992, -0.226812, 1.357910, 0.307900, 0.241176, 0.716688, -0.934928, 1.118223, -0.135582, 0.249715, -0.546449, 1.170933, 0.835911, -0.061615, 1.230920, 0.660273, 0.709425, -1.457238, -0.462678, 1.435325, -0.275830, -0.775204, -0.457671, 0.970308, 0.336291, 0.672783, -0.456583, -0.842579, 0.426320, 2.590044, -0.761741, 0.657310, -1.604443, -2.231782, 0.469280, 0.771679, -1.132938, 0.970252, -1.488133, -1.447886, -0.142702, -0.533458, 0.333237, 0.713508, -0.292267, 0.547955, 0.590747, -1.113803, -1.068648, 0.216783, -0.695032, 1.848361, 0.444731, 0.707257, 0.297911, 2.380150, 0.149715, 0.933467, -0.170712, 1.039868, 0.186961, 0.424069, -0.494074, -1.219011, -0.780676, 1.816759, 0.387670, -0.967709, 1.215745, 0.563780, -0.444726, 0.437244, -0.040144, 0.017977, -0.436769, -0.722036, 0.076123, 2.038691, -0.352857, 0.193998, -0.925745, -1.209406, 1.031133, -1.624738, 1.449812, 0.665593, 0.210665, 0.343916, -0.575074, 0.618354, 1.456426, -1.380976, -0.796809, -0.787871, 1.542605, -0.039402, 0.461496, 0.204260, -0.690160, 2.235208, -1.289715, 0.853032, 0.595849, -1.004903, -0.314063, -0.017002, -0.462261, -0.432523, -1.114655, -1.145948, 1.048367, -0.301607, 0.709324, -0.368214, 0.001998, 0.598900, 0.126029, -0.804712, -2.914235, -1.467662, 0.194501, -0.295007, -0.187786, -0.350858, 2.072236, -0.320828, -0.411470, 1.414000, -0.776154, 1.007657, -0.431999, -0.784971, 0.536280, -1.223432, 0.689310, -1.450974, 1.705544, -1.719905, -1.636239, 0.444315, 1.631316, 0.237500, -0.990477, 0.722567, 0.369905, 0.455114, -0.234677, 1.544214, 0.010035, -2.114593, -1.869019, -0.484050, -0.806391, 0.271742, 0.286472, 0.689310, 0.330565, -0.775901, -1.212435, -0.795118, -1.528587, -0.239839, 0.798094, 0.878294, 0.721996, -0.247964, 0.299384, 0.834919, -0.940462, -0.889167, 0.256584, 0.166233, -0.913947, 0.257069, -0.693560, 0.274110, -1.095540, -1.138444, 1.178309, 2.197699, 1.231934, -0.716416, 0.094879, -0.535117, -0.235680, 0.963843, 0.693461, 0.354859, -1.951049, 0.695489, -0.111126, 0.805758, -1.095965, 0.895157, 0.052954, 0.941177, -0.434166, -0.403882, 1.602525, 1.321342, 0.019659, 1.719970, -1.234313, -0.415838, 0.027629, -0.624495, 0.806576, 1.199266, 0.022902, 0.271181, -0.720649, -0.372576, 0.282901, 0.671660, -0.067669, 1.254568, 0.464117, -0.956669, 1.768708, -0.981018, -1.634513, 0.977878, 0.571035, -1.014793, -1.114021, 1.342866, 0.118520, -0.648012, -0.981292, 1.587563, -0.603370, -0.476831, -0.651664, 0.268886, 0.222579, -1.207132, 0.274576, -1.535163, 1.672279, 1.041076, 1.829667, 0.160395, 0.019549, -1.057220, 0.481870, -1.080187, 0.730474, 0.852357, 0.271900, -0.850585, 0.104664, -0.868777, -0.151250, 0.320333, -0.171258, -0.178508, -0.090091, 0.016050, 0.641610, 1.399266, -1.207521, 0.063560, -1.126837, -0.750128, 0.431695, 0.648339, 0.025406, -0.186404, -0.601247, -0.014920, -0.141077, 1.512372, 0.014823, -0.467640, -0.470565, 0.857452, -1.345808, -0.039423, 0.562787, -2.212435, -0.381147, 0.441628, -3.139030, 0.915106, -0.379794, -0.445968, 0.486448, -0.768498, 1.469221, -0.330846, -0.941496, -1.160222, -0.246010, -0.213206, 2.406422, 0.681248, -1.783142, -0.767410, 1.704415, -0.451864, 0.686015, -0.496022, -1.293758, 0.144424, 0.505526, -0.205168, -1.639819, -0.414931, -1.794943, -0.265367, 1.144409, -0.844765, 1.530019, -0.236714, 0.375512, -0.438605, -1.058092, 0.237714, 0.321695, -0.858939, -0.320476, -0.665091, 0.306542, -0.609934, 0.611263, 0.087265, 0.024723, 0.162028, -1.797718, -1.318625, -1.054334, -0.520702, -0.909815, -0.781718, -0.908923, 1.121070, 1.239078, -1.472121, -0.985432, 0.485584, -0.365651, -0.945598, -0.045432, 2.474636, -1.295494, -1.115126, 2.285769, 1.909908, -0.058226, -2.355661, -0.310305, -0.693946, 0.041466, -0.361893, -0.742374, -2.710838, -0.543960, 0.761441, 0.519598, 0.859976, -1.175118, 0.160989, -0.843009, -0.643818, -0.451043, 0.113457, -1.105057, 0.043851, 1.350913, -1.585491, 0.267387, -0.866994, 0.018115, -0.261888, 0.229849, 0.566232, 0.223388, 0.135254, 1.542743, -0.588135, 1.081777, -0.160107, 0.460362, 1.335092, -0.702964, 1.384560, -1.814902, 0.821111, 1.015757, -1.600689, -0.359878, 0.483935, -0.177527, 0.539820, 0.078470, -1.001130, 0.089451, 1.315600, -0.230437, 0.300769, -0.483248, -0.398708, -0.591322, -1.904049, 0.767959, 0.960107, 1.245484, -0.828119, 0.884363, 0.393901, 1.025945, 0.343532, -0.572946, -1.054310, -0.552449, -0.429007, 0.856342, 1.316770, 0.425394, -1.214908, 1.434746, -0.274775, 0.830779, 0.765349, 0.434867, -0.553615, 0.471733, -1.772158, -0.108032, -0.562055, 0.393262, 1.149402, -0.248138, -0.058569, -0.102629, -1.053732, -1.525646, -1.605503, -0.317426, -0.300456, 1.505236, 0.230283, 0.215174, 1.104605, -0.524340, 0.929776, 1.494221, -0.065469, -1.386543, -1.557096, 0.230938, 1.898633, -0.807449, -0.396737, 0.473917, 1.044068, 0.568269, 0.729260, 0.863082, -0.273321, -1.685378, 0.396150, 1.112643, 0.900336, -0.382537, 0.402834, -0.549428, 0.491953, -1.115485, 1.753430, -0.238812, -1.586390, -0.556953, 0.533577, -0.490598, 1.026821, 0.573757, -0.065992, 0.608130, 0.282710, -0.960774, 0.045640, 0.657832, 1.763500, 1.332469, 0.844769, 0.444769, 0.296056, 0.128627, -0.993037, -0.652334, 0.715801, 0.824528, 1.903906, 0.012615, -0.336774, -1.541809, 0.568936, -0.239318, 0.683953, 0.175478, 0.459859, 0.176219, -0.911236, 0.956840, -0.341742, 0.672891, 0.100581, 0.454326, 1.436460, -0.057637, -0.840042, 0.173243, -0.300461, -0.179025, 1.040181, 0.314383, 0.353963, 1.324432, -0.249695, 1.460329, -0.394267, -0.908176, 3.519607, 0.931430, -0.773403, 0.282989, 0.245004, 2.198965, 0.754157, -1.016852, -0.964242, -0.432444, -0.913298, -0.380747, 0.688152, 0.731114, -0.487267, 0.457628, -0.754775, -0.542510, 0.964001, -0.424062, -0.575031, -1.009011, 0.283669, -1.632675, -1.081024, 0.405929, 0.913498, -0.957288, 0.063618, 0.410084, 0.751725, 0.316464, -0.266139, -0.923071, 0.526265, -1.727600, -0.049592, -1.549057, -1.253188, -0.146271, -0.978189, -0.352279, -0.037580, 1.092048, 0.404153, 0.751678, 0.939947, 0.635343, -0.181044, 0.127638, 1.376194, 0.412008, 0.295745, 0.431696, 0.580316, -0.245036, 0.328633, 1.072151, 0.011214, 0.737107, 0.641669, -0.272074, -1.332081, 0.670853, 1.293334, -1.803168, -0.565272, -0.715295, 1.071769, 0.378036, 0.584261, -1.115840, -0.362657, -0.017809, 0.154506, 1.692304, 0.017419, -0.167461, -0.029298, -0.409173, -0.286013, 0.942225, -0.245485, 0.154658, -0.477232, -0.119695, 0.050861, 0.967000, 1.116743, -0.975016, 0.166561, -1.240957, 0.894585, -0.074516, -0.815448, -0.167714, -1.162505, 0.686933, -0.615414, -1.255976, 0.328320, -0.275673, -0.098712, 1.495568, 2.057344, 0.228320, 0.094049, 0.754552, -0.139389, -0.910035, -0.108081, 0.069732, 0.277711, -0.917879, 0.182366, 0.656270, 0.120618, -0.781743, 1.225559, -1.768723, 0.673439, -1.308574, 1.350429, -1.262379, 1.322503, 0.433229, 0.424920, -1.226392, -0.596761, -1.302780, 1.241119, -0.743504, -0.002188, 0.904678, 0.438577, -0.224086, 0.679371, -0.537908, 0.629917, 0.214296, -1.394609, -0.961223, -0.508731, 1.591525, -0.741228, -0.315695, -0.480300, -0.120089, 0.661369, -0.297296, -0.555660, 0.227276, 0.419884, -0.805337, -1.004137, -1.040979, -0.318128, 0.372706, -0.619154, -0.732511, 0.345320, -0.802126, 1.124454, -0.181602, -0.854222, -0.949487, -0.553111, 1.375972, -0.581183, -1.976784, -1.477165, -0.334667, -0.724406, -0.435450, 0.264027, -0.180969, 1.698670, 1.558877, -0.711566, -0.868455, 1.417809, -0.547200, -0.347732, 0.805752, -0.228958, -1.542462, 0.669390, 0.626546, -0.752939, 0.007821, -1.994178, -1.473917, -0.749204, -0.220853, -1.012404, 1.414068, 1.626473, -0.843035, -0.054966, -2.178320, -0.690586, 1.577583, -0.760826, -1.341318, -0.004949, 1.233898, 1.566918, 0.052289, 0.241267, 0.767643, -1.293950, 0.696877, 0.127411, -0.243792, -0.296408, 3.345861, -1.505508, -0.028482, -0.972535, 0.109777, -1.470371, -0.275607, 0.324863, -0.453502, 0.645635, -0.073283, -0.520253, -0.860078, -0.794735, 1.641998, 1.967670, -1.494145, -0.681636, 1.161976, 1.005642, 0.081988, -0.734240, 1.509219, -0.662713, 1.183335, -0.133132, -1.876567, 0.094306, 0.817966, -0.417917, 0.365058, -1.627878, 0.455535, 1.392051, 1.643981, 0.197345, -0.170064, -1.709669, -0.700571, -1.379081, 0.751406, 0.216152, 0.454993, -0.682532, -1.857143, -0.840635, 0.663565, -1.489406, -0.569106, 0.353643, 1.520445, -2.315645, -0.924451, -0.321969, -0.285109, -1.641949, 1.055386, 0.525760, 0.577533, 0.757220, 0.552565, -0.152541, -1.070704, -0.569435, -0.809966, -0.829861, 1.328143, -0.373996, 0.664785, -0.816450, -0.334321, -0.014777, -1.312515, -0.862641, 0.731539, -0.202056, 1.631033, -1.274118, 1.197626, -0.814118, 0.793116, 0.201980, -1.711944, 1.090983, 0.327173, -0.887079, 0.317311, -1.411439, 0.775029, -0.182200, -0.630495, -0.913486, -0.368232, 1.223858, 0.317185, 0.236993, 0.004916, 0.433357, 1.560200, -0.171705, -2.463668, -0.159252, 1.335183, -0.681400, -0.276373, -0.536459, -1.446698, 0.184870, 0.835257, -0.960716, -0.501188, 0.698194, -0.321683, -0.434941, 1.201105, -0.316958, 1.339501, -1.604707, -0.336800, -0.181974, -4.342203, 1.497898, 0.880348, 0.133422, 0.365856, 0.189339, 1.115095, -0.932376, -0.802968, -0.128491, 0.817978, 1.279624, -0.910673, 1.157411, 0.421010, -0.197130, 0.149639, -0.003807, -2.544418, -2.270015, -1.449824, 1.961611, 0.465849, -0.520380, 0.222495, -1.577964, 0.329281, 0.590828, 0.298448, -0.629349, -0.608633, 1.068808, -1.107581, 1.555622, -0.177787, -0.108409, -0.508880, -0.662452, -0.290413, 0.146576, 1.482064, 1.381492, -1.059543, 1.199365, -0.028044, -0.344174, -0.541299, -0.676746, 1.922809, -0.078949, 1.323102, -0.110083, -1.616125, 1.199939, 0.151555, -1.699992, 1.523828, -1.003789, 1.199547, -0.023658, -1.400681, 0.062584, 0.691769, -1.293470, 1.084037, 0.622075, 0.831451, 1.595581, -0.484486, -1.130726, 1.911968, 1.762751, 0.695078, -1.275114, -0.618976, 0.611859, 1.573652, 0.875265, 0.155229, 0.817660, 1.156775, 0.508435, -1.519821, 0.545433, -1.578190, 0.693183, -1.100134, 0.163265, -0.302073, 0.373249, 0.600213, 0.063063, -1.763098, -2.243574, 0.790842, -0.271946, 0.464308, -0.975373, 0.602892, -0.438298, 0.080586, 0.147245, 0.062602, -0.328985, 0.260321, 1.113006, -0.566009, -1.789162, -0.162353, 0.617137, -0.942267, -0.234453, 0.951426, -0.808673, 0.938470, -1.792327, -0.301855, 1.073306, -0.370970, 0.597410, -0.583410, 0.965183, 0.484474, 0.050509, 1.057956, -1.684060, -0.835116, 1.079136, 1.038046, -1.236283, -0.013095, -0.242072, 0.493514, -0.882332, -0.132067, 1.072049, -0.517261, -0.652990, -0.272935, 0.766965, 1.944211, -0.134076, 0.887988, 0.108314, -0.198348, -0.480514, -0.618331, 1.050164, 0.343630, -0.965649, 1.223340, -1.393962, 1.520255, -0.517594, 1.401671, -0.604645, 0.218336, 0.519592, -1.552592, 1.044794, 0.242693, 0.603444, 0.931581, -0.468444, 0.131811, -0.779461, -1.268532, -1.075551, 0.187341, 0.163274, -1.484697, 0.344066, 0.909136, -0.087106, 0.742039, 1.245227, -0.208903, 0.854498, 0.594840, 0.933873, -0.291349, -0.747122, -0.710068, -0.625521, 0.245131, -0.794486, 2.063449, -0.170674, 0.118782, -0.294617, -0.018525, 0.614879, -1.317549, 2.412173, 0.159055, 0.656507, 1.354490, 0.064887, 0.857280, -1.397829, -0.861987, 1.102649, 0.792736, 1.422438, -0.800374, 0.825360, -0.852424, 1.464432, 0.574031, 1.232624, 1.030421, -0.485707, -0.363458, -0.366079, -1.110260, -1.446113, 0.829015, 0.294908, 1.135634, 1.329028, -0.322123, 0.582697, 1.688789, 0.175549, 1.105221, -0.331164, -0.410355, -0.263288, 0.657792, 0.558188, 0.913043, 0.792805, 0.451593, -0.124163, 0.561272, -1.776511, 0.181316, 0.175552, 0.323214, 1.005008, -1.261408, 0.655904, 1.909115, -2.584715, 0.730793, 1.089442, -1.512992, -0.510728, -0.050339, 0.900420, 0.720054, 0.884839, -2.230974, -0.709427, 0.636922, -0.449884, 1.083237, 0.313725, 0.893059, 1.195028, -0.798888, 2.234076, -0.448723, -0.422435, -0.728828, -0.626996, 1.037192, -0.438602, -1.099299, 1.606322, 0.409898, -1.113315, -0.015678, 0.853761, 0.972631, 0.756586, 1.605372, 0.401303, -1.832319, 1.512244, -0.191919, -0.542879, -0.088593, 0.608095, 0.123325, -0.286824, 0.764513, -1.304955, 0.097481, -0.478585, -1.292890, 0.788395, -0.816355, 0.335072, 0.505091, 2.087141, 0.734570, -0.069303, -0.297971, -0.428286, -1.049409, 1.667005, -2.267017, 1.778667, -0.777760, 0.386349, -0.727869, -1.166549, -0.398559, -0.826940, -1.537028, -0.125218, -1.599008, 0.083260, 0.682975, -0.417245, -1.201377, 0.587790, -0.227110, 0.505581, -1.698706, -0.488232, -0.906653, -0.488293, 1.202217, -0.665082, -1.267281, -2.376643, -0.593841, 2.626250, -1.176957, -0.387459, 0.095499, -0.271302, 0.238201, -0.797213, -0.414411, -1.484238, -0.573813, -0.724053, -0.085884, -0.217930, 1.715197, 2.228914, -0.638126, 0.571546, -1.442097, 2.659422, 1.189435, 0.065155, 1.287011, 0.477728, 0.423314, 0.145276, 0.182032, -0.476234, -0.139449, 0.444810, 0.678152, 1.557245, 0.430629, -0.158028, -0.250696, 1.165950, 0.061139, 0.829975, 0.816999, -2.053664, -0.706578, -0.104364, 0.775714, 2.193231, -0.413559, -0.697779, -0.513652, -2.250425, -1.283986, -0.841279, -0.221181, 0.528657, -0.570407, 0.025061, -1.059959, 1.245546, 0.407518, -1.039692, -0.567225, 0.330413, 0.110639, 1.423879, -0.290724, -0.848348, 0.094914, -0.923972, -0.121975, -0.434780, -0.351903, 1.736391, 0.844575, 0.361996, 0.467964, 1.881055, 0.015923, -0.355325, 0.903035, -1.627623, -0.701568, -1.160279, 0.439823, 0.512599, -0.387310, -0.657832, 0.711979, 1.440345, 0.759822, 0.819317, 0.129645, 0.620790, -0.426793, 1.140812, -0.930938, -0.402499, -1.282456, 1.522394, 1.327045, -0.740557, -0.992133, -0.021651, -1.021709, -0.879490, -0.861100, 1.497500, -1.978784, -0.293274, 0.776286, -0.422252, 2.343773, 1.379636, 0.186265, -1.375379, -0.813981, 0.639198, -1.017841, 1.327326, -0.658919, 0.552423, 0.764777, 0.946053, 0.852388, 1.682750, 0.530288, 0.107676, 1.304824, -1.240078, -1.216016, -0.504044, 1.199566, -1.665497, -0.614082, -0.586999, -0.295391, 1.138398, -0.794723, 0.690661, -0.831014, 1.356671, -0.907613, 1.752246, 1.436281, 0.539888, -0.855990, 0.611230, -1.437628, 0.089767, 0.527468, 0.781959, 0.547762, -1.479149, 1.592530, 1.008261, -0.421596, 0.417231, 1.311400, -1.266045, 1.316692, 1.030668, 2.332782, 0.263523, -0.264550, 0.941672, 2.441823, -0.985447, -0.288321, -0.055236, -1.085416, 0.983165, -0.406880, -0.267202, -0.190021, -0.837177, -0.528613, -0.489009, -0.244137, 2.094201, 0.379778, 0.514492, -0.344827, 0.594875, -0.125360, 1.562630, -1.577518, 0.326389, -0.741001, -0.840845, 1.338398, 0.371679, -0.393995, -2.789667, 1.539743, -0.217465, 1.806697, 1.484426, -1.383210, -0.454424, 0.479457, -0.239263, -1.481966, -0.194036, -0.799470, 0.211621, 0.710188, -0.690821, 0.237875, -0.473931, -0.255977, 0.196964, -0.777732, -0.781373, -0.093950, 0.227325, 1.007274, 0.924086, 0.819746, -0.520902, -0.438459, -0.741928, 0.338526, 0.376719, -1.465829, -0.000069, 0.259945, 0.353617, 1.858091, 2.049830, 1.435193, 0.702739, -0.810952, 1.030838, -1.029264, 0.807791, -0.667732, 0.029984, -0.771149, 0.303049, -0.783939, 1.266466, 1.140532, 0.922993, 1.560091, 0.609204, -0.724542, -0.849846, -1.834091, -0.008430, -0.910383, -1.734511, -0.741114, -1.626110, 0.763844, -1.485456, 0.952323, -0.175598, -0.032825, -0.360920, -0.140047, -0.938435, -0.842926, -0.256038, 1.017142, 2.124318, 0.670853, -1.085590, -0.075834, -1.136380, 0.056260, 0.005068, 1.308929, 1.919652, -0.757899, -1.764913, -0.961051, -0.524224, 0.744277, -0.398694, -1.685907, -1.250800, 2.620742, 1.426673, 1.531390, -0.549234, 0.039749, 0.816418, 0.874773, 0.593548, 0.341890, -0.720886, 2.045592, 1.059100, -1.585793, 0.117364, -1.400060, -0.271679, 0.300556, 0.429157, -0.048594, 1.825605, -0.187789, -1.988871, -0.278569, -1.196944, -1.196450, 0.377815, -0.264347, -0.096423, 1.694368, 0.064553, -0.601419, 1.795633, -0.738385, 0.862033, 0.112950, -0.171884, -1.117588, 0.027495, 0.501018, -1.714589, 1.029197, 0.595869, 0.387927, -0.210674, 0.080798, -0.243546, 1.389446, 0.108643, -0.484494, 1.065108, 0.363851, 1.662277, 0.311918, 0.507250, -0.922529, -0.121635, 1.133666, -1.246856, -0.369330, -0.880998, -0.322306, -1.283084, 1.346089, 0.411234, 0.074877, -0.655707, -1.423186, 1.047097, -0.137224, -0.244123, -1.552637, -1.174878, 0.145798, 1.972366, 0.448230, -2.426219, 1.045725, -0.167561, 0.825940, 0.016251, -0.064962, 0.263064, 0.672724, 1.177806, 1.542517, -0.563189, -0.044366, 0.360106, 0.832831, -1.260959, 0.230434, 0.784450, -1.034084, 1.870543, -2.031155, 0.417170, 0.560812, -1.195829, 0.612845, 0.899163, -1.401152, 2.247113, -0.571610, 1.203252, 1.117235, 0.135989, -0.523813, -1.513594, 0.059353, -0.616792, 0.304000, 0.866493, 0.354767, -1.745976, 0.022276, -1.697727, 1.487375, 1.695194, 1.046364, -1.174724, -0.473907, 1.501516, -0.048170, -0.490079, -0.282869, 0.503165, 0.701989, 1.311882, 0.618559, 0.680050, -0.446768, 1.140182, 0.191640, 0.295782, 0.555668, -0.875195, -0.571442, -0.027852, -0.182835, -0.357811, 0.422866, 2.659298, -0.925558, 1.770730, 0.509582, 1.120448, 0.398149, 1.599319, -1.093991, 0.713760, -2.153341, -1.756727, 0.405604, 0.624687, -0.133475, -0.353797, 0.452039, 0.041864, 0.235650, 0.163002, -0.918103, 1.255851, 0.667441, 0.128435, -0.694677, -0.045580, 1.365972, 2.156691, -0.676666, -1.416819, -0.541165, 0.350744, -0.532238, 0.336493, 0.027174, -0.520343, -0.681970, 0.201024, 1.257810, 1.273888, 1.516947, -0.530718, -0.405307, 0.492541, 1.234501, -1.045775, -0.582748, 0.645102, -2.354389, -0.026803, 1.464793, 0.252427, -1.213451, 1.868762, 0.099340, 0.516361, -0.027075, 0.896106, 1.777730, -1.297897, 0.217806, -1.072757, -1.791463, 0.478229, -0.262014, 0.871807, -0.822417, -2.204701, 2.201253, 1.646366, 0.011076, 0.231048, 0.051667, 0.317684, 1.205150, 1.224000, -1.492571, -0.584738, 1.034569, -0.879367, -0.319339, 0.006979, -0.713181, -0.386667, -0.024886, 1.284186, 2.160216, 0.240886, -0.242978, 0.267425, 0.236014, -1.177807, 1.788776, 0.388052, 1.355316, 1.202642, -2.108034, -0.178778, 0.484912, 2.020209, 0.208876, -0.839602, -0.001457, 0.858376, -0.664001, 0.782215, 0.892171, -3.486394, -0.238300, -1.358946, -0.820373, -0.145348, -1.102256, -1.003469, 0.278931, 0.630064, 0.787201, 1.933461, -1.147023, -0.295931, 0.748785, -0.647723, 0.533334, -0.310129, -0.179045, 0.145234, 1.811146, 1.355955, 0.390284, 1.069475, 0.325421, -2.135230, -0.020433, -0.500284, 0.860384, 0.743186, 0.295881, 0.628899, -0.346291, 1.131162, -1.370288, 0.537378, 0.556443, 2.123634, -0.337618, -1.103233, 0.841430, -0.622306, 0.527918, 2.053566, 1.972059, 1.444224, -0.399629, -2.606618, -0.983245, 0.513070, -0.659332, 1.074633, 1.540106, 0.368485, 0.282860, -1.572254, 0.855067, 0.946966, 1.116395, 0.831266, 0.623982, -0.145844, -0.504979, -0.553257, -1.404503, 0.383837, -0.741783, -0.957648, -1.081386, -0.612159, 0.453004, -0.094359, -0.335615, -1.062051, -0.825065, 0.074077, -0.103761, 0.497510, 0.178691, 0.692956, 0.562621, -0.363759, -2.542845, -0.824791, 1.200854, 1.026071, 0.913099, 1.773230, -0.187374, 0.291012, -0.517393, -0.131871, 0.829050, 0.876603, 0.203171, -1.341479, 1.005138, -2.543976, 1.478246, 0.290934, -0.668041, 0.439939, -0.083805, -0.039357, -0.340271, 0.232416, -0.529113, -2.221887, 0.590986, -0.223164, -0.519457, 0.985801, -0.900997, 0.027715, 1.044646, -0.167321, 0.253717, -0.026195, -0.668991, -0.399222, -0.151615, -1.054431, 1.610175, -0.543483, 0.031371, -0.043453, 0.883878, -1.894013, -0.233904, 1.581851, 0.851205, 1.092366, 0.163676, 0.501960, -0.350069, -1.045353, 0.861670, -0.032071, 0.914802, -0.057646, 0.231605, -0.300880, 0.326650, -0.008892, -0.388310, 0.177972, 0.704197, 0.995981, 1.300314, 0.326089, 0.813780, 0.233365, -0.263435, -1.192464, 0.333589, 1.137856, -1.659672, -1.717216, -0.267989, 0.759201, -1.769788, -1.083718, 0.359388, 1.404924, 0.505105, 2.148224, -0.226877, 0.220850, 1.595149, 0.677654, -0.273742, -1.116363, 0.533439, -1.131895, -0.083043, 0.009359, -0.713210, 0.904571, -0.377484, -0.259710, 0.289089, -0.759640, -2.310809, -0.681866, 1.006340, -0.510767, 0.081574, 1.587115, 0.499985, 0.843698, 1.137990, -0.266377, -1.732516, 0.245492, -0.507909, 0.034757, 0.501414, 2.122741, -1.783386, -0.824589, 0.058314, -0.792995, -0.304616, -0.071426, 0.439923, -0.541762, -1.084263, -0.835186, -0.529249, 0.174476, 0.079394, 0.851824, 0.727211, 1.708769, 1.110857, -1.161085, 1.188909, 0.798624, -1.010497, -0.986937, -1.299667, -0.890559, 0.282513, -1.041545, -0.202859, 0.859216, 0.468167, 1.032627, -0.857366, 0.262470, 1.242952, 1.690676, -0.387463, -0.183820, -0.159102, 0.804471, 1.468494, -0.316948, 1.057467, 0.507451, 1.030553, 1.394510, -0.831239, -0.443699, -2.422860, 2.197684, 0.387557, -0.098316, -0.264361, 0.852804, 0.846519, 0.069427, -1.962598, -0.656433, 1.284654, 0.508004, 1.712550, 0.927746, 1.389929, -0.841263, 0.016287, 0.414592, 0.459253, -1.315293, 1.522476, -1.992829, -0.122206, 0.141310, -1.506999, -0.213535, 0.637311, 0.374217, -0.785084, -0.367165, -0.340933, 0.268664, -1.854117, -0.843193, 0.799745, 0.439042, -0.479027, 1.816216, -0.796959, -0.098352, 0.184122, -1.440329, -0.102162, -0.564956, 0.564681, 0.152534, -1.126705, -0.906848, -0.899947, -0.771803, -0.359773, -1.455259, 1.607004, -0.669347, -1.238559, 1.235367, -1.357100, -1.189019, -0.724682, 1.156731, 0.048757, -1.040167, -1.028633, 0.750722, 0.494954, -0.580926, 0.770503, -0.597188, 1.279355, 0.022229, -0.582185, -0.184246, -1.289871, -0.780704, 0.630001, -0.586566, 0.935058, 0.194947, -0.318858, 0.078360, 2.083672, 1.231861, -0.458267, -0.227005, 0.328669, 0.245391, 0.976296, 0.158726, -0.477292, 0.711520, -0.387961, 1.317555, 1.333111, -0.961027, -0.188374, 0.692679, -0.544031, -0.709286, -0.244919, 1.496764, -0.025646, 0.986766, 1.168125, -0.595671, 0.217039, 0.277739, 1.199381, -0.070320, 0.250028, -1.336457, 1.843609, -0.215886, 0.736907, -0.203953, 1.386194, -0.214016, -1.542832, -0.638177, 0.567472, 1.397976, -1.605796, 0.958391, 0.832555, 0.602144, 0.509741, -0.418007, 0.921719, 0.248481, 0.137095, 0.789245, -1.211174, 1.911187, -0.412046, 0.603171, 1.063943, -0.278437, -0.769195, 0.287495, 2.051998, -0.479221, 0.533581, -0.653648, -0.098721, -0.663854, 0.036260, -0.405052, 0.109031, 0.096428, 0.249980, -1.259190, -1.150468, 0.031320, 0.580037, 2.193632, 0.324798, 0.192339, 0.280329, 0.330147, 0.983635, -0.667907, 0.818469, 0.934790, 0.849882, -0.365725, -1.267613, 0.156959, -0.044795, 1.298946, 0.247159, 1.582988, -1.091138, -0.303229, -0.217528, -0.761491, 0.430233, -0.486407, 0.780267, 0.408464, -1.697137, 0.390405, 0.432335, 1.848342, -0.014690, 3.594646, -0.974307, 0.608917, -0.992444, 0.658290, 0.946928, 1.229365, 0.700444, 1.380353, 0.691599, -0.057171, 0.347853, 0.670604, 0.542095, -1.577688, -0.746156, -1.153263, 0.511808, -1.187092, -0.771359, 1.072229, 0.243213, -0.556381, 0.532394, -0.457471, -1.479988, 0.457262, -0.639867, 0.969652, 0.114051, 1.801936, -0.804699, 0.010311, 1.543735, 2.623457, 0.156024, 1.204083, 1.816475, 0.588982, 0.637043, 0.282141, 0.435359, -1.616788, -0.706342, -0.027826, -0.880148, -1.677258, -0.836543, 0.020959, 0.009057, -0.647312, 0.019581, 1.882719, -0.408950, -0.234068, -0.533497, -0.681023, -2.475870, -0.469468, -1.796521, -0.120333, -0.651184, 0.448509, -1.394689, 0.994358, -0.578582, -0.567651, -1.770417, 0.267634, 0.453618, 0.634913, -0.806666, -1.150350, -0.635624, 0.207138, 1.162990, -0.285097, 0.185609, -0.510208, 0.663534, 0.574028, 0.808348, -1.014700, 0.089086, -0.244672, -1.382213, -0.509395, 1.282191, 1.554063, -0.829955, 0.145912, -0.482962, -0.205015, 0.538843, 0.489712, 0.101529, 0.353511, 0.412944, -0.824558, 0.366786, -0.139633, -0.483821, -0.324442, 0.607414, -0.248164, 0.350758, 1.608775, -0.762118, 0.229355, -0.529545, -0.622731, 0.264658, -0.815949, -0.185741, -1.615415, 1.813414, 1.076483, -0.923580, -0.074933, -1.110330, 0.387532, 1.658190, 0.951168, -0.607105, 0.679919, 0.837082, 0.402120, 1.949409, -1.939731, 0.126738, 1.067769, 2.484756, -0.814055, 0.122260, 0.798773, 1.432381, -0.456432, 0.442155, -1.545693, -1.356212, 0.446468, 1.058376, -0.768244, -0.156811, -0.221207, 1.477942, -0.442173, -1.270613, 1.634986, -0.461853, -1.703266, 0.756903, -0.244684, 0.283595, 1.364254, -1.692368, -0.562980, -0.180642, -1.089304, 0.881124, -0.871777, 0.076382, 1.939426, 1.507148, -0.304122, 0.186827, 1.748091, 1.121333, -2.656331, 0.202387, 0.549560, 0.831033, 0.365285, -0.447290, 0.359085, -0.096740, -0.034068, 1.027380, 0.084311, 1.679274, 0.373474, -2.310339, -0.416224, 0.763384, -1.951930, -1.160674, -0.377321, -1.109153, 0.262089, -0.663581, 0.005880, 0.379989, -0.162827, -1.932418, -0.136805, 1.290428, -1.519886, 1.574226, 0.127737, 1.960765, 0.460804, 1.575808, 0.471605, 2.033948, 0.373401, 0.980521, 0.313608, -0.504606, -0.369123, -2.741306, -1.706731, -0.228772, 0.030666, -0.538705, -0.988796, 0.156074, -0.274832, -0.860200, -0.495591, 1.038669, 0.678009, 0.677749, -0.779947, 1.779969, -2.416335, -1.392135, 0.281791, 1.439030, -1.487667, -1.359390, -1.093486, -0.251534, -0.713205, 1.789663, 0.245621, 0.647931, -0.600348, -0.543535, 0.855971, -1.222039, 0.857654, 2.951690, 1.376172, -1.066797, 0.991269, 2.114067, -0.535081, -0.575661, -0.248383, 0.946289, -0.819401, 0.776518, 0.464894, -0.001004, -0.921444, 1.056179, 1.021483, -1.777421, -0.545783, 0.486535, 1.187328, 0.635788, 0.266434, -1.306484, -0.097334, 2.922371, -0.758654, 1.567345, 1.127049, -1.692283, 0.045857, 0.416272, -0.682225, -0.072619, 2.377651, 1.017149, 0.310075, 0.049830, 0.675044, 1.048628, 0.566722, 0.186939, 1.353577, -0.711909, 0.386419, 0.251786, 0.616942, -1.446534, -1.456601, -0.333292, -0.431912, 0.532326, -1.495514, 1.671598, -0.144631, -1.749288, 0.285810, -2.707436, -0.562123, -1.155789, -0.193516, 0.802959, -0.755592, 0.692580, 0.741737, -0.962325, -0.377792, -0.003544, -0.650631, 1.497965, -1.000162, -0.946808, 0.807187, 1.434334, 1.113368, -1.449937, -0.075801, 1.140664, 0.585813, -0.129373, -0.154028, 1.085698, -0.670071, 0.955436, -0.675689, -1.143279, 0.778601, 0.381148, 0.607549, 1.028283, -0.480574, -0.703178, 0.459562, 0.140238, -2.022008, -0.361047, 0.736690, 0.060397, 1.325158, 2.016467, -1.506137, 0.500613, -0.099738, 0.384120, 0.561974, -0.171857, 0.535518, -0.503470, -0.861594, 0.837458, -2.551442, -0.649355, 0.145722, -1.688057, 0.472963, 0.609509, 0.781601, 0.204907, -0.153220, 0.192658, 0.890520, -1.119550, -0.102251, -2.426784, 0.402485, 0.412407, 0.782917, 1.484947, -0.037251, -0.182209, 0.818755, -0.752826, -1.361026, -0.224473, -0.786495, -0.337032, -0.024335, 1.476177, 1.558745, 0.730699, 0.898962, 0.208134, 0.625520, -0.626367, -0.705826, -0.328081, 0.605201, -0.160502, 0.539831, 1.972374, -0.034331, 2.050551, -2.461537, 1.340929, 0.987335, 0.077570, 0.964674, 0.060022, 0.401048, 0.562366, -0.164197, -0.853479, 0.060564, -1.169291, -1.393309, 0.036078, 0.291377, -1.114785, -1.375868, -0.173506, -1.047170, 0.719237, -0.574785, 0.465380, 1.485833, 0.444959, -0.111356, 2.094701, -0.796435, 0.949621, -0.387097, 0.615823, 0.223979, 1.412757, -1.753966, -0.854528, 0.195152, -0.072121, -0.408125, -0.639675, 1.640380, -0.264383, 0.942384, -1.105404, 0.636892, -2.126686, -0.398001, 1.145781, -0.566528, 0.019865, 1.177432, -0.404812, -0.078592, -0.842312, -0.977921, 1.036064, 0.211817, -1.278424, 0.867370, 1.773746, -0.138783, 0.775386, -0.226110, -2.122933, -1.414846, 0.860200, 0.192827, 0.615382, -1.662209, 0.683720, 1.351479, -0.501524, -0.602880, -0.562767, -1.421763, 0.613905, -0.160742, -0.451996, 1.373596, -1.448803, 0.791751, 0.954087, 1.505326, -0.489842, 0.278651, 0.133711, 1.198739, -0.596750, -1.191966, 0.322845, 0.209959, -0.263423, 1.192762, -0.247592, 0.313061, -0.111129, 0.190426, -0.274155, 1.239091, -0.795242, 0.489753, -0.657899, -0.637458, -0.420472, 0.124802, 0.491656, -0.369999, 0.491144, 1.184396, 0.728578, -0.249263, 0.131374, -1.403980, -0.823579, 1.057944, 0.864929, -1.006140, 0.400170, -0.952953, 0.455485, 0.456473, 0.596633, -0.935910, 1.635045, -1.180352, 0.011210, 0.462678, 0.305256, 1.843430, -1.836093, -0.064625, -0.701225, 1.593321, 0.342594, -0.499462, 0.457017, 0.626418, 1.378629, 1.039347, 0.106710, -0.054440, -1.148081, -1.424614, 0.907090, -0.699315, 0.585000, 0.201226, 0.962739, -0.439679}, - { 1.010416, -0.309043, 1.204260, -0.509250, -0.243453, -0.304250, 0.890589, -0.069237, -0.347434, -0.074926, -1.067423, 0.192790, 0.342207, 1.649058, -1.355424, -0.985628, 0.231938, 0.226418, 0.851564, 1.461408, -0.294262, 1.242378, 0.408768, 0.050244, 1.266880, 1.243934, 0.480212, -0.555638, 1.137895, 0.777227, -0.542142, -0.290013, 1.253020, -0.073015, -0.041742, -0.838141, -0.515762, 2.065937, -1.567724, 0.004215, 0.456660, -1.553581, -0.395120, 0.178893, -0.606070, 1.127735, -0.873622, -1.919711, 0.536308, -1.121117, -0.513417, -1.242096, 0.097661, -0.287035, -0.091048, 0.504286, 0.267257, 0.524297, -1.253473, 2.057532, -0.179194, -1.746351, 0.430002, -1.655340, -0.958785, -1.788257, -1.084069, 1.391134, -1.217832, -0.473744, 0.115082, -0.245269, 2.285121, -0.151225, -0.322988, 0.918793, -0.752371, 1.050677, -0.491103, -1.104802, -1.630058, -0.852692, 0.300839, 1.131455, 1.387815, -1.689473, -0.986665, 0.049414, -1.362607, -0.621823, -0.401429, 0.760414, -0.273486, -0.887414, -1.535449, 0.511934, -0.929861, 0.540893, -0.279906, 0.802243, 0.292376, -0.965930, 0.949230, -0.546341, -0.781126, -1.077312, -0.949399, 1.314570, 1.659268, -0.748283, 0.259723, -0.340441, 1.441039, -0.791230, -0.263753, 0.892493, -1.030681, 1.131898, 0.580527, 2.000997, 0.975002, 0.839327, -1.587929, 0.630512, 0.002391, -0.074393, 0.608571, -0.142330, 0.952709, -0.874363, 0.696845, -1.815330, 0.656817, -1.486761, -1.534300, -0.701957, 0.943310, 1.042855, 2.358797, 0.416700, -0.017034, 0.433069, -0.011004, -0.173236, -0.115596, 0.051128, 0.663712, -0.548174, 0.872363, 0.145439, 0.285777, 1.566287, -0.238297, -0.006885, -0.774382, 0.366424, -0.080734, -2.710001, 0.439383, -1.002456, -0.970384, -0.961890, 3.490964, 0.809727, 0.353984, 1.477589, -1.467686, 0.020331, 0.503404, 0.536891, 0.696897, -0.395359, 0.115709, 0.150898, -0.031312, 0.225935, 0.020565, -0.542556, -0.114886, 1.732591, 0.326515, 1.062555, -2.410397, -0.866161, 0.208505, 0.010224, -0.489790, -0.514825, 0.534689, -1.110567, -0.256419, -1.165121, -0.304879, -0.167284, 0.255534, -0.315703, 0.504279, -0.942896, 0.567892, -0.047614, 1.399009, -1.589057, -0.862849, 0.455270, 0.558508, -0.785139, -0.707202, -0.258170, 1.988394, 0.935582, -0.071434, -1.880812, -1.282884, 1.029053, -2.880106, 0.488955, 1.022291, 1.500410, 0.260480, 0.020532, -0.444004, -0.375660, -0.502270, 0.753304, -0.406186, -0.074191, -1.072201, -0.897618, 2.885920, 1.723169, -0.358783, 0.066630, -0.757659, -1.462883, -0.099514, -0.781888, -0.163763, -0.942756, 0.870715, 0.216274, 0.900797, 0.441015, 0.201028, 0.096693, -1.345433, 0.379103, 0.099227, -0.432822, 3.191398, 0.541971, 1.613225, -0.349525, -0.656382, -0.138081, 1.126396, -0.956076, 0.981902, -1.798026, -0.484808, -0.327029, 0.987955, -2.120864, 1.276514, 0.166492, 0.170288, 0.748443, 0.865300, -1.319565, -0.861134, -1.036145, -0.812188, 0.586185, -0.943297, 0.052543, 0.318141, -0.596764, -0.990043, 0.508671, 2.002311, -0.078523, 0.777366, 1.667504, 0.572665, -0.247519, -0.155144, 0.788749, -0.204256, 0.507869, -0.522305, -0.084260, -1.252190, -0.405599, -2.904880, 0.866473, 0.807213, -1.101755, 0.083207, 0.243147, -0.177316, 1.830771, -1.146695, -0.543339, -0.860428, 2.267442, -0.820892, -1.197848, 0.083810, -0.010950, -0.609573, -1.276636, 0.437712, 0.604366, 0.008873, -0.960727, -0.070219, -0.815834, -0.986378, 0.640244, -1.569330, 1.293904, 0.421855, 2.012494, 0.209163, -0.497484, 0.937448, 0.319405, -1.394444, -1.720089, -0.918215, -0.985651, 0.200978, 0.032662, 2.146677, 0.040047, -0.273101, 0.641028, -2.034189, 1.873661, 0.342198, 1.407326, 0.044908, 0.492146, 1.636077, -0.035151, -0.442977, -0.077730, 0.134376, 0.310273, -0.200068, 0.592712, 0.162397, 0.254787, -1.377385, 0.094739, 0.962069, -2.171408, 2.162844, 0.690210, 1.388234, 0.005580, 0.342907, -0.349609, 1.667774, -1.066359, -0.238641, -0.780886, -0.539105, -0.991823, 0.255495, 1.042573, -0.658925, -0.967421, -0.178829, -1.322513, 0.420673, -0.093762, -1.528491, 1.015406, 1.081974, -0.654101, 0.981567, -0.791851, 0.237913, -0.282481, -0.353879, 0.583476, -1.119684, 0.186188, -0.189118, 0.947353, 0.223708, -1.960695, 0.139627, 0.586785, 0.764663, 2.363238, 1.484291, 0.198049, -0.420543, -0.735407, -0.736592, 0.431002, -1.498423, 0.426982, -0.397435, -0.046128, 1.021015, -1.644024, -0.943688, 0.239698, 0.999267, 1.369292, -0.529599, -0.509496, -1.287670, 0.657737, 1.846742, 0.325806, -0.695332, 0.203885, -0.615502, -0.926867, -0.550214, -1.127624, -0.750949, 1.449595, -0.968377, -0.300917, -0.131462, -0.938599, -1.472992, 0.264710, 0.426847, -0.377507, 0.774005, -0.954702, 0.858345, -1.091208, 1.021650, -0.966927, -0.017607, -2.281462, 0.694478, -0.219036, 1.151983, -1.491888, 1.730335, -0.233411, -2.592901, 0.513393, 0.739484, 0.114455, -0.832838, 1.741856, -1.559417, -0.774695, 2.040797, -0.513673, 0.109287, -1.782382, -0.910661, -0.640022, -0.499033, -0.936387, -0.334772, 2.180211, 0.207142, -2.018575, -0.251810, 0.617202, 1.474643, -2.439727, -0.425456, 0.779463, 1.000111, -0.949827, -1.597802, -0.093590, -2.137631, -2.357876, 0.276592, -0.524417, 1.264088, -0.303140, -1.017319, 1.798368, 1.219235, -0.320192, 0.521272, -0.588582, 0.768489, -0.452129, -1.092483, -0.418890, -0.421347, 2.300022, 0.317742, 0.835321, 0.264652, 0.556346, -0.570816, -0.507506, 1.522434, 1.569268, -0.162226, -1.202582, -0.595115, -0.351121, 2.119761, 0.278577, -0.660400, 0.003418, 0.192745, 1.515761, 0.148002, 0.363835, -0.954189, -0.088879, -0.003313, 0.045289, 0.243789, -0.383563, 1.576286, -0.667901, 0.659780, -0.798888, 0.159219, 0.226763, 0.200147, -0.774538, 0.426037, 1.979842, -0.205188, -1.222286, -0.578782, 1.437691, -0.065428, -0.053226, -0.286024, 0.952052, 0.214028, -0.375307, 1.022640, -0.723889, -0.845210, -1.581881, 0.611915, -0.669099, -0.704683, -1.868947, 0.538739, -0.569290, -1.133737, 1.699531, -1.026460, 1.083185, -1.867240, -0.363077, 1.097485, -0.092088, 0.244652, 0.794236, 1.793932, -0.053678, -0.950334, -0.333902, 0.706719, -1.946591, -0.649317, -0.707172, -1.545130, 2.081714, -1.454231, -2.440954, -0.054485, 0.351992, 0.465739, -1.089909, 1.598644, 0.819923, -0.835225, -0.389187, -0.941232, 0.236264, 0.728013, 0.519689, 1.364658, 0.273281, -1.466224, 0.223009, 0.174374, -1.082851, 0.335955, 0.376991, 0.403246, 0.452208, -1.205466, -0.210634, 2.257762, 0.038373, -1.617309, 0.815829, 0.839546, -0.292490, -0.025208, -0.686145, 1.452747, 0.748356, -1.212110, -0.951310, 0.451716, 0.208185, 0.002344, -0.184100, 1.092598, 2.034609, 1.186808, 0.596469, 0.812490, 1.312180, 0.402173, -1.333587, 0.797609, 0.979228, 0.479650, -0.601317, -0.773677, 0.864561, -0.156502, 0.578619, 0.002637, 0.302770, 1.475414, 0.102147, 0.650406, -0.542641, -0.498662, -0.688441, 1.057207, 0.680153, -0.164897, -1.589375, -0.626532, -1.350541, 0.094207, 0.024144, 0.033231, -2.116893, -0.139615, 0.633968, -0.392008, -0.621979, -1.031888, -0.006171, 0.341959, -0.304727, -0.675608, 0.373853, -2.475079, -1.425560, 1.673913, 1.008796, 0.016358, -1.151680, 2.144601, 0.477443, -0.887749, 0.980220, 0.166570, 0.206412, -0.513800, 0.436815, 0.405896, -0.040816, 1.110727, 1.600247, 1.465791, -0.788530, 1.201879, -0.366949, 1.394733, 1.070748, 0.150472, 0.659714, -0.757924, -0.172787, -0.609503, 1.250226, 1.298262, 0.451066, -1.359456, -0.117556, -0.794953, 0.310740, -1.004179, -0.945177, 0.520098, -1.132981, -0.797592, -0.081408, 0.637807, -0.984319, 0.346406, -0.824686, -0.397321, 1.026535, -0.835315, 0.056043, -0.146760, 1.796133, -0.641363, -0.736158, 0.433930, 0.389400, 0.019762, -0.834503, -0.034398, 0.239323, 0.368093, 1.294903, 1.316761, -1.682339, -0.124992, 0.770280, -0.343303, 1.362679, 1.640580, 0.752038, -0.851014, -0.421579, 0.435795, -0.778787, 1.039243, 0.469155, 0.108753, 1.366291, 0.841241, 0.210745, 0.182440, 0.200677, 0.436389, -0.237686, 1.753419, 0.489163, 1.276351, 0.591933, 0.460519, -1.152828, -0.717730, 1.502052, -0.607565, 1.548253, -0.604468, -0.727911, 0.644048, -0.005045, 0.922403, 0.088790, -0.102192, 1.039948, -1.606114, -1.428640, -1.262117, 0.299861, -1.114343, -0.265729, 0.125110, 0.030758, -0.083524, 1.094934, -0.270417, 0.472369, -0.059708, 0.628177, -0.107136, -0.324765, -0.952523, -0.046930, 1.523735, 0.272287, 1.725026, -1.205695, 1.062197, -0.711978, -0.146690, -1.423114, -0.778422, -1.217096, 1.715939, 1.576324, 0.051942, 0.204556, -0.932816, 0.492694, 2.438417, 0.888981, -0.527529, -1.933757, 0.646135, -0.614193, -1.087856, -0.557064, 0.185985, 0.511061, -0.390883, -1.596592, 0.978180, -0.946558, 0.721499, -0.743225, 1.841631, -0.959513, -1.604350, -1.784055, 0.725962, 0.975490, 1.898428, -0.818010, -0.731995, 0.577568, 0.418148, -0.367793, -0.613654, -0.011497, -0.263782, 1.711323, -0.300193, 0.876097, -0.997962, 0.858011, -1.095400, 0.962259, 1.133087, -0.328039, -0.213810, 0.205992, -0.244006, 0.058983, 0.718961, 0.958461, -1.003019, -0.751842, -0.242856, -0.264801, 0.244261, -1.048357, 0.014919, 0.477452, 0.186028, -0.173006, 1.745380, 0.585445, -1.638158, 0.338894, -0.284006, -3.493119, 0.571100, -2.741557, 0.451146, -0.654038, 0.037411, -0.134293, -1.581769, -0.902480, 0.966946, -1.354360, 0.755069, -0.544637, 1.839966, -0.420417, -1.721993, -0.579371, 0.065471, 0.672800, -0.917232, -1.586558, 1.025455, 0.606238, -0.381239, -0.455500, -1.205888, 0.774092, -1.940934, -0.782034, -0.327826, 0.354076, -0.025557, 0.920551, -1.810738, -1.925011, -0.107626, 1.147085, -2.321892, -0.513339, 0.409429, 0.534713, -0.280586, -0.040125, -1.029857, -0.014253, 0.214418, -0.967326, -1.053586, 0.445565, 1.076704, -0.012910, 1.895640, 0.311183, 1.685511, 0.450028, 1.014505, -0.650555, -0.798246, -0.998815, 0.520359, -1.273114, 1.390960, -0.561613, -0.022688, -0.053627, 0.057131, 1.717007, -1.262933, 0.907290, 1.256241, -1.131723, 1.599953, -0.253555, -0.896650, -1.552177, -1.338289, -0.957251, -0.388387, -0.722031, 0.028977, 1.396168, 0.081871, 0.537319, 0.636286, 0.700353, -0.279753, -0.983189, 0.385888, 0.592412, 2.058786, -0.798062, 0.712257, -0.119313, 0.028472, -1.269644, 0.515530, -0.395772, 0.756266, 0.294836, 0.601913, 0.971878, 3.165786, 1.497066, 1.381218, 0.637049, -1.192745, 0.351044, 1.912264, 1.321968, 1.728423, -0.027998, -1.353320, -0.738639, 0.903697, -0.574246, 0.218770, -1.543242, -1.997329, -0.083894, -0.290574, 0.150222, -0.875749, 0.292958, 0.273309, 0.066613, -0.746650, -0.288609, 0.183678, 0.480538, -0.604838, -0.770552, -1.327995, 2.446121, 0.242837, 0.035695, 1.264200, 1.304335, -0.436617, -1.002368, -0.122616, -0.914776, 1.051786, 0.346259, 0.174848, -0.360196, 0.509331, -0.763519, 0.094443, 0.748851, -0.479733, 0.048598, -0.470991, -0.880891, 0.528085, -0.831811, -0.168548, -0.756303, 0.843103, 0.528023, -0.100302, -0.176102, -0.588082, -0.602964, -0.069620, -1.392507, 2.136610, -0.253163, 0.445596, -0.072787, 0.231489, 1.256343, 0.922688, 2.098324, 0.431670, -0.616264, 0.397559, 0.981272, -0.702541, 0.411561, -0.789860, -0.101933, 0.820929, -1.238067, -1.383445, -0.584946, 1.315012, -0.683212, -0.807401, 0.221157, 2.572555, -0.558486, -0.466617, 0.650243, 0.404331, -0.637288, -0.501941, -0.107137, -0.285530, 1.819867, -0.607296, 0.902662, -0.723361, -0.813568, 1.119328, 0.994681, 1.631943, -0.647467, 0.099469, 0.796308, -1.118404, 1.282666, -1.946691, -0.066002, -0.374988, 0.805715, 0.080832, -1.163378, 0.997132, 1.825287, 0.480180, 0.081590, 0.105172, -0.479911, 0.234662, 1.346949, -1.093379, 1.214430, -1.112203, 0.465987, 0.728168, -1.621110, 0.583074, -1.183695, 0.156311, 0.066771, 1.204989, 0.914211, 1.242568, -1.955169, -0.280042, 0.315662, 1.577902, -0.259655, -1.075322, 0.256076, 2.150965, -1.336083, 0.290708, 0.768369, -0.143799, -1.274200, 0.022063, -0.884434, -1.664843, 0.172083, 2.303315, 0.683597, 0.147329, -0.366698, -1.719324, 0.051357, -0.347740, 1.275837, -0.218232, 1.170323, -1.662511, -0.687318, 0.907392, 0.430589, -0.053352, 0.889480, -1.253622, 0.450284, 0.249036, 1.302276, 0.586593, 0.053065, 1.568096, 1.770037, 1.454865, -0.548367, -1.565844, 1.775465, 0.249632, -1.039956, 0.795342, -0.511277, 0.081967, 0.445284, 1.067112, 1.123052, 1.408181, -2.405706, 0.057144, -1.374030, 0.061260, 0.312595, 0.676322, 0.931774, -0.067539, -1.043824, 0.201093, 0.379765, -1.606246, -0.725767, 0.028409, 0.045244, -0.303882, -0.888580, 0.192998, 0.661582, 1.439774, 0.904899, -0.210575, 0.620243, -0.383762, 0.113186, -0.268947, 0.481107, -1.114118, 0.114565, -0.165559, -0.725235, 0.298934, 0.381351, 1.024736, -1.153659, 0.896177, -1.690750, 1.079421, 0.676033, -0.371577, 0.218614, 1.335192, -0.332709, -0.350457, 0.599502, 0.205720, 0.407148, -0.323578, 0.655907, 1.158795, -0.017071, 0.088476, -0.347644, 0.546670, 0.137762, -0.522284, 0.081650, 0.040479, 0.203716, 0.827086, 0.796083, 0.814420, 1.816166, 0.220131, 2.391267, 0.221054, 0.447738, 0.709133, -0.157327, 0.935208, 0.268604, 0.940662, 2.119045, 0.634606, -0.404540, -0.171930, 0.677152, -0.771961, -1.217854, 1.265833, -1.457031, 1.158979, 0.612943, 0.231427, 0.650473, -1.515571, 0.606932, -0.109494, 1.376330, 0.432135, 0.660849, 0.462841, -0.738863, -0.796471, -0.540915, -1.058321, -0.234455, -0.413326, -0.652293, -0.346293, -0.330266, 1.018993, 1.047712, -0.030798, 0.832906, -0.588213, -1.710313, 1.144080, 0.357935, 1.446213, -0.685933, -0.681213, 0.642061, 0.689908, 0.172521, -0.118253, 1.743970, -1.124316, 0.751217, -0.952258, 2.134021, 1.000273, 0.051863, -0.683537, -0.394543, 0.059142, 0.806354, 0.655425, 0.216655, 1.658706, 1.077564, 1.337428, 1.173931, -0.376355, -0.718538, -1.263968, 0.124676, 0.628591, 0.649896, 0.984522, -1.142577, -1.047129, -1.069562, 0.510604, 1.082319, -1.788132, 1.654094, -1.035538, -0.450806, -0.138076, 1.795855, 0.547535, -1.066553, 0.701321, 0.646998, -1.165189, 1.381142, 0.224558, -0.814839, -0.257461, -0.317717, 0.791956, -0.521247, 0.182536, 0.476384, 0.662352, 0.868469, 0.499103, -2.276606, -0.700339, -0.799431, 1.791469, -1.278518, -1.327601, -0.224936, -0.342351, 0.316049, 0.778886, 1.051512, -1.335621, -1.149686, 1.686925, -0.254368, 0.635095, -1.187148, -1.010278, -0.492819, -1.169926, 0.682603, 0.053245, -0.503127, -0.189006, -0.779797, 0.485712, -0.416719, -0.221808, -1.254290, -1.792164, 0.619780, 0.047934, 1.480217, 0.872310, 1.030734, 0.379362, -1.452760, -1.212062, -0.870231, -1.038103, 0.057124, 0.022883, -0.468857, 0.218550, 0.576703, -0.831564, -0.286510, 0.397877, -0.748201, 0.555598, -0.909750, -0.509538, -1.310334, -1.292420, -0.525875, -0.786236, -0.624085, -0.385486, -0.801028, -0.009571, -2.257022, -1.588910, -0.528587, -0.828641, 0.644814, -0.142657, 0.957285, -0.780736, 0.592382, 0.070177, 0.684669, -0.107393, 2.244922, 1.474520, -0.684866, 2.321015, -0.442424, -0.730348, -0.938591, -0.458850, -0.923669, -0.693816, -0.894782, 0.506693, 0.379831, 0.129668, -0.836614, -0.506009, 2.072190, -1.019043, 0.188217, 1.001233, -0.508240, -0.736047, -0.980374, 1.593231, -0.206044, -0.012771, -0.188056, -0.340899, 1.454946, 1.451661, -1.756262, 0.466374, 0.096658, -0.114193, -0.883717, 1.762851, 0.023497, -0.395106, -0.023293, -0.685980, 1.715271, -0.710072, 0.244675, -1.650159, 1.470560, 0.044509, -0.056639, 0.292866, 0.350013, 0.444982, 0.943564, 0.160168, -0.228492, -1.001426, -0.134507, -0.844040, -0.357401, -0.605854, 0.355575, 0.505713, -0.134223, 0.028477, -0.382544, -0.423431, -0.910372, -0.209491, 0.495415, -0.032237, 2.009180, 0.147206, 0.717580, 1.622344, 0.940787, -0.381611, -0.541310, 1.625242, -0.099227, -1.857770, -0.106963, -0.214531, 1.949480, -1.704526, -0.662712, 0.514992, 0.575963, 0.093116, 1.884132, -1.016716, 0.067718, 3.525071, 0.722898, -1.378108, 0.731708, -0.635515, 0.602832, 1.663256, 2.197930, 0.257048, 2.505107, 0.566762, 0.979314, 1.213718, -1.514245, 1.260772, -0.879602, -0.064179, -0.955029, 0.156186, 0.711772, 2.095929, 1.221367, 1.021019, -1.947429, 0.053563, -1.571172, -1.712534, -1.337238, 1.826482, 1.555171, -0.361187, -0.705218, 0.431315, 2.707319, 0.156639, -2.006769, 0.266519, 2.519930, 0.064009, -0.398410, 0.552100, 0.077366, -1.404637, -0.117074, -0.383022, 0.652414, 1.471821, -1.685982, -0.765709, -0.215678, 0.869112, 0.550228, -0.767380, -1.664271, -0.183127, -0.474050, -1.057527, -0.801472, 0.136443, 0.518924, 0.837671, -0.700037, 0.457764, -0.575128, -0.568784, 0.192139, 0.339454, -1.129597, -0.342714, 0.669315, -0.354307, -0.901839, -0.793999, -0.439380, -1.260784, -1.059923, 0.807124, -1.475509, -0.997639, 1.061441, 1.780895, -0.833064, 1.202443, 0.153890, 1.120824, -0.952271, -0.640651, 0.888717, -0.749905, 0.980772, -0.165455, 0.840177, 0.506043, -0.074439, -0.646241, -1.196535, -1.473457, -1.025843, 1.384802, -0.205239, 0.933269, 0.852717, -0.631608, -0.605848, 2.204123, 0.899414, -0.812970, -0.281677, 1.452321, -0.339074, 0.472734, -1.125468, 1.179123, 1.223917, -0.570790, 0.776367, -2.283300, 1.614032, -0.165724, 1.079280, -0.474152, -0.786561, 0.160983, -0.176196, -1.804664, 2.097442, -1.171600, 1.923921, 0.509796, -0.559737, 0.319586, 0.958536, -0.678699, -0.386368, 0.027626, 1.265167, -1.345930, 0.254827, -1.527831, 0.141637, 1.593094, 0.156084, -3.056865, -0.245565, -0.465173, 0.727681, 1.416753, -0.983813, 0.874930, 1.614263, -0.031769, 1.114022, -0.389009, -0.147253, 0.392513, 0.602372, 0.213457, 0.505253, -0.745142, -0.377469, 0.915819, -0.554277, -1.101924, -0.025209, -1.138321, -0.523159, 0.088973, 0.581748, 0.911635, 0.805386, 0.190995, -1.566399, -0.871323, -1.646309, -2.083198, -0.699157, -1.936154, -1.039101, 0.351493, 2.543581, 0.380145, 0.636793, -1.232949, 0.223535, -0.658429, 0.393315, 1.096874, 0.389380, -1.570974, 0.563085, 1.026896, 0.109118, 0.579006, -0.678324, -1.216875, 1.789480, -0.229035, -1.392942, -0.950321, -0.088313, 0.400355, 0.280385, 0.505757, 1.058196, -0.443377, 1.683682, 1.278953, -0.216402, 0.697448, -0.274509, 0.748989, 0.398882, 0.231902, -1.297925, -0.232622, 0.001290, 0.306747, -0.281876, -1.783599, 1.066509, 2.259376, -0.599245, 0.296969, -1.174173, -0.658929, 1.784487, -1.824762, -2.342735, 0.196985, -0.489315, 0.714056, 1.609772, 0.474250, 0.233969, 0.538214, 0.174779, -0.372400, -0.485277, 1.761914, -0.679665, -1.650604, 1.172769, -1.172119, -0.890124, 0.904746, 0.702208, 0.035457, -0.995319, -0.538248, 0.490332, -0.525949, 0.780202, 1.046797, -0.530066, -0.426790, -0.908589, 0.427402, -2.026588, -1.563893, -1.427157, -0.580784, 0.542865, -0.152298, -0.781005, -1.404719, 1.548622, 1.025263, -0.377098, -1.015003, -0.313740, -0.914655, 0.060810, -1.219147, -1.970471, -0.330691, -1.191620, -1.711774, -0.739467, 0.072992, -1.195651, -0.395240, -0.254014, 0.261251, -0.900271, 0.167436, 0.827294, 0.470323, 0.484870, 0.545093, 1.111824, -0.399583, -0.044468, 0.666031, -1.789258, 0.257656, -0.811399, -0.462023, -0.579402, 1.022489, -0.251694, -0.989028, 0.134830, -0.886865, -0.871208, 0.229175, -1.430037, -0.883812, -0.450496, -0.607847, 0.393400, 0.481358, 0.226084, 0.283049, 1.575148, 0.307526, -0.218971, 0.021006, 0.819853, -0.019379, -0.094840, 0.731058, 0.131002, -1.785889, -1.045723, -2.418310, -0.029961, 1.103737, 0.942718, -0.632671, 1.848520, 0.420746, -1.888876, 0.552942, 0.566347, -0.718096, 0.712276, -1.828897, -0.499452, 0.116303, 1.315645, 0.884146, -0.323418, 0.463636, -1.514444, 2.352086, -1.365315, 1.239967, 0.588737, 1.638455, 1.129810, -0.438809, -0.394888, 0.653613, -2.868885, -0.838789, -0.823126, -0.196717, 0.202075, 0.552049, 1.482252, 0.075047, -0.418021, -0.281258, -0.142049, -0.114351, 0.475819, 1.024567, -1.324666, 0.157907, 1.319639, 0.095391, 0.946895, 0.500446, 0.880789, -0.247725, -0.323405, 0.370860, -0.254428, -1.458892, -0.402498, -0.987412, -0.332088, -0.220281, 0.403325, 1.553383, -1.556870, 0.351992, 1.844337, 1.698081, 0.375805, -1.070631, 0.784901, 1.909826, 1.023797, -1.802303, -2.211247, -1.431070, 0.467244, 1.438755, -0.427119, 0.380609, -0.415295, 0.995989, -0.840233, 0.583054, -0.333990, 1.139243, -1.187958, 0.129554, -0.474073, -1.841934, 0.728499, -2.114883, 0.472777, -0.971807, 0.806532, 0.016578, -0.662566, 0.052372, -1.091360, 0.426197, -0.371913, -2.076143, -1.251437, 0.004846, -0.717205, -0.172040, -0.128197, -0.507114, -0.676108, -0.402204, 0.421484, -0.224705, -0.431267, 0.358302, 0.252345, 0.196528, -1.468621, -0.296069, -0.170987, -0.397447, -0.022102, 0.325280, -1.296807, 1.482439, -1.817771, 0.571995, 0.149197, 0.202421, 0.509201, -0.134834, -1.096534, 1.098068, -0.033935, -1.436609, -0.213835, -0.501434, -1.048211, 0.205513, 1.223317, 1.716906, -1.105310, 0.729498, -0.203941, 0.827914, -0.378645, 0.011730, -0.875761, 1.080804, -0.706079, -0.345244, -1.040379, -0.165118, 0.389640, 1.530612, -0.123796, -0.672278, -1.786623, -1.908797, -1.568014, -0.479456, 0.500370, -0.066324, -0.336116, -0.015939, -1.132344, -0.374028, -0.663659, -0.464168, -0.394359, -0.998954, -0.312372, -0.747966, -0.418536, 0.658967, 0.164697, 0.695017, -0.893809, -0.711494, 0.143180, -0.318031, -1.098444, -0.874813, -1.384449, 0.432204, 1.213473, 0.835967, -0.384356, -0.441638, 1.099433, 2.306718, -0.693518, -0.625641, 0.683555, -1.544752, -0.243667, 0.639205, 2.021758, -1.080002, -1.088442, -0.313440, -0.644608, -0.300581, -0.652714, -0.806812, -1.068784, 0.046435, -2.118585, -1.115179, 0.182071, -0.558630, -0.702132, -0.137491, -1.977500, -0.461848, 0.751477, 0.994610, -1.775799, 1.104487, -0.330515, -0.909022, 1.179385, 0.035512, 0.437703, 1.633006, 0.182793, -0.691155, -0.152167, 0.990307, -0.233173, -0.497868, 1.240438, 1.607911, -0.900660, -0.646264, -0.811764, -1.207551, 1.981435, -1.008740, 1.519909, -0.522556, 0.084641, -0.759907, -1.892481, 0.031610, 0.473053, -1.412629, 0.500290, 0.231998, -0.605847, 0.161867, 2.002990, 0.542543, -0.321592, 0.711354, 0.380658, -0.139414, 1.558352, -1.020395, 0.987752, 0.965388, -0.047861, 0.290719, 0.996668, -0.416594, 0.596539, 1.280106, -0.254135, 0.973754, -1.101897, 0.702517, 1.910838, -1.472545, -0.045363, 0.229224, 0.301390, 0.670903, -0.952184, -1.607860, 0.072578, -1.581107, 0.443338, -0.222851, 2.756876, -1.310119, -0.020809, 0.791069, 0.861844, 0.734797, -0.392561, 0.854192, -0.659934, -0.003381, 2.028399, -0.708423, 0.013903, 2.381469, 1.181861, 0.618737, -0.293065, -0.506139, -0.097306, 0.073013, 0.344808, 0.914580, 0.127076, 0.590228, -1.261667, -0.371993, 1.151965, 1.141296, 0.410996, 0.351491, 0.064431, -0.838813, 0.972374, 1.053544, -0.002942, 0.714476, -0.322011, 1.801567, 1.384604, -0.836596, -0.046222, 0.191870, 1.642402, -0.096622, 0.282654, 1.375070, -0.477836, -0.661633, -0.120481, -1.583234, -1.006868, 0.183058, 1.083475, 0.698355, 1.979010, 0.540444, 0.961085, 0.324660, 0.147543, 2.509147, 1.010739, -0.683794, 0.500731, -1.610149, -0.871616, 2.896942, 0.924603, 1.219212, -0.044985, 0.637004, -1.119053, -0.294312, -0.747165, 0.960623, 1.028422, 0.649897, -0.378474, -0.445009, 2.368332, 0.457036, -0.937630, -0.854273, 0.696293, 0.129350, -0.366837, -0.396054, 0.261006, -0.925259, -0.456275, -0.001663, -0.517747, 0.303678, 0.533820, 0.920562, -0.138332, 1.458676, 0.439266, -1.523234, 0.684625, 0.245576, 1.128591, -0.651955, -1.335039, -0.297670, -1.723721, -1.224969, 0.960434, 1.007089, -2.137786, -1.267744, -0.262784, 0.990362, -0.555036, -0.793861, 0.872762, -0.207125, -1.447256, 1.369942, -0.816625, 0.044462, -0.616905, 0.695319, 0.004452, 0.448508, -1.543660, -0.683089, -0.201652, 2.196388, 1.030919, -1.469105, 0.602515, 2.539225, -0.089296, -0.508063, -0.031555, 1.035785, 0.169931, -0.986887, -0.385489, -0.817233, -0.031580, -0.626486, 0.200654, -0.182102, -0.351826, -0.187926, -0.383140, -0.385970, -0.585135, -0.163542, 1.713342, -0.921847, 0.167827, -0.805821, 0.548464, 1.375206, 0.921165, -0.575711, -0.440952, -0.683945, 0.338662, 0.565328, -0.364061, -1.173212, -1.258109, -0.390788, -0.818243, -1.455010, -0.524701, 0.740669, -1.490082, -0.741762, -0.119025, -0.893809, -1.392061, 0.332242, 0.382190, 0.641684, 1.529958, -0.659197, 0.334477, 1.125260, 0.413570, -0.346402, -0.007930, -0.737436, -2.397323, -2.118458, -0.552373, -0.937271, -1.579488, 0.203219, -0.290763, 0.094903, 1.809901, 0.799022, -1.141322, 0.394433, -0.196285, -2.278059, 1.603311, 0.297939, -0.114695, 0.502298, 1.005838, 1.324990, 0.487013, 0.987532, 0.463202, -0.157926, 1.739709, 0.155327, 0.343587, 0.029521, 0.140078, 0.155230, -0.561813, 1.011946, 0.007880, -0.128152, -0.319394, -1.001673, 0.808477, 0.710711, 0.635156, -0.531456, -1.079610, 1.531201, -1.183632, 1.119258, 1.566969, 0.455719, -0.043641, 0.129101, 0.066554, -0.116065, 2.492334, 0.243415, 0.990687, 0.224493, -0.051058, 0.167348, 0.657801, 0.932677, 0.252847, 0.510985, -3.157595, 1.625633, -1.275724, 0.005677, 0.751649, -2.079681, -0.140341, -0.248205, -0.477035, 2.683731, 0.255939, -1.219899, 1.245760, 2.048002, 0.559533, -1.503335, 1.179665, 0.350367, -0.248408, 0.650341, 1.280945, -0.862085, -0.593117, 0.783220, 2.210081, -1.099606, 0.913108, -0.788223, -0.414219, -0.367210, 2.356318, -1.025373, 0.451879, 1.041746, 1.205814, 2.762030, 0.266384, -1.372844, 1.837037, 0.433872, -0.025650, 0.283814, -1.612595, -0.100760, 1.025159, 0.293806, 1.239109, 1.023700, -0.289077, 0.222629, 2.065078, -0.175527, -0.116824, -0.864729, 0.227295, -1.914245, 1.564581, 2.536207, 0.276864, -0.425854, 0.084087, 1.500714, 0.725067, -0.392997, 0.214902, 0.324331, 0.179123, 2.785388, 0.888026, -0.525624, 1.469832, -0.349266, -0.274373, -1.148010, 0.579981, -0.692619, -0.040625, -0.993343, -0.406150, 1.506176, -0.497475, 0.789098, -0.035790, 0.990151, -0.039079, -2.705557, -1.094666, -0.625143, 0.804866, 0.219521, 0.081206, 0.511616, 0.726750, 0.152445, 1.195558, 0.426885, -1.665915, 0.375987, -0.350676, -0.564595, 0.339522, 0.427084, 1.657469, 0.568936, 3.105310, 0.765127, 0.788472, 0.370094, 0.804437, 0.592568, 1.480782, -0.709450, 0.465543, -0.667039, -0.368412, 0.476881, 1.994036, -0.982412, -0.684944, 0.431290, -1.330208, -0.848735, 0.612638, -1.417809, -0.007506, 0.773699, 1.428895, 0.691483, 0.830463, -1.282452, -0.566430, 0.026518, 2.121457, 1.746775, 1.906468, 0.396993, 0.159653, -1.335027, 0.584783, -0.294817, -1.022833, -0.174066, -0.783860, 1.334226, -2.058365, 0.461409, 1.824046, -1.420278, 0.421575, 1.330390, 0.021946, 1.271346, 1.073289, -0.105101, -0.769342, 1.104624, -0.229109, -0.346910, -0.249460, -1.416018, 0.504529, 1.904952, 1.211589, -0.627354, -1.145866, -2.263822, 0.023647, 0.537481, 0.625102, 0.166266, -0.458749, 0.852503, -1.423139, 0.572783, -1.070083, -0.914595, -0.632868, -0.384522, 1.447742, 0.305189, 0.987366, -1.565554, -0.627675, -0.259939, 0.005226, -0.907356, 0.646443, 1.209102, -0.529064, -1.343631, -0.919577, 0.518216, -0.818729, -0.660674, -0.002334, 0.152368, 0.430964, -0.908601, -1.041438, -1.008916, 0.369467, -0.651854, -0.537265, -0.574869, -0.261072, -2.369316, 0.229630, -0.322115, 0.325665, 0.050208, -1.428625, -0.671835, 1.119180, -0.391970, -0.254049, -0.291748, -0.491692, -0.143579, 0.327894, -0.086655, 0.688373, -1.438234, 0.041709, 0.678302, 2.927514, -0.987963, -0.216131, -0.995992, -0.615756, 1.755934, -0.006421, 1.098392, 0.324436, 1.007182, 0.368347, -0.592884, 0.088959, -0.563451, 0.485165, 0.992092, 2.499524, -0.623244, -0.018389, -1.874109, -0.738346, 0.181017, 2.217338, -0.683366, 0.620883, 1.017413, 1.040897, -0.979345, 2.010843, 0.792239, -0.297833, 1.220630, -1.694964, -0.612575, 0.796962, 0.549168, 0.620890, -0.571573, -0.570756, -0.906425, -1.012280, -1.518525, 0.588146, -0.044602, -0.206276, -0.228919, 0.141782, -0.215266, 1.747399, -0.909909, 0.987336, 1.915157, -0.867561, 0.060568, 0.885174, 1.395962, 0.550065, 1.581690, -0.164328, -0.459357, 0.990657, 1.457520, 0.238631, 0.411438, 0.089105, 1.345971, -2.658618, 0.135135, 1.049907, -1.694229, 0.177401, -0.248113, -0.291922, -0.261910, 1.064905, 0.456701, -0.250302, 1.075610, 0.421758, 0.962856, -0.984678, -1.382609, 0.803392, -0.333360, -0.215848, 0.871534, 0.849590, -0.722227, 0.013032, 0.314628, 0.446570, -0.774570, -1.025838, -1.132255, -0.456291, -1.881487, 0.452940, 0.834990, 1.214516, 0.425363, 0.682928, 1.140494, 0.971782, 1.246880, 1.059481, 2.242805, -0.522573, -0.171542, 1.104010, -0.245134, -0.413827, 1.077239, 0.080880, 1.530349, -0.927708, 1.878834, -1.520821, -0.723451, 0.117842, 1.087706, -1.102160, -0.041194, 2.224988, -0.534364, -0.029992, 2.730592, 0.420793, -0.204795, -0.889640, 1.034558, -0.814875, -0.111423, -1.609026, 1.293927, -1.170157, -0.899608, -0.678674, 0.576887, 0.292821, -0.396618, 0.248343, 0.100238, -0.578918, -0.306456, -1.071213, -2.044917, 1.086225, -1.354019, -0.466433, 0.196035, -0.721771, 1.054357, -0.543856, -0.162560, 0.394111, 0.376948, -0.288080, -0.113722, -2.283901, -0.007702, 0.284499, -0.314419, -0.204461, -0.249654, 0.302865, -0.020056, -1.126304, -1.943631, 0.414700, 0.033138, 0.850032, -1.056158, -0.984817, 2.012539, -1.162767, 0.036114, -0.123424, -0.286858, -2.160591, -0.655729, 1.186937, 1.005903, -1.537253, 0.245097, -0.480056, 1.414874, -0.409645, 1.219627, -0.008330, 1.037111, -1.878316, 0.539800, -1.676014, 0.382768, 1.174856, -1.649877, 0.052651, -0.030654, -1.212355, 0.925200, 0.383778, 0.182420, -0.404893, 1.877626, 1.750972, -0.250133, -0.550591, 0.357721, 0.659463, -1.695663, -0.358620, -0.502560, 0.028817, -0.886939, 0.655762, 2.196385, -1.005713, 0.434417, -0.058091, -1.195793, -0.239609, -0.272780, 0.786638, -0.184375, 0.102892, -1.295292, -0.209359, -0.617078, 0.386488, -0.311778, 0.136317, -0.097341, 0.925262, 0.548278, 0.267836, -0.753031, 0.039780, 0.393223, 1.533396, -0.700570, -0.177551, -0.479102, 1.300496, 0.270123, -0.605122, 1.346603, 1.735063, 0.558938, 0.331713, -1.125230, -1.433617, -0.433647, -0.787385, 0.605659, 0.637913, 2.521290, 1.358994, -1.368538, 0.399753, 0.456260, -3.023672, 0.617869, -1.571912, -0.761572, 0.080310, 1.729928, 0.867082, 0.459157, -0.547153, -1.356668, -0.009079, 0.627500, 0.687771, -1.691219, 0.389028, -0.627658, 0.336266, -0.791690, 1.674377, -1.870130, 0.392219, 0.206221, -2.770966, 0.430380, -0.326570, -1.941549, -0.680329, 0.038956, -1.129796, 0.102337, -1.017789, -0.454172, 1.625192, 0.133464, -0.386068, -1.962193, -0.543869, 3.229228, 1.006537, 0.075903, -1.022170, -1.696462, 0.121248, -0.098383, 1.102084, -0.329555, 1.556723, 0.176763, 0.166727, 0.174999, -0.902615, -0.179858, 0.589487, -0.563771, -1.519436, 0.462207, 0.571710, 0.333565, 0.565644, 0.707029, 0.110245, -0.197771, -1.519380, -0.374365, -0.850962, -0.618874, -0.840363, -0.681834, 0.237797, 0.454331, 2.300648, 2.177878, -0.170240, -0.974967, 0.768538, 1.017157, 0.482455, 0.544419, -0.929654, 0.337360, 0.109592, 1.589580, 0.092464, -0.107643, -1.024489, -0.784592, -1.902071, 0.051787, 0.236157, -0.076378, -0.613753, -2.189075, -0.036911, -0.896163, 1.064895, -0.318347, -1.663570, -0.730439, 0.243153, 0.926481, -0.135915, 0.408778, 2.341446, 1.402325, 0.433459, -0.406470, -1.704017, -1.506342, 1.745454, -0.979293, -0.391387, 1.269153, -0.822313, -1.316674, 0.208462, -1.266113, -0.197000, -0.138077, 0.361245, -0.991852, 0.643091, 0.862622, 0.514414, -0.684923, 0.400014, 0.372363, 0.237329, 0.690028, 1.389023, -1.183007, -0.496359, -0.240756, 1.402574, 1.365471, -0.706577, -1.590050, -0.468826, -0.429029, -1.035070, 1.182868, -0.095812, 2.214039, -1.061791, 0.964292, -1.674021, -1.432026, 0.531377, 0.264864, 0.383192, 0.700450, 0.218761, 0.680145, 1.332157, 1.554132, -1.147946, -1.541285, -0.236223, -0.239067, -0.997370, 1.091664, -0.158923, -0.992974, 0.674797, 0.564022, 0.020085, -0.175621, -0.492040, 0.718887, 2.247444, -0.779793, -0.459320, -0.704878, -0.742369, 0.494698, -1.567200, 0.999634, -1.530236, 1.176230, 0.013777, 1.696121, 2.266544, 1.154337, -1.664384, -0.017695, -0.067958, -0.814701, -0.420535, 1.080683, -2.071410, 1.082735, 1.463830, -1.226632, 0.608441, 0.342547, -1.119508, 0.950543, 0.783880, 0.537984, -0.649137, -0.140676, -1.036698, -1.017165, -0.561600, 0.968917, -1.208144, 2.054611, 0.040074, -0.360119, -1.252352, -0.141828, 0.438467, -0.147142, -1.929617, -0.125146, 0.253362, 1.048105, -0.585618, -0.424878, 0.311184, -0.408742, -0.914687, -1.744090, 0.072903, 0.052567, 0.978871, -0.886133, -0.284516, 0.273249, 0.404913, 0.649349, -1.088217, -1.308082, -0.126900, 1.271768, -0.846192, -0.709852, -0.734048, -0.074744, -1.895451, 0.068283, 1.643967, -1.231534, 0.207526, 1.787302, 0.449402, 0.254738, -0.281204, 1.986037, -0.513545, -0.701200, 2.271109, -1.010963, -1.541573, 0.016110, 0.000358, -0.457372, -0.332379, 1.443973, 0.964581, 1.240194, -0.359747, 2.603577, 0.543551}, - { -0.107564, 0.567111, 1.507631, 0.089833, 0.253529, 0.260600, -0.521284, -0.767698, 0.098728, 0.351691, -0.664017, 0.848860, -0.426352, -0.692066, 0.764174, -0.947062, -1.025621, 0.769093, 0.717698, -1.419516, 0.048386, -0.134874, -1.191155, -2.653970, -2.372529, 0.100891, 0.345958, 1.523596, -0.069364, 1.092213, 0.019611, 1.726048, 0.129839, 0.974656, 0.473685, 2.006704, 0.409018, 0.168479, -2.377246, 0.313185, 0.855228, -0.949149, -1.138021, 0.295935, 0.098001, 1.314375, 0.240212, 0.028415, -0.801537, 1.333266, -2.177311, -1.797675, 0.924819, 0.163660, -0.303012, 1.213384, 0.380437, -0.174758, 0.659786, 0.332976, 0.893246, -0.662980, -0.607364, -0.475822, 0.030489, -0.747158, 0.207286, 0.582691, -0.168465, -2.063632, 1.027128, 0.943647, -0.484116, -1.570549, -0.112206, 0.125662, 0.459646, 1.095626, -0.264228, 0.060333, 1.012859, 0.470118, -0.987023, -0.571565, 0.890113, 0.603376, -1.715657, -0.161555, 1.803733, 0.021172, 1.830827, 0.921867, -0.585876, 0.399375, -1.234494, -0.286208, 0.951111, -1.905643, -0.130471, -0.314198, 1.224183, -0.253138, -1.066632, -0.887175, 1.481041, -1.717460, 1.216404, -1.558310, -1.849459, 0.465998, 1.161974, 1.063456, -0.083399, -1.128171, -0.157984, 0.824466, 0.561641, 0.854676, 0.750576, -0.573834, -0.580197, -0.280071, 0.467827, -0.068779, -0.339943, -1.105056, -0.363187, 0.811319, -0.541042, -0.858928, -0.108769, -0.344523, -0.231413, 1.041363, 0.154795, 1.079924, -1.340443, -1.719497, 1.144853, 0.335797, -0.661882, -1.547137, -0.599678, -0.631224, 0.721768, -0.569869, -0.220296, -0.594271, 0.196788, 0.126424, -0.132890, 0.917555, 2.919824, -0.326509, 0.299645, 1.932699, 1.470799, -1.076151, -0.940767, 0.820784, -0.586004, 0.280202, 1.339391, 0.372885, 0.609882, -0.670580, 1.229919, -0.449302, 0.092249, 0.964588, -2.366810, -0.835183, -0.804362, -0.350424, 1.166668, -0.383383, 0.771987, -0.865056, -1.375879, 1.720355, -0.815208, -0.419583, 0.307390, 1.847089, 0.734753, 1.275452, -0.548501, -0.506838, -0.407166, -0.242758, 1.570517, -0.452768, -0.279476, -0.978788, 0.915423, -0.253402, 0.134892, 0.072617, -0.466987, 1.168253, 0.004817, 0.320259, -1.123081, -1.341465, -0.082952, 1.576307, -0.039958, 0.634998, 0.728488, 2.110096, 0.649783, 0.124882, -1.121643, -1.055215, 0.132611, -2.026237, -1.707300, 0.450669, 0.671282, -0.009472, 1.744705, -2.087952, -1.059036, 1.644153, 1.170978, 0.698382, 1.691275, 0.573809, 0.937123, -0.639981, -1.225010, -0.440868, -2.317004, -0.982818, -0.599471, 0.102466, -2.558308, -0.383315, 0.946435, 0.363056, 1.189015, 0.170644, -1.278785, -0.147227, 0.279878, 0.111118, 0.179203, -0.217147, 0.786375, 0.394571, -0.239909, -1.123003, 0.160728, 1.052199, 0.591157, -0.346886, 1.073154, 0.519690, -1.553831, 0.806229, 0.810919, -0.576034, -0.924473, -0.619924, -0.940108, -0.871045, -1.286237, 2.153194, -0.429805, 0.647924, -1.389153, 0.587985, 0.627389, -0.032581, -0.265747, 0.059682, -0.585344, 0.083364, 0.407399, 0.056894, 0.150550, -0.291422, -0.618604, -0.964097, 0.557800, 1.495255, 0.460985, 1.105772, -0.033014, 0.753507, -0.185367, -1.941703, -0.267666, -0.127336, -1.303198, 1.617847, 1.252837, 0.347011, -1.762125, -0.381366, -1.640321, 0.932442, -0.394437, 0.408265, 0.825253, -0.759669, 1.162629, -1.089117, 0.915868, 0.208844, 0.853875, -0.210703, 2.087829, -0.485120, 0.252189, 0.843117, -0.575198, 1.186742, -0.542850, 1.957941, -0.855651, 0.581289, -0.881204, 1.414971, 1.828974, -1.590112, 1.022291, -0.240954, 0.502831, -0.645713, -0.573912, 0.582151, 0.651937, 0.284228, -1.090852, 0.536112, 0.972902, 0.578545, -0.512860, -1.033079, 1.009932, -1.782424, 1.585972, -0.469910, -0.913712, -0.215104, 0.886212, -0.695154, 1.336107, -0.642250, 0.037515, -1.028773, 0.205241, 0.111050, 0.432218, 0.701086, 1.300497, -1.327512, 1.298314, -0.162390, 0.713141, -0.601166, 0.713671, -2.778200, 0.892948, 0.042329, -2.027648, -0.021793, -0.129801, -0.956841, 0.103627, -0.383032, -1.159092, 0.745385, -0.333663, 0.127354, 0.669309, -0.793391, 0.626571, -1.018438, 0.855159, 1.050925, -0.589540, 0.436837, 0.985532, -0.460413, -1.918710, -0.426365, -1.700912, -0.104674, 0.894770, 0.494039, 1.551795, -1.791339, 1.047061, 0.194365, -3.164350, 0.204653, 0.314568, -0.288502, -2.033651, -0.634604, 0.175062, 2.002624, 0.246801, 0.432259, -0.576299, -0.004973, -0.327138, 0.349449, 2.386581, 1.160786, -0.077858, -0.201286, 1.613384, 1.830168, 1.045279, -1.240590, 0.303245, 0.035713, -0.471562, -0.839015, 1.630957, -0.776562, 1.041517, -0.529833, 0.145379, -0.229662, -1.399546, 0.933848, -0.824862, 0.697725, -0.544501, 2.436984, 1.006368, 0.333027, -0.220171, 0.155245, 0.369798, 0.139770, -1.760627, -2.052159, -1.162144, -1.575735, -0.920760, -0.094226, 0.069217, -0.944024, -0.137223, -0.524219, -1.851330, -0.130540, 0.526208, -0.111871, 0.531441, 1.984888, 1.149945, -0.066938, 0.161827, 0.106163, -0.126390, 3.024917, -1.838640, -1.081043, -0.866902, -0.918155, -0.900351, 0.401163, -0.226729, -0.432282, -1.826365, 0.840420, 0.180251, 0.752581, -0.661255, -0.168041, 2.080487, 0.668378, -0.233470, 0.733336, 1.919203, 0.476853, 0.236222, -1.707350, -0.796978, 0.019973, -1.041423, 1.018395, -0.107299, -1.444325, 0.791442, -0.788191, 0.591638, -0.991558, 0.534095, -0.712121, 2.341809, -0.177906, -0.709765, -0.842983, 0.257565, -1.427867, -1.205549, 0.264839, 0.184064, -0.589042, -0.490605, 0.446971, 1.769823, 0.287042, 1.181455, -1.265639, 0.562373, 1.423353, 0.079957, 1.588951, -0.917558, -0.411528, -1.494327, -1.771370, 0.336357, 0.342872, 0.658012, -0.950980, -0.574546, -0.243331, -0.314933, 0.051272, 0.535575, 0.919668, -0.007354, 0.445684, -0.082029, 0.304456, -0.872931, 0.432695, 0.516440, -0.133272, 0.808826, -2.086042, 0.343427, -1.374223, 0.604816, 0.692821, -0.839644, -0.911351, 1.429460, -1.804764, -0.096803, 2.065164, -0.218181, 0.308553, 0.382982, 0.944473, 0.561943, -2.089864, -0.673406, -2.759019, 0.200081, 0.575476, 1.579116, 0.899565, -0.221501, 1.351479, 0.096794, 1.243194, -1.474891, 0.654180, 0.064298, -0.835662, -0.194806, -0.367746, -0.228220, 1.231606, -0.894331, -0.101611, 0.381977, 1.192542, -1.467655, -0.058888, 2.153271, 0.061435, 1.226431, 1.515339, 0.182197, 1.519458, -0.231026, -0.487254, 0.392141, 1.589703, -0.408195, -0.553761, 1.964831, -0.229460, 0.351706, 0.408573, -0.471520, 0.622909, -0.324242, 1.426097, 0.890638, -1.741549, 0.461812, 0.018615, -0.801842, -0.541091, -0.210843, -2.291299, -0.362839, -2.076929, -1.018306, -1.199963, 1.818083, 1.648525, -0.801061, 0.080513, 0.202764, -0.759549, -1.717946, 0.218564, -1.081691, -0.699631, -0.868473, 0.317636, 0.485838, -2.115855, -0.294260, 0.287382, 2.124204, -0.388793, -1.695107, -0.902897, 0.441529, -0.012548, -1.506019, -1.252866, -0.026424, 1.226648, -0.293096, 0.203289, -0.756098, 1.047191, 0.982714, 0.628749, 1.116323, 1.349611, -0.335788, 1.347674, 0.190967, -0.498005, 1.629062, -0.843257, -0.030271, 0.930623, 1.425032, 0.590393, 1.395356, -0.624263, 1.033477, -0.696789, 0.001762, 1.519758, 0.818181, 1.074804, 0.189180, 1.667274, -0.381048, 0.830547, 0.124273, -1.612885, 0.781029, -0.359811, -1.223480, 1.187759, 0.418474, -0.101242, -0.056971, 0.259009, -1.039807, 0.546360, -0.297666, -0.688955, 0.811319, -1.250016, -1.931627, -0.583212, -1.157971, -1.324602, 0.095786, 0.027765, 1.445417, -1.332329, 1.547683, -0.597663, 0.537965, 1.423062, 0.221477, 0.521012, -0.350880, 0.366148, -0.292342, 0.021799, -0.692396, 0.077772, -1.338284, -0.487567, 1.081337, -0.159286, 0.626035, -0.192806, 0.380465, -0.125549, -0.263307, 1.228543, 0.479255, 0.558255, 0.992493, -2.064684, -0.590775, 0.475399, 0.808970, -1.079263, 0.819858, 0.001053, 1.713279, -0.441459, -0.550008, 0.275009, 0.578480, -1.909862, 0.903774, -0.179690, 0.626672, -0.320327, -0.186131, -0.082795, -3.109381, 0.654981, 0.037561, -0.171945, -0.445913, -0.689320, 0.086894, -1.278882, 0.562797, 1.472451, 1.642338, -1.250318, -1.137734, -0.629939, 0.907227, -0.342787, -0.411368, -0.663720, 1.296885, 1.027811, -1.927894, 0.926883, 1.424112, 0.534358, 0.905297, 1.511685, 0.377599, -0.886907, -0.421989, -0.911743, 1.000193, -1.038782, -0.006770, -1.659163, -0.079689, -1.208335, -0.281989, 1.138968, -0.556572, 0.859251, -0.668976, -1.658532, 1.155972, 2.354597, 0.069028, -1.308192, 0.488072, 0.638325, 0.404602, 1.578895, -0.511252, -0.894019, 0.399280, 0.023934, 0.688264, 0.784093, -0.604418, 1.478099, 1.185932, 0.590855, 2.482460, 1.078722, 0.335556, -2.164707, -0.718133, -0.083929, 1.264312, 0.596210, 0.122359, 0.636054, -1.683981, -0.817120, 1.510286, -1.320647, -0.585404, 0.191411, -0.480665, 1.367395, 0.993017, 2.074307, 0.303111, 0.863781, 0.615300, 0.725178, -1.041963, -0.202601, 0.464231, -0.251837, 0.775464, -0.758715, -1.613629, 0.055123, -1.644216, 1.362099, 0.138816, -0.167410, 0.884396, -1.099416, -0.768541, 0.153765, -0.562399, -0.048826, 0.409359, -0.247760, 0.423644, -0.332858, -1.149836, -1.530859, 0.051066, 1.164228, -0.218592, 0.469758, -0.270103, 0.874498, -0.141658, -0.525855, 0.275665, 1.935651, -0.822094, 1.356794, 0.989574, -1.130628, 0.636094, -0.732825, 1.926735, 1.339513, 0.771204, -1.057297, -0.352365, -0.682190, -1.583295, 0.197261, 0.538025, 1.598909, 0.622875, -1.351804, 0.440459, 0.247602, 1.633335, 0.801167, -0.144609, -0.209023, -0.936720, 2.060589, -1.345932, -1.122756, -2.108896, -0.500439, 0.763176, 0.891038, 0.015775, -0.752514, -0.661973, -0.289178, 1.630489, -0.500762, 0.070115, 1.506407, -0.981540, -1.588406, 0.992498, -2.481605, 0.057981, 0.388419, -0.039999, 1.383976, 2.661830, 0.397678, -0.835880, -0.329375, -2.280789, -1.895880, 1.424873, 1.359007, 0.729401, -0.157402, 1.628273, 1.844476, -0.010730, -0.327102, 0.373267, -0.731033, -0.963579, 0.455399, 0.535462, 0.052567, -0.728972, 1.218651, 0.752671, -0.066791, -1.105672, -0.111076, -0.393103, -1.266070, 1.068630, 1.265227, -0.932089, 0.778385, -3.302621, -0.895119, 0.075585, -0.777410, -0.462299, 1.105099, -1.384574, -0.807010, -0.015771, 0.558033, 1.144656, -0.240984, -0.698494, 0.202620, 1.114896, 1.018613, -0.681215, 1.013868, -0.826554, -0.258071, -3.049321, 0.626657, 0.076328, -1.252243, -0.464053, -0.906678, -0.443308, -0.020463, 0.496904, 0.682432, -0.359242, -2.157911, 0.756843, 1.138582, -1.222610, -0.652022, -2.332255, 0.423948, 0.909839, -0.617476, 0.824549, 0.800059, 1.237592, 0.525611, 0.534927, -0.345931, -1.043367, -1.053603, 1.098188, 0.478464, -0.663188, -0.859529, 0.472558, -0.219958, -0.274905, -0.673648, -0.853832, 0.934617, -0.702375, -3.233822, -0.773592, 3.805918, -1.140535, 0.623434, 0.510648, -0.418119, 0.079674, -0.326342, 0.643506, -0.702112, -0.284825, 1.878356, -0.861996, -1.820630, 0.778575, 0.511991, 1.203326, -0.040828, 1.744495, 1.192491, 0.555848, -0.052246, -0.753323, -0.325756, -1.308429, 0.974147, -0.644903, -0.706800, -0.297981, -2.069843, -0.345973, -1.214355, -0.917852, -2.155937, 0.927861, 0.474878, 0.247987, -0.908771, 0.272681, 2.615279, -0.549072, 0.185536, -0.757504, 0.735709, -0.585245, -0.550818, 0.039396, 0.347881, -0.619996, 1.185706, 0.347206, 0.840082, -0.105743, -0.377565, 0.394268, 0.358868, -0.836091, 0.372199, -0.650276, 1.643714, 0.290317, 0.772565, 0.015490, 1.953443, -0.106934, 0.892257, 0.238899, -2.405387, -0.411437, -0.516776, 0.184538, -0.350451, -0.690542, 0.689651, -1.176242, -0.246449, -0.662618, -0.896708, -1.036163, 0.707453, -0.273457, -1.063009, -1.437992, -0.075853, -0.725216, -0.501038, -1.620955, 0.090590, -0.174102, -0.151916, -1.001883, -0.397621, 0.804467, 0.419073, -0.502699, 0.553882, -0.306174, -0.886734, 1.160123, 0.867753, -0.166415, 0.373206, 0.300597, 0.217621, -0.280384, 1.059431, 0.470278, 0.547095, -0.780942, 0.499592, 0.094520, -0.787875, -2.602450, -2.181004, 0.132215, -1.299746, 0.811831, -0.223914, -0.837817, -0.061314, 0.827029, -0.245986, -0.572435, -0.448406, -1.094119, 0.361295, -0.373553, 0.563738, -0.177414, 0.410312, 0.276365, -0.827044, 0.531996, 0.892704, -1.571435, -0.814432, -0.274162, 0.723977, -0.249889, -0.755724, -0.350416, -1.397094, 0.738375, 1.219680, -0.802848, -0.299505, 0.917300, 0.556091, -0.637355, 0.773169, -0.612296, 0.138151, -1.082792, 0.562419, 1.761884, 0.030639, 1.638407, -1.397408, -1.364331, 1.176498, 0.634336, -0.194025, 0.940187, -0.252420, -1.828030, -0.179653, -0.738313, 0.742925, 0.606607, -1.758966, -1.040130, 0.998192, 0.519292, -0.055416, 3.207140, 1.069309, -1.528195, 2.234299, 0.387162, 0.357318, -0.204103, -0.241818, -0.917731, -0.523849, -0.415264, -0.645009, -0.323789, 0.799123, -0.016987, 0.573841, 1.856380, -0.559798, 0.991535, -1.142989, -0.235376, -1.837207, -0.855456, -0.922816, 0.450375, -1.353277, 0.898918, -0.288346, 0.467588, 0.654611, -1.782100, 1.124761, 0.776079, -0.988945, -1.778324, -2.117336, 0.358062, -0.130207, -0.811923, 0.502498, 0.626336, 1.208242, 0.984898, 0.228393, -1.049579, 0.161324, 0.362087, 1.311942, -0.166878, -0.477098, -0.929323, -0.430653, -0.214376, 1.124906, -0.449445, 1.772658, 1.141216, -1.001936, -0.190634, -1.281548, 1.241780, 1.622071, -0.460086, -0.745039, 1.202176, -0.785963, 0.804039, 0.413862, -0.122444, 0.421866, 0.265635, 1.752928, -0.993530, -0.711548, 0.320945, -0.055180, -0.394550, -0.750249, -1.149343, 0.365351, 0.434388, 0.088906, -0.694951, 0.981878, 0.793615, -0.931234, 0.535146, -1.026275, 1.010923, 0.021420, -0.213139, -0.236093, -1.368470, -0.655869, 0.172209, 0.032734, -0.488071, 0.808566, -0.433427, -0.060827, -1.965714, 0.070618, 0.600481, 0.173012, 0.674546, 0.029860, -0.655894, -0.124122, 0.246052, -0.389779, -0.081781, -0.185768, -0.024249, -1.716403, -0.512165, -0.351471, 0.224897, -1.183628, 0.109501, -0.793467, -0.597978, -0.577084, 1.959314, -1.446712, -0.529356, 1.420988, 1.529441, 0.407820, -0.656533, -0.905987, 0.515898, -0.468324, -0.923903, -0.535808, -0.987676, 0.045621, 0.407210, 1.016581, 0.930367, -0.324103, -1.133288, -0.708613, -1.169798, 1.318494, -0.356025, -0.023998, 1.558696, 0.816003, -0.279802, -0.920872, -0.363216, 1.344983, -0.107922, -1.623679, 1.404346, 1.777517, -0.750628, -0.713083, -1.147685, 0.966753, -0.041751, -1.502047, 0.883965, -0.730740, -1.077998, 0.158465, -0.116612, 1.224050, 1.309583, 0.826712, 0.983826, 1.270001, 0.310710, 1.510927, 2.382328, -0.000902, 0.041274, 2.735659, -0.066203, -0.814038, -0.802178, 0.439242, -1.216922, 0.851209, 1.000077, -0.305806, -0.492769, 2.255749, -0.141859, 0.750780, -2.359170, 0.642869, 0.313425, -0.891790, -0.098996, 1.101291, -0.759878, 1.075486, -0.490473, -0.820665, -0.995053, -0.922446, 1.747772, -0.613273, 0.893366, 0.289253, -0.066392, -0.803604, 1.744654, -2.255174, 0.148827, 2.021037, 1.022240, 1.007952, 0.801586, -0.909874, 2.294297, 0.049368, 1.925730, -0.270507, 0.600846, 1.432848, -0.619982, -0.614845, 1.599297, -0.280981, 0.517332, 0.630006, -1.062021, -0.014945, 0.402061, -0.395856, -0.639617, 0.584767, 1.319841, 0.395448, -0.017575, -0.371125, -0.246029, 1.850864, -1.960001, 1.392138, 0.984169, -0.210737, -0.247878, 0.033473, -1.111829, -0.577707, -0.733114, 0.822389, -1.150163, 0.447327, -0.259996, 1.046438, -1.770565, 0.319892, -0.715800, 0.205306, 1.272071, 0.987176, 0.030316, -0.253312, -0.099272, -0.232358, -1.708404, -1.120504, 0.919319, 0.401601, 0.312614, 1.335582, 0.076183, 0.203855, -1.584023, -1.035830, 1.139204, 0.765218, 0.031543, -0.533452, 0.585556, 1.230109, 1.014089, 0.670554, 1.268316, -0.319874, -0.314153, -0.206030, 0.628749, -0.057120, -0.509198, 0.796401, 0.167990, 2.272425, -0.147684, 0.542837, 0.977357, 1.924800, 0.250516, 0.221005, -0.333065, -0.155052, -1.294611, 0.648327, 0.862543, 0.154885, -0.007419, -0.854444, 0.569946, -1.360445, 0.704909, -1.429923, 0.173357, 0.346192, -1.177145, -0.059209, 0.185367, -1.702045, -1.289479, 0.733104, 0.157064, -1.199674, 0.149991, -0.529433, -0.443646, -2.808384, 0.724962, -0.646890, -0.966995, 0.270013, 0.587279, -1.050124, 0.435028, -0.661419, 1.777073, 0.476565, -1.148175, -0.178329, 1.180552, -1.422006, -1.155634, 1.346725, 0.669341, -0.307069, -1.453850, -0.239823, 0.141012, 0.730409, 1.174524, 1.934903, 1.567414, 0.318436, 0.146101, 1.869871, -0.578380, 0.940971, 0.310458, 0.783878, -0.492146, -0.870231, 0.108325, -1.982088, 1.504868, -0.462011, 0.118853, -0.293633, 0.084887, 0.663833, 0.403392, 0.854684, -0.227954, 0.028410, 1.840226, 0.607773, -1.173648, -0.064040, -0.583499, 1.618328, 0.071072, -1.626230, -0.011821, -0.383874, -0.418588, -0.096689, 2.323421, 0.225080, 0.324341, -1.629578, 0.026556, -0.804914, -1.068436, -2.736597, 0.712015, 0.589092, 0.942102, 0.258438, 0.702188, -0.268564, -1.871912, 1.404576, 0.044787, -1.779821, 0.519663, -1.350010, 1.448736, -0.390655, 0.231175, 0.265064, -0.525599, 0.032990, 1.381009, 0.095031, -0.718115, 0.833363, -1.937235, -1.118470, 0.046609, -1.124443, -1.317206, -1.583491, 0.849224, -0.108660, -1.031552, 0.811566, -0.445433, 0.289940, -1.404132, -0.755131, -0.414514, -1.618126, 0.512221, -1.156794, -0.288971, 0.302929, -0.085393, 0.499911, 0.159987, 0.489384, -0.693839, -0.283784, 0.681522, -1.361003, 0.543945, 0.937520, 0.399524, -0.371339, -0.902652, 0.272578, -0.055631, -0.183270, 1.156942, 0.281662, 0.115839, -0.645140, 0.139170, 0.776727, 1.004202, -0.106977, 1.143089, 0.347144, 1.683088, 1.550169, -0.113883, -0.992220, -0.455807, -0.993603, -0.020708, -1.346534, -0.490946, 0.756130, -0.582306, -1.540389, -0.005888, -0.335026, 0.146218, -0.519971, -0.486755, -1.122320, -0.067730, 0.338864, -0.534193, -0.662877, -0.420708, 0.175634, 0.591055, -1.054769, -0.658740, 1.814753, -1.817313, -1.267231, -1.002523, -0.677531, -1.301317, -1.152116, -1.000671, 0.005572, -0.459156, 0.974113, -1.993809, -0.263506, 0.540411, -1.940319, -0.013229, -0.488975, -0.244513, -0.768648, -0.281655, 0.783187, 0.388086, -0.777248, -0.550460, -0.187943, 0.175566, -0.401522, -0.081917, -0.173469, 1.641702, 0.871165, -0.787113, -1.262874, -0.068490, -0.137980, -0.341973, -1.322604, 1.330316, 1.009725, -1.023710, 0.814989, -0.591393, -2.354148, -1.441840, 1.014541, -0.502014, 0.278830, -1.249648, -0.112477, -0.977346, -2.307748, 0.997052, 0.102829, 1.077729, 0.479538, -0.123308, 0.718891, 1.445119, 0.697008, 0.597984, -0.478706, -1.774553, -1.248201, 0.065591, 0.073310, 0.521728, -0.200182, -0.194445, -0.238299, -1.840125, -1.631188, 1.591232, 1.397854, 1.476983, -0.730668, 2.352803, 0.663133, 0.552681, -1.896815, -0.740749, 0.405772, -0.436305, -1.061285, 1.535298, -0.512250, 0.260357, -0.141387, 0.507852, 1.447780, -0.668943, 0.332079, -1.080486, 0.149391, -0.617735, -0.289660, -0.914916, -1.644613, 1.489698, -1.538270, 1.315164, -0.183876, -0.251486, -1.866595, 0.094795, 1.408429, 0.547489, -2.115978, 0.847040, -0.715976, 0.806206, -0.088310, -0.136833, -0.200722, 0.195276, 0.525913, 0.767167, -0.411600, -1.105277, -1.436909, 0.916397, 0.477115, 1.871990, -0.154352, -0.587433, 0.985598, 0.382853, -0.172665, -0.835553, -0.665614, 0.427174, -0.149810, -0.903475, 1.466565, 0.068006, 1.747021, 0.223858, 1.070161, 0.645742, -2.280433, -0.380478, -0.498307, 0.822889, 1.275234, -0.613344, -0.350186, 0.102877, 0.292518, -1.003881, -0.056888, 0.241053, -0.917144, 0.053113, 1.310974, -0.637512, 1.016618, 0.279675, -1.197254, 0.085086, -0.447436, 0.295744, 2.210416, -0.770011, 1.792212, 2.311360, 1.167731, 1.330203, -0.808207, -1.101343, 1.024797, 1.042803, 0.820114, 0.806664, -1.016447, 1.443351, 1.825768, -0.566427, 0.330723, -0.910790, 0.488024, 0.739712, 0.592021, -0.820084, -0.006164, -0.090102, 1.853698, -0.214966, -0.847784, -0.890158, -0.022381, 1.309506, -0.855636, -0.016341, -0.846609, 0.985509, 0.178801, -0.249532, -1.187278, 0.325259, 0.197964, -1.524272, -0.483460, 1.806156, 0.361941, -0.805512, -1.131736, 0.797872, -1.014111, -0.991461, -0.489029, -1.294251, -0.991199, 0.165233, 1.658220, -0.618318, 0.503729, 0.192132, 0.404518, 0.220815, 0.780041, 1.987371, 0.036581, 0.815013, -0.603414, -1.480355, -0.400756, 0.509935, 1.701668, 0.313328, 0.620078, -1.182466, -0.193842, 0.037920, -0.691340, -0.766950, 0.206816, 0.479469, -2.096840, 0.779050, 0.201829, 0.076898, -0.175906, -0.514583, 0.421943, 1.716999, -0.526207, 1.259227, 1.305424, 0.190156, 1.163256, 0.824654, -1.628281, 0.008107, 0.845876, -1.004947, -1.126282, 0.953920, 0.020620, 0.656683, 0.675162, 0.978281, 0.216812, 1.191213, -2.605651, 0.003369, 0.523004, 0.788878, -1.412201, -1.478939, 0.348571, -1.280308, -0.303001, 0.318950, -0.760154, -1.029954, -0.550735, -0.162843, 0.870245, 0.100532, -0.281056, -0.418812, 0.537552, -0.319880, 0.570967, 0.280753, 1.926064, -0.463513, 2.491880, -0.401976, 0.702363, 0.908380, 1.704498, 0.334124, 0.217783, -0.983164, -0.791485, -0.629922, 0.404028, 0.140059, 0.606994, -0.602667, 0.024615, 0.597163, -0.825542, 0.869445, 0.304274, 1.629945, -1.224490, -0.199955, 0.018748, 1.268401, 0.453636, 1.873566, 1.606205, 0.607918, -1.008349, -0.275071, 0.657667, -0.744228, -1.012348, 2.101786, -0.589109, -0.627253, -0.363777, 0.154706, -2.271258, -0.815534, -0.024603, 0.222578, 0.316409, 0.453494, 0.426001, 0.124252, -0.528458, 1.266649, 1.068653, -0.912916, 0.954285, -0.388931, 0.745443, -2.132591, -0.673448, 0.204056, -1.050105, 1.521965, 0.119597, -1.368317, -1.629230, 1.425418, -0.471962, -1.147773, -1.014542, -1.009912, -0.267185, -0.152594, -2.620589, -0.243907, 1.383747, -0.919638, 1.386119, -0.216461, -0.259555, -0.804526, -1.275133, -0.407622, 0.490195, 0.791647, 1.053413, -1.761286, -0.557885, 1.158737, -1.086519, 0.495737, 0.190078, -0.135025, -1.536238, -1.349438, -0.043111, 0.292565, -0.651148, 1.102894, 0.316687, -0.433201, -0.415638, -0.720638, 2.060442, -0.619170, -1.507656, 0.165067, 0.248506, -0.909373, -1.325403, 1.221633, 0.763337, 0.729908, -0.321685, 1.281433, -0.317217, 0.485598, 0.531396, 0.118371, 0.719347, 1.861064, 1.039500, 0.747790, 0.870797, -0.024604, -2.014132, -0.301681, -0.487303, -0.187357, 0.056168, -0.253799, -1.602449, -0.508815, 1.208079, 1.025732, -0.251645, 0.407351, 1.091536, 0.129968, -0.356357, -1.132946, 0.703549, -0.782255, 0.154718, 0.612335, -0.639361, -0.777031, -0.362677, 0.443419, -0.012522, -2.208537, 0.561620, -0.860781, -0.754275, 1.596550, 0.296669, -1.122033, -0.166325, -0.634739, 0.107694, 0.196174, 2.631574, 0.538163, -0.944013, -1.327978, 1.082618, 2.067123, 0.031306, -1.473334, 0.879581, 0.507148, 2.107082, 1.834868, -0.162772, 1.459002, -0.060417, 1.324060, 0.207282, -0.125801, -0.615198, -0.876727, -2.088589, -0.686336, -0.280585, 0.867516, 0.114097, -0.991352, 1.396835, 1.419892, 0.376463, -1.218500, 2.636140, 1.290523, -2.019356, 0.013485, 1.521289, -0.239322, -1.229477, 0.755279, 0.346502, -1.725243, -0.373774, -0.185386, -1.256591, -0.716859, 1.530833, -0.547870, -0.792679, 1.284569, -0.849781, 2.087775, 0.928601, 1.579072, -1.907241, 1.532603, 0.106727, -1.284357, 0.633744, -0.214437, -0.598696, 0.892944, -0.423007, 1.162389, -0.411785, 0.298251, -0.567272, 0.386300, -1.698400, 1.617787, -1.874614, 0.489987, 1.426808, 0.229579, 2.157564, 0.823678, -0.072082, 0.197448, 2.305283, -0.765087, -1.126161, -0.772202, -0.845635, -0.331419, -0.273276, 0.060459, -0.637235, -0.349673, -0.321448, -0.121112, 0.179084, -0.284457, 1.289270, -0.691972, 1.599460, 0.040287, 0.273503, -0.349427, 1.213746, 0.479931, -0.758232, 1.002408, 0.075547, 1.540622, -0.718118, 0.894200, 0.814410, -0.525514, -0.717878, -1.667925, -1.142663, 0.942690, -0.455577, 0.952267, -1.452215, -1.505591, 1.257140, -0.838728, -0.453117, 0.169693, -1.768633, -0.609335, 0.562158, 1.431190, 0.760952, -0.652992, -2.118331, -0.538564, -1.052189, 0.591901, -1.179337, -2.085239, 0.926827, -1.104892, 0.485520, 0.020562, 1.924255, 0.208637, 0.545395, -0.409915, 0.161968, 0.849357, -0.031988, 0.839613, -0.528238, 0.014944, 0.567819, 0.111748, 0.336812, -0.206228, -0.385773, -1.012973, 0.622410, -0.757589, 1.367026, 0.479709, 0.038670, 0.796081, 2.785017, 0.580535, -0.559753, 0.204537, -1.229785, -1.241883, 0.645685, -0.734728, -0.755703, -0.199049, -2.094187, -1.236351, -0.274289, -0.884606, 0.009774, -0.285483, -0.597581, -1.133268, -1.102430, 0.447045, -0.102915, -1.481799, -1.694370, -1.303291, 1.184157, 1.720630, -1.393385, 0.115161, 0.757673, 1.210708, 1.439353, -0.430967, -0.031543, 1.027018, -0.781191, 1.169615, -1.828181, -1.755098, -1.107190, -1.422109, -1.124997, -1.175631, -0.395011, 0.363351, 0.198148, -0.587296, 0.138670, -1.113483, 0.658757, 0.712638, 0.605732, -0.147572, -0.833572, -1.130678, -0.967752, -0.487512, -0.651392, 0.232531, -0.115976, 0.981971, 1.799198, -0.098867, 0.399773, -1.520884, -1.010132, -1.559080, 0.926588, 0.066911, -1.498431, 0.547994, -0.435648, -1.230667, 2.092605, -0.024036, 0.978000, -0.563770, -0.322303, -0.973571, 0.880973, -0.667366, 0.455789, -0.070619, -0.035130, 0.045618, -0.609802, 0.440498, 2.592303, -0.142025, 1.797056, 1.004021, -2.086756, -0.798908, 0.237025, -1.451838, 0.859163, -1.212549, -0.665609, 0.614962, -1.223996, -1.765464, 0.548116, 0.776485, 0.910847, 0.128251, 0.740647, 1.275919, 0.284085, 0.219603, 0.467999, -1.296522, -0.001087, -0.676528, -1.242467, -0.357404, 1.091398, -1.368510, 1.185922, 1.005026, 0.899833, 0.067455, 1.431986, -0.775499, 0.306814, -0.903485, 0.752950, 0.241810, -0.645906, 0.257904, -0.299932, 0.412832, 1.258728, 1.948945, -0.268560, -0.874764, -0.850795, 0.292095, -0.176906, -0.093073, -1.566247, -2.351848, -0.905502, 1.026085, -0.718833, -0.018663, -0.056301, -1.636670, 0.057381, -0.383973, -0.915739, 0.628095, 0.677738, -0.085996, 0.036286, -0.014617, -1.613212, -0.919135, -0.390502, -0.446022, 0.389920, -0.317840, 1.401184, 0.087298, 0.658124, -0.957850, -1.913147, -0.918599, -0.222273, 0.749725, -1.026116, 0.259407, -0.185653, 0.185036, 0.534258, -1.097639, 0.522325, -1.253131, -0.079999, -2.094013, 1.752958, -1.195079, 0.901390, -1.416690, -0.775104, 0.816481, -1.889798, 2.032199, -1.526717, -0.558021, -0.815927, -2.371063, 0.941630, 0.026241, -0.269571, -0.469445, -0.874656, -1.177608, 0.193295, 0.509403, -0.862372, -0.375989, -0.723301, 0.578435, -1.737902, 1.210322, 0.404326, -0.293490, 0.720651, 1.890200, 0.662484, -0.238169, 0.253854, 0.173990, 0.084363, 0.192557, -0.046405, 0.318103, 0.329699, 0.473887, 0.951854, -1.245950, 1.937155, 0.196658, -0.250798, 0.798175, 0.538733, -1.044797, 0.022274, 2.198480, -0.856320, -0.629280, 1.559641, -1.680933, 1.271451, 0.873796, -0.532085, -0.654765, -2.168516, 0.884313, 0.090337, 0.849958, 1.207093, 0.152257, 0.009740, -0.208236, -2.609198, 2.061538, 1.325143, 1.805175, 0.827573, 0.056863, -0.731216, -0.986358, -0.080354, 1.158901, -1.233143, 1.264878, -1.029511, -0.896161, 0.033642, -0.947122, -0.807268, -0.623787, 1.400838, 0.003921, 0.757574, 1.690927, 0.209808, -0.084645, -2.099220, -2.020415, -0.649347, 0.309620, 0.405811, 0.124559, 1.428699, -1.652138, -0.998053, -0.557753, -1.223353, -0.742789, 2.533580, -2.142363, -0.884314, 0.049913, -1.120534, -0.763611, 0.970614, -2.240328, 0.627627, -0.287621, 0.080011, -0.857303, -0.587362, 1.769972, 0.250884, -0.685031, -0.510253, -1.251109, 0.094093, 0.917295, 0.314743, -0.421084, 0.195974, -1.709798, -0.740959, -0.853345, -1.482002, 1.480777, 0.355833, 0.005076, -0.250395, -2.166262, -0.142214, -0.565482, 1.136327, -0.197039, -2.373229, -0.127625, 1.020798, -0.657364, 1.115904, -2.570700, 1.026366, 1.278767, -0.418978, -0.057048, 0.869859, -0.663286, 0.898531, -0.223066, 1.486685, 0.489365, -1.584574, -0.816816, -0.486191, 1.111680, 0.457316, -1.765196, -1.634078, -0.189959, 1.978119, 0.900515, 2.517114, -0.742463, -1.256565, -0.730360, -1.878909, -0.354420, 0.929377, -0.257609, 0.049031, -0.345426, 0.737248, 0.547592, 0.002927, -0.942150, 0.464087, 2.779146, 1.691355, -0.546461, 0.290752, -0.486222, -0.896839, 1.518797, 1.297184, -0.700622, 1.197714, 0.482543, -0.263684, -0.414116, -2.521549, 0.189030, 0.017566, 0.839219, -0.725358, -1.657703, 0.317549, 0.773451, -0.007418, 1.096505, 0.451132, 1.548481, -1.370949, -0.857440, -0.184710, 1.764203, -0.072071, 1.997427, -0.739326, 1.610971, -1.316181, 0.771234, 0.505205, 1.352388, 0.591027, -0.132216, -0.416094, 1.213004, 0.279762, -1.326275, -0.175405, -1.908029, 0.942670, -0.115008, -0.288672, -0.038149, 1.308604, -0.574296, 0.571406, -0.519974, -0.890585, -0.983541, 0.889347, -0.380232, 2.277617, -0.382938, 1.389186, 0.282886, 0.264755, 1.318817, 0.282370, -0.568136, -1.377339, -0.061422, 0.846803, 0.439605, -0.385605, -0.344363, 1.221155, 0.465028, -0.856782, 0.149611, 0.288386, 0.571397, -0.327895, 0.118745, -1.735471, 0.014765, -0.975883, 0.440234, 0.552339, 0.288764, 0.339089, -1.134826, 0.313895, 0.011407, 0.691833, 0.300344, 1.498545, -0.902266, 0.425485, 1.074022, 0.657239, -0.650429, 1.174462, 0.512151, -0.758514, -0.068893, -0.071205, -0.581869, 0.512698, -0.549456, 0.386034, 0.288174, -0.728801, 2.676464, -1.091006, 1.608164, -0.083419, 0.175058, -0.699406, -0.190567, 0.532987, 1.108742, -0.447822, -0.069891, -1.970983, 1.218043, -0.420008, 0.537785, -1.973844, -1.483689, 1.538642, -1.347552, 0.060081, -0.978870, 0.392604, 1.134322, -0.495217, 0.425980, 0.585597, 0.553828, -2.100334, -1.212780, 1.972681, 1.163086, 0.395078, 0.387860, 0.728238, 0.666341, 0.003480, -0.236001, -1.265750, -1.010418, -0.665997, -1.037360, 1.126242, 0.562326, -0.210542, -1.540785, 0.466182, -1.093710, -0.962843, 1.150839, 0.585028, 1.624890, -1.762433, 0.304113, 0.208924, -0.183446, 0.812668, -1.955194, 1.004379, -1.536352, -0.150135, 0.795853, -1.301719, -0.460793, 0.729530, 0.270970, -0.068024, -0.246545, -0.813112, 0.728013, 0.100125, 0.748525, 0.064918, -0.792546, 0.107315, -0.020264, 0.299685, -1.940080, -0.788187, -0.105019, 0.382124, -0.657053, 0.161678, 1.105560, -0.600307, -0.717401, 0.997373, 0.038190, 0.109503, -1.089637, 0.246236, -0.301493, -3.264527, 1.636711, -0.861160, -0.267561, 1.092990, -0.229627, -0.491280, -1.598319, 0.759445, 0.117207, 0.129530, -0.469744, -1.350616, -1.926867, -0.949650, 0.070641, 0.298443, 0.433077, -0.947646, -0.527008, 0.089824, 1.270172, 0.964362, -0.144135, -0.450047, -0.988775, 1.314416, 0.154784, 1.387101, 1.687699, 3.596269, 1.537083, -0.098029, -0.323389, -1.188715, -1.517913, -0.223319, -0.118122, -0.926387, 0.487475, 2.383470, -0.283019, -0.400344, -0.112688, -1.349477, -1.780964, 1.040826, 2.748192, 0.124874, 0.537890, -0.705610, 0.843095, 0.698634, 0.989788, -0.223561, -0.173949, 0.280473, -0.630229, 0.511718, -0.097223, -1.114586, 1.921694, -0.635164, 0.362479, -1.253753, 0.201949, -0.283309, -0.409199, 0.176409, -0.690641, -0.699860, 1.546965, -1.123447, -1.823177, -1.202144, -0.861633, 0.007818, -1.298542, -0.263731, -1.198128, -1.429087, 0.513127, 0.146896, -2.327325, 1.296689, -2.426564, -0.172250, 0.801628, -1.292855, -0.336581, -0.260524, 0.296005, -0.626776, 1.630137, -0.957424, 1.177334, 0.178275, -2.176285, 0.056313, -1.155005, -0.578800, 0.028200, 1.247363, -0.827695, 0.146231, -0.344793, -0.500478, -0.467940, 0.625746, -0.361763, -1.017070, -0.251144, 0.628470, -2.471546, 0.116703, -0.757431, 1.852242, -0.969632, -0.472526, -0.303243, 1.104279, 1.167389, 0.076012, -0.439053, -1.523277, -0.484451, 0.531800, -0.428981, -0.258849, -2.205991, 0.385688, 0.183251, 0.433802, -1.451632, -1.384850, 0.335081, 0.383205, 1.699160, -0.673376, 1.032370, 1.741185, -0.243792, 0.370460, -1.771130, 1.974270, 1.189003, -1.131988, 0.180605, 0.113789, 0.067022, -1.013460, 0.421401, -0.590726, 0.798718, -0.741132, -0.376481, 0.535617, 1.174118, -0.061616, -0.202595, -0.018271, -0.802477, 2.087790, -1.295037, 0.955921, 0.534792, 0.122142, -0.108656, 1.292931, 0.547753, -0.152389, 0.359308, -0.973856, -0.430421, 1.296211, -0.088916, -0.989754, 0.936799, -0.909156, -0.536777, 0.405138, -1.382602, -1.654568, 0.131954, 1.449889, 0.328693, -0.726607, -0.735402, 1.051588, -0.889100, -0.434141, 0.912239, -0.920116, -1.615823, 0.231242, 0.177643, 1.130218, 0.832464, 2.574803, -0.901728, -0.790664, 0.874165, 0.358299, 1.401991, -0.180211, -2.717999, -0.762370, 0.612589, -0.134878, -0.124942, -1.148724, 1.201162, 0.734334, 1.366560, 0.520797, -2.299033, -0.253356, -0.053072, -2.320358, -0.469110, 0.972471, -1.129791, 0.363801, 1.071229, -1.279661, -1.014263, -0.787167, -1.446681, -0.134930, 0.817895, -0.102662, -1.779658, 0.200723, -0.232941, -1.385099, -0.525363, -0.770101, -1.761763, 1.078271, 0.196937, 0.020912, 0.639272, -0.108485, -0.512531, 0.041192, 1.270116, -0.420989, 0.024729, -0.754243, 1.449031, 0.320928, 0.095170, 0.456532, 0.888621, 0.521723, 0.002547, 0.720049, 1.672881, 0.016955, 0.614825, 0.966077, -2.309270, 0.701263, 0.191821, -0.158496}, - { 0.237429, 0.036207, 0.170178, 0.797165, 2.247735, 0.762628, 1.695215, 0.179764, 0.107884, 1.401716, 0.118783, 0.396777, -0.573262, -0.053026, 0.451858, -1.387177, -0.496034, 1.285475, -0.314170, 0.871655, 1.018006, 0.623334, -1.377680, 0.000609, 1.036218, -1.547680, -1.150199, -0.685959, 1.469401, 1.189373, 1.277094, -1.193407, 0.467198, -0.204093, 0.463451, 0.132450, -0.695997, -0.207751, -1.612716, 0.887903, 0.862200, -0.113317, -0.442108, -0.162169, -1.686292, -0.287985, -0.757401, 0.170118, -0.336267, -2.417512, -0.944149, 0.162170, 0.702621, -0.229793, 0.069156, 1.221997, -0.537081, -1.066808, -1.161291, 1.000325, -0.837620, -0.352367, 0.746348, 1.859223, -0.919172, 0.532138, 0.313898, 0.496248, -2.153785, 0.941953, -0.411732, -1.184928, -2.066584, 0.005830, -0.928376, 1.677056, -0.908078, 1.511182, 0.483482, 0.025510, -0.344490, -0.629932, 0.769671, 0.959558, 0.064419, -0.148827, -0.406658, -0.538059, -0.199050, 0.310685, 0.565743, -0.699625, 0.845187, 0.833213, -0.395563, -0.868878, -0.552028, 1.531941, -0.042967, 0.085281, 0.003465, -0.488826, -1.533944, 1.700975, -1.172057, -0.746709, -0.530326, 0.237733, -0.876734, -0.727487, -0.295899, -0.747297, -0.318546, 1.199982, -0.746348, 1.215892, 1.596415, 0.170175, 2.494813, 0.196207, 0.107324, 0.334852, -1.195463, -0.377760, -1.049419, -0.460512, -1.640958, -1.110334, -0.021205, -0.986685, -0.649331, 0.877051, 3.305753, -1.066090, 0.060100, 0.661818, 0.455688, 0.822043, 0.344724, -0.688586, 1.371350, -0.610717, 1.293444, -0.093719, -0.339504, 0.813812, 0.419576, -0.083704, -1.111274, 0.654443, 1.078722, 0.289181, -0.063308, -0.839566, 0.262663, -0.800015, 0.387299, -0.238128, -1.158125, -0.209619, -1.242725, -1.584083, 0.828589, 0.457091, -0.274895, -0.694111, 0.709431, 0.516085, 0.069079, -0.733614, -0.806151, -0.538284, -0.647072, -0.946808, 0.469631, -1.347350, -1.366493, -0.775190, 0.468495, 0.362607, -0.699727, -1.212706, 2.003768, 0.349725, -0.101829, 1.910978, -0.069325, 1.440664, -0.484399, 1.292219, 0.268669, -1.466407, 1.025713, 0.255034, -0.760812, 1.515317, -0.844193, 0.268279, -0.946102, 0.890672, 0.132923, -0.882272, 0.594691, 1.587638, 0.224771, 1.978239, 1.762840, 2.388043, 0.037380, 0.441240, 1.250304, 0.025152, 0.249358, 0.392456, 1.730677, -0.231981, 2.482982, 1.126362, 0.310809, 0.077117, -0.162147, 0.560386, 0.433253, 1.631264, 0.292132, 0.332519, -0.146775, 0.009235, 0.915202, -1.747407, -0.596440, 2.005790, -0.167761, -1.835304, -0.667613, -2.620935, -0.735262, -1.138687, 1.260839, 0.435639, 1.814098, -0.125535, -1.737392, -0.475644, -2.366360, 1.191784, -0.543974, 2.615327, -0.187524, -1.548169, -1.495711, -0.770668, -0.981798, -0.133163, 1.969709, 1.043554, -0.282137, -0.852043, 0.731650, -0.312119, 1.198903, 0.490420, 2.429288, -1.280920, -0.186278, -0.077968, -0.179502, 0.454609, -0.438815, -0.940049, 0.957835, 1.021041, 0.392023, -0.948017, -0.139217, -1.801187, -0.111287, -0.271425, -0.950677, -0.842602, 0.158475, -0.685660, 1.709432, -0.045783, 0.158530, -0.654599, -0.459567, -0.563228, -1.539074, -0.226351, -0.707942, 0.094478, -1.725252, -0.194163, -0.155360, 0.889516, 0.404917, -0.006352, -0.944886, -1.360645, 1.137401, 0.563502, 0.219997, 0.679181, 0.567056, 0.088674, -0.530732, -0.973153, -0.492149, -0.262830, -0.206852, -1.567610, -0.835913, 1.662297, 0.572741, -1.514802, -2.418319, 0.460558, 1.418065, -0.751994, -0.672925, -1.516377, 0.429053, 0.124248, 0.322388, -0.041107, -0.392260, -0.300986, 0.217923, -0.204659, 1.201205, -0.327780, -1.205651, -0.013395, -0.279521, -0.210300, -0.270474, -0.436408, 1.194474, 0.202888, -0.188345, -0.857626, -0.311250, -0.677455, -0.696846, 0.070788, -1.601218, -1.154248, 1.084514, 0.779079, -0.415054, 0.682295, 0.397982, 0.863780, 0.814659, 0.229477, 2.375683, -0.881831, 1.539157, 0.967817, 0.308703, 0.166941, -0.148126, 0.613478, 1.598588, -0.974850, -1.086411, -0.449022, -0.324196, 1.507111, -1.523172, 0.456678, -1.201547, -1.270609, -1.600395, -0.505143, -0.008295, 0.753743, 0.115072, -1.422017, -1.318800, -0.475003, 0.097035, 0.914327, 0.108784, -0.023104, 0.871674, -1.256824, 0.668713, 1.114089, -1.144836, -0.832361, 0.366648, -1.133086, -1.580149, 1.110052, -0.124718, -0.302036, -0.558129, -0.793288, -0.841145, -0.319164, 0.768013, -0.017239, 1.400503, 0.782184, -0.962497, 0.542011, 0.281466, -0.868157, 1.584023, 0.915578, -0.346062, 0.981487, 0.379233, -0.383938, 0.490509, -0.694487, 0.058922, -1.025502, 0.775176, -1.021044, 0.168719, 0.607974, 0.807320, -0.077393, -0.320238, -0.759927, 0.208228, 1.956432, 0.569721, -0.698428, -1.608649, 1.114261, -0.556347, 0.444212, -1.463019, -1.000961, -0.699855, -0.233743, 1.090061, 1.100374, 1.242559, -1.052207, -1.446385, 0.260593, -0.406810, -0.281416, 0.611809, 1.596244, -1.619151, 0.037717, 0.020077, 1.672577, -0.099615, -0.831728, 0.721507, -0.502619, 0.335931, -1.270412, -0.325466, -0.304966, 0.213241, -0.819071, 1.301881, 0.332778, 0.550717, -0.189521, 0.475336, -1.257535, 0.407658, -0.195769, -2.353637, 0.810361, -0.514266, 0.816347, -0.849322, -0.457634, 0.046967, 1.375837, 0.112218, -0.730826, 1.883348, 0.843562, 2.132451, 1.130500, -0.527635, 0.550611, -0.700010, -0.453894, 0.118528, 0.082422, -0.245736, -0.521939, 0.212282, -0.604056, 0.828924, -1.621631, -1.148466, 2.715471, -0.194293, -1.052866, -0.210427, -0.379142, -0.058798, 0.470061, -0.418351, 1.427138, -0.112402, 1.433455, 2.364151, 1.770907, 1.097285, -1.091067, 1.459116, 1.116784, -0.845082, 0.461609, 0.569674, -0.052283, 0.719844, -2.384084, -0.720572, -1.180478, -0.768671, -1.935248, -0.276154, 1.632026, -1.773042, 0.072972, 0.521104, -0.101603, -0.177485, 1.417623, -1.772698, -0.206859, 0.754268, 1.347237, -1.057786, 0.097802, -0.940982, 0.417529, 0.185986, -0.735676, 0.439542, 1.687156, -0.580199, -0.275856, -0.479627, -0.921422, 0.050109, -0.666796, -0.307468, 0.770171, 1.294457, -1.801306, -0.906793, -0.621919, 1.657506, -0.395447, -0.945877, 0.675160, 1.712584, -1.018744, 0.632536, 1.555457, -1.164229, 0.640897, 0.353852, -1.558861, 0.243933, 0.344210, -1.483537, -1.768085, 0.560242, -0.595480, 1.867102, -1.814743, -0.450151, 1.007109, -0.404371, 0.563027, 0.192455, 1.219025, -0.009092, -0.118139, 1.092750, 1.526717, -0.905331, -0.200892, 2.456664, 0.043931, -0.518768, -0.393819, 1.034930, 0.571556, -0.518858, -0.011335, -0.466693, -0.093804, 1.541148, -0.168327, -0.939273, 0.996658, -0.897461, -0.233417, 0.315373, 0.548961, 1.447793, -1.337659, 0.580016, 2.421964, 0.066469, -1.215874, -0.164449, 1.319452, -0.769011, -0.008867, 1.005000, 2.099801, -0.853823, 1.152142, 0.105454, -0.913867, -0.620991, -2.427041, 1.400466, 2.125224, -0.055889, -1.191258, 0.551979, 0.713841, 0.387868, -1.125966, 1.540008, -0.648885, -0.142143, 1.913658, -0.149879, 1.536719, 0.580911, 0.604792, -0.762086, 0.131252, -0.391432, 0.664207, -0.201966, -1.347529, -1.251703, 0.031784, 0.760357, 1.108825, 0.694945, 0.390445, 0.545526, 0.227678, 1.612996, 0.829655, 0.709803, 1.729710, -0.032897, 1.054966, 0.210327, -1.764524, 0.405456, 0.328926, 0.285000, -0.642883, 2.509196, 0.481533, 1.337929, -1.308089, -0.840773, -0.290386, 0.204563, -1.502129, -0.739531, 0.304670, 1.033222, 1.042105, 1.039835, 0.139154, -1.392847, 0.998138, 0.856762, 0.247243, 0.289361, -2.526719, 0.124243, -0.660092, 0.520902, 1.110468, 0.126548, -0.620655, -1.516286, -0.126231, -1.185972, -0.854406, -1.301233, -0.016201, -1.167295, -2.183323, -0.297657, -1.153764, -0.804865, 0.413040, -0.048695, 1.138412, -0.351207, -0.038916, 0.473554, 0.947540, 0.486278, -0.754696, 0.387188, -1.302586, 0.226947, -0.042358, 1.148210, -0.038086, 0.177076, -0.914857, 0.308711, 0.950330, 0.594185, -1.560007, -0.794939, 1.250015, -0.967713, -0.337593, -0.739347, 1.546408, -0.541268, 0.168746, 1.156784, 0.555119, -0.926817, -0.507955, 0.927509, 0.613468, 0.952773, 1.526311, 0.520637, -0.398400, 1.130089, -1.276649, -1.238777, 0.380867, -0.822129, -0.442929, -0.398811, -2.096432, -1.404884, 0.540664, 1.687043, -0.583804, 0.153261, 0.029303, 0.112254, -0.566705, 0.101301, 0.629721, -0.395532, -0.133956, -1.767737, -1.777634, -1.615054, -0.480876, -0.422454, 0.370107, -1.262268, -1.115635, 0.048942, 0.953216, 0.990189, 0.131743, 0.650479, 0.784656, 0.275637, -0.495687, -0.283969, 1.291458, -0.937392, -0.002043, -1.165209, -1.257326, -0.635020, -1.815606, 0.190856, 0.057961, 1.036053, -1.100283, -1.248644, 2.220673, -0.047841, -0.455522, -1.833264, 0.767754, -0.115221, 2.451406, -0.033865, 1.504966, -0.494619, 0.332978, -1.581571, -1.797052, -1.852742, -1.164988, 0.560709, -1.276341, -0.601197, -0.433118, 1.388932, -0.636623, -2.550299, 0.669065, -0.570578, 1.597686, 1.185549, 0.013596, -0.266203, 0.109882, -0.007819, 1.901724, -0.023999, -0.387580, -1.274216, -0.926645, 0.047066, -0.540213, -0.720577, -0.990622, 0.595696, -0.188052, -1.242935, -0.416630, -0.458695, 1.605381, -0.473463, -0.136126, 1.461162, 0.549109, -0.425634, 0.706629, -0.635252, -0.886422, -0.032880, -0.923406, 0.850824, 1.186680, -0.162992, -1.549456, -0.637766, 1.434281, -0.314265, 0.520807, -0.004400, 0.082634, 0.543019, 1.346470, 0.306678, 1.324519, -0.370980, 1.506980, 0.082665, 0.622092, -0.061754, -1.130520, 1.091406, -0.188994, -0.330673, 0.307618, 0.261024, -0.229834, -0.039021, -0.485873, -1.027845, 0.854139, 0.079914, 0.744075, 0.076829, -2.005447, 1.247298, -0.583585, -0.653857, -0.656817, -0.571299, 1.430982, -0.837672, 0.395887, 1.332065, 0.656966, -0.807966, -0.593014, -0.321133, 0.376936, -0.117866, 0.374299, 1.385166, -1.588126, -0.167318, 1.034354, 0.422459, 0.342215, -0.349315, 0.536595, -1.440883, -0.125770, -0.130746, 0.250557, -0.166976, -0.677153, 0.039940, 1.954916, 1.422694, 1.188944, 1.494219, -0.785555, -0.799106, 0.401545, 0.581000, 0.764819, 0.563240, 0.774591, 1.020441, 0.367803, 0.740933, -0.282611, -0.298468, 0.480698, -2.031199, 1.139147, -0.093320, -0.383101, -0.986790, 0.979822, 0.538403, 1.454899, -1.173149, -0.016912, -0.149399, -0.233323, 1.552843, 1.125745, -0.462105, 0.592730, 0.318040, -0.693666, 1.134550, -0.981709, -0.946578, -0.839783, 1.446025, 1.140728, -0.181096, 0.357964, -0.973983, -0.548765, 0.152554, 1.791113, -0.962089, -1.400092, 0.108051, -0.744789, 1.104461, 0.066465, 0.670984, 0.228946, -0.228081, -0.514658, 0.211695, 1.694436, 1.147824, -2.012793, 0.479878, 0.786010, 0.501543, -0.990653, -1.509478, -0.272430, 0.732214, -0.768868, 0.618061, 1.018416, -0.879489, 1.950328, 0.201477, 0.178338, -1.094310, 0.157199, 0.823573, -0.490699, -0.254490, -0.856756, 0.560719, 2.064696, 1.129321, -2.003862, 0.014570, 1.126847, 1.718217, -0.862145, -0.618164, -0.576339, 0.544482, -1.794832, 0.357945, 1.795571, 0.180150, 2.701961, -0.171882, -0.230233, -0.804759, 0.595939, 1.705228, 0.019359, 0.969452, 0.612489, 0.184784, -0.020158, -2.015258, -1.382209, 0.673566, 0.113735, -0.074582, 0.599515, 0.740758, 1.146993, 1.093152, 0.994351, -2.106071, 1.405222, 0.711180, 0.355850, -1.545787, 0.410849, 0.790711, -0.317974, 0.286885, 0.111164, -0.542961, 0.262706, 0.584002, 0.744072, -0.045745, 0.657269, 0.958030, 0.169097, -1.113148, -1.135377, -1.031732, -0.660938, 1.234074, 1.741170, -2.216555, -0.234096, 1.711781, 0.094237, 1.021347, -1.044457, -0.145120, -0.285383, 0.624376, 0.828133, -2.221461, -0.045349, -1.097088, 0.494627, 1.280747, -1.358941, -1.751984, 1.328903, 0.407856, -0.027654, 1.743824, 0.747551, -0.808955, -1.298367, 0.233747, -0.599042, 0.043964, -0.251869, 0.019598, 1.234699, -0.934498, 0.067141, -1.665326, -0.998603, -0.207111, -0.539838, 0.972577, -0.919306, -0.577319, 0.456733, 1.192723, 1.104430, -1.442934, -0.324942, 0.628582, 1.103101, 2.212177, -0.045895, 1.267199, -0.943038, -1.882331, 1.080317, 1.326610, 0.151784, -0.525481, -0.498116, -0.739762, -1.409595, -0.094053, 0.836724, -0.649309, 0.921898, -0.395112, 0.429497, -0.641880, -0.103575, 0.427862, 0.139703, 0.057224, -0.388280, -0.337625, -1.041605, 0.221582, -0.263535, 2.037030, -0.742563, -2.270913, 2.346075, 0.118577, -1.171063, -0.731750, -1.952111, -0.176273, -0.110220, -0.129157, 1.014085, 1.182874, 1.334751, 1.400536, -1.424198, -2.235116, -1.851122, -1.061405, -0.093812, 1.465288, -0.624171, -1.084116, 0.743641, -0.713719, -0.265065, -0.594104, 1.594437, -1.304890, 0.623692, 0.005911, 1.280861, -0.491436, 0.229141, -0.236123, 1.226382, -0.699465, 1.871035, 0.329421, 0.622686, -0.975632, -0.046113, 1.780525, 0.363723, -2.167054, 1.092384, 0.243597, 0.739488, 0.224270, 1.581776, 1.369229, -0.161342, -0.214571, -1.165359, 0.651694, 1.656967, 0.482906, -1.295965, -2.367965, -1.871920, -2.222027, 0.065696, -0.491896, 1.061709, -0.237257, 1.363829, -0.126657, 0.196929, -0.168743, -0.659666, -0.426595, 0.176556, 0.556157, 0.479762, 0.209638, 0.207038, -0.176007, -0.641103, 0.479830, -1.136748, -0.385672, -0.699587, -0.067503, 0.279339, 1.171830, -0.679675, -0.495360, 1.401152, -0.445348, 1.277776, 1.179693, 0.804427, -0.081584, -0.586594, -0.196189, 0.066647, -0.515654, 0.136597, -0.035835, -0.318656, 0.535623, 0.144150, -1.276669, -0.040948, 0.817314, -2.504807, -1.826441, -1.645646, 0.139678, -0.098703, 0.972423, 0.188005, -0.419835, -0.754058, 0.276226, 1.371681, -0.221573, -0.301881, 0.545020, -0.515075, -0.355258, -1.689081, 0.684416, -1.362229, -1.246212, -0.168877, 0.843768, -0.138134, 1.609788, 0.144742, -2.287593, 0.433120, -1.286314, 0.686438, 0.120627, -0.133054, 2.563104, -1.487040, 0.290942, -0.195065, 1.644616, 0.467028, -0.287061, -0.939900, 0.980684, 2.155346, 1.820843, -1.023333, 0.730884, 0.448628, -0.458294, 0.621563, 0.899107, -0.225227, 1.782818, -1.636713, -0.288283, 0.526413, 1.281066, 1.713014, -1.040797, 1.320967, 1.652301, 0.533781, -0.439906, 0.832975, 0.243931, 1.351717, 1.460085, -0.058944, 1.360205, -0.023769, 1.027919, 0.087172, 0.297364, 1.531555, 1.381519, -1.559484, 0.421254, -2.637443, 0.962586, 0.005174, -1.349319, -0.130419, 1.550003, -1.458881, -2.538156, 2.014421, 0.006288, -0.000392, 1.645375, 0.914276, 0.950871, 1.842769, -0.500503, 0.988505, 1.283428, 1.037391, -0.388893, -1.431552, 0.776845, -0.584454, -1.040875, -1.613064, 0.128908, 0.102206, 1.516153, -0.160012, 0.849983, 0.717188, 0.766496, 1.962352, 0.798451, -1.234346, -1.840303, 0.922705, 0.644601, -0.027783, 0.256206, -0.749286, -2.566145, 0.478332, 2.329304, -0.387126, 0.452113, 0.334681, -0.161096, -0.474441, 0.097963, -0.089322, 1.795847, -0.042073, -0.664181, 1.218360, -0.340899, 0.127724, -0.310126, -0.467156, -0.134546, 0.631132, -0.115809, 0.842562, -0.827829, 0.410518, -2.267316, -0.677930, -1.355690, 0.736319, -0.956608, 0.433630, 0.861399, -0.080333, -0.592559, -1.044974, 1.532568, 0.549087, 1.318178, -0.619991, 0.058392, -0.105493, -0.640378, -0.797693, 0.228172, 0.273271, -0.386240, -0.488218, -0.812232, -1.479618, 0.084559, -1.608190, -0.392993, -0.135440, 1.051904, -0.758152, 0.782038, -0.013720, 0.308988, 0.206684, -1.368502, 0.320797, -0.886831, -0.751650, 2.008631, -0.046126, 1.144558, 0.284991, -0.262887, 0.304015, 0.723817, -0.777725, 1.323353, -0.091943, 1.153696, 1.369051, -0.246026, 0.125179, -2.001673, -0.967672, -1.063490, -1.689584, 0.057977, 0.811127, 1.515392, -1.096781, -1.523741, -1.262561, -0.267381, 0.954845, -0.161730, -0.151312, -0.893880, -1.196546, 0.550800, -1.905365, -1.008899, -0.121742, 0.701880, 1.683473, 0.225014, 1.300599, 0.295760, -0.207321, -0.061736, -0.683567, 0.635483, 1.609004, 0.883267, -1.149683, -1.042239, 1.514341, 2.086975, 0.222563, 1.309463, 0.905558, 0.184328, -0.581612, 1.141284, -1.304625, 0.037925, 0.325785, -0.516631, 1.265680, 0.332239, 0.214298, -0.258917, 0.038521, 0.312495, 0.092683, 0.474036, 0.855979, 0.157309, 1.511145, 0.505412, 0.261702, 0.269582, 0.358300, 0.062938, -0.818899, 0.298368, -0.496253, -1.183660, 0.062120, -1.237283, 1.233745, 0.307924, 2.330193, 0.039410, 1.774418, -0.605162, -1.621506, -0.486021, -0.431777, 0.956441, 0.677082, -0.492795, 0.156117, -0.126876, 0.845277, -1.613050, 0.086365, -1.560184, 1.316918, 0.078003, -0.592927, 1.359921, 0.187715, -2.275469, -1.945789, 0.627408, 0.190939, -0.351133, -0.806264, 0.824668, -0.042405, -0.539143, 0.845285, -0.089379, 0.878481, 0.284867, 0.526382, 0.717980, 0.182401, -0.541348, 2.146397, -1.088773, -0.805541, -0.345570, 1.661477, -0.595325, 0.684363, -1.257376, 0.023344, 0.734125, -0.291072, 0.021747, -1.480637, 1.270376, -2.572407, 1.487658, 1.404333, 1.011047, -0.112893, -0.818397, 0.684824, -1.135044, 0.836326, 1.505343, -0.082388, 0.162997, 1.576062, 0.342984, 0.928601, -0.092185, 0.427191, -0.330527, 1.518596, -0.110537, -0.484779, -0.760054, 0.642975, -0.984302, 0.624481, -0.029567, -0.715952, -0.011263, -0.298227, 0.275849, 0.027355, 1.377666, -0.459477, 0.628080, -0.467787, -0.230906, 0.376572, -0.254964, -1.277388, -0.769468, 1.400092, -0.108365, 0.988826, 0.326570, -1.100671, -0.340571, -0.158031, 0.198375, 1.156926, -0.063378, -0.340940, 0.650776, 0.856718, -1.035267, -0.605709, -0.439031, 0.944178, -0.584561, -0.830534, -2.074365, 0.638715, -1.666310, -0.988617, 0.461472, -1.422760, -0.782912, -0.108792, 0.436112, 2.355002, -1.235402, 0.553558, -1.002286, -0.327474, 0.468100, 0.246924, 1.424677, 0.112156, -0.975042, 0.546593, 0.658777, 0.162809, -0.601280, 0.949157, 0.174315, 0.900946, 0.310925, 0.004629, -1.549297, 1.764501, 1.482424, 1.837905, -1.039484, 0.149062, -0.630529, -1.177024, 1.068171, -1.280590, -0.303332, 0.179451, 0.169287, -0.258005, -0.425908, -1.375083, 0.802648, 0.945771, 1.557162, 0.789797, -0.166533, -1.327571, -0.354711, 0.250401, 0.330310, -0.255542, 1.117533, 1.200644, 0.675179, 1.269475, 2.209169, -0.490429, 0.058046, 1.673916, 1.371790, -0.658589, -1.335027, -0.871297, -1.264020, -0.430797, -0.891011, -1.678566, 1.099850, -1.632559, 0.025650, 0.544013, 0.184016, 0.729281, 1.388570, 1.340584, 0.339048, 1.167266, -1.789571, 0.831025, 1.163045, -0.025695, -0.161610, 1.300793, 0.028544, -0.651811, 0.115253, 3.349280, -1.690522, -0.740014, 1.528751, 1.295427, -0.357770, -1.472315, -0.387015, 0.802045, -0.463119, 0.243177, 0.322240, 0.559485, -0.666426, -0.058537, 0.244202, -2.163990, -1.198063, -0.534933, -0.009042, -0.866583, -0.659367, -0.952750, 0.054395, 0.584717, 0.550764, -0.614824, 0.009172, -1.510656, -0.756845, -1.174699, 0.030239, -0.433201, 0.695211, -0.858020, -1.342123, -0.836211, 0.001272, 0.052203, 0.434733, 1.141701, -0.214443, 0.191977, 0.336118, 0.740006, 0.034802, -0.784479, 0.096711, 0.727342, 0.055901, -0.414428, -1.824772, -0.881200, -1.991755, -1.703310, -0.643475, -1.899000, 0.020451, 0.354152, -1.656891, -0.303586, -0.650279, -1.334365, -0.388828, 0.257294, 0.598919, -1.616676, 0.474919, -1.193735, -0.324456, 0.396999, -0.882466, -0.097478, 1.547611, -1.214700, 0.191804, -0.625332, 0.365946, -1.514317, 1.307281, 1.258358, -0.226794, 0.344606, 1.404790, -1.004501, -1.057374, 0.540663, 0.249152, -0.669035, 0.125867, 0.989408, 0.769806, -0.500591, -1.445798, -0.767357, 0.641463, 0.041894, 0.111889, -0.966250, 0.669621, -0.610478, -0.533989, -0.412872, 0.472221, 0.478693, 1.378050, 0.727697, -0.964777, -0.788726, 0.736311, -0.848335, 0.543806, 0.803697, -0.106663, 0.811208, 1.240668, 2.250139, 1.136069, 0.246242, -0.121398, -0.486841, -3.434912, -1.275332, -3.317612, 0.069645, -0.413039, -0.369937, 2.498012, -0.762144, 0.303670, -1.258046, -0.375193, 0.563762, 2.457668, 0.232275, -1.474267, -0.259822, 0.681628, 1.628089, -0.325477, -0.547176, 0.592477, 0.459258, 0.410981, -1.505520, -0.494426, -0.053370, 0.621976, 0.288695, -1.813272, -1.824858, -0.283255, -1.062194, 1.142938, -0.158747, -0.943995, -0.521847, 0.896608, 2.761982, -2.603445, -0.730379, -1.142341, 1.221350, 0.770996, -0.867309, -0.275855, 0.152357, 0.407490, 0.225373, 1.259988, -0.002450, -0.561185, -1.630228, 1.834839, 0.582425, -0.461999, 0.268939, -0.619384, 0.187173, -0.958496, -0.951235, 1.445309, -1.371066, 0.868823, 3.438059, -2.021828, 0.150146, 1.012159, 0.703892, 0.976942, 1.792319, -0.139234, -0.496251, -0.161439, -0.984238, 0.317302, 0.588664, -1.038444, 0.222212, -1.746588, -0.022362, 0.914479, 0.903137, 0.029670, 0.105203, 1.680549, -0.345040, 2.162678, 2.025294, -2.193341, -1.256435, -0.307806, 0.242472, 1.013520, 1.866294, -0.149441, 0.927305, 1.010147, -0.534185, 0.255325, 1.065936, 0.812453, 0.207904, 0.180286, -1.882265, 0.035907, 1.266762, 1.252696, 0.653087, -0.494835, 0.543472, 1.246732, 0.317398, -0.412244, -0.952608, -1.371530, 0.213726, -0.625257, 2.081142, 1.456245, 1.249835, 0.640521, 0.788754, -1.067846, -0.369250, -0.639954, -0.182088, 2.146137, 0.944911, 0.223942, 0.528069, 0.980094, 0.124984, -1.529407, -0.797045, -2.993440, -0.395360, 0.508714, -0.262211, 0.293014, 2.141667, 1.894343, 0.454155, 1.467839, -2.669097, -0.350502, -0.684777, 0.710954, 0.797875, -2.239517, -0.155615, 0.077360, -1.304273, -1.536844, -0.107262, -0.326350, 0.036435, 1.129485, 0.877583, 1.250684, 0.067639, 2.080853, -0.715323, -0.076841, 0.419071, 1.760842, -0.058199, -1.315183, -0.555080, -1.034938, 0.699692, 0.314024, 1.955158, -0.287106, -0.854205, -1.337740, 0.583237, -0.421642, -1.707369, -1.324745, -0.850404, -1.204480, 2.133568, -0.112033, -0.894717, -0.978355, 0.908738, 1.238484, -0.615850, -1.937458, -2.196863, -1.252127, -0.526694, -0.546125, -1.344850, -0.982168, 2.173167, -0.083702, 0.007026, -0.246081, 0.238767, -0.724481, 2.339514, 0.084985, 0.703273, 2.061641, -0.154204, 2.239408, 0.423678, -2.063623, -1.252790, 0.650013, -1.658404, -0.693257, 1.838595, -0.771602, -0.149477, 0.358082, 1.407910, -0.144467, -1.152889, 0.401631, 0.303263, 0.131443, -0.819018, 1.100724, 0.464732, 0.491105, 1.228458, 1.311138, -1.197644, -0.111242, -0.919881, -0.922855, -0.189304, -0.030848, -0.102934, 0.066671, 0.117949, 1.304459, 0.352791, 0.620185, 0.711346, -0.059455, -0.385455, -0.096255, -0.191275, -0.494043, 0.748575, 0.782187, 0.307755, 0.037504, 0.372293, -0.903534, -1.848378, 1.287887, -0.524687, 1.163189, -0.129975, -0.903640, 0.148251, 0.268857, -0.148171, 0.143643, 0.987272, -0.125844, -1.091078, -2.237172, -0.879773, 0.548873, -0.880634, 0.334975, -0.082319, 0.048774, 1.491770, -0.228632, 0.325660, 0.418687, -1.585747, 0.752094, 0.611305, -0.188517, 0.078357, 0.959069, 0.028140, -1.591887, 0.769817, -0.893864, 1.043248, -0.631661, 1.426773, 1.757035, 0.597649, -0.683081, 0.432780, 1.424747, -1.326275, 0.576361, 0.261461, 0.128965, -1.035025, -1.207932, -0.312072, -0.163825, 2.215348, 1.238384, 0.671489, 0.400612, -0.837736, -0.307870, 0.181347, 0.874091, -0.210893, -1.045678, -0.506004, -0.976173, -0.104124, -0.462819, 0.905066, 1.636724, 0.550073, 0.297225, -0.322061, 0.483991, 0.549717, -0.212938, -0.101067, -0.196911, -1.498795, 0.027274, 1.918654, -1.903753, 0.028858, 0.872454, 0.507493, -1.433596, 1.538476, 1.463245, 0.511314, 0.992367, -2.023561, -0.103634, -0.280758, 0.898937, -0.635816, -1.741027, -0.710854, 0.232806, 0.997186, -0.068699, 0.527735, -0.306612, 1.320259, 0.524979, 1.566026, 0.745433, -1.261684, 0.429688, 0.668823, -0.129410, 1.041267, -0.107695, 0.385024, -0.541924, -1.335704, 0.712109, -1.242640, 0.957900, -1.226049, -0.428987, -2.854677, 0.170167, 0.898194, -0.259911, 0.116624, -1.037295, 0.424726, -0.450664, -0.849981, -0.069518, -1.837021, -0.111621, 0.918603, -1.012827, 0.307816, -0.167160, 1.764189, -1.923860, 2.134014, -1.209289, -1.026325, 1.243077, -1.813199, 0.730852, -0.503545, 0.467283, 1.100372, -0.970210, -0.427993, -1.247147, -1.260334, 1.119235, 0.371673, -0.801661, 0.890992, -1.029953, -0.621906, -0.129162, -0.155884, 1.275557, 0.072217, -1.300900, 0.355759, 0.862411, 0.771433, -0.290071, 1.168941, -0.460358, -0.233635, -0.049346, 0.203962, 0.105250, 0.740352, 1.040948, 0.221734, -0.233648, -0.454181, -1.126288, 0.025229, -0.278310, -0.103982, -0.264373, 0.348480, 0.971696, -1.928843, -0.328395, 1.040008, 2.561056, 0.943739, -0.678772, -0.353803, 0.339516, 0.759326, 1.300684, -1.149924, -0.191907, 1.919679, -0.718326, -0.382216, -0.129293, -1.117456, 1.295387, -0.840581, 0.386809, -0.158824, 0.027075, -0.358692, 0.396634, 0.524984, -0.931175, -2.105458, 0.259047, 0.406823, 1.514007, -1.440626, 0.870172, 1.896048, -0.972844, 0.353884, -0.522369, 0.743633, 2.892678, -0.447871, -2.060688, 2.193885, 1.602998, 0.363908, 0.778097, -0.649055, -0.643641, -0.180242, 0.417444, 2.334388, 1.051741, -1.314835, 0.172733, 0.425691, -0.940487, 1.854761, -0.310319, -0.356594, 0.165421, 0.983026, -1.231497, 2.365194, 0.863807, 1.327166, -0.854160, -0.846990, -2.275567, -0.030467, 0.086538, 0.208191, 0.417749, -0.673133, 0.248403, -0.821390, 0.930110, -0.537681, 0.722272, -0.438084, 0.521775, -0.444775, 1.123706, -0.366154, -1.211334, 0.785763, -0.090212, 0.399610, -0.778955, -1.737424, -0.944608, 1.953097, -0.049402, -2.043326, -0.945736, 0.121193, 0.337845, -0.800513, 0.401829, 0.789317, -0.466685, 1.038434, 1.135158, -2.149812, -0.791029, -0.417211, -0.077371, -0.108307, -0.355600, -0.871421, -0.014547, -0.760972, 0.300661, 1.775042, 0.201609, -1.265828, 2.669960, -0.984106, 0.357699, -0.112097, -0.093051, 0.575159, -1.898535, 1.101097, 0.339002, 0.701391, 2.337458, 0.528637, 1.840637, 0.475147, -0.562820, 0.338753, 0.403679, 0.574363, -2.119347, 0.609968, -1.012849, -1.352962, 0.231849, 0.278812, -0.013616, 1.019185, 0.261277, 0.286280, 1.581873, 0.142259, -0.720907, 1.581380, -0.359791, 0.808249, -0.255167, 1.464218, -0.318399, 0.344273, -0.984958, -1.620986, -1.138884, 1.536932, -0.108202, -0.483328, -1.162456, -1.223146, 1.430757, -0.093890, -0.862485, 0.331000, 0.292759, -2.178923, -0.816021, -0.624117, 1.602224, -0.106339, 2.169772, -0.014278, 0.309661, 0.241634, -0.391667, -0.038346, 0.716072, -0.408375, 0.221501, 0.251063, 0.452108, -0.113625, 0.302859, 2.721525, -0.187321, 0.650628, 0.950048, 0.037648, -0.749137, -0.041241, -0.629328, 0.101210, -0.297283, -1.216799, -0.946815, -0.415470, 0.320461, 1.088325, -1.371601, -1.912377, 0.762343, 0.840408, -0.726547, -0.147991, -2.197295, -1.215911, 0.231504, -1.210398, 0.098692, 1.652076, 0.953677, 0.637737, 0.408459, -0.379354, 0.027540, -0.410371, 1.428545, -0.123122, -0.799414, 1.413017, 0.990663, 0.563771, -0.436278, 0.171840, 1.534318, 0.066921, -0.551868, 1.566881, 0.403103, 1.363561, 1.148942, -0.302120, -0.056281, -0.738906, 0.820263, 0.261098, -0.329456, 0.222278, -0.363365, -1.735313, 0.914271, 2.036753, -1.325607, 0.638314, -2.356230, 1.099741, -1.592053, 0.784023, 1.364543, -0.450988, 2.585830, -0.541140, -0.671554, -0.878177, 1.009884, 1.076272, 0.753052, 0.568429, 1.302246, 0.337833, 2.142000, 0.333981, 0.809878, 1.108388, -0.064714, 0.320127, -1.319582, -0.296741, -0.488517, 1.125798, 0.329502, -0.257559, 0.787120, 0.722466, 0.048714, 1.953891, -2.059062, 1.769919, 0.226752, 0.226126, 0.195641, -0.456240, 0.910647, 0.088730, -0.788780, 0.096395, 1.663035, 1.255488, -1.548699, -3.336155, 0.109129, -1.154656, 0.219741, -0.408942, -0.808253, 0.407780, 1.290327, 0.357330, -0.518125, -1.934839, -0.738774, 0.205591, -0.893549, 1.140193, -0.339865, 2.108851, -1.050804, -0.284021, 0.554164, 0.134279, -0.453211, 1.002542, -0.790829, 0.995897, -0.045379, -0.303787, -0.079004, 0.529985, 0.166934, -0.218553, 1.857520, -1.740195, 0.008362, 0.335930, 1.359018, 0.546026, -0.056666, -2.716472, 0.259483, 0.417710, -0.030669, 0.204734, -0.112383, -1.271630, -1.629727, 0.289883, 0.570985, 2.225081, 0.740098, -0.944959, 1.065357, -2.396979, 1.728588, 1.765830, 1.699483, 0.208346, 0.873128, -1.751580, -0.228863, 0.215537, 0.996368, -1.161910, 0.796919, 3.245623, 1.779665, -0.866491, -2.005794, -1.095217, -0.505462, 0.066627, -0.930149, -0.344587, 0.684385, -0.116935, 1.015545, -0.331658, -0.022402, -0.644539, -2.867691, -1.161617, 0.305834, 0.881094, -1.766287, -2.208297, 1.272215, 0.046028, -1.084531, -0.123789, -0.702800, -0.169766, -0.545750, -0.539380, 1.566526, -0.806409, 0.856156, 1.339557, -0.979540, 0.293885, 1.136141, -0.820292, -0.482555, -0.567841, 1.190734, 2.046194, 1.558453, 0.728943, 0.248332, -0.312406, -0.733023, -0.111732, 0.794256, 0.245471, -0.179121, 0.304966, 0.809319, 0.413332, -1.077685, -0.194387, -1.306237, 0.103199, 0.789988, 0.228082, -0.232963, -1.031974, 1.523923, 0.475141, 0.981131, 0.211370, 0.543180, -2.815670, -0.392107, 1.093994, -0.778228, -1.632739, 1.038689, -0.026396, 0.127708, -0.304561, -0.139410, 1.180005, 0.548800, 0.615076, -0.486102, 0.271175, -0.182000, 0.550931, 0.489203, 0.597428, 1.967353, 0.690271, -0.278638, 1.199280, 1.811475, 0.611303, 1.653204, 0.209449, -0.271386, -1.447027, -0.290825, -0.339195, 1.279329, -0.153505, -0.324407, -0.153552, 0.355896, 0.180559, 0.687147, -1.038141, 0.112882, 0.717571, 0.240427, -1.330195, -0.401013, -1.788596, -1.268662, -0.309635, -1.296623, 0.263301, 1.392039, -0.343556, -1.572679, 0.116925, 0.549390, 0.405567, 0.492136, 0.227724, 0.903605, -1.144802, 0.568041, 0.540512, 0.509992, -3.318491, -0.854823, 0.766625, 0.463274, 1.010227, 1.737680, -0.673925, 0.778945, 0.278941, 0.581580, -1.079286, -0.706330, 0.892325, 0.674350, -0.440848, 0.387607, -0.679627, -0.850609, -0.451993, -0.087611, -0.672285, -1.168569, 0.616856, 1.317201, 0.114958, -1.039682, -1.416106, -0.342592, 0.660260, 2.357647, 0.165979, -1.584079, 0.860112, -1.366584, -0.097526, 0.122607, 0.862487, 0.731924, 1.418219, 0.849132, -0.597117, 2.540466, -0.578632, -1.115295, 1.333190, 0.086513, -0.053591, 0.225131, -1.602764, 0.500208, 0.032654, 0.322420, -0.189129, -1.890881, -0.382670, -0.432913, 0.319351, 0.055069, 0.936737, 0.113776, 0.776327, -0.193125, -0.158743, 0.753608, 0.645885, -0.325324, 1.526171, 0.749130, 0.130848, -1.612800, 0.918753, -0.388036, 0.447818, -0.952199, 0.037843, -1.134077, 0.684074, -0.591570, 0.242446, -1.553247, 0.193325, -0.466172, 0.498750, -0.637181, -1.580025, -0.175192, -0.735099, -0.096882, -0.306228, 1.140357, 0.078491, 0.301933, 0.826565, -0.474013, -0.392096, -0.340153, -0.662475, -1.318035, 0.199364, 1.173646, 0.060547, -0.277690, 0.037742, 0.626429, 0.276228, 1.365709, -0.826479, 0.720810, -1.543668, -0.931893, -0.898319, 0.037826, -0.992644, -0.229341, -1.291530, 0.776097, 1.106078, -0.502102, -0.195784, 0.678352, 0.443396, -0.729560, -0.643773, 0.684174, 2.167852, -0.343895, -1.148394, 0.610099, 1.218483, -0.648867, -0.660539, -0.011589, 0.242672, 1.619911, 1.122103, -0.949625, -0.346093, 0.313354, -1.480383, 0.114799, -0.631290, 1.376870, 0.528655, 0.147564, -0.571892, -0.902503, 0.027523, -2.386206, 0.047019, 0.712340, 0.373050, -3.742981, -0.960977, -0.765825, -1.196275, 0.592246, -1.001031, -0.734095, 1.194421, -1.299737, 0.718205, 0.129740, 1.449906, 1.456795, 1.322775, -1.037488, 0.919950, 1.299589, -0.220103, 0.679789, -0.731794, -1.099227, 0.747064, -1.272311, -0.494790, -0.517814, -1.236414, -1.206991, -2.020248, 0.256161, 0.375244, 0.392100, -0.787414, -0.073884, -0.833548, -0.218742, -1.180919, 1.210457, -0.961551, 0.132198, -0.598840, -0.559707, -1.828597, -1.602170, 0.678783, -0.544020, 0.822751, 1.626201, 2.232374, -0.138779, -0.694156, 0.000847, -0.650478, -1.229205, 0.703766, -0.283488, 0.543350, 1.657942, -0.328912, 0.148650, -0.124798, -0.037360, -0.834730, -1.556607, 1.613294, -0.802447, 0.187936, 1.174586, -0.217522, -1.521824, -0.163067, 0.595951, 0.662811, -0.033540, 1.009212, -0.151565, -0.378193, -1.852612, 0.341086, 0.621315, -1.264951, -2.818332, 0.325491, 1.167756, -1.980884, -0.313517, -0.961457, -0.038815, -1.048902, 0.303013, 1.832546, 0.130136, 0.960339, -0.537327, -0.142277, -0.623377, 0.956756, 0.485942, 0.379199, 0.288153, 1.208403, 1.155517, -1.177368, 0.607068, 0.203230, 1.012689, 0.025322, 2.288601, -1.962106, -0.994810, 0.599504, 0.344037, -2.161122, 0.506686, 1.213832, 0.227534, 1.660662, -0.606905, -0.867402, 0.589378, -2.365501, 0.173724, -0.380677, 2.189913, -0.031614, -0.154074, 0.410991, 0.208099, 0.580851, -1.544862, 1.329000, -0.516037, 0.342867, 0.298892, -0.465886, -0.625069, 1.187250, 0.590677, 0.053370, -1.004794, -1.401529, -1.035537, -0.628932, -1.463349, -0.955950, -0.467803, -1.743691, -0.472147, 1.943463, -0.252482, -0.142277, -0.841892, 0.950755, -0.976874, -0.267182, 0.021924, -0.604220, 0.003174, -1.378690, -0.917260, 0.163232, 0.875701, 0.362346, -0.000697, 0.044516, -1.024250, -1.371196, 0.818301, -0.954579, 0.344323, -1.664236, -1.013830, -0.021952, -0.023982, 1.597108, 0.705133, -3.162140, 1.383527, 1.264118, 0.222059, -0.506200, -1.928744, 2.200409, -0.270185, 1.081008, -0.800158, -0.357231, 0.289235, -0.594162, 0.044104, 0.719819, -1.518946, -0.150641, -0.939045, -1.684735}, - { -0.075818, -0.591056, -0.203184, -0.000746, -0.297645, 0.391987, 0.301354, -1.067063, 0.503172, 0.718119, -1.699602, 0.882575, 0.744414, -0.829243, 0.975778, 2.207309, -0.688361, -0.303853, 1.611673, 0.289883, -2.782591, 0.178586, 1.731738, -1.109886, -0.591628, 1.219229, 1.127124, 0.650235, -2.183071, -0.734204, -0.283618, -0.773913, 0.242742, 0.658706, 0.569280, 0.855442, -1.795356, -1.059935, 1.629796, 0.221182, -0.168840, 0.429339, 0.019499, -0.222937, -0.676228, -0.876359, 0.264665, 0.499466, -0.215084, 0.434298, 0.497651, -0.714105, 0.513151, 1.114845, 0.529509, 0.363861, -0.784813, 0.106611, -0.234912, 0.582431, -0.509431, 0.463722, -0.745261, -0.652358, -0.116182, 0.686116, -0.093189, 1.176759, 1.526295, 0.130450, 3.006197, 0.467975, 0.830607, 0.741303, -1.302031, -1.225514, -2.744079, -1.262118, 0.595829, 0.377909, -0.110930, -0.076925, -0.061071, 0.356284, 1.418585, -1.080366, 0.678356, -0.536989, 0.286910, -0.477631, -1.817675, 0.750332, 1.055889, 0.603314, -1.094795, 0.164761, 0.795688, 0.470629, 0.011230, 2.731884, -1.098709, 0.371479, -0.399019, -0.399803, 0.726631, -0.420814, 0.875257, -1.715272, -0.001264, 1.897607, -0.528751, -0.464735, 0.362777, 0.697868, 1.138464, -1.077565, -1.506992, 1.755002, -1.332765, -0.533883, -1.300747, 2.041262, 0.507811, 0.176813, -0.470497, 0.008381, 1.005808, 0.111211, 0.529343, 0.408063, 0.157513, -0.876860, 0.292996, -2.088128, 0.150622, -0.699342, 1.632175, -1.677590, 0.685664, 1.318200, 0.275651, -1.542503, -0.216152, 1.512114, -0.978928, -1.662969, -0.809575, 0.134984, 0.356887, -1.125470, -0.894769, 1.228497, -2.276622, -2.345372, 0.903469, -0.426379, -0.589865, -0.061567, -1.824102, -1.675176, 0.587386, 0.129867, 0.269369, 0.924985, 0.223019, -0.281389, 0.539594, -1.069914, 0.706722, -0.299142, 1.657878, 0.423268, 2.812116, -0.358220, 0.426580, 1.636693, 1.169133, -0.242839, 0.815258, -1.559850, 1.379328, 0.569973, 0.843199, -0.708583, -0.269013, -0.614245, 0.003019, -0.891025, 0.600493, -0.395048, -0.602764, -0.920318, -0.230134, 1.074987, 0.685926, -0.588487, 2.000565, 2.150665, -1.063414, 0.548167, -0.233040, 0.378996, 0.446337, -0.580621, 0.020128, 0.418870, 0.189227, 0.417250, -0.265171, 0.991254, -0.186357, 0.305849, 0.643100, -0.201048, -1.147260, 0.059509, -0.205426, -1.176731, -1.871982, -0.152198, 0.753215, 1.328457, 0.949134, 0.336266, -1.634675, 0.802454, -0.013598, -0.500140, -0.354332, -0.056919, -0.527163, -1.528844, 0.219224, -0.596693, -0.660274, 0.436824, -0.528790, -0.404186, 0.479671, 1.660770, -0.228581, -0.938038, -0.865225, -0.120912, -0.869814, -0.631828, -1.611058, 0.717008, 1.212493, 0.822863, 0.946994, -0.287564, 0.318448, 1.790949, -0.345807, 0.084848, -2.735029, -0.622923, -0.135313, -0.023435, -0.273825, 0.137685, 0.581551, 0.275621, -0.980397, 0.104893, 0.910032, -0.746566, -0.557435, 0.536291, -0.697447, 0.081836, 0.402436, 0.467083, -0.179142, 1.197302, 1.476778, 1.147592, -0.325082, 0.084812, -0.949026, -2.120154, 0.436866, 0.585607, -0.455147, -1.077923, -1.667871, -0.534206, 0.255791, -0.084062, -1.288494, -0.794506, -1.418958, -1.956882, -0.326849, 0.761938, 0.188717, 0.161439, 1.925249, -0.638581, 2.167075, 0.379375, -1.080229, 0.339205, -0.312691, 2.167922, 0.574815, 0.885331, 0.493129, 0.294114, -0.344645, -0.715179, -0.302560, 0.573559, -1.868044, 0.693858, -0.715592, 0.768519, 2.493984, 0.777753, 0.362307, -0.101264, 1.609456, -0.292330, 0.591547, -0.901044, -0.395944, -0.687151, 1.213101, -1.420922, 2.208108, 0.547884, 0.762590, 0.242986, 1.115821, 0.926447, -0.657233, 1.236022, -0.309429, 1.399785, -2.227902, -0.003809, -1.089583, -0.155297, -0.858382, -0.994752, 0.361045, 0.459807, 0.737149, -0.130919, 1.203072, 0.356398, 0.655216, 0.013671, 0.962188, 0.868420, 0.082053, -0.334015, -0.427765, 0.735269, -0.691213, 0.488611, -0.326986, 0.489971, 1.652623, 0.291087, -0.040772, -0.420552, -0.056084, 0.277826, -1.883673, 0.468472, 2.054070, -1.610662, 0.183714, 1.102596, 0.772954, 1.693413, 1.445988, -1.137661, -0.141325, -0.622301, 0.006393, -0.884850, 1.002120, 0.645773, -0.090861, 1.080341, -1.500663, 1.320626, 0.669547, -2.595552, 0.845621, 0.327436, -0.355436, 0.516004, 1.854887, 0.700505, 0.671752, -1.354331, 0.980456, -0.427137, -0.927301, -1.820176, -0.981218, -1.194150, 0.315045, 0.021733, -0.744935, 1.131451, -0.421028, 0.857346, -0.963097, 0.323527, -0.297951, -0.302454, -0.141004, 0.211454, -0.736983, 0.027141, -2.570904, -0.004068, -0.520198, 1.228741, 0.608092, -1.163575, -1.200350, -1.906412, -1.316357, 0.435733, 0.314957, 1.463497, -1.726823, 0.411802, -0.995351, 0.328443, 0.589587, 1.161308, 1.269894, 0.000864, -0.669958, -1.170734, -0.306897, 0.813266, -0.054548, 0.575938, 1.372825, -2.078029, 1.361749, 1.028377, -1.300539, -0.841800, 0.018339, -1.158966, 1.465181, 0.503631, -0.557325, -0.017204, -0.645261, -2.052901, 0.294085, -1.344063, -0.071089, 0.542979, -0.686364, -1.704995, -0.016104, 0.013893, 0.416073, -0.060993, 1.281186, -2.285144, 0.925526, 1.325849, 1.240047, -0.965018, 0.355224, 0.885112, -2.308917, 0.022059, 0.398899, 0.540163, 1.244802, 0.106283, 0.318419, 0.308530, 0.136895, -0.426789, 0.171461, -0.247609, 0.030064, 0.797424, -0.771029, -1.640079, -0.112640, -1.347726, -0.856826, -2.681372, 0.658750, 0.894154, -0.560418, 0.459026, 0.011281, 1.107731, 0.759959, 0.349417, 0.604720, 0.759985, -2.042573, -0.797079, 0.118170, 1.519774, -0.549714, -1.447577, -0.408993, -1.586553, -1.357910, 0.370954, -0.093002, 0.983589, -0.026437, 0.356506, -0.144430, 0.813638, -0.406420, 1.071391, 1.616723, -0.668873, -0.343954, -0.879210, -0.811743, 0.173981, -1.712460, -0.788406, -0.734806, 0.384649, -0.128088, 0.047616, -0.017519, 0.653405, 1.587662, 0.489960, -0.461334, -0.217019, -1.117423, -0.150461, 0.155841, -0.462382, -1.244611, 0.486257, 0.137425, -0.142641, -0.218207, -0.773001, 0.234715, 1.768985, -0.744872, -1.355896, -1.477842, 1.497080, -1.373374, -1.635711, -0.184275, 0.880896, 1.301994, 1.176412, -0.514677, 0.756981, 0.974307, -1.050675, 1.166521, -0.188740, 0.125473, 0.879383, -1.720362, -0.158602, -1.192396, 0.522076, 0.173412, -0.008877, 0.213117, -0.625154, -0.733218, -1.747669, 1.417209, 0.112440, 2.183440, 0.684636, -0.054791, -0.196834, 0.371640, 1.224291, 0.213305, 0.697020, -1.245772, 0.901466, -0.446039, -0.818270, 2.708708, 0.423931, 0.042169, 0.577899, -0.482756, 1.680901, 0.513257, 1.740272, -0.539891, -0.934281, -1.668307, -0.245802, -0.244376, -0.222213, -1.308956, 0.366338, -1.845397, 0.410688, 1.036196, 0.413241, 0.409510, -0.352512, 1.055341, -0.124908, 0.867170, -0.357473, 1.585324, -0.042768, -1.009225, -1.615473, -0.474490, 0.576445, 0.955794, 1.079710, 1.555776, -1.477289, -0.199500, -1.313659, 0.606937, -0.544959, 0.043119, -0.775890, 0.344170, 1.208706, 1.908984, 1.482895, -0.528106, 2.143611, 0.485469, 1.680593, 1.362918, 0.730531, -2.102340, 0.044886, 0.544160, -0.875090, -0.101456, 0.568089, -0.433850, -0.151209, 0.613436, 1.428467, 1.306991, -1.066352, -0.149791, -0.903824, 0.805184, -0.893422, 0.892775, -0.178189, 0.109300, 0.269072, -0.230340, 0.929517, 2.082050, -0.011854, 0.867216, -0.237540, 0.611737, -1.173773, -1.749500, 0.334649, 0.138566, 0.124509, 0.080841, 0.036189, 1.504761, -0.100675, 0.554198, 0.313428, 1.524298, 1.859559, -1.169674, 1.325822, -0.652379, -0.516166, 0.134771, 1.181378, -1.690249, 0.248256, 0.184333, -0.523780, -2.413045, -1.053354, -0.306026, 0.236648, -1.572342, -1.047770, 0.751448, 0.339150, -0.494041, -1.893447, -0.235308, 0.064264, 0.046988, 1.981716, -0.127397, 0.315015, -1.628040, 0.076587, -0.573340, 0.321453, -0.521165, 1.273583, -0.966274, -2.114611, -0.536952, 0.144996, -0.780299, -0.935535, 0.088825, -0.040910, 2.084124, 0.936409, 2.810586, 0.124005, 0.127283, 0.694560, 0.502367, 0.148034, -0.621752, 0.070649, -0.440923, -1.171717, -1.031349, -0.521696, -0.887322, -1.839129, -0.774408, -0.066049, -0.038174, -0.588403, 1.423813, 1.474157, 0.535514, 1.615030, 1.225503, 1.152056, 0.516053, 1.089590, -1.066190, 0.192370, 0.523916, -0.179157, 0.105351, -0.947115, 0.716954, 0.015325, 0.288231, 0.424537, -0.753833, 0.027087, -3.675045, -0.090765, 1.092801, 0.430864, 0.561499, -2.256565, -0.597150, 0.889171, 1.397961, -0.733913, 1.385188, -0.001447, -0.950268, 0.227548, -0.764067, -0.202498, 0.749815, 0.313749, -0.266840, 0.017444, 0.959492, 0.188555, -2.141024, -0.940327, -0.965526, 0.026873, -1.213501, -0.377153, 0.392924, -0.829945, 0.292557, -0.454602, -0.693818, -0.096988, -0.322176, 1.159081, -0.798123, -1.747694, -0.373071, -0.132011, 0.706681, -0.747720, -0.855929, 0.620011, -0.016718, 0.231226, -1.114918, 0.834109, -0.363585, -0.857226, -0.663288, -0.589717, 0.256435, -0.964734, -0.217967, -0.088349, -0.280938, -0.727965, -1.746968, -1.106385, -0.147203, -0.140409, -0.164293, -0.309257, -0.431281, -0.598302, 0.064008, -0.271517, 1.109756, -1.691761, -0.430134, 0.318368, -0.344823, 0.272827, -1.121198, 0.745457, 0.897591, -0.706200, 0.209976, -0.035755, -0.613884, 0.890334, 0.642694, 0.890836, 1.631471, -1.431814, 0.148201, 0.892726, -0.399325, 0.959943, -1.109057, -1.368136, -1.520686, -1.267245, -0.742559, 0.143233, -0.853587, -0.306600, -0.758736, -0.414820, -0.652026, -0.478137, -0.253427, -2.231979, -1.075703, 1.202082, 0.592509, -1.947696, 0.803558, 0.294605, 0.492636, -0.341489, -0.760671, -0.745105, -1.362836, 0.462362, 0.505779, -0.985064, -1.380559, -1.815218, 1.416375, -1.074194, -1.587418, -0.103223, -1.703095, -0.779193, 0.074315, 0.026178, -1.345037, 0.891032, 0.204909, -0.586400, -0.600944, 0.751890, 1.196609, -1.016430, 0.716123, -0.068246, -1.096565, -2.116214, 0.300928, -1.712698, 0.286790, 1.497939, 0.786162, -1.614773, -1.860155, -1.052558, 0.624718, 0.052969, 0.931686, -1.406795, 0.720874, -0.232274, 0.705340, -1.493329, -0.018443, 0.038162, -0.883086, 0.361363, -1.416216, 0.284943, -0.947201, 0.597141, -0.153477, -0.030014, 1.032378, -0.442512, -1.189060, 0.873973, -0.695849, -2.213670, -0.882565, 1.924593, 0.385527, -1.826749, 1.356966, -0.939668, 0.452114, -0.861320, 0.646611, -1.654788, 0.105652, -0.977826, -0.262637, -0.785443, 0.537789, 0.621140, -2.139691, 0.356133, -0.129503, -0.677756, 0.394433, -0.155510, 0.951923, -2.544760, 1.474002, -1.682877, 0.361991, 1.079167, -0.440421, 0.605869, -0.727371, -0.943646, -0.003097, -1.570753, -0.079297, -0.938677, 2.082263, -1.459062, -0.026338, -0.038563, -0.993783, 0.561255, -0.309214, 0.227159, 0.446961, 0.248196, -0.246098, 0.310695, -0.044911, -0.677601, -0.018911, 0.048850, 1.031594, 0.497150, -1.340823, 0.183893, 0.128366, -1.711080, 1.115235, -1.229392, 0.032065, -0.025242, -0.460189, -1.997183, -1.656676, -0.732582, 0.802921, -0.247523, -0.609633, -1.208488, -0.339399, -0.359070, 0.556005, -1.588518, -0.321263, 0.832858, 0.022334, -0.315544, -0.841888, 0.965152, 0.220015, 0.370088, -0.423696, 0.370877, 0.193378, 0.292879, -1.624798, -0.103574, -1.441935, 0.767723, 1.239516, -0.708171, -0.424174, -1.046110, -0.478123, 1.578071, -0.911382, -1.260897, -0.389807, -1.355822, -1.183033, 1.375509, -1.063042, -0.388363, -0.493549, 0.210866, 1.899580, 0.773886, 0.186683, -0.428925, -0.730664, 0.375465, -0.085533, 0.089020, 1.035511, 0.670976, 0.218544, -1.035212, -0.642320, -0.920104, 0.106518, -0.396411, -1.157877, -0.591797, 0.031682, 0.272614, 0.022728, -0.500464, 0.037725, -3.046452, 1.252567, -1.729744, -0.382654, -1.596030, -0.787100, -0.145173, -1.346201, -0.501846, -0.962874, 0.310012, -0.920081, 0.515726, -2.139237, -1.199519, 1.517574, 1.064883, -0.669418, -1.426992, -0.322023, -1.160855, -1.319991, -0.249540, -0.345650, -0.535926, 0.124848, -0.120100, 0.762485, 0.188459, -0.250986, -0.046337, 2.474099, 0.689626, 0.265537, 0.257378, -0.706513, 0.895898, 0.570130, 1.254666, 0.162203, 0.510184, -1.048993, -1.618204, 2.051298, -0.834612, -1.243334, -0.507539, -0.997368, 0.045870, 0.011098, -0.296018, 0.334154, -1.750444, -0.176534, -1.769745, 1.107860, -0.492425, -0.166301, 0.491276, -0.263682, 0.685303, 0.280421, -0.897950, -0.447638, 0.088219, -1.180396, -1.071527, 0.212744, -0.668130, -0.525322, -0.659127, 0.762409, 0.057134, 0.600757, -1.520167, -1.413539, 1.944629, -0.791205, -0.447695, -0.011525, 0.303494, -2.708285, 0.638961, 0.249727, 1.184608, -1.231511, -1.262940, -0.111445, 0.691747, -0.959549, -0.762079, 1.687524, 1.510708, 0.210334, 0.272234, 0.184174, 0.181007, -0.206666, 1.007502, -0.324370, -1.335822, -0.480793, -1.842633, 0.889679, -0.541488, -1.895418, 0.421949, 0.309808, -1.855416, -0.394806, -0.041118, -0.159588, -0.824810, -1.376193, 0.388323, -0.125261, 0.087424, 0.578072, -0.161669, -0.206666, -0.000901, -0.794746, 1.184063, 1.564185, -0.026446, -0.119892, -0.512899, 1.232171, -0.344044, -1.130769, 0.886468, 0.930687, 0.273673, -0.591044, 2.895325, 0.788515, -0.386483, 0.577774, -0.169166, -0.471177, -0.991231, -0.885463, 1.090140, -0.982257, 1.352726, -1.693375, 0.362623, -0.492076, 0.946487, -0.130451, 0.639254, -0.707612, -1.138114, -0.390362, -0.249415, -1.171884, 0.153889, -0.361292, -0.916888, 0.419279, 0.335560, -0.396742, -2.169792, -1.046930, -0.499992, 0.672447, 0.119241, -0.543357, 0.330962, -0.134297, -0.381561, 0.310227, -0.392893, -1.720807, -0.234639, 0.556892, 0.546144, -1.113599, -0.685624, -0.800096, -0.381167, 0.804749, 1.173142, 0.684220, 1.722527, -0.347309, 0.079430, -2.097420, 1.220698, 1.919348, -1.220601, -0.500909, 1.096617, 1.079036, -1.391160, -3.083988, 1.168284, -0.991734, -0.220750, 0.656736, 0.184796, 0.416914, 0.811207, -0.846886, -0.622048, 1.193362, -1.342224, -1.473104, 0.832949, -0.040353, 1.221314, 0.208736, 0.874326, 0.151801, 0.162985, -0.670745, 0.626361, -0.967524, -0.220985, -0.146030, 0.177744, -0.870385, 0.517654, 0.129671, 0.598079, -0.062657, -0.285816, -1.259093, 0.876722, 0.925887, 0.597017, -1.648818, -0.489811, -2.439874, 0.121074, -0.407178, 0.546370, 0.973699, 0.015731, 0.337310, -0.903763, -0.286117, -0.614001, 0.968098, 0.876372, -0.036632, -1.747042, -1.282208, 1.261094, -0.988761, -1.116189, 1.575006, 1.010292, 0.290900, -0.292176, -0.253057, 0.224972, -0.337883, 0.005757, 1.137743, 1.109346, -0.451816, 0.757448, 1.482964, -1.638232, -1.277956, 1.493354, -0.592169, -0.277191, 0.076587, -0.035848, 0.677240, 1.012707, 0.405492, 0.605020, 0.225234, 2.521533, 0.947664, 1.061697, -0.384343, -0.972024, 0.131999, 2.022173, 1.059384, -0.488363, -1.617576, -0.014261, -0.732568, -1.028268, -2.290382, 1.329463, -0.169677, 0.019459, -1.401621, -0.581824, 0.455100, 0.868947, 0.090089, 1.376154, -1.042156, 0.933030, 1.422728, -0.802212, -0.747890, -0.804913, -0.264717, 1.004431, -0.111982, -0.044602, 0.304564, 0.254894, -1.860408, -0.486249, 1.028236, 0.340723, 3.047611, -0.684780, 1.342468, -2.472524, 0.451482, 0.425573, -2.275865, 1.497084, -1.298511, -1.709691, 0.679781, 1.229960, -0.433712, 1.877490, 0.793857, 1.954033, -0.698140, 1.568206, -0.022005, 0.076450, -1.149271, -1.821467, -0.220102, -0.201767, 0.044970, 0.764303, -0.069851, 1.106191, -0.379200, 1.449744, 1.660439, -0.482123, -0.304538, 0.037902, -0.210253, -0.050149, 1.594593, 0.492205, -0.288568, 0.041845, 0.983835, -0.916269, 0.455563, -0.566204, 0.950589, 0.646441, 0.548964, 0.407556, 0.307062, -1.227505, -0.709472, -0.149893, 0.510432, 0.413103, 1.173523, -0.660993, -1.056819, -0.102123, 1.012297, 0.141917, 1.009825, -1.134005, -0.461669, 1.171521, -1.318070, 1.692350, 0.475427, -0.820688, -0.880813, -0.142301, -0.844139, -0.841167, 0.159084, 0.141464, -1.362352, -0.671180, 0.100479, 1.517085, 0.524847, 0.175662, 0.275842, -0.905782, -0.324609, 0.284645, 0.832123, 0.666395, 0.222120, -1.141387, 0.727903, 0.045130, 0.488142, -0.212239, 0.487966, -0.754320, -0.260107, 0.382926, 1.616069, -0.716543, 1.260595, -0.041568, -0.814031, -0.165971, 0.084740, 0.205446, 0.050175, -1.261618, -0.353256, -0.718868, 0.661163, 0.272589, -0.882800, -0.191929, -0.067958, 0.597570, 0.346665, 0.957152, -0.300808, 0.858213, -0.745969, 0.633791, -1.832026, 0.538740, 1.538278, 0.948613, -1.397874, 1.267650, 0.231879, 1.215656, -1.784792, 2.027219, -1.100480, -0.341697, -0.476907, 0.469314, -0.454101, -1.391549, -0.914652, 0.136423, -0.043894, 0.105271, 0.787583, -2.736787, 0.876073, 1.825613, -0.971365, 0.527591, -0.026089, 1.205358, 0.936230, 1.045423, 1.694508, 1.129753, 0.313584, 1.499306, -0.265604, -1.571710, 0.134713, 0.814008, 0.198352, -0.366126, -0.700297, 1.084885, -0.071790, -1.068945, 1.576784, 0.734362, -0.711401, -0.228013, -2.928062, 0.468969, -1.264188, -0.225184, -0.377279, 0.914456, -1.237966, -0.567818, -0.555914, -0.631102, -1.157279, -0.213071, 0.450072, 1.346997, -0.033324, 0.789134, -1.662441, 1.276019, -0.894285, 0.407313, 0.887254, -0.779422, 2.004203, 1.028558, -0.620035, 0.225015, -1.677583, -0.095121, -1.175099, -0.573074, -0.304635, -0.731464, 2.122812, 0.874244, -1.087295, -0.942071, -1.083327, -1.127135, -0.754511, -1.284704, -1.981655, -0.866103, -0.199541, 1.605151, -0.166845, -1.096004, -1.930730, 0.412878, -0.390717, -1.401817, -1.251059, -1.566991, -1.096548, 0.646112, 0.607761, -1.935379, -1.165243, 1.585131, 0.257150, 1.808403, 0.086640, -0.048395, -0.842602, -0.301244, -0.620573, 0.587174, 0.172419, 0.208644, -1.612760, -2.095382, 1.522686, 0.599714, -0.708396, 0.632872, 0.961131, -1.175685, -1.261553, 3.415161, 0.169983, -0.104753, 0.319112, 1.410486, 0.145205, 0.071399, -1.056122, -1.924997, -0.167837, -1.162837, 1.216714, -0.063863, 0.699949, 0.277748, 0.672244, 0.721502, 1.372695, -0.507591, 0.487367, -0.867242, 0.545261, 0.871342, 0.077829, 1.814803, -0.863385, 0.183913, -0.562954, 1.561878, 0.584509, -0.030514, -0.712794, 0.978965, -0.021822, 0.043779, 1.620364, -0.704684, -0.827396, 0.289949, -0.971657, -0.140514, 0.195789, 0.648104, 0.179484, -1.001529, 1.924112, -1.602037, -0.928144, 0.420025, -0.917936, 0.803733, -1.142172, -0.188048, -1.184683, 0.275593, -1.316129, -0.118010, -1.129870, -0.725636, 1.796310, -0.057981, 1.484004, 0.114383, 0.114117, 0.603914, 0.714446, 1.877501, -1.353178, 0.202151, -0.221773, -0.254065, -0.958124, 0.129955, 0.219788, 1.715067, 0.920766, -0.131310, -1.248116, 1.671395, 0.022640, 1.429746, 0.303731, -1.720618, 0.240166, 1.259839, -0.921569, -0.165145, 0.759344, 0.989586, 0.647752, 0.107819, 0.993330, 0.457475, 0.005494, -1.594286, 1.148626, 1.149115, 0.279188, 0.653253, 1.705159, 0.305919, -0.402713, 0.349680, -0.539183, 1.066644, -0.071285, -0.316347, -0.577238, 1.381330, -0.260807, -1.498562, -0.122145, -0.563380, 0.653984, -0.801267, 0.158307, -1.941762, -0.751918, -0.389394, 0.254528, 1.301172, -0.625870, -1.028864, -0.634810, -1.930789, -0.331867, -0.047626, 0.655002, 2.108449, -0.776421, 1.649689, 0.198283, -1.421047, 2.327541, -0.629022, -0.279321, 0.415714, -1.249274, 1.122512, 2.083090, -0.393452, 2.563719, 0.479450, 0.145998, -2.357371, 0.288567, 0.840443, -2.047362, -0.461986, 0.878108, -0.226359, -0.222260, -2.572335, 0.736007, 2.017128, -0.687887, 0.938935, -0.859391, -0.982199, 1.287959, 0.062654, 0.492705, 0.275411, -0.150736, -1.892570, -0.029135, -0.043017, 0.894850, -0.877438, 0.351613, 0.628031, 1.094157, 1.084340, -0.770707, -0.731155, -0.278358, -0.172389, -1.146052, 0.238804, -0.040969, 0.718151, 2.043048, -1.311332, -0.624905, 0.541602, -0.586132, 0.052475, 0.893489, -0.804338, -0.387510, -0.573959, 0.315601, 0.773308, -0.885552, 0.293446, -0.242503, -0.928720, -0.503570, 1.100616, -1.032455, -1.628769, -0.042108, -0.019853, -0.738972, 1.366961, 0.563828, 2.640649, 0.596482, -1.137360, 0.175252, -0.620212, -0.723550, 0.990794, 0.247558, -0.301077, 0.123412, -0.056271, 1.653553, -0.858767, -0.307647, 0.265298, -0.185962, 1.363818, -0.879795, -1.478590, -0.074724, 0.360432, 0.065027, -1.610073, 1.111246, -0.347380, 0.204331, 1.221726, -0.312249, -0.874413, 0.803924, 0.064427, 1.105186, -0.748914, -0.746336, 0.929088, -0.905738, 1.343876, -0.001172, 0.136742, 1.934662, 3.150151, -0.798899, 1.362113, 1.041329, 0.455618, 0.315998, -0.696032, 0.192649, -1.044719, 0.255112, 1.092784, -0.944510, 0.159147, -0.273536, 0.712169, 0.058739, -0.919032, -1.069123, 0.013313, 0.900948, -1.179680, 1.123940, 0.220330, 1.129012, 0.701180, -0.015543, 1.395214, 0.369544, 0.642706, -1.249181, 0.212995, 1.179969, 0.054417, -1.589687, 0.399382, -1.726101, 0.472572, 1.800372, -1.357050, -0.079374, 0.799958, -1.312552, -0.513878, 0.233168, 1.161842, -1.094785, 0.369547, 1.714236, -0.263661, -1.507267, 0.353039, -0.578635, -0.277923, 0.021170, -0.362338, 0.948991, -1.368173, 1.647924, -1.472080, -0.016196, -0.177558, -0.394813, 1.957538, -0.055152, -0.145461, 1.200067, 1.367057, 1.641809, -0.644549, 0.641574, 0.285099, -0.664347, 1.010943, 0.465759, 1.716424, 0.565441, -1.163611, -0.212965, 0.205402, 1.288685, 0.530526, 0.671905, -0.105072, -1.135145, -0.064551, -1.107730, 1.725507, -1.657628, 0.856442, -2.391062, -0.957406, -0.404597, -1.017910, 1.564189, 0.684785, -1.019658, 0.290997, 1.904313, -0.993336, -1.105065, -1.515707, -0.548524, -1.175112, -0.298375, -1.049333, 1.031558, 0.427376, -0.823241, -0.563910, -1.435000, 0.515427, -0.049848, 0.991135, 1.500111, 0.186583, 0.553531, 0.581259, 1.233875, 0.802887, 0.572360, 1.375407, -1.157420, 0.125060, 0.461825, 0.596607, 1.534893, 1.574667, 0.271506, -1.427169, 0.046462, -0.176918, 0.061816, -0.506091, -0.678542, -1.339521, 1.100562, 1.344152, -0.960403, -0.278467, -1.062182, -1.314608, -0.011052, -1.245140, -0.276169, 2.021185, 0.563738, -0.644156, -1.064438, 0.624931, 0.584426, -0.563866, 0.340167, 1.762778, 1.371897, 1.419641, -0.907380, 0.035263, 0.097068, 0.939155, -1.656281, 0.127050, -0.703998, 0.493076, 0.685896, 0.665403, 0.595804, 2.588446, 0.155018, -0.284598, -0.522437, 0.766980, 1.138201, -1.230030, 0.110804, 0.060141, -1.352180, -0.899369, 0.682701, 0.305924, 0.096397, -0.445926, 2.199063, -0.672741, 0.040332, 0.146922, 0.401178, 0.858765, 0.697275, -1.060959, 0.126470, 1.377174, 1.253311, -1.261162, 1.564206, 2.271658, 0.988629, 1.844125, -0.992662, 1.350860, 0.164341, 1.293733, 1.618906, 0.630063, -0.816075, 0.280282, 0.051895, -0.640232, -1.150002, -3.080724, -0.498267, -0.470859, -1.315557, 0.340118, 1.018165, 0.140445, 1.129642, 0.498629, 0.541341, 0.644215, -1.644060, -0.098696, 0.828206, -1.067134, -1.844585, -0.608242, 0.611572, -0.388459, -1.041062, -1.412708, -0.134792, -0.122579, -0.757064, 1.132478, 0.215656, 0.062299, 0.876984, 1.311026, 1.174293, -0.069191, 0.178443, -0.324862, 0.029224, -1.075424, 1.200888, -2.571353, -1.002923, 0.230659, -1.446932, 1.008186, 0.533513, -0.221080, -2.187396, 1.087559, -0.015153, -0.092345, 0.994260, -0.225294, 0.505484, 1.089592, -0.491557, -0.284194, 0.708267, -0.169160, -1.178633, -1.179001, 0.271299, 0.929075, 0.639085, 1.777936, -0.830756, 1.033938, -0.061123, -0.992942, -0.598720, 0.944533, -1.956956, 0.543540, -1.295239, -0.562628, -0.802752, -0.072292, -1.135609, -0.037172, -0.272980, -0.324959, -1.248582, 0.649931, 0.406174, -1.289498, 1.782808, -1.622212, -0.382329, 0.236415, -0.331627, 0.403486, 1.419194, -2.588876, -0.527585, -1.034215, 0.211263, 0.372151, 0.812252, 0.104390, 0.624087, 1.089527, 0.432375, 0.739598, -0.970199, 0.594113, 1.093161, -0.288740, -0.160297, 1.437057, -0.148633, 2.567780, 1.011771, -0.828158, -1.201101, 0.989310, -1.629129, -1.165482, 1.246788, 0.935957, 0.027147, -0.675624, -0.177684, -1.424364, 0.624798, 0.155815, -0.380471, 1.182673, 0.928967, -0.958184, 0.911680, -0.014899, -1.926187, 0.682967, 0.605108, -1.637383, -0.374624, -0.500326, -0.181313, 0.422237, 1.006675, -1.134395, 1.219744, 0.655412, -1.245753, -1.365429, 0.387908, 1.050710, -1.071248, -0.380033, -0.587971, 1.110402, 1.065151, -1.454789, 0.582347, 0.662052, -3.565404, -1.196262, -1.132220, -0.227955, -1.347359, -0.734206, -0.138054, -0.082716, 0.568702, 1.673525, -0.124625, 0.473618, 0.713585, 1.139749, -0.045842, -0.827239, -0.577113, -1.674940, 0.223915, 0.076205, -1.002675, -2.001907, 0.420844, 1.228567, 1.433535, -0.180279, -0.159862, -1.109201, -0.349067, 1.075758, -1.765161, 0.061335, -0.002015, -0.519528, 0.266577, 3.075597, -0.982695, 0.626364, -1.309960, 0.933386, 0.260442, -1.596889, -0.332377, -0.856043, -1.780646, 0.949066, 1.224838, 1.253429, 0.581929, -0.976370, 0.691330, 0.942890, -1.146879, 0.973846, -1.096758, 0.571349, 0.353609, -0.553145, 0.220460, 0.184108, 0.217372, -0.264821, -0.595082, 0.080119, 1.349929, 0.027105, -0.027121, 0.054263, -0.982975, 1.446170, 2.331579, -0.759880, 0.853705, -0.432689, 0.476077, -0.995481, -0.768857, -0.180961, -0.228097, 1.353094, 1.048855, 0.979230, -0.047234, 0.850025, -0.503473, -2.035920, -0.313841, -0.547903, 2.376536, 0.734173, 0.339800, -0.380841, 0.264354, 1.214792, 0.935403, 0.270869, -0.477737, 0.250155, 1.353561, -0.521893, 0.990114, -2.849964, 0.108214, -1.129583, -2.077878, -1.281634, -1.994060, -0.167327, -1.245368, -0.722166, 0.044723, 0.276775, -1.719943, -0.173245, -0.295598, 1.996413, -0.646564, 0.345526, -2.659988, -0.253053, 1.581224, -0.810070, -1.273080, 0.115906, 0.304241, 1.065867, 0.925326, 0.310196, 1.217457, -1.108867, -0.425747, 0.040085, 1.439721, -0.502158, 0.486769, -1.126464, 1.885642, -1.185868, 1.393428, -0.405540, 0.761226, -0.377442, 1.831328, -0.374368, 0.934902, 1.483621, -0.407181, 0.332821, 2.564792, -0.588145, -0.616430, 0.441118, 0.762081, 1.253380, 0.526200, 0.001138, 1.033337, 0.457189, 1.456730, 1.011832, -1.610564, -1.335127, 0.538580, -2.329069, 0.334858, 0.306899, -1.379403, -0.874540, 0.895054, -0.173407, 2.950027, 0.971631, -1.451143, 0.453958, -1.714846, 0.168847, -0.295778, -0.621256, -0.682408, -0.349149, -0.207716, -0.506704, -0.909843, 1.437497, -1.492183, 1.342605, 0.979898, 0.123058, 1.993252, 0.736258, 0.167455, 0.346111, 1.255046, -0.426396, 0.415413, -0.925741, 1.198061, -1.563860, -2.812731, -0.427487, 0.808061, -0.399791, -0.636045, -0.166330, 0.506937, -0.195267, 0.802221, 2.710629, 0.351318, -1.696857, 0.102946, -0.332469, -2.173164, 0.574663, 0.286648, 0.332205, 2.505264, -1.407676, -0.248154, -0.074637, -0.372474, -0.168848, 0.551458, -0.436748, -0.785700, -0.615975, -1.463746, 0.618240, 1.172318, 0.719314, -0.706190, 0.619601, 1.672925, -1.006650, 0.291401, -0.403922, 0.185660, 0.628145, 0.289075, -0.540787, -1.473052, 0.662369, 1.942811, -0.976873, 0.791022, -0.468271, -0.722179, 0.887671, 0.462926, 0.168636, -0.111884, 2.179097, 0.006878, -2.150818, 0.979276, -1.293147, -0.074581, 0.711296, -0.122852, 0.877658, -0.044725, -0.557662, 0.917786, -0.568293, -0.333207, 0.618101, 0.920110, -0.218275, -0.960238, 0.446125, 1.195297, 0.892561, -0.543786, -0.476612, -0.332735, -2.045561, 0.525798, -0.488994, -0.511668, 0.766189, 0.320238, 1.192662, -1.408691, -0.199886, -0.453609, 0.476752, 0.387769, 0.349363, 0.512665, 1.072424, 0.202521, -3.094417, 0.978829, 1.320110, -1.099669, 3.760933, -0.868246, 0.970421, -2.039010, 0.128818, 0.614204, 2.883813, 1.009524, -1.260296, 0.323732, -0.288636, -0.039334, -0.331054, 0.466141, -0.019847, 0.315500, 0.946303, -0.701186, 0.208868, 1.905578, 1.813530, -0.406877, 0.756561, -1.263388, 0.526564, 0.905555, -0.134575, 1.493412, -1.782325, 0.455414, 0.169842, 1.062688, 0.125256, -0.137948, -1.418954, 0.563231, 1.467403, -1.734277, -2.149393, 1.765377, -1.069711, 0.250284, 1.955204, 0.056126, -0.578536, 0.495374, -0.581583, -0.634974, 0.237446, 0.718248, 1.093879, 0.026230, -1.528573, 0.203226, -0.559380, 0.896533, -0.830164, -1.336144, 0.985746, 0.755703, 0.336177, -0.652567, -1.192332, -0.262274, -0.816787, 0.801439, -0.620404, -0.129530, 0.975235, 0.592630, -0.184600, 0.575761, 0.726673, -0.565054, 1.453449, 1.685595, 0.032512, 0.389116, -0.248480, -0.622384, 0.729515, 0.628035, 1.294047, -0.715810, 0.566967, 1.540521, 0.390523, -0.589072, 0.273522, 0.746850, -0.958943, -1.404668, 1.155863, -0.061324, -0.094209, -1.279766, 0.620800, -0.373147, 0.749646, -0.374297, -1.341863, -0.732700, -2.753261, 1.004262, -0.388252, -0.961750, 1.525378, -0.700466, -1.034341, -1.490526, 0.761863, -1.286224, -0.509527, -1.837048, 0.730076, -2.229025, -0.965252, -0.992688, -0.624744, -1.930007, -0.703721, -0.157936, -0.878294, 1.383294, -0.851993, -0.486904, -0.819725, 1.408491, 1.992350, 0.330946, 0.065642, -1.090164, 0.312453, -0.671054, -1.732722, 0.386495, 0.360509, -2.479034, 0.738454, 1.864550, -2.404187, -0.840974, 0.016088, 1.276416, 0.224159, -0.558924, 2.318322, -0.500173, -0.007499, 1.157529, 0.408084, 0.558226, 0.391427, -0.894135, 0.374559, -0.246438, -0.794939, -1.658494, 0.198752, 0.150165, -0.733977, 1.360330, -0.422883, -0.825078, 1.249488, -0.503430, 2.928321, -0.970940, -0.238422, 1.105674, 0.268645, -0.757536, -2.832117, 1.159778, -0.680744, 0.545722, -0.618019, 0.426964, 0.659525, -0.364003, -0.557914, 0.128287, -0.885962, 0.746591, 0.220739, -1.686320, 1.409848, -1.198848, 0.414005, -1.289015, 0.039071, 1.442726, 0.119119, -2.721095, -0.255724, 1.155655, 0.450205, 0.959781, -0.548513, -0.159625, 1.268709, -0.402405, -0.584743, -1.953841, -0.358458, -0.063988, 0.321273, -0.633728, -0.635546, -0.645367, -1.162710, -1.873105, -1.761609, 0.400040, 1.024582, 0.535850, -1.133397, 0.185719, 0.049218, -0.851100, -0.349522, 1.882402, 0.508832, 0.378816, 1.768009, -0.615872, 0.188629, 0.418927, 1.611827, 0.846372, -0.649961, -0.576610, -0.109461, 1.213409, -0.444213, -0.402615, 0.002401, 0.017294, 2.214653, -1.525667, 0.533940, -3.034938, -0.460777, -0.608046, 0.830330, 0.175598, 0.913385, -0.988328, -0.213475, -0.911910, 0.298693, 3.005962, -0.212154, 0.444440, -0.473383, -1.745708, 0.960744, 1.191932, -0.420916, 0.621711, 1.021961, -1.601436, 0.918531, 0.139949, 1.481416, -0.061062, 0.053439, -0.519220, 0.871188, 0.513302, 0.266515, 0.853800, -0.881407, -0.290305, 0.743577, 0.601252, 0.549321, -0.445788, -0.355887, 1.400722, -0.672777, 1.057535, -1.233429, 1.094780, 0.965736, -0.310853, -1.678528, 0.619529, 0.793998, 1.398361, -1.662440, 0.856883, -0.448439, -0.494303, -0.231334, 0.405108, 1.856014, -1.669587, 0.095830, 0.240024, -0.081665, 0.703771, -1.326431, 1.203215, -0.540652, 0.586635, 0.405935, -0.129015, 1.709634, -0.594532, 1.196396, -0.810765, -0.898486, -0.071709, 0.274741, 0.522168, 1.036472, 0.283235, -2.342389, -0.718954, -0.724378, 1.057270, 0.040996, 1.079504, 0.155778, -0.543263, 0.488636, 0.835416, 1.129733, 0.045717, 0.769714, -0.689369, 1.411262, 0.053424, -0.320722, 3.737025, 0.334115, -0.546718, -0.401194, -0.093908, -0.627543, 0.441268, -1.078475, -0.099997, 0.791467, -0.549693, 1.726522, -1.363197, 1.009899, 0.470967, -1.025000, -0.039468, -0.063946, 0.809110, -0.131282, 1.050846, 0.236913, 1.290191, -0.414093, -0.196181, 0.161538, 0.000324, -0.512244, 1.178116, 0.559787, -1.255154, 0.012575, -0.182269, 0.481208, 1.452533, 1.996540, 0.237765, -1.373747, 0.694297, 1.338212, 0.056376, -0.643675, 0.089394, 0.658110, 0.801983, 0.654715, -1.295524, 0.649866, -0.185472, 0.883040, -1.665356, 1.524109, 0.993325, -1.131085, -1.507919, 0.027679, -0.431438, -1.304939, -0.597322, 0.875573, -1.776028, -0.806748, 0.365096, 1.099873, -1.329986, -0.409661, -0.611411, 0.584560, -0.425469, -0.192923, 1.074816, 0.410060, -0.075563, 0.451203, -0.304552, 0.856291, -2.022831, -1.491387, -0.794346, -0.054649, 0.162545, 1.042509, -2.013751, -0.948257, 0.661606, -0.650751, -0.457412, 1.092160, -0.289327, 1.670884, -0.861488, -0.591204, -0.187137, -1.193776, 1.215790, 1.147436, 1.071922, -1.774488, -0.675497, 0.020242, 1.699264, -0.011231, -0.333199, -1.276701, -0.412578, -0.221402, 0.494323, 0.297903, 1.705337, -0.953069, 0.622685, 0.502630, -1.629097, 1.255001, 0.994979, 0.401801, -0.034957, -1.494329, -0.275720, 0.354249, 0.694323, 0.841273, -2.125783, 2.278531, 0.315798, -0.107364, 2.079105, 1.692243, 0.612938, -0.893820, 0.543899, -0.892344, 0.675757, -1.231271, 2.586736, 0.082063, 0.256327, 0.137135, 0.696548, -3.044806, 0.485734, 0.511301, 0.835762, 0.972800, 0.772034, 0.160139, 0.321373, 0.923421, 0.472582, -0.154076, 0.207681, -0.660596, -0.222122, -0.435287, -1.143711, -1.292466, 0.259114, -1.448504, -1.483679, -0.457159, -1.510673, 1.513370, -1.326769, 0.093488, -0.485474, -0.224536, -0.119058, 1.135986, 0.571311, 1.076806, 0.064273, -1.800631, -0.070383, 1.340873, 0.022232, -1.405145, 1.304409, -0.175222, 0.700726, -0.313308, 0.301398, 0.025638, 0.412665, 0.110587, 0.451591, 0.923826, -0.219210, 0.211712, 2.477168, -0.085771, -0.427976, 2.043479, -1.397180, 0.010947, -1.855130, 1.131352, -1.571261, -0.176521, -2.018724, -0.402290, -1.580851, -0.310350, -0.410448, -0.332347, -0.899330, 2.239630}, - { 0.215526, 0.409687, 1.090577, 1.284390, -0.443895, -0.714152, 0.315767, 0.888568, 0.661879, -0.378118, 0.491394, 0.381146, -2.141651, 1.659848, 0.274731, -0.042401, 1.469519, -2.239749, -2.884779, 1.371669, -0.242489, 0.618739, -0.570531, 0.812054, 0.403573, -0.736863, -0.607307, 1.559896, -1.401298, -0.096459, -1.228971, 0.525430, 0.029999, 0.888707, 0.318898, -1.716522, -1.438573, 0.131450, -0.207859, -1.537542, 0.437631, -0.964826, 0.942356, -0.485371, 1.239270, -0.705258, -1.657876, 1.358001, -0.981108, 1.574241, -0.239172, 0.025372, -0.591218, 1.421114, 0.276982, -0.741328, -1.946845, -1.316428, 0.098014, -1.208354, 0.949621, 1.258478, -0.917418, 1.090733, -0.434793, 0.209628, 0.087473, 1.699378, 0.677657, 0.290364, 0.487393, 0.359777, 0.168883, 0.157982, 0.116802, 0.430311, -1.595249, -0.242194, 1.038691, -0.121876, 0.342756, -0.134744, -1.266627, 0.429234, 1.108338, 0.844087, -0.793448, -0.595734, 1.908631, 0.023103, 0.224546, -0.467459, 0.203309, -0.487532, 0.327334, -0.172252, -0.097251, 0.722738, 1.358439, -0.625426, 0.551813, -0.885152, -0.036480, -1.561506, 0.969890, 0.314954, 1.270357, -0.908786, 0.626644, -1.183423, 0.495238, 1.294053, 0.262642, 1.773470, 0.739000, 0.604913, 0.249998, -1.579724, 0.131188, -0.421640, -0.661127, 0.194651, -1.287361, -0.727889, 1.336216, 0.567445, -0.242576, -0.834003, -1.084175, 1.338661, -0.289822, -1.501823, -0.225768, 0.803003, 1.277666, -1.051206, 0.718759, 0.773232, -0.344757, -0.589868, 1.761656, -0.386543, -0.485531, 0.284223, 0.317253, 0.080206, 0.680562, -0.561424, -0.307939, 0.399227, -0.571094, -1.235802, -1.406009, -0.195667, 1.482581, 1.638587, 0.210167, 0.806809, 0.654165, 2.281445, 2.721549, -0.397153, 0.152589, -2.169064, 0.073077, 0.398147, -0.826443, -0.444460, 0.887338, 0.744228, 0.689237, 0.515575, -2.476143, -0.847941, 1.280272, 0.949733, -1.523935, -0.862421, -0.595863, 0.373389, 1.517710, -0.122849, 0.533561, 0.304920, 1.962725, -2.324195, -0.536958, -0.710560, 0.847652, -0.075265, 0.630369, -0.847557, -0.275667, 0.589812, -0.088120, 0.184348, 1.373408, -2.342404, 0.590128, 2.212539, -0.748013, 0.286825, -2.621174, -1.965343, 1.485601, -0.775098, -0.737873, 0.177286, 0.724211, -0.484656, 0.665422, 1.447445, -0.304960, 1.784384, 1.218602, 1.531587, 0.290660, 0.338470, -1.146192, 0.130562, 1.913726, 0.841451, -0.896783, -0.061932, 0.196068, 0.985695, -0.285203, -0.919384, 1.206259, -0.824310, -0.594661, 0.368886, 0.279368, -0.724930, 1.702239, -0.165275, 2.310662, -1.160809, -0.654894, -0.973199, -1.714792, 0.106092, 0.362688, -0.501025, -2.444887, 1.329903, 0.425645, 0.547992, -0.594307, 0.619151, 1.220065, 1.261557, 0.529601, 2.124057, -0.890005, -0.578615, 0.843695, -1.269988, 0.911076, -2.132953, 0.944229, 1.238164, 0.877048, -1.880674, -0.302004, 0.237351, 1.398038, 0.648374, -2.184474, -0.817304, 1.594838, -0.492204, 0.963722, -1.084733, -0.491696, -0.541098, -0.539125, -0.840530, 1.209343, 0.024555, 0.377189, -0.804931, 0.750597, -0.505189, 0.838862, -0.732263, 1.575088, -1.572310, 0.303244, 0.875091, -0.013350, 0.384593, -0.192259, 0.027669, 0.324050, 0.141739, 0.773219, -0.507072, -1.411694, 0.716698, -0.605801, -1.219265, -1.373423, 0.696819, -0.549891, -1.106304, -0.468183, 0.829981, 1.125888, 0.514679, 0.389891, -1.035506, 1.626298, 0.479780, 1.553569, -0.139646, -0.039229, -1.672482, 0.332797, 0.658391, 0.248132, -1.151248, 0.183991, 0.592306, 0.118701, -0.731253, -0.957688, -0.444323, 0.087313, 1.254458, 0.024000, 0.311122, -0.023393, 2.856555, -0.444776, 0.351659, -0.126721, -0.370785, 0.172592, -1.251775, 0.019289, 1.744605, 1.730600, 0.573293, 0.526800, -0.545828, 1.191950, -0.450589, -0.464514, 0.787549, 1.442910, 0.633606, 0.266706, -0.729220, 1.059399, -1.269086, -1.980263, -1.133950, 0.766747, 0.808979, 0.507097, -0.321702, 2.328300, -1.054596, -0.840321, 0.446925, 1.644660, 1.123069, 0.084649, -0.628663, 0.251455, 0.321945, -1.282532, 0.472390, -0.221070, -0.925060, 0.517071, -1.907875, 0.977885, 0.046137, 0.198761, 0.655464, 1.650469, 0.526895, 0.333946, -1.207398, -0.354559, 2.111474, -1.124213, 0.569844, 0.791649, -0.349399, 0.013586, 0.423925, -0.285861, -0.776608, 0.392645, -1.757199, -2.091754, -1.639829, -0.687267, -1.510223, 0.562150, -0.586711, -0.255652, -1.218108, 0.820028, -0.149810, -0.264409, -1.614063, -0.788424, 0.319706, 2.455064, 1.815266, 1.791533, 0.056187, 0.504798, 0.696144, -0.760468, -0.580104, 0.379410, 0.008530, 0.024751, -1.494168, -0.630858, 0.184618, 1.128394, 0.975188, 0.484422, 1.461507, 0.580571, 0.383921, -0.208277, 1.209061, 1.441022, 0.824912, -1.184958, -1.296562, 1.095398, -0.084726, 1.096537, 0.952094, -0.967616, -0.210287, -1.315215, -0.178997, -0.717847, -0.414805, 0.382811, 0.643747, 0.770611, 0.447813, -1.089983, -0.817322, -0.265966, 1.426679, -0.320748, 0.124349, -0.274980, -0.327261, 0.168765, 1.875293, 0.108007, 2.061271, 0.367762, 0.048799, 0.280124, -0.985575, -0.391178, -1.255338, -0.245916, 1.342777, -0.006230, 0.748332, -0.630073, 0.391469, -1.078841, -0.750995, 0.017830, -0.424541, 2.703267, -0.801087, -0.007799, -0.928106, -0.764780, -1.052843, -1.950055, -0.977156, 0.597246, -1.323303, 2.779191, -0.043662, 0.741630, -2.045099, 1.160139, -0.043264, -0.232956, 0.460806, 1.174063, 1.328879, -0.746572, 1.134981, -0.242134, 0.046758, -0.292247, -1.137849, -1.321586, -1.608515, 0.344015, 1.348575, 0.528033, -0.734853, -0.152848, 0.505122, 0.645917, -1.228281, -2.010693, 0.610686, -1.266320, 0.201763, -0.250365, 0.094915, -0.186679, 1.469444, -1.496231, -0.522801, 2.402463, 0.567516, -0.009150, -0.523192, -0.444408, -0.210184, 0.608853, -0.243902, -1.027415, 2.256664, 0.225927, -0.409782, 1.603983, 0.639988, -1.444623, 1.215515, 0.370909, -2.659801, -0.133965, 1.211606, -0.552721, -2.004376, -0.534112, 0.948225, 1.533206, -0.109470, 1.053581, -1.558025, 1.001784, 1.315789, -1.869034, -0.464723, -0.514585, -1.475670, -0.390842, -0.800514, 1.035593, -0.453677, -0.693146, -0.300582, 0.286678, -1.212606, 0.506452, -1.257111, -0.257762, -1.685929, -0.605514, -0.165717, 2.056473, 0.690541, 1.117693, -0.116535, 1.341526, 0.081507, -0.847239, 0.870075, 0.125081, 2.057704, -0.471227, -1.446838, -0.323346, 1.169628, -1.865229, 0.109203, 0.897338, 1.013952, -0.790778, -1.430827, -0.089008, 1.125302, 0.885649, -0.622544, -1.191232, 1.171044, -0.293059, -0.953648, -1.724933, 1.667446, 0.117274, 0.580746, -1.088211, 0.400539, 1.989319, -1.089085, -1.721010, -0.454090, -2.126140, 1.762848, -0.044468, 0.730620, -1.003890, -0.133218, 0.923187, -0.275271, 0.955659, 0.762678, -0.617991, -0.502057, -0.330033, 1.109693, -0.405314, 0.941613, 0.297915, -0.316818, -0.334987, -2.128098, 0.760758, -2.404556, 0.694712, 1.006909, -0.806457, 0.429200, -0.135113, -0.428558, -2.391591, 0.520649, -0.134281, -0.552818, -0.590171, 0.959968, -0.347834, -1.641266, -0.315221, 0.238038, 0.642173, 1.702436, 0.503674, -1.460577, 2.077308, -1.210378, 0.648018, 0.219434, -0.387740, -0.045143, -0.255279, 2.180543, 0.392957, 0.606058, 0.042986, -0.133739, 0.079767, 0.728225, -0.369480, 1.990511, 1.951053, -1.796045, -0.437872, 0.220161, 2.258023, 1.164245, -0.964507, 0.327755, 0.586533, -0.321083, -1.278273, 0.038869, 0.979405, -0.196651, 1.142382, 1.647521, -0.512052, 0.032099, -1.014324, 1.763835, 0.554408, 0.773176, -0.877646, -0.202161, 0.168884, -0.805045, 1.684020, -0.113639, 0.968029, 0.193183, 1.008574, -0.881452, 0.533242, -1.502287, 0.874110, -2.268507, 0.039742, 0.178377, 1.938643, -0.483449, -0.424959, 0.262304, -0.063234, 1.110842, 0.909550, -1.274071, -0.384946, -1.642151, -0.370299, -0.395374, -0.432394, 0.026096, -0.297272, -0.492284, -1.172588, 0.242709, -0.671642, -2.635369, 0.065189, -0.924473, -0.461338, 1.017893, -0.288359, -0.381257, 1.757639, -1.244236, -1.955964, -1.094910, -0.863250, 2.525353, -0.847405, 0.157933, -2.216475, -0.229354, -1.765684, -0.286490, 1.390844, 0.448352, -0.123708, 1.667295, -0.224747, -0.290958, 0.127682, -0.431860, -1.520321, -0.855510, -0.098453, 0.707583, -1.565375, -0.592337, 0.717365, 1.006152, -0.285100, 1.055439, -1.208744, 1.158231, -0.102353, 1.110858, -1.680240, -1.241536, -0.090199, -0.535791, -1.232482, 0.333296, 0.792687, 0.258559, -0.808445, 0.017835, -0.458580, -0.993009, 0.016877, -1.052566, -0.180243, -0.274847, 0.249871, 0.854491, -0.542793, 1.281983, 0.060651, 0.882659, -0.972052, 0.368850, -1.472626, -1.398788, 0.569506, 0.135378, 0.661532, 0.960308, 0.346836, 1.322929, -0.769475, -0.946452, -0.137453, -0.255544, 0.345758, 0.054648, 0.768222, 1.321258, 2.193244, 0.157683, -2.097032, -0.308244, 0.994474, -1.465687, -0.816525, -0.059932, -0.910100, -0.924102, -2.501485, -2.023931, -0.089502, 0.118357, -0.642399, -0.459127, -1.448807, -1.331231, -2.319405, -0.672232, 1.675503, 0.414436, 0.475847, 0.342908, 1.383391, 1.022649, 0.259385, -1.300424, 0.032352, -0.361868, -0.401489, -0.561796, 0.891509, -1.144855, -0.203157, -1.069639, -0.026518, -0.032882, 0.202650, -0.021077, 0.332323, 0.202566, -0.996003, -0.143474, -1.708193, -1.178839, -0.677753, 0.770777, -2.808321, -1.723194, -1.114263, 0.935693, -0.756451, 1.096376, 0.115079, -1.848553, -0.311637, 1.057739, 0.285823, -1.033255, 2.255218, 1.166718, -1.921084, 0.445740, -0.969527, -0.283456, -0.519922, -0.768153, 1.191599, -0.608625, -1.323167, 1.197788, -1.339941, -1.580676, 0.389420, -0.081545, -0.163071, 0.856741, -1.025109, 0.034694, -0.623315, -0.426157, -1.430034, 0.517623, 0.069557, -0.803295, 1.232607, 0.937826, -1.197361, 1.051320, 0.111778, -0.001501, -0.599958, 1.131125, -0.683545, 0.582016, 0.372488, 0.064898, 0.448231, -1.881346, -1.385846, 0.358479, 1.215059, 0.423351, -0.412440, 1.577109, -1.023484, -0.658138, 1.277607, -0.218418, 0.806153, -0.437055, -1.515893, -0.800413, 1.738311, -1.632171, 1.488078, -1.186968, 0.798200, -1.494786, -0.826610, 0.432156, -1.376811, -0.194391, -1.111517, -0.997802, -1.341224, 1.130931, -1.788718, -0.361256, -0.516990, -0.858377, -0.382740, -0.352580, 1.519040, -2.463658, -0.688308, -0.500208, -0.705716, 0.526880, -0.007087, 1.155106, 1.236264, 0.501416, -1.005087, -0.556965, -3.246709, -1.401517, -0.091952, -0.742592, -0.322930, 0.353769, 1.162223, 0.061415, 0.614157, -1.296113, 0.641029, -2.000750, 0.457017, -0.621151, -0.373225, -0.300704, 1.588292, -0.164885, 1.343357, 0.823190, -1.586133, -1.329151, -1.388770, 1.012856, 0.048738, -2.252189, 1.230156, 0.245486, -1.433923, -0.781839, 0.525623, -0.216360, 1.378616, 1.474120, 0.324505, 0.432831, -0.478019, 0.361902, -0.879731, -0.702594, 0.918976, 0.264621, 1.413158, -0.081483, -1.573399, 1.158298, -0.551471, 1.253169, -0.185677, -0.107998, 0.770443, -0.376316, -0.838529, 0.433162, 0.026594, 2.466477, -0.003319, 0.571013, 0.252861, -1.138378, -0.053517, 1.686115, -0.398142, -0.788622, -2.212894, -2.485452, 0.163717, 1.372369, -0.156663, -0.817710, 0.134928, -0.288723, 1.579318, 0.862981, 1.475901, 0.642998, 1.942027, -0.247006, -0.209726, -0.565866, 0.746501, -2.180773, 1.830703, -0.735790, -0.687317, 0.151874, -0.892058, -0.625031, -0.073330, 0.457156, 0.604909, -0.573194, 0.296077, -0.817185, 0.086462, -0.067895, -0.039239, 2.036558, 0.659676, -1.750774, -1.657719, -0.342077, 0.828040, -0.218217, 0.341273, 0.768648, 1.638704, 0.480082, 0.163326, -1.009666, 1.127986, 1.652022, -0.926505, -0.415893, -0.502100, -1.487358, 0.943948, -0.582394, -0.006399, 0.020851, -1.035298, -0.025250, -0.273905, -0.808316, -0.896657, -0.594424, 0.132331, 1.214450, 0.955524, -0.028458, 0.700578, 1.578847, -0.248341, -0.043361, -0.744196, 0.491708, 0.451855, 0.486870, -0.183737, 0.219905, -1.143850, 1.566988, -0.071987, -0.700852, 0.477891, -0.071482, -0.636200, -0.393090, -0.694712, 0.521038, -0.210377, -0.820508, 0.749455, 0.400095, -1.316975, 0.195551, -0.060133, 1.725454, -0.509454, -0.189660, 0.015514, 0.513824, -1.241690, -0.139606, -0.389594, -0.521856, 0.659106, 0.091151, -0.063307, -0.926116, -1.067691, 1.094069, -1.472976, -1.206515, -0.652420, -0.645442, 0.882400, 0.509408, -0.268381, -2.229294, -0.013026, -0.250545, 0.587841, 0.598210, 1.030295, 0.203128, -0.074070, 0.148443, -0.255762, -1.353261, 0.259660, 0.109063, -0.834556, -1.678485, -0.081257, 1.847502, -0.793448, -0.671264, -0.609430, -0.225229, 1.194668, -2.142647, -0.301831, 0.144198, -0.286981, -0.227017, 1.146484, 0.969552, 0.444497, -1.499727, 1.202141, 1.892412, 1.057104, 0.069021, 1.010058, -0.056464, 2.582227, 1.587931, 1.066392, 0.075603, -0.926556, -0.503028, 0.613689, 0.759321, 0.040764, 0.152003, 0.645159, -0.580707, -0.392102, -0.124450, 0.785647, 0.361350, 0.147895, 1.394039, 0.194579, 0.307239, 0.383617, 0.758921, 0.414603, 0.165687, -0.584064, 1.170731, 0.405003, 0.685907, 2.390799, -0.868503, -0.098989, -1.712308, 1.194371, -0.048315, 0.614916, -0.489928, 0.346802, 1.451657, 1.975864, -0.800130, 2.121416, -0.307172, -0.824498, 1.686137, 0.549244, 0.379609, 0.442180, 0.373309, 1.043499, -0.021378, 1.379571, 0.000267, -0.451712, -0.351838, -0.866344, 0.819697, 0.122006, 1.096637, 2.056359, -0.362726, 0.191419, 0.870262, -1.457161, 0.248544, 0.855738, -0.012741, 1.478993, 0.184996, 1.234769, 2.167047, -0.939672, 0.602766, 0.934562, -0.014570, -1.999102, -3.062107, 0.836055, 0.041882, -0.437758, -0.484503, 0.994074, 0.697129, -0.443108, 0.162213, 0.325198, 0.124355, -0.460723, 0.339314, 0.134089, 1.551752, -0.095550, -0.063724, -0.015791, -0.276509, 0.052369, 2.603693, 0.670819, 0.655814, 0.082338, 1.764855, -1.679282, 2.586894, 0.418570, 1.323765, -0.046842, -1.016706, -1.532464, -3.083884, 0.880264, 0.985276, -1.691294, 0.490612, -0.864165, -0.677113, -0.030039, 1.048128, 0.669624, -0.913215, -0.499514, 0.615481, -2.045200, -0.076723, 0.655092, 0.669336, -0.884637, -1.511737, 2.484194, 0.248792, 1.828093, -1.529002, 0.489484, 0.176503, 0.282867, -0.353277, -1.530048, -0.754777, 0.889164, 1.411853, 0.733316, -0.997560, -0.118776, -1.831560, -0.293512, 0.567134, -1.239579, 0.092686, -0.383221, 1.106445, -2.029706, 1.227761, -0.065230, -0.070819, 0.063700, -1.545889, -0.609804, 0.103543, -0.361434, -1.413659, -0.792959, 0.693514, 0.204043, -1.018965, 0.333156, -0.692810, -0.177673, 1.074405, 0.931773, 0.178869, -0.026446, 0.292933, 0.125466, -0.383934, -2.292668, 1.262278, 0.587652, 1.168831, -0.529552, 0.420525, -0.244645, -1.461413, -0.232143, -0.854636, 0.691233, 1.143959, -0.345770, -0.760621, 0.896223, 1.021508, 2.118889, 0.235334, 0.752007, 1.085539, 1.505048, -0.239947, -0.429589, 1.805496, -0.850099, 0.039863, 0.277523, 0.308294, 0.507762, -0.124795, 0.228292, 0.589119, -0.626600, 0.302390, 1.000681, -1.110624, 0.011245, 0.555126, -0.124923, -1.315564, -0.803948, 0.754076, 1.209961, -0.748276, -1.142321, -1.109545, 1.134664, -0.691139, -0.821681, 0.369507, 0.335223, 0.920039, -1.395745, -0.081197, -0.135818, 0.670715, -0.300580, -0.293027, -0.335465, 0.772664, 0.520559, 0.442321, -0.467094, -2.086877, -1.358403, -0.736647, -0.826193, -0.599340, -0.709136, -0.131113, -0.926805, 0.235563, -0.101005, 2.132939, -1.129712, 0.961447, -0.070056, 0.975534, -0.728768, -0.292780, 0.193257, -0.754030, -0.965858, -1.042966, -0.358241, 0.471086, -1.460669, 0.659803, 2.253143, 0.136926, -0.747529, 1.854699, 0.634318, 0.783782, -0.223771, -0.983902, -0.280566, 2.059870, -0.477349, -0.925735, 1.333361, 1.089206, 0.010783, -1.390652, -0.381102, 0.647599, -1.066928, 0.034040, -0.736709, -0.951869, 0.626464, -1.797066, 1.115187, 0.249182, 0.081012, 0.169224, 1.151347, 2.275723, -1.046090, -0.341469, 0.348073, 1.847364, 0.050262, -0.833690, -0.127317, -0.057094, -0.859533, -0.121262, -1.323238, -1.576253, -0.441365, 0.459771, -0.655628, 1.179278, -0.022809, 0.184701, -2.242171, -0.907094, 0.489172, 0.067545, -0.780055, -2.549345, 0.184071, -0.491682, 0.223546, -0.783855, 0.201982, -0.637991, -0.876240, 1.252950, 0.871007, 0.957187, -1.346993, -0.005290, 0.312164, -1.137911, 0.163860, 0.103693, -1.206473, 0.009878, -0.560544, -0.699462, -0.431874, 2.119383, 1.884245, -0.310283, -0.239128, 0.773550, -0.809804, 0.022359, -0.339350, -0.951088, 0.013271, 0.843047, -0.568087, 1.865957, 0.420166, -1.683779, 0.119009, -1.618859, -0.010193, 0.718180, -0.323054, 1.349273, -1.210256, -1.202170, 1.161680, -0.070676, -0.455043, -0.452460, -0.077578, -2.125447, -1.221543, 1.133323, 1.134496, 1.269879, -0.660881, -0.708263, -2.589172, 0.003032, 1.374543, -0.291193, -0.763558, 2.049241, -1.635722, 0.826477, -1.069943, -0.385124, -0.390756, 0.021900, -0.150958, -0.081160, -0.250842, -0.232988, -0.769619, -1.206194, 0.849727, -1.970435, 0.130768, -0.255192, 1.358436, 0.241943, -1.576258, 0.766893, 0.069999, 0.111474, 0.972710, -0.098071, 0.070465, 2.133102, 1.403134, 0.416877, -1.710649, 0.693160, -1.163625, 0.838613, 0.289775, 0.417074, -1.815509, -0.825076, 0.150734, 0.899996, -0.032763, 0.698843, -1.519382, 1.281217, 0.477165, 0.407152, -0.779808, -0.087592, 0.376436, -0.467222, -0.168517, -2.635919, -0.443967, 1.371368, -1.887900, 1.305160, 0.873235, 0.562571, -0.092908, -0.487836, 0.110391, -0.569558, -0.002502, 0.526793, -0.248105, 1.168055, -0.698943, 0.513245, 0.728842, 0.937866, -0.917170, -1.378272, 0.036771, 1.026837, 1.016515, -0.501218, -0.383180, -0.477574, 0.668696, -0.017425, -0.826452, 0.152596, -0.647734, 0.356314, 1.151152, 0.346476, -0.929904, -0.770230, 0.171785, 0.825979, 0.835939, -0.077715, -2.662733, 1.606701, -1.052464, 0.925932, -0.317228, 0.371747, -0.668617, -0.889411, -1.118494, 1.404940, 0.321819, -0.989746, 0.355479, -0.969718, -0.282688, 0.354737, 0.996871, -1.775097, 1.196968, 0.175402, -0.196606, 0.720390, -0.564264, -0.199813, 0.830804, -0.718857, -1.115281, -0.367434, -0.590242, -0.884453, -1.167186, 0.362664, 1.193130, -0.134935, 0.040016, 0.471594, -0.029202, -0.079935, 0.470370, 0.773220, -0.944670, 0.011659, -1.037966, -0.355533, -0.245826, -1.105482, -0.393431, -0.685624, -0.447764, 1.314059, 0.583516, 0.863686, 2.407028, 1.963878, 1.249560, -0.603713, 0.136930, -1.960294, 0.764152, -1.764827, 1.600102, 1.402238, -1.930404, -2.069935, -0.323020, 1.434861, -0.024505, 1.639371, -0.869789, 1.477323, 1.135863, -0.275957, -1.427724, -0.474597, -0.697166, 0.031444, -0.182610, 0.580252, 1.378908, -0.592142, -1.013766, 0.708260, -0.411173, -1.669188, 0.214352, 0.530379, 0.384734, -0.467388, 0.152544, -1.126870, 0.751713, 0.825835, -0.856399, -0.349525, 0.596411, 0.209471, 1.048846, 2.011240, 0.869305, 1.688344, 0.481364, -0.674637, 1.655523, -0.504955, 1.375414, -0.899070, 0.921803, 0.668855, -0.575212, -1.217952, -0.684426, 0.776293, 0.655341, -0.178579, 0.254072, 0.642273, 1.294120, -0.456202, -2.401520, -0.570037, -0.284565, 0.925649, -0.328716, -0.477087, 0.555397, -0.898981, -1.219818, 1.142041, -0.992577, 0.963866, 0.745103, -0.917099, -0.803860, -0.425954, -1.770569, 0.821092, 0.023804, 1.394199, 0.062054, 0.293096, -1.161723, 0.553333, -0.382304, 0.651286, 0.051147, -0.910003, 0.716218, 0.986469, -0.406245, 1.451947, 0.642835, 1.089073, 0.034317, -1.462316, -1.143331, -0.237661, -0.208912, 0.305806, 1.452965, -0.879447, 0.729194, -0.606299, -0.608398, -0.595802, -0.578015, -0.962638, -0.155991, 0.036153, 0.041575, -1.836295, -1.002044, -0.932044, -1.943924, 1.097203, 0.500498, 0.260159, 0.262574, 0.054241, 1.267477, 0.629421, 0.157334, -0.170415, -0.711940, 1.492200, 1.699990, 0.100161, 0.092665, 0.045178, -0.167723, -2.228888, 0.690801, 3.178783, -0.471750, 0.979191, -0.091581, 0.878568, 1.013884, -1.499635, 0.190814, -0.523611, 0.574730, -0.228934, -0.612265, -1.111084, 1.006232, 0.168245, -1.586754, -0.198956, 1.359465, -1.532432, -0.020501, 0.444119, -1.031989, 1.943666, 0.915422, -0.528047, -1.319455, 1.476458, -0.114648, 0.260942, -0.290624, -1.365153, 1.220013, 1.739173, -0.884591, -0.311935, 0.895139, 2.124000, 0.809081, 0.122250, 0.900173, -1.107341, -0.382639, -0.868294, 0.267172, -0.193652, 1.249253, 1.334527, 1.212083, 1.424260, 0.238047, -1.102748, -1.130090, 1.109188, 1.292264, 1.105654, -0.646433, 0.206001, 0.448993, -0.848331, 0.227715, 0.255743, -0.994256, -0.586690, 0.332206, -0.060952, 0.237096, 0.153788, 0.039904, 0.013875, 0.935502, 0.797832, -1.658050, -0.004258, -0.599840, 0.907895, 2.584532, 0.226527, 1.493728, 0.859255, 1.742152, 0.198928, 0.715648, 0.621666, 0.167731, -1.255455, -0.083675, -0.316686, 0.409321, 0.670470, -0.658500, 0.683854, -0.118325, -0.397763, 0.243729, -0.724450, 0.027943, 1.225274, 0.390489, 0.114298, -0.628702, -0.727040, 1.297067, -0.452637, -1.055542, 0.357361, -0.341779, 1.232228, -2.378134, -0.676153, -0.651552, -0.583518, 0.580130, -0.627089, -0.518449, -1.272684, -0.480655, -0.851650, 0.923456, 0.047600, -0.311547, 0.542470, -1.479399, 0.502507, -1.252304, -1.736591, 0.510541, 0.849439, -0.175782, 2.194941, 0.420460, -0.330983, -1.207235, 0.348202, -0.761330, 0.535848, -0.622559, 0.504933, 0.707736, 0.228179, -0.596705, 0.145535, 0.064016, -0.239805, -0.869842, 0.505505, -0.819694, 1.017025, -1.457328, -0.388074, -1.254925, 1.345761, 1.075628, 1.126306, 1.318628, 0.517584, 0.583347, 0.119370, 1.084038, -0.536976, 0.932438, -1.333803, 0.780143, -1.716030, -0.746357, 0.569783, 0.690122, 0.624560, 0.288446, -0.357612, 0.275874, -0.231410, 1.159869, -0.232078, -1.045614, 0.326911, 0.010868, -0.261499, 0.588526, -0.455283, 0.834353, -0.322870, -0.520326, -1.866695, -1.389329, 0.785433, -1.594460, -0.224048, -0.645424, 0.152975, -1.531449, 0.025476, -0.456286, 0.615203, 0.446318, 1.364365, -1.190657, 0.297397, -0.327780, 0.601037, 0.204353, 0.921812, 0.623565, -1.373476, -0.205644, 1.579392, -1.848161, -0.224851, -0.240060, 0.298799, 1.583137, -1.163625, -0.644821, 1.342111, 0.240797, 0.155692, -0.042242, -0.099019, 0.363295, -0.903435, -0.763621, -1.219778, -0.002932, -0.004644, 0.511764, 1.010026, 1.182569, 1.839652, -0.883435, 0.699895, -0.753271, 1.210875, 0.313228, -1.005221, -0.009763, 1.319516, 0.271890, -1.649399, -1.554593, 1.078896, -0.584072, 0.719301, -0.049780, -0.411100, 0.581009, 0.588794, 1.255456, 0.211355, -0.295650, -0.832455, -1.573096, 0.479604, 0.593566, -0.007378, 0.561407, 0.174641, -0.601172, -1.420507, 0.396548, 1.086147, 1.227184, -0.969450, -1.034578, -1.328464, -0.701328, 0.948463, -0.536291, 0.741851, -0.646355, 1.021293, 0.014685, -0.468256, -0.762503, -0.521679, 2.090613, -0.627514, 0.044559, -0.660399, -0.050978, 0.520121, -1.608869, 0.466022, 0.774560, -0.084939, -0.237280, -0.817611, 0.097433, 1.780326, -0.042369, 0.218104, -1.924261, -2.453564, -0.783244, -0.609415, -0.691479, -0.432772, 0.127424, -0.118426, 0.230674, 0.376825, -0.240952, -1.366481, -0.558497, 1.531982, 0.312676, 0.872276, 0.812003, 0.112635, -0.250098, 0.911172, 0.334255, -0.140110, 1.243345, -0.042916, -1.327921, -1.005275, -1.759005, -0.409960, -1.298047, -0.212342, -1.939041, -1.371567, 1.240323, -0.156768, -0.030067, -0.892907, -1.637912, 0.947901, -0.893309, 0.944868, 0.061281, -1.313328, -0.273755, -1.008788, -0.189900, -1.112637, 1.055042, -0.251166, 0.300634, 1.076443, 0.216106, -0.979619, -0.943813, 1.527772, -1.776765, -0.572363, 1.575817, -0.354269, -0.366452, 2.317779, 1.963819, 0.438990, -0.009267, 0.752277, 0.294481, -0.475410, -0.126440, 0.520476, 0.872037, 0.102665, 0.550963, -1.597754, -0.239744, 0.536493, -0.059908, 1.464155, -0.365598, 2.081636, 1.046194, -0.697959, 1.316137, -0.207011, -1.426455, -0.066890, -1.811115, -2.248960, 0.495439, -0.862826, -1.048286, 0.016982, 0.857296, -0.655038, 0.430638, -1.224254, -0.292219, 0.236193, -0.227442, 0.068886, -0.176626, -1.211392, -0.686670, -1.399701, -0.317798, -0.041195, -0.415086, 0.215100, 0.253729, 0.984783, -0.892666, -0.670144, 0.636513, -0.651808, 0.239026, 1.166360, 0.195195, 0.065416, 0.457298, 0.256362, 0.373982, -1.019415, -0.482686, -0.733508, -1.427073, -0.351301, -0.015488, -0.454394, -0.555732, 0.693100, 1.045300, 0.251824, -2.150941, -0.408488, -1.130578, 0.132782, -1.222120, 0.145286, 1.414029, 1.586272, 1.149507, 0.916164, 1.288986, -1.145974, -0.569088, 1.095419, -0.108150, -0.174729, 1.512104, -0.006734, -0.869491, 0.895498, -0.811957, -0.217575, 1.637164, -1.634348, 0.620743, 0.888118, 1.892549, 0.773420, 0.598146, -1.852917, -1.056665, -1.662740, 0.255003, 0.310103, -0.644412, 1.604974, 1.427575, 0.130699, -1.869343, 0.854463, -0.653925, 0.555020, -0.130678, -0.122508, -0.965340, 1.138242, 0.024706, -0.413502, -0.977291, -1.410377, -0.644195, -0.360841, 0.596111, 1.242855, -0.714326, -1.001468, -0.624330, 1.584285, -0.261695, -0.186246, -1.561328, -1.339776, 0.498851, -0.705343, -1.252191, -1.015443, -0.339083, 1.125707, 0.860839, -0.456129, 1.127978, -0.093683, -0.853182, 0.271991, 1.544041, 0.385966, -0.552438, -0.826700, 0.039950, 0.486117, -0.055656, -0.508313, -0.386223, -1.781433, 0.941494, -0.592670, -0.732907, -0.981484, -0.978035, -0.044344, 1.359935, 1.122442, 1.061323, -0.056971, -0.746469, 0.945427, 0.582139, -1.849123, 0.024323, -0.679553, 1.661885, -0.673908, 0.333670, -1.303043, -0.697432, -1.543814, 0.755402, -0.732005, -0.609869, 0.024949, 0.197553, 1.185196, 0.069908, 2.070246, 1.600696, -0.395498, 1.830148, 0.428590, -0.269128, 0.252366, 0.189775, -0.288149, 0.329578, -2.089698, -0.137646, -1.531805, 1.486898, -0.571482, 1.388253, -0.864255, -0.232366, -0.501235, 0.968501, 0.476637, 1.052884, 0.619504, -0.327639, 2.021117, 0.823085, -0.813734, -1.443214, -0.476092, 0.474827, -1.032771, 0.716678, -0.279465, 0.156513, 0.040222, -0.278429, -0.817530, 0.302085, 0.012087, 0.759180, 1.162755, 0.725857, 0.861115, 1.809386, 0.189444, -0.862537, -2.019403, 1.737620, 2.273687, -0.471675, 1.257850, -0.333957, 1.050470, 1.073569, -0.368401, 0.574880, 0.218980, 0.881007, 0.205540, 0.417014, -1.045070, 0.405112, 1.143455, -0.851155, 0.163187, -0.713153, -0.824800, -0.677649, 0.419207, -0.044194, 0.904325, 0.361816, 1.237960, -0.084671, -0.457539, 2.137868, -0.651512, 0.119583, 0.095580, -0.706505, 0.672408, 0.034789, -0.202316, -0.293749, 0.814040, -0.176213, 1.163455, -1.395970, -1.259473, -0.360192, -0.872294, -1.320841, -0.586296, -1.679480, 0.070189, -1.681707, 2.148804, 1.263430, -0.997677, 0.892254, -0.582487, 0.119697, 0.408570, 0.337620, -0.034242, -0.135178, 0.468472, -0.150095, 0.179880, -0.393807, -0.298719, -0.893199, 0.097906, 1.704552, -0.106102, -1.682609, -0.001165, -0.871014, 0.676982, -0.057556, 0.350105, 1.229497, -1.660906, -0.284743, -0.785707, 0.996753, 0.027921, 0.366087, 1.697635, 0.920058, 1.003479, 0.940503, 0.492025, 0.520869, 0.274150, -0.539325, -1.139099, -0.568214, 0.291964, 0.516073, -0.994434, 0.117096, -0.739131, 0.273728, -0.043684, 0.473670, 0.123353, -0.835332, 1.952643, 0.461936, 0.756102, 1.131996, -2.325601, 0.144159, -0.210208, 0.650898, 0.115322, -1.121759, 0.496250, -1.309874, 0.719618, 0.939504, -0.689501, 0.325573, -0.019311, -1.463487, 0.426812, -0.656452, 0.620304, -0.214105, -0.791543, 0.639607, -0.579832, 1.511132, -1.921710, -0.667541, -0.232645, 0.233391, 1.506898, 0.044548, 1.492787, -0.011968, -0.735064, 0.528656, -1.058878, -1.420150, 0.281208, -0.911660, -2.482220, -0.309171, 0.466939, 1.435056, -2.126456, -0.711082, -0.647985, 0.736647, -0.819562, -2.065506, 0.290806, 1.071992, -1.302422, 0.201957, 0.403350, 0.930369, 1.994595, -1.094654, -1.168588, 0.590359, -0.815489, 0.874194, 0.273626, 0.440372, -0.333655, -1.022662, 0.458211, -1.093762, 0.966380, 0.216216, -0.304417, 0.862420, -0.035982, -0.677469, 0.414306, 0.140019, 0.991254, -0.586161, -0.302892, 0.136783, -0.455145, -1.316959, 0.450435, -0.917744, 1.279734, 0.010010, -0.449727, -0.158288, 0.277216, -1.380270, -0.705990, 1.898329, 1.633801, 0.797343, 0.333826, -0.916517, -0.343819, -1.941551, -2.659954, 0.899938, 1.646713, 0.240902, 0.930502, 1.896860, 0.822185, 0.376799, -1.321127, -0.177624, 0.442824, 0.168674, 0.181087, 0.910120, 0.716105, 0.176247, 0.523385, -1.585621, -2.269039, 1.365178, -0.000903, 0.439503, 0.823428, 0.105879, -0.319020, -1.256909, -0.091339, 0.470377, 1.826246, 1.049592, 1.058657, 1.147809, 0.005518, -0.229537, 0.751820, -0.600997, -0.475272, 0.040907, 0.940435, 1.010874, 0.172369, -0.338131, -0.002675, -1.900991, -0.249206, -0.061160, 2.119178, -0.562272, 1.355101, -0.153558, -0.173012, 0.629839, -0.287610, 1.092384, 2.102783, -0.240033, 1.108734, -0.414165, 0.521104, 1.469408, -1.506161, -1.031272, -0.820187, -0.470265, -0.251875, -1.109841, 0.575056, 0.753598, -0.682367, 0.761866, -1.722160, -0.186837, -0.678390, 0.411942, 1.241272, 0.055214, 0.008162, 2.022293, -0.855282, 1.381054, 0.932051, -2.634721, -1.812392, -0.629672, 0.906354, 0.131617, -0.219392, 0.436579, -0.575038, -0.449251, -0.099989, 0.980274, 0.816991, 0.993293, -0.150170, 0.700800, 1.470074, -2.663074, -1.169814, -0.214794, -1.351583, 0.119720, -0.308005, -1.755427, 1.405712, 1.739113, -1.767692, -0.761572, -0.996369, 1.599346, 2.062212, 0.998300, 0.465828, -1.459449, -1.149142, -0.495526, 1.057950, 0.409852, -1.400118, -0.108800, -1.567302, -0.448069, 1.259582, -0.509495, -0.211012, -0.791084, -0.664852, 0.482233, 0.364763, -0.332307, 0.778693, -1.105056, -0.193468, -1.587775, -0.516265, -1.775565, 0.442435, -0.592751, 0.358167, 2.195438, 0.945585, 0.922516, 0.655586, -1.268811, 0.704422, -0.826508, -0.408747, -0.613750, 1.005483, -1.348624, -1.602620, 0.245705, 0.908893, -0.437051, 1.016272, -0.014419, -0.672794, -1.119709, -0.666124, -0.878984, 1.375063, -0.313656, -0.363759, 0.405344, 0.106491, 0.546738, -0.257917, 0.175730, -1.764664, 0.182478, 0.515303, -0.785181, 1.763464, -2.880225, -0.980999, -0.938217, -1.212937, 1.281045, -1.720786, -0.457808, 0.144417, -0.550054, -0.191556, 2.251851, 1.513575, -2.429590, 0.101762, -3.759408, 1.280609, -0.539650, 0.135571, -0.548838, -0.225000, -1.078143, 1.464744, 0.404280, -2.346449, -0.783903, 1.049154, 1.820471, -2.347962, 0.573997, -0.555419, 0.507236, -0.154260, 0.434660, -0.871840, 2.120586, -1.256035, -0.017529, -0.559575, 0.421102, 0.585003, 0.585159, 0.908434, 0.514332, -1.128788, 0.401680, -1.013912, 1.067575, -1.516495, 0.169177, -0.097426, 0.192956, -0.718959, 0.582367, 1.360153, 2.147080, -0.720380, 0.981351, 0.097823, 0.379249, 1.726984, -0.504502, 0.427244, 0.162551, 0.186997, 1.235908, 0.173754, 0.327032, -0.435981, -1.166288, 1.764825, 0.599417, 0.931381, 2.012013, -1.481371, -1.087629, 1.364344, 1.001370, -1.018495, -0.736548, -2.134489, -0.812104, -0.757629, 0.905960, -1.872599, 0.386431, 1.029242, 1.192792, -0.454748, -2.690569, 0.874195, -0.029691, 1.300324, -1.085132, 0.403398, -0.207355, 1.230123, 0.577793, -0.955572, -0.406727, -0.063125, -1.764886, 0.934884, 0.099197, 1.120223, 0.560783, -0.238207, 0.328889, -0.167509, 1.067484, -0.740136, -0.270884, -0.735030, -1.025883, 1.346156, -1.032623, -1.090146, 0.369653, -0.374994, -0.071139, 0.429560, -0.937073, 0.067470, 1.753754, -2.189332, -0.230147, -0.576506, 0.984958, -1.346845, -0.889718, 1.055733, 0.173711, -1.043351, -0.092081, 0.204624, 0.029544, 0.333585, 1.015987, -0.190098, 0.306731, 0.924562, 0.600304, 1.036391, -0.121117, -0.294259, -0.357607, 0.036491, 0.105124, 1.149403, -0.532418, -1.417174, 0.036239, -1.812491, 1.110548, -1.518699, 0.105785, 1.249620, -2.066090, 0.274301, 0.269194, -0.186939, -0.446635, 0.060505, -2.277602, 0.009507, -1.032385, -0.225275, -0.629420, 0.522340, -0.199028, -0.982369, 0.780459, 1.764165, -0.470174, 0.851934, -0.796089, -0.540451, -0.148242, 0.186572, 0.715156, -0.060060, -0.871258, -0.154651, 0.873260, 0.818201, -1.213716, 1.221143, -0.940491, -0.793235, -2.034941, -1.772504, 0.047780, 0.590210, -0.335933, -0.192690, -0.308205, -0.022371, -0.075514, -0.251876, -1.060925, -0.827893, -0.734465, 1.083451, 0.678851, -0.748360, -0.579405, -2.043067, -0.205387, -0.222139, 0.729636, 1.684441, 0.283943, -1.150393, -0.871965, -0.881961, 1.203945, 1.553315, -0.619045, -0.125554, 0.121248, 0.528419, 1.363936, 0.812072, 0.302559, 0.018770, -0.769241, 0.453390, -0.016566, 1.008043, 0.131184, 0.089034, -0.645575, -0.334990, -0.530296, -0.916719, 0.054930, -0.323717, -1.172135, -0.059878, 0.398895, -1.165693, -1.252991, 1.062225, 0.668890, -0.287053, 0.686392, 0.021130, 0.800252, 0.087858, -0.547733, -0.556327, 1.588500, 0.784886, 0.893107, -0.581933, 0.429863, -1.584400, 0.628144, 0.777813, -0.786816, 0.234226, 2.222605, -0.132825, 0.011211, 0.040131, 0.588700, 0.058501, 0.487232, -0.745702, 1.351873, -1.771446, 0.781601, -0.917594, -0.993617, -0.076136, 1.091963, -0.037647, 0.773636, 0.104507, 0.361208, -0.096246, 1.525120, 1.477642, 0.206207, -0.385964, 0.368721, -0.362713, 1.241820, 1.328871, -1.369378, 0.211334, 0.999504, 0.315272, -1.256159, -0.769664}, - { 2.202407, 0.501290, -0.755820, 0.416613, 0.756057, -0.509687, -2.362441, 1.446230, 0.022124, 0.291915, 1.068703, 0.956692, -0.063365, -0.189200, -0.561635, -1.088576, 1.083949, -0.077018, -0.867175, -0.084837, 0.324703, -0.508849, -1.619539, -1.609367, 1.065280, 0.069153, 0.325631, -0.527621, 1.367229, 0.383812, -0.453832, -0.995964, 0.898697, 0.648746, 0.756521, -1.617740, 1.158094, 0.137592, 1.139043, -0.074633, 0.960908, -0.852070, 0.022085, -1.107504, -1.033909, -0.987106, -0.179843, -0.893372, 0.235343, 1.356839, -1.137402, 0.351645, -0.582341, 0.488301, -1.102853, 0.126407, -0.393851, -0.573073, 0.161375, 0.298289, -0.576586, 0.794551, -0.176779, 0.375813, 0.858207, 1.664762, 0.793062, -0.857777, 0.000556, -0.473162, 0.835018, 1.719433, 2.057390, -0.082182, 0.053926, 1.049116, -0.363114, 0.104333, 0.218432, -1.162856, -2.730109, -0.127826, 0.390132, 0.048729, 1.094793, 0.547145, 0.661964, -0.879199, 0.279034, -0.005527, -0.736870, -1.101948, -0.459373, 0.015395, 0.177593, -1.668108, -0.842849, 1.680795, -1.520088, -0.257050, -0.335250, -2.939787, -0.922862, 0.347944, 0.300520, -0.632114, 0.307643, 0.424108, -1.815464, -0.229956, -0.201791, -0.199655, -0.239248, -2.471761, 0.041952, 0.791646, 1.930681, -0.860339, 1.056446, 0.762751, -1.976380, 0.659719, 2.008522, -0.007085, 0.033454, 0.909128, -0.342495, 0.552609, -1.718059, -1.808342, -0.241020, -0.782643, 1.260443, -0.664975, 0.704856, -0.068836, -2.651599, -0.861826, 0.314262, 0.582512, 0.877312, -0.567826, 0.092596, 0.551238, 0.089075, 0.652096, 1.129130, 0.138396, 1.243777, -1.160959, 1.059795, 0.328778, 0.760383, 0.592309, 0.781342, -0.397990, 0.958648, 0.616753, 2.392642, 0.725613, -0.192992, -1.099511, -1.765582, 0.744881, -2.037528, 2.166214, 0.026850, 0.850753, 1.344465, 0.936954, -0.382028, -1.085827, 1.723600, -1.689354, -1.287933, 0.563178, 0.822514, -0.087595, 1.179597, -0.803092, -0.578637, -0.268331, -0.500977, 1.474237, -1.505034, 0.080563, -0.895748, 0.239534, -0.457207, 1.731004, -2.058022, 0.604015, -1.813185, 1.381655, -0.736304, -1.428878, -0.494533, -0.341142, -0.186191, 0.096191, 1.350293, -1.456329, 0.841529, -1.093756, -0.172708, 0.320089, -0.223409, 0.532690, -0.239650, -0.057809, 0.187439, 0.825705, 1.634498, -0.199457, 0.643074, 0.470114, -1.448523, -1.432276, -0.251043, 0.169201, 0.736676, 1.127620, -0.664626, 0.173055, -0.537373, -0.055242, 1.428576, -1.227188, 1.256439, -0.037856, 1.497849, 1.028515, -0.736346, -0.102228, -1.922901, -1.297662, -0.566416, -0.173954, 0.046899, 1.563084, 0.179148, -0.294485, 0.769807, -0.723559, 0.185583, 0.581581, 2.186070, -1.802907, 0.134842, -2.350676, -0.546042, 0.861289, 3.103399, -0.189959, -1.865096, -0.618156, -1.128880, -0.513095, 1.478035, 0.302390, -1.559745, 1.617525, 1.264067, -0.475702, -0.400622, 0.732602, -1.022744, -0.025244, 0.099215, -1.153135, 1.236335, 0.980163, 0.132217, 1.075014, -1.397059, 0.195444, 0.247156, 0.927562, -1.456905, 0.902314, -0.322951, 0.664101, 1.746017, 0.106319, 0.440355, 0.067194, 0.970329, -0.814279, 0.452210, -1.551295, 0.032255, 0.398329, -1.496538, -0.993922, 0.111641, 0.589097, -0.468227, -0.898702, -0.092102, -0.345804, -0.685853, 1.816402, -0.409107, 0.258531, -0.618784, -0.769211, -0.397859, -0.225178, -1.058101, 3.017122, -0.590296, -0.343442, 1.073830, 1.530886, -0.753589, 0.390734, -0.693601, 0.541365, -0.380499, 0.229588, -1.355997, 2.172126, 0.698642, 0.192071, 0.330922, -1.699427, -0.419567, -1.295911, -0.216370, -0.146987, -0.434581, -0.312853, -0.406282, -1.490115, 0.067122, 2.079941, 0.764382, 0.405363, -0.928500, -0.000144, 1.064079, -1.328800, -3.615869, 0.806618, 0.046166, 1.816744, 0.970818, -1.191103, 0.431961, -0.391314, 0.363185, 0.396323, -0.348027, -0.128458, -0.419685, 1.089288, 0.890837, -0.917780, -1.652598, 0.281118, 0.379080, 0.298193, -0.794344, 0.722422, 1.008522, -1.657440, 0.938869, 0.583926, -1.321133, -0.520227, -0.185865, 1.174213, -2.251489, 1.583295, 0.052728, 0.245859, -0.449765, -1.615052, -1.223050, -0.218382, -0.858382, -0.344699, -0.329322, 0.704617, -0.642459, 0.017687, -1.200845, 1.053833, 1.682868, -0.278476, -1.087214, -1.305353, -0.754506, 0.610204, -0.944692, 0.943746, 0.876142, 1.838447, -0.532211, 1.323353, -1.061883, -0.067915, 0.205757, 0.396139, -0.102436, -1.778368, 1.361760, 1.850200, 1.250291, 1.103465, -0.291772, -0.170900, -0.492872, 0.336753, 0.281053, -1.475272, 0.519157, 0.266176, 0.009043, 1.438090, 0.792370, -1.907820, 0.778639, 0.459271, 1.102649, 1.164672, -0.972662, -0.227863, -2.119545, 0.295237, -1.343501, 1.178069, 0.134134, 0.044030, 1.287581, -0.184811, 1.391160, 0.286470, 1.854419, 0.502874, 1.678322, -0.368422, 0.432593, -1.865800, 0.023897, 0.318362, 1.739973, -1.463982, 2.169323, 0.059196, -1.398651, -1.175324, -0.334314, -0.471122, 0.160991, -0.429977, -0.883911, -1.897437, -0.928531, 1.122813, 0.322474, -0.929582, -1.067089, 0.057222, 0.332761, 0.566720, 1.838192, 0.215767, -0.333877, -0.003687, 0.115884, -0.424043, 0.274618, -0.733945, 0.677529, -1.480495, 0.959548, 1.436143, -1.327167, 0.658075, -0.223388, -0.958140, -0.017099, -1.657934, -0.212187, -1.515853, 1.971891, 0.800620, -0.919113, 0.778743, 0.148008, -0.114556, 0.858995, 0.430111, -1.950643, -1.073631, -2.820686, 0.467041, 0.656771, -1.140318, 0.137241, -0.102636, -0.770215, -0.687964, -1.907871, -1.153601, -0.635367, -0.771967, 0.225260, -1.058244, -0.592758, -1.120356, 0.635770, 2.007467, -1.542176, -1.810625, 0.887673, 0.852083, 0.029702, 1.911922, 1.728125, -1.109058, 0.916240, 0.702629, -1.177386, 0.774753, 0.440182, 1.090317, 0.591267, -0.488971, -0.337695, -0.838134, -0.809259, 0.297127, -1.319407, 1.771996, 0.505534, 1.001547, 0.076197, 1.197425, 0.490718, -1.372669, 0.088512, 0.078226, 0.751533, 0.530102, -1.388455, 0.213656, -0.863598, 1.124646, 0.117048, 0.668450, 0.142299, 0.083431, -0.691457, 0.350426, -1.530275, -0.544576, 0.166745, 1.838863, 1.621041, 0.605296, 0.148060, 1.866453, -0.896192, 0.822422, -0.774788, 0.596514, 0.530877, 0.830130, 0.538515, -0.627216, -0.059944, -0.332596, 0.105710, 0.029467, -1.814086, 0.937604, -1.706427, -1.027913, -0.819241, -0.160659, -1.156907, -0.914204, 0.531718, -0.814348, -0.871615, -0.506692, 0.220928, 0.439352, 2.126628, -0.953973, -1.063376, -0.048008, -0.626177, -0.058277, -0.949783, -2.113424, -0.212806, -1.144282, 0.510841, -0.886486, -0.825515, -1.678878, -0.418237, 1.492856, 0.613246, 0.366567, 0.580646, 0.395945, -0.454201, 0.195667, 0.899577, 1.140460, -0.604149, 1.429128, -2.609872, -0.513908, 0.363900, -0.726305, -0.863113, -0.517918, 0.113200, 0.507809, 0.276648, -0.879074, 1.010420, 1.092461, -0.417503, 0.100037, 0.260289, 0.914943, -0.336199, 0.455709, 1.314833, -0.717222, 0.650409, 0.703595, 1.597296, -0.573642, 0.057845, -0.032949, 1.440785, -0.973496, 0.126981, 0.551354, -0.860516, -0.184644, -0.775622, -0.324282, 0.601371, -0.509432, -2.026147, 0.633660, -0.611010, -1.451099, 0.460755, -0.268770, -0.060278, -1.253776, -0.745375, 1.781469, 0.331207, 1.026964, -0.960810, 0.642603, -1.025680, 1.292920, 1.007717, -1.896157, -0.744296, 1.128173, -1.216311, 0.824177, 0.337031, -0.099763, -0.251727, 0.728793, 0.564296, -0.332292, -0.163496, 1.213536, -0.236846, -0.429757, 0.197628, -0.567817, 1.499762, 0.250484, -0.132269, 0.916284, -0.619486, -0.064591, -0.222087, 1.066619, -1.166298, 0.067988, 0.587567, -0.960461, 0.244057, 1.229079, 1.049206, 1.044654, 0.812387, 1.425235, -0.549290, -1.268198, -0.566072, 0.355135, 2.312342, -0.433800, -1.023334, -1.659927, 0.510776, -0.809476, 0.187178, 1.057458, 1.042592, 1.696877, -0.893494, -0.987421, 0.712230, 1.695499, -0.159557, 0.084446, 0.847372, -0.140588, -2.095881, -2.033877, 0.018781, -1.582547, -0.125429, -0.410043, -1.481174, 1.776911, -0.314229, 0.105683, -0.537980, -0.589903, -1.786572, -0.289869, -0.016978, 0.332514, -0.369476, -1.095598, 0.251477, 0.299563, 1.185398, 0.884376, 1.909467, 0.893577, 0.144957, -0.867949, -0.000211, 1.287146, -0.494185, -1.534174, 2.174720, -0.593022, 1.115512, -0.213000, 2.606250, 1.672317, -0.153430, -0.871178, 1.135893, 0.186539, 0.963108, 1.800604, -1.252765, 0.945403, -0.191125, 0.424643, -0.444271, -1.093414, -2.144698, -0.613608, -0.101511, -1.443099, -1.925681, 0.939602, 0.504715, 0.162747, -3.124796, 0.307271, -1.045741, 0.355322, -0.445353, 0.659352, 0.206921, 1.708674, -0.269690, 0.715581, -0.421048, -1.086826, -0.818724, 1.870610, -0.895063, 1.723959, -0.574418, 0.936743, -0.352284, -0.252792, 0.491579, -0.145222, -2.058807, -0.013346, 0.595458, 0.851863, 0.003092, 1.262228, -1.785903, 0.716500, -0.122812, 1.069616, -1.393052, -0.886496, -0.810450, 0.297144, 0.829052, 0.572732, -0.744420, -0.168369, 0.711610, -1.670300, 0.701286, -0.419277, 0.791709, 0.239788, 0.648806, -1.420125, 1.059813, 0.832197, -1.039155, 0.979023, 0.584910, 0.563655, -0.644088, 1.066292, 1.291532, -0.541206, -0.270904, -1.350010, -0.241990, 1.318519, 0.617874, -0.902196, 0.237991, -0.011197, 0.128171, 0.837205, 0.793140, -1.552267, 0.880716, -0.994971, -0.421702, 1.235023, -0.711111, -1.111321, 0.469355, 1.841557, 0.295743, -1.317714, 1.028625, -0.570413, -1.829334, 0.832905, 0.997229, 0.007728, -0.785173, -0.991446, 1.950897, 0.289048, -2.616466, -1.192948, 1.261504, 0.359284, 0.554619, 1.241305, -0.964094, 1.887028, 2.254318, -0.391291, -0.072041, 0.052330, 0.622949, 1.639181, -1.776636, -0.473023, -1.593499, -1.642527, 0.433863, 0.673157, -0.609619, -1.853486, 0.429450, 1.067076, 0.297582, 0.723383, -0.081191, -0.319166, 2.516265, -1.217585, 0.041377, -0.517084, 1.615324, 0.120481, -0.717347, 0.430065, -2.233584, -1.424153, -1.506614, -0.847092, -1.130765, 0.664158, 0.013785, 0.559790, -0.076069, 0.085170, 1.070377, 0.417302, 0.386577, -0.209964, -0.524383, 1.014307, -1.245314, -1.592469, -0.729273, 0.318690, 0.891281, -0.781488, -0.182286, 2.087186, 1.024650, 0.649086, -0.492290, -0.385178, -1.324224, 2.323074, 0.142645, 0.044801, 1.813416, -0.460890, -2.260847, 1.016192, -0.877366, 0.542984, 0.302267, -1.408820, -1.195458, -0.300297, 1.082836, -0.237345, -0.618278, 1.383891, -0.501467, -0.178305, -0.215956, 1.055894, 0.116965, 1.591748, -1.884014, 0.123407, -1.440592, -0.610890, 0.681107, 0.691364, 1.849546, -0.334262, -0.354661, 2.421940, -0.972354, 1.453511, 0.045909, -0.214678, -1.255557, 0.630261, 0.681819, 0.932965, 1.139026, -0.756976, -0.719851, -0.644845, -1.138043, 1.001685, -1.478760, 0.562928, -0.123489, -0.689885, 0.626220, -1.193764, 0.455518, 2.634384, -0.319684, -0.572873, -1.288928, -1.263664, -0.499159, 0.478507, -0.528077, 0.918218, -1.303074, 0.048690, 0.392543, 0.164890, 0.304358, 0.195399, 0.415675, 0.918434, 0.404910, -0.829623, -0.756533, -1.019927, -1.438446, -1.143142, -0.979558, 2.738326, 0.071265, -0.187456, 0.318744, -0.470631, 1.660982, -0.798867, -1.798954, -0.497250, 0.640604, -1.251535, 1.295683, -1.612830, 0.659311, 0.474363, 0.910734, 1.096985, 1.213389, 2.183885, 0.064826, 0.262037, -1.633800, -1.231014, 0.939177, 0.119651, -0.645659, 0.533343, -1.170916, -0.920674, 1.924088, -1.463035, 2.482004, 0.468507, -0.004691, 0.945189, 0.041997, -0.218707, 0.257864, 0.923200, -0.838496, 0.667791, -2.307730, -1.392105, 2.031344, -0.748605, 1.823367, -0.527525, 0.048480, 1.280545, -0.480234, -1.392508, 0.406107, -1.999963, -1.077629, 0.945935, -0.084997, -0.543797, 0.427892, -1.782325, 1.300475, -0.819628, -2.690083, -2.093628, -2.074759, 0.734750, -0.116643, -2.227761, -0.007943, -1.056612, 1.803950, 0.327142, -0.001042, -0.528581, -0.359555, 0.740857, -1.875843, -2.613689, 0.675776, 0.806259, 0.151694, -0.692624, -1.647680, 0.464204, -0.296819, 0.818035, 0.972600, 0.079753, -0.903515, 0.732821, 0.389616, 0.699909, 1.058385, 0.594587, 1.123021, -1.047240, -0.774516, 1.266542, 0.469522, 2.280334, 0.141043, -0.914176, -0.827567, -2.056981, 0.838257, 0.120797, -1.155867, -1.078389, 2.576058, 0.872422, 1.856925, 0.076125, 2.090398, -0.260619, 0.796658, -1.339563, -0.333744, 0.354095, 0.223890, -1.791985, -0.708607, 0.665593, -0.215186, -1.394499, 1.223856, 1.844529, 1.435116, 0.233361, 0.513057, -0.185318, 1.591415, 0.394695, 0.279339, -2.476651, -0.987594, -0.251599, -0.787169, 0.247308, -0.218426, -1.179014, -0.637258, -0.800324, 0.106372, -0.744466, 1.347601, -1.244057, -0.274364, -0.973317, -2.492704, 0.184428, -0.595952, 2.160734, 1.670366, 1.036692, 0.348936, -1.745845, 0.587199, 0.002137, 0.394041, 0.241950, 0.237771, -1.248925, -1.259061, -0.210407, -0.026451, 0.107485, -0.849833, 0.044733, -0.806286, -1.563649, -0.481359, -1.603732, -0.858170, -1.519709, -1.202094, -1.261256, -1.141943, -1.509268, 1.020517, 0.579615, -0.923427, -0.012640, 1.881362, -1.632399, -0.728439, -1.054691, 0.128681, 1.364909, -0.682774, -2.148727, 1.448452, -0.953598, -0.063042, -1.608997, -0.544602, -1.179325, 0.482936, 0.000697, 0.980347, 1.165115, -2.575654, 0.836068, 0.085019, 1.430900, 0.147359, -0.680586, 0.595726, -1.381233, -0.776833, -0.606949, 0.462725, 0.704626, -0.225730, 0.466783, -0.365826, 1.899861, 0.167444, 0.368994, 0.153482, -0.029003, 0.645890, 1.422182, 0.628400, 0.789337, 0.852450, 1.738077, 0.959545, 1.129276, 1.628401, -0.776447, 0.053559, 1.490628, 0.802581, -0.237694, -0.371874, -0.885957, 2.021629, -0.440965, -0.800877, 0.035742, 0.374294, 0.506557, 0.122600, -0.112882, 0.206508, -0.939945, -1.121023, -0.456585, -0.423641, 0.373846, 1.216651, 1.636300, -1.167319, 0.167324, -0.400765, -0.704040, 0.324556, 1.111552, 2.326811, -0.436892, -0.301385, -0.399669, 0.046622, 1.224228, -1.061941, -0.688071, 1.163274, 0.402946, -1.390913, 1.077437, -1.367930, 0.450956, 0.038306, 0.643800, -0.127053, -1.928394, 0.326124, 2.664683, 0.128408, -0.136195, -0.416258, 0.130770, 2.160097, 0.983741, -0.470414, 1.820268, 0.960124, 0.745732, -0.588889, 1.244781, 0.408043, 0.080386, 1.397256, -1.203826, -0.540076, -0.796453, 0.568963, 0.452896, -1.448485, -0.766937, 0.830600, -1.552641, 0.133805, -0.351979, 0.797156, 1.832321, 0.669573, -0.709533, -0.396206, 0.778707, 0.471994, 0.329589, 0.818608, -0.232575, 0.565614, 1.134063, -1.022236, -0.496688, 1.315336, 0.015484, 1.049227, -0.857126, 0.503429, 2.087516, 0.210734, 1.443229, 0.910938, -0.793429, -0.042967, -1.023748, -0.482345, -0.755361, 2.970853, -0.228552, -0.436625, -1.851197, 0.425291, 0.458503, -0.090371, 0.535489, 0.886618, 0.547152, 0.256644, 1.777673, -0.674148, -0.927113, 0.288900, -0.845258, -0.944981, -1.220020, 1.514492, 0.182120, -3.756649, -0.208861, -1.010421, 1.205937, 1.300032, -2.276371, -1.842820, 0.682560, 0.741234, -0.501142, -1.782638, 1.133644, 1.647879, 0.573028, -0.925674, 2.483126, 0.237496, -0.165725, 0.935442, -0.340224, 1.599633, -1.368496, -1.595820, -0.718638, -0.839121, 0.653930, 0.131952, 0.106256, -0.070298, -0.645755, -0.739307, -0.278981, -2.855678, 0.507035, -0.103785, 0.815554, -0.580113, 1.638769, -0.867058, -0.199520, -1.683357, 0.500225, -1.368108, -1.284506, 0.058674, 0.509563, 0.783058, -0.244039, -0.056425, 3.320653, -0.900288, 0.179321, -0.177915, 1.376266, -0.371139, 0.363165, -0.280526, -0.221007, -1.057832, 0.203489, 1.794716, 0.082012, -1.595992, -0.106797, -1.905074, 1.985795, 1.554948, 0.097611, -0.651485, 0.301302, -1.192711, 1.114309, -0.516214, -0.497162, 0.109354, 2.003018, 0.102989, 0.318612, 1.106055, 0.474257, 0.689162, -0.083156, 0.487659, -1.768587, 0.192268, 1.307945, -1.308160, 0.555713, 0.645254, -1.871958, 0.018137, -0.757258, 0.075946, 1.044980, -0.277332, 0.059850, 1.601884, -0.279850, -0.509645, -0.999124, -0.037248, 1.172676, -0.156926, 0.950647, 0.829209, -0.085911, 1.566731, -2.708151, -1.191436, 1.987267, -0.483372, -2.520565, -0.159729, 0.534954, -0.865477, -1.704186, 0.503034, 3.504074, -0.690176, -3.722202, 0.624042, -0.982603, 0.439505, -0.334546, -0.119677, 0.534427, -0.189035, 0.029513, -0.137330, -0.133384, 0.159185, 0.514432, -0.820320, -1.774685, -0.148505, 0.647669, -0.058415, -0.403893, 0.715670, -1.841835, 0.440822, -0.109641, 0.177988, 0.083022, 2.059491, 1.349646, 0.281904, -0.895638, -0.117824, -1.351033, -1.389770, 0.427715, -0.431622, -0.253923, 0.956189, 0.528233, -0.982272, 0.223964, -0.053232, -3.309626, -0.636650, 0.717865, -0.692247, -1.023844, -1.324425, -0.256643, 0.503877, 1.038669, 0.142504, -0.894046, -2.052362, -0.345772, -0.586966, 0.036835, 0.327582, 0.701447, 0.336753, 2.108620, -0.091931, 0.714448, 0.269548, 0.486497, -0.608005, -0.612613, 0.132957, 0.499744, 1.868914, -0.110051, 0.845306, 2.089033, 0.754106, 1.045020, 1.019071, 0.661720, -0.049419, 0.891359, 1.278212, 0.172122, -2.455968, -1.729682, -0.116407, -0.323602, -1.885185, 0.346469, 0.713560, -0.178947, 0.411131, 0.473657, 0.137240, 0.004600, -1.453665, 0.387103, 1.131503, -0.060398, -1.026671, 0.271284, -0.135000, 0.872050, 2.335425, -1.463629, -0.635835, -1.170255, -0.978006, -0.222761, 1.269978, 1.013824, 0.712431, -0.797002, 0.988050, 0.895173, -0.137772, 1.639617, 0.272233, -0.150640, 0.881611, 0.844577, -1.507226, -0.679848, 0.170616, -0.063381, 0.612472, 0.900862, 1.542817, 0.367615, 0.122778, 2.814967, 0.314117, 0.595116, 0.114589, 2.088732, 0.053141, 0.341778, -2.266651, 0.162414, -1.514784, 0.507374, 0.047483, -1.676361, 0.798636, 0.367801, -1.354663, 1.476619, 0.183036, 1.069503, 0.262476, 0.124234, 1.219253, 0.750142, -0.951980, -0.014617, 0.353776, -0.609075, -0.440896, 1.503247, 0.155515, 0.578884, 0.954638, 0.494237, -0.618991, -0.739220, -2.709824, -1.225917, -0.041313, -0.289322, 0.743831, -0.658827, -2.827656, -1.433807, 0.800753, -0.543397, 0.206533, -0.406691, -2.001334, 0.193953, -2.055019, 1.584675, -1.799314, -0.554538, 1.235732, 0.255502, 2.108980, -0.772655, -0.422786, -1.900994, 1.624016, -0.598351, -0.429577, -0.225256, -0.115965, 1.258746, 1.382367, 0.548029, -1.865437, 1.855697, -0.813085, 0.149920, 2.251776, -1.691024, 0.813107, 1.253356, -1.187044, -1.757091, -2.019655, 1.207907, 0.362207, -1.321627, -0.885213, 0.640244, 0.839037, 1.742690, -1.611078, 0.668315, -0.852199, -1.026696, 0.080945, 0.480555, 1.154014, -2.739587, -0.381532, 0.205749, -0.688489, -0.141637, 1.849398, -0.916934, -1.264959, -1.370011, -0.006671, 0.627378, 1.401355, -1.095207, 1.048437, -1.832132, -0.792077, -2.943996, 0.246667, -0.442815, 0.977543, 0.404871, 1.026999, 2.394586, -0.885092, 1.013617, -0.720094, -0.881698, 1.087516, -1.340583, 0.486865, -0.940303, 0.872775, -0.253423, -1.726625, 0.344542, -0.531941, -0.456384, 0.379359, -0.215022, -0.224754, -2.456322, 1.908696, -0.679590, 0.074308, -0.711004, -0.735616, 1.091135, -0.052534, -1.070793, 0.130976, -1.908431, 0.041099, -0.819977, 0.976177, 0.973414, 0.043108, -1.318488, 0.286330, 0.331819, 0.325604, -0.735757, 0.555598, 0.640339, -1.806676, 0.437116, -0.354780, -0.514365, -0.349750, -0.965982, -0.810985, 0.315748, 0.251990, 0.968556, -0.697874, 0.270377, 1.028001, -0.121850, -0.048529, 0.759572, -0.798235, 0.450303, 1.209232, 1.287215, 0.736628, -0.320684, -0.017798, 1.387886, 0.410671, -2.089627, 0.211727, -0.704497, -0.400250, -0.780119, 1.323815, -0.998117, 1.738493, 1.225846, 1.579372, -0.755191, 1.882717, 0.174798, -2.895694, -2.241069, 0.478110, -0.913512, 0.623818, -1.593714, 1.050625, 0.334868, 0.650025, 1.844604, -0.097674, 1.089659, 0.213554, 0.408026, -0.534483, 0.200220, 0.781483, 1.385418, 0.731045, 1.942252, 0.758991, 0.943697, 0.333975, 1.433700, -0.096569, 0.650949, 0.670062, -0.077623, 0.456808, -1.020862, -0.866931, -1.391849, -1.594173, -1.343600, 1.471665, -1.205426, -1.551051, 0.787579, -0.820027, -0.531795, 0.160303, -0.552002, 0.039174, -1.042516, -1.100737, 0.221017, 1.676202, -0.742451, 1.223978, -0.940187, 0.204964, -0.279585, -0.584146, -0.170544, -1.716305, 0.316820, -0.159871, -0.637017, 1.074986, -0.539383, 1.376580, 0.892451, -0.363723, -0.144646, -0.232654, 0.509979, -0.186264, 0.325335, -0.361472, 1.409343, -1.833847, -0.762621, 0.743815, -1.142141, -0.594710, 0.468526, -0.994251, 0.703567, -0.554034, 0.389144, 1.407173, -1.436839, -0.150065, -1.225387, 1.419068, 1.707044, 0.153756, 1.521535, 0.866590, 0.680812, -1.480789, 0.273826, -0.492680, -0.145707, 0.975589, -0.748282, -0.157891, -1.527124, -0.102752, -0.261935, 0.618276, -0.359328, -0.708638, 0.489765, -0.112005, -0.162444, -0.703104, -0.874094, 0.512092, -0.637987, -1.316424, 0.225509, -1.275537, -0.023827, 0.743995, -1.415476, 0.261494, -0.437169, -0.301049, -0.316213, -0.229617, -0.269858, 0.175845, -0.558457, -2.014599, -0.371651, 0.257052, 1.647324, -0.704553, 0.797086, 2.433834, 0.640240, 2.581459, 0.323005, 1.944852, 0.380274, -1.989039, 1.480016, -1.339141, 0.708475, 1.580062, -0.045464, 0.677710, -1.824744, -0.889016, -1.317852, 1.048593, 1.706404, -1.304262, -2.730358, 0.217899, -1.601091, -0.058532, -0.399825, -1.494852, 1.788317, -0.354862, 0.163999, 0.106352, -2.093994, -0.428917, -1.102260, 1.186914, 0.687905, -1.286555, 0.123024, 0.893400, -0.606771, -0.909105, 0.774096, -2.528580, -0.240026, -1.012785, 1.722732, -0.211943, 1.226095, -0.415078, -0.640543, 0.347469, -1.004663, -0.368267, -0.519077, 0.612018, 0.026284, -0.913291, -0.483627, 0.623407, 0.708546, 1.056631, -0.633303, 0.968666, -0.344148, 1.227963, -1.039902, -1.586162, 1.665446, -1.914994, -1.791969, -0.999968, -0.759027, 0.369693, -0.413312, -1.249696, 0.237251, -0.399640, 0.558933, -0.653205, 0.502370, -0.383883, -0.071334, 0.594192, 1.503336, 0.217856, 0.917178, -2.155702, 1.074507, -0.899861, -0.768825, -0.889441, 0.252241, 1.021087, -0.073918, -0.786716, 0.512181, -0.405504, 0.080028, 1.797519, 1.159522, -0.130962, -0.489820, -1.260310, -1.153670, 0.157666, -0.050374, -0.205562, 0.275873, 0.272609, 1.788926, 0.191621, -2.243406, 2.394803, 2.030279, -0.008380, 0.616333, -1.093910, -0.618523, -0.772706, 0.214202, 1.090486, -0.056821, -1.000049, 1.120457, 0.471925, -0.017474, -0.932191, 2.448223, 0.312786, -0.570233, 0.103254, 0.412084, 2.138385, -1.424234, 0.526878, -0.030993, -0.483080, 0.711400, 1.570059, -0.045757, -0.615562, -0.202112, -0.186906, -0.355662, -1.499499, 0.452176, -1.306366, -0.060845, 0.687419, -0.426334, -0.677161, 0.953849, -0.246114, 0.283662, 0.052363, 0.888625, -0.648133, -0.883023, 0.132355, 0.617834, -0.801756, -0.206490, 0.834138, -0.069569, 0.827816, 0.530390, 2.583523, 2.378686, 0.231530, -0.472425, -0.718416, -0.074558, 0.844882, 0.238385, -1.061172, -2.141033, 0.346715, 1.455691, -0.064735, -1.897900, -0.340222, -0.082148, -0.198286, -0.184554, -0.026063, 0.196635, -0.120027, 0.445230, 0.725064, 0.323062, 0.549894, -1.247355, 2.445707, -0.786796, 0.601871, -0.051169, -1.119982, 0.614433, 0.299321, -0.284203, 0.574165, -0.197308, 0.133723, 1.427952, -1.244693, 1.909488, 1.582976, -0.571251, -0.845582, -0.267984, -0.754143, 0.310975, -1.059667, -0.298561, -1.076711, 1.052108, 0.776001, -0.213370, 0.319792, -1.109760, 0.671688, 0.119422, -0.543591, 0.551007, 0.480275, 1.771482, -1.293824, 0.229311, 0.025143, 0.149236, -0.442184, 1.412518, 1.674555, 0.197456, -0.223144, -1.409458, -1.389691, -1.039414, 0.695984, 0.566634, -1.385879, 1.405706, 0.645872, -1.035509, -1.245561, -1.928605, -1.469069, 0.098430, 0.251602, 1.207269, 1.962450, 0.053232, -0.848431, 0.026797, 1.035832, -0.508173, -0.274124, -0.876143, 0.489302, 0.057040, -2.049574, 1.810043, -1.783591, -0.727251, 0.748529, -0.143345, -0.321486, 0.967581, -0.616159, 0.389917, 0.631891, 2.819839, -0.569773, -0.439533, 0.785680, -2.140511, 1.281066, -0.974431, 1.287095, 0.315956, 1.357504, 0.468886, -1.152190, 0.376193, -0.322438, -0.553610, -0.652906, -1.298764, 0.942262, -0.206670, -0.610650, -0.254701, -0.484246, -0.748808, 1.358993, -0.551174, -1.054484, 1.363765, -0.459157, -1.385064, -0.723829, -0.900977, 0.316384, -1.416369, -0.844753, -0.199117, -0.359055, -1.533950, 0.921003, 0.567535, -0.821189, 0.791639, -1.716919, -0.980149, 0.257582, -1.279201, -2.002789, -0.585638, -0.481773, 0.161000, -0.099305, 0.116177, 0.173858, -0.087902, 0.050081, 1.041255, -1.268709, -2.377311, 1.615988, 2.395039, -0.573038, -1.580473, 0.642813, 2.576947, 0.664358, 0.960551, 0.260078, 0.716135, 0.189141, 0.458350, 0.702744, 0.162669, -0.562829, 0.658312, -0.269642, -0.793999, 0.310773, -0.899019, -1.766469, -0.400017, -0.952291, -0.014443, 0.470082, 0.284529, 0.652241, 0.455674, -0.733946, 0.539400, 0.920863, -1.504751, 0.255409, -0.741640, 0.694701, -0.445413, 3.122810, 0.386979, 0.687063, 1.034158, 1.582009, 0.877097, 0.355180, 0.168807, 0.667832, -0.256917, -0.189042, -2.753169, 0.461727, 1.014557, 0.938720, -1.102713, -0.315307, 0.632602, 0.780972, 0.268898, 0.283712, 2.984571, 0.249064, -0.918872, -0.443747, -0.288149, 0.854929, -2.419526, -0.024338, -0.124747, -0.389400, 0.381251, -1.563854, -0.404464, -0.027618, -0.358348, -0.437135, -0.109179, 0.656523, 1.233804, -0.053291, 2.064710, -0.302933, -1.014404, -0.350766, 0.976182, 1.157565, 0.544869, -1.216118, -0.035945, 0.526483, 0.761278, -0.093863, -0.023768, 1.057672, 0.601090, 0.761974, -0.073394, -0.718574, -0.661424, 0.716005, 1.262573, -0.166284, -0.165801, -0.763309, 0.907407, -1.746724, -0.264277, -0.276137, -2.132658, 0.253038, -0.961316, 0.503105, 0.059558, -0.179085, 0.687936, -1.450311, 0.836182, -1.552948, -0.850773, -1.069188, -0.222868, 0.880518, 0.116282, 0.128223, -0.415909, 0.722790, -0.165264, -0.263296, 0.996883, 1.574473, -1.517527, 0.724709, -0.702674, -1.815968, -1.890065, 0.628119, -0.335020, 0.381691, -1.995636, 0.839345, 0.395197, -1.636671, 0.006266, -0.162563, 0.665479, 0.634188, -0.770526, -0.218571, 2.700738, 0.092893, -0.120705, 0.858537, 0.092137, 0.395640, -2.096134, 1.172338, 1.842091, 0.365980, -0.022981, -1.065968, -1.085350, -0.255632, -0.063124, -0.862086, 2.061833, -1.214078, -1.426198, 0.979296, -0.732898, 0.548372, -1.650792, 0.274925, -0.397693, 1.030965, -0.347018, -1.014469, -2.042359, -0.190615, -0.913491, -0.478975, -1.890718, -0.507786, -1.067903, -2.522357, -2.697023, -0.916697, 0.312874, 0.971749, 0.145942, 1.476816, -1.272319, 0.455715, 0.173124, 0.424844, -0.632877, -1.846036, 1.000657, 1.383268, -0.409663, -0.511002, 0.228873, 1.308887, 0.117155, -0.569325, -0.457979, 0.796540, -0.602732, 1.742786, 0.181494, -1.128430, 0.866648, -0.008198, -0.755870, 0.553129, -1.182762, -0.968411, 0.430716, 0.696532, -0.453921, -0.515100, 0.567421, 0.203976, 0.635604, -0.040386, -2.086328, 0.104618, 1.849123, -0.983445, 0.294923, 0.975473, 0.269779, 0.275598, 0.194512, -1.254995, -2.214264, 0.017599, -0.793475, -1.272358, 0.296770, 0.441972, 0.032215, 1.948137, -0.199612, 0.631908, 0.167630, -0.219031, -1.019063, -0.936647, -1.601210, 1.035708, 0.914466, -0.021400, 0.972169, -1.198022, 0.664877, 0.417958, -0.549424, -0.431941, -1.367107, 0.595558, 0.808811, -0.079015, -2.231074, 0.542931, -0.570214, 2.557182, 0.029229, -1.111075, 0.817198, 0.506270, -2.572650, -0.205799, 0.714069, 0.905818, 1.059992, -0.099123, -0.759091, -0.058292, 0.804693, -0.678893, -0.124130, 0.227400, -0.114052, 0.290914, -0.672628, -0.416457, -0.107799, 0.582565, -0.538141, -0.891721, 1.339715, -0.530201, -1.542516, -0.217258, -1.436383, 0.591169, 0.252790, -1.475958, 0.554232, -0.758492, 0.643670, -0.719136, -1.145808, -0.971530, 0.855600, 0.492393, 1.859212, 0.619952, 1.124673, -1.176322, 0.956296, 0.676405, -3.005822, -1.100873, 0.216065, 0.084559, 1.800594, 0.687811, -0.821150, -0.671863, -0.065151, -0.433684, 1.322238, 0.246229, -0.133013, -0.624855, 1.189197, 0.598540, -0.588955, -0.878977, -2.154656, 0.383747, -0.571774, 0.966242, -1.617877, -0.294130, 0.474843, -1.378153, -0.402337, -0.657712, -0.355810, 1.911092, 1.806948, -0.646646, 0.264055, 0.306268, -1.586184, -0.210411, 1.024532, 1.273616, 0.508824, 0.311745, 1.121528, -1.325789, -0.118821, -1.082738, -0.429775, 0.068407, 0.172191, -1.688624, 0.677475, 0.114101, 0.174666, 0.877175, 0.358579, 0.388201, 1.055913, -1.361012, 0.247648, 0.120634, 0.996759, 0.072905, -1.242962, -1.242010, -0.243775, 0.361070, 0.347500, -0.447048, 1.609029, -1.206522, -0.448835, 2.303598, 1.233788, 0.682812, -0.758433, 0.537724, -1.045537, 0.487396, 1.312670, -0.557142, 1.039417, 0.105405, 0.964287, 0.222252, 1.578494, 0.337669, -1.570955, -1.441346, 0.612728, -2.067993, 0.427430, 0.390304, -1.274493, -0.470260, -0.053443, -1.244934, -0.038436, 0.932271, -1.057389, -0.841705, 0.005869, 1.499803, 1.515065, 0.342324, -0.321612, 0.571636, -0.094475, -0.662625, 0.963008, -0.320264, -1.696618, 1.184545, -0.969765, 1.421304, -0.413662, 0.751396, 0.870260, 0.119614, 1.433314, 0.187571, 0.482808, 1.574479, -0.065548, 0.109305, -0.859730, 0.363374, 0.528040, -0.215061, 0.397912, -0.763185, 0.988961, 1.160911, -0.053102, -0.606195, 1.095434, -0.692076, 0.671270, -1.205575, 0.144518, -0.533849, -2.461264, -1.232280, -1.695626, 0.320749, 0.497435, 0.461227, 2.040773, 1.470384, 2.262313, 1.575332, -0.422186, 1.048181, 0.410031, 0.693048, -0.971745, 0.756518, -0.685695, -2.265130, 0.102192, -0.805292, 1.271520, -1.189375, -1.208521, 0.119064, -0.082353, -0.062604, 0.583199, -0.734485, -0.011299, -0.309595, -1.249067, -0.168101, -0.073886, -1.928694, 0.119868, 0.589827, -0.696624, 1.735564, -0.776031, -0.223677, 0.204086, -0.605697, -1.032657, -0.790152, -0.851046, 0.109058, 0.577901, 0.153441, 0.963552, -0.393585, 0.552297, 0.537398, -0.519305, 0.930691, 1.214716, 0.424321, 0.880533, -0.944533, 1.783358, -0.456452, -1.404230, 1.021792, -1.223593, -0.663051, -0.014047, -1.249957, 0.884051, -1.099918, -0.970737, -0.972150, 0.347681, -0.291815, -0.477583, 1.096438, 0.224036, -0.812916, -0.100534, 0.095870, 0.582518, -0.781115, -0.027749, 0.002074, -1.083760, -0.204547, -0.410241, 0.252550, 0.036799, 1.079212, 1.187525, 0.066114, 0.957340, -0.325493, -0.562176, -0.805265, 0.792827, -0.203212, -1.241583, -1.591024, 1.017288, -0.105552, 1.174423, -1.202687, -0.360328, 0.995262, 1.171603, -0.138051, -0.037817, -0.292088, 0.653707, -0.772936, 0.575747, -1.408628, 0.038211, -0.851917, -0.871240, 0.456340, 1.088471, -1.208210, 0.794887, -0.026783, 1.501776, 1.008402, 1.327928, -0.685640, -0.313839, -0.240896, -1.642584, -1.481331, 1.130448, -1.058729, -1.207120, -0.591751, 0.093304, -0.133169, -0.299287, 2.423010, 0.653286, 0.594701, 0.204569, 0.852043, -0.208294, -1.191066, -0.817401, -0.878747, 0.172002, 0.146648, 0.540305, -2.096557, -0.478583, -0.465355, 1.783981, -0.210733, 1.199453, 0.483422, -0.626852, -1.221009, 0.160450, -0.865561, 0.165649, -0.143489, 0.216056, 0.047132, -1.423612, -0.210721, 0.525906, 0.276112, -0.467089, 0.562238, -2.271231, 1.219086, 0.119222, -0.823306, -0.609421, 0.009412, 1.741470, -0.995418, 0.902640, 0.378936, 0.149090, 0.569097, 1.831045, -0.150073, 0.435419, -0.970630, 0.745214, 0.362934, -0.602778, 0.892790, 1.212886, -0.535595, -0.095723, 0.258318, -0.565528, 0.130863, -0.636893, -2.203274, 1.941860, 0.636706, -1.689915, -0.753445, -0.138319, 1.469374, -1.483642, -0.143226, -0.068979, -0.033960, 1.240809, 0.145407, 1.308154, 0.160239, 0.335553, 0.026599, 0.846044, -1.029148, 0.651536, 0.615950, -0.560944, -0.545467, -1.053978, -0.626967, -1.094171, -0.801897, -0.544148, 0.386038, 0.506968, 0.388224, 1.951980, 0.747297, 2.460152, -0.370456, -0.630324, 0.490673, 0.409630, 0.702227, 0.423207, 0.121961, 1.298426, -0.665022, -0.268486, 0.367943, -0.318143, -1.197364, -1.087145, -1.284371, 0.193698, 0.764441, -0.358747, 0.217584, 1.368642, 1.682070, -0.656644, 2.121108, 0.140474, -0.542248, -1.315086, -0.321160, 0.254592, -0.611636, 0.494306, -0.441404, -0.230432, 0.242161, 1.094802, 0.304504, 1.049116, -0.995623, -0.031750, 0.865594, -0.595591, -2.007646, 0.228565, 0.851940, 0.996282, 0.012932, 0.097732, -0.055978, -0.068229, 0.452398, -0.087864, 1.856238, -0.158062, 0.230057, 0.485353, -0.942492, -0.380043, -0.816379, 0.995688, -0.872643, 1.285164, -1.911689, -0.943544, 0.792354, -0.171818, -2.967786, -0.990091, 1.190321, -0.433448, -0.971406, -0.981417, -0.471746, 0.283640, -0.480423, 0.338877, -1.099430, -0.410402, 1.026978, 1.925956, -1.210134, -0.587294, 0.890915, 1.964697, -1.618644, 0.598483, 0.161867, -2.640347, 0.422235, 1.855615, -0.686472, 0.878173, -0.955851, 0.735719, 1.537305, -0.624413, 0.769929, -1.639714, 2.081826, 0.293566, -0.253718, -1.571105, -1.678064, -1.024081, -0.960972, 2.148795, 0.429450, 0.789889, -0.546483, 2.601382, -1.037341, -0.772325, 1.159914, 1.414944, -0.531199, -0.709725, -1.056136, 0.072706, -1.138966, 0.426360, 0.453583, 0.189144, 0.174739, -2.751483, -0.862172, 0.703835, 0.690066, 0.871391, 1.386454, -0.508981, -0.686251, 0.985681, -0.616873, -0.412116, -0.659893, 0.497967, -0.562584, 2.579193}, - { 0.403650, -1.014357, 0.574913, -0.445437, 1.094661, 1.134115, 0.288358, -3.385571, 0.796048, -0.249780, -0.558531, -0.122649, -0.784038, -0.550558, 1.465000, 2.474917, -2.028365, 0.037672, -1.641080, 2.301788, 2.071623, 0.529941, -1.252949, 1.237254, 0.581403, -0.412883, 0.124912, 0.372891, -1.263205, -0.131711, -0.016222, 0.011139, 0.032905, -0.899638, -0.115517, 1.845425, -1.015900, -0.241577, 0.755320, 1.847321, 1.040070, 0.645562, 0.458842, 1.458119, 0.492040, 0.553860, -1.059370, 0.916266, -0.071800, 0.298681, 0.924285, -0.578455, 0.852463, -2.131735, -1.582429, 0.266644, -0.066622, -1.542669, 1.645423, 0.162123, -0.861890, 0.204836, -0.949205, -0.534554, 0.187803, 0.319879, -0.461831, 0.973578, -0.110314, -0.245235, 0.296543, -1.703765, -0.904522, 0.698099, 0.408387, 0.474978, -1.206558, -1.632827, 0.700368, -0.393521, -0.479803, 1.813555, -0.199872, -0.132172, 0.177989, -0.350155, -1.085370, 0.329317, 1.423793, -0.597576, 1.364015, 0.026374, -0.347868, -1.509244, 0.412236, -1.668170, 0.335332, -0.205457, 0.000051, -0.995482, 1.260030, 1.582177, -2.220616, 0.018139, -0.070463, -1.000663, 0.738686, 1.008254, 0.791168, 0.457487, -0.511023, 0.654914, -1.290303, 0.233504, -1.667212, -0.580289, -1.596230, 0.121505, 0.119900, 1.126179, -0.776565, -2.421473, 0.913234, -0.512228, 0.156020, 0.242267, -0.156494, -0.352227, 0.568852, -2.372196, -0.558408, -0.814404, 0.803400, -0.450912, -1.039012, 1.618778, -0.928862, 0.124976, 0.313682, -0.113927, 1.977735, -0.319704, -1.107360, 0.145451, 0.636119, -0.118886, 1.906191, 0.576585, -2.355120, -1.030013, 0.398517, -0.249832, -1.228368, 1.194110, 0.999952, 0.335488, 1.686971, -1.345639, -1.161981, 0.321674, -0.010277, 0.621946, -0.543480, -1.836735, 0.252794, 0.207638, -1.201019, -0.569695, -0.869720, -0.024617, -0.319028, 1.334856, 0.202437, 0.156878, -0.675716, 1.020870, 1.567374, -2.376426, -0.006889, -2.060126, 0.289579, 0.646099, -0.299576, 1.220229, 0.699140, -0.316892, 0.279181, 0.645902, -0.917055, 2.099333, -0.108554, -0.588589, -0.262278, 0.076212, -0.900526, -0.588247, 0.277803, -0.862968, -0.556489, -0.720162, 0.836842, -0.458211, 0.407476, 3.323483, 0.102982, 1.435021, -0.107586, 2.581338, 0.884011, -0.151865, -0.985982, 2.176918, -1.975165, -0.709848, -1.878093, 1.787065, 1.624997, -1.110798, -0.035640, -0.286764, 0.573791, -1.434333, 0.330872, 0.001660, -0.349379, 2.340239, 0.384685, -0.383720, -0.524242, 0.446390, 1.453213, 1.073712, 0.367489, 0.854753, 0.401788, -0.268169, -0.795803, 1.344657, 1.914867, 0.060212, 1.342665, 1.844248, 0.683149, 0.844919, -1.045163, -0.749471, -0.938539, 1.070481, 0.216803, 0.276765, -1.007369, -0.094269, 1.749082, -1.110859, 0.876878, -0.720469, 1.077733, 0.797991, 0.598824, 0.367988, -1.418543, 0.805829, 0.141320, 0.816281, -0.102348, 0.544938, 0.949649, -0.041311, -0.848627, -0.167435, -1.061705, 1.722685, 1.909846, 0.945638, 0.383591, 0.481468, -0.980928, 0.801423, 0.775630, 0.118020, -0.707412, -0.690296, -0.623419, 0.476887, -2.095384, -0.170983, 0.268854, 1.187011, 1.044914, 0.860511, -1.358630, -0.401680, -0.106810, 0.366891, 0.110413, -1.553775, -0.005772, 0.179523, 1.446954, 1.863318, 1.373255, -0.296341, 0.531260, 0.763358, 0.856919, 0.251658, -0.874166, -0.297233, 0.612500, -0.404567, 0.358791, -0.794084, 0.358868, -0.479656, 0.432944, -1.300818, -0.007985, 1.816262, -0.320376, 0.716702, -1.205585, -0.434012, 0.308615, -1.479865, 0.218971, 0.648748, -0.316473, 1.573821, -2.559482, -1.362501, -0.559912, 2.069263, 1.614291, 1.455573, -1.171642, 0.189204, -0.316051, -1.499253, -0.572555, -0.057391, 1.766878, -0.515420, 1.623991, 0.963558, 0.531500, -1.596240, -1.151685, -0.775070, 0.196245, -1.126315, -1.547278, -0.810357, 1.497284, 0.670666, -0.493768, 0.259942, -0.285163, 0.452725, -0.943477, 0.819788, 0.523223, -0.898829, -0.041125, 1.404306, 0.002926, 1.286466, -1.065030, -1.354182, -0.218270, -0.474482, -2.351792, -0.119771, -1.437854, 0.402988, -0.829463, -0.336072, 0.104880, 1.382572, 0.832138, -0.826629, -0.441240, -0.957771, 0.449953, -0.016467, -0.127841, -0.461525, 2.356978, 0.397976, -0.370878, -1.734662, -0.017854, -0.048064, 1.897087, 0.141245, -1.561147, 1.435536, 0.324683, 1.141221, 0.045720, 1.228539, 0.786667, 0.322392, -0.145924, -0.433266, 0.668625, -0.337349, 0.469963, -0.821507, 0.361637, -0.185504, -0.226764, 1.463808, -1.170744, 0.962554, -1.067644, 0.680177, -0.352000, 0.766491, 0.368286, -0.041368, -0.185891, 0.572279, 0.475622, -0.015614, 0.595553, 0.312691, -0.444387, 0.858805, -0.714035, -0.860998, 1.232973, 0.746909, -0.146962, -0.097159, 0.017668, -0.773621, -1.153864, -0.551942, 2.250875, 0.417342, 1.060219, 1.964819, -1.127420, -0.828311, 0.896610, 0.378337, 1.623264, -0.317616, 1.352037, 0.434727, 0.917286, 3.294066, 1.122401, 0.039238, 0.805987, -1.854270, 1.640013, -0.823682, 0.548888, -1.544348, -0.260741, -0.160354, -0.800431, 2.378434, -0.331215, -0.166094, -0.193455, -0.147849, 0.551494, 0.756349, 0.387109, 0.814995, -0.801545, -0.932988, -0.046805, 0.264169, -0.673894, -0.563174, 0.634202, 0.199476, 0.222129, 0.324260, 0.438683, 0.689621, 0.473255, -0.577350, -1.890997, -0.498742, -1.030212, 1.960762, 0.426586, 0.799986, -0.304973, -1.334436, 0.441415, -0.361671, -0.153559, 0.279821, -1.035372, -0.395245, -1.655331, -0.484320, 0.327468, -0.816196, 0.403930, -1.319878, 0.138421, 0.289832, 1.316994, -0.656594, -1.419364, 0.461996, -1.002195, -0.715450, -0.714658, -0.315496, 0.496665, 0.684950, -1.976423, -2.019666, -2.141942, -0.067594, 0.115619, 0.227518, -1.205330, 0.339143, 0.594462, 0.806198, -0.402049, 0.289432, 0.012881, 0.352648, -0.279749, -0.061365, 0.388821, -0.358784, 0.764064, -0.321759, -0.625129, 0.261736, -0.345302, 0.798635, -2.688097, -0.993953, -0.338664, -0.069779, -0.597257, -1.847885, 0.280960, -0.002756, -1.244031, -0.313816, 0.144402, 1.648641, 0.496644, 0.579856, -1.757140, -1.638650, -0.629387, -1.456585, 0.692796, 2.217984, -0.594434, 0.437397, 0.405732, 0.033633, -1.318801, 0.384458, 0.451332, 1.184789, 1.466613, 0.327402, -0.603376, 1.002395, 1.427166, 0.494772, -0.720510, 1.444688, 0.093412, -0.252758, 0.298626, -1.023951, 0.757852, 0.265532, 0.522633, -0.577624, -0.223571, -0.424457, -2.437884, 0.037673, -0.313798, -0.877012, 0.058171, 0.299391, 0.457107, 1.108758, -1.004998, 1.108680, 1.092108, 0.347071, 0.561858, -0.309738, -1.961865, 0.067770, 0.208781, 1.406564, 0.079408, 0.292537, -1.290361, 0.522549, 0.417226, -0.124813, 0.921581, 0.995435, 1.536781, 0.655386, 0.403072, -0.741236, 0.258980, 0.920533, -0.233766, -1.730940, -1.213816, -0.171870, -0.270637, 0.124970, 0.417329, -2.067523, -0.100395, 0.346188, 1.321396, -1.070765, -0.207533, -1.659396, 1.943506, -1.032507, 0.448917, -1.258586, -1.352016, 0.256929, 0.078243, 0.199747, -0.261881, -1.095747, -0.041415, 2.314274, 0.125063, -0.875276, 0.007655, -0.224708, 0.067192, 0.510492, 0.054327, 0.309587, 1.689233, 0.332936, -0.663006, 0.508924, -1.402498, 0.113803, 1.751177, 0.089091, -0.581800, -0.690685, -0.698377, 0.789543, -0.264834, 0.819967, -0.179253, 0.597610, 1.024996, 1.777037, -0.101047, 0.818741, -1.127099, 0.202876, -0.545788, -1.996230, 0.285502, 0.739056, 0.348153, -1.570766, -0.845416, 0.577325, 0.532560, 1.448241, 0.951012, 1.601069, 0.562329, 0.912995, 2.233775, 0.242845, 0.827675, 0.323510, -1.859925, -1.202888, -0.476400, 0.429710, -1.308589, 0.295224, 0.612134, -1.331652, 1.018703, -1.283876, 0.760105, -0.676802, 1.605096, 0.842045, -0.210628, 0.240826, -0.633423, 0.516157, 0.184192, -0.200448, -0.744881, 0.551060, 0.694408, -1.253124, 0.203826, -0.277176, -0.320803, -1.490409, 0.798990, -0.853038, -1.508126, 0.559247, -0.055065, -0.525157, 0.703393, 0.964516, 0.226263, 0.087568, -1.247614, -0.031154, 0.372990, -0.008329, 0.671473, -0.466580, -0.984668, -0.266251, -1.040791, -0.328515, 0.523336, -0.061269, 0.136050, 1.734326, -1.684678, 0.097109, -0.033681, -1.866523, -0.114286, 0.483032, -0.783239, -0.848321, 1.238794, 0.073016, 0.990971, -0.305485, -0.471023, 0.419819, 0.859822, -0.822961, 0.733795, -0.627316, 1.533442, 0.441122, -0.011299, 0.125103, -0.028121, -0.354656, -0.321765, 0.612309, -0.623230, 0.699508, -0.671007, 0.173559, -0.634868, -1.128972, -0.529348, 0.551161, 0.127342, -1.614116, -1.543403, 1.040704, -0.874271, -0.323190, 0.791401, -1.117346, -1.268923, -1.496959, -0.322501, -0.691180, -0.878479, -0.389889, 0.224996, 1.052182, 0.814613, -0.203115, -1.430450, -1.156906, 0.093334, 0.268751, -1.231103, 0.358831, 0.717739, -0.526319, -0.871801, 1.118623, -0.286269, 0.807651, -0.171898, -0.244346, -0.292616, -0.312339, -0.778441, 2.283582, -1.153663, 0.010582, 0.292626, 0.637879, -0.395363, 0.652680, -0.170944, 0.261480, 1.018349, 0.420863, -1.273513, 0.226659, 0.211982, 0.768227, 0.624927, -0.387252, -1.259928, 1.280543, 1.144495, -0.764596, 1.433049, 0.012981, 0.835417, -0.245949, -0.243545, 0.144518, -0.992883, -1.044753, 0.438425, 0.253992, 0.453029, 0.501885, 1.681062, -0.684413, 1.024482, -1.231547, -0.223500, 1.481364, 2.259431, -0.010872, 1.206360, -0.518804, -1.566448, 0.224529, 1.407457, 0.205682, -1.231488, -1.093900, -0.864383, -0.470304, -0.283235, -1.523998, 0.588132, 0.799795, 0.540549, 1.298360, 0.432368, -1.537464, 0.926389, -0.242382, 0.376326, -0.084512, -0.614499, 0.592639, 0.924944, 0.553291, 1.157093, 0.221752, 1.283735, 0.506319, -1.305093, 1.103942, -0.066378, -0.649467, 0.468847, -0.823644, 0.677119, 0.257429, 0.052998, -1.195108, -0.225365, 1.553572, 0.409460, -1.194006, -0.572291, 0.947205, 1.586773, -0.563282, -0.075441, 1.123739, 0.475328, 0.334366, 0.414407, 0.373830, -0.429325, -0.905962, 1.032345, 0.849797, 0.199190, 1.287890, -1.264970, 0.501707, 0.598815, -0.456416, -0.820294, 0.189219, -0.780710, -0.884509, -1.518949, -0.315514, 2.512309, 1.348925, -0.220670, 0.183711, -0.129030, 1.156924, -0.672819, -0.987780, 0.147582, -0.565920, -1.716531, -0.224108, -2.168154, 1.186326, -0.930835, -0.512965, 0.973275, 1.725040, -1.534523, -1.010800, -0.701094, 0.520839, 0.597366, 0.391436, 0.460181, -1.120708, -0.081569, -0.907186, -1.543816, 1.838788, -0.772729, 0.153728, -0.081366, -1.700483, -1.361371, -0.268214, -1.442124, -0.541602, -1.692319, -1.569642, 0.638361, -1.876925, -1.571427, -0.450344, 0.960780, 0.253591, -1.229348, -0.841928, -0.613002, 2.213668, -0.902062, -0.537889, -0.204258, -0.207101, -0.240051, -0.698893, 1.015808, -0.788519, 0.090246, -1.647101, -1.219294, 0.371430, 0.608064, -1.007720, -0.716862, -1.317105, 0.370004, -0.503596, 0.233341, -0.576625, 0.049660, 0.310022, 0.207220, -1.493660, 0.074741, 0.043931, 0.241622, 0.183654, 0.433645, 0.856215, 0.987696, 0.526214, -1.911603, 0.701377, 0.199308, 0.161817, -0.049446, -0.958827, -1.441590, -0.922162, -0.459064, -1.387224, -1.526984, 1.527146, 0.832633, 0.728032, 0.160987, -1.868734, 2.432333, -1.181181, -1.075494, 0.168446, 0.258317, 2.488678, -0.857732, -0.264983, -0.092322, -1.020084, -0.417596, -1.739162, -0.284714, -0.278035, -0.912109, 1.192221, -2.834740, 1.489730, -0.990097, -0.749150, -0.168077, -1.074848, -1.793903, -0.215131, -0.387670, 0.984328, -0.581987, -1.598644, -0.155541, 0.828786, -0.025096, -1.434835, 0.269190, 1.554233, 0.956460, -1.707802, 0.942780, -0.044878, 1.581209, 0.589502, -0.656406, -0.273697, -0.694312, -0.804025, -1.068324, 1.002741, 1.254451, -0.241819, -1.008920, 0.190989, 0.531043, -0.172930, -0.721633, 0.157305, -0.574001, 0.618801, -2.038373, -0.530031, -1.931389, -0.718863, -0.379351, 0.325355, -0.592091, 0.983623, -0.773068, 0.234150, 0.286031, 0.331320, -0.480235, 0.465021, 0.915267, 0.262110, 0.844248, 2.533713, 0.277368, 0.150545, -1.431177, -0.495116, 0.534041, -0.728234, -2.267874, 2.226621, -1.051680, -0.308458, -0.170056, 0.651044, 0.751770, -0.786996, -0.252661, -0.073379, -0.309679, -1.085102, 0.141903, 1.199780, -0.167697, -0.828849, -0.933525, -1.206744, -0.994324, 0.618158, 1.827536, 0.011788, 0.549670, -0.082109, 0.295925, 0.687917, 0.158110, -0.425561, -0.562384, 0.056593, 0.060151, 1.945135, -0.558745, 0.291663, -1.522245, -0.425124, 1.756151, 1.150879, 0.876375, -1.069071, -1.506176, -0.391403, -0.481686, 0.952427, -0.979452, 0.181769, -0.235477, -0.694768, 0.409172, 0.041034, -0.592468, 0.821789, 0.654778, 1.333243, -1.323900, 1.275142, 0.466929, -1.028773, -0.752241, 0.316623, 0.989202, -0.946536, -0.016043, 1.382814, -0.641642, 1.937514, -1.397096, 0.774539, -1.020369, -1.626969, -1.614144, 0.063889, -2.955909, 1.438022, -0.121510, -0.326616, 0.646469, -1.078933, -0.611948, 0.993523, 0.585306, -0.615415, 0.792652, -0.846684, 1.232522, -0.447847, -1.078540, -0.759884, -0.178300, -0.424913, -0.106878, -0.029422, -0.570760, 0.416001, -1.114337, 0.419540, -1.296435, 0.057007, 1.049508, -0.445451, -0.920846, 0.933629, -1.290948, 0.597998, 0.191925, 0.478656, 0.404023, -0.098274, 1.008412, -0.231724, 0.077271, 2.410440, 0.114034, -0.833849, 0.083616, -1.800023, -1.332195, 0.436132, 0.880319, 0.543931, 1.060894, -0.555089, -0.467839, -0.504384, 0.691468, 0.813803, -0.757775, -0.922457, 0.806198, -2.327282, 0.209234, 0.795627, -0.093983, 1.289781, 0.594643, -0.719695, 0.433027, -0.284932, -1.542211, 0.900129, -1.230149, -1.902017, -0.441231, -1.210279, -0.197998, 0.282436, -1.650350, -0.199126, 0.838268, 0.249907, 1.528176, 1.499617, -0.824535, 0.011667, 1.582711, 0.025462, 0.407588, -0.424479, -0.355147, 1.418948, 0.190102, -0.229875, -0.823422, 0.656396, -0.802241, -0.539804, 1.084687, -1.191797, 0.032747, 0.854266, 1.138491, -0.727793, -0.744864, 1.115566, 0.787275, -0.245471, -0.887163, -0.306688, -0.773476, -2.166873, 0.675027, 1.941835, 0.378349, 0.271412, 0.613518, -0.573172, 0.335306, 2.135315, -0.194711, -0.731636, -0.703300, -1.779873, 1.021432, 1.722873, -0.100871, -1.051369, -0.612717, -0.362892, -1.261449, -1.470752, 0.116421, -1.879108, -1.051846, -0.058405, -0.248763, 0.630028, -0.427359, 0.370717, -0.380314, -1.685083, 2.028761, -0.627172, -0.736063, -0.000232, -0.378465, -0.320739, -0.702141, -0.851224, -1.683412, 0.275351, 0.765837, -0.056659, 0.490378, 0.579577, -0.789724, 1.422014, -0.854742, -1.209662, 0.969723, -0.812093, 0.088157, -0.433541, -1.857995, 1.764611, -0.560070, 0.921676, -0.128485, -0.641978, 0.089977, -1.137541, 0.851115, 1.717667, 0.204153, -1.386338, -0.012240, 0.538882, 0.316104, 1.279872, -0.343778, -0.550929, -0.157596, -0.831566, -0.736403, -0.728087, 1.325507, 0.223421, -1.793291, -0.561975, -0.090290, -0.645108, 0.190792, -0.997602, 0.918327, -0.977693, -0.693141, 0.863141, 0.496938, 0.797128, -0.837729, 0.116220, -0.645902, -0.244782, 1.608342, -0.599335, -0.656318, 2.884092, 0.839951, -0.704683, -0.946596, 3.295261, 1.409860, -0.536865, -1.355396, 0.710234, 0.969652, -1.663202, -0.964779, -0.938305, 1.159045, 0.836793, -1.099281, 0.116668, -0.801463, -0.670267, 0.087341, -1.858877, 0.168464, 0.413383, -0.738234, 1.079499, 1.444205, 2.041893, 1.291946, 0.784241, -1.111100, -0.644108, -1.241789, -0.491682, -0.166509, 1.551962, -0.450500, -0.845400, -0.729360, -0.345683, 0.837829, 0.478985, 0.678351, -1.389608, 0.534791, -0.089142, -0.114093, 0.093009, -0.340041, 0.250614, -0.151415, -1.652256, -0.853159, 0.774902, 1.958038, -1.450961, -0.859910, 0.546809, -0.477893, -0.211489, -0.876248, -0.821221, -2.123207, -1.492650, 1.156059, 0.895164, -0.738948, 0.233253, 1.905542, -0.079593, -0.155136, 2.305882, -0.273484, -0.566885, 0.279136, -0.395144, -1.230924, 0.272750, 0.270651, -0.571963, 0.910520, 0.725947, -0.309072, -0.023248, -0.562326, 0.640770, -0.278303, 0.731448, -0.351787, -0.960881, 0.942895, -0.472951, 0.529909, -0.355112, 0.847091, -0.494718, 0.429351, 0.483058, 1.133634, 1.167801, -0.264509, -2.373041, 1.109496, -1.287663, 0.294950, -0.287150, 0.939537, -1.278916, -0.620015, -0.146790, 0.294089, 0.609734, 0.119335, 0.123527, 0.130386, 0.734867, 0.234173, 0.659366, 0.238540, 0.579723, 0.680795, 0.246009, -0.951645, -0.795111, -0.065673, 0.544346, 2.934424, -0.533174, 0.977978, 1.103460, 0.868221, 1.463206, -1.697608, 0.287286, 0.334054, -0.649849, -1.654191, 0.684923, 0.523903, 1.758263, 0.877924, -0.934760, 0.274968, 0.213620, 0.001457, 0.056218, -0.555498, -0.270374, -1.752823, 1.047068, 2.734392, -0.466875, 0.287841, 0.737404, -0.647578, 0.417001, -0.542664, 0.527525, 0.459630, 0.172339, -1.172532, 0.509536, 0.621444, -0.610799, -0.415070, -0.509843, -1.658756, -1.093467, -2.126905, -0.518205, 0.067556, -0.553795, -2.878675, -1.575168, 0.319597, 0.574191, 0.078536, -0.180321, 0.247530, 0.967652, 0.925374, -0.160885, -0.844323, 1.234135, 0.336521, 0.661189, -0.542232, 0.670142, 0.683886, -0.436394, 1.447906, 1.129992, -0.634565, 0.082254, -1.142330, -0.096293, 0.767680, 0.893264, -1.237613, -1.126703, 0.728170, 0.575194, 1.240174, -1.768852, 0.536677, -0.252502, 0.486789, -0.171011, -0.257381, 1.307250, 0.229467, -1.236534, -0.787848, 0.061045, 0.031829, -1.014912, 1.439787, -1.135896, 0.291074, 0.018218, -0.963381, 0.878649, -0.205836, -0.046363, 0.759615, 0.043303, 0.178095, 0.652399, -1.565304, -0.659674, 0.454158, 0.224785, -0.039544, 0.466910, -1.408313, 0.039009, 0.668789, -1.829626, 0.164978, 0.965653, -1.894616, -0.171453, 0.575807, 0.311404, -0.256240, -1.144235, -0.314146, -0.101274, 1.469922, -1.595728, 0.688351, -0.058753, 1.599472, 1.346916, 1.141347, 0.402206, 0.509964, -0.447592, 2.039549, -0.264526, -0.483366, 0.212342, -1.211447, 1.127557, -0.175670, -1.582539, 1.916948, -0.418697, -1.361261, 0.701625, 0.836808, 1.694200, -1.922272, 2.785683, -0.001746, -0.582601, 0.569545, -0.059714, -0.413965, -0.237097, 0.410471, 1.614576, -0.518125, -0.150064, 0.185868, 1.248381, 0.290936, -1.017554, -0.546839, 1.598038, 1.252281, 0.408563, -0.105386, -0.918977, -2.108553, -0.873579, -0.054834, -0.482299, -0.023416, -1.716354, 1.028809, 0.106077, -0.867786, 2.341866, -0.244537, 1.083142, -0.780861, -0.114854, 0.281570, 0.657147, -0.745454, -0.118075, 0.224655, -0.130497, -0.018081, 0.594210, -0.880708, -0.736090, 0.405108, 0.248463, -0.103432, 0.804367, 0.050547, -0.297901, -0.106650, -0.665342, -0.607072, -1.426338, -1.312137, 0.316742, 0.857733, -1.819282, -1.744692, 0.193747, 0.303592, 0.545289, -0.216144, -1.621939, 1.609917, 0.008518, -1.416048, -0.386168, 0.811665, -1.138723, -0.719371, -1.223980, -0.565182, -0.620800, 0.978672, -0.265252, -0.147947, -0.574011, 1.317613, 0.550122, -0.927371, 0.267496, -0.434137, -1.126929, 0.222792, -0.093836, 0.573814, 0.684660, -0.289461, -0.673617, 0.031222, -0.390207, -1.875464, 0.650939, 0.063618, -0.018508, 0.385772, 1.324701, 1.379135, 1.818650, -1.064153, 0.362183, 0.341372, -1.406471, 0.069905, -0.350700, -0.223056, -1.918347, -0.652705, 0.292548, -0.410094, -1.077892, 0.156263, -0.972401, -1.905446, -0.268428, -0.407302, 0.500146, -0.625782, 1.044492, -1.250173, 0.863476, -0.215112, -0.108704, -1.235056, 0.944494, 0.107667, 0.589667, -0.117342, 0.155034, -1.884534, -0.539770, -1.125896, -0.883840, -0.611908, 2.753627, 1.652613, -0.767095, 0.385451, 0.051766, -1.323072, 0.049867, -0.512946, 0.827393, 2.294214, 1.477571, 0.716674, 0.679587, 1.309817, -0.388980, 1.676723, -0.992685, 0.623931, -0.577933, 1.296038, -0.282157, 0.776775, 0.124468, 0.907620, 1.804456, -0.895438, -0.740157, -0.380904, -0.495472, 1.646763, 1.178004, -0.521876, -0.624476, -0.080065, -0.095494, 0.968431, 0.473506, -0.457273, 0.994473, -0.367438, 1.373465, 1.127022, -0.316771, 1.893742, 0.446486, -2.047539, 0.031481, -0.257734, -0.253363, 1.331671, -0.839316, 0.805521, -1.042728, -1.186315, 0.001378, 0.486470, 1.802370, 1.272869, 0.183356, -0.741275, -0.151712, 1.621823, 0.934742, -0.702545, -0.673393, -2.141491, -0.376082, -0.301698, -0.468269, -0.848141, -0.757061, -0.441397, -1.714403, -0.864817, -0.567808, 0.395281, -1.035108, -1.244881, 0.982442, 0.234864, 0.657748, 0.201716, -0.239845, -0.170057, 0.923069, -0.515938, 0.736369, -0.373563, -0.594491, 1.300918, -0.057348, 1.134259, 0.608627, -1.007348, 0.478846, 0.580348, 0.017821, -0.072000, 0.517446, -1.714189, 1.895427, -0.555520, 1.415054, 0.982356, 0.232862, -0.075252, -0.119670, 0.116894, 0.035425, -2.981077, -0.642234, -0.490223, 0.949176, -0.492867, 0.386664, 0.604940, 0.153660, -1.455345, -0.360739, -0.516151, -0.742326, -1.070877, 0.902510, -1.352179, 1.136226, 1.352921, 0.699752, 0.359441, 2.592792, -0.887433, -0.123843, 0.503732, -0.683479, 0.591829, 0.616676, 0.893981, 1.239937, -0.835748, -0.921213, 0.471332, 1.959629, -0.712119, -0.876056, -1.461577, 0.725497, -0.433947, -0.280278, -0.759501, 1.579697, -0.242384, -1.185813, 1.214715, 0.841201, -0.943776, 0.155406, 0.286934, -0.252360, -0.349418, 0.310711, -1.282880, 0.383753, -0.354927, 0.549806, -0.237914, -0.019383, 0.008966, 0.795499, -0.132362, -0.315418, -0.290750, 0.201498, -1.654917, -1.539167, 0.193551, -0.167884, 0.742253, 0.493177, 1.316069, 0.696697, -0.343644, -1.723649, 1.641208, 1.192964, -0.551287, 1.309234, 0.366176, -0.507910, -0.549484, -1.331046, -0.077263, 0.817586, -0.582795, 0.197074, -0.293068, -0.179441, 1.826765, 1.214504, -1.421991, -1.394491, 0.509878, 0.302011, 0.726037, 0.486916, -1.390760, 0.129507, 0.246152, 0.542568, -0.243816, -0.920033, -0.022152, -0.122849, -0.034907, -1.010447, -2.115669, -0.921480, 0.363158, 0.298078, -0.264359, 2.521276, 0.469212, 1.964345, 0.562863, -0.565281, 0.617093, 1.008149, 0.614923, 0.670064, 0.662407, 2.162896, -1.506033, -1.414300, 0.915611, 1.129178, 1.151091, -0.407912, -1.311165, -0.946797, -1.872198, 1.717881, -0.220359, -0.915865, 0.937339, -1.567913, -0.452273, -0.573111, -1.037161, -1.147535, -0.398549, -0.245396, 0.223974, 0.712700, -0.396805, 1.659639, 0.258945, 0.061332, -0.099915, -0.386359, -0.138077, -2.285939, -2.107903, 0.260845, 0.260295, -0.107461, -0.277447, 2.913926, -0.736411, -1.028210, -0.176374, 1.521541, 0.700929, -1.935581, -0.639139, 0.602713, 2.188656, -1.247290, -0.937184, -0.474168, -0.052560, -0.472749, -1.427891, -1.642530, -0.554331, -1.323366, 0.146956, 0.226637, 0.744074, 0.353701, 1.127897, -0.526748, -1.164095, -0.289418, 2.689822, 2.136349, -0.656709, -0.761043, 1.388401, -1.598813, 0.418309, -1.421558, 0.657747, -0.536230, 0.059853, -0.261367, -0.154115, -0.116551, -0.782348, -0.531219, -2.741324, -0.194774, -0.808758, -0.230346, -1.052592, 0.773294, -0.099241, -1.002693, 0.590679, 2.288377, -0.341220, 0.657274, 0.383222, -0.548760, 0.813253, -0.348239, -0.295838, 0.405406, -0.401578, 1.629204, 1.016865, 1.820713, 0.620749, -0.422787, 1.370819, 0.437397, 2.728343, -0.665351, 0.360643, -2.952486, 0.726280, -0.464092, 1.564664, 1.183746, -0.140077, -1.609305, 0.388781, 1.805430, 0.673783, 0.847742, -1.429641, -0.364561, -0.782296, -0.461391, 0.945367, -0.002263, -1.951044, 0.163468, -1.216889, -0.347887, 0.603077, -2.571118, 0.402727, 0.833914, 2.043092, -1.134621, 0.657550, 0.646142, -1.701417, 1.505809, 0.744325, -0.160547, 0.038150, 0.878490, -0.487961, -0.023531, -1.338219, 0.644638, 1.212874, -0.601670, 0.312677, 2.061152, -0.540609, 0.364667, 0.634646, 0.868277, 0.793666, -0.742269, -0.544547, -1.302459, 0.560828, -0.551382, -0.789269, -1.880177, 0.948593, 1.310579, 1.261896, 1.073440, 0.898310, -0.179731, -1.141158, 0.942666, 0.270296, 0.439961, -0.897617, -1.544970, -0.234612, 0.575016, 1.305525, 0.636647, 0.177148, -0.734641, -2.059326, -2.203162, -0.030725, -2.377880, 0.681216, -0.833386, -0.125028, 0.325196, 0.850329, 1.069324, -0.901739, 1.796688, -1.703425, -0.970516, -0.348875, -0.188258, -2.238509, -0.275880, -0.084813, 0.224025, -0.134691, 0.297070, -1.479561, 0.473431, 0.199697, 0.984612, 0.427675, -1.427747, 1.524924, -1.267863, -0.303976, -0.980761, 1.242003, 0.084785, -0.789370, 0.576805, 0.949141, 0.171224, 0.923626, -0.894551, 0.293951, 2.999224, -0.695536, -0.657224, -0.370457, 0.289485, 0.376630, 0.327050, -0.658003, 1.224362, -1.173111, -0.103859, 1.353293, 0.492534, -1.136925, -0.405728, -1.831111, -1.460551, -0.596232, 0.419152, -0.047052, 0.010094, -1.293542, -0.473344, -1.735135, -0.444567, -1.151635, 2.254477, -0.105680, -1.138938, 0.232102, 0.893697, 0.481107, 0.129821, 0.828834, 0.012631, 2.125962, 0.770060, 1.416905, -1.365304, -1.116700, 1.928549, -0.482531, -1.659604, 1.427824, 0.913770, -1.967791, 0.763760, 1.051851, 0.091184, -0.640880, -0.682313, -1.194793, -1.060970, -0.300702, -0.927257, -0.211245, -0.421115, -0.908739, 0.978105, 1.454828, 0.504301, -1.917201, -1.165814, 1.727954, -2.046449, -1.813825, -2.800429, -1.574381, -0.035876, -0.534210, -1.861530, 0.230464, 1.751231, -0.204038, 0.674686, 0.390044, 0.464456, 1.548922, -0.645087, -1.020081, -0.746528, 0.060918, -0.384667, 0.439998, 1.210240, -0.900052, -0.242748, -0.896840, 1.320688, 0.704749, 0.144492, -1.536981, 0.022620, -1.078140, -0.121028, -0.396926, 1.431968, -0.037225, -0.215811, 0.198981, -0.337709, -0.495669, 0.537513, 0.226481, -0.051115, 1.409801, -0.447711, 1.142646, -0.417949, 0.710524, -0.535885, -0.889719, 1.272967, -1.810272, 1.876250, 0.530862, 0.017543, -1.715143, -0.873434, 0.861819, 0.648042, 0.380872, -0.246158, -0.874763, 1.175764, 1.598093, 1.319488, -1.803118, 0.310229, -1.354173, -0.176996, -0.644531, -0.431836, -1.553841, 0.676229, -1.967339, -0.360646, -1.452337, -0.408455, -0.636573, -0.611551, -0.342793, 0.144527, -1.094639, 0.376491, -1.941913, 0.095123, 0.083729, -2.190884, 0.508485, -1.253052, -0.453907, 0.522360, -0.150098, -0.928572, 1.523357, 0.033463, 0.021376, 0.171265, 0.635548, -0.619018, -1.182319, 0.276227, 0.195062, 1.003434, -0.326149, -0.233598, 0.506441, 0.586626, 1.094506, 0.732796, -1.038504, -0.032688, -0.223191, 0.706378, 1.385335, -0.736105, 1.505928, 0.576942, 1.102368, 0.342808, 0.232175, 0.329078, -0.281622, -0.268113, 0.297442, -1.654862, -1.387284, 0.347010, -0.427002, 1.435983, -0.211988, 1.432677, -0.137043, 0.868494, -1.438739, -0.432645, 0.180190, 0.166272, -1.941954, -0.654251, 0.159904, 0.735305, 1.289666, -0.491510, -0.360136, -0.625220, -0.622546, 0.038664, 1.307312, -1.072097, 1.644663, 1.395235, 0.335790, -2.346597, -1.453871, 0.124641, 0.979782, -0.187530, -0.402526, 1.596517, -1.249949, 1.381190, 1.153673, -0.646039, -1.135743, -2.064886, 0.443188, -0.392404, -0.183575, -0.595350, -0.373553, -1.731477, 0.293917, 0.464925, -0.131654, 0.338280, 0.971592, 0.544083, -0.593729, 0.581391, 0.049570, 0.665698, 1.554073, 2.051040, 1.264994, 0.284753, -0.223940, 0.013025, 1.578663, 0.397423, 0.338771, 0.948901, -0.255468, 0.543271, -1.441572, -1.017584, -2.343974, -0.892020, -1.164765, 0.890379, 0.677515, 0.566318, 2.722571, -0.175620, 0.733549, 2.479710, -1.086199, 1.976917, -0.240016, 0.958143, -0.305520, -0.028627, -0.959700, 0.456449, 2.217017, 2.160115, 0.797643, 1.160221, -0.220677, -0.294599, 0.427451, 0.273464, -0.793952, -1.726198, 0.103973, 1.275484, -0.916343, -0.213839, 0.346862, -0.066235, -1.658777, 1.847968, 0.442934, 0.646220, -1.019012, 0.130128, 0.672232, 0.406632, 0.282525, 1.111466, -0.610471, 0.913907, -0.569503, 0.668567, -0.492053, 0.752004, 0.593907, 1.273272, -1.709688, -1.420430, 0.402947, 0.238491, 1.901797, -1.429218, -1.065302, -0.423841, 0.184660, -1.154388, -1.728662, -0.433297, 0.031642, -1.399173, -2.610458, 0.684569, 0.443293, 0.284231, -0.775240, 0.727082, -0.141152, -1.259207, -0.813588, 1.201866, 1.065534, -1.061569, 0.112190, 0.371255, -2.560068, -1.674337, 0.580230, 1.545776, -0.202455, -0.330252, 0.165186, 0.659836, 0.455610, 1.060875, 0.377072, 0.704615, 0.137726, -0.406939, 0.721694, 2.010913, -0.650981, 0.044983, 1.758263, -0.172722, 1.729487, 0.658749, -1.807022, -0.071710, 0.299541, -0.406716, 1.708485, -0.078615, 0.874915, 0.721516, -0.562142, 0.444970, 0.030435, 1.062719, -0.009797, 0.331812, -0.257507, -0.642826, 1.489980, -1.078856, 0.505459, -0.208200, 1.489289, -1.108806, 0.086110, -1.148330, 0.318746, 0.528346, -1.276897, -1.077130, -1.821224, -0.198135, 0.425110, 1.357034, -1.416233, -1.208188, -0.440489, -2.295060, -0.307250, -0.473740, -0.637878, 0.095922, 0.204680, 0.858249, -0.728034, -0.259860, 1.365026, 0.038359, 1.619341, 0.641033, -0.848915, -1.765775, 0.434685, -0.485445, 0.620264, 0.233168, 0.496633, -0.635425, -0.444807, -0.293892, -0.478920, -0.056509, -0.207709, -0.136660, -0.903967, -1.348821, 1.734755, 0.031791, -2.587564, -1.821445, -0.308052, -0.578963, 1.397245, 0.374941, -1.060330, -0.507319, 0.208604, 1.536535, -0.398829, 1.179931, 1.059424, -0.509376, 0.139877, -1.214148, 1.960906, -0.437455, -2.009377, -2.032501, 1.029385, 0.170179, 0.449437, -0.450656, -0.991511, 0.349132, 0.299581, 1.826763, -0.655495, -1.309017, -3.002771, 0.224369, -0.670101, 0.213385, 0.016603, 0.961343, 0.711519, -0.624134, -0.021240, 0.150877, -0.735731, -0.675393, 1.166867, -0.269430, -1.837347, -0.327538, -0.292053, 0.297637, 1.412328, 0.464034, 1.005424, -0.688567, -0.220827, 0.474712, -1.795709, -0.663337, 0.870004, 0.356175, -0.744858, -0.579476, 1.464894, -2.458880, -2.249442, -0.462045, 0.217238, 0.999104, -0.355552, 1.226544, 2.202270, 1.994216, -0.442910, 0.269814, -2.211737, 0.240029, -0.805894, 0.925663, 0.390079, 0.386544, -0.357518, -1.425346, -0.356111, -0.918788, -0.937429, -0.628619, 0.987202, 1.011958, -0.040734, 1.572538, -0.916034, 2.142630, 0.323526, 1.590794, -0.807134, -0.596215, 0.258800, -0.790889, 0.779883, 0.138611, 0.484443, -0.168145, -0.268714, -0.806645, 0.946017, 0.591252, -1.167035, -0.064037, 1.010003, 0.563049, -1.123573, 1.294540, -0.051518, -0.677284, 1.036607, 0.531620, 0.018017, -0.559476, -1.076060, -0.489468, -0.018593, -1.474160, -1.086951, -0.921499, -0.164137, -0.887251, -1.057573, 0.151256, 0.260231, 0.698099, -0.030594, -1.768641, 1.466413, 0.388410, 0.932538, -0.505031, -0.783742, 1.102085, 0.610680, 0.635592, 0.101899, -0.463534, 1.837103, 0.763778, -0.777260, 0.678067, 0.397137, -1.613219, 1.638842, 1.561704, -1.408138, -1.536592, 1.031409, -2.367192, -0.646976, -1.477342, 0.692510, 0.740599, 0.570904, -1.396710, 0.152288, -0.246136, 1.575269, -0.718980, -0.691288, -0.581177, 0.111762, -0.696594, -1.287438, 0.232954, -0.648621, -1.013484, -1.421856, 0.120184, 1.421674, -0.360872, -0.531505, 0.151806, -0.274982, 2.109722, -1.779857, -1.680797, -0.934375, 0.594241, 0.779384, -2.626769, -2.076733, -1.155985, 0.105148, 0.452280, -0.040999, -0.709963, -0.939537, 0.499941, 0.180139, 0.310072, 1.806872, -1.756247, 0.144770, 0.233338, -0.135717, 0.326980, -1.926322, -1.848879, -0.900480, 0.355452, 0.311934, 0.372904, -0.712604, -0.756677, 0.075465, 1.003045, 0.948611, 0.462486, 0.047251, -1.408994, 0.144499, 1.576225, -2.117524, 0.098124, -0.085894, -0.195769, 1.879621, 0.130960, -0.452396, 0.667443, 1.466419, 1.820750, -0.161807, 2.002359, 0.659923, 0.297108, -0.459391, -1.134038, -0.343862, 0.777568, 0.889402, -0.766731, 1.259474, -0.071255, -0.056483, -1.013449, -0.229199, 1.679355, 0.360851, -0.735641, -0.556593, 0.757427, -0.123547, -0.908905, -0.366782, -0.265149, -0.905410, 1.303287, 0.269712, -0.324711, -0.782275, -0.314567, 0.770087, -0.615491, -0.502674, -1.111622, 1.272049, 0.341114, 0.850730, -0.189032, -0.442412, 0.828035, -1.326719, 1.966919, -0.974363, 1.238002, 0.687884, 1.501663, -0.562896, 0.242446, 0.403003, -1.794563, -0.956314, 0.594500, -0.219098, -1.063674, 0.077278, -0.096761, -1.331001, -0.385402, 2.303776, -0.174691, 0.843084, -0.558374, -1.760521, -1.111174, 0.748879, -0.625377, 0.121835, 0.331567, 0.883143, -0.324301, 1.132352, -0.038810, 0.220479, 1.980888, -0.589401, 1.040358, 0.135460, -0.554857, 0.726069, -0.462902, -0.043163, 0.417688, 0.265841, -1.294165, 0.812285, 0.526812, 1.840654, 0.239063, 0.294933, -0.487954, 0.692051, -1.269333, 0.745254, 0.223149, 1.056486, 0.031604, -0.857991, 1.029837, 1.733909, 1.192550, 1.580611, -0.746985, 0.134219, -0.050879, 1.376632, 0.748439, 1.244129, -1.376228, 1.563825, -0.012375, 0.441585, 0.476368, -1.023567, 0.259841, -0.551011, 0.759149, 0.381059, -0.272999, -0.559508, -0.409139, 0.636831, -0.248852, -0.137838, 0.781860, 0.141871, 0.200331, -1.981182, 0.465103, 1.055211, 0.094747, 2.063927, 0.351936, -1.149270, 0.897396, 1.751979, 1.120999, -0.026925, -0.490009, -0.445049, -1.543464, 1.282042, -0.739783, 0.719865, -1.592278, 0.937762, 0.201059, -1.547987, -1.255977, 0.885717, -0.522399, 0.220323, 0.037051, -0.069133, 0.788517, -1.048137, -1.492292, -2.161613, 1.505137, 0.740686, -0.133142, -0.172486, 1.256635, -1.400967, 1.242837, -0.559335, -1.077442, 2.187645, 0.990782, -0.179737, 0.078305, 0.626391, -1.163145, -0.724571, -1.287627, -1.283305, 0.950602, -1.361256, 0.170686, 0.602111, 1.473908, -0.046966, 1.093398, 1.192551, 0.377511}, - { -0.881922, -0.441475, 0.095216, 0.277822, 1.187204, -1.899612, -1.098378, -0.188219, -0.271675, -1.551891, -0.694090, -0.453620, -0.786726, 1.505944, 1.583824, -1.574230, -0.304759, 0.082964, -1.178429, -0.629984, 2.040542, 0.266754, 0.645194, -0.043418, -0.621926, -1.786077, 0.353232, 0.872558, -0.198297, 1.423826, -2.951744, -0.838225, 0.016662, -0.878651, 0.130458, 1.204120, 0.066266, -1.226935, 0.349790, -0.720848, -1.161333, 1.963225, -2.628083, 0.531781, 1.282090, -1.424954, -1.642135, 0.369479, 1.144751, 0.628271, 2.102018, 1.675541, 0.036108, -0.094256, -0.484588, -0.324516, -0.267067, -1.708106, 1.456672, -0.512451, -1.771174, -0.496636, -0.203187, -0.209032, 1.417528, 0.201170, 0.054343, -2.352902, -0.171269, -0.287056, 1.479919, -0.272208, 0.584413, -0.601323, 0.727503, -0.037182, -0.312569, -0.635195, 1.601334, -0.317933, -1.028278, 0.793352, -0.553760, 0.686380, -0.153927, -0.516167, -0.268562, 0.578627, 0.000580, -0.656903, 0.650811, -0.293908, 0.090713, 0.988020, 0.118716, 0.568436, 1.097589, 0.480402, -0.497558, -0.189817, -0.484848, 2.097325, 0.618577, 0.307531, -1.179443, -0.745780, -0.141165, -1.032444, -0.472793, -1.637769, 1.155855, -2.265675, -1.459298, 0.429757, -1.820618, -0.976688, 0.583280, -1.109002, 0.413996, -0.201739, 0.098282, -1.434527, -0.821132, 0.263854, -0.403834, -0.214608, 0.195771, 0.508480, 1.015544, -1.334033, -0.772913, 0.230757, 3.171164, 0.801644, -0.984648, -0.408775, 0.892276, -0.084682, -0.262540, -0.343953, 0.642774, -1.517211, 0.940200, -1.896136, 0.661245, 1.461544, -0.757805, 0.558368, -1.080584, -1.347332, 1.331923, -0.660617, 0.573280, -0.064832, 1.460700, -0.746018, 0.185523, 0.413879, 0.677270, -0.897426, -1.920292, -0.003490, 1.192940, -1.437579, 0.483549, -0.106602, 0.252345, 1.694844, 1.560199, -0.210364, 1.719331, 0.905494, -0.497101, -0.240751, -0.306421, 0.300991, 1.412517, -0.933404, -1.695450, -0.062303, -0.181337, -1.980962, 0.218808, 0.477373, 0.216669, 1.302895, -1.221518, 0.516993, -0.137677, 0.861115, 0.804766, -0.933367, 0.705496, -0.172357, -0.194780, 0.133321, 0.351466, 0.255344, -0.946124, 0.246271, -0.521414, -0.119903, -0.252033, -2.999929, 0.311372, 0.270962, 1.132810, -1.223415, -1.326929, 0.800213, -0.263988, 0.902403, 0.434560, -0.847739, 0.840797, 0.049833, -2.186665, 0.994462, 1.004662, 0.174228, -0.339594, 0.704017, 0.014614, -1.282498, 0.544331, -0.208560, -1.191696, -0.388204, -1.030882, -0.092887, -0.504820, -0.957989, 1.733145, 1.145290, 2.039025, -1.800519, 0.250587, 0.222131, -1.224767, 0.515113, -0.414525, -1.387028, 0.572231, 0.778980, 0.008108, -0.583075, -0.444417, -0.388208, -0.339023, 0.195905, 0.169182, 0.000530, -2.999993, 0.425017, -0.492439, 1.106103, 1.214372, -0.636495, -0.623705, -2.252326, -0.505196, 0.387389, 0.648679, -0.301876, 0.759134, 0.649238, 1.572919, 0.352764, -0.476879, 1.293139, 0.741614, -0.625515, -0.998262, 0.394698, -0.559627, -0.623834, -0.597203, 1.062729, -0.217285, -0.083428, -0.791258, 1.285348, 1.547900, -0.833103, 0.266786, -0.348633, -1.148197, -1.081452, -0.633465, -0.219719, -0.603646, -0.432448, 2.414271, 0.521440, -0.969086, -0.778761, -0.632293, -1.418125, -0.664495, 0.678055, 0.149162, 0.826395, 0.953730, 1.915789, -0.635126, -0.507180, 0.874297, 0.941489, 0.139489, -1.183554, -0.565548, -1.180420, -0.375897, 0.077466, 0.857649, 0.318530, -0.080861, 0.792615, -0.022289, 0.502704, 0.473651, -0.080403, 0.815462, 0.114641, -0.324211, 0.287149, -1.638044, 0.832413, -1.156925, -0.738518, -0.043875, 0.900965, 1.144693, 0.173568, 0.123190, 0.067719, -0.333825, 0.267890, -1.058012, 1.336774, -0.450500, 0.561924, 0.340607, 0.124565, -0.123169, -0.558627, -0.643291, 0.178710, -2.703767, 0.900895, -0.133826, 0.534285, 0.772143, 0.709713, 1.960788, -0.863720, -0.945287, -1.015019, -0.270637, 0.853249, 0.263402, -0.417374, -0.469738, 1.077232, -0.789801, 0.254249, -0.244236, 0.374345, 0.077507, 4.163978, -0.214677, -0.660921, -1.183298, 0.843937, 0.190921, 1.076918, -1.637761, -0.540155, -0.870821, 0.501623, 0.234239, 0.802983, 0.965028, 0.526389, 0.623481, 0.645466, 0.517610, -0.027501, -0.126191, -1.393792, -1.366363, -1.586830, 0.162576, 0.014585, -0.089766, 0.798340, -0.382945, -0.442585, -3.508447, 0.053691, -0.261107, 1.081604, -0.713828, 0.651608, -0.537735, -0.725444, -0.893032, 0.818583, -2.692069, -0.181880, 1.471898, -2.103962, -0.923691, -1.294132, 0.846215, 0.863169, -0.868037, -0.216476, 1.026033, -0.597380, -0.400197, -0.157312, -0.242278, 0.750249, -0.697439, -0.653707, 1.269485, -0.184855, -0.268337, 0.452186, -0.704510, -0.733193, 1.460170, 1.037376, 0.483194, -1.254678, -0.839436, 0.367864, -0.027925, -3.197841, -1.427614, -0.066117, -0.463247, 2.727879, 0.454125, 0.863162, 1.697308, -1.554835, 1.234633, -0.406632, -1.904808, -0.705320, 0.749228, 0.451145, 2.181263, -1.069893, 0.775668, -1.233840, 0.852005, -0.448346, 0.509341, -0.352564, 0.633048, -1.190605, 0.223186, -0.150575, -2.856350, -0.149040, 1.205862, -0.612369, 0.998939, 1.319145, 1.458498, -0.996119, -0.504002, 1.215494, 0.804158, 0.664033, -2.198613, 0.472915, 0.969556, -0.433604, -1.165602, 0.845389, 0.456149, -0.710381, 1.178303, 0.612422, 0.266654, 1.348515, -1.705691, 1.605785, -2.178704, 0.512979, 0.582276, -1.361259, 0.204127, -0.367851, 0.856941, 0.398114, 0.569099, 1.548776, -1.025822, 0.049280, -0.245633, 1.692654, -0.109666, 0.536395, 0.171944, 0.154791, -0.797560, 0.089322, -0.083234, 1.634436, 1.184060, 0.438092, -0.155353, 0.271874, 1.208094, -0.450600, -1.658713, 0.370131, 0.648125, 0.548693, 0.818451, 0.912229, -0.788066, 0.194086, 1.276482, -0.112466, -1.151196, 1.513922, -3.711241, 0.092354, 1.463342, -0.099834, 2.668918, 0.693174, -0.514847, 1.459478, 0.176794, 0.092626, 0.071760, -0.267300, 1.083152, 1.080383, 0.201979, 0.825793, -0.302209, -0.435496, 0.901130, 0.774261, 1.473601, 0.125915, 1.015194, -1.321496, -1.338176, 0.606074, 0.229791, 1.174267, 1.004795, -1.409657, -1.064941, 2.499508, 0.083731, -1.130139, -0.997475, 0.742749, 1.674309, -0.414880, 0.230781, -0.494016, -1.281798, -1.272924, -0.755912, 1.140988, -0.288875, 0.624233, 0.124953, -0.926546, -0.927038, -0.107384, -0.259576, -1.107491, -0.117098, 0.462850, -0.798517, 1.409912, 1.704733, 0.570611, 0.329553, -0.674943, 0.046271, 0.793233, -0.345799, 0.749524, 0.329532, -1.011016, -0.763064, -0.168968, -0.056861, 1.066920, 0.893196, 2.185479, -0.794679, -0.427544, 0.070849, 0.433064, 0.077359, 0.003436, 0.162383, 0.983868, 0.554784, -0.691311, -0.826291, 1.643626, 0.854292, 1.125333, -0.017044, -1.224044, -1.075267, 1.208748, 2.325320, 0.449146, 1.184311, -0.371697, -0.099171, -1.223464, -1.574479, 0.104012, 0.518046, 0.087771, -0.859436, 2.244544, -1.370255, -0.552702, 0.078036, 1.237150, 0.013732, -0.710365, 0.176021, 0.486684, 1.407215, 1.646811, 0.262505, 1.551575, 3.188217, -0.770889, -0.077134, 0.089741, 1.206549, -0.822351, 1.054732, 0.102670, 2.206458, 1.445395, 0.833297, 2.457510, -1.728800, 0.599150, -0.582643, 0.097194, -1.136378, -0.688553, -0.195513, -0.245099, 1.844040, -0.105100, 0.853352, -0.309574, -0.563897, -0.441236, 0.237346, -0.408479, -0.138365, -1.625808, 0.868811, -0.280192, 0.493001, 0.674456, -0.343582, 0.434312, 0.669937, -0.175451, 1.365134, -2.892808, -1.183394, -0.091017, 1.387830, 0.703267, -0.623548, 0.942164, 1.632241, -1.306528, -2.749374, 0.276803, -0.745572, 0.798255, -1.000637, -1.458244, 0.491269, 0.959132, 0.346337, 0.075468, 1.185422, 0.271902, -1.419956, 0.282057, 1.918228, 1.089584, -0.010469, 0.458757, -0.767412, 1.301465, 1.389624, -1.260870, 1.180853, 0.484705, -2.188981, 0.792479, 0.714185, 0.605025, 0.952898, 0.134912, -1.235238, 1.607226, 1.451735, 0.415238, 0.077623, 0.470180, -0.342912, 1.028479, -0.055690, 1.028239, -0.900879, -0.427759, -1.243175, -0.115151, -0.929140, 1.427196, 0.653424, 2.145258, -0.476897, -3.224758, -1.172282, 1.368746, -1.494570, 0.231549, 0.024774, 0.033839, 0.337740, 0.186950, -0.421734, 0.350482, 1.797337, -0.688539, -1.145910, -0.454249, 1.222528, 1.535292, -0.005720, 0.010158, -0.123753, -0.332244, 0.398909, 0.412471, -0.544447, 0.578117, 0.075340, 1.343170, -1.052085, -1.049295, -1.226794, 0.967907, 0.793526, 0.301906, -0.256535, -0.841373, 1.313865, 1.160292, 0.562957, -1.555518, 1.409643, 0.154059, 1.303371, -0.594280, 0.305819, 0.683273, 0.292133, -0.189054, 1.152105, -1.326082, -0.190841, -1.361771, 1.867669, 0.529327, -0.184337, -0.951420, 0.844195, 0.548164, -0.329046, -0.298008, -1.232516, -0.848725, 1.039243, 0.677688, 1.754691, 0.211559, -0.421213, -1.451701, -1.075094, 1.433823, 0.589598, -0.592737, 1.001268, -0.164301, 0.831514, -0.851337, -0.319376, -1.188594, 0.490024, -0.953329, -0.328743, 1.067372, -0.092798, -0.148887, 1.048740, 1.668782, 0.073771, -0.642713, 0.178989, -1.247878, 0.969800, 1.126590, -0.214965, -0.651847, -0.848796, 2.386024, -0.627260, 1.843457, -0.396643, 1.590733, 0.084648, 0.679973, 1.752495, -1.346202, 1.198498, 0.286413, 1.400917, -0.832526, -0.309414, -1.580427, 1.645774, 0.375651, -0.988303, 0.244476, 0.875341, -0.132433, -0.104962, 1.059073, -0.170972, 0.113055, 1.083726, -0.863104, 1.060560, -0.286064, 0.378833, -0.699312, 0.195520, -0.062180, 0.062546, 0.670877, -0.187040, 0.549768, 0.723665, 0.158522, -1.080894, -2.022463, -1.330280, 0.769321, -0.623390, 0.589122, -2.603539, 0.077963, 2.492569, 0.949839, 0.028214, 0.908321, -0.472304, -0.312787, 1.152931, -1.700557, -0.314476, 1.546729, 0.487628, -0.798660, -0.341185, 0.025688, 0.095764, 1.328377, 0.245065, 0.553417, 1.078881, 0.106080, -0.560438, -0.789023, 1.021754, -1.279406, 0.637431, -1.054778, 0.191064, 2.140608, 2.750964, -2.403914, -0.623919, 0.523767, -0.960161, -1.645391, -0.678351, 0.649959, -1.282536, -1.647174, 0.155191, -0.026512, 1.405654, -0.398208, 1.053135, 0.816466, 0.857483, -0.168654, 0.207787, -0.568376, -0.009338, -0.023136, 0.318650, 1.315814, 0.058477, -1.807736, -1.965529, -0.862158, 1.125721, 0.973043, 1.557969, 1.440967, -0.703748, -0.248196, -1.045089, -1.163703, 0.253765, -1.475202, 1.137774, 0.364498, -0.152420, -1.089788, 0.210508, -0.554863, 2.076716, -1.219146, -0.893798, 0.206912, -0.047258, 0.132269, 0.337451, 1.204410, 1.146869, 0.169324, 0.405697, -1.026699, 0.051197, 0.885041, -1.310795, 2.922701, 1.224093, 0.150798, -0.434110, 1.899445, -0.531133, -0.305585, -0.030248, 0.763784, -0.911392, 0.485970, 0.098812, -0.394887, 0.791757, 1.350301, 0.017140, -0.551452, -0.066585, 1.045994, 1.823092, 1.926965, -1.074952, -0.277081, -0.344379, -0.291810, 0.053751, -1.126909, -0.075890, -1.087656, -0.714200, -0.296798, 0.246123, 0.852739, 0.037882, 1.301080, 1.259783, 0.612830, 0.429907, 1.390299, -0.677781, 0.362874, -2.233999, -0.234516, -1.888978, -0.064577, 0.960304, 0.166318, 0.802973, -2.222100, -1.414177, 0.085681, 0.104343, -1.633848, -0.008128, 0.000967, 1.283816, 0.708171, -0.971977, 0.670413, -0.159861, -0.371016, -0.086713, 0.121429, 1.349553, 0.692302, 0.186588, -0.056225, -1.605362, 0.158325, 0.105081, -0.441081, -1.171210, -0.824036, -0.425089, -0.780167, 0.467271, 1.477060, -0.186394, 0.933010, 2.070554, -1.843193, -1.774896, -0.797813, 2.149390, 1.135622, -1.018471, -0.415634, 0.653175, -0.891686, 1.067191, -0.007165, 0.496180, -0.787690, 0.568704, 1.638926, 0.070631, 0.920519, 0.349549, 2.156247, -1.983065, 0.290679, -0.677541, -1.760506, -0.715745, 1.116771, -1.209096, -1.816491, 1.033952, -0.362942, 0.884537, 0.827786, 0.730876, -0.669978, 1.813718, 1.402303, -1.700528, -1.013634, -1.820079, 0.095952, -1.035872, -0.480061, -0.379839, -0.912898, -0.264880, 1.517827, -0.463551, 0.352251, 0.130164, 2.332497, -0.028922, 0.443766, -1.304958, -1.472410, 1.035763, -1.101846, 2.901433, -0.354998, -0.450480, -1.216262, -0.603764, 0.160699, 0.274182, -0.533108, -1.080594, -0.985764, -1.257313, 0.407175, 0.123992, 0.313562, 0.495335, 0.280934, -1.395029, -0.447972, 0.913930, -1.448814, 1.679359, 0.104837, -0.427140, -0.224953, 0.068672, 0.067730, -0.823906, 1.118350, 0.437090, 1.245209, 1.410232, 0.487148, -0.367850, -1.282146, 0.739470, -0.508719, 1.249100, 0.503872, 0.249262, 0.815700, -0.972942, 0.397513, 1.485023, 0.799986, 1.096092, -0.624241, 0.767271, -1.491576, 0.600328, 1.144898, -0.068248, -2.020988, 0.592130, -0.951313, 0.840826, 0.333156, 0.667291, 0.855686, -0.347796, 1.322176, 1.204352, 0.114998, 1.027900, -1.777248, -1.778332, -2.412091, -0.205883, 0.973647, -0.284563, 1.261633, 1.501836, 0.866648, 2.017867, 0.175566, -0.166357, -0.128714, 0.820255, 0.142926, -1.543707, -0.039183, 0.135456, -0.871004, 0.960942, 0.806418, 0.072109, -0.466384, 0.119727, 0.599797, 1.930298, -0.119280, -0.311788, -0.162368, -1.588966, 0.301218, -0.670223, 0.188717, -0.365654, 2.227688, 0.153143, 0.670092, 0.786637, 0.830828, -0.266765, -1.964233, 0.729069, -0.375852, -0.249783, -1.414957, 0.586597, -0.352794, 0.327521, -0.237322, 0.818482, 0.984688, 1.711303, -0.125945, 1.197571, 1.483743, -0.378969, -0.119920, -0.560513, 0.287176, -0.530987, 0.601947, 0.218575, -0.237280, -0.610846, -0.466199, 0.224395, -0.517297, -0.516917, 0.857552, -0.037768, -2.095469, -0.531140, 0.017974, 0.560206, -1.164554, 0.664445, -1.406126, 1.565798, -0.444494, 0.445471, 0.265461, -1.283813, -0.202963, -2.097519, -0.551163, -1.068015, -2.491025, 2.381917, -1.443396, -0.116319, 0.016134, 1.145433, -0.622011, -0.195866, -0.191009, 0.066968, -1.522375, 1.116776, -2.081887, -0.698877, -0.004324, 0.103909, 0.797424, 1.602896, 0.201399, 2.134752, -0.065543, 1.055553, 0.561204, -0.413320, 0.779557, -0.508724, -0.834424, -0.361137, -0.057420, -0.094977, 0.672547, -0.680201, -1.257418, -1.960751, -0.898814, -0.573116, 0.334908, -0.098769, -0.248138, -0.790284, 0.846287, 0.221012, 0.913824, -0.931201, 0.051975, -0.547636, 1.206176, -2.326738, -1.325514, 0.808084, -1.077789, -0.422059, 0.323329, 0.102727, 1.970550, 0.675910, 0.769067, -1.165315, 0.233005, 0.274330, 1.146954, 0.299627, -0.040996, 0.269804, -1.162999, 1.291527, -0.889786, -0.230086, -0.825445, 0.576964, 0.108649, 0.436685, -0.479446, 0.033433, -0.534048, 0.335921, 1.894276, -1.233628, -0.308310, -1.675360, 0.311542, -0.921139, 0.736703, 0.212206, 0.386166, -1.441360, -1.438089, 0.760145, -0.530970, 1.732343, -0.820658, 0.465698, 0.519485, 0.624739, -1.027241, -1.386933, -1.280267, -0.946869, 1.603771, -0.353522, -0.793781, -1.118903, -0.598790, -1.947302, 1.257481, -0.339479, -0.512596, -0.573824, -1.003128, 0.752786, -0.476255, 0.397884, -0.999493, -0.804579, -0.075201, -0.628777, 0.175562, -0.983386, -0.602899, 1.126484, 1.068613, -0.030540, 1.262273, 0.413888, -1.618262, 0.977425, -0.265147, -0.863149, -0.961986, -1.949951, 0.130440, 0.945878, 1.186437, -0.983058, 0.443571, 0.790726, -1.478379, 0.034085, -1.128010, 1.074454, 2.588352, 2.328054, 0.643465, -1.744763, 0.382313, 0.657340, -1.932727, 0.145758, 1.837286, -2.810978, 0.657765, 0.276446, -1.058729, 1.101085, -0.085697, 1.163795, -0.710919, -0.164517, 0.028117, -0.214978, -1.008693, 0.347523, 1.274251, 0.135901, 0.535375, 0.375694, 0.942406, 0.141696, -0.161005, -1.511698, 1.916786, -2.035104, 0.244508, -0.420288, 1.057638, -0.175824, 0.791098, 0.092408, 0.827614, 0.204406, -0.639299, -0.291948, 0.367686, 0.349552, -0.367517, -0.720946, -0.890992, 0.076202, 0.436535, -2.071006, -0.973718, -0.879978, 0.079384, 1.485519, 0.149479, 0.502984, 2.798131, 1.392370, 0.384372, -0.677758, -0.250453, -0.965124, 0.564233, 0.361695, 0.585218, -0.951781, 0.093972, 1.075999, 0.183504, 0.235872, -0.309443, 0.413366, 0.634793, -0.892458, 0.404762, -1.802691, 0.476768, -0.040187, 1.110379, 0.932290, 1.122344, -0.120403, 0.397679, -0.455845, 0.236457, 1.410093, -0.601208, -0.207682, -1.858027, 0.142867, -0.060832, 0.820478, -0.599163, -0.367270, 1.446840, -1.186845, -1.432450, 1.343965, 0.363510, 0.206087, -1.130621, -0.028088, -0.879500, -2.348903, -0.439495, -0.312865, -0.344653, 2.273295, -0.746024, -0.087415, -0.181760, 0.583880, -0.650429, 1.308432, 1.021131, 0.909715, -2.342439, -1.470911, 0.074364, 1.616066, 0.008424, 0.347278, -1.907093, 2.279639, 0.912322, 2.629043, -0.812293, -1.213392, 0.839442, -1.164493, 0.413603, -0.114130, 0.041607, -0.863448, 2.116364, 1.222635, 0.632420, -0.820922, -0.650576, -1.854771, -1.236575, 1.568214, 0.046729, 0.881926, -0.835425, 0.205124, -0.053262, -1.305565, 0.114088, 0.371250, 0.095793, 1.054353, 0.814413, -0.467907, -0.456350, -0.185025, 0.313252, 0.218872, 1.577726, -0.845508, 1.090848, 0.662741, -2.960680, 0.996808, -0.884228, -0.473740, 0.354764, -0.000670, 0.174945, -2.637402, -0.605583, 0.255331, 0.375933, 1.762564, 1.516608, 0.095531, 0.192385, 0.800741, -0.568484, -0.587810, 0.343944, 1.446319, 0.117862, -2.636307, -0.763755, -2.891528, 1.025460, 1.124344, -0.412155, 0.327251, 1.236045, 0.653691, 2.154784, -0.514347, -0.058963, -0.231906, 1.314250, -0.496456, 0.177061, 0.347333, 0.268927, 0.020891, 0.710353, 0.587201, 0.921417, -0.498401, -1.720635, -0.385663, -0.098711, -1.433234, -1.423126, -0.349140, 0.205020, -0.502561, -1.178710, -0.022038, -0.532369, -0.460549, 0.682050, 2.387576, 0.563303, 0.400730, 0.313201, 0.816143, -0.223170, -0.046886, 0.578917, -0.841060, 0.458140, -0.506423, -0.922431, -1.175617, -0.191638, -0.784792, 0.380983, -0.385590, 0.318427, -0.037819, 0.556483, -0.957075, -0.235619, -0.187277, -0.346809, -0.855409, 0.628025, -1.509265, -0.293857, 0.620634, 1.059672, -1.475793, 0.412013, -0.064256, -0.441233, 0.817410, 1.097804, 0.360774, 1.068397, -1.353745, -0.455986, 1.384126, 0.690355, 1.221958, 0.557418, 0.103649, 0.186476, 1.080419, 1.008509, -0.388546, -1.912660, -1.048290, 0.361955, 0.037930, 0.790550, -0.977382, -0.355440, -0.169698, 0.266259, -1.558135, 0.202029, 0.273389, 0.553430, -0.194001, 1.321441, 1.320206, -0.127143, 0.567237, -0.820418, -2.475253, 0.492874, 0.260979, 0.812465, 0.291753, 0.244083, -0.289416, -0.861417, 0.297614, -0.868261, 0.122020, -0.106085, 0.018623, -1.082180, -1.642747, 0.811081, 0.234866, -0.067180, -0.553996, 1.602895, 0.747538, 0.299346, 1.356720, -0.386431, -0.039293, -0.496731, -0.255590, -1.123560, -0.650510, -0.650795, -1.063649, -0.215478, -0.676532, 2.112758, 0.568889, -0.682662, -1.789211, 0.526914, -1.885903, -1.231516, -0.929049, -0.839145, -0.305659, 0.362864, -0.140336, -0.555466, 1.150828, -0.002115, 0.640784, -0.367025, 0.365086, -0.358707, 2.868566, 2.837660, -0.162320, -0.779964, 1.670955, -0.512765, 0.386066, -0.220777, 0.278390, 0.556234, -0.852708, 1.064032, 0.131845, 0.335708, -3.166561, -0.094939, -0.106683, -1.019679, -0.065065, -0.087549, 0.165368, 0.642381, 0.888100, 1.388455, 0.506448, -0.261452, 2.180812, 0.334105, 0.935125, 0.018916, -1.284985, -0.612871, 0.181584, 0.575108, -0.855314, -2.471379, -0.735328, 1.129301, -1.127553, -0.432614, -1.112375, -0.980567, -0.877408, -1.185331, 0.385646, -0.470406, 1.998922, 1.550787, 0.192449, -1.433948, -0.069114, 0.492900, 0.862598, -0.616737, -1.135970, 2.375081, -0.059984, 1.459782, 0.418617, -1.053723, -0.584916, 1.427206, 0.353895, 0.358891, -0.216249, -2.002320, -0.699313, 0.880428, -1.882237, -1.312622, -0.295044, -0.537725, 0.283550, 1.139247, -0.660279, 0.536278, -3.170810, 0.048857, 1.062004, -1.229809, 0.561541, 0.065720, 0.665227, -0.766287, 1.114112, 1.236612, -0.290817, -0.957704, 1.304326, 0.849858, -0.212679, -0.832184, -1.035586, 0.228477, -0.200378, -0.122340, -0.182645, 1.115644, -0.440816, -1.823129, -0.745467, -0.645722, 0.590903, -1.514485, -1.391965, -1.841697, 0.875155, 1.276177, 2.152644, 0.684107, -1.539459, -0.911951, -0.119516, -1.217774, 1.515266, -0.863684, 0.593592, -0.514919, -0.410263, -0.549296, 1.425411, -0.169282, 1.148017, 0.410914, 0.406741, 1.707894, 0.375225, 1.572652, 0.866476, 0.004789, 0.552830, 0.065118, -0.176754, -0.440454, -0.640308, -0.436749, -0.252697, -0.332317, 1.201348, 0.107903, 1.792038, -3.274158, 0.750333, -1.506759, 2.618268, -1.248676, -0.141491, 0.877191, 0.514080, -0.165380, 1.550525, -2.908632, -1.051421, 0.878593, 0.041384, 1.314228, -2.015728, -0.244169, 0.566571, 0.201047, 0.020901, -1.015448, 0.781054, -1.337709, 0.121043, -0.138398, 2.351187, -0.384905, 0.008869, -0.818706, -1.377856, -0.146257, -2.092710, -0.153646, -1.014776, 0.739208, -0.270509, 1.120150, -0.328009, 1.010280, -0.963525, -0.785014, 1.135739, 0.870727, -3.178505, 0.996472, -0.029343, -0.971175, -0.702670, -1.902041, 0.599985, -0.096797, -0.583084, 0.726020, 0.856930, 1.178495, -0.286306, 0.742989, -0.284985, 1.536316, -0.171397, -0.057572, -1.511549, 0.147823, -0.023687, 1.879345, -0.704230, -1.450555, -1.108542, 0.295747, 0.819734, -1.537456, 1.019990, 1.466569, 2.083033, -0.549885, -0.896451, -1.078444, -0.509836, 0.640672, -0.281184, 0.886987, -1.296474, 1.278729, -0.018402, -0.314649, -0.572640, -0.765351, 0.462305, 1.378988, 0.741147, -0.813850, 0.353960, 0.253429, -0.790994, -0.196322, -0.980238, 1.093953, 0.951914, 1.094002, -0.436871, 1.620881, -0.115925, -1.079942, 0.664795, 1.525141, -0.024042, 0.006837, -1.452153, 1.166962, 0.541562, -0.152434, 0.028712, 1.242315, 1.324968, -0.555496, -1.129462, 0.878241, -1.046364, -2.105438, -0.114743, 0.694103, 0.312592, 0.101893, -1.369664, 0.373999, 1.629687, -0.169910, -0.247077, -0.778456, 0.283832, 0.674214, 0.321660, 1.486508, 1.387328, -0.380597, -1.191547, 0.026962, 1.032993, -1.044210, 0.672911, -1.174432, -0.798523, -0.154865, 0.290119, 0.816309, 0.287407, -0.707331, 0.663273, 2.229958, 1.819381, -0.238843, -0.800596, 0.250382, 0.174613, 1.394184, -1.011165, 1.831030, -0.199448, 0.373930, 0.079597, -0.156153, 1.948584, -2.309557, -0.499350, -0.380272, 1.550372, 0.566938, -0.784970, 0.840266, 0.802237, 1.034324, -0.951168, -0.151087, 0.521729, -0.160848, -0.098417, -1.941358, -0.852052, -0.513054, 1.574704, -1.931041, -0.576806, 0.620982, 1.923834, 0.442249, 0.048758, -1.171994, -0.018641, 1.177161, 0.749860, 0.304717, -1.281929, -0.981491, -1.673674, 0.075436, 2.060573, 1.588352, 0.224248, 0.908720, 0.648349, 0.917754, 0.712913, -0.727731, -0.281513, -0.236952, 2.066495, 0.839659, -0.084867, -1.344536, -1.276762, -1.844733, 1.164718, -0.414993, 0.269311, -0.388316, 0.341097, -0.074387, -0.992266, -0.516338, 0.846021, 0.109766, -0.229995, -1.422504, -0.733193, -0.170473, 1.472753, 1.210416, 1.107681, 0.077759, -1.064770, 1.143862, -1.366929, 1.362047, 0.580229, -0.932737, 0.119755, -0.238056, -1.601105, 0.928629, 0.708296, 1.233007, -0.490027, -1.536985, -0.165683, 0.477898, 0.494831, 0.738171, 1.702583, -1.009274, -0.340488, -0.017557, 0.110842, -0.822950, 0.855275, 0.174597, 0.495674, -0.056231, -0.181632, 1.068847, 0.312378, 0.868944, -1.295914, -0.379480, 1.407339, -0.962619, 0.786099, -0.156102, -0.648525, 0.830405, -0.345259, 0.777856, -1.412597, -0.848113, -0.960953, -0.461577, -1.029847, 0.432415, 1.743716, 1.190725, 1.268154, -2.553616, 0.583195, 0.719288, 0.019859, -0.245786, -0.277849, 0.134980, 0.327712, 1.535849, 1.322112, -1.625558, 3.074630, 0.378514, -0.900456, -0.658942, -1.291657, -0.384568, -0.024976, -1.985516, 0.667845, -0.198051, -0.641738, 0.286313, 1.213348, -0.364882, -0.845175, -0.085825, -0.909018, -0.796189, -1.846105, -1.029620, 1.686773, -0.288002, -0.456407, 0.229126, -1.012804, 1.256675, 0.395701, 0.334437, 0.373426, 1.752798, -0.332288, -1.175152, 0.125282, 0.609567, -1.460314, 0.868646, -0.141740, 0.755100, 1.958667, -0.756435, -1.349188, -0.345672, 0.789610, 1.683662, 0.390632, 1.546828, -1.073412, 2.021458, 1.050944, -1.338132, -0.518155, 0.444027, 1.820359, 0.167465, -0.329012, 0.785518, 0.900773, 0.417825, 1.815703, 0.311853, 1.441529, 1.700556, -1.423484, -1.373104, -0.980469, -0.303256, 2.071674, 0.248387, 0.033582, 1.127916, -0.906861, 0.643511, -0.100844, -0.250065, -1.165741, 0.941070, -0.072895, 1.609546, 2.089129, 1.503252, -1.138760, 1.022542, -0.665060, 1.591020, -0.802288, 0.723045, -0.690499, -1.689816, -0.243705, -1.210942, 0.259324, -0.418267, -2.126488, 0.396425, -0.617675, 1.079907, 2.122475, 0.293392, -2.595889, 0.369907, 0.441051, -0.187928, -0.326055, -0.219322, -0.971088, -0.151217, 1.278926, 0.220847, -0.677934, 1.100636, -0.345281, 0.418767, -0.966717, 0.348046, 1.376881, 0.381549, -0.339071, 1.217970, -0.998819, -0.598224, -0.346389, -0.029439, 0.590923, 0.533556, 2.042408, 0.032883, 1.132560, 0.766818, 1.299712, -0.934534, -0.178002, -0.026773, -0.859456, -0.790302, 0.253254, -2.049632, 0.300394, -1.250193, -0.321342, -0.572749, -2.804044, 0.372897, 1.441523, -1.456649, -0.145398, 0.403655, -1.302139, -0.323873, 0.034422, -0.359558, -0.258767, -0.269207, 0.033304, -0.489046, -1.988850, -0.901370, 0.881076, -0.364360, -0.445980, -1.085344, 0.347185, 0.644059, -0.691416, 0.617382, 0.287261, 0.940514, -0.604116, 1.026581, -0.371150, 0.336167, -0.361897, -0.079658, 0.915591, -1.702460, 0.857129, -0.706100, 0.267868, -0.172295, 0.445122, -1.952904, -1.252272, -0.085508, -0.553325, 0.374018, 0.222693, -0.471334, -0.717840, -0.884423, -0.628685, -1.102572, -0.100826, -0.633390, 0.002218, -0.890179, 1.437047, 1.182940, 0.796394, 1.408563, 1.635527, -0.146837, 2.552778, 0.617330, 1.544822, 1.892926, -1.118390, -2.215963, -0.023060, 0.111138, 1.516372, -0.606042, -0.449226, -1.944569, -0.458289, -0.179059, 0.656626, -1.054081, -0.909960, 0.107664, 1.842379, -1.018586, -0.119134, 0.705051, -0.195532, 1.658544, 0.788681, -0.152538, 0.492369, -0.293989, -0.521998, -1.616632, 0.479045, 0.877403, 0.645449, 0.378188, 0.759829, -0.063468, -1.933527, 0.457304, 1.080467, -1.573578, -0.699171, 0.420302, -0.328182, 1.447962, -0.828517, 1.064114, -0.542364, 0.290381, -0.538679, -0.466245, 1.199234, -0.273288, -0.967941, 0.659453, 1.968379, -1.417598, -0.136527, 1.184574, -1.074898, 0.214242, 0.290383, -0.206632, 1.582061, -0.384771, 0.788284, 1.450816, 0.451441, -2.061872, 0.940121, 0.576555, 0.336989, -1.127818, -0.163571, -0.517262, 0.420306, -1.206828, 1.039765, 2.896665, -0.598912, 0.439686, -1.166044, -1.357214, 0.049388, -1.494847, -0.889396, 0.955254, 3.130605, 0.991595, 0.701981, -0.886781, 0.548963, 1.486610, 0.820349, 0.462546, 0.162739, 1.030247, -0.249395, -0.443981, 0.400527, -1.249348, -0.204139, 1.501553, -0.710105, -0.180677, 0.761653, -0.123226, 0.705874, -0.536304, 0.296038, 1.341150, -0.083476, 0.444904, 1.502023, -0.313660, 0.213639, -0.060028, 0.791046, -0.313777, 0.015319, -0.089583, -0.166763, 2.203184, 0.639267, 0.221027, 0.079686, 1.154981, 1.232699, -0.538654, -0.772357, -1.974569, -0.505430, -0.129025, 1.895915, 0.424560, 0.428099, -0.133725, -0.885217, 0.203022, -0.589729, 1.784148, -0.381472, 1.232490, 0.047793, 0.429282, 0.517375, -0.018025, -0.118813, 1.050464, -0.120960, 0.580269, 0.330632, -0.528192, -0.893002, 0.353178, -0.061197, 0.540435, 1.016047, 0.513322, -0.378343, -0.471803, -0.573490, -1.760579, -0.852294, 1.015304, -0.797230, -2.240814, -0.934675, 0.452018, 0.539630, 0.755198, 0.054010, -0.628689, 0.676392, 0.908796, -0.737947, -0.173215, -0.154435, 0.061049, -1.820747, -1.069377, 0.333487, 0.768496, -0.467100, -0.735552, 0.674373, -0.621329, -0.118467, 0.181377, 0.119910, -0.523939, 1.098148, 0.912044, 0.413595, -0.550656, 0.174836, 0.984044, 1.052446, 0.901621, -1.784663, 1.402209, 1.525380, -0.689647, 1.202817, -0.272716, 0.697391, -0.958346, -1.232387, -0.391263, -0.531669, -0.874702, -0.111323, 1.586736, 0.541447, 0.112361, 0.002850, -0.640366, 0.110621, -0.892347, 0.651657, 0.622092, -1.197867, 0.171882, 0.955913, -0.420170, 1.076496, 0.031850, -0.483227, 0.130544, -0.259519, 0.892904, 0.745312, -0.623183, -0.194230, -0.848095, -0.730427, 2.440153, 1.313519, 0.313307, -2.304621, -0.114957, 0.038365, 0.230991, -0.221570, -0.051813, -0.968248, -0.382071, -0.185296, -0.916142, 0.764156, 1.207455, 0.110737, -0.697520, 0.004359, 0.497101, -1.246626, 0.776336, -0.971389, 0.900781, 0.545013, 0.221045, -3.624343, -0.179332, 0.416681, 0.714520, 0.410994, 0.485850, -1.827451, -1.734341, 0.395246, -1.177950, -0.011145, -0.116578, -1.290493, -2.975739, 1.029267, 0.165221, 0.215991, 0.166056, 0.186584, -0.419394, -0.990354, 0.914803, 1.207179, 0.633648, -0.463292, -1.601626, -0.012953, -0.114577, 1.629724, 1.697032, -0.842245, 1.901347, 1.172064, 1.655557, -1.022669, -0.252382, -0.217159, -0.243679, -1.881943, 1.437304, -0.073220, -0.171109, 0.178968, -0.465553, -1.169522, -2.048234, 0.660666, 0.016530, -1.399306, 0.079903, -0.395331, -0.606240, -0.717732, 1.035233, 0.578479, -0.766344, 0.291540, 0.828631, -0.264489, 0.252914, 0.839953, -0.914266, -0.939197, -0.086787, -0.174329, -0.899346, 0.226852, 0.952315, 0.042178, 0.919733, 0.893023, 1.232539, 0.092457, 1.005046, -0.610252, 0.923529, 1.004334, 0.917837, 0.075240, 2.234123, -1.893703, -2.066901, -0.624758, 2.226923, 0.123714, 0.557044, 1.287487, 1.768175, -0.225645, -0.512870, 1.710537, 1.232614, -1.126071, -2.332517, -0.867636, 1.429713, -1.425202, 2.742917, 1.561269, 0.701638, 0.207679, -0.467569, 0.083176, -0.998672, -0.563386, 0.229913, -0.811327, 1.042571, -0.472220, 2.402308, 0.173181, -1.338089, -0.385145, -0.847959, -0.715156, -0.631694, 1.531796, 1.614695, 0.176082, -0.189494, 0.674136, 0.012790, -0.646178, -0.023701, 0.708185, -1.934791, 0.064592, 1.265034, -0.199290, -0.644541, -2.007693, 0.380045, 0.483091, -1.903050, 0.780035, 1.473295, -1.773733, -0.773828, -0.076878, 0.037464, 0.684390, 0.847965, -0.297854, -2.373667, 1.096025, -1.019376, 0.183695, -1.261570, -0.969170, -0.265311, 1.463061, 0.091775, -0.394271, 2.185644, 0.176432, -0.883051, 0.538685, 0.430007, 1.328085, 0.070688, -0.158855, -0.556540, -0.809787, -1.169645, 0.823804, 0.259492, -0.570716, -0.278238, 0.649705, -0.286741, -0.513373, 0.991930, -1.117432, -0.518094, 0.779473, 0.374975, -1.663482, 0.946010, -0.587003, 0.826821, -0.604905, -0.606628, 1.373131, -0.942280, 1.070948, 0.202506, -1.152681, -0.424173, -1.606313, 0.279731, -0.316660, 0.629499, -0.136853, 0.903446, -1.553894, -0.333378, 2.138888, 0.403615, -0.702710, 1.018782, 2.481591, -0.184669, 1.198353, -0.623040, -0.381351, 0.506452, 0.721207, 0.516375, -1.011259, -0.242117, 0.776201, -0.370294, -0.518844, -0.514973, 1.091080, 1.669463, 0.385912, -0.411481, -3.000129, 0.195795, 0.901197, 0.478825, -0.158952, 0.608984, -1.523480, -1.077663, -0.553221, 0.990451, -1.360416, -0.684818, -0.193963, -0.736405, 0.524206, -0.014413, 0.482968, -0.535576, -0.515588, 0.055106, -1.915295, 1.780386, -0.216515, 0.408402, 0.747409, -1.107107, 0.504950, 0.813346, -0.084400, 0.980024, -2.523302, 1.185954, -1.412941, 1.958553, -0.471887, 0.935598, 0.226762, -0.823328, -0.381229, -1.545965, 0.239025, -1.339292, -1.204573, -0.038170, 0.162243, 0.284924, 0.160284, -0.075831, -1.204118, 1.950845, -0.027041, 0.502562, -0.233833, 0.228521, -1.324953, 0.641207, 0.440546, -0.616214, -0.981713, -0.189221, 0.155695, -0.435234, 0.425463, -0.475733, 0.356660, 0.599701, -0.514314, -0.268036, -0.539240, 0.207156, 0.207203, -1.093896, 0.773720, -0.624260, 0.960475, 0.351199, 0.699440, -0.229281, 1.198004, 1.792920, 0.842821, -0.761879, -0.676045, -1.111442, 0.747222, 0.755971, 0.589334, 0.794957, 0.006024, -1.026940, -1.240171, -0.304907, -1.389341, 0.744292, -0.513514, -0.130207, 1.222011, 1.379931, 0.116939, -1.799626, 0.631320, -0.205399, -0.539173, 1.766677, 0.076616, -0.900857, 0.685288, 0.844339, -1.400584, -0.302496, 1.957520, -0.247281, 0.443760, -1.317921, -0.272959, 0.941583, -0.579566, -1.597064, -0.122253, 0.887002, -1.851339, -0.841908, 0.473235, 1.037434, 1.445248, 0.743396, 0.395094, 1.225506, 1.662126, 0.316668, -0.798783, -0.772848, -1.142628, 0.819518, -0.564070, -0.870163, -0.991737, 1.391020, -0.457231, 0.614237, 0.019516, 2.037912, 1.358165, 1.281120, 0.427062, -0.265299, 0.620793, -1.141888, 0.685051, 1.018313, -0.281270, 0.207921, 1.894215, -1.636014, 0.414347, -0.541211, -0.817818, 0.674079, 0.868940, -0.428386, 0.658202, 0.262049, -0.301668, 0.146478, -1.107759, 0.708071, -0.049975, 0.184183, -0.932660, -1.709101, -0.309602, 0.101522, 0.360043, 0.763528, -0.700444, -0.183832, -0.069885, 0.201585, 1.075564, -0.458042, -0.350673, 1.389256, -1.479800, 0.682230, 0.289885, 0.703015, 1.683242, -0.147036, -0.828292, 0.984562, 0.477242, 0.485064, 0.112665, 0.622281, 0.492070, -0.263405, 1.163628, 2.010934, -0.506844, 0.695653, 1.263529, 0.366341, -0.936147, 0.015777, 0.133691, 0.311393, 0.069390, 0.495545, -0.837437, 1.649048, -0.167114, 1.328848, -1.609527, 1.558907, 0.277797, 1.925958, -0.386554, -0.381685, 0.047441, -0.293147, -0.587781, 1.382169, 0.304343, -0.658820, 0.439627, -1.144301, 1.420872, -0.927780}, - { 0.292891, -1.708510, -2.185706, -0.244947, -0.821272, 1.450950, 1.424964, -0.431861, -1.383292, -0.716461, 1.974213, -0.894689, -1.719556, -1.356400, 0.231541, -0.966506, 0.083534, 0.242377, -0.191265, -0.197449, 1.660832, -0.311673, 0.313023, 0.351125, -0.925571, -0.193178, 0.025055, -2.324670, 0.107742, -1.632257, -0.297190, 0.291926, 2.664977, -0.664031, -0.569963, -0.408873, -0.460503, 1.598926, 0.868365, -1.450154, 1.005934, 0.375826, -0.670606, 0.637593, 0.332802, 1.373593, -0.475296, -0.819583, 0.977991, 0.735534, -0.966828, 0.148544, 0.024582, 1.390121, -1.102279, -1.688447, -1.119557, 0.650295, 0.639350, -0.312520, -0.507114, -0.779926, 1.957356, 0.567040, 0.146519, 0.783273, 0.818639, -2.491803, -2.004623, -0.529808, 1.483119, -2.366978, -0.249309, 0.287323, 1.506401, -0.792854, -0.397687, -0.917683, -0.316980, -0.599443, 1.357496, -0.301975, -0.111516, -1.229903, 0.169000, 0.046529, -1.357439, 2.156298, 1.600920, 0.405498, 0.443675, -1.054478, 0.377440, -0.396471, -0.497906, 0.869869, -1.064701, -0.513512, 0.964440, 0.421268, 0.323402, -0.111356, -0.265792, 0.769441, 0.335623, -1.308464, 1.009527, 0.145549, 0.929947, 0.357812, -0.814115, -0.209047, 0.787138, 0.300938, 0.633906, -0.431068, -0.047960, -0.515060, -1.067042, -1.460882, -1.047530, -2.632407, 1.237485, -1.945593, -1.211345, 0.132771, -0.536113, 1.009678, 0.085230, 0.753992, -0.583521, -0.460307, 2.059750, 1.285325, 1.032129, -0.269690, 0.257610, -0.158392, 0.280761, 0.682041, 1.159714, 1.618063, -1.309796, 0.956775, 1.018945, -1.336185, 0.464816, -0.561561, -0.831023, 1.262633, 1.327701, 2.373687, 4.542273, -0.097010, -0.556613, 1.112400, 0.738165, 0.742581, -0.564402, -0.011848, 0.171923, -0.719148, -1.576356, -1.121765, 1.115668, 0.737594, -0.938355, -0.435746, 0.190921, 0.658826, 0.303713, -0.730322, -2.438232, 0.114269, 0.078303, 0.958724, -1.934861, -1.423180, 1.351432, -1.647877, -0.331842, 1.111123, -1.560790, 0.065268, -2.271621, -1.275978, 0.779194, 0.933272, -0.017336, -1.952305, 0.283716, -0.739312, -0.530806, -2.005578, -0.161424, -0.371535, 1.898929, -0.527492, 0.463612, -0.655326, 0.218653, -0.406655, -0.559668, 0.790860, 1.301448, -1.465441, 0.403506, -1.223558, 2.100382, -0.829208, -0.502725, 0.151171, -0.778230, -1.695609, 0.294853, 1.518498, -1.350138, 0.775311, -0.329676, -3.415075, -0.219203, 1.971403, 0.075180, -0.369401, -1.542137, -0.530304, -1.474646, 1.582011, -0.917005, 0.538405, 2.114314, -0.124029, 0.477711, 2.336969, -0.396765, -1.123354, 0.039216, 0.112787, -0.139218, -0.944495, -0.763684, 0.997287, 1.417784, -0.345995, -0.423057, 1.397287, 0.376601, 1.267979, 0.745433, -0.854055, 0.164431, 0.566650, 0.773948, -1.213448, 0.919028, -0.003071, 0.302285, -0.363874, -1.382851, 1.801374, -1.493086, 0.558097, 1.105853, 2.173006, -1.676891, -0.299052, 0.538238, 0.201006, 0.723465, 0.977900, -0.182530, -0.005362, 1.795848, -0.182832, -0.493448, 1.452400, 0.064221, -1.466771, -0.126108, -0.107220, -0.994895, -1.085001, -0.026704, -1.339095, 0.963092, 1.384430, -0.246086, -0.797056, -0.454069, 0.027056, -0.603872, 1.452029, 0.030280, -1.217478, 1.798160, -0.712081, -1.012086, 0.923644, 0.164759, 1.287082, 0.347788, -1.712420, -0.173141, 0.401047, -0.406398, 0.034959, -0.680275, -0.206232, -0.613904, 0.649680, -1.152045, -1.048357, -0.193687, 0.852478, -1.478935, 0.208540, 1.292965, 1.498585, 1.795307, 1.266239, 0.568582, -0.403831, -1.284378, -0.338240, -0.632272, 0.410119, -0.371463, -0.140562, -0.419117, 0.005570, -0.760282, 1.208550, 0.646112, -1.974479, -1.757854, -1.413260, 0.002034, -0.921508, -1.019410, -0.091603, 0.310681, -1.665338, 0.553750, 0.545329, -1.001807, 2.265850, 0.963306, -0.438406, -0.117895, -0.607653, 1.448049, -0.041341, -0.565033, 0.592700, -0.557312, -0.321587, 0.423004, 0.701197, -1.261603, 0.462973, -2.714076, 0.554875, 0.359922, -0.739469, -0.805084, -3.426799, 0.847265, 2.208081, 0.789774, 2.150444, 0.624629, -1.038113, -0.413425, 2.454882, 2.626144, -1.102012, -0.950069, 0.030648, 1.271111, 1.061401, -1.165392, -2.327266, 1.014271, 0.475691, -0.625056, 1.027901, -0.475552, 0.031236, 1.309724, 0.736699, 0.218125, 0.541387, -0.677458, -0.307832, -0.486233, -1.526194, -1.661415, -0.944457, 0.644331, 2.167019, 0.215784, 0.601616, -0.430486, 0.818222, -1.794037, 0.982718, 0.291569, -2.085956, -0.386507, 0.056042, 0.785065, -0.369807, -0.300279, 1.382001, 1.241396, 0.226918, -0.534698, 0.281058, 0.790899, 0.704463, 1.104488, 0.206228, -0.115892, 1.362966, 2.040797, 0.930832, -0.499394, 1.308533, 0.038474, -0.481727, 1.271917, 0.093185, 1.027524, -1.058642, 1.453905, -0.119899, 0.282057, -0.797613, -0.613116, 0.598727, -1.978262, 1.581403, 1.768274, -1.371727, 0.596770, 0.483326, 1.248562, -2.072330, 0.345192, -1.130156, -0.413975, 0.308699, -0.999458, 2.000450, -0.727893, -0.799304, -1.748235, 0.342308, 0.572691, 1.094910, -0.131486, 0.391579, 0.856615, -0.379866, 0.709835, 2.301630, -0.295983, 0.366237, 0.095394, -0.943021, 0.072385, -0.692351, -0.491897, -1.942546, -0.209199, -0.976951, 0.703390, 0.882315, -0.140885, 0.971320, 1.046713, -1.833827, -0.848040, -0.902475, 1.206739, -0.186708, -0.513700, -0.636293, 2.189780, 0.099314, 1.396261, 0.999723, 1.206330, 0.201980, -0.236837, 0.551101, 0.020832, -1.287175, -0.012679, -1.168575, 0.952123, 1.187614, 0.174262, -1.833502, -0.788792, 0.284911, -0.923546, -0.701950, 0.579197, -1.288502, -0.934693, -0.531277, -0.550297, 0.424981, -0.481678, -0.568877, 0.165475, -0.398001, -0.655614, -0.660530, -0.722770, 0.104100, -1.557982, -1.216011, 0.578792, -1.123166, -0.152202, -0.610867, -0.235874, 1.436928, 0.664378, -0.069716, 1.190115, -1.484155, 0.055556, 0.776146, 1.890962, 2.352409, -0.996553, 2.278443, -0.186201, -0.685986, 1.368316, -0.555180, -1.442758, 0.050701, 0.189587, 1.115584, 0.712029, 0.383487, -0.474714, -0.819532, 0.553201, -1.006239, -0.470012, -0.794397, 0.592416, 2.015376, 0.563762, -0.525463, -1.046815, 0.415018, 1.023756, -1.226087, -0.715211, -0.457262, -1.475429, 2.053750, -0.817486, -0.144130, -1.408412, 0.312953, -0.045965, -0.742768, -0.592396, -0.498212, -1.161338, -1.123862, 0.868017, -0.387588, -1.149278, -0.098976, -0.538908, -0.275223, -0.673831, -0.236932, 0.522214, 1.862571, -0.724714, 0.113470, -0.030180, 0.867167, 0.615528, -1.491319, -1.245311, -1.653809, -0.112606, -0.309782, -0.473697, -0.819074, -0.448935, 0.030836, -1.095170, 0.165387, -0.503660, 0.866712, -0.346152, -0.314465, -0.677123, -0.177118, 1.267335, -0.212055, -0.268177, -0.576133, 0.959965, 0.608411, 0.252166, -0.227027, 0.455450, -0.163730, -0.945263, -0.564231, -1.475780, 0.120220, -0.554524, 0.060990, 2.423817, -0.213706, 0.001410, -0.711890, -0.680973, -0.383531, -0.290049, -0.507651, -0.031594, 0.905885, -1.816476, -0.468269, 0.796781, 0.322228, -0.528841, -0.723818, 1.211553, 1.105538, -1.433756, -0.644082, 0.647983, -1.180568, -0.752597, -0.704020, -0.505185, 0.885326, 0.005479, -0.550318, 0.615822, -0.873853, 1.142081, 1.184152, 0.103964, 1.647361, 0.967744, 0.673536, -0.536562, 0.056784, -2.077467, -1.919048, 1.252205, -0.718282, 1.116761, -0.242194, 1.143201, -0.026847, 0.608832, 0.708688, 0.079831, 0.134089, 0.930380, -0.729393, 0.367778, -1.318354, 1.522532, 0.085972, 1.593959, -1.981243, -1.378361, 0.286758, 0.762529, 0.939118, -0.244318, -0.451555, -1.183896, 0.107928, 0.533478, -0.840499, 0.133740, -1.422853, -0.343426, 0.597483, -0.107674, 0.321853, 0.546763, -0.114930, 1.183602, 1.846683, -1.481568, -1.713139, -3.027448, 1.102476, 0.065993, 0.029244, 0.775203, -0.562777, 0.868315, 1.638600, -1.509365, 1.186059, 0.303477, 0.109088, -0.152322, 0.866439, -0.117734, 0.640226, 2.034814, -0.601030, -1.161561, 0.304143, 0.969342, -0.643773, -0.408139, 0.760046, -1.843315, 0.162190, 0.477456, -1.710225, -0.604101, -0.194816, -0.678343, 2.378602, 0.442871, 0.590240, 1.190987, 0.387996, -0.652592, -0.349694, 0.269263, -0.257546, 0.489823, -0.005972, -0.523285, 0.461713, 0.983745, 0.966786, -1.214870, -0.449246, -0.158108, -1.027027, 0.905758, 0.485926, 0.311863, -0.954620, -0.370001, -0.983756, 1.309037, -0.993112, -1.464900, -0.453496, -2.169531, 2.327251, 0.766307, -0.365884, -2.178003, 0.042199, 0.228299, 1.827621, 0.205068, 0.928119, -1.129028, 0.215187, -0.667648, 0.544146, -0.642307, -1.216451, 0.282151, 0.417768, 0.095059, -0.581879, 0.840889, -0.420691, 1.167246, -0.645507, 1.426113, 0.933374, 0.865025, 0.166366, -0.188546, 0.959291, -0.056122, -0.008197, -1.415343, -0.548600, -0.943413, -0.807224, 0.233624, -1.630257, -1.002499, -1.024861, 0.396569, -0.302054, 0.021819, -1.061831, -0.471147, -2.242388, 0.194980, 0.174102, -1.419076, -1.179402, 0.649922, -1.579208, -0.460712, 0.367351, 1.100219, 0.520826, -1.114273, -1.879597, -0.530805, -0.831654, 0.631768, 2.452335, 1.131999, -1.081673, -1.136642, -1.465356, 1.305989, 0.789847, 0.042800, 0.076241, 1.658439, -0.647155, -0.896072, 0.481696, 1.797639, 0.159411, -0.248198, -1.460728, -0.404525, -1.654078, 0.924408, 1.771791, 0.476497, -0.491226, -0.720338, -1.234394, 0.202733, -2.122692, -1.149185, 0.056084, -0.517622, 0.752513, -0.225029, -0.269667, -1.196974, -0.218352, 1.093614, 0.208290, -2.412891, -0.397495, 1.140108, 1.019041, -0.478599, 0.294369, 0.419145, -0.760007, 0.592244, 0.151055, 0.755161, -2.210251, 1.506074, 0.305659, 0.331512, 1.957274, 0.769484, -0.872395, -0.340453, -0.484196, 0.430044, -0.374944, -0.064067, -0.484668, 1.451902, 0.290851, 0.345923, 0.408974, -1.741815, -0.977260, 1.117456, -0.851607, 0.013538, 0.361242, -0.049036, -0.836200, -1.665353, -0.655521, -0.486741, -0.961460, -0.867219, -1.151246, 1.509381, 0.241365, -1.168545, 0.120289, 0.723778, 0.265600, -1.524131, 0.359123, 1.800541, 0.296537, 0.779271, -0.543676, 1.626263, 0.497753, 0.534732, -0.432103, 0.636541, 0.593076, 0.413430, -0.493843, -0.099982, 0.467438, -0.593307, 1.405572, 0.607467, -1.963034, -0.210452, 0.091405, -1.174371, 1.468553, -0.268140, -1.708917, -0.723537, -2.672091, -0.733406, -1.562848, -0.925071, -0.116377, 0.973578, -1.873076, 0.606714, 0.939712, 0.876750, -0.895680, 0.043429, 1.002743, 1.204138, 1.141840, 1.552457, 0.516442, -1.020007, -0.064621, 0.626035, -1.588657, 0.686750, -1.730330, -0.769423, 1.731730, -0.298637, -0.818697, 0.644770, 1.986733, 1.005610, 0.444123, 0.217915, 0.534630, 0.347506, -0.252165, -0.419583, -0.231749, -0.454531, 0.217733, 0.019112, 0.820521, -1.840944, -0.333867, 0.662126, -0.593705, 1.470261, 0.470701, -0.160169, -0.792550, 0.312170, -0.617706, -0.217511, 0.056290, 0.417560, -0.738338, -1.057764, -0.678686, -0.511943, 0.087805, -1.178904, -0.020077, -0.735312, 2.225171, 0.800270, 0.307776, -0.867212, -1.096273, 0.326317, 0.557982, -0.679935, -0.191818, 0.175686, -1.618904, -0.590567, -0.570022, 0.781748, 0.462327, -0.040145, -0.855343, -0.115104, 0.041352, -0.382528, -1.040630, -0.754828, 1.059888, 1.446273, -2.367270, -0.393964, 1.498215, 0.949906, -1.220955, -1.028000, -0.646646, 0.597771, -1.376758, 2.454723, 0.547693, -0.644849, -0.266013, -1.838894, 0.593752, -0.462218, 1.172756, -2.429083, -1.188214, 0.680437, -0.962133, -0.182934, 0.995955, 0.785354, -0.182547, 0.997651, 1.069256, -1.853381, -1.233168, -0.086025, -1.636772, 2.082049, 1.851984, 1.205178, 0.451759, 0.889009, 0.999693, -0.248210, 1.156428, 1.004071, 1.532621, 0.079613, 0.445009, -1.388159, 0.520110, -0.819688, 1.848428, -1.377076, 1.085867, -0.141614, 0.861770, 0.276234, 0.035827, 1.225758, 0.684828, 1.369979, -0.410746, -0.820309, -0.377636, -0.423588, 0.595391, -1.244304, -0.390997, 0.778996, -1.181772, 0.299752, -0.354254, 0.125417, -0.625872, -1.942388, 0.825644, -0.059739, -0.513850, 0.616186, -0.580190, 1.449074, -0.495146, -0.127389, -1.154311, -0.067258, 1.918328, 0.588570, 1.920000, -1.576218, 1.528751, -1.122871, -0.134969, -0.946113, 0.089608, -1.008826, -0.221527, -0.143156, -0.100505, 0.446338, 0.169057, 1.698623, 1.607382, 0.188724, 1.018286, 0.905217, -0.102444, 0.475338, 0.193732, 1.070050, -0.063235, 0.435163, -0.417609, -1.132598, -1.638451, 0.048354, 0.495399, -0.425564, 0.595727, 0.606261, 0.475582, -0.847307, 0.389538, -0.885340, -0.389737, 0.611642, 1.989955, 0.228534, 0.282527, 0.208047, -0.338404, -0.477009, 0.123264, -0.511459, 0.634120, -0.609135, 1.334642, 2.303862, -1.827268, 0.043426, 0.304302, -1.076522, -0.034358, 0.643726, 0.186605, -0.361674, -0.387850, -0.196510, -3.149267, -1.358457, -1.089782, -0.776390, 0.519703, 1.502051, -2.449704, -1.217901, 0.622746, -0.046500, 0.561773, -0.721465, 0.417034, -0.146263, 0.255638, 0.343702, 0.162747, 1.131130, 0.547638, 0.686442, -1.400053, 0.611963, 0.041466, 0.625173, -0.287345, 0.764026, 0.499103, -0.848533, 2.211276, 0.318991, 0.369081, -0.419225, 0.461029, 0.673602, 0.190658, -0.626521, 0.955305, 0.829342, -1.397739, -0.032750, -1.406936, 0.803207, -0.557970, 0.175772, -0.794910, 1.165292, 1.091059, 0.380290, 2.041073, 1.646045, 1.178117, -2.504400, 0.332805, -0.694430, 0.105917, -0.774951, -1.343382, -0.100343, -2.266622, -0.623679, 0.254797, -1.548932, 2.874456, -1.521962, 0.131839, 1.147142, -0.138694, 0.032951, -1.226551, -1.464446, 1.581435, 1.407592, 0.603723, 0.853720, 0.399882, -1.098830, -1.262822, 0.311992, -0.454619, 0.048546, -0.403091, 0.479674, 1.122055, -0.863642, -0.572461, 0.307126, 0.134515, -1.134196, -0.697220, 1.503836, -0.612185, -0.134003, 0.851509, -0.426730, 0.518561, -0.692058, -0.254887, -0.442444, -2.284838, -1.922591, -1.090347, 0.265984, 1.055776, 0.247543, -0.035070, 0.697355, -1.213801, 0.701310, 0.651835, -0.124529, 0.508516, 0.862556, -0.741192, 2.027012, -1.202887, 2.278743, 0.107991, -2.065218, -0.301215, 0.255792, -0.305803, -0.591421, 0.437408, 0.755406, -0.651447, -0.786370, -0.446447, 0.689408, -0.914871, 1.561946, -1.494240, 1.000568, 0.156876, 3.194226, -0.252239, -1.588185, -0.142343, -0.903314, 0.303029, 0.809735, 2.731235, 1.064802, 1.342311, -0.890441, 1.049239, -1.544716, 0.609665, -2.905241, 1.280152, 1.009786, -0.211146, 0.432507, 0.109842, -0.196329, 0.650985, 0.411019, 1.910696, 0.489661, 0.914273, 0.305095, 0.131587, -0.639844, -1.057865, -0.415362, 0.763949, -1.743765, -0.887085, -1.587725, 0.803191, -1.211341, 0.415068, 0.681620, -0.248724, -1.734414, 0.061383, -0.150479, -0.791074, -1.264693, 1.038573, -0.654671, -2.685874, 0.286722, -0.986716, 1.278460, -0.263806, -1.095659, 0.710411, -0.436489, 0.346448, -0.846777, -0.403399, -0.136516, 0.610977, 2.001507, 2.172742, 0.212230, 0.655414, -0.475522, 0.491290, 0.985538, 1.673805, -0.552468, -1.057271, -0.756938, -0.276423, -0.122831, 0.063485, -3.406634, 0.056409, 0.500615, 0.296047, -0.893557, -0.470523, 0.265109, 0.051965, 1.235011, 0.133661, 0.644713, -0.340267, -1.117079, 0.020120, 0.093797, -0.439721, -0.612145, 0.766791, 0.245905, -0.015878, 0.474079, -1.062378, -1.446133, -0.353047, 0.077878, 2.559675, -1.040980, -1.128039, -1.611361, 0.386166, -1.455491, 0.648884, 1.013590, -0.666501, 0.747269, -0.789928, 0.271830, -0.177431, 2.176266, -0.714339, -1.270784, -1.934228, -0.788925, 1.342962, 1.440324, -1.150443, -0.209699, -0.180819, -0.242046, -0.695413, -0.408575, -0.386395, 0.561054, 0.937899, 0.387918, 1.350737, -1.682938, -0.131034, 0.162744, -0.669833, -0.260482, -1.658021, 0.501010, -1.059402, -1.902739, 0.600738, 0.510977, -0.960409, -2.073417, 0.526822, -0.161208, -0.218772, 1.431358, -0.133447, 2.009278, 2.163928, 0.428371, 1.429709, 0.487019, 1.312181, 0.139452, -1.344984, -0.753194, -0.601805, 0.952805, -1.213544, -0.735502, 0.222692, 0.503392, 0.591962, 0.220531, 0.067417, 0.009803, 0.033539, -1.374292, 0.786708, 0.314891, 1.504740, -1.166156, -0.717198, 0.819826, 0.071165, -1.149643, 0.864733, -0.810493, -0.077067, -1.190500, -0.601995, 0.297059, 1.709856, 0.513614, 0.685256, -0.886553, 0.590667, 0.781852, 1.515978, 0.541267, 0.972015, 0.515594, -0.755665, -1.196803, 0.129995, -0.280775, -0.886776, 2.097949, 0.263299, 1.317637, 1.840404, 0.984385, -1.069731, -1.216292, -0.886254, 0.271411, 0.694655, -1.284353, -0.758446, 2.365119, -0.573235, -0.657749, 1.394524, 0.254811, 0.659707, -0.896089, 0.412251, 0.201681, -0.870381, 0.672244, -0.029943, 0.637134, 0.256491, -0.420665, -0.956037, 0.234495, 0.969257, -0.537339, -0.738158, -0.312571, 0.058444, -0.657838, 0.413471, -0.320519, -0.059049, -2.792986, 1.537826, -0.752734, 0.886925, -0.330531, -2.573396, 1.461152, -1.668271, -0.540423, 0.512467, -0.488480, -0.314196, -0.167764, 0.185336, 0.747084, 1.717574, 0.066471, 0.615602, -0.717860, 0.459512, 0.328669, -0.116149, -0.221468, 0.408906, -0.143066, -0.767844, 0.938640, -0.321025, -1.378388, -0.234962, 1.094633, -0.868932, 2.986082, -1.126683, 0.734696, -0.402107, -1.252201, -1.532368, -0.664881, 1.087629, 0.448883, -1.888391, 1.375879, -0.516788, 0.172639, -0.009919, 1.044257, 0.022091, -0.859001, -1.243192, -0.647605, 0.446667, -0.338769, 0.988514, -1.210149, -0.330996, -0.533625, -1.863738, 0.190243, 1.692262, -1.524095, -0.566387, 0.620357, 1.142895, -1.699816, 0.288415, -0.056193, -1.227904, -0.219258, 0.623016, 0.846967, -0.259036, -0.081195, -0.308153, -1.394274, 0.934198, -0.545730, -0.161737, 0.638075, -0.049673, 1.265629, -0.598267, -1.390629, -1.036259, -1.067406, 0.123528, 0.305077, 0.856855, -0.897730, -0.960500, 1.943170, -1.833273, -1.636155, 0.912541, -1.169834, -0.651926, 0.950193, -0.896680, 1.220830, 0.834673, 1.222897, 2.003617, -0.532680, -0.137615, -0.546514, 0.075600, -1.336629, 0.983891, -0.364252, -0.089601, 1.253298, 0.254480, -0.471829, 0.867606, 1.176369, 0.062034, 1.178102, -0.525081, 1.161275, -0.193067, 0.139609, 2.463785, 1.461310, 0.766934, 2.281673, 1.209999, 0.519513, 0.068587, 0.097167, -0.108971, 0.207804, 1.257828, 0.774688, -0.381719, -0.269692, -0.720154, -0.781548, -0.903291, 0.555728, -0.552487, -0.352502, 1.527233, -0.753100, 0.269822, -0.851738, 1.662200, 0.644648, 1.797857, -0.549966, 1.246007, -1.445524, -0.299174, -0.925746, -1.467359, 0.041498, -0.519567, -0.323140, -1.069878, 1.555201, -0.502747, 1.765482, -1.828932, -1.256124, 1.881498, -1.290076, -0.514382, -0.990444, 1.528788, -1.345397, -2.085680, 0.546039, -0.997838, 0.420786, 1.091363, -1.921797, 1.417968, -1.588256, -0.349233, -1.880143, 0.609446, 0.183582, -0.277156, 0.501461, 1.545049, -0.754368, 0.242740, -0.393583, -0.006779, 0.859682, -0.008279, 1.328433, -0.226712, 0.256763, 0.763203, -0.585298, -0.600372, 0.608268, -0.224290, -0.075229, -0.944613, -1.421874, -0.220666, 0.347021, -1.926725, 0.872041, 0.439350, -0.300862, -0.262054, 2.043514, -0.448024, 0.052036, -0.377657, -0.577341, 0.252018, 0.234727, -0.031186, -0.869760, -0.766313, -2.689955, -0.218688, -0.450176, -1.216507, -0.045255, -0.266067, -0.626529, 0.480286, 0.748951, 0.491928, 1.459725, -1.750205, -1.251004, -1.203791, 0.321140, -0.299866, -2.022978, 1.052269, 1.147653, -1.040212, -1.489554, -0.367603, 1.223913, 1.129208, 0.435260, -1.644381, 1.047900, -0.632342, -0.286455, -2.216182, -0.501942, -0.649034, 0.270376, -0.239904, -1.695754, 0.863139, -0.215888, 0.498591, -0.807422, -0.619186, -0.352490, -0.987165, 0.922463, 0.630104, 0.155820, 0.712317, -2.025440, 0.739338, -0.827246, -0.877744, 0.333282, 0.093306, -0.353306, -0.573530, -1.720615, 0.164724, 0.277571, -1.539407, 0.696843, -1.314282, 1.279053, 2.097290, 0.329142, 0.860229, 0.171302, -1.209728, -0.065187, 1.025886, -0.994287, 0.364668, -0.851759, 1.422363, 1.255699, -1.245092, -0.836066, -0.075105, -0.186672, -2.514777, 1.378517, 0.512229, 2.281718, 0.005549, 1.252450, -1.458085, -0.535434, -1.911853, 0.818133, 1.546728, -0.629296, -1.448725, -1.028722, 0.370583, 0.630838, -0.662629, -1.851900, 0.278069, 1.609316, -0.278265, -0.423641, -0.771315, -0.233973, 1.117934, 0.723387, -0.442049, -0.469074, 1.741392, -1.077910, 0.278056, -0.384259, -0.026249, -0.610386, 0.979903, -0.030335, 1.789018, 2.301672, 0.414716, 0.491515, 0.858355, 1.432340, -2.232933, -0.963937, 0.764947, -0.081959, 0.734473, 0.871468, -0.901378, 0.113705, 0.759349, -2.049533, -0.195830, -0.264110, -0.215689, 0.453122, 0.713367, 1.182610, 1.142626, -1.766239, -0.340621, -0.629056, 0.622529, -1.480955, -0.563009, 0.475270, -1.613631, -0.832101, 0.013527, -1.105328, -1.753744, 1.104966, 1.055996, 0.624471, -0.427321, -0.008244, 1.360452, -0.038796, -1.834075, 0.735670, -0.125000, -0.216410, -0.601347, 1.004473, 1.165247, -1.688021, 0.811148, 0.906928, -0.922489, -1.562956, 0.908931, 0.316262, -1.135446, -0.081845, -0.321890, -0.462137, -0.308414, 0.191668, -0.229555, -1.248932, -0.389092, 0.727887, -1.090106, -0.145516, 1.049549, 0.374020, 1.151163, -0.504337, -1.112494, -0.450709, 0.987908, 0.576634, 0.307261, 0.129751, -0.108852, 1.563658, -1.571587, -0.234733, -0.519843, -0.793486, 1.354939, 1.461516, -1.112439, 0.924630, -0.076241, -0.665127, 0.885971, 1.368419, 0.862948, 0.060260, -0.820589, -0.321140, -0.192278, -0.616737, -0.774871, -1.585511, -1.034324, 1.178423, -0.465963, -0.926429, 0.842551, -0.639459, 1.311219, 0.576606, 1.643043, -0.932883, -1.403570, -0.332349, 0.722983, -0.865942, -1.071464, -0.072637, -0.220877, -0.161178, 0.144614, 0.941853, 0.776319, -0.972007, 0.721637, -0.536685, 0.137130, 0.015957, -0.760158, -0.212186, 0.441671, -0.196893, -0.292674, -1.033663, 1.574584, -1.936772, 0.077969, 1.389032, -0.734494, 0.810573, -0.782792, 2.121448, 0.486889, -0.981116, 1.450077, -1.331966, -0.404402, -0.270852, 1.152673, -1.875978, -0.340984, 0.470770, 0.016166, 0.326169, 1.503670, -0.178025, 1.045433, -0.843477, -1.352006, -1.027982, 0.791837, 1.460205, -0.831909, -0.644491, -0.320261, 1.320606, 0.950770, 0.556535, 0.295401, -1.306557, 0.422963, 0.123349, 0.503248, -0.744786, 0.486533, -2.408756, -0.614059, -1.272639, -0.154480, -0.243890, 1.063763, 1.465359, 0.554328, -0.746714, -2.018773, 0.237961, -0.392855, -0.797780, -0.484219, 0.853947, 2.007815, 1.459001, -1.731505, -0.423916, -2.136174, 0.047897, 0.560132, 1.690631, 2.392580, 0.549979, -0.333159, 0.152302, 0.524191, 0.699575, -0.922877, -0.368055, -0.698793, 0.214048, 1.026225, 0.977724, -0.476521, -0.850956, -0.312651, -0.363223, -0.049452, -0.799464, 1.108645, -0.335565, 1.339667, -0.621804, 2.614281, 0.373765, 0.307237, -1.778127, -0.203879, -1.504643, 0.652233, 1.033645, -0.152112, 0.477987, -1.046903, -0.558052, 0.970424, 0.545387, -1.861901, 0.250406, -0.260694, -0.589204, 0.656227, -0.107706, -0.039342, -0.053218, 0.153837, -2.135235, 0.602633, -1.993757, -1.052201, -0.036309, -0.651222, 0.061159, -0.492028, 0.700293, 1.410145, -0.465270, 1.123876, -1.209428, -1.693274, -1.699338, -0.882237, -0.149133, 0.834647, -1.018124, 0.822442, 1.003223, 0.245477, 0.593216, -0.607539, -0.236567, 1.727665, 0.784726, -1.500339, 1.546760, -0.498538, -1.562123, 1.501674, -1.648893, 0.715318, 0.743820, 0.376845, -0.522694, 0.759597, -0.825380, -0.608655, 0.050804, -2.316278, 2.008482, 2.394639, 0.109615, -0.993553, -0.053334, -1.049782, 0.769240, -0.700958, 0.300825, 1.492070, 0.283139, -0.846569, -0.950123, -0.914549, 0.232677, 0.712320, -1.799841, -0.331977, -0.912701, 0.821955, 0.935060, -2.244362, -0.115074, 0.435303, 0.526526, -0.162080, -0.086235, 1.172745, 0.904955, -0.095507, 0.813715, -1.288053, -0.763342, 0.363022, 0.965670, -1.281185, 0.317115, -0.416058, -0.898607, 0.922693, -1.696935, 0.217736, -0.228798, 0.248914, -0.751413, 0.133102, 0.908114, 1.528758, 1.147066, -0.957855, 0.132555, 0.093994, -0.262816, 0.976301, -1.537189, 0.424576, 0.304050, 1.880432, 2.122470, -0.812044, 0.514938, -1.749113, 0.309892, 1.862914, 0.836823, 1.110028, 1.015239, -0.588796, -1.747168, 1.251882, 2.337649, 1.198727, -0.694477, 0.390293, 0.722892, 0.261920, 0.549463, 0.576119, 0.599389, 1.344038, -0.879712, 1.393368, -0.780667, 1.195700, -0.246208, 0.719912, -0.007648, 1.961045, -1.453336, -0.002449, -0.141741, 0.427325, -2.422113, 0.695441, 2.022704, 0.017737, -0.596918, 0.155318, -0.858020, -0.520189, -1.453613, 0.816655, -0.593158, -0.844048, 0.358683, 1.632988, -1.399397, -1.344688, -0.917759, -0.030035, 0.234188, 1.358806, -0.101600, -0.474973, 0.369328, 1.646710, 0.121548, 1.602458, 0.780981, -0.593549, 0.417278, -2.432728, 0.249042, 0.660860, -0.345129, -0.760740, 1.199562, 1.023778, 0.529702, -0.183113, 0.623992, 0.794430, 2.513446, -0.012140, -0.662494, 0.246767, 0.311046, -1.491785, 1.067445, -0.938982, -0.831476, 0.919879, -0.853041, -0.764526, -0.351859, 0.311569, 0.738344, -0.028153, 0.539080, 0.779188, 0.964853, -1.733557, 0.682349, 0.388291, 1.695299, 0.760431, 0.173611, -0.273504, 0.244218, -0.345069, -0.105760, -0.984397, 0.209721, -0.203139, -0.677633, -1.332104, 0.814355, 0.378778, -1.209317, -0.487814, 0.339988, -0.475619, -1.345430, 1.914988, -0.571983, 0.277617, 0.639979, -0.046215, -1.771259, -0.154392, 1.341459, -1.466065, -1.013458, -0.281309, 0.309099, -0.214550, 0.084995, 0.491035, -0.531771, -0.450929, -1.461833, 0.219309, 0.773946, -0.467971, -0.641384, 0.310318, 0.540565, -2.837778, 1.528794, 0.307575, -1.057888, 0.635492, 0.451333, -0.322562, 1.752682, 0.974493, -1.201776, -0.405035, -1.488871, 0.300513, -2.175068, 0.955324, -2.212816, -1.864128, -0.857669, 0.940579, -0.630297, -1.123194, -0.651623, 0.629504, 0.520490, 0.110960, 0.572056, 0.577275, 1.597715, -1.006731, -2.229998, -0.761004, 2.592788, 0.836680, 0.307343, -0.201454, -0.206884, 0.429721, -2.511901, 0.963045, -0.660989, 0.169770, -0.883397, -0.108154, 0.903001, 0.222154, 2.461946, 0.322017, -1.059526, -0.376265, 0.742527, -0.827880, -0.278785, -2.317195, 0.637021, 0.022313, 0.641768, 0.421516, 0.499739, 0.522512, -0.086299, 0.058879, -0.215715, 0.290025, 0.499986, 0.619287, -0.829891, -1.387232, 0.347831, -0.095727, 0.640363, 0.024536, 0.626070, -1.131388, -0.510303, -0.753886, 0.917931, 1.644192, -0.231398, 0.446463, -0.506301, -0.096248, 0.388652, 0.286085, -0.429816, -0.597529, 1.362114, 1.021289, 0.965536, 0.849185, -0.899132, -1.131406, -0.216204, -0.825323, -1.056397, -0.473163, 1.462392, 1.551040, 1.251491, -0.088721, 0.701875, 0.709237, -0.637144, -0.195304, 1.949687, 0.996440, -0.111126, 0.016823, 0.623643, 0.844338, 2.228092, 0.611183, 0.644143, -0.230474, 1.764777, 0.784049, 1.328226, 0.964108, -1.940537, -0.430083, -0.382930, 1.268362, 0.250581, 0.924466, 0.420056, -1.198357, -0.581462, -0.184268, 0.207480, 0.637975, -2.098031, -1.343645, 0.395007, 1.135976, 1.579757, -1.502006, 0.337460, -1.034233, 0.216000, 0.776910, 1.052276, -2.708989, -1.037782, -0.139173, -1.382878, 0.895287, -0.016969, -0.744158, 0.052344, -1.415435, -0.635015, 0.497164, -1.186337, -1.922488, 1.289869, -1.855075, 0.909266, -0.245163, -1.540543, -0.122026, 0.656166, 0.633519, 1.043577, -1.132829, 0.497291, -0.222675, -0.143908, 1.135145, 0.197856, -1.297522, -0.662142, -0.879106, 0.201731, -0.323394, -1.486506, -1.170497, -0.903873, 0.262275, 0.106676, 0.344558, 0.274238, -1.682186, 0.483856, 2.086176, -0.318197, -1.650790, 0.158982, 0.013069, -0.447818, 0.865378, -0.260138, 0.362155, -1.190720, 0.084464, -1.095194, -0.373772, 1.029437, -0.130929, 1.509885, -0.221927, -0.442260, 0.924319, 0.846035, 0.424969, 1.427361, -0.475618, 0.000885, -0.230159, 0.045590, 1.162345, 1.985336, -0.841627, -0.426462, -0.678987, -0.948554, 0.417560, -0.086297, 2.054386, -0.535873, -0.244189, 1.089798, 1.488903, 0.095581, 1.405582, 0.959342, 0.412968, -0.865895, 0.502475, 0.759015, -0.053159, 1.474974, 3.311616, -2.726684, 0.201715, -0.776050, -0.654310, 0.922350, -0.732019, -0.243712, -0.918842, 0.407679, -0.172024, 1.252879, -0.700771, 2.686821, -1.067172, 0.365555, -0.391219, -0.300030, -0.578497, -1.978502, -0.776273, -0.625032, -1.051527, -0.399244, 0.710774, -0.562948, -0.223699, 0.492573, 1.007358, 0.972846, -1.387209, 0.582019, -1.426677, -0.008003, 0.265598, 0.552070, 0.777388, 0.818219, -0.136261, 0.039044, 0.246083, 1.091513, 0.778749, 0.633168, 0.109980, -0.013590, 0.897413, -0.463689, -0.896730, -0.036204, 0.032072, 0.997550, 0.055774, 0.232243, -1.368917, -1.291377, 0.784231, -0.574608, 0.746839, -0.066957, -1.259130, 0.031658, 1.024423, -1.309216, 0.044281, -0.522100, -0.537462, 0.200850, -0.233059, -0.410379, 1.988236, -0.199114, -2.977719, -0.556046, -0.932151, 0.857484, -1.064307, -0.300298, -0.525847, 0.968885, -0.269495, 1.587986, 1.478272, 0.099931, 1.095847, -0.447675, -0.630767, -0.014909, -0.404349, 0.092116, -1.904968, 1.620780, 0.685424, 0.166678, -1.116913, 1.176257, 0.955548, -0.005178, -0.889623, 1.759122, 0.098328, -2.833148, -0.843227, -1.122339, 0.372779, 2.148740, 0.148913, -2.040244, -1.440733, -2.519475, -0.819943, -0.801535, -2.454587, -0.123305, -0.974747, 1.020552, 1.183795, 0.963816, 0.211812, -0.717252, -0.977562, 0.258807, 0.050002, 0.538316, 1.429791, -0.708449, 0.378926, -0.905112, -0.148238, 0.425067, 0.144572, 1.625686, 0.796075, 0.640701, -0.705840, 1.034225, -0.299034, 0.590012, -0.861962, 0.641564, -1.355265, 0.086982, 0.607299, -1.406732, -0.071551, -0.646230, -2.016154, -0.228500, 0.135832, -0.893615, 0.980445, 0.667505, 1.059190, 1.273170, 0.923153, 0.233411, 0.705158, 0.681301, -0.639919, -0.680036, -0.845177, 2.011084, -1.515560, -1.787846, 1.719361, 1.001815, -1.299586, 0.204942, 0.900031, 0.796488, -0.498832, -0.912853, 0.414596, 0.389513, -0.385443, 0.736788, -0.181731, 1.634039, 0.514451, -0.300646, -0.132658, -0.421377, -1.448779, 2.394668, -0.960910, -0.529001, -0.655801, 1.013660, 0.103203, 2.503516, -0.041665, 0.070174, 0.502330, 1.330866, 0.326154, -3.084213, -0.461131, 0.576619, -1.394261, -0.616433, 0.155895, -1.259295, -0.458393, -0.537426, -0.156774, 0.066851, 2.088616, -0.448071, 0.222122, -1.649537, 0.907412, 1.730049, 1.451952, 1.402704, 1.228492, 1.188904, 1.755113, 0.071429, 0.869794, 1.189267, 0.856337, 1.923983, 0.855815, 0.326022, 1.167820, 0.010653, -0.397656, 0.698905, 0.258567, 0.003295, -1.432642, 0.810588, 1.081931, -0.202994, 1.039256, 1.166966, -0.521562, -2.195156, 0.338812, 0.435148, -0.129992, 0.667046, 0.917094, -0.022450, -1.697108, -1.048027, 0.449520, -1.876792, -1.001283, 0.710211, -0.763948, 0.491031, -0.338711, 1.397417, 0.237465, -2.064210, 0.740985, -0.517271, -2.677195, 0.437818, -1.215550, -1.539046, 1.286696, -0.870245, -1.476366, -1.034659, -0.087172, 0.034080, 0.513004, 1.121356, -0.927337, -0.690235, 0.186683, -0.723085, 0.368796, -1.374483, 0.741311, 0.137899, -0.693621, 1.293474, 1.113973, 0.725431, -0.513985, -0.386443, 0.322043, 0.261640, 0.887429, 1.252439, -2.384531, -0.040552, 1.336827, 0.641073, 2.312727, 2.210737, -0.104167, -1.625606, -0.453935, 0.611962, -0.836001, 0.847648, -0.692852, 0.065729, 0.502129, 1.794014, -0.603319, 1.993123, 1.125630, -1.480434, 0.678249, 1.059124, 1.125257, -0.012855, 0.330655, 1.537045, -0.890942, 1.340598, -0.658356, 0.593778, 1.176481, 1.247908, -0.786720, -2.270212, 1.765034, 1.028400, 0.456530, -1.584285, 1.720204, -1.113021, -0.302439, 1.228953, -1.397177, 0.977870, 0.239450, -1.525943, -1.123345, -0.658571, -0.988388, -0.248297, 0.146819, -0.318589, 1.350987, 0.239436, -0.742782, 0.233791, -1.043852, -0.105036, -0.632381, -0.515999, -0.918480, 0.357263, 0.604040, 0.240700, 2.000727, 0.115686, 1.306229, -0.255383, -0.642580, -0.860596, -0.926360, -1.364598, 2.063289, -0.267165, 0.367679, -1.777664, -0.826145, -0.069895, -0.167629, 0.207241, -1.065631, 1.309244, -0.617902, 1.454542, 0.153149, -0.036952, 1.227826, 1.243757, 1.261898, -0.066420, 0.476860, 0.155793, -0.358413, -0.064075, -0.908484, -0.293375, 0.536978, -0.392840, -0.789004, -1.823451, -0.980039, -0.356630, -0.122844, -0.955951, -0.048716, 1.080556, 0.437407, -0.720724, -0.379348, -0.255609, -0.962648, -1.698318, -0.677181, 0.779339, 0.945545, 1.508962, 0.498305, -0.900018, 0.074643, 0.313226, -0.577610, 0.128087, -0.971260, 0.712669, -1.011854, 0.703006, 0.457057, 1.455630, -0.145059, -0.389027, -0.530551, 0.217589, 0.142119, 2.125057, 0.566416, 1.359129, 1.166560, 0.110256, 2.295379, -0.667212, -0.561118, -1.343902, -2.398419, -0.728303, 0.108555, -0.611231, -0.029871, 2.319218, 0.068388, -0.996810, 0.829313, 0.823211, 1.255286, -0.107265, -0.166906, 1.591236, -0.630983, 0.646015, 0.076722, 0.054033, -3.119606, -0.389339, -1.723783, 0.630847, 2.791872, 1.028374, 0.523483, 1.315657, 1.991441, 0.383832, -0.307406, -1.206428, 0.065238, 0.640835, -1.728876, -1.836075, -1.003828, -0.589259, -0.745668, -0.355166, 1.269328, -1.036189, -0.141874, -1.332710, -0.403485, 0.385235, 0.963984, 0.003028, -1.178468, -0.609446, -1.105644, -1.372298, -1.101461, -1.390052, -0.308819, 1.102935, 0.179133, 0.830299, 0.496424, -0.090244, 0.517730, -0.428464, -1.391725, 1.220459, 0.550446, -0.036274, 0.209970}, - { -0.873797, -0.848738, 0.434394, 0.165952, -0.101749, -1.035490, -0.313941, 1.901035, -0.700648, -0.075471, -0.845506, -1.490779, -0.059166, -0.216956, 0.965000, -2.053168, 1.183160, -0.124705, -0.073124, -0.964602, -1.012523, 0.175003, -0.593043, 0.837658, -0.948471, -1.660789, 0.364952, -0.619076, -0.205556, 1.231340, -0.032919, -0.623376, 2.630106, 1.001652, -0.541699, 0.510936, -0.844868, 0.333981, 0.590360, 1.539893, 0.121047, -0.326439, -1.142898, 0.100881, 0.001682, 0.226457, 0.455227, -2.178535, -1.930263, -1.940689, -0.535355, 2.456134, -0.842179, -1.431153, -0.341559, 0.826787, -0.870120, -0.224147, -0.630461, 1.170811, 0.061555, 0.332346, 0.344112, 0.467991, -1.455549, 0.901558, 0.609355, 0.004234, 0.045178, -0.775070, -0.056467, -0.186505, 0.102892, -0.162622, -0.107156, -0.855904, 0.212941, -0.592138, 2.223728, 0.567127, -1.973265, 2.420116, -0.155879, 0.123229, 1.717498, -0.907038, 0.156527, 1.441655, 0.738692, 0.514639, -0.253390, 0.309961, 0.525147, 1.214306, 0.966114, -0.212056, -0.028691, -0.959778, 1.220209, -0.392920, -0.583386, 0.549408, 0.567118, -0.388875, 0.510404, 1.207088, 1.067818, 2.785378, 0.119904, -0.309696, 0.085133, 1.613665, -0.213364, 2.088050, -1.747495, 0.512213, -0.739886, 1.429557, 1.183244, 0.359349, 0.699110, -0.229758, 0.394552, 0.850096, 1.506585, -0.150035, -0.664259, 0.077857, -0.115529, -0.198777, -0.324835, 0.440172, -0.410794, 0.064644, 2.482541, 0.663723, -1.026647, -0.753733, 0.606273, 1.908399, 2.288875, -2.382905, 0.185754, -1.359612, 0.526965, -0.336724, -0.301072, -0.192350, -0.911742, -0.914910, -2.069892, 0.448750, 2.022995, 0.292217, 0.689663, 0.857953, 0.857013, 0.496406, 0.330190, -0.334918, -1.269139, -1.219388, -1.287231, 0.126139, 0.248839, -0.006057, 0.286530, 0.283814, -0.029719, 2.597322, -0.232601, 0.035984, 0.453491, 0.259375, 1.594944, 0.299652, 1.063329, -0.428121, 0.883773, 1.323527, 1.469233, 1.079023, 1.544922, -0.796412, 0.317603, 0.594706, 1.502108, 0.713799, 1.263587, -0.051119, 1.575659, -0.559676, 1.466976, 1.303368, 0.794425, -0.056557, 0.437781, 1.135189, -0.171401, -0.503153, -0.258255, 0.282217, -0.229790, -0.443361, -0.133894, -1.271598, -1.086809, 1.053922, 0.362512, 1.625527, -1.131755, -0.154455, 0.215111, 0.157766, -0.339994, -0.134817, -0.163873, 0.070482, 0.822340, 0.501798, 1.239665, -0.178244, 0.194652, 1.483102, -0.376957, 0.165967, 0.348799, -0.184718, -0.123104, -0.004752, 0.349809, 0.808950, 1.053163, -1.154732, 0.397341, -1.790398, 1.952309, 1.133645, -0.549162, -0.380406, -0.249190, 0.542042, 2.855514, -0.419409, 0.691657, 1.575807, -0.110361, 0.263098, 0.032790, 1.337082, -1.250040, 0.763334, -1.417936, 0.787585, 0.012291, -0.114913, -0.870507, 0.763329, -0.397274, 0.591245, -0.537081, 1.551406, -0.536766, -0.740443, 0.586634, -0.971348, -1.399864, -0.398851, -0.730361, -0.006105, 0.126774, -0.945285, 1.812753, -0.850067, -1.243495, -1.297913, -0.222988, 0.534580, 0.825200, 1.004085, 0.887223, 1.258721, 0.404682, -0.341614, -0.728742, -1.276063, -1.446142, -0.308469, 0.522140, -0.706649, 0.385457, -1.652104, 0.377075, -0.587679, -0.060075, 0.435365, 0.636048, -1.143908, -0.051553, 1.598327, -0.177369, -0.519292, -0.888987, -1.278914, 1.128265, 1.716922, 0.322868, 0.615016, 0.255010, 0.929196, -0.587114, -0.093149, 0.670374, 0.013461, -1.869998, 0.879745, 0.165750, 0.410311, 0.617640, -0.098478, -0.043505, 2.344395, 1.043987, -0.188261, 0.381790, 0.042312, -1.256711, 0.370431, 1.242003, -0.689607, 1.101824, -0.694310, 0.494667, -0.819248, -0.591947, -1.423812, -0.368861, -0.260623, 0.692585, -0.014712, 0.321562, -1.137205, -1.942794, 0.173974, 1.239827, -0.255088, 0.515221, 1.069920, -0.179254, -0.624410, 0.998396, 0.463096, -1.133941, 0.200623, 0.982487, -1.282192, 0.531911, -0.150898, 1.157475, 0.737805, -0.138015, -0.038034, -2.561984, 1.240103, 1.580067, 1.360010, 0.274650, -0.419968, 0.258068, -0.019160, 0.284717, -2.363257, 1.246648, -0.068826, -0.189712, 0.301607, -0.430255, -1.701566, -1.662705, 0.336265, 1.188985, -0.277080, 0.038711, 1.753275, -0.354583, -0.030541, -0.635535, -1.350001, -0.453627, 0.485518, -0.310117, -1.991418, -1.394487, -1.204275, 1.385730, 1.532049, -0.743426, 1.726983, 1.107863, -0.855946, -0.961546, -0.495941, -0.735220, 0.434227, 0.100410, -1.540966, -0.993406, 0.162378, 0.485831, -0.807926, 0.786809, -0.013933, -0.182386, -1.773660, -0.409443, -0.300064, -1.691005, -0.700845, 1.251145, -0.515880, 3.084770, -0.196229, 1.341347, 0.695394, -0.392186, -1.540710, -0.785667, 0.029593, 0.518960, -0.179704, 0.086364, 0.228524, 1.096202, -1.575037, -0.534947, 0.325853, 0.882455, -0.051859, 1.480205, 0.590740, -1.057869, 0.001325, 0.270726, 1.132633, -0.782542, 0.312935, 0.896330, 0.507983, -0.365484, -0.712971, 3.394018, -2.490313, -1.125502, 0.206467, 1.599721, 0.657169, -0.283679, 1.124174, -2.348284, 1.158276, -0.729405, 1.331504, 0.728637, -0.010471, 0.853176, -0.540158, 0.710491, -0.648670, -1.261007, 0.659760, -1.602068, 0.385471, 1.236530, -0.373931, -1.216723, 0.782166, 0.518858, 0.741126, 1.181222, -0.452245, -0.310623, -1.592700, -0.840693, -0.190214, -0.913470, 0.343869, -1.387528, -2.146013, -0.244781, -0.831834, -0.837137, 0.244755, 2.495455, -1.153015, 1.277186, -0.971267, 0.588025, -1.154546, 0.336293, 0.926829, 1.499895, 1.330487, 0.631662, 0.131026, -1.181064, 0.394847, -0.757980, 0.679984, -0.890153, 0.533177, -1.126614, -0.925741, 0.253237, 0.810413, 0.449212, 0.714676, 0.255307, 0.330430, 0.954011, 0.548512, 0.848720, 1.380340, -0.641731, 0.287658, 0.502756, 1.067452, 1.856128, 0.385449, 0.763073, 0.279837, -1.192479, 1.987592, 2.017749, -0.596425, 0.702303, 1.582034, 0.259425, 1.140055, 0.230562, 0.741972, 0.074263, 0.458920, 0.199115, 1.359564, -0.839329, -2.541946, -0.491798, 0.371719, 1.352471, -1.210687, 0.491899, -0.475649, 0.507362, -0.791749, 0.517009, -0.384639, -1.172105, -1.063940, 0.921971, 0.444174, 1.094059, 0.287988, -1.274336, 1.197093, 0.114402, -0.392596, -0.334581, 0.742851, 0.230382, -1.044681, -0.260198, -1.060002, 0.161679, -1.366182, 1.715493, 0.209306, 1.106504, -1.441134, 1.291332, 1.787589, -1.581039, -1.660450, 0.856094, 0.173957, 1.193662, -0.010061, -1.120459, -0.234718, -0.649268, -0.587739, -1.134397, 1.177334, -0.167345, -0.857602, -1.271244, 0.274089, 0.694503, -0.852496, 1.864025, -1.209389, -1.311375, 1.830360, -1.357040, 0.234062, -2.102948, 1.517784, -0.943160, 1.044338, -0.350490, 2.443066, 1.127010, -1.708234, 1.092864, 0.236638, -2.241469, 0.971953, 0.949029, -1.333067, -0.687228, 0.603503, 0.878563, -0.973861, 0.838152, -1.061702, -0.198305, 1.495856, -0.649506, 0.272413, 0.521770, -0.132953, -0.037420, 0.106475, -0.344337, 0.492315, 0.446872, -2.509764, -0.670762, -0.960145, -0.816795, -0.053331, -1.027300, 1.226148, -0.033900, 2.407965, -0.221452, 1.425465, -1.311877, 0.013489, 0.008113, -0.191251, 2.021773, -3.252783, 1.689220, -1.509074, -0.916271, 0.623727, 1.759822, 0.701114, 0.231413, 1.493022, 0.053286, 0.194039, 1.398027, 1.552581, -1.376504, 0.588012, -0.956358, 3.370157, -1.695171, 1.505114, -0.276534, -0.484877, -0.974936, -0.570646, 0.780547, 0.365633, -1.182399, 1.681789, 3.150536, -1.725887, 1.237103, 0.383390, -0.462370, 1.023093, 1.177954, 0.082964, -0.684876, -0.939594, -0.162199, -0.418712, -1.879254, 0.320162, -2.534414, 1.286754, 0.486903, 0.199877, 2.164792, 1.028128, -0.485419, -0.596682, 1.829474, -0.985803, -0.179419, -0.466334, -0.067507, 0.013825, 1.129545, 1.016373, 0.237486, -0.015376, 0.120091, -0.069139, -0.409013, -0.222964, 0.354003, -0.469577, -1.378805, -0.463160, -0.193178, -1.071038, 0.935398, -0.468805, -0.565995, 1.398633, -0.682929, -1.204336, 0.394559, -0.448119, 2.308041, -1.190700, -2.944988, 0.503053, -0.861273, 1.403163, -1.010805, 0.062732, 0.931844, 0.701437, -0.312693, 0.835784, -1.129111, 0.414414, -0.001500, -0.908178, 1.339091, 1.351958, 1.430699, 0.872436, -1.369176, 0.460138, 1.954497, -0.434556, 1.318717, 0.158252, -0.553733, 0.567646, -2.140976, 0.427230, -0.587030, -0.065860, 0.340750, 0.793745, 0.026856, 0.932550, 0.574330, 1.644600, 0.056040, 2.007151, -0.868476, 1.326848, -0.577642, 1.320018, -0.026505, -0.936118, -1.411375, -1.504570, 0.027733, -2.179797, 1.987123, -0.363308, 0.034969, -0.154959, -0.672077, -1.134341, 0.653236, -0.377601, -0.231364, 2.208291, -1.377131, 0.375767, -0.867021, -1.167802, -0.510440, 1.779801, -0.548639, -0.062339, -0.371849, -1.968101, 2.398468, -1.447563, 1.790997, 0.017191, 0.028676, 0.024980, -0.623947, -1.332594, 0.118911, 0.493238, 0.152728, -2.150569, -0.439688, -1.828365, 2.434748, 1.759992, -0.310606, -0.013625, 1.051821, -0.827251, 0.326990, 0.589416, -0.096940, 0.338640, 1.035044, 1.343994, -0.331351, 2.242577, -1.399551, 2.062928, -1.202526, -0.481986, 0.371684, -0.408488, 1.638926, 0.356934, 0.290026, 1.014995, -0.480828, -0.059920, 0.469033, 0.818101, -1.861719, -0.427206, -1.553181, -0.111263, -1.027036, -0.273159, -0.293965, 1.437975, -1.677643, 1.511291, -0.464462, 0.083231, 1.444706, -0.690580, 1.430769, -0.107777, 0.290893, -1.815149, -0.360414, 0.844302, -0.638143, -0.056138, -0.127960, -0.699033, 0.494976, -0.217468, 0.931234, 0.748696, -0.236775, 1.116828, -0.909744, -0.041435, -0.260521, 0.927551, -1.006051, -0.731290, -0.867307, 1.167866, -1.071291, 1.119445, -0.163502, 1.031572, -0.553013, -0.062647, 0.677530, 1.237563, 1.131280, -0.829031, -0.313977, 0.744128, 1.602186, 0.740259, 0.273573, 0.110629, 0.803115, -1.319286, 0.537474, 0.343758, 0.750090, -0.225904, -1.282854, -0.244730, -1.796310, -0.042886, -1.348148, 0.726813, 0.780839, -1.283072, 0.898169, 1.196588, -0.528897, -0.426531, 0.095184, 0.282711, -0.267767, 1.532729, 1.115751, -0.145530, 1.657048, 0.429187, -0.080514, 0.122684, 0.684693, 0.789753, -1.426426, -0.189109, -0.688439, 1.737359, -3.321473, -0.441590, 0.155393, 0.945181, -0.122142, 0.151183, -1.243692, 0.658338, -0.739791, 0.479664, -0.867412, -0.647682, -1.436106, 0.097294, -0.762940, -1.316606, 0.929163, 0.294908, -0.150324, -1.508457, -0.574610, -0.507425, 2.037915, -0.985695, -0.572796, 1.252800, 0.977083, 0.329874, -0.276343, -0.343509, 1.197196, 0.186276, -2.006528, 1.563665, 1.140794, -0.866908, -0.161542, 1.071668, 1.752032, 0.583046, -0.253452, -1.027896, 0.099582, -0.507812, -1.285015, 0.363874, -1.059797, 0.702654, -0.325248, 0.490160, -0.659730, 0.780183, -0.216917, -0.245822, 0.689520, 0.025683, 0.711573, -1.346126, -0.555475, 0.012099, -1.599186, 0.469211, -0.120177, -1.124876, -0.861453, -0.292163, 1.975580, -2.214300, 0.855478, -1.891435, -0.679762, 0.610162, -0.352326, 1.538534, 0.588692, -1.623438, 0.250309, 0.933469, 0.328425, -1.483896, -1.599679, -0.351933, 0.151970, 0.117031, -0.649682, -0.131687, -0.779215, 1.688697, -0.918232, 1.200791, -0.151135, 0.099577, -1.721239, 1.901751, 0.181824, 1.044146, 0.434374, -0.519283, 0.608095, 1.933566, 1.488835, -1.741835, -0.937609, -0.018013, 1.345228, 0.273830, -1.149869, 1.121986, -1.263159, 0.477750, -0.092138, -1.863020, 0.496620, 1.065773, -0.503982, 0.388646, 2.007415, -1.375215, -0.184766, 0.910255, 0.056525, 1.144221, -0.057490, -1.091968, 0.492871, 0.968269, 0.324450, -0.669989, -0.537623, -0.045442, 2.118505, -1.169907, 0.137405, 0.104216, -1.343479, -0.134893, -0.448355, 1.556915, -0.892209, 0.073962, -0.311453, 0.948830, 0.220449, 0.056991, -0.682761, 0.393614, -0.735674, 1.198820, 0.945771, -1.015016, 0.837880, -0.736158, -0.279484, -1.033231, -0.774380, -0.225892, -0.117209, -0.803421, -0.216841, -0.372019, 1.668499, -0.303796, 0.199436, 0.602118, 1.160118, 0.132227, -0.966832, -0.248106, 0.682929, 1.887359, -0.485334, -0.435572, 0.926605, 1.921098, -0.456458, -1.021343, -1.167305, -0.217193, -0.296922, 0.598713, 0.135461, -0.851969, -2.482450, 0.719498, 1.871426, 0.447754, -0.729774, -0.064988, -1.305964, 0.142061, -0.417794, -0.958928, -0.554571, 0.913503, 0.056664, 0.758304, 0.407414, -0.799513, 1.865229, 0.137471, -0.935868, 0.499112, 0.840425, 0.200003, 0.212648, -0.282735, 1.887994, -0.956180, 1.131944, -0.882155, -0.934613, 1.165504, 1.199214, 0.679276, -1.120585, 0.602116, -1.896793, -1.706442, -0.703670, -0.947852, -0.840680, -0.234873, 1.326432, -0.153049, 0.201148, 0.787004, 1.347252, 0.499391, -0.057229, 1.624402, 0.987720, -0.414107, 0.012290, 0.004895, -0.752822, 0.711551, -0.557629, -0.810728, -1.731287, 0.195009, 0.629647, -1.200022, 0.311762, 0.508083, 0.567836, -0.641662, -0.928611, 0.545434, -0.948312, 0.207666, -0.850181, 2.400131, 0.134273, 0.074509, -0.686494, 0.277727, 1.153168, 1.032671, 0.987121, 0.678164, -0.977768, -0.052123, -1.717382, -0.509175, -0.463965, 0.652137, 1.443825, 0.640481, -2.073364, -0.619372, -0.735560, -0.851541, -2.002999, 1.286310, 0.034971, 0.150300, -1.160925, -1.258954, 0.422683, 0.427521, -0.679861, -0.454075, -0.197073, -0.635795, 0.784844, 1.820831, 0.945207, -0.384067, 2.049506, 2.184735, -0.329881, -0.854281, -0.113531, 0.659425, 0.777964, 1.120278, 0.246555, -0.748567, 0.694933, -0.033036, 0.472583, 0.353728, -0.683101, -0.053967, 0.832413, 1.176380, 2.500025, -0.058649, -2.196164, 0.082696, -1.409087, 0.794452, 0.729199, 0.803465, -1.026470, -0.857664, -0.886748, 0.782177, 0.523280, -0.379187, 0.772289, 0.324344, -0.266541, 2.075259, -0.752601, 1.725607, 1.632782, -1.057611, -1.094484, 0.898664, 1.329297, -0.724967, 0.295164, -0.780565, 1.676351, -1.121012, 0.777508, -1.112347, 0.181298, 1.917919, 0.392110, 1.008776, -1.475828, 0.701189, -1.211434, 0.998752, 0.106608, 0.409920, 0.341130, 0.290987, 1.876673, 0.529106, 0.040157, -0.570756, -0.074173, -1.214770, 0.615687, 1.121859, -0.907450, -0.568124, -0.424018, 1.042878, -0.975851, -0.550150, 1.892082, 0.720620, -1.169587, 2.019148, 0.440019, 0.073882, 0.884144, 0.918236, 0.327920, 0.658107, -0.303924, -0.383038, 2.123507, -1.153664, 0.560738, -0.419070, 2.195846, -0.120590, -0.617304, 0.196093, -1.322234, -0.956740, -0.035418, -0.068704, 0.886061, 1.812267, 0.716877, -0.484067, -1.702875, -2.159582, 0.615750, -0.857899, 0.719776, 1.226220, 0.308468, -1.369228, -0.690921, -0.446609, 0.855350, 0.456788, 1.420410, -0.420214, 1.412506, -1.570202, 1.082759, 0.365710, -1.007448, 1.037896, 0.769644, 0.536410, -1.276756, -1.274338, 0.612264, -0.629952, -0.504407, -0.199097, -0.481339, 1.450813, -0.409533, -0.188472, -0.631239, 0.862969, -0.098147, -0.964330, 1.252065, -0.093279, 0.137864, -1.199482, -1.788731, 0.769994, -0.400072, -1.830476, -1.394949, -1.278353, -0.563996, 0.618985, -0.062313, 0.296633, -0.040673, -0.136020, -0.328873, 0.041308, -0.059497, -1.289437, -0.204424, -1.230821, -0.593215, -0.055707, -1.353388, -1.085863, -0.361064, -0.836223, -1.297228, 0.227810, -0.662086, 1.700719, -0.150082, -1.231130, 1.889481, -0.309077, -1.080283, -0.877697, 0.450691, -2.065777, 0.473671, -1.005220, -0.685562, -0.209055, -0.297017, 1.234457, 0.599300, -0.207727, 0.408132, -0.888000, 0.809001, -0.258091, 1.156533, 0.562945, 0.423880, -0.206558, 0.236992, 0.708378, -1.079169, 0.786600, -1.449186, -0.616572, -0.340739, -0.521175, 0.488493, -1.822978, 0.262799, -0.251985, -0.534117, -0.753024, 0.859978, 0.462873, 2.527222, 0.227939, 3.183127, -1.767398, -0.837983, 0.326343, 0.784119, 0.222906, 1.294762, -0.445501, -0.071532, -0.423394, -0.046706, -0.347847, -0.298138, -0.079034, 0.403114, -0.145433, -1.924442, 0.106588, -1.465761, 1.869713, 0.549044, -2.200667, -1.284504, 0.828727, -0.189690, -0.621107, 0.128566, 1.462825, -1.125143, 0.122825, 0.666666, 1.579664, -2.042778, -0.735023, 0.883986, -0.966238, 0.281108, -1.446397, -0.223070, -0.707126, 2.315877, -0.092012, -1.102111, -1.108305, -1.030284, 1.539808, 0.455301, -0.356866, -0.598221, 0.956522, -1.436536, -1.484100, -0.004964, -0.200254, 0.666967, -0.116351, -0.086557, 1.248488, -0.494315, -1.005199, 0.472840, 1.267421, 1.562253, -0.693598, -0.550248, 0.216879, -1.292486, 0.247419, 0.237888, -2.072490, -0.139263, 0.407916, 0.689437, 0.590112, -0.463972, -0.068615, -0.178135, 0.253229, -0.451894, -1.941185, -1.022730, 0.973522, -0.966210, -0.948426, -1.234626, -1.155081, 0.743852, 0.956592, -0.547490, 1.782894, 1.317237, 0.477779, -0.919065, -0.321530, -1.749841, -1.050047, 0.266870, 0.499318, 0.154896, 1.397807, -1.208349, -1.314981, -0.111247, -0.716556, -0.545996, -1.147961, 0.927733, 1.395322, -1.108331, -0.390796, 0.538215, 0.532420, 0.197091, 0.366025, 1.122880, 0.355584, -1.520536, -1.471314, 0.102963, -0.739418, -0.152815, 0.625759, -0.477605, -0.543125, -0.533872, -1.256792, -2.013792, -1.821953, -1.129859, -0.698191, 0.222712, -0.350098, 1.535496, -0.652162, -0.921907, 0.157317, 0.491219, -1.133797, -0.251725, 0.770432, 0.069771, -1.747186, 2.412967, -1.034829, -0.444732, -0.981540, -0.224378, -0.911424, 1.578627, -0.767356, 0.335464, 1.712580, -2.346518, -0.361063, 0.126530, -0.726743, 0.778664, -0.022063, 1.452461, -0.194446, -0.726396, -1.224825, -1.057556, -1.125874, 0.722100, -0.871614, -0.020428, 0.324345, 0.268552, 0.832808, 0.319075, 0.431505, -0.800401, -0.038801, -2.086641, 0.649966, 1.235451, -4.070897, -1.339530, 1.289486, -0.722219, 0.565223, 1.034162, 1.303374, -0.990778, -0.414443, -0.746867, -2.194612, 0.711904, -1.192039, 0.514182, 0.143451, -0.766785, -0.255545, 0.928006, -1.898451, 0.714790, 1.152362, -1.035173, 0.315182, 0.243698, 0.901493, 0.248293, 0.168933, -0.423861, -0.978658, 0.691964, -0.798738, 0.154340, -0.175135, 1.116433, 1.405095, 0.679093, -1.813615, 1.019598, -0.870041, 0.794375, -0.738155, 0.696922, 1.056967, 0.434083, -2.276902, 0.821846, -0.917113, -0.744667, -0.806971, 1.013628, 0.509641, 1.162024, -0.655226, 1.574152, 0.690670, 0.742796, 0.178534, 0.818483, -0.313130, -0.221297, -1.424399, -0.745591, 0.707514, 0.970455, -0.014214, 0.156618, -1.155821, 1.255942, 3.028221, -0.489321, 0.050097, -0.152184, 1.291576, -0.459446, 0.708037, 0.475632, -0.316036, 0.458191, 0.745359, 1.435928, -0.338627, 1.819806, -0.761714, 0.747827, 0.367706, 0.266772, 0.344456, -0.901315, 0.576411, -0.387344, 0.014081, -0.322828, 0.685115, 0.776365, 1.589674, -0.268129, -1.650495, 0.848776, 0.413434, -0.768873, -1.680851, 0.997750, 0.942062, 1.376000, -0.345001, 0.892045, -0.758244, 1.953168, -1.764911, -0.679837, 0.424989, 0.991842, -2.356953, -0.813163, 1.398479, 0.378674, 0.504555, 1.506965, -0.413046, -0.442354, -0.867619, 0.076633, 0.602498, -0.341242, -0.320856, 1.622438, 0.126537, 0.514419, -1.166277, 0.875710, 0.077184, -1.256653, -1.438137, 2.148986, 0.335838, 0.835136, -1.388356, 1.474581, -0.197286, 0.482615, 0.996656, -1.405659, -1.418190, 0.749739, -0.867667, 0.485051, 0.456310, 0.831420, -0.668103, -0.568000, -0.330922, -1.074203, -0.774532, -0.643523, -0.102030, -0.806592, -0.770076, 2.659268, 1.016761, -0.571417, -0.311601, -0.885764, -0.296915, -0.288180, 1.147856, -1.023605, 0.031077, 1.436114, -1.375351, -0.433529, -0.039206, 0.038817, -0.304904, -2.759342, 0.371967, 0.723791, 1.044183, 0.367574, -0.355216, 1.785020, 0.031121, 0.075485, 1.493547, 0.213006, 0.294329, 0.829292, -0.406182, 0.372803, 0.527657, 0.016925, -0.739515, -0.989221, -0.722495, 1.819109, -0.896739, -0.659261, 0.100044, 0.451640, -0.308397, -0.223542, 1.298188, 0.968934, 0.037445, 1.430147, 0.416938, -0.079124, 2.172876, -0.421029, -0.663412, 0.067004, 1.032880, 0.280201, -0.241083, -1.814517, -0.125518, 0.770768, -0.958126, -0.325494, 1.666037, -0.369086, 0.515020, -0.160673, -0.162137, -0.346009, 0.433268, -0.857580, -0.373611, -0.586818, -1.405049, -0.563264, 0.351220, 2.014155, -1.868559, -0.911191, -0.029116, 0.020609, 0.663296, 0.249491, 0.315867, -1.744432, 0.941553, -0.789900, -0.051125, -1.083393, -0.961400, 1.331433, 1.483558, -0.423383, 2.454194, 1.514235, 0.376916, -1.131882, -0.895033, 1.956283, -0.309296, 0.004177, -0.422090, -1.001029, -1.235326, -1.575620, 0.553659, 0.619426, -0.432587, -1.210699, -0.562986, 0.937443, 0.495339, -1.617236, -0.675779, 1.006997, -0.897973, -1.865404, 0.254398, 1.652028, 0.003558, 0.445099, 1.600728, 1.887262, 0.337496, 0.028757, -0.438310, -0.518615, 0.189860, 0.225079, 0.475631, -0.616208, -2.361126, 1.381669, 2.546078, -1.069124, 1.203774, 0.064036, -0.177754, 0.187311, 0.292041, -1.980481, 0.569163, 1.275161, 0.229022, -0.434644, -0.186941, -0.806234, 0.457997, -0.345218, -0.650751, -0.262977, 0.549816, -0.235493, -1.573061, 0.274166, -0.045476, 0.104714, -1.065665, -2.423514, 0.362955, -0.199590, 0.168000, -0.158713, 1.103296, -0.878555, -0.496114, 0.822615, -0.084075, 0.658370, 0.567438, -0.230872, -1.978313, -0.093761, 0.123903, 0.555242, -1.062465, 0.848796, -1.509971, 0.461129, -0.658232, -0.559032, 1.128587, 0.636297, -1.425189, -0.067258, -0.845536, -0.415927, -1.578033, -1.620856, -0.324745, -0.891440, -2.679261, -0.817751, -1.106844, -1.082666, 0.275680, 1.100832, 0.252276, -0.336593, 0.814005, 0.637513, 0.794632, 0.206239, -0.040442, -0.818978, -0.366419, -0.109293, 0.368692, 0.876775, 1.090275, -0.389706, -2.402212, 0.984706, 0.700412, -0.661401, -0.441826, -1.419492, -1.409017, 0.560914, 1.029681, -0.602908, -0.982583, 0.263798, -1.025388, -0.780952, 1.625930, -0.073587, 0.885151, -1.980669, 2.042013, 0.842933, -0.390833, -0.601025, 0.807707, 1.254403, -1.052967, -0.365726, -0.694004, -1.081829, -0.479693, -0.609262, 0.744993, 0.882722, 0.926648, 1.249139, -0.253078, 0.457072, -0.383332, 1.265803, -0.172052, -0.365335, -1.200692, -0.057059, 1.577216, -0.958708, 2.119287, -0.002816, -0.211187, 1.230592, 1.087342, -0.127134, -0.490526, -1.253417, -0.097866, -3.023724, 1.004901, 1.301354, -0.286095, 1.543983, 0.421830, -0.326886, -0.017270, 0.766024, 1.246374, 0.257410, -0.644069, 0.832286, -0.149492, -0.175627, 1.709921, 1.261924, -0.713043, 0.827875, 2.204624, -0.456179, 0.290482, -1.062459, 0.090632, -0.100989, -0.518460, -0.075443, -0.004797, -0.184420, 0.194285, -1.157088, 2.513550, -0.894272, -1.771312, 0.124259, 0.005337, -0.027383, -1.438518, -0.633817, -0.635977, -0.780004, -0.835784, 0.240183, -1.122456, 1.110533, -0.551751, 0.387411, 0.920062, 0.051877, -0.154550, 1.371476, -0.750778, 0.051156, 0.699646, -0.143831, 1.361109, 0.011445, 1.288524, 0.897092, -0.168982, 0.672107, 0.434787, -0.495754, -0.587873, -0.202011, -0.872038, 0.147401, 1.562312, -0.128341, -2.550588, 1.082401, 1.406234, -0.017021, 2.685938, -1.381512, -1.386910, 0.115679, -0.957897, 0.047144, -0.084572, -1.183553, -2.155967, 0.748992, -0.394829, 1.378111, 0.181634, 1.443300, 0.984785, -1.698986, -1.787799, 0.480374, -1.247162, -1.450890, 0.010151, 1.331369, -1.185209, 1.567533, 0.176878, 0.006673, 1.509334, 0.656064, -0.208520, 0.790275, 1.287370, -0.988057, 1.352323, -0.965644, -0.226695, -0.747641, 1.267734, 1.194362, -0.937150, 0.746607, -0.066101, -0.018767, -0.559041, -0.092517, 0.267197, -0.251746, -1.465711, -0.751503, -0.102418, 0.376199, -0.935842, 0.297394, 0.061692, -0.409963, 0.348228, 0.939848, -0.416218, 0.543367, 2.159775, -0.183789, -1.399992, -1.619005, -0.266010, 0.225379, -1.257629, -0.534396, 0.911954, -0.914061, -0.486434, -0.459721, 0.407377, 0.156536, 0.246381, 0.712111, -0.178444, -0.330799, 0.391883, -0.150403, -0.321764, -1.634665, -0.589779, -0.576479, 1.604025, 0.044423, 0.504510, 0.289461, 0.226769, -0.998265, 2.690823, 0.613966, -0.140237, 0.679621, -0.197719, 1.236124, -0.960280, -0.015742, -0.897404, -0.168263, 0.815817, 0.977649, 0.343593, 0.050616, -0.158133, -2.074888, -1.612293, -0.339457, -0.050051, -1.126577, 1.861130, -0.452999, 1.338810, 1.283842, -0.450604, 0.866034, -0.228560, 0.194316, -1.797786, 1.455428, -1.355997, 0.285064, -1.415562, -1.932892, 0.081709, 0.714059, 1.371520, 0.379305, 2.052870, -2.220613, 1.345166, 0.464530, 0.153611, 1.036399, -0.034561, -1.411508, 0.501317, -0.418068, -1.607486, -0.265424, -1.061974, 0.415014, -0.649094, 1.600215, -0.249604, 0.178480, 0.260814, -3.084882, -1.084545, -1.489688, -0.361095, 1.684645, 0.097904, 1.256284, 0.555350, 1.316304, 2.437455, 0.291673, 0.329692, 0.933851, -0.414571, 0.691242, 0.430749, -1.042392, -0.649095, -0.415587, 1.178646, -0.217135, 0.060029, -0.297771, 0.088406, -1.205931, -2.160835, 1.332246, 0.284249, 0.529039, -0.594714, 0.984719, 0.797587, 0.581423, 0.104946, 1.455793, -1.910314, 0.504864, -0.321062, 0.121363, 0.281242, 1.108340, 0.700861, 1.095647, 0.535462, 0.262465, -0.025890, -1.750286, -2.005204, -0.424577, -2.246840, 0.214356, 0.831948, -0.444376, 0.817716, -0.143438, 0.429254, -1.760056, 0.413482, 0.214755, 1.273360, -0.246099, -0.810043, 0.890382, -2.385448, -0.130046, -1.297735, 0.371049, -0.913487, 1.407911, -0.257704, 1.337519, -0.081812, 0.480331, 0.192156, 1.260653, 1.096467, -0.127971, -0.886982, 0.894815, 0.968389, -0.301500, 0.387681, -0.387086, 0.684037, -1.555130, -0.633499, 0.512972, 0.385627, 1.611803, -0.464580, -1.364141, 0.652880, -0.643743, 1.007357, -1.016502, 0.295243, -0.489078, 0.682236, -1.220332, -1.109950, 0.704243, 0.475046, 0.444595, 0.848337, -0.582109, -0.500207, 0.819681, 1.372505, -0.293911, 0.006119, 0.982636, 2.509520, -1.590701, -0.516746, 0.689921, 0.027434, -0.251855, 1.205500, -0.607565, 1.177772, -0.220909, 0.046881, 0.247935, -1.024456, -0.055081, -0.986375, -0.293950, -1.565924, -1.082573, -0.370663, 0.979864, 0.566557, -1.663469, -0.726270, -0.961424, -0.504228, -0.721721, 0.234565, 0.538642, -0.789872, 0.868366, 1.041327, 0.172043, 1.314795, -0.457944, -0.613631, 1.322537, -0.030772, -0.624614, -1.096802, 1.396122, 0.086538, 1.805860, 0.861613, 1.297135, 0.852249, -0.964579, -1.412429, 0.482533, -0.351218, 1.300716, -0.423286, 0.908448, -0.000239, 0.030886, 0.715455, 0.406061, 0.082275, 0.393866, 1.795231, 0.202189, -0.375593, -1.054657, -0.541270, 1.456591, 0.795750, 0.002464, 0.842138, -0.695211, -1.249563, -0.509197, -1.205473, 1.295496, 1.894109, -2.063459, -0.444362, 1.328915, 1.459168, -0.053515, -1.585185, 0.678189, 0.526809, -0.953041, -1.016779, 1.018460, -0.452276, 1.970402, -0.244466, 0.206433, 0.334839, 0.534692, 1.338601, 0.795001, -0.009104, 0.532033, -1.029491, 0.093857, -0.211267, 1.504938, 1.320888, 0.349648, 1.773109, 1.159588, -1.789474, 1.503369, -0.229268, 0.285640, 1.318248, -0.193005, 0.186943, -1.435524, 0.196402, -1.075722, -0.511935, 0.649947, -0.621740, -1.034519, 2.135831, -1.077765, -0.200548, 2.065387, -1.597836, -0.249370, -1.934236, -0.330658, -1.191767, -0.076250, 0.150176, 0.406204, 0.323697, 3.698026, 0.211789, -2.661479, 1.602004, -1.266778, -0.664475, 1.356215, -1.584628, 0.092662, 0.344788, 0.873712, 0.658920, 0.100393, -0.893233, 0.258816, 0.056905, -0.422986, -0.705525, -1.541934, 0.411968, 0.587822, -0.856278, -1.149795, -1.372157, 1.993783, 0.417225, 0.249678, -0.501093, -1.052675, 1.509805, 0.729904, -1.524687, -0.587286, -0.241062, 0.229873, 0.873946, -0.374790, 0.167224, -0.710537, 0.706672, 0.609731, 1.501700, -0.872201, -0.264805, 0.308999, 1.120724, -0.467259, -1.403144, -0.171249, 0.027821, 1.402304, 0.437091, 0.300520, 0.428991, -0.417355, -0.860895, -0.078252, -0.338569, 1.243772, 0.139089, 1.237436, 1.046122, 1.758577, -0.056001, -1.080089, -0.318887, -0.165384, -0.659895, 0.929234, 1.041019, -0.270315, -0.547705, -1.190991, 0.840146, -1.577911, -1.255538, 0.141685, -1.121234, 0.354572, -0.597731, -1.384831, -0.240799, -1.942411, -1.046672, 0.720966, 2.493818, 0.879957, -2.212848, 0.111741, -0.267388, 0.934117, 0.089279, -0.000436, 0.107630, 0.143939, -0.819166, 1.700851, -0.471980, 0.310459, -0.178048, 1.128049, -1.592222, -0.693166, 2.404939, -0.129209, -0.127624, -0.104250, -0.244974, -0.614714, -0.048168, 1.135242, -1.841301, 0.444470, -0.369818, -1.147391, 0.854430, 1.825092, -2.209159, 2.176996, -1.346555, -0.384842, -0.474091, -0.343165, -1.344626, 0.451168, 0.129410, -2.659615, -0.912160, -1.285282, 0.654044, 1.643453, 0.028151, -0.349026, 1.439204, -0.518539, 0.757308, 1.491009, 0.223655, -0.702354, -0.353384, 1.156588, 1.766105, 0.509288, -0.477258, -1.016374, 2.185866, -1.464329, 0.804440, -1.149002, -0.115668, -1.518874, -1.132489, -0.547996, -0.355139, -0.037153, 0.138885, 0.448524, -0.643943, 0.768945, -0.028494, 1.330506, 1.342354, 1.309262, 1.002246, -0.872878, 1.984760, -0.266478, 0.566562, -1.007468, -0.306489, -1.001227, 0.589821, -1.682174, -0.843755, -0.846889, 0.644372, 0.950076, -1.954880, -0.622601, 0.808321, 0.211067, -0.099052, 1.187003, -0.134028, 0.750249, 0.238632, -0.361291, 0.986631, 0.092130, 1.326910, 0.413339, -1.180656, -0.673874, -0.054493, -0.196562, 0.928118, -1.231475, -0.247857, 0.219444, -0.477481, 2.117707, -0.154310, -0.788292, 1.126048, 0.608914, -0.085963, 0.452387, 1.516219, 2.029900, 0.110328, -0.552955, 1.371373, 1.015613, -0.870824, 1.305929, -1.351783, 1.183690, 0.557685, -2.189965, 1.307642, 0.575329, -1.316755, -0.545651, -0.733798, 1.549197, 0.982687, 0.552113, 0.620669, 0.432007, -2.005233, 0.830597, 0.192245, 0.279492, 0.541324, 0.554233, -0.604246, 1.188891, -0.565041, -0.111041, -0.133189, 0.465130, 0.287658, 1.154719, -0.115181, 1.699646, -1.027687, 0.177179, 0.940629, -1.050065, 0.924721, 0.015353, 0.056962, -1.470531, 0.692122, 1.031810, -1.298798, -0.094780, -0.542055, 0.453849, 0.019877, 0.275461, 1.306992, -0.387133, -0.720945, -1.384032, -0.776934, 0.800107, 0.297293, 2.844329, -1.404095, 0.017348, -0.124833, -0.795513, -0.331723, -1.333538, 0.999705, 0.696514, 2.221155, 0.953933, 0.946105, -0.272155, -0.687570, 0.722434, 0.932711, 0.306941, 0.729121, -0.954006, 1.687498, 0.066421, -1.249341, -0.003440, 0.774590, 1.373644, -0.021675, 1.202662, -0.525433, 0.254912, -1.717258, 1.595962, -1.250993, 1.840066, 0.776272, -0.053064, 0.827546, 1.317726, 1.787302, 2.163496, 1.430301, 1.907054, 0.694875, -0.280525, 0.260386, -0.352011, 0.458037, -1.110236, 1.267851, -0.534593, -0.588764, 0.309135, -1.879492, 0.035352, -0.139536, -0.742433, 0.742947, 0.745155, -0.704302, 0.784523, 1.054547, -0.421769, 0.011103, -1.998637, 0.119192, 0.124622, 2.825203, -0.460627, -0.430910, 0.366712, 1.041711, 1.476939, -1.608557, -0.261650, 0.064011, 0.246476, -1.521877, 0.431569, -0.218499, 1.881978, -0.419796, 0.227128, -0.213425, -0.831999, -0.696144, -1.488770, -0.249433, -1.439417, 0.888266, 0.692098, 0.734017, -0.763255, 1.502400, 1.066486, -0.234031, 0.623760, -1.265111, -0.223055, -1.584564, -0.982820, 1.074746, -0.432197, -0.063675, -0.634958, -0.919212, -0.433748, 0.339003, -1.147149, 0.155465, -0.803854, 0.480936, -1.530631, 0.639619, -0.584894, -0.881128, 1.382256, -0.568161, -0.601746, -1.697621, 0.585114, -1.891512, -1.233945, 2.312901, -0.286202, 1.023677, -0.833774, 1.562487, 0.888749, 0.846609, -1.384236, -1.249270, 0.611012, -0.319369, 0.185535, -0.684286, 0.963202, 1.487249, 0.932574, -0.919274, -0.107438, -0.201333, -1.151745, 1.627880, 1.440148, -0.573841, 0.038769, -0.037364, 0.731012, -0.882477, -1.442649, 0.647167, -1.522481, -0.268122, 1.323239, 0.621295, 0.141608, -0.516510, 0.406066, 0.239028, 0.695781, 1.016956, -0.869642, -0.024607, 0.124703, 0.321867, 0.365313, -1.692990, -1.110927, -0.524307, 0.070632, 0.326163, 0.397645, 1.022518, 0.509502, 0.741798, -0.534563, -0.909392, 0.710225, -0.793412, 1.015276, 0.203276, 0.048521, -0.520939, -0.599181, 0.169474, 0.712557, -0.146814, 0.790916, 0.262489, -1.183904, -0.414311, -1.456739, -0.532087, 0.492914, 0.443717, -1.224561, 0.652479, -0.381101, 0.631142, -0.951389, -0.748055, 1.958987, -1.621339, 0.219838, 0.953179, -0.549319, 1.214279, 0.600105, 0.616500, 0.474453, 0.352334, 1.781357, -0.131343, 1.826006, -0.397309, -0.879419, -0.981829, -1.032522, -0.999648, 2.178363, -0.077233, -1.956051, 1.457633, 0.382946, 0.860043, 0.571539, -1.925714, 0.738957, -0.411493, -1.556813, -0.678739, -0.880405, -0.111712, 0.134208, 0.861920, -0.127082, 1.562567, 0.687603, 1.027770, -1.012644, -0.862965, 0.228224, 0.867151, -1.607630, -1.615450, 0.520643, 0.905501, 0.017299, 0.609877, -0.301121, -2.213011, 0.350527, 1.106638, 0.482060, -1.072284, -1.693080, 1.429630, 0.164684, 1.160576, -0.980296, -0.126100, 0.674160, -1.052648, -0.317049, 1.049771, -0.466878, -0.358464, -0.931413, 0.668481, -0.850745, -0.305409, 0.465397, 0.167509, -0.839169, 1.125066, -0.916545, 0.104113, -0.034595, 0.699454, -0.119113, -0.397297, 0.925237, -0.534460, 0.340951, -1.038565, 0.331929, 1.531489, 0.765263, -0.388036, -0.233204, 0.151217, 0.694961, 1.053589, -0.201690, -1.535868, -1.294136, -1.335026, 1.431389, 0.020607, 0.918079, 0.529109, 0.678749, -0.822431, 0.068077, -0.914206, -0.181805, 0.288102, -0.427557, 0.481091, -0.438777, -0.602720, -2.422925, 0.266526, -0.887787, 0.715369, -0.006406, -0.550246, -0.040513, -2.680595, -0.973400, 1.081469}, - { -1.832720, -1.832301, -0.858971, -0.068511, 0.015957, 0.290116, 1.971678, -1.818348, -0.171814, -0.607553, -0.728880, -0.441366, 0.858876, 2.170838, -0.364291, -0.829784, 0.012024, 0.694301, -0.471728, 0.533645, -2.756962, 0.344333, -0.424362, 0.119773, -0.122927, 0.057514, -0.004152, -0.039561, -0.612580, -0.230801, 0.137849, 0.240761, -0.169301, 0.456201, -0.721595, -0.872174, -0.288688, 0.255072, 1.326190, 1.211307, 0.513432, -0.468443, 0.373509, -0.792299, 1.450765, -0.415729, 2.088330, -0.106131, -0.043062, 0.968273, 2.410419, -0.235828, -0.797940, 0.751688, -1.564137, -0.640848, 0.212215, -1.039907, 0.185821, -1.470347, 0.349961, -0.207751, -0.378918, -0.753879, -0.930603, -0.345121, -0.229026, -1.150897, 0.066851, 1.770378, -0.543972, 0.184164, 0.398250, 0.929519, 0.023276, 0.484811, -0.624795, -0.665576, -1.271366, -0.751242, -1.510183, -0.701861, -1.110028, -1.332270, 0.358947, 0.886726, 1.266427, 0.979999, -0.016413, -1.086805, 1.895910, -0.121508, 0.554533, 0.862734, -2.948685, -1.875964, 0.898773, 0.562024, -0.484180, 0.442920, -1.016102, 0.427959, 0.664658, 0.519379, 0.699151, -1.260125, -0.394596, 0.767132, -1.205431, 0.354781, -0.356781, 0.193565, 0.510048, -0.572174, -1.350218, -0.129569, 0.242325, -0.105176, -0.226456, 1.051061, 0.158634, -0.200009, 2.841508, -1.140844, -1.462400, -0.907046, -1.141460, -1.085693, -0.960574, -1.226325, -0.471773, -0.280140, -0.505682, -1.638406, -0.631178, -0.614763, -0.446756, 0.718442, 0.693146, 0.435755, -0.638107, 0.797300, 0.179674, -1.070701, -0.541512, -1.400111, 1.144544, -1.396786, -0.492346, 0.752622, 0.066662, 0.914564, -1.012139, -1.494793, -0.521299, -1.873981, 1.265147, 1.512550, 2.974113, 1.182032, 0.759378, -0.690800, 1.808796, 1.401083, 0.847649, 0.802560, -1.396436, -0.315149, 1.822089, 0.725991, -0.004979, 0.968417, 0.416611, 1.363325, 0.466866, -0.077580, -0.095541, -1.406930, -1.484723, -0.915263, 0.072917, -1.466353, -0.065023, -0.658928, 0.576274, -1.147621, -1.056663, -0.068673, 0.880450, -1.145829, -0.193310, 0.661180, 0.573130, 0.269451, 0.513838, -0.596401, 0.246365, 1.414554, -0.090303, -0.613901, -0.840856, 0.653172, 0.613870, 2.125894, 1.610134, -0.471377, -1.230640, -0.007436, 1.088735, -0.195634, -1.577360, 0.007677, 1.062298, -0.128449, 1.264510, 0.597773, -1.096283, 0.475706, -0.733746, -0.687970, 0.796791, 0.256732, 0.722035, 1.082146, 0.423609, 0.577310, -0.365878, -0.496381, 1.341201, 1.129766, 1.175709, 0.580556, 0.136516, 0.746958, 0.872743, 0.233471, 0.912820, -0.818716, -0.209696, -0.231288, -1.115904, -0.707770, -1.173894, -0.683225, 1.008227, -2.021586, 0.215633, -0.395726, -1.350853, 1.054856, 0.036285, 0.592611, 1.490920, -0.306426, -1.733382, 2.096300, -1.702142, 0.794681, -0.573523, -1.543606, 0.251101, -0.814978, 1.209185, 0.257427, -0.467054, -0.231642, 1.365641, -0.022341, -0.195658, 0.929227, -2.461080, 0.277429, 0.806286, -0.119442, -0.151015, 0.138489, -0.139592, 0.344145, 0.723801, 0.078990, 0.372359, 0.139291, -0.112992, -0.262053, -1.438716, 0.526531, 0.164840, -0.365649, 1.257863, -0.163226, -1.424476, 0.085861, -0.065369, 0.054693, 0.015411, 1.315456, 0.948639, 0.494314, -1.497777, 0.469180, 0.760513, -0.167401, -1.211327, -0.206842, -2.275510, 0.406543, 0.138142, -1.265705, 0.004515, -1.475990, 0.499026, -0.161267, -1.581079, -3.206524, 2.897883, -0.532960, -0.166146, 0.554681, 1.294470, -0.625242, -0.379908, -1.071774, 0.636361, 0.381188, 1.096051, -0.346525, -0.466328, 1.722085, -1.031056, -0.601266, 0.544335, 1.931753, -0.551171, 1.320578, -0.840517, 1.393607, -1.427305, 0.202009, -0.568021, -0.225273, -0.586006, 1.125578, 0.015065, -0.066697, -1.185297, 1.081961, 0.488671, 0.233902, 0.880454, -0.500196, -1.530206, -0.475919, -1.061961, -0.901775, -1.407697, 0.194499, -0.067511, -0.435849, 0.167759, -0.046169, -0.082012, -0.922595, -0.726355, -0.185417, -0.137887, 0.127443, 1.373420, 0.658410, 1.215808, -0.813472, -0.684199, 2.648791, 0.441740, 1.938400, 0.109648, -0.236162, -1.431709, 0.582799, -0.389025, 0.277761, -0.337447, -3.193700, -0.221675, 0.663196, -0.607676, 0.117341, -0.691970, 0.891802, -2.124604, -0.379848, -1.323032, -0.176311, -0.288646, -0.587781, -0.559636, 0.294699, -0.766015, -0.464369, -1.888323, 1.668840, -0.135138, -0.911677, -0.798953, 1.501290, -0.088101, -1.330508, -0.729768, -0.795864, -0.719788, 0.856310, 0.218073, -0.139238, 0.248479, 0.704901, -1.052365, 0.106043, 0.192382, 0.482444, -1.383192, -0.417042, -0.279515, -0.420451, -0.950209, 0.565158, 0.107145, 1.493626, 1.135680, -0.384439, 2.292500, -0.852784, 0.033379, -0.823245, 0.275555, 0.840976, 1.467319, -0.046799, 0.593424, 0.179664, 1.275595, 0.441259, 0.189890, 0.755776, 0.062193, -0.030754, -0.147529, 0.038369, -1.106183, -0.758992, 0.807666, 0.147525, -0.360158, 0.756533, -0.815082, -1.088857, -1.195562, -0.625136, -1.546773, -1.907767, 0.491687, 1.402890, -0.836658, -0.556929, -0.357503, 1.039553, -0.315287, -0.862386, -1.647083, -0.207310, -0.588979, -0.442073, 0.213923, -1.506858, 0.283633, 0.500758, -1.495604, -0.346149, 0.315409, -0.221715, 0.127251, -0.462193, 0.097718, 0.905177, 0.539254, 0.542988, -0.699242, -0.768073, 0.478406, -1.973436, 1.005495, 1.411217, -0.376640, 0.914643, 2.122389, 0.179373, 0.335835, 1.605174, -1.332542, 0.560720, -1.304283, -0.214007, -0.368071, -0.361121, 0.088270, 0.852277, 0.676035, -1.668912, -1.088159, 0.728319, 0.070816, -2.142621, 0.133536, 1.304933, 1.604591, 0.364144, -0.918253, -0.889311, -0.772152, -0.109712, -2.507555, 0.612365, 0.922212, 0.269101, -1.306834, 1.662199, -0.952345, 0.080564, 1.261690, -1.065717, 0.447004, 0.578322, -0.605190, 0.405597, 0.208439, -1.513911, -0.967321, 0.662348, -2.511435, 2.148412, -1.824987, -1.407923, 0.207946, 0.465404, 0.111866, 0.568392, 0.663037, -0.573058, -0.252268, 1.180791, 2.533222, -0.982789, -2.392091, 1.514748, -0.786343, 1.256342, 0.690187, -0.519451, 1.145276, 0.627233, -0.046189, -0.292440, 0.167778, -1.281944, -1.418141, -1.294809, 1.703806, -1.274521, 0.433678, 1.340039, -1.085837, -0.419466, 0.392586, -0.076883, -1.202521, -0.254105, -0.129938, -1.213844, 0.215077, -0.577627, -0.576037, -0.395255, -0.432890, 0.065108, 0.385916, -0.421567, 0.680867, 0.050080, -0.038231, -0.579365, -0.376047, 0.047513, 1.822100, 0.348665, -0.237937, -0.250587, -0.216700, 1.285351, 0.673508, -0.332168, 0.485875, -1.115937, -1.933738, 0.092374, 0.113479, 1.871990, -2.083959, 2.236064, -0.596336, 0.753577, -0.370309, -0.974957, 0.154728, -1.722148, 1.599687, -0.599239, 0.047513, -0.263175, -0.138233, 0.657799, -0.104442, 0.226136, -1.586790, -0.978153, 1.350703, -0.256937, -0.381376, -1.441363, 0.487806, 1.699068, -0.319092, -2.177988, -0.953121, -0.973794, -1.070862, -1.698470, 0.541639, 0.668873, -3.107235, 1.655452, 0.794379, -2.353640, 0.237908, 1.039634, -0.620145, 1.731915, 0.969508, -0.116990, 0.537241, -0.796226, 0.099674, -0.715086, -1.882007, -0.071374, 0.215035, 0.575879, 1.360723, 0.561983, -0.036119, -0.954396, 1.044683, 1.550348, 2.127364, 0.943453, -0.297135, -0.218404, -2.061828, -0.445342, -0.894547, 0.544565, 1.451985, -1.014841, 0.579430, -0.726554, 1.344709, -0.550160, -0.303196, -1.198609, 0.077399, 0.768315, -0.999268, 0.519522, -1.051224, 0.931482, -0.395536, 1.162513, 0.278089, -0.425839, -1.166338, -0.359470, 1.594578, 0.081606, 0.541795, 0.268801, 1.330165, -0.149018, 0.796014, -1.124921, -2.210028, 1.153039, -0.019499, -0.427745, 0.112874, 0.343361, 2.295793, 1.582641, -2.030160, -0.641952, 1.653663, -0.835255, 2.106245, -1.253538, -1.021218, 0.132782, 0.920243, -1.913165, -1.480320, 1.390349, 1.405211, 0.447508, -1.130453, -1.836359, -0.142439, -1.110296, -0.316201, 1.062991, 1.171153, -0.605924, -0.183538, 0.573447, -0.804833, -0.380529, -1.068994, 0.819859, -0.156425, -1.132608, 0.970302, -0.877054, -0.968523, -0.759535, -0.204436, -1.202424, 0.450419, 1.451980, -0.895043, -0.252793, 0.042345, 0.171996, -0.431470, -0.194020, 2.010751, 2.093337, -1.276787, -1.818508, -0.883565, 0.725713, 2.360842, 0.103035, 0.218545, 0.184122, -0.337625, -1.713123, -0.259713, -0.068365, 0.750867, -0.289981, 0.293062, 1.460979, -1.428279, -1.602283, -0.519933, 0.291780, -0.541845, 1.944392, -0.848068, -0.055059, -0.575102, 1.139731, 0.300089, 1.244637, -0.444968, -0.473716, 1.352966, 1.002676, 0.518000, 0.045769, 0.742580, 0.213750, -0.288912, 1.460568, 0.904971, -0.332375, -1.212083, 1.191515, -0.313142, 0.525902, 0.314540, 1.430933, 0.901913, 1.119165, 1.287069, 0.097020, -1.333638, 0.025993, -1.795957, 0.227036, 0.901899, 0.731792, 0.448340, 1.146886, -1.029467, -0.749836, 0.385661, 0.227530, 0.541757, -0.285274, -1.029459, 3.143156, -0.673093, 0.183598, 1.170165, -1.265325, -0.110300, 1.668278, 1.304225, -0.197501, 1.205860, -0.525641, 0.832874, 0.096193, -0.015025, -0.402876, -0.892037, -1.435559, -1.131844, 0.887976, -0.362663, -0.795465, -0.288803, 0.954447, -0.290530, 1.531746, 0.288380, 0.057554, 1.145870, -0.629790, 0.606378, -0.031671, 0.860599, 1.394345, 0.559602, 0.708591, -0.352719, -1.275779, -0.816685, -0.798901, 0.236109, -1.024711, -0.820713, -1.596872, -0.270651, -0.966266, 0.926692, -0.145946, 0.854088, 0.835014, 1.099812, -0.318658, -1.557490, 0.915004, -0.210137, -0.887933, 0.276610, -1.697332, 0.285334, -0.021032, -1.857608, -0.700330, 1.589297, -1.511928, -2.671510, -0.685265, 1.029548, -0.107692, -0.299445, 0.502867, -0.720859, 2.159889, 0.025626, 0.450715, 1.272231, -1.585154, 2.098454, -0.924828, -0.004269, 2.454919, -0.534183, 0.252459, -0.596137, -0.403467, -1.860237, -0.488636, 1.001635, -0.401582, 2.360323, -0.355156, -0.274386, -0.343852, -0.300800, 0.250864, -0.462338, 0.264199, 0.559447, 0.395857, -0.473311, -0.956768, 0.180765, -1.820016, -0.930589, 0.537459, 0.136038, -0.543921, 1.116435, 0.628245, 1.916098, -1.992828, -0.287836, 1.293815, -0.772859, 0.338769, -1.437588, -0.526812, -0.458092, -0.381313, -0.095355, -1.235589, 0.393244, -0.065132, -1.077925, 1.595350, 1.835047, -0.562597, -0.483414, 1.095102, -0.367654, -1.105523, 0.633395, -0.194306, 1.364053, 1.124175, -1.737561, 0.869281, -0.734572, -0.149817, 0.485881, -0.345455, -1.151689, 0.547390, 0.432561, 1.336705, -1.884141, -1.135753, -1.585466, -1.011228, 0.554296, 2.381828, 1.025961, 0.912554, 0.861448, -0.080987, 2.130682, -1.874841, -0.864526, -0.187719, -0.498674, -0.211500, -0.595008, 0.034636, 1.181810, 0.361560, -0.475286, 1.743335, 0.193003, -1.352088, -1.713440, -1.195427, 0.567539, 0.277035, -0.860542, -0.776021, -1.035137, -1.112260, 1.138129, 1.493088, 0.776855, -0.733063, -0.106431, -0.670845, 0.057474, -1.047425, -0.932289, -0.255616, -1.421560, -0.034466, -0.807775, 0.436437, 0.112443, -0.125924, -0.247341, -0.696251, 0.690554, 0.062915, -0.291037, 1.614712, 1.802697, 1.747259, 0.359763, 2.167287, 0.721800, 0.553362, 1.585231, -1.219909, 0.292659, -0.175155, 0.250576, 0.433762, 0.978129, -0.192516, 0.926476, 1.709025, -0.196189, -1.419010, -1.610725, -1.139151, 0.418477, 0.030781, 0.428467, 0.955228, -1.329049, 2.136544, -0.753554, 0.144378, -1.309009, -0.319252, 0.107476, 1.100365, -0.912521, -1.695622, -0.812841, -1.670146, 0.165089, -2.167830, -1.395043, -0.240092, -0.956234, 2.072348, 1.244422, -0.367778, 1.155234, 0.255655, -2.433108, 1.811857, 0.465015, -0.801403, 1.000156, -0.738690, -0.758785, -0.720474, -0.360317, 0.259860, 0.884560, 0.272492, 1.525586, -0.576470, 2.047932, 0.135484, 0.551894, 2.383303, -0.955489, 0.178403, -0.092787, 0.223843, -0.771744, -0.261845, 1.081957, -0.977109, 0.019251, -0.546238, 0.274337, -1.248699, 0.676887, -0.349812, -1.017841, -1.433567, -0.248887, 1.819039, 0.184725, 1.013275, -1.002464, 0.608662, -0.671547, 0.889142, 0.821296, -0.301276, 0.167438, -1.690382, -0.594733, 0.181993, 0.024378, -0.840144, -0.440406, -0.995634, 2.284890, -0.954848, -0.549651, 1.281924, 0.398530, 0.214604, -1.571814, -0.723159, 1.025694, -0.131527, 1.511320, 0.101087, 0.379709, 1.005073, 0.219690, 1.867635, -0.602519, -0.175249, -1.208021, 1.990277, 0.305184, 0.312529, -1.529788, -1.648523, 0.458170, -0.047002, -0.167763, -1.502900, -0.736849, 0.057294, 0.191503, 0.028819, 0.871960, -0.075299, 1.080283, -1.097980, 0.553851, -1.281829, 1.702711, 1.489629, -0.467573, 0.651820, 0.080584, 1.232225, -1.631917, -0.707350, -0.820758, -0.550567, -0.114626, -0.980827, 0.215939, -0.888754, -0.044568, 0.021106, -1.694772, -1.290123, -0.449361, 0.201360, 0.307135, -0.236631, -0.497062, -0.008269, -0.079835, -0.477083, -1.013636, -1.081288, -0.650827, -1.004003, 1.938105, 0.910352, 0.125397, -1.068286, -0.932632, -1.579465, -0.369639, -0.247112, 1.062374, -0.408199, 1.482614, -0.460721, 0.186753, 1.481219, -0.489907, -1.337796, -0.699971, 0.808863, 0.330573, 0.796773, 0.493474, 1.002080, 1.190109, 1.285149, -0.342454, 0.004594, -0.810426, 0.256017, 2.175907, 0.478686, -0.974704, -1.650560, -1.919799, -0.806684, 1.051057, -0.607070, 0.663752, 0.270259, -0.430638, 1.120565, 0.087927, 2.074924, 0.341147, 2.966357, 0.593779, 0.663429, -1.682544, 0.139702, 0.506686, -0.941655, -1.716694, -0.806997, 0.248225, -0.081305, -1.143662, -1.654156, -0.653636, 0.912851, -0.017424, -1.201388, -1.235504, -0.580401, -1.734266, -0.500781, 0.232107, -0.233127, 0.353267, 2.143698, -0.892033, 1.679429, 0.409703, 0.692034, 0.135149, -0.127969, 1.853854, 0.666951, 0.854184, -0.262366, -0.888163, 0.425473, 0.125431, 0.536852, -0.433712, 1.129834, 1.142447, 0.964107, 0.475582, -0.869154, -1.984985, -0.461826, -0.958307, 0.428953, -0.349023, -0.722149, -0.506030, 1.771888, 0.811316, -0.173751, -0.491654, -0.636194, -1.172714, 1.070790, 1.203398, -0.137311, -0.855569, -1.357612, 0.378279, -1.863734, 1.382591, 0.011161, -1.917006, 2.309142, 1.009754, 0.280754, 0.611907, -0.911189, -0.995606, 2.437438, -1.078067, 1.152842, 0.310598, 1.330012, -2.374388, 0.508518, -0.003723, -0.536883, -1.564876, -1.709864, 0.211008, -1.114856, -1.267503, 0.804683, 0.595315, -0.210372, -1.404252, 2.588056, 0.606274, -0.851993, -1.447979, -0.348797, -0.229041, -0.514998, 1.409166, -0.407386, 0.679208, -1.228353, 1.360178, 0.324280, 0.649254, -0.012220, -0.707265, 0.131290, -0.467987, 0.640930, -0.559834, -0.252676, -0.597875, -0.562935, 1.400386, -0.424715, -0.513280, 0.855115, 0.191991, -0.964520, -0.352933, 1.081527, 0.190430, 0.749862, 1.467684, 0.727411, -0.477440, -1.095180, 0.179929, -1.044553, -0.830838, -0.363329, 0.575085, 0.461175, -0.688499, 0.429750, 0.402037, -1.836882, -1.343481, 1.654838, -1.162995, 1.352182, 1.885412, 0.471842, -0.214834, -1.703495, 0.202681, 0.709370, -0.447599, -1.471250, 0.199692, 0.875522, 1.048451, -0.065706, 1.700373, -2.122299, -0.090670, -0.201647, 1.091765, -0.379659, 0.401704, 0.833976, 0.731895, 0.709447, -0.716736, 1.911557, -1.902063, -0.518437, -0.797185, -0.235644, 1.499953, 0.308034, -0.259524, -1.326812, -0.966541, 0.738371, -0.642539, 0.572851, -1.120586, 0.427213, 0.299291, 1.581746, -1.596753, -0.973999, 0.965577, -0.479069, 0.557041, -0.319204, -0.217317, 0.091067, 0.094040, -1.680667, 0.072046, 0.373416, 1.088088, -0.062071, 0.105099, 0.786048, -1.472981, -0.201788, -0.110247, -0.124703, 1.582004, 0.138461, -0.182415, -1.592387, 0.741989, -0.558639, -0.519499, 0.115620, -0.566589, -0.851491, 0.051869, -2.199328, 0.093601, 0.315632, 1.293925, -1.664142, 1.020213, 0.606874, 0.803589, -0.082597, 0.499662, 0.228775, -0.448975, -1.426017, -0.140244, 0.716109, 1.553304, 0.719433, 0.975645, 0.837441, 1.120692, -0.498690, 0.216276, -1.416430, 0.547602, 0.884554, -0.883310, -0.177371, -1.273554, 1.098291, 1.180377, 1.756399, -0.333211, -0.435881, 0.519508, 1.114167, 1.609321, 0.071498, 0.581950, -0.299901, -0.765122, -0.488867, -0.035351, -0.826499, -1.425051, 1.434185, -2.210378, -0.940950, 1.816813, 0.063278, 0.753839, 0.144365, -0.979390, -0.045419, 0.297778, -0.383652, 0.864681, -1.206591, 1.243333, 1.348250, 1.174847, -0.953818, 0.840999, -0.557367, 0.314909, -1.597800, -1.079209, 0.089300, 1.671589, -0.808067, 0.076293, 0.096278, -0.324097, 1.691696, 1.088688, -0.102197, 0.713123, -2.436126, -1.598818, -0.794874, 0.210923, 1.283019, 0.547768, -0.579813, 0.036665, -0.833858, -1.421240, 0.138998, -0.325604, 1.347060, 1.670095, -1.604636, -1.615392, -0.460504, 1.857504, 1.631746, 1.057933, -0.055917, -1.313222, -0.422599, -0.455539, 0.352716, -2.021872, -0.631336, -1.906826, 0.767665, 0.506621, -0.745368, -2.332947, 0.296637, -1.559323, 0.071974, 0.169996, 0.840164, 1.604448, -0.374057, -0.587066, -0.986345, -0.414328, 0.850159, -0.583975, -1.069348, 1.588573, -0.591482, -0.796043, 0.680985, 1.771477, -1.231028, -0.448036, -1.177586, -1.279473, 0.321128, 1.709116, -0.429261, -0.260985, -0.207789, 0.436985, 0.088741, 0.429940, -0.731834, 0.052336, 1.085671, 0.893380, 0.509342, -1.013332, -1.639478, -1.357020, 1.414649, -0.899549, -0.376484, -0.306010, -0.792559, -0.055293, 0.482073, 0.641750, 1.808035, -0.040113, 0.704865, -0.915666, -0.265766, -0.023698, -0.925227, -0.746802, 0.304658, -0.184038, 0.726465, -0.155801, -0.556488, 0.655451, 0.320722, 0.093133, -0.784770, -0.076329, 1.074745, -1.257506, -0.258270, -0.301241, -0.722143, 0.731017, 0.167733, 0.636896, 1.598458, 1.704751, -1.142440, -0.685851, 1.584837, -0.626776, -0.328650, -1.091329, 0.971738, 1.043644, 0.636459, -0.312368, 1.026271, -1.633195, 0.539821, -0.964621, -0.400355, 0.132008, -0.179207, 1.159695, 0.955293, -0.303751, -0.217484, 2.513990, 0.006818, 1.458397, 1.128086, 0.183672, -0.298289, -1.102964, 0.110033, -0.208438, -0.686324, 0.899560, -1.023875, -0.859286, -0.054482, -1.038903, 1.151221, 2.548196, 1.908477, 0.645170, -0.369748, 0.810512, -0.793427, -0.527577, -0.077106, 1.186085, 0.483219, -0.320033, 0.698668, 1.683920, 0.120677, 0.988550, -1.493364, -0.723505, 1.647273, -0.100119, 0.438654, 0.719387, 0.246423, 0.010835, -1.617130, -0.479237, 0.434476, -0.064019, 0.166649, -0.006954, 0.024624, -0.196386, 0.907595, -0.046163, -1.095835, 0.691906, -0.998547, 0.673572, -1.293808, 0.368095, -2.459684, 0.205549, 0.994630, -0.035405, 0.655553, 0.210941, 0.881665, 0.522077, -0.416486, -0.501087, -1.235737, 1.380430, -0.896689, -1.126449, -0.861117, -1.431397, -2.374008, -0.185161, -0.301201, 0.348443, 0.192501, 1.046262, -0.469976, -0.498890, 0.674246, 0.308645, -0.763818, 0.463878, 0.370435, 0.017343, 1.601899, -0.941614, 1.008298, 1.594859, 0.178323, 0.637547, 0.078154, -0.958955, 1.312140, 0.096965, 0.933447, 0.181134, 0.097072, 0.052523, -0.295644, -0.979182, 1.415053, -0.556326, -0.102701, -0.510035, 0.550682, 0.363609, 1.633884, -0.310255, 0.013011, 0.593944, -1.758845, -1.518336, -0.633596, -0.383157, 0.163710, 1.571116, 1.590887, 0.072846, 0.871000, 0.914114, -0.498564, -1.488947, 1.305893, 0.905593, -0.227759, 0.241577, 0.191664, 0.456879, -0.794243, 1.409171, -0.744751, 0.360987, 0.473105, -0.391104, -0.905041, 0.197796, 0.320883, -1.731515, 1.453186, -1.293101, -1.584068, 1.283133, 1.476748, -0.405433, -0.493755, -0.052667, -0.204378, -0.541118, 0.492995, 1.250793, 0.172867, -0.667022, 0.677376, 0.179161, -0.777011, -2.078700, -1.441447, 1.048290, -1.487841, 0.294937, -0.452218, -0.472494, 1.731985, 3.650026, -0.748173, -0.511208, -0.744948, 0.017124, -1.601023, 0.232189, -0.721906, -0.198432, 0.396972, -1.718849, -0.180867, -0.529996, -0.838769, 1.875711, 3.127018, -0.494097, 2.461127, -0.644371, 1.168177, -0.150548, -0.736924, -0.582264, 1.461116, 0.402506, 0.569627, 1.566779, 1.184108, -0.874220, -0.039653, 0.212669, -0.989231, -0.177178, -0.326706, 0.289737, -0.194158, -0.352394, 1.279422, -1.613065, -0.546365, -0.947715, -1.307459, 0.228799, -0.325311, 1.857904, 2.367548, -2.143504, 1.185711, 0.023310, -0.245319, -0.053544, -0.714797, -1.207599, -1.017377, -1.153081, 1.471800, -0.533222, -0.106148, -0.435499, -0.688528, 0.656703, 0.574933, -0.005387, -1.395935, -0.104269, -0.041974, -1.274262, -2.136190, 0.863266, -0.901615, 1.035668, -0.844594, 1.283889, 1.755277, -1.890345, -0.731781, 0.709649, -0.313370, 0.332204, 1.560688, 0.055312, 0.138974, -0.560567, 0.677662, 1.751913, -0.258554, 0.290400, -1.187742, -0.071480, -0.079336, 0.250645, -0.204532, 0.252637, 1.147611, -1.279423, 0.355029, -0.927427, 0.858100, -1.442043, -2.436779, -0.571746, -1.054116, 1.802603, 2.568276, -0.159607, -0.859052, -1.755104, -0.075094, 0.429452, -1.066747, -0.327732, 0.900284, 1.293475, 0.276533, -0.250297, -1.543613, 0.290647, 0.933780, -1.894013, 1.612368, -0.305038, -1.473978, -0.414879, -0.597143, -1.643668, 0.926439, 0.284534, 0.730527, 0.589243, 1.370415, 0.247107, -0.581779, -0.423290, 0.896937, 0.578896, 0.511773, 0.637184, 1.315664, -0.373985, 0.337739, -0.314847, 0.928552, -1.051257, -0.182437, 0.619872, 1.506933, -1.069797, -1.396807, 0.876967, -2.091229, -1.156655, 2.691005, -0.585278, -0.225732, -0.034191, 0.634141, 1.449422, -1.051603, 0.026337, 0.924095, -0.585849, -0.333940, 0.320869, -0.078419, -1.023535, -0.673724, -0.946902, -0.576454, -0.123051, -0.696129, 0.947458, 1.158253, -1.118220, -0.088368, 1.723133, 0.866373, 1.321266, -0.190917, -0.354790, 0.016682, 0.199741, 0.076106, -2.472578, -0.491191, -2.213902, 0.196228, 2.089944, -0.411776, 2.540997, -0.091430, -0.098488, 0.489360, -0.307179, 1.029859, 0.807510, -1.159881, 0.117357, -0.490907, 0.707053, 0.678481, 1.080089, 0.715684, 0.392280, 1.221960, 0.265962, -0.557330, 0.048529, 1.294021, 0.719138, -0.532130, 0.813531, 0.469985, 0.261738, -1.594005, -0.788719, -0.911482, -0.952686, -0.764332, -0.574385, 1.037331, -1.486272, 0.428177, 1.293537, 1.290042, 0.406969, -0.124457, 2.316815, -1.143812, 0.641655, 1.688069, 0.462520, 1.728105, -2.043435, 1.850362, 1.750298, 1.289351, 0.872667, 1.511825, -1.111976, 0.591458, -1.504478, -0.400845, -2.375541, 0.574131, 1.670279, 0.082997, -0.891840, -0.406302, -0.698602, -1.408785, 0.481809, -0.187033, -0.097334, -0.633844, -0.185018, -0.273898, -0.073878, 1.428934, -0.053016, 0.264499, 0.102886, -0.643190, -1.125247, -1.210615, 0.318774, 0.647272, -0.335101, -0.642515, -0.202426, 0.977787, -0.303940, -1.143692, 0.081544, 0.612070, -0.146524, 0.035038, 0.376637, 0.528662, 0.028879, -0.666669, -0.328715, 0.782662, -0.252001, -0.690979, -0.469470, -0.708381, -0.923942, 1.304723, 0.370498, -0.702136, 2.529210, -0.054950, -1.187487, -0.773994, 0.278975, -0.066161, 0.794054, 0.504187, 0.416453, -0.379658, -2.723108, 1.534548, 0.762826, -1.756781, 0.547000, -0.091992, 0.610848, -0.860154, -0.568627, -0.950247, -0.804920, 0.094614, -1.800706, -0.957929, -0.320965, -0.430799, -0.273611, 0.908135, 1.306168, -0.062194, -0.090874, 0.912942, -0.646390, -1.807085, -0.933588, -0.043086, -1.305417, 0.050470, -0.895961, 1.310764, 0.325361, -0.191396, -0.824477, 1.590671, 1.758281, -0.422506, 1.825948, 0.476100, -0.775445, -0.588464, -0.446426, -0.199340, -0.919906, 0.858454, 1.077656, -1.283093, 0.956044, 1.074878, 0.652241, -1.355035, -0.212005, -1.201545, -0.353020, 0.531426, 1.915986, -0.965934, 0.190336, 0.986044, 0.037555, -0.529147, -0.311364, 0.181307, 0.533788, -1.400613, 0.775118, 0.701766, 0.295929, 0.886815, 0.687763, -0.114143, 0.539465, 0.115756, -0.460651, -0.316303, 0.939736, -3.304141, 0.450156, -0.150967, 2.590709, 0.475691, -0.205907, 1.243305, -0.637208, 0.222785, 0.748470, 0.327467, 0.099044, 0.032882, 1.738621, 0.283333, -0.374721, -0.404877, 1.469799, -0.053844, 1.463576, 0.215078, -0.376748, 0.739035, 1.232927, -0.653800, 1.776496, 0.890157, 0.706800, -0.507877, -0.380121, 0.118047, 0.689611, 1.743918, -0.404770, -1.151464, -1.695880, -0.247196, 3.640188, -1.533481, -0.319891, 0.076200, -1.185571, 0.724319, -0.097713, -0.008245, -2.476176, -1.042394, -0.678655, 0.153472, 0.218226, 0.139165, -0.681017, -1.256133, -0.485314, 0.202880, 0.737773, 1.368623, 1.149944, -0.349254, -0.539458, 0.673286, 0.197265, -0.546732, -0.936812, 0.438582, -0.255539, 1.015393, 0.830016, -1.748915, 0.401725, 1.051908, -0.120281, -0.238244, 0.804372, 0.132807, 0.436494, -0.404823, -0.035251, -0.534760, -0.289785, -0.845962, -1.671271, -0.229290, 2.076859, 2.112873, -1.734705, 1.491760, -1.510347, 1.728574, 0.348427, 0.931202, -0.590530, -0.623766, -0.825722, -2.842976, -0.180604, 0.063132, 0.524808, 0.880048, 1.452389, -1.411420, 0.406923, -0.009063, -0.083285, -0.258333, -0.411093, 0.422656, 0.351526, -1.174328, -0.700595, 0.957094, 0.464154, 0.961940, 1.651793, -0.459023, 0.032361, 1.719693, -0.214426, -1.066313, 1.203414, 1.512252, -0.013053, 0.078026, -0.355100, -1.151602, 0.038365, 0.746541, 0.082617, 1.483096, 0.532986, -0.779316, 0.470299, 0.304849, -1.239046, 0.833531, -0.991812, 0.001219, 0.173022, -0.671808, 0.625388, 0.298280, 0.077275, -1.210524, -0.468787, -0.921020, -0.478186, -0.619984, -1.110261, 0.231596, 0.518341, -0.374246, 0.364306, -0.562572, 0.492916, 0.312070, 0.588313, 1.482537, -0.015267, -0.783096, 0.834487, -1.457625, 1.100386, 1.968092, 1.456164, -0.946590, 0.203014, 0.477965, -1.088596, 0.540124, 0.629137, 0.011425, 0.905091, 1.384760, -1.472135, 1.190629, 2.056539, -0.319791, 0.130147, 1.271055, -1.372692, -1.440046, 0.155413, -0.549882, -1.216933, -0.015819, -0.415747, 0.416547, -0.130419, 1.552997, -1.359725, 0.513762, -0.531440, 1.063322, -0.155506, 0.520833, -0.800494, 0.013978, -0.176839, -0.779325, 0.078672, 0.725792, 1.546884, -1.768456, -0.794239, 1.242195, -0.893333, -0.502014, 0.070600, -0.002877, -0.731447, 0.871525, 0.182300, 0.421710, -1.074521, 0.645462, 0.754332, -1.022830, 1.445887, 0.281259, 1.092868, 0.415702, 0.041165, -0.861055, -0.345498, 0.856263, 0.615832, -0.432934, -0.813447, -0.851235, 1.111349, -3.271591, 1.546055, 1.239123, -1.086900, -1.780178, -1.544458, 1.873742, 0.374872, 0.415019, 0.469029, 0.937666, 0.049280, 0.529974, 0.003972, -0.480289, -0.680859, 0.451785, -1.514718, -1.901561, -1.334306, -0.493515, 0.337956, -0.781422, -2.140366, 0.328653, 0.174495, -1.144279, -0.566132, 0.672687, -0.089142, -0.648147, 0.545837, -0.986966, -2.011614, 0.259612, 2.211427, 0.211769, 0.397450, -0.224143, 0.499279, -0.465039, -0.018928, -0.256960, 1.115301, 1.085668, 0.455206, -0.426466, -0.145627, 0.715345, 0.300405, -1.221085, -0.755768, -2.435087, -0.035126, -2.416443, 0.488851, 1.770282, 0.528806, -1.465314, 2.651483, -0.128389, -0.417145, -0.577149, -1.435889, 0.905378, 1.964585, 0.894539, -1.143834, -2.072651, 1.425874, -0.124561, 0.389397, -1.235276, -0.594976, -1.501140, -1.478278, 0.740822, -1.062056, -1.572316, -2.148202, -0.152699, -0.186795, 1.114281, -0.963079, 0.069280, -0.894024, -1.605450, -1.513596, 0.530406, -0.645352, 1.083404, 0.359742, 1.405155, 0.044220, -1.192332, 0.917870, 0.855886, -0.670823, -0.254677, -1.302230, -1.053527, -0.272081, 1.250596, -0.953726, -1.029437, -0.859062, -0.629846, 0.961099, -1.023370, 0.629703, -0.341659, -1.246644, 0.595643, -0.020413, 1.129626, 0.275426, -1.704722, 0.773559, -0.604371, -0.377520, -0.792514, -0.408869, 1.876892, -0.904421, -1.188380, 0.658271, -0.445619, -0.551301, 0.335250, 0.279356, -0.326728, -1.484962, 0.847658, -1.794759, 0.811666, 1.128677, -0.788439, -1.644893, -1.258992, -1.379385, -1.906459, 0.497265, 1.033804, 1.151994, 0.456040, -0.774154, -0.012932, -1.069791, 2.342337, 1.340138, -1.019621, 0.425536, 0.735433, -0.142667, -0.560009, -0.683843, 1.341919, 0.859628, 0.137526, 0.492168, 0.054559, 0.083764, -0.791269, 0.056748, -0.414487, -0.863183, 2.167135, 0.286823, -0.313111, 0.553862, 0.000764, 0.187081, 0.415014, -0.025802, -0.304829, -0.418926, -1.503555, -0.728779, 1.791107, -0.841265, -1.676302, -0.522063, 0.116286, -0.168111, 1.006858, 0.101588, -0.587156, -0.705265, 0.165976, -0.946316, -2.553041, -1.526274, 0.298436, 1.922130, -0.205348, -2.022770, -0.205359, -1.507347, 1.873686, 0.673701, 0.306206, 1.039660, -0.038807, -0.043503, 0.350892, -2.025926, 0.437385, 0.458255, 1.634356, -0.854927, 0.371193, -0.254437, 0.073511, 1.285112, 0.519757, -0.228653, 1.085662, -0.791520, -1.802710, -0.449006, -0.484930, 0.119999, 0.560412, 0.440483, -0.542622, -1.215385, 0.284334, -0.250832, -0.322118, -0.851089, 1.981881, 0.650384, 0.415281, -0.822203, 0.005297, 1.911241, -1.385507, -0.036001, 0.816934, -0.378025, 0.169822, -0.399903, 0.239210, 0.001490, 2.054050, -0.406740, 1.091864, -0.547333, -1.399578, 0.162506, 0.490285, 0.052707, 1.901091, 0.474383, -1.488865, 1.136825, -2.066674, -0.006272, -0.850482, -0.035556, -0.235673, -0.218231, 0.282727, 0.491038, 0.287284, -0.097007, 0.115075, 1.457639, -3.244357, 0.470283, -0.098323, 1.030281, -0.464562, -0.475466, 0.046398, -0.243231, 1.409080, 0.194063, -0.350261, 0.745933, 0.467701, 0.776280, 0.235805, 0.157086, -0.076641, 0.586459, 0.434680, -1.791565, 0.026298, 0.676300, -1.933337, 0.501824, 1.718093, 1.288899, 0.260463, 1.045297, -1.146577, 0.918897, 0.953756, -0.042108, -2.098849, 0.199197, 0.322978, -0.817203, -1.332367, 2.005766, -1.458670, 0.591116, -0.432035, -0.049552, -0.598772, -1.272601, -0.008249, -1.420874, -0.134552, 1.230841, 1.296471, 2.309085, -0.049947, -0.267413, 1.373158, -1.519797, -0.545450, -0.721523, 1.381696, -1.716540, 0.787918, 0.554416, -0.070415, -0.762030, -0.824556, 0.283408, -0.479842, 1.808094, -0.094731, -1.870258, -1.043470, 0.024725, 0.248764, 0.703275, -1.028994, -0.107399, -0.053329, -2.229501, -1.665794, -0.031335, -0.125519, -0.599666, 0.731239, -0.421697, 0.417807, 1.440879, 0.735590, -2.647292, 0.874610, 0.068902, -3.034189, -1.514768, 1.375592, 0.138118, 1.404842, 0.102398, -0.253506, -1.386411, -0.538118, -0.184038, 1.438215, 0.493969, -0.344355, -1.197392, 1.258777, -0.539622, 1.933346, 0.174602, -0.641495, 2.560009, 0.559602, 0.081997, 1.169597, -1.220777, 0.234462, -0.656987, 2.071997, 0.665757, 1.414597, 1.569744, 0.661390, 0.028050, -0.450470, 0.289979, -1.190956, 0.048685, 0.806834, -0.217576, -0.051532, 0.061492, -1.341624, 0.204468, 0.275311, 1.015437, 0.390251, -0.190717, -0.765341, -1.368739, -0.462784, 0.637006, -0.131510, 0.360640, -0.004806, -0.531379, 0.609566, -0.608923, -0.201313, -1.309795, -0.631704, 0.626638, 0.900704, 0.671277, -2.451971, 0.267234, -0.331389, 0.085007, -0.389346, 0.581410, 1.572095, -0.876835, 0.656450, 1.103068, 2.145412, -0.329937, -0.144463, 0.489393, -0.236403, -0.864358, 0.506528, -1.366651, -0.288515, -0.242011, -0.249457, -0.689139, 1.594921, 0.178823, -0.543440, -0.212464, 0.580742, 0.784289, 0.682584, -1.622043, -0.654385, 0.722397, 0.800628, -1.158074, 0.123853, 0.264135, 1.566360, -0.495162, 0.559053, 1.675383, -0.264058, -1.245865, 0.682013, 0.000450, 0.147345, -0.998236, -0.175671, -0.534080, 0.808792, 0.319772, -0.367929, 0.974291, -0.049030, -1.117112, 1.419691, -0.501245, -0.725041, 1.341914, 1.344847, 0.253530, 0.158335, 1.682190, -1.131622, 0.167605, -1.342492, -0.446232, 0.349514, 0.185182, -0.928107, -1.647748, -0.625048, 0.311100, -2.428436, -1.072399, 0.715704, -1.987772, 0.292917, -2.224710, -0.744249, -0.702430, 1.110776, 1.642087, 0.232296, -1.799583, -0.788508, 0.667428, -0.747804, -0.234830, -0.306652, -0.182916, 2.065650, 1.100246, -0.033264, -1.415357, -0.515378, -0.811896, 0.025481, -1.196895, 1.921172, 0.185095, -0.489697, 0.986528, 0.013538, -0.041245, 0.219131, -1.576243, -0.437772, 0.696383, -0.081948, 0.215104, 0.455184, -1.427389, -1.780960, 2.597677, -0.157039, 0.020257, 0.820653, 1.046425, 0.050160, -0.094993, 1.200100, 0.346938, 0.850390, 0.367304, -2.310000, 1.211297, 0.150482, 0.043871, -0.508709, -1.609964, -0.297195, -0.181224, 0.111775, -0.982257, 0.678733, 1.204637, -0.920422, 1.300763, 1.967843, 0.612005, 0.491201, -0.360247, -0.975194, -0.668533, 0.805851, 0.523935, 0.195248, -0.130975, -1.337807, -0.786042, 0.599628, 1.169225, 2.658781, 1.300806, 0.177758, -0.573090, -0.419563, 0.170684, 1.118638, -0.425810, 0.999040, -0.059230, -1.428994, -0.652792, 0.191031, 0.170650, 0.706141, 1.963883, -0.381524, 0.169058, -0.872359, -0.993459, 1.201042, 1.368303, 0.624524, -2.418988, 0.149065, 1.952251, -1.809313, 1.548608, 0.564970, 0.469068, 1.563380, -0.134034, -0.510471, 1.281595, 1.207709, -1.528424, -0.044249, 1.197483, -0.093338, -1.051536, -0.398160, 0.772390, 0.157586, 2.020971, -0.659765, 1.254528, 0.567158, 0.622205, -1.150470, 0.139632, 0.142316, -0.064545, 0.260148, -0.534607, -0.931033, -1.101969, 0.532323, -0.767783, -1.608334, -0.313577, 0.086653, 0.291630, 0.036925, 0.030688, -0.117193, 0.185717, 0.623620, -0.210230, -0.096605, -0.283992, -2.347278, -1.262812, 1.042450, -0.429306, -2.661640, 0.675233, -0.607473, 1.390264, -1.861211, -0.134102, 0.901294, -1.293585, 0.742760, 0.391332, 0.926030, -0.426751, 0.337803, 0.991124, -0.618245, -0.664740, -0.103559, -0.255470, -0.502952, -0.043288, -0.672390} -} -}); - -#endif /* EXPORT_PARAMETERS_INPUTNODE_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode.hpp deleted file mode 100644 index e82011643..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode.hpp +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef EXPORT_ATTRIBUTES_OUTPUTNODE_H -#define EXPORT_ATTRIBUTES_OUTPUTNODE_H - -#define _OUTPUTNODE_IN_CHANNELS 16 -#define _OUTPUTNODE_OUT_CHANNELS 10 - -#endif /* EXPORT_ATTRIBUTES_OUTPUTNODE_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_b.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_b.hpp deleted file mode 100644 index cc150ee13..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_b.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef EXPORT_PARAMETERS_OUTPUTNODE_B_H -#define EXPORT_PARAMETERS_OUTPUTNODE_B_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> OutputNode_2 = std::make_shared<Aidge::Tensor>(Aidge::Array1D<float, 10> { -{ 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000, 0.010000 } -}); - -#endif /* EXPORT_PARAMETERS_OUTPUTNODE_B_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_w.hpp b/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_w.hpp deleted file mode 100644 index 303ae8366..000000000 --- a/aidge_core/unit_tests/dummy_export/include/attributes/OutputNode_w.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef EXPORT_PARAMETERS_OUTPUTNODE_W_H -#define EXPORT_PARAMETERS_OUTPUTNODE_W_H - -#include <aidge/data/Tensor.hpp> -#include <memory> - -std::shared_ptr<Aidge::Tensor> OutputNode_1 = std::make_shared<Aidge::Tensor>(Aidge::Array2D<float, 10, 16> { -{ - { 2.212206, 1.163079, 0.774004, 0.483805, 1.043440, 0.299563, 1.183926, 0.153025, 1.891711, -1.168815, -1.234741, 1.558071, -1.771029, -0.545945, -0.451384, -2.355630}, - { 0.579384, 0.541440, -1.856082, 2.678507, -1.976880, 1.254634, -0.208019, -0.548774, 0.244422, -0.681064, -0.037161, -0.135316, -0.487750, 0.377231, -0.022617, 0.410164}, - { 0.574614, 0.571268, 1.466126, -2.757963, 0.686290, 1.076280, 0.354961, -0.614133, 1.073170, 1.830765, 0.120175, -1.146806, -0.971110, 0.053838, -0.775697, -2.507481}, - { -0.788218, -0.591650, 0.741773, 0.858605, -1.473444, -0.227942, -1.073093, 0.201315, -1.042483, 0.350055, -1.327885, 0.536052, -1.474966, 1.519444, -0.524142, 1.904088}, - { 1.266256, -1.573443, 0.895064, -0.140079, -0.601595, 0.296701, 1.204056, 1.311195, -0.971219, 0.503590, -0.582562, -1.189445, 0.371708, -0.550214, 0.930007, -1.591876}, - { -1.422575, -1.108195, -0.517620, 0.078720, 2.008832, -0.918563, 0.286308, -0.745715, 0.560459, -1.208086, 0.969760, 1.814021, -0.528537, -1.522743, -1.889090, -2.515245}, - { 0.654791, -1.354933, -0.454813, -0.957484, 0.325108, -0.724856, -1.300234, 1.111964, 0.367934, -0.478272, 1.453426, -1.173949, 0.241542, -0.792185, 0.478980, 0.932104}, - { 0.968851, -3.155774, -1.021824, 2.193530, -0.068128, -0.538592, -0.318683, -0.861133, -0.176343, -1.881519, 0.356553, -0.720571, 0.744192, -0.356016, 0.778742, -0.159640}, - { 0.608782, 1.797448, 1.074176, 0.195949, 0.066428, -1.737640, 0.848699, 0.047347, -0.800380, 0.145809, -0.168822, 0.326049, 0.936328, 0.457878, 0.357444, -0.894258}, - { 0.779328, 0.493839, -1.010307, -0.904343, -0.391573, -1.214079, 1.316619, 2.156406, -0.432926, 1.093822, 0.715360, 1.827143, 0.925416, -1.044670, -0.904951, 1.006219} -} -}); - -#endif /* EXPORT_PARAMETERS_OUTPUTNODE_W_H */ diff --git a/aidge_core/unit_tests/dummy_export/include/dnn.hpp b/aidge_core/unit_tests/dummy_export/include/dnn.hpp deleted file mode 100644 index 3a4d5c02e..000000000 --- a/aidge_core/unit_tests/dummy_export/include/dnn.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef DNN_HPP -#define DNN_HPP -#include <aidge/graph/GraphView.hpp> -/** - * @brief This file contains all of what is related to the construction of the - * neural network - * - */ - -/** - * @brief This function generate the exported Aidge::GraphView. - * - * @return std::shared_ptr<Aidge::GraphView> - */ -std::shared_ptr<Aidge::GraphView> generateModel(); - -#endif /* DNN_HPP */ diff --git a/aidge_core/unit_tests/dummy_export/main.cpp b/aidge_core/unit_tests/dummy_export/main.cpp deleted file mode 100644 index 640fc1fe6..000000000 --- a/aidge_core/unit_tests/dummy_export/main.cpp +++ /dev/null @@ -1,23 +0,0 @@ -/* -Example main.cpp used to test aidge export. -This file is copied in the test export. -*/ -#include <iostream> - -/* Register default cpu Tensor implementation */ -#include <aidge/backend/cpu/data/TensorImpl.hpp> - -/* Include model generator */ -#include "include/dnn.hpp" - -int main() -{ - - std::cout << "BEGIN" << std::endl; - - std::shared_ptr<Aidge::GraphView> graph = generateModel(); - - std::cout << "END" << std::endl; - - return 0; -} diff --git a/aidge_core/unit_tests/dummy_export/project_name.txt b/aidge_core/unit_tests/dummy_export/project_name.txt deleted file mode 100644 index eade0289a..000000000 --- a/aidge_core/unit_tests/dummy_export/project_name.txt +++ /dev/null @@ -1 +0,0 @@ -dummy_export \ No newline at end of file diff --git a/aidge_core/unit_tests/dummy_export/python_binding/pybind.cpp b/aidge_core/unit_tests/dummy_export/python_binding/pybind.cpp deleted file mode 100644 index 6514fe0d5..000000000 --- a/aidge_core/unit_tests/dummy_export/python_binding/pybind.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include <pybind11/pybind11.h> - -#include "dnn.hpp" - -namespace py = pybind11; - - -void init_dummy_export(py::module& m){ - m.def("generate_model", generateModel); -} - -PYBIND11_MODULE(dummy_export, m) { - init_dummy_export(m); -} diff --git a/aidge_core/unit_tests/dummy_export/src/dnn.cpp b/aidge_core/unit_tests/dummy_export/src/dnn.cpp deleted file mode 100644 index 69a5269b6..000000000 --- a/aidge_core/unit_tests/dummy_export/src/dnn.cpp +++ /dev/null @@ -1,232 +0,0 @@ -/******************************************************************************** - * This file has been generated by the Aidge export. - ********************************************************************************/ - -/*** STD INCLUDES ***/ -#include <memory> // std::shared_ptr - -/*** AIDGE INCLUDES ***/ -#include <aidge/graph/GraphView.hpp> // Aidge::GraphView -#include <aidge/graph/Node.hpp> // Aidge::Node -#include <aidge/graph/OpArgs.hpp> // Aidge::Sequential - -/*** AIDGE OPERATORS ***/ - -/*** OPERATOR ATTRIBUTES & PARAMETERS ***/ -#include "aidge/operator/Producer.hpp" -#include "attributes/InputNode_b.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/InputNode_w.hpp" -#include "aidge/operator/FC.hpp" -#include "attributes/InputNode.hpp" -#include "aidge/operator/ReLU.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/FC1_b.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/FC1_w.hpp" -#include "aidge/operator/FC.hpp" -#include "attributes/FC1.hpp" -#include "aidge/operator/ReLU.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/FC2_b.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/FC2_w.hpp" -#include "aidge/operator/FC.hpp" -#include "attributes/FC2.hpp" -#include "aidge/operator/ReLU.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/OutputNode_b.hpp" -#include "aidge/operator/Producer.hpp" -#include "attributes/OutputNode_w.hpp" -#include "aidge/operator/FC.hpp" -#include "attributes/OutputNode.hpp" - -/*** HEADER ***/ -#include "dnn.hpp" - - -std::shared_ptr<Aidge::GraphView> generateModel() { - /*** BUILDING GRAPH ***/ - std::shared_ptr<Aidge::GraphView> graph = std::make_shared<Aidge::GraphView>(); - - /*** INPUTNODE_B ***/ - std::shared_ptr<Aidge::Node> InputNode_b = - Aidge::Producer( - InputNode_2, - "InputNode_b" - ); - graph->add(InputNode_b); - - - - /*** INPUTNODE_W ***/ - std::shared_ptr<Aidge::Node> InputNode_w = - Aidge::Producer( - InputNode_1, - "InputNode_w" - ); - graph->add(InputNode_w); - - - - /*** INPUTNODE ***/ - std::shared_ptr<Aidge::Node> InputNode = - Aidge::FC( - _INPUTNODE_IN_CHANNELS, - _INPUTNODE_OUT_CHANNELS, - "InputNode" - ); - - InputNode_w->addChild(InputNode, 0, 1); - InputNode_b->addChild(InputNode, 0, 2); - - graph->add(InputNode); - - - - /*** RELU0 ***/ - std::shared_ptr<Aidge::Node> Relu0 = - Aidge::ReLU( - "Relu0" - ); - - InputNode->addChild(Relu0, 0, 0); - - graph->add(Relu0); - - - - /*** FC1_B ***/ - std::shared_ptr<Aidge::Node> FC1_b = - Aidge::Producer( - FC1_2, - "FC1_b" - ); - graph->add(FC1_b); - - - - /*** FC1_W ***/ - std::shared_ptr<Aidge::Node> FC1_w = - Aidge::Producer( - FC1_1, - "FC1_w" - ); - graph->add(FC1_w); - - - - /*** FC1 ***/ - std::shared_ptr<Aidge::Node> FC1 = - Aidge::FC( - _FC1_IN_CHANNELS, - _FC1_OUT_CHANNELS, - "FC1" - ); - - Relu0->addChild(FC1, 0, 0); - FC1_w->addChild(FC1, 0, 1); - FC1_b->addChild(FC1, 0, 2); - - graph->add(FC1); - - - - /*** RELU1 ***/ - std::shared_ptr<Aidge::Node> Relu1 = - Aidge::ReLU( - "Relu1" - ); - - FC1->addChild(Relu1, 0, 0); - - graph->add(Relu1); - - - - /*** FC2_B ***/ - std::shared_ptr<Aidge::Node> FC2_b = - Aidge::Producer( - FC2_2, - "FC2_b" - ); - graph->add(FC2_b); - - - - /*** FC2_W ***/ - std::shared_ptr<Aidge::Node> FC2_w = - Aidge::Producer( - FC2_1, - "FC2_w" - ); - graph->add(FC2_w); - - - - /*** FC2 ***/ - std::shared_ptr<Aidge::Node> FC2 = - Aidge::FC( - _FC2_IN_CHANNELS, - _FC2_OUT_CHANNELS, - "FC2" - ); - - Relu1->addChild(FC2, 0, 0); - FC2_w->addChild(FC2, 0, 1); - FC2_b->addChild(FC2, 0, 2); - - graph->add(FC2); - - - - /*** RELU2 ***/ - std::shared_ptr<Aidge::Node> Relu2 = - Aidge::ReLU( - "Relu2" - ); - - FC2->addChild(Relu2, 0, 0); - - graph->add(Relu2); - - - - /*** OUTPUTNODE_B ***/ - std::shared_ptr<Aidge::Node> OutputNode_b = - Aidge::Producer( - OutputNode_2, - "OutputNode_b" - ); - graph->add(OutputNode_b); - - - - /*** OUTPUTNODE_W ***/ - std::shared_ptr<Aidge::Node> OutputNode_w = - Aidge::Producer( - OutputNode_1, - "OutputNode_w" - ); - graph->add(OutputNode_w); - - - - /*** OUTPUTNODE ***/ - std::shared_ptr<Aidge::Node> OutputNode = - Aidge::FC( - _OUTPUTNODE_IN_CHANNELS, - _OUTPUTNODE_OUT_CHANNELS, - "OutputNode" - ); - - Relu2->addChild(OutputNode, 0, 0); - OutputNode_w->addChild(OutputNode, 0, 1); - OutputNode_b->addChild(OutputNode, 0, 2); - - graph->add(OutputNode); - - - - return graph; -} diff --git a/aidge_core/unit_tests/dummy_export/version.txt b/aidge_core/unit_tests/dummy_export/version.txt deleted file mode 100644 index 77d6f4ca2..000000000 --- a/aidge_core/unit_tests/dummy_export/version.txt +++ /dev/null @@ -1 +0,0 @@ -0.0.0 diff --git a/unit_tests/Testing/Temporary/CTestCostData.txt b/unit_tests/Testing/Temporary/CTestCostData.txt deleted file mode 100644 index ed97d539c..000000000 --- a/unit_tests/Testing/Temporary/CTestCostData.txt +++ /dev/null @@ -1 +0,0 @@ ---- diff --git a/unit_tests/Testing/Temporary/LastTest.log b/unit_tests/Testing/Temporary/LastTest.log deleted file mode 100644 index 0a73a46cc..000000000 --- a/unit_tests/Testing/Temporary/LastTest.log +++ /dev/null @@ -1,3 +0,0 @@ -Start testing: Nov 29 13:22 UTC ----------------------------------------------------------- -End testing: Nov 29 13:22 UTC diff --git a/unit_tests/operator/Testing/Temporary/CTestCostData.txt b/unit_tests/operator/Testing/Temporary/CTestCostData.txt deleted file mode 100644 index ed97d539c..000000000 --- a/unit_tests/operator/Testing/Temporary/CTestCostData.txt +++ /dev/null @@ -1 +0,0 @@ ---- diff --git a/unit_tests/operator/Testing/Temporary/LastTest.log b/unit_tests/operator/Testing/Temporary/LastTest.log deleted file mode 100644 index fc82d020e..000000000 --- a/unit_tests/operator/Testing/Temporary/LastTest.log +++ /dev/null @@ -1,3 +0,0 @@ -Start testing: Nov 27 09:25 UTC ----------------------------------------------------------- -End testing: Nov 27 09:25 UTC -- GitLab From 73593870ce14b38c1ee7488f7edb8d4f3a3ce744 Mon Sep 17 00:00:00 2001 From: bhalimi <benjamin.halimi@cea.fr> Date: Fri, 17 Jan 2025 14:32:26 +0000 Subject: [PATCH 095/157] add pybind_Abs file --- python_binding/operator/pybind_Abs.cpp | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 python_binding/operator/pybind_Abs.cpp diff --git a/python_binding/operator/pybind_Abs.cpp b/python_binding/operator/pybind_Abs.cpp new file mode 100644 index 000000000..e8ae1c26e --- /dev/null +++ b/python_binding/operator/pybind_Abs.cpp @@ -0,0 +1,31 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <pybind11/pybind11.h> + +#include "aidge/data/Tensor.hpp" +#include "aidge/operator/Abs.hpp" +#include "aidge/operator/OperatorTensor.hpp" + +namespace py = pybind11; +namespace Aidge { + +void init_Abs(py::module& m) { + py::class_<Abs_Op, std::shared_ptr<Abs_Op>, OperatorTensor>(m, "AbsOp", py::multiple_inheritance()) + .def(py::init<>()) + .def_static("get_inputs_name", &Abs_Op::getInputsName) + .def_static("get_outputs_name", &Abs_Op::getOutputsName) + .def_readonly_static("Type", &Abs_Op::Type); + declare_registrable<Abs_Op>(m, "AbsOp"); + + m.def("Abs", &Abs, py::arg("name") = ""); +} +} // namespace Aidge \ No newline at end of file -- GitLab From 025af1e0fdae8df77771cbf79036d9b1ce3d8829 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 12:38:41 +0000 Subject: [PATCH 096/157] Replace 'iostream'/'sstream'/'ostream' whenever possible by 'fmt' or nothing if there is nothing to print --- include/aidge/data/half.hpp | 95 +++++++++------ include/aidge/data/half_fmt.hpp | 18 --- .../aidge/graphRegex/GraphFsmInterpreter.hpp | 13 +- include/aidge/graphRegex/GraphLexer.hpp | 1 - .../aidge/graphRegex/GraphStrInterpreter.hpp | 1 - include/aidge/graphRegex/matchFsm/FsmEdge.hpp | 11 ++ include/aidge/graphRegex/matchFsm/FsmNode.hpp | 11 ++ .../nodeTester/ConditionalInterpreter.hpp | 22 +++- include/aidge/nodeTester/ConditionalLexer.hpp | 8 +- include/aidge/utils/Directories.hpp | 80 +++++++----- include/aidge/utils/Log.hpp | 2 +- include/aidge/utilsParsing/ParsingToken.hpp | 115 ++++++++++-------- src/graphRegex/GraphLexer.cpp | 49 ++++---- src/nodeTester/ConditionalInterpreter.cpp | 84 +++++++------ src/nodeTester/ConditionalLexer.cpp | 86 +++++++------ src/nodeTester/ConditionalParser.cpp | 46 ++++--- unit_tests/graphRegex/Test_GraphLexer.cpp | 28 +++-- unit_tests/graphRegex/Test_GraphParser.cpp | 59 ++++----- .../nodeTester/Test_ConditionalLexer.cpp | 34 ++++-- unit_tests/operator/Test_MatMul_Op.cpp | 9 +- unit_tests/operator/Test_Operator.cpp | 4 +- unit_tests/operator/Test_Squeeze_Op.cpp | 37 +++--- unit_tests/operator/Test_Unsqueeze_Op.cpp | 32 ++--- 23 files changed, 479 insertions(+), 366 deletions(-) delete mode 100644 include/aidge/data/half_fmt.hpp diff --git a/include/aidge/data/half.hpp b/include/aidge/data/half.hpp index 1464ac1e0..d7a9cae7e 100644 --- a/include/aidge/data/half.hpp +++ b/include/aidge/data/half.hpp @@ -177,7 +177,6 @@ #endif #include <algorithm> -#include <iostream> #include <limits> #include <climits> #include <cmath> @@ -192,6 +191,8 @@ #include <functional> #endif +#include <fmt/format.h> + /// Default rounding mode. /// This specifies the rounding mode used for all conversions between [half](\ref half_float::half)s and `float`s as well as @@ -1228,23 +1229,23 @@ namespace half_float /// \return Half-precision quotient stored in single-precision static expr divides(float x, float y) { return expr(x/y); } - /// Output implementation. - /// \param out stream to write to - /// \param arg value to write - /// \return reference to stream - template<typename charT,typename traits> static std::basic_ostream<charT,traits>& write(std::basic_ostream<charT,traits> &out, float arg) { return out << arg; } - - /// Input implementation. - /// \param in stream to read from - /// \param arg half to read into - /// \return reference to stream - template<typename charT,typename traits> static std::basic_istream<charT,traits>& read(std::basic_istream<charT,traits> &in, half &arg) - { - float f; - if(in >> f) - arg = f; - return in; - } + // /// Output implementation. + // /// \param out stream to write to + // /// \param arg value to write + // /// \return reference to stream + // template<typename charT,typename traits> static std::basic_ostream<charT,traits>& write(std::basic_ostream<charT,traits> &out, float arg) { return out << arg; } + + // /// Input implementation. + // /// \param in stream to read from + // /// \param arg half to read into + // /// \return reference to stream + // template<typename charT,typename traits> static std::basic_istream<charT,traits>& read(std::basic_istream<charT,traits> &in, half &arg) + // { + // float f; + // if(in >> f) + // arg = f; + // return in; + // } /// Modulo implementation. /// \param x first operand @@ -2193,20 +2194,6 @@ namespace half_float /// \name Input and output /// \{ - /// Output operator. - /// \param out output stream to write into - /// \param arg half expression to write - /// \return reference to output stream - template<typename T,typename charT,typename traits> typename enable<std::basic_ostream<charT,traits>&,T>::type - operator<<(std::basic_ostream<charT,traits> &out, T arg) { return functions::write(out, arg); } - - /// Input operator. - /// \param in input stream to read from - /// \param arg half to read into - /// \return reference to input stream - template<typename charT,typename traits> std::basic_istream<charT,traits>& - operator>>(std::basic_istream<charT,traits> &in, half &arg) { return functions::read(in, arg); } - /// \} /// \name Basic mathematical operations /// \{ @@ -2863,8 +2850,6 @@ namespace half_float using detail::operator-; using detail::operator*; using detail::operator/; - using detail::operator<<; - using detail::operator>>; using detail::abs; using detail::fabs; @@ -2940,6 +2925,48 @@ namespace half_float using detail::isunordered; using detail::half_cast; +} // namespace half_float + +template <> +struct fmt::formatter<half_float::half> { + // Configuration options + int precision = 6; // Default precision + char presentation = 'f'; + + // Parse format specifications like {:.2f} + constexpr auto parse(format_parse_context& ctx) { + auto it = ctx.begin(), end = ctx.end(); + if (it != end && *it == '.') { + ++it; + precision = 0; + while (it != end && std::isdigit(*it)) { + precision = precision * 10 + (*it - '0'); + ++it; + } + } + if (it != end && (*it == 'f' || *it == 'e' || *it == 'g')) { + presentation = *it++; + } + if (it != end && *it != '}') + throw format_error("invalid format"); + return it; + } + + template <typename FormatContext> + auto format(const half_float::half& h, FormatContext& ctx) const { + return fmt::format_to(ctx.out(), "{:.{}{}}", + static_cast<float>(h), + precision, + presentation); + } +}; + +namespace half_float { + template<typename T> + static half from_string(const T& str) { + float f = std::stof(str); + return half(f); + } } diff --git a/include/aidge/data/half_fmt.hpp b/include/aidge/data/half_fmt.hpp deleted file mode 100644 index 5e2072038..000000000 --- a/include/aidge/data/half_fmt.hpp +++ /dev/null @@ -1,18 +0,0 @@ -#include "aidge/data/half.hpp" -#include <fmt/core.h> - -// Specialize fmt::formatter for half_float::half -template <> -struct fmt::formatter<half_float::half> : fmt::formatter<float> { - // Parses the format specifications and stores them in the base formatter - template <typename ParseContext> - constexpr auto parse(ParseContext& ctx) { - return fmt::formatter<float>::parse(ctx); - } - - // Formats the half type by first converting it to float - template <typename FormatContext> - auto format(const half_float::half& value, FormatContext& ctx) const { - return fmt::formatter<float>::format(static_cast<float>(value), ctx); - } -}; diff --git a/include/aidge/graphRegex/GraphFsmInterpreter.hpp b/include/aidge/graphRegex/GraphFsmInterpreter.hpp index e2fd43b9e..a3336850e 100644 --- a/include/aidge/graphRegex/GraphFsmInterpreter.hpp +++ b/include/aidge/graphRegex/GraphFsmInterpreter.hpp @@ -1,3 +1,14 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #ifndef AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ #define AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ @@ -27,7 +38,7 @@ namespace Aidge { std::shared_ptr<FsmGraph> interpret(void); - + private: diff --git a/include/aidge/graphRegex/GraphLexer.hpp b/include/aidge/graphRegex/GraphLexer.hpp index bd65dfc15..8bd534591 100644 --- a/include/aidge/graphRegex/GraphLexer.hpp +++ b/include/aidge/graphRegex/GraphLexer.hpp @@ -5,7 +5,6 @@ #include <memory> #include <regex> #include <stdexcept> //error -#include <sstream> #include "aidge/utilsParsing/ParsingToken.hpp" #include "aidge/graphRegex/GraphRegexTypes.hpp" diff --git a/include/aidge/graphRegex/GraphStrInterpreter.hpp b/include/aidge/graphRegex/GraphStrInterpreter.hpp index 38e89b373..4c7be546e 100644 --- a/include/aidge/graphRegex/GraphStrInterpreter.hpp +++ b/include/aidge/graphRegex/GraphStrInterpreter.hpp @@ -1,7 +1,6 @@ #ifndef AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ #define AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ -#include <sstream> #include <memory> #include <algorithm> diff --git a/include/aidge/graphRegex/matchFsm/FsmEdge.hpp b/include/aidge/graphRegex/matchFsm/FsmEdge.hpp index 6397da494..2eadd27e8 100644 --- a/include/aidge/graphRegex/matchFsm/FsmEdge.hpp +++ b/include/aidge/graphRegex/matchFsm/FsmEdge.hpp @@ -1,3 +1,14 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #ifndef AIDGE_CORE_FSM_EDGE_H_ #define AIDGE_CORE_FSM_EDGE_H_ diff --git a/include/aidge/graphRegex/matchFsm/FsmNode.hpp b/include/aidge/graphRegex/matchFsm/FsmNode.hpp index f4636e0e0..c7a161bee 100644 --- a/include/aidge/graphRegex/matchFsm/FsmNode.hpp +++ b/include/aidge/graphRegex/matchFsm/FsmNode.hpp @@ -1,3 +1,14 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #ifndef AIDGE_CORE_FSM_NODE_H_ #define AIDGE_CORE_FSM_NODE_H_ diff --git a/include/aidge/nodeTester/ConditionalInterpreter.hpp b/include/aidge/nodeTester/ConditionalInterpreter.hpp index 713a166ec..8906aa802 100644 --- a/include/aidge/nodeTester/ConditionalInterpreter.hpp +++ b/include/aidge/nodeTester/ConditionalInterpreter.hpp @@ -1,4 +1,13 @@ - +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ #ifndef AIDGE_CORE_CONDITIONAL_INTERPRETER_H_ #define AIDGE_CORE_CONDITIONAL_INTERPRETER_H_ @@ -10,7 +19,6 @@ #include <unordered_map> #include <functional> #include "aidge/graph/Node.hpp" -#include <sstream> namespace Aidge{ @@ -126,11 +134,13 @@ class ConditionalRegisterFunction { //wrap the lambda in a new one that as ConditionalData as inputs and output return [this,f](std::vector< std::shared_ptr<ConditionalData>> &args) { if (args.size() < sizeof...(ParamsIdx)){ - std::ostringstream errorMessage; - errorMessage << "bad Number of argument: get " << args.size() << " need " << sizeof...(ParamsIdx) << "\n"; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error( + fmt::format("bad Number of argument: get {} need {}\n", + args.size(), + sizeof...(ParamsIdx)) + ); } - //we used std::vector< std::shared_ptr<ConditionalData>> as a fifo + //we used std::vector< std::shared_ptr<ConditionalData>> as a fifo std::size_t offset = args.size()-sizeof...(ParamsIdx); using FuncTraits = function_traits<decltype(f)>; diff --git a/include/aidge/nodeTester/ConditionalLexer.hpp b/include/aidge/nodeTester/ConditionalLexer.hpp index 0cf15d968..3ac561481 100644 --- a/include/aidge/nodeTester/ConditionalLexer.hpp +++ b/include/aidge/nodeTester/ConditionalLexer.hpp @@ -13,13 +13,9 @@ #ifndef AIDGE_CORE_CONDITIONAL_LEXER_H_ #define AIDGE_CORE_CONDITIONAL_LEXER_H_ -#include <string> -#include <regex> #include <memory> // for shared_ptr - - #include <stdexcept> //error -#include <sstream> +#include <string> #include "aidge/nodeTester/ConditionalTypes.hpp" #include "aidge/utilsParsing/ParsingToken.hpp" @@ -57,7 +53,7 @@ bool isEnd(void); * @brief Get the representation of the class * @return string */ -const std::string rep(){ +std::string rep() const noexcept { return mConditionalExpressions; } diff --git a/include/aidge/utils/Directories.hpp b/include/aidge/utils/Directories.hpp index ca49e1b57..51a7f7824 100644 --- a/include/aidge/utils/Directories.hpp +++ b/include/aidge/utils/Directories.hpp @@ -8,29 +8,31 @@ * SPDX-License-Identifier: EPL-2.0 * ********************************************************************************/ - - #ifndef AIDGE_DIRECTORIES_H_ #define AIDGE_DIRECTORIES_H_ - #include <algorithm> #include <errno.h> -#include <iostream> -#include <sstream> // std::stringstream -#include <string> // std::string +#include <string> +#include <string_view> +#include <vector> + +#include <fmt/core.h> +#include <fmt/format.h> #include <sys/stat.h> + #ifndef _S_ISTYPE #define _S_ISTYPE(mode, mask) (((mode) & _S_IFMT) == (mask)) #endif + #ifndef S_ISREG #define S_ISREG(mode) _S_ISTYPE((mode), _S_IFREG) #endif + #ifndef S_ISDIR #define S_ISDIR(mode) _S_ISTYPE((mode), _S_IFDIR) #endif - #ifdef WIN32 #include <direct.h> #else @@ -39,7 +41,6 @@ #endif namespace Aidge { - bool isNotValidFilePath(int c) { return (iscntrl(c) || c == '<' @@ -57,38 +58,57 @@ namespace Aidge { isNotValidFilePath, '_'); return filePath; } - - - bool createDirectories(const std::string& dirName) - { - std::stringstream path(dirName); - std::string dir; - std::string pathToDir(""); + + // std::string_view could be used if C++ version was 17 or higher + // bool createDirectories(std::string_view dirName) { + bool createDirectories(const std::string& dirName) { + std::string currentPath; + std::string remaining = dirName; + size_t pos = 0; int status = 0; - while (std::getline(path, dir, '/') && status == 0) { - pathToDir += dir + '/'; + while ((pos = remaining.find('/')) != std::string::npos && status == 0) { + currentPath += fmt::format("{}/", remaining.substr(0, pos)); + remaining = remaining.substr(pos + 1); + struct stat fileStat; - if (stat(pathToDir.c_str(), &fileStat) != 0) { + if (stat(currentPath.c_str(), &fileStat) != 0) { // Directory does not exist - #ifdef WIN32 - status = _mkdir(pathToDir.c_str()); - #else - #if defined(S_IRWXU) - status = mkdir(pathToDir.c_str(), S_IRWXU | S_IRWXG | S_IRWXO); - #else - status = mkdir(pathToDir.c_str()); - #endif - #endif +#ifdef WIN32 + status = *mkdir(currentPath.c_str()); +#else +#if defined(S_IRWXU) + status = mkdir(currentPath.c_str(), S_IRWXU | S_IRWXG | S_IRWXO); +#else + status = mkdir(currentPath.c_str()); +#endif +#endif } else if (!S_ISDIR(fileStat.st_mode)) { status = -1; } } - return (status == 0 || errno == EEXIST); - } + // Handle the last component if any + if (!remaining.empty() && status == 0) { + currentPath += fmt::format("{}/", remaining); + struct stat fileStat; + if (stat(currentPath.c_str(), &fileStat) != 0) { +#ifdef WIN32 + status = *mkdir(currentPath.c_str()); +#else +#if defined(S_IRWXU) + status = mkdir(currentPath.c_str(), S_IRWXU | S_IRWXG | S_IRWXO); +#else + status = mkdir(currentPath.c_str()); +#endif +#endif + } else if (!S_ISDIR(fileStat.st_mode)) { + status = -1; + } + } + return (status == 0 || errno == EEXIST); + } } #endif //AIDGE_DIRECTORIES_H_ - diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index ce0e0791e..f92d5cf66 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -18,7 +18,7 @@ #include <fmt/format.h> #include <fmt/ranges.h> -#include "aidge/data/half_fmt.hpp" +#include "aidge/data/half.hpp" #include "aidge/utils/Attributes.hpp" #ifdef PYBIND diff --git a/include/aidge/utilsParsing/ParsingToken.hpp b/include/aidge/utilsParsing/ParsingToken.hpp index 8a1a740bf..3781fcbf1 100644 --- a/include/aidge/utilsParsing/ParsingToken.hpp +++ b/include/aidge/utilsParsing/ParsingToken.hpp @@ -1,72 +1,79 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ #ifndef AIDGE_CORE_PARSING_TOKEN_H_ #define AIDGE_CORE_PARSING_TOKEN_H_ #include <string> #include <type_traits> -#include <sstream> // Include the necessary header -namespace Aidge{ +#include <fmt/format.h> - template <typename EnumType> - class ParsingToken: public std::enable_shared_from_this<ParsingToken<EnumType>> - { - static_assert(std::is_enum<EnumType>::value, "ParsingToken EnumType must be an enum type"); - public: - /** - * @brief Token container - * @param type one of the token type - * @param lexeme String representing additional information of the token - */ - ParsingToken(const EnumType type , const std::string lexeme ):mLexeme(lexeme),mType(type){} +namespace Aidge { - /** - * @brief get the lexeme - * @return std::string - */ - const std::string getLexeme(void){ - return mLexeme; - } +template <typename EnumType> +class ParsingToken: public std::enable_shared_from_this<ParsingToken<EnumType>> +{ + static_assert(std::is_enum<EnumType>::value, "ParsingToken EnumType must be an enum type"); +public: + /** + * @brief Token container + * @param type one of the token type + * @param lexeme String representing additional information of the token + */ + ParsingToken(const EnumType type , const std::string& lexeme ) + : mLexeme(lexeme), mType(type){} - /** - * @brief get the token type - * - * @return ParsingToken - */ - const EnumType getType(void){ - return mType; - } + /** + * @brief get the lexeme + * @return std::string + */ + const std::string getLexeme(void) const noexcept { + return mLexeme; + } - /** - * @brief copy the token - * @return deep copy of the token - */ - std::shared_ptr<ParsingToken> copy(){ - auto newToken = std::make_shared<ParsingToken<EnumType>>(mType,mLexeme); - return newToken; - } + /** + * @brief get the token type + * + * @return ParsingToken + */ + const EnumType getType(void) const noexcept { + return mType; + } - //TODO - std::ostringstream rep(void){ - std::ostringstream out; - out << " Token (" << mLexeme <<")" << "\n"; - return out; - } + /** + * @brief copy the token + * @return deep copy of the token + */ + std::shared_ptr<ParsingToken> copy() const noexcept { + return std::make_shared<ParsingToken<EnumType>>(mType, mLexeme); + } - private: + //TODO + std::string rep(void) const { return fmt::format(" Token ({})\n", mLexeme); } - /** - * @brief additional information of the token - */ - const std::string mLexeme; +private: + /** + * @brief additional information of the token + */ + const std::string mLexeme; - /** - * @brief type of the token - * @see ConditionalTokenTypes - */ - const EnumType mType; + /** + * @brief type of the token + * @see ConditionalTokenTypes + */ + const EnumType mType; - }; -} +}; + +} // namespace Aidge #endif //AIDGE_CORE_PARSING_TOKEN_H_ diff --git a/src/graphRegex/GraphLexer.cpp b/src/graphRegex/GraphLexer.cpp index 05a23d02c..75181e326 100644 --- a/src/graphRegex/GraphLexer.cpp +++ b/src/graphRegex/GraphLexer.cpp @@ -1,7 +1,7 @@ #include "aidge/graphRegex/GraphLexer.hpp" -using namespace Aidge; +using namespace Aidge; GraphLexer::GraphLexer( const std::string gRegexExpressions ): @@ -13,7 +13,7 @@ std::shared_ptr<ParsingToken<gRegexTokenTypes>> GraphLexer::getNextToken(void){ std::string currentChars = ""; while (mPosition < mRegularExpressions.length()) { - //erase all space + //erase all space if (mRegularExpressions[mPosition] != ' ') { currentChars += mRegularExpressions[mPosition]; @@ -28,34 +28,34 @@ std::shared_ptr<ParsingToken<gRegexTokenTypes>> GraphLexer::getNextToken(void){ // const lent token ///// - if (std::regex_match(currentChars,std::regex("\\->")))// the next TOKEN + if (std::regex_match(currentChars,std::regex("\\->")))// the next TOKEN { mPosition++; return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::NEXT,""); } - else if (std::regex_match(currentChars,std::regex("\\*")))// the * TOKEN + else if (std::regex_match(currentChars,std::regex("\\*")))// the * TOKEN { mPosition++; return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::QZM,""); } - else if (std::regex_match(currentChars,std::regex("\\+")))// the + TOKEN + else if (std::regex_match(currentChars,std::regex("\\+")))// the + TOKEN { mPosition++; return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::QOM,""); } - else if (std::regex_match(currentChars,std::regex("\\(")))// the LPAREN TOKEN + else if (std::regex_match(currentChars,std::regex("\\(")))// the LPAREN TOKEN { mPosition++; return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::LPAREN,""); } - else if (std::regex_match(currentChars,std::regex("\\)")))// the RPAREN TOKEN + else if (std::regex_match(currentChars,std::regex("\\)")))// the RPAREN TOKEN { mPosition++; return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::RPAREN,""); } // - else if (std::regex_match(currentChars,std::regex(";")))// the SEP TOKEN + else if (std::regex_match(currentChars,std::regex(";")))// the SEP TOKEN { //test if the last sep //std::string subStr = mRegularExpressions.substr(mPosition); @@ -68,9 +68,9 @@ std::shared_ptr<ParsingToken<gRegexTokenTypes>> GraphLexer::getNextToken(void){ ///// else if (std::regex_match(currentChars,std::regex("[A-Za-z_0-9]")))// the KEY or CKEY - { - - //read all the key + { + + //read all the key bool isCKey = false; std::regex keyRegex("[A-Za-z_0-9]+"); std::regex cKeyRegex("[A-Za-z_0-9]+\\#[0-9]*"); @@ -87,9 +87,9 @@ std::shared_ptr<ParsingToken<gRegexTokenTypes>> GraphLexer::getNextToken(void){ } mPosition++; if (mPosition < mRegularExpressions.length()) currentChars += mRegularExpressions[mPosition]; - + } - //we end the match 2 possibility + //we end the match 2 possibility //we are at the end of the mConditionalExpressions and we need to ensure the match //we are not we can continu if (mPosition == mRegularExpressions.length()-1) @@ -112,7 +112,7 @@ std::shared_ptr<ParsingToken<gRegexTokenTypes>> GraphLexer::getNextToken(void){ } - //no more to find no one match the currentChars + //no more to find no one match the currentChars if (currentChars.empty()) { return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::STOP,""); // Null shared pointer ; }else{ @@ -138,18 +138,17 @@ const std::string GraphLexer::getQuery(){ return mRegularExpressions; } -std::runtime_error GraphLexer::badTokenError(const std::string& currentChars,std::size_t position){ - std::ostringstream errorMessage; - errorMessage << "\nBad syntax " << currentChars << " :\n" << mRegularExpressions << "\n"; - for (std::size_t i = 0; i < position; i++) { - errorMessage << ' '; - } - errorMessage << "^\n"; - - return std::runtime_error(errorMessage.str()); +std::runtime_error GraphLexer::badTokenError(const std::string& currentChars, std::size_t position) { + return std::runtime_error(fmt::format( + "\nBad syntax {}:\n{}\n{:>{}}\n", + currentChars, + mRegularExpressions, + "^", + position + 1 + )); } - const std::string GraphLexer::rep(){ +const std::string GraphLexer::rep(){ std::string out = mRegularExpressions; out += "\n"; for (std::size_t i = 0; i < mPosition; i++) { @@ -157,4 +156,4 @@ std::runtime_error GraphLexer::badTokenError(const std::string& currentChars,std } out += "^\n"; return out ; - } \ No newline at end of file +} \ No newline at end of file diff --git a/src/nodeTester/ConditionalInterpreter.cpp b/src/nodeTester/ConditionalInterpreter.cpp index 5d10762d9..8144237c3 100644 --- a/src/nodeTester/ConditionalInterpreter.cpp +++ b/src/nodeTester/ConditionalInterpreter.cpp @@ -1,6 +1,24 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ #include "aidge/nodeTester/ConditionalInterpreter.hpp" +#include <memory> +#include <string> +#include <vector> + +#include <fmt/format.h> + +#include "aidge/graph/Node.hpp" + using namespace Aidge; @@ -28,27 +46,27 @@ using namespace Aidge; ConditionalParser conditionalParser = ConditionalParser(ConditionalExpressions); mTree = conditionalParser.parse(); - + ///lambda by default - mLambdaRegister.insert("getType",+[](NodePtr NodeOp){return NodeOp->type();}); + mLambdaRegister.insert("getType",+[](std::shared_ptr<Node> NodeOp){return NodeOp->type();}); } - + bool ConditionalInterpreter::isLambdaRegister(const std::string &key){ return mLambdaRegister.isLambdaRegister(key); } - + const std::string& ConditionalInterpreter::getKey(){ return mKey; } - bool ConditionalInterpreter::test( const NodePtr nodeOp) + bool ConditionalInterpreter::test( const std::shared_ptr<Node> nodeOp) { mResolution.clear(); try{ std::vector< std::shared_ptr<ConditionalData>> r = visit({mTree},nodeOp); - + if (mResolution.size() != 1){ throw std::runtime_error("Multi output interpretation output"); }else{ @@ -59,19 +77,17 @@ using namespace Aidge; } } - }catch(const std::exception& e){ - std::ostringstream errorMessage; - errorMessage << "Error in test " << "\n\t" << e.what() << "\n"; - throw std::runtime_error(errorMessage.str()); + } catch(const std::exception& e) { + throw std::runtime_error(fmt::format("Error in test\n\t{}\n", e.what())); } } - void ConditionalInterpreter::insertLambda(const std::string key,std::function<bool(Aidge::NodePtr)> f){ - mLambdaRegister.insert<std::function<bool(Aidge::NodePtr)> >(key, f); + void ConditionalInterpreter::insertLambda(const std::string key,std::function<bool(std::shared_ptr<Node>)> f){ + mLambdaRegister.insert<std::function<bool(std::shared_ptr<Node>)> >(key, f); } ///// - std::vector< std::shared_ptr<ConditionalData>> ConditionalInterpreter::visit(const ASTNodeCh& nodes, const NodePtr nodeOp ){ + std::vector< std::shared_ptr<ConditionalData>> ConditionalInterpreter::visit(const ASTNodeCh& nodes, const std::shared_ptr<Node> nodeOp ){ std::vector< std::shared_ptr<ConditionalData>> dataVector; for ( std::shared_ptr<AstNode<ConditionalTokenTypes>> node : nodes) { @@ -140,7 +156,7 @@ using namespace Aidge; { std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - data->setValue<NodePtr>(nodeOp); + data->setValue<std::shared_ptr<Node>>(nodeOp); mResolution.push_back(data); } @@ -176,10 +192,8 @@ using namespace Aidge; default: throw std::runtime_error("NODE TYPE NOT SUPPORTED IN ConditionalInterpreter"); } - }catch(const std::exception& e){ - std::ostringstream errorMessage; - errorMessage << "Error in visiting AST for node "<< nodeOp->name() << "\n\t" << e.what() << "\n"; - throw std::runtime_error(errorMessage.str()); + } catch(const std::exception& e) { + throw std::runtime_error(fmt::format("Error in visiting AST for node {}\n\t{}\n", nodeOp->name(), e.what())); } } @@ -222,9 +236,7 @@ using namespace Aidge; try { data = mLambdaRegister.run(node->getValue(),mResolution); } catch (const std::exception& e) { - std::ostringstream errorMessage; - errorMessage << "Error in conditional interpretation when run the "<< node->getValue() <<" Lambda\n\t" << e.what() << "\n"; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error(fmt::format("Error in conditional interpretation when run the {} Lambda {}\n", node->getValue(), e.what())); } //clearRes(); @@ -236,11 +248,11 @@ using namespace Aidge; if (mResolution.size() < 2){ throw std::runtime_error("EQ need 2 arg and get :" + std::to_string(mResolution.size())); } - auto a = mResolution.back(); + auto a = mResolution.back(); mResolution.pop_back(); - auto b = mResolution.back(); + auto b = mResolution.back(); mResolution.pop_back(); - + if (a->getType() != b->getType()){ throw std::runtime_error("EQ Unsupported between type :" + a->getType() +" "+ b->getType()); @@ -262,7 +274,7 @@ using namespace Aidge; throw std::runtime_error("EQ Unknown type encountered :" + a->getType() ); } - + mResolution.push_back(data); } @@ -271,9 +283,9 @@ using namespace Aidge; if (mResolution.size() < 2){ throw std::runtime_error("NEQ need 2 arg and get :" + std::to_string(mResolution.size())); } - auto a = mResolution.back(); + auto a = mResolution.back(); mResolution.pop_back(); - auto b = mResolution.back(); + auto b = mResolution.back(); mResolution.pop_back(); if (a->getType() != b->getType()){ @@ -293,7 +305,7 @@ using namespace Aidge; throw std::runtime_error("NEQ Unknown type encountered :" + a->getType() ); } - + mResolution.push_back(data); } @@ -302,9 +314,9 @@ using namespace Aidge; if (mResolution.size() < 2){ throw std::runtime_error("AND need 2 arg and get :" + std::to_string(mResolution.size())); } - auto a = mResolution.back(); + auto a = mResolution.back(); mResolution.pop_back(); - auto b = mResolution.back(); + auto b = mResolution.back(); mResolution.pop_back(); @@ -316,7 +328,7 @@ using namespace Aidge; data->setValue<bool>( a->getValue<bool>() && b->getValue<bool>()); - + mResolution.push_back(data); } @@ -325,9 +337,9 @@ using namespace Aidge; if (mResolution.size() < 2){ throw std::runtime_error("OR need 2 arg and get :" + std::to_string(mResolution.size())); } - auto a = mResolution.back(); + auto a = mResolution.back(); mResolution.pop_back(); - auto b = mResolution.back(); + auto b = mResolution.back(); mResolution.pop_back(); @@ -339,7 +351,7 @@ using namespace Aidge; data->setValue<bool>( a->getValue<bool>() || b->getValue<bool>()); - + mResolution.push_back(data); } @@ -348,7 +360,7 @@ using namespace Aidge; if (mResolution.size() < 1){ throw std::runtime_error("NOT need 1 arg and get :" + std::to_string(mResolution.size())); } - auto a = mResolution.back(); + auto a = mResolution.back(); mResolution.pop_back(); if (a->getType() != typeid(bool).name()){ @@ -358,7 +370,7 @@ using namespace Aidge; std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); data->setValue<bool>( !a->getValue<bool>() ); - + mResolution.push_back(data); } diff --git a/src/nodeTester/ConditionalLexer.cpp b/src/nodeTester/ConditionalLexer.cpp index 9cc480ab2..a44ca2bd9 100644 --- a/src/nodeTester/ConditionalLexer.cpp +++ b/src/nodeTester/ConditionalLexer.cpp @@ -1,6 +1,21 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #include "aidge/nodeTester/ConditionalLexer.hpp" -using namespace Aidge; +#include <memory> +#include <regex> +#include <string> + +using namespace Aidge; ////////////////// //ConditionalLexer @@ -18,7 +33,7 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo while (mPosition < mConditionalExpressions.length()) { - //erase all space + //erase all space if (mConditionalExpressions[mPosition] != ' ') { currentChars += mConditionalExpressions[mPosition]; @@ -29,13 +44,13 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo continue; } //perform tokenisation, find a regex and make a new token - - if (std::regex_match(currentChars,std::regex("\\&\\&")))// the AND TOKEN + + if (std::regex_match(currentChars,std::regex("\\&\\&")))// the AND TOKEN { mPosition++; return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::AND,""); } - else if (std::regex_match(currentChars,std::regex("\\|\\|")))// the OR TOKEN + else if (std::regex_match(currentChars,std::regex("\\|\\|")))// the OR TOKEN { mPosition++; return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::OR,""); @@ -55,27 +70,27 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo //a not at the end not ok but it's the parseur work return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::NOT,""); } - else if (std::regex_match(currentChars,std::regex("==")))// the EQ TOKEN + else if (std::regex_match(currentChars,std::regex("==")))// the EQ TOKEN { mPosition++; return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::EQ,""); } - else if (std::regex_match(currentChars,std::regex("\\(")))// the LPAREN TOKEN + else if (std::regex_match(currentChars,std::regex("\\(")))// the LPAREN TOKEN { mPosition++; return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::LPAREN,""); } - else if (std::regex_match(currentChars,std::regex("\\)")))// the RPAREN TOKEN + else if (std::regex_match(currentChars,std::regex("\\)")))// the RPAREN TOKEN { mPosition++; return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::RPAREN,""); } - else if (std::regex_match(currentChars,std::regex(",")))// the RPAREN TOKEN + else if (std::regex_match(currentChars,std::regex(",")))// the RPAREN TOKEN { mPosition++; return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::ARGSEP,""); } - else if (std::regex_match(currentChars,std::regex("\\$")))// the ACTNode TOKEN + else if (std::regex_match(currentChars,std::regex("\\$")))// the ACTNode TOKEN { mPosition++; return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::NODE,""); @@ -86,10 +101,10 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo //non const lent token ///// - //LAMBDA, KEY , bool //the function TAG + //LAMBDA, KEY , bool //the function TAG else if (std::regex_match(currentChars,std::regex("[A-Za-z_]")))// the KEY TOKEN (a char next ) - { - //read all the key + { + //read all the key bool isLambda = false; std::regex keyRegex("[A-Za-z_0-9]+"); std::regex LambdaRegex("[A-Za-z_0-9]+\\("); @@ -107,7 +122,7 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo if (mPosition < mConditionalExpressions.length()) currentChars += mConditionalExpressions[mPosition]; //currentChars += mConditionalExpressions[mPosition]; } - //we end the match 2 possibility + //we end the match 2 possibility //we are at the end of the mConditionalExpressions and we need to ensure the match //we are not we can continu if (mPosition == mConditionalExpressions.length()-1) @@ -129,12 +144,12 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo } else{ return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::KEY,currentChars); } - + } - //numeric value + //numeric value else if (std::regex_match(currentChars,std::regex("[0-9]")))// the KEY TOKEN (a char next ) - { - //read all the key + { + //read all the key bool isFloat = false; std::regex integerRegex("[0-9]+$"); std::regex floatRegex("[0-9]+\\.[0-9]*$"); @@ -143,7 +158,7 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo if(!std::regex_match(currentChars,integerRegex) && !std::regex_match(currentChars,floatRegex)) { - currentChars.pop_back(); // the last char match is not a good one + currentChars.pop_back(); // the last char match is not a good one break; } else if (std::regex_match(currentChars,floatRegex)){ @@ -153,7 +168,7 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo if (mPosition < mConditionalExpressions.length()) currentChars += mConditionalExpressions[mPosition]; //currentChars += mConditionalExpressions[mPosition]; } - //we end the match 2 possibility + //we end the match 2 possibility //we are at the end of the mConditionalExpressions and we need to ensure the match //we are not we can continu if (mPosition == mConditionalExpressions.length()-1) @@ -163,13 +178,13 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo throw badTokenError(currentChars,mPosition); } } - + if(isFloat){ return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::FLOAT,currentChars); }else{ return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::INTEGER,currentChars); } - + } //string TODO else if (std::regex_match(currentChars,std::regex("\'"))) // TODO ' or \' @@ -192,7 +207,7 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo //mPosition++; // we stop all by going pos > length } - mPosition++; // go after the last " + mPosition++; // go after the last " //erase the " char currentChars.pop_back(); currentChars.erase(0,1); @@ -206,15 +221,15 @@ std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextTo mPosition++; } - //no more to find no one match the currentChars + //no more to find no one match the currentChars if (currentChars.empty()) { return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::STOP,""); // Null shared pointer ; - }else{ + } else { //std::ostringstream errorMessage; //errorMessage << "\nBad syntax " << currentChars << " :\n" << mConditionalExpressions; throw badTokenError(currentChars,mPosition); } - + } void ConditionalLexer::rstPosition(void){ @@ -223,20 +238,19 @@ void ConditionalLexer::rstPosition(void){ }else{ throw badTokenError("end rst",mPosition); } - + } bool ConditionalLexer::isEnd(void){ return mPosition >= mConditionalExpressions.length(); } -std::runtime_error ConditionalLexer::badTokenError(const std::string& currentChars,std::size_t position){ - std::ostringstream errorMessage; - errorMessage << "\nBad syntax " << currentChars << " :\n" << mConditionalExpressions << "\n"; - for (std::size_t i = 0; i < position; i++) { - errorMessage << ' '; - } - errorMessage << "^\n"; - - return std::runtime_error(errorMessage.str()); +std::runtime_error ConditionalLexer::badTokenError(const std::string& currentChars, std::size_t position) { + return std::runtime_error(fmt::format( + "\nBad syntax {}:\n{}\n{:>{}}\n", + currentChars, + mConditionalExpressions, + "^", + position + 1 + )); } \ No newline at end of file diff --git a/src/nodeTester/ConditionalParser.cpp b/src/nodeTester/ConditionalParser.cpp index 5cf6f8617..cd7877a13 100644 --- a/src/nodeTester/ConditionalParser.cpp +++ b/src/nodeTester/ConditionalParser.cpp @@ -1,8 +1,21 @@ -#include <memory> -#include <vector> +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ #include "aidge/nodeTester/ConditionalParser.hpp" +#include <memory> +#include <stdexcept> +#include <vector> + +#include <fmt/format.h> ////////////////////////////// //ConditionalParser @@ -16,33 +29,32 @@ Aidge::ConditionalParser::ConditionalParser(const std::string ConditionalExpress Aidge::ConditionalParser::~ConditionalParser() noexcept = default; -void Aidge::ConditionalParser::rstParser(void){ +void Aidge::ConditionalParser::rstParser(void) { mLexer.rstPosition(); mCurrentToken = mLexer.getNextToken(); } -void Aidge::ConditionalParser::ackToken(ConditionalTokenTypes tokenType){ +void Aidge::ConditionalParser::ackToken(ConditionalTokenTypes tokenType) { if(mCurrentToken->getType() == tokenType ){ - try { mCurrentToken = mLexer.getNextToken(); } catch (const std::runtime_error& e) { - std::ostringstream errorMessage; - errorMessage << "Conditional Lexer error in Parser :\n"<< e.what() << std::endl; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error(fmt::format("Conditional Lexer error in Parser :\n{}\n", e.what())); } - }else{ - - std::ostringstream errorMessage; - errorMessage << "Bad syntax ConditionalParser " << static_cast<int>(mCurrentToken->getType()) <<"!="<< static_cast<int>(tokenType) << "\n"; - errorMessage << mLexer.rep(); - throw std::runtime_error(errorMessage.str()); + } else { + throw std::runtime_error( + fmt::format("Bad syntax ConditionalParser {} != {}\n", + static_cast<int>(mCurrentToken->getType()), + static_cast<int>(tokenType), + mLexer.rep() + ) + ); } } -std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::ConditionalParser::constructAstVal(void){ +std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::ConditionalParser::constructAstVal(void) { /* val : (KEY|INTEGER|FOAT|STRING|LAMBDA) */ @@ -76,7 +88,7 @@ std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::Conditional return constructAstLambda(); } - throw std::runtime_error("ConditionalParser unknown val type "+ token->rep().str() + "\n" + mLexer.rep()); + throw std::runtime_error(fmt::format("ConditionalParser unknown val type {}\n{}"+ token->rep(), mLexer.rep())); } @@ -123,7 +135,7 @@ std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::Conditional return std::make_shared<AstNode<ConditionalTokenTypes>>(token,ASTNodeCh{node,constructAstVal()}); }else{ - throw std::runtime_error("constructAstCmpr "+ token->rep().str() + "\n" + mLexer.rep()); + throw std::runtime_error(fmt::format("constructAstCmpr {}\n{}", token->rep(), mLexer.rep())); } } diff --git a/unit_tests/graphRegex/Test_GraphLexer.cpp b/unit_tests/graphRegex/Test_GraphLexer.cpp index 615c05204..ffb250978 100644 --- a/unit_tests/graphRegex/Test_GraphLexer.cpp +++ b/unit_tests/graphRegex/Test_GraphLexer.cpp @@ -1,11 +1,21 @@ -#include <catch2/catch_test_macros.hpp> +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #include "aidge/graphRegex/GraphLexer.hpp" #include "aidge/graphRegex/GraphRegexTypes.hpp" - #include "aidge/utilsParsing/ParsingToken.hpp" +#include <catch2/catch_test_macros.hpp> +#include <fmt/format.h> -#include <iostream> #include <map> #include <functional> @@ -73,7 +83,7 @@ TEST_CASE("GraphRegex", "Lexer") { ////////////////// //TEST GENERATOR ////////////////// - const std::size_t numRandomElements = 10000; + const std::size_t numRandomElements = 1000; std::vector<std::tuple<gRegexTokenTypes, std::string>> testVector; std::string testString; @@ -88,11 +98,11 @@ TEST_CASE("GraphRegex", "Lexer") { std::function<std::pair<std::string, std::string>()> randomValue = it->second; std::pair<std::string, std::string> result = randomValue(); - + testString += result.first; testVector.emplace_back(randomKey, result.second); - + } GraphLexer graphLexer = GraphLexer(testString); @@ -102,11 +112,7 @@ TEST_CASE("GraphRegex", "Lexer") { std::string lexemToFind = std::get<1>(testToken); std::shared_ptr<ParsingToken<gRegexTokenTypes>> token = graphLexer.getNextToken(); - - std::ostringstream errorMessage; - errorMessage << "\n we want :"<< lexemToFind << "\n we get : "<< token->getLexeme() <<"\n"<< "on \n" << testString << " :\n " ; - - CAPTURE(errorMessage.str()); + CAPTURE(fmt::format("\nWe want: {}\nWe get: {}\nOn:\n{}\n", lexemToFind, token->getLexeme(), testString)); REQUIRE(token->getLexeme() == lexemToFind); REQUIRE(token->getType() == tokenToFind); } diff --git a/unit_tests/graphRegex/Test_GraphParser.cpp b/unit_tests/graphRegex/Test_GraphParser.cpp index 857caa06f..c4f17494f 100644 --- a/unit_tests/graphRegex/Test_GraphParser.cpp +++ b/unit_tests/graphRegex/Test_GraphParser.cpp @@ -1,9 +1,23 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <cstdlib> // std::rand +#include <memory> +#include <string> #include <catch2/catch_test_macros.hpp> +#include <fmt/core.h> + #include "aidge/graphRegex/GraphParser.hpp" #include "aidge/utilsParsing/AstNode.hpp" -#include <iostream> - using namespace Aidge; @@ -23,50 +37,21 @@ using namespace Aidge; } std::string seq() { - int randomValue = std::rand() % 2; - switch (randomValue) { - case 0: - return exp(); - default: - return exp()+"->"+seq(); - } + return exp() + (((std::rand() & 0x1) == 0x0) ? "" : ("->" + seq())); } std::string domain() { - int randomValue = std::rand() % 2; - - switch (randomValue) { - // case 0: - // return seq(); - // case 1: - // return seq() + "->" +domain(); - - case 0: - return "("+ seq() +")*"; - default: - return "("+ seq() +")+"; - - // case 4: - // return "("+ domain() +")*" + "->" +domain(); - // default: - // return "("+ domain() +")+" + "->" +domain(); - } + return "("+ seq() +")" + (((std::rand() & 0x1) == 0x0) ? "*" : "+"); } std::string allExpr() { - int randomValue = std::rand() % 2; - switch (randomValue) { - case 0: - return seq(); - default : - return seq()+ ";" +allExpr(); - } + return seq() + (((std::rand() & 0x1) == 0x0) ? "" : (";" + allExpr())); } /* exp : KEY(QOM | QZM)? | CKEY | domain -seq :exp (NEXT seq)* -domain : LPAREN seq RPAREN (QOM | QZM) +seq :exp (NEXT seq)* +domain : LPAREN seq RPAREN (QOM | QZM) allExpr: seq (SEP allExpr)* */ TEST_CASE("GraphParser", "Test_GraphParser") { @@ -74,7 +59,7 @@ TEST_CASE("GraphParser", "Test_GraphParser") { SECTION("Empty") { for (int i = 0; i < 100; ++i) { const std::string test = allExpr(); - std::cout << test <<"\n"; + fmt::print("test\n"); GraphParser graphParser = GraphParser(test); std::shared_ptr<AstNode<gRegexTokenTypes>> tree = graphParser.parse(); } diff --git a/unit_tests/nodeTester/Test_ConditionalLexer.cpp b/unit_tests/nodeTester/Test_ConditionalLexer.cpp index d79824e2e..e5a7bd831 100644 --- a/unit_tests/nodeTester/Test_ConditionalLexer.cpp +++ b/unit_tests/nodeTester/Test_ConditionalLexer.cpp @@ -1,11 +1,25 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <functional> +#include <map> +#include <string> +#include <utility> + #include <catch2/catch_test_macros.hpp> +#include <fmt/format.h> + #include "aidge/nodeTester/ConditionalLexer.hpp" #include "aidge/utilsParsing/ParsingToken.hpp" -#include <iostream> -#include <map> -#include <functional> - using namespace Aidge; TEST_CASE("nodeTester", "Lexer") { @@ -22,7 +36,7 @@ TEST_CASE("nodeTester", "Lexer") { {ConditionalTokenTypes::BOOL, +[](){ std::size_t keyLen = (std::rand() % 2); const std::vector<std::string> characters = {"true","false"}; - + return std::pair<std::string, std::string>(characters[keyLen]+" ",characters[keyLen]);} }, @@ -114,11 +128,11 @@ TEST_CASE("nodeTester", "Lexer") { std::function<std::pair<std::string, std::string>()> randomValue = it->second; std::pair<std::string, std::string> result = randomValue(); - + testString += result.first; testVector.emplace_back(randomKey, result.second); - + } ConditionalLexer conditionalLexer = ConditionalLexer(testString); @@ -128,11 +142,7 @@ TEST_CASE("nodeTester", "Lexer") { std::string lexemToFind = std::get<1>(testToken); std::shared_ptr<ParsingToken<ConditionalTokenTypes>> token = conditionalLexer.getNextToken(); - - std::ostringstream errorMessage; - errorMessage << "\n we want :"<< lexemToFind << "\n we get : "<< token->getLexeme() <<"\n"<< "on \n" << testString << " :\n " ; - - CAPTURE(errorMessage.str()); + CAPTURE(fmt::format("\n we want: {}\n we get: {}\non: \n{}\n", lexemToFind, token->getLexeme(), testString)); REQUIRE(token->getLexeme() == lexemToFind); REQUIRE(token->getType() == tokenToFind); } diff --git a/unit_tests/operator/Test_MatMul_Op.cpp b/unit_tests/operator/Test_MatMul_Op.cpp index 876c1ac76..0c7bc503f 100644 --- a/unit_tests/operator/Test_MatMul_Op.cpp +++ b/unit_tests/operator/Test_MatMul_Op.cpp @@ -9,13 +9,15 @@ * ********************************************************************************/ -#include <catch2/catch_test_macros.hpp> -#include <catch2/generators/catch_generators_random.hpp> #include <cstddef> // std::size_t #include <memory> #include <random> // std::mt19937, std::uniform_int_distribution #include <vector> +#include <catch2/catch_test_macros.hpp> +#include <catch2/generators/catch_generators_random.hpp> +#include <fmt/core.h> + #include "aidge/data/Tensor.hpp" #include "aidge/operator/MatMul.hpp" #include "aidge/operator/OperatorTensor.hpp" @@ -27,7 +29,8 @@ TEST_CASE("[core/operator] MatMul_Op(forwardDims)", "[MatMul][forwardDims]") { std::mt19937 gen(rd()); std::uniform_int_distribution<std::size_t> dist(1, 10); - std::cerr << "Test case start, random " << dist(gen) << " " << rd() << std::endl; + fmt::print(stderr, "Test case start, random {} {}\n", dist(gen), rd()); + // Create MatMul Operator std::shared_ptr<Node> myMatMul = MatMul(); auto op = std::static_pointer_cast<OperatorTensor>(myMatMul -> getOperator()); diff --git a/unit_tests/operator/Test_Operator.cpp b/unit_tests/operator/Test_Operator.cpp index 6bd12c51e..b726b83a1 100644 --- a/unit_tests/operator/Test_Operator.cpp +++ b/unit_tests/operator/Test_Operator.cpp @@ -9,13 +9,13 @@ * ********************************************************************************/ -#include <catch2/catch_test_macros.hpp> #include <cstddef> -#include <iostream> #include <memory> #include <string> #include <vector> +#include <catch2/catch_test_macros.hpp> + #include "aidge/graph/GraphView.hpp" #include "aidge/graph/Node.hpp" #include "aidge/operator/Add.hpp" diff --git a/unit_tests/operator/Test_Squeeze_Op.cpp b/unit_tests/operator/Test_Squeeze_Op.cpp index 660e970dd..f5fd07198 100644 --- a/unit_tests/operator/Test_Squeeze_Op.cpp +++ b/unit_tests/operator/Test_Squeeze_Op.cpp @@ -11,26 +11,28 @@ #include "aidge/operator/Squeeze.hpp" -#include <aidge/utils/Types.h> -#include <algorithm> +#include <algorithm> // std::copy_if, std::count_if, std::generate, std::sort, std::transform #include <array> -#include <catch2/catch_test_macros.hpp> -#include <catch2/generators/catch_generators_random.hpp> #include <chrono> #include <cmath> #include <cstddef> // std::size_t -#include <cstdint> // std::uint16_t -#include <fmt/core.h> -#include <iostream> -#include <iterator> +#include <cstdint> // std::int8_t, std::uint16_t +#include <functional> // std::multiplies +#include <iterator> // std::back_inserter #include <memory> #include <numeric> // std::accumulate -#include <ostream> #include <random> // std::random_device, std::mt19937, std::uniform_real_distribution #include <vector> +#include <catch2/catch_test_macros.hpp> +#include <catch2/generators/catch_generators_random.hpp> +#include <fmt/core.h> + +#include "aidge/data/Data.hpp" #include "aidge/data/Tensor.hpp" +#include "aidge/operator/OperatorTensor.hpp" #include "aidge/utils/TensorUtils.hpp" +#include "aidge/utils/Types.h" namespace Aidge { TEST_CASE("[core/operator] Squeeze(forwardDims)", "[Squeeze][forwardDims]") { @@ -74,7 +76,7 @@ TEST_CASE("[core/operator] Squeeze(forwardDims)", "[Squeeze][forwardDims]") { SECTION("ERROR : nb_dims_to_squeeze>input.size()") { constexpr size_t nb_dims_to_squeeze = 100; - std::vector<int8_t> dims_to_squeeze(nb_dims_to_squeeze); + std::vector<std::int8_t> dims_to_squeeze(nb_dims_to_squeeze); std::generate(dims_to_squeeze.begin(), dims_to_squeeze.end(), [&gen, &idx_dims_to_squeeze_dist]() { return idx_dims_to_squeeze_dist(gen); @@ -102,7 +104,7 @@ TEST_CASE("[core/operator] Squeeze(forwardDims)", "[Squeeze][forwardDims]") { SECTION("axes is given via attribute") { SECTION("Squeeze a 1-sized-axis") { int8_t nb_dims = 4; - std::shared_ptr<Node> squeeze_node = Squeeze(std::vector<int8_t>({0})); + std::shared_ptr<Node> squeeze_node = Squeeze(std::vector<std::int8_t>({0})); auto op = std::static_pointer_cast<OperatorTensor>( squeeze_node->getOperator()); op->associateInput(0, input_T); @@ -131,7 +133,7 @@ TEST_CASE("[core/operator] Squeeze(forwardDims)", "[Squeeze][forwardDims]") { } SECTION("Squeeze a non-1-Sized axis") { int8_t nb_dims = 4; - std::shared_ptr<Node> squeeze_node = Squeeze(std::vector<int8_t>({3})); + std::shared_ptr<Node> squeeze_node = Squeeze(std::vector<std::int8_t>({3})); auto op = std::static_pointer_cast<OperatorTensor>( squeeze_node->getOperator()); op->associateInput(0, input_T); @@ -228,7 +230,7 @@ TEST_CASE("[core/operator] Squeeze(forwardDims)", "[Squeeze][forwardDims]") { CHECK(op->getOutput(0)->dims() == dims_out); int nb_ones = std::count_if(dims_in.begin(), dims_in.end(), - [](int8_t dim) { return dim == 1; }); + [](std::int8_t dim) { return dim == 1; }); CHECK((op->getInput(0)->dims().size() - op->getOutput(0)->dims().size()) == nb_ones); } @@ -444,12 +446,9 @@ TEST_CASE("[core/operator] Squeeze(forward)", "[Squeeze][forward]") { delete[] array_in; } - std::cout << "Squeeze total execution time : " << duration.count() << "µs" - << std::endl; - std::cout << "Number of operations : " << number_of_operation - << std::endl; - std::cout << "Operation / µs = " << number_of_operation / duration.count() - << std::endl; + fmt::print("INFO: GlobalAveragePooling total execution time: {}µs\n", duration.count()); + fmt::print("INFO: Number of operations : {}\n", number_of_operation); + fmt::print("INFO: Operation / µs = {}\n", number_of_operation / duration.count()); } } } diff --git a/unit_tests/operator/Test_Unsqueeze_Op.cpp b/unit_tests/operator/Test_Unsqueeze_Op.cpp index a436ab5a5..650cbaf3e 100644 --- a/unit_tests/operator/Test_Unsqueeze_Op.cpp +++ b/unit_tests/operator/Test_Unsqueeze_Op.cpp @@ -9,22 +9,24 @@ * ********************************************************************************/ -#include <algorithm> -#include <chrono> -#include <cmath> -#include <cstddef> // std::size_t -#include <cstdint> // std::uint16_t -#include <fmt/core.h> -#include <iostream> +#include <algorithm> // std::ajacent_find, std::all_of, std::sort, std::transform +#include <array> +#include <chrono> // std::micro, std::chrono::time_point, + // std::chrono::system_clock +#include <cstddef> // std::size_t +#include <cstdint> // std::int8_t, std::uint16_t +#include <functional> // std::multiplies #include <memory> -#include <numeric> // std::accumulate -#include <ostream> -#include <random> // std::random_device, std::mt19937, std::uniform_real_distribution +#include <numeric> // std::accumulate +#include <random> // std::random_device, std::mt19937 + // std::uniform_int_distribution, std::uniform_real_distribution #include <vector> #include <catch2/catch_test_macros.hpp> #include <catch2/generators/catch_generators_random.hpp> +#include <fmt/core.h> +#include "aidge/backend/cpu/data/TensorImpl.hpp" #include "aidge/data/Data.hpp" #include "aidge/data/Tensor.hpp" #include "aidge/operator/Unsqueeze.hpp" @@ -261,7 +263,7 @@ TEST_CASE("[core/operator] Unsqueeze(forward)", "[Unsqueeze][forward]") { // Create a random number generator std::random_device rd; auto random_seed = rd(); - std::cout << "True random seed : " << random_seed << std::endl; + fmt::print("True random seed: {}\n", random_seed); std::mt19937 gen(random_seed); // Random float distribution between 0 and 1 std::uniform_real_distribution<float> valueDist(0.1f, 1.1f); @@ -371,11 +373,9 @@ TEST_CASE("[core/operator] Unsqueeze(forward)", "[Unsqueeze][forward]") { delete[] array_in; } } - std::cout << "Unsqueeze total execution time : " << duration.count() << "µs" - << std::endl; - std::cout << "Number of operations : " << number_of_operation << std::endl; - std::cout << "Operation / µs = " << number_of_operation / duration.count() - << std::endl; + fmt::print("INFO: GlobalAveragePooling total execution time: {}µs\n", duration.count()); + fmt::print("INFO: Number of operations : {}\n", number_of_operation); + fmt::print("INFO: Operation / µs = {}\n", number_of_operation / duration.count()); } } -- GitLab From a4a7401c8079dc3e4b84adcc322a159bf8cde976 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 12:44:11 +0000 Subject: [PATCH 097/157] improve some includes --- include/aidge/backend/TensorImpl.hpp | 7 ++-- src/graphRegex/GraphFsmInterpreter.cpp | 51 +++++++++++++++++--------- src/graphRegex/GraphParser.cpp | 39 ++++++-------------- src/graphRegex/matchFsm/FsmEdge.cpp | 49 +++++++++++++++++-------- src/graphRegex/matchFsm/FsmGraph.cpp | 33 +++++++++++++---- 5 files changed, 109 insertions(+), 70 deletions(-) diff --git a/include/aidge/backend/TensorImpl.hpp b/include/aidge/backend/TensorImpl.hpp index 864789c19..6ddb29c8d 100644 --- a/include/aidge/backend/TensorImpl.hpp +++ b/include/aidge/backend/TensorImpl.hpp @@ -12,15 +12,16 @@ #ifndef AIDGE_TENSORIMPL_H_ #define AIDGE_TENSORIMPL_H_ -#include <numeric> // std::accumulate #include <cstddef> // std::size_t #include <functional> // std::multiplies -#include <vector> +#include <numeric> // std::accumulate #include <utility> // std::pair, std::make_pair +#include <vector> +#include <string> #include "aidge/data/Data.hpp" -#include "aidge/utils/Types.h" #include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/Types.h" namespace Aidge { /** diff --git a/src/graphRegex/GraphFsmInterpreter.cpp b/src/graphRegex/GraphFsmInterpreter.cpp index a2f07129c..0c9811389 100644 --- a/src/graphRegex/GraphFsmInterpreter.cpp +++ b/src/graphRegex/GraphFsmInterpreter.cpp @@ -1,6 +1,24 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <cmath> // std::abs +#include <memory> +#include <set> +#include <stdexcept> +#include <string> +#include <vector> + #include "aidge/graphRegex/GraphFsmInterpreter.hpp" -using namespace Aidge; +using namespace Aidge; GraphFsmInterpreter::GraphFsmInterpreter(const std::string graphMatchExpr,std::vector<std::shared_ptr<ConditionalInterpreter>>&nodesCondition):mParser(graphMatchExpr){ @@ -49,13 +67,13 @@ std::shared_ptr<FsmGraph> GraphFsmInterpreter::visit(std::shared_ptr<AstNode<gRe std::shared_ptr<FsmGraph> GraphFsmInterpreter::keyF(std::shared_ptr<AstNode<gRegexTokenTypes>> AstNode){ - + std::shared_ptr<FsmNode> start = std::make_shared<FsmNode>(false,true); std::shared_ptr<FsmNode> valid = std::make_shared<FsmNode>(true,false); std::shared_ptr<FsmGraph> graph = std::make_shared<FsmGraph>(mParser.getQuery()); std::shared_ptr<FsmEdge> edge; - + if(AstNode->getType() == gRegexTokenTypes::CKEY){ edge = FsmEdgeFactory::make(start,valid,FsmEdgeTypes::COMMON,mNodesCondition,AstNode->getValue()); @@ -66,7 +84,7 @@ std::shared_ptr<FsmGraph> GraphFsmInterpreter::keyF(std::shared_ptr<AstNode<gReg throw std::logic_error("keyF Bad in AST" ); } - + graph->addEdge(edge); graph->setGroupe(mActGroupe); return graph; @@ -85,7 +103,7 @@ std::shared_ptr<FsmGraph> GraphFsmInterpreter::nextF(std::shared_ptr<FsmGraph> l /* combine the 2 Graph all valid node of A are merge with Start B, Start B is un Start - update the relative reference + update the relative reference A B SA -> VA + SB -> VB @@ -128,7 +146,7 @@ std::shared_ptr<FsmGraph> GraphFsmInterpreter::qomF(std::shared_ptr<FsmGraph> fs for(auto valid : allValid){ if(haveCommon){ /* - the // quantify case + the // quantify case get the go back and make a lexeme id(number) we need to go back to the ref delta min #TODO */ @@ -140,24 +158,23 @@ std::shared_ptr<FsmGraph> GraphFsmInterpreter::qomF(std::shared_ptr<FsmGraph> fs minRef = entry; } } - std::stringstream lexem; - lexem << "(" << minRef.first << ", " << minRef.second << ")"; - edge = FsmEdgeFactory::make(valid,start,FsmEdgeTypes::REF,mNodesCondition, lexem.str()); + const auto lexem = fmt::format("({}, {})", minRef.first, minRef.second); + edge = FsmEdgeFactory::make(valid,start,FsmEdgeTypes::REF,mNodesCondition, lexem); }else{ /* - the sequential quantify case - no reference to common + the sequential quantify case + no reference to common */ - edge = FsmEdgeFactory::make(valid,start,FsmEdgeTypes::EMPTY,mNodesCondition,""); + edge = FsmEdgeFactory::make(valid, start, FsmEdgeTypes::EMPTY, mNodesCondition, ""); } fsm->addEdge(edge); } - }else{ + } else { throw std::runtime_error("edgeStart weak pointer is expired" ); } } - + } return fsm; @@ -165,7 +182,7 @@ std::shared_ptr<FsmGraph> GraphFsmInterpreter::qomF(std::shared_ptr<FsmGraph> fs std::shared_ptr<FsmGraph> GraphFsmInterpreter::qzmF(std::shared_ptr<FsmGraph> fsm){ /* - qomf and a bypass empty start to valid + qomf and a bypass empty start to valid */ fsm = qomF(fsm); @@ -178,13 +195,13 @@ std::shared_ptr<FsmGraph> GraphFsmInterpreter::qzmF(std::shared_ptr<FsmGraph> fs } for(auto start : allStart ){ - + for(auto valid : allValid){ edge = FsmEdgeFactory::make(start,valid,FsmEdgeTypes::EMPTY,mNodesCondition,""); fsm->addEdge(edge); } } - + return fsm; diff --git a/src/graphRegex/GraphParser.cpp b/src/graphRegex/GraphParser.cpp index 9ad96a34b..382e22a56 100644 --- a/src/graphRegex/GraphParser.cpp +++ b/src/graphRegex/GraphParser.cpp @@ -33,19 +33,14 @@ void Aidge::GraphParser::rstParser(void){ void Aidge::GraphParser::ackToken(gRegexTokenTypes tokenType){ - if(mCurrentToken->getType() == tokenType ){ + if(mCurrentToken->getType() == tokenType ) { try { mCurrentToken = mLexer.getNextToken(); } catch (const std::runtime_error& e) { - std::ostringstream errorMessage; - errorMessage << "Graph Lexer error in Parser :\n"<< e.what() << std::endl; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error(fmt::format("Graph Lexer error in Parser :\n{}\n", e.what())); } - }else{ - std::ostringstream errorMessage; - errorMessage << "Bad syntax GraphParser " << static_cast<int>(mCurrentToken->getType()) <<"!="<< static_cast<int>(tokenType) << "\n"; - errorMessage << mLexer.rep(); - throw std::runtime_error(errorMessage.str()); + } else { + throw std::runtime_error(fmt::format("Bad syntax GraphParser {} != {}\n{}\n", static_cast<int>(mCurrentToken->getType()), static_cast<int>(tokenType), mLexer.rep())); } } @@ -83,9 +78,7 @@ std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::con } } catch (const std::runtime_error& e) { - std::ostringstream errorMessage; - errorMessage << "GraphParser constructAstExp :\n"<< e.what() << std::endl; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error(fmt::format("GraphParser constructAstExp :\n{}\n", e.what())); } } @@ -109,9 +102,7 @@ std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::con return left; } catch (const std::runtime_error& e) { - std::ostringstream errorMessage; - errorMessage << "GraphParser constructAstSeq :\n"<< e.what() << std::endl; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error(fmt::format("GraphParser constructAstSeq :\n{}\n", e.what())); } } @@ -135,26 +126,22 @@ std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::con //(QOM | QZM) token = mCurrentToken->copy(); - if (mCurrentToken->getType() == gRegexTokenTypes::QOM){ + if (mCurrentToken->getType() == gRegexTokenTypes::QOM) { ackToken(gRegexTokenTypes::QOM); node = std::make_shared<AstNode<gRegexTokenTypes>>(token, std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{node}); - }else if (mCurrentToken->getType() == gRegexTokenTypes::QZM){ + } else if (mCurrentToken->getType() == gRegexTokenTypes::QZM) { ackToken(gRegexTokenTypes::QZM); node = std::make_shared<AstNode<gRegexTokenTypes>>(token, std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{node}); - }else{ - std::ostringstream errorMessage; - errorMessage << "Bad syntax constructAstDomain must have quantifier \n"; - throw std::runtime_error(errorMessage.str()); + } else { + throw std::runtime_error("Bad syntax constructAstDomain must have quantifier \n"); } return node; } catch (const std::runtime_error& e) { - std::ostringstream errorMessage; - errorMessage << "GraphParser constructAstDomain :\n"<< e.what() << std::endl; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error(fmt::format("GraphParser constructAstDomain:\n{}\n", e.what())); } } @@ -182,8 +169,6 @@ std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::con return left; } catch (const std::runtime_error& e) { - std::ostringstream errorMessage; - errorMessage << "GraphParser constructAstDomain :\n"<< e.what() << std::endl; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error(fmt::format("GraphParser constructAstDomain:\n{}\n", e.what())); } } diff --git a/src/graphRegex/matchFsm/FsmEdge.cpp b/src/graphRegex/matchFsm/FsmEdge.cpp index 170d5e693..78a741d27 100644 --- a/src/graphRegex/matchFsm/FsmEdge.cpp +++ b/src/graphRegex/matchFsm/FsmEdge.cpp @@ -1,8 +1,25 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <cstddef> // std::size_t +#include <map> +#include <regex> +#include <string> + + #include "aidge/graphRegex/matchFsm/FsmEdge.hpp" #include "aidge/graphRegex/matchFsm/FsmNode.hpp" #include "aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp" -using namespace Aidge; +using namespace Aidge; std::map<std::string,int> FsmEdgeCommon::mCommonIdxMap; @@ -16,7 +33,7 @@ size_t FsmEdge::getCommonIdx(void){ const std::map<size_t,int>& FsmEdge::getRelative(void){ return mRelativePos; } -void FsmEdge::updateRelative( const std::map<size_t,int>& relativePos ){ +void FsmEdge::updateRelative( const std::map<std::size_t,int>& relativePos ){ for (const auto& kvp : relativePos) { mRelativePos.insert(kvp); } @@ -50,11 +67,11 @@ void FsmEdge::propagateRelativePos(void){ for (const auto& nextWeakEdge : mNodeDest->getEdges()){ if (auto nextEdge = nextWeakEdge.lock()) { - + if(this == nextEdge.get()){ continue; } - + std::set<std::size_t> nextRelativeID; for (const auto& kvp : nextEdge->getRelative()) { @@ -89,10 +106,10 @@ void FsmEdge::propagateRelativePos(void){ } - + // this edge have more relative info than the next std::map<size_t,int> tmpRelative; - // we push this info to the next + // we push this info to the next for(auto idxToPush :idxsToPush ){ tmpRelative.insert( std::make_pair(idxToPush, getRelative().at(idxToPush) +1)); } @@ -109,7 +126,7 @@ void FsmEdge::propagateRelativePos(void){ } if(tmpRelative.size() != 0){ updateRelative(tmpRelative); - + for(auto weakParent : getSourceNode()->getParentNodes()){ if (auto parent = weakParent.lock()) { for(auto weakPEdge : parent->getEdges()){ @@ -159,7 +176,7 @@ const EdgeTestResult FsmEdgeUnique::test(const std::shared_ptr<FsmRunTimeContext if(opNode == nullptr){ return {false,std::set<NodePtr>()};//none } - + if(mToTest->test(opNode) && opNode->getChildren().size() <= 1){ stmContext->setValid(opNode,mToTest); return {true,opNode->getChildren()} ; @@ -172,7 +189,7 @@ const EdgeTestResult FsmEdgeUnique::test(const std::shared_ptr<FsmRunTimeContext FsmEdgeCommon::FsmEdgeCommon(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const std::shared_ptr<ConditionalInterpreter> toTest, const std::string commonKey) :FsmEdge(source,dest,toTest) { - //make a uid for common node + //make a uid for common node if(mCommonIdxMap.find(commonKey) == mCommonIdxMap.end()){ mCommonIdxMap.insert(std::make_pair(commonKey, mCommonIdxMap.size())); } @@ -182,7 +199,7 @@ FsmEdgeCommon::FsmEdgeCommon(std::shared_ptr<FsmNode>& source,std::shared_ptr<Fs const EdgeTestResult FsmEdgeCommon::test(const std::shared_ptr<FsmRunTimeContext> stmContext){ - + auto opNode = stmContext->getActNode(); if(opNode == nullptr){ @@ -207,7 +224,7 @@ FsmEdgeRef::FsmEdgeRef(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode> } const EdgeTestResult FsmEdgeRef::test(const std::shared_ptr<FsmRunTimeContext> stmContext){ - + NodePtr refNode = stmContext->getCommonNodeFromIdx(mRefCommonIdx); if (refNode){ std::set<std::shared_ptr<Node>> see; @@ -237,8 +254,8 @@ FsmEdgeNone::FsmEdgeNone(std::shared_ptr<FsmNode> source,std::shared_ptr<FsmNode /// factory std::shared_ptr<FsmEdge> FsmEdgeFactory::make( -std::shared_ptr<FsmNode> source, -std::shared_ptr<FsmNode> dest, FsmEdgeTypes type, +std::shared_ptr<FsmNode> source, +std::shared_ptr<FsmNode> dest, FsmEdgeTypes type, std::map<std::string, std::shared_ptr<ConditionalInterpreter>> allTest, const std::string lexeme) { @@ -266,9 +283,9 @@ const std::string lexeme) std::string commonId = m[2]; size_t commonIdx = commonId.empty() ? 0 : std::stoi(commonId) + 1; std::string commonKey = edgeType + std::to_string(commonIdx); - + if(allTest.find(edgeType) == allTest.end()){ - //if the key is not linked to a condition + //if the key is not linked to a condition //by default, it is initialized by a edge that is always false return std::make_shared<FsmEdgeNone>(source, dest); //throw std::invalid_argument("Bad Node Test " + edgeType ); @@ -286,7 +303,7 @@ const std::string lexeme) if(allTest.find(edgeType) == allTest.end()){ - //if the key is not linked to a condition + //if the key is not linked to a condition //by default, it is initialized by a edge that is always false return std::make_shared<FsmEdgeNone>(source, dest); //throw std::invalid_argument("Bad Node Test " + edgeType ); diff --git a/src/graphRegex/matchFsm/FsmGraph.cpp b/src/graphRegex/matchFsm/FsmGraph.cpp index 2ba11a4d2..6bec61664 100644 --- a/src/graphRegex/matchFsm/FsmGraph.cpp +++ b/src/graphRegex/matchFsm/FsmGraph.cpp @@ -1,5 +1,22 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #include "aidge/graphRegex/matchFsm/FsmGraph.hpp" +#include <memory> +#include <string> +#include <vector> + +#include <fmt/format.h> + using namespace Aidge; @@ -10,7 +27,7 @@ FsmGraph::FsmGraph(const std::string query):mQuery(query){ //TODO std::vector<std::shared_ptr<MatchSolution>> FsmGraph::test(const std::vector<NodePtr>& startNodes){ - + std::vector<std::shared_ptr<Aidge::FsmNode>> startNodesFsm = getStartNodes(); if(startNodes.size() != startNodesFsm.size()){ throw std::runtime_error("bad number of Start nodes"); @@ -61,7 +78,7 @@ FsmGraph::FsmGraph(const std::string query):mQuery(query){ walks.swap(nextWalks); nextWalks.clear(); } - + MatchResult allMatch(allValidContext,getNbSubFsm(),mQuery,startNodes); return allMatch.getSolutions(); @@ -133,11 +150,13 @@ void FsmGraph::mergeOneStartOneValid(const std::shared_ptr<FsmGraph> fsmGraph){ std::vector<std::shared_ptr<FsmNode>> startNodes = fsmGraph->getStartNodes(); if (startNodes.size() != 1 || validNodes.size() != 1){ - - std::ostringstream errorMessage; - errorMessage <<"mergeOneStartOneValid start size: " << startNodes.size() << " valid size : " << validNodes.size() - <<" can only merge FSM 1 start 1 valid"; - throw std::runtime_error(errorMessage.str()); + throw std::runtime_error( + fmt::format("mergeOneStartOneValid start size: {} valid size: {} \ + can only merge FSM 1 start 1 valid", + startNodes.size(), + validNodes.size() + ) + ); } unionG(fsmGraph); -- GitLab From caf54e45794a27213f65640f2971d6316e992d1f Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 12:45:12 +0000 Subject: [PATCH 098/157] ADD: missing default values to ReduceMean constructor --- include/aidge/operator/ReduceMean.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/aidge/operator/ReduceMean.hpp b/include/aidge/operator/ReduceMean.hpp index 5d5895a8f..16fc08af0 100644 --- a/include/aidge/operator/ReduceMean.hpp +++ b/include/aidge/operator/ReduceMean.hpp @@ -52,12 +52,12 @@ public: /** * @brief constructor for ReduceMean op * @param[in] axes around which perform the operation - * @param[in] keep_dims if true we set a dimension of 1 in the place of the reduced axes and + * @param[in] keep_dims if true we set a dimension of 1 in the place of the reduced axes and * if false we remove the dimension completely * @param[in] noop_with_empty_axes used when no axes are provided, if set to true, the operator does nothing * and if false, we reduce on all axes */ - ReduceMean_Op(const std::vector<std::int32_t>& axes, bool keep_dims, bool noop_with_empty_axes); + ReduceMean_Op(const std::vector<std::int32_t>& axes, bool keep_dims = true, bool noop_with_empty_axes = false); /** * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). @@ -116,8 +116,8 @@ public: // template <DimIdx_t DIM> // const std::string ReduceMean_Op::Type = "ReduceMean"; std::shared_ptr<Node> ReduceMean(const std::vector<std::int32_t> &axes, - bool keep_dims=true, - bool noop_with_empty_axes=false, + bool keep_dims = true, + bool noop_with_empty_axes = false, const std::string& name = ""); } // namespace Aidge -- GitLab From 55cc245923800ff299ae89ad34d28dfe380d5eb6 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 12:45:48 +0000 Subject: [PATCH 099/157] ADD: binding for 'Tensor::backend()' --- python_binding/data/pybind_Tensor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index e235425d1..9e58f2a07 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -328,6 +328,7 @@ void init_Tensor(py::module& m){ .def("dims", (const std::vector<DimSize_t>& (Tensor::*)()const) &Tensor::dims) .def("grad", &Tensor::grad) .def("set_grad", &Tensor::setGrad) + .def("backend", &Tensor::backend) .def("dtype", &Tensor::dataType) .def("dformat", &Tensor::dataFormat) .def("size", &Tensor::size) -- GitLab From 71176546669113e7a21ee5a0846d9cc6f297f54d Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 12:49:47 +0000 Subject: [PATCH 100/157] UPD: get latest fmt version if package not found instead of 10.2.1 and change fmt lib from PRIVATE to PUBLIC --- CMakeLists.txt | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 62051da26..565ebad55 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,9 +51,7 @@ endif() ############################################## # Find system dependencies -set(FMT_VERSION 10.2.1) - -find_package(fmt ${FMT_VERSION} QUIET) +find_package(fmt QUIET) if(NOT fmt_FOUND) message(STATUS "fmt not found in system, retrieving from git") @@ -62,7 +60,7 @@ if(NOT fmt_FOUND) FetchContent_Declare( fmt GIT_REPOSITORY https://github.com/fmtlib/fmt.git - GIT_TAG ${FMT_VERSION} + GIT_TAG master #latest ) set(FMT_SYSTEM_HEADERS ON) @@ -130,7 +128,7 @@ if (PYBIND) target_link_libraries(${pybind_module_name} PRIVATE fmt::fmt) endif() -target_link_libraries(${module_name} PRIVATE fmt::fmt) +target_link_libraries(${module_name} PUBLIC fmt::fmt) target_link_libraries(${module_name} PUBLIC Threads::Threads) target_compile_features(${module_name} PRIVATE cxx_std_14) @@ -176,7 +174,7 @@ endif() # Installation instructions if(NOT $ENV{AIDGE_INSTALL} STREQUAL "") set(CMAKE_INSTALL_PREFIX $ENV{AIDGE_INSTALL}) - message(WARNING "CMAKE_INSTALL_PREFIX set to env variable AIDGE_INSTALL by default = ${CMAKE_INSTALL_PREFIX}") + message(WARNING "CMAKE_INSTALL_PREFIX set to env variable AIDGE_INSTALL by default (${CMAKE_INSTALL_PREFIX})") endif() message(STATUS "Creating ${CMAKE_CURRENT_SOURCE_DIR}/include/aidge/core_version.h") -- GitLab From 06c6178d6fe868f6fc7edaf4f9ef58630b1efe50 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 12:50:55 +0000 Subject: [PATCH 101/157] ADD: info if Catch2 found on system for core unit-tests --- unit_tests/CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/unit_tests/CMakeLists.txt b/unit_tests/CMakeLists.txt index 8257a6063..5cd68723c 100644 --- a/unit_tests/CMakeLists.txt +++ b/unit_tests/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Catch2 3.7.1) +find_package(Catch2 REQUIRED) if(NOT Catch2_FOUND) message(STATUS "Catch2 not found in system, retrieving from git") @@ -7,10 +7,12 @@ if(NOT Catch2_FOUND) FetchContent_Declare( Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git - GIT_TAG v3.7.1 # or a later release + GIT_TAG devel # or a later release ) FetchContent_MakeAvailable(Catch2) +else() + message(STATUS "Found system Catch2 version ${Catch2_VERSION}") endif() file(GLOB_RECURSE src_files "*.cpp") @@ -63,7 +65,6 @@ endif() target_link_libraries(tests${module_name} PRIVATE ${module_name}) target_link_libraries(tests${module_name} PRIVATE Catch2::Catch2WithMain) -target_link_libraries(tests${module_name} PRIVATE fmt::fmt) list(APPEND CMAKE_MODULE_PATH ${catch2_SOURCE_DIR}/extras) include(CTest) -- GitLab From 55dda9044108fac01ee9433d966c514ff07848c6 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 13:19:17 +0000 Subject: [PATCH 102/157] Change REQUIRED for QUIET in option of Catch2 for tests as it is downloaded if not found --- unit_tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit_tests/CMakeLists.txt b/unit_tests/CMakeLists.txt index 5cd68723c..f8e809747 100644 --- a/unit_tests/CMakeLists.txt +++ b/unit_tests/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Catch2 REQUIRED) +find_package(Catch2 QUIET) if(NOT Catch2_FOUND) message(STATUS "Catch2 not found in system, retrieving from git") -- GitLab From 87e61b63b53368ae68e7acf93e8d5a2faf46d7cd Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 15:00:05 +0000 Subject: [PATCH 103/157] FIX: remove include only available in C++17 --- include/aidge/utils/Directories.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/aidge/utils/Directories.hpp b/include/aidge/utils/Directories.hpp index 51a7f7824..f366ac496 100644 --- a/include/aidge/utils/Directories.hpp +++ b/include/aidge/utils/Directories.hpp @@ -14,7 +14,7 @@ #include <algorithm> #include <errno.h> #include <string> -#include <string_view> +// #include <string_view> available in c++-17 #include <vector> #include <fmt/core.h> @@ -58,7 +58,7 @@ namespace Aidge { isNotValidFilePath, '_'); return filePath; } - + // std::string_view could be used if C++ version was 17 or higher // bool createDirectories(std::string_view dirName) { bool createDirectories(const std::string& dirName) { -- GitLab From 2cb6effa1f270ef42d9f64b477a53d5003ea3203 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 15:45:21 +0000 Subject: [PATCH 104/157] remove indirection from 'mkdir' call in 'Directories.hpp' on Windows --- include/aidge/utils/Directories.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/aidge/utils/Directories.hpp b/include/aidge/utils/Directories.hpp index f366ac496..783783946 100644 --- a/include/aidge/utils/Directories.hpp +++ b/include/aidge/utils/Directories.hpp @@ -75,7 +75,7 @@ namespace Aidge { if (stat(currentPath.c_str(), &fileStat) != 0) { // Directory does not exist #ifdef WIN32 - status = *mkdir(currentPath.c_str()); + status = mkdir(currentPath.c_str()); #else #if defined(S_IRWXU) status = mkdir(currentPath.c_str(), S_IRWXU | S_IRWXG | S_IRWXO); @@ -94,7 +94,7 @@ namespace Aidge { struct stat fileStat; if (stat(currentPath.c_str(), &fileStat) != 0) { #ifdef WIN32 - status = *mkdir(currentPath.c_str()); + status = mkdir(currentPath.c_str()); #else #if defined(S_IRWXU) status = mkdir(currentPath.c_str(), S_IRWXU | S_IRWXG | S_IRWXO); -- GitLab From dcb77111c25422aa47a4ff4088d1d07aff79fffd Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 17 Jan 2025 18:21:48 +0000 Subject: [PATCH 105/157] ADD: generic backward implementation for Reshape Operator --- include/aidge/operator/Reshape.hpp | 1 + src/operator/Reshape.cpp | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/include/aidge/operator/Reshape.hpp b/include/aidge/operator/Reshape.hpp index 721b964d3..e4f0405f2 100644 --- a/include/aidge/operator/Reshape.hpp +++ b/include/aidge/operator/Reshape.hpp @@ -27,6 +27,7 @@ class Reshape_OpImpl : public OperatorImpl { public: Reshape_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} void forward() override; + void backward() override; }; enum class ReshapeAttr { Shape, AllowZero }; diff --git a/src/operator/Reshape.cpp b/src/operator/Reshape.cpp index 0fa9a6281..429bbe17d 100644 --- a/src/operator/Reshape.cpp +++ b/src/operator/Reshape.cpp @@ -25,9 +25,18 @@ void Aidge::Reshape_OpImpl::forward() { const Reshape_Op& op = dynamic_cast<const Reshape_Op&>(mOp); + AIDGE_ASSERT(op.getInput(0), "missing input#0"); + // const auto& input = op.getInput(0)->refCastFrom(mInputFallback, *op.getOutput(0)); op.getOutput(0)->getImpl()->copy(op.getInput(0)->getImpl()->rawPtr(), op.getInput(0)->size()); } +void Aidge::Reshape_OpImpl::backward() { + const Reshape_Op& op = dynamic_cast<const Reshape_Op&>(mOp); + AIDGE_ASSERT(op.getOutput(0)->grad(), "missing gradient for output#0"); + // const auto& output_grad = op.getOutput(0)->grad()->refCastFrom(mOutputGradFallback, *op.getOutput(0)->grad()); + op.getInput(0)->grad()->getImpl()->copy(op.getOutput(0)->grad()->getImpl()->rawPtr(), op.getOutput(0)->size()); +} + ////////////////////////////////////////////////// const std::string Aidge::Reshape_Op::Type = "Reshape"; -- GitLab From 576f8a179a95848b99f9b2a0c7b5226e01b31edd Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sat, 18 Jan 2025 23:27:29 +0000 Subject: [PATCH 106/157] UPD: log test for more log cases --- unit_tests/utils/Test_Log.cpp | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/unit_tests/utils/Test_Log.cpp b/unit_tests/utils/Test_Log.cpp index 3d8e672b8..1c44e232f 100644 --- a/unit_tests/utils/Test_Log.cpp +++ b/unit_tests/utils/Test_Log.cpp @@ -17,15 +17,22 @@ using namespace Aidge; -TEST_CASE("[core/log] Log") { +TEST_CASE("[core/log] Log", "[Logger]") { SECTION("TestLog") { - Log::setConsoleLevel(Log::Debug); - Log::debug("debug"); + Log::setConsoleLevel(Log::Level::Debug); + Log::debug("this is a debug message"); Log::debug("{}", fmt::styled("green debug", fmt::fg(fmt::color::green))); - Log::info("info"); - Log::notice("notice"); - Log::warn("warn"); - Log::error("error"); + Log::info("this is an info message"); + Log::notice("this is a notice message"); + Log::warn("this is a warn message"); + Log::error("this is an error message"); + AIDGE_LOG_CONTEXT("Testing the context of logger"); Log::fatal("fatal"); + Log::debug("Now debug messages are supposed to [{}].", fmt::styled("appear", fmt::emphasis::italic)); + Log::info("Current consol level is {}", Log::getConsoleLevel()); + Log::setConsoleLevel(Log::Level::Warn); + Log::notice("This message should not appear."); + + } } -- GitLab From 45e67f8208bad2fcadc0f1ad093f03a8e7f8eed6 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 12:11:02 +0000 Subject: [PATCH 107/157] UPD: log system --- include/aidge/utils/Log.hpp | 254 ++++++++++++++++++++---------------- src/utils/Log.cpp | 179 +++++++++++++++---------- 2 files changed, 249 insertions(+), 184 deletions(-) diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index f92d5cf66..a91a68478 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -9,26 +9,28 @@ * ********************************************************************************/ -#ifndef AIDGE_LOG_H_ -#define AIDGE_LOG_H_ +#ifndef AIDGE_CORE_UTILS_LOG_H_ +#define AIDGE_CORE_UTILS_LOG_H_ #include <memory> +#include <string> #include <vector> #include <fmt/format.h> -#include <fmt/ranges.h> +#include <fmt/color.h> +#ifdef PYBIND +#include <pybind11/pybind.h> +#endif -#include "aidge/data/half.hpp" #include "aidge/utils/Attributes.hpp" -#ifdef PYBIND -#include <pybind11/pybind11.h> // get_shared_data, set_shared_data, PyIsInitialized -#endif namespace Aidge { #ifdef PYBIND namespace py = pybind11; #endif + + /** * Helper to define a context anywhere, hiding the scoped variable name * which has no relevance. @@ -36,100 +38,136 @@ namespace py = pybind11; #define AIDGE_LOG_CONTEXT(...) \ const Log::Context logContext_##__LINE__(__VA_ARGS__) -template <class U> static void discard_args(U parg) { - (void)parg; -} -template <class U, class... Us> static void discard_args(U parg, Us... pargs) { - (void)parg; - discard_args(pargs...); -} - /** - * Aidge logging class, for displaying and file logging of events. + * @brief Logging utility class for development and debugging + * + * The Log class provides a static interface for logging messages at different + * severity levels. It supports both console output (with optional colors) and + * file output. The logging behavior can be configured through environment + * variables or programmatically. + * + * Environment variables: + * - AIDGE_LOGLEVEL_CONSOLE: Set console output level (Debug,Info,Notice,Warn,Error,Fatal) + * - AIDGE_LOGLEVEL_FILE: Set file output level + * - AIDGE_LOG_COLOR: Enable/disable colored output ("off"/"OFF"/"0" to disable) + * - AIDGE_LOG_FILE: Set log file path + * + * @note Console colors are enabled by default */ class Log { - public: - enum Level { Debug = 0, Info, Notice, Warn, Error, Fatal }; +public: + /** + * @brief Log severity levels in ascending order + */ + enum Level { + Debug = 0, ///< Detailed information for debugging + Info, ///< General information about program execution + Notice, ///< Normal but significant conditions + Warn, ///< Warning messages for potentially problematic situations + Error, ///< Error messages for serious problems + Fatal ///< Critical errors that lead to program termination + }; + /** + * @brief RAII class for managing logging contexts + * + * This class allows adding temporary context information to logs. When an instance + * is created, it adds a context message that will be displayed with all logs until + * the instance is destroyed. + * + * Example: + * @code + * { + * Log::Context ctx("Processing file: {}", filename); + * Log::info("Starting process"); // Will show context + * // Context automatically removed when ctx is destroyed + * } + * @endcode + */ class Context { - public: - template <typename... Args> Context(Args &&...args) { + public: + /** + * @brief Create a new logging context + * @param args Format string and arguments for the context message + */ + template <typename... Args> + Context(Args&&... args) { Log::mContext.push_back(fmt::format(std::forward<Args>(args)...)); } + /** + * @brief Destroy the context, removing it from the active contexts + */ ~Context() { Log::mContext.pop_back(); } }; /** - * Detailed messages for debugging purposes, providing information helpful - * for developers to trace and identify issues. - * Detailed insights of what is happening in an operation, not useful for - * the end-user. The operation is performed nominally. - * @note This level is disabled at compile time for Release, therefore - * inducing no runtime overhead for Release. + * @brief Log a debug message + * @param args Format string and arguments for the message + * @note Debug messages are only compiled in debug builds */ - template <typename... Args> static void debug(Args &&...args) { -#ifndef NDEBUG - // only when compiled in Debug - log(Debug, fmt::format(std::forward<Args>(args)...)); +#ifdef NDEBUG + template <typename... Args> + static void debug(Args&&... /*args*/) { + // Debug logging disabled in release builds + } #else - discard_args(&args...); -#endif + template <typename... Args> + static void debug(Args&&... args) { + log(Debug, fmt::format(std::forward<Args>(args)...)); } +#endif /** - * Messages that provide a record of the normal operation, about - * the application's state, progress, or important events. - * Reports normal start, end and key steps in an operation. The operation - * is performed nominally. + * @brief Log an info message + * @param args Format string and arguments for the message */ - template <typename... Args> static void info(Args &&...args) { + template <typename... Args> + static void info(Args&&... args) { log(Info, fmt::format(std::forward<Args>(args)...)); } /** - * Applies to normal but significant conditions that may require - * monitoring, like unusual or normal fallback events. Reports specific - * paths in an operation. The operation can still be performed normally. + * @brief Log a notice message + * @param args Format string and arguments for the message */ - template <typename... Args> static void notice(Args &&...args) { + template <typename... Args> + static void notice(Args&&... args) { log(Notice, fmt::format(std::forward<Args>(args)...)); } /** - * Indicates potential issues or situations that may lead to errors but do - * not necessarily cause immediate problems. - * Some specific steps of the operation could not be performed, but it can - * still provide an exploitable result. + * @brief Log a warning message + * @param args Format string and arguments for the message */ - template <typename... Args> static void warn(Args &&...args) { + template <typename... Args> + static void warn(Args&&... args) { log(Warn, fmt::format(std::forward<Args>(args)...)); } /** - * Signifies a problem or unexpected condition that the application can - * recover from, but attention is needed to prevent further issues. - * The operation could not be performed, but it does not prevent potential - * further operations. + * @brief Log an error message + * @param args Format string and arguments for the message */ - template <typename... Args> static void error(Args &&...args) { + template <typename... Args> + static void error(Args&&... args) { log(Error, fmt::format(std::forward<Args>(args)...)); } /** - * Represents a critical error or condition that leads to the termination - * of the application, indicating a severe and unrecoverable problem. The - * operation could not be performed and any further operation is - * impossible. + * @brief Log a fatal error message + * @param args Format string and arguments for the message */ - template <typename... Args> static void fatal(Args &&...args) { + template <typename... Args> + static void fatal(Args&&... args) { log(Fatal, fmt::format(std::forward<Args>(args)...)); } /** - * Set the minimum log level displayed in the console. + * @brief Set the minimum level for console output + * @param level Minimum level to display */ static void setConsoleLevel(Level level) { mConsoleLevel = level; @@ -137,96 +175,80 @@ class Log { // This means each static instance is separated and does not communicate. // To allow the communication between the different modules, we use PyCapsule. // https://docs.python.org/3/extending/extending.html#providing-a-c-api-for-an-extension-module - #ifdef PYBIND - #define _CRT_SECURE_NO_WARNINGS +#ifdef PYBIND +#define _CRT_SECURE_NO_WARNINGS if (Py_IsInitialized()){ // Note: Setting mConsoleLevel and not level is important // to avoid garbage collection of the pointer. py::set_shared_data("consoleLevel", &mConsoleLevel); } - #endif // PYBIND - +#endif // PYBIND } - /** - * @brief Get the curent Console Level. - * - * @return const Level - */ - static Level getConsoleLevel(){ - #ifdef PYBIND - #define _CRT_SECURE_NO_WARNINGS + + static Level getConsoleLevel() { +#ifdef PYBIND +#define _CRT_SECURE_NO_WARNINGS if (Py_IsInitialized()){ auto shared_data = reinterpret_cast<Level *>(py::get_shared_data("consoleLevel")); if (shared_data) mConsoleLevel = *shared_data; } - #endif // PYBIND +#endif // PYBIND return mConsoleLevel; } - /** - * Set or disable colors on console. - * Initial value should be assumed true. - */ - static void setConsoleColor(bool enabled) { - mConsoleColor = enabled; - } /** - * Set the minimum log level saved in the log file. + * @brief Enable or disable colored console output + * @param enabled True to enable colors, false to disable */ - constexpr static void setFileLevel(Level level) { - mFileLevel = level; - } + static void setConsoleColor(bool enabled) noexcept { mConsoleColor = enabled; } /** - * Set the log file name. - * Close the current log file and open the one with the new file name. - * If empty, stop logging into a file. + * @brief Set the minimum level for file output + * @param level Minimum level to write to file */ - static void setFileName(const std::string &fileName) { - if (fileName != mFileName) { - mFileName = fileName; - mFile.release(); - - if (!fileName.empty()) { - initFile(fileName); - } - } - } + static void setFileLevel(Level level) noexcept { mFileLevel = level; } /** - * @struct fcloseDeleter - * @brief Custom deleter to prevent compiler warnings when using - * std::unique_ptr with FILE*. - * - * Using function pointers with attributes (e.g., __attribute__((nonnull))) - * as deleters can trigger warnings like -Wignored-attributes. By defining a - * custom deleter struct, these attributes are preserved, eliminating the - * warnings. + * @brief Set the log file path + * @param fileName Path to log file (empty to disable file logging) + * @throw std::runtime_error if file cannot be opened */ - struct fcloseDeleter { - void operator()(FILE *f) const noexcept { - std::fclose(f); - } - }; + static void setFileName(const std::string& fileName); private: static void log(Level level, const std::string& msg); static void initFile(const std::string& fileName); - static Level mConsoleLevel; - static bool mConsoleColor; - static Level mFileLevel; - static std::string mFileName; - static std::unique_ptr<FILE, fcloseDeleter> mFile; - static std::vector<std::string> mContext; + struct fcloseDeleter { + void operator()(FILE* f) const noexcept { std::fclose(f); } + }; + + static Level mConsoleLevel; ///< Minimum level for console output + static bool mConsoleColor; ///< Whether to use colored output + static Level mFileLevel; ///< Minimum level for file output + static std::string mFileName; ///< Path to log file + static std::unique_ptr<FILE, fcloseDeleter> mFile; ///< File handle + static std::vector<std::string> mContext; ///< Stack of active contexts }; + } // namespace Aidge +// Formatter specialization for Log::Level +template <> +struct fmt::formatter<Aidge::Log::Level> : formatter<const char*> { + template <typename FormatContext> + auto format(const Aidge::Log::Level& level, FormatContext& ctx) const { + const char* name = EnumStrings<Aidge::Log::Level>::data[static_cast<int>(level)]; + return formatter<const char*>::format(name, ctx); + } +}; + namespace { template <> -const char *const EnumStrings<Aidge::Log::Level>::data[] = - {"Debug", "Info", "Notice", "Warn", "Error", "Fatal"}; +const char* const EnumStrings<Aidge::Log::Level>::data[] = { + "DEBUG", "INFO", "NOTICE", "WARNING", "ERROR", "FATAL" +}; } -#endif // AIDGE_LOG_H_ +#endif // AIDGE_CORE_UTILS_LOG_H_ diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index 383fdae17..5fc7a604f 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -10,101 +10,144 @@ ********************************************************************************/ #include "aidge/utils/Log.hpp" -#include "aidge/utils/ErrorHandling.hpp" -#include <cstdlib> +#include <fmt/core.h> -#include <fmt/color.h> -#include <fmt/chrono.h> +#include <cstdlib> // std::getenv +#include <memory> +#include <string> +#include <vector> -Aidge::Log::Level Aidge::Log::mConsoleLevel = []() { - const char* logLevel = std::getenv("AIDGE_LOGLEVEL_CONSOLE"); - if (logLevel != nullptr) { - for (std::size_t i = 0; i < size(EnumStrings<Log::Level>::data); ++i) { - if (std::string(logLevel) == EnumStrings<Log::Level>::data[i]) { - return static_cast<Log::Level>(i); - } - } +namespace Aidge { + +/** + * @brief Initialize console level from environment or default to Info + */ +Log::Level Log::mConsoleLevel = []() { + if (const char* level = std::getenv("AIDGE_LOGLEVEL_CONSOLE")) { + return level[0] == 'D' ? Debug : + level[0] == 'I' ? Info : + level[0] == 'N' ? Notice : + level[0] == 'W' ? Warn : + level[0] == 'E' ? Error : + level[0] == 'F' ? Fatal : Info; } return Info; }(); -bool Aidge::Log::mConsoleColor = []() { - const char* logColor = std::getenv("AIDGE_LOG_COLOR"); - if (logColor == nullptr) - return true; - auto logColorStr = std::string(logColor); - if (logColorStr == "off" || logColorStr == "OFF" || - logColorStr == "0") - return false; - return true; + +/** + * @brief Initialize color setting from environment or default to enabled + */ +bool Log::mConsoleColor = []() { + const char* color = std::getenv("AIDGE_LOG_COLOR"); + return !color || (std::string(color) != "off" && + std::string(color) != "OFF" && + std::string(color) != "0"); }(); -Aidge::Log::Level Aidge::Log::mFileLevel = []() { - const char* logLevel = std::getenv("AIDGE_LOGLEVEL_FILE"); - if (logLevel != nullptr) { - for (std::size_t i = 0; i < size(EnumStrings<Log::Level>::data); ++i) { - if (std::string(logLevel) == EnumStrings<Log::Level>::data[i]) { - return static_cast<Log::Level>(i); - } - } + +/** + * @brief Initialize file level from environment or default to Debug + */ +Log::Level Log::mFileLevel = []() { + if (const char* level = std::getenv("AIDGE_LOGLEVEL_FILE")) { + return level[0] == 'D' ? Debug : + level[0] == 'I' ? Info : + level[0] == 'N' ? Notice : + level[0] == 'W' ? Warn : + level[0] == 'E' ? Error : + level[0] == 'F' ? Fatal : Debug; } return Debug; }(); -std::string Aidge::Log::mFileName = []() { - const char* logFile = std::getenv("AIDGE_LOG_FILE"); - if (logFile != nullptr) { - return std::string(logFile); - } - return std::string(); + +/** + * @brief Initialize file path from environment + */ +std::string Log::mFileName = []() { + const char* file = std::getenv("AIDGE_LOG_FILE"); + return file ? std::string(file) : std::string(); }(); -std::unique_ptr<FILE, Aidge::Log::fcloseDeleter> Aidge::Log::mFile {nullptr, Aidge::Log::fcloseDeleter()}; -std::vector<std::string> Aidge::Log::mContext; - -void Aidge::Log::log(Level level, const std::string& msg) { - if (level >= getConsoleLevel()) { - // Apply log level style only for console. - // Styles that were already applied to msg with fmt are kept also in - // the log file. - const auto modifier - = !mConsoleColor ? fmt::text_style() - : (level == Debug) ? fmt::fg(fmt::color::gray) - : (level == Notice) ? fmt::fg(fmt::color::medium_purple) - : (level == Warn) ? fmt::fg(fmt::color::orange) - : (level == Error) ? fmt::fg(fmt::color::red) - : (level == Fatal) ? fmt::bg(fmt::color::red) - : fmt::text_style(); +std::unique_ptr<FILE, Log::fcloseDeleter> Log::mFile{nullptr}; +std::vector<std::string> Log::mContext; + +/** + * @brief Internal logging implementation + * @param level Severity level of the message + * @param msg The message to log + */ +void Log::log(Level level, const std::string& msg) { + /** + * @brief Get the terminal color for a log level + */ + const auto getColor = [](Level lvl) { + switch (lvl) { + case Debug: return fmt::terminal_color::green; + case Info: return fmt::terminal_color::blue; + case Notice: return fmt::terminal_color::bright_blue; + case Warn: return fmt::terminal_color::yellow; + case Error: return fmt::terminal_color::red; + case Fatal: return fmt::terminal_color::bright_magenta; + default: return fmt::terminal_color::white; + } + }; + + /** + * @brief Get the string representation of a log level + */ + const auto levelStr = EnumStrings<Level>::data[static_cast<std::size_t>(level)]; + + if (level >= mConsoleLevel) { + // Print active contexts for (const auto& context : mContext) { fmt::println("Context: {}", context); } - fmt::println("{}", fmt::styled(msg, modifier)); + // Print message with colored level + if (mConsoleColor) { + fmt::print("["); + fmt::print(fg(getColor(level)), "{}", levelStr); + fmt::print("] - {}\n", msg); + } else { + fmt::print("[{}] - {}\n", levelStr, msg); + } } if (level >= mFileLevel && !mFileName.empty()) { if (!mFile) { initFile(mFileName); } - + // Write contexts and message to file for (const auto& context : mContext) { - fmt::println("Context: {}", context); + fmt::println(mFile.get(), "Context: {}", context); } - - fmt::println(mFile.get(), "{}", msg); + fmt::println(mFile.get(), "{}: {}", levelStr, msg); } } -void Aidge::Log::initFile(const std::string& fileName) { - FILE* rawFile = std::fopen(fileName.c_str(), "a"); - - if (!rawFile) { - mFileName.clear(); // prevents AIDGE_THROW_OR_ABORT() to try to log into file - AIDGE_THROW_OR_ABORT(std::runtime_error, - "Could not create log file: {}", fileName); +/** + * @brief Initialize or re-initialize the log file + * @param fileName Path to the log file + * @throw std::runtime_error if file cannot be opened + */ +void Log::initFile(const std::string& fileName) { + if (FILE* file = std::fopen(fileName.c_str(), "a")) { + mFile.reset(file); + } else { + mFileName.clear(); + throw std::runtime_error( + fmt::format("Could not create log file: {}", fileName)); } +} - // Assign the new FILE* with the deleter - mFile = std::unique_ptr<FILE, fcloseDeleter>(rawFile, fcloseDeleter()); - - const std::time_t t = std::time(nullptr); - fmt::println(mFile.get(), "###### {:%Y-%m-%d %H:%M:%S} ######", fmt::localtime(t)); +void Log::setFileName(const std::string& fileName) { + if (fileName != mFileName) { + mFileName = fileName; + mFile.reset(); + if (!fileName.empty()) { + initFile(fileName); + } + } } + +} // namespace Aidge -- GitLab From 5ea206b2b8d1504bf9a8a4652abb1e413f2ba1f2 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 12:14:11 +0000 Subject: [PATCH 108/157] UPD: log in some tests and make fmt PUBLIC in CMakeLists.txt for python installation --- CMakeLists.txt | 2 +- src/graph/Node.cpp | 2 +- src/recipes/MatMulToFC.cpp | 2 +- unit_tests/operator/Test_Squeeze_Op.cpp | 6 +++--- unit_tests/operator/Test_Unsqueeze_Op.cpp | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 565ebad55..9e09a0eab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,7 +125,7 @@ if (PYBIND) add_pybind_dependency(${module_name}) ## - target_link_libraries(${pybind_module_name} PRIVATE fmt::fmt) + target_link_libraries(${pybind_module_name} PUBLIC fmt::fmt) endif() target_link_libraries(${module_name} PUBLIC fmt::fmt) diff --git a/src/graph/Node.cpp b/src/graph/Node.cpp index 384e946c6..0c5fbfdcb 100644 --- a/src/graph/Node.cpp +++ b/src/graph/Node.cpp @@ -264,7 +264,7 @@ void Aidge::Node::addChildOp(std::shared_ptr<Node> otherNode, const IOIndex_t ou "Output index (#{}) of the node {} (of type {}) is out of bound (it has {} outputs), when trying to add the child node {} (of type {})", outId, name(), type(), nbOutputs(), otherNode->name(), otherNode->type()); if (otherNode->input(otherInId).second != gk_IODefaultIndex) { - Log::notice("Notice: the {}-th Parent of the child node {} (of type {}) already existed", otherInId, otherNode->name(), otherNode->type()); + Log::notice("the {}-th Parent of the child node {} (of type {}) already existed", otherInId, otherNode->name(), otherNode->type()); } // manage tensors and potential previous parent otherNode->setInputId(otherInId, outId); diff --git a/src/recipes/MatMulToFC.cpp b/src/recipes/MatMulToFC.cpp index 8d902c680..c35b2a64a 100644 --- a/src/recipes/MatMulToFC.cpp +++ b/src/recipes/MatMulToFC.cpp @@ -71,7 +71,7 @@ void Aidge::matMulToFC(std::shared_ptr<Aidge::Node> matmulNode, std::shared_ptr< { // If both inputs are producers, there is an ambiguity, but both options // result in a correct solution. - Log::notice("Notice: both MatMul inputs are Producers, assume data at input#0 and weights at input#1."); + Log::notice("both MatMul inputs are Producers, assume data at input#0 and weights at input#1."); weight = matmulNode->getParent(1); } AIDGE_ASSERT(weight != nullptr, "Could not deduce weight input for MatMul operator."); diff --git a/unit_tests/operator/Test_Squeeze_Op.cpp b/unit_tests/operator/Test_Squeeze_Op.cpp index f5fd07198..f1261fffb 100644 --- a/unit_tests/operator/Test_Squeeze_Op.cpp +++ b/unit_tests/operator/Test_Squeeze_Op.cpp @@ -446,9 +446,9 @@ TEST_CASE("[core/operator] Squeeze(forward)", "[Squeeze][forward]") { delete[] array_in; } - fmt::print("INFO: GlobalAveragePooling total execution time: {}µs\n", duration.count()); - fmt::print("INFO: Number of operations : {}\n", number_of_operation); - fmt::print("INFO: Operation / µs = {}\n", number_of_operation / duration.count()); + Log::info("GlobalAveragePooling total execution time: {}µs\n", duration.count()); + Log::info("Number of operations : {}\n", number_of_operation); + Log::info("Operation / µs = {}\n", number_of_operation / duration.count()); } } } diff --git a/unit_tests/operator/Test_Unsqueeze_Op.cpp b/unit_tests/operator/Test_Unsqueeze_Op.cpp index 650cbaf3e..5cedcfdfa 100644 --- a/unit_tests/operator/Test_Unsqueeze_Op.cpp +++ b/unit_tests/operator/Test_Unsqueeze_Op.cpp @@ -373,9 +373,9 @@ TEST_CASE("[core/operator] Unsqueeze(forward)", "[Unsqueeze][forward]") { delete[] array_in; } } - fmt::print("INFO: GlobalAveragePooling total execution time: {}µs\n", duration.count()); - fmt::print("INFO: Number of operations : {}\n", number_of_operation); - fmt::print("INFO: Operation / µs = {}\n", number_of_operation / duration.count()); + Log::info("GlobalAveragePooling total execution time: {}µs\n", duration.count()); + Log::info("Number of operations : {}\n", number_of_operation); + Log::info("Operation / µs = {}\n", number_of_operation / duration.count()); } } -- GitLab From 79b72fd0b6df53a6f8257db12a159a8dcc2c0301 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 12:54:22 +0000 Subject: [PATCH 109/157] fix pybind11 include --- include/aidge/utils/Log.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index a91a68478..8c576fc81 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -19,7 +19,7 @@ #include <fmt/format.h> #include <fmt/color.h> #ifdef PYBIND -#include <pybind11/pybind.h> +#include <pybind11/pybind11.h> #endif #include "aidge/utils/Attributes.hpp" -- GitLab From afb3f869e53a112dca230b460f939f58666f4a78 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 14:15:15 +0000 Subject: [PATCH 110/157] ENHANCE: split DataType, DataFormat, EnumString from other files The purpose is to simplify dependencies Remove DataType and DataFormat from Data.hpp into their own header/src files. Make DataType conversion initialization constexpr Move EnumString to its own file. It was required to include Attributes.hpp even though this file doesn't even use EnumString. --- include/aidge/aidge.hpp | 3 + include/aidge/data/Data.hpp | 154 ------------------ include/aidge/data/DataFormat.hpp | 82 ++++++++++ include/aidge/data/DataType.hpp | 187 ++++++++++++++++++++++ include/aidge/utils/Attributes.hpp | 8 - include/aidge/utils/Log.hpp | 2 +- include/aidge/utils/logger/EnumString.hpp | 23 +++ src/data/{Data.cpp => DataFormat.cpp} | 46 +----- src/data/DataType.cpp | 46 ++++++ 9 files changed, 343 insertions(+), 208 deletions(-) create mode 100644 include/aidge/data/DataFormat.hpp create mode 100644 include/aidge/data/DataType.hpp create mode 100644 include/aidge/utils/logger/EnumString.hpp rename src/data/{Data.cpp => DataFormat.cpp} (50%) create mode 100644 src/data/DataType.cpp diff --git a/include/aidge/aidge.hpp b/include/aidge/aidge.hpp index d65a46378..bf8bcbca0 100644 --- a/include/aidge/aidge.hpp +++ b/include/aidge/aidge.hpp @@ -21,6 +21,8 @@ #include "aidge/backend/cpu/data/GetCPUPtr.h" #include "aidge/data/Data.hpp" +#include "aidge/data/DataFormat.hpp" +#include "aidge/data/DataType.hpp" #include "aidge/data/Tensor.hpp" #include "aidge/data/Database.hpp" #include "aidge/data/DataProvider.hpp" @@ -93,6 +95,7 @@ #include "aidge/utils/Random.hpp" #include "aidge/utils/Registrar.hpp" #include "aidge/utils/Types.h" +#include "aidge/utils/logger/EnumString.hpp" #include "aidge/utils/sys_info/CoreVersionInfo.hpp" #endif /* AIDGE_IMPORTS_H_ */ diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index 35df9c0e0..156e4d8c1 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -12,90 +12,11 @@ #ifndef AIDGE_DATA_H_ #define AIDGE_DATA_H_ -#include <cstdint> -#include <fmt/format.h> #include <string> -#include <tuple> -#include <array> -#include "aidge/data/half.hpp" -#include "aidge/utils/Attributes.hpp" #include "aidge/utils/ErrorHandling.hpp" namespace Aidge { -enum class DataType { - Float64, - Float32, - Float16, - BFloat16, - Binary, - Octo_Binary, - Ternary, - Int2, - Quad_Int2, - Int3, - Dual_Int3, - Int4, - Dual_Int4, - Int5, - Int6, - Int7, - Int8, - Int16, - Int32, - Int64, - UInt2, - Quad_UInt2, - UInt3, - Dual_UInt3, - UInt4, - Dual_UInt4, - UInt5, - UInt6, - UInt7, - UInt8, - UInt16, - UInt32, - UInt64, - Any -}; - -bool isDataTypeFloatingPoint(const DataType& type); -size_t getDataTypeBitWidth(const DataType& type); - -enum class DataFormat { - Default, - NCHW, - NHWC, - CHWN, - NCDHW, - NDHWC, - CDHWN, - Any -}; - -using DataFormatTranspose = std::array<size_t, 5>; -// Permutation arrays dict to obtain DataFormat (same order as DataFormat enum) -constexpr std::array<DataFormatTranspose, 7> DataFormatTransposeDict = {{ - // Important: in this array only, dimension index must start at 1, not 0! - // (0 is the default value) - {}, - {1, 2, 3, 4}, - {1, 3, 4, 2}, - {2, 3, 4, 1}, - {1, 2, 3, 4, 5}, - {1, 3, 4, 5, 2}, - {2, 3, 4, 5, 1} -}}; - -/** - * Get the DataFormatTranspose array to transpose data from src to dst DataFormat. - * @param src Source DataFormat - * @param dst Destination DataFormat - * @return DataFormatTranspose Permutation array to achieve a transposition - * from src to dst DataFormat. -*/ -DataFormatTranspose getDataFormatTranspose(const DataFormat& src, const DataFormat& dst); class Data { public: @@ -123,79 +44,4 @@ private: }; } -namespace { - -template <Aidge::DataType D> struct WeightInterleavingType { static const Aidge::DataType type; }; -template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Int4>::type = Aidge::DataType::Dual_Int4; -template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::UInt4>::type = Aidge::DataType::Dual_UInt4; -template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Int3>::type = Aidge::DataType::Dual_Int3; -template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::UInt3>::type = Aidge::DataType::Dual_UInt3; -template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Int2>::type = Aidge::DataType::Quad_Int2; -template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::UInt2>::type = Aidge::DataType::Quad_UInt2; -template <> const Aidge::DataType WeightInterleavingType<Aidge::DataType::Binary>::type = Aidge::DataType::Octo_Binary; - - -template <typename T> struct NativeType { static const Aidge::DataType type; }; -template <> const Aidge::DataType NativeType<double>::type = Aidge::DataType::Float64; -template <> const Aidge::DataType NativeType<float>::type = Aidge::DataType::Float32; -template <> const Aidge::DataType NativeType<half_float::half>::type = Aidge::DataType::Float16; -template <> const Aidge::DataType NativeType<std::int8_t>::type = Aidge::DataType::Int8; -template <> const Aidge::DataType NativeType<std::int16_t>::type = Aidge::DataType::Int16; -template <> const Aidge::DataType NativeType<std::int32_t>::type = Aidge::DataType::Int32; -template <> const Aidge::DataType NativeType<std::int64_t>::type = Aidge::DataType::Int64; -template <> const Aidge::DataType NativeType<std::uint8_t>::type = Aidge::DataType::UInt8; -template <> const Aidge::DataType NativeType<std::uint16_t>::type = Aidge::DataType::UInt16; -template <> const Aidge::DataType NativeType<std::uint32_t>::type = Aidge::DataType::UInt32; -template <> const Aidge::DataType NativeType<std::uint64_t>::type = Aidge::DataType::UInt64; - -template <> -const char* const EnumStrings<Aidge::DataType>::data[] - = {"Float64", "Float32", "Float16", "BFloat16", "Binary", "Octo_Binary", "Ternary", - "Int2", "Quad_Int2", "Int3", "Dual_Int3", "Int4", "Dual_Int4", "Int5", "Int6", "Int7", "Int8", "Int16", - "Int32", "Int64", "UInt2", "Quad_UInt2", "UInt3", "Dual_UInt3", "UInt4", "Dual_UInt4", "UInt5", "UInt6", - "UInt7", "UInt8", "UInt16", "UInt32", "UInt64", "Any"}; - -template <> -const char* const EnumStrings<Aidge::DataFormat>::data[] - = {"Default", "NCHW", "NHWC", "CHWN", "NCDHW", "NDHWC", "CDHWN", "Any"}; - -template <Aidge::DataType D> struct cpptype { - using type = void; // Placeholder -}; -template <> struct cpptype<Aidge::DataType::Float16> { using type = half_float::half; }; -template <> struct cpptype<Aidge::DataType::Float32> { using type = float; }; -template <> struct cpptype<Aidge::DataType::Float64> { using type = double; }; -template <> struct cpptype<Aidge::DataType::Int4> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::UInt4> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Int3> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::UInt3> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Int2> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::UInt2> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Dual_Int4> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Dual_UInt4> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Dual_Int3> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Dual_UInt3> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Quad_Int2> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Quad_UInt2> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Binary> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Octo_Binary> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Int8> { using type = std::int8_t; }; -template <> struct cpptype<Aidge::DataType::Int16> { using type = std::int16_t; }; -template <> struct cpptype<Aidge::DataType::Int32> { using type = std::int32_t; }; -template <> struct cpptype<Aidge::DataType::Int64> { using type = std::int64_t; }; -template <> struct cpptype<Aidge::DataType::UInt8> { using type = std::uint8_t; }; -template <> struct cpptype<Aidge::DataType::UInt16> { using type = std::uint16_t; }; -template <> struct cpptype<Aidge::DataType::UInt32> { using type = std::uint32_t; }; -template <> struct cpptype<Aidge::DataType::UInt64> { using type = std::uint64_t; }; - -template <Aidge::DataType D> using cpptype_t = typename cpptype<D>::type; - -} - - -namespace Aidge { -inline auto format_as(DataType dt) { return EnumStrings<Aidge::DataType>::data[static_cast<int>(dt)]; } -inline auto format_as(DataFormat df) { return EnumStrings<Aidge::DataFormat>::data[static_cast<int>(df)]; } -} - #endif /* AIDGE_DATA_H_ */ diff --git a/include/aidge/data/DataFormat.hpp b/include/aidge/data/DataFormat.hpp new file mode 100644 index 000000000..1f018a497 --- /dev/null +++ b/include/aidge/data/DataFormat.hpp @@ -0,0 +1,82 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#ifndef AIDGE_CORE_DATA_DATAFORMAT_H_ +#define AIDGE_CORE_DATA_DATAFORMAT_H_ + +#include <array> +#include <cstddef> // std::size_t + +#include "aidge/utils/logger/EnumString.hpp" + +namespace Aidge { + +/** + * @brief Enumeration of supported tensor data layouts + * + * Represents different memory layout formats for multi-dimensional tensors: + * - N: Batch size + * - C: Channels + * - H: Height + * - W: Width + * - D: Depth (for 3D tensors) + */ +enum class DataFormat { + Default, ///< Default format, implementation dependent + NCHW, ///< 4D format: [batch][channel][height][width] + NHWC, ///< 4D format: [batch][height][width][channel] + CHWN, ///< 4D format: [channel][height][width][batch] + NCDHW, ///< 5D format: [batch][channel][depth][height][width] + NDHWC, ///< 5D format: [batch][depth][height][width][channel] + CDHWN, ///< 5D format: [channel][depth][height][width][batch] + Any ///< Unspecified format +}; + +using DataFormatTranspose = std::array<std::size_t, 5>; + +/** + * @brief Dictionary of transpose operations between different formats + * + * Contains permutation arrays to convert between different data formats. + * @warning In this array only, dimension index starts at 1 + * (0 is reserved as default value). + */ +constexpr std::array<DataFormatTranspose, 7> DataFormatTransposeDict = {{ + {}, // Default + {1, 2, 3, 4}, // NCHW + {1, 3, 4, 2}, // NHWC + {2, 3, 4, 1}, // CHWN + {1, 2, 3, 4, 5}, // NCDHW + {1, 3, 4, 5, 2}, // NDHWC + {2, 3, 4, 5, 1} // CDHWN +}}; + +/** + * @brief Get the permutation array for converting between data formats + * + * @param src Source data format + * @param dst Destination data format + * @return DataFormatTranspose Permutation array to achieve the format conversion + */ +DataFormatTranspose getDataFormatTranspose(const DataFormat& src, const DataFormat& dst); + + +namespace { +template <> +const char* const EnumStrings<DataFormat>::data[] + = {"Default", "NCHW", "NHWC", "CHWN", "NCDHW", "NDHWC", "CDHWN", "Any"}; +} + +inline auto format_as(DataFormat df) { return EnumStrings<DataFormat>::data[static_cast<int>(df)]; } + +} // namespace Aidge + +#endif /* AIDGE_CORE_DATA_DATAFORMAT_H_ */ diff --git a/include/aidge/data/DataType.hpp b/include/aidge/data/DataType.hpp new file mode 100644 index 000000000..859dfcb2e --- /dev/null +++ b/include/aidge/data/DataType.hpp @@ -0,0 +1,187 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#ifndef AIDGE_CORE_DATA_DATATYPE_H_ +#define AIDGE_CORE_DATA_DATATYPE_H_ + +#include <cstddef> // std::size_t +#include <cstdint> + +#include "aidge/data/half.hpp" +#include "aidge/utils/logger/EnumString.hpp" + +namespace Aidge { +/** + * @brief Enumeration of data types supported by the framework + * + * Represents the various data types that can be used for computation and storage. + * This includes standard types (floating point, integers), quantized types, + * and specialized formats for neural network operations. + */ +enum class DataType { + // Floating point types + Float64, ///< 64-bit floating point (double) + Float32, ///< 32-bit floating point (float) + Float16, ///< 16-bit floating point (half) + BFloat16, ///< 16-bit brain floating point + + // Quantized binary and ternary types + Binary, ///< 1-bit binary values + Octo_Binary,///< 8x1-bit interleaved binary + Ternary, ///< Ternary values (-1,0,1) + + // Quantized integer types (2-bit) + Int2, ///< 2-bit signed integer + Quad_Int2, ///< 4x2-bit interleaved signed integer + UInt2, ///< 2-bit unsigned integer + Quad_UInt2, ///< 4x2-bit interleaved unsigned integer + + // Quantized integer types (3-bit) + Int3, ///< 3-bit signed integer + Dual_Int3, ///< 2x3-bit interleaved signed integer + UInt3, ///< 3-bit unsigned integer + Dual_UInt3, ///< 2x3-bit interleaved unsigned integer + + // Quantized integer types (4-bit) + Int4, ///< 4-bit signed integer + Dual_Int4, ///< 2x4-bit interleaved signed integer + UInt4, ///< 4-bit unsigned integer + Dual_UInt4, ///< 2x4-bit interleaved unsigned integer + + // Standard integer types + Int5, ///< 5-bit signed integer + Int6, ///< 6-bit signed integer + Int7, ///< 7-bit signed integer + Int8, ///< 8-bit signed integer + Int16, ///< 16-bit signed integer + Int32, ///< 32-bit signed integer + Int64, ///< 64-bit signed integer + + UInt5, ///< 5-bit unsigned integer + UInt6, ///< 6-bit unsigned integer + UInt7, ///< 7-bit unsigned integer + UInt8, ///< 8-bit unsigned integer + UInt16, ///< 16-bit unsigned integer + UInt32, ///< 32-bit unsigned integer + UInt64, ///< 64-bit unsigned integer + + Any ///< Unspecified type +}; + +namespace { + +template <> +const char* const EnumStrings<DataType>::data[] + = {"Float64", "Float32", "Float16", "BFloat16", "Binary", "Octo_Binary", + "Ternary", "Int2", "Quad_Int2", "UInt2", "Quad_UInt2", "Int3", + "Dual_Int3", "UInt3", "Dual_UInt3", "Int4", "Dual_Int4", "UInt4", + "Dual_UInt4", "Int5", "Int6", "Int7", "Int8", "Int16", "Int32", "Int64", + "UInt5", "UInt6", "UInt7", "UInt8", "UInt16", "UInt32", "UInt64", "Any"}; + + +// Type trait for mapping C++ types to Aidge DataType +template<typename T> +struct NativeType { + static constexpr DataType value = DataType::Any; +}; +// Helper variable template +template<typename T> +constexpr DataType NativeType_v = NativeType<T>::value; +// Specializations for native types +template<> struct NativeType<double> { static constexpr DataType value = Aidge::DataType::Float64; }; +template<> struct NativeType<float> { static constexpr DataType value = Aidge::DataType::Float32; }; +template<> struct NativeType<half_float::half> { static constexpr DataType value = Aidge::DataType::Float16; }; +template<> struct NativeType<std::int8_t> { static constexpr DataType value = Aidge::DataType::Int8; }; +template<> struct NativeType<std::int16_t> { static constexpr DataType value = Aidge::DataType::Int16; }; +template<> struct NativeType<std::int32_t> { static constexpr DataType value = Aidge::DataType::Int32; }; +template<> struct NativeType<std::int64_t> { static constexpr DataType value = Aidge::DataType::Int64; }; +template<> struct NativeType<std::uint8_t> { static constexpr DataType value = Aidge::DataType::UInt8; }; +template<> struct NativeType<std::uint16_t> { static constexpr DataType value = Aidge::DataType::UInt16; }; +template<> struct NativeType<std::uint32_t> { static constexpr DataType value = Aidge::DataType::UInt32; }; +template<> struct NativeType<std::uint64_t> { static constexpr DataType value = Aidge::DataType::UInt64; }; + + +// Type trait for mapping Aidge DataType to C++ types +template <DataType D> +struct cpptype { + using type = void; // Placeholder +}; +// Helper alias template +template <DataType D> +using cpptype_t = typename cpptype<D>::type; +// Specializations for data types +template <> struct cpptype<DataType::Float16> { using type = half_float::half; }; +template <> struct cpptype<DataType::Float32> { using type = float; }; +template <> struct cpptype<DataType::Float64> { using type = double; }; +template <> struct cpptype<DataType::Int4> { using type = std::int8_t; }; +template <> struct cpptype<DataType::UInt4> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Int3> { using type = std::int8_t; }; +template <> struct cpptype<DataType::UInt3> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Int2> { using type = std::int8_t; }; +template <> struct cpptype<DataType::UInt2> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Dual_Int4> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Dual_UInt4> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Dual_Int3> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Dual_UInt3> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Quad_Int2> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Quad_UInt2> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Binary> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Octo_Binary> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Int8> { using type = std::int8_t; }; +template <> struct cpptype<DataType::Int16> { using type = std::int16_t; }; +template <> struct cpptype<DataType::Int32> { using type = std::int32_t; }; +template <> struct cpptype<DataType::Int64> { using type = std::int64_t; }; +template <> struct cpptype<DataType::UInt8> { using type = std::uint8_t; }; +template <> struct cpptype<DataType::UInt16> { using type = std::uint16_t; }; +template <> struct cpptype<DataType::UInt32> { using type = std::uint32_t; }; +template <> struct cpptype<DataType::UInt64> { using type = std::uint64_t; }; + + +// Type trait for mapping DataType to their interleaved variants +template<DataType D> +struct WeightInterleavedType { + static const DataType value = DataType::Any; +}; +// Helper varible template +template<DataType D> +constexpr DataType WeightInterleavedType_v = WeightInterleavedType<D>::value; +// Specializations for interleaved types +template<> struct WeightInterleavedType<DataType::Int4> { static constexpr DataType value = DataType::Dual_Int4; }; +template<> struct WeightInterleavedType<DataType::UInt4> { static constexpr DataType value = DataType::Dual_UInt4; }; +template<> struct WeightInterleavedType<DataType::Int3> { static constexpr DataType value = DataType::Dual_Int3; }; +template<> struct WeightInterleavedType<DataType::UInt3> { static constexpr DataType value = DataType::Dual_UInt3; }; +template<> struct WeightInterleavedType<DataType::Int2> { static constexpr DataType value = DataType::Quad_Int2; }; +template<> struct WeightInterleavedType<DataType::UInt2> { static constexpr DataType value = DataType::Quad_UInt2; }; +template<> struct WeightInterleavedType<DataType::Binary> { static constexpr DataType value = DataType::Octo_Binary; }; + +} + +/** + * @brief Check if a data type is floating point + * @param type The type to check + * @return true if the type is floating point, false otherwise + */ +constexpr bool isFloatingPoint(const DataType& type) noexcept { + return type == DataType::Float64 || + type == DataType::Float32 || + type == DataType::Float16 || + type == DataType::BFloat16; +} + +std::size_t getDataTypeBitWidth(const DataType& type); + +inline auto format_as(DataType dt) { + return EnumStrings<DataType>::data[static_cast<int>(dt)]; +} + +} // namespace Aidge + +#endif /* AIDGE_CORE_DATA_DATATYPE_H_ */ diff --git a/include/aidge/utils/Attributes.hpp b/include/aidge/utils/Attributes.hpp index f73de2ea3..e25485fe0 100644 --- a/include/aidge/utils/Attributes.hpp +++ b/include/aidge/utils/Attributes.hpp @@ -26,14 +26,6 @@ namespace py = pybind11; #endif -namespace { -// This is the type that will hold all the strings. Each enumerate type will -// declare its own specialization. -template <typename T> struct EnumStrings { - static const char* const data[]; -}; -} - namespace Aidge { template<class T, std::size_t N> constexpr std::size_t size(T (&)[N]) { return N; } diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index 8c576fc81..91619b15b 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -22,7 +22,7 @@ #include <pybind11/pybind11.h> #endif -#include "aidge/utils/Attributes.hpp" +#include "aidge/utils/logger/EnumString.hpp" namespace Aidge { diff --git a/include/aidge/utils/logger/EnumString.hpp b/include/aidge/utils/logger/EnumString.hpp new file mode 100644 index 000000000..6091d8bf5 --- /dev/null +++ b/include/aidge/utils/logger/EnumString.hpp @@ -0,0 +1,23 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#ifndef AIDGE_CORE_UTILS_LOGGER_ENUMSTRING_H_ +#define AIDGE_CORE_UTILS_LOGGER_ENUMSTRING_H_ + +namespace { +// This is the type that will hold all the strings. Each enumerate type will +// declare its own specialization. +template <typename T> struct EnumStrings { + static const char* const data[]; +}; +} + +#endif /* AIDGE_CORE_UTILS_LOGGER_ENUMSTRING_H_ */ diff --git a/src/data/Data.cpp b/src/data/DataFormat.cpp similarity index 50% rename from src/data/Data.cpp rename to src/data/DataFormat.cpp index 865b4ff2d..fcded91bd 100644 --- a/src/data/Data.cpp +++ b/src/data/DataFormat.cpp @@ -9,51 +9,7 @@ * ********************************************************************************/ -#include "aidge/data/Data.hpp" - -bool Aidge::isDataTypeFloatingPoint(const DataType& type) { - switch (type) { - case DataType::Float64: - case DataType::Float32: - case DataType::Float16: - case DataType::BFloat16: return true; - default: return false; - } - return false; -} - -size_t Aidge::getDataTypeBitWidth(const DataType& type) { - switch (type) { - case DataType::Float64: return 64; - case DataType::Float32: return 32; - case DataType::Float16: return 16; - case DataType::BFloat16: return 16; - case DataType::Binary: return 1; - case DataType::Ternary: return 2; - case DataType::Int2: return 2; - case DataType::Int3: return 3; - case DataType::Int4: return 4; - case DataType::Int5: return 5; - case DataType::Int6: return 6; - case DataType::Int7: return 7; - case DataType::Int8: return 8; - case DataType::Int16: return 16; - case DataType::Int32: return 32; - case DataType::Int64: return 64; - case DataType::UInt2: return 2; - case DataType::UInt3: return 3; - case DataType::UInt4: return 4; - case DataType::UInt5: return 5; - case DataType::UInt6: return 6; - case DataType::UInt7: return 7; - case DataType::UInt8: return 8; - case DataType::UInt16: return 16; - case DataType::UInt32: return 32; - case DataType::UInt64: return 64; - default: return 0; - } - return 0; -} +#include "aidge/data/DataFormat.hpp" Aidge::DataFormatTranspose Aidge::getDataFormatTranspose(const DataFormat& src, const DataFormat& dst) { // Permutation array from default format to src format diff --git a/src/data/DataType.cpp b/src/data/DataType.cpp new file mode 100644 index 000000000..d012d2f45 --- /dev/null +++ b/src/data/DataType.cpp @@ -0,0 +1,46 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include "aidge/data/DataType.hpp" + +#include <cstddef> // std::size_t + +std::size_t Aidge::getDataTypeBitWidth(const Aidge::DataType& type) { + switch (type) { + case DataType::Float64: return 64; + case DataType::Float32: return 32; + case DataType::Float16: return 16; + case DataType::BFloat16: return 16; + case DataType::Binary: return 1; + case DataType::Ternary: return 2; + case DataType::Int2: return 2; + case DataType::Int3: return 3; + case DataType::Int4: return 4; + case DataType::Int5: return 5; + case DataType::Int6: return 6; + case DataType::Int7: return 7; + case DataType::Int8: return 8; + case DataType::Int16: return 16; + case DataType::Int32: return 32; + case DataType::Int64: return 64; + case DataType::UInt2: return 2; + case DataType::UInt3: return 3; + case DataType::UInt4: return 4; + case DataType::UInt5: return 5; + case DataType::UInt6: return 6; + case DataType::UInt7: return 7; + case DataType::UInt8: return 8; + case DataType::UInt16: return 16; + case DataType::UInt32: return 32; + case DataType::UInt64: return 64; + default: return 0; + } +} \ No newline at end of file -- GitLab From 49f9606cb38183754bfa57c6788b4364093594fb Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 14:21:21 +0000 Subject: [PATCH 111/157] Change required dependencies includes --- include/aidge/backend/OperatorImpl.hpp | 7 +++-- include/aidge/backend/TensorImpl.hpp | 2 +- include/aidge/backend/cpu/data/TensorImpl.hpp | 1 + include/aidge/data/Elts.hpp | 1 + include/aidge/data/Tensor.hpp | 30 ++++++++++--------- include/aidge/operator/GridSample.hpp | 2 +- python_binding/data/pybind_Data.cpp | 4 ++- src/graph/StaticAnalysis.cpp | 4 +-- 8 files changed, 30 insertions(+), 21 deletions(-) diff --git a/include/aidge/backend/OperatorImpl.hpp b/include/aidge/backend/OperatorImpl.hpp index 8a6684b22..9710c028a 100644 --- a/include/aidge/backend/OperatorImpl.hpp +++ b/include/aidge/backend/OperatorImpl.hpp @@ -12,13 +12,16 @@ #ifndef AIDGE_BACKEND_OPERATORIMPL_H_ #define AIDGE_BACKEND_OPERATORIMPL_H_ +#include <functional> // std::function +#include <memory> #include <string> #include <vector> -#include <functional> +#include <utility> // std::pair #include "aidge/utils/Types.h" #include "aidge/utils/DynamicAttributes.hpp" -#include "aidge/data/Data.hpp" +#include "aidge/data/DataFormat.hpp" +#include "aidge/data/DataType.hpp" #include "aidge/data/Elts.hpp" #include "aidge/scheduler/ProdConso.hpp" diff --git a/include/aidge/backend/TensorImpl.hpp b/include/aidge/backend/TensorImpl.hpp index 6ddb29c8d..05674c44d 100644 --- a/include/aidge/backend/TensorImpl.hpp +++ b/include/aidge/backend/TensorImpl.hpp @@ -19,7 +19,7 @@ #include <vector> #include <string> -#include "aidge/data/Data.hpp" +#include "aidge/data/DataType.hpp" #include "aidge/utils/ErrorHandling.hpp" #include "aidge/utils/Types.h" diff --git a/include/aidge/backend/cpu/data/TensorImpl.hpp b/include/aidge/backend/cpu/data/TensorImpl.hpp index 4f7079e59..cc0b2e665 100644 --- a/include/aidge/backend/cpu/data/TensorImpl.hpp +++ b/include/aidge/backend/cpu/data/TensorImpl.hpp @@ -13,6 +13,7 @@ #define AIDGE_CPU_DATA_TENSORIMPL_H_ #include "aidge/backend/TensorImpl.hpp" +#include "aidge/data/DataType.hpp" #include "aidge/data/Tensor.hpp" #include "aidge/utils/Registrar.hpp" #include "aidge/utils/Types.h" diff --git a/include/aidge/data/Elts.hpp b/include/aidge/data/Elts.hpp index bc4a225fc..b2df11968 100644 --- a/include/aidge/data/Elts.hpp +++ b/include/aidge/data/Elts.hpp @@ -14,6 +14,7 @@ #include "aidge/utils/ErrorHandling.hpp" #include "aidge/utils/Types.h" +#include "aidge/utils/logger/EnumString.hpp" namespace Aidge { /** diff --git a/include/aidge/data/Tensor.hpp b/include/aidge/data/Tensor.hpp index 3f609e54d..c8df815bb 100644 --- a/include/aidge/data/Tensor.hpp +++ b/include/aidge/data/Tensor.hpp @@ -27,6 +27,8 @@ #include "aidge/backend/TensorImpl.hpp" #include "aidge/data/Data.hpp" +#include "aidge/data/DataType.hpp" +#include "aidge/data/DataFormat.hpp" #include "aidge/utils/ArrayHelpers.hpp" #include "aidge/utils/ErrorHandling.hpp" #include "aidge/utils/Registrar.hpp" @@ -85,11 +87,11 @@ class Tensor : public Data, typename VT = std::enable_if_t<std::is_arithmetic<T>::value, std::decay_t<T>>> Tensor(T val) : Data(Type), - mDataType(NativeType<VT>::type), + mDataType(NativeType_v<VT>), mDataFormat(DataFormat::Default), mDims({}), mStrides({1}), - mImpl(Registrar<Tensor>::create({"cpu", NativeType<VT>::type})(0, std::vector<std::size_t>())), + mImpl(Registrar<Tensor>::create({"cpu", NativeType_v<VT>})(0, std::vector<std::size_t>())), mSize(1) { *static_cast<VT*>(mImpl->rawPtr()) = static_cast<VT>(val); @@ -114,10 +116,10 @@ class Tensor : public Data, template <typename T> Tensor(Vector<T> &&arr) : Data(Type), - mDataType(NativeType<T>::type), + mDataType(NativeType_v<T>), mDims({arr.data.size()}), mStrides({1}), - mImpl(Registrar<Tensor>::create({"cpu", NativeType<T>::type})(0, {arr.data.size()})), + mImpl(Registrar<Tensor>::create({"cpu", NativeType_v<T>})(0, {arr.data.size()})), mSize(arr.data.size()) { mImpl->copyFromHost(&arr.data[0], arr.data.size()); @@ -131,11 +133,11 @@ class Tensor : public Data, template <typename T, std::size_t SIZE_0> constexpr Tensor(Array1D<T, SIZE_0> &&arr) : Data(Type), - mDataType(NativeType<T>::type), + mDataType(NativeType_v<T>), mDataFormat(DataFormat::Default), mDims({SIZE_0}), mStrides({1}), - mImpl(Registrar<Tensor>::create({"cpu", NativeType<T>::type})(0, {SIZE_0})), + mImpl(Registrar<Tensor>::create({"cpu", NativeType_v<T>})(0, {SIZE_0})), mSize(SIZE_0) { mImpl->copyFromHost(&arr.data[0], SIZE_0); @@ -150,11 +152,11 @@ class Tensor : public Data, template <typename T, std::size_t SIZE_0, std::size_t SIZE_1> constexpr Tensor(Array2D<T, SIZE_0, SIZE_1> &&arr) : Data(Type), - mDataType(NativeType<T>::type), + mDataType(NativeType_v<T>), mDataFormat(DataFormat::Default), mDims({SIZE_0, SIZE_1}), mStrides({SIZE_1, 1}), - mImpl(Registrar<Tensor>::create({"cpu", NativeType<T>::type})(0, {SIZE_0, SIZE_1})), + mImpl(Registrar<Tensor>::create({"cpu", NativeType_v<T>})(0, {SIZE_0, SIZE_1})), mSize(SIZE_0 * SIZE_1) { mImpl->copyFromHost(&arr.data[0][0], SIZE_0 * SIZE_1); } @@ -169,11 +171,11 @@ class Tensor : public Data, template <typename T, std::size_t SIZE_0, std::size_t SIZE_1, std::size_t SIZE_2> constexpr Tensor(Array3D<T, SIZE_0, SIZE_1, SIZE_2> &&arr) : Data(Type), - mDataType(NativeType<T>::type), + mDataType(NativeType_v<T>), mDataFormat(DataFormat::Default), mDims({SIZE_0, SIZE_1, SIZE_2}), mStrides({SIZE_1 * SIZE_2, SIZE_2, 1}), - mImpl(Registrar<Tensor>::create({"cpu", NativeType<T>::type})(0, {SIZE_0, SIZE_1, SIZE_2})), + mImpl(Registrar<Tensor>::create({"cpu", NativeType_v<T>})(0, {SIZE_0, SIZE_1, SIZE_2})), mSize(SIZE_0 * SIZE_1 * SIZE_2) { mImpl->copyFromHost(&arr.data[0][0][0], SIZE_0 * SIZE_1 * SIZE_2); } @@ -189,11 +191,11 @@ class Tensor : public Data, template <typename T, std::size_t SIZE_0, std::size_t SIZE_1, std::size_t SIZE_2, std::size_t SIZE_3> constexpr Tensor(Array4D<T, SIZE_0, SIZE_1, SIZE_2, SIZE_3> &&arr) : Data(Type), - mDataType(NativeType<T>::type), + mDataType(NativeType_v<T>), mDataFormat(DataFormat::Default), mDims({SIZE_0, SIZE_1, SIZE_2, SIZE_3}), mStrides({SIZE_1 * SIZE_2 * SIZE_3, SIZE_2 * SIZE_3, SIZE_3, 1}), - mImpl(Registrar<Tensor>::create({"cpu", NativeType<T>::type})(0, {SIZE_0, SIZE_1, SIZE_2, SIZE_3})), + mImpl(Registrar<Tensor>::create({"cpu", NativeType_v<T>})(0, {SIZE_0, SIZE_1, SIZE_2, SIZE_3})), mSize(SIZE_0 * SIZE_1 * SIZE_2 * SIZE_3) { mImpl->copyFromHost(&arr.data[0][0][0][0], SIZE_0 * SIZE_1 * SIZE_2 * SIZE_3); } @@ -615,7 +617,7 @@ public: template <typename expectedType> const expectedType& get(std::size_t idx) const { - AIDGE_ASSERT(NativeType<expectedType>::type == mDataType, "Tensor::get<>({}): wrong data type, expected {}, got {}", idx, mDataType, NativeType<expectedType>::type); + AIDGE_ASSERT(NativeType_v<expectedType> == mDataType, "Tensor::get<>({}): wrong data type, expected {}, got {}", idx, mDataType, NativeType_v<expectedType>); AIDGE_ASSERT(mImpl->hostPtr() != nullptr, "Tensor::get<>({}): can only be used for backends providing a valid host pointer.", idx); AIDGE_ASSERT(idx < mSize, "Tensor::get<>({}): idx {} out of range, tensor size {}", idx, mSize); return *reinterpret_cast<expectedType *>(mImpl->hostPtr(mImplOffset + idx)); @@ -628,7 +630,7 @@ public: template <typename expectedType> void set(std::size_t idx, expectedType value){ - AIDGE_ASSERT(NativeType<expectedType>::type == mDataType, "wrong data type"); + AIDGE_ASSERT(NativeType_v<expectedType> == mDataType, "wrong data type"); AIDGE_ASSERT(mImpl->hostPtr() != nullptr, "get() can only be used for backends providing a valid host pointer"); AIDGE_ASSERT(idx < mSize, "idx out of range"); expectedType* dataPtr = static_cast<expectedType*>(mImpl->hostPtr(mImplOffset + idx)); diff --git a/include/aidge/operator/GridSample.hpp b/include/aidge/operator/GridSample.hpp index dc2b2059e..fbf1be071 100644 --- a/include/aidge/operator/GridSample.hpp +++ b/include/aidge/operator/GridSample.hpp @@ -19,9 +19,9 @@ #include "aidge/graph/Node.hpp" #include "aidge/operator/OperatorTensor.hpp" -#include "aidge/utils/Attributes.hpp" #include "aidge/utils/Registrar.hpp" #include "aidge/utils/StaticAttributes.hpp" +#include "aidge/utils/logger/EnumString.hpp" namespace Aidge { diff --git a/python_binding/data/pybind_Data.cpp b/python_binding/data/pybind_Data.cpp index cdf8cc232..02a692dea 100644 --- a/python_binding/data/pybind_Data.cpp +++ b/python_binding/data/pybind_Data.cpp @@ -13,6 +13,8 @@ #include <pybind11/stl.h> #include "aidge/data/Data.hpp" +#include "aidge/data/DataType.hpp" +#include "aidge/data/DataFormat.hpp" namespace py = pybind11; namespace Aidge { @@ -66,7 +68,7 @@ void init_Data(py::module& m){ m.def("format_as", (const char* (*)(DataType)) &format_as, py::arg("dt")); m.def("format_as", (const char* (*)(DataFormat)) &format_as, py::arg("df")); - m.def("get_data_format_transpose", &getDataFormatTranspose, py::arg("src"), py::arg("dst")); + m.def("get_data_format_transpose", &getDataFormatTranspose, py::arg("src"), py::arg("dst")); } } diff --git a/src/graph/StaticAnalysis.cpp b/src/graph/StaticAnalysis.cpp index 4309c5c37..b322450bf 100644 --- a/src/graph/StaticAnalysis.cpp +++ b/src/graph/StaticAnalysis.cpp @@ -20,7 +20,7 @@ #include <fmt/format.h> #include <fmt/ranges.h> -#include "aidge/data/Data.hpp" // Aidge::isDataTypeFloatingPoint +#include "aidge/data/DataType.hpp" // Aidge::isFloatingPoint #include "aidge/data/Tensor.hpp" #include "aidge/graph/GraphView.hpp" #include "aidge/graph/Node.hpp" @@ -38,7 +38,7 @@ Aidge::OperatorStats::~OperatorStats() = default; std::size_t Aidge::OperatorStats::getNbArithmIntOps() const { const auto opTensor = dynamic_cast<const OperatorTensor*>(&mOp); if (opTensor) { - if (!isDataTypeFloatingPoint(opTensor->getOutput(0)->dataType())) { + if (!isFloatingPoint(opTensor->getOutput(0)->dataType())) { return getNbArithmOps(); } } -- GitLab From 333700e89ca288ff70dc87a8bad3198f02d7ae13 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 14:22:20 +0000 Subject: [PATCH 112/157] UPD: 'TensorUtils.hpp' to use Aidge log and assertion functions --- include/aidge/utils/TensorUtils.hpp | 58 +++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 16 deletions(-) diff --git a/include/aidge/utils/TensorUtils.hpp b/include/aidge/utils/TensorUtils.hpp index b5601f84c..3565e1195 100644 --- a/include/aidge/utils/TensorUtils.hpp +++ b/include/aidge/utils/TensorUtils.hpp @@ -11,12 +11,18 @@ #ifndef AIDGE_CORE_UTILS_TENSOR_UTILS_H_ #define AIDGE_CORE_UTILS_TENSOR_UTILS_H_ + #include <cmath> // std::abs + +#include "aidge/data/DataType.hpp" #include "aidge/data/Tensor.hpp" +#include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/Log.hpp" namespace Aidge { + /** - * @brief Compare two :cpp:class:`Aidge::Tensor` value wise. The comparison function is: + * @brief Compare two Aidge::Tensor value wise. The comparison function is: * * |t1-t2| <= absolute + relative * |t2| * @@ -25,32 +31,52 @@ namespace Aidge { * If the datatype is not the same between each tensor return False * If the templated type does not correspond to the datatype of each tensor, raise an assertion error * - * @tparam T should correspond to the type of the tensor, define the type of the absolute and relative error - * @param t1 first :cpp:class:`Aidge::Tensor` to test - * @param t2 second :cpp:class:`Aidge::Tensor` to test + * @tparam T1 should correspond to the type of the first tensor, defines part of the type for absolute and relative error + * @tparam T2 should correspond to the type of the second tensor, defaults to T1 + * @param t1 first Aidge::Tensor to test + * @param t2 second Aidge::Tensor to test * @param relative relative difference allowed (should be between 0 and 1) - * @param absolute absolute error allowed (shoulmd be positive) - * @return true if both tensor are approximately equal and have the datatype, shape. Else return false + * @param absolute absolute error allowed (should be positive) + * @return true if both tensors are approximately equal and have the same datatype and shape. Else return false */ template <typename T1, typename T2 = T1> -bool approxEq(const Tensor& t1, const Tensor& t2, float relative = 1e-5f, float absolute = 1e-8f){ - assert(t1.dataType() == NativeType<T1>::type); - assert(t2.dataType() == NativeType<T2>::type); - assert(relative >= 0); - assert(absolute >= 0 && absolute<=1); +bool approxEq(const Tensor& t1, const Tensor& t2, float relative = 1e-5f, float absolute = 1e-8f) { + // Check template type matches tensor datatype + AIDGE_ASSERT(t1.dataType() == NativeType_v<T1>, + "First tensor datatype ({}) does not match template type", t1.dataType()); + AIDGE_ASSERT(t2.dataType() == NativeType_v<T2>, + "Second tensor datatype ({}) does not match template type", t2.dataType()); + + // Validate parameters + AIDGE_ASSERT(relative >= 0.0f, + "Relative error must be non-negative (got {})", relative); + AIDGE_ASSERT(absolute >= 0.0f && absolute <= 1.0f, + "Absolute error must be between 0 and 1 (got {})", absolute); - if (t1.size() != t2.size()){ + // Check tensor sizes match + if (t1.size() != t2.size()) { + Log::error("Tensor sizes do not match: {} vs {}", t1.size(), t2.size()); return false; } - for(size_t i = 0; i < t1.size(); ++i){ - if (static_cast<float>(std::abs(t1.get<T1>(i) - t2.get<T2>(i))) > (absolute + (relative * static_cast<float>(std::abs(t2.get<T2>(i)))))){ - fmt::print("t1:\n{}\nt2\n{}\nat index {} {} != {}", t1, t2, i, t1.get<T1>(i), t2.get<T1>(i)); + + // Compare values + for (size_t i = 0; i < t1.size(); ++i) { + const auto val1 = t1.get<T1>(i); + const auto val2 = t2.get<T2>(i); + const float diff = static_cast<float>(std::abs(val1 - val2)); + const float threshold = absolute + (relative * static_cast<float>(std::abs(val2))); + + if (diff > threshold) { + Log::error("Tensor values differ at index {}: {} vs {} (diff: {}, threshold: {})\n" + "Tensor 1:\n{}\nTensor 2:\n{}", + i, val1, val2, diff, threshold, t1, t2); return false; } } + return true; } } // namespace Aidge -#endif /* AIDGE_CORE_UTILS_TENSOR_UTILS_H_s */ +#endif // AIDGE_CORE_UTILS_TENSOR_UTILS_H_ -- GitLab From c662e0cf6a167a32b5a367fe7c0e06c343041904 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 14:24:24 +0000 Subject: [PATCH 113/157] Change 'NativeType<type>::type' for 'NativeType_v<type>' --- python_binding/data/pybind_Tensor.cpp | 38 +++++++++++++-------------- src/filler/ConstantFiller.cpp | 2 +- src/filler/HeFiller.cpp | 2 +- src/filler/NormalFiller.cpp | 2 +- src/filler/UniformFiller.cpp | 2 +- src/filler/XavierFiller.cpp | 4 +-- src/operator/Clip.cpp | 14 +++++----- src/operator/Gather.cpp | 2 +- src/operator/Reshape.cpp | 2 +- src/operator/Resize.cpp | 2 +- src/operator/Slice.cpp | 8 +++--- src/operator/Split.cpp | 2 +- src/operator/Squeeze.cpp | 2 +- src/operator/Stack.cpp | 2 +- src/operator/Unsqueeze.cpp | 2 +- 15 files changed, 43 insertions(+), 43 deletions(-) diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index 9e58f2a07..973fc6f9a 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -40,16 +40,16 @@ using NumpyDType = py::detail::npy_api::constants; // Map Numpy dtype ids to aidge datatypes. // If a numpy dtype is not present, np array of this type is rejected. static const std::map<NumpyDType, DataType> NumpyTypeNameAsNativeType = { - { NumpyDType::NPY_INT8_, NativeType<std::int8_t>::type }, - { NumpyDType::NPY_INT16_, NativeType<std::int16_t>::type }, - { NumpyDType::NPY_INT32_, NativeType<std::int32_t>::type }, - { NumpyDType::NPY_INT64_, NativeType<std::int64_t>::type }, - { NumpyDType::NPY_UINT8_, NativeType<std::uint8_t>::type }, - { NumpyDType::NPY_UINT16_, NativeType<std::uint16_t>::type }, - { NumpyDType::NPY_UINT32_, NativeType<std::uint32_t>::type }, - { NumpyDType::NPY_UINT64_, NativeType<std::uint64_t>::type }, - { NumpyDType::NPY_FLOAT_, NativeType<float>::type }, - { NumpyDType::NPY_DOUBLE_, NativeType<double>::type }, + { NumpyDType::NPY_INT8_, NativeType_v<std::int8_t> }, + { NumpyDType::NPY_INT16_, NativeType_v<std::int16_t> }, + { NumpyDType::NPY_INT32_, NativeType_v<std::int32_t> }, + { NumpyDType::NPY_INT64_, NativeType_v<std::int64_t> }, + { NumpyDType::NPY_UINT8_, NativeType_v<std::uint8_t> }, + { NumpyDType::NPY_UINT16_, NativeType_v<std::uint16_t> }, + { NumpyDType::NPY_UINT32_, NativeType_v<std::uint32_t> }, + { NumpyDType::NPY_UINT64_, NativeType_v<std::uint64_t> }, + { NumpyDType::NPY_FLOAT_, NativeType_v<float> }, + { NumpyDType::NPY_DOUBLE_, NativeType_v<double> }, }; // The Numpy API indexes that we need to convert bare numpy scalars @@ -159,20 +159,20 @@ static bool getScalarNativeVal(const py::object obj, NativeValue* val_ptr, DataT using caster_i64 = py::detail::type_caster<std::int64_t>; using caster_f32 = py::detail::type_caster<float>; if (caster_i32().load(obj, false)) { - native_dtype = NativeType<std::int32_t>::type; + native_dtype = NativeType_v<std::int32_t>; native_val.i32 = py::cast<std::int32_t>(obj); } else if (caster_i64().load(obj, false)) { - native_dtype = NativeType<std::int64_t>::type; + native_dtype = NativeType_v<std::int64_t>; native_val.i64 = py::cast<std::int64_t>(obj); } else { - native_dtype = NativeType<float>::type; + native_dtype = NativeType_v<float>; native_val.f32 = py::cast<float>(obj); } found = true; } else if (py::isinstance<py::float_>(obj)) { // Note that for native python float, we cast to float32 which may loss // precision as python floats are of type float64. - native_dtype = NativeType<float>::type; + native_dtype = NativeType_v<float>; native_val.f32 = py::cast<float>(obj); found = true; } @@ -196,19 +196,19 @@ static void getConservativeNativeVal(const py::object obj, NativeValue *val_ptr, using caster_i64 = py::detail::type_caster<std::int64_t>; using caster_u64 = py::detail::type_caster<std::uint64_t>; if (caster_i64().load(obj, false)) { - native_dtype = NativeType<std::int64_t>::type; + native_dtype = NativeType_v<std::int64_t>; native_val.i64 = py::cast<std::int64_t>(obj); } else if (caster_u64().load(obj, false)) { - native_dtype = NativeType<std::uint64_t>::type; + native_dtype = NativeType_v<std::uint64_t>; native_val.u64 = py::cast<std::uint64_t>(obj); } else { - native_dtype = NativeType<double>::type; + native_dtype = NativeType_v<double>; native_val.f64 = py::cast<double>(obj); } found = true; } else if (py::isinstance<py::float_>(obj)) { // Note that for conservative cast we use double which is our larger float - native_dtype = NativeType<double>::type; + native_dtype = NativeType_v<double>; native_val.f64 = py::cast<double>(obj); found = true; } @@ -289,7 +289,7 @@ void addArrayCtor(pyTensorClass& mTensor) { /* Request a buffer descriptor from Python */ py::buffer_info info = b.request(); Tensor* newTensor = new Tensor(); - newTensor->setDataType(NativeType<T>::type); + newTensor->setDataType(NativeType_v<T>); const std::vector<DimSize_t> dims(info.shape.begin(), info.shape.end()); newTensor->resize(dims); diff --git a/src/filler/ConstantFiller.cpp b/src/filler/ConstantFiller.cpp index b2118866f..82ac42293 100644 --- a/src/filler/ConstantFiller.cpp +++ b/src/filler/ConstantFiller.cpp @@ -23,7 +23,7 @@ template<typename T> void Aidge::constantFiller(std::shared_ptr<Aidge::Tensor> tensor, T constantValue) { AIDGE_ASSERT(tensor->getImpl(), "Tensor got no implementation, cannot fill it."); - AIDGE_ASSERT(NativeType<T>::type == tensor->dataType(), "Wrong data type"); + AIDGE_ASSERT(NativeType_v<T> == tensor->dataType(), "Wrong data type"); std::shared_ptr<Aidge::Tensor> cpyTensor; // Create cpy only if tensor not on CPU diff --git a/src/filler/HeFiller.cpp b/src/filler/HeFiller.cpp index ff20b7618..866e6581f 100644 --- a/src/filler/HeFiller.cpp +++ b/src/filler/HeFiller.cpp @@ -20,7 +20,7 @@ void Aidge::heFiller(std::shared_ptr<Aidge::Tensor> tensor, Aidge::VarianceNorm varianceNorm, T meanNorm, T scaling) { AIDGE_ASSERT(tensor->getImpl(), "Tensor got no implementation, cannot fill it."); - AIDGE_ASSERT(NativeType<T>::type == tensor->dataType(), "Wrong data type"); + AIDGE_ASSERT(NativeType_v<T> == tensor->dataType(), "Wrong data type"); unsigned int fanIn, fanOut = 0; Aidge::calculateFanInFanOut(tensor, fanIn, fanOut); diff --git a/src/filler/NormalFiller.cpp b/src/filler/NormalFiller.cpp index f30b32431..334c0c12d 100644 --- a/src/filler/NormalFiller.cpp +++ b/src/filler/NormalFiller.cpp @@ -20,7 +20,7 @@ void Aidge::normalFiller(std::shared_ptr<Aidge::Tensor> tensor, double mean, double stdDev) { AIDGE_ASSERT(tensor->getImpl(), "Tensor got no implementation, cannot fill it."); - AIDGE_ASSERT(NativeType<T>::type == tensor->dataType(), "Wrong data type"); + AIDGE_ASSERT(NativeType_v<T> == tensor->dataType(), "Wrong data type"); std::normal_distribution<T> normalDist(mean, stdDev); diff --git a/src/filler/UniformFiller.cpp b/src/filler/UniformFiller.cpp index 1951fcc62..22dc479b6 100644 --- a/src/filler/UniformFiller.cpp +++ b/src/filler/UniformFiller.cpp @@ -20,7 +20,7 @@ template <typename T> void Aidge::uniformFiller(std::shared_ptr<Aidge::Tensor> tensor, T min, T max) { AIDGE_ASSERT(tensor->getImpl(), "Tensor got no implementation, cannot fill it."); - AIDGE_ASSERT(NativeType<T>::type == tensor->dataType(), "Wrong data type {} and {}",NativeType<T>::type, tensor->dataType()); + AIDGE_ASSERT(NativeType_v<T> == tensor->dataType(), "Wrong data type {} and {}",NativeType_v<T>, tensor->dataType()); using DistType = typename std::conditional< diff --git a/src/filler/XavierFiller.cpp b/src/filler/XavierFiller.cpp index 734874d44..6856ab218 100644 --- a/src/filler/XavierFiller.cpp +++ b/src/filler/XavierFiller.cpp @@ -20,7 +20,7 @@ void Aidge::xavierUniformFiller(std::shared_ptr<Aidge::Tensor> tensor, T scaling, Aidge::VarianceNorm varianceNorm) { AIDGE_ASSERT(tensor->getImpl(), "Tensor got no implementation, cannot fill it."); - AIDGE_ASSERT(NativeType<T>::type == tensor->dataType(), "Wrong data type"); + AIDGE_ASSERT(NativeType_v<T> == tensor->dataType(), "Wrong data type"); unsigned int fanIn, fanOut = 0; Aidge::calculateFanInFanOut(tensor, fanIn, fanOut); @@ -54,7 +54,7 @@ void Aidge::xavierNormalFiller(std::shared_ptr<Aidge::Tensor> tensor, T scaling, Aidge::VarianceNorm varianceNorm) { AIDGE_ASSERT(tensor->getImpl(), "Tensor got no implementation, cannot fill it."); - AIDGE_ASSERT(NativeType<T>::type == tensor->dataType(), "Wrong data type"); + AIDGE_ASSERT(NativeType_v<T> == tensor->dataType(), "Wrong data type"); unsigned int fanIn, fanOut = 0; Aidge::calculateFanInFanOut(tensor, fanIn, fanOut); diff --git a/src/operator/Clip.cpp b/src/operator/Clip.cpp index 10b864b54..62787ebcf 100644 --- a/src/operator/Clip.cpp +++ b/src/operator/Clip.cpp @@ -32,10 +32,10 @@ bool Aidge::Clip_Op::dimsForwarded() const { } -bool Aidge::Clip_Op::forwardDims(bool allowDataDependency) +bool Aidge::Clip_Op::forwardDims(bool allowDataDependency) { - if (getInput(1) ) - { + if (getInput(1) ) + { if( this->min() != std::numeric_limits<float>::lowest()) { Log::notice("{} : ignoring non-empty min attribute because input#1 " @@ -49,11 +49,11 @@ bool Aidge::Clip_Op::forwardDims(bool allowDataDependency) return false; } std::shared_ptr<Tensor> fallback; - const auto& minV = mInputs[1]->refCastFrom(fallback, NativeType<float>::type, "cpu"); + const auto& minV = mInputs[1]->refCastFrom(fallback, NativeType_v<float>, "cpu"); this->min() = *(static_cast<float*>(minV.getImpl()->hostPtr())); } - if (getInput(2)) - { + if (getInput(2)) + { if( this->max() != std::numeric_limits<float>::max()) { Log::notice("{} : ignoring non-empty max attribute because input#2 " @@ -67,7 +67,7 @@ bool Aidge::Clip_Op::forwardDims(bool allowDataDependency) return false; } std::shared_ptr<Tensor> fallback; - const auto& maxV = mInputs[2]->refCastFrom(fallback, NativeType<float>::type, "cpu"); + const auto& maxV = mInputs[2]->refCastFrom(fallback, NativeType_v<float>, "cpu"); this->max() = *(static_cast<float*>(maxV.getImpl()->hostPtr())); } if (!inputsAssociated(false)) { diff --git a/src/operator/Gather.cpp b/src/operator/Gather.cpp index 0ebc3e3bc..e0990437a 100644 --- a/src/operator/Gather.cpp +++ b/src/operator/Gather.cpp @@ -104,7 +104,7 @@ bool Aidge::Gather_Op::forwardDims(bool allowDataDependency) { this->gatheredShape() = getInput(1)->dims(); this->indices().clear(); // If both are provided input would override attrs this->indices().reserve(getInput(1)->size()); - const auto& indices = mInputs[1]->refCastFrom(fallback, NativeType<int64_t>::type, "cpu"); + const auto& indices = mInputs[1]->refCastFrom(fallback, NativeType_v<int64_t>, "cpu"); std::copy_n(static_cast<int64_t*>(indices.getImpl()->hostPtr()), indices.size(), std::back_inserter(this->indices())); diff --git a/src/operator/Reshape.cpp b/src/operator/Reshape.cpp index 429bbe17d..8b42cb514 100644 --- a/src/operator/Reshape.cpp +++ b/src/operator/Reshape.cpp @@ -91,7 +91,7 @@ bool Aidge::Reshape_Op::forwardDims(bool allowDataDependency) { std::shared_ptr<Tensor> fallback; this->shape().clear(); // If both are provided input would override attrs this->shape().reserve(getInput(1)->size()); - const auto& shape = mInputs[1]->refCastFrom(fallback, NativeType<int64_t>::type, "cpu"); + const auto& shape = mInputs[1]->refCastFrom(fallback, NativeType_v<int64_t>, "cpu"); std::copy_n(static_cast<int64_t*>(shape.getImpl()->hostPtr()), shape.size(), std::back_inserter(this->shape())); diff --git a/src/operator/Resize.cpp b/src/operator/Resize.cpp index 252f55a6a..b2ef56572 100644 --- a/src/operator/Resize.cpp +++ b/src/operator/Resize.cpp @@ -125,7 +125,7 @@ bool Resize_Op::forwardDims(bool allowDataDependency) { std::shared_ptr<Tensor> fallback; const auto &sizes = resizeParam ->refCastFrom(fallback, - NativeType<DimSize_t>::type, + NativeType_v<DimSize_t>, resizeParam->backend()); for (std::size_t dim = 0; dim < getInput(inSizesIdx)->size(); ++dim) { diff --git a/src/operator/Slice.cpp b/src/operator/Slice.cpp index 31c7c09c9..7945200aa 100644 --- a/src/operator/Slice.cpp +++ b/src/operator/Slice.cpp @@ -172,7 +172,7 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { this->starts().clear(); // If both are provided input would override attrs this->starts().reserve(getInput(1)->size()); - const auto& starts = getInput(1)->refCastFrom(fallback, NativeType<int64_t>::type, "cpu"); + const auto& starts = getInput(1)->refCastFrom(fallback, NativeType_v<int64_t>, "cpu"); std::copy_n(static_cast<int64_t*>(starts.getImpl()->hostPtr()), starts.size(), std::back_inserter(this->starts())); @@ -193,7 +193,7 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { this->ends().clear(); // If both are provided input would override attrs this->ends().reserve(getInput(2)->size()); - const auto& ends = getInput(2)->refCastFrom(fallback, NativeType<int64_t>::type, "cpu"); + const auto& ends = getInput(2)->refCastFrom(fallback, NativeType_v<int64_t>, "cpu"); std::copy_n(static_cast<int64_t*>(ends.getImpl()->hostPtr()), ends.size(), std::back_inserter(this->ends())); @@ -214,7 +214,7 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { this->axes().clear(); // If both are provided input would override attrs this->axes().reserve(getInput(3)->size()); - const auto& axes = getInput(3)->refCastFrom(fallback, NativeType<int8_t>::type, "cpu"); + const auto& axes = getInput(3)->refCastFrom(fallback, NativeType_v<int8_t>, "cpu"); std::copy_n(static_cast<int8_t*>(axes.getImpl()->hostPtr()), axes.size(), std::back_inserter(this->axes())); @@ -235,7 +235,7 @@ bool Aidge::Slice_Op::forwardDims(bool allowDataDependency) { this->steps().clear(); // If both are provided input would override attrs this->steps().reserve(getInput(4)->size()); - const auto& steps = getInput(4)->refCastFrom(fallback, NativeType<int64_t>::type, "cpu"); + const auto& steps = getInput(4)->refCastFrom(fallback, NativeType_v<int64_t>, "cpu"); std::copy_n(static_cast<int64_t*>(steps.getImpl()->hostPtr()), steps.size(), std::back_inserter(this->steps())); diff --git a/src/operator/Split.cpp b/src/operator/Split.cpp index 2191f14a1..09aad0674 100644 --- a/src/operator/Split.cpp +++ b/src/operator/Split.cpp @@ -109,7 +109,7 @@ bool Aidge::Split_Op::forwardDims(bool allowDataDependency) { std::shared_ptr<Tensor> fallback; this->split().clear(); // If both are provided input would override attrs this->split().reserve(getInput(1)->size()); - const auto& splits = getInput(1)->refCastFrom(fallback, NativeType<DimSize_t>::type, "cpu"); + const auto& splits = getInput(1)->refCastFrom(fallback, NativeType_v<DimSize_t>, "cpu"); std::copy_n(static_cast<DimSize_t*>(splits.getImpl()->hostPtr()), splits.size(), std::back_inserter(this->split())); diff --git a/src/operator/Squeeze.cpp b/src/operator/Squeeze.cpp index b51b4f346..a44146366 100644 --- a/src/operator/Squeeze.cpp +++ b/src/operator/Squeeze.cpp @@ -67,7 +67,7 @@ bool Squeeze_Op::forwardDims(bool allowDataDependency) { this->axes().clear(); // If both are provided input would override attrs this->axes().reserve(getInput(1)->size()); const auto &axes = - getInput(1)->refCastFrom(fallback, NativeType<int8_t>::type, "cpu"); + getInput(1)->refCastFrom(fallback, NativeType_v<int8_t>, "cpu"); if (axes.nbDims() == 0) { this->axes().clear(); } else { diff --git a/src/operator/Stack.cpp b/src/operator/Stack.cpp index ab9ddc4f7..a938f470d 100644 --- a/src/operator/Stack.cpp +++ b/src/operator/Stack.cpp @@ -102,7 +102,7 @@ bool Aidge::StackOp::forwardDims(bool allowDataDependency) { } std::shared_ptr<Tensor> fallback; - const auto& maxElements = getInput(1)->refCastFrom(fallback, NativeType<std::uint32_t>::type, "cpu"); + const auto& maxElements = getInput(1)->refCastFrom(fallback, NativeType_v<std::uint32_t>, "cpu"); AIDGE_ASSERT(maxElements.size() > 0, "Input#1 size should be > 0"); this->maxElements() = static_cast<std::uint32_t*>(maxElements.getImpl()->hostPtr())[0]; } diff --git a/src/operator/Unsqueeze.cpp b/src/operator/Unsqueeze.cpp index f3353b45c..414afc10f 100644 --- a/src/operator/Unsqueeze.cpp +++ b/src/operator/Unsqueeze.cpp @@ -61,7 +61,7 @@ bool Unsqueeze_Op::forwardDims(bool allowDataDependency) { this->axes().clear(); // If both are provided input would override attrs this->axes().reserve(getInput(1)->size()); const auto &axes = - getInput(1)->refCastFrom(fallback, NativeType<int8_t>::type, "cpu"); + getInput(1)->refCastFrom(fallback, NativeType_v<int8_t>, "cpu"); std::copy_n(static_cast<int8_t *>(axes.getImpl()->hostPtr()), axes.size(), std::back_inserter(this->axes())); } -- GitLab From 973dd5d148c1c1ec8252168c8744766f70eb1460 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 15:34:18 +0000 Subject: [PATCH 114/157] FIX: namespace scope for EnumString initialization in 'DataType.hpp' and 'DataFormat.hpp' --- include/aidge/data/DataFormat.hpp | 5 +++-- include/aidge/data/DataType.hpp | 24 +++++++++++++----------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/include/aidge/data/DataFormat.hpp b/include/aidge/data/DataFormat.hpp index 1f018a497..77be8680d 100644 --- a/include/aidge/data/DataFormat.hpp +++ b/include/aidge/data/DataFormat.hpp @@ -68,15 +68,16 @@ constexpr std::array<DataFormatTranspose, 7> DataFormatTransposeDict = {{ */ DataFormatTranspose getDataFormatTranspose(const DataFormat& src, const DataFormat& dst); +} // namespace Aidge namespace { template <> -const char* const EnumStrings<DataFormat>::data[] +const char* const EnumStrings<Aidge::DataFormat>::data[] = {"Default", "NCHW", "NHWC", "CHWN", "NCDHW", "NDHWC", "CDHWN", "Any"}; } +namespace Aidge { inline auto format_as(DataFormat df) { return EnumStrings<DataFormat>::data[static_cast<int>(df)]; } - } // namespace Aidge #endif /* AIDGE_CORE_DATA_DATAFORMAT_H_ */ diff --git a/include/aidge/data/DataType.hpp b/include/aidge/data/DataType.hpp index 859dfcb2e..41984f199 100644 --- a/include/aidge/data/DataType.hpp +++ b/include/aidge/data/DataType.hpp @@ -77,16 +77,6 @@ enum class DataType { }; namespace { - -template <> -const char* const EnumStrings<DataType>::data[] - = {"Float64", "Float32", "Float16", "BFloat16", "Binary", "Octo_Binary", - "Ternary", "Int2", "Quad_Int2", "UInt2", "Quad_UInt2", "Int3", - "Dual_Int3", "UInt3", "Dual_UInt3", "Int4", "Dual_Int4", "UInt4", - "Dual_UInt4", "Int5", "Int6", "Int7", "Int8", "Int16", "Int32", "Int64", - "UInt5", "UInt6", "UInt7", "UInt8", "UInt16", "UInt32", "UInt64", "Any"}; - - // Type trait for mapping C++ types to Aidge DataType template<typename T> struct NativeType { @@ -178,10 +168,22 @@ constexpr bool isFloatingPoint(const DataType& type) noexcept { std::size_t getDataTypeBitWidth(const DataType& type); +} // namespace Aidge + +namespace { +template <> +const char* const EnumStrings<Aidge::DataType>::data[] + = {"Float64", "Float32", "Float16", "BFloat16", "Binary", "Octo_Binary", + "Ternary", "Int2", "Quad_Int2", "UInt2", "Quad_UInt2", "Int3", + "Dual_Int3", "UInt3", "Dual_UInt3", "Int4", "Dual_Int4", "UInt4", + "Dual_UInt4", "Int5", "Int6", "Int7", "Int8", "Int16", "Int32", "Int64", + "UInt5", "UInt6", "UInt7", "UInt8", "UInt16", "UInt32", "UInt64", "Any"}; +} + +namespace Aidge { inline auto format_as(DataType dt) { return EnumStrings<DataType>::data[static_cast<int>(dt)]; } - } // namespace Aidge #endif /* AIDGE_CORE_DATA_DATATYPE_H_ */ -- GitLab From 420ab900652e2b7dcc5bba805138b41751464290 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 15:35:46 +0000 Subject: [PATCH 115/157] FIX: warning related to a space between the quotation marks and the suffix identifier '_h' in the literal operator declaration in 'half.hpp' --- include/aidge/data/half.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/aidge/data/half.hpp b/include/aidge/data/half.hpp index d7a9cae7e..10b324336 100644 --- a/include/aidge/data/half.hpp +++ b/include/aidge/data/half.hpp @@ -272,7 +272,7 @@ namespace half_float /// ~~~~ namespace literal { - half operator"" _h(long double); + half operator""_h(long double); } #endif @@ -1083,7 +1083,7 @@ namespace half_float friend struct std::hash<half>; #endif #if HALF_ENABLE_CPP11_USER_LITERALS - friend half literal::operator"" _h(long double); + friend half literal::operator""_h(long double); #endif public: @@ -1196,7 +1196,7 @@ namespace half_float /// to rather involved conversions. /// \param value literal value /// \return half with given value (if representable) - inline half operator"" _h(long double value) { return half(detail::binary, detail::float2half<half::round_style>(value)); } + inline half operator""_h(long double value) { return half(detail::binary, detail::float2half<half::round_style>(value)); } } #endif -- GitLab From 9084a9b2e2cc435394b359b290855e0ee7e9ad5d Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 20:04:50 +0000 Subject: [PATCH 116/157] ADD: static precision param/getter/setter in Log class and a Python binding for the setter. --- include/aidge/utils/Log.hpp | 26 ++++++++++++++++++++++++++ python_binding/utils/pybind_Log.cpp | 22 +++++++++++++++++++++- src/utils/Log.cpp | 1 + 3 files changed, 48 insertions(+), 1 deletion(-) diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index 91619b15b..ca16018db 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -216,6 +216,30 @@ public: */ static void setFileName(const std::string& fileName); + /** + * @brief Set the precision format for floating point numbers. + * @param precision number of digits displayed on the right-hand of the + * decimal point. + */ + static void setPrecision(int precision) noexcept { + if (precision < 0) { + Log::notice("Impossible to set precision to {}. Must be a positive number.", precision); + return; + } + mFloatingPointPrecision = precision; +#ifdef PYBIND +#define _CRT_SECURE_NO_WARNINGS + if (Py_IsInitialized()){ + // Note: Setting mFloatingPointPrecision is important + // to avoid garbage collection of the pointer. + py::set_shared_data("floatingPointPrecision", &mFloatingPointPrecision); + } +#endif // PYBIND + } + static int getPrecision() noexcept { + return mFloatingPointPrecision; + } + private: static void log(Level level, const std::string& msg); static void initFile(const std::string& fileName); @@ -230,6 +254,8 @@ private: static std::string mFileName; ///< Path to log file static std::unique_ptr<FILE, fcloseDeleter> mFile; ///< File handle static std::vector<std::string> mContext; ///< Stack of active contexts + + static int mFloatingPointPrecision; }; } // namespace Aidge diff --git a/python_binding/utils/pybind_Log.cpp b/python_binding/utils/pybind_Log.cpp index bb81c10b2..d91a96a78 100644 --- a/python_binding/utils/pybind_Log.cpp +++ b/python_binding/utils/pybind_Log.cpp @@ -1,8 +1,21 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #include <pybind11/pybind11.h> + #include "aidge/utils/Log.hpp" namespace py = pybind11; namespace Aidge { + void init_Log(py::module& m){ py::enum_<Log::Level>(m, "Level") .value("Debug", Log::Debug) @@ -133,7 +146,14 @@ void init_Log(py::module& m){ :param fileName: Log file name. :type fileName: str + )mydelimiter") + .def_static("set_precision", &Log::setPrecision, py::arg("precision"), + R"mydelimiter( + Set the precision format for floating point numbers. + + :param precision: number of digits displayed on the right-hand of the decimal point. + :type precision: int )mydelimiter"); } -} +} // namespace Aidge diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index 5fc7a604f..fb567e355 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -70,6 +70,7 @@ std::string Log::mFileName = []() { std::unique_ptr<FILE, Log::fcloseDeleter> Log::mFile{nullptr}; std::vector<std::string> Log::mContext; +int Log::mFloatingPointPrecision = 5; /** * @brief Internal logging implementation -- GitLab From e3813cafd5f9d0174fc6b15786644ec464e36090 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Sun, 19 Jan 2025 20:23:31 +0000 Subject: [PATCH 117/157] UPD 'Tensor::toString()' - Add support for precision parameter for floating point numbers in 'toString()' and Tensor formatter - Add precision parameter to 'toString()' virtual function in Data - Select a specific formatter function for Tensor elements once instead of selecting one for each element of the Tensor --- include/aidge/data/Data.hpp | 2 +- include/aidge/data/Tensor.hpp | 30 ++++- src/data/Tensor.cpp | 243 ++++++++++++++++++---------------- 3 files changed, 157 insertions(+), 118 deletions(-) diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index 156e4d8c1..1ce3782e8 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -37,7 +37,7 @@ public: return mType; } virtual ~Data() = default; - virtual std::string toString() const = 0; + virtual std::string toString(int precision = -1) const = 0; private: const std::string mType; diff --git a/include/aidge/data/Tensor.hpp b/include/aidge/data/Tensor.hpp index c8df815bb..686657e94 100644 --- a/include/aidge/data/Tensor.hpp +++ b/include/aidge/data/Tensor.hpp @@ -642,7 +642,7 @@ public: set<expectedType>(getStorageIdx(coordIdx), value); } - std::string toString() const override; + std::string toString(int precision = -1) const override; inline void print() const { fmt::print("{}\n", toString()); } @@ -981,14 +981,34 @@ private: template<> struct fmt::formatter<Aidge::Tensor> { + // Only stores override precision from format string + int precision_override = -1; + template<typename ParseContext> - inline constexpr auto parse(ParseContext& ctx) { - return ctx.begin(); + constexpr auto parse(ParseContext& ctx) { + auto it = ctx.begin(); + if (it != ctx.end() && *it == '.') { + ++it; + if (it != ctx.end() && *it >= '0' && *it <= '9') { + precision_override = 0; + do { + precision_override = precision_override * 10 + (*it - '0'); + ++it; + } while (it != ctx.end() && *it >= '0' && *it <= '9'); + } + } + + if (it != ctx.end() && *it == 'f') { + ++it; + } + + return it; } template<typename FormatContext> - inline auto format(Aidge::Tensor const& t, FormatContext& ctx) const { - return fmt::format_to(ctx.out(), "{}", t.toString()); + auto format(Aidge::Tensor const& t, FormatContext& ctx) const { + // Use precision_override if specified, otherwise toString will use default + return fmt::format_to(ctx.out(), "{}", t.toString(precision_override)); } }; diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index a14ae4187..58e157f9f 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -312,141 +312,160 @@ void Tensor::resize(const std::vector<DimSize_t>& dims, } } -std::string Tensor::toString() const { - +std::string Tensor::toString(int precision) const { if (!hasImpl() || undefined()) { - // Return no value on no implementation or undefined size - return std::string("{}"); + return "{}"; } - // TODO: move lambda elsewhere? - auto ptrToString = [](DataType dt, void* ptr, std::size_t idx) { - switch (dt) { - case DataType::Float64: - return std::to_string(static_cast<double*>(ptr)[idx]); - case DataType::Float32: - return std::to_string(static_cast<float*>(ptr)[idx]); - case DataType::Float16: - return std::to_string(static_cast<half_float::half*>(ptr)[idx]); - case DataType::Binary: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::Octo_Binary: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::Dual_Int4: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::Dual_UInt4: - return std::to_string(static_cast<uint8_t*>(ptr)[idx]); - case DataType::Dual_Int3: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::Dual_UInt3: - return std::to_string(static_cast<uint8_t*>(ptr)[idx]); - case DataType::Quad_Int2: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::Quad_UInt2: - return std::to_string(static_cast<uint8_t*>(ptr)[idx]); - case DataType::Int4: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::UInt4: - return std::to_string(static_cast<uint8_t*>(ptr)[idx]); - case DataType::Int3: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::UInt3: - return std::to_string(static_cast<uint8_t*>(ptr)[idx]); - case DataType::Int2: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::UInt2: - return std::to_string(static_cast<uint8_t*>(ptr)[idx]); - case DataType::Int8: - return std::to_string(static_cast<int8_t*>(ptr)[idx]); - case DataType::Int16: - return std::to_string(static_cast<int16_t*>(ptr)[idx]); - case DataType::Int32: - return std::to_string(static_cast<int32_t*>(ptr)[idx]); - case DataType::Int64: - return std::to_string(static_cast<int64_t*>(ptr)[idx]); - case DataType::UInt8: - return std::to_string(static_cast<uint8_t*>(ptr)[idx]); - case DataType::UInt16: - return std::to_string(static_cast<uint16_t*>(ptr)[idx]); - case DataType::UInt32: - return std::to_string(static_cast<uint32_t*>(ptr)[idx]); - case DataType::UInt64: - return std::to_string(static_cast<uint64_t*>(ptr)[idx]); - default: - AIDGE_ASSERT(true, "unsupported type to convert to string"); - } - return std::string("?"); // To make Clang happy - }; + // Use default precision if no override provided + precision = (precision >= 0) ? precision : Log::getPrecision(); + + // Create a type-specific formatter function upfront + std::function<std::string(void*, std::size_t)> formatter; + + switch (mDataType) { + case DataType::Float64: + formatter = [precision](void* ptr, std::size_t idx) { + return fmt::format("{:.{}f}", static_cast<cpptype_t<DataType::Float64>*>(ptr)[idx], precision); + }; + break; + case DataType::Float32: + formatter = [precision](void* ptr, std::size_t idx) { + return fmt::format("{:.{}f}", static_cast<cpptype_t<DataType::Float32>*>(ptr)[idx], precision); + }; + break; + case DataType::Float16: + formatter = [precision](void* ptr, std::size_t idx) { + return fmt::format("{:.{}f}", static_cast<cpptype_t<DataType::Float16>*>(ptr)[idx], precision); + }; + break; + case DataType::Binary: + case DataType::Octo_Binary: + case DataType::Dual_Int4: + case DataType::Dual_Int3: + case DataType::Dual_UInt3: + case DataType::Quad_Int2: + case DataType::Quad_UInt2: + case DataType::Int4: + case DataType::UInt4: + case DataType::Int3: + case DataType::UInt3: + case DataType::Int2: + case DataType::UInt2: + case DataType::Int8: + formatter = [](void* ptr, std::size_t idx) { + return fmt::format("{}", static_cast<cpptype_t<DataType::Int32>>(static_cast<cpptype_t<DataType::Int8>*>(ptr)[idx])); + }; + break; + case DataType::Dual_UInt4: + case DataType::UInt8: + formatter = [](void* ptr, std::size_t idx) { + return fmt::format("{}", static_cast<cpptype_t<DataType::UInt32>>(static_cast<cpptype_t<DataType::UInt8>*>(ptr)[idx])); + }; + break; + case DataType::Int16: + formatter = [](void* ptr, std::size_t idx) { + return fmt::format("{}", static_cast<cpptype_t<DataType::Int16>*>(ptr)[idx]); + }; + break; + case DataType::Int32: + formatter = [](void* ptr, std::size_t idx) { + return fmt::format("{}", static_cast<cpptype_t<DataType::Int32>*>(ptr)[idx]); + }; + break; + case DataType::Int64: + formatter = [](void* ptr, std::size_t idx) { + return fmt::format("{}", static_cast<cpptype_t<DataType::Int64>*>(ptr)[idx]); + }; + break; + case DataType::UInt16: + formatter = [](void* ptr, std::size_t idx) { + return fmt::format("{}", static_cast<cpptype_t<DataType::UInt16>*>(ptr)[idx]); + }; + break; + case DataType::UInt32: + formatter = [](void* ptr, std::size_t idx) { + return fmt::format("{}", static_cast<cpptype_t<DataType::UInt32>*>(ptr)[idx]); + }; + break; + case DataType::UInt64: + formatter = [](void* ptr, std::size_t idx) { + return fmt::format("{}", static_cast<cpptype_t<DataType::UInt64>*>(ptr)[idx]); + }; + break; + default: + AIDGE_ASSERT(true, "unsupported type to convert to string"); + return "{}"; + } if (dims().empty()) { - // The Tensor is defined with rank 0, hence scalar - return ptrToString(mDataType, mImpl->hostPtr(), 0); + return formatter(mImpl->hostPtr(), 0); } - std::string res; - std::size_t dim = 0; - std::size_t counter = 0; + void* dataPtr = mImpl->hostPtr(mImplOffset); + std::string result; + if (nbDims() >= 2) { - std::vector<std::size_t> dimVals(nbDims(), 0); - res += "{\n"; + std::vector<std::size_t> currentDim(nbDims(), 0); + std::size_t depth = 0; + std::size_t counter = 0; + + result = "{\n"; while (counter < mSize) { - std::string spaceString = std::string((dim + 1) << 1, ' '); - if (dim < nbDims() - 2) { - if (dimVals[dim] == 0) { - res += spaceString + "{\n"; - ++dim; - } else if (dimVals[dim] < - static_cast<std::size_t>(dims()[dim])) { - res += spaceString + "},\n" + spaceString + "{\n"; - ++dim; + // Create indent string directly + std::string indent((depth + 1) * 2, ' '); + + if (depth < nbDims() - 2) { + if (currentDim[depth] == 0) { + result += indent + "{\n"; + ++depth; + } else if (currentDim[depth] < static_cast<std::size_t>(dims()[depth])) { + result += indent + "},\n" + indent + "{\n"; + ++depth; } else { - res += spaceString + "}\n"; - dimVals[dim--] = 0; - dimVals[dim]++; + result += indent + "}\n"; + currentDim[depth--] = 0; + ++currentDim[depth]; } } else { - for (; dimVals[dim] < static_cast<std::size_t>(dims()[dim]); - ++dimVals[dim]) { - res += spaceString + "{"; - for (DimSize_t j = 0; j < dims()[dim + 1] - 1; ++j) { - res += - " " + - ptrToString(mDataType, mImpl->hostPtr(mImplOffset), - counter++) + - ","; + for (; currentDim[depth] < static_cast<std::size_t>(dims()[depth]); ++currentDim[depth]) { + result += indent + "{"; + + for (DimSize_t j = 0; j < dims()[depth + 1]; ++j) { + result += " " + formatter(dataPtr, counter++); + if (j < dims()[depth + 1] - 1) { + result += ","; + } } - res += " " + - ptrToString(mDataType, mImpl->hostPtr(mImplOffset), - counter++) + - "}"; - if (dimVals[dim] < - static_cast<std::size_t>(dims()[dim] - 1)) { - res += ","; + + result += " }"; + if (currentDim[depth] < static_cast<std::size_t>(dims()[depth] - 1)) { + result += ","; } - res += "\n"; + result += "\n"; } - if (dim == 0) { - break; - } - dimVals[dim--] = 0; - dimVals[dim]++; + + if (depth == 0) break; + currentDim[depth--] = 0; + ++currentDim[depth]; } } - if (nbDims() != 2) { // If nbDims == 2, parenthesis is already closed - for (int i = static_cast<int>(dim); i >= 0; --i) { - res += std::string((i + 1) << 1, ' ') + "}\n"; + + if (nbDims() != 2) { + for (std::size_t i = depth + 1; i > 0;) { + result += std::string(((--i) + 1) * 2, ' ') + "}\n"; } } } else { - res += "{"; + result = "{"; for (DimSize_t j = 0; j < dims()[0]; ++j) { - res += " " + - ptrToString(mDataType, mImpl->hostPtr(mImplOffset), j) + - ((j < dims()[0] - 1) ? "," : " "); + result += " " + formatter(dataPtr, j); + result += (j < dims()[0] - 1) ? "," : " "; } } - res += "}"; - return res; + + result += "}"; + return result; } Tensor Tensor::extract( -- GitLab From b2b034c4d977d7a938733b22770ed58549870ae7 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Mon, 20 Jan 2025 02:49:38 +0000 Subject: [PATCH 118/157] Enhance: shorten and simplify the 'Tensor::toString' function and add an 'offset' parameter for pretty printing --- include/aidge/data/Data.hpp | 3 +- include/aidge/data/Tensor.hpp | 4 +- src/data/Tensor.cpp | 110 +++++++++++++++++----------------- 3 files changed, 60 insertions(+), 57 deletions(-) diff --git a/include/aidge/data/Data.hpp b/include/aidge/data/Data.hpp index 1ce3782e8..fac8e7fb4 100644 --- a/include/aidge/data/Data.hpp +++ b/include/aidge/data/Data.hpp @@ -12,6 +12,7 @@ #ifndef AIDGE_DATA_H_ #define AIDGE_DATA_H_ +#include <cstddef> // std::size_t #include <string> #include "aidge/utils/ErrorHandling.hpp" @@ -37,7 +38,7 @@ public: return mType; } virtual ~Data() = default; - virtual std::string toString(int precision = -1) const = 0; + virtual std::string toString(int precision = -1, std::size_t offset = 0) const = 0; private: const std::string mType; diff --git a/include/aidge/data/Tensor.hpp b/include/aidge/data/Tensor.hpp index 686657e94..7aa2ed52b 100644 --- a/include/aidge/data/Tensor.hpp +++ b/include/aidge/data/Tensor.hpp @@ -642,7 +642,7 @@ public: set<expectedType>(getStorageIdx(coordIdx), value); } - std::string toString(int precision = -1) const override; + std::string toString(int precision = -1, std::size_t offset = 0) const override; inline void print() const { fmt::print("{}\n", toString()); } @@ -1008,7 +1008,7 @@ struct fmt::formatter<Aidge::Tensor> { template<typename FormatContext> auto format(Aidge::Tensor const& t, FormatContext& ctx) const { // Use precision_override if specified, otherwise toString will use default - return fmt::format_to(ctx.out(), "{}", t.toString(precision_override)); + return fmt::format_to(ctx.out(), "Tensor({})", t.toString(precision_override, 7)); } }; diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index 58e157f9f..7bd2754d6 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -312,7 +312,7 @@ void Tensor::resize(const std::vector<DimSize_t>& dims, } } -std::string Tensor::toString(int precision) const { +std::string Tensor::toString(int precision, std::size_t offset) const { if (!hasImpl() || undefined()) { return "{}"; } @@ -403,71 +403,73 @@ std::string Tensor::toString(int precision) const { } void* dataPtr = mImpl->hostPtr(mImplOffset); - std::string result; - - if (nbDims() >= 2) { - std::vector<std::size_t> currentDim(nbDims(), 0); - std::size_t depth = 0; - std::size_t counter = 0; - - result = "{\n"; - while (counter < mSize) { - // Create indent string directly - std::string indent((depth + 1) * 2, ' '); - - if (depth < nbDims() - 2) { - if (currentDim[depth] == 0) { - result += indent + "{\n"; - ++depth; - } else if (currentDim[depth] < static_cast<std::size_t>(dims()[depth])) { - result += indent + "},\n" + indent + "{\n"; - ++depth; - } else { - result += indent + "}\n"; - currentDim[depth--] = 0; - ++currentDim[depth]; - } - } else { - for (; currentDim[depth] < static_cast<std::size_t>(dims()[depth]); ++currentDim[depth]) { - result += indent + "{"; - - for (DimSize_t j = 0; j < dims()[depth + 1]; ++j) { - result += " " + formatter(dataPtr, counter++); - if (j < dims()[depth + 1] - 1) { - result += ","; - } - } - - result += " }"; - if (currentDim[depth] < static_cast<std::size_t>(dims()[depth] - 1)) { - result += ","; - } - result += "\n"; - } - if (depth == 0) break; - currentDim[depth--] = 0; - ++currentDim[depth]; + // Calculate maximum width across all elements + std::size_t maxWidth = 0; + for (std::size_t i = 0; i < mSize; ++i) { + std::string value = formatter(dataPtr, i); + maxWidth = std::max(maxWidth, value.length()); + } + + // Initialize variables similar to Python version + std::vector<std::size_t> indexCoord(nbDims(), 0); + const std::size_t initialDepth = nbDims() > 1 ? nbDims() - 2 : 0; + std::size_t depth = initialDepth; + std::size_t nbBrackets = nbDims() - 1; + std::size_t index = 0; + + // Calculate number of lines (product of all dimensions except last) + std::size_t nbLines = 1; + for (std::size_t d = 0; d < nbDims() - 1; ++d) { + nbLines *= dims()[d]; + } + + std::string result = "{"; // Using { instead of [ for C++ style + + for (std::size_t l = 0; l < nbLines; ++l) { + // Add spacing and opening braces + if (l != 0) { + result += std::string(1 + offset, ' '); + } + result += std::string(nbDims() - 1 - nbBrackets, ' ') + + std::string(nbBrackets, '{'); + + // Print numbers of a line + for (DimSize_t i = 0; i < dims().back(); ++i) { + std::string value = formatter(dataPtr, index); + result += std::string(1 + maxWidth - value.length(), ' ') + value; + if (i + 1 < dims().back()) { + result += ','; } + ++index; } - if (nbDims() != 2) { - for (std::size_t i = depth + 1; i > 0;) { - result += std::string(((--i) + 1) * 2, ' ') + "}\n"; + // Check for end + if (index == mSize) { + result += std::string(nbDims(), '}'); + return result; + } else { + // Update coordinates and depth + while (indexCoord[depth] + 1 >= static_cast<std::size_t>(dims()[depth])) { + indexCoord[depth] = 0; + --depth; } + ++indexCoord[depth]; + nbBrackets = initialDepth - depth + 1; + depth = initialDepth; } - } else { - result = "{"; - for (DimSize_t j = 0; j < dims()[0]; ++j) { - result += " " + formatter(dataPtr, j); - result += (j < dims()[0] - 1) ? "," : " "; + + // Add closing braces and newlines + result += std::string(nbBrackets, '}') + ",\n"; + if (nbBrackets > 1) { + result += '\n'; } } - result += "}"; return result; } + Tensor Tensor::extract( const std::vector<std::size_t>& fixedCoord) const { AIDGE_ASSERT(isContiguous(), "Tensor must be contiguous"); -- GitLab From c8b2cf0b21027ebbb4b8fae7de1fc98a1800a991 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Mon, 20 Jan 2025 02:52:05 +0000 Subject: [PATCH 119/157] UPD: Python binding for Data, and add Python binding file for DataType and DataFormat --- python_binding/data/pybind_Data.cpp | 55 +---------------- python_binding/data/pybind_DataFormat.cpp | 72 +++++++++++++++++++++++ python_binding/data/pybind_DataType.cpp | 71 ++++++++++++++++++++++ python_binding/pybind_core.cpp | 4 ++ 4 files changed, 149 insertions(+), 53 deletions(-) create mode 100644 python_binding/data/pybind_DataFormat.cpp create mode 100644 python_binding/data/pybind_DataType.cpp diff --git a/python_binding/data/pybind_Data.cpp b/python_binding/data/pybind_Data.cpp index 02a692dea..52e773b69 100644 --- a/python_binding/data/pybind_Data.cpp +++ b/python_binding/data/pybind_Data.cpp @@ -10,65 +10,14 @@ ********************************************************************************/ #include <pybind11/pybind11.h> -#include <pybind11/stl.h> #include "aidge/data/Data.hpp" -#include "aidge/data/DataType.hpp" -#include "aidge/data/DataFormat.hpp" namespace py = pybind11; namespace Aidge { -template <class T> -void bindEnum(py::module& m, const std::string& name) { - // Define enumeration names for python as lowercase type name - // This defined enum names compatible with basic numpy type - // name such as: float32, flot64, [u]int32, [u]int64, ... - auto python_enum_name = [](const T& type) { - auto str_lower = [](std::string& str) { - std::transform(str.begin(), str.end(), str.begin(), - [](unsigned char c){ - return std::tolower(c); - }); - }; - auto type_name = std::string(Aidge::format_as(type)); - str_lower(type_name); - return type_name; - }; - // Auto generate enumeration names from lowercase type strings - std::vector<std::string> enum_names; - for (auto type_str : EnumStrings<T>::data) { - auto type = static_cast<T>(enum_names.size()); - auto enum_name = python_enum_name(type); - enum_names.push_back(enum_name); - } - - // Define python side enumeration aidge_core.type - auto e_type = py::enum_<T>(m, name.c_str()); - - // Add enum value for each enum name - for (std::size_t idx = 0; idx < enum_names.size(); idx++) { - e_type.value(enum_names[idx].c_str(), static_cast<T>(idx)); - } - - // Define str() to return the bare enum name value, it allows - // to compare directly for instance str(tensor.type()) - // with str(nparray.type) - e_type.def("__str__", [enum_names](const T& type) { - return enum_names[static_cast<int>(type)]; - }, py::prepend());; -} - void init_Data(py::module& m){ - bindEnum<DataType>(m, "dtype"); - bindEnum<DataFormat>(m, "dformat"); - py::class_<Data, std::shared_ptr<Data>>(m,"Data"); - - - m.def("format_as", (const char* (*)(DataType)) &format_as, py::arg("dt")); - m.def("format_as", (const char* (*)(DataFormat)) &format_as, py::arg("df")); - m.def("get_data_format_transpose", &getDataFormatTranspose, py::arg("src"), py::arg("dst")); - -} } + +} // namespace Aidge diff --git a/python_binding/data/pybind_DataFormat.cpp b/python_binding/data/pybind_DataFormat.cpp new file mode 100644 index 000000000..a63df321c --- /dev/null +++ b/python_binding/data/pybind_DataFormat.cpp @@ -0,0 +1,72 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <algorithm> // std::transform +#include <cctype> // std::tolower +#include <string> // std::string +#include <vector> + +#include <pybind11/pybind11.h> +#include <pybind11/stl.h> + +#include "aidge/data/DataFormat.hpp" + +namespace py = pybind11; +namespace Aidge { + +template <class T> +void bindEnum(py::module& m, const std::string& name) { + // Define enumeration names for python as lowercase type name + // This defined enum names compatible with basic numpy type + // name such as: float32, flot64, [u]int32, [u]int64, ... + auto python_enum_name = [](const T& type) { + auto str_lower = [](std::string& str) { + std::transform(str.begin(), str.end(), str.begin(), + [](unsigned char c){ + return std::tolower(c); + }); + }; + auto type_name = std::string(Aidge::format_as(type)); + str_lower(type_name); + return type_name; + }; + + // Auto generate enumeration names from lowercase type strings + std::vector<std::string> enum_names; + for (auto type_str : EnumStrings<T>::data) { + auto type = static_cast<T>(enum_names.size()); + auto enum_name = python_enum_name(type); + enum_names.push_back(enum_name); + } + + // Define python side enumeration aidge_core.type + auto e_type = py::enum_<T>(m, name.c_str()); + + // Add enum value for each enum name + for (std::size_t idx = 0; idx < enum_names.size(); idx++) { + e_type.value(enum_names[idx].c_str(), static_cast<T>(idx)); + } + + // Define str() to return the bare enum name value, it allows + // to compare directly for instance str(tensor.type()) + // with str(nparray.type) + e_type.def("__str__", [enum_names](const T& type) { + return enum_names[static_cast<int>(type)]; + }, py::prepend()); +} + +void init_DataFormat(py::module& m) { + bindEnum<DataFormat>(m, "dformat"); + m.def("format_as", (const char* (*)(DataFormat)) &format_as, py::arg("df")); + m.def("get_data_format_transpose", &getDataFormatTranspose, py::arg("src"), py::arg("dst")); +} + +} // namespace Aidge diff --git a/python_binding/data/pybind_DataType.cpp b/python_binding/data/pybind_DataType.cpp new file mode 100644 index 000000000..6aab39976 --- /dev/null +++ b/python_binding/data/pybind_DataType.cpp @@ -0,0 +1,71 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <algorithm> // std::transform +#include <cctype> // std::tolower +#include <string> // std::string +#include <vector> + +#include <pybind11/pybind11.h> +#include <pybind11/stl.h> + +#include "aidge/data/DataType.hpp" + +namespace py = pybind11; +namespace Aidge { + +template <class T> +void bindEnum(py::module& m, const std::string& name) { + // Define enumeration names for python as lowercase type name + // This defined enum names compatible with basic numpy type + // name such as: float32, flot64, [u]int32, [u]int64, ... + auto python_enum_name = [](const T& type) { + auto str_lower = [](std::string& str) { + std::transform(str.begin(), str.end(), str.begin(), + [](unsigned char c){ + return std::tolower(c); + }); + }; + auto type_name = std::string(Aidge::format_as(type)); + str_lower(type_name); + return type_name; + }; + + // Auto generate enumeration names from lowercase type strings + std::vector<std::string> enum_names; + for (auto type_str : EnumStrings<T>::data) { + auto type = static_cast<T>(enum_names.size()); + auto enum_name = python_enum_name(type); + enum_names.push_back(enum_name); + } + + // Define python side enumeration aidge_core.type + auto e_type = py::enum_<T>(m, name.c_str()); + + // Add enum value for each enum name + for (std::size_t idx = 0; idx < enum_names.size(); idx++) { + e_type.value(enum_names[idx].c_str(), static_cast<T>(idx)); + } + + // Define str() to return the bare enum name value, it allows + // to compare directly for instance str(tensor.type()) + // with str(nparray.type) + e_type.def("__str__", [enum_names](const T& type) { + return enum_names[static_cast<int>(type)]; + }, py::prepend()); +} + +void init_DataType(py::module& m) { + bindEnum<DataType>(m, "dtype"); + m.def("format_as", (const char* (*)(DataType)) &format_as, py::arg("dt")); +} + +} // namespace Aidge diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index c292a8937..435badb6c 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -19,6 +19,8 @@ namespace Aidge { void init_CoreSysInfo(py::module&); void init_Random(py::module&); void init_Data(py::module&); +void init_DataFormat(py::module&); +void init_DataType(py::module&); void init_Database(py::module&); void init_DataProvider(py::module&); void init_Interpolation(py::module&); @@ -110,6 +112,8 @@ void init_Aidge(py::module& m) { init_Random(m); init_Data(m); + init_DataFormat(m); + init_DataType(m); init_Database(m); init_DataProvider(m); init_Interpolation(m); -- GitLab From 54621d46345bb9c460f2d528ef66056bb6ebd53c Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Mon, 20 Jan 2025 02:53:10 +0000 Subject: [PATCH 120/157] Add offset to Python format of Tensor --- python_binding/data/pybind_Tensor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index 973fc6f9a..2171d4897 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -345,7 +345,7 @@ void init_Tensor(py::module& m){ return b.toString(); }) .def("__repr__", [](Tensor& b) { - return fmt::format("Tensor(dims = {}, dtype = {})", b.dims(), std::string(EnumStrings<DataType>::data[static_cast<int>(b.dataType())])); + return fmt::format("Tensor({}, dims = {}, dtype = {})", b.toString(-1, 7), b.dims(), b.dataType()); }) .def("__len__", [](Tensor& b) -> size_t{ return b.size(); -- GitLab From c0b186ada3287aa585a39d388ad85c068d268a7f Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Mon, 20 Jan 2025 02:53:43 +0000 Subject: [PATCH 121/157] update 'Test_ConcatImpl.cpp' --- unit_tests/operator/Test_ConcatImpl.cpp | 69 ++++++++++++++----------- 1 file changed, 38 insertions(+), 31 deletions(-) diff --git a/unit_tests/operator/Test_ConcatImpl.cpp b/unit_tests/operator/Test_ConcatImpl.cpp index fcdf3e8cc..677f78e54 100644 --- a/unit_tests/operator/Test_ConcatImpl.cpp +++ b/unit_tests/operator/Test_ConcatImpl.cpp @@ -33,22 +33,27 @@ TEST_CASE("[cpu/operator] Concat(forward)", "[Concat][CPU]") { std::shared_ptr<Tensor> input4 = std::make_shared<Tensor>(Array1D<int,5>{{ 11, 12, 13, 14, 15 }}); std::shared_ptr<Tensor> input5 = std::make_shared<Tensor>(Array1D<int,6>{{ 16, 17, 18, 19, 20, 21 }}); - std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array1D<int,20>{ - { 2, 3, 4, 5, 6, 7, 8, 9, 10,11,12,13,14,15,16,17,18,19,20,21 }}); - - auto myConcat = Concat(5, 0); - myConcat->getOperator()->associateInput(0, input1); - myConcat->getOperator()->associateInput(1, input2); - myConcat->getOperator()->associateInput(2, input3); - myConcat->getOperator()->associateInput(3, input4); - myConcat->getOperator()->associateInput(4, input5); - myConcat->getOperator()->setBackend("cpu"); - myConcat->getOperator()->setDataType(DataType::Int32); - myConcat->forward(); - - std::static_pointer_cast<Tensor>(myConcat->getOperator()->getRawOutput(0))->print(); - - REQUIRE(*std::static_pointer_cast<OperatorTensor>(myConcat->getOperator())->getOutput(0) == *expectedOutput); + Tensor expectedOutput = Array1D<int,20>{ + { 2, 3, 4, 5, 6, 7, 8, 9, 10,11,12,13,14,15,16,17,18,19,20,21 }}; + + std::shared_ptr<Concat_Op> op = std::make_shared<Concat_Op>(5,0); + op->associateInput(0, input1); + op->associateInput(1, input2); + op->associateInput(2, input3); + op->associateInput(3, input4); + op->associateInput(4, input5); + op->setBackend("cpu"); + op->setDataType(DataType::Int32); + fmt::print("{}\n", *(op->getInput(0))); + fmt::print("{}\n", *(op->getInput(1))); + fmt::print("{}\n", *(op->getInput(2))); + fmt::print("{}\n", *(op->getInput(3))); + fmt::print("{}\n", *(op->getInput(4))); + op->forward(); + + fmt::print("res: {}\n", *(op->getOutput(0))); + + REQUIRE(*(op->getOutput(0)) == expectedOutput); } SECTION("Concat 4D inputs on 1st axis") { std::shared_ptr<Tensor> input1 = std::make_shared<Tensor>(Array4D<int,1,3,3,2> { @@ -75,7 +80,7 @@ TEST_CASE("[cpu/operator] Concat(forward)", "[Concat][CPU]") { } // }); // - std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array4D<int,3,3,3,2> { + Tensor expectedOutput = Array4D<int,3,3,3,2> { { // { // {{20, 47},{21, 48},{22, 49}}, // @@ -93,18 +98,19 @@ TEST_CASE("[cpu/operator] Concat(forward)", "[Concat][CPU]") { {{44, 71},{45, 72},{46, 73}} // } // } // - }); // + }; // auto myConcat = Concat(2, 0); - myConcat->getOperator()->associateInput(0, input1); - myConcat->getOperator()->associateInput(1, input2); - myConcat->getOperator()->setBackend("cpu"); - myConcat->getOperator()->setDataType(DataType::Int32); + std::shared_ptr<Concat_Op> op = std::static_pointer_cast<Concat_Op>(myConcat->getOperator()); + op->associateInput(0, input1); + op->associateInput(1, input2); + op->setBackend("cpu"); + op->setDataType(DataType::Int32); myConcat->forward(); - std::static_pointer_cast<OperatorTensor>(myConcat->getOperator())->getOutput(0)->print(); + fmt::print("res: {}\n", *(op->getOutput(0))); - REQUIRE(*std::static_pointer_cast<OperatorTensor>(myConcat->getOperator())->getOutput(0) == *expectedOutput); + REQUIRE(*(op->getOutput(0)) == expectedOutput); } SECTION("Concat 4D inputs on 3rd axis") { @@ -127,7 +133,7 @@ TEST_CASE("[cpu/operator] Concat(forward)", "[Concat][CPU]") { } }); - std::shared_ptr<Tensor> expectedOutput = std::make_shared<Tensor>(Array4D<int,1,3,9,2> { + Tensor expectedOutput = Array4D<int,1,3,9,2> { { // { // {{20, 47},{21, 48},{22, 49},{29, 56},{30, 57},{31, 58},{38, 65},{39, 66},{40, 67}}, // @@ -135,17 +141,18 @@ TEST_CASE("[cpu/operator] Concat(forward)", "[Concat][CPU]") { {{26, 53},{27, 54},{28, 55},{35, 62},{36, 63},{37, 64},{44, 71},{45, 72},{46, 73}} // }, // } // - }); // + }; // auto myConcat = Concat(2, 2); - myConcat->getOperator()->associateInput(0, input1); - myConcat->getOperator()->associateInput(1, input2); - myConcat->getOperator()->setBackend("cpu"); - myConcat->getOperator()->setDataType(DataType::Int32); + std::shared_ptr<Concat_Op> op = std::static_pointer_cast<Concat_Op>(myConcat->getOperator()); + op->associateInput(0, input1); + op->associateInput(1, input2); + op->setBackend("cpu"); + op->setDataType(DataType::Int32); myConcat->forward(); std::static_pointer_cast<Tensor>(myConcat->getOperator()->getRawOutput(0))->print(); - REQUIRE(*std::static_pointer_cast<OperatorTensor>(myConcat->getOperator())->getOutput(0) == *expectedOutput); + REQUIRE(*(op->getOutput(0)) == expectedOutput); } } -- GitLab From 0c8a7728ca45033e9440559d6a024ab7da41ecd6 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Mon, 20 Jan 2025 11:25:52 +0100 Subject: [PATCH 122/157] Add fmt version in CMake package config template --- aidge_core-config.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aidge_core-config.cmake.in b/aidge_core-config.cmake.in index abe55b6fa..d69d24675 100644 --- a/aidge_core-config.cmake.in +++ b/aidge_core-config.cmake.in @@ -1,7 +1,7 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -find_dependency(fmt) +find_dependency(fmt @FMT_VERSION@) find_dependency(Threads) set(AIDGE_REQUIRES_PYTHON @AIDGE_REQUIRES_PYTHON@) set(AIDGE_PYTHON_HAS_EMBED @AIDGE_PYTHON_HAS_EMBED@) -- GitLab From e95e14cbb57297011cdda36e30f71b1654a1f2bf Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Tue, 21 Jan 2025 11:06:23 +0100 Subject: [PATCH 123/157] Removed graph regex --- include/aidge/aidge.hpp | 2 - .../aidge/graphRegex/GraphFsmInterpreter.hpp | 87 ---- include/aidge/graphRegex/GraphLexer.hpp | 70 ---- include/aidge/graphRegex/GraphParser.hpp | 105 ----- include/aidge/graphRegex/GraphRegex.hpp | 106 ----- include/aidge/graphRegex/GraphRegexTypes.hpp | 29 -- .../aidge/graphRegex/GraphStrInterpreter.hpp | 38 -- include/aidge/graphRegex/matchFsm/FsmEdge.hpp | 253 ------------ .../aidge/graphRegex/matchFsm/FsmGraph.hpp | 109 ----- include/aidge/graphRegex/matchFsm/FsmNode.hpp | 110 ----- .../graphRegex/matchFsm/FsmRunTimeContext.hpp | 171 -------- .../aidge/graphRegex/matchFsm/MatchResult.hpp | 95 ----- include/aidge/nodeTester/ConditionalData.hpp | 98 ----- .../nodeTester/ConditionalInterpreter.hpp | 372 ----------------- include/aidge/nodeTester/ConditionalLexer.hpp | 84 ---- .../aidge/nodeTester/ConditionalParser.hpp | 110 ----- include/aidge/nodeTester/ConditionalTypes.hpp | 36 -- .../graphRegex/pybind_GraphRegex.cpp | 70 ---- .../graphRegex/pybind_MatchSolution.cpp | 40 -- python_binding/pybind_core.cpp | 6 - src/graphRegex/GraphFsmInterpreter.cpp | 208 ---------- src/graphRegex/GraphLexer.cpp | 159 -------- src/graphRegex/GraphParser.cpp | 174 -------- src/graphRegex/GraphRegex.cpp | 167 -------- src/graphRegex/GraphStrInterpreter.cpp | 38 -- src/graphRegex/matchFsm/FsmEdge.cpp | 319 --------------- src/graphRegex/matchFsm/FsmGraph.cpp | 225 ----------- src/graphRegex/matchFsm/FsmNode.cpp | 132 ------ src/graphRegex/matchFsm/FsmRunTimeContext.cpp | 217 ---------- src/graphRegex/matchFsm/MatchResult.cpp | 135 ------- src/nodeTester/ConditionalInterpreter.cpp | 376 ------------------ src/nodeTester/ConditionalLexer.cpp | 256 ------------ src/nodeTester/ConditionalParser.cpp | 204 ---------- src/recipes/RemoveFlatten.cpp | 5 - src/recipes/removeConstantOfShape.cpp | 3 - unit_tests/CMakeLists.txt | 2 - unit_tests/graphRegex/Test_Fsm.cpp | 195 --------- unit_tests/graphRegex/Test_FsmMatch.cpp | 90 ----- .../graphRegex/Test_GraphFsmInterpreter.cpp | 42 -- unit_tests/graphRegex/Test_GraphLexer.cpp | 124 ------ unit_tests/graphRegex/Test_GraphParser.cpp | 67 ---- unit_tests/graphRegex/Test_GraphRegex.cpp | 194 --------- unit_tests/graphRegex/Test_examples.cpp | 55 --- unit_tests/graphRegex/Test_graphRegexAST.cpp | 71 ---- .../Test_ConditionalInterpreter.cpp | 91 ----- .../nodeTester/Test_ConditionalLexer.cpp | 154 ------- .../nodeTester/Test_ConditionalParser.cpp | 75 ---- unit_tests/recipes/Test_FuseToMetaOps.cpp | 1 - 48 files changed, 5770 deletions(-) delete mode 100644 include/aidge/graphRegex/GraphFsmInterpreter.hpp delete mode 100644 include/aidge/graphRegex/GraphLexer.hpp delete mode 100644 include/aidge/graphRegex/GraphParser.hpp delete mode 100644 include/aidge/graphRegex/GraphRegex.hpp delete mode 100644 include/aidge/graphRegex/GraphRegexTypes.hpp delete mode 100644 include/aidge/graphRegex/GraphStrInterpreter.hpp delete mode 100644 include/aidge/graphRegex/matchFsm/FsmEdge.hpp delete mode 100644 include/aidge/graphRegex/matchFsm/FsmGraph.hpp delete mode 100644 include/aidge/graphRegex/matchFsm/FsmNode.hpp delete mode 100644 include/aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp delete mode 100644 include/aidge/graphRegex/matchFsm/MatchResult.hpp delete mode 100644 include/aidge/nodeTester/ConditionalData.hpp delete mode 100644 include/aidge/nodeTester/ConditionalInterpreter.hpp delete mode 100644 include/aidge/nodeTester/ConditionalLexer.hpp delete mode 100644 include/aidge/nodeTester/ConditionalParser.hpp delete mode 100644 include/aidge/nodeTester/ConditionalTypes.hpp delete mode 100644 python_binding/graphRegex/pybind_GraphRegex.cpp delete mode 100644 python_binding/graphRegex/pybind_MatchSolution.cpp delete mode 100644 src/graphRegex/GraphFsmInterpreter.cpp delete mode 100644 src/graphRegex/GraphLexer.cpp delete mode 100644 src/graphRegex/GraphParser.cpp delete mode 100644 src/graphRegex/GraphRegex.cpp delete mode 100644 src/graphRegex/GraphStrInterpreter.cpp delete mode 100644 src/graphRegex/matchFsm/FsmEdge.cpp delete mode 100644 src/graphRegex/matchFsm/FsmGraph.cpp delete mode 100644 src/graphRegex/matchFsm/FsmNode.cpp delete mode 100644 src/graphRegex/matchFsm/FsmRunTimeContext.cpp delete mode 100644 src/graphRegex/matchFsm/MatchResult.cpp delete mode 100644 src/nodeTester/ConditionalInterpreter.cpp delete mode 100644 src/nodeTester/ConditionalLexer.cpp delete mode 100644 src/nodeTester/ConditionalParser.cpp delete mode 100644 unit_tests/graphRegex/Test_Fsm.cpp delete mode 100644 unit_tests/graphRegex/Test_FsmMatch.cpp delete mode 100644 unit_tests/graphRegex/Test_GraphFsmInterpreter.cpp delete mode 100644 unit_tests/graphRegex/Test_GraphLexer.cpp delete mode 100644 unit_tests/graphRegex/Test_GraphParser.cpp delete mode 100644 unit_tests/graphRegex/Test_GraphRegex.cpp delete mode 100644 unit_tests/graphRegex/Test_examples.cpp delete mode 100644 unit_tests/graphRegex/Test_graphRegexAST.cpp delete mode 100644 unit_tests/nodeTester/Test_ConditionalInterpreter.cpp delete mode 100644 unit_tests/nodeTester/Test_ConditionalLexer.cpp delete mode 100644 unit_tests/nodeTester/Test_ConditionalParser.cpp diff --git a/include/aidge/aidge.hpp b/include/aidge/aidge.hpp index bf8bcbca0..3031fc19b 100644 --- a/include/aidge/aidge.hpp +++ b/include/aidge/aidge.hpp @@ -32,8 +32,6 @@ #include "aidge/graph/Node.hpp" #include "aidge/graph/OpArgs.hpp" -#include "aidge/graphRegex/GraphRegex.hpp" - #include "aidge/filler/Filler.hpp" #include "aidge/nodeTester/ConditionalInterpreter.hpp" diff --git a/include/aidge/graphRegex/GraphFsmInterpreter.hpp b/include/aidge/graphRegex/GraphFsmInterpreter.hpp deleted file mode 100644 index a3336850e..000000000 --- a/include/aidge/graphRegex/GraphFsmInterpreter.hpp +++ /dev/null @@ -1,87 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#ifndef AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ -#define AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ - -#include <string> -#include <memory> - -#include "aidge/utilsParsing/AstNode.hpp" -#include "aidge/graphRegex/GraphRegexTypes.hpp" -#include "aidge/graphRegex/GraphParser.hpp" -#include "aidge/graphRegex/matchFsm/FsmGraph.hpp" - -namespace Aidge { - - class GraphFsmInterpreter - { - private: - /* data */ - GraphParser mParser; - std::size_t mActGroupe; - std::map<std::string,std::shared_ptr<ConditionalInterpreter>> mNodesCondition; - - const std::string mGraphMatchExpr; - public: - GraphFsmInterpreter(const std::string graphMatchExpr,std::vector<std::shared_ptr<ConditionalInterpreter>> & nodesCondition); - virtual ~GraphFsmInterpreter() =default; - - - std::shared_ptr<FsmGraph> interpret(void); - - - - private: - - - std::shared_ptr<FsmGraph> visit(std::shared_ptr<AstNode<gRegexTokenTypes>> AstTree); - - /** - * @defgroup graphFsmInterpreterF Functions for interpreting AST nodes - * @brief For each node type in the AST, define how build the FsmGraph - */ - - - /** - * @ingroup graphFsmInterpreterF - * @brief leaf of fsm make the fsm for test one transition - */ - std::shared_ptr<FsmGraph> keyF(std::shared_ptr<AstNode<gRegexTokenTypes>> AstNode); - /** - * @ingroup graphFsmInterpreterF - * @brief combine two fsm of two expression. - */ - std::shared_ptr<FsmGraph> sepF(std::shared_ptr<FsmGraph> leftFsm,std::shared_ptr<FsmGraph> rigthFsm); - /** - * @ingroup graphFsmInterpreterF - * @brief combine two to make a new that match leftFsm next rigthFsm - */ - std::shared_ptr<FsmGraph> nextF(std::shared_ptr<FsmGraph> leftFsm,std::shared_ptr<FsmGraph> rigthFsm); - /** - * @ingroup graphFsmInterpreterF - * @brief make the fsm match + - */ - std::shared_ptr<FsmGraph> qomF(std::shared_ptr<FsmGraph> fsm); - /** - * @ingroup graphFsmInterpreterF - * @brief make the fsm match * - */ - std::shared_ptr<FsmGraph> qzmF(std::shared_ptr<FsmGraph> fsm); - - }; - - - -} - - -#endif // AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ diff --git a/include/aidge/graphRegex/GraphLexer.hpp b/include/aidge/graphRegex/GraphLexer.hpp deleted file mode 100644 index 8bd534591..000000000 --- a/include/aidge/graphRegex/GraphLexer.hpp +++ /dev/null @@ -1,70 +0,0 @@ -#ifndef AIDGE_CORE_GRAPH_LEXER_H_ -#define AIDGE_CORE_GRAPH_LEXER_H_ - -#include <string> -#include <memory> -#include <regex> -#include <stdexcept> //error - -#include "aidge/utilsParsing/ParsingToken.hpp" -#include "aidge/graphRegex/GraphRegexTypes.hpp" - -namespace Aidge { - - class GraphLexer - { - - public: - GraphLexer( const std::string gRegexExpressions ); - - /** - * @brief Get the next token on the gRegexExpressions - * @return ConditionalToken - */ - std::shared_ptr<ParsingToken<gRegexTokenTypes>> getNextToken(void); - /** - * @brief Restart at the start of the gRegexExpressions - * - */ - void rstPosition(void); - - /** - * @brief Test if the string is completely read - * @return bool - */ - bool isEnd(void); - - - const std::string getQuery(); - - - /** - * @brief Get the representation of the class - * @return string - */ - const std::string rep(); - - private: - - /** - * @brief Constructs an error message to display the character not understood by the lexer - * @return error message - */ - std::runtime_error badTokenError(const std::string& currentChars,std::size_t position); - - /** - * @brief The expression of the test to be performed on the nodes - */ - const std::string mRegularExpressions; - /** - * @brief The lexer's current position in mConditionalExpressions - */ - std::size_t mPosition; - - }; -} - - - - -#endif //AIDGE_CORE_GRAPH_LEXER_H_ diff --git a/include/aidge/graphRegex/GraphParser.hpp b/include/aidge/graphRegex/GraphParser.hpp deleted file mode 100644 index b165891ff..000000000 --- a/include/aidge/graphRegex/GraphParser.hpp +++ /dev/null @@ -1,105 +0,0 @@ -#ifndef AIDGE_CORE_GRAPH_PARSER_H_ -#define AIDGE_CORE_GRAPH_PARSER_H_ - - -#include <memory> // for shared_ptr -#include "aidge/graphRegex/GraphLexer.hpp" -#include "aidge/utilsParsing/AstNode.hpp" -#include "aidge/graphRegex/GraphRegexTypes.hpp" - -namespace Aidge{ - -/** - * @brief this class uses the lexer to create an AST according to a set of gramer rules - */ -class GraphParser { - -public: - /** - * @brief AST graph creation function - * @param gRegexExpressions String representing the logical function to be performed - */ - GraphParser(const std::string gRegexExpressions); - - ~GraphParser() noexcept; - - /** - * @brief AST graph creation function - * @return The AST tree - */ - std::shared_ptr<AstNode<gRegexTokenTypes>> parse(void); - - - /** - * @brief get the query that be use in the parsing - * @return query - */ - const std::string getQuery(); - - -private: - /** - * @brief restart at the start of the ConditionalExpressions for LEXER and restart mCurrentToken - */ - void rstParser(void); - - ////////////////// - - /** - * @defgroup ParsingFunctions Function for creating AST - * @brief Functions for recursive construction of the AST representing grammar rules - */ - - /** - * @ingroup ParsingFunctions - * @brief Token reading and verification function - * - */ - void ackToken(gRegexTokenTypes tokenType); - - //TODO TODO - /** - * @ingroup ParsingFunctions - * @brief Function of grammar rules for key : KEY(QOM | QZM)? | CKEY - * @return AST node - */ - std::shared_ptr<AstNode<gRegexTokenTypes>> constructAstExp(void); - - /** - * @ingroup ParsingFunctions - * @brief Function of grammar rules for sequence : seq :exp (NEXT seq)* - * @return AST node - */ - std::shared_ptr<AstNode<gRegexTokenTypes>> constructAstSeq(void); - - /** - * @ingroup ParsingFunctions - * @brief Function of grammar rules for domain : (seq NEXT domain)? | LPAREN domain RPAREN (QOM | QZM) (NEXT domain)? - * @return AST node - */ - std::shared_ptr<AstNode<gRegexTokenTypes>> constructAstDomain(void); - - /** - * @ingroup ParsingFunctions - * @brief Function of grammar rules for multiple exepresion : allExpr: domain (SEP allExpr)* - * @return AST node - */ - std::shared_ptr<AstNode<gRegexTokenTypes>> constructAstAllExpr(void); - - - /** - * @brief The actual token in the parce - */ - std::shared_ptr<ParsingToken<gRegexTokenTypes>> mCurrentToken; - - /** - * @brief The lexem use - */ - GraphLexer mLexer; - -}; - - -} - -#endif //AIDGE_CORE_GRAPH_PARSER_H_ diff --git a/include/aidge/graphRegex/GraphRegex.hpp b/include/aidge/graphRegex/GraphRegex.hpp deleted file mode 100644 index f0f8e68e4..000000000 --- a/include/aidge/graphRegex/GraphRegex.hpp +++ /dev/null @@ -1,106 +0,0 @@ -#ifndef AIDGE_CORE_GRAPH_REGEX_H_ -#define AIDGE_CORE_GRAPH_REGEX_H_ - -#include <string> - -#include "aidge/graphRegex/matchFsm/MatchResult.hpp" -#include "aidge/graphRegex/matchFsm/FsmGraph.hpp" -#include "aidge/graphRegex/GraphFsmInterpreter.hpp" -#include "aidge/graph/GraphView.hpp" -#include "aidge/graph/Node.hpp" - -namespace Aidge{ - -/** - * @brief type for recipes function use in query and resolve - */ -using RecipesFunctionType = std::function<void(std::shared_ptr<MatchSolution>)>; - -/** - * @brief high level interface for graph matching, used to simplify match definition - */ -class GraphRegex{ - - private: - - //std::vector<std::string> mQuery; - std::vector<std::shared_ptr<ConditionalInterpreter>> mAllTest; - std::map<std::string, std::function<bool(NodePtr)>> mAllLambda; - std::map<std::string,RecipesFunctionType> mQueryRecipe; - - public: - GraphRegex(){}; - virtual ~GraphRegex() = default; - - /** - * @brief add a topology query to the match - * @param query the topology query to find - **/ - //void addQuery(const std::string query); - - /** - * @brief add a topology query to the match and a function for recipe - * @param query the topology query to find - * @param f the funct - **/ - void addQuery(const std::string query,RecipesFunctionType f = nullptr); - - - /** - * @brief get all the types of a graph and set it as type key in the query - * @param Reference graph use to get all the node types - **/ - void setKeyFromGraph(std::shared_ptr<GraphView> ref); - - /** - * @brief set a node test manually - * @param key the ref of this test used in the query - * @param ConditionalExpressions expression to test the node - **/ - void setNodeKey(const std::string key, const std::string conditionalExpressions ); - - /** - * @brief set a specific lambda that can be used in setQueryKey - * @param key ref to the lambda to use in the - * @param f expression to test the node ConditionalExpressions - **/ - void setNodeKey(const std::string key,std::function<bool(NodePtr)> f); - - /** - * @brief brief match the queries in the graph - * @param ref the graph were the queries in search - * @return the result - */ - std::set<std::shared_ptr<MatchSolution>> match(std::shared_ptr<GraphView> ref); - - /*** - * @brief match the queries in the graph and applied the recipes function - * @param ref the graph were the queries in search - */ - void appliedRecipes(std::shared_ptr<GraphView> ref); - - private: - - void _generateCombinationsStart(const std::set<NodePtr>& elements, std::size_t n, std::size_t index, - std::vector<NodePtr>& current, std::set<std::vector<NodePtr>>& combinations); - - - - void _findLargestCompatibleSet( - const std::vector<std::shared_ptr<MatchSolution>>& solutions, - std::set<std::shared_ptr<MatchSolution>>& currentSet, - std::set<std::shared_ptr<MatchSolution>>& largestSet, - size_t currentIndex - ); - - std::set<std::shared_ptr<MatchSolution>> _findLargestCompatibleSet( - const std::vector<std::shared_ptr<MatchSolution>>& solutions - ); - - void _majConditionalInterpreterLambda(); - -}; -} - - -#endif //AIDGE_CORE_GRAPH_REGEX_H_ \ No newline at end of file diff --git a/include/aidge/graphRegex/GraphRegexTypes.hpp b/include/aidge/graphRegex/GraphRegexTypes.hpp deleted file mode 100644 index 9e35f8f02..000000000 --- a/include/aidge/graphRegex/GraphRegexTypes.hpp +++ /dev/null @@ -1,29 +0,0 @@ - -#ifndef AIDGE_CORE_GREGEX_TOKEN_TYPES_H_ -#define AIDGE_CORE_GREGEX_TOKEN_TYPES_H_ - - -namespace Aidge { - /** - * @brief enum for all types of token use in the of the regex - * 7-5 type - * 4-0 id - */ - enum class gRegexTokenTypes - { - STOP, - NEXT, /**< -> */ - - QOM, /**< + */ - QZM, /**< * */ - - KEY, /**< [A-Za-z_0-9]+ */ - CKEY, /**< [A-Za-z_0-9]+#[0-9]* */ - - SEP, /**< \( */ - LPAREN, /**< \( */ - RPAREN, /**< \) */ - }; - -} -#endif //AIDGE_CORE_GREGEX_TOKEN_TYPES_H_ diff --git a/include/aidge/graphRegex/GraphStrInterpreter.hpp b/include/aidge/graphRegex/GraphStrInterpreter.hpp deleted file mode 100644 index 4c7be546e..000000000 --- a/include/aidge/graphRegex/GraphStrInterpreter.hpp +++ /dev/null @@ -1,38 +0,0 @@ -#ifndef AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ -#define AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ - -#include <memory> -#include <algorithm> - -#include "aidge/utilsParsing/AstNode.hpp" -#include "aidge/graphRegex/GraphRegexTypes.hpp" -#include "aidge/graphRegex/GraphParser.hpp" -#include "aidge/graphRegex/matchFsm/FsmGraph.hpp" - -namespace Aidge { - - class GraphStrInterpreter - { - private: - /* data */ - GraphParser mParser; - std::string mToTest; - public: - GraphStrInterpreter(const std::string graphMatchExpr); - virtual ~GraphStrInterpreter() =default; - - - std::string interpret(void); - - private: - - - std::string visit(std::shared_ptr<AstNode<gRegexTokenTypes>> AstTree); - }; - - - -} - - -#endif //AIDGE_CORE_GRAPH_FSM_INTERPRETER_H_ diff --git a/include/aidge/graphRegex/matchFsm/FsmEdge.hpp b/include/aidge/graphRegex/matchFsm/FsmEdge.hpp deleted file mode 100644 index 2eadd27e8..000000000 --- a/include/aidge/graphRegex/matchFsm/FsmEdge.hpp +++ /dev/null @@ -1,253 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#ifndef AIDGE_CORE_FSM_EDGE_H_ -#define AIDGE_CORE_FSM_EDGE_H_ - -#include <memory> -#include <set> -#include <string> - -#include "aidge/nodeTester/ConditionalInterpreter.hpp" - - -namespace Aidge{ - - class FsmNode; - class FsmRunTimeContext; - - struct EdgeTestResult { - bool success; - std::set<NodePtr> node; - }; - - /** - * @brief virtual class use test the node on the node to validate - */ - class FsmEdge: public std::enable_shared_from_this<FsmEdge> - { - private: - - /** - * @brief the relative position to this test relative to all the const key - * first is common id, second is the relative position - */ - std::map<size_t,int> mRelativePos; - /** - * @brief the ptr on the source node - */ - std::shared_ptr<FsmNode> mNodeSource; - /** - * @brief the ptr on the dest node - */ - std::shared_ptr<FsmNode> mNodeDest; - /** - * @brief the weak ptr - */ - std::weak_ptr<FsmEdge> weakPtr; - - public: - FsmEdge(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const std::shared_ptr<ConditionalInterpreter> toTest); - - virtual ~FsmEdge(){}; - - FsmEdge() : weakPtr(shared_from_this()) {} - - - /** - * @brief test is the validation of the node, it must be defined for all types of edge - * it takes as argument an FSM traversal context and returns a set of next nodes - * @return set of next node or nullptr if not next - */ - - virtual const EdgeTestResult test(const std::shared_ptr<FsmRunTimeContext> stmContext) =0; - - /** - * @brief test is the edge test a common node - * @return true if is a common - */ - virtual bool isCommon(void); - /** - * @brief get the Common idx of the common test in this edge (if is a common edge) - * @return idx of the common - */ - virtual size_t getCommonIdx(void); - /** - * @brief get the relative position to the common node define in this edge - * @return map - */ - const std::map<size_t,int>& getRelative(void); - /** - * @brief add new relative position - */ - void updateRelative( const std::map<size_t,int>& relativePos ); - /** - * @brief get source FsmNode - * @return FsmNode - */ - std::shared_ptr<FsmNode> getSourceNode(void); - /** - * @brief set a new source to the edge - * @return FsmNode - */ - void reSetSourceNode(const std::shared_ptr<FsmNode>& newSource); - /** - * @brief get dest FsmNode - * @return FsmNode - */ - std::shared_ptr<FsmNode> getDestNode(void); - /** - * @brief set a new dest to the edge - * @return FsmNode - */ - void reSetDestNode(const std::shared_ptr<FsmNode>& newDest); - /** - * @brief propagate the edge mRelativePos to the others Edge and recalcul the relative position - */ - void propagateRelativePos(void); - - /** - * @brief test to make on the node to validate - * @see ConditionalInterpreter - */ - const std::shared_ptr<ConditionalInterpreter> mToTest; - - /** - * @brief update week ptr for the node, TODO best - */ - void updateWeak(void); - }; - - /** - * @brief class specialization for not common node (node that must be match one Unique) transition - */ - class FsmEdgeUnique:public FsmEdge - { - - public: - FsmEdgeUnique(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const std::shared_ptr<ConditionalInterpreter> toTest); - const EdgeTestResult test(const std::shared_ptr<FsmRunTimeContext> stmContext) override; - }; - - /** - * @brief class specialization for common node transition - * @see FsmEdge - */ - class FsmEdgeCommon:public FsmEdge - { - - private: - /** - * @brief the map that define the relation between the commonKey find by the lexer and a unique id use to refer to the common node - */ - static std::map<std::string,int> mCommonIdxMap; - /** - * @brief the common id test in this transition - */ - int mCommonIdx; - public: - - /** - * @brief constructor common node , - * @details during construction, - * the node key found by the lexer is converted to a unique id and the relative positions are updated. - */ - FsmEdgeCommon(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const std::shared_ptr<ConditionalInterpreter> toTest, const std::string commonKey); - // ~FsmEdgeCommon() override {} - const EdgeTestResult test(const std::shared_ptr<FsmRunTimeContext> stmContext) override; - bool isCommon(void) override; - - }; - - - - /** - * @brief class specialization for ref transition - * @see FsmEdge - */ - class FsmEdgeRef:public FsmEdge - { - private: - /** - * @brief the id of one common node that we use as an anchor - */ - const int mRefCommonIdx; - /** - * @brief the delta in terme of child or parent refer to the anchor - */ - const int mdeltaCommonIdx; - public: - FsmEdgeRef(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const size_t refCommonIdx,const int deltaCommonIdx); - //~FsmEdgeRef() override {} - const EdgeTestResult test(const std::shared_ptr<FsmRunTimeContext> stmContext) override; - - }; - - /** - * @brief class specialization for ref empty transition - * @see FsmEdge - */ - class FsmEdgeEmpty:public FsmEdge - { - - public: - FsmEdgeEmpty(std::shared_ptr<FsmNode> source,std::shared_ptr<FsmNode> dest); - //~FsmEdgeEmpty() override {} - const EdgeTestResult test(const std::shared_ptr<FsmRunTimeContext> stmContext) override; - - }; - - - /** - * @brief class specialization for ref empty transition - * @see FsmEdge - */ - class FsmEdgeNone:public FsmEdge - { - - public: - FsmEdgeNone(std::shared_ptr<FsmNode> source,std::shared_ptr<FsmNode> dest); - const EdgeTestResult test(const std::shared_ptr<FsmRunTimeContext> /*stmContext*/) override; - - }; - - - -//////////////////////// -// FACTORY -//////////////////////// - -enum class FsmEdgeTypes { - EMPTY = 0, - REF, - COMMON, - UNIQUE -}; - - -class FsmEdgeFactory { - public: - /** - * @brief factory for making edge and read the info in the lexeme of the token - * @param source source node of the edge - * @param dest Dest node of the edge - * @param type type of the edge - * @param lexeme the additional information to build the edge - * @return s prt of the edge - */ - static std::shared_ptr<FsmEdge> make(std::shared_ptr<FsmNode> source, std::shared_ptr<FsmNode> dest, - FsmEdgeTypes type,std::map<std::string, std::shared_ptr<ConditionalInterpreter>> allTest, - const std::string lexeme = ""); - }; - -} - -#endif //AIDGE_CORE_FSM_EDGE_H_ diff --git a/include/aidge/graphRegex/matchFsm/FsmGraph.hpp b/include/aidge/graphRegex/matchFsm/FsmGraph.hpp deleted file mode 100644 index e7402b3f0..000000000 --- a/include/aidge/graphRegex/matchFsm/FsmGraph.hpp +++ /dev/null @@ -1,109 +0,0 @@ - -#ifndef AIDGE_CORE_FSM_GRAPH_H_ -#define AIDGE_CORE_FSM_GRAPH_H_ - -#include <set> -#include <vector> -#include <memory> -#include <stdexcept> //error - -#include "aidge/graphRegex/matchFsm/FsmNode.hpp" -#include "aidge/graphRegex/matchFsm/FsmEdge.hpp" -#include "aidge/graphRegex/matchFsm/MatchResult.hpp" -namespace Aidge{ - - - -class FsmGraph -{ -private: - /** - * @brief all node Origin - */ - std::set<std::size_t> mAllOrigin; - std::set<std::shared_ptr<FsmEdge>> mEdges; - - - const std::string mQuery; - -public: - - FsmGraph(const std::string query); - virtual ~FsmGraph() = default; - - std::vector<std::shared_ptr<MatchSolution>> test(const std::vector<NodePtr>& StartNodes); - - - - const std::set<std::shared_ptr<FsmEdge>>& getEdge(void); - /** - * @brief add edge in the graph, as FsmEdge know the source and dest FsmNode these nodes are also add to the graph - */ - void addEdge(std::shared_ptr<FsmEdge>& edge); - - /** - * @brief get the list of the starting states - * @details we need to use a vector because the order of the nodes is important for start node initialization \ref test() - */ - const std::vector<std::shared_ptr<FsmNode>> getStartNodes(void); - - /** - * @brief get the set of the valid states - * @return set of valid state - */ - const std::set<std::shared_ptr<FsmNode>> getValidNodes(void); - - /** - * @brief get the set of all the node in the graph - * @return set of all nodes - */ - const std::set<std::shared_ptr<FsmNode>> getNodes(void); - - /** - * @brief set a group idx for all the nodes in the graph - */ - void setGroupe(std::size_t groupeIdx); - - /** - * @brief make the union between this graph and an input graph - * @param fsmGraph graph to union - */ - void unionG(const std::shared_ptr<FsmGraph> fsmGraph); - - - /** - * @brief make the union between this graph and an input graph and merge the valid state to the start state - * @param fsmGraph graph to merge - */ - void mergeOneStartOneValid(const std::shared_ptr< FsmGraph> fsmGraph); - /** - * @brief get the number of sub FSM - * @return number of sub Fsm - */ - std::size_t getNbSubFsm(void); - - /** - * @brief get the number of start state - * @return number of start state - */ - std::size_t getNbStart(void); - - /** - * @brief increment the origin of all nodes in the graph - * @param incr value - */ - void incOriginAllNodeBy(std::size_t incr); - - private: - - /** - * @brief merge tow node of the graph - * @param node - */ - void _mergeNode(std::shared_ptr<FsmNode> source,std::shared_ptr<FsmNode> dest); - -}; - - -} -#endif //AIDGE_CORE_FSM_GRAPH_H_ diff --git a/include/aidge/graphRegex/matchFsm/FsmNode.hpp b/include/aidge/graphRegex/matchFsm/FsmNode.hpp deleted file mode 100644 index c7a161bee..000000000 --- a/include/aidge/graphRegex/matchFsm/FsmNode.hpp +++ /dev/null @@ -1,110 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#ifndef AIDGE_CORE_FSM_NODE_H_ -#define AIDGE_CORE_FSM_NODE_H_ - -#include <set> -#include <vector> -#include <memory> - -//#include "graphRegex/matchFsm/FsmEdge.hpp" -//#include "graphRegex/matchFsm/FsmRunTimeContext.hpp" - -namespace Aidge{ - // Forward declaration of the class defined in graphRegex/matchFsm/FsmEdge.hpp - class FsmEdge; - struct EdgeTestResult; - class FsmRunTimeContext; - - - //------------------------------------------------------------------------------ - - // MAY BE IN UTILE - template <typename T> - struct lex_compare { - bool operator() (const std::weak_ptr<T> &lhs, const std::weak_ptr<T> &rhs)const { - auto lptr = lhs.lock(), rptr = rhs.lock(); - if (!rptr) return false; // nothing after expired pointer - if (!lptr) return true; - return lptr < rptr; - } - }; - - /** - * @brief is a node in the FSM graph, it's a state in the FSM - * @details a state can be and/or : - * - a valid state, the match is valid if it stop on this edge - * - a start state , the match start on this state - * The state is also define by this Origin (is the unique id of it's expretion ) - * and it's group (for inner expression TODO) - */ - class FsmNode : public std::enable_shared_from_this<FsmNode> - { - private: - /** - * @brief the edge of the node - * @details the edge have a shared ref to the node so we use weak ref - */ - std::set<std::weak_ptr<FsmEdge>,lex_compare<FsmEdge>> mEdges; - /** - * @brief the parent of the node - */ - std::set<std::weak_ptr<FsmNode>,lex_compare<FsmNode>> mParents; - - std::size_t mOriginFsm = 0; - std::size_t mGroupeFsm = 0; - - bool mIsAValid; - bool mIsAStart; - - public: - FsmNode(bool isAValid,bool isAStart ); - virtual ~FsmNode() = default; - /** - * @brief use to MAG the actual context , and return all the possible new context - * @details one input context can generate a multitude of contexts because a graph node - * can have more than one child, and each traversal possibility is a new context. - * @param actContext the actual context - * @return A vector of all the new context - */ - const std::vector<std::shared_ptr<FsmRunTimeContext>> test( std::shared_ptr<FsmRunTimeContext>); - - - std::size_t getOrigin(void); - void incOrigin(std::size_t inc); - - - void rmEdge(std::shared_ptr<FsmEdge>); - void addEdge(std::shared_ptr<FsmEdge>); - - //const std::set<std::shared_ptr<FsmNode>> getChildNodes(void); - - const std::set<std::weak_ptr<FsmNode>,lex_compare<FsmNode>>& getParentNodes(void); - const std::set<std::weak_ptr<FsmEdge>,lex_compare<FsmEdge>>& getEdges(void); - - void setGroupe(std::size_t groupeIdx); - - bool isValid(void); - bool isStart(void); - void invalid(void); - void valid(void); - void unStart(void); - void start(void); - - - - void addParent(std::shared_ptr<FsmNode>); - void rmParent(std::shared_ptr<FsmNode>); - }; - -} -#endif //AIDGE_CORE_FSM_NODE_H_ diff --git a/include/aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp b/include/aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp deleted file mode 100644 index 0b44172be..000000000 --- a/include/aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp +++ /dev/null @@ -1,171 +0,0 @@ -#ifndef AIDGE_CORE_FSM_RUN_TIME_CONTEXT_H_ -#define AIDGE_CORE_FSM_RUN_TIME_CONTEXT_H_ - -#include <memory> -#include <vector> -#include <set> -#include <algorithm> - -#include "aidge/nodeTester/ConditionalInterpreter.hpp" -#include "aidge/graph/Node.hpp" - - -namespace Aidge{ - -class FsmNode; - -/** - * @brief a class used to save the execution context of state machines, that is the actual state in the FSM, the actual node in the graph - * all node that have been Validate,Rejecte or Considered common -*/ -class FsmRunTimeContext -{ -private: - /** - * @brief the list of node rejected for all the context - */ - static std::vector<std::set<NodePtr>> mRejectedNodes; - /** - * @brief the actual state of this Context (where it's in the FSM graph) - */ - std::shared_ptr<FsmNode> mActState; - /** - * @brief the actual node of this Context (where it's in the graph) - */ - NodePtr mActOpNode; - /** - * @brief the map of the node consider as common and the common ID - * @details we need to store what node it's consider as common because of the end - * resolution of the matching, all node consider as common need to be the same in all context - */ - std::map<NodePtr,std::size_t> mCommonNodes; - /** - * @brief the map of the node that as been valid in this context , and the test that valid the node - */ - std::map<std::shared_ptr<ConditionalInterpreter>,std::set<NodePtr>> mValidNodes; - /** - * @brief the index in the rejected node of this context - */ - std::size_t mLocalIdxRejeced; -public: - /** - * @brief constructor - * @param actState the actual state in the FSM - * @param actOpNode the actual node in the graph - * @param idxRejeced the idx in the global regected node vector init max() as sentinel value of undefined - */ - FsmRunTimeContext(std::shared_ptr<FsmNode> actState ,NodePtr actOpNode ,std::size_t idxRejeced =std::numeric_limits<std::size_t>::max() ); - FsmRunTimeContext(std::shared_ptr<FsmRunTimeContext> fsmRunTime); - FsmRunTimeContext(std::shared_ptr<FsmRunTimeContext> fsmRunTime,std::shared_ptr<FsmNode> actState ,NodePtr actOpNode ); - - virtual ~FsmRunTimeContext()=default; - - /** - * @defgroup FsmRunTimeContextRejected Function for managing rejected nodes - */ - - /** - * @ingroup FsmRunTimeContextRejected - * @brief Add a node as rejected in this context - */ - void addRejectedNode(NodePtr node); - - /** - * @ingroup FsmRunTimeContextRejected - * @brief get the rejected nodes of this context - */ - inline std::set<NodePtr> getRejectedNodes(void) const { - return mRejectedNodes[mLocalIdxRejeced]; - } - - - /** - * @defgroup FsmRunTimeContextTest Function for test the context - */ - - /** - * @ingroup FsmRunTimeContextTest - * @brief test if the actual state is valid - * @return bool - */ - bool isOnValidState(void); - /** - * @ingroup FsmRunTimeContextTest - * @brief test if the node is considered as common in this context - * @param node node to test - * @return bool - */ - bool isCommonDefined(NodePtr node); - /** - * @ingroup FsmRunTimeContextTest - * @brief test if has already validated in this context - * @param node node to test - * @return bool - */ - bool isAlreadyValid(NodePtr node); - /** - * @ingroup FsmRunTimeContextTest - * @brief test if this context is compatible with an others - * @details to say that two contexts are compatible is to check : - * that the contexts do not validate the same nodes (other than the common ones) - * and that the common ones have the same idx - * @param fsmContext the others context - * @return bool - */ - bool areCompatible(std::shared_ptr<FsmRunTimeContext> fsmContext); - /** - * @ingroup FsmRunTimeContextTest - * @brief test if this context is strictly equal with an others - * @param fsmContext the others context - * @return bool - */ - bool areEqual(std::shared_ptr<FsmRunTimeContext> fsmContext); - - /** - * @defgroup FsmRunTimeContextSet Function set context - */ - - - void setCommon(NodePtr node,std::size_t commonIdx); - - - void setValid(NodePtr node,std::shared_ptr<ConditionalInterpreter> tag); - - /** - * @defgroup FsmRunTimeContextGet Function get context - */ - - - /** - * @ingroup FsmRunTimeContextGet - * @brief get the sub idx state - * @return bool - */ - std::size_t getSubStmId(void); - - NodePtr getCommonNodeFromIdx(std::size_t commonIdx); - std::size_t getCommonNodeIdx(NodePtr node); - std::set<NodePtr> getCommonNodes(void); - - std::map<NodePtr,std::size_t> getCommon(void); - std::set<NodePtr> getValidNodes(void); - - std::set<NodePtr> getValidNodesNoCommon(void); - std::map<std::shared_ptr<ConditionalInterpreter>,std::set<NodePtr>>& getValid(void); - - - NodePtr getActNode(void); - std::shared_ptr<FsmNode> getActState(void); - - - /** - * @defgroup FsmRunTimeContextMem - */ - - void rst(void); - - -}; -} // namespace Aidge - -#endif // AIDGE_CORE_FSM_RUN_TIME_CONTEXT_H_ diff --git a/include/aidge/graphRegex/matchFsm/MatchResult.hpp b/include/aidge/graphRegex/matchFsm/MatchResult.hpp deleted file mode 100644 index 7954e932a..000000000 --- a/include/aidge/graphRegex/matchFsm/MatchResult.hpp +++ /dev/null @@ -1,95 +0,0 @@ -#ifndef AIDGE_CORE_MATCH_RESULT_H_ -#define AIDGE_CORE_MATCH_RESULT_H_ - -#include <cstddef> -#include <map> -#include <memory> -#include <string> -#include <set> -#include <vector> - -#include "aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp" -#include "aidge/graph/Node.hpp" - -namespace Aidge{ - -/** - * @brief contained the result of one match and the associate key , the query and the start node -*/ - -class MatchSolution{ -private: - std::map<std::string, std::set<NodePtr>> mSolution; - const std::string mQueryFrom; - const std::vector<NodePtr> mStartNode; - -public: - MatchSolution() = delete; - MatchSolution(std::vector<std::shared_ptr<FsmRunTimeContext>>& precedence,const std::string query,const std::vector<NodePtr> startNode); - - inline const std::set<NodePtr>& at(const std::string& key) { - return mSolution[key]; - } - const std::set<NodePtr> getAll(); - bool areCompatible(std::shared_ptr<MatchSolution> solution); - - inline const std::string& getQuery() const noexcept { return mQueryFrom; } - inline const std::vector<NodePtr>& getStartNode() const noexcept { return mStartNode; } -}; - - -/** - * @brief class that old the result of a matching - * give access to all node and there tag in the expression -*/ -class MatchResult -{ -private: - /* data */ - std::vector<std::shared_ptr<FsmRunTimeContext>> mAllValid; - - /* - the Run time of each sub FSM , to have a valid match we need a set of one run time per FSM compatible - the id must be continue - */ - std::vector<std::vector<std::shared_ptr<FsmRunTimeContext>>> mIdToRunTime; - - std::vector<std::shared_ptr<MatchSolution>> mSolve; - - std::size_t mNbSubStm; - - - -public: - MatchResult() = delete; - MatchResult(std::vector<std::shared_ptr<FsmRunTimeContext>> allValid, - std::size_t nbSubStm, - const std::string& query,const std::vector<NodePtr>& startNodes); - - /** - * @brief get the set of the node match for une expression - * @return the set of node of the graph that corresponding to an expression - */ - inline std::shared_ptr<MatchSolution> getBiggerSolution(void) const noexcept { - return mSolve.empty() ? nullptr : mSolve[0]; - } - - inline std::vector<std::shared_ptr<MatchSolution>> getSolutions(void) const noexcept { - return mSolve; - } - -private: - -/** - * @brief recurrent function use to init mSolve in the constructor - * - **/ -void _generateCombination( std::size_t idxSubStm, std::vector<std::shared_ptr<FsmRunTimeContext>>& precedence,const std::string& query,const std::vector<NodePtr>& startNodes); - -}; - - -} - - -#endif //AIDGE_CORE_MATCH_RESULT_H_ diff --git a/include/aidge/nodeTester/ConditionalData.hpp b/include/aidge/nodeTester/ConditionalData.hpp deleted file mode 100644 index c6c521bd9..000000000 --- a/include/aidge/nodeTester/ConditionalData.hpp +++ /dev/null @@ -1,98 +0,0 @@ - -#ifndef AIDGE_CORE_CONDITIONAL_DATA_H_ -#define AIDGE_CORE_CONDITIONAL_DATA_H_ - -#include <vector> -#include <string> -#include <stdexcept> //error -#include <memory> -#include <map> -namespace Aidge{ - - - -///////////////////////// -// The data type in AST Interpretation -//////////////////////// - -class BaseConditionalValue { -public: - virtual ~BaseConditionalValue() {} -}; - -template <typename T> -class ConditionalValue : public BaseConditionalValue { -public: - ConditionalValue(const T& data) : value(data) {} - T value; -}; - - -struct ConditionalData { - /** - * @brief generic type to propagate all the different values in the AST interpretation - */ - //void* value; - std::unique_ptr<BaseConditionalValue> value; - const std::type_info* type =nullptr; - - ///////////////////////////////// - // - //////////////////////////////// - /** - * @brief set a value - */ - template <typename T> - void setValue(const T& newValue) { - //make sure that the old value is free - deleteValue(); - value = std::make_unique<ConditionalValue<T>>(newValue); - type = &typeid(T); - } - - /** - * @brief get the actual value - * @details recaste the value to the templaited type and checks that the conversion type is compatible with type - * @tparam the type of the return value - * @return the value - */ - template <typename T> - T getValue() const { - if (type && *type == typeid(T)) { - //const Value<T>* typedValue = dynamic_cast<const Value<T>*>(static_cast<const BaseValue*>(value)); - const ConditionalValue<T>* typedValue = dynamic_cast<const ConditionalValue<T>*>(value.get()); - if (typedValue) { - return typedValue->value; - } - } - throw std::runtime_error(std::string("DATA ERROR ") + type->name() + " != " + typeid(T).name()); - } - /////////////////////////////////// - // - /////////////////////////////////// - std::string getType() const { - return type ? type->name() : "nullptr"; - } - - - template <typename T> - bool isTypeEqualTo() const { - return (type && *type == typeid(T)); - } - - void deleteValue() { - if (type) { - value.reset(); - type = nullptr; - } - } - - ~ConditionalData() { // TODO best can we have a list of type supported ? - deleteValue(); - } -}; - -} - - -#endif //AIDGE_CORE_CONDITIONAL_DATA_H_ diff --git a/include/aidge/nodeTester/ConditionalInterpreter.hpp b/include/aidge/nodeTester/ConditionalInterpreter.hpp deleted file mode 100644 index 8906aa802..000000000 --- a/include/aidge/nodeTester/ConditionalInterpreter.hpp +++ /dev/null @@ -1,372 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#ifndef AIDGE_CORE_CONDITIONAL_INTERPRETER_H_ -#define AIDGE_CORE_CONDITIONAL_INTERPRETER_H_ - -#include "aidge/nodeTester/ConditionalParser.hpp" -#include "aidge/nodeTester/ConditionalData.hpp" - -#include <memory> // for shared_ptr -#include <unordered_map> -#include <functional> -#include "aidge/graph/Node.hpp" - - -namespace Aidge{ - - - -////////////////////////////// -// -///////////////////////////// -/** - * @brief class used to register any lambda function without context, - * it encapsulates the source lambda in a lambda which takes as argument std::shared_ptr<ConditionalData> which are any type. - * @see ConditionalData - */ -class ConditionalRegisterFunction { - ////////////////////////// - //Safe recaste - ////////////////////////// - - /** - * @brief recast the std::shared_ptr<ConditionalData> to the argument type of the lambda - * @tparam T type of the lambda argument - * @see ConditionalData - */ - template <typename T> - T safeCastInput( std::shared_ptr<ConditionalData> data) { - //cnvertion and type checking - if (data->isTypeEqualTo<T>()){ - return data->getValue<T>(); - }else{ - throw std::invalid_argument( "incompatible input type " + data->getType() +" "+ typeid(T).name() ); - } - - } - - - /** - * @brief recaste the output of the lambda to a std::shared_ptr<ConditionalData> - * @tparam T type of the lambda return - * @see ConditionalData - */ - template <typename T> - std::shared_ptr<ConditionalData> safeCastOutput(T data) { - - std::shared_ptr<ConditionalData> out = std::make_shared<ConditionalData>(); - out->setValue<T>(data); - - return out; - } - - - - - ////////////////////// - // get all the type of the function - ////////////////////// - - /** - * @brief Retrieves information about a function's return type and argument types. - * @tparam T The function type. - */ - template <typename T> - struct function_traits; - - - /** - * @brief Specialization of function_traits for function pointers. - * @tparam R The return type of the function. - * @tparam Args The argument types of the function. - */ - template <typename R, typename... Args> - struct function_traits<R (*)(Args...)> { - using return_type = R; - static constexpr std::size_t arity = sizeof...(Args); - - template <std::size_t N> - struct argument { - static_assert(N < arity, "Index out of range."); - using type = typename std::tuple_element<N, std::tuple<Args...>>::type; - }; - }; - - /** - * @brief Specialization of function_traits for std::function types. - * @tparam R The return type of the function. - * @tparam Args The argument types of the function. - */ - template <typename R, typename... Args> - struct function_traits<std::function<R(Args...)>> { - using return_type = R; - static constexpr std::size_t arity = sizeof...(Args); - - template <std::size_t N> - struct argument { - static_assert(N < arity, "Index out of range."); - using type = typename std::tuple_element<N, std::tuple<Args...>>::type; - }; - }; - - ///////////////////// - //change the function to std::shared_ptr<ConditionalData>(std::vector< std::shared_ptr<ConditionalData>>) - ///////////////////// - - /** - * @brief Converts a function to a std::shared_ptr<ConditionalData>(std::vector< std::shared_ptr<ConditionalData>>). - * @tparam F The type of the function to convert. - * @tparam ParamsIdx The indices of the function parameters. - * @param f The function to convert. - * @return The pointer to the converted function. - */ - template <class F, std::size_t... ParamsIdx> - auto funcPointer(F f, std::index_sequence<ParamsIdx...>) { - //wrap the lambda in a new one that as ConditionalData as inputs and output - return [this,f](std::vector< std::shared_ptr<ConditionalData>> &args) { - if (args.size() < sizeof...(ParamsIdx)){ - throw std::runtime_error( - fmt::format("bad Number of argument: get {} need {}\n", - args.size(), - sizeof...(ParamsIdx)) - ); - } - //we used std::vector< std::shared_ptr<ConditionalData>> as a fifo - std::size_t offset = args.size()-sizeof...(ParamsIdx); - - using FuncTraits = function_traits<decltype(f)>; - using outType = typename FuncTraits::return_type; - - outType result = f(safeCastInput<typename FuncTraits::template argument<ParamsIdx>::type>(args[offset+ParamsIdx])...); - - //suppress what we used - for (size_t i = 0; i < sizeof...(ParamsIdx); ++i) { - args.pop_back(); - } - //typename - return safeCastOutput<outType>(result); - }; - } - - /** - * @brief Converts a function pointer to a std::shared_ptr<ConditionalData>(std::vector< std::shared_ptr<ConditionalData>>). - * @tparam R The return type of the function. - * @tparam Params The parameter types of the function. - * @param f The function pointer to convert. - * @return The pointer to the converted function. - */ - template <class R,class... Params> - auto funcPointer(R (*f)(Params...)) { - return funcPointer(f, std::index_sequence_for<Params...>{}); - } - - /** - * @brief Converts a std::function to a std::shared_ptr<ConditionalData>(std::vector< std::shared_ptr<ConditionalData>>). - * @tparam R The return type of the function. - * @tparam Params The parameter types of the function. - * @param f The function pointer to convert. - * @return The pointer to the converted function. - */ - template <class R,class... Params> - auto funcPointer(std::function<R(Params...)> f) { - return funcPointer(f, std::index_sequence_for<Params...>{}); - } - - - /////////////////// - // interface - /////////////////// - - public: - - /** - * @brief Default constructor - */ - ConditionalRegisterFunction(){} - - - /** - * @brief Inserts a function into the map with the provided key. - * @tparam T The function type. - * @param key The key to associate with the function. - * @param f The function to insert. - */ - template <class T> - void insert(const std::string key,T f){ - mWlambda.insert({ key, funcPointer(f)}); - } - - - /** - * @brief Runs the function associated with the given key, using the provided vector of input data. - * @param key The key of the function to run. - * @param data The vector of input data. - * @return A pointer to the output ConditionalData object. - */ - std::shared_ptr<ConditionalData> run(const std::string key,std::vector< std::shared_ptr<ConditionalData>> & data); - - bool isLambdaRegister(const std::string &key) { - if(mWlambda.find(key) != mWlambda.end()){ - return true; - } - return false; - } - - private: - /// @brief map of name and the converted function. - std::map<const std::string, std::function< std::shared_ptr<ConditionalData>(std::vector< std::shared_ptr<ConditionalData>> &)>> mWlambda; -}; - -/////////////////// -//AST tree node -// //////////////// -/** - * @brief this class interprets AST to generate a test on a graph node. For each AST node, - * it generates an interpretation and registers lambda functions that can be used in the test expression. - * there are two lambda control mechanisms: - * - A cpp mechanism which allows any lambda to be inserted into the constructor that use templaite - * - A user mechanism limited to lambda bool(NodePtr) - * @see ConditionalParser use to get the AST - */ -class ConditionalInterpreter -{ - private: - - /** - * @brief the AST generate by the Parser - * @see ConditionalParser - */ - std::shared_ptr<AstNode<ConditionalTokenTypes>> mTree; - /** - * @brief the registry for the lambda function - * @see ConditionalRegisterFunction - */ - ConditionalRegisterFunction mLambdaRegister; - - - std::vector< std::shared_ptr<ConditionalData>> mResolution ; - - // void clearRes(){ - - // for (std::size_t i = 0; i < mResolution.size(); ++i) { - // delete mResolution[i]; - // } - // mResolution.clear(); - // } - - public: - - const std::string mKey; - - /** - * @brief Constructor - * @param ConditionalExpressions The expression of the test to be performed on the nodes - */ - - ConditionalInterpreter(const std::string key,const std::string ConditionalExpressions); - - ~ConditionalInterpreter(){} - - /** - * @brief get the condition key - * @return the key - */ - - const std::string& getKey(); - - /** - * @brief Test a node depending of the ConditionalExpressions - * @details the AST is visit using \ref visit() with the $ init with the nodeOp - * @return bool the match node has the initialized expression - * @see visit() This function uses the visit() function to perform the evaluation. - */ - bool test( const NodePtr nodeOp); - - /** - * @brief Interface for inserting custom lambda bool(NodePtr) functions in AST interpretation, - * it will be available in the ConditionalExpressions expretion as : key($) - * @param key The key that will be used to call the function in the expression - * @param f The pointer to function - */ - void insertLambda(const std::string key,std::function<bool(Aidge::NodePtr)> f); - - bool isLambdaRegister(const std::string &key); - ///// - - private: - /** - * @brief Recursive AST traversal function, using the for interpreting AST nodes function, - * using \ref ASTnodeInterpreterF functions - * @param NodeOp The node currently being tested - * @param nodes The AST given by the parsing process - */ - std::vector< std::shared_ptr<ConditionalData>> visit(const ASTNodeCh& nodes, const NodePtr NodeOp ); - - /** - * @defgroup ASTnodeInterpreterF Functions for interpreting AST nodes - * @brief For each node type in the AST, function defines the processing to be performed - * they return a std::vector< std::shared_ptr<ConditionalData>> which corresponds to the value(s) obtained - */ - - /** - * @ingroup ASTnodeInterpreterF - * @brief Function that does something. - */ - void fLambda(const std::shared_ptr<AstNode<ConditionalTokenTypes>>& node); - /** - * @ingroup ASTnodeInterpreterF - * @brief Converted the lexeme to a int and to std::shared_ptr<ConditionalData> - */ - void fStrToInteger(const std::shared_ptr<AstNode<ConditionalTokenTypes>>& node); - /** - * @ingroup ASTnodeInterpreterF - * @brief Converted the lexeme to a float and to std::shared_ptr<ConditionalData> - */ - void fStrToFloat(const std::shared_ptr<AstNode<ConditionalTokenTypes>>& node); - /** - * @ingroup ASTnodeInterpreterF - * @brief Converted the lexeme to a str and to std::shared_ptr<ConditionalData> - */ - void fStrToStr(const std::shared_ptr<AstNode<ConditionalTokenTypes>>& node); - - /** - * @ingroup ASTnodeInterpreterF - * @brief makes the == operation between two previously converted std::shared_ptr<ConditionalData> - */ - void fEq(void); - /** - * @ingroup ASTnodeInterpreterF - * @brief makes the != operation between two previously converted std::shared_ptr<ConditionalData> - */ - void fNeq(void); - /** - * @ingroup ASTnodeInterpreterF - * @brief makes the && operation between two previously converted std::shared_ptr<ConditionalData> in bool - */ - void fAnd(void); - /** - * @ingroup ASTnodeInterpreterF - * @brief makes the || operation between two previously converted std::shared_ptr<ConditionalData> in bool - */ - void fOr(void); - - /** - * @ingroup ASTnodeInterpreterF - * @brief makes the ! operation - */ - void fNot(void); -}; - - -} - -#endif //AIDGE_CORE_CONDITIONAL_INTERPRETER_H_ diff --git a/include/aidge/nodeTester/ConditionalLexer.hpp b/include/aidge/nodeTester/ConditionalLexer.hpp deleted file mode 100644 index 3ac561481..000000000 --- a/include/aidge/nodeTester/ConditionalLexer.hpp +++ /dev/null @@ -1,84 +0,0 @@ -/** - * @file - * @brief - * @version file 1.0.0 - * @author vl241552 - * @copyright - * Copyright (c) 2023 CEA, LIST, Embedded Artificial Intelligence Laboratory. All - * rights reserved. - */ - - - -#ifndef AIDGE_CORE_CONDITIONAL_LEXER_H_ -#define AIDGE_CORE_CONDITIONAL_LEXER_H_ - -#include <memory> // for shared_ptr -#include <stdexcept> //error -#include <string> - -#include "aidge/nodeTester/ConditionalTypes.hpp" -#include "aidge/utilsParsing/ParsingToken.hpp" - - -namespace Aidge{ - - - -class ConditionalLexer -{ - -public: -ConditionalLexer( const std::string ConditionalExpressions ); - -/** - * @brief Get the next token on the ConditionalExpressions - * @return ParsingToken<ConditionalTokenTypes> - */ -std::shared_ptr<ParsingToken<ConditionalTokenTypes>> getNextToken(void); -/** - * @brief Restart at the start of the ConditionalExpressions - * - */ -void rstPosition(void); - -/** - * @brief Test if the string is completely read - * @return bool - */ -bool isEnd(void); - - -/** - * @brief Get the representation of the class - * @return string - */ -std::string rep() const noexcept { - return mConditionalExpressions; -} - -private: - -/** - * @brief Constructs an error message to display the character not understood by the lexer - * @return error message - */ -std::runtime_error badTokenError(const std::string& currentChars,std::size_t position); - -/** - * @brief The expression of the test to be performed on the nodes - */ -const std::string mConditionalExpressions; -/** - * @brief The lexer's current position in mConditionalExpressions - */ -std::size_t mPosition; - -}; - -///////////////////////////////////// - - -} - -#endif //AIDGE_CORE_CONDITIONAL_LEXER_H_ diff --git a/include/aidge/nodeTester/ConditionalParser.hpp b/include/aidge/nodeTester/ConditionalParser.hpp deleted file mode 100644 index 06b0e112c..000000000 --- a/include/aidge/nodeTester/ConditionalParser.hpp +++ /dev/null @@ -1,110 +0,0 @@ - - - -#ifndef AIDGE_CORE_CONDITIONAL_PARSER_H_ -#define AIDGE_CORE_CONDITIONAL_PARSER_H_ - - -#include <memory> // for shared_ptr -#include <map> -#include <vector> - -#include "aidge/nodeTester/ConditionalLexer.hpp" -#include "aidge/nodeTester/ConditionalTypes.hpp" -#include "aidge/utilsParsing/ParsingToken.hpp" -#include "aidge/utilsParsing/AstNode.hpp" - -namespace Aidge{ - -const std::map<ConditionalTokenTypes, std::size_t> ConditionalPrec{ - {ConditionalTokenTypes::AND,2}, - {ConditionalTokenTypes::OR,1} -}; - - - - -using ASTNodeCh = std::vector<std::shared_ptr<AstNode<ConditionalTokenTypes>>>; - -/** - * @brief this class uses the lexer to create an AST according to a set of gramer rules - */ -class ConditionalParser { - - public: - /** - * @brief AST graph creation function - * @param ConditionalExpressions String representing the logical function to be performed - */ - ConditionalParser(const std::string ConditionalExpressions); - - ~ConditionalParser() noexcept; - - /** - * @brief AST graph creation function - * @return The AST tree - */ - std::shared_ptr<AstNode<ConditionalTokenTypes>> parse(void); - - - private: - /** - * @brief restart at the start of the ConditionalExpressions for LEXER and restart mCurrentToken - */ - void rstParser(void); - - ////////////////// - - /** - * @defgroup ParsingFunctions Function for creating AST - * @brief Functions for recursive construction of the AST representing grammar rules - */ - - /** - * @ingroup ParsingFunctions - * @brief Token reading and verification function - * - */ - void ackToken(ConditionalTokenTypes tokenType); - - /** - * @ingroup ParsingFunctions - * @brief Function of grammar rules for values : (KEY|INTEGER|FOAT|STRING|LAMBDA lambda) - * @return AST node - */ - std::shared_ptr<AstNode<ConditionalTokenTypes>> constructAstVal(void); - /** - * @ingroup ParsingFunctions - * @brief Function of grammar rules for comparison : val (EQ|NEQ) val | LPAREN expr RPAREN - * @return AST node - */ - std::shared_ptr<AstNode<ConditionalTokenTypes>> constructAstCmpr(void); - /** - * @ingroup ParsingFunctions - * @brief Function of grammar rules for arguments of a lambda : LAMBDA val (ARGSEP val)* RPAREN - * @return AST node - */ - std::shared_ptr<AstNode<ConditionalTokenTypes>> constructAstLambda(void); - /** - * @ingroup ParsingFunctions - * @brief Function of grammar rules for a expression : cmpr ((AND | OR) cmpr)* - * @return AST node - */ - std::shared_ptr<AstNode<ConditionalTokenTypes>> constructAstExpr(std::size_t precLimit = 0); - - - /** - * @brief The actual token in the parce - */ - std::shared_ptr<ParsingToken<ConditionalTokenTypes>> mCurrentToken; - /** - * @brief The lexem use - */ - ConditionalLexer mLexer; - -}; - - -} - -#endif //AIDGE_CORE_CONDITIONAL_PARSER_H_ diff --git a/include/aidge/nodeTester/ConditionalTypes.hpp b/include/aidge/nodeTester/ConditionalTypes.hpp deleted file mode 100644 index 6cb2edfd7..000000000 --- a/include/aidge/nodeTester/ConditionalTypes.hpp +++ /dev/null @@ -1,36 +0,0 @@ - - -#ifndef AIDGE_CORE_CONDITIONAL_TYPES_H_ -#define AIDGE_CORE_CONDITIONAL_TYPES_H_ -namespace Aidge{ - /** - * @brief enum for all types of token use in the parsing - * 7-5 type - * 4-0 id - */ - enum class ConditionalTokenTypes - { - STOP, - - NOT, /**< ! */ - AND, /**< && */ - OR, /**< || */ - - EQ, /**< == */ - NEQ, /**< != */ - - KEY, /**< [A-Za-z][A-Za-z0-9_]* */ - INTEGER, /**< [0-9]+ */ - FLOAT, /**< [0-9]+\.[0-9]* */ - STRING , /**< \'.*\' */ - BOOL, /**< true|false */ - NODE, /**< \$ */ - LAMBDA , /**< [A-Za-z][A-Za-z0-9_]*\( */ - - ARGSEP, /**< , */ - LPAREN, /**< \( */ - RPAREN, /**< \) */ - - }; -} -#endif // AIDGE_CORE_CONDITIONAL_TYPES_H_ diff --git a/python_binding/graphRegex/pybind_GraphRegex.cpp b/python_binding/graphRegex/pybind_GraphRegex.cpp deleted file mode 100644 index 921f204d0..000000000 --- a/python_binding/graphRegex/pybind_GraphRegex.cpp +++ /dev/null @@ -1,70 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <pybind11/pybind11.h> -#include <pybind11/functional.h> -#include "aidge/graphRegex/GraphRegex.hpp" - -namespace py = pybind11; -namespace Aidge { -void init_GraphRegex(py::module& m){ - - - py::class_<GraphRegex, std::shared_ptr<GraphRegex>>(m, "GraphRegex", "GraphRegex class describes a regex to test a graph.") - .def(py::init<>()) - - .def("add_query", &GraphRegex::addQuery, py::arg("query"), py::arg("f") = nullptr, R"mydelimiter( - :rtype: str - )mydelimiter") - - .def("set_key_from_graph", &GraphRegex::setKeyFromGraph, R"mydelimiter( - :param ref: The graph use to define type of Node. - :type ref: :py:class:`aidge_core.GraphView` - )mydelimiter") - -// void setNodeKey(const std::string key, const std::string conditionalExpressions ); -// void setNodeKey(const std::string key,std::function<bool(NodePtr)> f); - - .def("match", &GraphRegex::match, R"mydelimiter( - :param graphToMatch: The graph to perform the matching algorithm on. - :type graphToMatch: :py:class:`aidge_core.GraphView` - )mydelimiter") - - - - .def("set_node_key", - (void (GraphRegex::*)(const std::string, const std::string )) & - GraphRegex::setNodeKey, - py::arg("key"), py::arg("conditionalExpressions"), - R"mydelimiter( - Add a node test - :param key: the key of the node test to use in the query. - :param conditionalExpressions: the test to do . - - )mydelimiter") - - - .def("set_node_key", - (void (GraphRegex::*)(const std::string, std::function<bool(NodePtr)>)) & - GraphRegex::setNodeKey, - py::arg("key"), py::arg("f"), - R"mydelimiter( - Add a node test - :param key: the key of the lambda test to use in the conditional expressions. - :param f: bool lambda (nodePtr) . - - )mydelimiter") - - - - ; -} -} diff --git a/python_binding/graphRegex/pybind_MatchSolution.cpp b/python_binding/graphRegex/pybind_MatchSolution.cpp deleted file mode 100644 index 81d39f86e..000000000 --- a/python_binding/graphRegex/pybind_MatchSolution.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <pybind11/pybind11.h> -#include <pybind11/stl.h> -#include "aidge/graphRegex/matchFsm/MatchResult.hpp" - -namespace py = pybind11; -namespace Aidge { -void init_MatchSolution(py::module& m){ - - - py::class_<MatchSolution, std::shared_ptr<MatchSolution>>(m, "MatchSolution", "MatchSolution class contains the result of one match and the associated key, the query and the start node.") - .def("at", &MatchSolution::at, py::arg("key"), - R"mydelimiter( - :rtype: str - )mydelimiter") - - .def("get_all", &MatchSolution::getAll, - R"mydelimiter( - )mydelimiter") - - .def("get_query", &MatchSolution::getQuery, - R"mydelimiter( - )mydelimiter") - - .def("get_start_node", &MatchSolution::getStartNode, - R"mydelimiter( - )mydelimiter") - ; -} -} // namespace Aidge diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index 435badb6c..b3b7c64da 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -95,9 +95,6 @@ void init_OpArgs(py::module&); void init_Connector(py::module&); void init_SinglePassGraphMatching(py::module&); -void init_GraphRegex(py::module&); -void init_MatchSolution(py::module&); - void init_Recipes(py::module&); void init_GraphViewHelper(py::module&); @@ -190,9 +187,6 @@ void init_Aidge(py::module& m) { init_Producer(m); - init_GraphRegex(m); - init_MatchSolution(m); - init_Recipes(m); init_GraphViewHelper(m); init_Scheduler(m); diff --git a/src/graphRegex/GraphFsmInterpreter.cpp b/src/graphRegex/GraphFsmInterpreter.cpp deleted file mode 100644 index 0c9811389..000000000 --- a/src/graphRegex/GraphFsmInterpreter.cpp +++ /dev/null @@ -1,208 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <cmath> // std::abs -#include <memory> -#include <set> -#include <stdexcept> -#include <string> -#include <vector> - -#include "aidge/graphRegex/GraphFsmInterpreter.hpp" - -using namespace Aidge; - - -GraphFsmInterpreter::GraphFsmInterpreter(const std::string graphMatchExpr,std::vector<std::shared_ptr<ConditionalInterpreter>>&nodesCondition):mParser(graphMatchExpr){ - mActGroupe = 0; - - for (const auto &obj : nodesCondition) { - if(mNodesCondition.find(obj->getKey()) ==mNodesCondition.end()){ - mNodesCondition[obj->getKey()] = obj; - }else{ - throw std::logic_error("GraphFsmInterpreter Bad Key" ); - } - } -} -std::shared_ptr<FsmGraph> GraphFsmInterpreter::interpret(void){ - mActGroupe = 0; - std::shared_ptr<AstNode<gRegexTokenTypes>> tree = mParser.parse(); - std::shared_ptr<FsmGraph> out = visit(tree); - return out; -} - -std::shared_ptr<FsmGraph> GraphFsmInterpreter::visit(std::shared_ptr<AstNode<gRegexTokenTypes>> AstTree){ - - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>> nextAstNodes = AstTree->getChilds(); - - if(AstTree->getType() == gRegexTokenTypes::SEP){ - return sepF(visit(nextAstNodes[0]),visit(nextAstNodes[1])); - }else if(AstTree->getType() == gRegexTokenTypes::NEXT){ - return nextF(visit(nextAstNodes[0]),visit(nextAstNodes[1])); - }else if(AstTree->getType() == gRegexTokenTypes::QOM){ - return qomF(visit(nextAstNodes[0])); - }else if(AstTree->getType() == gRegexTokenTypes::QZM){ - return qzmF(visit(nextAstNodes[0])); - }else if(AstTree->getType() == gRegexTokenTypes::KEY || AstTree->getType() == gRegexTokenTypes::CKEY){ - return keyF(AstTree); - }else if(AstTree->getType() == gRegexTokenTypes::LPAREN){ - mActGroupe += 1; - std::shared_ptr<FsmGraph> out = visit(nextAstNodes[0]); - mActGroupe -= 1; - return out; - }else{ - throw std::logic_error("visit Bad token type" ); - } -} - - - - -std::shared_ptr<FsmGraph> GraphFsmInterpreter::keyF(std::shared_ptr<AstNode<gRegexTokenTypes>> AstNode){ - - - std::shared_ptr<FsmNode> start = std::make_shared<FsmNode>(false,true); - std::shared_ptr<FsmNode> valid = std::make_shared<FsmNode>(true,false); - std::shared_ptr<FsmGraph> graph = std::make_shared<FsmGraph>(mParser.getQuery()); - std::shared_ptr<FsmEdge> edge; - - - if(AstNode->getType() == gRegexTokenTypes::CKEY){ - edge = FsmEdgeFactory::make(start,valid,FsmEdgeTypes::COMMON,mNodesCondition,AstNode->getValue()); - }else if (AstNode->getType() == gRegexTokenTypes::KEY) - { - edge = FsmEdgeFactory::make(start,valid,FsmEdgeTypes::UNIQUE,mNodesCondition,AstNode->getValue()); - }else{ - - throw std::logic_error("keyF Bad in AST" ); - } - - graph->addEdge(edge); - graph->setGroupe(mActGroupe); - return graph; -} - -std::shared_ptr<FsmGraph> GraphFsmInterpreter::sepF(std::shared_ptr<FsmGraph> leftFsm,std::shared_ptr<FsmGraph> rigthFsm){ - - size_t idxLeft = leftFsm->getNbSubFsm(); - rigthFsm->incOriginAllNodeBy(idxLeft); - leftFsm->unionG(rigthFsm); - //the rigthFsm is no longer usfull - return leftFsm; -} - -std::shared_ptr<FsmGraph> GraphFsmInterpreter::nextF(std::shared_ptr<FsmGraph> leftFsm,std::shared_ptr<FsmGraph> rigthFsm){ - /* - combine the 2 Graph - all valid node of A are merge with Start B, Start B is un Start - update the relative reference - - A B - SA -> VA + SB -> VB - A B - SA -> q -> VB - */ - leftFsm->mergeOneStartOneValid(rigthFsm); - //the rigthFsm is no longer usfull - return leftFsm; -} - -std::shared_ptr<FsmGraph> GraphFsmInterpreter::qomF(std::shared_ptr<FsmGraph> fsm){ - /* - + - valid node is connect to the child of Start with the same edge condition - A - S -> V - - A - S -> V - (E|R) - V -> S - */ - - std::vector<std::shared_ptr<FsmNode>> allStart = fsm->getStartNodes(); - std::set<std::shared_ptr<FsmNode>> allValid = fsm->getValidNodes(); - std::shared_ptr<FsmEdge> edge; - - if(allStart.size() != 1){ - throw std::logic_error("qomF Bad in AST" ); - } - - for(auto start : allStart ){ - for(auto edgeStart :start->getEdges() ){ - if (auto sharedEdge = edgeStart.lock()) { - - const std::map<size_t, int> commonRef = sharedEdge->getRelative(); - bool haveCommon = !commonRef.empty(); - - for(auto valid : allValid){ - if(haveCommon){ - /* - the // quantify case - get the go back and make a lexeme id(number) - we need to go back to the ref delta min #TODO - */ - bool hasMinRef = false; - std::pair<size_t, int> minRef; - for (const auto& entry : commonRef) { - if (!hasMinRef || std::abs(minRef.second) > std::abs(entry.second)) { - hasMinRef = true; - minRef = entry; - } - } - const auto lexem = fmt::format("({}, {})", minRef.first, minRef.second); - edge = FsmEdgeFactory::make(valid,start,FsmEdgeTypes::REF,mNodesCondition, lexem); - }else{ - /* - the sequential quantify case - no reference to common - */ - edge = FsmEdgeFactory::make(valid, start, FsmEdgeTypes::EMPTY, mNodesCondition, ""); - - } - fsm->addEdge(edge); - } - } else { - throw std::runtime_error("edgeStart weak pointer is expired" ); - } - } - - } - return fsm; - -} - -std::shared_ptr<FsmGraph> GraphFsmInterpreter::qzmF(std::shared_ptr<FsmGraph> fsm){ - /* - qomf and a bypass empty start to valid - */ - fsm = qomF(fsm); - - std::vector<std::shared_ptr<FsmNode>> allStart = fsm->getStartNodes(); - std::set<std::shared_ptr<FsmNode>> allValid = fsm->getValidNodes(); - std::shared_ptr<FsmEdge> edge; - - if(allStart.size() != 1){ - throw std::logic_error("qzmF Bad in AST" ); - } - - for(auto start : allStart ){ - - for(auto valid : allValid){ - edge = FsmEdgeFactory::make(start,valid,FsmEdgeTypes::EMPTY,mNodesCondition,""); - fsm->addEdge(edge); - } - } - - return fsm; - - -} \ No newline at end of file diff --git a/src/graphRegex/GraphLexer.cpp b/src/graphRegex/GraphLexer.cpp deleted file mode 100644 index 75181e326..000000000 --- a/src/graphRegex/GraphLexer.cpp +++ /dev/null @@ -1,159 +0,0 @@ - -#include "aidge/graphRegex/GraphLexer.hpp" - -using namespace Aidge; - - -GraphLexer::GraphLexer( const std::string gRegexExpressions ): -mRegularExpressions(gRegexExpressions){ - mPosition = 0; -} - -std::shared_ptr<ParsingToken<gRegexTokenTypes>> GraphLexer::getNextToken(void){ - std::string currentChars = ""; - while (mPosition < mRegularExpressions.length()) - { - //erase all space - if (mRegularExpressions[mPosition] != ' ') - { - currentChars += mRegularExpressions[mPosition]; - } - else - { - mPosition++; - continue; - } - - ///// - // const lent token - ///// - - if (std::regex_match(currentChars,std::regex("\\->")))// the next TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::NEXT,""); - } - else if (std::regex_match(currentChars,std::regex("\\*")))// the * TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::QZM,""); - } - else if (std::regex_match(currentChars,std::regex("\\+")))// the + TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::QOM,""); - } - else if (std::regex_match(currentChars,std::regex("\\(")))// the LPAREN TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::LPAREN,""); - } - else if (std::regex_match(currentChars,std::regex("\\)")))// the RPAREN TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::RPAREN,""); - } - - // - else if (std::regex_match(currentChars,std::regex(";")))// the SEP TOKEN - { - //test if the last sep - //std::string subStr = mRegularExpressions.substr(mPosition); - mPosition++; - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::SEP,""); - } - - ///// - //unconst lent token - ///// - - else if (std::regex_match(currentChars,std::regex("[A-Za-z_0-9]")))// the KEY or CKEY - { - - //read all the key - bool isCKey = false; - std::regex keyRegex("[A-Za-z_0-9]+"); - std::regex cKeyRegex("[A-Za-z_0-9]+\\#[0-9]*"); - - while ( mPosition < mRegularExpressions.length()) { - - if(!std::regex_match(currentChars,keyRegex) && !std::regex_match(currentChars,cKeyRegex)) - { - currentChars.pop_back(); //the last char is the problems - break; - } - else if (std::regex_match(currentChars,cKeyRegex)){ - isCKey = true; - } - mPosition++; - if (mPosition < mRegularExpressions.length()) currentChars += mRegularExpressions[mPosition]; - - } - //we end the match 2 possibility - //we are at the end of the mConditionalExpressions and we need to ensure the match - //we are not we can continu - if (mPosition == mRegularExpressions.length()-1) - { - if (!std::regex_match(currentChars,keyRegex) && !std::regex_match(currentChars,cKeyRegex)) - { - throw badTokenError(currentChars,mPosition); - } - } - - - if (isCKey){ - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::CKEY,currentChars); - } else{ - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::KEY,currentChars); - } - } - - mPosition++; - } - - - //no more to find no one match the currentChars - if (currentChars.empty()) { - return std::make_shared<ParsingToken<gRegexTokenTypes>>(gRegexTokenTypes::STOP,""); // Null shared pointer ; - }else{ - throw badTokenError(currentChars,mPosition); - } - -} - -void GraphLexer::rstPosition(void){ - if (isEnd()){ - mPosition = 0; - }else{ - throw badTokenError("end rst",mPosition); - } -} - -bool GraphLexer::isEnd(void){ - return mPosition >= mRegularExpressions.length(); -} - - -const std::string GraphLexer::getQuery(){ - return mRegularExpressions; -} - -std::runtime_error GraphLexer::badTokenError(const std::string& currentChars, std::size_t position) { - return std::runtime_error(fmt::format( - "\nBad syntax {}:\n{}\n{:>{}}\n", - currentChars, - mRegularExpressions, - "^", - position + 1 - )); -} - -const std::string GraphLexer::rep(){ - std::string out = mRegularExpressions; - out += "\n"; - for (std::size_t i = 0; i < mPosition; i++) { - out += ' '; - } - out += "^\n"; - return out ; -} \ No newline at end of file diff --git a/src/graphRegex/GraphParser.cpp b/src/graphRegex/GraphParser.cpp deleted file mode 100644 index 382e22a56..000000000 --- a/src/graphRegex/GraphParser.cpp +++ /dev/null @@ -1,174 +0,0 @@ -#include <memory> -#include <string> -#include <vector> - -#include "aidge/graphRegex/GraphParser.hpp" - -Aidge::GraphParser::GraphParser(const std::string gRegexExpressions): -mLexer(gRegexExpressions) -{ - mCurrentToken = mLexer.getNextToken(); -} - -Aidge::GraphParser::~GraphParser() noexcept = default; - - -const std::string Aidge::GraphParser::getQuery(){ - return mLexer.getQuery(); -} - -std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::parse(void){ - - std::shared_ptr<AstNode<gRegexTokenTypes>> astTree = constructAstAllExpr(); - rstParser(); - return astTree; -} - - -void Aidge::GraphParser::rstParser(void){ - mLexer.rstPosition(); - mCurrentToken = mLexer.getNextToken(); -} - - -void Aidge::GraphParser::ackToken(gRegexTokenTypes tokenType){ - - if(mCurrentToken->getType() == tokenType ) { - try { - mCurrentToken = mLexer.getNextToken(); - } catch (const std::runtime_error& e) { - throw std::runtime_error(fmt::format("Graph Lexer error in Parser :\n{}\n", e.what())); - } - } else { - throw std::runtime_error(fmt::format("Bad syntax GraphParser {} != {}\n{}\n", static_cast<int>(mCurrentToken->getType()), static_cast<int>(tokenType), mLexer.rep())); - } -} - -/* -exp : KEY(QOM | QZM)? | CKEY | domain -*/ -std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::constructAstExp(void) -{ - - try{ - std::shared_ptr<ParsingToken<gRegexTokenTypes>> token = mCurrentToken->copy(); - std::shared_ptr<AstNode<gRegexTokenTypes>> node = std::make_shared<AstNode<gRegexTokenTypes>>(token); - - if (mCurrentToken->getType() == gRegexTokenTypes::KEY ){ - ackToken(gRegexTokenTypes::KEY ); - if (mCurrentToken->getType() == gRegexTokenTypes::QOM ){ - token = mCurrentToken->copy(); - ackToken(gRegexTokenTypes::QOM ); - std::shared_ptr<AstNode<gRegexTokenTypes>> newNode = std::make_shared<AstNode<gRegexTokenTypes>>(token, - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{node}); - return newNode; - }else if (mCurrentToken->getType() == gRegexTokenTypes::QZM ){ - token = mCurrentToken->copy(); - ackToken(gRegexTokenTypes::QZM ); - std::shared_ptr<AstNode<gRegexTokenTypes>> newNode = std::make_shared<AstNode<gRegexTokenTypes>>(token, - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{node}); - return newNode; - } - return node; - }else if (mCurrentToken->getType() == gRegexTokenTypes::CKEY){ - ackToken(gRegexTokenTypes::CKEY ); - return node; - }else{ - return constructAstDomain(); - } - - } catch (const std::runtime_error& e) { - throw std::runtime_error(fmt::format("GraphParser constructAstExp :\n{}\n", e.what())); - } -} - -/* -seq :exp (NEXT seq)* -*/ -std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::constructAstSeq(void) -{ - - try{ - - std::shared_ptr<AstNode<gRegexTokenTypes>> left = constructAstExp(); - if(mCurrentToken->getType() == gRegexTokenTypes::NEXT ) - { - std::shared_ptr<ParsingToken<gRegexTokenTypes>> token = mCurrentToken->copy(); - ackToken(gRegexTokenTypes::NEXT); - std::shared_ptr<AstNode<gRegexTokenTypes>> newNode = std::make_shared<AstNode<gRegexTokenTypes>>(token, - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{left,constructAstSeq()}); - left = newNode; - } - return left; - - } catch (const std::runtime_error& e) { - throw std::runtime_error(fmt::format("GraphParser constructAstSeq :\n{}\n", e.what())); - } - -} - - -/* -LPAREN seq RPAREN (QOM | QZM) -*/ -std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::constructAstDomain(void) -{ - - try{ - std::shared_ptr<ParsingToken<gRegexTokenTypes>> token ; - std::shared_ptr<AstNode<gRegexTokenTypes>> node ; - - token = mCurrentToken->copy(); - ackToken(gRegexTokenTypes::LPAREN); - node = std::make_shared<AstNode<gRegexTokenTypes>>(token, - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{constructAstSeq()}); - ackToken(gRegexTokenTypes::RPAREN); - //(QOM | QZM) - - token = mCurrentToken->copy(); - if (mCurrentToken->getType() == gRegexTokenTypes::QOM) { - ackToken(gRegexTokenTypes::QOM); - node = std::make_shared<AstNode<gRegexTokenTypes>>(token, - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{node}); - } else if (mCurrentToken->getType() == gRegexTokenTypes::QZM) { - ackToken(gRegexTokenTypes::QZM); - node = std::make_shared<AstNode<gRegexTokenTypes>>(token, - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{node}); - } else { - throw std::runtime_error("Bad syntax constructAstDomain must have quantifier \n"); - } - - return node; - - } catch (const std::runtime_error& e) { - throw std::runtime_error(fmt::format("GraphParser constructAstDomain:\n{}\n", e.what())); - } -} - -/* - allExpr: seq (SEP allExpr)* | STOP -*/ -std::shared_ptr<Aidge::AstNode<Aidge::gRegexTokenTypes>> Aidge::GraphParser::constructAstAllExpr(void) -{ - - try{ - std::shared_ptr<AstNode<gRegexTokenTypes>> left = constructAstSeq(); - if(mCurrentToken->getType() == gRegexTokenTypes::SEP ) - { - std::shared_ptr<ParsingToken<gRegexTokenTypes>> token = mCurrentToken->copy(); - ackToken(gRegexTokenTypes::SEP); - - if(mCurrentToken->getType() == gRegexTokenTypes::STOP ) - { - return left; - } - std::shared_ptr<AstNode<gRegexTokenTypes>> newNode = std::make_shared<AstNode<gRegexTokenTypes>>(token, - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>>{left,constructAstAllExpr()}); - left = newNode; - } - return left; - - } catch (const std::runtime_error& e) { - throw std::runtime_error(fmt::format("GraphParser constructAstDomain:\n{}\n", e.what())); - } -} diff --git a/src/graphRegex/GraphRegex.cpp b/src/graphRegex/GraphRegex.cpp deleted file mode 100644 index ca15ff8de..000000000 --- a/src/graphRegex/GraphRegex.cpp +++ /dev/null @@ -1,167 +0,0 @@ -#include "aidge/graphRegex/GraphRegex.hpp" -using namespace Aidge; - - -void GraphRegex::setKeyFromGraph(std::shared_ptr<GraphView> ref){ - - for (const NodePtr& node : ref->getNodes()) { - std::string type = node->type(); - bool isIn = false; - for(const auto &test:mAllTest){ - if(test->getKey() == type){ - isIn = true; - break; - } - } - if(!isIn){ - mAllTest.push_back(std::make_shared<ConditionalInterpreter>(type,"getType($) =='" + type + "'")); - } - // auto it = mAllTest.find(type); - // if (it == mAllTest.end()) { - // mAllTest[type] = std::make_shared<ConditionalInterpreter>(type,"getType($) =='" + type + "'"); - // } - // //if the key exist it's ok, but not make 2 ConditionalInterpreter - } -} - - - -// void GraphRegex::addQuery(const std::string query){ -// //TODO one query only but the same string is a same query but -// //2 different string it's maybe the same query , we need to check the AST -// mQueryRecipe[query] = nullptr; -// } - -void GraphRegex::addQuery(const std::string query,RecipesFunctionType f ){ - - mQueryRecipe[query] = f; - -} - - -// Function to generate all combinations of n elements from a set -void GraphRegex::_generateCombinationsStart(const std::set<NodePtr>& elements, std::size_t n, std::size_t index, std::vector<NodePtr>& current, std::set<std::vector<NodePtr>>& combinations) { - if (n == 0) { - combinations.insert(current); - return; - } - for (auto it = elements.begin(); it != elements.end(); ++it) { - current.push_back(*it); - _generateCombinationsStart(elements, n - 1, index + 1, current, combinations); - current.pop_back(); - } -} - -// factorial(n) tree searched optimized with a stopping condition -void GraphRegex::_findLargestCompatibleSet( - const std::vector<std::shared_ptr<MatchSolution>>& solutions, - std::set<std::shared_ptr<MatchSolution>>& currentSet, - std::set<std::shared_ptr<MatchSolution>>& largestSet, - size_t currentIndex -) { - if (currentIndex >= solutions.size()) { - if (currentSet.size() > largestSet.size()) { - largestSet = currentSet; - } - return; - } - - for (size_t i = currentIndex; i < solutions.size(); ++i) { - if (std::all_of(currentSet.begin(), currentSet.end(), - [&](const std::shared_ptr<MatchSolution>& solution) { - return solution->areCompatible(solutions[i]); - } - )) { - currentSet.insert(solutions[i]); - _findLargestCompatibleSet(solutions, currentSet, largestSet, i + 1); - currentSet.erase(solutions[i]); - // cut the size of the graph of possibilities - if ((currentSet.size() + solutions.size() - currentIndex) <= largestSet.size()) { - return; - } - } - } -} - -std::set<std::shared_ptr<MatchSolution>> GraphRegex::_findLargestCompatibleSet( - const std::vector<std::shared_ptr<MatchSolution>>& solutions -) { - std::set<std::shared_ptr<MatchSolution>> largestSet; - std::set<std::shared_ptr<MatchSolution>> currentSet; - _findLargestCompatibleSet(solutions, currentSet, largestSet, 0); - return largestSet; -} - - - -std::set<std::shared_ptr<MatchSolution>> GraphRegex::match(std::shared_ptr<GraphView> ref){ - - std::vector<std::shared_ptr<MatchSolution>> solutions = {}; - - //for (const std::string& query : mQuery) { - for (auto it = mQueryRecipe.begin(); it != mQueryRecipe.end(); ++it) { - const std::string query = it->first; - - std::shared_ptr<GraphFsmInterpreter> fsmGenerator = std::make_shared<GraphFsmInterpreter>(query,mAllTest); - std::shared_ptr<FsmGraph> fsm = fsmGenerator->interpret(); - - // generate all the start possibility - std::size_t nb_startSt = fsm->getNbStart(); - std::set<std::vector<NodePtr>> combinations; - std::vector<NodePtr> current; - _generateCombinationsStart(ref->getNodes(), nb_startSt, 0, current, combinations); - - - // all start - for (const auto& combination : combinations) { - std::vector<std::shared_ptr<MatchSolution>> solution = fsm->test(combination); - solutions.insert(solutions.end(), solution.begin(), solution.end()); - } - - - } - return _findLargestCompatibleSet(solutions); -} - -void GraphRegex::appliedRecipes(std::shared_ptr<GraphView> ref){ - std::set<std::shared_ptr<MatchSolution>> matchRef = match(ref); - for (const auto& solution : matchRef) { - if(mQueryRecipe[solution->getQuery()] != nullptr){ - mQueryRecipe[solution->getQuery()](solution); - } - } -} - -void GraphRegex::setNodeKey(const std::string key, const std::string conditionalExpressions ){ - mAllTest.push_back(std::make_shared<ConditionalInterpreter>(key,conditionalExpressions)); - _majConditionalInterpreterLambda(); -} - - -void GraphRegex::setNodeKey(const std::string key,std::function<bool(NodePtr)> f){ - //we can applied to all key but it's not efficient - if(mAllLambda.find(key) != mAllLambda.end()){ - throw std::runtime_error(key + " is define"); - } - mAllLambda[key] = f; - - _majConditionalInterpreterLambda(); - //we add the lambda as key by default - setNodeKey(key, key + "($)==true"); -} - -void GraphRegex::_majConditionalInterpreterLambda(){ - - for (const auto& test : mAllTest) { - for (const auto& pair : mAllLambda) { - const std::string& key = pair.first; - const std::function<bool(NodePtr)>& lambda = pair.second; - - if(!test->isLambdaRegister(key)){ - test->insertLambda(key,lambda); - } - - } - } -} - diff --git a/src/graphRegex/GraphStrInterpreter.cpp b/src/graphRegex/GraphStrInterpreter.cpp deleted file mode 100644 index 8ad24b5b9..000000000 --- a/src/graphRegex/GraphStrInterpreter.cpp +++ /dev/null @@ -1,38 +0,0 @@ -#include "aidge/graphRegex/GraphStrInterpreter.hpp" - -using namespace Aidge; - -GraphStrInterpreter::GraphStrInterpreter(const std::string graphMatchExpr):mParser(graphMatchExpr){ - mToTest = graphMatchExpr; - mToTest.erase(std::remove_if(mToTest.begin(), mToTest.end(), ::isspace), mToTest.end()); -} - - -std::string GraphStrInterpreter::visit(std::shared_ptr<AstNode<gRegexTokenTypes>> AstTree){ - - std::vector<std::shared_ptr<AstNode<gRegexTokenTypes>>> nextAstNodes = AstTree->getChilds(); - - if(AstTree->getType() == gRegexTokenTypes::SEP){ - return visit(nextAstNodes[0])+";"+visit(nextAstNodes[1]); - }else if(AstTree->getType() == gRegexTokenTypes::NEXT){ - return visit(nextAstNodes[0])+"->"+visit(nextAstNodes[1]); - }else if(AstTree->getType() == gRegexTokenTypes::QOM){ - return visit(nextAstNodes[0])+"+"; - }else if(AstTree->getType() == gRegexTokenTypes::QZM){ - return visit(nextAstNodes[0])+"*"; - }else if(AstTree->getType() == gRegexTokenTypes::KEY || AstTree->getType() == gRegexTokenTypes::CKEY){ - return AstTree->getValue(); - }else if(AstTree->getType() == gRegexTokenTypes::LPAREN){ - return "("+visit(nextAstNodes[0])+")"; - }else{ - throw std::logic_error("visit Bad token type" ); - } - - -} - - -std::string GraphStrInterpreter::interpret(void){ - std::shared_ptr<AstNode<gRegexTokenTypes>> tree = mParser.parse(); - return visit(tree); -} \ No newline at end of file diff --git a/src/graphRegex/matchFsm/FsmEdge.cpp b/src/graphRegex/matchFsm/FsmEdge.cpp deleted file mode 100644 index 78a741d27..000000000 --- a/src/graphRegex/matchFsm/FsmEdge.cpp +++ /dev/null @@ -1,319 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <cstddef> // std::size_t -#include <map> -#include <regex> -#include <string> - - -#include "aidge/graphRegex/matchFsm/FsmEdge.hpp" -#include "aidge/graphRegex/matchFsm/FsmNode.hpp" -#include "aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp" - -using namespace Aidge; - -std::map<std::string,int> FsmEdgeCommon::mCommonIdxMap; - -bool FsmEdge::isCommon(void){ - return false; -} - -size_t FsmEdge::getCommonIdx(void){ - return std::numeric_limits<std::size_t>::max(); -} -const std::map<size_t,int>& FsmEdge::getRelative(void){ - return mRelativePos; -} -void FsmEdge::updateRelative( const std::map<std::size_t,int>& relativePos ){ - for (const auto& kvp : relativePos) { - mRelativePos.insert(kvp); - } -} -std::shared_ptr<FsmNode> FsmEdge::getSourceNode(void){ - return mNodeSource; -} -void FsmEdge::reSetSourceNode(const std::shared_ptr<FsmNode>& newSource){ - mNodeSource->rmEdge(shared_from_this()); - mNodeSource = newSource; - mNodeSource->addEdge(shared_from_this()); - propagateRelativePos(); - -} -std::shared_ptr<FsmNode> FsmEdge::getDestNode(void){ - return mNodeDest; -} -void FsmEdge::reSetDestNode(const std::shared_ptr<FsmNode>& newDest){ - mNodeDest->rmParent(mNodeSource); - mNodeDest = newDest; - mNodeDest->addParent(mNodeSource); - propagateRelativePos(); -} -void FsmEdge::propagateRelativePos(void){ - - std::set<std::size_t> myRelativeID; - for (const auto& kvp : mRelativePos) { - myRelativeID.insert(kvp.first); - } - - for (const auto& nextWeakEdge : mNodeDest->getEdges()){ - - if (auto nextEdge = nextWeakEdge.lock()) { - - if(this == nextEdge.get()){ - continue; - } - - - std::set<std::size_t> nextRelativeID; - for (const auto& kvp : nextEdge->getRelative()) { - nextRelativeID.insert(kvp.first); - } - - // Find elements in myRelativeID but not in nextRelativeID - std::set<std::size_t> idxsToPush; - std::set_difference(myRelativeID.begin(), myRelativeID.end(), - nextRelativeID.begin(), nextRelativeID.end(), - std::inserter(idxsToPush, idxsToPush.begin())); - - // Find elements in nextRelativeID but not in myRelativeID - std::set<std::size_t> idxsToGet; - std::set_difference(nextRelativeID.begin(), nextRelativeID.end(), - myRelativeID.begin(), myRelativeID.end(), - std::inserter(idxsToGet, idxsToGet.begin())); - - // test for integrity we look if 2 edge refer to the same - // ref and are link the ref dif is one - // not working for common node - // we can go deeper by find the all pass to a ref and see if the delta is good - - // Find elements present in both myRelativeID and nextRelativeID - std::set<std::size_t> idxsTotest; - for (auto idx : nextRelativeID){ - if (myRelativeID.find(idx) != myRelativeID.end()){ - if (std::abs(getRelative().at(idx) - nextEdge->getRelative().at(idx)) != 1) { - throw std::runtime_error("Bad relative"); - } - } - } - - - - // this edge have more relative info than the next - std::map<size_t,int> tmpRelative; - // we push this info to the next - for(auto idxToPush :idxsToPush ){ - tmpRelative.insert( std::make_pair(idxToPush, getRelative().at(idxToPush) +1)); - } - if(tmpRelative.size() != 0){ - nextEdge->updateRelative(tmpRelative); - nextEdge->propagateRelativePos(); - } - tmpRelative.clear(); - - - // the next node have more info than me i need to get it - for(auto idxToGet :idxsToGet ){ - tmpRelative.insert( std::make_pair(idxToGet, nextEdge->getRelative().at(idxToGet) -1)); - } - if(tmpRelative.size() != 0){ - updateRelative(tmpRelative); - - for(auto weakParent : getSourceNode()->getParentNodes()){ - if (auto parent = weakParent.lock()) { - for(auto weakPEdge : parent->getEdges()){ - if (auto pEdge = weakPEdge.lock()) { - pEdge->propagateRelativePos(); - }else{ - throw std::runtime_error("propagateRelativePos parent edge weak pointer is expired" ); - } - } - }else{ - throw std::runtime_error("propagateRelativePos parent weak pointer is expired" ); - } - } - } - tmpRelative.clear(); - }else{ - throw std::runtime_error("propagateRelativePos edge weak pointer is expired" ); - } - } -} - -void FsmEdge::updateWeak(void){ - mNodeSource->addEdge(shared_from_this()); - mNodeDest->addParent(mNodeSource); -} - -FsmEdge::FsmEdge(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const std::shared_ptr<ConditionalInterpreter> toTest) -:mToTest(toTest) -{ - mNodeSource = source; - mNodeDest = dest; - // when i make the edge I init the nodes - // mNodeSource->addEdge(shared_from_this()); - // mNodeDest->addParent(mNodeSource); -} - - -/////surchage - -FsmEdgeUnique::FsmEdgeUnique(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const std::shared_ptr<ConditionalInterpreter> toTest) -:FsmEdge(source,dest,toTest) -{ -} -const EdgeTestResult FsmEdgeUnique::test(const std::shared_ptr<FsmRunTimeContext> stmContext){ - auto opNode = stmContext->getActNode(); - - if(opNode == nullptr){ - return {false,std::set<NodePtr>()};//none - } - - if(mToTest->test(opNode) && opNode->getChildren().size() <= 1){ - stmContext->setValid(opNode,mToTest); - return {true,opNode->getChildren()} ; - }else{ - stmContext->addRejectedNode(opNode); - return {false,std::set<NodePtr>()}; - } -} -///////////////////// -FsmEdgeCommon::FsmEdgeCommon(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const std::shared_ptr<ConditionalInterpreter> toTest, const std::string commonKey) -:FsmEdge(source,dest,toTest) -{ - //make a uid for common node - if(mCommonIdxMap.find(commonKey) == mCommonIdxMap.end()){ - mCommonIdxMap.insert(std::make_pair(commonKey, mCommonIdxMap.size())); - } - mCommonIdx = mCommonIdxMap[commonKey]; - propagateRelativePos(); -} - - -const EdgeTestResult FsmEdgeCommon::test(const std::shared_ptr<FsmRunTimeContext> stmContext){ - - auto opNode = stmContext->getActNode(); - - if(opNode == nullptr){ - return {false,std::set<NodePtr>()};//none - } - if(mToTest->test(opNode)){ - stmContext->setCommon(opNode,mCommonIdx); - stmContext->setValid(opNode,mToTest); - return {true,opNode->getChildren()} ; - }else{ - stmContext->addRejectedNode(opNode); - return {false,std::set<NodePtr>()}; - } -} -bool FsmEdgeCommon::isCommon(void){ - return true; - } -//////////////////// TODO FsmEdgeEmpty must be size_t -FsmEdgeRef::FsmEdgeRef(std::shared_ptr<FsmNode>& source,std::shared_ptr<FsmNode>& dest, const size_t refCommonIdx,const int deltaCommonIdx) -:FsmEdge(source,dest,nullptr),mRefCommonIdx(refCommonIdx),mdeltaCommonIdx(deltaCommonIdx) -{ - -} -const EdgeTestResult FsmEdgeRef::test(const std::shared_ptr<FsmRunTimeContext> stmContext){ - - NodePtr refNode = stmContext->getCommonNodeFromIdx(mRefCommonIdx); - if (refNode){ - std::set<std::shared_ptr<Node>> see; - return {true,refNode->getNodeDelta(mdeltaCommonIdx,see)}; - } - return {false,std::set<NodePtr>()}; -} -//////////////////// -FsmEdgeEmpty::FsmEdgeEmpty(std::shared_ptr<FsmNode> source,std::shared_ptr<FsmNode> dest) -:FsmEdge(source,dest,nullptr) -{} -const EdgeTestResult FsmEdgeEmpty::test(const std::shared_ptr<FsmRunTimeContext> stmContext){ - auto opNode = stmContext->getActNode(); - if(opNode == nullptr){ - return {false,std::set<NodePtr>()}; - } - return {true,std::set<NodePtr>({opNode})};//none -} -////////////// - -FsmEdgeNone::FsmEdgeNone(std::shared_ptr<FsmNode> source,std::shared_ptr<FsmNode> dest) -:FsmEdge(source,dest,nullptr) -{} - const EdgeTestResult FsmEdgeNone::test(const std::shared_ptr<FsmRunTimeContext> /*stmContext*/){ - return {false,std::set<NodePtr>()}; - } - -/// factory -std::shared_ptr<FsmEdge> FsmEdgeFactory::make( -std::shared_ptr<FsmNode> source, -std::shared_ptr<FsmNode> dest, FsmEdgeTypes type, -std::map<std::string, std::shared_ptr<ConditionalInterpreter>> allTest, -const std::string lexeme) -{ - if (type == FsmEdgeTypes::EMPTY) { - if (lexeme.empty()) { - return std::make_shared<FsmEdgeEmpty>(source, dest); - } else { - throw std::invalid_argument("error lexem EMPTY"); - } - } else if (type == FsmEdgeTypes::REF) { - std::smatch m; - std::regex refRegex("\\s*\\(\\s*(\\d+)\\s*,\\s*(-?\\d+)\\s*\\)\\s*"); - if (std::regex_match(lexeme, m, refRegex)) { - int refCommonIdx = std::stoi(m[1]); - int deltaCommonIdx = std::stoi(m[2]); - return std::make_shared<FsmEdgeRef>(source, dest, refCommonIdx, deltaCommonIdx); - } else { - throw std::invalid_argument("error lexem REF " + lexeme); - } - } else if (type == FsmEdgeTypes::COMMON) { - std::smatch m; - std::regex commonRegex("\\s*(\\w+)#(\\d*)"); - if (std::regex_match(lexeme, m, commonRegex)) { - std::string edgeType = m[1]; - std::string commonId = m[2]; - size_t commonIdx = commonId.empty() ? 0 : std::stoi(commonId) + 1; - std::string commonKey = edgeType + std::to_string(commonIdx); - - if(allTest.find(edgeType) == allTest.end()){ - //if the key is not linked to a condition - //by default, it is initialized by a edge that is always false - return std::make_shared<FsmEdgeNone>(source, dest); - //throw std::invalid_argument("Bad Node Test " + edgeType ); - } - - return std::make_shared<FsmEdgeCommon> (source, dest, allTest.at(edgeType), commonKey); - } else { - throw std::invalid_argument("error lexem COMMON " + lexeme); - } - } else if (type == FsmEdgeTypes::UNIQUE) { - std::regex uniqueRegex("\\s*(\\w+)"); - std::smatch m; - if (std::regex_match(lexeme, m, uniqueRegex)) { - std::string edgeType = m[1]; - - if(allTest.find(edgeType) == allTest.end()){ - - //if the key is not linked to a condition - //by default, it is initialized by a edge that is always false - return std::make_shared<FsmEdgeNone>(source, dest); - //throw std::invalid_argument("Bad Node Test " + edgeType ); - } - - return std::make_shared<FsmEdgeUnique>(source, dest, allTest.at(edgeType)); - } else { - throw std::invalid_argument("error lexem UNIQUE \"" + std::string(lexeme) +" eee\""); - } - } else { - throw std::invalid_argument("Bad edge Type"); - } - } \ No newline at end of file diff --git a/src/graphRegex/matchFsm/FsmGraph.cpp b/src/graphRegex/matchFsm/FsmGraph.cpp deleted file mode 100644 index 6bec61664..000000000 --- a/src/graphRegex/matchFsm/FsmGraph.cpp +++ /dev/null @@ -1,225 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include "aidge/graphRegex/matchFsm/FsmGraph.hpp" - -#include <memory> -#include <string> -#include <vector> - -#include <fmt/format.h> - -using namespace Aidge; - - - -FsmGraph::FsmGraph(const std::string query):mQuery(query){ - -} - -//TODO - std::vector<std::shared_ptr<MatchSolution>> FsmGraph::test(const std::vector<NodePtr>& startNodes){ - - std::vector<std::shared_ptr<Aidge::FsmNode>> startNodesFsm = getStartNodes(); - if(startNodes.size() != startNodesFsm.size()){ - throw std::runtime_error("bad number of Start nodes"); - } - - std::vector<std::shared_ptr<FsmRunTimeContext>> walks; - for(std::size_t i = 0; i < startNodes.size(); i++){ - walks.push_back(std::make_shared<FsmRunTimeContext>(startNodesFsm[i],startNodes[i])); - } - std::vector<std::shared_ptr<FsmRunTimeContext>> nextWalks; - - std::vector<std::shared_ptr<FsmRunTimeContext>> allValidContext; - std::vector<std::shared_ptr<FsmRunTimeContext>> allContextSee; - - - - - while (!walks.empty()) - { - for(auto fsmContext : walks){ - allContextSee.push_back(fsmContext); - //if we are in a valid st we save it - //it's one solution of the possible solution of the matching - if(fsmContext->isOnValidState()){ - //not save 2 time the same end point - if(!std::any_of(allValidContext.begin(), allValidContext.end(), - [&](std::shared_ptr<Aidge::FsmRunTimeContext> oldValid) { - return fsmContext->areEqual(oldValid); - })){ - allValidContext.push_back(fsmContext); - } - - } - - //don't test 2 time a fsmContext - std::vector<std::shared_ptr<FsmRunTimeContext>> tmpNextWalks = fsmContext->getActState()->test(fsmContext); - for(auto PotentialFsmContext : tmpNextWalks){ - - if(!std::any_of(allContextSee.begin(), allContextSee.end(), - [&](std::shared_ptr<Aidge::FsmRunTimeContext> oldSee) { - return PotentialFsmContext->areEqual(oldSee); - })){ - nextWalks.push_back(PotentialFsmContext); - } - } - - } - walks.swap(nextWalks); - nextWalks.clear(); - } - - MatchResult allMatch(allValidContext,getNbSubFsm(),mQuery,startNodes); - return allMatch.getSolutions(); - -} - - -/////////////// -// FSM construction -/////////////// -const std::set<std::shared_ptr<FsmEdge>>& FsmGraph::getEdge(void){ - return mEdges; -} - -void FsmGraph::addEdge(std::shared_ptr<FsmEdge>& edge){ - edge->updateWeak(); - mEdges.insert(edge); - mAllOrigin.insert(edge->getDestNode()->getOrigin()); - mAllOrigin.insert(edge->getSourceNode()->getOrigin()); -} - -const std::vector<std::shared_ptr<FsmNode>> FsmGraph::getStartNodes(void){ - std::set<std::shared_ptr<FsmNode>> nodes = getNodes(); - std::vector<std::shared_ptr<FsmNode>> startNodes; - for(auto node :nodes){ - if(node->isStart()){ - startNodes.push_back(node); - } - } - return startNodes; -} - -const std::set<std::shared_ptr<FsmNode>> FsmGraph::getValidNodes(void){ - std::set<std::shared_ptr<FsmNode>> nodes = getNodes(); - std::set<std::shared_ptr<FsmNode>> ValidNodes; - for(auto node :nodes){ - if(node->isValid()){ - ValidNodes.insert(node); - } - } - //may short - return ValidNodes; -} - -const std::set<std::shared_ptr<FsmNode>> FsmGraph::getNodes(void){ - std::set<std::shared_ptr<FsmNode>> nodes; - for(auto edge : mEdges){ - nodes.insert(edge->getDestNode()); - nodes.insert(edge->getSourceNode()); - } - return nodes; -} - -void FsmGraph::setGroupe(std::size_t groupeIdx){ - std::set<std::shared_ptr<FsmNode>> nodes = getNodes(); - for(auto node :nodes){ - node->setGroupe(groupeIdx); - } -} - -void FsmGraph::unionG(const std::shared_ptr<FsmGraph> fsmGraph){ - - for(auto edge : fsmGraph->getEdge()){ - addEdge(edge); - } -} - -void FsmGraph::mergeOneStartOneValid(const std::shared_ptr<FsmGraph> fsmGraph){ - std::set<std::shared_ptr<FsmNode>> validNodes = getValidNodes(); - std::vector<std::shared_ptr<FsmNode>> startNodes = fsmGraph->getStartNodes(); - - if (startNodes.size() != 1 || validNodes.size() != 1){ - throw std::runtime_error( - fmt::format("mergeOneStartOneValid start size: {} valid size: {} \ - can only merge FSM 1 start 1 valid", - startNodes.size(), - validNodes.size() - ) - ); - } - - unionG(fsmGraph); - //for loop useless but for future merge it's could be used - for(auto valid : validNodes){ - valid->invalid(); - for(auto start : startNodes){ - start->unStart(); - _mergeNode(start,valid); - } - } -} - -std::size_t FsmGraph::getNbSubFsm(void){ - return mAllOrigin.size(); -} - -std::size_t FsmGraph::getNbStart(void){ - return getStartNodes().size(); -} - -void FsmGraph::incOriginAllNodeBy(std::size_t incr){ - std::set<std::shared_ptr<FsmNode>> nodes = getNodes(); - for(auto node :nodes){ - node->incOrigin(incr); - } - std::set<std::size_t> updatedOrigin; - for(auto origin : mAllOrigin){ - updatedOrigin.insert(origin + incr); - } - mAllOrigin.swap(updatedOrigin); -} - -void FsmGraph::_mergeNode(std::shared_ptr<FsmNode> source,std::shared_ptr<FsmNode> dest){ - std::set<std::shared_ptr<FsmNode>> nodes = getNodes(); - - if(nodes.find(source) == nodes.end() || nodes.find(dest) == nodes.end()){ - throw std::runtime_error("FsmGraph can not merge node not in the graph"); - } - nodes.clear(); - - //probagate source attribute - if(source->isValid()){ - dest->valid(); - } - if(source->isStart()){ - dest->start(); - } - - //merge source to dest by replace source by dest in all EDGE - for(auto edge : mEdges){ - if(edge->getDestNode() == source ){ - edge->reSetDestNode(dest); - }else if(edge->getSourceNode() == source ){ - edge->reSetSourceNode(dest); - } - - } - //check is source is not in graph - nodes = getNodes(); - if(nodes.find(source) != nodes.end() ){ - throw std::runtime_error("FsmGraph merge node not effective"); - } - nodes.clear(); - -} diff --git a/src/graphRegex/matchFsm/FsmNode.cpp b/src/graphRegex/matchFsm/FsmNode.cpp deleted file mode 100644 index 6666d1a72..000000000 --- a/src/graphRegex/matchFsm/FsmNode.cpp +++ /dev/null @@ -1,132 +0,0 @@ -#include "aidge/graphRegex/matchFsm/FsmNode.hpp" -#include "aidge/graphRegex/matchFsm/FsmEdge.hpp" -#include "aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp" - -using namespace Aidge; - - - -FsmNode::FsmNode(bool isAValid,bool isAStart ){ - mIsAStart =isAStart; - mIsAValid =isAValid; - -} -const std::vector<std::shared_ptr<FsmRunTimeContext>> FsmNode::test( std::shared_ptr<FsmRunTimeContext> fsmContext){ - - - std::vector<std::shared_ptr<FsmRunTimeContext>> out; - - for(auto edge : mEdges){ - if (auto sharedEdge = edge.lock()) { - - std::shared_ptr<FsmNode> nextState = sharedEdge->getDestNode(); - - //make copy of the fsmContext - std::shared_ptr<FsmRunTimeContext> newFsmContext = std::make_shared<FsmRunTimeContext>(fsmContext); - - EdgeTestResult edgeRes = sharedEdge->test(newFsmContext); - - if(edgeRes.success){ - if(edgeRes.node.size() != 0){ - for(auto nextNode :edgeRes.node ){ - if(!newFsmContext->isAlreadyValid(nextNode)|| newFsmContext->isCommonDefined(nextNode) ){ - out.push_back( std::make_shared<FsmRunTimeContext>(newFsmContext,nextState,nextNode)); - - }else{ - out.push_back( std::make_shared<FsmRunTimeContext>(newFsmContext,nextState,nullptr)); - } - - } - }else{ - out.push_back( std::make_shared<FsmRunTimeContext>(newFsmContext,nextState,nullptr)); - } - } - newFsmContext.reset(); - - }else{ - throw std::runtime_error("test FsmNode weak pointer is expired" ); - } - - } - return out; -} - - - -std::size_t FsmNode::getOrigin(void){ - return mOriginFsm; -} -void FsmNode::incOrigin(std::size_t inc){ - mOriginFsm += inc; -} -void FsmNode::rmEdge(std::shared_ptr<FsmEdge> edge){ - mEdges.erase(edge); -} - -void FsmNode::addEdge(std::shared_ptr<FsmEdge> edge){ - std::weak_ptr<FsmEdge> edgeW(edge); - if (!edgeW.expired()) { - mEdges.insert(edgeW); - }else{ - throw std::runtime_error("addEdge FsmNode weak pointer is expired" ); - } -} - -// const std::set<std::shared_ptr<FsmNode>> FsmNode::getChildNodes(void){ -// std::set<std::shared_ptr<FsmNode>> children; -// for(auto edge : mEdges){ -// if (auto sharedEdge = edge.lock()) { -// children.insert(sharedEdge->getDestNode()); -// }else{ -// throw std::runtime_error("getChildNodes FsmNode weak pointer is expired" ); -// } -// } -// return children; -// } - - -const std::set<std::weak_ptr<FsmNode>,lex_compare<FsmNode>>& FsmNode::getParentNodes(void){ - return mParents; -} -const std::set<std::weak_ptr<FsmEdge>,lex_compare<FsmEdge>>& FsmNode::getEdges(void){ - return mEdges; -} - -void FsmNode::setGroupe(std::size_t groupeIdx){ - mGroupeFsm = groupeIdx; - -} - -bool FsmNode::isValid(void){ - return mIsAValid; -} -bool FsmNode::isStart(void){ - return mIsAStart; -} -void FsmNode::invalid(void){ - mIsAValid =false; -} -void FsmNode::valid(void){ - mIsAValid =true; -} -void FsmNode::unStart(void){ - mIsAStart =false; -} -void FsmNode::start(void){ - mIsAStart =true; -} - - - -void FsmNode::addParent(std::shared_ptr<FsmNode> node){ - - std::weak_ptr<FsmNode> nodeW(node); - if (!nodeW.expired()) { - mParents.insert(nodeW); - }else{ - throw std::runtime_error("addParent FsmNode weak pointer is expired" ); - } -} -void FsmNode::rmParent(std::shared_ptr<FsmNode> node){ - mParents.erase(node); -} \ No newline at end of file diff --git a/src/graphRegex/matchFsm/FsmRunTimeContext.cpp b/src/graphRegex/matchFsm/FsmRunTimeContext.cpp deleted file mode 100644 index 89e7faf20..000000000 --- a/src/graphRegex/matchFsm/FsmRunTimeContext.cpp +++ /dev/null @@ -1,217 +0,0 @@ -#include "aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp" -#include "aidge/graphRegex/matchFsm/FsmNode.hpp" - -using namespace Aidge; - -std::vector<std::set<NodePtr>> FsmRunTimeContext::mRejectedNodes; - -FsmRunTimeContext::FsmRunTimeContext(std::shared_ptr<FsmNode> actState ,NodePtr actOpNode ,std::size_t idxRejeced ){ - mActOpNode = actOpNode; - mActState = actState; - - //not define case - if(idxRejeced == std::numeric_limits<std::size_t>::max()){ - mLocalIdxRejeced = mRejectedNodes.size(); - mRejectedNodes.push_back(std::set<NodePtr>()); - }else{ - if(idxRejeced > mRejectedNodes.size()-1 ){ - throw std::runtime_error("FsmRunTimeContext idxRejeced"); - } - mLocalIdxRejeced =idxRejeced; - } -} - - - -FsmRunTimeContext::FsmRunTimeContext(std::shared_ptr<FsmRunTimeContext> fsmRunTime){ - mActOpNode = fsmRunTime->mActOpNode; - mActState = fsmRunTime->mActState; - mCommonNodes = fsmRunTime->mCommonNodes; - mValidNodes = fsmRunTime->mValidNodes; - mLocalIdxRejeced = fsmRunTime->mLocalIdxRejeced; -} -FsmRunTimeContext::FsmRunTimeContext(std::shared_ptr<FsmRunTimeContext> fsmRunTime,std::shared_ptr<FsmNode> actState ,NodePtr actOpNode ){ - mActOpNode = actOpNode; - mActState = actState; - mCommonNodes = fsmRunTime->mCommonNodes; - mValidNodes = fsmRunTime->mValidNodes; - mLocalIdxRejeced = fsmRunTime->mLocalIdxRejeced; -} - -void FsmRunTimeContext::addRejectedNode(NodePtr node){ - mRejectedNodes[mLocalIdxRejeced].insert(node); -} - -bool FsmRunTimeContext::isOnValidState(void){ - return mActState->isValid(); -} - -bool FsmRunTimeContext::isCommonDefined(NodePtr node){ - //return mCommonNodes.find(node) != mCommonNodes.end(); - - std::set<NodePtr> nodes = getCommonNodes(); - for(const auto& nodeC : nodes){ - if(nodeC.get() == node.get()){ - return true; - } - } - return false; -} - -bool FsmRunTimeContext::isAlreadyValid(NodePtr node){ - - std::set<NodePtr> nodes = getValidNodes(); - for(const auto& nodeV : nodes){ - if(nodeV.get() == node.get()){ - return true; - } - } - return false; - - //return getValidNodes().find(node) != getValidNodes().end(); -} - -bool FsmRunTimeContext::areCompatible(std::shared_ptr<FsmRunTimeContext> fsmContext){ - /* - see if 2 context can be merge - it need to have different mValidNodes except for common - and the same idx for the common - */ - - //common node - - for (const auto& ref : getCommon()) { - for (const auto& test : fsmContext->getCommon()) { - //same index - if(ref.second == test.second){ - if(ref.first != test.first){ - return false; - } - } - } - } - - //valid nodes - std::set<NodePtr> commonElements; - std::set<NodePtr> A = getValidNodesNoCommon(); - std::set<NodePtr> B = fsmContext->getValidNodesNoCommon(); - std::set_intersection( - A.begin(),A.end(), - B.begin(), B.end(), - std::inserter(commonElements, commonElements.end()) - ); - - return (commonElements.empty()) ? true : false; -} - -bool FsmRunTimeContext::areEqual(std::shared_ptr<FsmRunTimeContext> fsmContext){ - if(getActNode() != fsmContext->getActNode()){ - return false; - } - if (getActState() != fsmContext->getActState()){ - return false; - } - if (getValidNodes() != fsmContext->getValidNodes()){ - return false; - } - if (getCommon() != fsmContext->getCommon()){ - return false; - } - - - return true; -} - -void FsmRunTimeContext::setCommon(NodePtr node,std::size_t commonIdx){ - if(isCommonDefined(node)){ - if (mCommonNodes.at(node) != commonIdx){ - throw std::runtime_error("conflict idx in the Common node"); - } - }else{ - mCommonNodes[node] = commonIdx; - } -} - -void FsmRunTimeContext::setValid(NodePtr node,std::shared_ptr<ConditionalInterpreter> tag){ - //we already find a node of this type - if(mValidNodes.find(tag) != mValidNodes.end()){ - if(isAlreadyValid(node) && !isCommonDefined(node) ){ - throw std::runtime_error("setValid you valid tow time"); - } - mValidNodes[tag].insert(node); - }else{ - mValidNodes[tag] = {node}; - } - -} - -std::size_t FsmRunTimeContext::getSubStmId(void){ - return mActState->getOrigin(); -} - -NodePtr FsmRunTimeContext::getCommonNodeFromIdx(std::size_t commonIdx){ - for (const auto& pair : mCommonNodes) { - if (pair.second == commonIdx) { - return pair.first; // Return the key when the value is found - } - } - throw std::runtime_error("getCommonNodeFromIdx Value not found in the map"); -} - -std::size_t FsmRunTimeContext::getCommonNodeIdx(NodePtr node){ - if(isCommonDefined(node)){ - return mCommonNodes.at(node); - } - throw std::runtime_error("getCommonNodeIdx node not found"); -} - -std::set<NodePtr> FsmRunTimeContext::getCommonNodes(void){ - std::set<NodePtr> nodes; - // Iterate over the map and insert values into the set - for (const auto& pair : mCommonNodes) { - nodes.insert(pair.first); - } - return nodes; -} - -std::map<NodePtr,std::size_t> FsmRunTimeContext::getCommon(void){ - return mCommonNodes; -} - -std::set<NodePtr> FsmRunTimeContext::getValidNodes(void){ - - auto sharedSet = std::make_shared<std::set<NodePtr>>(); - // Create a set to store the values from the map - std::set<NodePtr> nodes; - // Iterate over the map and insert values into the set - for (const auto& pair : mValidNodes) { - nodes.insert(pair.second.begin(),pair.second.end()); - } - return nodes; -} - -std::set<NodePtr> FsmRunTimeContext::getValidNodesNoCommon(void){ - std::set<NodePtr> differenceSet; - std::set<NodePtr> valid = getValidNodes(); - std::set<NodePtr> common = getCommonNodes(); - std::set_difference(valid.begin(), valid.end(), common.begin(), common.end(),std::inserter(differenceSet, differenceSet.end())); - return differenceSet; -} - -std::map<std::shared_ptr<ConditionalInterpreter>,std::set<NodePtr>>& FsmRunTimeContext::getValid(void){ - return mValidNodes; -} - -NodePtr FsmRunTimeContext::getActNode(void){ - return mActOpNode; -} - -std::shared_ptr<FsmNode> FsmRunTimeContext::getActState(){ - return mActState; -} - - -void FsmRunTimeContext::rst(void){ - mRejectedNodes.clear(); -} - diff --git a/src/graphRegex/matchFsm/MatchResult.cpp b/src/graphRegex/matchFsm/MatchResult.cpp deleted file mode 100644 index 99df00e19..000000000 --- a/src/graphRegex/matchFsm/MatchResult.cpp +++ /dev/null @@ -1,135 +0,0 @@ -#include <algorithm> // set_intersection, std::sort -#include <memory> -#include <set> -#include <string> -#include <vector> - -#include "aidge/graphRegex/matchFsm/MatchResult.hpp" - -Aidge::MatchSolution::MatchSolution(std::vector<std::shared_ptr<FsmRunTimeContext>>& precedence,const std::string query,const std::vector<NodePtr> startNode):mQueryFrom(query),mStartNode(startNode){ - //reformat the solution - for (const auto& context : precedence) { - for (const auto& pair : context->getValid()) { - - if(mSolution.find(pair.first->getKey()) == mSolution.end()){ - mSolution[pair.first->getKey()] = pair.second; - }else{ - mSolution[pair.first->getKey()].insert(pair.second.begin(), pair.second.end()); - } - } - } -} - -const std::set<Aidge::NodePtr> Aidge::MatchSolution::getAll(){ - - // Create a unique set to store all the elements - std::set<NodePtr> uniqueSet; - - // Iterate through the map and insert elements from each set into the unique set - for (const auto& pair : mSolution) { - const std::set<NodePtr>& nodeSet = pair.second; - - // Insert elements from the current set into the unique set - uniqueSet.insert(nodeSet.begin(), nodeSet.end()); - } - - return uniqueSet; -} - -bool Aidge::MatchSolution::areCompatible(std::shared_ptr<Aidge::MatchSolution> solution){ - std::set<NodePtr> set1 = solution->getAll(); - std::set<NodePtr> set2 = getAll(); - std::set<NodePtr> intersection ; - std::set_intersection(set1.begin(), set1.end(), set2.begin(), set2.end(), std::inserter(intersection, intersection.begin())); - return intersection.empty(); -} - - -//////////////////////////////// -// -//////////////////////////////// -Aidge::MatchResult::MatchResult(std::vector<std::shared_ptr<Aidge::FsmRunTimeContext>> allValid, - std::size_t nbSubStm, - const std::string& query, - const std::vector<Aidge::NodePtr>& startNodes) - : mIdToRunTime(nbSubStm), - mNbSubStm(nbSubStm) -{ - mAllValid = allValid; - - //mIdToRunTimm - for (const auto& contextPtr : allValid) { - mIdToRunTime[contextPtr->getSubStmId()].push_back(contextPtr); - } - - std::vector<std::shared_ptr<FsmRunTimeContext>> precedence; - //make all solution possible - _generateCombination(0,precedence,query,startNodes); - //sort by solution number of elements - std::sort(mSolve.begin(), mSolve.end(), [](std::shared_ptr<MatchSolution>& set1, std::shared_ptr<MatchSolution>& set2) { - return set1->getAll().size() < set2->getAll().size(); - }); -} - -void Aidge::MatchResult::_generateCombination( std::size_t idxSubStm, - std::vector<std::shared_ptr<Aidge::FsmRunTimeContext>>& precedence, - const std::string& query, - const std::vector<Aidge::NodePtr>& startNodes) -{ - //it's end , we are below the number of stm - if (idxSubStm == mNbSubStm) - { - //precedence contain a list of FSM compatible, we just need to - //check if all the nodes have been validated by at least one context - - //1) make the set of all node for the compute graph that are valid in all the FsmRunTimeContext - std::set<NodePtr> validNode; - std::set<NodePtr> rejectNode; - for (const auto& contextPtr : precedence) { - std::set<NodePtr> tmpV = contextPtr->getValidNodes(); - validNode.insert(tmpV.begin(), tmpV.end()); - std::set<NodePtr> tmpR = contextPtr->getRejectedNodes(); - rejectNode.insert(tmpR.begin(),tmpR.end()); - } - // 2) all RejectedNodes need to be valid by an others stm - // if it's not the case the match is not valid - if(std::includes(validNode.begin(), validNode.end(), rejectNode.begin(), rejectNode.end())){ - //we can save the solution - mSolve.push_back(std::make_shared<MatchSolution>(precedence,query,startNodes)); - } - precedence.pop_back(); - return; - } - - - for (const auto& contextPtrOneFsm : mIdToRunTime[idxSubStm]) - { - if(idxSubStm == 0){ - precedence.push_back(contextPtrOneFsm); - _generateCombination(idxSubStm+1,precedence,query,startNodes); - - }else{ - //test if the new context is compatible with all the context in the precedence - // - bool compatibleSolutionFsm = true; - for (const auto& contextPtrOfOtherFsm : precedence) { - if(!(contextPtrOneFsm->areCompatible(contextPtrOfOtherFsm))){ - compatibleSolutionFsm = false; - break; - } - } - - if(compatibleSolutionFsm){ - precedence.push_back(contextPtrOneFsm); - _generateCombination(idxSubStm+1,precedence,query,startNodes); - } - - } - } - - if(idxSubStm != 0){ - precedence.pop_back(); - } - return; - -} \ No newline at end of file diff --git a/src/nodeTester/ConditionalInterpreter.cpp b/src/nodeTester/ConditionalInterpreter.cpp deleted file mode 100644 index 8144237c3..000000000 --- a/src/nodeTester/ConditionalInterpreter.cpp +++ /dev/null @@ -1,376 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include "aidge/nodeTester/ConditionalInterpreter.hpp" - -#include <memory> -#include <string> -#include <vector> - -#include <fmt/format.h> - -#include "aidge/graph/Node.hpp" - -using namespace Aidge; - - -/////////////////////////////// -//ConditionalRegisterFunction -/////////////////////////////// - - std::shared_ptr<ConditionalData> ConditionalRegisterFunction::run(const std::string key,std::vector< std::shared_ptr<ConditionalData>> & data){ - - auto lambdaIt = mWlambda.find(key); - if (lambdaIt != mWlambda.end()) { - return lambdaIt->second(data); - }else { - throw std::runtime_error("can not run Lambda due to invalid key: " + key); - } - } - - -////////////////////// -//ConditionalInterpreter -/////////////////////// - ConditionalInterpreter::ConditionalInterpreter(const std::string key,const std::string ConditionalExpressions) - :mLambdaRegister(),mKey(key) - { - - ConditionalParser conditionalParser = ConditionalParser(ConditionalExpressions); - mTree = conditionalParser.parse(); - - ///lambda by default - mLambdaRegister.insert("getType",+[](std::shared_ptr<Node> NodeOp){return NodeOp->type();}); - - } - - bool ConditionalInterpreter::isLambdaRegister(const std::string &key){ - return mLambdaRegister.isLambdaRegister(key); - } - - const std::string& ConditionalInterpreter::getKey(){ - return mKey; - } - - - bool ConditionalInterpreter::test( const std::shared_ptr<Node> nodeOp) - { - mResolution.clear(); - try{ - std::vector< std::shared_ptr<ConditionalData>> r = visit({mTree},nodeOp); - - if (mResolution.size() != 1){ - throw std::runtime_error("Multi output interpretation output"); - }else{ - if (!mResolution[0]->isTypeEqualTo<bool>()){ - throw std::runtime_error("TEST OUT MUST BE A BOOL "); - }else{ - return mResolution[0]->getValue<bool>(); - } - } - - } catch(const std::exception& e) { - throw std::runtime_error(fmt::format("Error in test\n\t{}\n", e.what())); - } - } - - void ConditionalInterpreter::insertLambda(const std::string key,std::function<bool(std::shared_ptr<Node>)> f){ - mLambdaRegister.insert<std::function<bool(std::shared_ptr<Node>)> >(key, f); - } - - ///// - std::vector< std::shared_ptr<ConditionalData>> ConditionalInterpreter::visit(const ASTNodeCh& nodes, const std::shared_ptr<Node> nodeOp ){ - std::vector< std::shared_ptr<ConditionalData>> dataVector; - - for ( std::shared_ptr<AstNode<ConditionalTokenTypes>> node : nodes) { - try{ - switch (node->getType()){ - /////////////////////////////////// - //OPERATOR - /////////////////////////////////// - case ConditionalTokenTypes::NOT: - { - visit(node->getChilds(),nodeOp); - fNot(); - } - break; - case ConditionalTokenTypes::AND: - { - visit(node->getChilds(),nodeOp); - fAnd(); - } - break; - case ConditionalTokenTypes::OR: - { - visit(node->getChilds(),nodeOp); - fOr(); - } - break; - case ConditionalTokenTypes::EQ: - { - visit(node->getChilds(),nodeOp); - fEq(); - //dataVector.insert(dataVector.end(), tmp.begin(), tmp.end()); - } - break; - case ConditionalTokenTypes::NEQ: - { - visit(node->getChilds(),nodeOp); - fNeq(); - } - break; - - /////////////////////////////////// - //VALUE - /////////////////////////////////// - - case ConditionalTokenTypes::KEY: - - break; - case ConditionalTokenTypes::INTEGER: - { - fStrToInteger(node); - } - break; - case ConditionalTokenTypes::FLOAT: - { - fStrToFloat(node); - - } - break; - case ConditionalTokenTypes::STRING: - { - fStrToStr(node); - } - break; - - case ConditionalTokenTypes::NODE: //TODO - { - - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - data->setValue<std::shared_ptr<Node>>(nodeOp); - mResolution.push_back(data); - - } - break; - - case ConditionalTokenTypes::LAMBDA: - { - visit(node->getChilds(),nodeOp); - fLambda(node); - - } - break; - - case ConditionalTokenTypes::BOOL: //TODO - { - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - - if(node->getValue() == "true"){ - data->setValue<bool>(true); - }else{ - data->setValue<bool>(false); - } - - mResolution.push_back(data); - - } - break; - - case ConditionalTokenTypes::ARGSEP: - case ConditionalTokenTypes::LPAREN: - case ConditionalTokenTypes::RPAREN: - case ConditionalTokenTypes::STOP: - default: - throw std::runtime_error("NODE TYPE NOT SUPPORTED IN ConditionalInterpreter"); - } - } catch(const std::exception& e) { - throw std::runtime_error(fmt::format("Error in visiting AST for node {}\n\t{}\n", nodeOp->name(), e.what())); - } - } - - return dataVector; - } - - - ////////////////////// - //value converter - ///////////////////// - - - void ConditionalInterpreter::fStrToInteger(const std::shared_ptr<AstNode<ConditionalTokenTypes>>& node) - { - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - - data->setValue<int>(std::stoi(node->getValue())); - mResolution.push_back(data); - } - - void ConditionalInterpreter::fStrToFloat(const std::shared_ptr<AstNode<ConditionalTokenTypes>>& node) - { - - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - data->setValue<float>(std::stof(node->getValue())); - mResolution.push_back(data); - } - - void ConditionalInterpreter::fStrToStr(const std::shared_ptr<AstNode<ConditionalTokenTypes>>& node) - { - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - data->setValue<std::string>(node->getValue()); - mResolution.push_back(data); - } - - void ConditionalInterpreter::fLambda(const std::shared_ptr<AstNode<ConditionalTokenTypes>>& node) - { - //if the lambda have input - std::shared_ptr<ConditionalData> data; - try { - data = mLambdaRegister.run(node->getValue(),mResolution); - } catch (const std::exception& e) { - throw std::runtime_error(fmt::format("Error in conditional interpretation when run the {} Lambda {}\n", node->getValue(), e.what())); - } - - //clearRes(); - mResolution.push_back(data); - } - - void ConditionalInterpreter::fEq(void) - { - if (mResolution.size() < 2){ - throw std::runtime_error("EQ need 2 arg and get :" + std::to_string(mResolution.size())); - } - auto a = mResolution.back(); - mResolution.pop_back(); - auto b = mResolution.back(); - mResolution.pop_back(); - - - if (a->getType() != b->getType()){ - throw std::runtime_error("EQ Unsupported between type :" + a->getType() +" "+ b->getType()); - } - - - - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - - if (a->isTypeEqualTo<int>()) { - data->setValue<bool>( a->getValue<int>() == b->getValue<int>()); - }else if (a->isTypeEqualTo<float>()){ - data->setValue<bool>( a->getValue<float>() == b->getValue<float>()); - }else if (a->isTypeEqualTo<std::string>()){ - data->setValue<bool>( a->getValue<std::string>() == b->getValue<std::string>()); - }else if (a->isTypeEqualTo<bool>()){ - data->setValue<bool>( a->getValue<bool>() == b->getValue<bool>()); - }else{ - throw std::runtime_error("EQ Unknown type encountered :" + a->getType() ); - } - - - mResolution.push_back(data); - } - - void ConditionalInterpreter::fNeq(void) - { - if (mResolution.size() < 2){ - throw std::runtime_error("NEQ need 2 arg and get :" + std::to_string(mResolution.size())); - } - auto a = mResolution.back(); - mResolution.pop_back(); - auto b = mResolution.back(); - mResolution.pop_back(); - - if (a->getType() != b->getType()){ - throw std::runtime_error("NEQ Unsupported between type :" + a->getType() +" "+ b->getType()); - } - - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - - if (a->isTypeEqualTo<int>()) { - data->setValue<bool>( a->getValue<int>() != b->getValue<int>()); - }else if (a->isTypeEqualTo<float>()){ - data->setValue<bool>( a->getValue<float>() != b->getValue<float>()); - }else if (a->isTypeEqualTo<std::string>()){ - data->setValue<bool>( a->getValue<std::string>() != b->getValue<std::string>()); - }else - { - throw std::runtime_error("NEQ Unknown type encountered :" + a->getType() ); - } - - - mResolution.push_back(data); - } - - void ConditionalInterpreter::fAnd(void) - { - if (mResolution.size() < 2){ - throw std::runtime_error("AND need 2 arg and get :" + std::to_string(mResolution.size())); - } - auto a = mResolution.back(); - mResolution.pop_back(); - auto b = mResolution.back(); - mResolution.pop_back(); - - - if (a->getType() != typeid(bool).name() || b->getType() != typeid(bool).name()){ - throw std::runtime_error("AND Unknown type encountered need bool get :" + a->getType() ); - } - - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - data->setValue<bool>( a->getValue<bool>() && b->getValue<bool>()); - - - - mResolution.push_back(data); - } - - void ConditionalInterpreter::fOr(void) - { - if (mResolution.size() < 2){ - throw std::runtime_error("OR need 2 arg and get :" + std::to_string(mResolution.size())); - } - auto a = mResolution.back(); - mResolution.pop_back(); - auto b = mResolution.back(); - mResolution.pop_back(); - - - if (a->getType() != typeid(bool).name() || b->getType() != typeid(bool).name()){ - throw std::runtime_error("OR Unknown type encountered need bool get :" + a->getType() ); - } - - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - data->setValue<bool>( a->getValue<bool>() || b->getValue<bool>()); - - - - mResolution.push_back(data); - } - - void ConditionalInterpreter::fNot() - { - if (mResolution.size() < 1){ - throw std::runtime_error("NOT need 1 arg and get :" + std::to_string(mResolution.size())); - } - auto a = mResolution.back(); - mResolution.pop_back(); - - if (a->getType() != typeid(bool).name()){ - throw std::runtime_error("NOT Unknown type encountered need bool get :" + a->getType() ); - } - - std::shared_ptr<ConditionalData> data = std::make_shared<ConditionalData>(); - data->setValue<bool>( !a->getValue<bool>() ); - - - mResolution.push_back(data); - - } diff --git a/src/nodeTester/ConditionalLexer.cpp b/src/nodeTester/ConditionalLexer.cpp deleted file mode 100644 index a44ca2bd9..000000000 --- a/src/nodeTester/ConditionalLexer.cpp +++ /dev/null @@ -1,256 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include "aidge/nodeTester/ConditionalLexer.hpp" - -#include <memory> -#include <regex> -#include <string> - -using namespace Aidge; - -////////////////// -//ConditionalLexer -////////////////// - - -ConditionalLexer::ConditionalLexer( const std::string ConditionalExpressions): -mConditionalExpressions(ConditionalExpressions) -{ - mPosition = 0; -} - -std::shared_ptr<ParsingToken<ConditionalTokenTypes>> ConditionalLexer::getNextToken(void){ - std::string currentChars = ""; - - while (mPosition < mConditionalExpressions.length()) - { - //erase all space - if (mConditionalExpressions[mPosition] != ' ') - { - currentChars += mConditionalExpressions[mPosition]; - } - else - { - mPosition++; - continue; - } - //perform tokenisation, find a regex and make a new token - - if (std::regex_match(currentChars,std::regex("\\&\\&")))// the AND TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::AND,""); - } - else if (std::regex_match(currentChars,std::regex("\\|\\|")))// the OR TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::OR,""); - } - else if (std::regex_match(currentChars,std::regex("\\!")))// the Not and not equ - { - mPosition++; - if ( mPosition < mConditionalExpressions.length()){ - currentChars += mConditionalExpressions[mPosition]; - if(std::regex_match(currentChars,std::regex("!="))){ - mPosition++; - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::NEQ,""); - }else{ - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::NOT,""); - } - } - //a not at the end not ok but it's the parseur work - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::NOT,""); - } - else if (std::regex_match(currentChars,std::regex("==")))// the EQ TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::EQ,""); - } - else if (std::regex_match(currentChars,std::regex("\\(")))// the LPAREN TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::LPAREN,""); - } - else if (std::regex_match(currentChars,std::regex("\\)")))// the RPAREN TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::RPAREN,""); - } - else if (std::regex_match(currentChars,std::regex(",")))// the RPAREN TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::ARGSEP,""); - } - else if (std::regex_match(currentChars,std::regex("\\$")))// the ACTNode TOKEN - { - mPosition++; - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::NODE,""); - } - - - ///// - //non const lent token - ///// - - //LAMBDA, KEY , bool //the function TAG - else if (std::regex_match(currentChars,std::regex("[A-Za-z_]")))// the KEY TOKEN (a char next ) - { - //read all the key - bool isLambda = false; - std::regex keyRegex("[A-Za-z_0-9]+"); - std::regex LambdaRegex("[A-Za-z_0-9]+\\("); - - while ( mPosition < mConditionalExpressions.length()) { - if(!std::regex_match(currentChars,keyRegex) && !std::regex_match(currentChars,LambdaRegex)) - { - currentChars.pop_back(); //the last char is the problems - break; - } - else if (std::regex_match(currentChars,LambdaRegex)){ - isLambda = true; - } - mPosition++; - if (mPosition < mConditionalExpressions.length()) currentChars += mConditionalExpressions[mPosition]; - //currentChars += mConditionalExpressions[mPosition]; - } - //we end the match 2 possibility - //we are at the end of the mConditionalExpressions and we need to ensure the match - //we are not we can continu - if (mPosition == mConditionalExpressions.length()-1) - { - if (!std::regex_match(currentChars,keyRegex) && !std::regex_match(currentChars,LambdaRegex)) - { - throw badTokenError(currentChars,mPosition); - } - //mPosition++; // we stop all by going pos > length - } - - - if (std::regex_match(currentChars,std::regex("(true|false|True|False)"))){ - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::BOOL,currentChars); - - } else if (isLambda){ - currentChars.pop_back();//pop the ( of the lambda - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::LAMBDA,currentChars); - } else{ - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::KEY,currentChars); - } - - } - //numeric value - else if (std::regex_match(currentChars,std::regex("[0-9]")))// the KEY TOKEN (a char next ) - { - //read all the key - bool isFloat = false; - std::regex integerRegex("[0-9]+$"); - std::regex floatRegex("[0-9]+\\.[0-9]*$"); - - while ( mPosition < mConditionalExpressions.length()) { - - if(!std::regex_match(currentChars,integerRegex) && !std::regex_match(currentChars,floatRegex)) - { - currentChars.pop_back(); // the last char match is not a good one - break; - } - else if (std::regex_match(currentChars,floatRegex)){ - isFloat = true; - } - mPosition++; - if (mPosition < mConditionalExpressions.length()) currentChars += mConditionalExpressions[mPosition]; - //currentChars += mConditionalExpressions[mPosition]; - } - //we end the match 2 possibility - //we are at the end of the mConditionalExpressions and we need to ensure the match - //we are not we can continu - if (mPosition == mConditionalExpressions.length()-1) - { - if (!std::regex_match(currentChars,integerRegex) && !std::regex_match(currentChars,floatRegex)) - { - throw badTokenError(currentChars,mPosition); - } - } - - if(isFloat){ - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::FLOAT,currentChars); - }else{ - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::INTEGER,currentChars); - } - - } - //string TODO - else if (std::regex_match(currentChars,std::regex("\'"))) // TODO ' or \' - { - std::regex strRegex("\'[A-Za-z_0-9\\s]*\'$"); - while ( mPosition < mConditionalExpressions.length()) { - if(std::regex_match(currentChars,strRegex)){ - break; - } - mPosition++; - if (mPosition < mConditionalExpressions.length()) currentChars += mConditionalExpressions[mPosition]; - //currentChars += mConditionalExpressions[mPosition]; - } - - //test the end condition - if (mPosition == mConditionalExpressions.length()-1 ){ - if (!std::regex_match(currentChars,strRegex)){ - throw badTokenError(currentChars,mPosition); - } - //mPosition++; // we stop all by going pos > length - } - - mPosition++; // go after the last " - //erase the " char - currentChars.pop_back(); - currentChars.erase(0,1); - - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::STRING,currentChars); - - } - - //Array TODO - - mPosition++; - } - - //no more to find no one match the currentChars - if (currentChars.empty()) { - return std::make_shared<ParsingToken<ConditionalTokenTypes>>(ConditionalTokenTypes::STOP,""); // Null shared pointer ; - } else { - //std::ostringstream errorMessage; - //errorMessage << "\nBad syntax " << currentChars << " :\n" << mConditionalExpressions; - throw badTokenError(currentChars,mPosition); - } - -} - -void ConditionalLexer::rstPosition(void){ - if (isEnd()){ - mPosition = 0; - }else{ - throw badTokenError("end rst",mPosition); - } - -} - -bool ConditionalLexer::isEnd(void){ - return mPosition >= mConditionalExpressions.length(); -} - -std::runtime_error ConditionalLexer::badTokenError(const std::string& currentChars, std::size_t position) { - return std::runtime_error(fmt::format( - "\nBad syntax {}:\n{}\n{:>{}}\n", - currentChars, - mConditionalExpressions, - "^", - position + 1 - )); -} \ No newline at end of file diff --git a/src/nodeTester/ConditionalParser.cpp b/src/nodeTester/ConditionalParser.cpp deleted file mode 100644 index cd7877a13..000000000 --- a/src/nodeTester/ConditionalParser.cpp +++ /dev/null @@ -1,204 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include "aidge/nodeTester/ConditionalParser.hpp" - -#include <memory> -#include <stdexcept> -#include <vector> - -#include <fmt/format.h> - -////////////////////////////// -//ConditionalParser -////////////////////////////// - -Aidge::ConditionalParser::ConditionalParser(const std::string ConditionalExpressions) - : mLexer(ConditionalExpressions) -{ - mCurrentToken = mLexer.getNextToken(); -} - -Aidge::ConditionalParser::~ConditionalParser() noexcept = default; - -void Aidge::ConditionalParser::rstParser(void) { - mLexer.rstPosition(); - mCurrentToken = mLexer.getNextToken(); -} - -void Aidge::ConditionalParser::ackToken(ConditionalTokenTypes tokenType) { - if(mCurrentToken->getType() == tokenType ){ - try { - mCurrentToken = mLexer.getNextToken(); - } catch (const std::runtime_error& e) { - throw std::runtime_error(fmt::format("Conditional Lexer error in Parser :\n{}\n", e.what())); - } - } else { - throw std::runtime_error( - fmt::format("Bad syntax ConditionalParser {} != {}\n", - static_cast<int>(mCurrentToken->getType()), - static_cast<int>(tokenType), - mLexer.rep() - ) - ); - } -} - - - -std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::ConditionalParser::constructAstVal(void) { - /* - val : (KEY|INTEGER|FOAT|STRING|LAMBDA) - */ - std::shared_ptr<ParsingToken<ConditionalTokenTypes>> token = mCurrentToken->copy(); - - if (token->getType() == ConditionalTokenTypes::KEY){ - ackToken(ConditionalTokenTypes::KEY); - return std::make_shared<AstNode<ConditionalTokenTypes>>(token); - } - else if(token->getType() == ConditionalTokenTypes::INTEGER){ - ackToken(ConditionalTokenTypes::INTEGER); - return std::make_shared<AstNode<ConditionalTokenTypes>>(token); - } - else if(token->getType() == ConditionalTokenTypes::FLOAT){ - ackToken(ConditionalTokenTypes::FLOAT); - return std::make_shared<AstNode<ConditionalTokenTypes>>(token); - } - else if(token->getType() == ConditionalTokenTypes::BOOL){ - ackToken(ConditionalTokenTypes::BOOL); - return std::make_shared<AstNode<ConditionalTokenTypes>>(token); - } - else if(token->getType() == ConditionalTokenTypes::STRING){ - ackToken(ConditionalTokenTypes::STRING); - return std::make_shared<AstNode<ConditionalTokenTypes>>(token); - - }else if(token->getType() == ConditionalTokenTypes::NODE){ - ackToken(ConditionalTokenTypes::NODE); - return std::make_shared<AstNode<ConditionalTokenTypes>>(token); - - }else if(token->getType() == ConditionalTokenTypes::LAMBDA){ - return constructAstLambda(); - } - - throw std::runtime_error(fmt::format("ConditionalParser unknown val type {}\n{}"+ token->rep(), mLexer.rep())); - -} - -std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::ConditionalParser::constructAstLambda(void){ - /* - AstLambda : LAMBDA val (ARGSEP val)* RPAREN - */ - std::shared_ptr<ParsingToken<ConditionalTokenTypes>> tokenLdb = mCurrentToken->copy(); - ackToken(ConditionalTokenTypes::LAMBDA); - ASTNodeCh paramLambda; - //AT LEAST ONE VALUE AS INPUT OF A LAMBDA - paramLambda.push_back(constructAstVal()); - while (mCurrentToken->getType() != ConditionalTokenTypes::RPAREN) - { - ackToken(ConditionalTokenTypes::ARGSEP); - paramLambda.push_back(constructAstVal()); - } - ackToken(ConditionalTokenTypes::RPAREN); - return std::make_shared<AstNode<ConditionalTokenTypes>>(tokenLdb,paramLambda); -} - -std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::ConditionalParser::constructAstCmpr(void){ - /* - cmpr : val (EQ|NEQ) val | LPAREN expr RPAREN - NOT ir ? - */ - std::shared_ptr<ParsingToken<ConditionalTokenTypes>> token = mCurrentToken->copy(); - //we can check the type relation ir key (EQ|NEQ) val | val (EQ|NEQ) key , but val (EQ|NEQ) val is valid ? - if (token->getType() == ConditionalTokenTypes::LPAREN) - { - ackToken(ConditionalTokenTypes::LPAREN); - std::shared_ptr<AstNode<ConditionalTokenTypes>> node = constructAstExpr(); - ackToken(ConditionalTokenTypes::RPAREN); - return node; - }else{ - - std::shared_ptr<AstNode<ConditionalTokenTypes>> node = constructAstVal(); - token = mCurrentToken->copy(); - if (token->getType() == ConditionalTokenTypes::EQ){ - ackToken(ConditionalTokenTypes::EQ); - return std::make_shared<AstNode<ConditionalTokenTypes>>(token,ASTNodeCh{node,constructAstVal()}); - }else if(token->getType() == ConditionalTokenTypes::NEQ){ - ackToken(ConditionalTokenTypes::NEQ); - return std::make_shared<AstNode<ConditionalTokenTypes>>(token,ASTNodeCh{node,constructAstVal()}); - }else{ - - throw std::runtime_error(fmt::format("constructAstCmpr {}\n{}", token->rep(), mLexer.rep())); - } - - } -} - -std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::ConditionalParser::constructAstExpr(std::size_t precLimit /*= 0*/){ - /* - expr : cmpr ((AND | OR) cmpr)* - the NOT is not binary OP can be use in pratt - precedence H to L: TODO - AND - OR - */ - - //the not - std::shared_ptr<AstNode<ConditionalTokenTypes>> left; - std::shared_ptr<ParsingToken<ConditionalTokenTypes>> token = mCurrentToken->copy(); - - if (mCurrentToken->getType() == ConditionalTokenTypes::NOT ){ - ackToken(ConditionalTokenTypes::NOT ); - left= std::make_shared<AstNode<ConditionalTokenTypes>>(token,ASTNodeCh{constructAstCmpr()}); - }else{ - left= constructAstCmpr(); - } - - //pratt - while (mCurrentToken->getType() != ConditionalTokenTypes::STOP ) //security - { - token = mCurrentToken->copy(); - //if the token is not in the map is not a operator so we consider a prec of 0 - if (ConditionalPrec.find(token->getType()) ==ConditionalPrec.end() ){ - return left; - } - - //if my actual operator have a prec <= of the last operator - std::size_t prec = ConditionalPrec.at(token->getType()); - if (prec <= precLimit){ - return left; - } - - //Act all AND and OR - ackToken(token->getType()); - - std::shared_ptr<AstNode<ConditionalTokenTypes>> right = constructAstExpr(prec); - - //i'm not sure what append to newNode - //std::shared_ptr<AstNode<ConditionalTokenTypes>> newNode = std::make_shared<AstNode<ConditionalTokenTypes>>(token,ASTNodeCh{left,constructAstCmpr()}); - std::shared_ptr<AstNode<ConditionalTokenTypes>> newNode = std::make_shared<AstNode<ConditionalTokenTypes>>(token,ASTNodeCh{left,right}); - left = newNode; - } - return left; -} - - -std::shared_ptr<Aidge::AstNode<Aidge::ConditionalTokenTypes>> Aidge::ConditionalParser::parse(void){ - /* - expr : cmpr ((AND | OR) cmpr)* - cmpr : val (EQ|NEQ) val | LPAREN expr RPAREN | BOOL | LAMBDA - val : (KEY|INTEGER|FOAT|STRING|LAMBDA) - lambda : LAMBDA val (ARGSEP val)* RPAREN - */ - std::shared_ptr<AstNode<ConditionalTokenTypes>> astTree = constructAstExpr(); - - rstParser(); - return astTree; -} \ No newline at end of file diff --git a/src/recipes/RemoveFlatten.cpp b/src/recipes/RemoveFlatten.cpp index bf80ab517..5a04746e1 100644 --- a/src/recipes/RemoveFlatten.cpp +++ b/src/recipes/RemoveFlatten.cpp @@ -14,13 +14,8 @@ #include "aidge/graph/Node.hpp" #include "aidge/graph/GraphView.hpp" #include "aidge/recipes/Recipes.hpp" - - -//Graph Regex -// #include "aidge/graphRegex/GraphRegex.hpp" #include "aidge/graph/Matching.hpp" - namespace Aidge { void removeFlatten(std::shared_ptr<GraphView> graphView){ const auto matches = SinglePassGraphMatching(graphView).match( diff --git a/src/recipes/removeConstantOfShape.cpp b/src/recipes/removeConstantOfShape.cpp index 5e84f7b49..e743050c2 100644 --- a/src/recipes/removeConstantOfShape.cpp +++ b/src/recipes/removeConstantOfShape.cpp @@ -34,9 +34,6 @@ #include "aidge/utils/ErrorHandling.hpp" #include "aidge/utils/Types.h" -// Graph Regex -#include "aidge/graphRegex/GraphRegex.hpp" - namespace Aidge { size_t removeConstantOfShape(std::shared_ptr<GraphView> graph_view) { diff --git a/unit_tests/CMakeLists.txt b/unit_tests/CMakeLists.txt index f8e809747..8c9a6ad8d 100644 --- a/unit_tests/CMakeLists.txt +++ b/unit_tests/CMakeLists.txt @@ -17,8 +17,6 @@ endif() file(GLOB_RECURSE src_files "*.cpp") -#file(GLOB_RECURSE src_files "graphRegex/Test_GraphRegex.cpp") - add_executable(tests${module_name} ${src_files}) target_compile_features(tests${module_name} PRIVATE cxx_std_14) diff --git a/unit_tests/graphRegex/Test_Fsm.cpp b/unit_tests/graphRegex/Test_Fsm.cpp deleted file mode 100644 index c011a5045..000000000 --- a/unit_tests/graphRegex/Test_Fsm.cpp +++ /dev/null @@ -1,195 +0,0 @@ -#include <memory> - -#include <catch2/catch_test_macros.hpp> - -#include "aidge/nodeTester/ConditionalInterpreter.hpp" - -#include "aidge/graphRegex/matchFsm/FsmNode.hpp" -#include "aidge/graphRegex/matchFsm/FsmEdge.hpp" -#include "aidge/graphRegex/matchFsm/FsmGraph.hpp" -#include "aidge/graphRegex/matchFsm/FsmRunTimeContext.hpp" - -using namespace Aidge; - -TEST_CASE("matchFSM", "FsmEdge") { - - - std::shared_ptr<FsmNode> nodeA = std::make_shared<FsmNode>(true,false); - std::shared_ptr<FsmNode> nodeB = std::make_shared<FsmNode>(false,true); - std::shared_ptr<ConditionalInterpreter> toTest = std::make_shared<ConditionalInterpreter>("A","true==true"); - FsmEdgeUnique EdgeToTest(nodeA,nodeB,toTest); - - SECTION("FsmEdgeUnique constructor") { - REQUIRE(EdgeToTest.getSourceNode() == nodeA); - REQUIRE(EdgeToTest.getDestNode() == nodeB); - REQUIRE(EdgeToTest.isCommon() == false); - } - - SECTION("FsmEdgeCommon constructor") { - std::shared_ptr<FsmNode> nodeA = std::make_shared<FsmNode>(true,false); - std::shared_ptr<FsmNode> nodeB = std::make_shared<FsmNode>(false,true); - std::shared_ptr<ConditionalInterpreter> toTest = std::make_shared<ConditionalInterpreter>("A","true==true"); - - FsmEdgeCommon EdgeToTest(nodeA,nodeB,toTest,"A"); - - REQUIRE(EdgeToTest.getSourceNode() == nodeA); - REQUIRE(EdgeToTest.getDestNode() == nodeB); - REQUIRE(EdgeToTest.isCommon() == true); - } - - SECTION("FsmEdgeRef constructor") { - std::shared_ptr<FsmNode> nodeA = std::make_shared<FsmNode>(true,false); - std::shared_ptr<FsmNode> nodeB = std::make_shared<FsmNode>(false,true); - std::shared_ptr<ConditionalInterpreter> toTest = std::make_shared<ConditionalInterpreter>("A","true==true"); - - FsmEdgeRef EdgeToTest(nodeA,nodeB,0,-1); - - REQUIRE(EdgeToTest.getSourceNode() == nodeA); - REQUIRE(EdgeToTest.getDestNode() == nodeB); - REQUIRE(EdgeToTest.isCommon() == false); - } - - SECTION("FsmEdgeEmpty constructor") { - std::shared_ptr<FsmNode> nodeA = std::make_shared<FsmNode>(true,false); - std::shared_ptr<FsmNode> nodeB = std::make_shared<FsmNode>(false,true); - std::shared_ptr<ConditionalInterpreter> toTest = std::make_shared<ConditionalInterpreter>("A","true==true"); - - FsmEdgeEmpty EdgeToTest(nodeA,nodeB); - - REQUIRE(EdgeToTest.getSourceNode() == nodeA); - REQUIRE(EdgeToTest.getDestNode() == nodeB); - REQUIRE(EdgeToTest.isCommon() == false); - } - - - SECTION("FsmEdgeFactory"){ - - std::map<std::string, std::shared_ptr<ConditionalInterpreter>> allTest = { - {"A",std::make_shared<ConditionalInterpreter>("A","true==true")}, - {"B",std::make_shared<ConditionalInterpreter>("B","true==true")}, - {"C",std::make_shared<ConditionalInterpreter>("C","true==true")} - }; - -// make(std::shared_ptr<FsmNode> source, std::shared_ptr<FsmNode> dest, -// FsmEdgeTypes type,std::map<std::string, const std::shared_ptr<ConditionalInterpreter>> allTest, -// const std::string& lexeme = ""); - - std::shared_ptr<FsmNode> nodeA = std::make_shared<FsmNode>(false,true); - std::shared_ptr<FsmNode> nodeB = std::make_shared<FsmNode>(true,false); -// EMPTY = 0, -// REF, -// COMMON, -// UNIQUE - - std::shared_ptr<FsmEdge> edgeE = FsmEdgeFactory::make(nodeA,nodeB,FsmEdgeTypes::EMPTY,allTest,""); - std::shared_ptr<FsmEdge> edgeU = FsmEdgeFactory::make(nodeA,nodeB,FsmEdgeTypes::UNIQUE,allTest,"A"); - std::shared_ptr<FsmEdge> edgeC = FsmEdgeFactory::make(nodeA,nodeB,FsmEdgeTypes::COMMON,allTest,"A#"); - std::shared_ptr<FsmEdge> edgeR = FsmEdgeFactory::make(nodeA,nodeB,FsmEdgeTypes::REF,allTest,"(0,1)"); - - //test detection of bad syntax lexem - REQUIRE_THROWS(FsmEdgeFactory::make(nodeA,nodeB,FsmEdgeTypes::EMPTY,allTest,"A")); - REQUIRE_THROWS(FsmEdgeFactory::make(nodeA,nodeB,FsmEdgeTypes::UNIQUE,allTest,"A#")); - REQUIRE_THROWS(FsmEdgeFactory::make(nodeA,nodeB,FsmEdgeTypes::COMMON,allTest,"A")); - REQUIRE_THROWS(FsmEdgeFactory::make(nodeA,nodeB,FsmEdgeTypes::REF,allTest,"A")); - - REQUIRE(edgeE->getSourceNode() == nodeA); - REQUIRE(edgeE->getDestNode() == nodeB); - } - - SECTION("graph constructor") { - //make the nodes - std::shared_ptr<FsmNode> nodeA = std::make_shared<FsmNode>(true,false); - std::shared_ptr<FsmNode> nodeB = std::make_shared<FsmNode>(false,false); - std::shared_ptr<FsmNode> nodeC = std::make_shared<FsmNode>(false,true); - - //make the edges - std::shared_ptr<ConditionalInterpreter> toTest = std::make_shared<ConditionalInterpreter>("A","true==true"); - std::shared_ptr<FsmEdge> edgeAB = std::make_shared<FsmEdgeUnique>(nodeA,nodeB,toTest); - std::shared_ptr<FsmEdge> edgeBC = std::make_shared<FsmEdgeUnique>(nodeB,nodeC,toTest); - - std::shared_ptr<FsmGraph> graph = std::make_shared<FsmGraph>(""); - - graph->addEdge(edgeAB); - graph->addEdge(edgeBC); - - - REQUIRE(graph->getValidNodes() == std::set<std::shared_ptr<FsmNode>>{nodeA}); - REQUIRE(graph->getStartNodes() == std::vector<std::shared_ptr<FsmNode>>{nodeC}); - } - - - SECTION("graph merge") { - - std::shared_ptr<ConditionalInterpreter> toTest = std::make_shared<ConditionalInterpreter>("A","true==true"); - - //make the nodes - std::shared_ptr<FsmNode> nodeA = std::make_shared<FsmNode>(false,true); - std::shared_ptr<FsmNode> nodeB = std::make_shared<FsmNode>(false,false); - std::shared_ptr<FsmNode> nodeC = std::make_shared<FsmNode>(true,false); - - //make the edges - - std::shared_ptr<FsmEdge> edgeAB = std::make_shared<FsmEdgeUnique>(nodeA,nodeB,toTest); - std::shared_ptr<FsmEdge> edgeBC = std::make_shared<FsmEdgeUnique>(nodeB,nodeC,toTest); - - std::shared_ptr<FsmGraph> graph = std::make_shared<FsmGraph>(""); - graph->addEdge(edgeAB); - graph->addEdge(edgeBC); - - REQUIRE(graph->getValidNodes() == std::set<std::shared_ptr<FsmNode>>{nodeC}); - REQUIRE(graph->getStartNodes() == std::vector<std::shared_ptr<FsmNode>>{nodeA}); - REQUIRE(graph->getNodes() == std::set<std::shared_ptr<FsmNode>>{nodeA,nodeB,nodeC}); - - //make the nodes - std::shared_ptr<FsmNode> node2A = std::make_shared<FsmNode>(false,true); - std::shared_ptr<FsmNode> node2B = std::make_shared<FsmNode>(false,false); - std::shared_ptr<FsmNode> node2C = std::make_shared<FsmNode>(true,false); - - - std::shared_ptr<FsmEdge> edge2AB = std::make_shared<FsmEdgeUnique>(node2A,node2B,toTest); - std::shared_ptr<FsmEdge> edge2BC = std::make_shared<FsmEdgeUnique>(node2B,node2C,toTest); - - std::shared_ptr<FsmGraph> graph2 = std::make_shared<FsmGraph>(""); - - - graph2->addEdge(edge2AB); - graph2->addEdge(edge2BC); - - - REQUIRE(graph2->getValidNodes() == std::set<std::shared_ptr<FsmNode>>{node2C}); - REQUIRE(graph2->getStartNodes() == std::vector<std::shared_ptr<FsmNode>>{node2A}); - REQUIRE(graph2->getNodes() == std::set<std::shared_ptr<FsmNode>>{node2A,node2B,node2C}); - - - graph->mergeOneStartOneValid(graph2); - - REQUIRE(graph->getValidNodes() == std::set<std::shared_ptr<FsmNode>>{node2C}); - REQUIRE(graph->getStartNodes() == std::vector<std::shared_ptr<FsmNode>>{nodeA}); - REQUIRE(graph->getNodes() == std::set<std::shared_ptr<FsmNode>>{nodeA,nodeB,nodeC,node2B,node2C}); - } - - - - -} - -// TEST_CASE("matchFSM", "FsmGraph") { - -// SECTION("FsmEdgeUnique constructor") { -// //make the nodes -// std::shared_ptr<FsmNode> nodeA = std::make_shared<FsmNode>(true,false); -// std::shared_ptr<FsmNode> nodeB = std::make_shared<FsmNode>(false,true); - -// //make the edges -// std::shared_ptr<ConditionalInterpreter> toTest = std::make_shared<ConditionalInterpreter>("true==true"); -// std::shared_ptr<FsmEdgeUnique> edge = std::make_shared<FsmEdgeUnique>(nodeA,nodeB,toTest); - -// std::shared_ptr<FsmGraph> graph = std::make_shared<FsmGraph>(""); - -// graph->addEdge(edge); - - - -// } - -// } \ No newline at end of file diff --git a/unit_tests/graphRegex/Test_FsmMatch.cpp b/unit_tests/graphRegex/Test_FsmMatch.cpp deleted file mode 100644 index 6229ec62a..000000000 --- a/unit_tests/graphRegex/Test_FsmMatch.cpp +++ /dev/null @@ -1,90 +0,0 @@ - -#include <catch2/catch_test_macros.hpp> - -#include "aidge/graph/GraphView.hpp" -#include "aidge/operator/Conv.hpp" -#include "aidge/operator/GenericOperator.hpp" -#include "aidge/operator/Producer.hpp" - - -#include "aidge/graphRegex/GraphFsmInterpreter.hpp" - - -using namespace Aidge; -TEST_CASE("FsmMatch") { - - SECTION("Construction") { - std::vector<std::shared_ptr<ConditionalInterpreter>> allTest = { - std::make_shared<ConditionalInterpreter>("A","isConv($)==true"), - std::make_shared<ConditionalInterpreter>("B","isConv($)==true"), - std::make_shared<ConditionalInterpreter>("C","true==true") - }; - - allTest[0]->insertLambda("isConv",+[](NodePtr NodeOp){return NodeOp->type() == "Conv";}); - allTest[1]->insertLambda("isConv",+[](NodePtr NodeOp){return NodeOp->type() == "Conv";}); - - std::shared_ptr<GraphFsmInterpreter> fsmGenerator = std::make_shared<GraphFsmInterpreter>("A->A",allTest); - std::shared_ptr<FsmGraph> fsm = fsmGenerator->interpret(); - - - - //REQUIRE(fsm->getNodes().size() == 3); - //REQUIRE(fsm->getStartNodes().size() == 1); - - - - std::shared_ptr<GraphView> g1 = std::make_shared<GraphView>("TestGraph"); - std::shared_ptr<Node> conv = GenericOperator("Conv", 1, 0, 1, "c"); - std::shared_ptr<Node> conv1 = GenericOperator("Conv", 1, 0, 1, "c1"); - - g1->add(conv); - g1->addChild(conv1, "c"); - - - REQUIRE(allTest[0]->test(conv) == true); - REQUIRE(allTest[1]->test(conv) == true); - - std::vector<std::shared_ptr<Node>> startNodes = {conv}; - - auto result = fsm->test(startNodes); - - REQUIRE( result[0]->getAll() == std::set<NodePtr>{conv,conv1}); - } - - - SECTION("2 branches graph"){ - - std::shared_ptr<GraphView> g1 = std::make_shared<GraphView>("TestGraph"); - std::shared_ptr<Node> conv = GenericOperator("Conv", 1, 0, 1, "c"); - std::shared_ptr<Node> conv1 = GenericOperator("Conv", 1, 0, 1, "c1"); - std::shared_ptr<Node> conv2 = GenericOperator("Fc", 1, 0, 1, "c2"); - - g1->add(conv); - g1->addChild(conv1,conv); - g1->addChild(conv2,conv); - - REQUIRE(g1->getNodes() == std::set<std::shared_ptr<Node>>({conv,conv1,conv2})); - REQUIRE(g1->inputNodes() == std::set<std::shared_ptr<Node>>({conv})); - REQUIRE(g1->outputNodes() == std::set<std::shared_ptr<Node>>({conv1,conv2})); - - - ///////////// - - std::vector<std::shared_ptr<ConditionalInterpreter>> allTest = { - std::make_shared<ConditionalInterpreter>("A","isConv($)==true"), - std::make_shared<ConditionalInterpreter>("B","isFc($)==true") - }; - allTest[0]->insertLambda("isConv",+[](NodePtr NodeOp){return NodeOp->type() == "Conv";}); - allTest[1]->insertLambda("isFc",+[](NodePtr NodeOp){return NodeOp->type() == "Fc";}); - - std::shared_ptr<GraphFsmInterpreter> fsmGenerator = std::make_shared<GraphFsmInterpreter>("A#->A; A#->B",allTest); - std::shared_ptr<FsmGraph> fsm = fsmGenerator->interpret(); - - std::vector<std::shared_ptr<Node>> startNodes = {conv,conv}; - auto result = fsm->test(startNodes); - - REQUIRE( result[0]->getAll() == std::set<NodePtr>{conv,conv1,conv2}); - - } - -} diff --git a/unit_tests/graphRegex/Test_GraphFsmInterpreter.cpp b/unit_tests/graphRegex/Test_GraphFsmInterpreter.cpp deleted file mode 100644 index e789677d4..000000000 --- a/unit_tests/graphRegex/Test_GraphFsmInterpreter.cpp +++ /dev/null @@ -1,42 +0,0 @@ - -#include <catch2/catch_test_macros.hpp> - -#include "aidge/graphRegex/GraphFsmInterpreter.hpp" - - -using namespace Aidge; -TEST_CASE("GraphFsmInterpreter", "GraphFsmInterpreter") { - - SECTION("Construction") { - std::vector<std::shared_ptr<ConditionalInterpreter>> allTest = { - std::make_shared<ConditionalInterpreter>("A","true==true"), - std::make_shared<ConditionalInterpreter>("B","true==true"), - std::make_shared<ConditionalInterpreter>("C","true==true") - }; - - //GraphFsmInterpreter("A->B",allTest); - std::shared_ptr<GraphFsmInterpreter> fsmGenerator = std::make_shared<GraphFsmInterpreter>("A->B",allTest); - std::shared_ptr<FsmGraph> fsm = fsmGenerator->interpret(); - - - REQUIRE(fsm->getNodes().size() == 3); - REQUIRE(fsm->getStartNodes().size() == 1); - REQUIRE(fsm->getEdge().size() == 2); - - for(auto node : fsm->getNodes()){ - if(node->isValid()){ - REQUIRE(node->getEdges().size() == 0); - }else{ - REQUIRE(node->getEdges().size() == 1); - } - - } - - - } - - - - - -} \ No newline at end of file diff --git a/unit_tests/graphRegex/Test_GraphLexer.cpp b/unit_tests/graphRegex/Test_GraphLexer.cpp deleted file mode 100644 index ffb250978..000000000 --- a/unit_tests/graphRegex/Test_GraphLexer.cpp +++ /dev/null @@ -1,124 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include "aidge/graphRegex/GraphLexer.hpp" -#include "aidge/graphRegex/GraphRegexTypes.hpp" -#include "aidge/utilsParsing/ParsingToken.hpp" - -#include <catch2/catch_test_macros.hpp> -#include <fmt/format.h> - -#include <map> -#include <functional> - -using namespace Aidge; - -// NEXT -// QOM -// QZM -// KEY -// CKEY -// SEP -// LPAREN -// RPAREN - -TEST_CASE("GraphRegex", "Lexer") { - SECTION("RandomGenerateTest") { - - std::map<gRegexTokenTypes, std::function<std::pair<std::string, std::string>()>> LexerTestMap{ - {gRegexTokenTypes::NEXT, +[](){return std::pair<std::string, std::string>("-> ","");}}, - {gRegexTokenTypes::QOM, +[](){return std::pair<std::string, std::string>("+ ","");}}, - {gRegexTokenTypes::QZM, +[](){return std::pair<std::string, std::string>("* ","");}}, - {gRegexTokenTypes::SEP, +[](){return std::pair<std::string, std::string>("; ","");}}, - - - - {gRegexTokenTypes::KEY, +[](){ - std::size_t keyLen = (std::rand() % 20)+1; - const std::string characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_"; - std::size_t randomIndex = std::rand() % characters.size(); - std::string key; - for (std::size_t i = 0; i < keyLen; ++i) { - key += characters[randomIndex]; - randomIndex = std::rand() % characters.size(); - } - - return std::pair<std::string, std::string>(key+" ",key);} - }, - - {gRegexTokenTypes::CKEY, +[](){ - std::size_t keyLen = (std::rand() % 20)+1; - const std::string characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_"; - const std::string num = "1234567890"; - - std::size_t randomIndex = std::rand() % characters.size(); - std::size_t randomNum = std::rand() % num.size(); - std::string key; - std::string idx; - - for (std::size_t i = 0; i < keyLen; ++i) { - key += characters[randomIndex]; - idx += num[randomNum]; - randomIndex = std::rand() % characters.size(); - randomNum = std::rand() % num.size(); - } - - return std::pair<std::string, std::string>(key+"#"+idx+" ",key+"#"+idx);} - }, - - {gRegexTokenTypes::LPAREN, +[](){return std::pair<std::string, std::string>("( ","");}}, - {gRegexTokenTypes::RPAREN, +[](){return std::pair<std::string, std::string>(") ","");}} - //{gRegexTokenTypes::STOP, +[](){return std::pair<std::string, std::string>("","");}} - }; - - - ////////////////// - //TEST GENERATOR - ////////////////// - const std::size_t numRandomElements = 1000; - std::vector<std::tuple<gRegexTokenTypes, std::string>> testVector; - - std::string testString; - - for (std::size_t i = 0; i < numRandomElements; ++i) { - - int randomIndex = std::rand() % LexerTestMap.size(); - // Get an iterator to the random element in the map - auto it = std::next(LexerTestMap.begin(), randomIndex); - // Access the random key and lambda value separately using structured binding - gRegexTokenTypes randomKey = it->first; - - std::function<std::pair<std::string, std::string>()> randomValue = it->second; - std::pair<std::string, std::string> result = randomValue(); - - testString += result.first; - testVector.emplace_back(randomKey, result.second); - - - } - - GraphLexer graphLexer = GraphLexer(testString); - - for (std::tuple<gRegexTokenTypes, std::string> testToken : testVector) { - gRegexTokenTypes tokenToFind = std::get<0>(testToken); - std::string lexemToFind = std::get<1>(testToken); - std::shared_ptr<ParsingToken<gRegexTokenTypes>> token = graphLexer.getNextToken(); - - CAPTURE(fmt::format("\nWe want: {}\nWe get: {}\nOn:\n{}\n", lexemToFind, token->getLexeme(), testString)); - REQUIRE(token->getLexeme() == lexemToFind); - REQUIRE(token->getType() == tokenToFind); - } - std::shared_ptr<ParsingToken<gRegexTokenTypes>> token = graphLexer.getNextToken(); - REQUIRE(token->getType() == gRegexTokenTypes::STOP); - } - - -} \ No newline at end of file diff --git a/unit_tests/graphRegex/Test_GraphParser.cpp b/unit_tests/graphRegex/Test_GraphParser.cpp deleted file mode 100644 index c4f17494f..000000000 --- a/unit_tests/graphRegex/Test_GraphParser.cpp +++ /dev/null @@ -1,67 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <cstdlib> // std::rand -#include <memory> -#include <string> - -#include <catch2/catch_test_macros.hpp> -#include <fmt/core.h> - -#include "aidge/graphRegex/GraphParser.hpp" -#include "aidge/utilsParsing/AstNode.hpp" - -using namespace Aidge; - - //generative function , - std::string domain(); - std::string exp() { - int randomValue = std::rand() % 3; - switch (randomValue) { - case 0: - return "A"; - case 1 : - return "A#"; - default: - return domain(); - - } - } - - std::string seq() { - return exp() + (((std::rand() & 0x1) == 0x0) ? "" : ("->" + seq())); - } - - std::string domain() { - return "("+ seq() +")" + (((std::rand() & 0x1) == 0x0) ? "*" : "+"); - } - - std::string allExpr() { - return seq() + (((std::rand() & 0x1) == 0x0) ? "" : (";" + allExpr())); - } - -/* -exp : KEY(QOM | QZM)? | CKEY | domain -seq :exp (NEXT seq)* -domain : LPAREN seq RPAREN (QOM | QZM) -allExpr: seq (SEP allExpr)* -*/ -TEST_CASE("GraphParser", "Test_GraphParser") { - - SECTION("Empty") { - for (int i = 0; i < 100; ++i) { - const std::string test = allExpr(); - fmt::print("test\n"); - GraphParser graphParser = GraphParser(test); - std::shared_ptr<AstNode<gRegexTokenTypes>> tree = graphParser.parse(); - } - } -} \ No newline at end of file diff --git a/unit_tests/graphRegex/Test_GraphRegex.cpp b/unit_tests/graphRegex/Test_GraphRegex.cpp deleted file mode 100644 index 79e471d44..000000000 --- a/unit_tests/graphRegex/Test_GraphRegex.cpp +++ /dev/null @@ -1,194 +0,0 @@ - -#include <catch2/catch_test_macros.hpp> -#include "aidge/graphRegex/GraphRegex.hpp" - - -#include "aidge/data/Tensor.hpp" -#include "aidge/graph/GraphView.hpp" -#include "aidge/operator/Add.hpp" -#include "aidge/operator/FC.hpp" -#include "aidge/operator/MatMul.hpp" -#include "aidge/operator/Producer.hpp" -#include "aidge/recipes/Recipes.hpp" - -#include "aidge/operator/Conv.hpp" -#include "aidge/operator/GenericOperator.hpp" - -using namespace Aidge; - -TEST_CASE("GraphRegexUser") { - - - SECTION("Match using custom lambda") { - - std::shared_ptr<GraphView> g1 = std::make_shared<GraphView>("TestGraph"); - std::shared_ptr<Node> conv = GenericOperator("Conv", 1, 0, 1, "c"); - std::shared_ptr<Node> fc = GenericOperator("FC", 1, 0, 1, "c1"); - std::shared_ptr<Node> conv2 = GenericOperator("Conv", 1, 0, 1, "c2"); - std::shared_ptr<Node> fc2 = GenericOperator("FC", 1, 0, 1, "c3"); - - g1->add(conv); - g1->addChild(fc, "c"); - g1->addChild(conv2, "c1"); - g1->addChild(fc2, "c2"); - - /// - std::shared_ptr<GraphRegex> sut = std::make_shared<GraphRegex>(); - sut->setNodeKey("C",+[](NodePtr NodeOp){return NodeOp->type() == "FC";}); - - sut->setNodeKey("A","C($)==True"); - sut->addQuery("A"); - auto match = sut->match(g1); - REQUIRE(match.size() == 2); - - } - - - SECTION("INIT") { - - const std::string query = "Conv->FC"; - - std::shared_ptr<GraphRegex> sut = std::make_shared<GraphRegex>(); - - std::shared_ptr<GraphView> g1 = std::make_shared<GraphView>("TestGraph"); - std::shared_ptr<Node> conv = GenericOperator("Conv", 1, 0, 1, "c"); - std::shared_ptr<Node> fc = GenericOperator("FC", 1, 0, 1, "c1"); - std::shared_ptr<Node> conv2 = GenericOperator("Conv", 1, 0, 1, "c2"); - std::shared_ptr<Node> fc2 = GenericOperator("FC", 1, 0, 1, "c3"); - - g1->add(conv); - g1->addChild(fc, "c"); - g1->addChild(conv2, "c1"); - g1->addChild(fc2, "c2"); - - - sut->setKeyFromGraph(g1); - sut->addQuery(query); - - for (const auto& solution : sut->match(g1)) { - - REQUIRE(solution->getQuery() == query); - if(solution->getStartNode() == std::vector<NodePtr>{conv}){ - REQUIRE(solution->at("Conv") == std::set<NodePtr>{conv} ); - REQUIRE(solution->at("FC") == std::set<NodePtr>{fc} ); - }else if (solution->getStartNode() == std::vector<NodePtr>{conv2}) - { - REQUIRE(solution->at("Conv") == std::set<NodePtr>{conv2} ); - REQUIRE(solution->at("FC") == std::set<NodePtr>{fc2} ); - } - } - //REQUIRE( sut->match(g1)[1]->getAll() == std::set<NodePtr>{conv,fc}); - - } - - SECTION("2 query") { - std::shared_ptr<GraphRegex> sut = std::make_shared<GraphRegex>(); - - std::shared_ptr<GraphView> g1 = std::make_shared<GraphView>("TestGraph"); - std::shared_ptr<Node> conv = GenericOperator("Conv", 1, 0, 1, "c"); - std::shared_ptr<Node> conv1 = GenericOperator("Conv", 1, 0, 1, "c1"); - std::shared_ptr<Node> conv2 = GenericOperator("Conv", 1, 0, 1, "c2"); - std::shared_ptr<Node> conv3 = GenericOperator("Conv", 1, 0, 1, "c3"); - - g1->add(conv); - g1->addChild(conv1, "c"); - g1->addChild(conv2, "c1"); - g1->addChild(conv3, "c2"); - - - sut->setKeyFromGraph(g1); - - const std::string query = "Conv->Conv"; - const std::string query2 = "Conv->FC"; - - sut->setNodeKey("FC","getType($) =='FC'"); - - sut->addQuery(query); - sut->addQuery(query2); - - - for (const auto& solution : sut->match(g1)) { - REQUIRE(solution->getQuery() == query); - } - - } - - - SECTION("Not define node Test") { - - //test if the FC is not define only match query not query2 - std::shared_ptr<GraphRegex> sut = std::make_shared<GraphRegex>(); - - std::shared_ptr<GraphView> g1 = std::make_shared<GraphView>("TestGraph"); - std::shared_ptr<Node> conv = GenericOperator("Conv", 1, 0, 1, "c"); - std::shared_ptr<Node> conv1 = GenericOperator("Conv", 1, 0, 1, "c1"); - std::shared_ptr<Node> conv2 = GenericOperator("Conv", 1, 0, 1, "c2"); - std::shared_ptr<Node> conv3 = GenericOperator("FC", 1, 0, 1, "c3"); - - g1->add(conv); - g1->addChild(conv1, "c"); - g1->addChild(conv2, "c1"); - g1->addChild(conv3, "c2"); - - - //sut->setKeyFromGraph(g1); - - const std::string query = "Conv->Conv"; - const std::string query2 = "Conv->FC"; - - sut->setNodeKey("Conv","getType($) =='Conv'"); - - sut->addQuery(query); - sut->addQuery(query2); - - - for (const auto& solution : sut->match(g1)) { - REQUIRE(solution->getQuery() == query); - } - - } - - - SECTION("Applied Recipes"){ - - // generate the original GraphView - auto matmul0 = MatMul("matmul0"); - auto add0 = Add("add0"); - auto matmul1 = MatMul("matmul1"); - auto add1 = Add("add1"); - - auto b0 = Producer({5}, "B0"); - auto w0 = Producer({5, 5}, "W0"); - auto b1 = Producer({5}, "B1"); - auto w1 = Producer({5,5},"W1"); - auto input = Producer({2,5}, "input"); - - input->addChild(matmul0, 0, 1); - w0->addChild(matmul0, 0, 0); - - matmul0->addChild(add0, 0, 0); - b0->addChild(add0, 0, 1); - - add0->addChild(matmul1, 0, 1); - w1->addChild(matmul1, 0, 0); - - matmul1->addChild(add1, 0, 0); - b1->addChild(add1, 0, 1); - - auto fc = GenericOperator("FC", 1, 0, 1, "fc1"); - auto fl = GenericOperator("Flatten", 1, 0, 1, "flatten0"); - add1->addChild(fl, 0, 0); - fl->addChild(fc, 0, 0); - auto g = std::make_shared<GraphView>(); - g->add({w0, matmul0, b0, add0, w1, matmul1, b1, add1, fl, fc}); - - matMulToFC(g); - removeFlatten(g); - std::set<std::shared_ptr<Node>> newNodes = g->getNodes(); - REQUIRE(newNodes != std::set<std::shared_ptr<Node>>({w0, matmul0, b0, add0, w1, matmul1, b1, add1,fl,fc})); - //REQUIRE(newNodes.size() == 6); - - - } - -} diff --git a/unit_tests/graphRegex/Test_examples.cpp b/unit_tests/graphRegex/Test_examples.cpp deleted file mode 100644 index 0ccc05b5a..000000000 --- a/unit_tests/graphRegex/Test_examples.cpp +++ /dev/null @@ -1,55 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <catch2/catch_test_macros.hpp> -#include <set> - -#include "aidge/data/Tensor.hpp" -#include "aidge/graph/GraphView.hpp" -#include "aidge/graph/OpArgs.hpp" -#include "aidge/operator/ReLU.hpp" -#include "aidge/operator/MetaOperatorDefs.hpp" -#include "aidge/operator/Producer.hpp" -#include "aidge/graphRegex/GraphRegex.hpp" -#include "aidge/recipes/Recipes.hpp" - -namespace Aidge { - - -TEST_CASE("Examples", "[GraphMatching]") { - auto g1 = Sequential({ - Producer({16, 3, 512, 512}, "dataProvider"), - Conv(3, 4, {5, 5}, "conv1"), - ReLU(), - PaddedConv(4, 8, {5, 5}, "conv2", {1, 1}, {2, 2, 2, 2}), - ReLU(), - PaddedConv(8, 16, {5, 5}, "conv3", {1, 1}, {2, 2, 2, 2}), - ReLU() - }); - - expandMetaOps(g1); - g1->save("Test_examples"); - - auto regex = std::make_shared<GraphRegex>(); - regex->setKeyFromGraph(g1); - regex->addQuery("Pad2D->Conv2D->ReLU"); - // Won't work, wrong number of matches: - //regex->addQuery("Pad*->Conv->ReLU*"); - - const auto match = regex->match(g1); - REQUIRE(match.size() == 2); - - for (const auto& solution : match) { - REQUIRE(solution->getAll().size() == 3); - } -} - -} // namespace Aidge diff --git a/unit_tests/graphRegex/Test_graphRegexAST.cpp b/unit_tests/graphRegex/Test_graphRegexAST.cpp deleted file mode 100644 index f9c7a7c5d..000000000 --- a/unit_tests/graphRegex/Test_graphRegexAST.cpp +++ /dev/null @@ -1,71 +0,0 @@ -#include <catch2/catch_test_macros.hpp> -#include "aidge/graphRegex/GraphStrInterpreter.hpp" - - -using namespace Aidge; -TEST_CASE("GraphStrInterpreter") { - - - - std::vector<std::string> tests = { - - - //sequ - "A;", - "A->B", - "A->B->C", - //seq and common - "A#", - "A#->B", - "A#->B#", - "A#->B#->C", - "A#->B#->C#", - "A->B#->C", - //sequ quantif + - "A+", - "A+->B+", - "A->B+->C", - //sequ quantif * - "A*", - "A*->B*", - "A->B*->C", - - //sequ quantif - "A*", - "A*->B+", - "A+->B*->C", - //others - - "(A#->B->C#)+", - "(A#->B)+;A#->B->C", - "B+->B->B", - "B#->R*", - "(B#->R)*", - "A->C->B#->B;B#->R", - "B#->R", - "A->C#;A->C#;A->C#;A->C#;A->C#;A->C#", - "B#->R;B#->R", - "A# -> C -> B#; B#->A#", - - // Add more test cases here - }; - - SECTION("AST Regex bijection") { - - for (const std::string& test : tests) { - std::shared_ptr<GraphStrInterpreter> strGenerator = std::make_shared<GraphStrInterpreter>(test); - std::string astString = strGenerator->interpret(); - //suppress space in the test because erase in the AST - std::string testNoS = test; - testNoS.erase(std::remove_if(testNoS.begin(), testNoS.end(), ::isspace), testNoS.end()); - //if the last char is ; (SEP) it will not in the AST and it's not a bug erase it - if (!testNoS.empty() && testNoS.back() == ';') { - // Remove the last character - testNoS.pop_back(); - } - //test - REQUIRE(astString == testNoS); - } - - } -} \ No newline at end of file diff --git a/unit_tests/nodeTester/Test_ConditionalInterpreter.cpp b/unit_tests/nodeTester/Test_ConditionalInterpreter.cpp deleted file mode 100644 index ec068358a..000000000 --- a/unit_tests/nodeTester/Test_ConditionalInterpreter.cpp +++ /dev/null @@ -1,91 +0,0 @@ - -#include <catch2/catch_test_macros.hpp> -#include "aidge/nodeTester/ConditionalInterpreter.hpp" -#include "aidge/operator/GenericOperator.hpp" - - -using namespace Aidge; - - - -TEST_CASE("ConditionalInterpreter", "ConditionalInterpreter") { - - SECTION("custom Lambda") { - - - ConditionalInterpreter conditionalParserB = ConditionalInterpreter("A"," bad($) == false "); - ConditionalInterpreter conditionalParserG = ConditionalInterpreter("A"," good($) == true "); - - - conditionalParserB.insertLambda("bad",+[](NodePtr NodeOp){return NodeOp->name() == "ZZ";}); - conditionalParserG.insertLambda("good",+[](NodePtr NodeOp){return NodeOp->name() == "Gop1";}); - std::shared_ptr<Node> nodeOp = GenericOperator("conv", 0, 0, 0, "Gop1"); - - REQUIRE(conditionalParserB.test(nodeOp) == true); - REQUIRE(conditionalParserG.test(nodeOp) == true); - } - - - ConditionalInterpreter conditionalParserT = ConditionalInterpreter("A","isConv($)==true"); - conditionalParserT.insertLambda("isConv",+[](NodePtr NodeOp){return NodeOp->type() == "Conv";}); - std::shared_ptr<Node> zz = GenericOperator("conv", 0, 0, 0, "Gop1"); - conditionalParserT.test(zz); - - SECTION("Lambdas") { - ConditionalInterpreter conditionalParser = ConditionalInterpreter("OP_test","getType($) =='Conv' || getType($) =='FC' "); - - std::shared_ptr<Node> A = GenericOperator("Conv", 0, 0, 0, "A"); - REQUIRE(conditionalParser.test(A) == true); - - std::shared_ptr<Node> B = GenericOperator("FC", 0, 0, 0, "B"); - REQUIRE(conditionalParser.test(B) == true); - - - std::shared_ptr<Node> C = GenericOperator("A", 0, 0, 0, "C"); - conditionalParser.test(C); - REQUIRE(conditionalParser.test(C) == false); - } - - SECTION("syntax error") { - - const std::string test = "'A' == 'A' ,&& "; - REQUIRE_THROWS_AS( ConditionalInterpreter("A",test), std::runtime_error); - - } - - - SECTION("test false int ") { - - const std::string test = " 10 == 11 " ; - ConditionalInterpreter conditionalParser = ConditionalInterpreter("A",test); - std::shared_ptr<Node> nodeOp = GenericOperator("conv", 0, 0, 0, "Gop1"); - bool result = conditionalParser.test(nodeOp); - REQUIRE(result == false); - } - - SECTION("test true int ") { - const std::string test = " 42 == 42 " ; - ConditionalInterpreter conditionalParser = ConditionalInterpreter("A",test); - std::shared_ptr<Node> nodeOp = GenericOperator("conv", 0, 0, 0, "Gop1"); - bool result = conditionalParser.test(nodeOp); - REQUIRE(result == true); - } - - SECTION("test false str ") { - const std::string test = " 'toto' == 'Corgi' " ; - ConditionalInterpreter conditionalParser = ConditionalInterpreter("A",test); - std::shared_ptr<Node> nodeOp = GenericOperator("conv", 0, 0, 0, "Gop1"); - bool result = conditionalParser.test(nodeOp); - REQUIRE(result == false); - } - - SECTION("test true str ") { - - const std::string test = " 'Corgi' == 'Corgi' " ; - ConditionalInterpreter conditionalParser = ConditionalInterpreter("A",test); - std::shared_ptr<Node> nodeOp = GenericOperator("conv", 0, 0, 0, "Gop1"); - bool result = conditionalParser.test(nodeOp); - REQUIRE(result == true); - } - -} \ No newline at end of file diff --git a/unit_tests/nodeTester/Test_ConditionalLexer.cpp b/unit_tests/nodeTester/Test_ConditionalLexer.cpp deleted file mode 100644 index e5a7bd831..000000000 --- a/unit_tests/nodeTester/Test_ConditionalLexer.cpp +++ /dev/null @@ -1,154 +0,0 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - -#include <functional> -#include <map> -#include <string> -#include <utility> - -#include <catch2/catch_test_macros.hpp> -#include <fmt/format.h> - -#include "aidge/nodeTester/ConditionalLexer.hpp" -#include "aidge/utilsParsing/ParsingToken.hpp" - -using namespace Aidge; - -TEST_CASE("nodeTester", "Lexer") { - SECTION("RandomGenerateTest") { - - std::map<ConditionalTokenTypes, std::function<std::pair<std::string, std::string>()>> LexerTestMap{ - {ConditionalTokenTypes::AND, +[](){return std::pair<std::string, std::string>("&& ","");}}, - {ConditionalTokenTypes::OR, +[](){return std::pair<std::string, std::string>("|| ","");}}, - {ConditionalTokenTypes::EQ, +[](){return std::pair<std::string, std::string>("== ","");}}, - {ConditionalTokenTypes::NEQ, +[](){return std::pair<std::string, std::string>("!= ","");}}, - - {ConditionalTokenTypes::KEY, +[](){return std::pair<std::string, std::string>("A ","A");}}, - - {ConditionalTokenTypes::BOOL, +[](){ - std::size_t keyLen = (std::rand() % 2); - const std::vector<std::string> characters = {"true","false"}; - - return std::pair<std::string, std::string>(characters[keyLen]+" ",characters[keyLen]);} - }, - - {ConditionalTokenTypes::INTEGER, +[](){ - std::size_t keyLen = (std::rand() % 20)+1; - const std::string characters = "1234567890"; - std::size_t randomIndex = std::rand() % characters.size(); - std::string key; - for (std::size_t i = 0; i < keyLen; ++i) { - key += characters[randomIndex]; - randomIndex = std::rand() % characters.size(); - } - return std::pair<std::string, std::string>(key+" ",key);} - }, - - {ConditionalTokenTypes::FLOAT, +[](){ - std::size_t keyLen = (std::rand() % 20)+2; - const std::string characters = "1234567890"; - std::size_t randomIndex = std::rand() % characters.size(); - std::string key; - for (std::size_t i = 0; i < keyLen/2; ++i) { - key += characters[randomIndex]; - randomIndex = std::rand() % characters.size(); - } - key += "."; - for (std::size_t i = 0; i < keyLen/2; ++i) { - key += characters[randomIndex]; - randomIndex = std::rand() % characters.size(); - } - return std::pair<std::string, std::string>(key+" ",key);} - }, - - {ConditionalTokenTypes::STRING, +[](){ - std::size_t keyLen = (std::rand() % 20)+1; - const std::string characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 "; - std::size_t randomIndex = std::rand() % characters.size(); - std::string key; - for (std::size_t i = 0; i < keyLen; ++i) { - key += characters[randomIndex]; - randomIndex = std::rand() % characters.size(); - } - - return std::pair<std::string, std::string>("'"+key+"' ",key);} - }, - - {ConditionalTokenTypes::LAMBDA, +[](){ - - std::size_t keyLen = (std::rand() % 20)+1; - const std::string characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"; - const std::string Startchar = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; - - std::size_t randomIndex = std::rand() % characters.size(); - std::size_t randomStartIndex = std::rand() % Startchar.size(); - - std::string key; - key += Startchar[randomStartIndex]; - - for (std::size_t i = 0; i < keyLen; ++i) { - key += characters[randomIndex]; - randomIndex = std::rand() % characters.size(); - } - - return std::pair<std::string, std::string>(key+"( ",key);} - }, - - {ConditionalTokenTypes::ARGSEP, +[](){return std::pair<std::string, std::string>(", ","");}}, - {ConditionalTokenTypes::NODE, +[](){return std::pair<std::string, std::string>("$ ","");}}, - {ConditionalTokenTypes::LPAREN, +[](){return std::pair<std::string, std::string>("( ","");}}, - {ConditionalTokenTypes::RPAREN, +[](){return std::pair<std::string, std::string>(") ","");}} - //{ConditionalTokenTypes::STOP, +[](){return std::pair<std::string, std::string>("","");}} - }; - - - ////////////////// - //TEST GENERATOR - ////////////////// - const std::size_t numRandomElements = 100; - std::vector<std::tuple<ConditionalTokenTypes, std::string>> testVector; - - std::string testString; - - for (std::size_t i = 0; i < numRandomElements; ++i) { - - int randomIndex = std::rand() % LexerTestMap.size(); - // Get an iterator to the random element in the map - auto it = std::next(LexerTestMap.begin(), randomIndex); - // Access the random key and lambda value separately using structured binding - ConditionalTokenTypes randomKey = it->first; - - std::function<std::pair<std::string, std::string>()> randomValue = it->second; - std::pair<std::string, std::string> result = randomValue(); - - testString += result.first; - testVector.emplace_back(randomKey, result.second); - - - } - - ConditionalLexer conditionalLexer = ConditionalLexer(testString); - - for (std::tuple<ConditionalTokenTypes, std::string> testToken : testVector) { - ConditionalTokenTypes tokenToFind = std::get<0>(testToken); - std::string lexemToFind = std::get<1>(testToken); - std::shared_ptr<ParsingToken<ConditionalTokenTypes>> token = conditionalLexer.getNextToken(); - - CAPTURE(fmt::format("\n we want: {}\n we get: {}\non: \n{}\n", lexemToFind, token->getLexeme(), testString)); - REQUIRE(token->getLexeme() == lexemToFind); - REQUIRE(token->getType() == tokenToFind); - } - std::shared_ptr<ParsingToken<ConditionalTokenTypes>> token = conditionalLexer.getNextToken(); - REQUIRE(token->getType() == ConditionalTokenTypes::STOP); - } - - -} \ No newline at end of file diff --git a/unit_tests/nodeTester/Test_ConditionalParser.cpp b/unit_tests/nodeTester/Test_ConditionalParser.cpp deleted file mode 100644 index 56adb92b4..000000000 --- a/unit_tests/nodeTester/Test_ConditionalParser.cpp +++ /dev/null @@ -1,75 +0,0 @@ - -#include <catch2/catch_test_macros.hpp> -#include "aidge/nodeTester/ConditionalParser.hpp" -#include "aidge/utilsParsing/AstNode.hpp" - -using namespace Aidge; - - std::string gVal() { - int randomValue = std::rand() % 5; - switch (randomValue) { - case 0: - return std::to_string(std::rand() % 101); - - case 1: - return std::to_string(std::rand() % 101)+"."+std::to_string(std::rand() % 101); - - case 2: - return " 'toto' "; - case 3: - return " A "; - - case 4: - return " A(10) "; - - default: - return " true "; - - } - } - - std::string gExpr() ; - std::string gCmpr() { - int randomValue = std::rand() % 3; - switch (randomValue) { - case 0: - return gVal() + " == " +gVal(); - case 1: - return "("+ gExpr() +")"; - default: - return gVal() + " != " +gVal(); - - } - - - return gVal() + " == " +gVal(); - } - - std::string gExpr() { - std::string out = gCmpr(); - int iterations = std::rand() % 100; - for (int i = 0; i < iterations; ++i) { - int randomValue = std::rand() % 2; - switch (randomValue) { - case 0: - return out +" && " + gCmpr(); - break; - default: - return out +" || " + gCmpr(); - break; - } - } - return out; - } - - -TEST_CASE("ConditionalParser", "ConditionalParser") { - - SECTION("Empty") { - for (int i = 0; i < 100; ++i) { - const std::string test = gExpr(); - ConditionalParser conditionalParser = ConditionalParser(test); - std::shared_ptr<AstNode<ConditionalTokenTypes>> tree = conditionalParser.parse(); - } - } -} \ No newline at end of file diff --git a/unit_tests/recipes/Test_FuseToMetaOps.cpp b/unit_tests/recipes/Test_FuseToMetaOps.cpp index 7bb3ae63a..3fe0fee1c 100644 --- a/unit_tests/recipes/Test_FuseToMetaOps.cpp +++ b/unit_tests/recipes/Test_FuseToMetaOps.cpp @@ -34,7 +34,6 @@ TEST_CASE("[cpu/recipes] FuseToMetaOps", "[FuseToMetaOps][recipes]") { }); g1->save("FuseToMetaOps_before"); - // FIXME: GraphRegex also matches the Conv Producers, which are not in the query! const auto nbFused = fuseToMetaOps(g1, "Conv2D->ReLU", "ConvReLU"); g1->save("FuseToMetaOps_after", true); -- GitLab From 57e57901d504a589f049374fce8ed1219ca4832b Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 23 Jan 2025 03:36:48 +0000 Subject: [PATCH 124/157] Fix: do not use const_iterator for 'std::basic_string::erase()' --- src/graph/Matching.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graph/Matching.cpp b/src/graph/Matching.cpp index ddf9bcbf9..cc1330828 100644 --- a/src/graph/Matching.cpp +++ b/src/graph/Matching.cpp @@ -27,8 +27,8 @@ static void removeLeadingWhitespace(std::string& str) { str.erase(str.begin(), - std::find_if(str.cbegin(), - str.cend(), + std::find_if(str.begin(), + str.end(), [](char c) { return !std::isspace(c); })); } -- GitLab From 8059dcbf19dcefabf433df58f7aa642ca8aa9147 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Tue, 21 Jan 2025 15:48:44 +0100 Subject: [PATCH 125/157] Fixed adaptToBackend and added unit test --- src/backend/OperatorImpl.cpp | 8 +- unit_tests/data/Test_Tensor.cpp | 2 +- unit_tests/recipes/Test_AdaptToBackend.cpp | 102 +++++++++++++++++++++ 3 files changed, 107 insertions(+), 5 deletions(-) create mode 100644 unit_tests/recipes/Test_AdaptToBackend.cpp diff --git a/src/backend/OperatorImpl.cpp b/src/backend/OperatorImpl.cpp index 5c25ad605..c63554259 100644 --- a/src/backend/OperatorImpl.cpp +++ b/src/backend/OperatorImpl.cpp @@ -258,7 +258,7 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& cast->getOperator()->setBackend(node->getOperator()->backend()); cast->addChild(parent, 0, i); - op->getInput(i)->setDataType(requiredIOSpec.type); + op->getInput(i)->setDataType(IOSpec.type); } // Input format @@ -273,7 +273,7 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& transposeOp->getOperator()->setBackend(node->getOperator()->backend()); transposeOp->addChild(parent, 0, i); - op->getInput(i)->setDataFormat(requiredIOSpec.format); + op->getInput(i)->setDataFormat(IOSpec.format); } // Input dims @@ -311,7 +311,7 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& cast->getOperator()->setBackend(node->getOperator()->backend()); parent->addChild(cast, i, 0); - op->getInput(i)->setDataType(IOSpec.type); + op->getOutput(i)->setDataType(IOSpec.type); } // Output format @@ -326,7 +326,7 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& transposeOp->getOperator()->setBackend(node->getOperator()->backend()); parent->addChild(transposeOp, i, 0); - op->getInput(i)->setDataFormat(IOSpec.format); + op->getOutput(i)->setDataFormat(IOSpec.format); } // Output dims diff --git a/unit_tests/data/Test_Tensor.cpp b/unit_tests/data/Test_Tensor.cpp index 6c4b14602..bfdc1a6b9 100644 --- a/unit_tests/data/Test_Tensor.cpp +++ b/unit_tests/data/Test_Tensor.cpp @@ -267,7 +267,7 @@ TEST_CASE("[core/data] Tensor(getter/setter)", "[Tensor][Getter][Setter]") { ////////////// // backend // getAvailableBackends() - REQUIRE(Tensor::getAvailableBackends() == std::set<std::string>({"cpu"})); + REQUIRE(Tensor::getAvailableBackends() == std::set<std::string>({"cpu", "dummy"})); // setBackend() REQUIRE_NOTHROW(T.setBackend("cpu", 0)); diff --git a/unit_tests/recipes/Test_AdaptToBackend.cpp b/unit_tests/recipes/Test_AdaptToBackend.cpp new file mode 100644 index 000000000..b7cccaf72 --- /dev/null +++ b/unit_tests/recipes/Test_AdaptToBackend.cpp @@ -0,0 +1,102 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <catch2/catch_test_macros.hpp> +#include <set> + +#include "aidge/data/Tensor.hpp" +#include "aidge/graph/GraphView.hpp" +#include "aidge/graph/OpArgs.hpp" +#include "aidge/operator/Conv.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Producer.hpp" +#include "aidge/recipes/Recipes.hpp" + +namespace Aidge { + +//////////////////////////////////////////////////////////////////////////////// +// Create a dummy implementation +template <class Op> +class OperatorImpl_dummy : public OperatorImpl, + public Registrable<OperatorImpl_dummy<Op>, ImplSpec, Impl<void(), void()>> +{ +public: + OperatorImpl_dummy(const Op& op) : OperatorImpl(op, "dummy") {} + + static std::unique_ptr<OperatorImpl_dummy<Op>> create(const Op& op) { + return std::make_unique<OperatorImpl_dummy<Op>>(op); + } + + virtual std::shared_ptr<ProdConso> getProdConso() const override { + const auto impl = Registrar<OperatorImpl_dummy>::create(getBestMatch(getRequiredSpec())); + return impl.prodConso(mOp); + } + + virtual std::vector<ImplSpec> getAvailableImplSpecs() const override { + std::set<ImplSpec> implSpecsSet = Registrar<OperatorImpl_dummy>::getKeys(); + return std::vector<ImplSpec>(implSpecsSet.begin(), implSpecsSet.end()); + } +}; + +// Register it +using Conv2D_Op_Impl_dummy = OperatorImpl_dummy<Conv_Op<2>>; +REGISTRAR(Conv2D_Op_Impl_dummy, + {{ // Inputs + {DataType::Any, DataFormat::NHWC}, + {DataType::Any, DataFormat::NHWC}, + {DataType::Any, DataFormat::Default}}, + { // Outputs + {DataType::Float32, DataFormat::NHWC}}}, + {ProdConso::inPlaceModel, nullptr, nullptr}); + +using Conv2D_Op = Conv_Op<2>; +REGISTRAR(Conv2D_Op, "dummy", OperatorImpl_dummy<Conv2D_Op>::create); + +using ReLU_Op_Impl_dummy = OperatorImpl_dummy<ReLU_Op>; +REGISTRAR(ReLU_Op_Impl_dummy, + {{DataType::Any, DataFormat::Default}}, + {ProdConso::inPlaceModel, nullptr, nullptr}); + +REGISTRAR(ReLU_Op, "dummy", OperatorImpl_dummy<ReLU_Op>::create); + +REGISTRAR(Tensor, {"dummy", DataType::Float32}, Registrar<Tensor>::create({"cpu", DataType::Float32})); +//////////////////////////////////////////////////////////////////////////////// + + +TEST_CASE("[cpu/recipes] AdaptToBackend", "[AdaptToBackend][recipes]") { + auto g1 = Sequential({ + Producer({16, 3, 224, 224}, "dataProvider"), + Conv(3, 32, {3, 3}, "conv1"), + ReLU("relu1"), + Conv(32, 64, {3, 3}, "conv2"), + ReLU("relu2"), + Conv(64, 10, {1, 1}, "conv3") + }); + g1->setBackend("dummy"); + auto convOp = std::static_pointer_cast<Conv2D_Op>(g1->getNode("conv1")->getOperator()); + REQUIRE(convOp->getInput(0)->dataFormat() == DataFormat::Default); + REQUIRE(convOp->getInput(1)->dataFormat() == DataFormat::Default); + REQUIRE(convOp->getOutput(0)->dataFormat() == DataFormat::Default); + + g1->save("adapttobackend_before", true); + adaptToBackend(g1); + g1->save("adapttobackend_after", true); + + // FIXME: the last ~> should be ->, but no match in this case! + auto matches = SinglePassGraphMatching(g1).match("Conv2D#<-Transpose<-Producer;Conv2D#<1-Transpose<-Producer;Conv2D#<2-Producer;Conv2D#~>Transpose->ReLU"); + REQUIRE(matches.size() == 1); + convOp = std::static_pointer_cast<Conv2D_Op>(matches.begin()->graph->rootNode()->getOperator()); + REQUIRE(convOp->getInput(0)->dataFormat() == DataFormat::NHWC); + REQUIRE(convOp->getInput(1)->dataFormat() == DataFormat::NHWC); + REQUIRE(convOp->getOutput(0)->dataFormat() == DataFormat::NHWC); +} + +} // namespace Aidge -- GitLab From b4db32e41fb38e1d4fd97ba82348ad780466140c Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 22 Jan 2025 16:46:31 +0100 Subject: [PATCH 126/157] Multiple fixes --- include/aidge/graph/Node.hpp | 10 ++++-- src/backend/OperatorImpl.cpp | 25 ++++++++------- src/data/DataFormat.cpp | 2 +- src/data/Tensor.cpp | 1 + src/graph/GraphView.cpp | 4 +++ src/graph/Node.cpp | 36 +++++++++++++++++----- src/operator/OperatorTensor.cpp | 14 +++++++-- unit_tests/recipes/Test_AdaptToBackend.cpp | 27 ++++++++++++---- 8 files changed, 90 insertions(+), 29 deletions(-) diff --git a/include/aidge/graph/Node.hpp b/include/aidge/graph/Node.hpp index a57ccc91f..9ad7bfb99 100644 --- a/include/aidge/graph/Node.hpp +++ b/include/aidge/graph/Node.hpp @@ -328,8 +328,11 @@ public: * Default to 0. * @param otherInId ID of the other Node input to connect to the current Node. * Default to the first available data input. + * + * @note otherNode shared_ptr is passed by refenrece in order to be able to detect + * possible dangling connection situations in debug using ref counting. */ - void addChild(NodePtr otherNode, + void addChild(const NodePtr& otherNode, const IOIndex_t outId = IOIndex_t(0), IOIndex_t otherInId = gk_IODefaultIndex); @@ -517,8 +520,11 @@ private: * @param otherNode * @param outId * @param otherInId + * + * @note otherNode shared_ptr is passed by refenrece in order to be able to detect + * possible dangling connection situations in debug using ref counting. */ - void addChildOp(NodePtr otherNode, const IOIndex_t outId, + void addChildOp(const NodePtr& otherNode, const IOIndex_t outId, const IOIndex_t otherInId); /** diff --git a/src/backend/OperatorImpl.cpp b/src/backend/OperatorImpl.cpp index c63554259..71f4f04b2 100644 --- a/src/backend/OperatorImpl.cpp +++ b/src/backend/OperatorImpl.cpp @@ -242,12 +242,13 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& auto op = std::static_pointer_cast<OperatorTensor>(mOp.clone()); auto node = std::make_shared<Node>(op); + auto adaptedGraph = std::make_shared<GraphView>(); + adaptedGraph->add(node); // Adapt inputs for (size_t i = 0; i < requiredSpecs.inputs.size(); ++i) { const auto IOSpec = (i < spec.inputs.size()) ? spec.inputs[i] : spec.inputs.back(); const ImplSpec::IOSpec& requiredIOSpec = requiredSpecs.inputs[i]; - std::shared_ptr<Node> parent = node; // Input type if (requiredIOSpec.type != DataType::Any @@ -255,8 +256,9 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& && requiredIOSpec.type != IOSpec.type) { const auto cast = Cast(IOSpec.type); - cast->getOperator()->setBackend(node->getOperator()->backend()); - cast->addChild(parent, 0, i); + cast->getOperator()->setBackend(op->backend()); + cast->addChild(node, 0, i); + adaptedGraph->add(cast); op->getInput(i)->setDataType(IOSpec.type); } @@ -270,8 +272,9 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& auto transposeOp = Transpose(std::vector<DimSize_t>(transpose.begin(), transpose.end())); transposeOp->getOperator()->setDataFormat(IOSpec.format); transposeOp->getOperator()->setDataType(requiredIOSpec.type); - transposeOp->getOperator()->setBackend(node->getOperator()->backend()); - transposeOp->addChild(parent, 0, i); + transposeOp->getOperator()->setBackend(op->backend()); + transposeOp->addChild(node, 0, i); + adaptedGraph->add(transposeOp); op->getInput(i)->setDataFormat(IOSpec.format); } @@ -300,7 +303,6 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& for (size_t i = 0; i < requiredSpecs.outputs.size(); ++i) { const auto IOSpec = (i < spec.outputs.size()) ? spec.outputs[i] : spec.outputs.back(); const ImplSpec::IOSpec& requiredIOSpec = requiredSpecs.outputs[i]; - std::shared_ptr<Node> parent = node; // Output type if (requiredIOSpec.type != DataType::Any @@ -308,8 +310,9 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& && requiredIOSpec.type != IOSpec.type) { const auto cast = Cast(requiredIOSpec.type); - cast->getOperator()->setBackend(node->getOperator()->backend()); - parent->addChild(cast, i, 0); + cast->getOperator()->setBackend(op->backend()); + node->addChild(cast, i, 0); + adaptedGraph->add(cast); op->getOutput(i)->setDataType(IOSpec.type); } @@ -323,8 +326,9 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& auto transposeOp = Transpose(std::vector<DimSize_t>(transpose.begin(), transpose.end())); transposeOp->getOperator()->setDataFormat(requiredIOSpec.format); transposeOp->getOperator()->setDataType(requiredIOSpec.type); - transposeOp->getOperator()->setBackend(node->getOperator()->backend()); - parent->addChild(transposeOp, i, 0); + transposeOp->getOperator()->setBackend(op->backend()); + node->addChild(transposeOp, i, 0); + adaptedGraph->add(transposeOp); op->getOutput(i)->setDataFormat(IOSpec.format); } @@ -349,7 +353,6 @@ std::shared_ptr<Aidge::Node> Aidge::OperatorImpl::getAdaptation(const ImplSpec& } } - auto adaptedGraph = getConnectedGraphView(node); if (adaptedGraph->getNodes().size() > 1) { return MetaOperator(std::string("Adapted_" + op->type()).c_str(), adaptedGraph); } diff --git a/src/data/DataFormat.cpp b/src/data/DataFormat.cpp index fcded91bd..466da86c4 100644 --- a/src/data/DataFormat.cpp +++ b/src/data/DataFormat.cpp @@ -34,7 +34,7 @@ Aidge::DataFormatTranspose Aidge::getDataFormatTranspose(const DataFormat& src, srcToDst[i] = dstDefToFormat[srcFormatToDef[i]] - 1; } else { - srcToDst[i] = i; + srcToDst[i] = srcFormatToDef[i]; } } diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index 7bd2754d6..b128833c9 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -593,6 +593,7 @@ void Tensor::copyTranspose(const Tensor& src, const std::vector<DimSize_t>& tran } } + AIDGE_ASSERT(src.getImpl(), "Tensor::copyTranspose(): an implementation is required for src Tensor!"); AIDGE_ASSERT(mImpl, "Tensor::copyTranspose(): an implementation is required, use setBackend() first!"); std::shared_ptr<TensorImpl> newImpl = Registrar<Tensor>::create({mImpl->backend(), mDataType})(mImpl->device().second, newDims); diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp index 4c6f6ada8..f7390facd 100644 --- a/src/graph/GraphView.cpp +++ b/src/graph/GraphView.cpp @@ -105,6 +105,10 @@ void Aidge::GraphView::save(const std::string& path, bool verbose, bool showProd ? "<em>" + node_ptr->type() + "#" + namePtrTable.at(node_ptr) + "</em>" : "\"" + node_ptr->name() + "<br/><sub><em>(" + node_ptr->type() + "#" + namePtrTable.at(node_ptr) + ")</em></sub>\""; + if (verbose) { + givenName += "<br/><span style='color:white; background-color: purple; float: right'>" + node_ptr->getOperator()->backend() + "</span>"; + } + std::string nodeCls = ""; if (node_ptr->type() == "Producer") { nodeCls = ":::producerCls"; diff --git a/src/graph/Node.cpp b/src/graph/Node.cpp index 0c5fbfdcb..692806dc7 100644 --- a/src/graph/Node.cpp +++ b/src/graph/Node.cpp @@ -201,10 +201,15 @@ Aidge::Node::outputs() const { std::vector<std::pair<std::shared_ptr<Aidge::Node>, Aidge::IOIndex_t>> Aidge::Node::output( Aidge::IOIndex_t outId) const { std::vector<std::pair<std::shared_ptr<Node>, IOIndex_t>> listOutputs = - std::vector<std::pair<std::shared_ptr<Node>, IOIndex_t>>(mIdInChildren[outId].size()); + std::vector<std::pair<std::shared_ptr<Node>, IOIndex_t>>(); for (std::size_t i = 0; i < mIdInChildren[outId].size(); ++i) { - listOutputs[i] = std::pair<std::shared_ptr<Node>, IOIndex_t>(mChildren[outId][i].lock(), - mIdInChildren[outId][i]); + if (std::shared_ptr<Node> child = mChildren[outId][i].lock()) { + listOutputs.push_back(std::pair<std::shared_ptr<Node>, IOIndex_t>(child, + mIdInChildren[outId][i])); + } + else { + Log::warn("Node::output(): dangling connection at index #{} of output #{} for node {} (of type {})", i, outId, name(), type()); + } } return listOutputs; } @@ -255,7 +260,7 @@ void Aidge::Node::setInputId(const IOIndex_t inId, const IOIndex_t newNodeoutId) // TOPOLOGY /////////////////////////////////////////////////////// -void Aidge::Node::addChildOp(std::shared_ptr<Node> otherNode, const IOIndex_t outId, +void Aidge::Node::addChildOp(const std::shared_ptr<Node>& otherNode, const IOIndex_t outId, const IOIndex_t otherInId) { AIDGE_ASSERT(otherInId < otherNode->nbInputs(), "Input index (#{}) of the node {} (of type {}) is out of bound (it has {} inputs), when trying to add it as a child of node {} (of type {})", @@ -263,6 +268,11 @@ void Aidge::Node::addChildOp(std::shared_ptr<Node> otherNode, const IOIndex_t ou AIDGE_ASSERT(outId < nbOutputs(), "Output index (#{}) of the node {} (of type {}) is out of bound (it has {} outputs), when trying to add the child node {} (of type {})", outId, name(), type(), nbOutputs(), otherNode->name(), otherNode->type()); + if (otherNode.use_count() == 1) { + Log::debug("Node::addChild(): the node {} (of type {}) only holds a weak reference to the added child node {} (of type {})." + "If the child node goes out of scope, it will be destructed, leading to a dangling connection." + "To avoid this message, consider adding the child node to a GraphView first.", name(), type(), otherNode->name(), otherNode->type()); + } if (otherNode->input(otherInId).second != gk_IODefaultIndex) { Log::notice("the {}-th Parent of the child node {} (of type {}) already existed", otherInId, otherNode->name(), otherNode->type()); } @@ -284,7 +294,7 @@ void Aidge::Node::addChildView(std::shared_ptr<GraphView> otherGraph, const IOIn addChildOp(otherInId.first, outId, otherInId.second); } -void Aidge::Node::addChild(std::shared_ptr<Node> otherNode, const IOIndex_t outId, +void Aidge::Node::addChild(const std::shared_ptr<Node>& otherNode, const IOIndex_t outId, IOIndex_t otherInId) { if (otherNode) { otherInId = @@ -342,10 +352,17 @@ bool Aidge::Node::removeParent(const IOIndex_t inId) { std::set<std::shared_ptr<Aidge::Node>> Aidge::Node::getChildren() const { std::set<std::shared_ptr<Node>> children; + size_t outId = 0; for (const auto& childrenOfOneOutput : mChildren) { for (const auto& oneChild : childrenOfOneOutput) { - children.insert(oneChild.lock()); + if (std::shared_ptr<Node> child = oneChild.lock()) { + children.insert(child); + } + else { + Log::warn("Node::getChildren(): dangling connection at output #{} for node {} (of type {})", outId, name(), type()); + } } + ++outId; } return children; } @@ -363,7 +380,12 @@ std::vector<std::shared_ptr<Aidge::Node>> Aidge::Node::getChildren(const IOIndex assert((outId < nbOutputs()) && "Output index out of bound."); std::vector<std::shared_ptr<Node>> children; for (std::size_t i = 0; i < mChildren[outId].size(); ++i) { - children.push_back(mChildren[outId][i].lock()); + if (std::shared_ptr<Node> child = mChildren[outId][i].lock()) { + children.push_back(child); + } + else { + Log::warn("Node::getChildren(): dangling connection at index #{} of output #{} for node {} (of type {})", i, outId, name(), type()); + } } return children; } diff --git a/src/operator/OperatorTensor.cpp b/src/operator/OperatorTensor.cpp index 873e93f32..cac1ad226 100644 --- a/src/operator/OperatorTensor.cpp +++ b/src/operator/OperatorTensor.cpp @@ -36,9 +36,19 @@ Aidge::OperatorTensor::OperatorTensor(const OperatorTensor& other) mInputs(std::vector<std::shared_ptr<Tensor>>(other.nbInputs(), nullptr)), mOutputs(std::vector<std::shared_ptr<Tensor>>(other.nbOutputs())) { for (std::size_t i = 0; i < static_cast<std::size_t>(nbOutputs()); ++i) { + // The characteristics of the output tensors are copied for two reasons: + // - Consistency with the operator: the output tensors backend should + // match the operator backend, which is always copied. + // - The user would expect that the data type and format are copied as + // well. + // Data is never copied in clone(). mOutputs[i] = std::make_shared<Tensor>(); - // mOutputs[i] = std::make_shared<Tensor>(*(other.getOutput(i))); - // datatype already copied + mOutputs[i]->setDataType(other.getOutput(i)->dataType()); + mOutputs[i]->setDataFormat(other.getOutput(i)->dataFormat()); + + if (!other.getOutput(i)->backend().empty()) { + mOutputs[i]->setBackend(other.getOutput(i)->backend()); + } } } diff --git a/unit_tests/recipes/Test_AdaptToBackend.cpp b/unit_tests/recipes/Test_AdaptToBackend.cpp index b7cccaf72..1238d1dc4 100644 --- a/unit_tests/recipes/Test_AdaptToBackend.cpp +++ b/unit_tests/recipes/Test_AdaptToBackend.cpp @@ -17,8 +17,10 @@ #include "aidge/graph/OpArgs.hpp" #include "aidge/operator/Conv.hpp" #include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Transpose.hpp" #include "aidge/operator/Producer.hpp" #include "aidge/recipes/Recipes.hpp" +#include "aidge/scheduler/SequentialScheduler.hpp" namespace Aidge { @@ -44,6 +46,10 @@ public: std::set<ImplSpec> implSpecsSet = Registrar<OperatorImpl_dummy>::getKeys(); return std::vector<ImplSpec>(implSpecsSet.begin(), implSpecsSet.end()); } + + void forward() override { + fmt::println("forward: {}", mOp.type()); + } }; // Register it @@ -73,13 +79,14 @@ REGISTRAR(Tensor, {"dummy", DataType::Float32}, Registrar<Tensor>::create({"cpu" TEST_CASE("[cpu/recipes] AdaptToBackend", "[AdaptToBackend][recipes]") { auto g1 = Sequential({ - Producer({16, 3, 224, 224}, "dataProvider"), - Conv(3, 32, {3, 3}, "conv1"), + Producer({1, 3, 22, 22}, "dataProvider"), + Conv(3, 4, {3, 3}, "conv1"), ReLU("relu1"), - Conv(32, 64, {3, 3}, "conv2"), + Conv(4, 8, {3, 3}, "conv2"), ReLU("relu2"), - Conv(64, 10, {1, 1}, "conv3") + Conv(8, 10, {1, 1}, "conv3") }); + g1->setBackend("dummy"); auto convOp = std::static_pointer_cast<Conv2D_Op>(g1->getNode("conv1")->getOperator()); REQUIRE(convOp->getInput(0)->dataFormat() == DataFormat::Default); @@ -90,13 +97,21 @@ TEST_CASE("[cpu/recipes] AdaptToBackend", "[AdaptToBackend][recipes]") { adaptToBackend(g1); g1->save("adapttobackend_after", true); - // FIXME: the last ~> should be ->, but no match in this case! - auto matches = SinglePassGraphMatching(g1).match("Conv2D#<-Transpose<-Producer;Conv2D#<1-Transpose<-Producer;Conv2D#<2-Producer;Conv2D#~>Transpose->ReLU"); + auto matches = SinglePassGraphMatching(g1).match("Conv2D#<-Transpose<-Producer;Conv2D#<1-Transpose<-Producer;Conv2D#<2-Producer;Conv2D#->Transpose#->ReLU"); REQUIRE(matches.size() == 1); convOp = std::static_pointer_cast<Conv2D_Op>(matches.begin()->graph->rootNode()->getOperator()); + auto outTransOp = std::static_pointer_cast<Transpose_Op>(matches.begin()->anchors.at("Transpose").at("#")->getOperator()); REQUIRE(convOp->getInput(0)->dataFormat() == DataFormat::NHWC); REQUIRE(convOp->getInput(1)->dataFormat() == DataFormat::NHWC); REQUIRE(convOp->getOutput(0)->dataFormat() == DataFormat::NHWC); + REQUIRE(outTransOp->getOutput(0)->dataFormat() == DataFormat::Default); + + // TODO: uncomment when support of NHWC will be implemented in Conv_Op::forwardDims() + //REQUIRE(g1->forwardDims()); + //g1->save("adapttobackend_after_forwarddims", true); + + //SequentialScheduler sched(g1); + //sched.forward(); } } // namespace Aidge -- GitLab From ea0d9c2485f3e876ad69393ccafdcd845c44568a Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 22 Jan 2025 17:09:54 +0100 Subject: [PATCH 127/157] Fixed binding --- python_binding/graph/pybind_Node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_binding/graph/pybind_Node.cpp b/python_binding/graph/pybind_Node.cpp index 1f67b48a0..efa18d839 100644 --- a/python_binding/graph/pybind_Node.cpp +++ b/python_binding/graph/pybind_Node.cpp @@ -66,7 +66,7 @@ void init_Node(py::module& m) { .def("__repr__", &Node::repr) .def("add_child", - (void (Node::*)(std::shared_ptr<Node>, const IOIndex_t, IOIndex_t)) & + (void (Node::*)(const std::shared_ptr<Node>&, const IOIndex_t, IOIndex_t)) & Node::addChild, py::arg("other_node"), py::arg("out_id") = 0, py::arg("other_in_id") = gk_IODefaultIndex, R"mydelimiter( -- GitLab From 8a71ba2337985e802994e8a3c62c6bc4be7aaa8c Mon Sep 17 00:00:00 2001 From: hrouis <houssemeddine.rouis92@gmail.com> Date: Tue, 24 Dec 2024 12:50:27 +0100 Subject: [PATCH 128/157] doc Abs operator --- include/aidge/operator/Abs.hpp | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/include/aidge/operator/Abs.hpp b/include/aidge/operator/Abs.hpp index f1dc37003..d8dc62752 100644 --- a/include/aidge/operator/Abs.hpp +++ b/include/aidge/operator/Abs.hpp @@ -24,16 +24,32 @@ namespace Aidge { +/** +* @brief Description of an element-wise Absolute Value (Abs) operation + * on an input Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = |x|`, where |x| denotes the absolute value of x. + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Abs_Op : public OperatorTensor, - public Registrable<Abs_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Abs_Op&)>> { + public Registrable<Abs_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::shared_ptr<OperatorImpl>(const Abs_Op&)>> { public: static const std::string Type; Abs_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Abs_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Abs_Op(const Abs_Op& op) : OperatorTensor(op) -- GitLab From 915cb68be281dc737d7e69d4302cbca51cea154d Mon Sep 17 00:00:00 2001 From: hrouis <houssemeddine.rouis92@gmail.com> Date: Tue, 7 Jan 2025 12:00:59 +0100 Subject: [PATCH 129/157] add operators doc --- include/aidge/operator/Add.hpp | 32 ++- include/aidge/operator/And.hpp | 32 ++- include/aidge/operator/ArgMax.hpp | 137 ++++++++-- include/aidge/operator/Atan.hpp | 28 +- include/aidge/operator/AvgPooling.hpp | 141 ++++++++-- include/aidge/operator/BatchNorm.hpp | 92 +++++-- include/aidge/operator/BitShift.hpp | 141 ++++++---- include/aidge/operator/Cast.hpp | 72 ++++- include/aidge/operator/Clip.hpp | 146 ++++++---- include/aidge/operator/Concat.hpp | 128 ++++++++- include/aidge/operator/Conv.hpp | 167 +++++++++--- include/aidge/operator/ConvDepthWise.hpp | 162 +++++++++-- include/aidge/operator/DepthToSpace.hpp | 107 +++++++- include/aidge/operator/Div.hpp | 28 +- include/aidge/operator/Erf.hpp | 24 +- include/aidge/operator/FC.hpp | 112 +++++++- include/aidge/operator/Flatten.hpp | 103 ++++++- include/aidge/operator/Fold.hpp | 176 ++++++++++-- include/aidge/operator/Gather.hpp | 152 +++++++++-- include/aidge/operator/GenericOperator.hpp | 154 ++++++++--- .../aidge/operator/GlobalAveragePooling.hpp | 58 ++-- include/aidge/operator/GridSample.hpp | 123 ++++++++- include/aidge/operator/Heaviside.hpp | 89 ++++-- include/aidge/operator/ILayerNorm.hpp | 53 +++- include/aidge/operator/LRN.hpp | 120 ++++++++- include/aidge/operator/LeakyReLU.hpp | 57 +++- include/aidge/operator/Ln.hpp | 23 +- include/aidge/operator/MatMul.hpp | 34 ++- include/aidge/operator/MaxPooling.hpp | 174 ++++++++++-- include/aidge/operator/Memorize.hpp | 171 +++++++++++- include/aidge/operator/MetaOperator.hpp | 140 +++++++++- include/aidge/operator/MetaOperatorDefs.hpp | 255 ++++++++++++------ include/aidge/operator/Move.hpp | 18 +- include/aidge/operator/Mul.hpp | 28 +- include/aidge/operator/Operator.hpp | 225 +++++++++++----- include/aidge/operator/OperatorTensor.hpp | 128 +++++++-- include/aidge/operator/Pad.hpp | 229 +++++++++++++--- include/aidge/operator/Pop.hpp | 142 +++++++++- include/aidge/operator/Pow.hpp | 28 +- include/aidge/operator/Producer.hpp | 226 +++++++++++++--- include/aidge/operator/ReduceMean.hpp | 126 +++++++-- include/aidge/operator/ReduceSum.hpp | 84 +++++- include/aidge/operator/Reshape.hpp | 138 +++++++++- include/aidge/operator/Round.hpp | 25 +- include/aidge/operator/Scaling.hpp | 91 ++++++- include/aidge/operator/Shape.hpp | 117 +++++++- include/aidge/operator/ShiftGELU.hpp | 40 ++- include/aidge/operator/ShiftMax.hpp | 30 ++- include/aidge/operator/Sigmoid.hpp | 26 +- include/aidge/operator/Slice.hpp | 173 ++++++++++-- include/aidge/operator/Softmax.hpp | 96 ++++++- include/aidge/operator/Split.hpp | 150 +++++++++-- include/aidge/operator/Sqrt.hpp | 20 +- include/aidge/operator/Stack.hpp | 197 +++++++++++--- include/aidge/operator/Sub.hpp | 28 +- include/aidge/operator/Tanh.hpp | 28 +- include/aidge/operator/Transpose.hpp | 119 ++++++-- include/aidge/operator/Unfold.hpp | 191 ++++++++++--- include/aidge/operator/WeightInterleaving.hpp | 13 + python_binding/operator/pybind_Add.cpp | 30 ++- python_binding/operator/pybind_And.cpp | 30 ++- python_binding/operator/pybind_Atan.cpp | 18 +- python_binding/operator/pybind_AvgPooling.cpp | 47 ++-- python_binding/operator/pybind_BatchNorm.cpp | 29 +- python_binding/operator/pybind_Clip.cpp | 49 ++-- python_binding/operator/pybind_Concat.cpp | 26 +- .../operator/pybind_ConstantOfShape.cpp | 29 +- python_binding/operator/pybind_Conv.cpp | 61 +++-- .../operator/pybind_ConvDepthWise.cpp | 69 +++-- python_binding/operator/pybind_Div.cpp | 32 ++- python_binding/operator/pybind_Erf.cpp | 21 +- python_binding/operator/pybind_FC.cpp | 29 +- python_binding/operator/pybind_Gather.cpp | 40 ++- .../operator/pybind_GlobalAveragePooling.cpp | 27 +- python_binding/operator/pybind_GridSample.cpp | 19 +- python_binding/operator/pybind_Identity.cpp | 12 +- python_binding/operator/pybind_LRN.cpp | 19 +- python_binding/operator/pybind_LeakyReLU.cpp | 20 +- python_binding/operator/pybind_Ln.cpp | 15 +- python_binding/operator/pybind_Matmul.cpp | 35 ++- python_binding/operator/pybind_MaxPooling.cpp | 39 ++- python_binding/operator/pybind_Mul.cpp | 22 +- python_binding/operator/pybind_Pad.cpp | 47 +++- python_binding/operator/pybind_Pow.cpp | 30 ++- python_binding/operator/pybind_ReLU.cpp | 36 ++- python_binding/operator/pybind_Reshape.cpp | 47 +++- python_binding/operator/pybind_Round.cpp | 33 ++- python_binding/operator/pybind_Scaling.cpp | 49 +++- python_binding/operator/pybind_Shape.cpp | 35 ++- python_binding/operator/pybind_Sigmoid.cpp | 36 ++- python_binding/operator/pybind_Slice.cpp | 44 ++- python_binding/operator/pybind_Softmax.cpp | 21 +- python_binding/operator/pybind_Split.cpp | 51 +++- python_binding/operator/pybind_Sqrt.cpp | 22 +- python_binding/operator/pybind_Sub.cpp | 32 ++- python_binding/operator/pybind_Tanh.cpp | 24 +- 96 files changed, 6176 insertions(+), 1196 deletions(-) diff --git a/include/aidge/operator/Add.hpp b/include/aidge/operator/Add.hpp index 827fc0c27..fcd154b6e 100644 --- a/include/aidge/operator/Add.hpp +++ b/include/aidge/operator/Add.hpp @@ -24,16 +24,42 @@ namespace Aidge { +/** + * @brief Description of an element-wise Add operation on input Tensors, + * supporting NumPy broadcasting. + * + * For each pair of elements x and y from the input Tensors, the function + * is defined as: + * `f(x, y) = x + y` + * + * Broadcasting adjusts shapes of the input Tensors to make them compatible: + * - Tensors are aligned from the rightmost dimensions. + * - Dimensions are compatible if they are equal, one of them is 1, or missing. + * + * The output Tensor shape is determined by taking the maximum size along + * each dimension of the input Tensors after broadcasting. + * + * @example Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + * @example Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + * + * @see OperatorTensor + * @see Registrable + */ class Add_Op : public OperatorTensor, - public Registrable<Add_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Add_Op&)>> { + public Registrable<Add_Op, + std::string, + std::function<std::shared_ptr<OperatorImpl>(const Add_Op&)>> +{ public: static const std::string Type; Add_Op(); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Add_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Add_Op(const Add_Op& op); diff --git a/include/aidge/operator/And.hpp b/include/aidge/operator/And.hpp index e4f04e2fa..32b6684a0 100644 --- a/include/aidge/operator/And.hpp +++ b/include/aidge/operator/And.hpp @@ -25,23 +25,39 @@ namespace Aidge { /** - * @brief Tensor element-wise logical and operation. + * @brief Description of an element-wise And operation on input Tensors, + * supporting NumPy broadcasting. + * + * For each pair of elements x and y from the input Tensors, the function + * is defined as: + * `f(x, y) = x && y` + * + * Broadcasting adjusts shapes of the input Tensors to make them compatible: + * - Tensors are aligned from the rightmost dimensions. + * - Dimensions are compatible if they are equal, one of them is 1, or missing. + * + * The output Tensor shape is determined by taking the maximum size along + * each dimension of the input Tensors after broadcasting. + * + * Examples: + * 1. Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + * 2. Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + * + * @see OperatorTensor + * @see Registrable */ class And_Op : public OperatorTensor, public Registrable<And_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const And_Op&)>> { public: static const std::string Type; - /** - * @brief Compute element-wise and operation on two given inputs. - * @details supports broadcasting of both operands. - */ And_Op() : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), - * but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op And_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ And_Op(const And_Op& op) : OperatorTensor(op) diff --git a/include/aidge/operator/ArgMax.hpp b/include/aidge/operator/ArgMax.hpp index a2d344cba..7358899a9 100644 --- a/include/aidge/operator/ArgMax.hpp +++ b/include/aidge/operator/ArgMax.hpp @@ -26,15 +26,53 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class ArgMaxAttr { Axis, KeepDims, SelectLastIndex }; + +enum class ArgMaxAttr { + /** + * @brief Specifies the dimension along which the ArgMax operation is performed. + */ + Axis, + /** + * Indicates whether reduced dimensions should be kept or removed. + */ + KeepDims, + /** + * Determines whether to select the first or last index in case of ties. + */ + SelectLastIndex +}; /** - * @brief This operator has as purpose to reduce given dimension by replacing with the Max value's index. -*/ + * @brief Description of the ArgMax operation on a Tensor. + * + * The ArgMax operation identifies the index of the maximum value along a specified axis of a Tensor. + * + * The output of the ArgMax operation can retain the dimensionality of the input Tensor or reduce + * it by removing the specified axis. Additionally, in cases where multiple maximum values exist, + * the user can specify whether to select the first or the last occurrence of the maximum value. + * + * Attributes: + * - `Axis`: The axis along which the ArgMax operation is performed. For example, if the axis is `0`, + * the operation is applied along rows; if it is `1`, it is applied along columns. + * - `KeepDims`: A boolean indicating whether to retain the reduced axis as a dimension of size `1` + * (`true`) or to completely remove it (`false`). + * - `SelectLastIndex`: A boolean indicating how to handle ties (multiple maximum values along the axis): + * - If `true`, the last index of the maximum value is selected. + * - If `false`, the first index of the maximum value is selected. + * + * @example: + * - Input Tensor: Shape (2, 3) + * - ArgMax(axis=1, keep_dims=false, select_last_index=false): + * Output Tensor: Shape (2) + * + * @see OperatorTensor + * @see Registrable + */ class ArgMax_Op : public OperatorTensor, public Registrable<ArgMax_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ArgMax_Op &)>> { public: + /// The type of the operator as a string. static const std::string Type; private: @@ -44,18 +82,17 @@ private: bool>; template <ArgMaxAttr e> using attr = typename Attributes_::template attr<e>; + /// Pointer to the attribute storage. const std::shared_ptr<Attributes_> mAttributes; public: ArgMax_Op() = delete; /** - * @brief constructor for ArgMax op - * @param[in] axis around which perform the operation - * @param[in] keep_dims if true we set a dimension of 1 in the place of the reduced axis and - * if false we remove the dimension completely - * @param[in] select_last_index in case we have many maximum, if true the last index is returned - * if false the first index is returned. + * @brief Constructs an ArgMax operator. + * @param[in] axis The axis along which the ArgMax operation is performed. + * @param[in] keep_dims Whether to retain reduced dimensions with size 1 (`true`) or remove them (`false`). + * @param[in] select_last_index Whether to select the last occurrence of the maximum value (`true`) or the first (`false`). */ ArgMax_Op(std::int32_t axis = 0, bool keep_dims = true, bool select_last_index = false) : OperatorTensor(Type, {InputCategory::Data}, 1), @@ -66,54 +103,104 @@ public: {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy constructor for the ArgMax operator. + * + * Creates a new ArgMax_Op instance by copying attributes and output tensors from another + * instance. The input tensors are not copied, so the new instance has no inputs associated. + * + * @param op The ArgMax_Op instance to copy. */ ArgMax_Op(const ArgMax_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::ArgMax_Op + * @brief Creates a copy of the current ArgMax operator. + * @return A shared pointer to the new ArgMax operator instance. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Performs dimension inference for the ArgMax operation. + * @param[in] allowDataDependency Whether data dependency is allowed during dimension inference. + * @return `true` if dimensions were successfully inferred, `false` otherwise. + */ bool forwardDims(bool allowDataDependency = false) override final; + /** + * @brief Sets the backend for the operator. + * @param name The name of the backend. + * @param device The device index on which the backend operates (default is 0). + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override final; + + /** + * @brief Retrieves a list of available backends for the ArgMax operator. + * @return A set of strings representing the available backends. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Gets the attribute storage for the ArgMax operator. + * @return A shared pointer to the attribute storage. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Gets a reference to the axis attribute. + * @return A reference to the axis attribute. + */ inline std::int32_t& axis() const noexcept { return mAttributes -> getAttr<ArgMaxAttr::Axis>(); } + + /** + * @brief Gets a reference to the keepDims attribute. + * @return A reference to the keepDims attribute. + */ inline bool& keepDims() const noexcept { return mAttributes -> getAttr<ArgMaxAttr::KeepDims>(); } - inline bool& selectLastIndex() const noexcept { return mAttributes -> getAttr<ArgMaxAttr::SelectLastIndex>(); } + /** + * @brief Gets a reference to the selectLastIndex attribute. + * @return A reference to the selectLastIndex attribute. + */ + inline bool& selectLastIndex() const noexcept { return mAttributes -> getAttr<ArgMaxAttr::SelectLastIndex>(); } + /** + * @brief Returns the names of the input tensors for the ArgMax operator. + * @return A vector of strings containing the input names. + */ static const std::vector<std::string> getInputsName() { return {"data_input"}; } + + /** + * @brief Returns the names of the output tensors for the ArgMax operator. + * @return A vector of strings containing the output names. + */ static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; /** - * @brief Compute the max value of a Tensor over the provided axes. Dimensions - * may be reduced by erasing the provided axis or not. + * @brief Creates an ArgMax operation node. + * + * This function constructs a new Node containing an ArgMax_Op operator with the specified + * attributes. * - * @param axis Dimension over which data max should be computed. - * @param keep_dims Whether or not reduced dimensions are to be erased. - * @param select_last_index Whether to select the last index of max elements in case there are many maximums. - * By default the first max element index is - * @param name Name of the Operator. - * @return std::shared_ptr<Node> Node containing the Operator. + * @param[in] axis The axis along which the ArgMax operation is performed. + * @param[in] keep_dims Whether to retain reduced dimensions with size 1 (`true`) or remove them (`false`). + * @param[in] select_last_index Whether to select the last occurrence of the maximum value (`true`) or the first (`false`). + * @param[in] name The name of the Node (optional). + * @return A shared pointer to the newly created Node. */ std::shared_ptr<Node> ArgMax(std::int32_t axis = 0, - bool keep_dims = true, - bool select_last_index = false, - const std::string& name = ""); + bool keep_dims = true, + bool select_last_index = false, + const std::string& name = ""); } // namespace Aidge +/** + * @brief Provides string representations for the ArgMaxAttr enumeration. + */ namespace { template <> const char *const EnumStrings<Aidge::ArgMaxAttr>::data[] = {"axis", "keep_dims", "select_last_index"}; diff --git a/include/aidge/operator/Atan.hpp b/include/aidge/operator/Atan.hpp index f9c7d09e7..6f81ab0a8 100644 --- a/include/aidge/operator/Atan.hpp +++ b/include/aidge/operator/Atan.hpp @@ -24,15 +24,41 @@ namespace Aidge { +/** + * @brief Description of an element-wise Arc Tangent (Atan) operation + * on an input Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = atan(x)`, where atan(x) is the arc tangent of x, + * returning the angle in radians whose tangent is x. + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Atan_Op : public OperatorTensor, - public Registrable<Atan_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Atan_Op&)>> { + public Registrable<Atan_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::shared_ptr<OperatorImpl>(const Atan_Op&)>> +{ public: static const std::string Type; Atan_Op(); + /** + * @brief Copy-constructor. + * @param op Atan_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. + */ Atan_Op(const Atan_Op& op); + /** + * @brief Clone the operator using its copy-constructor. + * @see Operator::Atan_Op + */ std::shared_ptr<Operator> clone() const override; void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; diff --git a/include/aidge/operator/AvgPooling.hpp b/include/aidge/operator/AvgPooling.hpp index 54b40907e..981f71762 100644 --- a/include/aidge/operator/AvgPooling.hpp +++ b/include/aidge/operator/AvgPooling.hpp @@ -24,30 +24,72 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class AvgPoolingAttr { StrideDims, KernelDims }; +/** + * @brief Attributes specific to the AvgPooling operation. + */ +enum class AvgPoolingAttr { + /** + * @brief Stride dimensions for sliding the pooling window. + * Specifies the step size of the sliding window along each spatial dimension. + */ + StrideDims, + + /** + * @brief Kernel dimensions for the pooling operation. + * Specifies the size of the pooling window along each spatial dimension. + */ + KernelDims +}; +/** + * @brief Class representing an Average Pooling operation. + * + * The AvgPooling operation computes the average value within sliding windows of specified size + * (kernel dimensions) over the input tensor. The stride dimensions determine how the window + * moves across the input. This operation is commonly used in neural networks to reduce the spatial + * dimensions while preserving features. + * + * @tparam DIM Number of dimensions for the pooling operation. + */ template <DimIdx_t DIM> class AvgPooling_Op : public OperatorTensor, public Registrable<AvgPooling_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const AvgPooling_Op<DIM> &)>> { public: + /** + * @brief Type identifier for the AvgPooling operation. + */ static const std::string Type; private: + /** + * @brief Static attributes representing kernel and stride dimensions. + */ using Attributes_ = StaticAttributes<AvgPoolingAttr, std::array<DimSize_t, DIM>, std::array<DimSize_t, DIM>>; template <AvgPoolingAttr e> using attr = typename Attributes_::template attr<e>; + + /** + * @brief Shared pointer to the attributes of the operation. + */ const std::shared_ptr<Attributes_> mAttributes; public: - + /** + * @brief Default constructor is deleted. + */ AvgPooling_Op() = delete; - + /** + * @brief Constructs an AvgPooling operation with specified kernel and stride dimensions. + * @param kernel_dims Size of the pooling window for each spatial dimension. + * @param stride_dims Step size (stride) for sliding the pooling window across the input dimensions. + * Defaults to 1 for each dimension. + */ constexpr AvgPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1)) + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t, DIM>(1)) : OperatorTensor(Type, {InputCategory::Data}, 1), mAttributes(std::make_shared<Attributes_>( attr<AvgPoolingAttr::StrideDims>(stride_dims), @@ -55,48 +97,107 @@ public: {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op AvgPooling_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ AvgPooling_Op(const AvgPooling_Op<DIM>& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::AvgPooling_Op + * @brief Clones the operator using its copy-constructor. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override final; - + /** + * @brief Calculates the output dimensions based on the input dimensions and operator attributes. + * @param allowDataDependency If true, considers data-dependent operations. Defaults to false. + * @return True if the dimensions are successfully calculated. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; - + /** + * @brief Computes the receptive field of the operator. + * @param firstEltDims Dimensions of the first element. + * @param outputDims Dimensions of the output tensor. + * @param outputIdx Index of the output tensor. Defaults to 0. + * @return A vector of pairs representing the receptive fields. + */ std::vector<std::pair<std::vector<DimSize_t>, std::vector<DimSize_t>>> computeReceptiveField(const std::vector<DimSize_t>& firstEltDims, - const std::vector<DimSize_t>& outputDims, - const IOIndex_t outputIdx = 0) const override final; - + const std::vector<DimSize_t>& outputDims, + const IOIndex_t outputIdx = 0) const override final; + /** + * @brief Sets the backend for the operation. + * @param name Name of the backend. + * @param device Device index. Defaults to 0. + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override final; + + /** + * @brief Retrieves the available backends for the operation. + * @return A set of strings representing the available backends. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Accessor for the operation attributes. + * @return Shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Accessor for the stride dimensions. + * @return An array representing the stride dimensions. + */ inline std::array<DimSize_t, DIM>& strideDims() const { return mAttributes->template getAttr<AvgPoolingAttr::StrideDims>(); } + + /** + * @brief Accessor for the kernel dimensions. + * @return An array representing the kernel dimensions. + */ inline std::array<DimSize_t, DIM>& kernelDims() const { return mAttributes->template getAttr<AvgPoolingAttr::KernelDims>(); } + /** + * @brief Retrieves the names of the input tensors. + * @return A vector of strings representing the input tensors names. + */ static const std::vector<std::string> getInputsName() { return {"data_input"}; } + + /** + * @brief Retrieves the names of the output tensors. + * @return A vector of strings representing the output tensors names. + */ static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Creates an AvgPooling operator node. + * @tparam DIM Number of dimensions for the pooling operation. + * @param kernel_dims Size of the pooling window for each spatial dimension. + * @param name Name of the operator node. Defaults to an empty string. + * @param stride_dims Step size (stride) for sliding the pooling window across the input dimensions. Defaults to 1 for each dimension. + * @return A shared pointer to the created operator node. + */ template <std::array<DimSize_t, 1>::size_type DIM> std::shared_ptr<Node> AvgPooling(const std::array<DimSize_t, DIM> &kernel_dims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1)); - -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction + const std::string& name = "", + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1)); + +/** + * @brief Overload of AvgPooling for C-style arrays. + * @tparam DIM Number of dimensions for the pooling operation. + * @param kernel_dims C-style array specifying the kernel dimensions. + * @param name Name of the operator node. Defaults to an empty string. + * @param stride_dims Step size (stride) for sliding the pooling window across the input dimensions. Defaults to 1 for each dimension. + * @return A shared pointer to the created operator node. + */ template <DimSize_t DIM> inline std::shared_ptr<Node> AvgPooling( DimSize_t const (&kernel_dims)[DIM], @@ -107,12 +208,18 @@ inline std::shared_ptr<Node> AvgPooling( } } // namespace Aidge +/** + * @brief Explicit template instantiations for AvgPooling_Op with 1 to 4 dimensions. + */ extern template class Aidge::AvgPooling_Op<1>; extern template class Aidge::AvgPooling_Op<2>; extern template class Aidge::AvgPooling_Op<3>; extern template class Aidge::AvgPooling_Op<4>; namespace { +/** + * @brief String representation of the AvgPooling attributes. + */ template <> const char *const EnumStrings<Aidge::AvgPoolingAttr>::data[] = { "stride_dims", diff --git a/include/aidge/operator/BatchNorm.hpp b/include/aidge/operator/BatchNorm.hpp index 8f33380b2..ddffaeb02 100644 --- a/include/aidge/operator/BatchNorm.hpp +++ b/include/aidge/operator/BatchNorm.hpp @@ -24,31 +24,83 @@ namespace Aidge { -enum class BatchNormAttr { Epsilon, Momentum, TrainingMode }; +enum class BatchNormAttr { + /** + * @brief Epsilon value to avoid division by zero during normalization. + * + * A small value added to the denominator during normalization to ensure numerical stability. + * Commonly used in batch normalization to avoid very small variance values. + */ + Epsilon, + + /** + * @brief Momentum factor for the moving average of batch statistics. + * + * Controls the weighting of past running averages in the batch normalization statistics. + * - `0.0`: Full reliance on current batch statistics. + * - `1.0`: Complete reliance on the previous moving average. + */ + Momentum, + + /** + * @brief Flag indicating whether the operator is in training mode. + * + * - `true`: Uses the current batch statistics for normalization. + * - `false`: Uses moving average statistics accumulated during training. + */ + TrainingMode +}; +/** + * @class BatchNorm_Op + * @brief Implements the Batch Normalization (BN) operation, a technique used to normalize the inputs of a layer. + * + * BatchNorm standardizes the inputs to a layer by adjusting and scaling activations based on the batch's mean and variance. + * This operator computes the following: + * - Normalization of input features + * - Scaling and shifting of normalized values based on learned parameters + * + * @example: + * - Input shape: (batch_size, num_features) // Batch size, number of features + * - Epsilon: 1e-5 + * - Momentum: 0.1 + * - TrainingMode: true + * - Output shape: (batch_size, num_features) + * + * @see OperatorTensor + * @see Registrable + */ template <DimIdx_t DIM> class BatchNorm_Op : public OperatorTensor, public Registrable<BatchNorm_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const BatchNorm_Op<DIM> &)>> { + public: static const std::string Type; private: using Attributes_ = StaticAttributes<BatchNormAttr, float, float, bool>; + template <BatchNormAttr e> using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; public: - BatchNorm_Op() = delete; + /** + * @brief Constructor for BatchNorm operator. + * @param[in] epsilon Small value to add to the denominator for numerical stability. + * @param[in] momentum Momentum for the moving average of statistics. + * @param[in] trainingMode Flag indicating whether to use current or moving average statistics. + */ constexpr BatchNorm_Op(float epsilon, float momentum, bool trainingMode) : OperatorTensor(Type, {InputCategory::Data, - InputCategory::Param, - InputCategory::Param, - InputCategory::Param, - InputCategory::Param}, + InputCategory::Param, + InputCategory::Param, + InputCategory::Param, + InputCategory::Param}, 1), mAttributes(std::make_shared<Attributes_>( attr<BatchNormAttr::Epsilon>(epsilon), @@ -68,29 +120,35 @@ public: */ std::shared_ptr<Operator> clone() const override; - // Data operator[](const char* inputName) override final { - // std::shared_ptr<Tensor> in = (strcmp(inputName, "data")) ? mInputs[0] : - // (strcmp(inputName, "weight") ? mInputs[1] : - // (strcmp(inputName, "bias") ? mInputs[2] : - // nullptr)); - // assert((in!=nullptr) && "No such parameter"); - // return *in; - // } - - bool forwardDims(bool /*allowDataDependency*/ = false) override final; void setBackend(const std::string &name, DeviceIdx_t device = 0) override final; std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the epsilon value. + */ inline float& epsilon() const { return mAttributes->template getAttr<BatchNormAttr::Epsilon>(); } + + /** + * @brief Get the momentum value. + */ inline float& momentum() const { return mAttributes->template getAttr<BatchNormAttr::Momentum>(); } + + /** + * @brief Get whether the operator is in training mode. + */ inline bool& trainingMode() const { return mAttributes->template getAttr<BatchNormAttr::TrainingMode>(); } static const std::vector<std::string> getInputsName() { return {"data_input", "scale", "shift", "mean", "variance"}; } + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } @@ -117,4 +175,4 @@ template <> const char *const EnumStrings<Aidge::BatchNormAttr>::data[] = { "epsilon", "momentum", "training_mode" }; } -#endif //AIDGE_CORE_OPERATOR_BATCHNORM_H_ +#endif /* AIDGE_CORE_OPERATOR_BATCHNORM_H_ */ diff --git a/include/aidge/operator/BitShift.hpp b/include/aidge/operator/BitShift.hpp index bd14bea76..711cf8585 100644 --- a/include/aidge/operator/BitShift.hpp +++ b/include/aidge/operator/BitShift.hpp @@ -23,38 +23,70 @@ #include "aidge/utils/Types.h" #include "aidge/utils/StaticAttributes.hpp" - namespace Aidge { - enum class BitShiftAttr { BitShiftdirection }; + + +enum class BitShiftAttr { + /** + * + */ + BitShiftdirection +}; /** - * @brief Tensor BitShift Operator + * @class BitShift_Op + * @brief A tensor operator to perform element-wise bitwise shift operations on tensors. + * + * The operator takes two inputs: + * - **InputTensor**: The tensor whose elements will be shifted. + * - **ShiftAmount**: The tensor specifying the shift amount for each element. + * + * The shift is applied in the direction specified by the attribute `BitShiftdirection`, + * which can either be `left` or `right`. + * + * @see OperatorTensor + * @see Registrable */ class BitShift_Op : public OperatorTensor, public Registrable<BitShift_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const BitShift_Op&)>> { + public: - enum BitShiftDirection {left,right}; + /** + * @enum BitShiftDirection + * @brief Specifies the direction of the bitwise shift. + */ + enum BitShiftDirection { left, right }; + + /** + * @brief Type identifier for the operator. + */ static const std::string Type; -private: - using Attributes_ = StaticAttributes<BitShiftAttr,BitShiftDirection>; - template <BitShiftAttr e> using attr = typename Attributes_::template attr<e>; +private: + using Attributes_ = StaticAttributes<BitShiftAttr, BitShiftDirection>; + + template <BitShiftAttr e> + using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; -public: - BitShift_Op(BitShiftDirection direction) - : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 1), - mAttributes(std::make_shared<Attributes_>( - attr<BitShiftAttr::BitShiftdirection>(direction))) - {} +public: + /** + * @brief Constructor to initialize the `BitShift_Op` with a shift direction. + * @param[in] direction The direction of the bitwise shift (left or right). + */ + BitShift_Op(BitShiftDirection direction) + : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 1), + mAttributes(std::make_shared<Attributes_>( + attr<BitShiftAttr::BitShiftdirection>(direction))) {} - /**¨PPPP - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), - * but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + /** + * @brief Copy-constructor. Copies operator attributes and output tensors but not input tensors. + * @param[in] op Operator instance to copy. */ BitShift_Op(const BitShift_Op& op) - : OperatorTensor(op),mAttributes(op.mAttributes) + : OperatorTensor(op), + mAttributes(op.mAttributes) { if (op.mImpl) { SET_IMPL_MACRO(BitShift_Op, *this, op.backend()); @@ -65,61 +97,76 @@ public: /** * @brief Clone the operator using its copy-constructor. - * @see Operator::BitShift_Op + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override { return std::make_shared<BitShift_Op>(*this); } bool forwardDims(bool allowDataDependency = false) override final; - + /** - * @brief Setter to specify which backend to use - * - * @return Boolean + * @brief Set the backend to be used for this operator. + * @param[in] name Backend name. + * @param[in] device Device index (default: 0). */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the set of available backends for this operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; - + /** - * @brief Getter to retrieve Attributes of the bitshift class - * - * @return Attributes + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } /** - * @brief Retrieve the direction in which the shift should be applied (right or left) - * - * @return BitShiftDirection + * @brief Retrieve the direction of the bitwise shift (left or right). + * @return The direction of the bitwise shift. */ - inline BitShiftDirection& direction() const noexcept { return mAttributes ->template getAttr<BitShiftAttr::BitShiftdirection>(); } - - static const std::vector<std::string> getInputsName(){ - return {"InputTensor", "ShiftAmount"}; - } - static const std::vector<std::string> getOutputsName(){ - return {"OutputTensor"}; + inline BitShiftDirection& direction() const noexcept { + return mAttributes->template getAttr<BitShiftAttr::BitShiftdirection>(); } + /** + * @brief Get the names of the input tensors. + * @return A vector containing the input tensor names. + */ + static const std::vector<std::string> getInputsName() { + return { "InputTensor", "ShiftAmount" }; + } + /** + * @brief Get the names of the output tensors. + * @return A vector containing the output tensor names. + */ + static const std::vector<std::string> getOutputsName() { + return { "OutputTensor" }; + } }; + /** - * @brief The bitwise shift operator performs an element-wise operation between the input tensor and the shift tensor in - the direction specified by "direction" - * @param[in] direction Direction of the bitshift (Left or Right) - * @param[in] name Name of the node - * @return std::shared_ptr<Node> + * @brief Factory function to create a `BitShift` node. + * @param[in] direction The direction of the bitwise shift (`left` or `right`). + * @param[in] name (Optional) Name of the node. + * @return A shared pointer to the created node. */ - inline std::shared_ptr<Node> BitShift(const BitShift_Op::BitShiftDirection direction, const std::string& name = "") { - return std::make_shared<Node>(std::make_shared<BitShift_Op>(direction), name); - } +inline std::shared_ptr<Node> BitShift(const BitShift_Op::BitShiftDirection direction, const std::string& name = "") { + return std::make_shared<Node>(std::make_shared<BitShift_Op>(direction), name); +} + } // namespace Aidge namespace { +/** + * @brief Specialization of `EnumStrings` for `BitShiftAttr`. + */ template <> -const char *const EnumStrings<Aidge::BitShiftAttr>::data[] = {"BitShiftdirection"}; - +const char* const EnumStrings<Aidge::BitShiftAttr>::data[] = { "BitShiftdirection" }; } #endif /* AIDGE_CORE_OPERATOR_BITSHIFT_H_ */ diff --git a/include/aidge/operator/Cast.hpp b/include/aidge/operator/Cast.hpp index 3fa1bb22a..1f934fbc7 100644 --- a/include/aidge/operator/Cast.hpp +++ b/include/aidge/operator/Cast.hpp @@ -30,22 +30,55 @@ public: void forward() override; }; -enum class CastAttr { TargetType }; +/** + * @enum CastAttr + * @brief Enum class defining the attributes for the Cast operator. + */ +enum class CastAttr { + /** + * @brief Target data type for the cast operation. + */ + TargetType +}; +/** + * @brief Description of the Cast operation to convert a tensor's data type. + * + * The Cast operator changes the data type of input tensor elements to a specified target type. + * + * ### Attributes: + * - `TargetType`: Specifies the data type to which the tensor elements are cast. + * + * @see OperatorTensor + * @see Registrable + */ class Cast_Op : public OperatorTensor, public Registrable<Cast_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Cast_Op&)>> { + public: + /** + * @brief Type string identifying this operator. + */ static const std::string Type; private: using Attributes_ = StaticAttributes<CastAttr, DataType>; + template <CastAttr e> using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Deleted default constructor. + */ Cast_Op() = delete; + /** + * @brief Constructor for Cast operator. + * @param[in] targetType The desired data type to which the tensor will be cast. + */ Cast_Op(const DataType targetType); /** @@ -65,31 +98,56 @@ public: } /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Cast_Op + * @brief Clone the operator using its copy constructor. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override { return std::make_shared<Cast_Op>(*this); } + void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + std::set<std::string> getAvailableBackends() const override; + /** + * @brief Access the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the target data type for the cast operation. + * @return Reference to the target data type. + */ inline DataType& targetType() const { return mAttributes->template getAttr<CastAttr::TargetType>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get the input tensor names for the Cast operator. + * @return A vector containing the input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output tensor names for the Cast operator. + * @return A vector containing the output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; - +/** + * @brief Factory function to create a Cast node. + * @param[in] targetType The desired data type to cast to. + * @param[in] name Name of the operator node. + * @return A shared pointer to the created Cast node. + */ std::shared_ptr<Node> Cast(const DataType targetType, const std::string& name = ""); -} // namespace Aidge +} // namespace Aidge namespace { template <> diff --git a/include/aidge/operator/Clip.hpp b/include/aidge/operator/Clip.hpp index aa37b5032..0825b85bb 100644 --- a/include/aidge/operator/Clip.hpp +++ b/include/aidge/operator/Clip.hpp @@ -25,98 +25,152 @@ namespace Aidge { -enum class ClipAttr { Min, Max }; - +/** + * @enum ClipAttr + * @brief Enum class defining the attributes for the Clip operator. + */ +enum class ClipAttr { + Min, /**< Minimum value for clipping. */ + Max /**< Maximum value for clipping. */ +}; +/** + * @brief Description of the Clip operation to limit tensor values within a specified range. + * + * The Clip operator ensures tensor elements are within the range `[min, max]`. + * - Values less than `min` are set to `min`. + * - Values greater than `max` are set to `max`. + * + * The input and output Tensors have the same dimensions. + * + * ### Attributes: + * - `Min`: Minimum value for clipping. + * - `Max`: Maximum value for clipping. + * + * @see OperatorTensor + * @see Registrable + */ class Clip_Op : public OperatorTensor, public Registrable<Clip_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Clip_Op&)>> { public: + /** + * @brief Type string identifying this operator. + */ static const std::string Type; + private: using Attributes_ = StaticAttributes<ClipAttr, float, float>; - template <ClipAttr e> using attr = typename Attributes_::template attr<e>; + + template <ClipAttr e> + using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Deleted default constructor. + */ Clip_Op() = delete; - Clip_Op(float min,float max) : - OperatorTensor(Type, {InputCategory::Data,InputCategory::OptionalData,InputCategory::OptionalData}, 1), - mAttributes(std::make_shared<Attributes_>(attr<ClipAttr::Min>(min), attr<ClipAttr::Max>(max))) - {} + /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Constructor for Clip operator. + * @param[in] min Minimum value for clipping. + * @param[in] max Maximum value for clipping. + */ + Clip_Op(float min, float max) + : OperatorTensor(Type, {InputCategory::Data, InputCategory::OptionalData, InputCategory::OptionalData}, 1), + mAttributes(std::make_shared<Attributes_>(attr<ClipAttr::Min>(min), attr<ClipAttr::Max>(max))) {} + + /** + * @brief Copy-constructor. Copies operator attributes and output tensors, but not input tensors. + * @param op Clip_Op instance to copy. */ Clip_Op(const Clip_Op& op) : OperatorTensor(op), mAttributes(op.mAttributes) - { - if (op.mImpl){ + if (op.mImpl) { SET_IMPL_MACRO(Clip_Op, *this, op.backend()); - }else{ + } else { mImpl = nullptr; } } /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Clip_Op + * @brief Clone the operator using its copy constructor. + * @return A shared pointer to the cloned operator. */ - std::shared_ptr<Operator> clone() const override - { + std::shared_ptr<Operator> clone() const override { return std::make_shared<Clip_Op>(*this); } + bool dimsForwarded() const override final; bool forwardDims(bool allowDataDependency = false) override final; - + /** - * @brief Setter to specify the backend to use + * @brief Setter to specify the backend to use. */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + + /** + * @brief Access the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + /** - * @brief Getter and Setter for min attribute value - * @return float& - */ + * @brief Getter for the minimum clipping value. + * @return Reference to the minimum value. + */ inline float& min() const noexcept { return mAttributes->getAttr<ClipAttr::Min>(); } + /** - * @brief Getter and Setter for max attribute value - * @return float& - */ + * @brief Getter for the maximum clipping value. + * @return Reference to the maximum value. + */ inline float& max() const noexcept { return mAttributes->getAttr<ClipAttr::Max>(); } std::set<std::string> getAvailableBackends() const override; - static const std::vector<std::string> getInputsName(){ - return {"data_input","min_empty_tensor","max_empty_tensor"}; + /** + * @brief Get the input tensor names for the Clip operator. + * @return A vector containing the input tensor names. + */ + static const std::vector<std::string> getInputsName() { + return { "data_input", "min_empty_tensor", "max_empty_tensor" }; } - static const std::vector<std::string> getOutputsName(){ - return {"data_output"}; + + /** + * @brief Get the output tensor names for the Clip operator. + * @return A vector containing the output tensor names. + */ + static const std::vector<std::string> getOutputsName() { + return { "data_output" }; } }; - /** - * @brief The Clip operator is a tensor operator that performs a clipping operation on tensor elements. - This class allows limiting tensor values to a specified range, defined by the min - and max parameters (Tensors of empty shapes). Values outside this range are replaced by the corresponding limit values - When ‘min’ is greater than ‘max’, the clip operator sets all the ‘input’ values to the value of ‘max’ - * @param[in] name Name of the node - * @param[in] min Min clip value as attribute - * @param[in] max Max clip value as attribute - * @return std::shared_ptr<Node> - */ - std::shared_ptr<Aidge::Node> Clip( - const std::string &name = "", - float min = std::numeric_limits<float>::lowest(), - float max = std::numeric_limits<float>::max() - ); -} +/** + * @brief Factory function to create a Clip node. + * @param[in] name Name of the node. + * @param[in] min Minimum clipping value (default: lowest float). + * @param[in] max Maximum clipping value (default: maximum float). + * @return A shared pointer to the created Clip node. + */ +std::shared_ptr<Aidge::Node> Clip( + const std::string& name = "", + float min = std::numeric_limits<float>::lowest(), + float max = std::numeric_limits<float>::max() +); + +} // namespace Aidge + namespace { +/** + * @brief Specialization of EnumStrings for ClipAttr. + */ template <> -const char* const EnumStrings<Aidge::ClipAttr>::data[] - = {"min", "max"}; +const char* const EnumStrings<Aidge::ClipAttr>::data[] = { "min", "max" }; } #endif /* AIDGE_CORE_OPERATOR_CLIP_H_ */ diff --git a/include/aidge/operator/Concat.hpp b/include/aidge/operator/Concat.hpp index 98835dd2a..83914b673 100644 --- a/include/aidge/operator/Concat.hpp +++ b/include/aidge/operator/Concat.hpp @@ -26,68 +26,170 @@ #include "aidge/utils/Types.h" namespace Aidge { + +/** + * @class Concat_OpImpl + * @brief Implementation of the Concat operator. + * + * Since Concat operation is backend-agnostic, its implementation is located in aidge_core. + */ class Concat_OpImpl : public OperatorImpl { public: + /** + * @brief Constructor for Concat_OpImpl. + * @param[in] op Operator instance. + * @param[in] backend Name of the backend. + */ Concat_OpImpl(const Operator& op, const std::string& backend = "") : OperatorImpl(op, backend) {} + + /** + * @brief Perform the forward pass of the Concat operator. + */ void forward() override; }; -enum class ConcatAttr { Axis }; +enum class ConcatAttr { + /** + * @brief Axis along which to concat the input tensor. + * + * The specified axis determines the direction of concatenating. + */ + Axis +}; +/** + * @class Concat_Op + * @brief Implements the Concat operation to concatenate multiple tensors along a specified axis. + * + * The Concat operation combines multiple input tensors into a single tensor by concatenating them + * along a specified axis. The tensors must have the same shape except for the concatenating axis. + * + * ### Output Shape Calculation + * - Input shapes: [(N1, D1, D2, ..., DN), (N2, D1, D2, ..., DN), ...] + * - Axis: 1 + * - Output shape: (N1 + N2, D1, D2, ..., DN) + * + * @example: + * - Input shapes: [(2, 4, 8), (3, 4, 8), (1, 4, 8)] + * - Axis: 0 + * - Output shape: (6, 4, 8) + * + * @see OperatorTensor + * @see Registrable + */ class Concat_Op : public OperatorTensor, public Registrable<Concat_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Concat_Op&)>> { + public: + /** + * @brief Type identifier for the Concat operator. + */ static const std::string Type; private: using Attributes_ = StaticAttributes<ConcatAttr, std::int32_t>; + template <ConcatAttr e> using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Default constructor is deleted to enforce explicit initialization. + */ Concat_Op() = delete; + /** + * @brief Constructor to initialize the Concat operator. + * @param[in] nbIn Number of input tensors. + * @param[in] axis Axis along which concatenation is performed. + */ Concat_Op(const IOIndex_t nbIn, const std::int32_t axis); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. Copies the operator attributes and its output tensors, + * but not its input tensors (the new operator has no input associated). + * @param[in] op Operator to copy. */ Concat_Op(const Concat_Op& op); /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Concat_Op + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Forward the dimensions of the operator's inputs and outputs. + * @param[in] allowDataDependency Allow data dependency during dimension propagation. + * @return True if dimensions were forwarded successfully. + */ bool forwardDims(bool allowDataDependency = false) override final; + /** + * @brief Set the backend for the operator. + * @param[in] name Backend name. + * @param[in] device Device index (default: 0). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the set of available backends for the operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the Concat operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get or modify the axis along which tensors are concatenated. + * @return A reference to the axis attribute. + */ inline std::int32_t& axis() const { return mAttributes->template getAttr<ConcatAttr::Axis>(); } - static const std::vector<std::string> getInputsName(){ - return {"data_input_0", "data_input_n"}; + /** + * @brief Get the names of the input tensors. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { + return { "data_input_0", "data_input_n" }; } - static const std::vector<std::string> getOutputsName(){ - return {"data_output"}; + + /** + * @brief Get the names of the output tensors. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { + return { "data_output" }; } }; +/** + * @brief Factory function to create a Concat node. + * @param[in] nbIn Number of input tensors. + * @param[in] axis Axis along which concatenation is performed (default: 0). + * @param[in] name (Optional) Name of the node. + * @return A shared pointer to the created node. + */ std::shared_ptr<Node> Concat(const IOIndex_t nbIn, const std::int32_t axis = 0, const std::string& name = ""); -} + +} // namespace Aidge namespace { - template <> - const char* const EnumStrings<Aidge::ConcatAttr>::data[] = { - "axis" - }; +/** + * @brief Specialization of EnumStrings for ConcatAttr. + */ +template <> +const char* const EnumStrings<Aidge::ConcatAttr>::data[] = { + "axis" +}; } #endif /* AIDGE_CORE_OPERATOR_CONCAT_H_ */ diff --git a/include/aidge/operator/Conv.hpp b/include/aidge/operator/Conv.hpp index cd1a57dd9..8984ebd08 100644 --- a/include/aidge/operator/Conv.hpp +++ b/include/aidge/operator/Conv.hpp @@ -30,8 +30,45 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class ConvAttr { StrideDims, DilationDims, KernelDims }; +/** + * @enum ConvAttr + * @brief Attributes used for the Convolution operation. + */ +enum class ConvAttr { + StrideDims, // The stride dimensions + DilationDims, // The dilation dimensions + KernelDims // The kernel dimensions +}; + +/** + * @class Conv_Op + * @brief Convolution operator for performing a multi-dimensional convolution. + * + * The Conv_Op class implements a convolution operator for tensors with customizable + * kernel dimensions, stride, and dilation values. The operator performs a convolution + * operation on the input tensor and produces an output tensor. + * + * ### Attributes: + * - `strideDims`: Stride for each dimension of the input. + * - `dilationDims`: Dilation for each dimension of the input. + * - `kernelDims`: Kernel size for each dimension. + * + * The output shape will depend on the kernel size, stride, and dilation values: + * Output Dimension=((Input Dimension−Kernel Dimension+2×Padding​)/Stride)+1 + * + * @example: Basic 2D Convolution + * - Input shape: (1, 3, 32, 32) + * - Kernel dimensions: {3, 3} (2D kernel) + * - Stride dimensions: {1, 1} (stride of 1 in both height and width) + * - Dilation dimensions: {1, 1} (no dilation) + * - Padding: None + * - Output shape: + * (1, 64, (32−3+2×0)/1+1, (32−3+2×0)/1+1) = (1, 64, 30, 30) + * + * @see OperatorTensor + * @see Registrable + */ template <DimIdx_t DIM> class Conv_Op : public OperatorTensor, public Registrable<Conv_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Conv_Op<DIM> &)>> { @@ -44,13 +81,21 @@ private: std::array<DimSize_t, DIM>, std::array<DimSize_t, DIM>, std::array<DimSize_t, DIM>>; + template <ConvAttr e> using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; public: Conv_Op() = delete; + /** + * @brief Constructor for the Conv_Op operator. + * @param[in] kernelDims The dimensions of the kernel. + * @param[in] strideDims The stride dimensions (default is an array of ones). + * @param[in] dilationDims The dilation dimensions (default is an array of ones). + */ constexpr Conv_Op(const std::array<DimSize_t, DIM> &kernelDims, const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)) @@ -62,43 +107,58 @@ public: {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op The Conv_Op to copy. + * @details This constructor copies the operator attributes and its output tensors, but not the input tensors. */ Conv_Op(const Conv_Op<DIM>& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Conv_Op + * @brief Clone the operator using its copy constructor. + * @return A shared pointer to the cloned Conv_Op object. */ std::shared_ptr<Operator> clone() const override { return std::make_shared<Conv_Op<DIM>>(*this); } - // Data operator[](const char* inputName) override final { - // std::shared_ptr<Tensor> in = (strcmp(inputName, "data")) ? getInput(0) : - // (strcmp(inputName, "weight") ? getInput(1) : - // (strcmp(inputName, "bias") ? getInput(2) : - // nullptr)); - // assert((in!=nullptr) && "No such parameter"); - // return *in; - // } - - // std::shared_ptr<Conv_Op> clone() const override final { - - // } + /** + * @brief Compute forward dimensions for the operator. + * @param allowDataDependency Flag to allow data dependency in dimension calculation. + * @return true if the dimensions are computed successfully. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; + /** + * @brief Calculate the receptive field of the convolution operation. + * @param firstEltDims The dimensions of the first element. + * @param outputDims The dimensions of the output tensor. + * @param outputIdx Index of the output tensor. + * @return A pair containing the receptive field dimensions. + */ std::vector<std::pair<std::vector<DimSize_t>, std::vector<DimSize_t>>> computeReceptiveField(const std::vector<DimSize_t>& firstEltDims, const std::vector<DimSize_t>& outputDims, const IOIndex_t outputIdx = 0) const override; - + /** + * @brief Set the backend for the operator. + * @param name The name of the backend. + * @param device The device index (default is 0). + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the list of available backends for the operator. + * @return A set of available backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the number of input channels. + * @return The number of input channels. + * @throws std::runtime_error If the operator has no associated weight tensor. + */ DimSize_t inChannels() const { if (!getInput(1)) { AIDGE_THROW_OR_ABORT(std::runtime_error, "Convolution operator has no weight Tensor associated so no specific number of input channel imposed."); @@ -106,6 +166,11 @@ public: return getInput(1)->template dims<DIM+2>()[1]; } + /** + * @brief Get the number of output channels. + * @return The number of output channels. + * @throws std::runtime_error If the operator has no associated weight tensor. + */ DimSize_t outChannels() const { if (!getInput(1)) { AIDGE_THROW_OR_ABORT(std::runtime_error, "Convolution operator has no weight Tensor associated so no specific number of output channel imposed."); @@ -113,43 +178,70 @@ public: return getInput(1)->template dims<DIM+2>()[0]; } + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the operator's attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the stride dimensions. + * @return The stride dimensions as a reference. + */ inline std::array<DimSize_t, DIM>& strideDims() const { return mAttributes->template getAttr<ConvAttr::StrideDims>(); } + + /** + * @brief Get the dilation dimensions. + * @return The dilation dimensions as a reference. + */ inline std::array<DimSize_t, DIM>& dilationDims() const { return mAttributes->template getAttr<ConvAttr::DilationDims>(); } - inline std::array<DimSize_t, DIM>& kernelDims() const { return mAttributes->template getAttr<ConvAttr::KernelDims>(); } + /** + * @brief Get the kernel dimensions. + * @return The kernel dimensions as a reference. + */ + inline std::array<DimSize_t, DIM>& kernelDims() const { return mAttributes->template getAttr<ConvAttr::KernelDims>(); } static const std::vector<std::string> getInputsName(){ return {"data_input", "weight", "bias"}; } + static const std::vector<std::string> getOutputsName(){ return {"data_output"}; } }; - /** - * @brief Perform a convolution on the input Tensor. + * @brief Create a Conv_Op operator for performing convolution. * - * @tparam DIM Number of dimensions for the feature map. - * @param inChannels Number of input channels. - * @param outChannels Number of output channels. - * @param kernelDims Dimensions of the kernel. Must be the same number of dimensions as the feature map. - * @param name Name of the operator. - * @param strideDims Dimensions of the stride attribute. Must be the same number of dimensions as the feature map. - * @param dilationDims Dimensions of the dilation attribute. Must be the same number of dimensions as the feature map. - * @return std::shared_ptr<Node> A Node containing the operator. + * This function constructs a Convolution operation by specifying the input and output channels, + * kernel dimensions, stride, and dilation dimensions. + * + * @tparam DIM The number of dimensions of the input tensor. + * @param[in] inChannels The number of input channels. + * @param[in] outChannels The number of output channels. + * @param[in] kernelDims The kernel dimensions. + * @param[in] name The name of the operator (optional). + * @param[in] strideDims The stride dimensions (optional). + * @param[in] dilationDims The dilation dimensions (optional). + * @param[in] noBias A flag indicating if no bias is used (default is false). + * @return A shared pointer to the created Node containing the Conv_Op. */ template <std::array<DimSize_t, 1>::size_type DIM> std::shared_ptr<Node> Conv(DimSize_t inChannels, - DimSize_t outChannels, - const std::array<DimSize_t, DIM> &kernelDims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1), - bool noBias = false); - -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction + DimSize_t outChannels, + const std::array<DimSize_t, DIM> &kernelDims, + const std::string& name = "", + const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1), + bool noBias = false); + +/** + * @brief Helper function for Conv with C-style arrays. + * + * This helper function allows automatic template deduction of the number of dimensions (DIM) + * based on the kernel dimensions provided. + */ template <DimSize_t DIM> inline std::shared_ptr<Node> Conv( DimSize_t inChannels, @@ -162,6 +254,7 @@ inline std::shared_ptr<Node> Conv( static_assert(DIM<=MaxDim,"Too many kernel dimensions required by Conv, not supported"); return Conv(inChannels, outChannels, to_array(kernelDims), name, strideDims, dilationDims, noBias); } + } // namespace Aidge extern template class Aidge::Conv_Op<1>; diff --git a/include/aidge/operator/ConvDepthWise.hpp b/include/aidge/operator/ConvDepthWise.hpp index f0a55a299..03e821041 100644 --- a/include/aidge/operator/ConvDepthWise.hpp +++ b/include/aidge/operator/ConvDepthWise.hpp @@ -29,62 +29,120 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class ConvDepthWiseAttr { StrideDims, DilationDims, KernelDims }; +enum class ConvDepthWiseAttr { + StrideDims, // The stride dimensions for the convolution. + DilationDims, // The dilation dimensions for the convolution. + KernelDims // The kernel dimensions for the convolution. +}; +/** + * @class ConvDepthWise_Op + * @brief Depthwise Convolution operator for performing a multi-dimensional depthwise convolution. + * + * The ConvDepthWise_Op class implements a depthwise convolution operator for tensors with customizable + * kernel dimensions, stride, and dilation values. It performs a depthwise convolution operation on the + * input tensor and produces an output tensor. + * + * ### Attributes: + * - strideDims: Stride for each dimension of the input. + * - dilationDims: Dilation for each dimension of the input. + * - kernelDims: Kernel size for each dimension. + * + * The output shape will depend on the kernel size, stride, and dilation values: + * Output Dimension=((Input Dimension−Kernel Dimension+2×Padding)/Stride)+1 + * + * @see OperatorTensor + * @see Registrable + */ template <DimIdx_t DIM> class ConvDepthWise_Op : public OperatorTensor, public Registrable<ConvDepthWise_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const ConvDepthWise_Op<DIM> &)>> { + public: static const std::string Type; private: using Attributes_ = StaticAttributes<ConvDepthWiseAttr, - std::array<DimSize_t, DIM>, - std::array<DimSize_t, DIM>, - std::array<DimSize_t, DIM>>; + std::array<DimSize_t, DIM>, + std::array<DimSize_t, DIM>, + std::array<DimSize_t, DIM>>; + template <ConvDepthWiseAttr e> using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; public: - ConvDepthWise_Op() = delete; - constexpr ConvDepthWise_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1)) + /** + * @brief Constructor for the ConvDepthWise_Op operator. + * @param[in] kernelDims The dimensions of the kernel. + * @param[in] strideDims The stride dimensions (default is an array of ones). + * @param[in] dilationDims The dilation dimensions (default is an array of ones). + */ + constexpr ConvDepthWise_Op(const std::array<DimSize_t, DIM> &kernelDims, + const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)) : OperatorTensor(Type, {InputCategory::Data, InputCategory::Param, InputCategory::OptionalParam}, 1), mAttributes(std::make_shared<Attributes_>( - attr<ConvDepthWiseAttr::StrideDims>(stride_dims), - attr<ConvDepthWiseAttr::DilationDims>(dilation_dims), - attr<ConvDepthWiseAttr::KernelDims>(kernel_dims))) + attr<ConvDepthWiseAttr::StrideDims>(strideDims), + attr<ConvDepthWiseAttr::DilationDims>(dilationDims), + attr<ConvDepthWiseAttr::KernelDims>(kernelDims))) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op The ConvDepthWise_Op to copy. + * @details This constructor copies the operator attributes and its output tensors, but not the input tensors. */ ConvDepthWise_Op(const ConvDepthWise_Op<DIM>& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::ConvDepthWise_Op + * @brief Clone the operator using its copy constructor. + * @return A shared pointer to the cloned ConvDepthWise_Op object. */ std::shared_ptr<Operator> clone() const override { return std::make_shared<ConvDepthWise_Op<DIM>>(*this); } - + /** + * @brief Compute forward dimensions for the operator. + * @param[in] allowDataDependency Flag to allow data dependency in dimension calculation. + * @return true if the dimensions are computed successfully. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; + /** + * @brief Calculate the receptive field of the depthwise convolution operation. + * @param firstEltDims The dimensions of the first element. + * @param outputDims The dimensions of the output tensor. + * @param outputIdx Index of the output tensor. + * @return A pair containing the receptive field dimensions. + */ std::vector<std::pair<std::vector<DimSize_t>, std::vector<DimSize_t>>> computeReceptiveField(const std::vector<DimSize_t>& firstEltDims, const std::vector<DimSize_t>& outputDims, const IOIndex_t outputIdx = 0) const override; + /** + * @brief Set the backend for the operator. + * @param[in] name The name of the backend. + * @param[in] device The device index (default is 0). + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the list of available backends for the operator. + * @return A set of available backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the number of input channels. + * @return The number of input channels. + * @throws std::runtime_error If the operator has no associated weight tensor. + */ DimSize_t nbChannels() const { if (!getInput(1)) { AIDGE_THROW_OR_ABORT(std::runtime_error, "Convolution operator has no weight Tensor associated so no specific number of channel imposed."); @@ -92,28 +150,76 @@ public: return getInput(1)->template dims<DIM+2>()[0]; } + /** + * @brief Get the operator's attributes. + * @return A shared pointer to the operator's attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the stride dimensions. + * @return The stride dimensions as a reference. + */ inline std::array<DimSize_t, DIM>& strideDims() const { return mAttributes->template getAttr<ConvDepthWiseAttr::StrideDims>(); } + + /** + * @brief Get the dilation dimensions. + * @return The dilation dimensions as a reference. + */ inline std::array<DimSize_t, DIM>& dilationDims() const { return mAttributes->template getAttr<ConvDepthWiseAttr::DilationDims>(); } + + /** + * @brief Get the kernel dimensions. + * @return The kernel dimensions as a reference. + */ inline std::array<DimSize_t, DIM>& kernelDims() const { return mAttributes->template getAttr<ConvDepthWiseAttr::KernelDims>(); } + /** + * @brief Get the names of the inputs. + * @return A vector containing the input names. + */ static const std::vector<std::string> getInputsName(){ return {"data_input", "weight", "bias"}; } + + /** + * @brief Get the names of the outputs. + * @return A vector containing the output names. + */ static const std::vector<std::string> getOutputsName(){ return {"data_output"}; } }; +/** + * @brief Create a ConvDepthWise_Op operator for performing depthwise convolution. + * + * This function constructs a Depthwise Convolution operation by specifying the input channels, + * kernel dimensions, stride, and dilation dimensions. + * + * @tparam DIM The number of dimensions of the input tensor. + * @param[in] nbChannels The number of input channels. + * @param[in] kernelDims The kernel dimensions. + * @param[in] name The name of the operator (optional). + * @param[in] strideDims The stride dimensions (optional). + * @param[in] dilationDims The dilation dimensions (optional). + * @param[in] noBias A flag indicating if no bias is used (default is false). + * @return A shared pointer to the created Node containing the ConvDepthWise_Op. + */ template <std::array<DimSize_t, 1>::size_type DIM> std::shared_ptr<Node> ConvDepthWise(const DimSize_t nbChannels, - const std::array<DimSize_t, DIM> &kernelDims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1), - bool noBias=false); - -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction + const std::array<DimSize_t, DIM> &kernelDims, + const std::string& name = "", + const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1), + bool noBias = false); + +/** + * @brief Helper function for ConvDepthWise with C-style arrays. + * + * This helper function allows automatic template deduction of the number of dimensions (DIM) + * based on the kernel dimensions provided. + */ template <DimSize_t DIM> inline std::shared_ptr<Node> ConvDepthWise( const DimSize_t nbChannels, @@ -121,10 +227,11 @@ inline std::shared_ptr<Node> ConvDepthWise( const std::string& name = "", const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1), - bool noBias=false) { + bool noBias = false) { static_assert(DIM<=MaxDim,"Too many kernel dimensions required by ConvDepthWise, not supported"); return ConvDepthWise(nbChannels, to_array(kernelDims), name, strideDims, dilationDims, noBias); } + } // namespace Aidge extern template class Aidge::ConvDepthWise_Op<1>; @@ -132,8 +239,11 @@ extern template class Aidge::ConvDepthWise_Op<2>; namespace { template <> -const char *const EnumStrings<Aidge::ConvDepthWiseAttr>::data[] = {"stride_dims", "dilation_dims", - "kernel_dims"}; +const char *const EnumStrings<Aidge::ConvDepthWiseAttr>::data[] = { + "stride_dims", + "dilation_dims", + "kernel_dims" +}; } #endif /* AIDGE_CORE_OPERATOR_CONVDEPTHWISE_H_ */ diff --git a/include/aidge/operator/DepthToSpace.hpp b/include/aidge/operator/DepthToSpace.hpp index 856cd0e85..769dad767 100644 --- a/include/aidge/operator/DepthToSpace.hpp +++ b/include/aidge/operator/DepthToSpace.hpp @@ -1,4 +1,4 @@ -/******************************************************************************** +/*************************************************************************** * Copyright (c) 2023 CEA-List * * This program and the accompanying materials are made available under the @@ -7,7 +7,7 @@ * * SPDX-License-Identifier: EPL-2.0 * - ********************************************************************************/ + ***************************************************************************/ #ifndef AIDGE_CORE_OPERATOR_DEPTHTOSPACE_H_ #define AIDGE_CORE_OPERATOR_DEPTHTOSPACE_H_ @@ -23,21 +23,67 @@ #include "aidge/utils/Types.h" namespace Aidge { + +/** + * @class DepthToSpace_OpImpl + * @brief Implementation of the DepthToSpace operation for rearranging data from depth into spatial dimensions. + */ class DepthToSpace_OpImpl : public OperatorImpl { public: - DepthToSpace_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + /** + * @brief Constructor for the DepthToSpace_OpImpl. + * @param op Operator containing attributes for DepthToSpace. + * @param backend The backend used for computation. + */ + DepthToSpace_OpImpl(const Operator& op, const std::string& backend = "") : OperatorImpl(op, backend) {} + + /** + * @brief Perform the forward computation for DepthToSpace. + */ void forward() override; }; -enum class DepthToSpaceAttr { BlockSize, Mode }; - +/** + * @enum DepthToSpaceAttr + * @brief Attributes for the DepthToSpace operation. + */ +enum class DepthToSpaceAttr { + BlockSize, /**< The block size for rearranging depth to spatial dimensions. */ + Mode /**< The mode for depth-to-space transformation. */ +}; +/** + * @class DepthToSpace_Op + * @brief Represents the DepthToSpace operation to rearrange data from depth to spatial dimensions. + * + * This operator splits the depth dimension of a tensor into blocks and distributes them across spatial dimensions. + * + * ### Output Shape Calculation + * Given an input tensor with shape (N, C, H, W): + * - Block size (B): The depth dimension (C) must be divisible by B^2. + * - Output shape: (N, C / (B^2), H * B, W * B). + * + * ### Modes + * - `DCR`: Depth-Channel-Row ordering. + * - `CRD`: Channel-Row-Depth ordering. + * + * @see OperatorTensor + * @see Registrable + */ class DepthToSpace_Op : public OperatorTensor, public Registrable<DepthToSpace_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const DepthToSpace_Op &)>> { public: + /** + * @brief The type identifier for the DepthToSpace operator. + */ static const std::string Type; + + /** + * @enum Mode + * @brief Defines the modes for depth-to-space transformation. + */ enum class Mode { DCR, CRD }; private: @@ -47,15 +93,20 @@ private: const std::shared_ptr<Attributes_> mAttributes; public: - DepthToSpace_Op() = delete; + /** + * @brief Constructor for DepthToSpace_Op. + * @param blockSize Size of the blocks to split depth into spatial dimensions. + * @param mode Depth-to-space transformation mode (DCR or CRD). + */ DepthToSpace_Op(const std::uint32_t blockSize, const Mode mode = Mode::CRD); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), - * but not its input tensors (the new operator has no input associated). + * @brief Copy-constructor. * @param op Operator to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ DepthToSpace_Op(const DepthToSpace_Op& op); @@ -67,21 +118,61 @@ public: bool forwardDims(bool /*allowDataDependency*/ = false) override final; + /** + * @brief Set the backend for this operator. + * @param name Backend name. + * @param device Device index for the backend. + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override final; + + /** + * @brief Get the available backends for this operator. + * @return A set of strings representing available backends. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return Shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the block size for the DepthToSpace operation. + * @return Block size. + */ inline std::uint32_t& blockSize() const { return mAttributes->template getAttr<DepthToSpaceAttr::BlockSize>(); } + + /** + * @brief Get the mode of the DepthToSpace operation. + * @return Depth-to-space mode. + */ inline Mode& mode() const { return mAttributes->template getAttr<DepthToSpaceAttr::Mode>(); } + /** + * @brief Get the input tensor names. + * @return A vector of input tensor names. + */ static const std::vector<std::string> getInputsName() { return {"data_input"}; } + + /** + * @brief Get the output tensor names. + * @return A vector of output tensor names. + */ static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create a DepthToSpace node. + * @param blockSize Size of the blocks to split depth into spatial dimensions. + * @param mode Depth-to-space transformation mode (DCR or CRD). + * @param name Name of the operator. + * @return Shared pointer to the created DepthToSpace node. + */ std::shared_ptr<Node> DepthToSpace(const std::uint32_t blockSize, const DepthToSpace_Op::Mode mode = DepthToSpace_Op::Mode::CRD, const std::string& name = ""); diff --git a/include/aidge/operator/Div.hpp b/include/aidge/operator/Div.hpp index 5ed9e789d..5dec98814 100644 --- a/include/aidge/operator/Div.hpp +++ b/include/aidge/operator/Div.hpp @@ -24,6 +24,28 @@ namespace Aidge { +/** + * @brief Description of an element-wise Divide operation on input Tensors, + * supporting NumPy broadcasting. + * + * For each pair of elements x and y from the input Tensors, the function + * is defined as: + * `f(x, y) = x / y` + * + * Broadcasting adjusts shapes of the input Tensors to make them compatible: + * - Tensors are aligned from the rightmost dimensions. + * - Dimensions are compatible if they are equal, one of them is 1, or missing. + * + * The output Tensor shape is determined by taking the maximum size along + * each dimension of the input Tensors after broadcasting. + * + * Examples: + * 1. Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + * 2. Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + * + * @see OperatorTensor + * @see Registrable + */ class Div_Op : public OperatorTensor, public Registrable<Div_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Div_Op&)>> { @@ -33,8 +55,10 @@ public: Div_Op() : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Div_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Div_Op(const Div_Op& op) : OperatorTensor(op) diff --git a/include/aidge/operator/Erf.hpp b/include/aidge/operator/Erf.hpp index 88a4bfd29..c17e8075f 100644 --- a/include/aidge/operator/Erf.hpp +++ b/include/aidge/operator/Erf.hpp @@ -24,16 +24,34 @@ namespace Aidge { +/** + * @brief Description of an element-wise Error Function (Erf) operation + * on an input Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = erf(x)`, where erf(x) is the Gauss error function, given by: + * `erf(x) = (2 / sqrt(pi)) * integral from 0 to x of exp(-t^2) dt` + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Erf_Op : public OperatorTensor, - public Registrable<Erf_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Erf_Op&)>> { + public Registrable<Erf_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::shared_ptr<OperatorImpl>(const Erf_Op&)>> +{ public: static const std::string Type; Erf_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Erf_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Erf_Op(const Erf_Op& op); diff --git a/include/aidge/operator/FC.hpp b/include/aidge/operator/FC.hpp index 592ba4e2b..393e640d6 100644 --- a/include/aidge/operator/FC.hpp +++ b/include/aidge/operator/FC.hpp @@ -24,20 +24,58 @@ #include "aidge/utils/Registrar.hpp" namespace Aidge { + +/** + * @brief Description of a Fully Connected (FC) operation on an input Tensor. + * + * The Fully Connected (FC) operation applies a linear transformation to the input Tensor + * by multiplying it with a weight matrix and optionally adding a bias vector: + * - If `bias` is included: + * f(x) = x × weights^T + bias + * - If `bias` is omitted: + * f(x) = x × weights^T + * + * Attributes: + * - `inChannels`: The number of input features (or channels). Determined from the dimensions + * of the weight Tensor. This represents the size of the input vector. + * - `outChannels`: The number of output features (or channels). Determined from the dimensions + * of the weight Tensor. This represents the size of the output vector. + * - `noBias`: A boolean value indicating whether the bias vector is omitted in the operation. + * + * @example: + * - Input Tensor: Shape (64, 128) // Batch size of 64, 128 input features + * - Weights: Shape (256, 128) // 128 input channels, 256 output channels + * - Bias: Shape (256) // Bias vector (optional) + * - Output Tensor: Shape (64, 256) // Batch size of 64, 256 output features + * @see OperatorTensor + * @see Registrable + */ class FC_Op : public OperatorTensor, public Registrable<FC_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const FC_Op &)>> { public: + /** + * @brief Static type identifier for the FC operator. + */ static const std::string Type; + /** + * @brief Default constructor for the FC operator. + * + * Initializes the operator with a type identifier and input categories. + */ FC_Op() : OperatorTensor(Type, {InputCategory::Data, InputCategory::Param, InputCategory::OptionalParam}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy constructor. + * + * Copies the attributes and output tensor(s) of the operator, but does not + * copy input tensors. The new operator instance has no associated inputs. + * + * @param op The `FC_Op` instance to copy. */ FC_Op(const FC_Op& op) : OperatorTensor(op) @@ -50,18 +88,56 @@ public: } /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::FC_Op + * @brief Clones the operator using its copy constructor. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override final; + /** + * @brief Associates an input tensor with the operator. + * + * This method links the specified input tensor to the operator's input slot. + * + * @param[in] inputIdx Index of the input to associate. + * @param[in] data Shared pointer to the input tensor data. + */ void associateInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) override final; + /** + * @brief Computes the output dimensions during the forward pass. + * + * Calculates the dimensions of the output tensor based on the input dimensions, + * weights, and optional parameters. + * + * @param[in] allowDataDependency Flag to allow data-dependent dimension computation. + * @return Boolean indicating the success of the dimension computation. + */ bool forwardDims(bool allowDataDependency = false) override final; + /** + * @brief Sets the backend for the operator. + * + * Configures the backend used for computation. + * + * @param[in] name Name of the backend. + * @param[in] device Index of the target device (default is 0). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Retrieves the available backends for the operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Gets the number of input channels for the FC operator. + * + * Retrieves the number of input channels from the weight tensor. + * + * @return Number of input channels. + * @throws std::runtime_error if no weight tensor is associated with the operator. + */ DimSize_t inChannels() const { if (!getInput(1)) { AIDGE_THROW_OR_ABORT(std::runtime_error, "Fully Connected (FC) operator has no weight Tensor associated so no specific number of input channel imposed."); @@ -69,6 +145,14 @@ public: return getInput(1)->template dims<2>()[1]; } + /** + * @brief Gets the number of output channels for the FC operator. + * + * Retrieves the number of output channels from the weight tensor. + * + * @return Number of output channels. + * @throws std::runtime_error if no weight tensor is associated with the operator. + */ DimSize_t outChannels() const { if (!getInput(1)) { AIDGE_THROW_OR_ABORT(std::runtime_error, "Fully Connected (FC) operator has no weight Tensor associated so no specific number of output channel imposed."); @@ -76,14 +160,34 @@ public: return getInput(1)->template dims<2>()[0]; } + /** + * @brief Retrieves the input tensor names for the FC operator. + * @return A vector of input tensor names: `{"data_input", "weight", "bias"}`. + */ static const std::vector<std::string> getInputsName() { return {"data_input", "weight", "bias"}; } + + /** + * @brief Retrieves the output tensor names for the FC operator. + * @return A vector of output tensor names: `{"data_output"}`. + */ static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Creates a Fully Connected operation node. + * + * Constructs an FC operator node with the specified input and output channels. + * + * @param[in] inChannels Number of input channels. + * @param[in] outChannels Number of output channels. + * @param[in] noBias Flag indicating whether to use a bias term (default is `false`). + * @param[in] name Name of the operator (optional). + * @return A shared pointer to the Node containing the FC operator. + */ std::shared_ptr<Node> FC(const DimSize_t inChannels, const DimSize_t outChannels, bool noBias = false, const std::string& name = ""); } // namespace Aidge diff --git a/include/aidge/operator/Flatten.hpp b/include/aidge/operator/Flatten.hpp index 9bdfc932f..a7f5c6435 100644 --- a/include/aidge/operator/Flatten.hpp +++ b/include/aidge/operator/Flatten.hpp @@ -23,59 +23,150 @@ #include "aidge/utils/Types.h" namespace Aidge { + +/** + * @brief Implementation of the Flatten operation. + * + * Since Flatten operation is just backend-agnostic, its implementation is located in aidge_core. + */ class Flatten_OpImpl : public OperatorImpl { public: + /** + * @brief Constructor for Flatten operator implementation. + * @param op Operator instance. + * @param backend Optional. Name of the backend. + */ Flatten_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + + /** + * @brief Compute the forward pass of the Flatten operation. + */ void forward() override; }; -enum class FlattenAttr { Axis }; +/** + * @enum FlattenAttr + * @brief Defines attributes for the Flatten operator. + */ +enum class FlattenAttr { + /** + * @brief The axis at which to flatten the input tensor. + */ + Axis +}; +/** + * @brief Description the Flatten operation to reshape a tensor into a 2D matrix. + * + * The Flatten operation rearranges a tensor such that the specified axis is + * the start of the second dimension, flattening all dimensions before it + * into the first dimension and all dimensions after it into the second. + * + * @example: + * - Input shape: (2, 3, 4, 5) + * - Axis: 2 + * - Output shape: (6, 20) + * + * @see OperatorTensor + * @see Registrable + */ class Flatten_Op : public OperatorTensor, public Registrable<Flatten_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Flatten_Op&)>> { public: + /** + * @brief The type identifier for the Flatten operator. + */ static const std::string Type; private: - using Attributes_ = StaticAttributes<FlattenAttr, - std::int64_t>; + using Attributes_ = StaticAttributes<FlattenAttr, std::int64_t>; template <FlattenAttr e> using attr = typename Attributes_::template attr<e>; const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Deleted default constructor. + */ Flatten_Op() = delete; + /** + * @brief Constructor for the Flatten operator. + * @param axis The axis at which to flatten the tensor. + */ Flatten_Op(std::int64_t axis = 1); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. Copies the operator attributes and its output tensor(s), but not its input tensors. + * @param[in] op Operator to copy. */ Flatten_Op(const Flatten_Op& op); /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Flatten_Op + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Compute the forward dimensions. + * @param[in] allowDataDependency Whether to allow data dependency in computation. + * @return True if successful, false otherwise. + */ bool forwardDims(bool allowDataDependency = false) override final; + /** + * @brief Set the backend for the operator. + * @param[in] name The name of the backend. + * @param[in] device Optional. The device index. + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + + /** + * @brief Get the set of available backends for the operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the axis at which the tensor is flattened. + * @return A reference to the axis attribute. + */ inline std::int64_t& axis() const { return mAttributes->template getAttr<FlattenAttr::Axis>(); } + /** + * @brief Get the names of the input tensors. + * @return A vector of input tensor names. + */ static const std::vector<std::string> getInputsName(){ return {"data_input"}; } + + /** + * @brief Get the names of the output tensors. + * @return A vector of output tensor names. + */ static const std::vector<std::string> getOutputsName(){ return {"data_output"}; } }; +/** + * @brief Create a Flatten node. + * + * Initializes a Flatten node that reshapes a tensor into a 2D matrix based + * on the specified axis. + * + * @param[in] axis The axis at which to flatten the tensor. + * @param[in] name Optional. The name of the node. + * @return A shared pointer to a Node representing the Flatten operation. + */ std::shared_ptr<Node> Flatten(std::int64_t axis = 1, const std::string &name = ""); } // namespace Aidge diff --git a/include/aidge/operator/Fold.hpp b/include/aidge/operator/Fold.hpp index 517d63adc..3b5b9449d 100644 --- a/include/aidge/operator/Fold.hpp +++ b/include/aidge/operator/Fold.hpp @@ -30,7 +30,69 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class FoldAttr { OutputDims, StrideDims, DilationDims, KernelDims }; + +/** + * @enum FoldAttr + * @brief Enumeration for the attributes of the Fold operation. + */ +enum class FoldAttr { + /** + * @brief Output dimensions of the fold operation. + * + * Specifies the shape of the output tensor after applying the fold operation. + */ + OutputDims, + + /** + * @brief Stride dimensions used during the fold operation. + * + * Strides are the step sizes in each dimension during the fold operation. + */ + StrideDims, + + /** + * @brief Dilation dimensions for the fold operation. + * + * Dilation is the spacing between elements in the kernel during the fold. + */ + DilationDims, + + /** + * @brief Kernel dimensions used for the fold operation. + * + * Specifies the size of the kernel or filter applied during the fold. + */ + KernelDims +}; + +/** + * @class Fold_Op + * @brief Implements the Fold operation to combine or transform tensor dimensions. + * + * The Fold operation applies a transformation to the tensor by folding it according to + * the specified dimensions and kernel properties. This is commonly used in operations + * like convolution or pooling, where the kernel slides over the input tensor and + * applies an operation (e.g., sum or max) over a specified region. + * + * The output shape depends on the `OutputDims`, `StrideDims`, `DilationDims`, and `KernelDims` attributes: + * Let the input tensor be of shape `(batch_size, channels, height, width)` (assuming 2D spatial dims). + * - The number of output channels is the input channels divided by the product of kernel dimensions: + * output channels = input channels / (product of kernelDims) + * - The output height and width are calculated as: + * output height (out_h) = floor((input height - kernel height) / stride height) + 1 + * output width (out_w) = floor((input width - kernel width) / stride width) + 1 + * - The exact output shape will depend on these calculations for each spatial dimension (height, width) and the number of output channels. + * + * @example: + * - Input shape: (1, 16, 32, 32) // Batch size: 1, Channels: 16, Height: 32, Width: 32 + * - Kernel dimensions: (3, 3) // 3x3 kernel + * - Stride: (1, 1) // Stride of 1 + * - Dilation: (1, 1) // No dilation + * - Output shape: (1, 16, 30, 30) // Output height and width after applying the kernel and stride + * + * @see OperatorTensor + * @see Registrable + */ template <DimIdx_t DIM> class Fold_Op : public OperatorTensor, @@ -45,16 +107,24 @@ private: std::array<DimSize_t, DIM>, std::array<DimSize_t, DIM>, std::array<DimSize_t, DIM>>; + template <FoldAttr e> using attr = typename Attributes_::template attr<e>; const std::shared_ptr<Attributes_> mAttributes; public: Fold_Op() = delete; - constexpr Fold_Op(const std::array<DimSize_t, DIM> &outputDims, - const std::array<DimSize_t, DIM> &kernelDims, - const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)) + /** + * @brief Constructor for Fold_Op operator. + * @param[in] outputDims Output dimensions of the folded tensor. + * @param[in] kernelDims Kernel size for the fold operation. + * @param[in] strideDims Stride dimensions for the fold operation. + * @param[in] dilationDims Dilation dimensions for the fold operation. + */ + constexpr Fold_Op(const std::array<DimSize_t, DIM>& outputDims, + const std::array<DimSize_t, DIM>& kernelDims, + const std::array<DimSize_t, DIM>& strideDims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, DIM>& dilationDims = create_array<DimSize_t,DIM>(1)) : OperatorTensor(Type, {InputCategory::Data}, 1), mAttributes(std::make_shared<Attributes_>( attr<FoldAttr::OutputDims>(outputDims), @@ -63,61 +133,123 @@ public: attr<FoldAttr::KernelDims>(kernelDims))) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its - * input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Fold_Op operator to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ - Fold_Op(const Fold_Op<DIM> &op); + Fold_Op(const Fold_Op<DIM>& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Fold_Op + * @brief Clone the operator using its copy constructor. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Compute forward dimensions for the operator. + * @param allowDataDependency Flag to allow data dependency in dimension calculation. + * @return true if the dimensions are computed successfully. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; - void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + /** + * @brief Set the backend for the operator. + * @param name Name of the backend. + * @param device Index of the device. + */ + void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the available backends for this operator. + * @return A set of available backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return Shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the output dimensions for the fold operation. + * @return Output dimensions of the folded tensor. + */ inline std::array<DimSize_t, DIM>& outputDims() const { return mAttributes->template getAttr<FoldAttr::OutputDims>(); } + + /** + * @brief Get the stride dimensions for the fold operation. + * @return Stride dimensions. + */ inline std::array<DimSize_t, DIM>& strideDims() const { return mAttributes->template getAttr<FoldAttr::StrideDims>(); } + + /** + * @brief Get the dilation dimensions for the fold operation. + * @return Dilation dimensions. + */ inline std::array<DimSize_t, DIM>& dilationDims() const { return mAttributes->template getAttr<FoldAttr::DilationDims>(); } + + /** + * @brief Get the kernel dimensions for the fold operation. + * @return Kernel dimensions. + */ inline std::array<DimSize_t, DIM>& kernelDims() const { return mAttributes->template getAttr<FoldAttr::KernelDims>(); } + /** + * @brief Get the input names for the Fold operation. + * @return List of input names. + */ static const std::vector<std::string> getInputsName(){ return {"data_input"}; } + + /** + * @brief Get the output names for the Fold operation. + * @return List of output names. + */ static const std::vector<std::string> getOutputsName(){ return {"data_output"}; } }; +/** + * @brief Create a Fold operation node. + * + * This function creates a Fold operation node that applies a fold transformation + * to a tensor based on the specified attributes. + * + * @param[in] outputDims Output dimensions for the fold operation. + * @param[in] kernelDims Kernel dimensions. + * @param[in] name Name of the operator. + * @param[in] strideDims Stride dimensions for the fold operation. + * @param[in] dilationDims Dilation dimensions for the fold operation. + * @return A shared pointer to the created Node. + */ template <std::array<DimSize_t, 1>::size_type DIM> -std::shared_ptr<Node> Fold(const std::array<DimSize_t, DIM> &outputDims, - const std::array<DimSize_t, DIM> &kernelDims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)); +std::shared_ptr<Node> Fold(const std::array<DimSize_t, DIM>& outputDims, + const std::array<DimSize_t, DIM>& kernelDims, + const std::string& name = "", + const std::array<DimSize_t, DIM>& strideDims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, DIM>& dilationDims = create_array<DimSize_t,DIM>(1)); template <DimSize_t DIM> inline std::shared_ptr<Node> Fold( DimSize_t const (&outputDims)[DIM], DimSize_t const (&kernelDims)[DIM], const std::string& name = "", - const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)) { - static_assert(DIM<=MaxDim,"Too many kernel dimensions required by Fold, not supported"); + const std::array<DimSize_t, DIM>& strideDims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, DIM>& dilationDims = create_array<DimSize_t,DIM>(1)) { + static_assert(DIM <= MaxDim, "Too many kernel dimensions required by Fold, not supported"); return Fold(to_array(outputDims), to_array(kernelDims), name, strideDims, dilationDims); } -} // namespace Aidge extern template class Aidge::Fold_Op<2>; +} // namespace Aidge + namespace { template <> -const char *const EnumStrings<Aidge::FoldAttr>::data[] = { +const char* const EnumStrings<Aidge::FoldAttr>::data[] = { "output_dims", "stride_dims", "dilation_dims", diff --git a/include/aidge/operator/Gather.hpp b/include/aidge/operator/Gather.hpp index 80dcdd678..dc3e1a814 100644 --- a/include/aidge/operator/Gather.hpp +++ b/include/aidge/operator/Gather.hpp @@ -25,70 +25,184 @@ #include "aidge/utils/Types.h" namespace Aidge { + +/** + * @class Gather_OpImpl + * @brief Backend implementation for the Gather operation. + * + * The Gather operation selects elements from the input tensor based on specified indices + * and an axis, producing a tensor with a gathered shape. + */ class Gather_OpImpl : public OperatorImpl { public: - Gather_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + Gather_OpImpl(const Operator& op, const std::string& backend = "") + : OperatorImpl(op, backend) {} + + /** + * @brief Execute the Gather operation. + */ void forward() override; }; -enum class GatherAttr { Axis, Indices, GatheredShape }; +enum class GatherAttr { + /** + * @brief Axis along which to gather elements. + */ + Axis, + + /** + * @brief Indices specifying which elements to gather. + */ + Indices, + + /** + * @brief Shape of the resulting gathered tensor. + */ + GatheredShape +}; +/** + * @brief Description for the Gather operation on an input tensor. + * + * The Gather operation extracts elements from an input tensor along a specified axis + * using a set of indices, resulting in a gathered tensor with a specified shape. + * + * The shape of the output tensor depends on the gathered shape attribute, the axis, + * and the indices. + * + * @see OperatorTensor + * @see Registrable + */ class Gather_Op : public OperatorTensor, - public Registrable<Gather_Op, - std::string, - std::function<std::shared_ptr<OperatorImpl>(const Gather_Op&)>> { + public Registrable<Gather_Op, + std::string, + std::function<std::shared_ptr<OperatorImpl>(const Gather_Op&)>> { public: static const std::string Type; using Attributes_ = StaticAttributes<GatherAttr, - std::int8_t, - std::vector<int64_t>, - std::vector<DimSize_t>>; + std::int8_t, + std::vector<int64_t>, + std::vector<DimSize_t>>; + private: template <GatherAttr e> using attr = typename Attributes_::template attr<e>; const std::shared_ptr<Attributes_> mAttributes; public: - + /** + * @brief Default constructor is deleted. + */ Gather_Op() = delete; + /** + * @brief Constructor for the Gather operator. + * @param[in] axis The axis along which to gather elements. + * @param[in] indices A vector specifying which elements to gather. + * @param[in] gatheredShape The shape of the resulting gathered tensor. + */ Gather_Op(std::int8_t axis, const std::vector<int64_t>& indices, const std::vector<DimSize_t>& gatheredShape); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy constructor. + * @param[in] op The Gather operator to copy. + * @details Copies the operator attributes and its output tensor(s), but not its input tensors. + * The new operator has no associated input tensors. */ Gather_Op(const Gather_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Gather_Op + * @brief Clone the operator using its copy constructor. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Check if dimensions have been forwarded. + * @return True if dimensions have been forwarded, false otherwise. + */ bool dimsForwarded() const override final; + + /** + * @brief Forward the dimensions. + * @param[in] allowDataDependency Whether to allow data dependency during dimension forwarding. + * @return True if successful, false otherwise. + */ bool forwardDims(bool allowDataDependency = false) override final; + /** + * @brief Set the backend for the operator. + * @param name The name of the backend. + * @param device Optional. The device index. + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the available backends for the operator. + * @return A set of available backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } - inline std::int8_t& axis() const { return mAttributes -> getAttr<GatherAttr::Axis>(); } - inline std::vector<int64_t>& indices() const { return mAttributes -> getAttr<GatherAttr::Indices>(); } - inline std::vector<DimSize_t>& gatheredShape() const { return mAttributes -> getAttr<GatherAttr::GatheredShape>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get the axis along which elements are gathered. + * @return The axis attribute. + */ + inline std::int8_t& axis() const { return mAttributes->getAttr<GatherAttr::Axis>(); } + + /** + * @brief Get the indices specifying which elements to gather. + * @return The indices attribute. + */ + inline std::vector<int64_t>& indices() const { return mAttributes->getAttr<GatherAttr::Indices>(); } + + /** + * @brief Get the shape of the gathered tensor. + * @return The gathered shape attribute. + */ + inline std::vector<DimSize_t>& gatheredShape() const { return mAttributes->getAttr<GatherAttr::GatheredShape>(); } + + /** + * @brief Get the input tensor names. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input", "indices"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output tensor names. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; -std::shared_ptr<Node> Gather(std::int8_t axis = 0, const std::vector<int64_t>& indices = {}, const std::vector<DimSize_t>& gatheredShape = {}, const std::string& name = ""); +/** + * @brief Create a Gather node. + * + * Initializes a Gather node that extracts elements from an input tensor + * along a specified axis using a set of indices. + * + * @param[in] axis The axis along which to gather elements. Default is 0. + * @param[in] indices A vector specifying which elements to gather. Default is an empty vector. + * @param[in] gatheredShape The shape of the resulting gathered tensor. Default is an empty vector. + * @param[in] name Optional. The name of the node. + * @return A shared pointer to a Node representing the Gather operation. + */ +std::shared_ptr<Node> Gather(std::int8_t axis = 0, + const std::vector<int64_t>& indices = {}, + const std::vector<DimSize_t>& gatheredShape = {}, + const std::string& name = ""); + } // namespace Aidge namespace { diff --git a/include/aidge/operator/GenericOperator.hpp b/include/aidge/operator/GenericOperator.hpp index f2e4722aa..023f197e3 100644 --- a/include/aidge/operator/GenericOperator.hpp +++ b/include/aidge/operator/GenericOperator.hpp @@ -22,103 +22,181 @@ #include "aidge/utils/Registrar.hpp" #include "aidge/utils/Types.h" - namespace Aidge { + +/** + * @class GenericOperator_Op + * @brief Represents a generic operator used as a fallback when the requested operator is not natively supported by Aidge. + * + * This class enables the import and simulation of unknown or custom operators. + * It provides a flexible structure for defining operators dynamically with attributes, inputs, and outputs. + * + * @see OperatorTensor + * @see Registrable + */ class GenericOperator_Op : public OperatorTensor, public Registrable<GenericOperator_Op, std::array<std::string, 2>, std::function<std::shared_ptr<OperatorImpl>(const GenericOperator_Op &)>> { private: using ComputeDimsFunc = std::function<std::vector<std::vector<size_t>>(const std::vector<std::vector<size_t>>&)>; + /// Function to compute output dimensions based on input dimensions. ComputeDimsFunc mForwardDims; + /// Dynamic attributes associated with the operator. const std::shared_ptr<DynamicAttributes> mAttributes; public: + + /** + * @brief Constructs a generic operator with input categories and output count. + * @param[in] type Type of the operator (e.g., the operator name or key). + * @param[in] inputsCategory Vector specifying the categories of inputs. + * @param[in] nbOut Number of output tensors produced by the operator. + */ GenericOperator_Op(const std::string& type, const std::vector<InputCategory>& inputsCategory, IOIndex_t nbOut); + /** + * @brief Constructs a generic operator with specified data, parameters, and output counts. + * @param[in] type Type of the operator. + * @param[in] nbData Number of data inputs. + * @param[in] nbParam Number of parameter inputs. + * @param[in] nbOut Number of output tensors. + */ GenericOperator_Op(const std::string& type, IOIndex_t nbData, IOIndex_t nbParam, IOIndex_t nbOut); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op Operator to copy. + * @details Copies the operator attributes and its output tensor(s), but does not associate input tensors with the new operator. */ GenericOperator_Op(const GenericOperator_Op& op); + /** + * @brief Destructor. + */ ~GenericOperator_Op() noexcept; /** * @brief Clone the operator using its copy-constructor. * @see Operator::GenericOperator_Op + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; public: + + /** + * @brief Computes the output dimensions of the operator. + * @param[in] allowDataDependency If true, allows computations based on data dependencies. + * @return True if dimensions are successfully computed, otherwise false. + */ bool forwardDims(bool allowDataDependency = false) override final; + /** + * @brief Sets the backend for the operator. + * @param[in] name Backend name. + * @param[in] device Device index for the backend. + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override; - std::set<std::string> getAvailableBackends() const override { return std::set<std::string>(); }; + + /** + * @brief Retrieves the available backends for the operator. + * @return A set of available backend names. + */ + std::set<std::string> getAvailableBackends() const override { return std::set<std::string>(); } + + /** + * @brief Retrieves the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + /** + * @brief Retrieves a specific attribute by name. + * @tparam T Expected type of the attribute. + * @param[in] name Name of the attribute. + * @return Reference to the attribute value. + */ template <class T> - inline T& getAttr(const std::string& name) - { return mAttributes -> template getAttr<T>(name); } + inline T& getAttr(const std::string& name) { return mAttributes->template getAttr<T>(name); } + + /** + * @brief Retrieves a specific attribute by name (const version). + * @tparam T Expected type of the attribute. + * @param[in] name Name of the attribute. + * @return Value of the attribute. + */ template <class T> - inline T getAttr(const std::string& name) const - { return mAttributes -> template getAttr<T>(name); } + inline T getAttr(const std::string& name) const { return mAttributes->template getAttr<T>(name); } - ///\brief Add a new Attribute, identified by its name. If it already exists, asserts. - ///\tparam T expected Attribute type - ///\param name Attribute name - ///\param value Attribute value + /** + * @brief Adds a new attribute or asserts if it already exists. + * @tparam T Expected type of the attribute. + * @param[in] name Name of the attribute. + * @param[in] value Value to set for the attribute. + */ template <class T> - inline void addAttr(const std::string& name, const T& value) const - { mAttributes -> template addAttr<T>(name, value); } + inline void addAttr(const std::string& name, const T& value) const { mAttributes->template addAttr<T>(name, value); } + /** + * @brief Sets multiple attributes at once. + * @param[in] attrs A map of attribute names to values. + */ inline void setAttrs(const std::map<std::string, future_std::any>& attrs) { *mAttributes = attrs; } // Helper functions that can be used with setForwardDims(): + /** + * @brief Identity function for forward dimension computation. + */ static const ComputeDimsFunc Identity; + + /** + * @brief Function to copy input dimensions to output dimensions. + * @param[in] inputIdx Index of the input whose dimensions are to be copied. + * @param[in] nbOutputs Number of outputs to generate. + * @return A ComputeDimsFunc instance. + */ static const ComputeDimsFunc InputIdentity(IOIndex_t inputIdx, IOIndex_t nbOutputs); - inline void setForwardDims(ComputeDimsFunc func) { - mForwardDims = func; - } + + /** + * @brief Sets the forward dimension computation function. + * @param[in] func The function to compute output dimensions. + */ + inline void setForwardDims(ComputeDimsFunc func) { mForwardDims = func; } }; /** - * @brief Generic operator not associated with any implementation. - * Allows to import unknown operators and simulate new ones. - * @param type Type of the generic operator. - * @param inputCategory List inputs with their category - * @param nbOut Number of output data. - * @param name (optional) name of the Operator. - * @return std::shared_ptr<Node> Node associated with the Generic Operator. + * @brief Creates a generic operator with input categories and output count. + * @param[in] type Type of the operator. + * @param[in] inputCategory List of input categories. + * @param[in] nbOut Number of output tensors. + * @param[in] name Optional name for the operator. + * @return A shared pointer to the created operator node. */ std::shared_ptr<Node> GenericOperator(const std::string& type, const std::vector<InputCategory>& inputCategory, IOIndex_t nbOut, const std::string& name = ""); /** - * @brief Generic operator not associated with any implementation. - * Allows to import unknown operators and simulate new ones. - * @param type Type of the generic operator. - * @param nbData Number of input data. - * @param nbParam Number of parameters. - * @param nbOut Number of output data. - * @param name (optional) name of the Operator. - * @return std::shared_ptr<Node> Node associated with the Generic Operator. + * @brief Creates a generic operator with specified input and output counts. + * @param[in] type Type of the operator. + * @param[in] nbData Number of input data tensors. + * @param[in] nbParam Number of parameter tensors. + * @param[in] nbOut Number of output tensors. + * @param[in] name Optional name for the operator. + * @return A shared pointer to the created operator node. */ std::shared_ptr<Node> GenericOperator(const std::string& type, IOIndex_t nbData, IOIndex_t nbParam, IOIndex_t nbOut, const std::string& name = ""); /** - * @brief Generic operator not associated with any implementation. - * Create a generic operator from another existing operator. - * @param type Type of the generic operator. - * @param op Original operator from witch one wants to derive a generic operator. - * @param name (optional) name of the Operator. - * @return std::shared_ptr<Node> Node associated with the Generic Operator. + * @brief Creates a generic operator based on another operator. + * @param[in] type Type of the generic operator. + * @param[in] op Existing operator to derive from. + * @param[in] name Optional name for the operator. + * @return A shared pointer to the created operator node. */ std::shared_ptr<Aidge::Node> GenericOperator(const std::string& type, std::shared_ptr<OperatorTensor> op, diff --git a/include/aidge/operator/GlobalAveragePooling.hpp b/include/aidge/operator/GlobalAveragePooling.hpp index ef440e8c6..0cfc16cca 100644 --- a/include/aidge/operator/GlobalAveragePooling.hpp +++ b/include/aidge/operator/GlobalAveragePooling.hpp @@ -25,9 +25,25 @@ namespace Aidge { /** - * @brief Description for the tensor data structure. - * @details Sets the properties of the tensor without actually containing any - * data. Contains a pointer to an actual contiguous implementation of data. + * @brief Description of a Global Average Pooling operation on an input Tensor. + * + * Global Average Pooling computes the average value of each feature map (channel) + * in the input Tensor across all spatial dimensions (height and width). + * + * For each channel in the input Tensor, the function is defined as: + * `f(x) = (sum(x)) / N`, where `x` represents the spatial elements in that channel, + * and `N` is the total number of spatial elements (height * width) in the input. + * + * The output Tensor retains the batch and channel dimensions, but the spatial dimensions + * are reduced to 1. Specifically: + * - If the input has shape `(N, C, H, W)`, where: + * - `N` is the batch size + * - `C` is the number of channels + * - `H` and `W` are the spatial dimensions + * - Then the output shape will be `(N, C, 1, 1)`. + * + * @see OperatorTensor + * @see Registrable */ class GlobalAveragePooling_Op : public OperatorTensor, @@ -35,25 +51,35 @@ class GlobalAveragePooling_Op std::function<std::shared_ptr<OperatorImpl>( const GlobalAveragePooling_Op &)>> { public: - static const std::string Type; + static const std::string Type; - GlobalAveragePooling_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} + GlobalAveragePooling_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} - GlobalAveragePooling_Op(const GlobalAveragePooling_Op &op); + /** + * @brief Copy-constructor. + * @param op GlobalAveragePooling_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. + */ + GlobalAveragePooling_Op(const GlobalAveragePooling_Op &op); - std::shared_ptr<Operator> clone() const override; + /** + * @brief Clone the operator using its copy-constructor. + * @see Operator::GlobalAveragePooling_Op + */ + std::shared_ptr<Operator> clone() const override; - bool forwardDims(bool allowDataDependency = false) override final; + bool forwardDims(bool allowDataDependency = false) override final; - void setBackend(const std::string &name, DeviceIdx_t device = 0) override final; - std::set<std::string> getAvailableBackends() const override; + void setBackend(const std::string &name, DeviceIdx_t device = 0) override final; + std::set<std::string> getAvailableBackends() const override; - static const std::vector<std::string> getInputsName() { - return {"data_input"}; - } - static const std::vector<std::string> getOutputsName() { - return {"data_output"}; - } + static const std::vector<std::string> getInputsName() { + return {"data_input"}; + } + static const std::vector<std::string> getOutputsName() { + return {"data_output"}; + } }; std::shared_ptr<Node> GlobalAveragePooling(const std::string &name = ""); diff --git a/include/aidge/operator/GridSample.hpp b/include/aidge/operator/GridSample.hpp index fbf1be071..999f7bba1 100644 --- a/include/aidge/operator/GridSample.hpp +++ b/include/aidge/operator/GridSample.hpp @@ -24,16 +24,57 @@ #include "aidge/utils/logger/EnumString.hpp" namespace Aidge { +enum class GridSampleAttr { + Mode, // Specifies the interpolation mode (e.g., Linear, Nearest, Cubic). + PaddingMode, // Specifies how to handle out-of-boundary grid values. + AlignCorners // Determines whether grid values are normalized to align with the image corners. +}; -enum class GridSampleAttr { Mode, PaddingMode, AlignCorners }; - +/** + * @class GridSample_Op + * @brief Implements the GridSample operation for sampling input data using a grid. + * + * GridSample is used to perform spatial transformation on an input tensor by + * sampling its values based on a grid tensor. It supports different + * interpolation and padding modes for flexibility. + * + * ### Attributes: + * - **Mode**: Determines the interpolation technique to use. + * - `Linear`: Bilinear interpolation. + * - `Nearest`: Nearest neighbor interpolation. + * - `Cubic`: Bicubic interpolation. + * - **PaddingMode**: Specifies how to handle grid values outside the input boundaries. + * - `Zeros`: Pads with zeros. + * - `Border`: Extends the edge values. + * - `Reflection`: Mirrors the input tensor. + * - **AlignCorners**: Aligns grid points with the corners of the input image. + * - `true`: Aligns grid values to the image corners. + * - `false`: Normalizes grid values in the range [-1, 1]. + * + * ### Example Usage: + * - Input shape: (N, C, H, W) // Batch size N, Channels C, Height H, Width W. + * - Grid shape: (N, H_out, W_out, 2) // Grid specifying output coordinates. + * - Output shape: (N, C, H_out, W_out). + * + * @see OperatorTensor + * @see Registrable + */ class GridSample_Op : public OperatorTensor, public Registrable<GridSample_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const GridSample_Op&)>> { public: static const std::string Type; + /** + * @enum Mode + * @brief Interpolation modes available for GridSample. + */ enum class Mode { Linear, Nearest, Cubic }; + + /** + * @enum PaddingMode + * @brief Padding modes available for GridSample. + */ enum class PaddingMode { Zeros, Border, Reflection }; private: @@ -43,36 +84,103 @@ private: const std::shared_ptr<Attributes_> mAttributes; public: - + /** + * @brief Constructs a GridSample operator with specified attributes. + * @param[in] mode Interpolation mode (e.g., Linear, Nearest, Cubic). + * @param[in] paddingMode Padding mode (e.g., Zeros, Border, Reflection). + * @param[in] alignCorners Whether to align grid values with input corners. + */ GridSample_Op(Mode mode = Mode::Linear, - PaddingMode paddingMode = PaddingMode::Zeros, - bool alignCorners = false); + PaddingMode paddingMode = PaddingMode::Zeros, + bool alignCorners = false); + /** + * @brief Copy-constructor. Copies the operator attributes and its output tensor(s). + * @param[in] other Operator to copy. + */ GridSample_Op(const GridSample_Op& other); - ~GridSample_Op() noexcept; -public: + /** + * @brief Destructor. + */ + ~GridSample_Op() noexcept; + /** + * @brief Clone the operator using its copy-constructor. + * @return A shared pointer to the cloned operator. + */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Determines whether dimensions can be forwarded. + * @param allowDataDependencies Allow data-dependent dimensions. + * @return True if dimensions are forwarded successfully. + */ bool forwardDims(bool /*allowDataDependencies*/ = false) override final; + /** + * @brief Sets the backend for execution. + * @param name Backend name. + * @param device Device index. + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + + /** + * @brief Retrieves the available backends. + * @return A set of available backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Retrieves the operator's attributes. + * @return Shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Gets the interpolation mode. + * @return Current interpolation mode. + */ inline Mode mode() const { return mAttributes->template getAttr<GridSampleAttr::Mode>(); } + + /** + * @brief Gets the padding mode. + * @return Current padding mode. + */ inline PaddingMode paddingMode() const { return mAttributes->template getAttr<GridSampleAttr::PaddingMode>(); } + + /** + * @brief Checks if grid values align with input corners. + * @return True if corners are aligned. + */ inline bool alignCorners() const { return mAttributes->template getAttr<GridSampleAttr::AlignCorners>(); } + /** + * @brief Retrieves the input names for GridSample. + * @return Vector of input tensor names. + */ static const std::vector<std::string> getInputsName() { return {"data_input", "grid_field"}; } + + /** + * @brief Retrieves the output names for GridSample. + * @return Vector of output tensor names. + */ static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Creates a GridSample operator node. + * + * @param[in] mode Interpolation mode. + * @param[in] paddingMode Padding mode. + * @param[in] alignCorners Whether to align grid points with corners. + * @param[in] name Name of the operator. + * @return Shared pointer to the GridSample node. + */ std::shared_ptr<Node> GridSample( typename GridSample_Op::Mode mode = GridSample_Op::Mode::Linear, typename GridSample_Op::PaddingMode paddingMode = GridSample_Op::PaddingMode::Zeros, @@ -81,7 +189,6 @@ std::shared_ptr<Node> GridSample( } // namespace Aidge - namespace { template <> const char* const EnumStrings<Aidge::GridSampleAttr>::data[] = { diff --git a/include/aidge/operator/Heaviside.hpp b/include/aidge/operator/Heaviside.hpp index 65c7f341a..94eaa400a 100644 --- a/include/aidge/operator/Heaviside.hpp +++ b/include/aidge/operator/Heaviside.hpp @@ -25,61 +25,102 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class HeavisideAttr { +enum class HeavisideAttr { /** * @brief The value used in the output tensor when the input is 0. */ - Value + Value }; +/** + * @class Heaviside_Op + * @brief Implements the Heaviside step function operation. + * + * The Heaviside step function computes element-wise output based on the input values: + * + * if x < 0: f(x) = 0 + * if x = 0: f(x) = Value + * if x > 0: f(x) = 1 + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Heaviside_Op : public OperatorTensor, - public Registrable< - Heaviside_Op, - std::string, - std::function<std::shared_ptr<OperatorImpl>(const Heaviside_Op &)>> { - private: + public Registrable<Heaviside_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Heaviside_Op &)>> { + +private: using Attributes_ = StaticAttributes<HeavisideAttr, float>; + template <HeavisideAttr e> using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; - public: +public: static const std::string Type; - /* - * Compute the Heaviside step function for each element of the first input. - * Heaviside step function is defined as : - * - * \f[ - * heaviside(input, values) = \begin{cases} - * 0 & \text{if input } < 0 \\ - * values & \text{if input } = 0 \\ - * 1 & \text{if input } > 0 - * \end{cases} - * \f] - * */ + /** + * @brief Constructor for the Heaviside operator. + * @param[in] value The value to use in the output tensor when the input is 0. + */ Heaviside_Op(float value); + /** + * @brief Copy constructor. + * @param op The Heaviside_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not its input tensors. + * The new operator has no associated input. + */ Heaviside_Op(const Heaviside_Op &op); + /** + * @brief Clone the operator using its copy constructor. + */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Set the backend for this operator. + * @param name The backend name. + * @param device The device index (default is 0). + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + /** + * @brief Get the set of available backends. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the input names required by this operator. + * @return A vector containing the input names. + */ static const std::vector<std::string> getInputsName() { return {"data_input", "data_values"}; } + /** + * @brief Get the output names generated by this operator. + * @return A vector containing the output names. + */ static const std::vector<std::string> getOutputsName() { return {"output"}; } + /** + * @brief Get the attributes of the operator. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the value used for inputs equal to zero. + * @return A reference to the value attribute. + */ inline float &value() const { return mAttributes->template getAttr<HeavisideAttr::Value>(); } @@ -88,18 +129,22 @@ class Heaviside_Op /** * @brief Create a Heaviside node. * - * Initializes a Heaviside node that computes the Heaviside step function for each element + * Initializes a Heaviside node that computes the Heaviside step function for each element * of the input tensor, using the specified value for inputs equal to zero. * * @param value The value used in the output tensor when the input is 0. * @param name Optional. The name of the node. - * + * * @return A shared pointer to a Node representing the Heaviside operation. */ std::shared_ptr<Node> Heaviside(float value, const std::string &name = ""); + } // namespace Aidge namespace { +/** + * @brief Define string representations for Heaviside attributes. + */ template <> const char *const EnumStrings<Aidge::HeavisideAttr>::data[] = {"value"}; } diff --git a/include/aidge/operator/ILayerNorm.hpp b/include/aidge/operator/ILayerNorm.hpp index f660cc64e..dc90b7622 100644 --- a/include/aidge/operator/ILayerNorm.hpp +++ b/include/aidge/operator/ILayerNorm.hpp @@ -27,55 +27,98 @@ namespace Aidge { +/** + * @brief Description of the Layer Normalization operation on an input tensor. + * + * Layer Normalization normalizes the inputs across the features of a given tensor: + * f(x) = + * + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class ILayerNorm_Op : public OperatorTensor, public Registrable<ILayerNorm_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ILayerNorm_Op&)>> { + public: static const std::string Type; + /** + * @brief Default constructor. + */ ILayerNorm_Op() : OperatorTensor(Type, {InputCategory::Data, InputCategory::Param, InputCategory::Param}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op ILayerNorm_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not its input tensors. + * The new operator has no associated input. */ ILayerNorm_Op(const ILayerNorm_Op& op) : OperatorTensor(op) { if (op.mImpl){ SET_IMPL_MACRO(ILayerNorm_Op, *this, op.backend()); - }else{ + } else { mImpl = nullptr; } } /** * @brief Clone the operator using its copy-constructor. - * @see Operator::ILayerNorm_Op + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override { return std::make_shared<ILayerNorm_Op>(*this); } + /** + * @brief Associates an input tensor with the operator. + * @param inputIdx The index of the input. + * @param data The input data to associate. + */ void associateInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) override final; + /** + * @brief Propagates the dimensions from the input tensors to the output tensors. + * @param allowDataDependency Whether to allow dimension propagation based on data. + * @return True if propagation is successful, false otherwise. + */ bool forwardDims(bool allowDataDependency = false) override final; void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; std::set<std::string> getAvailableBackends() const override; + /** + * @brief Gets the names of the input tensors. + * @return A vector containing the names of input tensors. + */ static const std::vector<std::string> getInputsName(){ return {"data_input", "weight", "bias"}; } + + /** + * @brief Gets the names of the output tensors. + * @return A vector containing the names of output tensors. + */ static const std::vector<std::string> getOutputsName(){ return {"data_output"}; } }; +/** + * @brief Constructs a Layer Normalization operation node. + * @param[in] name Optional name for the operator. + * @return A shared pointer to a Node containing the ILayerNorm_Op operator. + */ inline std::shared_ptr<Node> ILayerNorm(const std::string& name = "") { return std::make_shared<Node>(std::make_shared<ILayerNorm_Op>(), name); } -} + +} // namespace Aidge #endif /* AIDGE_CORE_OPERATOR_ILAYERNORM_H_ */ diff --git a/include/aidge/operator/LRN.hpp b/include/aidge/operator/LRN.hpp index 669564d4a..369da5f97 100644 --- a/include/aidge/operator/LRN.hpp +++ b/include/aidge/operator/LRN.hpp @@ -24,14 +24,49 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class LRNAttr { Alpha, Beta, Bias, Size }; +enum class LRNAttr { + Alpha, ///< Scale factor for normalization. + Beta, ///< Exponent applied to the normalization term. + Bias, ///< Constant bias added to the normalization term. + Size ///< Number of channels to normalize over. +}; +/** + * @brief Description of a Local Response Normalization (LRN) operation on an input Tensor. + * + * LRN is a normalization technique that applies across channels in a local region + * to enhance generalization and promote competition between neurons. It is commonly + * used in Convolutional Neural Networks (CNNs). + * + * For each element x in the input Tensor, the function is defined as: + * `f(x) = x / (bias + alpha * sum(x_i^2))^beta`, where: + * - `x` is the current element being normalized. + * - The summation `sum(x_i^2)` is taken over a local region of `size` channels + * surrounding `x` (both before and after the current channel, if available). + * - `bias`, `alpha`, and `beta` are scalar hyperparameters controlling the + * normalization behavior. + * + * Parameters: + * - `size`: The number of channels in the local region over which normalization is performed. + * - `bias`: A scalar added to the normalization term to ensure numerical stability. + * - `alpha`: A scaling factor for the squared sum of elements in the local region. + * - `beta`: The exponent applied to the normalization term. + * + * The input and output Tensors have the same shape. If the input Tensor has shape `(N, C, H, W)`, + * the output Tensor will also have shape `(N, C, H, W)`. + * + * @see OperatorTensor + * @see Registrable + */ class LRN_Op : public OperatorTensor, public Registrable<LRN_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const LRN_Op&)>> { public: + /** + * @brief Static type string for the LRN operator. + */ static const std::string Type; private: @@ -40,43 +75,106 @@ private: const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Deleted default constructor. + */ LRN_Op() = delete; + /** + * @brief Constructor for the LRN operator. + * @param[in] size Normalization size (span across adjacent channels). + */ LRN_Op(std::int32_t size); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op LRN_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ LRN_Op(const LRN_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::LRN_Op + * @brief Clone the operator using its copy constructor. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Set the backend for the LRN operator. + * @param[in] name Name of the backend. + * @param[in] device Device index (optional). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + + /** + * @brief Get the available backends for the LRN operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } - inline float& alpha() const noexcept { return mAttributes -> getAttr<LRNAttr::Alpha>(); } - inline float& beta() const noexcept { return mAttributes -> getAttr<LRNAttr::Beta>(); } - inline float& bias() const noexcept { return mAttributes -> getAttr<LRNAttr::Bias>(); } - inline std::int32_t& size() const noexcept { return mAttributes -> getAttr<LRNAttr::Size>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get or modify the `alpha` attribute. + * @return Reference to the `alpha` attribute. + */ + inline float& alpha() const noexcept { return mAttributes->getAttr<LRNAttr::Alpha>(); } + + /** + * @brief Get or modify the `beta` attribute. + * @return Reference to the `beta` attribute. + */ + inline float& beta() const noexcept { return mAttributes->getAttr<LRNAttr::Beta>(); } + + /** + * @brief Get or modify the `bias` attribute. + * @return Reference to the `bias` attribute. + */ + inline float& bias() const noexcept { return mAttributes->getAttr<LRNAttr::Bias>(); } + + /** + * @brief Get or modify the `size` attribute. + * @return Reference to the `size` attribute. + */ + inline std::int32_t& size() const noexcept { return mAttributes->getAttr<LRNAttr::Size>(); } + + /** + * @brief Get the input tensor names for the LRN operator. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output tensor names for the LRN operator. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create an LRN operation node. + * + * @param[in] size Normalization size (must be an odd positive integer). + * @param[in] name Name of the operator (optional). + * @return A shared pointer to the Node containing the LRN operator. + */ std::shared_ptr<Node> LRN(std::int32_t size, const std::string& name = ""); + } // namespace Aidge namespace { +/** + * @brief EnumStrings specialization for LRNAttr. + */ template <> const char *const EnumStrings<Aidge::LRNAttr>::data[] = {"alpha", "beta", "bias", "size"}; } diff --git a/include/aidge/operator/LeakyReLU.hpp b/include/aidge/operator/LeakyReLU.hpp index 179eb90b3..46730d026 100644 --- a/include/aidge/operator/LeakyReLU.hpp +++ b/include/aidge/operator/LeakyReLU.hpp @@ -25,11 +25,29 @@ namespace Aidge { enum class LeakyReLUAttr { + /** + * @brief Slope for the negative input values. + */ NegativeSlope }; +/** + * @class LeakyReLU_Op + * @brief Implements the LeakyReLU activation function. + * + * The LeakyReLU operation introduces a small, non-zero gradient for negative input values, + * defined as: + * - x < 0: f(x) = negativeSlope * x + * - x >= 0 : f(x) = x + * + * The output tensor has the same shape as the input tensor. + * + * @see OperatorTensor + * @see Registrable + */ class LeakyReLU_Op : public OperatorTensor, public Registrable<LeakyReLU_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const LeakyReLU_Op&)>> { + public: static const std::string Type; @@ -40,8 +58,15 @@ private: public: + /** + * @brief Default constructor is deleted. + */ LeakyReLU_Op() = delete; + /** + * @brief Constructor for LeakyReLU operator. + * @param[in] negativeSlope The slope for negative input values. + */ LeakyReLU_Op(float negativeSlope) : OperatorTensor(Type, {InputCategory::Data}, 1), mAttributes( @@ -50,31 +75,55 @@ public: {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op LeakyReLU_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not its input tensors. + * The new operator has no associated input. */ LeakyReLU_Op(const LeakyReLU_Op& op); /** * @brief Clone the operator using its copy-constructor. - * @see Operator::LeakyReLU_Op */ std::shared_ptr<Operator> clone() const override; void setBackend(const std::string& name, DeviceIdx_t device = 0) override; std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the negative slope value. + */ inline float& negativeSlope() const noexcept { return mAttributes -> getAttr<LeakyReLUAttr::NegativeSlope>(); } + /** + * @brief Get the names of the input tensors. + * @return A vector containing the names of input tensors. + */ static const std::vector<std::string> getInputsName(){ return {"data_input"}; } + + /** + * @brief Get the names of the output tensors. + * @return A vector containing the names of output tensors. + */ static const std::vector<std::string> getOutputsName(){ return {"data_output"}; } }; +/** + * @brief Apply the LeakyReLU activation function to a tensor. + * + * @param[in] negativeSlope Slope for the negative input values. + * @param[in] name Name of the Operator. + * @return std::shared_ptr<Node> Node containing the Operator. + */ std::shared_ptr<Node> LeakyReLU(float negativeSlope = 0.0f, const std::string& name = ""); } @@ -84,4 +133,4 @@ const char* const EnumStrings<Aidge::LeakyReLUAttr>::data[] = {"negative_slope"}; } -#endif /* AIDGE_CORE_OPERATOR_RELU_H_ */ +#endif /* AIDGE_CORE_OPERATOR_LEAKYRELU_H_ */ diff --git a/include/aidge/operator/Ln.hpp b/include/aidge/operator/Ln.hpp index 22fc51664..4a78db439 100755 --- a/include/aidge/operator/Ln.hpp +++ b/include/aidge/operator/Ln.hpp @@ -25,16 +25,33 @@ namespace Aidge { +/** + * @brief Description of an element-wise Natural Logarithm (Ln) operation + * on an input Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = ln(x)`, where ln(x) is the natural logarithm of x (logarithm to the base e). + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Ln_Op : public OperatorTensor, - public Registrable<Ln_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Ln_Op&)>> { + public Registrable<Ln_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::unique_ptr<OperatorImpl>(const Ln_Op&)>> +{ public: static const std::string Type; Ln_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Ln_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Ln_Op(const Ln_Op& op); diff --git a/include/aidge/operator/MatMul.hpp b/include/aidge/operator/MatMul.hpp index bf6ab84c7..0313815ee 100644 --- a/include/aidge/operator/MatMul.hpp +++ b/include/aidge/operator/MatMul.hpp @@ -23,6 +23,34 @@ namespace Aidge { +/** + * @brief Description of a Matrix Multiplication (MatMul) operation on input Tensors. + * + * Performs matrix multiplication on two input Tensors A and B: + * - If both inputs are 2D matrices, the function is defined as: + * `C = A @ B`, where `@` represents matrix multiplication. + * - For higher-dimensional Tensors, it performs batched matrix multiplication: + * The last two dimensions of A and B are used for matrix multiplication, + * while the remaining dimensions are broadcast according to NumPy broadcasting rules. + * + * Requirements: + * - The number of columns in the last dimension of A must match the number of rows + * in the last dimension of B. + * + * The output Tensor shape is determined as: + * - For 2D matrices A (m x n) and B (n x p), the output shape is (m x p). + * - For higher-dimensional Tensors, broadcasting rules are applied to the batch dimensions, + * and the resulting shape is `[broadcasted_batch_dims, m, p]`. + * + * @example: + * - Input A shape: (2, 3, 4), Input B shape: (3, 4, 5) + * - Batch dimensions (first dimension) are broadcasted: A is repeated along the first axis. + * - Last two dimensions are multiplied: (4, 5) for A and B. + * - Output shape: (3, 4, 5). + * + * @see OperatorTensor + * @see Registrable + */ class MatMul_Op : public OperatorTensor, public Registrable<MatMul_Op, std::string, @@ -33,8 +61,10 @@ public: MatMul_Op() : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op MatMul_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ MatMul_Op(const MatMul_Op& op); diff --git a/include/aidge/operator/MaxPooling.hpp b/include/aidge/operator/MaxPooling.hpp index 0cc43a6fb..8503b1be1 100644 --- a/include/aidge/operator/MaxPooling.hpp +++ b/include/aidge/operator/MaxPooling.hpp @@ -29,72 +29,192 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class MaxPoolingAttr { StrideDims, KernelDims, CeilMode }; +/** + * @enum MaxPoolingAttr + * @brief Attributes defining the configuration of a MaxPooling operation. + */ +enum class MaxPoolingAttr { + /** + * @brief Stride dimensions for sliding the pooling window across the input dimensions. + * The stride specifies how much the window moves after each operation. + * Must be positive integers. + */ + StrideDims, + + /** + * @brief Kernel dimensions specifying the size of the pooling window for each spatial dimension. + * For example, common kernel dimensions include 2x2 or 3x3. + * Must be positive integers. + */ + KernelDims, + + /** + * @brief Flag indicating whether to use ceil or floor when calculating output size. + * - `true`: Use `ceil` for output size calculation. + * - `false`: Use `floor` for output size calculation. + */ + CeilMode, +}; + +/** + * @class MaxPooling_Op + * @tparam DIM Dimensionality of the input tensor (e.g., 1D, 2D, 3D). + * @brief Implements the MaxPooling operation over a specified input tensor. + * + * MaxPooling reduces spatial dimensions by applying a max filter over a sliding window. + * The resulting output tensor contains the maximum value within each window. + * + * ### Output Shape Calculation + * - If `CeilMode` is false: + * `output_size = floor((input_size - kernel_size) / stride + 1)` + * - If `CeilMode` is true: + * `output_size = ceil((input_size - kernel_size) / stride + 1)` + * + * @example Example usage: + * - Input shape: (1, 3, 32, 32) // Batch size 1, 3 channels, 32x32 spatial dimensions + * - KernelDims: (2, 2) + * - StrideDims: (2, 2) + * - CeilMode: false + * - Output shape: (1, 3, 16, 16) + * + * @see OperatorTensor + * @see Registrable + */ template <DimIdx_t DIM> class MaxPooling_Op : public OperatorTensor, - public Registrable<MaxPooling_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const MaxPooling_Op<DIM> &)>> { + public Registrable<MaxPooling_Op<DIM>, + std::string, + std::function<std::shared_ptr<OperatorImpl>(const MaxPooling_Op<DIM> &)>> +{ public: - static const std::string Type; + static const std::string Type; ///< Static identifier for this operator type. using Attributes_ = StaticAttributes<MaxPoolingAttr, - std::array<DimSize_t, DIM>, - std::array<DimSize_t, DIM>, - bool>; + std::array<DimSize_t, DIM>, + std::array<DimSize_t, DIM>, + bool>; private: template <MaxPoolingAttr e> using attr = typename Attributes_::template attr<e>; - const std::shared_ptr<Attributes_> mAttributes; + const std::shared_ptr<Attributes_> mAttributes; ///< Shared pointer to operator attributes. public: - MaxPooling_Op() = delete; + MaxPooling_Op() = delete; ///< Deleted default constructor. + /** + * @brief Constructor. + * @param[in] kernel_dims Size of the pooling window for each spatial dimension. + * @param[in] stride_dims Step size (stride) for sliding the pooling window across input dimensions. + * @param[in] ceil_mode Indicates whether to use ceil or floor for output size calculation. + */ MaxPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - bool ceil_mode = false); + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + bool ceil_mode = false); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op MaxPooling_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ MaxPooling_Op(const MaxPooling_Op<DIM>& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::MaxPooling_Op + * @brief Clones the operator using the copy constructor. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Computes output tensor dimensions based on input dimensions and operator attributes. + * @param[in] allowDataDependency If true, dimensions may depend on input data; otherwise, strictly attribute-based. + * @return Boolean indicating success of the operation. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; + /** + * @brief Sets the backend implementation for this operator. + * @param[in] name Name of the backend. + * @param[in] device Device index where the backend will run (default: 0). + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + + /** + * @brief Retrieves the list of available backend implementations for this operator. + * @return A set of available backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Accessor for operator attributes. + * @return A shared pointer to the attributes object. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Accessor for stride dimensions. + * @return An array representing stride dimensions. + */ inline std::array<DimSize_t, DIM>& strideDims() const { return mAttributes->template getAttr<MaxPoolingAttr::StrideDims>(); } + + /** + * @brief Accessor for kernel dimensions. + * @return An array representing kernel dimensions. + */ inline std::array<DimSize_t, DIM>& kernelDims() const { return mAttributes->template getAttr<MaxPoolingAttr::KernelDims>(); } + + /** + * @brief Accessor for ceil mode flag. + * @return Boolean value indicating whether ceil mode is enabled. + */ inline bool& ceilMode() const { return mAttributes->template getAttr<MaxPoolingAttr::CeilMode>(); } - static const std::vector<std::string> getInputsName(){ - return {"data_input"}; - } - static const std::vector<std::string> getOutputsName(){ - return {"data_output"}; - } + /** + * @brief Retrieves the names of the input tensors. + * @return A vector of input tensors names. + */ + static const std::vector<std::string> getInputsName(){ return {"data_input"}; } + + /** + * @brief Retrieves the names of the output tensors. + * @return A vector of output tensors names. + */ + static const std::vector<std::string> getOutputsName(){ return {"data_output"}; } }; +/** + * @brief Explicit template instantiations for 1D, 2D, and 3D MaxPooling operations. + */ extern template class Aidge::MaxPooling_Op<1>; extern template class Aidge::MaxPooling_Op<2>; extern template class Aidge::MaxPooling_Op<3>; +/** + * @brief Factory function for creating MaxPooling operations. + * @tparam DIM Dimensionality of the pooling operation (e.g., 1D, 2D, 3D). + * @param[in] kernel_dims Kernel dimensions specifying the size of the pooling window. + * @param[in] name Optional name for the operation. + * @param[in] stride_dims Stride dimensions specifying the step size for the pooling window. + * @param[in] ceil_mode Indicates whether to use ceil mode for output size calculation. + * @return A shared pointer to a Node representing the MaxPooling operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> std::shared_ptr<Node> MaxPooling(const std::array<DimSize_t, DIM> &kernel_dims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), - bool ceil_mode=false); - -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction + const std::string& name = "", + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + bool ceil_mode=false); + +/** + * @brief Helper function for creating MaxPooling operations with C-style array input. + * @tparam DIM Dimensionality of the pooling operation. + * @param[in] kernel_dims C-style array of kernel dimensions. + * @param[in] name Optional name for the operation. + * @param[in] stride_dims Stride dimensions specifying the step size for the pooling window. + * @param[in] ceil_mode Indicates whether to use ceil mode for output size calculation. + * @return A shared pointer to a Node representing the MaxPooling operation. + */ template <DimSize_t DIM> inline std::shared_ptr<Node> MaxPooling( DimSize_t const (&kernel_dims)[DIM], @@ -104,9 +224,13 @@ inline std::shared_ptr<Node> MaxPooling( static_assert(DIM<=MaxDim,"Too many kernel dimensions required by MaxPooling, not supported"); return MaxPooling(to_array(kernel_dims), name, stride_dims, ceil_mode); } + } // namespace Aidge namespace { +/** + * @brief String representations of MaxPooling attributes for debugging and logging. + */ template <> const char *const EnumStrings<Aidge::MaxPoolingAttr>::data[] = {"stride_dims", "kernel_dims", "ceil_mode"}; } diff --git a/include/aidge/operator/Memorize.hpp b/include/aidge/operator/Memorize.hpp index 2b05b5fff..deefc0077 100644 --- a/include/aidge/operator/Memorize.hpp +++ b/include/aidge/operator/Memorize.hpp @@ -25,23 +25,119 @@ #include "aidge/utils/Types.h" namespace Aidge { +/** + * @class Memorize_ProdConso + * @brief Implements the producer-consumer principle for the `Memorize` operator. + * + * The `Memorize_ProdConso` class defines the logic for managing data dependencies during + * the forward process of the `Memorize` operator. + * + * This class ensures that: + * - All data produced by the `Memorize` operator is properly consumed. + * - All required outputs are correctly filled during the forward pass. + * + * It also calculates data and memory requirements specific to the `Memorize` operator. + */ class Memorize_ProdConso : public ProdConso { public: + /** + * @brief Constructor for the `Memorize_ProdConso` class. + * @param[in] op The operator instance for which producer-consumer relationships are managed. + * + * @details: + * - The provided `Operator` instance is used to initialize the base `ProdConso` class. + * - This operator will determine the specific requirements for data production + * and consumption during the forward process. + */ Memorize_ProdConso(const Operator& op): ProdConso(op) {} + + /** + * @brief Get the number of data elements required from an input tensor for forward computation. + * @param[in] inputIdx The index of the input tensor. + * @return The number of required elements (`Elts_t`). + * + * @details: + * - For each input tensor identified by `inputIdx`, this method calculates the + * minimum amount of data needed by the `Memorize` operator to perform its forward step. + */ Elts_t getNbRequiredData(const IOIndex_t inputIdx) const override final; - Elts_t getRequiredMemory(const IOIndex_t outputIdx, const std::vector<DimSize_t> &inputsSize) const override final; + + /** + * @brief Compute the memory requirements for an output tensor. + * @param[in] outputIdx The index of the output tensor. + * @param[in] inputsSize A vector containing the dimensions of the input tensors. + * @return The memory required (`Elts_t`) for the specified output tensor. + * + * @details: + * - This method evaluates how much memory is needed for the `outputIdx` tensor + * based on the input tensor dimensions and the attributes of the `Memorize` operator. + * - Memory requirements are influenced by factors such as sequence length and + * the forward step configuration. + */ + Elts_t getRequiredMemory(const IOIndex_t outputIdx, const std::vector<DimSize_t>& inputsSize) const override final; + + /** + * @brief Update the producer-consumer relationships for the `Memorize` operator. + * @details: + * - This method ensures that all data produced by the `Memorize` operator is + * appropriately consumed by downstream operators in the computational graph. + * - It also verifies that all required outputs are filled during the forward pass, + * maintaining consistency in the data flow. + * - This step is crucial for ensuring correctness in recurrent computations and + * maintaining dependencies in the graph. + */ void updateConsummerProducer() override; }; +/** + * @brief Implementation of the Memorize operation. + * + * Since Memorize operation is just backend-agnostic, its implementation is located in aidge_core. + */ class Memorize_OpImpl : public OperatorImpl { public: + /** + * @brief Constructs a Memorize_OpImpl object. + * @param[in] op The operator to be implemented. + * @param[in] backend The backend used for execution. + */ Memorize_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + + /** + * @brief Get the Producer Consumer object of the operator. + * @return A shared pointer to the ProdConso object. + */ std::shared_ptr<ProdConso> getProdConso() const override { return std::make_shared<Memorize_ProdConso>(mOp); }; + + /** + * @brief Executes the forward pass for the Memorize operation. + */ void forward() override; }; -enum class MemorizeAttr { ScheduleStep, ForwardStep, EndStep }; +enum class MemorizeAttr { + ScheduleStep, // Defines the step interval for scheduling memory updates. + ForwardStep, // Tracks the current step in the forward pass. + EndStep // The final step for which memory updates will occur. +}; +/** + * @class Memorize_Op + * @brief The Memorize Operator is responsible for storing a tensor's state over a defined + * number of iterations and providing the stored value as output at each iteration. + * + * Memorize operators are used in models with recurrent structures or feedback loops, such as LSTMs. + * They maintain an internal state that is updated and accessed sequentially. + * - **Inputs**: + * - `data_input`: The main data input for the operator. + * - `data_input_init`: The initial value used to initialize the internal memory. + * - **Outputs**: + * - `data_output`: The current output of the internal memory. + * - `data_output_rec`: The recurrent output that feeds back into the memory for subsequent steps. + * + * @see OperatorTensor + * @see Registrable + */ class Memorize_Op : public OperatorTensor, public Registrable<Memorize_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Memorize_Op&)>> { public: @@ -56,46 +152,109 @@ private: public: Memorize_Op() = delete; + /** + * @brief Construct a new Memorize Operator. + * @param endStep Defines the number of steps the operator will retain memory. + */ Memorize_Op(const std::uint32_t endStep); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), - * but not its input tensors (the new operator has no input associated). + * @brief Copy-constructor. Copies the operator's attributes and its output tensors. + * The new operator has no input tensors associated initially. * @param op Operator to copy. */ Memorize_Op(const Memorize_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Memorize_Op + * @brief Clone the operator by creating a copy of it. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Assign a specific backend and device for computation. + * @param name Name of the backend. + * @param device The device index (default is 0). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + + /** + * @brief Get the list of available backends compatible with this operator. + * @return A set of strings representing backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Perform dimension inference for the operator, optionally allowing + * data dependency during the process. + * @param allowDataDependency Flag indicating whether data dependency is allowed. + * @return True if dimensions were successfully inferred. + */ bool forwardDims(bool allowDataDependency = false) override final; + + /** + * @brief Check if dimensions have been forwarded successfully. + * @return True if dimensions are forwarded. + */ bool dimsForwarded() const override; + void updateConsummerProducer() override; void forward() override; + /** + * @brief Access the operator's attributes. + * @return A shared pointer to the operator's attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get or set the scheduling step for the operator. + * @return A reference to the scheduling step. + */ inline std::uint32_t& scheduleStep() const { return mAttributes->template getAttr<MemorizeAttr::ScheduleStep>(); } + + /** + * @brief Get or set the forward step counter for the operator. + * @return A reference to the forward step counter. + */ inline std::uint32_t& forwardStep() const { return mAttributes->template getAttr<MemorizeAttr::ForwardStep>(); } + + /** + * @brief Get or set the end step defining the memory duration. + * @return A reference to the end step value. + */ inline std::uint32_t& endStep() const { return mAttributes->template getAttr<MemorizeAttr::EndStep>(); } + /** + * @brief Retrieve the names of the operator's input tensors. + * @return A vector of strings representing input tensor names. + */ static const std::vector<std::string> getInputsName(){ return {"data_input", "data_input_init"}; } + + /** + * @brief Retrieve the names of the operator's output tensors. + * @return A vector of strings representing output tensor names. + */ static const std::vector<std::string> getOutputsName(){ return {"data_output", "data_output_rec"}; } }; +/** + * @brief Create a Memorize operator node. + * @param endStep The step duration for memory storage. + * @param name The optional name for the node. + * @return A shared pointer to the newly created Memorize operator node. + */ std::shared_ptr<Node> Memorize(const std::uint32_t endStep, const std::string& name = ""); } // namespace Aidge namespace { +/** + * @brief String representations of the Memorize operator's attributes. + */ template <> const char *const EnumStrings<Aidge::MemorizeAttr>::data[] = { "schedule_step", diff --git a/include/aidge/operator/MetaOperator.hpp b/include/aidge/operator/MetaOperator.hpp index 47eb6cf97..f7f1cdfd5 100644 --- a/include/aidge/operator/MetaOperator.hpp +++ b/include/aidge/operator/MetaOperator.hpp @@ -27,54 +27,111 @@ #include "aidge/utils/Types.h" namespace Aidge { + +/** + * @class MetaOperator_Op + * @brief Represents a meta-operator, which is a composition of multiple operators. + * + * A meta-operator encapsulates a micro-graph of operations, facilitating modularity + * and reusability. It extends the functionality of `OperatorTensor` and provides + * features such as cloning, dynamic input association, and custom backend support. + */ class MetaOperator_Op : public OperatorTensor, public Registrable<MetaOperator_Op, std::array<std::string, 2>, std::function<std::shared_ptr<OperatorImpl>(const MetaOperator_Op &)>> { public: - // outputs shared with micro-graph output Tensors - // Micro-graph handling: - std::shared_ptr<GraphView> mGraph; // Meta operator micro-graph + // The micro-graph defining the internal operations of this meta-operator + std::shared_ptr<GraphView> mGraph; + + // Scheduler for sequential execution of the micro-graph std::shared_ptr<SequentialScheduler> mScheduler; + + // Weak reference to the parent node for scheduling purposes std::weak_ptr<Node> mUpperNode; private: + // Dynamic attributes specific to this meta-operator const std::shared_ptr<DynamicAttributes> mAttributes = std::make_shared<DynamicAttributes>(); public: + /** + * @brief Constructor for MetaOperator_Op. + * + * @param type The type of the meta-operator. + * @param graph The micro-graph defining the meta-operator. + * @param forcedInputsCategory Optional input categories to override default behavior. + */ MetaOperator_Op(const std::string& type, const std::shared_ptr<GraphView>& graph, const std::vector<InputCategory>& forcedInputsCategory = {}); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy constructor. + * + * Copies the operator's attributes and output tensors, but not its input tensors. + * + * @param op The operator to copy. */ MetaOperator_Op(const MetaOperator_Op& op) : OperatorTensor(op), - mGraph(op.mGraph->clone()) + mGraph(op.mGraph->clone()) // Clone the micro-graph for isolation {} /** - * Set the node that should be used for the scheduling. - */ + * @brief Set the node for scheduling. + * + * @param node The node to be used as the upper node in the scheduling hierarchy. + */ inline void setUpperNode(std::shared_ptr<Node> node) { mUpperNode = node; } /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::MetaOperator_Op + * @brief Clone this meta-operator. + * + * Uses the copy constructor to create a new instance with identical attributes. + * + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Retrieve the micro-graph defining the meta-operator. + * + * @return A shared pointer to the micro-graph. + */ inline const std::shared_ptr<GraphView>& getMicroGraph() const noexcept { return mGraph; } + /** + * @brief Retrieve the scheduler for the micro-graph. + * + * @return A shared pointer to the scheduler. + */ inline const std::shared_ptr<SequentialScheduler>& getMicroGraphScheduler() const noexcept { return mScheduler; } + /** + * @brief Associate an input tensor to the operator. + * + * @param inputIdx Index of the input tensor. + * @param data Shared pointer to the data tensor. + */ void associateInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) override final; + + /** + * @brief Set an input tensor for the operator. + * + * @param inputIdx Index of the input tensor. + * @param data Shared pointer to the data tensor. + */ void setInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) override final; + /** + * @brief Forward the dimensions through the micro-graph. + * + * @param allowDataDependency If true, allows data-dependent operations during forwarding. + * @return True if the operation succeeded, false otherwise. + */ bool forwardDims(bool allowDataDependency = false) override final { if (inputsAssociated()) { // Forward dims of micro-graph @@ -83,11 +140,35 @@ public: return false; } + /** + * @brief Retrieve the backend for the operator. + * + * @return The name of the backend. + */ std::string backend() const noexcept override; + /** + * @brief Set the backend for the operator. + * + * @param name The name of the backend. + * @param device The device index. + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the available backends for the operator. + * + * @return A set of available backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Set the data type for the operator. + * + * This propagates the data type change to the micro-graph. + * + * @param datatype The new data type. + */ void setDataType(const DataType &datatype) const override { // The micro-graph should always be set to the right data type, since it // shares input/output tensors. @@ -95,6 +176,11 @@ public: mGraph->setDataType(datatype); } + /** + * @brief Retrieve the dynamic attributes of the operator. + * + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } Elts_t getNbRequiredData(const IOIndex_t inputIdx) const override; @@ -103,21 +189,53 @@ public: Elts_t getNbConsumedData(IOIndex_t inputIdx) const override; Elts_t getNbProducedData(IOIndex_t outputIdx) const override; + /** + * @brief Update the consumer-producer relationships for the operator. + */ void updateConsummerProducer() override; + + /** + * @brief Reset the consumer-producer relationships. + */ void resetConsummerProducer() override; + + /** + * @brief Perform the forward pass for the operator. + */ void forward() override; + + /** + * @brief Perform the backward pass for the operator. + * + * @note Currently not implemented. + */ void backward() override { AIDGE_THROW_OR_ABORT(std::runtime_error, "backward() not implemented yet for a MetaOperator"); } + /** + * @brief Check if the operator is atomic. + * + * @return False, as meta-operators are inherently non-atomic. + */ inline bool isAtomic() const noexcept override final { return false; } }; +/** + * @brief Helper function to create a MetaOperator node. + * + * @param type The type of the meta-operator. + * @param graph The micro-graph defining the meta-operator. + * @param forcedInputsCategory Optional input categories to override default behavior. + * @param name Optional name for the operator. + * @return A shared pointer to the created Node. + */ std::shared_ptr<Node> MetaOperator(const char *type, const std::shared_ptr<GraphView>& graph, const std::vector<InputCategory>& forcedInputsCategory = {}, const std::string& name = ""); + } // namespace Aidge -#endif /* MetaOperator_H_ */ +#endif /* AIDGE_CORE_OPERATOR_METAOPERATOR_H_ */ diff --git a/include/aidge/operator/MetaOperatorDefs.hpp b/include/aidge/operator/MetaOperatorDefs.hpp index c9de36b1f..5bb184b80 100644 --- a/include/aidge/operator/MetaOperatorDefs.hpp +++ b/include/aidge/operator/MetaOperatorDefs.hpp @@ -30,7 +30,22 @@ #include "aidge/utils/Types.h" namespace Aidge { - +/** + * @brief Creates a padded convolution operation (Conv2D/Conv3D). + * + * This function creates a padded convolution operation that applies padding before the convolution operation. + * It uses various parameters like the number of input/output channels, kernel dimensions, stride, padding, etc. + * + * @param[in] in_channels The number of input channels. + * @param[in] out_channels The number of output channels. + * @param[in] kernel_dims The dimensions of the convolution kernel. + * @param[in] name Optional name for the operation. + * @param[in] stride_dims The stride dimensions for the convolution operation (default is 1). + * @param[in] padding_dims The padding dimensions to apply before convolution (default is 0). + * @param[in] dilation_dims Dilation factor for convolution (default is 1). + * @param[in] no_bias Whether to disable the bias (default is false). + * @return A shared pointer to the Node representing the padded convolution operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> extern std::shared_ptr<Node> PaddedConv(DimSize_t in_channels, @@ -45,18 +60,25 @@ PaddedConv(DimSize_t in_channels, create_array<DimSize_t, DIM>(1), bool no_bias = false); +/** + * @brief Creates a padded convolution operation as a MetaOperator. + * + * This function creates a graph-based MetaOperator representing a padded convolution operation (Conv2D/Conv3D). + * + * @param[in] kernel_dims The dimensions of the convolution kernel. + * @param[in] stride_dims The stride dimensions for the convolution operation (default is 1). + * @param[in] padding_dims The padding dimensions to apply before convolution (default is 0). + * @param[in] dilation_dims Dilation factor for convolution (default is 1). + * @return A shared pointer to the MetaOperator_Op representing the padded convolution operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> -extern std::shared_ptr<MetaOperator_Op> -PaddedConv_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = - create_array<DimSize_t, DIM>(1), - const std::array<DimSize_t, 2 * DIM> &padding_dims = - create_array<DimSize_t, 2 * DIM>(0), - const std::array<DimSize_t, DIM> &dilation_dims = - create_array<DimSize_t, DIM>(1)); - -// helper with C-style array instead of std::array for kernel_dims to allow -// automatic template DIM deduction +extern std::shared_ptr<MetaOperator_Op> PaddedConv_Op( + const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), + const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1)); + +// Helper function with C-style array for kernel_dims, enabling automatic template DIM deduction.s template <DimSize_t DIM> extern std::shared_ptr<Node> PaddedConv(DimSize_t in_channels, @@ -73,6 +95,20 @@ PaddedConv(DimSize_t in_channels, //////////////////////////////////////////////////////////////////////////////// +/** + * @brief Creates a padded depthwise convolution operation (Conv2DDepthwise/Conv3DDepthwise). + * + * This function creates a depthwise convolution operation with padding, where each input channel has its own filter. + * + * @param[in] nb_channels The number of input/output channels (same for depthwise convolution). + * @param[in] kernel_dims The dimensions of the convolution kernel. + * @param[in] name Optional name for the operation. + * @param[in] stride_dims The stride dimensions for the convolution operation (default is 1). + * @param[in] padding_dims The padding dimensions to apply before convolution (default is 0). + * @param[in] dilation_dims Dilation factor for convolution (default is 1). + * @param[in] no_bias Whether to disable the bias (default is false). + * @return A shared pointer to the Node representing the padded depthwise convolution operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> std::shared_ptr<Node> PaddedConvDepthWise(const DimSize_t nb_channels, @@ -86,18 +122,25 @@ PaddedConvDepthWise(const DimSize_t nb_channels, create_array<DimSize_t, DIM>(1), bool no_bias = false); +/** + * @brief Creates a padded depthwise convolution operation as a MetaOperator. + * + * This function creates a graph-based MetaOperator representing a padded depthwise convolution operation. + * + * @param[in] kernel_dims The dimensions of the convolution kernel. + * @param[in] stride_dims The stride dimensions for the convolution operation (default is 1). + * @param[in] padding_dims The padding dimensions to apply before convolution (default is 0). + * @param[in] dilation_dims Dilation factor for convolution (default is 1). + * @return A shared pointer to the MetaOperator_Op representing the padded depthwise convolution operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> -std::shared_ptr<MetaOperator_Op> -PaddedConvDepthWise_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = - create_array<DimSize_t, DIM>(1), - const std::array<DimSize_t, 2 * DIM> &padding_dims = - create_array<DimSize_t, 2 * DIM>(0), - const std::array<DimSize_t, DIM> &dilation_dims = - create_array<DimSize_t, DIM>(1)); - -// helper with C-style array instead of std::array for kernel_dims to allow -// automatic template DIM deduction +std::shared_ptr<MetaOperator_Op> PaddedConvDepthWise_Op( + const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), + const std::array<DimSize_t, DIM> &dilation_dims = create_array<DimSize_t,DIM>(1)); + +// Helper function for depthwise convolution, with C-style array to automatically deduce DIM. template <DimSize_t DIM> inline std::shared_ptr<Node> PaddedConvDepthWise(const DimSize_t nb_channels, @@ -113,25 +156,39 @@ PaddedConvDepthWise(const DimSize_t nb_channels, //////////////////////////////////////////////////////////////////////////////// +/** + * @brief Creates a padded average pooling operation. + * + * This function creates an average pooling operation with padding before pooling. + * + * @param[in] kernel_dims The dimensions of the pooling window. + * @param[in] name Optional name for the operation. + * @param[in] stride_dims The stride dimensions for pooling (default is 1). + * @param[in] padding_dims Padding dimensions before pooling (default is 0). + * @return A shared pointer to the Node representing the padded average pooling operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> -extern std::shared_ptr<Node> -PaddedAvgPooling(const std::array<DimSize_t, DIM> &kernel_dims, - const std::string &name = "", - const std::array<DimSize_t, DIM> &stride_dims = - create_array<DimSize_t, DIM>(1), - const std::array<DimSize_t, 2 * DIM> &padding_dims = - create_array<DimSize_t, 2 * DIM>(0)); +extern std::shared_ptr<Node> PaddedAvgPooling(const std::array<DimSize_t, DIM> &kernel_dims, + const std::string& name = "", + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0)); +/** + * @brief Creates a padded average pooling operation as a MetaOperator. + * + * This function creates a graph-based MetaOperator representing a padded average pooling operation. + * + * @param[in] kernel_dims The dimensions of the pooling window. + * @param[in] stride_dims The stride dimensions for pooling (default is 1). + * @param[in] padding_dims Padding dimensions before pooling (default is 0). + * @return A shared pointer to the MetaOperator_Op representing the padded average pooling operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> -extern std::shared_ptr<MetaOperator_Op> -PaddedAvgPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = - create_array<DimSize_t, DIM>(1), - const std::array<DimSize_t, 2 * DIM> &padding_dims = - create_array<DimSize_t, 2 * DIM>(0)); +extern std::shared_ptr<MetaOperator_Op> PaddedAvgPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0)); -// helper with C-style array instead of std::array for kernel_dims to allow -// automatic template DIM deduction +// Helper function for average pooling with C-style array for kernel_dims, enabling automatic DIM deduction. template <DimSize_t DIM> extern std::shared_ptr<Node> PaddedAvgPooling(DimSize_t const (&kernel_dims)[DIM], @@ -143,72 +200,92 @@ PaddedAvgPooling(DimSize_t const (&kernel_dims)[DIM], //////////////////////////////////////////////////////////////////////////////// +/** + * @brief Creates a padded max pooling operation. + * + * This function creates a max pooling operation with padding before pooling. + * + * @param[in] kernel_dims The dimensions of the pooling window. + * @param[in] name Optional name for the operation. + * @param[in] stride_dims The stride dimensions for pooling (default is 1). + * @param[in] padding_dims Padding dimensions before pooling (default is 0). + * @param[in] ceil_mode Whether to use ceiling mode for pooling (default is false). + * @return A shared pointer to the Node representing the padded max pooling operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> -inline std::shared_ptr<Node> -PaddedMaxPooling(const std::array<DimSize_t, DIM> &kernel_dims, - const std::string &name = "", - const std::array<DimSize_t, DIM> &stride_dims = - create_array<DimSize_t, DIM>(1), - const std::array<DimSize_t, 2 * DIM> &padding_dims = - create_array<DimSize_t, 2 * DIM>(0), - bool ceil_mode = false) { - auto graph = Sequential( - {Pad<DIM>(padding_dims, (!name.empty()) ? name + "_pad" : ""), - MaxPooling(kernel_dims, - (!name.empty()) ? name + "_maxpooling" : "", - stride_dims, - ceil_mode)}); - - return MetaOperator( - ("PaddedMaxPooling" + std::to_string(DIM) + "D").c_str(), - graph, - {}, - name); +inline std::shared_ptr<Node> PaddedMaxPooling(const std::array<DimSize_t, DIM> &kernel_dims, + const std::string& name = "", + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), + bool ceil_mode = false) { + auto graph = Sequential({ + Pad<DIM>(padding_dims, (!name.empty()) ? name + "_pad" : ""), + MaxPooling(kernel_dims, (!name.empty()) ? name + "_maxpooling" : "", stride_dims, ceil_mode) + }); + + return MetaOperator(("PaddedMaxPooling" + std::to_string(DIM) + "D").c_str(), graph, {}, name); } +/** + * @brief Creates a padded max pooling operation as a MetaOperator. + * + * This function creates a graph-based MetaOperator representing a padded max pooling operation. + * + * @param[in] kernel_dims The dimensions of the pooling window. + * @param[in] stride_dims The stride dimensions for pooling (default is 1). + * @param[in] padding_dims Padding dimensions before pooling (default is 0). + * @param[in] ceil_mode Whether to use ceiling mode for pooling (default is false). + * @return A shared pointer to the MetaOperator_Op representing the padded max pooling operation. + */ template <std::array<DimSize_t, 1>::size_type DIM> -inline std::shared_ptr<MetaOperator_Op> -PaddedMaxPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, - const std::array<DimSize_t, DIM> &stride_dims = - create_array<DimSize_t, DIM>(1), - const std::array<DimSize_t, 2 * DIM> &padding_dims = - create_array<DimSize_t, 2 * DIM>(0), - bool ceil_mode = false) { - auto graph = - Sequential({Pad<DIM>(padding_dims, ""), - MaxPooling(kernel_dims, "", stride_dims, ceil_mode)}); - - return std::make_shared<MetaOperator_Op>( - ("PaddedMaxPooling" + std::to_string(DIM) + "D").c_str(), - graph); +inline std::shared_ptr<MetaOperator_Op> PaddedMaxPooling_Op(const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), + bool ceil_mode = false) { + auto graph = Sequential({ + Pad<DIM>(padding_dims, ""), + MaxPooling(kernel_dims, "", stride_dims, ceil_mode) + }); + return std::make_shared<MetaOperator_Op>(("PaddedMaxPooling" + std::to_string(DIM) + "D").c_str(), graph); } -// helper with C-style array instead of std::array for kernel_dims to allow -// automatic template DIM deduction +// Helper function for max pooling with C-style array to automatically deduce DIM. template <DimSize_t DIM> -inline std::shared_ptr<Node> -PaddedMaxPooling(DimSize_t const (&kernel_dims)[DIM], - const std::string &name = "", - const std::array<DimSize_t, DIM> &stride_dims = - create_array<DimSize_t, DIM>(1), - const std::array<DimSize_t, 2 * DIM> &padding_dims = - create_array<DimSize_t, 2 * DIM>(0), - bool ceil_mode = false) { - return PaddedMaxPooling(to_array(kernel_dims), - name, - stride_dims, - padding_dims, - ceil_mode); +inline std::shared_ptr<Node> PaddedMaxPooling( + DimSize_t const (&kernel_dims)[DIM], + const std::string& name = "", + const std::array<DimSize_t, DIM> &stride_dims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, 2*DIM> &padding_dims = create_array<DimSize_t,2*DIM>(0), + bool ceil_mode= false) { + return PaddedMaxPooling(to_array(kernel_dims), name, stride_dims, padding_dims, ceil_mode); } -//////////////////////////////////////////////////////////////////////////////// - +/** + * @brief Creates an LSTM (Long Short-Term Memory) operator. + * + * This function creates an LSTM operation which is a popular recurrent neural network (RNN) layer for sequence processing. + * + * @param[in] in_channels The number of input channels. + * @param[in] hidden_channels The number of hidden channels in the LSTM. + * @param[in] seq_length The length of the input sequence. + * @param[in] noBias Whether to disable the bias (default is false). + * @param[in] name Optional name for the operation. + * @return A shared pointer to the Node representing the LSTM operation. + */ std::shared_ptr<Node> LSTM(DimSize_t in_channels, DimSize_t hidden_channels, DimSize_t seq_length, bool noBias = false, const std::string &name = ""); +/** + * @brief Creates an LSTM (Long Short-Term Memory) operation as a MetaOperator. + * + * This function creates an LSTM operation as a MetaOperator for use in graph-based computation. + * + * @param[in] seq_length The length of the input sequence. + * @return A shared pointer to the MetaOperator_Op representing the LSTM operation. + */ std::shared_ptr<MetaOperator_Op> LSTM_Op(DimSize_t seq_length); std::shared_ptr<MetaOperator_Op> LeakyOp(); diff --git a/include/aidge/operator/Move.hpp b/include/aidge/operator/Move.hpp index 49d92cd12..caea7a646 100644 --- a/include/aidge/operator/Move.hpp +++ b/include/aidge/operator/Move.hpp @@ -30,6 +30,18 @@ public: void forward() override; }; +/** + * @brief Description of a Move operation that copies the input Tensor to the output Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = x` + * + * This operation copies the input Tensor to the output Tensor without modification. + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Move_Op : public OperatorTensor, public Registrable<Move_Op, std::tuple<std::string, std::string>, std::function<std::unique_ptr<OperatorImpl>(const Move_Op&)>> { public: @@ -38,8 +50,10 @@ public: Move_Op(); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Move_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Move_Op(const Move_Op& op); diff --git a/include/aidge/operator/Mul.hpp b/include/aidge/operator/Mul.hpp index bfe4fcb0d..913fa05b4 100644 --- a/include/aidge/operator/Mul.hpp +++ b/include/aidge/operator/Mul.hpp @@ -25,7 +25,26 @@ namespace Aidge { /** - * @brief Tensor element-wise multiplication. + * @brief Description of an element-wise Multiplication operation on input Tensors, + * supporting NumPy broadcasting. + * + * For each pair of elements x and y from the input Tensors, the function + * is defined as: + * `f(x, y) = x * y` + * + * Broadcasting adjusts shapes of the input Tensors to make them compatible: + * - Tensors are aligned from the rightmost dimensions. + * - Dimensions are compatible if they are equal, one of them is 1, or missing. + * + * The output Tensor shape is determined by taking the maximum size along + * each dimension of the input Tensors after broadcasting. + * + * Examples: + * 1. Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + * 2. Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + * + * @see OperatorTensor + * @see Registrable */ class Mul_Op : public OperatorTensor, public Registrable<Mul_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Mul_Op&)>> { @@ -35,9 +54,10 @@ public: Mul_Op() : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), - * but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Mul_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Mul_Op(const Mul_Op& op); diff --git a/include/aidge/operator/Operator.hpp b/include/aidge/operator/Operator.hpp index 5f148e126..2c9623cea 100644 --- a/include/aidge/operator/Operator.hpp +++ b/include/aidge/operator/Operator.hpp @@ -23,35 +23,50 @@ #include <fmt/format.h> #endif - #include "aidge/backend/OperatorImpl.hpp" #include "aidge/data/Data.hpp" #include "aidge/utils/Attributes.hpp" #include "aidge/utils/Types.h" - #ifdef PYBIND namespace py = pybind11; #endif namespace Aidge { +/** + * @enum OperatorType + * @brief Specifies the type of the operator. + */ enum class OperatorType { - Data, - Tensor + Data, /**< Indicates a data operator. */ + Tensor /**< Indicates a tensor operator. */ }; +/** + * @enum InputCategory + * @brief Describes the category of an input for an operator. + */ enum class InputCategory { - Data, - Param, - OptionalData, - OptionalParam + Data, /**< Regular data input. */ + Param, /**< Parameter input. */ + OptionalData, /**< Optional data input. */ + OptionalParam /**< Optional parameter input. */ }; +/** + * @class Operator + * @brief Base class for all operator types in the Aidge framework. + * + * The `Operator` class provides a foundation for implementing various operator types. + * Derived classes must implement specific behaviors for computation, attributes, + * and input/output handling. + */ class Operator : public std::enable_shared_from_this<Operator> { protected: - /** Implementation of the operator. */ + /** @brief Implementation of the operator. */ std::shared_ptr<OperatorImpl> mImpl; - /** Attributes of the associated Node. + + /** @brief Attributes of the associated Node. * * Default to empty vector for copy construction because two Operator cannot * be associated to the same Node. @@ -59,25 +74,48 @@ protected: std::vector<std::shared_ptr<DynamicAttributes>> mInheritedAttrs{}; private: - /** Type of Operator. */ + /** @brief Type of the operator (e.g., "Add", "AveragePool"). */ std::string mType; - /** Type of data the Operator should handle. */ + + /** @brief Specifies whether the operator works on data or tensors. */ const OperatorType mOperatorType; + + /** @brief Categories for each input. */ const std::vector<InputCategory> mInputsCategory; + + /** @brief Number of outputs generated by the operator. */ const IOIndex_t mNbOut; + + /** @brief Set of back edge input indexes for recurring operators. */ std::set<IOIndex_t> mBackEdges; public: + /** @brief Deleted default constructor. */ Operator() = delete; - Operator(const std::string& type, const std::vector<InputCategory>& inputsCategory, const IOIndex_t nbOut, const OperatorType operatorType = OperatorType::Data) - : mType(type), - mOperatorType(operatorType), - mInputsCategory(inputsCategory), - mNbOut(nbOut) + + /** + * @brief Constructs an Operator instance. + * + * @param[in] type The type of operator (e.g., "Add", "AveragePool"). + * @param[in] inputsCategory Categories of each input. + * @param[in] nbOut Number of outputs. + * @param[in] operatorType Type of operator (Data or Tensor). + */ + Operator(const std::string& type, const std::vector<InputCategory>& inputsCategory, + const IOIndex_t nbOut, const OperatorType operatorType = OperatorType::Data) + : mType(type), + mOperatorType(operatorType), + mInputsCategory(inputsCategory), + mNbOut(nbOut) { // ctor } + /** + * @brief Copy constructor. + * + * @param[in] op The operator to copy. + */ Operator(const Operator& op): std::enable_shared_from_this<Operator>(), mOperatorType(op.mOperatorType), @@ -95,14 +133,24 @@ public: // return shared_from_this(); // } + /** @brief Virtual destructor. */ virtual ~Operator() noexcept; public: void setInheritedAttrs(std::shared_ptr<DynamicAttributes>& attr) { mInheritedAttrs.push_back(attr); } + + /** + * @brief Creates a clone of the current operator. + * + * Derived classes must implement this method to provide a deep copy of the operator. + * + * @return A shared pointer to the cloned operator. + */ virtual std::shared_ptr<Operator> clone() const = 0; + /** @brief Returns the attributes of the operator. */ virtual std::shared_ptr<Attributes> attributes() const { return nullptr; }; /** @@ -119,44 +167,76 @@ public: } /** - * @brief Set the specified input with a shallow copy. - * @param inputIdx Index of the input to set. - * @param data Data to copy. + * @brief Associates a shallow copy of the specified input data with the operator. + * + * Derived classes must implement this method. + * + * @param[in] inputIdx Index of the input to associate. + * @param[in] data Data to associate. */ virtual void associateInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) = 0; + + /** @brief Resets the specified input. */ virtual void resetInput(const IOIndex_t inputIdx) = 0; /** - * @brief Set the specified input value by performing a deep copy of the given data. - * The pointer itself is not changed, thus keeping the current connections. - * @param inputIdx Index of the input to set. - * @param data Data to copy. + * @brief Sets the specified input with a deep copy of the given data. + * + * Derived classes must implement this method. + * + * @param[in] inputIdx Index of the input to set. + * @param[in] data Data to set. */ virtual void setInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) = 0; + + /** @brief Retrieves the raw input data for the specified index. */ virtual std::shared_ptr<Data> getRawInput(const IOIndex_t inputIdx) const = 0; - /** - * @brief Set the specified output value by performing a deep copy of the given data. - * The pointer itself is not changed, thus keeping the current connections. - * @param inputIdx Index of the input to set. + + /** + * @brief Sets the specified output with a deep copy of the given data. + * + * Derived classes must implement this method. + * + * @param[in] outputIdx Index of the output to set. + * @param[in] data Data to set. */ virtual void setOutput(const IOIndex_t outputIdx, const std::shared_ptr<Data>& data) const = 0; - virtual std::shared_ptr<Data> getRawOutput(const IOIndex_t outputIdx) const = 0; + /** @brief Retrieves the raw output data for the specified index. */ + virtual std::shared_ptr<Data> getRawOutput(const IOIndex_t outputIdx) const = 0; -/////////////////////////////////////////////////////// -// IMPLEMENTATION -/////////////////////////////////////////////////////// - virtual std::string backend() const noexcept { - return mImpl ? mImpl->backend() : ""; - } + /** + * @brief Returns the backend implementation name. + * + * @return The name of the backend implementation. + */ + virtual std::string backend() const noexcept { return mImpl ? mImpl->backend() : ""; } + /** + * @brief Sets the backend implementation. + * + * @param[in] name Name of the backend. + * @param[in] device Device index. + */ virtual void setBackend(const std::string& name, DeviceIdx_t device = 0) = 0; + + /** + * @brief Sets the backend implementation for multiple devices. + * + * @param[in] backends A vector of backend and device index pairs. + */ void setBackend(const std::vector<std::pair<std::string, DeviceIdx_t>>& backends); + virtual void setDataType(const DataType& dataType) const = 0; virtual void setDataFormat(const DataFormat& dataFormat) const = 0; - + /** + * @brief Returns the available backend implementations. + * + * Derived classes must implement this method. + * + * @return A set of available backend names. + */ virtual std::set<std::string> getAvailableBackends() const = 0; - /** * @brief Set a new OperatorImpl to the Operator * @@ -207,23 +287,24 @@ public: virtual void forward(); virtual void backward(); + /** + * @brief Returns the type of the operator. + * + * @return The operator type as a string. + */ + inline std::string type() const noexcept { return mType; } -/////////////////////////////////////////////////////// -// INNER -/////////////////////////////////////////////////////// - - inline std::string type() const noexcept { - return mType; - } - - inline OperatorType operatorType() const noexcept{ - return mOperatorType; - } + /** + * @brief Returns the type of the operator (Data or Tensor). + * + * @return The operator type as an `OperatorType` enum value. + */ + inline OperatorType operatorType() const noexcept { return mOperatorType; } - inline std::vector<InputCategory> inputCategory() const { - return mInputsCategory; - } + /** @brief Returns the categories of all inputs. */ + inline std::vector<InputCategory> inputCategory() const { return mInputsCategory; } + /** @brief Returns the category of a specific input. */ inline InputCategory inputCategory(IOIndex_t idx) const { // AIDGE_ASSERT(idx < mInputsCategory.size(), "Input #{} out of range (number of inputs is {})", idx, mInputsCategory.size()); return mInputsCategory.at(idx); @@ -231,32 +312,37 @@ public: virtual inline bool isAtomic() const noexcept { return true; } - inline IOIndex_t nbInputs() const noexcept { return mInputsCategory.size(); }; - inline IOIndex_t nbOutputs() const noexcept { return mNbOut; }; + /** @brief Returns the number of inputs. */ + inline IOIndex_t nbInputs() const noexcept { return mInputsCategory.size(); } + + /** @brief Returns the number of outputs. */ + inline IOIndex_t nbOutputs() const noexcept { return mNbOut; } /** - * @brief Set the back edge input indexes for recurting operators. - * Any recurring operators should specify it's back edges, otherwise - * the interpretation of the data flow graph may not be possible. + * @brief Sets the back edge input indexes for recurring operators. + * + * @param[in] backEdges A set of input indexes representing back edges. */ inline void setBackEdges(const std::set<IOIndex_t>& backEdges) { mBackEdges = backEdges; } /** - * @brief Returns whether the given input index is a back edge. - * @return true if the input index is in the back edge set + * @brief Checks if a given input index is a back edge. + * + * @param[in] inputIdx Index of the input to check. + * @return True if the input index is a back edge, false otherwise. */ - inline bool isBackEdge(IOIndex_t inputIdx) const { - return mBackEdges.find(inputIdx) != mBackEdges.end(); - } + inline bool isBackEdge(IOIndex_t inputIdx) const { return mBackEdges.find(inputIdx) != mBackEdges.end(); } - static const std::vector<std::string> getInputsName() { - return {}; - } - static const std::vector<std::string> getOutputsName() { - return {}; - } + /** @brief Returns an empty vector of input names. */ + static const std::vector<std::string> getInputsName() { return {}; } + + /** @brief Returns an empty vector of output names. */ + static const std::vector<std::string> getOutputsName() { return {}; } #ifdef PYBIND + /** + * @brief Returns a string representation of the operator (for Python bindings). + */ std::string repr() const { return fmt::format("Operator(type = '{}', nb_in = {}, nb_out = {}, attr = {}, backend = {})", type(), @@ -267,6 +353,7 @@ public: } #endif }; -} // namespace Aidge -#endif /* AIDGE_CORE_OPERATOR_OPERATOR_H_ */ +} // namespace Aidge + +#endif // AIDGE_CORE_OPERATOR_OPERATOR_H_ diff --git a/include/aidge/operator/OperatorTensor.hpp b/include/aidge/operator/OperatorTensor.hpp index 5a4fcb5f4..a515ecb5b 100644 --- a/include/aidge/operator/OperatorTensor.hpp +++ b/include/aidge/operator/OperatorTensor.hpp @@ -23,18 +23,36 @@ namespace Aidge { class Tensor; + +/** + * @class OperatorTensor + * @brief Base class for all operators that work with tensor inputs and outputs. + * + * The `OperatorTensor` class provides an abstraction for operations on tensors + * with features such as input/output management, dimension handling, and + * receptive field computation. + * + * @see Operator + */ class OperatorTensor : public Operator { /* TODO: Add an attribute specifying the type of Data used by the Operator. * The same way ``Type`` attribute specifies the type of Operator. Hence this * attribute could be checked in the forwardDims function to assert Operators - * being used work with Tensors and cast them to OpertorTensor instead of + * being used work with Tensors and cast them to OperatorTensor instead of * Operator. */ /* TODO: Maybe change type attribute of Data object by an enum instead of an * array of char. Faster comparisons. */ protected: + /** + * @brief Inputs of the operator represented as tensors. + */ std::vector<std::shared_ptr<Tensor>> mInputs; + + /** + * @brief Outputs of the operator represented as tensors. + */ std::vector<std::shared_ptr<Tensor>> mOutputs; public: @@ -51,66 +69,142 @@ public: OperatorTensor(const std::string& type, const std::vector<InputCategory>& inputsCategory, const IOIndex_t nbOut); + /** + * @brief Copy constructor. + * @param[in] other Another `OperatorTensor` instance to copy. + */ OperatorTensor(const OperatorTensor& other); + /** + * @brief Destructor for the OperatorTensor class. + */ ~OperatorTensor(); public: /////////////////////////////////////////////////// + /** + * @brief Associates an input tensor to the operator. + * @param[in] inputIdx Index of the input to associate. + * @param[in] data Shared pointer to the data to associate. + */ virtual void associateInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) override; + + /** + * @brief Resets the input tensor at a given index. + * @param[in] inputIdx Index of the input to reset. + */ void resetInput(const IOIndex_t inputIdx) override final; /////////////////////////////////////////////////// /////////////////////////////////////////////////// // Tensor access - // input management + + /** + * @brief Sets an input tensor for the operator. + * @param[in] inputIdx Index of the input to set. + * @param[in] data Shared pointer to the data to set. + */ void setInput(const IOIndex_t inputIdx, const std::shared_ptr<Data>& data) override; + + /** + * @brief Retrieves an input tensor. + * @param[in] inputIdx Index of the input to retrieve. + * @return Shared pointer to the input tensor. + */ const std::shared_ptr<Tensor>& getInput(const IOIndex_t inputIdx) const; + virtual const std::vector<std::shared_ptr<Tensor>>& getInputs() const; + + /** + * @brief Retrieves a raw input tensor. + * @param[in] inputIdx Index of the input to retrieve. + * @return Shared pointer to the raw input tensor. + */ std::shared_ptr<Data> getRawInput(const IOIndex_t inputIdx) const override final; - // output management + /** + * @brief Sets an output tensor for the operator. + * @param[in] outputIdx Index of the output to set. + * @param[in] data Shared pointer to the data to set. + */ void setOutput(const IOIndex_t outputIdx, const std::shared_ptr<Data>& data) const override; + + /** + * @brief Retrieves an output tensor. + * @param[in] outputIdx Index of the output to retrieve. + * @return Shared pointer to the output tensor. + */ virtual const std::shared_ptr<Tensor>& getOutput(const IOIndex_t outputIdx) const; + virtual const std::vector<std::shared_ptr<Tensor>>& getOutputs() const; + /** + * @brief Retrieves a raw output tensor. + * @param[in] outputIdx Index of the output to retrieve. + * @return Shared pointer to the raw output tensor. + */ std::shared_ptr<Aidge::Data> getRawOutput(const Aidge::IOIndex_t outputIdx) const override final; /////////////////////////////////////////////////// /////////////////////////////////////////////////// // Tensor dimensions + /** - * @brief For a given output feature area, compute the associated receptive - * field for each data input. - * @param firstIdx First index of the output feature. - * @param outputDims Size of output feature. - * @param outputIdx Index of the output. Default 0. - * @return std::vector<std::pair<std::size_t, std::vector<DimSize_t>>> - * For each dataInput Tensor of the Operator, the first index and dimensions of the feature area. + * @brief Computes the receptive field for a given output feature area. + * + * @param[in] firstIdx First index of the output feature. + * @param[in] outputDims Dimensions of the output feature. + * @param[in] outputIdx Index of the output (default is 0). + * + * @return Vector of pairs containing, for each data input tensor, the first index and dimensions of the feature area. */ virtual std::vector<std::pair<std::vector<Aidge::DimSize_t>, std::vector<DimSize_t>>> computeReceptiveField(const std::vector<DimSize_t>& firstEltDims, const std::vector<DimSize_t>& outputDims, const IOIndex_t outputIdx = 0) const; - /** - * @brief Will compute the dimensions of operator's output tensor given the input sizes - * If the output dimensions cannot be computed because it depends on some undefined inputs then forwardDims will return false and enter in TOKEN mode for subsequent tensors. - * - TOKEN mode means that forwarddims will only ensure that all inputs and outputs of the graph the node is within are connected. - * @param[in] allowDataDependency if set to true, this means that this operator output dimensions depends on the dimensions of optional parameter tensors. - * @return true if dims have been properly forwarded. false otherwise. If set to false, then forwardDims will enter in token mode. - * + /** + * @brief Computes the dimensions of the operator's output tensor based on input sizes. + * + * - If the output dimensions depend on undefined inputs, this function returns false and enters TOKEN mode. + * - TOKEN mode ensures that all inputs and outputs of the graph the node belongs to are connected. + * + * @param[in] allowDataDependency Flag to indicate if output dimensions depend on optional parameter tensors. + * @return True if dimensions are successfully computed, false otherwise. */ virtual bool forwardDims(bool allowDataDependency = false); + + /** + * @brief Checks if dimensions have been successfully forwarded. + * @return True if dimensions are forwarded, false otherwise. + */ virtual bool dimsForwarded() const; /////////////////////////////////////////////////// + /** + * @brief Sets the data type of the operator's tensors. + * @param dataType Data type to set. + */ virtual void setDataType(const DataType& dataType) const override; + + /** + * @brief Sets the data format of the operator's tensors. + * @param dataFormat Data format to set. + */ virtual void setDataFormat(const DataFormat& dataFormat) const override; + /** + * @brief Executes the forward operation for the operator. + */ virtual void forward() override; protected: + /** + * @brief Checks if all inputs are associated. + * @param checkNonEmpty Flag to indicate if non-empty check is required. + * @return True if inputs are associated, false otherwise. + */ bool inputsAssociated(bool checkNonEmpty = true) const; }; + } // namespace Aidge #endif // AIDGE_CORE_OPERATOR_OPERATORTENSOR_H_ diff --git a/include/aidge/operator/Pad.hpp b/include/aidge/operator/Pad.hpp index 181a4e88a..c1ed3500c 100644 --- a/include/aidge/operator/Pad.hpp +++ b/include/aidge/operator/Pad.hpp @@ -25,106 +25,255 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class PadAttr { BeginEndBorders, BorderType, BorderValue }; + +/** + * @enum PadAttr + * @brief Attributes for the Pad operator. + */ +enum class PadAttr { + BeginEndBorders, ///< Specifies the padding sizes for the beginning and end of each dimension. + BorderType, ///< Type of border handling during padding. + BorderValue ///< Value to be used for constant padding. +}; + +/** + * @enum PadBorderType + * @brief Types of border handling available for padding. + */ enum class PadBorderType { - /** @brief all out of bound values will be set to a given value.*/ - Constant, - Edge, - Reflect, - Wrap, - /** @brief all out of bound values will be set to 0.*/ - Zero, + Constant, ///< Out-of-bound values set to a constant value. + Edge, ///< Values are replicated from the nearest edge. + Reflect, ///< Values are mirrored around the edges. + Wrap, ///< Values wrap around the tensor dimensions. + Zero ///< All out-of-bound values are set to 0. }; +/** + * @class Pad_Op + * @brief Implementation of the Pad operator. + * + * The Pad operator adds padding to the input tensor along specified dimensions. + * Padding can be customized by specifying the border type and border value. + * + * @tparam DIM The number of dimensions for the padding operation. + */ +/** + * @brief Description of tensor padding along spatial dimensions with configurable border handling. + * + * The operator adds Padding for each spatial dimension (leaving the batch and channel dimensions unchanged). + * The operator supports various border handling techniques (e.g., constant padding, reflection, wrapping). + * + * ### Output Tensor Shape: + * If the input tensor has a shape `[B, C, d1, d2, ..., dN]`, where `B` is the batch size, + * `C` is the number of channels, and `[d1, d2, ..., dN]` are the spatial dimensions, + * and the padding is defined by `beginEndTuples = {b1, e1, b2, e2, ..., bN, eN}`, + * the output tensor shape will be: + * + * `[B, C, d1 + b1 + e1, d2 + b2 + e2, ..., dN + bN + eN]`. + * + * The padding values `b_i` and `e_i` specify the number of elements to add before and after + * the corresponding spatial dimension `d_i`. Batch size and channel count remain unchanged. + * + * @example Constant Padding: + * - beginEndTuples = [1, 1, 2, 2] + * - Input tensor shape: `[B, C, 3, 4]` (batch and channel are fixed) + * - Output tensor shape: `[B, C, 3 + 1 + 1, 4 + 2 + 2] = [B, C, 5, 8]` + * - Padding values: Zero (0.0). + * + * @example Edge Padding: + * - padding = [2, 2, 3, 3] + * - Input tensor shape: `[B, C, 5, 5]` + * - Output tensor shape: `[B, C, 5 + 2 + 2, 5 + 3 + 3] = [B, C, 9, 11]` + * - Padding values replicate the edge values of the tensor. + * + * @example Reflect Padding: + * - padding = [1, 1, 2, 2, 0, 0] + * - Input tensor shape: `[B, C, 4, 5, 6]` + * - Output tensor shape: `[B, C, 4 + 1 + 1, 5 + 2 + 2, 6 + 0 + 0] = [B, C, 6, 9, 6]` + * - Padding values mirror the existing tensor values. + * + * This operator is commonly used for image processing, extending spatial dimensions while maintaining + * batch and channel consistency, or aligning tensor dimensions in machine learning workflows. + */ template <DimIdx_t DIM> class Pad_Op : public OperatorTensor, - public Registrable<Pad_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Pad_Op<DIM> &)>> { + public Registrable<Pad_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Pad_Op<DIM>&)>> { public: + /** + * @brief Static string indicating the type of the operator. + */ static const std::string Type; private: using Attributes_ = StaticAttributes<PadAttr, - std::array<DimSize_t, 2*DIM>, - PadBorderType, - double>; + std::array<DimSize_t, 2 * DIM>, // Padding for start and end of each dimension. + PadBorderType, // Border handling type. + double // Border value for constant padding. + >; template <PadAttr e> using attr = typename Attributes_::template attr<e>; - const std::shared_ptr<Attributes_> mAttributes; -public: + const std::shared_ptr<Attributes_> mAttributes; ///< Holds operator attributes. +public: + /** + * @brief Deleted default constructor. + */ Pad_Op() = delete; - constexpr Pad_Op(const std::array<DimSize_t, 2*DIM> &beginEndTuples, + /** + * @brief Constructor for the Pad operator. + * @param beginEndTuples Array specifying padding for the beginning and end of each dimension. + * @param borderType Type of border handling (default is constant). + * @param borderValue Value to use for constant padding (default is 0.0). + */ + constexpr Pad_Op(const std::array<DimSize_t, 2 * DIM>& beginEndTuples, PadBorderType borderType = PadBorderType::Constant, double borderValue = 0.0) : OperatorTensor(Type, {InputCategory::Data}, 1), mAttributes(std::make_shared<Attributes_>( - attr<PadAttr::BeginEndBorders>(beginEndTuples), - attr<PadAttr::BorderType>(borderType), - attr<PadAttr::BorderValue>(borderValue))) {} + attr<PadAttr::BeginEndBorders>(beginEndTuples), + attr<PadAttr::BorderType>(borderType), + attr<PadAttr::BorderValue>(borderValue))) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). + * @brief Copy-constructor. * @param op Operator to copy. + * @details Copies operator attributes and its output tensors, but not its input tensors. The new operator has no associated input. */ Pad_Op(const Pad_Op& op) : OperatorTensor(op), - mAttributes(op.mAttributes) - {} + mAttributes(op.mAttributes) {} /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Pad_Op + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; - + /** + * @brief Compute output dimensions during the forward pass. + * @param[in] allowDataDependency Flag indicating whether to allow data-dependent dimensions. + * @return True if dimensions are computed successfully. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; - void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + /** + * @brief Set the backend for the Pad operator. + * @param name Name of the backend. + * @param device Device index (optional). + */ + void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the available backends for the Pad operator. + * @return A set of available backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } - inline std::array<DimSize_t, 2*DIM>& beginEndBorders() const noexcept { return mAttributes->template getAttr<PadAttr::BeginEndBorders>(); } - inline PadBorderType& borderType() const noexcept { return mAttributes->template getAttr<PadAttr::BorderType>(); } - inline double& borderValue() const noexcept { return mAttributes->template getAttr<PadAttr::BorderValue>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get or modify the padding values for each dimension. + * @return Reference to the padding values. + */ + inline std::array<DimSize_t, 2 * DIM>& beginEndBorders() const noexcept { + return mAttributes->template getAttr<PadAttr::BeginEndBorders>(); + } + + /** + * @brief Get or modify the border type for padding. + * @return Reference to the border type. + */ + inline PadBorderType& borderType() const noexcept { + return mAttributes->template getAttr<PadAttr::BorderType>(); + } + + /** + * @brief Get or modify the border value for constant padding. + * @return Reference to the border value. + */ + inline double& borderValue() const noexcept { + return mAttributes->template getAttr<PadAttr::BorderValue>(); + } + + /** + * @brief Get the input tensor names. + * @return Vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output tensor names. + * @return Vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create a Pad operation node. + * + * @tparam DIM Number of dimensions for the operation. + * @param[in] beginEndTuples Array specifying padding for the beginning and end of each dimension. + * @param[in] name Name of the operator (optional). + * @param[in] borderType Type of border handling (optional, default is constant). + * @param[in] borderValue Value for constant padding (optional, default is 0.0). + * @return A shared pointer to the Node containing the Pad operator. + */ template <std::array<DimSize_t, 1>::size_type DIM> -std::shared_ptr<Node> Pad(const std::array<DimSize_t, 2*DIM> &beginEndTuples, - const std::string& name = "", - PadBorderType borderType = PadBorderType::Constant, - double borderValue = 0.0); +std::shared_ptr<Node> Pad(const std::array<DimSize_t, 2 * DIM>& beginEndTuples, + const std::string& name = "", + PadBorderType borderType = PadBorderType::Constant, + double borderValue = 0.0); -// helper with C-style array instead of std::array for beginEndTuples to allow automatic template DIM deduction +// Helper overload with C-style array for automatic DIM deduction template <DimSize_t DIM> inline std::shared_ptr<Node> Pad( - DimSize_t const (&beginEndTuples)[2*DIM], + DimSize_t const (&beginEndTuples)[2 * DIM], const std::string& name = "", PadBorderType borderType = PadBorderType::Constant, - double borderValue = 0.0) -{ + double borderValue = 0.0) { return Pad<DIM>(to_array(beginEndTuples), name, borderType, borderValue); } + } // namespace Aidge +// Explicit instantiations for common dimensions extern template class Aidge::Pad_Op<1>; extern template class Aidge::Pad_Op<2>; namespace { + +/** + * @brief EnumStrings specialization for PadAttr. + */ template <> -const char *const EnumStrings<Aidge::PadAttr>::data[] = {"begin_end_borders", "border_type", "border_value"}; +const char* const EnumStrings<Aidge::PadAttr>::data[] = { + "begin_end_borders", + "border_type", + "border_value" +}; +/** + * @brief EnumStrings specialization for PadBorderType. + */ template <> -const char *const EnumStrings<Aidge::PadBorderType>::data[] = {"Constant", "Edge", "Reflect", "Wrap"}; -} +const char* const EnumStrings<Aidge::PadBorderType>::data[] = { + "Constant", + "Edge", + "Reflect", + "Wrap", + "Zero" +}; + +} // namespace #endif /* AIDGE_CORE_OPERATOR_PAD_H_ */ diff --git a/include/aidge/operator/Pop.hpp b/include/aidge/operator/Pop.hpp index d5898b363..0624286f7 100644 --- a/include/aidge/operator/Pop.hpp +++ b/include/aidge/operator/Pop.hpp @@ -24,21 +24,91 @@ #include "aidge/utils/Types.h" namespace Aidge { + +/** + * @class Pop_ProdConso + * @brief Implements the producer-consumer principle for the `Pop` operator. + * + * The `Pop_ProdConso` class defines the logic for managing data dependencies during + * the forward process of the `Pop` operator. + * + * This class ensures that: + * - All data consumed by the `Pop` operator is correctly handled. + * - The operator respects memory and data requirements during the forward computation. + */ class Pop_ProdConso : public ProdConso { public: + /** + * @brief Constructor for the `Pop_ProdConso` class. + * @param[in] op The operator instance for which producer-consumer relationships are managed. + * + * @details: + * - The provided `Operator` instance is used to initialize the base `ProdConso` class. + * - This operator determines specific requirements for data consumption during the forward process. + */ Pop_ProdConso(const Operator& op): ProdConso(op) {} + + /** + * @brief Get the number of data elements required from an input tensor for forward computation. + * @param[in] inputIdx The index of the input tensor. + * @return The number of required elements (`Elts_t`). + * + * @details: + * - For each input tensor identified by `inputIdx`, this method calculates the + * minimum amount of data needed by the `Pop` operator to perform its forward step. + */ Elts_t getNbRequiredData(const IOIndex_t inputIdx) const override; }; +/** + * @class Pop_OpImpl + * @brief Implementation of the `Pop` operation. + * + * The `Pop_OpImpl` class defines the backend-agnostic logic for executing + * the forward pass of the `Pop` operator. + */ class Pop_OpImpl : public OperatorImpl { public: + /** + * @brief Constructs a `Pop_OpImpl` object. + * @param[in] op The operator to be implemented. + * @param[in] backend The backend used for execution (optional). + */ Pop_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} - std::shared_ptr<ProdConso> getProdConso() const override { return std::make_shared<Pop_ProdConso>(mOp); }; + + /** + * @brief Get the Producer Consumer object of the operator. + * @return A shared pointer to the `Pop_ProdConso` object. + */ + std::shared_ptr<ProdConso> getProdConso() const override { return std::make_shared<Pop_ProdConso>(mOp); } + + /** + * @brief Executes the forward pass for the `Pop` operation. + */ void forward() override; }; -enum class PopAttr { ForwardStep }; +/** + * @enum PopAttr + * @brief Attributes specific to the `Pop` operator. + */ +enum class PopAttr { + ForwardStep // Tracks the current step in the forward pass +}; +/** + * @class Pop_Op + * @brief The `Pop` operator is responsible for removing and outputting elements from a data structure. + * + * `Pop` operators are used in models that manipulate sequential data or stacks. + * - **Inputs**: + * - `data_input`: The main data input from which elements are removed. + * - **Outputs**: + * - `data_output`: The output after performing the `Pop` operation. + * + * @see OperatorTensor + * @see Registrable + */ class Pop_Op : public OperatorTensor, public Registrable<Pop_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Pop_Op&)>> { public: @@ -50,46 +120,102 @@ private: const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Default constructor for the `Pop` operator. + */ Pop_Op(); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). + * @brief Copy-constructor. Copies the operator's attributes and its output tensors. + * The new operator has no input tensors associated initially. * @param op Operator to copy. */ Pop_Op(const Pop_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Pop_Op + * @brief Clone the operator by creating a copy of it. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Assign a specific backend and device for computation. + * @param name Name of the backend. + * @param device The device index (default is 0). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + + /** + * @brief Get the list of available backends compatible with this operator. + * @return A set of strings representing backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Perform dimension inference for the operator, optionally allowing + * data dependency during the process. + * @param allowDataDependency Flag indicating whether data dependency is allowed. + * @return True if dimensions were successfully inferred. + */ bool forwardDims(bool allowDataDependency = false) override final; + + /** + * @brief Update the producer-consumer relationships for the `Pop` operator. + * @details: + * - Ensures all required outputs are properly handled during the forward pass. + */ void updateConsummerProducer() override; + + /** + * @brief Executes the forward pass for the `Pop` operation. + */ void forward() override; + /** + * @brief Access the operator's attributes. + * @return A shared pointer to the operator's attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get or set the forward step counter for the operator. + * @return A reference to the forward step counter. + */ inline std::uint32_t& forwardStep() const { return mAttributes->template getAttr<PopAttr::ForwardStep>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Retrieve the names of the operator's input tensors. + * @return A vector of strings representing input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Retrieve the names of the operator's output tensors. + * @return A vector of strings representing output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create a `Pop` operator node. + * @param name The optional name for the node. + * @return A shared pointer to the newly created `Pop` operator node. + */ std::shared_ptr<Node> Pop(const std::string& name = ""); } // namespace Aidge namespace { +/** + * @brief String representations of the `Pop` operator's attributes. + */ template <> const char *const EnumStrings<Aidge::PopAttr>::data[] = { "forward_step" }; } -#endif /* AIDGE_CORE_OPERATOR_POP_H_ */ \ No newline at end of file +#endif /* AIDGE_CORE_OPERATOR_POP_H_ */ diff --git a/include/aidge/operator/Pow.hpp b/include/aidge/operator/Pow.hpp index f6762dd33..5d0afc79d 100644 --- a/include/aidge/operator/Pow.hpp +++ b/include/aidge/operator/Pow.hpp @@ -24,6 +24,28 @@ namespace Aidge { +/** + * @brief Description of an element-wise And operation on input Tensors, + * supporting NumPy broadcasting. + * + * For each pair of elements x and y from the input Tensors, the function + * is defined as: + * `f(x, y) = x^y` + * + * Broadcasting adjusts shapes of the input Tensors to make them compatible: + * - Tensors are aligned from the rightmost dimensions. + * - Dimensions are compatible if they are equal, one of them is 1, or missing. + * + * The output Tensor shape is determined by taking the maximum size along + * each dimension of the input Tensors after broadcasting. + * + * Examples: + * 1. Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + * 2. Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + * + * @see OperatorTensor + * @see Registrable + */ class Pow_Op : public OperatorTensor, public Registrable<Pow_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Pow_Op&)>> { public: @@ -32,8 +54,10 @@ public: Pow_Op() : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Pow_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Pow_Op(const Pow_Op& op) : OperatorTensor(op) diff --git a/include/aidge/operator/Producer.hpp b/include/aidge/operator/Producer.hpp index 115ddcb55..1d6b96582 100644 --- a/include/aidge/operator/Producer.hpp +++ b/include/aidge/operator/Producer.hpp @@ -12,9 +12,13 @@ #ifndef AIDGE_CORE_OPERATOR_PRODUCER_H_ #define AIDGE_CORE_OPERATOR_PRODUCER_H_ -#include <cstddef> #include <array> +#include <cstddef> +#include <functional> #include <memory> +#include <set> +#include <string> +#include <stdexcept> #include <vector> #include "aidge/utils/Types.h" @@ -26,12 +30,40 @@ namespace Aidge { +/** + * @enum ProdAttr + * @brief Attributes specific to the `Producer_Op` class. + */ enum class ProdAttr { Constant }; +/** + * @class Producer_Op + * @brief Represents an operator that stores a tensor in memory and provides it as an output. + * + * The `Producer_Op` class is a specialized operator designed to store a tensor in memory + * and return it as an output tensor. It is typically used to store parameters or input + * values for a computational graph. A `Producer_Op` does not have any input data, parameters, + * or attributes, making it a fundamental building block for constant or initialized values + * within the graph. + * + * Key characteristics of a `Producer_Op`: + * - No inputs: The operator does not accept any input tensors. + * - No parameters or attributes: It is solely responsible for producing an output tensor. + * - Stores and returns a tensor: The stored tensor is accessible as the operator's output. + * + * This operator is useful for scenarios where fixed or pre-initialized tensors need to + * be introduced into a graph, such as weights, biases, or constant values. + * + * @see OperatorTensor + * @see Registrable + */ + class Producer_Op : public OperatorTensor, - public Registrable<Producer_Op, std::string, std::function<std::shared_ptr<OperatorImpl>( - const Producer_Op &)>> { + public Registrable<Producer_Op, + std::string, + std::function<std::shared_ptr<OperatorImpl>( const Producer_Op& )>> +{ public: static const std::string Type; @@ -43,82 +75,178 @@ private: public: Producer_Op() = delete; + /** + * @brief Constructs a `Producer_Op` object with specific dimensions. + * + * @tparam DIM The number of dimensions for the tensor. + * @param[in] dims Array defining the dimensions of the tensor. + * @param[in] constant Indicates whether the tensor is constant. + */ template <std::size_t DIM> - Producer_Op(const std::array<DimSize_t, DIM>& dims, - bool constant = false); + Producer_Op(const std::array<DimSize_t, DIM>& dims, bool constant = false); /** - * @brief Construct a new Producer_Op object from a Tensor. - * - * @param tensor Tensor to set in the Prducer. - * @param constant Whether the Producer should be considered constant. + * @brief Constructs a `Producer_Op` object from an existing tensor. + * + * @param[in] tensor A shared pointer to the tensor to be produced. + * @param[in] constant Indicates whether the tensor should be constant. */ Producer_Op(const std::shared_ptr<Tensor> tensor, bool constant = false); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), - * but not its input tensors (the new operator has no input associated). - * @param op OperatorTensor to copy. + * @brief Copy constructor. + * + * Copies the attributes and output tensors of the operator. + * Input tensors are not copied, and the new operator will have no associated inputs. + * + * @param[in] op The `Producer_Op` object to copy. */ Producer_Op(const Producer_Op& op); public: /** - * @brief Conversion operator from Producer to Tensor. - * - * @return std::shared_ptr<Tensor> + * @brief Conversion operator to retrieve the output tensor. + * + * @return A shared pointer to the output tensor. */ operator std::shared_ptr<Tensor>() const { return mOutputs[0]; } -public: /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Producer_Op(const Producer_Op&) + * @brief Clones the operator using the copy constructor. + * + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; - void associateInput(const IOIndex_t /*inputIdx*/, const std::shared_ptr<Data>& /*data*/) override final { - AIDGE_THROW_OR_ABORT(std::runtime_error, "Producer operator takes no input."); - } - - inline bool forwardDims(bool /*allowDataDependency*/ = false) override final { return true; } - - inline bool dimsForwarded() const noexcept override final { return true; } - - + /** + * @brief Retrieves the dimensions of the output tensor. + * + * @return A vector containing the dimensions of the output tensor. + */ inline const std::vector<DimSize_t> dims() const noexcept { return mOutputs[0]->dims(); } + /** + * @brief Sets the backend for the operator's execution. + * + * @param[in] name The name of the backend. + * @param[in] device The device index (default is 0). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Retrieves the list of available backends for this operator. + * + * @return A set containing the names of available backends. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Retrieves the operator's attributes. + * + * @return A shared pointer to the operator's attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } - inline bool& constant() const { return mAttributes->template getAttr<ProdAttr::Constant>(); } - static const std::vector<std::string> getInputsName(){ - return {}; - } - static const std::vector<std::string> getOutputsName(){ - return {"data_output"}; - } + /** + * @brief Retrieves the constant attribute. + * + * @return A reference to the constant attribute. + */ + inline bool& constant() const { return mAttributes->template getAttr<ProdAttr::Constant>(); } + /** + * @brief Performs the forward operation for the operator. + * + * Generates the output tensor based on the defined attributes and configuration. + */ void forward() override final; + /** + * @brief Placeholder for the backward operation. + * + * This function logs a debug message, as `Producer_Op` typically does not support backpropagation. + */ void backward() override final { Log::debug("Basic Producer backward() function."); } + /** + * @brief Associates an input tensor with the operator. + * + * This operation is not supported by `Producer_Op` as it does not take inputs. + * + * @param[in] inputIdx The index of the input. + * @param[in] data A shared pointer to the data to associate. + * + * @throws std::runtime_error Always throws, as inputs are not supported. + */ + void associateInput(const IOIndex_t /*inputIdx*/, const std::shared_ptr<Data>& /*data*/) override final { + AIDGE_THROW_OR_ABORT(std::runtime_error, "Producer operator takes no input."); + } + + /** + * @brief Checks whether dimensions are forwarded. + * + * @return Always true for `Producer_Op`. + */ + inline bool forwardDims(bool /*allowDataDependency*/ = false) override final { return true; } + + /** + * @brief Confirms that dimensions have been forwarded. + * + * @return Always true for `Producer_Op`. + */ + inline bool dimsForwarded() const noexcept override final { return true; } + + /** + * @brief Retrieves the names of the inputs for the operator. + * + * @return An empty vector, as `Producer_Op` takes no inputs. + */ + static const std::vector<std::string> getInputsName() { return {}; } + + /** + * @brief Retrieves the names of the outputs for the operator. + * + * @return A vector containing the output name "data_output". + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } + + /** + * @brief Sets the output tensor for the operator. + * + * @param[in] outputIdx Index of the output to set. + * @param[in] data A shared pointer to the data. + */ void setOutput(const IOIndex_t outputIdx, const std::shared_ptr<Data>& data) const override; }; -template <std::array<DimSize_t, 1>::size_type DIM> -std::shared_ptr<Node> Producer(const std::array<DimSize_t, DIM> &dims, const std::string& name = "", bool constant = false); +/** + * @brief Helper function to create a producer node with specified dimensions. + * + * @tparam DIM The number of dimensions. + * @param[in] dims Array defining the dimensions of the tensor. + * @param[in] name Optional name for the node. + * @param[in] constant Indicates whether the tensor should be constant. + * + * @return A shared pointer to the created node. + */ +template <std::size_t DIM> +std::shared_ptr<Node> Producer(const std::array<DimSize_t, DIM>& dims, const std::string& name = "", bool constant = false); -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction +/** + * @brief Helper function with a C-style array for dimension deduction. + * + * @param[in] dims C-style array defining the tensor dimensions. + * @param[in] name Optional name for the node. + * @param[in] constant Indicates whether the tensor should be constant. + * + * @return A shared pointer to the created node. + */ template <std::size_t DIM> inline std::shared_ptr<Node> Producer(DimSize_t const (&dims)[DIM], const std::string& name = "", bool constant = false) { - return Producer(to_array(dims), name, constant); + return Producer(to_array(dims), name, constant); } - std::shared_ptr<Node> Producer(const std::shared_ptr<Tensor> tensor, const std::string& name = "", bool constant = false); template <std::array<DimSize_t, 1>::size_type DIM> @@ -127,17 +255,29 @@ std::shared_ptr<Node> addProducer(std::shared_ptr<Node>& otherNode, const std::array<DimSize_t, DIM>& dims, const std::string& extension); -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction +/** + * @brief Adds a producer node to another node with a C-style array. + * + * @param[in] otherNode The node to associate with the producer. + * @param[in] inputIdx The input index. + * @param[in] dims C-style array defining the tensor dimensions. + * @param[in] extension An extension string for the producer. + * + * @return A shared pointer to the updated node. + */ template <std::size_t DIM> std::shared_ptr<Node> addProducer(std::shared_ptr<Node>& otherNode, const IOIndex_t inputIdx, DimSize_t const (&dims)[DIM], const std::string& extension) { return addProducer(otherNode, inputIdx, to_array(dims), extension); } + } // namespace Aidge namespace { +/** + * @brief Enum string representation for `ProdAttr`. + */ template <> -const char *const EnumStrings<Aidge::ProdAttr>::data[] = { - "constant" -}; +const char* const EnumStrings<Aidge::ProdAttr>::data[] = {"constant"}; } + #endif /* AIDGE_CORE_OPERATOR_PRODUCER_H_ */ diff --git a/include/aidge/operator/ReduceMean.hpp b/include/aidge/operator/ReduceMean.hpp index 16fc08af0..6aded3638 100644 --- a/include/aidge/operator/ReduceMean.hpp +++ b/include/aidge/operator/ReduceMean.hpp @@ -26,11 +26,59 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class ReduceMeanAttr { Axes, KeepDims, NoopWithEmptyAxes }; +enum class ReduceMeanAttr { + /** + * @brief Axes over which the mean operation is performed. + * + * Axes are specified as a vector of integers, each representing a dimension + * of the input tensor to be reduced. + */ + Axes, + + /** + * @brief Flag indicating whether to keep reduced dimensions. + * + * - `true`: Retain reduced dimensions with size 1. + * - `false`: Completely remove reduced dimensions. + */ + KeepDims, + + /** + * @brief Flag indicating behavior when axes are empty. + * + * - `true`: No operation is performed if axes are empty. + * - `false`: Reduction is performed over all axes if none are specified. + */ + NoopWithEmptyAxes +}; /** - * @brief This operator has as purpose to reduce given axes by replacing with the mean value. -*/ + * @class ReduceMean_Op + * @brief Implements the ReduceMean operation to compute the mean of a tensor along specified axes. + * + * ReduceMean reduces specified axes of a tensor by computing the mean value. + * The resulting output tensor dimensions depend on the provided attributes. + * + * Output Shape Calculation + * - If `KeepDims` is true: + * Reduced dimensions are retained with size 1. + * - If `KeepDims` is false: + * Reduced dimensions are completely removed. + * + * @example: + * - Input shape: (2, 3, 4, 5) // Batch size 2, 3 channels, 4x5 spatial dimensions + * - Axes: {2, 3} + * - KeepDims: true + * - Output shape: (2, 3, 1, 1) + * @example: + * - Input shape: (2, 3, 4, 5) + * - Axes: {1, 2} + * - KeepDims: false + * - Output shape: (2, 5) + * + * @see OperatorTensor + * @see Registrable + */ class ReduceMean_Op : public OperatorTensor, public Registrable<ReduceMean_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ReduceMean_Op &)>> { @@ -42,15 +90,17 @@ private: std::vector<std::int32_t>, bool, bool>; + template <ReduceMeanAttr e> using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; public: ReduceMean_Op() = delete; /** - * @brief constructor for ReduceMean op + * @brief constructor for ReduceMean operator * @param[in] axes around which perform the operation * @param[in] keep_dims if true we set a dimension of 1 in the place of the reduced axes and * if false we remove the dimension completely @@ -60,31 +110,57 @@ public: ReduceMean_Op(const std::vector<std::int32_t>& axes, bool keep_dims = true, bool noop_with_empty_axes = false); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op ReduceMean_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ ReduceMean_Op(const ReduceMean_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::ReduceMean_Op + * @brief Clone the operator using its copy constructor. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Compute the output dimensions during the forward pass. + * @param[in] allowDataDependency Whether to allow data-dependent dimensions. + * @return Boolean indicating whether dimension computation was successful. + */ bool forwardDims(bool allowDataDependency = false) override final; + /** + * @brief Set the backend for the Reshape operator. + * @param[in] name Name of the backend. + * @param[in] device Device index (optional). + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override final; std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the axes over which the mean is computed. + */ inline std::vector<std::int32_t>& axes() const noexcept { return mAttributes -> getAttr<ReduceMeanAttr::Axes>(); } + + /** + * @brief Get whether reduced dimensions are retained. + */ inline bool& keepDims() const noexcept { return mAttributes -> getAttr<ReduceMeanAttr::KeepDims>(); } - inline bool& noopWithEmptyAxes() const noexcept { return mAttributes -> getAttr<ReduceMeanAttr::NoopWithEmptyAxes>(); } + /** + * @brief Get the behavior when axes are empty. + */ + inline bool& noopWithEmptyAxes() const noexcept { return mAttributes -> getAttr<ReduceMeanAttr::NoopWithEmptyAxes>(); } static const std::vector<std::string> getInputsName() { return {"data_input"}; } + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } @@ -93,28 +169,16 @@ public: }; /** - * @brief Compute the mean value of a Tensor over the provided axes. Dimensions - * may be reduced by erasing the provided axes or not. + * @brief Compute the mean value of a Tensor over the specified axes. * - * @param axes Dimensions over which data mean should be computed. - * @param keep_dims Whether or not reduced dimensions are to be erased. - * @param name Name of the Operator. + * Dimensions may be reduced by erasing the specified axes or retaining them with size 1. + * + * @param[in] axes Dimensions over which data mean should be computed. + * @param[in] keep_dims Whether or not reduced dimensions are to be retained. + * @param[in] noop_with_empty_axes Behavior when no axes are specified. + * @param[in] name Name of the Operator. * @return std::shared_ptr<Node> Node containing the Operator. */ - - -// helper with C-style array instead of std::array for kernel_dims to allow automatic template DIM deduction -// template <DimSize_t DIM> -// inline std::shared_ptr<Node> ReduceMean( -// std::int32_t const (&axes)[DIM], -// DimSize_t keep_dims = 1, -// const std::string& name = "") { -// static_assert(DIM<=MaxDim,"Too many kernel dimensions required by ReduceMean, not supported"); -// return ReduceMean(to_array(axes), keep_dims, name); -// } - -// template <DimIdx_t DIM> -// const std::string ReduceMean_Op::Type = "ReduceMean"; std::shared_ptr<Node> ReduceMean(const std::vector<std::int32_t> &axes, bool keep_dims = true, bool noop_with_empty_axes = false, @@ -124,7 +188,11 @@ std::shared_ptr<Node> ReduceMean(const std::vector<std::int32_t> &axes, namespace { template <> -const char *const EnumStrings<Aidge::ReduceMeanAttr>::data[] = {"axes", "keep_dims", "noop_with_empty_axes"}; +const char *const EnumStrings<Aidge::ReduceMeanAttr>::data[] = { + "axes", + "keep_dims", + "noop_with_empty_axes" +}; } #endif /* AIDGE_CORE_OPERATOR_REDUCEMEAN_H_ */ diff --git a/include/aidge/operator/ReduceSum.hpp b/include/aidge/operator/ReduceSum.hpp index bae03cb7d..5a3674b21 100644 --- a/include/aidge/operator/ReduceSum.hpp +++ b/include/aidge/operator/ReduceSum.hpp @@ -26,12 +26,59 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class ReduceSumAttr { Axes, KeepDims, NoopWithEmptyAxes }; - +enum class ReduceSumAttr { +/** + * @brief Axes over which the mean operation is performed. + * + * Axes are specified as a vector of integers, each representing a dimension + * of the input tensor to be reduced. + */ + Axes, + + /** + * @brief Flag indicating whether to keep reduced dimensions. + * + * - `true`: Retain reduced dimensions with size 1. + * - `false`: Completely remove reduced dimensions. + */ + KeepDims, + + /** + * @brief Flag indicating behavior when axes are empty. + * + * - `true`: No operation is performed if axes are empty. + * - `false`: Reduction is performed over all axes if none are specified. + */ + NoopWithEmptyAxes +}; /** - * @brief This operator has as purpose to reduce given axes by replacing with the sum value. -*/ + * @class ReduceSum_Op + * @brief Implements the ReduceSum operation to compute the sum of a tensor along specified axes. + * + * ReduceSum reduces specified axes of a tensor by computing the sum value. + * The resulting output tensor dimensions depend on the provided attributes. + * + * ### Output Shape Calculation + * - If `KeepDims` is true: + * Reduced dimensions are retained with size 1. + * - If `KeepDims` is false: + * Reduced dimensions are completely removed. + * + * @example: + * - Input shape: (2, 3, 4, 5) // Batch size 2, 3 channels, 4x5 spatial dimensions + * - Axes: {2, 3} + * - KeepDims: true + * - Output shape: (2, 3, 1, 1) + * @example: + * - Input shape: (2, 3, 4, 5) + * - Axes: {1, 2} + * - KeepDims: false + * - Output shape: (2, 5) + * + * @see OperatorTensor + * @see Registrable + */ class ReduceSum_Op : public OperatorTensor, public Registrable<ReduceSum_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ReduceSum_Op &)>> { @@ -67,8 +114,10 @@ public: {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op ReduceSum_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ ReduceSum_Op(const ReduceSum_Op& op) : OperatorTensor(op), @@ -94,9 +143,24 @@ public: void setBackend(const std::string &name, DeviceIdx_t device = 0) override final; std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the axes over which the mean is computed. + */ inline std::vector<std::int32_t>& axes() const noexcept { return mAttributes -> getAttr<ReduceSumAttr::Axes>(); } + + /** + * @brief Get whether reduced dimensions are retained. + */ inline bool& keepDims() const noexcept { return mAttributes -> getAttr<ReduceSumAttr::KeepDims>(); } + + /** + * @brief Get the behavior when axes are empty. + */ inline bool& noopWithEmptyAxes() const noexcept { return mAttributes -> getAttr<ReduceSumAttr::NoopWithEmptyAxes>(); } @@ -109,11 +173,13 @@ public: }; /** - * @brief Compute the sum value of a Tensor over the provided axes. Dimensions - * may be reduced by erasing the provided axes or not. + * @brief Compute the sum value of a Tensor over the specified axes. + * + * Dimensions may be reduced by erasing the specified axes or retaining them with size 1. * * @param axes Dimensions over which data sum should be computed. - * @param keep_dims Whether or not reduced dimensions are to be erased. + * @param keep_dims Whether or not reduced dimensions are to be retained. + * @param noop_with_empty_axes Behavior when no axes are specified. * @param name Name of the Operator. * @return std::shared_ptr<Node> Node containing the Operator. */ diff --git a/include/aidge/operator/Reshape.hpp b/include/aidge/operator/Reshape.hpp index e4f0405f2..c170ad79e 100644 --- a/include/aidge/operator/Reshape.hpp +++ b/include/aidge/operator/Reshape.hpp @@ -23,71 +23,181 @@ #include "aidge/utils/Types.h" namespace Aidge { +/** + * @brief Implementation of the Reshape operator. + * @note This operator implementation is agnostic to the backend and is located here instead of in aidge_backend. + */ class Reshape_OpImpl : public OperatorImpl { public: - Reshape_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + /** + * @brief Constructor for Reshape_OpImpl. + * @param[in] op The Operator instance. + * @param[in] backend The backend name (optional). + */ + Reshape_OpImpl(const Operator& op, const std::string& backend = "") + : OperatorImpl(op, backend) {} + + /** + * @brief Perform the forward operation for the reshape. + */ void forward() override; void backward() override; }; -enum class ReshapeAttr { Shape, AllowZero }; +/** + * @enum ReshapeAttr + * @brief Enumeration of attributes specific to the Reshape operator. + */ +enum class ReshapeAttr { + /** + * @brief The target shape for the output tensor. + */ + Shape, + + /** + * @brief Whether zeros in the shape attribute are allowed. + * + * When true, zeros in the target shape retain the corresponding dimension size from the input tensor. + */ + AllowZero +}; +/** + * @brief Description of Reshape operator that adjusts the shape of the input tensor. + * + * This operator reshapes the input tensor according to the specified target shape. + * If the target shape is not compatible with the input tensor's total number of elements, + * the operation will fail. If the `AllowZero` attribute is true, zeros in the target shape + * retain the corresponding dimensions from the input tensor. + * + * @example Input: Tensor of dimensions `[2, 3]` with `Shape = {3, 2}` results in a tensor with dimensions `[3, 2]`. + * @example Input: Tensor of dimensions `[4, 3]` with `Shape = {0, -1}` and `AllowZero = true` results in a tensor with dimensions `[4, 3]`. + * + * @see OperatorTensor + * @see Registrable + */ class Reshape_Op : public OperatorTensor, public Registrable<Reshape_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Reshape_Op&)>> { public: + /** + * @brief Static type string for the Reshape operator. + */ static const std::string Type; private: - using Attributes_ = StaticAttributes<ReshapeAttr, - std::vector<std::int64_t>, - bool>; + using Attributes_ = StaticAttributes<ReshapeAttr, std::vector<std::int64_t>, bool>; template <ReshapeAttr e> using attr = typename Attributes_::template attr<e>; const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Deleted default constructor. + */ Reshape_Op() = delete; + /** + * @brief Constructor for the Reshape operator. + * @param[in] shape Target shape for the output tensor. + * @param[in] allowzero Whether zeros in the shape retain input tensor dimensions. + */ Reshape_Op(const std::vector<std::int64_t>& shape = {}, bool allowzero = false); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op Reshape_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Reshape_Op(const Reshape_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Reshape_Op + * @brief Clone the operator using its copy constructor. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Check whether the dimensions have been forwarded successfully. + * @return True if dimensions were successfully forwarded. + */ bool dimsForwarded() const override final; + + /** + * @brief Compute the output dimensions during the forward pass. + * @param[in] allowDataDependency Whether to allow data-dependent dimensions. + * @return Boolean indicating whether dimension computation was successful. + */ bool forwardDims(bool allowDataDependency = false) override final; + /** + * @brief Set the backend for the Reshape operator. + * @param[in] name Name of the backend. + * @param[in] device Device index (optional). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + + /** + * @brief Get the available backends for the Reshape operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get or modify the target shape for the output tensor. + * @return Reference to the shape attribute. + */ inline std::vector<std::int64_t>& shape() const { return mAttributes->template getAttr<ReshapeAttr::Shape>(); } + + /** + * @brief Get or modify the AllowZero attribute. + * @return Reference to the AllowZero attribute. + */ inline bool& allowZero() const { return mAttributes->template getAttr<ReshapeAttr::AllowZero>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get the input tensor names for the Reshape operator. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output tensor names for the Reshape operator. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create a Reshape operation node. + * + * @param[in] shape Target shape for the output tensor (optional). + * @param[in] allowzero Whether zeros in the shape retain input tensor dimensions. + * @param[in] name Name of the operator (optional). + * @return A shared pointer to the Node containing the Reshape operator. + */ std::shared_ptr<Node> Reshape(const std::vector<std::int64_t>& shape = {}, - bool allowzero = false, - const std::string &name = ""); + bool allowzero = false, + const std::string& name = ""); + } // namespace Aidge namespace { +/** + * @brief EnumStrings specialization for ReshapeAttr. + */ template <> -const char *const EnumStrings<Aidge::ReshapeAttr>::data[] = { "shape", "allow_zero" }; +const char *const EnumStrings<Aidge::ReshapeAttr>::data[] = {"shape", "allow_zero"}; } #endif /* AIDGE_CORE_OPERATOR_RESHAPE_H_ */ diff --git a/include/aidge/operator/Round.hpp b/include/aidge/operator/Round.hpp index 00352421d..3a5bb0859 100644 --- a/include/aidge/operator/Round.hpp +++ b/include/aidge/operator/Round.hpp @@ -24,20 +24,33 @@ namespace Aidge { +/** + * @brief Description of an element-wise Round operation on an input Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = round(x)`, where round(x) rounds x to the nearest integer value. + * Halfway cases are rounded away from zero. + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Round_Op : public OperatorTensor, - public Registrable<Round_Op, + public Registrable<Round_Op, // <Op, backend, implementation creation function> std::string, - std::function<std::shared_ptr<OperatorImpl>(const Round_Op&)>> { - - + std::function<std::shared_ptr<OperatorImpl>(const Round_Op&)>> +{ public: static const std::string Type; Round_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Round_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Round_Op(const Round_Op& op); diff --git a/include/aidge/operator/Scaling.hpp b/include/aidge/operator/Scaling.hpp index 9465667ba..b33fb5841 100644 --- a/include/aidge/operator/Scaling.hpp +++ b/include/aidge/operator/Scaling.hpp @@ -23,17 +23,55 @@ #include "aidge/utils/StaticAttributes.hpp" #include "aidge/utils/Types.h" -//Caution: This operator is now deprecated and should no longer be used. -//It has been replaced by the MetaOperator "Quantizer" (located directly in aidge_quantization). +// Caution: This operator is now deprecated and should no longer be used. +// It has been replaced by the MetaOperator "Quantizer" (located directly in aidge_quantization). namespace Aidge { enum class ScalingAttr { - ScalingFactor, QuantizedNbBits, IsOutputUnsigned + /** + * @brief Scaling factor applied to the input tensor. + * + * This floating-point value is used to scale the input tensor. + */ + ScalingFactor, + + /** + * @brief Number of quantization bits. + * + * Specifies the bit-width used for quantization. + * For example, a value of `8` represents 8-bit quantization. + */ + QuantizedNbBits, + + /** + * @brief Indicates whether the output is unsigned. + * + * - `true`: The quantized output values are unsigned integers. + * - `false`: The quantized output values are signed integers. + */ + IsOutputUnsigned }; +/** + * @brief Description of a scaling operation to scale and quantize input tensors. + * + * The `Scaling_Op` class applies a scaling factor to the input tensor, quantizes + * the scaled values to a specified bit-width, and outputs either signed or unsigned integers + * based on the configuration. + * + * The input and output Tensors have the same dimensions. + * + * ### Deprecation Notice + * This operator is deprecated and has been replaced by the `Quantizer` MetaOperator. + * It is retained for backward compatibility and should not be used in new implementations. + * + * @see OperatorTensor + * @see Registrable + */ class Scaling_Op : public OperatorTensor, public Registrable<Scaling_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Scaling_Op&)>> { + public: static const std::string Type; @@ -45,44 +83,71 @@ private: public: Scaling_Op() = delete; + /** + * @brief Constructor for the Scaling operator. + * @param[in] scalingFactor Scaling factor to be applied to the input tensor. + * @param[in] nbBits Number of bits for quantization. + * @param[in] isOutputUnsigned Flag indicating whether the output should be unsigned. + */ Scaling_Op(float scalingFactor, std::size_t nbBits, bool isOutputUnsigned); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op Scaling_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not its input tensors. + * The new operator has no associated input. */ Scaling_Op(const Scaling_Op& op); /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Scaling_Op */ std::shared_ptr<Operator> clone() const override; void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the scaling factor. + */ inline float& scalingFactor() const noexcept { return mAttributes -> getAttr<ScalingAttr::ScalingFactor>(); } + + /** + * @brief Get the number of quantization bits. + */ inline std::size_t& quantizedNbBits() const noexcept { return mAttributes -> getAttr<ScalingAttr::QuantizedNbBits>(); } + + /** + * @brief Check if the output is unsigned. + */ inline bool& isOutputUnsigned() const noexcept { return mAttributes -> getAttr<ScalingAttr::IsOutputUnsigned>(); } static const std::vector<std::string> getInputsName() { return {"data_input"}; } + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; -/* -inline std::shared_ptr<Node> Scaling(float scalingFactor = 1.0f, const std::string& name = "") { - return std::make_shared<Node>(std::make_shared<Scaling_Op>(scalingFactor), name); -} -*/ +/** + * @brief Apply a scaling and quantization operation on a tensor. + * + * @param[in] scalingFactor Scaling factor to apply to the input tensor. + * @param[in] quantizedNbBits Number of bits for quantization. + * @param[in] isOutputUnsigned Whether the quantized output should be unsigned. + * @param[in] name Name of the Operator. + * @return std::shared_ptr<Node> Node containing the Operator. + */ std::shared_ptr<Node> Scaling(float scalingFactor = 1.0f, - std::size_t quantizedNbBits=8, - bool isOutputUnsigned=true, + std::size_t quantizedNbBits = 8, + bool isOutputUnsigned = true, const std::string& name = ""); } // namespace Aidge diff --git a/include/aidge/operator/Shape.hpp b/include/aidge/operator/Shape.hpp index d40067d29..609e354d5 100644 --- a/include/aidge/operator/Shape.hpp +++ b/include/aidge/operator/Shape.hpp @@ -12,7 +12,7 @@ #ifndef AIDGE_CORE_OPERATOR_SHAPE_H_ #define AIDGE_CORE_OPERATOR_SHAPE_H_ -#include <cstdint> // std::int64_t +#include <cstdint> // For fixed-width integer types (std::int64_t) #include <memory> #include <string> #include <vector> @@ -25,20 +25,62 @@ #include "aidge/utils/Types.h" namespace Aidge { + +/** + * @class Shape_OpImpl + * @brief Backend-agnostic implementation of the Shape operator. + * + * This implementation is responsible for extracting and returning the shape + * of the input tensor. Specific backend functionality can extend this. + */ class Shape_OpImpl : public OperatorImpl { public: + /** + * @brief Constructor for the Shape_OpImpl class. + * @param[in] op The Operator instance. + * @param[in] backend The backend name (optional). + */ Shape_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + + /** + * @brief Perform the forward operation to compute the shape of the tensor. + */ void forward() override; }; -enum class ShapeAttr { Start, End }; +/** + * @enum ShapeAttr + * @brief Enumeration of attributes specific to the Shape operator. + */ +enum class ShapeAttr { + /** + * @brief Start index of the slice of dimensions to return. + */ + Start, + /** + * End index of the slice of dimensions to return (exclusive). + */ + End +}; +/** + * @brief Description of the operation of extracting the shape of a tensor. + * + * The Shape operator extracts the shape (dimensions) of a tensor as an output tensor. + * It allows optional slicing of the dimensions by specifying a start and end index. + * + * @example Input: Tensor with shape `[4, 5, 6, 7]`, `start=1`, `end=3` -> Output: `[5, 6]` + * @example Input: Tensor with shape `[4, 5, 6]`, `start=0`, `end=-1` (default) -> Output: `[4, 5, 6]` + */ class Shape_Op : public OperatorTensor, public Registrable<Shape_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Shape_Op&)>> { public: + /** + * @brief Static type string for the Shape operator. + */ static const std::string Type; private: @@ -47,41 +89,98 @@ private: const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Constructor for the Shape operator. + * @param[in] start Start index for slicing dimensions. + * @param[in] end End index (exclusive) for slicing dimensions. + */ Shape_Op(const std::int64_t start = 0, const std::int64_t end = -1); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Shape_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Shape_Op(const Shape_Op& op); /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Shape_Op + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Compute the output dimensions during the forward pass. + * @param allowDataDependency Whether to allow data-dependent dimensions. + * @return Boolean indicating whether dimension computation was successful. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; + /** + * @brief Set the backend for the Shape operator. + * @param[in] name Name of the backend. + * @param[in] device Device index (optional). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the available backends for the Shape operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } - inline std::int64_t& start() const noexcept { return mAttributes -> getAttr<ShapeAttr::Start>(); } - inline std::int64_t& end() const noexcept { return mAttributes -> getAttr<ShapeAttr::End>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get or modify the start index for slicing dimensions. + * @return Reference to the start index attribute. + */ + inline std::int64_t& start() const noexcept { return mAttributes->getAttr<ShapeAttr::Start>(); } + + /** + * @brief Get or modify the end index for slicing dimensions. + * @return Reference to the end index attribute. + */ + inline std::int64_t& end() const noexcept { return mAttributes->getAttr<ShapeAttr::End>(); } + + /** + * @brief Get the input tensor names for the Shape operator. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output tensor names for the Shape operator. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create a Shape operation node. + * + * @param[in] start Start index for slicing dimensions (default is 0). + * @param[in] end End index (exclusive) for slicing dimensions (default is -1, meaning all dimensions). + * @param[in] name Name of the operator (optional). + * @return A shared pointer to the Node containing the Shape operator. + */ std::shared_ptr<Node> Shape(const std::int64_t start = 0, const std::int64_t end = -1, const std::string& name = ""); + } // namespace Aidge namespace { +/** + * @brief EnumStrings specialization for ShapeAttr. + */ template <> const char *const EnumStrings<Aidge::ShapeAttr>::data[] = {"start", "end"}; } diff --git a/include/aidge/operator/ShiftGELU.hpp b/include/aidge/operator/ShiftGELU.hpp index 30f1d71e0..2375f845f 100644 --- a/include/aidge/operator/ShiftGELU.hpp +++ b/include/aidge/operator/ShiftGELU.hpp @@ -27,16 +27,44 @@ namespace Aidge { +/** + * @brief Description of an element-wise Shifted Gaussian Error Linear Unit (ShiftGELU) operation + * on an input Tensor. + * + * The ShiftGELU operation applies a quantization and scaling-based approximation of the GELU activation. + * For each element `x` in the input tensor, the operation can be summarized as: + * + * `f(x) = scale_factor * quantize(x / SF) * shift(x)` + * + * Where: + * - `quantize` is a rounding operation to represent the input in a lower precision format. + * - `SF` is the scaling factor for quantization. + * - `shift(x)` is a transformation using exponent shifting and clamping to approximate smooth non-linear behavior. + * - `scale_factor` adjusts the final output to match the desired numerical range for quantized tensors. + * + * This approach replaces computationally expensive operations like `tanh` with efficient approximations, enabling + * smooth activation behavior while optimizing for low-precision neural network inference. + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class ShiftGELU_Op : public OperatorTensor, - public Registrable<ShiftGELU_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ShiftGELU_Op&)>> { + public Registrable<ShiftGELU_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::shared_ptr<OperatorImpl>(const ShiftGELU_Op&)>> +{ public: static const std::string Type; ShiftGELU_Op(); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op ShiftGELU_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ ShiftGELU_Op(const ShiftGELU_Op& op); @@ -46,7 +74,11 @@ public: */ std::shared_ptr<Operator> clone() const override; - + /** + * @brief Set the backend for the Reshape operator. + * @param[in] name Name of the backend. + * @param[in] device Device index (optional). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; std::set<std::string> getAvailableBackends() const override; diff --git a/include/aidge/operator/ShiftMax.hpp b/include/aidge/operator/ShiftMax.hpp index 9fbd81aed..fc76e3005 100644 --- a/include/aidge/operator/ShiftMax.hpp +++ b/include/aidge/operator/ShiftMax.hpp @@ -27,6 +27,30 @@ namespace Aidge { +/** + * @brief Description of an element-wise Shifted Maximum (ShiftMax) operation on an input Tensor. + * + * The ShiftMax operation computes a shifted and quantized version of the input tensor's values, + * designed to approximate the maximum function while optimizing for quantized tensor computations. + * For each element `x` in the input tensor, the operation can be summarized as: + * + * `f(x) = scale_factor * quantize(shift(x - max_val))` + * + * Where: + * - `max_val` is the maximum value of the quantized tensor within a given dimension. + * - `quantize` represents a rounding operation to convert values into a lower precision format. + * - `shift` applies exponent shifting and clamping to the adjusted values to mimic smooth scaling. + * - `scale_factor` adjusts the final output to match the desired numerical range for quantized tensors. + * + * The algorithm ensures efficient computation by using integer arithmetic and avoids precision loss by + * scaling the outputs with a dynamic factor based on the tensor's sum. + * + * The input and output Tensors have the same dimensions, and this operation is particularly suited for + * neural networks requiring efficient inference with quantized inputs. + * + * @see OperatorTensor + * @see Registrable + */ class ShiftMax_Op : public OperatorTensor, public Registrable<ShiftMax_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ShiftMax_Op&)>> { public: @@ -35,8 +59,10 @@ public: ShiftMax_Op(); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op ShiftMax_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ ShiftMax_Op(const ShiftMax_Op& op); diff --git a/include/aidge/operator/Sigmoid.hpp b/include/aidge/operator/Sigmoid.hpp index ceef45bf0..0208a7f60 100644 --- a/include/aidge/operator/Sigmoid.hpp +++ b/include/aidge/operator/Sigmoid.hpp @@ -25,15 +25,39 @@ namespace Aidge { +/** + * @brief Description of an element-wise Sigmoid operation on an input Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = 1 / (1 + exp(-x))` + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Sigmoid_Op : public OperatorTensor, - public Registrable<Sigmoid_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Sigmoid_Op&)>> { + public Registrable<Sigmoid_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::shared_ptr<OperatorImpl>(const Sigmoid_Op&)>> +{ public: static const std::string Type; Sigmoid_Op(); + /** + * @brief Copy-constructor. + * @param op Sigmoid_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. + */ Sigmoid_Op(const Sigmoid_Op& op); + /** + * @brief Clone the operator using its copy-constructor. + * @see Operator::Sigmoid_Op + */ std::shared_ptr<Operator> clone() const override; void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; diff --git a/include/aidge/operator/Slice.hpp b/include/aidge/operator/Slice.hpp index bf98736f0..d32bc4fe2 100644 --- a/include/aidge/operator/Slice.hpp +++ b/include/aidge/operator/Slice.hpp @@ -25,85 +25,202 @@ namespace Aidge { +/** + * @brief Implementation of the Slice operation. + * + * Since Slice operation is just backend-agnostic, its implementation is located in aidge_core. + */ class Slice_OpImpl : public OperatorImpl { public: + /** + * @brief Constructs a Slice_OpImpl object. + * @param[in] op The operator to be implemented. + * @param[in] backend The backend used for execution. + */ Slice_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + + /** + * @brief Executes the forward pass for the Slice operation. + */ void forward() override; }; -// Implementation note: -// If start or end are out of bound then it takes the max value for the given axe. -// Example Slice with start=1, end=1000, axes=0 for tensor [0, 1, 2, 3] -// Will return [1, 2, 3] -enum class SliceAttr { Starts, Ends, Axes, Steps }; +/** + * @enum SliceAttr + * @brief Attributes for the Slice operation. + */ +enum class SliceAttr { + /** + * @brief Starting indices for the slice along each axis. + * + * Specifies the start position for slicing for each axis. + * @details if index is < 0 then the input tansor's rank is added. + * After, if index is < 0 then it is forced to 0, + * if index > dim then index is forced to dim. + */ + Starts, + + /** + * @brief Ending indices for the slice along each axis. + * + * Specifies the end position (exclusive) for slicing for each axis. + * @details if index is < 0 then the input tansor's rank is added. + * After, if index is < 0 then it is forced to 0, + * if index > dim then index is forced to dim. + */ + Ends, + + /** + * @brief Axes along which the slice operation is performed. + * + * Specifies which dimensions of the input tensor are affected by the slice. + */ + Axes, + + /** + * @brief Steps to move between each slice along each axis. + * + * Specifies the step size for slicing along each axis. + */ + Steps +}; + +/** + * @class Slice_Op + * @brief Implements the Slice operation for extracting sub-tensors. + * + * The Slice operation extracts a sub-tensor from the input tensor using specified start and end indices, + * axes, and steps. The resulting tensor dimensions depend on the provided attributes. + * + * - The output shape is determined by the `Starts`, `Ends`, `Axes`, and `Steps` attributes. + * - Each dimension in the output tensor corresponds to the range defined for the respective axis. + * + * @example: + * - Input shape: (4, 5, 6) + * - Starts: {1, 0, 2} + * - Ends: {3, 5, 6} + * - Axes: {0, 1, 2} + * - Steps: {1, 1, 1} + * - Output shape: (2, 5, 4) + * + * @details If start or end are out of bound then it takes the max value for the given axe. + * @example: + * - Input: [0, 1, 2, 3] + * - Starts: {1} + * - Ends: {1000} + * - Axes: {0} + * - Output: [1, 2, 3] + * + * @see OperatorTensor + * @see Registrable + */ +class Slice_Op : public OperatorTensor, + public Registrable<Slice_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Slice_Op &)>> { -class Slice_Op - : public OperatorTensor, - public Registrable<Slice_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Slice_Op &)>> { public: static const std::string Type; + + /** + * @brief Defines static attributes for the Slice operator. + */ using Attributes_ = StaticAttributes<SliceAttr, - std::vector<std::int64_t>, - std::vector<std::int64_t>, - std::vector<std::int8_t>, - std::vector<std::int64_t>>; + std::vector<std::int64_t>, // Starts + std::vector<std::int64_t>, // Ends + std::vector<std::int8_t>, // Axes + std::vector<std::int64_t>>; // Steps private: - template <SliceAttr e> using attr = typename Attributes_::template attr<e>; + template <SliceAttr e> + using attr = typename Attributes_::template attr<e>; + const std::shared_ptr<Attributes_> mAttributes; public: Slice_Op() = delete; + /** + * @brief Constructor for Slice operator. + * @param[in] starts Starting indices for the slice along each axis. + * @param[in] ends Ending indices (exclusive) for the slice along each axis. + * @param[in] axes Axes along which the slice operation is performed. + * @param[in] steps Step sizes for slicing along each axis. + */ Slice_Op(const std::vector<std::int64_t>& starts, - const std::vector<std::int64_t>& ends, - const std::vector<std::int8_t>& axes, - const std::vector<std::int64_t>& steps); + const std::vector<std::int64_t>& ends, + const std::vector<std::int8_t>& axes, + const std::vector<std::int64_t>& steps); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its - * input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param[in] op Operator to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Slice_Op(const Slice_Op &op); /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Slice_Op */ std::shared_ptr<Operator> clone() const override; bool dimsForwarded() const override final; + bool forwardDims(bool allowDataDependency = true) override final; void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the starting indices for the slice. + */ inline std::vector<std::int64_t>& starts() const noexcept { return mAttributes -> getAttr<SliceAttr::Starts>(); } + + /** + * @brief Get the ending indices for the slice. + */ inline std::vector<std::int64_t>& ends() const noexcept { return mAttributes -> getAttr<SliceAttr::Ends>(); } + + /** + * @brief Get the axes along which the slice is performed. + */ inline std::vector<std::int8_t>& axes() const noexcept { return mAttributes -> getAttr<SliceAttr::Axes>(); } + + /** + * @brief Get the steps for the slice operation. + */ inline std::vector<std::int64_t>& steps() const noexcept { return mAttributes -> getAttr<SliceAttr::Steps>(); } - static const std::vector<std::string> getInputsName(){ + static const std::vector<std::string> getInputsName() { return {"data_input", "starts", "ends", "axes", "steps"}; } - static const std::vector<std::string> getOutputsName(){ + + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } - }; /** * @brief Extract a sub-Tensor from a bigger original Tensor. - * @param name Name of the Operator. + * + * @param[in] starts Starting indices for the slice. + * @param[in] ends Ending indices (exclusive) for the slice. + * @param[in] axes Axes along which the slice operation is performed. + * @param[in] steps Step sizes for slicing along each axis. + * @param[in] name Name of the Operator. * @return std::shared_ptr<Node> A Node containing the Operator. */ std::shared_ptr<Node> Slice(const std::vector<std::int64_t>& starts = {}, - const std::vector<std::int64_t>& ends = {}, - const std::vector<std::int8_t>& axes = {}, - const std::vector<std::int64_t>& steps = {}, - const std::string &name = ""); + const std::vector<std::int64_t>& ends = {}, + const std::vector<std::int8_t>& axes = {}, + const std::vector<std::int64_t>& steps = {}, + const std::string &name = ""); + } // namespace Aidge namespace { diff --git a/include/aidge/operator/Softmax.hpp b/include/aidge/operator/Softmax.hpp index 72ea56dd6..290132690 100644 --- a/include/aidge/operator/Softmax.hpp +++ b/include/aidge/operator/Softmax.hpp @@ -24,14 +24,39 @@ #include "aidge/utils/Types.h" namespace Aidge { -enum class SoftmaxAttr { Axis }; +enum class SoftmaxAttr { + /** + * @brief Axis along which the softmax operation is applied. + * + * Determines the dimension in the input tensor over which the softmax + * operation will compute normalized exponential values. + */ + Axis +}; +/** + * @brief Description of a Softmax operation on input Tensor along a specified axis. + * + * The Softmax operation normalizes the input tensor values along a specified axis + * into a probability distribution where the sum of values is equal to 1. + * + * The Softmax function for a given input `x_i` is defined as: + * `softmax(x_i) = exp(x_i) / sum(exp(x_j))`, where the sum is taken over all elements in the specified dimension. + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Softmax_Op : public OperatorTensor, - public Registrable<Softmax_Op, - std::string, - std::function<std::shared_ptr<OperatorImpl>(const Softmax_Op&)>> { + public Registrable<Softmax_Op, + std::string, + std::function<std::shared_ptr<OperatorImpl>(const Softmax_Op&)>> { public: + /** + * @brief Static type string for the Softmax operator. + */ static const std::string Type; private: @@ -40,43 +65,90 @@ private: const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Deleted default constructor. + */ Softmax_Op() = delete; + /** + * @brief Constructor for the Softmax operator. + * @param[in] axis Axis along which the softmax operation is applied. + */ Softmax_Op(std::int32_t axis); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Softmax_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Softmax_Op(const Softmax_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Softmax_Op + * @brief Clone the operator using its copy constructor. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Set the backend for the Softmax operator. + * @param[in] name Name of the backend. + * @param[in] device Device index (optional). + */ void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + + /** + * @brief Get the available backends for the Softmax operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } - inline std::int32_t& axis() const noexcept { return mAttributes -> getAttr<SoftmaxAttr::Axis>(); } + /** + * @brief Get the axis along which the softmax operation is applied. + * @return Reference to the axis attribute. + */ + inline std::int32_t& axis() const noexcept { return mAttributes->getAttr<SoftmaxAttr::Axis>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get the input names for the Softmax operator. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output names for the Softmax operator. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create a Softmax operation node. + * + * @param[in] axis Axis along which the softmax operation is applied. + * @param[in] name Name of the operator (optional). + * @return A shared pointer to the Node containing the Softmax operator. + */ std::shared_ptr<Node> Softmax(std::int32_t axis, const std::string& name = ""); + } // namespace Aidge namespace { +/** + * @brief EnumStrings specialization for SoftmaxAttr. + */ template <> -const char *const EnumStrings<Aidge::SoftmaxAttr>::data[] = {"axis"}; +const char* const EnumStrings<Aidge::SoftmaxAttr>::data[] = {"axis"}; } #endif /* AIDGE_CORE_OPERATOR_SOFTMAX_H_ */ diff --git a/include/aidge/operator/Split.hpp b/include/aidge/operator/Split.hpp index 5a5652388..3c6b52d3c 100644 --- a/include/aidge/operator/Split.hpp +++ b/include/aidge/operator/Split.hpp @@ -24,19 +24,78 @@ #include "aidge/utils/Types.h" namespace Aidge { + +/** + * @class Implementation of the Split operation. + * + * Since Split operation is just backend-agnostic, its implementation is located in aidge_core. + */ class Split_OpImpl : public OperatorImpl { public: - Split_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + /** + * @brief Constructor for the Split operator implementation. + * @param[in] op Operator to be implemented. + * @param[in] backend Name of the backend. + */ + Split_OpImpl(const Operator& op, const std::string& backend = "") : OperatorImpl(op, backend) {} + + /** + * @brief Executes the forward pass for the Split operation. + */ void forward() override; }; -enum class SplitAttr { Axis, Split }; +/** + * @enum SplitAttr + * @brief Enumeration of Split operator attributes. + */ +enum class SplitAttr { + /** + * @brief Axis along which to split the input tensor. + * + * The specified axis determines the direction of splitting. + */ + Axis, + + /** + * @brief Sizes of each output tensor after splitting. + * + * If specified, the sum of the split sizes must match the size of the input + * tensor along the specified axis. + */ + Split +}; -class Split_Op - : public OperatorTensor, - public Registrable<Split_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Split_Op &)>> { +/** + * @class Split_Op + * @brief Implements the Split operation to divide a tensor into multiple sub-tensors along a specified axis. + * + * The Split operation divides the input tensor into several output tensors along + * a specified axis. The size of each output tensor can be defined by the Split + * attribute. If no split sizes are provided, the input is divided evenly. + * + * ### Output Shape Calculation + * - Input shape: (N, D1, D2, ..., DN) + * - Axis: 1 + * - Split: {2, 3} + * - Output shapes: [(N, 2, D2, ..., DN), (N, 3, D2, ..., DN)] + * + * @example: + * - Input shape: (6, 4, 8) + * - Axis: 0 + * - Split: {2, 2, 2} + * - Output shapes: [(2, 4, 8), (2, 4, 8), (2, 4, 8)] + * + * @see OperatorTensor + * @see Registrable + */ +class Split_Op : public OperatorTensor, + public Registrable<Split_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Split_Op &)>> { public: + /** + * @brief Static type string for the Split operator. + */ static const std::string Type; private: @@ -47,56 +106,97 @@ private: public: Split_Op() = delete; - Split_Op( std::int8_t axis, DimSize_t nbOutputs, const std::vector<DimSize_t>& split); - + /** + * @brief Constructor for the Split operator. + * @param[in] axis Axis along which to split the input tensor. + * @param[in] nbOutputs Number of output tensors to create. + * @param[in] split Sizes of each split (optional). + */ + Split_Op(std::int8_t axis, DimSize_t nbOutputs, const std::vector<DimSize_t>& split); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its - * input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Split_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ - Split_Op(const Split_Op &op); + Split_Op(const Split_Op& op); -public: /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Split_Op + * @brief Clone the operator using its copy constructor. */ std::shared_ptr<Operator> clone() const override; bool dimsForwarded() const override final; bool forwardDims(bool allowDataDependency = false) override final; - void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + /** + * @brief Set the backend for the Split operator. + * @param[in] name Backend name. + * @param[in] device Device index (optional). + */ + void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the available backends for the Split operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + + /** + * @brief Get the axis along which the input tensor is split. + */ inline std::int8_t& axis() const { return mAttributes->template getAttr<SplitAttr::Axis>(); } + + /** + * @brief Get the sizes of each split. + */ inline std::vector<DimSize_t>& split() const { return mAttributes->template getAttr<SplitAttr::Split>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get the input names for the Split operator. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input", "split"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output names for the Split operator. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output_0", "data_output_n"}; } - }; /** - * @brief Extract a sub-Tensor from a bigger original Tensor. - * @param name Name of the Operator. - * @return std::shared_ptr<Node> A Node containing the Operator. + * @brief Split a tensor into multiple sub-tensors along a specified axis. + * + * @param[in] nbOutput Number of output tensors to create. + * @param[in] axis Axis along which to split the input tensor. + * @param[in] split Sizes of each split (optional). + * @param[in] name Name of the Operator. + * @return std::shared_ptr<Node> Node containing the Operator. */ std::shared_ptr<Node> Split(DimSize_t nbOutput, - std::int8_t axis = 0, - const std::vector<DimSize_t>& split = {}, - const std::string &name = ""); + std::int8_t axis = 0, + const std::vector<DimSize_t>& split = {}, + const std::string& name = ""); + } // namespace Aidge namespace { +/** + * @brief EnumStrings specialization for SplitAttr. + */ template <> -const char *const EnumStrings<Aidge::SplitAttr>::data[] = { "axis", "split" }; +const char* const EnumStrings<Aidge::SplitAttr>::data[] = {"axis", "split"}; } #endif /* AIDGE_CORE_OPERATOR_SPLIT_H_ */ diff --git a/include/aidge/operator/Sqrt.hpp b/include/aidge/operator/Sqrt.hpp index 4858cdcd1..8b9eb1b78 100644 --- a/include/aidge/operator/Sqrt.hpp +++ b/include/aidge/operator/Sqrt.hpp @@ -23,8 +23,20 @@ namespace Aidge { +/** + * @brief Description of an element-wise Square Root (Sqrt) operation + * on an input Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = sqrt(x)`, where sqrt(x) is the square root of x. + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ class Sqrt_Op : public OperatorTensor, - public Registrable<Sqrt_Op, + public Registrable<Sqrt_Op, // <Op, backend, implementation creation function> std::string, std::function<std::shared_ptr<OperatorImpl>(const Sqrt_Op&)>> { public: @@ -33,8 +45,10 @@ public: Sqrt_Op() : OperatorTensor(Type, {InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Sqrt_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Sqrt_Op(const Sqrt_Op& op); diff --git a/include/aidge/operator/Stack.hpp b/include/aidge/operator/Stack.hpp index 21633e451..71e4e780a 100644 --- a/include/aidge/operator/Stack.hpp +++ b/include/aidge/operator/Stack.hpp @@ -1,3 +1,14 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + #ifndef AIDGE_CORE_OPERATOR_STACK_H_ #define AIDGE_CORE_OPERATOR_STACK_H_ @@ -12,96 +23,212 @@ #include "aidge/utils/Types.h" namespace Aidge { +/** + * @class StackProdConso + * @brief Implements the producer-consumer principle for the `Stack` operator. + * + * The `StackProdConso` class defines the logic for managing data dependencies + * during the forward process of the `Stack` operator. It ensures proper allocation + * and consumption of resources required for stacking operations. + */ class StackProdConso : public ProdConso { - public: - StackProdConso(const Operator &op) : ProdConso(op) {} - Elts_t getRequiredMemory( - const IOIndex_t outputIdx, - const std::vector<DimSize_t> &inputsSize) const override final; +public: + /** + * @brief Constructor for the `StackProdConso` class. + * @param[in] op The operator instance for which producer-consumer relationships are managed. + */ + StackProdConso(const Operator& op) : ProdConso(op) {} + + /** + * @brief Compute the memory requirements for an output tensor. + * @param[in] outputIdx The index of the output tensor. + * @param[in] inputsSize A vector containing the dimensions of the input tensors. + * @return The memory required (`Elts_t`) for the specified output tensor. + * + * @details: + * - This method calculates how much memory is needed to store the stacked tensor. + * - Memory requirements depend on the number and size of the input tensors. + */ + Elts_t getRequiredMemory(const IOIndex_t outputIdx, const std::vector<DimSize_t>& inputsSize) const override final; + + /** + * @brief Reset producer-consumer relationships for the `Stack` operator. + * + * @details: + * - This method clears and reinitializes the producer-consumer relationships, + * ensuring proper data flow and allocation for the stacking operation. + */ void resetConsummerProducer() override; }; +/** + * @class StackOpImpl + * @brief Backend-specific implementation of the `Stack` operator. + * + * The `StackOpImpl` class handles the execution of the `Stack` operation, including + * forward computation and backend-specific optimizations. + */ class StackOpImpl : public OperatorImpl { - public: - StackOpImpl(const Operator &op, const std::string &backend = "") - : OperatorImpl(op, backend) {} +public: + /** + * @brief Constructs a StackOpImpl object. + * @param[in] op The operator to be implemented. + * @param[in] backend The backend used for execution. + */ + StackOpImpl(const Operator& op, const std::string& backend = "") : OperatorImpl(op, backend) {} + /** + * @brief Get the Producer Consumer object of the operator. + * @return A shared pointer to the ProdConso object. + */ std::shared_ptr<ProdConso> getProdConso() const override { return std::make_shared<StackProdConso>(mOp); - }; + } + + /** + * @brief Executes the forward pass for the Stack operation. + */ void forward() override; }; -enum class StackAttr { ForwardStep, MaxElements }; - -class StackOp - : public OperatorTensor, - public Registrable< - StackOp, - std::string, - std::function<std::unique_ptr<OperatorImpl>(const StackOp &)>> { +enum class StackAttr { + ForwardStep, // Tracks the current step in the forward pass. + MaxElements // Maximum number of elements that can be stacked. +}; - private: - using Attributes_ = - StaticAttributes<StackAttr, std::uint32_t, std::uint32_t>; +/** + * @class StackOp + * @brief The `Stack` operator performs a stacking operation over a sequence of input tensors. + * + * The `Stack` operator is used to aggregate multiple tensors into a single stacked tensor along + * a new dimension. It supports models requiring tensor aggregation or hierarchical data representation. + * + * - **Inputs**: + * - `data_input`: The main data input for the operator. + * - `max_elements`: An optional maximum limit on the number of elements to be stacked. + * - **Outputs**: + * - `data_output`: The resulting stacked tensor. + * + * @see OperatorTensor + * @see Registrable + */ +class StackOp : public OperatorTensor, + public Registrable<StackOp, std::string, std::function<std::unique_ptr<OperatorImpl>(const StackOp&)>> { +private: + using Attributes_ = StaticAttributes<StackAttr, std::uint32_t, std::uint32_t>; template <StackAttr e> using attr = typename Attributes_::template attr<e>; const std::shared_ptr<Attributes_> mAttributes; - public: +public: static const std::string s_type; + /** + * @brief Constructs a new Stack Operator. + * @param maxElements The maximum number of elements to stack. + */ StackOp(std::uint32_t maxElements = 0); /** - * @brief Copy-constructor. Copy the operator attributes and its output - * tensor(s), but not its input tensors (the new operator has no input - * associated). + * @brief Copy-constructor. Copies the operator's attributes and its output tensors. + * The new operator has no input tensors associated initially. * @param op Operator to copy. */ - StackOp(const StackOp &op); + StackOp(const StackOp& op); /** * @brief Clone the operator using its copy-constructor. - * @see Operator::StackOp + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; - void setBackend(const std::string &name, - DeviceIdx_t device = 0) override final; + /** + * @brief Assign a specific backend and device for computation. + * @param name Name of the backend. + * @param device The device index (default is 0). + */ + void setBackend(const std::string& name, DeviceIdx_t device = 0) override final; + /** + * @brief Get the list of available backends compatible with this operator. + * @return A set of strings representing backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Check if dimensions have been forwarded successfully. + * @return True if dimensions are forwarded. + */ bool dimsForwarded() const override final; + + /** + * @brief Perform dimension inference for the operator, optionally allowing + * data dependency during the process. + * @param allowDataDependency Flag indicating whether data dependency is allowed. + * @return True if dimensions were successfully inferred. + */ bool forwardDims(bool allowDataDependency = false) override final; + + /** + * @brief Executes the forward pass for the `Stack` operation. + */ void forward() override; + /** + * @brief Access the operator's attributes. + * @return A shared pointer to the operator's attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } - inline std::uint32_t &maxElements() const { + /** + * @brief Get or set the maximum number of elements that can be stacked. + * @return A reference to the maximum elements attribute. + */ + inline std::uint32_t& maxElements() const { return mAttributes->template getAttr<StackAttr::MaxElements>(); } - inline std::uint32_t &forwardStep() const { + /** + * @brief Get or set the forward step counter for the operator. + * @return A reference to the forward step counter. + */ + inline std::uint32_t& forwardStep() const { return mAttributes->template getAttr<StackAttr::ForwardStep>(); } + /** + * @brief Retrieve the names of the operator's input tensors. + * @return A vector of strings representing input tensor names. + */ static const std::vector<std::string> getInputsName() { return {"data_input", "max_elements"}; } + + /** + * @brief Retrieve the names of the operator's output tensors. + * @return A vector of strings representing output tensor names. + */ static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; -std::shared_ptr<Node> Stack(std::uint32_t maxElements = 0, - const std::string &name = ""); -} // namespace Aidge +/** + * @brief Create a Stack operator node. + * @param maxElements The maximum number of elements to stack. + * @param name The optional name for the node. + * @return A shared pointer to the newly created Stack operator node. + */ +std::shared_ptr<Node> Stack(std::uint32_t maxElements = 0, const std::string& name = ""); +} // namespace Aidge namespace { +/** + * @brief String representations of the Stack operator's attributes. + */ template <> -const char *const EnumStrings<Aidge::StackAttr>::data[] = {"max_elements"}; +const char *const EnumStrings<Aidge::StackAttr>::data[] = {"forward_step", "max_elements"}; } -#endif +#endif /* AIDGE_CORE_OPERATOR_STACK_H_ */ diff --git a/include/aidge/operator/Sub.hpp b/include/aidge/operator/Sub.hpp index 170baf6fd..73cce3f55 100644 --- a/include/aidge/operator/Sub.hpp +++ b/include/aidge/operator/Sub.hpp @@ -24,6 +24,28 @@ namespace Aidge { +/** + * @brief Description of an element-wise Subtract operation on input Tensors, + * supporting NumPy broadcasting. + * + * For each pair of elements x and y from the input Tensors, the function + * is defined as: + * `f(x, y) = x - y` + * + * Broadcasting adjusts shapes of the input Tensors to make them compatible: + * - Tensors are aligned from the rightmost dimensions. + * - Dimensions are compatible if they are equal, one of them is 1, or missing. + * + * The output Tensor shape is determined by taking the maximum size along + * each dimension of the input Tensors after broadcasting. + * + * Examples: + * 1. Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + * 2. Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + * + * @see OperatorTensor + * @see Registrable + */ class Sub_Op : public OperatorTensor, public Registrable<Sub_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Sub_Op&)>> { public: @@ -33,8 +55,10 @@ public: Sub_Op() : OperatorTensor(Type, {InputCategory::Data, InputCategory::Data}, 1) {} /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Sub_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Sub_Op(const Sub_Op& op); diff --git a/include/aidge/operator/Tanh.hpp b/include/aidge/operator/Tanh.hpp index f1a30e3f0..71b1511d9 100644 --- a/include/aidge/operator/Tanh.hpp +++ b/include/aidge/operator/Tanh.hpp @@ -23,16 +23,36 @@ namespace Aidge { -class Tanh_Op : public OperatorTensor, - public Registrable<Tanh_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Tanh_Op&)>> { +/** + * @brief Description of an element-wise Hyperbolic Tangent (Tanh) operation + * on an input Tensor. + * + * For each element x in the input, the function is defined as: + * `f(x) = tanh(x)`, where tanh(x) is the hyperbolic tangent of x, + * computed as: + * `tanh(x) = (exp(x) - exp(-x)) / (exp(x) + exp(-x))` + * + * The input and output Tensors have the same dimensions. + * + * @see OperatorTensor + * @see Registrable + */ +class Tanh_Op : + public OperatorTensor, + public Registrable<Tanh_Op, // <Op, backend, implementation creation function> + std::string, + std::function<std::unique_ptr<OperatorImpl>(const Tanh_Op&)>> +{ public: static const std::string Type; Tanh_Op(); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Tanh_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Tanh_Op(const Tanh_Op& op); diff --git a/include/aidge/operator/Transpose.hpp b/include/aidge/operator/Transpose.hpp index c6341e934..ab3b18e51 100644 --- a/include/aidge/operator/Transpose.hpp +++ b/include/aidge/operator/Transpose.hpp @@ -32,85 +32,158 @@ namespace Aidge { */ class TransposeImpl : public OperatorImpl { public: + /** + * @brief Constructor for TransposeImpl. + * @param[in] op The Operator instance. + * @param[in] backend The backend name (optional). + */ TransposeImpl(const Operator& op, const std::string& backend = "") : OperatorImpl(op, backend) {} + + /** + * @brief Perform the forward operation for the transpose. + */ void forward() override; }; +/** + * @enum TransposeAttr + * @brief Enumeration of attributes specific to the Transpose operator. + */ enum class TransposeAttr { - /** - * @brief order of the output dims from the input dims. If left empty, - * the dimensions of input will be reversed. - */ + /** + * @brief Order of the output dimensions relative to the input dimensions. + * + * If this attribute is empty, the dimensions of the input tensor will + * be reversed. + */ OutputDimsOrder }; /** - * @brief This operator has as purpose to transpose the axes of a given tensor. - * input#0 : Tensor to transpose - * @example Calling transpose() on a tensor of dimensions [1, 2, 3] with OutputDimsOrder=(1,0,2) result - * in a tensor of dim [2, 1, 3]. - * @example Calling transpose() on a tensor of dimensions [1,2,3,4] with an empty OutputDimsOrder vector - * will result in a tensor of dim [4,3,2,1]. + * @brief Describes the operation of transposing the axes of a given tensor. + * + * The Transpose operator rearranges the axes of an input tensor according to a specified + * permutation order. If no order is provided, it reverses the axes. + * + * @example Input: Tensor of dimensions `[1, 2, 3]` with `OutputDimsOrder = {1, 0, 2}` results in + * a tensor with dimensions `[2, 1, 3]`. + * @example Input: Tensor of dimensions `[1, 2, 3, 4]` with an empty `OutputDimsOrder` results in + * a tensor with dimensions `[4, 3, 2, 1]`. + * + * @see OperatorTensor + * @see Registrable */ class Transpose_Op : public OperatorTensor, public Registrable<Transpose_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Transpose_Op&)>> { public: + /** + * @brief Static type string for the Transpose operator. + */ static const std::string Type; - private: using Attributes_ = StaticAttributes<TransposeAttr, std::vector<DimSize_t>>; template <TransposeAttr e> using attr = typename Attributes_::template attr<e>; const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Deleted default constructor. + */ Transpose_Op() = delete; - /** - * @brief constructor for Transpose op - * @param[in] outputDimsOrder axes permutation order. By default axes are reversed. - */ + /** + * @brief Constructor for the Transpose operator. + * @param[in] outputDimsOrder Axes permutation order. If empty, axes are reversed. + */ Transpose_Op(const std::vector<DimSize_t> &outputDimsOrder); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Transpose_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ Transpose_Op(const Transpose_Op& op); /** - * @brief Clone the operator using its copy-constructor. - * @see Operator::Transpose_Op + * @brief Clone the operator using its copy constructor. + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Compute the output dimensions during the forward pass. + * @param allowDataDependency Whether to allow data-dependent dimensions. + * @return Boolean indicating whether dimension computation was successful. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; + /** + * @brief Set the backend for the Transpose operator. + * @param[in] name Name of the backend. + * @param[in] device Device index (optional). + */ void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the available backends for the Transpose operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } + /** - * @brief axes new order, if left empty, axes will be reversed. + * @brief Get or modify the axes permutation order. + * @return Reference to the permutation order attribute. + * + * If left empty, axes will be reversed. */ - inline std::vector<DimSize_t>& outputDimsOrder() const noexcept { return mAttributes -> getAttr<TransposeAttr::OutputDimsOrder>(); } + inline std::vector<DimSize_t>& outputDimsOrder() const noexcept { + return mAttributes->getAttr<TransposeAttr::OutputDimsOrder>(); + } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get the input tensor names for the Transpose operator. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output tensor names for the Transpose operator. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create a Transpose operation node. + * + * @param[in] outputDimsOrder Axes permutation order (optional). + * @param[in] name Name of the operator (optional). + * @return A shared pointer to the Node containing the Transpose operator. + */ std::shared_ptr<Node> Transpose(const std::vector<DimSize_t> &outputDimsOrder = {}, const std::string& name = ""); + } // namespace Aidge namespace { +/** + * @brief EnumStrings specialization for TransposeAttr. + */ template <> const char *const EnumStrings<Aidge::TransposeAttr>::data[] = {"output_dims_order"}; } diff --git a/include/aidge/operator/Unfold.hpp b/include/aidge/operator/Unfold.hpp index 09a689528..333413b1d 100644 --- a/include/aidge/operator/Unfold.hpp +++ b/include/aidge/operator/Unfold.hpp @@ -13,10 +13,10 @@ #define AIDGE_CORE_OPERATOR_UNFOLD_H_ #include <array> -#include <cmath> // std::floor -#include <cstddef> // std::size_t +#include <cmath> +#include <cstddef> #include <string> -#include <utility> // std::pair +#include <utility> #include <vector> #include "aidge/data/Tensor.hpp" @@ -25,95 +25,216 @@ #include "aidge/operator/Producer.hpp" #include "aidge/utils/ArrayHelpers.hpp" #include "aidge/utils/ErrorHandling.hpp" -#include "aidge/utils/Registrar.hpp" // SET_IMPL_MACRO +#include "aidge/utils/Registrar.hpp" #include "aidge/utils/StaticAttributes.hpp" #include "aidge/utils/Types.h" namespace Aidge { +/** + * @brief Implementation of the Unfold operator. + * @tparam DIM Number of dimensions in the operation. + */ template <DimIdx_t DIM> class Unfold_OpImpl : public OperatorImpl { public: - Unfold_OpImpl(const Operator& op, const std::string& backend = ""): OperatorImpl(op, backend) {} + /** + * @brief Constructor for Unfold_OpImpl. + * @param[in] op The Operator instance. + * @param[in] backend The backend name (optional). + */ + Unfold_OpImpl(const Operator& op, const std::string& backend = "") + : OperatorImpl(op, backend) {} + + /** + * @brief Perform the forward operation for the unfold. + */ void forward() override; }; -enum class UnfoldAttr { StrideDims, DilationDims, KernelDims }; +/** + * @enum UnfoldAttr + * @brief Enumeration of attributes specific to the Unfold operator. + */ +enum class UnfoldAttr { + /** + * @brief Stride dimensions for the unfolding operation. + */ + StrideDims, + + /** + * @brief Dilation dimensions for the unfolding operation. + */ + DilationDims, + + /** + * @brief Kernel dimensions for the unfolding operation. + */ + KernelDims +}; +/** + * @brief Describes the operation of unfolding a tensor into sliding blocks. + * + * The Unfold operator extracts sliding blocks from the input tensor along + * specified dimensions, controlled by stride, dilation, and kernel size. + * + * @tparam DIM Number of dimensions involved in the operation. + * + * @example Input: Tensor of dimensions `[1, 3, 32, 32]`, with `KernelDims = {3, 3}`, + * `StrideDims = {1, 1}`, and `DilationDims = {1, 1}` results in a tensor of blocks + * extracted from the input with overlapping areas. + * + * @see OperatorTensor + * @see Registrable + */ template <DimIdx_t DIM> class Unfold_Op : public OperatorTensor, - public Registrable<Unfold_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Unfold_Op<DIM> &)>> { - + public Registrable<Unfold_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Unfold_Op<DIM>&)>> { public: + /** + * @brief Static type string for the Unfold operator. + */ static const std::string Type; private: using Attributes_ = StaticAttributes<UnfoldAttr, - std::array<DimSize_t, DIM>, - std::array<DimSize_t, DIM>, - std::array<DimSize_t, DIM>>; + std::array<DimSize_t, DIM>, + std::array<DimSize_t, DIM>, + std::array<DimSize_t, DIM>>; template <UnfoldAttr e> using attr = typename Attributes_::template attr<e>; const std::shared_ptr<Attributes_> mAttributes; public: + /** + * @brief Deleted default constructor. + */ Unfold_Op() = delete; - Unfold_Op(const std::array<DimSize_t, DIM> &kernelDims, - const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)); + /** + * @brief Constructor for the Unfold operator. + * @param[in] kernelDims Size of the sliding window for each dimension. + * @param[in] strideDims Step size for moving the window (optional). + * @param[in] dilationDims Spacing between elements in the kernel (optional). + */ + Unfold_Op(const std::array<DimSize_t, DIM>& kernelDims, + const std::array<DimSize_t, DIM>& strideDims = create_array<DimSize_t, DIM>(1), + const std::array<DimSize_t, DIM>& dilationDims = create_array<DimSize_t, DIM>(1)); /** - * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its - * input tensors (the new operator has no input associated). - * @param op Operator to copy. + * @brief Copy-constructor. + * @param op Unfold_Op to copy. + * @details Copies the operator attributes and its output tensor(s), but not + * its input tensors. The new operator has no associated input. */ - Unfold_Op(const Unfold_Op<DIM> &op); + Unfold_Op(const Unfold_Op<DIM>& op); /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Unfold_Op + * @return A shared pointer to the cloned operator. */ std::shared_ptr<Operator> clone() const override; + /** + * @brief Compute the output dimensions during the forward pass. + * @param[in] allowDataDependency Whether to allow data-dependent dimensions. + * @return Boolean indicating whether dimension computation was successful. + */ bool forwardDims(bool /*allowDataDependency*/ = false) override final; - void setBackend(const std::string &name, DeviceIdx_t device = 0) override; + /** + * @brief Set the backend for the Unfold operator. + * @param[in] name Name of the backend. + * @param[in] device Device index (optional). + */ + void setBackend(const std::string& name, DeviceIdx_t device = 0) override; + + /** + * @brief Get the available backends for the Unfold operator. + * @return A set of backend names. + */ std::set<std::string> getAvailableBackends() const override; + /** + * @brief Get the attributes of the operator. + * @return A shared pointer to the attributes. + */ inline std::shared_ptr<Attributes> attributes() const override { return mAttributes; } - inline std::array<DimSize_t, DIM>& strideDims() const { return mAttributes->template getAttr<UnfoldAttr::StrideDims>(); } - inline std::array<DimSize_t, DIM>& dilationDims() const { return mAttributes->template getAttr<UnfoldAttr::DilationDims>(); } - inline std::array<DimSize_t, DIM>& kernelDims() const { return mAttributes->template getAttr<UnfoldAttr::KernelDims>(); } - static const std::vector<std::string> getInputsName(){ + /** + * @brief Get or modify the stride dimensions. + * @return Reference to the stride dimensions attribute. + */ + inline std::array<DimSize_t, DIM>& strideDims() const { + return mAttributes->template getAttr<UnfoldAttr::StrideDims>(); + } + + /** + * @brief Get or modify the dilation dimensions. + * @return Reference to the dilation dimensions attribute. + */ + inline std::array<DimSize_t, DIM>& dilationDims() const { + return mAttributes->template getAttr<UnfoldAttr::DilationDims>(); + } + + /** + * @brief Get or modify the kernel dimensions. + * @return Reference to the kernel dimensions attribute. + */ + inline std::array<DimSize_t, DIM>& kernelDims() const { + return mAttributes->template getAttr<UnfoldAttr::KernelDims>(); + } + + /** + * @brief Get the input tensor names for the Unfold operator. + * @return A vector of input tensor names. + */ + static const std::vector<std::string> getInputsName() { return {"data_input"}; } - static const std::vector<std::string> getOutputsName(){ + + /** + * @brief Get the output tensor names for the Unfold operator. + * @return A vector of output tensor names. + */ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; +/** + * @brief Create an Unfold operation node. + * + * @param[in] kernelDims Size of the sliding window. + * @param[in] name Name of the operator (optional). + * @param[in] strideDims Step size for moving the window (optional). + * @param[in] dilationDims Spacing between elements in the kernel (optional). + * @return A shared pointer to the Node containing the Unfold operator. + */ template <std::array<DimSize_t, 1>::size_type DIM> std::shared_ptr<Node> Unfold(const std::array<DimSize_t, DIM> &kernelDims, - const std::string& name = "", - const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)); + const std::string& name = "", + const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)); template <DimSize_t DIM> -inline std::shared_ptr<Node> Unfold( - DimSize_t const (&kernelDims)[DIM], - const std::string& name = "", - const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), - const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)) { - static_assert(DIM<=MaxDim,"Too many kernel dimensions required by Unfold, not supported"); +inline std::shared_ptr<Node> Unfold( DimSize_t const (&kernelDims)[DIM], + const std::string& name = "", + const std::array<DimSize_t, DIM> &strideDims = create_array<DimSize_t,DIM>(1), + const std::array<DimSize_t, DIM> &dilationDims = create_array<DimSize_t,DIM>(1)) { + static_assert(DIM<=MaxDim,"Too many kernel dimensions required by Unfold, not supported"); return Unfold(to_array(kernelDims), name, strideDims, dilationDims); } + } // namespace Aidge extern template class Aidge::Unfold_Op<2>; namespace { +/** + * @brief EnumStrings specialization for UnfoldAttr. + */ template <> -const char *const EnumStrings<Aidge::UnfoldAttr>::data[] = { +const char* const EnumStrings<Aidge::UnfoldAttr>::data[] = { "stride_dims", "dilation_dims", "kernel_dims" diff --git a/include/aidge/operator/WeightInterleaving.hpp b/include/aidge/operator/WeightInterleaving.hpp index e9e51441a..315bb3e2d 100644 --- a/include/aidge/operator/WeightInterleaving.hpp +++ b/include/aidge/operator/WeightInterleaving.hpp @@ -26,6 +26,19 @@ namespace Aidge { +/** + * @brief WeightInterleaving operator Compresses the last dimension of a tensor by packing low-bitwidth values + * (e.g., 2, 3, or 4 bits) into fewer bytes. + * + * The operator reduces the size of the last dimension based on the bitwidth (`nb_bits`), + * packing multiple values into each byte. For example, 4-bit values result in a halved last dimension, + * while 2-bit values reduce it by a factor of 4. + * + * The output tensor has the same shape as the input, except for the compressed last dimension. + * + * @see OperatorTensor + * @see Registrable + */ class WeightInterleaving_Op : public OperatorTensor, public Registrable<WeightInterleaving_Op, // <Op, backend, implementation creation function> diff --git a/python_binding/operator/pybind_Add.cpp b/python_binding/operator/pybind_Add.cpp index f8adfd5f4..cd85c73d3 100644 --- a/python_binding/operator/pybind_Add.cpp +++ b/python_binding/operator/pybind_Add.cpp @@ -21,7 +21,19 @@ namespace py = pybind11; namespace Aidge { void declare_Add(py::module &m) { - py::class_<Add_Op, std::shared_ptr<Add_Op>, OperatorTensor>(m, "AddOp", py::multiple_inheritance()) + py::class_<Add_Op, std::shared_ptr<Add_Op>, OperatorTensor>(m, "AddOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize an Add operator. + This operator performs element-wise addition between two input tensors. + The operation is defined as: + Output = Input1 + Input2 + The output tensor shape is determined by taking the maximum size along each dimension of the input tensors after broadcasting. + Examples: + Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + :param name : Name of the node (optional). + :type name : str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Add_Op::getInputsName) .def_static("get_outputs_name", &Add_Op::getOutputsName) @@ -29,7 +41,21 @@ void declare_Add(py::module &m) { declare_registrable<Add_Op>(m, "AddOp"); - m.def("Add", &Add, py::arg("name") = ""); + m.def("Add", &Add, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing an Add operator that performs element-wise addition between two tensors. + The operation is defined as: + Output = Input1 + Input2 + The output tensor shape is determined by taking the maximum size along each dimension of the input tensors after broadcasting. + Examples: + Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + + :param name : Name of the node (optional). + :type name : str + :return: A node containing the Add operator. + :rtype: :py:class:`AddOp` + )mydelimiter"); } void init_Add(py::module &m) { diff --git a/python_binding/operator/pybind_And.cpp b/python_binding/operator/pybind_And.cpp index 08dddfc81..13c0f9085 100644 --- a/python_binding/operator/pybind_And.cpp +++ b/python_binding/operator/pybind_And.cpp @@ -20,15 +20,35 @@ namespace Aidge { void init_And(py::module& m) { py::class_<And_Op, std::shared_ptr<And_Op>, OperatorTensor>(m, "AndOp", py::multiple_inheritance(), - R"mydelimiter( Initialize an And operator.)mydelimiter") + R"mydelimiter( + Initialize an And operator. + This operator performs element-wise logical AND between two input tensors. The operation is defined as: + Output = Input1 AND Input2 + The inputs must be boolean tensors (with values 0 or 1). + + :param name : Name of the node (optional). + :type name : str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &And_Op::getInputsName) .def_static("get_outputs_name", &And_Op::getOutputsName); + declare_registrable<And_Op>(m, "AndOp"); + m.def("And", &And, py::arg("name") = "", - R"mydelimiter( - Initialize a node containing an And operator. - :param name : name of the node. - )mydelimiter"); + R"mydelimiter( + Initialize a node containing an And operator that performs element-wise logical AND between two tensors. + The operation is defined as: + Output = Input1 AND Input2 + + The inputs must be boolean tensors (with values 0 or 1). + + :param name : Name of the node (optional). + :type name : str + :return: A node containing the And operator. + :rtype: :py:class:`AndOp` + )mydelimiter"); } + } // namespace Aidge + diff --git a/python_binding/operator/pybind_Atan.cpp b/python_binding/operator/pybind_Atan.cpp index e9e277fcc..6f2e00333 100644 --- a/python_binding/operator/pybind_Atan.cpp +++ b/python_binding/operator/pybind_Atan.cpp @@ -19,13 +19,27 @@ namespace py = pybind11; namespace Aidge { void init_Atan(py::module& m) { - py::class_<Atan_Op, std::shared_ptr<Atan_Op>, OperatorTensor>(m, "AtanOp", py::multiple_inheritance()) + py::class_<Atan_Op, std::shared_ptr<Atan_Op>, OperatorTensor>(m, "AtanOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize an Atan operator. + + :param type : The type of the Atan operation. + :type type : :py:class:`str` + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Atan_Op::getInputsName) .def_static("get_outputs_name", &Atan_Op::getOutputsName); declare_registrable<Atan_Op>(m, "AtanOp"); - m.def("Atan", &Atan, py::arg("name") = ""); + m.def("Atan", &Atan, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing an Atan operator. + + :param name : Name of the node. + :type name : :py:class:`str` + )mydelimiter"); } + } // namespace Aidge + diff --git a/python_binding/operator/pybind_AvgPooling.cpp b/python_binding/operator/pybind_AvgPooling.cpp index 2d137c4de..24549e3f4 100644 --- a/python_binding/operator/pybind_AvgPooling.cpp +++ b/python_binding/operator/pybind_AvgPooling.cpp @@ -26,24 +26,32 @@ namespace py = pybind11; namespace Aidge { +// Template function for declaring AvgPooling operator for different dimensions template <DimIdx_t DIM> void declare_AvgPoolingOp(py::module &m) { const std::string pyClassName("AvgPooling" + std::to_string(DIM) + "DOp"); const std::string pyStaticAttrClassName("StaticAttributes" + pyClassName); -// py::class_<StaticAttributes<AvgPoolingAttr, -// std::array<DimSize_t, DIM>, -// std::array<DimSize_t, DIM>>, -// std::shared_ptr<StaticAttributes<AvgPoolingAttr, -// std::array<DimSize_t, DIM>, -// std::array<DimSize_t, DIM>>>, Attributes>(m, pyStaticAttrClassName.c_str()); - + py::class_<AvgPooling_Op<DIM>, std::shared_ptr<AvgPooling_Op<DIM>>, OperatorTensor>( m, pyClassName.c_str(), - py::multiple_inheritance()) + py::multiple_inheritance(), + R"mydelimiter( + Initialize an AvgPooling operator for a tensor. + + This operator performs average pooling on the input tensor using the specified kernel dimensions + and stride dimensions. + + :param kernel_dims: The size of the kernel (filter) applied during pooling. + Specifies the dimensions of the kernel (e.g., [3, 3] for 2D pooling). + :type kernel_dims: List[int] + :param stride_dims: The stride of the pooling operation. Specifies how much the kernel moves in each step. + By default, the stride is set to 1 for all dimensions. + :type stride_dims: List[int], optional + )mydelimiter") .def(py::init<const std::array<DimSize_t, DIM> &, const std::array<DimSize_t, DIM> &>(), py::arg("kernel_dims"), - py::arg("stride_dims") = create_array<DimSize_t,DIM>(1)) + py::arg("stride_dims") = create_array<DimSize_t, DIM>(1)) .def("get_inputs_name", &AvgPooling_Op<DIM>::getInputsName) .def("get_outputs_name", &AvgPooling_Op<DIM>::getOutputsName) .def_readonly_static("Type", &AvgPooling_Op<DIM>::Type); @@ -52,21 +60,30 @@ template <DimIdx_t DIM> void declare_AvgPoolingOp(py::module &m) { m.def(("AvgPooling" + std::to_string(DIM) + "D").c_str(), [](const std::vector<DimSize_t>& kernel_dims, const std::string& name, - const std::vector<DimSize_t> &stride_dims) { + const std::vector<DimSize_t>& stride_dims) { AIDGE_ASSERT(kernel_dims.size() == DIM, "kernel_dims size [{}] does not match DIM [{}]", kernel_dims.size(), DIM); AIDGE_ASSERT(stride_dims.size() == DIM, "stride_dims size [{}] does not match DIM [{}]", stride_dims.size(), DIM); return AvgPooling<DIM>(to_array<DIM>(kernel_dims.begin()), name, to_array<DIM>(stride_dims.begin())); }, py::arg("kernel_dims"), py::arg("name") = "", - py::arg("stride_dims") = std::vector<DimSize_t>(DIM,1)); -} + py::arg("stride_dims") = std::vector<DimSize_t>(DIM, 1), + R"mydelimiter( + Initialize a node containing an AvgPooling operator. + + This function performs average pooling on the tensor with the given kernel and stride dimensions. + :param kernel_dims: Size of the kernel applied during pooling. + :type kernel_dims: List[int] + :param name: Name of the operator node (optional). + :type name: str + :param stride_dims: Stride dimensions for the pooling operation. + :type stride_dims: List[int], optional + )mydelimiter"); +} +// Initialize the AvgPooling operator for different dimensions void init_AvgPooling(py::module &m) { -// py::enum_<AvgPoolingAttr>(m, "_AvgPoolingAttr") - // .value("kernel_dims", AvgPoolingAttr::KernelDims) - // .value("stride_dims", AvgPoolingAttr::StrideDims); declare_AvgPoolingOp<1>(m); declare_AvgPoolingOp<2>(m); declare_AvgPoolingOp<3>(m); diff --git a/python_binding/operator/pybind_BatchNorm.cpp b/python_binding/operator/pybind_BatchNorm.cpp index c380f5940..3339db0f2 100644 --- a/python_binding/operator/pybind_BatchNorm.cpp +++ b/python_binding/operator/pybind_BatchNorm.cpp @@ -25,7 +25,17 @@ template <DimSize_t DIM> void declare_BatchNormOp(py::module& m) { const std::string pyClassName("BatchNorm" + std::to_string(DIM) + "DOp"); py::class_<BatchNorm_Op<DIM>, std::shared_ptr<BatchNorm_Op<DIM>>, OperatorTensor>( - m, pyClassName.c_str(), py::multiple_inheritance()) + m, pyClassName.c_str(), py::multiple_inheritance(), + R"mydelimiter( + Initialize a BatchNorm operator. + + :param epsilon : A small value added to the denominator for numerical stability. + :type epsilon : :py:class:`float` + :param momentum : The momentum factor for the moving averages. + :type momentum : :py:class:`float` + :param training_mode : Whether the operator is in training mode (for batch statistics) or inference mode (for using the moving averages). + :type training_mode : :py:class:`bool` + )mydelimiter") .def(py::init<float, float, bool>(), py::arg("epsilon"), py::arg("momentum"), @@ -36,7 +46,21 @@ void declare_BatchNormOp(py::module& m) { declare_registrable<BatchNorm_Op<DIM>>(m, pyClassName); - m.def(("BatchNorm" + std::to_string(DIM) + "D").c_str(), &BatchNorm<DIM>, py::arg("nb_features"), py::arg("epsilon") = 1.0e-5F, py::arg("momentum") = 0.1F, py::arg("training_mode") = false, py::arg("name") = ""); + m.def(("BatchNorm" + std::to_string(DIM) + "D").c_str(), &BatchNorm<DIM>, py::arg("nb_features"), py::arg("epsilon") = 1.0e-5F, py::arg("momentum") = 0.1F, py::arg("training_mode") = false, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a BatchNorm operator. + + :param nb_features : The number of features in the input tensor. + :type nb_features : :py:class:`int` + :param epsilon : A small value added to the denominator for numerical stability. + :type epsilon : :py:class:`float` + :param momentum : The momentum factor for the moving averages. + :type momentum : :py:class:`float` + :param training_mode : Whether the operator is in training mode or inference mode. + :type training_mode : :py:class:`bool` + :param name : Name of the node. + :type name : :py:class:`str` + )mydelimiter"); } void init_BatchNorm(py::module &m) { @@ -44,3 +68,4 @@ void init_BatchNorm(py::module &m) { } } // namespace Aidge + diff --git a/python_binding/operator/pybind_Clip.cpp b/python_binding/operator/pybind_Clip.cpp index 27c47811a..7c4563a98 100644 --- a/python_binding/operator/pybind_Clip.cpp +++ b/python_binding/operator/pybind_Clip.cpp @@ -21,28 +21,39 @@ namespace py = pybind11; namespace Aidge { void init_Clip(py::module& m) { - py::class_<Clip_Op, std::shared_ptr<Clip_Op>, OperatorTensor>(m, "ClipOp", py::multiple_inheritance()) + py::class_<Clip_Op, std::shared_ptr<Clip_Op>, OperatorTensor>(m, "ClipOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Clip operator. + + :param min : Minimum clipping value. Default is the lowest possible float value. + :type min : :py:class:`float` + :param max : Maximum clipping value. Default is the highest possible float value. + :type max : :py:class:`float` + )mydelimiter") .def(py::init<float, float>(), py::arg("min") = std::numeric_limits<float>::lowest(), py::arg("max") = std::numeric_limits<float>::max()) .def_static("get_inputs_name", &Clip_Op::getInputsName) .def_static("get_outputs_name", &Clip_Op::getOutputsName) - .def("min",&Clip_Op::min,py::return_value_policy::reference_internal) - .def("max",&Clip_Op::max,py::return_value_policy::reference_internal); - - + .def("min", &Clip_Op::min, py::return_value_policy::reference_internal) + .def("max", &Clip_Op::max, py::return_value_policy::reference_internal); + declare_registrable<Clip_Op>(m, "ClipOp"); - - m.def("Clip", &Clip,py::arg("name") = "", - py::arg("min")= std::numeric_limits<float>::lowest(), - py::arg("max")= std::numeric_limits<float>::max(), - R"mydelimiter(ClipOp is a tensor operator that performs a clipping operation on tensor elements. - This class allows limiting tensor values to a specified range, defined by the min - and max parameters. Values outside this range are replaced by the corresponding - limit values. When 'min' is greater than 'max', the clip operator sets all the 'input' values to the value of 'max' - :param min: minimum clipping value. - :type min: float - :param max: maximum clipping value. - :type max: float - :param name: name of the node. - )mydelimiter"); + + m.def("Clip", &Clip, py::arg("name") = "", + py::arg("min") = std::numeric_limits<float>::lowest(), + py::arg("max") = std::numeric_limits<float>::max(), + R"mydelimiter( + ClipOp is a tensor operator that performs a clipping operation on tensor elements. + This class allows limiting tensor values to a specified range, defined by the `min` + and `max` parameters. Values outside this range are replaced by the corresponding + limit values. When `min` is greater than `max`, the clip operator sets all the 'input' values to the value of `max`. + + :param min: Minimum clipping value. + :type min: :py:class:`float` + :param max: Maximum clipping value. + :type max: :py:class:`float` + :param name: Name of the node. + :type name: :py:class:`str` + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Concat.cpp b/python_binding/operator/pybind_Concat.cpp index 854f3783e..9e1b3de9e 100644 --- a/python_binding/operator/pybind_Concat.cpp +++ b/python_binding/operator/pybind_Concat.cpp @@ -20,17 +20,35 @@ namespace py = pybind11; namespace Aidge { void init_Concat(py::module& m) { - py::class_<Concat_Op, std::shared_ptr<Concat_Op>, OperatorTensor>(m, "ConcatOp", py::multiple_inheritance()) + py::class_<Concat_Op, std::shared_ptr<Concat_Op>, OperatorTensor>(m, "ConcatOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Concat operator. + + :param nb_inputs : The number of input tensors to concatenate. + :type nb_inputs : :py:class:`int` + :param axis : The axis along which to concatenate the tensors. + :type axis : :py:class:`int` + )mydelimiter") .def(py::init<const IOIndex_t, const int>(), - py::arg("nb_inputs"), - py::arg("axis")) + py::arg("nb_inputs"), + py::arg("axis")) .def_static("get_inputs_name", &Concat_Op::getInputsName) .def_static("get_outputs_name", &Concat_Op::getOutputsName) .def_readonly_static("Type", &Concat_Op::Type); declare_registrable<Concat_Op>(m, "ConcatOp"); - m.def("Concat", &Concat, py::arg("nb_inputs"), py::arg("axis"), py::arg("name") = ""); + m.def("Concat", &Concat, py::arg("nb_inputs"), py::arg("axis"), py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Concat operator. + + :param nb_inputs : The number of input tensors to concatenate. + :type nb_inputs : :py:class:`int` + :param axis : The axis along which to concatenate the tensors. + :type axis : :py:class:`int` + :param name : Name of the node. + :type name : :py:class:`str` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_ConstantOfShape.cpp b/python_binding/operator/pybind_ConstantOfShape.cpp index 189337a38..07079d983 100644 --- a/python_binding/operator/pybind_ConstantOfShape.cpp +++ b/python_binding/operator/pybind_ConstantOfShape.cpp @@ -23,22 +23,31 @@ namespace Aidge { void init_ConstantOfShape(py::module &m) { py::class_<ConstantOfShape_Op, std::shared_ptr<ConstantOfShape_Op>, OperatorTensor>( - m, "ConstantOfShapeOp", py::multiple_inheritance()) - // Here we bind the methods of the Unsqueeze_Op that will want to access + m, "ConstantOfShapeOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a ConstantOfShape operator. + + :param value : Tensor with a given datatype that contains the value + that will fill the output tensor. + :type value : :py:class:`Tensor` + )mydelimiter") .def("get_inputs_name", &ConstantOfShape_Op::getInputsName) .def("get_outputs_name", &ConstantOfShape_Op::getOutputsName) .def("value", &ConstantOfShape_Op::value); - // Here we bind the constructor of the ConstantOfShape Node. We add an argument for - // each attribute of the operator (in here we only have 'axes') and the last - // argument is the node's name. + m.def("ConstantOfShape", &ConstantOfShape, py::arg("value") = Tensor(0.f), py::arg("name") = "", R"mydelimiter( - Initialize a node containing an constantOfShape operator. - :param value : tensor with a given datatype that contains the value that will fill the output tensor - :type value : :py:class: Tensor - :param name : name of the node. -)mydelimiter"); + Initialize a node containing a ConstantOfShape operator. + + :param value : Tensor with a given datatype that contains the value + that will fill the output tensor. + :type value : :py:class:`Tensor` + :param name : Name of the node. + :type name : :py:class:`str` + )mydelimiter"); } + } // namespace Aidge + diff --git a/python_binding/operator/pybind_Conv.cpp b/python_binding/operator/pybind_Conv.cpp index 3bd54da74..6ab073be6 100644 --- a/python_binding/operator/pybind_Conv.cpp +++ b/python_binding/operator/pybind_Conv.cpp @@ -1,14 +1,3 @@ -/******************************************************************************** - * Copyright (c) 2023 CEA-List - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - ********************************************************************************/ - #include <pybind11/pybind11.h> #include <pybind11/stl.h> #include <string> @@ -25,11 +14,22 @@ namespace py = pybind11; namespace Aidge { -template <DimIdx_t DIM> void declare_ConvOp(py::module &m) { +template <DimIdx_t DIM> +void declare_ConvOp(py::module &m) { const std::string pyClassName("Conv" + std::to_string(DIM) + "DOp"); py::class_<Conv_Op<DIM>, std::shared_ptr<Conv_Op<DIM>>, OperatorTensor>( m, pyClassName.c_str(), - py::multiple_inheritance()) + py::multiple_inheritance(), + R"mydelimiter( + Initialize a Convolution operator. + + :param kernel_dims : The dimensions of the convolution kernel (filter size). + :type kernel_dims : List[int] + :param stride_dims : The stride size for the convolution. + :type stride_dims : List[int] + :param dilation_dims : The dilation size for the convolution. + :type dilation_dims : List[int] + )mydelimiter") .def(py::init([](const std::vector<DimSize_t>& kernel_dims, const std::vector<DimSize_t> &stride_dims, const std::vector<DimSize_t> &dilation_dims) { @@ -62,13 +62,34 @@ template <DimIdx_t DIM> void declare_ConvOp(py::module &m) { AIDGE_ASSERT(dilation_dims.size() == DIM, "dilation_dims size [{}] does not match DIM [{}]", dilation_dims.size(), DIM); return Conv<DIM>(in_channels, out_channels, to_array<DIM>(kernel_dims.begin()), name, to_array<DIM>(stride_dims.begin()), to_array<DIM>(dilation_dims.begin()), noBias); - }, py::arg("in_channels"), - py::arg("out_channels"), - py::arg("kernel_dims"), - py::arg("name") = "", - py::arg("stride_dims") = std::vector<DimSize_t>(DIM,1), - py::arg("dilation_dims") = std::vector<DimSize_t>(DIM,1), - py::arg("no_bias") = false); + }, + py::arg("in_channels"), + py::arg("out_channels"), + py::arg("kernel_dims"), + py::arg("name") = "", + py::arg("stride_dims") = std::vector<DimSize_t>(DIM,1), + py::arg("dilation_dims") = std::vector<DimSize_t>(DIM,1), + py::arg("no_bias") = false, + R"mydelimiter( + Initialize a node containing a convolution operator. + + :param in_channels : The number of input channels (depth of the input tensor). + :type in_channels : int + :param out_channels : The number of output channels (depth of the output tensor). + :type out_channels : int + :param kernel_dims : The dimensions of the convolution kernel (filter size). + :type kernel_dims : List[int] + :param name : The name of the operator (optional). + :type name : str + :param stride_dims : The stride size for the convolution (default is [1]). + :type stride_dims : List[int] + :param dilation_dims : The dilation size for the convolution (default is [1]). + :type dilation_dims : List[int] + :param no_bias : Whether to disable bias (default is False). + :type no_bias : bool + :return : A new Convolution operator node. + :rtype : :py:class:`ConvOp` + )mydelimiter"); } diff --git a/python_binding/operator/pybind_ConvDepthWise.cpp b/python_binding/operator/pybind_ConvDepthWise.cpp index b69fee02a..5e24431d7 100644 --- a/python_binding/operator/pybind_ConvDepthWise.cpp +++ b/python_binding/operator/pybind_ConvDepthWise.cpp @@ -26,15 +26,32 @@ namespace py = pybind11; namespace Aidge { -template <DimIdx_t DIM> void declare_ConvDepthWiseOp(py::module &m) { +// Template function to declare the ConvDepthWise operator for a specific dimensionality. +template <DimIdx_t DIM> +void declare_ConvDepthWiseOp(py::module &m) { const std::string pyClassName("ConvDepthWise" + std::to_string(DIM) + "DOp"); py::class_<ConvDepthWise_Op<DIM>, std::shared_ptr<ConvDepthWise_Op<DIM>>, OperatorTensor>( m, pyClassName.c_str(), - py::multiple_inheritance()) - .def(py::init<const std::array<DimSize_t, DIM> &, - const std::array<DimSize_t, DIM> &, - const std::array<DimSize_t, DIM> &>(), - py::arg("kernel_dims"), + py::multiple_inheritance(), + R"mydelimiter( + Initialize a Depthwise Convolution operator. + + :param kernel_dims : The dimensions of the convolution kernel (filter size). + :type kernel_dims : List[int] + :param stride_dims : The stride size for the convolution. + :type stride_dims : List[int] + :param dilation_dims : The dilation size for the convolution. + :type dilation_dims : List[int] + )mydelimiter") + .def(py::init([](const std::array<DimSize_t, DIM> &kernel_dims, + const std::array<DimSize_t, DIM> &stride_dims, + const std::array<DimSize_t, DIM> &dilation_dims) { + AIDGE_ASSERT(kernel_dims.size() == DIM, "kernel_dims size [{}] does not match DIM [{}]", kernel_dims.size(), DIM); + AIDGE_ASSERT(stride_dims.size() == DIM, "stride_dims size [{}] does not match DIM [{}]", stride_dims.size(), DIM); + AIDGE_ASSERT(dilation_dims.size() == DIM, "dilation_dims size [{}] does not match DIM [{}]", dilation_dims.size(), DIM); + + return new ConvDepthWise_Op<DIM>(kernel_dims, stride_dims, dilation_dims); + }), py::arg("kernel_dims"), py::arg("stride_dims"), py::arg("dilation_dims")) .def_static("get_inputs_name", &ConvDepthWise_Op<DIM>::getInputsName) @@ -54,23 +71,39 @@ template <DimIdx_t DIM> void declare_ConvDepthWiseOp(py::module &m) { AIDGE_ASSERT(dilation_dims.size() == DIM, "dilation_dims size [{}] does not match DIM [{}]", dilation_dims.size(), DIM); return ConvDepthWise<DIM>(nb_channels, to_array<DIM>(kernel_dims.begin()), name, to_array<DIM>(stride_dims.begin()), to_array<DIM>(dilation_dims.begin()), no_bias); - }, py::arg("nb_channenls"), - py::arg("kernel_dims"), - py::arg("name") = "", - py::arg("stride_dims") = std::vector<DimSize_t>(DIM,1), - py::arg("dilation_dims") = std::vector<DimSize_t>(DIM,1), - py::arg("no_bias")= false); + }, + py::arg("nb_channels"), + py::arg("kernel_dims"), + py::arg("name") = "", + py::arg("stride_dims") = std::vector<DimSize_t>(DIM,1), + py::arg("dilation_dims") = std::vector<DimSize_t>(DIM,1), + py::arg("no_bias")= false, + R"mydelimiter( + Initialize a node containing a depthwise convolution operator. + :param nb_channels : The number of channels in the input tensor (i.e., depth of the tensor). + :type nb_channels : int + :param kernel_dims : The dimensions of the convolution kernel (filter size). + :type kernel_dims : List[int] + :param name : The name of the operator node (optional). + :type name : str + :param stride_dims : The stride size for the convolution (default is [1]). + :type stride_dims : List[int] + :param dilation_dims : The dilation size for the convolution (default is [1]). + :type dilation_dims : List[int] + :param no_bias : Whether to disable bias in the operation (default is False). + :type no_bias : bool + :return : A new Depthwise Convolution operator node. + :rtype : :py:class:`ConvDepthWiseOp` + )mydelimiter"); } - +// Function to initialize the Depthwise Convolution operators for different dimensionalities. void init_ConvDepthWise(py::module &m) { declare_ConvDepthWiseOp<1>(m); declare_ConvDepthWiseOp<2>(m); -// declare_ConvDepthWiseOp<3>(m); - - // FIXME: - // m.def("ConvDepthWise1D", static_cast<NodeAPI(*)(const char*, int, int, int const - // (&)[1])>(&ConvDepthWise)); + // Uncomment the following line to add support for 3D convolution + // declare_ConvDepthWiseOp<3>(m); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Div.cpp b/python_binding/operator/pybind_Div.cpp index d2ad60725..f3cbdc523 100644 --- a/python_binding/operator/pybind_Div.cpp +++ b/python_binding/operator/pybind_Div.cpp @@ -19,13 +19,41 @@ namespace py = pybind11; namespace Aidge { void init_Div(py::module& m) { - py::class_<Div_Op, std::shared_ptr<Div_Op>, OperatorTensor>(m, "DivOp", py::multiple_inheritance()) + py::class_<Div_Op, std::shared_ptr<Div_Op>, OperatorTensor>(m, "DivOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Div operator. + This operator performs element-wise division between two input tensors. + The operation is defined as: + Output = Input1 / Input2 + The output tensor shape is determined by taking the maximum size along each dimension of the input tensors after broadcasting. + Examples: + Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + :param name : Name of the node (optional). + :type name : str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Div_Op::getInputsName) .def_static("get_outputs_name", &Div_Op::getOutputsName) .def_readonly_static("Type", &Div_Op::Type); + declare_registrable<Div_Op>(m, "DivOp"); - m.def("Div", &Div, py::arg("name") = ""); + + m.def("Div", &Div, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Div operator that performs element-wise division between two tensors. + The operation is defined as: + Output = Input1 / Input2 + The output tensor shape is determined by taking the maximum size along each dimension of the input tensors after broadcasting. + Examples: + Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + + :param name : Name of the node (optional). + :type name : str + :return: A node containing the Div operator. + :rtype: :py:class:`DivOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_Erf.cpp b/python_binding/operator/pybind_Erf.cpp index 6ca25f956..2a16131d4 100644 --- a/python_binding/operator/pybind_Erf.cpp +++ b/python_binding/operator/pybind_Erf.cpp @@ -10,6 +10,8 @@ ********************************************************************************/ #include <pybind11/pybind11.h> +#include <string> +#include <vector> #include "aidge/data/Tensor.hpp" #include "aidge/operator/Erf.hpp" @@ -19,7 +21,12 @@ namespace py = pybind11; namespace Aidge { void init_Erf(py::module& m) { - py::class_<Erf_Op, std::shared_ptr<Erf_Op>, OperatorTensor>(m, "ErfOp", py::multiple_inheritance()) + py::class_<Erf_Op, std::shared_ptr<Erf_Op>, OperatorTensor>(m, "ErfOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize an Erf operator, which computes the error function (erf) element-wise. + The error function (erf) is defined as: + erf(x) = (2 / sqrt(pi)) * integral from 0 to x of exp(-t^2) dt + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Erf_Op::getInputsName) .def_static("get_outputs_name", &Erf_Op::getOutputsName) @@ -27,6 +34,16 @@ void init_Erf(py::module& m) { declare_registrable<Erf_Op>(m, "ErfOp"); - m.def("Erf", &Erf, py::arg("name") = ""); + m.def("Erf", &Erf, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing an Erf operator that computes the error function (erf) element-wise. + The error function (erf) is computed element-wise as follows: + erf(x) = (2 / sqrt(pi)) * integral from 0 to x of exp(-t^2) dt + :param name : name of the node (optional). + :type name : str + :return : A node containing the Erf operator. + :rtype : :py:class:`ErfOp` + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_FC.cpp b/python_binding/operator/pybind_FC.cpp index 2e9c41a16..c29b6e1d3 100644 --- a/python_binding/operator/pybind_FC.cpp +++ b/python_binding/operator/pybind_FC.cpp @@ -21,27 +21,38 @@ namespace py = pybind11; namespace Aidge { - - void declare_FC(py::module &m) { - py::class_<FC_Op, std::shared_ptr<FC_Op>, OperatorTensor>(m, "FCOp", py::multiple_inheritance()) + py::class_<FC_Op, std::shared_ptr<FC_Op>, OperatorTensor>(m, "FCOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Fully Connected (FC) operator. + + :param type : The type of the Fully Connected operation. + :type type : :py:class:`str` + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &FC_Op::getInputsName) .def_static("get_outputs_name", &FC_Op::getOutputsName) .def_readonly_static("Type", &FC_Op::Type) .def("out_channels", &FC_Op::outChannels) - // .def_property_readonly("a", &FC_Op::get_a) - // .def_property_readonly("a", [](const FC_Op& self) { - // const AttrDict a = AttrDict(self.get_a()); - // return a; - // }) .def("__repr__", [](FC_Op& b) { return fmt::format("Operator(type='{}')", b.Type); }); declare_registrable<FC_Op>(m, "FCOp"); - m.def("FC", &FC, py::arg("in_channels"), py::arg("out_channels"), py::arg("no_bias") = false, py::arg("name") = ""); + m.def("FC", &FC, py::arg("in_channels"), py::arg("out_channels"), py::arg("no_bias") = false, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Fully Connected (FC) operator. + + :param in_channels : The number of input channels (features). + :type in_channels : :py:class:`int` + :param out_channels : The number of output channels (features). + :type out_channels : :py:class:`int` + :param no_bias : Whether to include bias in the operation. Defaults to `False`. + :type no_bias : :py:class:`bool` + :param name : Name of the node. + :type name : :py:class:`str` + )mydelimiter"); } void init_FC(py::module &m) { diff --git a/python_binding/operator/pybind_Gather.cpp b/python_binding/operator/pybind_Gather.cpp index 0aac0bbad..fed44a1e2 100644 --- a/python_binding/operator/pybind_Gather.cpp +++ b/python_binding/operator/pybind_Gather.cpp @@ -21,7 +21,21 @@ namespace py = pybind11; namespace Aidge { void init_Gather(py::module& m) { - py::class_<Gather_Op, std::shared_ptr<Gather_Op>, OperatorTensor>(m, "GatherOp", py::multiple_inheritance()) + py::class_<Gather_Op, std::shared_ptr<Gather_Op>, OperatorTensor>(m, "GatherOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Gather operator, which extracts elements from a tensor at specified indices along a given axis. + + This operation selects values along the specified axis based on the provided indices, which can be + a 1D or multidimensional tensor. The resulting tensor will have the same shape as the input tensor + except along the given axis, where the size will be determined by the indices. + + :param axis : Axis along which to gather the elements. + :type axis : int + :param indices : Indices to gather along the axis. + :type indices : :py:class:`List[int]` + :param gathered_shape : Shape of the gathered result. + :type gathered_shape : :py:class:`List[int]` + )mydelimiter") .def(py::init<std::int8_t, const std::vector<int64_t>, const std::vector<DimSize_t>>(), @@ -34,7 +48,29 @@ void init_Gather(py::module& m) { declare_registrable<Gather_Op>(m, "GatherOp"); - m.def("Gather", &Gather, py::arg("axis") = 0, py::arg("indices") = std::vector<std::int64_t>(), py::arg("gathered_shape") = std::vector<std::size_t>(), py::arg("name") = ""); + m.def("Gather", &Gather, + py::arg("axis") = 0, + py::arg("indices") = std::vector<std::int64_t>(), + py::arg("gathered_shape") = std::vector<std::size_t>(), + py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Gather operator that extracts elements from a tensor along a specified axis. + + This operation selects values along the specified axis using the provided indices. The resulting tensor + will have the same shape as the input tensor except along the given axis, where the size will be determined + by the indices. + + :param axis : Axis along which to gather the elements (default is 0). + :type axis : int + :param indices : Indices to gather along the axis. + :type indices : :py:class:`List[int]` + :param gathered_shape : Shape of the gathered result. + :type gathered_shape : :py:class:`List[int]` + :param name : Name of the node (optional). + :type name : str + :return : A node containing the Gather operator. + :rtype : :py:class:`GatherOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_GlobalAveragePooling.cpp b/python_binding/operator/pybind_GlobalAveragePooling.cpp index f37ac11f5..691456027 100644 --- a/python_binding/operator/pybind_GlobalAveragePooling.cpp +++ b/python_binding/operator/pybind_GlobalAveragePooling.cpp @@ -19,10 +19,21 @@ namespace py = pybind11; namespace Aidge { const std::string pyClassName("GlobalAveragePoolingOp"); + void init_GlobalAveragePooling(py::module &m) { py::class_<GlobalAveragePooling_Op, std::shared_ptr<GlobalAveragePooling_Op>, OperatorTensor>(m, pyClassName.c_str(), - py::multiple_inheritance()) + py::multiple_inheritance(), + R"mydelimiter( + Initialize a Global Average Pooling operator. + + This operation performs global average pooling on an input tensor, where the input + tensor is reduced across its spatial dimensions (height and width) to a single value + per channel. + + :param name : Name of the node (optional). + :type name : str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &GlobalAveragePooling_Op::getInputsName) .def_static("get_outputs_name", &GlobalAveragePooling_Op::getOutputsName) @@ -30,7 +41,19 @@ void init_GlobalAveragePooling(py::module &m) { declare_registrable<GlobalAveragePooling_Op>(m, pyClassName); - m.def("globalaveragepooling", &GlobalAveragePooling, py::arg("name") = ""); + m.def("globalaveragepooling", &GlobalAveragePooling, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Global Average Pooling operator. + + This operation performs global average pooling on the input tensor. The result is a tensor where + each channel of the input tensor is reduced to a single value by averaging all the elements in + that channel. + + :param name : Name of the node (optional). + :type name : str + :return : A node containing the Global Average Pooling operator. + :rtype : :py:class:`GlobalAveragePoolingOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_GridSample.cpp b/python_binding/operator/pybind_GridSample.cpp index 69454c2ab..3464941dd 100644 --- a/python_binding/operator/pybind_GridSample.cpp +++ b/python_binding/operator/pybind_GridSample.cpp @@ -48,7 +48,14 @@ void declare_GridSampleOp(py::module &m) { const std::string pyClassName("GridSampleOp"); py::class_<GridSample_Op, std::shared_ptr<GridSample_Op>, OperatorTensor>( m, pyClassName.c_str(), - py::multiple_inheritance()) + py::multiple_inheritance(), + R"mydelimiter( + A class representing the GridSample operator, which performs grid sampling. + + :param mode: Interpolation mode to use for sampling. + :param padding_mode: Padding mode for out-of-bound coordinates. + :param align_corners: Whether to align the corners of the grid. + )mydelimiter") .def(py::init([](const std::string& mode, const std::string& padding_mode, bool align_corners) { @@ -71,7 +78,15 @@ void declare_GridSampleOp(py::module &m) { }, py::arg("mode"), py::arg("padding_mode"), py::arg("align_corners"), - py::arg("name") = ""); + py::arg("name") = "", + R"mydelimiter( + Creates a GridSample operation. + + :param mode: Interpolation mode to use for sampling. + :param padding_mode: Padding mode for out-of-bound coordinates. + :param align_corners: Whether to align the corners of the grid. + :param name: Name of the node. + )mydelimiter"); } diff --git a/python_binding/operator/pybind_Identity.cpp b/python_binding/operator/pybind_Identity.cpp index 759919722..22ddf9402 100644 --- a/python_binding/operator/pybind_Identity.cpp +++ b/python_binding/operator/pybind_Identity.cpp @@ -19,13 +19,21 @@ namespace py = pybind11; namespace Aidge { void init_Identity(py::module& m) { - py::class_<Identity_Op, std::shared_ptr<Identity_Op>, OperatorTensor>(m, "IdentityOp", py::multiple_inheritance()) + py::class_<Identity_Op, std::shared_ptr<Identity_Op>, OperatorTensor>(m, "IdentityOp", py::multiple_inheritance(), + R"mydelimiter( + A class representing the Identity operator, which returns the input as-is. + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Identity_Op::getInputsName) .def_static("get_outputs_name", &Identity_Op::getOutputsName) .def_readonly_static("Type", &Identity_Op::Type); - m.def("Identity", &Identity, py::arg("name") = ""); + m.def("Identity", &Identity, py::arg("name") = "", + R"mydelimiter( + Creates an Identity operation, which returns the input as-is. + + :param name: Name of the node. + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_LRN.cpp b/python_binding/operator/pybind_LRN.cpp index 178af540b..bb04ed1c5 100644 --- a/python_binding/operator/pybind_LRN.cpp +++ b/python_binding/operator/pybind_LRN.cpp @@ -20,12 +20,25 @@ namespace py = pybind11; namespace Aidge { void init_LRN(py::module& m) { - py::class_<LRN_Op, std::shared_ptr<LRN_Op>, OperatorTensor>(m, "LRNOp", py::multiple_inheritance()) + py::class_<LRN_Op, std::shared_ptr<LRN_Op>, OperatorTensor>(m, "LRNOp", py::multiple_inheritance(), + R"mydelimiter( + A class representing the Local Response Normalization (LRN) operator. + + This operator performs Local Response Normalization, which normalizes each element in the input tensor + based on its neighbors within a local region defined by the given size parameter. + )mydelimiter") .def(py::init<std::int32_t>(), py::arg("size")) .def_static("get_inputs_name", &LRN_Op::getInputsName) .def_static("get_outputs_name", &LRN_Op::getOutputsName) .def_readonly_static("Type", &LRN_Op::Type); - declare_registrable<LRN_Op>(m, "LRNOp"); - m.def("LRN", &LRN, py::arg("size"), py::arg("name") = ""); + + m.def("LRN", &LRN, py::arg("size"), py::arg("name") = "", + R"mydelimiter( + Create a node containing the Local Response Normalization operator. + + :param size: The size of the local region for normalization. + :param name: The name of the node (optional). + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_LeakyReLU.cpp b/python_binding/operator/pybind_LeakyReLU.cpp index e031d3dfb..564fd90be 100644 --- a/python_binding/operator/pybind_LeakyReLU.cpp +++ b/python_binding/operator/pybind_LeakyReLU.cpp @@ -19,13 +19,29 @@ namespace py = pybind11; namespace Aidge { void init_LeakyReLU(py::module& m) { - py::class_<LeakyReLU_Op, std::shared_ptr<LeakyReLU_Op>, OperatorTensor>(m, "LeakyReLUOp", py::multiple_inheritance()) + py::class_<LeakyReLU_Op, std::shared_ptr<LeakyReLU_Op>, OperatorTensor>(m, "LeakyReLUOp", py::multiple_inheritance(), + R"mydelimiter( + A class representing the LeakyReLU operator. + + The LeakyReLU activation function performs element-wise leaky ReLU: + f(x) = x if x > 0, else negative_slope * x. + The negative_slope parameter controls the angle of the negative part of the function. + )mydelimiter") .def(py::init<float>(), py::arg("negative_slope")) .def_static("get_inputs_name", &LeakyReLU_Op::getInputsName) .def_static("get_outputs_name", &LeakyReLU_Op::getOutputsName) .def_readonly_static("Type", &LeakyReLU_Op::Type); + declare_registrable<LeakyReLU_Op>(m, "LeakyReLUOp"); - m.def("LeakyReLU", &LeakyReLU, py::arg("negative_slope") = 0.0f, py::arg("name") = ""); + + m.def("LeakyReLU", &LeakyReLU, py::arg("negative_slope") = 0.0f, py::arg("name") = "", + R"mydelimiter( + Create a LeakyReLU node with a specified negative slope. + + :param negative_slope: The slope for the negative part of the function. Defaults to 0.0. + :param name: The name of the node. + )mydelimiter"); } } // namespace Aidge + diff --git a/python_binding/operator/pybind_Ln.cpp b/python_binding/operator/pybind_Ln.cpp index 50aa75582..61fc3583d 100755 --- a/python_binding/operator/pybind_Ln.cpp +++ b/python_binding/operator/pybind_Ln.cpp @@ -19,12 +19,23 @@ namespace py = pybind11; namespace Aidge { void init_Ln(py::module& m) { - py::class_<Ln_Op, std::shared_ptr<Ln_Op>, OperatorTensor>(m, "LnOp", py::multiple_inheritance()) + py::class_<Ln_Op, std::shared_ptr<Ln_Op>, OperatorTensor>(m, "LnOp", py::multiple_inheritance(), + R"mydelimiter( + A class representing the natural logarithm operator (Ln). + + The operator computes the element-wise natural logarithm of the input tensor. + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Ln_Op::getInputsName) .def_static("get_outputs_name", &Ln_Op::getOutputsName) .def_readonly_static("Type", &Ln_Op::Type); - m.def("Ln", &Ln, py::arg("name") = ""); + m.def("Ln", &Ln, py::arg("name") = "", + R"mydelimiter( + Create a node with the natural logarithm operator. + + :param name: The name of the node. + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Matmul.cpp b/python_binding/operator/pybind_Matmul.cpp index f4f175afc..ea59955f3 100644 --- a/python_binding/operator/pybind_Matmul.cpp +++ b/python_binding/operator/pybind_Matmul.cpp @@ -21,12 +21,43 @@ namespace py = pybind11; namespace Aidge { void init_MatMul(py::module &m) { - py::class_<MatMul_Op, std::shared_ptr<MatMul_Op>, OperatorTensor>(m, "MatMulOp", py::multiple_inheritance()) + py::class_<MatMul_Op, std::shared_ptr<MatMul_Op>, OperatorTensor>( + m, "MatMulOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize an MatMul operator. + This operator performs Matrix Multiplication between two input tensors. + The operation is defined as: + Output = Input1 @ Input2 + This operator implements generalized matrix multiplication, supporting batched + matrix multiplication and broadcasting rules consistent with Numpy. + + :param name: Optional name of the operator. + :type name: str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &MatMul_Op::getInputsName) .def_static("get_outputs_name", &MatMul_Op::getOutputsName) .def_readonly_static("Type", &MatMul_Op::Type); + declare_registrable<MatMul_Op>(m, "MatMulOp"); - m.def("MatMul", &MatMul, py::arg("name") = ""); + + m.def("MatMul", &MatMul, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing an MatMul operator that performs Matrix Multiplication between two tensors. + The operation is defined as: + Output = Input1 @ Input2 + + This operator implements generalized matrix multiplication, supporting batched + matrix multiplication and broadcasting rules consistent with Numpy. + Example: + Input A: (M, K), Input B: (K, N) -> Output: (M, N) + Input A: (batch_size, M, K), Input B: (K, N) -> Output: (batch_size, M, N) + :param name: Optional name of the node. + :type name: str + :return: A node containing the MatMul operator. + :rtype: :py:class:`MatMulOp` + + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_MaxPooling.cpp b/python_binding/operator/pybind_MaxPooling.cpp index 00f6d26bd..8834625a8 100644 --- a/python_binding/operator/pybind_MaxPooling.cpp +++ b/python_binding/operator/pybind_MaxPooling.cpp @@ -29,7 +29,17 @@ template <DimIdx_t DIM> void declare_MaxPoolingOp(py::module &m) { const std::string pyClassName("MaxPooling" + std::to_string(DIM) + "DOp"); py::class_<MaxPooling_Op<DIM>, std::shared_ptr<MaxPooling_Op<DIM>>, OperatorTensor>( m, pyClassName.c_str(), - py::multiple_inheritance()) + py::multiple_inheritance(), + R"mydelimiter( + Initialize a MaxPooling operator for a specified dimension. + + :param kernel_dims: The size of the kernel to apply to each dimension. + :type kernel_dims: List[int] + :param stride_dims: The stride (step size) to move the kernel over the input. + :type stride_dims: List[int] + :param ceil_mode: Whether to use ceil or floor when calculating the output dimensions. + :type ceil_mode: bool + )mydelimiter") .def(py::init<const std::array<DimSize_t, DIM> &, const std::array<DimSize_t, DIM> &, bool>(), @@ -39,7 +49,9 @@ template <DimIdx_t DIM> void declare_MaxPoolingOp(py::module &m) { .def_static("get_inputs_name", &MaxPooling_Op<DIM>::getInputsName) .def_static("get_outputs_name", &MaxPooling_Op<DIM>::getOutputsName) .def_readonly_static("Type", &MaxPooling_Op<DIM>::Type); + declare_registrable<MaxPooling_Op<DIM>>(m, pyClassName); + m.def(("MaxPooling" + std::to_string(DIM) + "D").c_str(), [](const std::vector<DimSize_t>& kernel_dims, const std::string& name, const std::vector<DimSize_t> &stride_dims, @@ -50,16 +62,33 @@ template <DimIdx_t DIM> void declare_MaxPoolingOp(py::module &m) { return MaxPooling<DIM>(to_array<DIM>(kernel_dims.begin()), name, to_array<DIM>(stride_dims.begin()), ceil_mode); }, py::arg("kernel_dims"), py::arg("name") = "", - py::arg("stride_dims") = std::vector<DimSize_t>(DIM,1), - py::arg("ceil_mode") = false); + py::arg("stride_dims") = std::vector<DimSize_t>(DIM, 1), + py::arg("ceil_mode") = false, + R"mydelimiter( + Initialize a node containing a MaxPooling operator. -} + This operator performs max pooling, which reduces the input tensor size by selecting + the maximum value in each kernel-sized window, with optional strides and ceiling for dimension + calculation. + :param kernel_dims: The size of the kernel to apply to each dimension. + :type kernel_dims: List[int] + :param stride_dims: The stride (step size) to move the kernel over the input. + :type stride_dims: List[int] + :param ceil_mode: Whether to use ceil or floor when calculating the output dimensions. + :type ceil_mode: bool + :param name: Name of the node (optional). + :type name: str + :return: A node containing the MaxPooling operator. + :rtype: :py:class:`MaxPoolingOp` + )mydelimiter"); +} void init_MaxPooling(py::module &m) { declare_MaxPoolingOp<1>(m); declare_MaxPoolingOp<2>(m); declare_MaxPoolingOp<3>(m); - } + } // namespace Aidge + diff --git a/python_binding/operator/pybind_Mul.cpp b/python_binding/operator/pybind_Mul.cpp index 23949b5fe..a21e74f45 100644 --- a/python_binding/operator/pybind_Mul.cpp +++ b/python_binding/operator/pybind_Mul.cpp @@ -19,12 +19,30 @@ namespace py = pybind11; namespace Aidge { void init_Mul(py::module& m) { - py::class_<Mul_Op, std::shared_ptr<Mul_Op>, OperatorTensor>(m, "MulOp", py::multiple_inheritance()) + py::class_<Mul_Op, std::shared_ptr<Mul_Op>, OperatorTensor>(m, "MulOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Mul operator, which performs element-wise multiplication between two tensors. + + :param name: Name of the node (optional). + :type name: str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Mul_Op::getInputsName) .def_static("get_outputs_name", &Mul_Op::getOutputsName) .def_readonly_static("Type", &Mul_Op::Type); declare_registrable<Mul_Op>(m, "MulOp"); - m.def("Mul", &Mul, py::arg("name") = ""); + + m.def("Mul", &Mul, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Mul operator that performs element-wise multiplication. + + This operator performs element-wise multiplication between two tensors. + + :param name: Name of the node (optional). + :type name: str + :return: A node containing the Mul operator. + :rtype: :py:class:`MulOp` + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Pad.cpp b/python_binding/operator/pybind_Pad.cpp index 7dc4a4bee..fe899a75a 100644 --- a/python_binding/operator/pybind_Pad.cpp +++ b/python_binding/operator/pybind_Pad.cpp @@ -8,7 +8,6 @@ * SPDX-License-Identifier: EPL-2.0 * ********************************************************************************/ - #include <array> #include <pybind11/pybind11.h> #include <pybind11/stl.h> @@ -18,17 +17,31 @@ #include "aidge/backend/OperatorImpl.hpp" #include "aidge/data/Tensor.hpp" #include "aidge/operator/Pad.hpp" -#include "aidge/operator/Operator.hpp" +#include "aidge/operator/OperatorTensor.hpp" #include "aidge/utils/Types.h" namespace py = pybind11; namespace Aidge { +// Template function for declaring Pad operator for different dimensions template <DimIdx_t DIM> void declare_PadOp(py::module &m) { const std::string pyClassName("Pad" + std::to_string(DIM) + "DOp"); + py::class_<Pad_Op<DIM>, std::shared_ptr<Pad_Op<DIM>>, OperatorTensor>( m, pyClassName.c_str(), - py::multiple_inheritance()) + py::multiple_inheritance(), + R"mydelimiter( + Initialize a Pad operator for a tensor. + + This operator applies padding to the input tensor along specified dimensions. + + :param beginEndTuples: Padding configurations for each dimension in the form [begin, end]. + :type beginEndTuples: List[int] + :param borderType: Type of padding to be applied (default is Constant). + :type borderType: PadBorderType + :param borderValue: Value used for padding if borderType is Constant (default is 0.0). + :type borderValue: float + )mydelimiter") .def(py::init<const std::array<DimSize_t, 2*DIM> &, PadBorderType, double>(), @@ -37,9 +50,10 @@ template <DimIdx_t DIM> void declare_PadOp(py::module &m) { py::arg("borderValue") = 0.0) .def_static("get_inputs_name", &Pad_Op<DIM>::getInputsName) .def_static("get_outputs_name", &Pad_Op<DIM>::getOutputsName) - .def_readonly_static("Type", &Pad_Op<DIM>::Type) - ; + .def_readonly_static("Type", &Pad_Op<DIM>::Type); + declare_registrable<Pad_Op<DIM>>(m, pyClassName); + m.def(("Pad" + std::to_string(DIM) + "D").c_str(), [](const std::vector<DimSize_t>& beginEndTuples, const std::string& name, PadBorderType borderType = PadBorderType::Constant, @@ -50,10 +64,25 @@ template <DimIdx_t DIM> void declare_PadOp(py::module &m) { py::arg("begin_end_tuples"), py::arg("name") = "", py::arg("border_type") = PadBorderType::Constant, - py::arg("border_value") = 0.0); -} + py::arg("border_value") = 0.0, + R"mydelimiter( + Initialize a node containing a Pad operator. + + This function applies padding to the tensor along the specified dimensions + using the given padding type and value. + :param begin_end_tuples: Padding configuration for each dimension in the format [begin, end] for each dimension. + :type begin_end_tuples: List[int] + :param name: Name of the operator node (optional). + :type name: str + :param border_type: Type of padding (Constant, Edge, Reflect, Wrap) (default is Constant). + :type border_type: PadBorderType + :param border_value: The value used for padding if border_type is Constant (default is 0.0). + :type border_value: float + )mydelimiter"); +} +// Initialize the Pad operator for different dimensions void init_Pad(py::module &m) { py::enum_<PadBorderType>(m, "pad_border_type") .value("Constant", PadBorderType::Constant) @@ -61,8 +90,10 @@ void init_Pad(py::module &m) { .value("Reflect", PadBorderType::Reflect) .value("Wrap", PadBorderType::Wrap) .export_values(); + declare_PadOp<1>(m); declare_PadOp<2>(m); - //declare_PadOp<3>(m); + //declare_PadOp<3>(m); // Uncomment if needed for 3D pad } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Pow.cpp b/python_binding/operator/pybind_Pow.cpp index ec29e3faa..c1144b89d 100644 --- a/python_binding/operator/pybind_Pow.cpp +++ b/python_binding/operator/pybind_Pow.cpp @@ -19,13 +19,39 @@ namespace py = pybind11; namespace Aidge { void init_Pow(py::module& m) { - py::class_<Pow_Op, std::shared_ptr<Pow_Op>, OperatorTensor>(m, "PowOp", py::multiple_inheritance()) + py::class_<Pow_Op, std::shared_ptr<Pow_Op>, OperatorTensor>(m, "PowOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize an Pow operator. + This operator performs element-wise power between two input tensors. + The operation is defined as: + Output = Input1 ^ Input2 + The output tensor shape is determined by taking the maximum size along each dimension of the input tensors after broadcasting. + Examples: + Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + :param name : Name of the node (optional). + :type name : str) + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Pow_Op::getInputsName) .def_static("get_outputs_name", &Pow_Op::getOutputsName) .def_readonly_static("Type", &Pow_Op::Type); declare_registrable<Pow_Op>(m, "PowOp"); - m.def("Pow", &Pow, py::arg("name") = ""); + m.def("Pow", &Pow, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing an Pow operator that performs element-wise power between two tensors. + The operation is defined as: + Output = Input1 ^ Input2 + The output tensor shape is determined by taking the maximum size along each dimension of the input tensors after broadcasting. + Examples: + Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + + :param name : Name of the node (optional). + :type name : str + :return: A node containing the Pow operator. + :rtype: :py:class:`PowOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_ReLU.cpp b/python_binding/operator/pybind_ReLU.cpp index 79720845c..8222a6a03 100644 --- a/python_binding/operator/pybind_ReLU.cpp +++ b/python_binding/operator/pybind_ReLU.cpp @@ -19,13 +19,37 @@ namespace py = pybind11; namespace Aidge { void init_ReLU(py::module& m) { - py::class_<ReLU_Op, std::shared_ptr<ReLU_Op>, OperatorTensor>(m, "ReLUOp", py::multiple_inheritance()) - .def(py::init<>()) - .def_static("get_inputs_name", &ReLU_Op::getInputsName) - .def_static("get_outputs_name", &ReLU_Op::getOutputsName) - .def_readonly_static("Type", &ReLU_Op::Type); + py::class_<ReLU_Op, std::shared_ptr<ReLU_Op>, OperatorTensor>(m, "ReLUOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a ReLU (Rectified Linear Unit) operator. + The ReLU function is applied element-wise to the input tensor. + It is defined as: + ReLU(x) = max(0, x) + This operator sets all negative values in the tensor to zero, while leaving positive values unchanged. + :param name : name of the node (optional). + :type name : str + )mydelimiter") + .def(py::init<>()) + .def_static("get_inputs_name", &ReLU_Op::getInputsName) + .def_static("get_outputs_name", &ReLU_Op::getOutputsName) + .def_readonly_static("Type", &ReLU_Op::Type); + declare_registrable<ReLU_Op>(m, "ReLUOp"); - m.def("ReLU", &ReLU, py::arg("name") = ""); + m.def("ReLU", &ReLU, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a ReLU operator that applies the ReLU function element-wise. + + The ReLU function is applied element-wise and is defined as: + ReLU(x) = max(0, x) + + The operation sets all negative values to zero and leaves positive values unchanged. + + :param name: Name of the node (optional). + :type name: str + :return: A node containing the ReLU operator. + :rtype: :py:class:`ReLUOp` + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Reshape.cpp b/python_binding/operator/pybind_Reshape.cpp index c0b0e8c30..e3244f5dd 100644 --- a/python_binding/operator/pybind_Reshape.cpp +++ b/python_binding/operator/pybind_Reshape.cpp @@ -10,21 +10,52 @@ ********************************************************************************/ #include <pybind11/pybind11.h> +#include <string> +#include <vector> -#include "aidge/data/Tensor.hpp" -#include "aidge/operator/Reshape.hpp" #include "aidge/operator/OperatorTensor.hpp" +#include "aidge/operator/Reshape.hpp" namespace py = pybind11; namespace Aidge { void init_Reshape(py::module& m) { - py::class_<Reshape_Op, std::shared_ptr<Reshape_Op>, OperatorTensor>(m, "ReshapeOp", py::multiple_inheritance()) - .def(py::init<const std::vector<std::int64_t>&, bool>(), py::arg("shape"), py::arg("allowzero")) - .def_static("get_inputs_name", &Reshape_Op::getInputsName) - .def_static("get_outputs_name", &Reshape_Op::getOutputsName) - .def_readonly_static("Type", &Reshape_Op::Type); + py::class_<Reshape_Op, std::shared_ptr<Reshape_Op>, OperatorTensor>(m, "ReshapeOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Reshape operator that reshapes the input tensor to a specified shape. + + :param shape: The target shape to reshape the tensor to. It should be a list of integers, + where values are between [-r; r-1], with r = input_tensor.nbDims(), + representing the dimensions of the input tensor. + :type shape: List[int] + :param allowzero: If True, zero-size dimensions are allowed. If False, an error is raised + if the reshaped tensor has a zero-size dimension. + :type allowzero: bool + )mydelimiter") + .def(py::init<const std::vector<std::int64_t>&, bool>(), py::arg("shape"), py::arg("allowzero")) + .def_static("get_inputs_name", &Reshape_Op::getInputsName) + .def_static("get_outputs_name", &Reshape_Op::getOutputsName) + .def_readonly_static("Type", &Reshape_Op::Type); + declare_registrable<Reshape_Op>(m, "ReshapeOp"); - m.def("Reshape", &Reshape, py::arg("shape") = std::vector<std::int64_t>(), py::arg("allowzero") = false, py::arg("name") = ""); + + m.def("Reshape", &Reshape, py::arg("shape") = std::vector<std::int64_t>(), py::arg("allowzero") = false, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Reshape operator. + + This operator reshapes the input tensor to the specified shape. The shape should be provided as a list of + integers, where values are between [-r; r-1], with r = input_tensor.nbDims(), + representing the dimensions of the input tensor. The operator also has a flag for allowing zero-size dimensions. + + :param shape: The target shape to reshape the tensor to. + :type shape: List[int] + :param allowzero: Whether to allow zero-size dimensions. + :type allowzero: bool + :param name: Name of the node (optional). + :type name: str + :return: A node containing the Reshape operator. + :rtype: :py:class:`ReshapeOp` + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Round.cpp b/python_binding/operator/pybind_Round.cpp index e9ed0e473..c055ab7fd 100644 --- a/python_binding/operator/pybind_Round.cpp +++ b/python_binding/operator/pybind_Round.cpp @@ -18,19 +18,34 @@ namespace py = pybind11; namespace Aidge { void init_Round(py::module& m) { - py::class_<Round_Op, std::shared_ptr<Round_Op>, OperatorTensor>(m, "RoundOp", py::multiple_inheritance()) + py::class_<Round_Op, std::shared_ptr<Round_Op>, OperatorTensor>(m, "RoundOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Round operator, which rounds the values of a tensor element-wise. + + This operator rounds each value in the input tensor to the nearest integer. + For values exactly halfway between two integers, it rounds to the nearest even integer. + + :param name: The name of the node (optional). + :type name: str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Round_Op::getInputsName) .def_static("get_outputs_name", &Round_Op::getOutputsName) .def_readonly_static("Type", &Round_Op::Type); + declare_registrable<Round_Op>(m, "RoundOp"); - m.def("Round", &Round, py::arg("name") = "", R"mydelimiter( - RoundOp is a tensor operator that rounds the values of a tensor element-wise. - This class rounds each value to the nearest integer. In the case of halves, - the rule is to round them to the nearest even integer. - :param X: input tensor. - :type X: tensor of type float, double, float16, or bfloat16. - :param Y: output tensor with the same shape and type as the input tensor. - )mydelimiter"); + + m.def("Round", &Round, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Round operator that rounds tensor values element-wise. + + This operator processes the input tensor and rounds each value to the nearest integer. + If a value is exactly halfway between two integers, it rounds to the nearest even integer. + + :param name: The name of the node (optional). + :type name: str + :return: A node containing the Round operator. + :rtype: :py:class:`RoundOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_Scaling.cpp b/python_binding/operator/pybind_Scaling.cpp index 22e8011a9..c555bca89 100644 --- a/python_binding/operator/pybind_Scaling.cpp +++ b/python_binding/operator/pybind_Scaling.cpp @@ -19,15 +19,54 @@ namespace py = pybind11; namespace Aidge { -void init_Scaling(py::module& m) -{ - py::class_<Scaling_Op, std::shared_ptr<Scaling_Op>, OperatorTensor>(m, "ScalingOp", py::multiple_inheritance()) - .def(py::init<float, size_t, bool>(), py::arg("scaling_factor"), py::arg("nb_bits"), py::arg("is_output_unsigned")) +void init_Scaling(py::module& m) { + py::class_<Scaling_Op, std::shared_ptr<Scaling_Op>, OperatorTensor>( + m, "ScalingOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Scaling operator for element-wise tensor scaling. + + This operator scales tensor elements by a specified scaling factor, + optionally constraining the output to a specified bit-width and signedness. + + :param scaling_factor: The scaling factor to apply to tensor elements. + :type scaling_factor: float + :param nb_bits: The number of bits for quantization of the output. Must be a positive integer. + :type nb_bits: int + :param is_output_unsigned: Specifies whether the output should be unsigned (True) or signed (False). + :type is_output_unsigned: bool + )mydelimiter") + .def(py::init<float, size_t, bool>(), + py::arg("scaling_factor"), + py::arg("nb_bits"), + py::arg("is_output_unsigned")) .def_static("get_inputs_name", &Scaling_Op::getInputsName) .def_static("get_outputs_name", &Scaling_Op::getOutputsName) .def_readonly_static("Type", &Scaling_Op::Type); + declare_registrable<Scaling_Op>(m, "ScalingOp"); - m.def("Scaling", &Scaling, py::arg("scaling_factor") = 1.0f, py::arg("nb_bits") = 8, py::arg("is_output_unsigned") = true, py::arg("name") = ""); + + m.def("Scaling", &Scaling, + py::arg("scaling_factor") = 1.0f, + py::arg("nb_bits") = 8, + py::arg("is_output_unsigned") = true, + py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Scaling operator to scale tensor elements. + + This operator applies a scaling factor to each element of the input tensor. The result + can optionally be quantized to a specific bit-width and constrained to unsigned or signed output. + + :param scaling_factor: The factor by which to scale the tensor elements. Default is 1.0. + :type scaling_factor: float + :param nb_bits: The number of bits for quantized output. Default is 8. + :type nb_bits: int + :param is_output_unsigned: Indicates whether the output tensor values should be unsigned. Default is True. + :type is_output_unsigned: bool + :param name: The name of the node (optional). + :type name: str + :return: A node containing the Scaling operator. + :rtype: :py:class:`ScalingOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_Shape.cpp b/python_binding/operator/pybind_Shape.cpp index b3511f31e..cc7669a24 100644 --- a/python_binding/operator/pybind_Shape.cpp +++ b/python_binding/operator/pybind_Shape.cpp @@ -20,18 +20,41 @@ namespace py = pybind11; namespace Aidge { void init_Shape(py::module& m) { - py::class_<Shape_Op, std::shared_ptr<Shape_Op>, OperatorTensor>(m, "ShapeOp", py::multiple_inheritance()) - .def(py::init<const std::int64_t, - const std::int64_t>(), - py::arg("start"), - py::arg("end")) + py::class_<Shape_Op, std::shared_ptr<Shape_Op>, OperatorTensor>(m, "ShapeOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Shape operator, which extracts a slice of the tensor's shape. + + :param start: The starting index (inclusive) for the shape slice. The accepted range is [-r; r-1], + where r is the rank of the input tensor. + :type start: int + :param end: The ending index (exclusive) for the shape slice. The accepted range is [-r; r-1], + where r is the rank of the input tensor. If not specified, the slice will go until the end of the shape. + :type end: int + )mydelimiter") + .def(py::init<const std::int64_t, const std::int64_t>(), py::arg("start"), py::arg("end")) .def_static("get_inputs_name", &Shape_Op::getInputsName) .def_static("get_outputs_name", &Shape_Op::getOutputsName) .def_readonly_static("Type", &Shape_Op::Type); declare_registrable<Shape_Op>(m, "ShapeOp"); - m.def("Shape", &Shape, py::arg("start") = 0, py::arg("end") = -1, py::arg("name") = ""); + m.def("Shape", &Shape, py::arg("start") = 0, py::arg("end") = -1, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Shape operator that extracts a slice of the tensor's shape. + + This operator extracts a slice of the tensor's shape from the specified start to end indices. + The start and end indices are inclusive and exclusive respectively, and can be positive or negative. + The accepted range for both is [-r, r-1], where r is the rank of the input tensor. + + :param start: The starting index (inclusive) for the shape slice. The accepted range is [-r; r-1]. + :type start: int + :param end: The ending index (exclusive) for the shape slice. The accepted range is [-r; r-1]. + :type end: int + :param name: Name of the node (optional). + :type name: str + :return: A node containing the Shape operator. + :rtype: :py:class:`ShapeOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_Sigmoid.cpp b/python_binding/operator/pybind_Sigmoid.cpp index 09e0e2fa2..b061d806f 100644 --- a/python_binding/operator/pybind_Sigmoid.cpp +++ b/python_binding/operator/pybind_Sigmoid.cpp @@ -19,14 +19,38 @@ namespace py = pybind11; namespace Aidge { void init_Sigmoid(py::module& m) { - py::class_<Sigmoid_Op, std::shared_ptr<Sigmoid_Op>, OperatorTensor>(m, "SigmoidOp", py::multiple_inheritance()) - .def(py::init<>()) - .def_static("get_inputs_name", &Sigmoid_Op::getInputsName) - .def_static("get_outputs_name", &Sigmoid_Op::getOutputsName) - .def_readonly_static("Type", &Sigmoid_Op::Type); + py::class_<Sigmoid_Op, std::shared_ptr<Sigmoid_Op>, OperatorTensor>(m, "SigmoidOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Sigmoid operator. + The Sigmoid function is applied element-wise to the input tensor. + It is defined as: + Sigmoid(x) = 1 / (1 + exp(-x)) + This operator applies the sigmoid activation function to each element of the tensor, squashing each value into the range (0, 1). + :param name : name of the node (optional). + :type name : str + )mydelimiter") + .def(py::init<>()) + .def_static("get_inputs_name", &Sigmoid_Op::getInputsName) + .def_static("get_outputs_name", &Sigmoid_Op::getOutputsName) + .def_readonly_static("Type", &Sigmoid_Op::Type); + declare_registrable<Sigmoid_Op>(m, "SigmoidOp"); - m.def("Sigmoid", &Sigmoid, py::arg("name") = ""); + m.def("Sigmoid", &Sigmoid, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Sigmoid operator that applies the Sigmoid function element-wise. + + The Sigmoid function is applied element-wise and is defined as: + Sigmoid(x) = 1 / (1 + exp(-x)) + + This operation squashes each value of the tensor into the range (0, 1), making it commonly used for activation functions in neural networks. + + :param name: Name of the node (optional). + :type name: str + :return: A node containing the Sigmoid operator. + :rtype: :py:class:`SigmoidOp` + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Slice.cpp b/python_binding/operator/pybind_Slice.cpp index c8cae2592..f01751b86 100644 --- a/python_binding/operator/pybind_Slice.cpp +++ b/python_binding/operator/pybind_Slice.cpp @@ -20,26 +20,60 @@ namespace py = pybind11; namespace Aidge { void init_Slice(py::module& m) { - py::class_<Slice_Op, std::shared_ptr<Slice_Op>, OperatorTensor>(m, "SliceOp", py::multiple_inheritance()) + py::class_<Slice_Op, std::shared_ptr<Slice_Op>, OperatorTensor>(m, "SliceOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Slice operator, which slices a tensor along specified axes. + + :param starts: The start indices for the slice along each axis. The accepted range for each value is [-r, r-1], + where r is the rank of the input tensor. + :type starts: List[int] + :param ends: The end indices for the slice along each axis. The accepted range for each value is [-r, r-1], + where r is the rank of the input tensor. The slicing is exclusive at the end index. + :type ends: List[int] + :param axes: The axes along which to slice the tensor. If not specified, slices all axes. + :type axes: List[int] + :param steps: The step size for each axis in the slice. Defaults to 1. + :type steps: List[int] + )mydelimiter") .def(py::init<const std::vector<std::int64_t>&, const std::vector<std::int64_t>&, const std::vector<std::int8_t>&, const std::vector<std::int64_t>&>(), py::arg("starts"), py::arg("ends"), - py::arg("axes"), - py::arg("steps")) + py::arg("axes") = std::vector<std::int8_t>(), + py::arg("steps") = std::vector<std::int64_t>()) .def_static("get_inputs_name", &Slice_Op::getInputsName) .def_static("get_outputs_name", &Slice_Op::getOutputsName) .def_readonly_static("Type", &Slice_Op::Type); + declare_registrable<Slice_Op>(m, "SliceOp"); - m.def("Slice", + m.def("Slice", &Slice, py::arg("starts") = std::vector<std::int64_t>(), py::arg("ends") = std::vector<std::int64_t>(), py::arg("axes") = std::vector<std::int8_t>(), py::arg("steps") = std::vector<std::int64_t>(), - py::arg("name") = ""); + py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Slice operator that slices a tensor along specified axes. + + The slicing is done by specifying the `starts`, `ends`, `axes`, and `steps` for each axis. The accepted range for each of the `starts` and `ends` is [-r, r-1], where r is the rank of the input tensor. The `axes` specify which axes to apply the slice on. The `steps` specify the step size along each axis. If `steps` is not provided, it defaults to 1. + + :param starts: The start indices for the slice along each axis. The accepted range is [-r, r-1]. + :type starts: List[int] + :param ends: The end indices for the slice along each axis. The accepted range is [-r, r-1], exclusive at the end index. + :type ends: List[int] + :param axes: The axes along which to slice the tensor. If not specified, slices all axes. + :type axes: List[int] + :param steps: The step size for each axis in the slice. Defaults to 1. + :type steps: List[int] + :param name: Name of the node (optional). + :type name: str + :return: A node containing the Slice operator. + :rtype: :py:class:`SliceOp` + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Softmax.cpp b/python_binding/operator/pybind_Softmax.cpp index 3b98ab9df..093f448e4 100644 --- a/python_binding/operator/pybind_Softmax.cpp +++ b/python_binding/operator/pybind_Softmax.cpp @@ -20,12 +20,29 @@ namespace py = pybind11; namespace Aidge { void init_Softmax(py::module& m) { - py::class_<Softmax_Op, std::shared_ptr<Softmax_Op>, OperatorTensor>(m, "SoftmaxOp", py::multiple_inheritance()) + py::class_<Softmax_Op, std::shared_ptr<Softmax_Op>, OperatorTensor>(m, "SoftmaxOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Softmax operator. + :param axis: Axis along which to compute the softmax. The accepted range is [-r, r-1], + where r is the rank (number of dimensions) of the input tensor. + :type axis: int + )mydelimiter") .def(py::init<std::int32_t>(), py::arg("axis")) .def_static("get_inputs_name", &Softmax_Op::getInputsName) .def_static("get_outputs_name", &Softmax_Op::getOutputsName) .def_readonly_static("Type", &Softmax_Op::Type); declare_registrable<Softmax_Op>(m, "SoftmaxOp"); - m.def("Softmax", &Softmax, py::arg("axis"), py::arg("name") = ""); + m.def("Softmax", &Softmax, py::arg("axis"), py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Softmax operator that computes the softmax along the specified axis. + + :param axis: Axis along which to compute the softmax. The accepted range is [-r, r-1], + where r is the rank (number of dimensions) of the input tensor. + :type axis: int + :param name: Name of the node (optional). + :type name: str + :return: A node containing the Softmax operator. + :rtype: :py:class:`SoftmaxOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_Split.cpp b/python_binding/operator/pybind_Split.cpp index 9b3feda9f..c6e220e4e 100644 --- a/python_binding/operator/pybind_Split.cpp +++ b/python_binding/operator/pybind_Split.cpp @@ -21,18 +21,51 @@ namespace py = pybind11; namespace Aidge { void init_Split(py::module& m) { - py::class_<Split_Op, std::shared_ptr<Split_Op>, OperatorTensor>(m, "SplitOp", py::multiple_inheritance()) - .def(py::init<DimSize_t, std::int8_t, std::vector<DimSize_t>&>(), - py::arg("nb_outputs"), - py::arg("axis"), - py::arg("split")) - .def_static("get_inputs_name", &Split_Op::getInputsName) - .def_static("get_outputs_name", &Split_Op::getOutputsName) - .def_readonly_static("Type", &Split_Op::Type); + py::class_<Split_Op, std::shared_ptr<Split_Op>, OperatorTensor>(m, "SplitOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Split operator, which splits a tensor along a specified axis. + + :param nb_outputs: The number of outputs to split the input tensor into. Should be a positive integer. + :type nb_outputs: int + :param axis: The axis along which to split the input tensor. Must be in the range [-r, r-1] where r is the number of dimensions in the input tensor. + :type axis: int + :param split: A list of integers specifying how to split the input tensor along the specified axis. + The sum of the values in the list should be equal to the size of the input tensor along the split axis. + :type split: List[int] + )mydelimiter") + .def(py::init<DimSize_t, std::int8_t, std::vector<DimSize_t>&>(), + py::arg("nb_outputs"), + py::arg("axis"), + py::arg("split")) + .def_static("get_inputs_name", &Split_Op::getInputsName) + .def_static("get_outputs_name", &Split_Op::getOutputsName) + .def_readonly_static("Type", &Split_Op::Type); declare_registrable<Split_Op>(m, "SplitOp"); - m.def("Split", &Split, py::arg("nb_outputs"), py::arg("axis") = 0, py::arg("split") = std::vector<DimSize_t>(), py::arg("name") = ""); + m.def("Split", + &Split, + py::arg("nb_outputs"), + py::arg("axis") = 0, + py::arg("split") = std::vector<DimSize_t>(), + py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Split operator that splits a tensor along a specified axis. + + The operator splits the input tensor along the specified axis. The number of splits is defined by `nb_outputs`, and the `split` argument specifies how to divide the input tensor. + The `axis` argument defines the axis along which the split occurs. + + :param nb_outputs: The number of splits (outputs) from the input tensor. Must be a positive integer. + :type nb_outputs: int + :param axis: The axis along which to perform the split. Must be in the range [-r, r-1], where r is the number of dimensions in the input tensor. + :type axis: int + :param split: A list of integers indicating the size of each split along the specified axis. The sum of all values in the list must be equal to the size of the input tensor along the split axis. + :type split: List[int] + :param name: The name of the node (optional). + :type name: str + :return: A node containing the Split operator. + :rtype: :py:class:`SplitOp` + )mydelimiter"); } } // namespace Aidge diff --git a/python_binding/operator/pybind_Sqrt.cpp b/python_binding/operator/pybind_Sqrt.cpp index ba0c5aab0..d383ae0a4 100644 --- a/python_binding/operator/pybind_Sqrt.cpp +++ b/python_binding/operator/pybind_Sqrt.cpp @@ -18,12 +18,30 @@ namespace py = pybind11; namespace Aidge { void init_Sqrt(py::module& m) { - py::class_<Sqrt_Op, std::shared_ptr<Sqrt_Op>, OperatorTensor>(m, "SqrtOp", py::multiple_inheritance()) + py::class_<Sqrt_Op, std::shared_ptr<Sqrt_Op>, OperatorTensor>(m, "SqrtOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Square Root operator. + This operator computes the square root of each element in the input tensor. The input values must be non-negative. + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Sqrt_Op::getInputsName) .def_static("get_outputs_name", &Sqrt_Op::getOutputsName) .def_readonly_static("Type", &Sqrt_Op::Type); + declare_registrable<Sqrt_Op>(m, "SqrtOp"); - m.def("Sqrt", &Sqrt, py::arg("name") = ""); + + m.def("Sqrt", + &Sqrt, + py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Square Root operator that computes the element-wise square root of the input tensor. + The input tensor values must be non-negative for the square root to be computed. + + :param name : The name of the node (optional). + :type name : str + :return : A node containing the Sqrt operator. + :rtype : :py:class:`SqrtOp` + )mydelimiter"); } + } // namespace Aidge diff --git a/python_binding/operator/pybind_Sub.cpp b/python_binding/operator/pybind_Sub.cpp index 52a622f0f..2621e1845 100644 --- a/python_binding/operator/pybind_Sub.cpp +++ b/python_binding/operator/pybind_Sub.cpp @@ -19,12 +19,40 @@ namespace py = pybind11; namespace Aidge { void init_Sub(py::module& m) { - py::class_<Sub_Op, std::shared_ptr<Sub_Op>, OperatorTensor>(m, "SubOp", py::multiple_inheritance()) + py::class_<Sub_Op, std::shared_ptr<Sub_Op>, OperatorTensor>(m, "SubOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Subtraction operator. + This operator performs element-wise subtraction between two input tensors. The operation is defined as: + Output = Input1 - Input2 + The output tensor shape is determined by taking the maximum size along each dimension of the input tensors after broadcasting. + Examples: + Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + + :param name : Name of the node (optional). + :type name : str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Sub_Op::getInputsName) .def_static("get_outputs_name", &Sub_Op::getOutputsName) .def_readonly_static("Type", &Sub_Op::Type); declare_registrable<Sub_Op>(m, "SubOp"); - m.def("Sub", &Sub, py::arg("name") = ""); + m.def("Sub", &Sub, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Subtraction operator that performs element-wise subtraction between two tensors. + The operation is defined as: + Output = Input1 - Input2 + The output tensor shape is determined by taking the maximum size along each dimension of the input tensors after broadcasting. + Examples: + Input A: (3, 4, 2), Input B: (2), Output: (3, 4, 2) + Input A: (1, 5, 3), Input B: (2, 1, 3), Output: (2, 5, 3) + + :param name : Name of the node (optional). + :type name : str + :return: A node containing the Sub operator. + :rtype: :py:class:`SubOp` + )mydelimiter"); } + } // namespace Aidge + diff --git a/python_binding/operator/pybind_Tanh.cpp b/python_binding/operator/pybind_Tanh.cpp index ded15ee78..6c0d026e6 100644 --- a/python_binding/operator/pybind_Tanh.cpp +++ b/python_binding/operator/pybind_Tanh.cpp @@ -19,12 +19,32 @@ namespace py = pybind11; namespace Aidge { void init_Tanh(py::module& m) { - py::class_<Tanh_Op, std::shared_ptr<Tanh_Op>, OperatorTensor>(m, "TanhOp", py::multiple_inheritance()) + py::class_<Tanh_Op, std::shared_ptr<Tanh_Op>, OperatorTensor>(m, "TanhOp", py::multiple_inheritance(), + R"mydelimiter( + Initialize a Tanh operator. + The Tanh (hyperbolic tangent) function is applied element-wise to the input tensor. + It is defined as: + tanh(x) = (exp(x) - exp(-x)) / (exp(x) + exp(-x)) + :param name : name of the node (optional). + :type name : str + )mydelimiter") .def(py::init<>()) .def_static("get_inputs_name", &Tanh_Op::getInputsName) .def_static("get_outputs_name", &Tanh_Op::getOutputsName) .def_readonly_static("Type", &Tanh_Op::Type); - m.def("Tanh", &Tanh, py::arg("name") = ""); + m.def("Tanh", &Tanh, py::arg("name") = "", + R"mydelimiter( + Initialize a node containing a Tanh operator that applies the tanh function element-wise. + + The tanh function is applied element-wise, and the operation is defined as: + tanh(x) = (exp(x) - exp(-x)) / (exp(x) + exp(-x)) + + :param name: Name of the node (optional). + :type name: str + :return: A node containing the Tanh operator. + :rtype: :py:class:`TanhOp` + )mydelimiter"); } + } // namespace Aidge -- GitLab From 252a15bad97c27965db4cd8a626017b9bb12d760 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Thu, 5 Dec 2024 15:52:35 +0100 Subject: [PATCH 130/157] feat: added the expand operator --- include/aidge/operator/Expand.hpp | 119 ++++++++++++++++ python_binding/operator/pybind_Expand.cpp | 73 ++++++++++ python_binding/pybind_core.cpp | 2 + src/operator/Expand.cpp | 108 +++++++++++++++ unit_tests/operator/Test_Expand.cpp | 157 ++++++++++++++++++++++ 5 files changed, 459 insertions(+) create mode 100644 include/aidge/operator/Expand.hpp create mode 100644 python_binding/operator/pybind_Expand.cpp create mode 100644 src/operator/Expand.cpp create mode 100644 unit_tests/operator/Test_Expand.cpp diff --git a/include/aidge/operator/Expand.hpp b/include/aidge/operator/Expand.hpp new file mode 100644 index 000000000..da87cfb56 --- /dev/null +++ b/include/aidge/operator/Expand.hpp @@ -0,0 +1,119 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#ifndef AIDGE_CORE_OPERATOR_EXPAND_H_ +#define AIDGE_CORE_OPERATOR_EXPAND_H_ + +#include <cstdlib> +#include <memory> +#include <string> +#include <vector> + +#include "aidge/graph/Node.hpp" +#include "aidge/operator/Operator.hpp" +#include "aidge/operator/OperatorTensor.hpp" +#include "aidge/utils/Registrar.hpp" +#include "aidge/utils/Types.h" + +namespace Aidge { + +/** + * @brief Operator that broadcasts an input tensor to a larger provided shape. + * @details This operator takes an input tensor and expands (broadcasts) it to + * a target shape while following ONNX broadcasting semantics. Broadcasting + * allows a tensor to be repeated along dimensions to match the desired output + * dimensions. + * + * input#0 : Tensor to be broadcasted + * input#1 : Expand shape + * + * @example + * input#0 = [[[[2, 1, 3]]]] => dims = [1, 1, 3, 1] + * input#1 = [2, 1, 1] => converted to [1,2,1,1] + * output = [[[[2, 1, 3], [2, 1, 3]]]] => dims = [1, 2, 3, 1] + * + * @see https://onnx.ai/onnx/repo-docs/Broadcasting.html for detailed ONNX + * broadcasting rules + */ +class Expand_Op + : public OperatorTensor, + public Registrable< + Expand_Op, + std::string, + std::function<std::shared_ptr<OperatorImpl>(const Expand_Op &)>> { + public: + static const std::string Type; + + /** + * @brief Operator that broadcasts an input tensor to a larger provided + * shape. + * @details This operator takes an input tensor and expands (broadcasts) it + * to a target shape while following ONNX broadcasting semantics. + * Broadcasting allows a tensor to be repeated along dimensions to match + * the desired output dimensions. + * + * input#0 : Tensor to be broadcasted + * input#1 : Expand shape + * + * @example + * input#0 = [[[[2, 1, 3]]]] => dims = [1, 1, 3, 1] + * input#1 = [2, 1, 1] => converted to [1,2,1,1] + * output = [[[[2, 1, 3], [2, 1, 3]]]] => dims = [1, 2, 3, 1] + * + * @see https://onnx.ai/onnx/repo-docs/Broadcasting.html for detailed ONNX + * broadcasting rules + */ + Expand_Op() + : OperatorTensor(Type, + {InputCategory::Data, InputCategory::Param}, + 1) {} + + Expand_Op(const Expand_Op &op); + + std::shared_ptr<Operator> clone() const override; + + bool forwardDims(bool allowDataDependency = false) override final; + + void setBackend(const std::string &name, + DeviceIdx_t device = 0) override final; + std::set<std::string> getAvailableBackends() const override; + + static const std::vector<std::string> getInputsName() { + return {"data", "shape"}; + } + static const std::vector<std::string> getOutputsName() { + return {"output"}; + } +}; + +/** + * @brief Operator that broadcasts an input tensor to a larger provided shape. + * @details This operator takes an input tensor and expands (broadcasts) it to + * a target shape while following ONNX broadcasting semantics. Broadcasting + * allows a tensor to be repeated along dimensions to match the desired output + * dimensions. + * + * input#0 : Tensor to be broadcasted + * input#1 : Expand shape + * + * @example + * input#0 = [[[[2, 1, 3]]]] => dims = [1, 1, 3, 1] + * input#1 = [2, 1, 1] => converted to [1,2,1,1] + * output = [[[[2, 1, 3], [2, 1, 3]]]] => dims = [1, 2, 3, 1] + * + * @see https://onnx.ai/onnx/repo-docs/Broadcasting.html for detailed ONNX + * broadcasting rules + */ +std::shared_ptr<Node> Expand(const std::string &name = ""); + +} // namespace Aidge + +#endif // AIDGE_CORE_OPERATOR_EXPAND_H_ diff --git a/python_binding/operator/pybind_Expand.cpp b/python_binding/operator/pybind_Expand.cpp new file mode 100644 index 000000000..ce8a32329 --- /dev/null +++ b/python_binding/operator/pybind_Expand.cpp @@ -0,0 +1,73 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <pybind11/pybind11.h> + +#include "aidge/operator/Expand.hpp" +#include "aidge/operator/OperatorTensor.hpp" + +namespace py = pybind11; +namespace Aidge { + +const std::string pyClassName("ExpandOp"); +void init_Expand(py::module &m) { + py::class_<Expand_Op, std::shared_ptr<Expand_Op>, OperatorTensor>( + m, + pyClassName.c_str(), + py::multiple_inheritance(), + R"mydelimiter( + Operator that broadcasts an input tensor to a larger provided + shape. + + This operator takes an input tensor and expands (broadcasts) it + to a target shape while following ONNX broadcasting semantics. + Broadcasting allows a tensor to be repeated along dimensions to match + the desired output dimensions. + + input#0 : Tensor to be broadcasted + input#1 : Expand shape + + EXAMPLE: + input#0 = [[[[2, 1, 3]]]] => dims = [1, 1, 3, 1] + input#1 = [2, 1, 1] => converted to [1,2,1,1] + output = [[[[2, 1, 3], [2, 1, 3]]]] => dims = [1, 2, 3, 1] + + SEE: https://onnx.ai/onnx/repo-docs/Broadcasting.html for detailed ONNX + broadcasting rules +)mydelimiter") + .def(py::init<>()) + .def_static("get_inputs_name", &Expand_Op::getInputsName) + .def_static("get_outputs_name", &Expand_Op::getOutputsName) + .def_readonly_static("Type", &Expand_Op::Type); + + declare_registrable<Expand_Op>(m, pyClassName); + + m.def("expand", + &Expand, + py::arg("name") = "", + R"mydelimiter( + Initialize a node containing an expand operator. + This operator will broadcast values given via input#0 to a shape given via input#1's values + If one of the inputs has less dimensions than the other, dimension will be appended 1's to the left. + + Example : + input#0 = [[[[2, 1, 3]]]] => dims = [1, 1, 3, 1] + input#1 = [2, 1, 1] => converted to [1,2,1,1] + output = [[[[2, 1, 3], [2, 1, 3]]]] => dims = [1, 2, 3, 1] + + See https://onnx.ai/onnx/repo-docs/Broadcasting.html for detailed ONNX broadcasting rules + + :param name : name of the node. + :type name : str +)mydelimiter"); +} + +} // namespace Aidge diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index b3b7c64da..1f35373f3 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -50,6 +50,7 @@ void init_ConvDepthWise(py::module&); void init_DepthToSpace(py::module&); void init_Div(py::module&); void init_Erf(py::module&); +void init_Expand(py::module&); void init_FC(py::module&); void init_Gather(py::module&); void init_GenericOperator(py::module&); @@ -147,6 +148,7 @@ void init_Aidge(py::module& m) { init_DepthToSpace(m); init_Div(m); init_Erf(m); + init_Expand(m); init_FC(m); init_Gather(m); init_GenericOperator(m); diff --git a/src/operator/Expand.cpp b/src/operator/Expand.cpp new file mode 100644 index 000000000..969dd6e59 --- /dev/null +++ b/src/operator/Expand.cpp @@ -0,0 +1,108 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include "aidge/operator/Expand.hpp" + +#include <cstdint> +#include <fmt/core.h> + +#include "aidge/data/Data.hpp" +#include "aidge/data/Tensor.hpp" +#include "aidge/utils/Log.hpp" +#include "aidge/utils/Types.h" + +namespace Aidge { + +const std::string Expand_Op::Type = "Expand"; + +Expand_Op::Expand_Op(const Expand_Op &op) : OperatorTensor(op) { + if (op.mImpl) { + SET_IMPL_MACRO(Expand_Op, *this, op.backend()); + } else { + mImpl = nullptr; + } +} + +std::shared_ptr<Aidge::Operator> Expand_Op::clone() const { + return std::make_shared<Expand_Op>(*this); +} + +bool Expand_Op::forwardDims(bool allowDataDependency) { + ///////////////// + // Error checking + if (!inputsAssociated(false)) { + return false; + } + if (!allowDataDependency) { + Log::warn("{}: cannot execute forwardDims() as the output " + "dimensions are computed from some input data.", + type()); + return false; + } + + AIDGE_ASSERT(getInput(1)->nbDims() == 1, + "{}: data input (#0) defines output shape. Must have only 1 " + "dimension.", + type()); + AIDGE_ASSERT(getInput(1)->dataType() == DataType::Int64, + "{}: shape input (#1) Data type must be int64.", + type()); + + const std::vector<std::size_t> &inDataDims = getInput(0)->dims(); + std::vector<DimSize_t> inShape(getInput(1)->size()); + for (DimSize_t i = 0; i < getInput(1)->size(); ++i) { + inShape[i] = getInput(1)->get<std::int64_t>(i); + } + + //////////////////////////////////////// + // Dimension broadcasting + // copy pasted code from Mul forwardDims + std::vector<std::size_t> outDims = + (inDataDims.size() >= inShape.size()) ? inDataDims : inShape; + const std::vector<std::size_t> &lowDims = + (inDataDims.size() < inShape.size()) ? inDataDims : inShape; + + std::size_t outId = outDims.size() - 1; + std::size_t lowId = lowDims.size() - 1; + std::size_t i = 0; + while (i++ < lowDims.size()) { + if (outDims[outId] == 1) { + outDims[outId] = lowDims[lowId]; + } else if ((lowDims[lowId] != 1) && + (lowDims[lowId] != outDims[outId])) { + AIDGE_THROW_OR_ABORT(std::runtime_error, + "{}: Incompatible Tensor shape " + "{} for input#0 vs {} for input#1", + type(), + inDataDims, + inShape); + } + --outId; + --lowId; + } + mOutputs[0]->resize(outDims); + return true; +} + +void Expand_Op::setBackend(const std::string &name, + Aidge::DeviceIdx_t device) { + SET_IMPL_MACRO(Expand_Op, *this, name); + mOutputs[0]->setBackend(name, device); +} + +std::set<std::string> Expand_Op::getAvailableBackends() const { + return Registrar<Expand_Op>::getKeys(); +} + +std::shared_ptr<Aidge::Node> Expand(const std::string &name) { + return std::make_shared<Node>(std::make_shared<Expand_Op>(), name); +} +} // namespace Aidge diff --git a/unit_tests/operator/Test_Expand.cpp b/unit_tests/operator/Test_Expand.cpp new file mode 100644 index 000000000..5758c6dbf --- /dev/null +++ b/unit_tests/operator/Test_Expand.cpp @@ -0,0 +1,157 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <catch2/catch_test_macros.hpp> +#include <catch2/generators/catch_generators_random.hpp> +#include <cstddef> // std::size_t +#include <memory> +#include <random> // std::mt19937, std::uniform_int_distribution +#include <vector> + +#include "aidge/data/Data.hpp" +#include "aidge/data/Tensor.hpp" +#include "aidge/operator/Expand.hpp" +#include "aidge/operator/OperatorTensor.hpp" + +namespace Aidge { +//////////////////////////////////////////////////////////////////////////////////////// +// DISCLAIMER +// Since this is a broadcastable operator, most of the test has been copied +// from Mul +//////////////////////////////////////////////////////////////////////////////////////// + +TEST_CASE("[core/operator] Expand_Op(forwardDims)", "[Expand][forwardDims]") { + constexpr std::uint16_t NBTRIALS = 10; + + // Create a random number generator + auto rd = Catch::Generators::Detail::getSeed; + std::mt19937 gen(rd()); + std::uniform_int_distribution<std::size_t> dimsDist(1, 10); + std::uniform_int_distribution<std::size_t> nbDimsDist(1, 5); + + // Create Mul Operator + std::shared_ptr<Node> expand = Expand("expand_node"); + auto op = std::static_pointer_cast<Expand_Op>(expand->getOperator()); + + // input_0 + std::shared_ptr<Tensor> dataTensor = std::make_shared<Tensor>(); + op->associateInput(0, dataTensor); + // input_1 + std::shared_ptr<Tensor> shapeTensor = std::make_shared<Tensor>(); + op->associateInput(1, shapeTensor); + + shapeTensor->setDataType(DataType::Int64); + shapeTensor->setBackend("cpu"); + + /** + * @todo Special case: scalar not handled yet by + * ``OperatorTensor::forwardDims()`` + */ + SECTION("Scalar / Scalar") { + // input_0 + dataTensor->resize({}); + + // input_1 + shapeTensor->resize({}); + + REQUIRE_THROWS(op->forwardDims(true)); + } + SECTION("Scalar / +1-D") { + // a scalar is compatible with any other Tensor + // input_0 + dataTensor->resize({}); + + for (std::uint16_t trial = 0; trial < NBTRIALS; ++trial) { + // input_1 + const std::size_t nbDims = nbDimsDist(gen); + shapeTensor->resize({nbDims}); + std::vector<std::size_t> expandShape(nbDims); + for (std::size_t i = 0; i < nbDims; ++i) { + expandShape[i] = dimsDist(gen); + } + shapeTensor->getImpl()->setRawPtr(expandShape.data(), + expandShape.size()); + + REQUIRE_NOTHROW(op->forwardDims(true)); + REQUIRE((op->getOutput(0)->dims()) == expandShape); + } + } + SECTION("Failure when shape to expand tensor has not 1 dimension.") { + + // input_0 + const std::size_t nbDims = nbDimsDist(gen); + std::vector<std::size_t> dims(nbDims); + for (std::size_t i = 0; i < nbDims; ++i) { + dims[i] = dimsDist(gen); + } + dataTensor->resize(dims); + + // input_1 + shapeTensor->resize({}); + + REQUIRE_THROWS(op->forwardDims(true)); + } + SECTION("+1-D / +1-D") { + // same size + for (std::uint16_t trial = 0; trial < NBTRIALS; ++trial) { + const std::size_t nbDims = nbDimsDist(gen) + 1; + std::vector<std::size_t> dims0(nbDims); + for (std::size_t i = 0; i < nbDims; ++i) { + dims0[i] = dimsDist(gen) + 1; + } + + dataTensor->resize(dims0); + shapeTensor->resize({dims0.size()}); + shapeTensor->getImpl()->setRawPtr(dims0.data(), dims0.size()); + REQUIRE_NOTHROW(op->forwardDims(true)); + REQUIRE((op->getOutput(0)->dims()) == dims0); + } + + // broadcast + for (std::uint16_t trial = 0; trial < NBTRIALS; ++trial) { + const std::size_t nbDims = nbDimsDist(gen) + 1; + std::vector<std::size_t> dims0(nbDims); + for (std::size_t i = 0; i < nbDims; ++i) { + dims0[i] = dimsDist(gen) + 2; + } + std::vector<std::size_t> dimsOut = dims0; + std::vector<std::size_t> dims1 = dims0; + for (std::size_t i = 0; i < nbDims; ++i) { + if (dimsDist(gen) <= 5) { + dims1[i] = 1; + } + } + dims1.erase( + dims1.cbegin(), + dims1.cbegin() + std::min(nbDimsDist(gen), nbDims - 1)); + + dataTensor->resize(dims0); + shapeTensor->resize({dims1.size()}); + shapeTensor->getImpl()->setRawPtr(dims1.data(), dims1.size()); + + REQUIRE_NOTHROW(op->forwardDims(true)); + REQUIRE((op->getOutput(0)->dims()) == dimsOut); + + // input_0 - wrong + // T1->resize({dims[0] + 1}); + std::vector<std::size_t> dims1Wrong = dims1; + for (std::size_t i = 0; i < dims1.size(); ++i) { + ++dims1Wrong[i]; + } + shapeTensor->resize({dims1Wrong.size()}); + shapeTensor->getImpl()->setRawPtr(dims1Wrong.data(), + dims1Wrong.size()); + REQUIRE(dims0 != dims1Wrong); + REQUIRE_THROWS(op->forwardDims(true)); + } + } +} +} // namespace Aidge -- GitLab From bc93067723671ea71fa0b9ad0fb6f0bb798c7ed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Wed, 4 Dec 2024 11:48:55 +0100 Subject: [PATCH 131/157] feat: [StaticAnalysis] passed all for loops by reference to speed up parsing --- src/graph/StaticAnalysis.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/graph/StaticAnalysis.cpp b/src/graph/StaticAnalysis.cpp index b322450bf..418ae8936 100644 --- a/src/graph/StaticAnalysis.cpp +++ b/src/graph/StaticAnalysis.cpp @@ -65,7 +65,7 @@ void Aidge::StaticAnalysis::summary(bool incProducers) const { std::size_t fwdBwdSize = 0; // Size in bits const auto namePtrTable = mGraph->getRankedNodesName("{0} ({1}#{3})"); - for (const auto& node : mGraph->getOrderedNodes()) { + for (const auto &node : mGraph->getOrderedNodes()) { if (node->type() == Producer_Op::Type && !incProducers) { continue; } @@ -131,7 +131,7 @@ std::size_t Aidge::StaticAnalysis::getNbParams(std::shared_ptr<Node> node) const // Look for internal Producers, in case of meta-op. if (!node->getOperator()->isAtomic()) { const auto microGraph = std::dynamic_pointer_cast<MetaOperator_Op>(node->getOperator())->getMicroGraph(); - for (const auto& internalNode : microGraph->getNodes()) { + for (const auto &internalNode : microGraph->getNodes()) { if (internalNode->type() == Producer_Op::Type) { const auto internalOpTensor = std::dynamic_pointer_cast<OperatorTensor>(internalNode->getOperator()); nbParams += internalOpTensor->getOutput(0)->size(); @@ -162,7 +162,7 @@ std::size_t Aidge::StaticAnalysis::getParamsSize(std::shared_ptr<Node> node) con // Look for internal Producers, in case of meta-op. if (!node->getOperator()->isAtomic()) { const auto microGraph = std::dynamic_pointer_cast<MetaOperator_Op>(node->getOperator())->getMicroGraph(); - for (const auto& internalNode : microGraph->getNodes()) { + for (const auto &internalNode : microGraph->getNodes()) { if (internalNode->type() == Producer_Op::Type) { const auto internalOpTensor = std::dynamic_pointer_cast<OperatorTensor>(internalNode->getOperator()); paramsSize += internalOpTensor->getOutput(0)->size() @@ -210,4 +210,4 @@ std::size_t Aidge::MetaOpStats::getNbLogicOps() const { return StaticAnalysis(dy std::size_t Aidge::MetaOpStats::getNbCompOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbCompOps(); } std::size_t Aidge::MetaOpStats::getNbNLOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbNLOps(); } std::size_t Aidge::MetaOpStats::getNbArithmIntOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbArithmIntOps(); } -std::size_t Aidge::MetaOpStats::getNbMACOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbMACOps(); } \ No newline at end of file +std::size_t Aidge::MetaOpStats::getNbMACOps() const { return StaticAnalysis(dynamic_cast<const MetaOperator_Op&>(mOp).getMicroGraph()).getNbMACOps(); } -- GitLab From 0fb207318df13b2d7c26571d285714c25503a2c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Tue, 21 Jan 2025 15:10:42 +0100 Subject: [PATCH 132/157] chore : pybind_split header cleanup --- python_binding/operator/pybind_Split.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/python_binding/operator/pybind_Split.cpp b/python_binding/operator/pybind_Split.cpp index c6e220e4e..f02a699e4 100644 --- a/python_binding/operator/pybind_Split.cpp +++ b/python_binding/operator/pybind_Split.cpp @@ -10,12 +10,9 @@ ********************************************************************************/ #include <pybind11/pybind11.h> -#include <string> #include <vector> -#include "aidge/data/Tensor.hpp" #include "aidge/operator/Split.hpp" -#include "aidge/operator/OperatorTensor.hpp" namespace py = pybind11; namespace Aidge { -- GitLab From a5db0d109019f330d4be81d915acfeb58757f8de Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Wed, 22 Jan 2025 12:54:32 +0000 Subject: [PATCH 133/157] Remove unused include in 'ErrorHandling.hpp' --- include/aidge/utils/ErrorHandling.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/aidge/utils/ErrorHandling.hpp b/include/aidge/utils/ErrorHandling.hpp index f6a9aefe2..ddbe95557 100644 --- a/include/aidge/utils/ErrorHandling.hpp +++ b/include/aidge/utils/ErrorHandling.hpp @@ -13,7 +13,6 @@ #ifndef AIDGE_ERRORHANDLING_H_ #define AIDGE_ERRORHANDLING_H_ -#include <memory> #include <cassert> #include <fmt/format.h> -- GitLab From 8370608518aa0a56f11f64519888c74c28a69b32 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 23 Jan 2025 02:28:56 +0000 Subject: [PATCH 134/157] Enhance: logging format with constant width and default log level to Notice or Debug (compilation mode dependent) - add a helper function to wrap text to a specified width, respecting explicit line breaks (\n) and accounting for ANSI escape sequences. - set default logging level to Log::Level::Notice in RELEASE compilation mode and Log::Level::Debug in DEBUG compilation mode --- src/utils/Log.cpp | 132 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 112 insertions(+), 20 deletions(-) diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index fb567e355..b2aad14c9 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -21,18 +21,25 @@ namespace Aidge { /** - * @brief Initialize console level from environment or default to Info + * @brief Initialize console log level from environment. If compile mode is + * DEBUG, then the default level is Log::Level::Debug, else it is + * Log::Level::Notice. */ Log::Level Log::mConsoleLevel = []() { +#ifdef NDEBUG + constexpr Level defaultLevel = Level::Debug; +#else + constexpr Log::Level defaultLevel = Level::Notice; +#endif if (const char* level = std::getenv("AIDGE_LOGLEVEL_CONSOLE")) { return level[0] == 'D' ? Debug : level[0] == 'I' ? Info : level[0] == 'N' ? Notice : level[0] == 'W' ? Warn : level[0] == 'E' ? Error : - level[0] == 'F' ? Fatal : Info; + level[0] == 'F' ? Fatal : defaultLevel; } - return Info; + return defaultLevel; }(); /** @@ -46,18 +53,24 @@ bool Log::mConsoleColor = []() { }(); /** - * @brief Initialize file level from environment or default to Debug + * @brief Initialize file log level from environment. If compile mode is DEBUG, + * then the default level is Log::Level::Debug, else it is Log::Level::Notice. */ Log::Level Log::mFileLevel = []() { +#ifdef NDEBUG + constexpr Level defaultLevel = Level::Debug; +#else + constexpr Log::Level defaultLevel = Level::Notice; +#endif if (const char* level = std::getenv("AIDGE_LOGLEVEL_FILE")) { return level[0] == 'D' ? Debug : level[0] == 'I' ? Info : level[0] == 'N' ? Notice : level[0] == 'W' ? Warn : level[0] == 'E' ? Error : - level[0] == 'F' ? Fatal : Debug; + level[0] == 'F' ? Fatal : defaultLevel; } - return Debug; + return defaultLevel; }(); /** @@ -79,8 +92,65 @@ int Log::mFloatingPointPrecision = 5; */ void Log::log(Level level, const std::string& msg) { /** - * @brief Get the terminal color for a log level + * @brief Helper function to wrap text to a specified width, respecting + * explicit line breaks (\n) and accounting for ANSI escape sequences. */ + const auto wrapText = [](const std::string& text, const std::size_t width) -> std::vector<std::string> { + std::vector<std::string> wrappedLines; + std::size_t start = 0; + + while (start < text.size()) { + std::size_t lineWidth = 0; + std::size_t current = start; + + while (current < text.size() && lineWidth < width) { + if (text[current] == '\033') { + // Found ANSI escape sequence, skip until 'm' + std::size_t ansiEnd = text.find('m', current); + if (ansiEnd != std::string::npos) { + // Add the length of the ANSI sequence to the width allowance + // width += (ansiEnd - current + 1); + current = ansiEnd + 1; + } else { + // Malformed sequence, treat as normal characters + ++current; + } + } else if (text[current] == '\n') { + // Handle explicit line break + break; + } else { + // Normal character, increase line width + ++lineWidth; + ++current; + } + } + + // Find the end of the current line + std::size_t lineEnd = current; + + // Adjust for spaces if needed + if (lineEnd < text.size() && text[lineEnd] != '\n') { + std::size_t lastSpace = text.rfind(' ', lineEnd); + if (lastSpace != std::string::npos && lastSpace > start) { + lineEnd = lastSpace; + } + } + + // Add the wrapped line to the result + wrappedLines.push_back(text.substr(start, lineEnd - start)); + + // Move to the next segment, skipping spaces + start = lineEnd; + while (start < text.size() && (text[start] == ' ' || text[start] == '\n')) { + ++start; + } + } + + return wrappedLines; + }; + + + // Get the terminal color for the log level const auto getColor = [](Level lvl) { switch (lvl) { case Debug: return fmt::terminal_color::green; @@ -93,24 +163,36 @@ void Log::log(Level level, const std::string& msg) { } }; - /** - * @brief Get the string representation of a log level - */ + // Get the string representation of the log level const auto levelStr = EnumStrings<Level>::data[static_cast<std::size_t>(level)]; + const std::size_t levelIndentSizes[6] = {10, 9, 11, 12, 10, 10}; + const std::size_t width = 80 - levelIndentSizes[static_cast<std::size_t>(level)]; if (level >= mConsoleLevel) { - // Print active contexts for (const auto& context : mContext) { fmt::println("Context: {}", context); } - // Print message with colored level - if (mConsoleColor) { - fmt::print("["); - fmt::print(fg(getColor(level)), "{}", levelStr); - fmt::print("] - {}\n", msg); - } else { - fmt::print("[{}] - {}\n", levelStr, msg); + // Wrap the message and print each line + auto wrappedLines = wrapText(msg, width); + for (std::size_t i = 0; i < wrappedLines.size(); ++i) { + if (mConsoleColor) { + if (i == 0) { + fmt::print("["); + fmt::print(fg(getColor(level)), "{}", levelStr); + fmt::print("] - {}\n", wrappedLines[i]); + } else { + fmt::print("["); + fmt::print(fg(getColor(level)), "{}", levelStr); + fmt::print("] {}\n", wrappedLines[i]); + } + } else { + if (i == 0) { + fmt::print("[{}] - {}\n", levelStr, wrappedLines[i]); + } else { + fmt::print("[{}] {}\n", levelStr, wrappedLines[i]); + } + } } } @@ -118,14 +200,24 @@ void Log::log(Level level, const std::string& msg) { if (!mFile) { initFile(mFileName); } - // Write contexts and message to file + for (const auto& context : mContext) { fmt::println(mFile.get(), "Context: {}", context); } - fmt::println(mFile.get(), "{}: {}", levelStr, msg); + + auto wrappedLines = wrapText(msg, width); + for (std::size_t i = 0; i < wrappedLines.size(); ++i) { + if (i == 0) { + fmt::println(mFile.get(), "{}: {}", levelStr, wrappedLines[i]); + } else { + fmt::println(mFile.get(), "{} {}", levelStr, wrappedLines[i]); + } + } } } + + /** * @brief Initialize or re-initialize the log file * @param fileName Path to the log file -- GitLab From af4985ff6ff20b815d16283f69d44c47e47deaa3 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 23 Jan 2025 02:34:14 +0000 Subject: [PATCH 135/157] Remove unused set log level command in 'Test_Squeeze_Op.cpp' --- unit_tests/operator/Test_Squeeze_Op.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/unit_tests/operator/Test_Squeeze_Op.cpp b/unit_tests/operator/Test_Squeeze_Op.cpp index f1261fffb..41822742c 100644 --- a/unit_tests/operator/Test_Squeeze_Op.cpp +++ b/unit_tests/operator/Test_Squeeze_Op.cpp @@ -36,7 +36,6 @@ namespace Aidge { TEST_CASE("[core/operator] Squeeze(forwardDims)", "[Squeeze][forwardDims]") { - Log::setConsoleLevel(Log::Notice); constexpr std::uint16_t NB_TRIALS = 10; // Create a random number generator auto random_seed = Catch::Generators::Detail::getSeed; @@ -312,7 +311,6 @@ TEST_CASE("[core/operator] Squeeze(forwardDims)", "[Squeeze][forwardDims]") { } TEST_CASE("[core/operator] Squeeze(forward)", "[Squeeze][forward]") { - Log::setConsoleLevel(Log::Notice); constexpr std::uint16_t NB_TRIALS = 10; // Create a random number generator auto random_seed = Catch::Generators::Detail::getSeed; @@ -335,7 +333,6 @@ TEST_CASE("[core/operator] Squeeze(forward)", "[Squeeze][forward]") { std::chrono::time_point<std::chrono::system_clock> end; std::chrono::duration<double, std::micro> duration{}; - Log::setConsoleLevel(Log::Notice); int number_of_operation{0}; for (uint16_t trial = 0; trial < NB_TRIALS; ++trial) { // Create the Operator -- GitLab From c2ff03e398bad5d08d353377a8f9f04d1ded4b5c Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 23 Jan 2025 02:36:19 +0000 Subject: [PATCH 136/157] UPD: documentation for 'GraphView::forwardDims()' in CPP and Python --- include/aidge/graph/GraphView.hpp | 52 ++++++++++++++++--- python_binding/graph/pybind_GraphView.cpp | 61 ++++++++++++++++++++++- 2 files changed, 105 insertions(+), 8 deletions(-) diff --git a/include/aidge/graph/GraphView.hpp b/include/aidge/graph/GraphView.hpp index e122aa446..8a78d8bfc 100644 --- a/include/aidge/graph/GraphView.hpp +++ b/include/aidge/graph/GraphView.hpp @@ -247,13 +247,51 @@ public: const std::vector<std::vector<DimSize_t>> dims = {}); /** - * @brief Compute dimensions of input/output Tensors for each Operator of the - * GraphView object's Nodes, by calling Node::forwardDims(). - * This function verifies the following conditions: - * - Every node will forwardDims() regardless of if dims were previously forwarded or not; - * - forwadDims() calls are made in node dependencies order, because if dims have changed - * at any point in the graph, it must de propagated correctly to all succeeding nodes; - * - It handles cyclic dependencies correctly (currently only induced by the Memorize_Op). + * @brief Compute and propagate Tensor dimensions through the GraphView. + * + * This function computes dimensions of input/output Tensors for each of the + * Node's associated Operator in the GraphView by propagating dimensions from + * inputs through the entire network. + * It handles: + * - Dimension propagation in dependency order + * - Cyclic dependencies (specifically for Memorize_Op) + * - Input dimension validation and setting + * - Optional vs mandatory inputs + * + * @note Dimensions will be propagated through every Node regardless of if + * dims were previously forwarded or not; + * @details The algorithm works in several phases: + * 1. Input Dimension Setup: + * - Validates/sets provided input dimensions + * - Checks compatibility with existing tensors + * + * 2. Connection Verification: + * - Ensures all node connections are valid + * - Verifies mandatory inputs are present + * + * 3. Dimension Propagation: + * - Propagates dimensions through the graph in topological order + * - Detects and handles circular dependencies induced by Memorize_Op + * + * Example: + * @code + * auto graph = std::make_shared<GraphView>(); + * // ... build graph ... + * + * // Forward with default empty dimensions + * bool success = graph->forwardDims(); + * + * // Forward with specific input dimensions + * std::vector<std::vector<DimSize_t>> inputDims = { + * {1, 3, 224, 224}, // First input + * {1, 64, 112, 112} // Second input + * }; + * success = graph->forwardDims(inputDims); + * @endcode + * + * @param dims Vector of dimension vectors for graph inputs. Empty by default. + * @param allowDataDependency Whether to allow data-dependent dimension computation. False by default. + * @return true if dimension propagation succeeded, false otherwise. */ bool forwardDims(const std::vector<std::vector<DimSize_t>>& dims = {}, bool allowDataDependency = false); diff --git a/python_binding/graph/pybind_GraphView.cpp b/python_binding/graph/pybind_GraphView.cpp index 4a044f575..d1eec2907 100644 --- a/python_binding/graph/pybind_GraphView.cpp +++ b/python_binding/graph/pybind_GraphView.cpp @@ -127,7 +127,66 @@ void init_GraphView(py::module& m) { .def("clone", &GraphView::clone) .def("get_nodes", &GraphView::getNodes) .def("get_node", &GraphView::getNode, py::arg("node_name")) - .def("forward_dims", &GraphView::forwardDims, py::arg("dims")=std::vector<std::vector<DimSize_t>>(), py::arg("allow_data_dependency") = false) + .def("forward_dims", &GraphView::forwardDims, py::arg("dims")=std::vector<std::vector<DimSize_t>>(), py::arg("allow_data_dependency") = false, + R"mydelimiter( + Compute and propagate Tensor dimensions through the GraphView. + + This function computes dimensions of input/output Tensors for each of the + Node's associated Operator in the GraphView by propagating dimensions from + inputs through the entire network. + It handles: + + * Dimension propagation in dependency order + * Cyclic dependencies (specifically for Memorize_Op) + * Input dimension validation and setting + * Optional vs mandatory inputs + + Note + ---- + Dimensions will be propagated through every Node regardless of if + dims were previously forwarded or not. + + The algorithm works in several phases: + + 1. Input Dimension Setup: + * Validates/sets provided input dimensions + * Checks compatibility with existing tensors + + 2. Connection Verification: + * Ensures all node connections are valid + * Verifies mandatory inputs are present + + 3. Dimension Propagation: + * Propagates dimensions through the graph in topological order + * Detects and handles circular dependencies induced by Memorize_Op + + Parameters + ---------- + dims : List[List[int]], optional + Vector of dimension vectors for graph inputs. Empty by default. + allow_data_dependency : bool, optional + Whether to allow data-dependent dimension computation, by default False + + Returns + ------- + bool + True if dimension propagation succeeded, False otherwise. + + Examples + -------- + >>> graph = GraphView() + >>> # ... build graph ... + >>> + >>> # Forward with default empty dimensions + >>> success = graph.forward_dims() + >>> + >>> # Forward with specific input dimensions + >>> input_dims = [ + ... [1, 3, 224, 224], # First input + ... [1, 64, 112, 112] # Second input + ... ] + >>> success = graph.forward_dims(input_dims) + )mydelimiter") .def("compile", &GraphView::compile, py::arg("backend"), py::arg("datatype"), py::arg("device") = 0, py::arg("dims")=std::vector<std::vector<DimSize_t>>()) .def("__call__", &GraphView::operator(), py::arg("connectors")) .def("set_datatype", &GraphView::setDataType, py::arg("datatype")) -- GitLab From 8fd73a76f72cf06d33630d06a3378d594bd20db9 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 23 Jan 2025 02:38:17 +0000 Subject: [PATCH 137/157] Change assertions for Log::error print in 'approxEq' as they are not fatal issues --- include/aidge/utils/TensorUtils.hpp | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/include/aidge/utils/TensorUtils.hpp b/include/aidge/utils/TensorUtils.hpp index 3565e1195..5ba1f8ae5 100644 --- a/include/aidge/utils/TensorUtils.hpp +++ b/include/aidge/utils/TensorUtils.hpp @@ -42,16 +42,26 @@ namespace Aidge { template <typename T1, typename T2 = T1> bool approxEq(const Tensor& t1, const Tensor& t2, float relative = 1e-5f, float absolute = 1e-8f) { // Check template type matches tensor datatype - AIDGE_ASSERT(t1.dataType() == NativeType_v<T1>, - "First tensor datatype ({}) does not match template type", t1.dataType()); - AIDGE_ASSERT(t2.dataType() == NativeType_v<T2>, - "Second tensor datatype ({}) does not match template type", t2.dataType()); + if (t1.dataType() != NativeType_v<T1>) { + Log::error("First tensor datatype ({}) does not match template type", t1.dataType()); + return false; + } + + if (t2.dataType() != NativeType_v<T2>) { + Log::error("Second tensor datatype ({}) does not match template type", t2.dataType()); + return false; + } // Validate parameters - AIDGE_ASSERT(relative >= 0.0f, - "Relative error must be non-negative (got {})", relative); - AIDGE_ASSERT(absolute >= 0.0f && absolute <= 1.0f, - "Absolute error must be between 0 and 1 (got {})", absolute); + if (relative < 0.0f) { + Log::error("Relative error must be non-negative (got {})", relative); + return false; + } + + if (absolute < 0.0f || absolute > 1.0f) { + Log::error("Absolute error must be between 0 and 1 (got {})", absolute); + return false; + } // Check tensor sizes match if (t1.size() != t2.size()) { @@ -59,7 +69,7 @@ bool approxEq(const Tensor& t1, const Tensor& t2, float relative = 1e-5f, float return false; } - // Compare values + // Compare values/ for (size_t i = 0; i < t1.size(); ++i) { const auto val1 = t1.get<T1>(i); const auto val2 = t2.get<T2>(i); -- GitLab From 9456f23fd5ed82f89ac7de5b6b8204c2d264f6da Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 23 Jan 2025 17:30:08 +0000 Subject: [PATCH 138/157] fix NDEBUG precompilation condition in log --- include/aidge/utils/Log.hpp | 10 +++++----- src/utils/Log.cpp | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index ca16018db..394d65906 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -108,15 +108,15 @@ public: * @param args Format string and arguments for the message * @note Debug messages are only compiled in debug builds */ -#ifdef NDEBUG +#ifndef NDEBUG template <typename... Args> - static void debug(Args&&... /*args*/) { - // Debug logging disabled in release builds + static void debug(Args&&... args) { + log(Debug, fmt::format(std::forward<Args>(args)...)); } #else template <typename... Args> - static void debug(Args&&... args) { - log(Debug, fmt::format(std::forward<Args>(args)...)); + static void debug(Args&&... /*args*/) { + // Debug logging disabled in release builds } #endif diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index b2aad14c9..45f03a7ae 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -26,7 +26,7 @@ namespace Aidge { * Log::Level::Notice. */ Log::Level Log::mConsoleLevel = []() { -#ifdef NDEBUG +#ifndef NDEBUG constexpr Level defaultLevel = Level::Debug; #else constexpr Log::Level defaultLevel = Level::Notice; @@ -57,7 +57,7 @@ bool Log::mConsoleColor = []() { * then the default level is Log::Level::Debug, else it is Log::Level::Notice. */ Log::Level Log::mFileLevel = []() { -#ifdef NDEBUG +#ifndef NDEBUG constexpr Level defaultLevel = Level::Debug; #else constexpr Log::Level defaultLevel = Level::Notice; -- GitLab From 16afb2d426a443531aabad6ee7ef31e7c94307f7 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 23 Jan 2025 22:13:20 +0000 Subject: [PATCH 139/157] UPD: some includes and log --- include/aidge/scheduler/ProdConso.hpp | 1 + src/graph/GraphView.cpp | 61 +++++++++++++++++---------- src/graph/Matching.cpp | 3 +- src/recipes/FuseBatchNorm.cpp | 2 +- src/scheduler/ProdConso.cpp | 12 ++++-- 5 files changed, 51 insertions(+), 28 deletions(-) diff --git a/include/aidge/scheduler/ProdConso.hpp b/include/aidge/scheduler/ProdConso.hpp index cfc83cbf9..f30e00afa 100644 --- a/include/aidge/scheduler/ProdConso.hpp +++ b/include/aidge/scheduler/ProdConso.hpp @@ -12,6 +12,7 @@ #ifndef AIDGE_SCHEDULER_PRODCONSO_H_ #define AIDGE_SCHEDULER_PRODCONSO_H_ +#include <memory> #include <string> #include <vector> diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp index f7390facd..6220f5558 100644 --- a/src/graph/GraphView.cpp +++ b/src/graph/GraphView.cpp @@ -438,23 +438,32 @@ void Aidge::GraphView::compile(const std::string& backend, const Aidge::DataType } bool Aidge::GraphView::forwardDims(const std::vector<std::vector<Aidge::DimSize_t>>& dims, bool allowDataDependency) { + Log::debug("Starting dimension forward propagation for GraphView"); // remove current Data connections and use dummy inputs to propagate dimensions // setInputs // Link every tensor to the right pointer // following parent - children information if (!dims.empty()){ - Log::debug("forwardDims(): setting graph input dims ({} dims provided).", dims.size()); + auto msg = fmt::format("Manually setting GraphView input dims with provided parameters:"); + for (std::size_t i = 0; i< dims.size(); ++i) + msg = fmt::format("{}\n\t* input#{} {}", msg, i, dims[i]); + Log::info("{}", msg); + Log::debug("Validating input dimensions against existing graph inputs"); std::size_t i = 0; for (auto& input : mInputNodes) { const auto& currentTensorPtr = std::dynamic_pointer_cast<OperatorTensor>(input.first->getOperator())->getInput(input.second); if (i < dims.size() && !dims[i].empty()) { if (currentTensorPtr) { // tensor detected - AIDGE_ASSERT(currentTensorPtr->dims() == dims[i], - "forwardDims(): mismatch between existing and provided size for graph input#{} (existing size: {}, provided size: {})", - i, currentTensorPtr->dims(), dims[i]) + if (currentTensorPtr->dims() != dims[i]) { + Log::error("Dimension mismatch for input#{} - Expected: {}, Provided: {}", + i, currentTensorPtr->dims(), dims[i]); + return false; + } + Log::debug("Input#{} dimensions match existing tensor", i); } else { + Log::debug("Creating new tensor for input#{} with dims {}", i, dims[i]); auto tensor = std::make_shared<Tensor>(dims[i]); input.first->getOperator()->setInput(input.second, tensor); } @@ -464,12 +473,12 @@ bool Aidge::GraphView::forwardDims(const std::vector<std::vector<Aidge::DimSize_ || input.first->inputCategory(input.second) == InputCategory::OptionalParam); if (currentTensorPtr) { - Log::debug("forwardDims(): existing dims are {} for graph input#{} for input#{} of node {} (of type {})", - i, input.second, input.first->name(), input.first->type(), currentTensorPtr->dims()); + Log::debug("Using existing dimensions {} for graph input#{} (matching input#{} of node [\033[1m\033[3m{}\033[0m] - [\033[1m\033[3m{}\033[0m])", + currentTensorPtr->dims(), i, input.second, input.first->name(), input.first->type()); } else if (!optional) { - Log::warn("forwardDims(): did not specify dims for mandatory graph input#{} for input#{} of node {} (of type {})", - i, input.second, input.first->name(), input.first->type()); + Log::warn("Missing dimensions for mandatory graph input#{} (matching input#{} of node [\033[1m\033[3m{}\033[0m] - [\033[1m\033[3m{}\033[0m])", + i, input.second, input.first->name(), input.first->type()); } } ++i; @@ -477,29 +486,35 @@ bool Aidge::GraphView::forwardDims(const std::vector<std::vector<Aidge::DimSize_ } // Ensure every node in the graph is correctly connected + Log::debug("Verifying graph connections and tensor validity"); for (std::shared_ptr<Node> nodePtr : getNodes()) { for (IOIndex_t i = 0; i < nodePtr->nbInputs(); ++i) { std::pair<std::shared_ptr<Node>, IOIndex_t> inputI = nodePtr->input(i); if (inputI.first) { - // Check that associated Data are properly connected... - AIDGE_ASSERT(nodePtr->getOperator()->getRawInput(i) == inputI.first->getOperator()->getRawOutput(inputI.second), - "Input#{} for node {} ({}) is not properly connected to output#{} of node {} ({}): Data or Tensor mismatch!", - i, nodePtr->name(), nodePtr->type(), inputI.second, inputI.first->name(), inputI.first->type()); - } else if (nodePtr->inputCategory(i) != InputCategory::OptionalData && nodePtr->inputCategory(i) != InputCategory::OptionalParam) { - // Input is missing - AIDGE_ASSERT(nodePtr->getOperator()->getRawInput(i), - "Missing input#{} for node {} ({})", i, nodePtr->name(), nodePtr->type()); - AIDGE_ASSERT(!std::static_pointer_cast<Tensor>(nodePtr->getOperator()->getRawInput(i))->undefined(), - "Undefined input#{} for node {} ({})", i, nodePtr->name(), nodePtr->type()); + if (nodePtr->getOperator()->getRawInput(i) != inputI.first->getOperator()->getRawOutput(inputI.second)) { + Log::error("Connection mismatch: Input#{} of node [\033[1m\033[3m{}\033[0m (\033[1m\033[3m{}\033[0m)] -> Output#{} of node [\033[1m\033[3m{}\033[0m - (\033[1m\033[3m{}\033[0m)]", + i, nodePtr->name(), nodePtr->type(), inputI.second, inputI.first->name(), inputI.first->type()); + return false; + } + } else if (nodePtr->inputCategory(i) != InputCategory::OptionalData && + nodePtr->inputCategory(i) != InputCategory::OptionalParam) { + if (!nodePtr->getOperator()->getRawInput(i)) { + Log::error("Missing mandatory input#{} for node [\033[1m\033[3m{}\033[0m - (\033[1m\033[3m{}\033[0m)]", + i, nodePtr->name(), nodePtr->type()); + return false; + } + if (std::static_pointer_cast<Tensor>(nodePtr->getOperator()->getRawInput(i))->undefined()) { + Log::error("Undefined mandatory input#{} for node [\033[1m\033[3m{}\033[0m - (\033[1m\033[3m{}\033[0m)]", + i, nodePtr->name(), nodePtr->type()); + return false; + } } - } } - // List of nodes that are already dims forwarded - std::set<std::shared_ptr<Node>> dimsForwarded; - // Establish initial list of dims forwardable nodes: - // input nodes and childs from Producers + Log::debug("Initializing dimension propagation"); + // Establish initial list of dims forwardable nodes: graph input node + Producers childs + std::set<std::shared_ptr<Node>> dimsForwarded; ///< List of nodes that are already dims forwarded std::set<std::shared_ptr<Node>> listNodes = inputNodes(); for (const auto& nodePtr : getNodes()) { if (nodePtr->type() == Producer_Op::Type) { diff --git a/src/graph/Matching.cpp b/src/graph/Matching.cpp index cc1330828..282ed2020 100644 --- a/src/graph/Matching.cpp +++ b/src/graph/Matching.cpp @@ -24,6 +24,7 @@ #include "aidge/graph/GraphView.hpp" #include "aidge/graph/Node.hpp" +#include "aidge/utils/Log.hpp" static void removeLeadingWhitespace(std::string& str) { str.erase(str.begin(), @@ -84,7 +85,7 @@ std::set<Aidge::SinglePassGraphMatching::MatchingResult> Aidge::SinglePassGraphM if (disjoint) { matches = filterLonguestDisjoint(matches); } - + Log::info("Graph matching complete.\nFound {} matches for the query", matches.size()); return matches; } diff --git a/src/recipes/FuseBatchNorm.cpp b/src/recipes/FuseBatchNorm.cpp index 55be9636f..0fd9d7b44 100644 --- a/src/recipes/FuseBatchNorm.cpp +++ b/src/recipes/FuseBatchNorm.cpp @@ -193,8 +193,8 @@ void Aidge::fuseBatchNorm(std::shared_ptr<Aidge::GraphView> graphView) { auto matches = SinglePassGraphMatching(graphView).match("(Conv2D|ConvDepthWise2D|PaddedConv2D|PaddedConvDepthWise2D)->BatchNorm2D"); for (auto match : matches) { - fmt::println("Match !"); auto rootNode = match.graph->rootNode(); fuseBatchNorm(rootNode, *rootNode->getChildren().begin()); } + Log::info("[\033[1m\033[3mFuseBatchNorm\033[0m recipe completed."); } diff --git a/src/scheduler/ProdConso.cpp b/src/scheduler/ProdConso.cpp index a3bff53c3..0e20796fe 100644 --- a/src/scheduler/ProdConso.cpp +++ b/src/scheduler/ProdConso.cpp @@ -9,13 +9,19 @@ * ********************************************************************************/ -#include <cassert> -#include <string> - #include "aidge/scheduler/ProdConso.hpp" + +#include <algorithm> // std::fill +#include <cstddef> // std::size_t +#include <memory> +#include <vector> + +#include "aidge/data/Elts.hpp" #include "aidge/operator/Operator.hpp" +#include "aidge/data/Data.hpp" #include "aidge/data/Tensor.hpp" #include "aidge/utils/ErrorHandling.hpp" +#include "aidge/utils/Types.h" Aidge::ProdConso::ProdConso(const Operator& op, bool inPlace): mOp(op), -- GitLab From 79f8c4d4d4bae66c739e86785a66035f22dee888 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 24 Jan 2025 13:09:21 +0000 Subject: [PATCH 140/157] Add minimal version for FMT --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e09a0eab..fba297997 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,7 +51,9 @@ endif() ############################################## # Find system dependencies -find_package(fmt QUIET) +set(FMT_MIN_VERSION 10.2.1) + +find_package(fmt ${FMT_MIN_VERSION} QUIET) if(NOT fmt_FOUND) message(STATUS "fmt not found in system, retrieving from git") -- GitLab From 1cb22319ad8271ac630e6d8a40bfabd269c6b394 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 24 Jan 2025 13:10:35 +0000 Subject: [PATCH 141/157] Remove unused variables in 'GraphView.cpp' and 'Leaky.cpp' --- src/graph/GraphView.cpp | 2 -- src/operator/MetaOperatorDefs/Leaky.cpp | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp index 6220f5558..66665dfcb 100644 --- a/src/graph/GraphView.cpp +++ b/src/graph/GraphView.cpp @@ -335,7 +335,6 @@ void Aidge::GraphView::setOrderedInputs(const std::vector<std::pair<NodePtr, IOI void Aidge::GraphView::setOrderedOutputs(const std::vector<std::pair<NodePtr, IOIndex_t>>& outputs) { // Note: one can specify any node as graph output! - size_t nbOutputs = 0; std::vector<std::pair<NodePtr, IOIndex_t>> ignoredOutputs(mOutputNodes); for (auto output : outputs) { // Allow to specify dummy outputs (nullptr), but this will only be reflected @@ -346,7 +345,6 @@ void Aidge::GraphView::setOrderedOutputs(const std::vector<std::pair<NodePtr, IO if (it != ignoredOutputs.end()) { ignoredOutputs.erase(it); } - ++nbOutputs; } } diff --git a/src/operator/MetaOperatorDefs/Leaky.cpp b/src/operator/MetaOperatorDefs/Leaky.cpp index 33b253532..c5e8ab3f1 100644 --- a/src/operator/MetaOperatorDefs/Leaky.cpp +++ b/src/operator/MetaOperatorDefs/Leaky.cpp @@ -11,7 +11,7 @@ namespace Aidge { constexpr auto memorizeOpDataOutputRecIndex = 1; -constexpr auto memorizeOpDataOutputIndex = 0; +/* constexpr auto memorizeOpDataOutputIndex = 0; */ // unused variable std::shared_ptr<Node> Leaky(const int nbTimeSteps, const float beta, -- GitLab From e6fce14cfc76b8ba3d0037c851c5e1d6e146dae1 Mon Sep 17 00:00:00 2001 From: Axel Farrugia <axel.farrugia@cea.fr> Date: Thu, 16 Jan 2025 11:59:04 +0100 Subject: [PATCH 142/157] [Fix](Exports) Wrong condition for inputs when generating the forward --- aidge_core/export_utils/scheduler_export.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/aidge_core/export_utils/scheduler_export.py b/aidge_core/export_utils/scheduler_export.py index 90862578f..8a849d3cc 100644 --- a/aidge_core/export_utils/scheduler_export.py +++ b/aidge_core/export_utils/scheduler_export.py @@ -109,15 +109,17 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib = is_output:bool = node in graphview.get_output_nodes() if is_input: + flag_not_input = True # GraphView.get_inputs_nodes() returns the nodes that have an Input set to None or not in the graph # However, some inputs are Optional and thus the node may not be an input of the graph! - # So we need to check that all the inputs of the nodes or in the graph or not optional + # So we need to check that at least one input of the nodes is not in the graph and not optional # This is what the following code block is checking. for idx, node_in in enumerate(node.inputs()): optional:bool = node.get_operator().input_category(idx) == aidge_core.InputCategory.OptionalData # Note: node_in is a Tuple(Node, out_idx) in_graph:bool = node_in[0] in graphview.get_nodes() - is_input &= (in_graph or not optional) + flag_not_input &= (in_graph or optional) + is_input = not flag_not_input # Get operator current specs required_specs = op_impl.get_required_spec() -- GitLab From 8e58898ea5f5433cf3bd7ce40b6ca7fd7c433a70 Mon Sep 17 00:00:00 2001 From: Axel Farrugia <axel.farrugia@cea.fr> Date: Fri, 17 Jan 2025 13:46:19 +0100 Subject: [PATCH 143/157] [Fix](Exports) Wrong condition to identify optional inputs --- aidge_core/export_utils/scheduler_export.py | 5 +++-- include/aidge/operator/Operator.hpp | 4 ++++ python_binding/operator/pybind_Operator.cpp | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/aidge_core/export_utils/scheduler_export.py b/aidge_core/export_utils/scheduler_export.py index 8a849d3cc..0995e4cea 100644 --- a/aidge_core/export_utils/scheduler_export.py +++ b/aidge_core/export_utils/scheduler_export.py @@ -115,7 +115,7 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib = # So we need to check that at least one input of the nodes is not in the graph and not optional # This is what the following code block is checking. for idx, node_in in enumerate(node.inputs()): - optional:bool = node.get_operator().input_category(idx) == aidge_core.InputCategory.OptionalData + optional:bool = node.get_operator().is_optional_input(idx) # Note: node_in is a Tuple(Node, out_idx) in_graph:bool = node_in[0] in graphview.get_nodes() flag_not_input &= (in_graph or optional) @@ -139,11 +139,12 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib = list_actions += op.forward() if is_input: for idx, node_in in enumerate(node.inputs()): - if node_in[0] not in graphview.get_nodes(): + if (node.get_operator().get_input(idx) is not None) and (node_in[0] not in graphview.get_nodes()): inputs_name.append(op.attributes["in_name"][idx]) inputs_dtype.append( op.attributes["in_cdtype"][idx] ) + if is_output: for idx in range(len(node.outputs())): outputs_name.append(op.attributes["out_name"][idx]) diff --git a/include/aidge/operator/Operator.hpp b/include/aidge/operator/Operator.hpp index 2c9623cea..40899ffa7 100644 --- a/include/aidge/operator/Operator.hpp +++ b/include/aidge/operator/Operator.hpp @@ -310,6 +310,10 @@ public: return mInputsCategory.at(idx); } + inline bool isOptionalInput(std::size_t inputIdx) const { + return static_cast<int>(mInputsCategory[inputIdx]) > 1; + } + virtual inline bool isAtomic() const noexcept { return true; } /** @brief Returns the number of inputs. */ diff --git a/python_binding/operator/pybind_Operator.cpp b/python_binding/operator/pybind_Operator.cpp index 2191d866f..18708adee 100644 --- a/python_binding/operator/pybind_Operator.cpp +++ b/python_binding/operator/pybind_Operator.cpp @@ -59,6 +59,7 @@ void init_Operator(py::module& m){ :rtype: InputCategory )mydelimiter") + .def("is_optional_input", &Operator::isOptionalInput, py::arg("inputIdx")) .def("associate_input", &Operator::associateInput, py::arg("inputIdx"), py::arg("data")) .def("set_datatype", &Operator::setDataType, py::arg("dataType")) .def("set_dataformat", &Operator::setDataFormat, py::arg("dataFormat")) -- GitLab From ee8e9e8e2928c0f1b2bb6416a9bbb354b26dad70 Mon Sep 17 00:00:00 2001 From: Axel Farrugia <axel.farrugia@cea.fr> Date: Fri, 17 Jan 2025 13:47:14 +0100 Subject: [PATCH 144/157] [Style] Mermaid generated graphs now show optional inputs with dot arrows --- src/graph/GraphView.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp index 66665dfcb..e1a520865 100644 --- a/src/graph/GraphView.cpp +++ b/src/graph/GraphView.cpp @@ -186,13 +186,14 @@ void Aidge::GraphView::save(const std::string& path, bool verbose, bool showProd for (const auto& input : mInputNodes) { if (input.first != nullptr) { const auto& op_ = std::dynamic_pointer_cast<OperatorTensor>(input.first->getOperator()); + const std::string inputLinkArrow = op_->isOptionalInput(input.second) ? "-.->" : "--->"; if (op_->getInput(input.second) && (!op_->getInput(input.second)->undefined())) { std::string dims = " " + fmt::format("{}", op_->getInput(input.second)->dims()); std::string dtype = " " + fmt::format("{}", op_->getInput(input.second)->dataType()); - fmt::print(fp.get(), "input{}((in#{})):::inputCls--->|\"{}{}<br/>↓<br/>{}\"|{}_{}\n", inputIdx, inputIdx, + fmt::print(fp.get(), "input{}((in#{})):::inputCls{}|\"{}{}<br/>↓<br/>{}\"|{}_{}\n", inputIdx, inputIdx, inputLinkArrow, dims, dtype, input.second, input.first->type(), namePtrTable.at(input.first)); } else { - fmt::print(fp.get(), "input{}((in#{})):::inputCls--->|\"↓<br/>{}\"|{}_{}\n", inputIdx, inputIdx, + fmt::print(fp.get(), "input{}((in#{})):::inputCls{}|\"↓<br/>{}\"|{}_{}\n", inputIdx, inputIdx, inputLinkArrow, input.second, input.first->type(), namePtrTable.at(input.first)); } } @@ -242,7 +243,7 @@ void Aidge::GraphView::setNodesName() const { for (const auto& nodePtr: getNodes()) { const std::string& t = nodePtr->getOperator()->type(); typeIds.emplace(t, 0); - const std::string nodeName = name() + std::string("_") + t + std::string("#") + std::to_string(typeIds[t]++); + const std::string nodeName = name() + std::string("_") + t + std::string("_") + std::to_string(typeIds[t]++); nodePtr->setName(nodeName); } } -- GitLab From 8f888196576abb499051ad30bd050a7700840a81 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 28 Jan 2025 12:13:02 +0000 Subject: [PATCH 145/157] enforce C++ 14 --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fba297997..635c9c7e1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,8 @@ cmake_minimum_required(VERSION 3.18) -set(CXX_STANDARD 14) + +set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) file(STRINGS "${CMAKE_SOURCE_DIR}/version.txt" version) -- GitLab From a4322a0522bff80235d74b7635050dadc9fd6cb0 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 28 Jan 2025 12:13:56 +0000 Subject: [PATCH 146/157] Change Python minimum version 3.7 -> 3.8 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 610b5f8c2..122be13ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ dependencies = [ "Jinja2>=3.1.2", "matplotlib" ] -requires-python = ">= 3.7" +requires-python = ">= 3.8" readme = "README.md" license = { file = "LICENSE" } classifiers = [ @@ -123,7 +123,7 @@ persistent = true # Minimum Python version to use for version dependent checks. Will default to the # version used to run pylint. -py-version = "3.7" +py-version = "3.8" # When enabled, pylint would attempt to guess common misconfiguration and emit # user-friendly hints instead of false-positive error messages. -- GitLab From 44f252c85fb13dc48f5fb35fd70eae809e7ed1e9 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 28 Jan 2025 12:14:58 +0000 Subject: [PATCH 147/157] UPD: 'setup.py' to access compilation options form environment variable set by 'setup.sh' --- setup.py | 53 ++++++++++++++++++++++++++++++++++------------------- 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/setup.py b/setup.py index 2fb84a991..69c5b19d2 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ class CMakeBuild(build_ext): # This lists the number of processors available on the machine # The compilation will use half of them max_jobs = str(ceil(multiprocessing.cpu_count() / 2)) + max_jobs = os.environ.get("AIDGE_NB_PROC", max_jobs) cwd = pathlib.Path().absolute() @@ -51,14 +52,19 @@ class CMakeBuild(build_ext): package_prefix = build_lib if not self.editable_mode else SETUP_DIR pybind_install_prefix = (package_prefix / PROJECT_NAME).absolute() - os.chdir(str(build_temp)) - - compile_type = os.environ.get("AIDGE_PYTHON_BUILD_TYPE", "Release") install_path = ( os.path.join(sys.prefix, "lib", "libAidge") if "AIDGE_INSTALL" not in os.environ else os.environ["AIDGE_INSTALL"] ) + + # Read environment variables for CMake options + c_compiler = os.environ.get("AIDGE_C_COMPILER", "gcc") + cxx_compiler = os.environ.get("AIDGE_CXX_COMPILER", "g++") + build_type = os.environ.get("AIDGE_BUILD_TYPE", "Release") + asan = os.environ.get("AIDGE_ASAN", "OFF") + cmake_arch = os.environ.get("AIDGE_CMAKE_ARCH", "") + build_gen = os.environ.get("AIDGE_BUILD_GEN", "") build_gen_opts = ( ["-G", build_gen] @@ -67,26 +73,35 @@ class CMakeBuild(build_ext): ) test_onoff = os.environ.get("AIDGE_BUILD_TEST", "OFF") - self.spawn( - [ - "cmake", - *build_gen_opts, - str(cwd), - f"-DTEST={test_onoff}", - f"-DCMAKE_INSTALL_PREFIX:PATH={install_path}", - f"-DCMAKE_BUILD_TYPE={compile_type}", - "-DPYBIND=ON", - f"-DPYBIND_INSTALL_PREFIX:PATH={pybind_install_prefix}", - "-DCMAKE_EXPORT_COMPILE_COMMANDS=ON", - "-DCOVERAGE=OFF", - ] - ) + os.chdir(str(build_temp)) + + cmake_cmd = [ + "cmake", + *build_gen_opts, + str(cwd), + f"-DTEST={test_onoff}", + f"-DCMAKE_INSTALL_PREFIX:PATH={install_path}", + f"-DCMAKE_BUILD_TYPE={build_type}", + f"-DCMAKE_C_COMPILER={c_compiler}", + f"-DCMAKE_CXX_COMPILER={cxx_compiler}", + f"-DENABLE_ASAN={asan}", + "-DPYBIND=ON", + f"-DPYBIND_INSTALL_PREFIX:PATH={pybind_install_prefix}", + "-DCMAKE_EXPORT_COMPILE_COMMANDS=1", + "-DCOVERAGE=OFF", + ] + + # Append architecture-specific arguments if provided + if cmake_arch: + cmake_cmd.append(cmake_arch) + + self.spawn(cmake_cmd) if not self.dry_run: self.spawn( - ["cmake", "--build", ".", "--config", compile_type, "-j", max_jobs] + ["cmake", "--build", ".", "--config", build_type, "-j", max_jobs] ) - self.spawn(["cmake", "--install", ".", "--config", compile_type]) + self.spawn(["cmake", "--install", ".", "--config", build_type]) os.chdir(str(cwd)) -- GitLab From 7a6af7a6222b0ce1297448f4bd94a175286af66f Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 28 Jan 2025 12:15:33 +0000 Subject: [PATCH 148/157] Minor updates - Remove unused empty CMakeLists.txt in src directory - upd: 'approxEq' logging from error to notice in case of mismatch - do not remove spaces at the beginning of a new line in log --- include/aidge/utils/TensorUtils.hpp | 2 +- src/CMakeLists.txt | 0 src/utils/Log.cpp | 5 +---- 3 files changed, 2 insertions(+), 5 deletions(-) delete mode 100644 src/CMakeLists.txt diff --git a/include/aidge/utils/TensorUtils.hpp b/include/aidge/utils/TensorUtils.hpp index 5ba1f8ae5..794abf763 100644 --- a/include/aidge/utils/TensorUtils.hpp +++ b/include/aidge/utils/TensorUtils.hpp @@ -77,7 +77,7 @@ bool approxEq(const Tensor& t1, const Tensor& t2, float relative = 1e-5f, float const float threshold = absolute + (relative * static_cast<float>(std::abs(val2))); if (diff > threshold) { - Log::error("Tensor values differ at index {}: {} vs {} (diff: {}, threshold: {})\n" + Log::notice("Tensor values differ at index {}: {} vs {} (diff: {}, threshold: {})\n" "Tensor 1:\n{}\nTensor 2:\n{}", i, val1, val2, diff, threshold, t1, t2); return false; diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index 45f03a7ae..3890b991a 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -140,10 +140,7 @@ void Log::log(Level level, const std::string& msg) { wrappedLines.push_back(text.substr(start, lineEnd - start)); // Move to the next segment, skipping spaces - start = lineEnd; - while (start < text.size() && (text[start] == ' ' || text[start] == '\n')) { - ++start; - } + start = ++lineEnd; } return wrappedLines; -- GitLab From dd182b291ca366ee119558583460987729497f05 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 28 Jan 2025 12:43:11 +0000 Subject: [PATCH 149/157] Remove comment not relevant anymore --- src/utils/Log.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index 3890b991a..b4c64d527 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -139,7 +139,6 @@ void Log::log(Level level, const std::string& msg) { // Add the wrapped line to the result wrappedLines.push_back(text.substr(start, lineEnd - start)); - // Move to the next segment, skipping spaces start = ++lineEnd; } -- GitLab From 516ea062057f6c8326926e2e46aaa089c6b97ff6 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Wed, 29 Jan 2025 23:43:18 +0000 Subject: [PATCH 150/157] UPD: unit-tests/CmakeLists.txt format and add minimum version for Catch2 --- unit_tests/CMakeLists.txt | 113 +++++++++++++++++++++++++------------- 1 file changed, 74 insertions(+), 39 deletions(-) diff --git a/unit_tests/CMakeLists.txt b/unit_tests/CMakeLists.txt index 8c9a6ad8d..cf7e896da 100644 --- a/unit_tests/CMakeLists.txt +++ b/unit_tests/CMakeLists.txt @@ -1,4 +1,8 @@ -find_package(Catch2 QUIET) +# Catch2 configuration +set(CATCH2_MIN_VERSION 3.3.0) + +# Try to find system installed Catch2 +find_package(Catch2 ${CATCH2_MIN_VERSION} QUIET) if(NOT Catch2_FOUND) message(STATUS "Catch2 not found in system, retrieving from git") @@ -9,62 +13,93 @@ if(NOT Catch2_FOUND) GIT_REPOSITORY https://github.com/catchorg/Catch2.git GIT_TAG devel # or a later release ) - FetchContent_MakeAvailable(Catch2) + message(STATUS "Fetched Catch2 version ${Catch2_VERSION}") else() - message(STATUS "Found system Catch2 version ${Catch2_VERSION}") + message(STATUS "Using system Catch2 version ${Catch2_VERSION}") endif() +# Get all source files file(GLOB_RECURSE src_files "*.cpp") +# Create test executable add_executable(tests${module_name} ${src_files}) +# Set C++14 standard target_compile_features(tests${module_name} PRIVATE cxx_std_14) set(FORCE_CI TRUE) -if (NOT(FORCE_CI)) - -if (DOSANITIZE STREQUAL "ON") -set(SANITIZE_FLAGS -fsanitize=address,leak,undefined,float-divide-by-zero -fno-omit-frame-pointer) -#TODO sanitizer seems buggy in some situations with msvc, leading to linker errors, temporarily inactivating it -#set(SANITIZE_MSVC_FLAGS) -set(SANITIZE_MSVC_FLAGS /fsanitize=address) -target_compile_definitions(tests${module_name} PUBLIC _DISABLE_VECTOR_ANNOTATION) -else() -set(SANITIZE_FLAGS) -set(SANITIZE_MSVC_FLAGS) -endif() +# Compiler flags and options +if(NOT(FORCE_CI)) + # Sanitization configuration + if(DOSANITIZE STREQUAL "ON") + set(SANITIZE_FLAGS + -fsanitize=address,leak,undefined,float-divide-by-zero + -fno-omit-frame-pointer + ) + set(SANITIZE_MSVC_FLAGS /fsanitize=address) -set(STRICT_ALIASING_FLAGS -fstrict-aliasing -Wstrict-aliasing=2) - -# -fvisibility=hidden required by pybind11 -target_compile_options(tests${module_name} PUBLIC - $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: - -fvisibility=hidden>) -target_compile_options(tests${module_name} PRIVATE -$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: --Wall -Wextra -Wold-style-cast -pedantic -Werror=narrowing -Wshadow $<$<BOOL:${WERROR}>:-Werror> ${SANITIZE_FLAGS}>) -target_compile_options(tests${module_name} PRIVATE -$<$<CXX_COMPILER_ID:GNU>:${STRICT_ALIASING_FLAGS}>) -target_compile_options(${module_name} PRIVATE -$<$<CXX_COMPILER_ID:MSVC>: -/W4 /DWIN32 /D_WINDOWS /GR /EHsc /MP /Zc:__cplusplus /Zc:preprocessor /permissive- ${SANITIZE_MSVC_FLAGS}>) -if (DOSANITIZE STREQUAL "ON") - target_compile_options(${module_name} PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/MDd>) -endif() -# TODO FIXME: I'm not sure it's a good idea to propagate this option but, at this point, it was the only way that worked to silence C4477 -target_compile_options(${module_name} PUBLIC $<$<CXX_COMPILER_ID:MSVC>: /wd4477>) + # Temporary workaround for MSVC sanitizer issues + target_compile_definitions(tests${module_name} PUBLIC _DISABLE_VECTOR_ANNOTATION) + else() + set(SANITIZE_FLAGS "") + set(SANITIZE_MSVC_FLAGS "") + endif() -target_link_options(tests${module_name} PUBLIC $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:${SANITIZE_FLAGS}>) -#target_link_options(tests${module_name} PUBLIC $<$<CXX_COMPILER_ID:MSVC>:${SANITIZE_MSVC_FLAGS}>) + # Strict aliasing for better type safety + set(STRICT_ALIASING_FLAGS -fstrict-aliasing -Wstrict-aliasing=2) -endif() + # Compiler options for different toolchains + target_compile_options(tests${module_name} PUBLIC + $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: + -fvisibility=hidden> # Hide symbols by default + ) # -fvisibility=hidden required by Pybind11 -target_link_libraries(tests${module_name} PRIVATE ${module_name}) + # Common warning and error flags + target_compile_options(tests${module_name} PRIVATE + $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: + -Wall -Wextra -Wold-style-cast -pedantic -Werror=narrowing -Wshadow + $<$<BOOL:${WERROR}>:-Werror> + ${SANITIZE_FLAGS} + > + ) + # Strict aliasing for GCC + target_compile_options(tests${module_name} PRIVATE + $<$<CXX_COMPILER_ID:GNU>:${STRICT_ALIASING_FLAGS}> + ) -target_link_libraries(tests${module_name} PRIVATE Catch2::Catch2WithMain) + # MSVC-specific settings + target_compile_options(tests${module_name} PRIVATE + $<$<CXX_COMPILER_ID:MSVC>: + /W4 /DWIN32 /D_WINDOWS /GR /EHsc /MP + /Zc:__cplusplus /Zc:preprocessor /permissive- + ${SANITIZE_MSVC_FLAGS} + > + ) + + # Workaround for C4477 warning in MSVC + if(DOSANITIZE STREQUAL "ON") + target_compile_options(tests${module_name} PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/MDd>) + endif() + + # TODO: Fix this once proper configuration is available + # only way to silence C4477 + target_compile_options(tests${module_name} PUBLIC $<$<CXX_COMPILER_ID:MSVC>: /wd4477>) +endif() +# Link libraries +target_link_libraries(tests${module_name} PRIVATE + ${module_name} + Catch2::Catch2WithMain +) + +# Setup testing list(APPEND CMAKE_MODULE_PATH ${catch2_SOURCE_DIR}/extras) include(CTest) include(Catch) + +# Discover and add tests catch_discover_tests(tests${module_name}) + +# Set test configuration for CTest +set(CTEST_CONFIGURATION_TYPE ${CMAKE_BUILD_TYPE}) \ No newline at end of file -- GitLab From fe867fc3febf10b497e98a773f108bdf11d0aaa7 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 29 Jan 2025 18:39:02 +0100 Subject: [PATCH 151/157] Added missing binding for Elts struct --- include/aidge/scheduler/ProdConso.hpp | 4 + python_binding/data/pybind_Elts.cpp | 85 +++++++++++++++++++ python_binding/pybind_core.cpp | 2 + python_binding/scheduler/pybind_ProdConso.cpp | 1 + 4 files changed, 92 insertions(+) create mode 100644 python_binding/data/pybind_Elts.cpp diff --git a/include/aidge/scheduler/ProdConso.hpp b/include/aidge/scheduler/ProdConso.hpp index f30e00afa..bc42cb36c 100644 --- a/include/aidge/scheduler/ProdConso.hpp +++ b/include/aidge/scheduler/ProdConso.hpp @@ -34,6 +34,10 @@ public: return std::make_unique<ProdConso>(op, true); } + const Operator& getOperator() const noexcept { + return mOp; + } + /** * @brief Minimum amount of data from a specific input required by the * implementation to be run. diff --git a/python_binding/data/pybind_Elts.cpp b/python_binding/data/pybind_Elts.cpp new file mode 100644 index 000000000..59a8211e2 --- /dev/null +++ b/python_binding/data/pybind_Elts.cpp @@ -0,0 +1,85 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <algorithm> // std::transform +#include <cctype> // std::tolower +#include <string> // std::string +#include <vector> + +#include <pybind11/pybind11.h> +#include <pybind11/stl.h> +#include <pybind11/operators.h> + +#include "aidge/data/Elts.hpp" + +namespace py = pybind11; +namespace Aidge { + +template <class T> +void bindEnum(py::module& m, const std::string& name) { + // Define enumeration names for python as lowercase type name + // This defined enum names compatible with basic numpy type + // name such as: float32, flot64, [u]int32, [u]int64, ... + auto python_enum_name = [](const T& type) { + auto str_lower = [](std::string& str) { + std::transform(str.begin(), str.end(), str.begin(), + [](unsigned char c){ + return std::tolower(c); + }); + }; + auto type_name = std::string(Aidge::format_as(type)); + str_lower(type_name); + return type_name; + }; + + // Auto generate enumeration names from lowercase type strings + std::vector<std::string> enum_names; + for (auto type_str : EnumStrings<T>::data) { + auto type = static_cast<T>(enum_names.size()); + auto enum_name = python_enum_name(type); + enum_names.push_back(enum_name); + } + + // Define python side enumeration aidge_core.type + auto e_type = py::enum_<T>(m, name.c_str()); + + // Add enum value for each enum name + for (std::size_t idx = 0; idx < enum_names.size(); idx++) { + e_type.value(enum_names[idx].c_str(), static_cast<T>(idx)); + } + + // Define str() to return the bare enum name value, it allows + // to compare directly for instance str(tensor.type()) + // with str(nparray.type) + e_type.def("__str__", [enum_names](const T& type) { + return enum_names[static_cast<int>(type)]; + }, py::prepend()); +} + +void init_Elts(py::module& m) { + bindEnum<Elts_t::EltType>(m, "EltType"); + m.def("format_as", (const char* (*)(Elts_t::EltType)) &format_as, py::arg("elt")); + + py::class_<Elts_t, std::shared_ptr<Elts_t>>( + m, "Elts_t", py::dynamic_attr()) + .def_static("none_elts", &Elts_t::NoneElts) + .def_static("data_elts", &Elts_t::DataElts, py::arg("data"), py::arg("token") = 1) + .def_static("token_elts", &Elts_t::TokenElts, py::arg("token")) + .def_readwrite("data", &Elts_t::data) + .def_readwrite("token", &Elts_t::token) + .def_readwrite("type", &Elts_t::type) + .def(py::self + py::self) + .def(py::self += py::self) + .def(py::self < py::self) + .def(py::self > py::self); +} + +} // namespace Aidge diff --git a/python_binding/pybind_core.cpp b/python_binding/pybind_core.cpp index 1f35373f3..cc6f0bf25 100644 --- a/python_binding/pybind_core.cpp +++ b/python_binding/pybind_core.cpp @@ -21,6 +21,7 @@ void init_Random(py::module&); void init_Data(py::module&); void init_DataFormat(py::module&); void init_DataType(py::module&); +void init_Elts(py::module&); void init_Database(py::module&); void init_DataProvider(py::module&); void init_Interpolation(py::module&); @@ -112,6 +113,7 @@ void init_Aidge(py::module& m) { init_Data(m); init_DataFormat(m); init_DataType(m); + init_Elts(m); init_Database(m); init_DataProvider(m); init_Interpolation(m); diff --git a/python_binding/scheduler/pybind_ProdConso.cpp b/python_binding/scheduler/pybind_ProdConso.cpp index abd6d5379..547e2258d 100644 --- a/python_binding/scheduler/pybind_ProdConso.cpp +++ b/python_binding/scheduler/pybind_ProdConso.cpp @@ -104,6 +104,7 @@ void init_ProdConso(py::module& m){ .def(py::init<const Operator&, bool>(), py::keep_alive<1, 1>(), py::keep_alive<1, 2>(), py::keep_alive<1,3>()) .def_static("default_model", &ProdConso::defaultModel) .def_static("in_place_model", &ProdConso::inPlaceModel) + .def("get_operator", &ProdConso::getOperator) .def("get_nb_required_data", &ProdConso::getNbRequiredData) .def("get_nb_required_protected", &ProdConso::getNbRequiredProtected) .def("get_required_memory", &ProdConso::getRequiredMemory) -- GitLab From 84fac59710ae9d8b1c0dba6b3edd9b786e6a9a76 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Wed, 29 Jan 2025 18:39:10 +0100 Subject: [PATCH 152/157] Fix ConstantFolding bug --- src/recipes/ConstantFolding.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/recipes/ConstantFolding.cpp b/src/recipes/ConstantFolding.cpp index 40b0bda76..613393756 100644 --- a/src/recipes/ConstantFolding.cpp +++ b/src/recipes/ConstantFolding.cpp @@ -36,6 +36,7 @@ void Aidge::constantFolding(std::shared_ptr<GraphView> graph) { for (const auto& node : candidates) { bool foldable = true; auto replaceGraph = std::make_shared<GraphView>(); + size_t i = 0; for (const auto& input : node->inputs()) { if (input.first) { if (input.first->type() != Producer_Op::Type) { @@ -53,6 +54,13 @@ void Aidge::constantFolding(std::shared_ptr<GraphView> graph) { replaceGraph->add(input.first, false); } + else if (node->inputCategory(i) != InputCategory::OptionalData + && node->inputCategory(i) != InputCategory::OptionalParam) + { + foldable = false; + break; + } + ++i; } if (foldable) { -- GitLab From a0fb5ecd7249789b50554fcc026a91dd6f21a9cd Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 30 Jan 2025 15:55:03 +0100 Subject: [PATCH 153/157] Added getFactorizedScheduling() --- include/aidge/scheduler/Scheduler.hpp | 12 ++ python_binding/scheduler/pybind_Scheduler.cpp | 1 + src/scheduler/Scheduler.cpp | 118 ++++++++++++++++++ 3 files changed, 131 insertions(+) diff --git a/include/aidge/scheduler/Scheduler.hpp b/include/aidge/scheduler/Scheduler.hpp index 51f62ed1b..75fc15778 100644 --- a/include/aidge/scheduler/Scheduler.hpp +++ b/include/aidge/scheduler/Scheduler.hpp @@ -187,6 +187,7 @@ public: * @param fileName Name of the file to save the diagram (without extension). */ void saveStaticSchedulingDiagram(const std::string& fileName) const; + void saveFactorizedStaticSchedulingDiagram(const std::string& fileName) const; /** * @brief Save in a Mermaid file the order of layers execution. @@ -233,6 +234,17 @@ protected: */ void generateEarlyLateScheduling(std::vector<StaticSchedulingElement*>& schedule) const; + /** + * @brief Get the factorized scheduling, by identifying repetitive sequences + * in the scheduling. + * + * @param schedule Vector of shared pointers to StaticSchedulingElements to be processed + * @return Vector containing the repetitive sequences, in order. The second + * element of the pair is the number of repetitions. + */ + std::vector<std::pair<std::vector<StaticSchedulingElement*>, size_t>> + getFactorizedScheduling(const std::vector<StaticSchedulingElement*>& schedule) const; + private: /** * @brief Summarize the consumer state of a node for debugging purposes. diff --git a/python_binding/scheduler/pybind_Scheduler.cpp b/python_binding/scheduler/pybind_Scheduler.cpp index d4cd7da44..10dc66ae8 100644 --- a/python_binding/scheduler/pybind_Scheduler.cpp +++ b/python_binding/scheduler/pybind_Scheduler.cpp @@ -32,6 +32,7 @@ void init_Scheduler(py::module& m){ .def("graph_view", &Scheduler::graphView) .def("save_scheduling_diagram", &Scheduler::saveSchedulingDiagram, py::arg("file_name")) .def("save_static_scheduling_diagram", &Scheduler::saveStaticSchedulingDiagram, py::arg("file_name")) + .def("save_factorized_static_scheduling_diagram", &Scheduler::saveFactorizedStaticSchedulingDiagram, py::arg("file_name")) .def("resetScheduling", &Scheduler::resetScheduling) .def("generate_scheduling", &Scheduler::generateScheduling) .def("get_static_scheduling", &Scheduler::getStaticScheduling, py::arg("step") = 0, py::arg("sorting") = Scheduler::EarlyLateSort::Default) diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index 396e90c09..58c23f708 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -427,6 +427,82 @@ void Aidge::Scheduler::generateEarlyLateScheduling(std::vector<StaticSchedulingE } } +std::vector<std::pair<std::vector<Aidge::Scheduler::StaticSchedulingElement*>, size_t>> +Aidge::Scheduler::getFactorizedScheduling(const std::vector<StaticSchedulingElement*>& schedule) const +{ + std::vector<std::pair<std::vector<StaticSchedulingElement*>, size_t>> sequences; + size_t offset = 0; + + for (size_t i = 0; i < schedule.size(); ) { + std::vector<StaticSchedulingElement*> seq; + seq.push_back(new StaticSchedulingElement( + schedule[i]->node, + schedule[i]->early - offset, + schedule[i]->late - offset)); + + // Find all the possible repetitive sequences starting from this element + std::vector<std::pair<std::vector<StaticSchedulingElement*>, size_t>> longuestSeq = {std::make_pair(seq, 1)}; + std::vector<size_t> longuestSeqOffset = {0}; + + for (size_t k = i + 1; k < schedule.size() - 1; ++k) { + // For each sequence length, starting from 2... + seq.push_back(new StaticSchedulingElement( + schedule[k]->node, + schedule[k]->early - offset, + schedule[k]->late - offset)); + + size_t start = k + 1; + size_t nbRepeats = 1; + bool repeat = true; + const auto seqOffset = schedule[start]->early - offset - seq[0]->early; + + do { + // Count the number of consecutive sequences (repetitions) + for (size_t r = 0; r < seq.size(); ++r) { + if (start + r >= schedule.size() + || schedule[start + r]->node != seq[r]->node + || schedule[start + r]->early - offset != seq[r]->early + seqOffset * nbRepeats + || schedule[start + r]->late - offset != seq[r]->late + seqOffset * nbRepeats) + { + repeat = false; + break; + } + } + + if (repeat) { + start += seq.size(); + ++nbRepeats; + } + } + while (repeat); + + if (nbRepeats > 1) { + // If repetitions exist for this sequence length, add it to the list + longuestSeq.push_back(std::make_pair(seq, nbRepeats)); + longuestSeqOffset.push_back(seqOffset); + } + } + + // Select the one with the best factorization + // i.e. which maximize the product sequence length * number of sequences + size_t maxS = 0; + size_t maxFactorization = 0; + for (size_t s = 0; s < longuestSeq.size(); ++s) { + const auto factor = longuestSeq[s].first.size() * longuestSeq[s].second; + if (factor > maxFactorization) { + maxFactorization = factor; + maxS = s; + } + } + + sequences.push_back(longuestSeq[maxS]); + i += longuestSeq[maxS].first.size() * longuestSeq[maxS].second; + offset += longuestSeqOffset[maxS] * (longuestSeq[maxS].second - 1); + } + + return sequences; +} + void Aidge::Scheduler::resetScheduling() { for (auto node : mGraphView->getNodes()) { node->getOperator()->resetConsummerProducer(); @@ -878,6 +954,48 @@ void Aidge::Scheduler::saveStaticSchedulingDiagram(const std::string& fileName) fmt::print(fp.get(), "\n"); } +void Aidge::Scheduler::saveFactorizedStaticSchedulingDiagram(const std::string& fileName) const { + auto fp = std::unique_ptr<FILE, decltype(&std::fclose)>(std::fopen((fileName + ".mmd").c_str(), "w"), &std::fclose); + + if (!fp) { + AIDGE_THROW_OR_ABORT(std::runtime_error, + "Could not create scheduling diagram log file: {}", fileName + ".mmd"); + } + + fmt::print(fp.get(), "gantt\ndateFormat x\naxisFormat %Q\n\n"); + + if (!mStaticSchedule.empty()) { + const std::map<std::shared_ptr<Node>, std::string> namePtrTable + = mGraphView->getRankedNodesName("{0} ({1}#{3})"); + + for (const auto& schedule : mStaticSchedule) { + const auto factorizedSchedule = getFactorizedScheduling(schedule); + + size_t seq = 0; + for (const auto& sequence : factorizedSchedule) { + if (sequence.second > 1) { + fmt::print(fp.get(), "section seq#{} (x{})\n", seq, sequence.second); + } + else { + fmt::print(fp.get(), "section seq#{}\n", seq); + } + + for (const auto& element : sequence.first) { + auto name = namePtrTable.at(element->node); + // Mermaid does not allow : character in task title + std::replace(name.begin(), name.end(), ':', '_'); + + fmt::print(fp.get(), "{} :{}, {}\n", + name, element->early, element->late); + } + ++seq; + } + } + } + + fmt::print(fp.get(), "\n"); +} + std::vector<std::shared_ptr<Aidge::Node>> Aidge::Scheduler::getStaticScheduling(std::size_t step, EarlyLateSort sorting) const { AIDGE_ASSERT(!mStaticSchedule.empty(), "Scheduler::getStaticScheduling(): static scheduling is empty, did you generate scheduling first?"); AIDGE_ASSERT(step < mStaticSchedule.size(), "Scheduler::getStaticScheduling(): no static scheduling at step {} (available steps: {})", mStaticSchedule.size(), step); -- GitLab From f222cd7c8de37f6c0fca5eb0bc2088f5231fe60c Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 30 Jan 2025 16:07:07 +0100 Subject: [PATCH 154/157] Improved display --- src/scheduler/Scheduler.cpp | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index 58c23f708..26bb357e7 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -945,8 +945,14 @@ void Aidge::Scheduler::saveStaticSchedulingDiagram(const std::string& fileName) // Mermaid does not allow : character in task title std::replace(name.begin(), name.end(), ':', '_'); - fmt::print(fp.get(), "{} :{}, {}\n", - name, element->early, element->late); + if (element->early == element->late) { + fmt::print(fp.get(), "{} :milestone, {}, {}\n", + name, element->early, element->late); + } + else { + fmt::print(fp.get(), "{} :{}, {}\n", + name, element->early, element->late); + } } } } @@ -985,8 +991,14 @@ void Aidge::Scheduler::saveFactorizedStaticSchedulingDiagram(const std::string& // Mermaid does not allow : character in task title std::replace(name.begin(), name.end(), ':', '_'); - fmt::print(fp.get(), "{} :{}, {}\n", - name, element->early, element->late); + if (element->early == element->late) { + fmt::print(fp.get(), "{} :milestone, {}, {}\n", + name, element->early, element->late); + } + else { + fmt::print(fp.get(), "{} :{}, {}\n", + name, element->early, element->late); + } } ++seq; } -- GitLab From 1c5925053973884351e5040ec42b7bdb12dd57bc Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 30 Jan 2025 17:47:58 +0100 Subject: [PATCH 155/157] Small refinement in factorize --- include/aidge/scheduler/Scheduler.hpp | 5 ++- python_binding/scheduler/pybind_Scheduler.cpp | 2 +- src/scheduler/Scheduler.cpp | 44 ++++++++++--------- 3 files changed, 28 insertions(+), 23 deletions(-) diff --git a/include/aidge/scheduler/Scheduler.hpp b/include/aidge/scheduler/Scheduler.hpp index 75fc15778..db9b903cc 100644 --- a/include/aidge/scheduler/Scheduler.hpp +++ b/include/aidge/scheduler/Scheduler.hpp @@ -187,7 +187,7 @@ public: * @param fileName Name of the file to save the diagram (without extension). */ void saveStaticSchedulingDiagram(const std::string& fileName) const; - void saveFactorizedStaticSchedulingDiagram(const std::string& fileName) const; + void saveFactorizedStaticSchedulingDiagram(const std::string& fileName, size_t minRepeat = 2) const; /** * @brief Save in a Mermaid file the order of layers execution. @@ -239,11 +239,12 @@ protected: * in the scheduling. * * @param schedule Vector of shared pointers to StaticSchedulingElements to be processed + * @param size_t Minimum number repetitions to factorize the sequence * @return Vector containing the repetitive sequences, in order. The second * element of the pair is the number of repetitions. */ std::vector<std::pair<std::vector<StaticSchedulingElement*>, size_t>> - getFactorizedScheduling(const std::vector<StaticSchedulingElement*>& schedule) const; + getFactorizedScheduling(const std::vector<StaticSchedulingElement*>& schedule, size_t minRepeat = 2) const; private: /** diff --git a/python_binding/scheduler/pybind_Scheduler.cpp b/python_binding/scheduler/pybind_Scheduler.cpp index 10dc66ae8..1a3a4b6b2 100644 --- a/python_binding/scheduler/pybind_Scheduler.cpp +++ b/python_binding/scheduler/pybind_Scheduler.cpp @@ -32,7 +32,7 @@ void init_Scheduler(py::module& m){ .def("graph_view", &Scheduler::graphView) .def("save_scheduling_diagram", &Scheduler::saveSchedulingDiagram, py::arg("file_name")) .def("save_static_scheduling_diagram", &Scheduler::saveStaticSchedulingDiagram, py::arg("file_name")) - .def("save_factorized_static_scheduling_diagram", &Scheduler::saveFactorizedStaticSchedulingDiagram, py::arg("file_name")) + .def("save_factorized_static_scheduling_diagram", &Scheduler::saveFactorizedStaticSchedulingDiagram, py::arg("file_name"), py::arg("min_repeat") = 2) .def("resetScheduling", &Scheduler::resetScheduling) .def("generate_scheduling", &Scheduler::generateScheduling) .def("get_static_scheduling", &Scheduler::getStaticScheduling, py::arg("step") = 0, py::arg("sorting") = Scheduler::EarlyLateSort::Default) diff --git a/src/scheduler/Scheduler.cpp b/src/scheduler/Scheduler.cpp index 26bb357e7..bbbc3d807 100644 --- a/src/scheduler/Scheduler.cpp +++ b/src/scheduler/Scheduler.cpp @@ -428,24 +428,19 @@ void Aidge::Scheduler::generateEarlyLateScheduling(std::vector<StaticSchedulingE } std::vector<std::pair<std::vector<Aidge::Scheduler::StaticSchedulingElement*>, size_t>> -Aidge::Scheduler::getFactorizedScheduling(const std::vector<StaticSchedulingElement*>& schedule) const +Aidge::Scheduler::getFactorizedScheduling(const std::vector<StaticSchedulingElement*>& schedule, size_t minRepeat) const { std::vector<std::pair<std::vector<StaticSchedulingElement*>, size_t>> sequences; size_t offset = 0; for (size_t i = 0; i < schedule.size(); ) { - std::vector<StaticSchedulingElement*> seq; - seq.push_back(new StaticSchedulingElement( - schedule[i]->node, - schedule[i]->early - offset, - schedule[i]->late - offset)); - // Find all the possible repetitive sequences starting from this element - std::vector<std::pair<std::vector<StaticSchedulingElement*>, size_t>> longuestSeq = {std::make_pair(seq, 1)}; - std::vector<size_t> longuestSeqOffset = {0}; + std::vector<StaticSchedulingElement*> seq; + std::vector<std::pair<std::vector<StaticSchedulingElement*>, size_t>> longuestSeq; + std::vector<size_t> longuestSeqOffset; - for (size_t k = i + 1; k < schedule.size() - 1; ++k) { - // For each sequence length, starting from 2... + for (size_t k = i; k < schedule.size(); ++k) { + // For each sequence length, starting from 1... seq.push_back(new StaticSchedulingElement( schedule[k]->node, schedule[k]->early - offset, @@ -454,7 +449,7 @@ Aidge::Scheduler::getFactorizedScheduling(const std::vector<StaticSchedulingElem size_t start = k + 1; size_t nbRepeats = 1; bool repeat = true; - const auto seqOffset = schedule[start]->early - offset - seq[0]->early; + const auto seqOffset = (start < schedule.size()) ? schedule[start]->early - offset - seq[0]->early : 0; do { // Count the number of consecutive sequences (repetitions) @@ -476,11 +471,17 @@ Aidge::Scheduler::getFactorizedScheduling(const std::vector<StaticSchedulingElem } while (repeat); - if (nbRepeats > 1) { + if (nbRepeats >= minRepeat) { // If repetitions exist for this sequence length, add it to the list longuestSeq.push_back(std::make_pair(seq, nbRepeats)); longuestSeqOffset.push_back(seqOffset); } + else if (k == i) { + // Ensure that at least the current element is in the list if no + // repetition is found + longuestSeq.push_back(std::make_pair(seq, 1)); + longuestSeqOffset.push_back(0); + } } // Select the one with the best factorization @@ -960,7 +961,7 @@ void Aidge::Scheduler::saveStaticSchedulingDiagram(const std::string& fileName) fmt::print(fp.get(), "\n"); } -void Aidge::Scheduler::saveFactorizedStaticSchedulingDiagram(const std::string& fileName) const { +void Aidge::Scheduler::saveFactorizedStaticSchedulingDiagram(const std::string& fileName, size_t minRepeat) const { auto fp = std::unique_ptr<FILE, decltype(&std::fclose)>(std::fopen((fileName + ".mmd").c_str(), "w"), &std::fclose); if (!fp) { @@ -975,7 +976,7 @@ void Aidge::Scheduler::saveFactorizedStaticSchedulingDiagram(const std::string& = mGraphView->getRankedNodesName("{0} ({1}#{3})"); for (const auto& schedule : mStaticSchedule) { - const auto factorizedSchedule = getFactorizedScheduling(schedule); + const auto factorizedSchedule = getFactorizedScheduling(schedule, minRepeat); size_t seq = 0; for (const auto& sequence : factorizedSchedule) { @@ -990,15 +991,18 @@ void Aidge::Scheduler::saveFactorizedStaticSchedulingDiagram(const std::string& auto name = namePtrTable.at(element->node); // Mermaid does not allow : character in task title std::replace(name.begin(), name.end(), ':', '_'); + std::string tag = ":"; if (element->early == element->late) { - fmt::print(fp.get(), "{} :milestone, {}, {}\n", - name, element->early, element->late); + tag += "milestone, "; } - else { - fmt::print(fp.get(), "{} :{}, {}\n", - name, element->early, element->late); + + if (sequence.second > 1) { + tag += "active, "; } + + fmt::print(fp.get(), "{} {}{}, {}\n", + name, tag, element->early, element->late); } ++seq; } -- GitLab From d21dde5e3fdb557ce219a034344af82e97a56570 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Fri, 31 Jan 2025 00:32:15 +0000 Subject: [PATCH 156/157] FIX: Change .json file management due to permission conflicts The test creates a temporary file and keeps it open, which causes a permission conflict when the function tries to write to the same file. On Windows, files are exclusive, so opening a file in one process prevents another from opening it --- aidge_core/unit_tests/test_show_graphview.py | 36 +++++++++++--------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/aidge_core/unit_tests/test_show_graphview.py b/aidge_core/unit_tests/test_show_graphview.py index 4c68e93e3..838a88b2c 100644 --- a/aidge_core/unit_tests/test_show_graphview.py +++ b/aidge_core/unit_tests/test_show_graphview.py @@ -28,7 +28,7 @@ def create_gview(): value = prod_op.get_output(0) value.set_backend("cpu") tuple_out = node.output(0)[0] - + if (tuple_out[0].type() == "Conv" or tuple_out[0].type() == "PaddedConv") and tuple_out[1]==1: # Conv weight aidge_core.xavier_uniform_filler(value) @@ -45,13 +45,13 @@ def create_gview(): pass # Compile model - gview.forward_dims([[1, 1, 28, 28]]) + gview.forward_dims([[1, 1, 28, 28]]) gview.set_datatype(aidge_core.dtype.float32) return gview class test_show_gview(unittest.TestCase): - """Test aidge functionality to show GraphView. + """Test aidge functionality to show GraphView. """ def setUp(self): @@ -61,12 +61,14 @@ class test_show_gview(unittest.TestCase): pass def test_gview_to_json(self): - + gview = create_gview() - # Create temporary file to store JSON model description - model_description_file = tempfile.NamedTemporaryFile(mode="w+", suffix='.json') + # Create temporary file to store JSON model description + model_description_file = tempfile.NamedTemporaryFile(suffix='.json', delete=False) + model_description_file.close() # Ensure the file is closed + # Pass the file path to gview_to_json gview_to_json(gview, Path(model_description_file.name)) # Load JSON @@ -76,15 +78,15 @@ class test_show_gview(unittest.TestCase): # Get list of nodes of Aidge graphview gview_ordered_nodes = gview.get_ordered_nodes() - # Iterate over the list of ordered nodes and the corresponding JSON + # Iterate over the list of ordered nodes and the corresponding JSON self.assertEqual(len(gview_ordered_nodes), len(model_json['graph'])) - for node_gview, node_json in zip(gview_ordered_nodes, model_json['graph']): - + for node_gview, node_json in zip(gview_ordered_nodes, model_json['graph']): + self.assertEqual(node_gview.get_operator().type(), node_json['optype']) self.assertEqual(node_gview.get_operator().nb_inputs(), node_json['nb_inputs']) self.assertEqual(node_gview.get_operator().nb_outputs(), node_json['nb_outputs']) - + self.assertEqual(node_gview.get_operator().nb_inputs(), len(node_json['inputs'])) for input_idx in range(node_gview.get_operator().nb_inputs()): self.assertEqual(node_gview.get_operator().get_input(input_idx).dims(), node_json['inputs'][input_idx]['dims']) @@ -97,7 +99,7 @@ class test_show_gview(unittest.TestCase): self.assertEqual(str(node_gview.get_operator().get_output(output_idx).dtype()), node_json['outputs'][output_idx]['data_type']) self.assertEqual(str(node_gview.get_operator().get_output(output_idx).dformat()), node_json['outputs'][output_idx]['data_format']) - self.assertEqual(len(node_gview.get_parents()), len(node_json['parents'])) + self.assertEqual(len(node_gview.get_parents()), len(node_json['parents'])) self.assertEqual(len(node_gview.get_children()), len(node_json['children'])) if not hasattr(node_gview.get_operator(), 'get_micro_graph'): @@ -109,21 +111,21 @@ class test_show_gview(unittest.TestCase): self.assertIsNone(node_gview.get_operator().attr) and self.assertFalse(node_json['attributes']) elif hasattr(node_gview.get_operator(), 'get_micro_graph'): - + self.assertEqual(len(node_gview.get_operator().get_micro_graph().get_nodes()), len(node_json['attributes']['micro_graph'])) - + for micro_node_gview in node_gview.get_operator().get_micro_graph().get_nodes(): for micro_node_json in node_json['attributes']['micro_graph']: if micro_node_gview.get_operator().type() == micro_node_json['optype']: - + for key, value in micro_node_gview.get_operator().attr.dict().items(): if not type(value).__name__ in dir(builtins): # Replace original value by its name (str) because value is of a type that could not be written to the JSON - # Cannot update this dict inplace : micro_node_gview.get_operator().attr.dict().update({key : value.name}) + # Cannot update this dict inplace : micro_node_gview.get_operator().attr.dict().update({key : value.name}) temp_mnode_dict = micro_node_gview.get_operator().attr.dict() temp_mnode_dict.update({key : value.name}) - self.assertDictEqual(temp_mnode_dict, micro_node_json['attributes']) - + self.assertDictEqual(temp_mnode_dict, micro_node_json['attributes']) + if __name__ == '__main__': unittest.main() -- GitLab From 091f474ea1b48b603d563cfa85db2c561d38210e Mon Sep 17 00:00:00 2001 From: Maxence Naud <maxence.naud@cea.fr> Date: Fri, 31 Jan 2025 12:29:19 +0000 Subject: [PATCH 157/157] Update 2 files - /version.txt - /CHANGELOG --- CHANGELOG | 2 ++ version.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index b53d52720..91877c347 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,5 @@ +# Version 0.4.0 (February 2025) + # Version 0.4.0 (December 2024) # Version 0.2.1 (May 14, 2024) diff --git a/version.txt b/version.txt index 1d0ba9ea1..8f0916f76 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.4.0 +0.5.0 -- GitLab